diff --git a/.env.defaults b/.env.defaults index 8443be88a1..2a07c1f2ab 100644 --- a/.env.defaults +++ b/.env.defaults @@ -10,7 +10,7 @@ SSL=false # API Configuration API_ENABLED=false -API_PORT=9003 +API_PORT=9002 # Server ID (increment with each server hosted) SERVER_ID=1 @@ -35,6 +35,10 @@ REMOTE_API_HOST='' # connections are limited to only trusted clients and APIs. HUB_ACCESS_TOKEN='' +# Defaults to `HUB_HOST` if empty +ADMIN_HOST='' +ADMIN_PORT=9528 + # Overrides where the client connects to # Defaults to `HOST` for the client if empty CLIENT_REMOTE_HOST='' @@ -72,13 +76,13 @@ AGGREGATE_THRESHOLD=60000 TUTORIAL_ENABLED=true # !! Allows login with any credentials !! OVERWRITE_AUTH=false -DEVELOPMENT=false +DISABLE_REGISTER=false # Maximum number of players allowed on the server. MAX_PLAYERS=200 # Update time to parse packets in milliseconds (update every 300ms) UPDATE_TIME=300 # Game version -GVER='0.1.0-beta' +GVER='0.5.5-beta' # Used for hotfixes and minor updates that do not require a full update. MINOR='' # If to load regions from cache. @@ -117,6 +121,13 @@ DISCORD_CHANNEL_ID=`` # The bot token used to interact with the server. DISCORD_BOT_TOKEN='' +# === LICENSING === +# By using this project, you agree to the terms and conditions outlined in the MPL2.0 and OPL license. +# These licenses can be found in the LICENSE and LICENSE_OPL files respectively. +# Toggling the following indicates that you have read and agree to all the terms and conditions outlined in the licenses. +# Any form of bypassing/altering of the license agreement form indicates you agree to the terms and conditions outlined in the licenses. +ACCEPT_LICENSE=false + # === Debugging === # Will print out more debugging info from log diff --git a/.env.e2e b/.env.e2e index 55bbf77585..4985de4fa0 100644 --- a/.env.e2e +++ b/.env.e2e @@ -3,3 +3,5 @@ HOST='0.0.0.0' SKIP_DATABASE=false MONGODB_DATABASE='kaetram_e2e' + +ACCEPT_LICENSE=true \ No newline at end of file diff --git a/.eslintrc b/.eslintrc index 63ddf740e4..5a35955d2b 100644 --- a/.eslintrc +++ b/.eslintrc @@ -8,12 +8,14 @@ "plugin:import/recommended", "plugin:import/typescript", "plugin:unicorn/recommended", - "plugin:prettier/recommended" + "plugin:prettier/recommended", + "plugin:astro/recommended", + "plugin:astro/jsx-a11y-strict" ], + "plugins": ["prefer-let"], "parserOptions": { "project": "tsconfig.json" }, - "plugins": ["prefer-let"], "rules": { "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-dynamic-delete": "off", @@ -55,6 +57,7 @@ "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }], "import/no-unresolved": "off", + "import/no-named-as-default-member": "off", "import/order": [ "warn", { @@ -81,6 +84,7 @@ "unicorn/no-array-reduce": "off", "unicorn/prefer-number-properties": "off", "unicorn/prevent-abbreviations": "off", + "unicorn/prefer-math-trunc": "off", // TODO: Enable on ES2022 "unicorn/prefer-string-replace-all": "off", diff --git a/.github/workflows/app.yml b/.github/workflows/app.yml new file mode 100644 index 0000000000..bfb1eea763 --- /dev/null +++ b/.github/workflows/app.yml @@ -0,0 +1,120 @@ +name: Build App Artifacts + +on: workflow_dispatch + +jobs: + build-android: + defaults: + run: + shell: bash + + strategy: + matrix: + node-version: [20.x] + + name: Build android artifacts + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Update Submodule + run: git submodule update --init --recursive + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Enable Corepack + run: corepack enable + + - name: Cache node_modules + uses: actions/cache@v3 + with: + path: ./node_modules + key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-node-${{ matrix.node-version }} + + - name: Get Yarn cache directory + id: yarn-cache + run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT + + - name: Cache Yarn folder + uses: actions/cache@v3 + with: + path: ${{ steps.yarn-cache.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-yarn-${{ matrix.node-version }} + + - name: Cache Yarn install state + uses: actions/cache@v3 + with: + path: ./.yarn/install-state.gz + key: ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }} + + - name: Install Dependencies + run: yarn install + + - name: Install Java + uses: actions/setup-java@v3 + with: + distribution: zulu + java-version: 17 + architecture: x64 + cache: gradle + + - name: Install Android SDK Tools + run: | + echo y | $ANDROID_HOME/tools/bin/sdkmanager --sdk_root=$ANDROID_HOME --install 'platform-tools' 'build-tools;30.0.3' 'platforms;android-30' 'ndk;25.0.8775105' + echo NDK_HOME=$ANDROID_HOME/ndk/25.0.8775105 >> $GITHUB_ENV + + - name: Cache rustup + uses: actions/cache@v3 + with: + path: ~/.rustup + key: ${{ runner.os }}-rustup + + - name: Install Rust Toolchain + run: | + rustup set auto-self-update disable + rustup toolchain install stable --profile minimal --target x86_64-unknown-linux-gnu aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android + + - name: Cache Rust project + uses: Swatinem/rust-cache@v2 + with: + workspaces: ./pacakges/app + + - name: Install Prererequisites + run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev + + - name: Install Tauri + run: cargo install tauri-cli --version '^2.0.0-alpha.10' + + - name: Initialize Android Build + run: cargo tauri android init + + - name: Write Key and Local Properties + run: | + echo '${{ secrets.ANDROID_KEY }}' | base64 --decode > ./packages/app/gen/android/app/key.jks + echo '${{ secrets.ANDROID_LOCAL_PROPERTIES }}' > ./packages/app/gen/android/local.properties + + - name: Build Android App + run: cargo tauri android build + + - name: Upload Artifacts + uses: actions/upload-artifact@v3 + with: + name: android-artifacts + path: | + ./packages/app/gen/android/app/build/outputs/apk/**/*.apk + ./packages/app/gen/android/app/build/outputs/bundle/**/*.aab diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 870a800270..c18102bcfb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,16 +1,20 @@ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: Kaetram-Open CI +name: Continuous Integration on: [push, pull_request] jobs: build: + defaults: + run: + shell: bash + strategy: matrix: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - node-version: [16.x, 18.x] + node-version: [18.x, 20.x] os: [ubuntu-latest, windows-latest, macos-latest] name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }} @@ -25,11 +29,41 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - cache: 'yarn' - name: Enable Corepack run: corepack enable + - name: Cache node_modules + uses: actions/cache@v3 + with: + path: ./node_modules + key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-node-${{ matrix.node-version }} + + - name: Get Yarn cache directory + id: yarn-cache + run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT + + - name: Cache Yarn folder + uses: actions/cache@v3 + with: + path: ${{ steps.yarn-cache.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-yarn-${{ matrix.node-version }} + + - name: Cache Yarn install state + uses: actions/cache@v3 + with: + path: ./.yarn/install-state.gz + key: ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }} + - name: Install Dependencies run: yarn install diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 895f4f4a48..ebf9dd686d 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -4,6 +4,14 @@ on: [push, pull_request] jobs: test: + defaults: + run: + shell: bash + + strategy: + matrix: + node-version: [18.x] + name: Run tests runs-on: ubuntu-latest @@ -15,19 +23,51 @@ jobs: - name: Start MongoDB uses: supercharge/mongodb-github-action@1.7.0 - - name: Setup Node + - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18.5.0 - cache: 'yarn' + node-version: ${{ matrix.node-version }} - name: Enable Corepack run: corepack enable + - name: Cache node_modules + uses: actions/cache@v3 + with: + path: ./node_modules + key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-node-${{ matrix.node-version }} + + - name: Get Yarn cache directory + id: yarn-cache + run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT + + - name: Cache Yarn folder + uses: actions/cache@v3 + with: + path: ${{ steps.yarn-cache.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-yarn-${{ matrix.node-version }} + + - name: Cache Yarn install state + uses: actions/cache@v3 + with: + path: ./.yarn/install-state.gz + key: ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} + ${{ runner.os }}-yarn-install-state-${{ matrix.node-version }} + - name: Run Cypress - uses: cypress-io/github-action@v4 + uses: cypress-io/github-action@v5 with: - command: yarn workspace @kaetram/e2e test:record + working-directory: ./packages/e2e + install-command: yarn install + command: yarn test:record env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/server.yml similarity index 72% rename from .github/workflows/deploy.yml rename to .github/workflows/server.yml index 9f04de4b36..456f770605 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/server.yml @@ -1,11 +1,17 @@ -name: Kaetram +name: Deploy to Development Server + on: push: branches: [game-content, beta] jobs: - build: + deploy: + defaults: + run: + shell: bash + runs-on: ubuntu-latest + environment: development steps: @@ -13,8 +19,7 @@ jobs: uses: appleboy/ssh-action@master with: host: ${{ secrets.DEV_SERVER_HOST }} + port: 22 username: ${{ secrets.DEV_SERVER_USERNAME }} key: ${{ secrets.DEV_SERVER_KEY }} - port: 22 - script: | - ${{ secrets.DEV_SERVER_SCRIPT }} + script: ${{ secrets.DEV_SERVER_SCRIPT }} diff --git a/.gitignore b/.gitignore index 364d63714e..87b1445a8d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,28 @@ +packages/tools/map/data/map.png +packages/tools/map/data/map.json +packages/tools/map/data/rules* +packages/tools/map/data/tilesets + +packages/server/cache + +astro_tmp_pages_* + +map.json.backup* + +### Astro ### +# Gitignore template for Astro projects +# Ignore content collection generated files +.astro +*astro_tmp* + ### CypressIO ### # gitignore template for the CypressIO, browser test framework # website: https://www.cypress.io/ -/packages/e2e/cypress/results/* -/packages/e2e/cypress/reports/* -/packages/e2e/cypress/videos/* -/packages/e2e/cypress/screenshots/* +cypress/results/* +cypress/reports/* +cypress/screenshots/* +cypress/videos/* ### Emacs ### # -*- mode: gitignore; -*- @@ -299,12 +316,6 @@ tags .history .ionide -# Support for Project snippet scope -.vscode/*.code-snippets - -# Ignore code-workspaces -*.code-workspace - ### WebStorm ### # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 @@ -444,7 +455,4 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk -# https://www.toptal.com/developers/gitignore/api/git,node,cypressio,linux,macos,windows,visualstudiocode,webstorm,vim,emacs - -packages/tools/map/data/map.png -packages/server/cache \ No newline at end of file +# https://www.toptal.com/developers/gitignore?templates=git,node,astro,cypressio,linux,macos,windows,visualstudiocode,webstorm,vim,emacs diff --git a/.postcssrc b/.postcssrc new file mode 100644 index 0000000000..334bb3b136 --- /dev/null +++ b/.postcssrc @@ -0,0 +1,7 @@ +{ + "plugins": { + "autoprefixer": {}, + "postcss-preset-env": {}, + "postcss-custom-media": {} + } +} diff --git a/.prettierignore b/.prettierignore index 53417706b7..f7eefd4555 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,6 +1,10 @@ .yarn/ +node_modules/ +dist/ -*.md +packages/client/data/maps/**/*.json +packages/server/data/map/**/*.json +packages/server/cache/**/*.json +packages/tools/map/data/**/*.json -dist/ -data/**/*.json +*.md diff --git a/.prettierrc b/.prettierrc index 9c6a5d84c1..804be90bb8 100644 --- a/.prettierrc +++ b/.prettierrc @@ -4,5 +4,6 @@ "tabWidth": 4, "singleQuote": true, "trailingComma": "none", - "endOfLine": "auto" + "endOfLine": "auto", + "overrides": [{ "files": "*.json", "options": { "printWidth": 120 } }] } diff --git a/packages/client/.stylelintrc b/.stylelintrc similarity index 82% rename from packages/client/.stylelintrc rename to .stylelintrc index c9d3c30cce..4429c8cdc1 100644 --- a/packages/client/.stylelintrc +++ b/.stylelintrc @@ -2,6 +2,7 @@ "defaultSeverity": "warning", "extends": [ "stylelint-config-standard-scss", + "stylelint-config-html/astro", "stylelint-config-clean-order", "stylelint-config-prettier" ] diff --git a/.vscode/extensions.json b/.vscode/extensions.json index e7b0935cd7..2cbb0359ac 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,6 +2,8 @@ "recommendations": [ "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", - "stylelint.vscode-stylelint" - ] + "stylelint.vscode-stylelint", + "astro-build.astro-vscode" + ], + "unwantedRecommendations": [] } diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..b808c712b3 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,21 @@ +{ + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "editor.formatOnPaste": true, + "editor.codeActionsOnSave": { "source.fixAll": true }, + "npm.packageManager": "yarn", + "prettier.trailingComma": "none", + "typescript.tsdk": "./node_modules/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true, + "eslint.format.enable": true, + "eslint.lintTask.enable": true, + "eslint.validate": ["javascript", "typescript", "html", "astro"], + "eslint.nodePath": "./node_modules", + "stylelint.packageManager": "yarn", + "stylelint.validate": ["css", "postcss", "sass", "scss", "html", "astro"], + "rust-analyzer.linkedProjects": ["./packages/app/Cargo.toml"], + "[json]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "githubPullRequests.ignoredPullRequestBranches": ["beta"] +} diff --git a/LICENSE_OPL b/LICENSE_OPL new file mode 100644 index 0000000000..d42d9d2a2f --- /dev/null +++ b/LICENSE_OPL @@ -0,0 +1,17 @@ +You MUST provide a direct link to Kaetram in the credits section. + +You MUST keep the code open-source and continue to do so. + +You may NOT use this project or any parts therein for anything related to artifical intelligence, cryptocurrencies, or NFTs without direct permission from the creators. + +You may NOT remove the credits section. It MUST remain visible on the front page of the website. It MUST be easily accessible to any user who accesses the project as per W3 Accessibility Standards. + +You may NOT remove any credits to the artists, musicians, or any other original creators of this project. + +You may NOT use this project or any parts therein to sell online courses, you may however use this for general streaming platforms, including view-based revenue. + +You may NOT use this project or any parts therein for any illicit activity. + +You may NOT use this project or any parts therein to spread hate, racism, or any form of discriminatory behaviour. + +Any modification to the code indicates that you have read these licenses and agree to the terms and conditions. diff --git a/README.md b/README.md index 1073f7d735..145b8a48a6 100755 --- a/README.md +++ b/README.md @@ -27,19 +27,19 @@ Live Version – Join us on Discord – -![Demo 1](https://i.imgur.com/MvErlP4.png) +![Demo 1](https://i.imgur.com/PJdVts7.png) -![Demo 2](https://i.imgur.com/jS5d3oq.png) +![Demo 2](https://i.imgur.com/fmpcLhK.png) -![Demo 3](https://i.imgur.com/KrqVNFw.png)![Demo 4](https://i.imgur.com/1U7iiJo.png) +![Demo 3](https://i.imgur.com/tQxib9S.png) -![Demo 5](https://i.imgur.com/8Is0pY0.png)![Demo 6](https://i.imgur.com/ErBNdkf.png) +![Demo 4](https://i.imgur.com/Vlb3z8W.png) -![Demo 7](https://i.imgur.com/L0MN6LO.png) +![Demo 5](https://i.imgur.com/Fhvrw2S.png) -![Demo 8](https://i.imgur.com/aFXdmpv.png) +![Demo 6](https://i.imgur.com/eiK6wcr.png) -![Demo 9](https://i.imgur.com/ewtLbyZ.png) +![Demo 7](https://i.imgur.com/C7cZsuf.png) ## Technologies @@ -78,7 +78,7 @@ the server. #### NOTE: Node.js -> You need to use a Node.js version greater than or equal to `v14.19.0`, following the +> You need to use a Node.js version greater than or equal to `v16.17.1`, following the > [Long Term Support (LTS) schedule](https://nodejs.org/en/about/releases), to have the most stable > experience when developing/experimenting with Kaetram. Older versions would not work with our > current dependencies and package manager. @@ -93,15 +93,17 @@ the server. #### Yarn -You will also need to enable [Yarn](https://yarnpkg.com) through [Corepack](https://nodejs.org/dist/latest/docs/api/corepack.html), to manage our dependencies. +You will also need to enable [Yarn](https://yarnpkg.com) through [Corepack](https://nodejs.org/dist/latest/docs/api/corepack.html), to manage the dependencies. -Starting from Node.js `v14.19.0`, [Corepack](https://nodejs.org/dist/latest/docs/api/corepack.html) is included by default, but is currently opt-in. - -To enable it, run - -```console -corepack enable -``` +> The preferred way to manage Yarn is through [Corepack](https://nodejs.org/dist/latest/docs/api/corepack.html), a new binary shipped with all Node.js releases [...] +> +> To enable it, run the following command: +> +> ```console +> corepack enable +> ``` +> +> ### Installing @@ -113,6 +115,8 @@ yarn ### Running +**You must accept the MPL2.0 and OPL licensing agreement by toggling `ACCEPT_LICENSE` in the enviroment variable file. The server and client are disabled until you have done so.** + To run live development builds, use ```console @@ -131,13 +135,11 @@ Then, to run each production build, use yarn start ``` -Add `--host` at the end to make the game visible on your network. - ### Configuration Optionally, if you want some additional configuration, There is a file named [`.env.defaults`](.env.defaults), and it's values will be used unless overridden by a new `.env` -file, or by setting environmental variables. +file. Copy and rename [`.env.defaults`](.env.defaults) to `.env`, and modify the contents to fit your needs. @@ -260,12 +262,24 @@ Open Collective – ## License & Commission -For all inquiries about purchasing a different license or commission work, please contact **@Keros** -on [Discord][discord]. +Following the release of the beta, Kaetram-Open will only be updated once every 2-4 weeks. There will be no more updates to the sprite art, music, item/mob/npc/etc properties. This repository will provide you with the tools necessary to create your own version of Kaetram, there are plenty of assets included for that. Further modifications will be primarily to the game-engine itself and improvements to the rendering. + +For all inquiries about purchasing a different license, commission work, or purchasing access to our up-to-date version please contact **@kaetram** on [Discord][discord] or email admin@kaetram.com. + +This project is distributed under the **[Mozilla Public License Version 2.0](https://choosealicense.com/licenses/mpl-2.0/)**. See [`LICENSE`][license] for more information. + +Additionally, Kaetram is shipped with a secondary license, Omnia Public License (OPL): + +- You MUST provide a direct link to Kaetram in the credits section. +- You MUST keep the code open-source and continue to do so. +- You may NOT use this project or any parts therein for anything related to artifical intelligence, cryptocurrencies, or NFTs without direct permission from the creators. +- You may NOT remove the credits section. It MUST remain visible on the front page of the website. It MUST be easily accessible to any user who accesses the project as per [W3C Accessibility Standards](https://www.w3.org/WAI/standards-guidelines/). +- You may NOT remove any credits to the artists, musicians, or any other original creators of this project. +- You may NOT use this project or any parts therein to sell online courses, you may however use this for general streaming platforms, including view-based revenue. +- You may NOT use this project or any parts therein for any illicit activity. +- You may NOT use this project or any parts therein to spread hate, racism, or any form of discriminatory behaviour. -This project is distributed under the -**[Mozilla Public License Version 2.0](https://choosealicense.com/licenses/mpl-2.0/)**. See -[`LICENSE`][license] for more information. +If you have any questions, contact @kaetram on [Discord][discord]. [license]: LICENSE 'Project License' [issues]: https://github.com/Kaetram/Kaetram-Open/issues 'Open Issues' diff --git a/package.json b/package.json index 0b85b10b61..5fcea4b237 100755 --- a/package.json +++ b/package.json @@ -1,57 +1,75 @@ { "name": "kaetram", - "version": "0.1.0", + "version": "0.5.5", "private": true, + "type": "module", "packageManager": "yarn@4.0.0-rc.40", - "author": "Veradictus", + "author": "OmniaDev", "description": "Kaetram is an open-source game-engine created to aid those interested in entering the game development realm. The original idea is based on Little Workshop's demo game - BrowserQuest. The assets have remained the same, but the code itself has been completely wiped and redone from the ground up.", "homepage": "https://kaetram.com/", "license": "MPL-2.0", "scripts": { "postinstall": "husky install", - "packages": "FORCE_COLOR=true yarn workspaces foreach --no-private -j 3 -piv run", + "packages": "FORCE_COLOR=true yarn workspaces foreach --no-private -j 4 -piv run", "dev": "yarn packages dev", "hub": "yarn packages hub", "start": "yarn packages start", "build": "yarn packages build", - "lint:script": "eslint packages/**/*.ts --ignore-path .gitignore", - "lint:style": "stylelint packages/**/*.scss --ignore-path .gitignore", + "lint:script": "eslint --cache packages/**/*.{ts,astro} --ignore-path .gitignore", + "lint:style": "stylelint --cache packages/**/*.{scss,astro} --ignore-path .gitignore", "lint:fix": "yarn lint:script --fix && yarn lint:style --fix", "lint": "yarn lint:script && yarn lint:style", "test:run": "yarn packages test:run", "test:open": "yarn packages test:open", - "map": "yarn packages map" + "map": "yarn packages map", + "replacer": "yarn packages replacer" }, "lint-staged": { - "*.ts": "eslint --cache --fix", - "*.scss": "stylelint --cache --fix" + "*.{ts,astro}": "eslint --cache --fix", + "*.{scss,astro}": "stylelint --cache --fix" }, "devDependencies": { - "@commitlint/cli": "^17.4.2", - "@commitlint/config-conventional": "^17.4.2", - "@typescript-eslint/eslint-plugin": "^5.56.0", - "@typescript-eslint/parser": "^5.56.0", - "eslint": "^8.31.0", - "eslint-config-prettier": "^8.6.0", - "eslint-plugin-import": "^2.26.0", + "@astrojs/ts-plugin": "^1.1.3", + "@commitlint/cli": "^17.7.1", + "@commitlint/config-conventional": "^17.7.0", + "@types/node": "^20.5.9", + "@typescript-eslint/eslint-plugin": "^6.6.0", + "@typescript-eslint/parser": "^6.6.0", + "autoprefixer": "^10.4.15", + "eslint": "^8.48.0", + "eslint-config-prettier": "^9.0.0", + "eslint-plugin-astro": "^0.29.0", + "eslint-plugin-import": "^2.28.1", "eslint-plugin-import-order-aesthetic": "^1.0.5", + "eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-prefer-let": "^3.0.1", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-unicorn": "^45.0.2", + "eslint-plugin-prettier": "^5.0.0", + "eslint-plugin-unicorn": "^48.0.1", "husky": "^8.0.3", - "lint-staged": "^13.1.0", - "postcss": "^8.4.20", - "postcss-assets": "^6.0.0", + "lint-staged": "^14.0.1", + "postcss": "^8.4.29", + "postcss-custom-media": "^10.0.0", + "postcss-html": "^1.5.0", + "postcss-preset-env": "^9.1.3", "postcss-value-parser": "^4.2.0", - "prettier": "^2.8.1", - "stylelint": "^14.16.1", - "typescript": "^5.0.4" + "prettier": "^3.0.3", + "prettier-plugin-astro": "^0.12.0", + "stylelint": "^15.10.3", + "stylelint-config-astro": "^1.0.4", + "stylelint-config-clean-order": "^5.2.0", + "stylelint-config-html": "^1.1.0", + "stylelint-config-prettier": "^9.0.5", + "stylelint-config-standard-scss": "^11.0.0", + "typescript": "^5.2.2" + }, + "resolutions": { + "sharp": "^0.32.1" }, "workspaces": [ "packages/*" ], "engines": { - "node": "^14.19.0 || ^16.10.0 || ^18.0.0 || ^19.0.0" + "node": "^18.14.1 || ^20.0.0" }, "repository": "git+https://github.com/Kaetram/Kaetram-Open.git", "bugs": { diff --git a/packages/admin/astro.config.ts b/packages/admin/astro.config.ts new file mode 100644 index 0000000000..92e53fe3a7 --- /dev/null +++ b/packages/admin/astro.config.ts @@ -0,0 +1,15 @@ +import { defineConfig } from 'astro/config'; +import node from '@astrojs/node'; +import config from '@kaetram/common/config'; + +// https://astro.build/config +export default defineConfig({ + srcDir: './', + output: 'server', + adapter: node({ mode: 'standalone' }), + server: { host: config.adminHost, port: config.adminPort }, + vite: { + server: { strictPort: true }, + define: { globalConfig: config } + } +}); diff --git a/packages/admin/env.d.ts b/packages/admin/env.d.ts new file mode 100644 index 0000000000..73efcefc3c --- /dev/null +++ b/packages/admin/env.d.ts @@ -0,0 +1,9 @@ +/// + +import type config from '@kaetram/common/config'; + +declare global { + let globalConfig: typeof config; +} + +export {}; diff --git a/packages/admin/layouts/default.astro b/packages/admin/layouts/default.astro new file mode 100644 index 0000000000..4dc279cf25 --- /dev/null +++ b/packages/admin/layouts/default.astro @@ -0,0 +1,17 @@ + + + + + + + + + Admin + + + + +; diff --git a/packages/admin/middleware/index.ts b/packages/admin/middleware/index.ts new file mode 100644 index 0000000000..c92af3d611 --- /dev/null +++ b/packages/admin/middleware/index.ts @@ -0,0 +1,9 @@ +import { defineMiddleware } from 'astro/middleware'; + +let allowedAdresses = new Set(['127.0.0.1']); + +export const onRequest = defineMiddleware((context, next) => { + if (!allowedAdresses.has(context.clientAddress)) return new Response(null, { status: 403 }); + + return next(); +}); diff --git a/packages/admin/package.json b/packages/admin/package.json new file mode 100644 index 0000000000..49167ae784 --- /dev/null +++ b/packages/admin/package.json @@ -0,0 +1,15 @@ +{ + "name": "@kaetram/admin", + "type": "module", + "scripts": { + "hub": "astro dev" + }, + "dependencies": { + "@astrojs/node": "^6.0.1", + "@kaetram/common": "workspace:*", + "astro": "^3.2.0" + }, + "devDependencies": { + "typescript": "^5.2.2" + } +} diff --git a/packages/admin/pages/index.astro b/packages/admin/pages/index.astro new file mode 100644 index 0000000000..ef6862b1e9 --- /dev/null +++ b/packages/admin/pages/index.astro @@ -0,0 +1,10 @@ +--- +import DefaultLayout from '../layouts/default.astro'; +--- + + + + +

Admin

+
    +
    diff --git a/packages/admin/src/main.ts b/packages/admin/src/main.ts new file mode 100644 index 0000000000..19daf651b2 --- /dev/null +++ b/packages/admin/src/main.ts @@ -0,0 +1,67 @@ +import Handshake from '@kaetram/common/network/impl/handshake'; + +import type { Packets } from '@kaetram/common/network'; +import type { SerializedServer } from '@kaetram/common/types/network'; + +class Main { + private ws = new WebSocket(`ws://${globalConfig.hubWsHost}:${globalConfig.hubWsPort}`); + private serverList = document.querySelector('#server-list')!; + + public constructor() { + this.ws.addEventListener('open', () => { + this.ws.send( + JSON.stringify( + new Handshake({ + type: 'admin', + accessToken: globalConfig.accessToken + }).serialize() + ) + ); + }); + + this.ws.addEventListener('message', (event) => { + let message = JSON.parse(event.data); + + this.handleMessage(message); + }); + + this.ws.addEventListener('close', () => { + console.log('Connection closed'); + }); + + this.ws.addEventListener('error', (error) => { + console.log('Error', error); + }); + } + + private handleMessage(message: [Packets, { servers: SerializedServer[] }]) { + let [packet, data] = message, + { servers } = data; + + for (let server of servers) { + let serverElement = document.createElement('div'); + serverElement.classList.add('server'); + + let serverName = document.createElement('h2'); + serverName.classList.add('server-name'); + serverName.textContent = server.name; + + let serverId = document.createElement('span'); + serverId.classList.add('server-id'); + serverId.textContent = server.id.toString(); + + let serverPlayers = document.createElement('span'); + serverPlayers.classList.add('server-players'); + serverPlayers.textContent = `${server.players}/${server.maxPlayers}`; + + let serverHost = document.createElement('span'); + serverHost.classList.add('server-host'); + serverHost.textContent = `${server.host}:${server.port}`; + + serverElement.append(serverName, serverId, serverPlayers, serverHost); + this.serverList.append(serverElement); + } + } +} + +window.addEventListener('load', () => new Main()); diff --git a/packages/admin/tsconfig.json b/packages/admin/tsconfig.json new file mode 100644 index 0000000000..8d9d2d200f --- /dev/null +++ b/packages/admin/tsconfig.json @@ -0,0 +1 @@ +{ "extends": "../../tsconfig.json" } diff --git a/packages/app b/packages/app deleted file mode 160000 index 17aa1af6a4..0000000000 --- a/packages/app +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 17aa1af6a4aa760cad6e1d51ea07675ccc1fa377 diff --git a/packages/client/.postcssrc b/packages/client/.postcssrc deleted file mode 100644 index eb5334409f..0000000000 --- a/packages/client/.postcssrc +++ /dev/null @@ -1,12 +0,0 @@ -{ - "plugins": { - "autoprefixer": {}, - "postcss-preset-env": {}, - "postcss-custom-media": {}, - "postcss-assets": { - "loadPaths": [ - "public/img/interface/" - ] - } - } -} diff --git a/packages/client/astro.config.ts b/packages/client/astro.config.ts new file mode 100644 index 0000000000..909e7acad8 --- /dev/null +++ b/packages/client/astro.config.ts @@ -0,0 +1,146 @@ +import { fileURLToPath } from 'node:url'; + +import { name, description } from '../../package.json'; + +import * as sass from 'sass'; +import webmanifest from 'astro-webmanifest'; +import sitemap from '@astrojs/sitemap'; +import robotsTxt from 'astro-robots-txt'; +import partytown from '@astrojs/partytown'; +import compress from 'astro-compress'; +import compressor from 'astro-compressor'; +import glsl from 'vite-plugin-glsl'; +import { imageSize } from 'image-size'; +import { defineConfig } from 'astro/config'; +import { VitePWA as pwa } from 'vite-plugin-pwa'; +import { sentryVitePlugin } from '@sentry/vite-plugin'; +import config, { exposedConfig } from '@kaetram/common/config'; +import { i18n } from 'astro-i18n-aut/integration'; +import { locales, defaultLocale, dir, t, type Locale } from '@kaetram/common/i18n'; + +export let env = exposedConfig('name', 'host', 'ssl', 'serverId', 'sentryDsn', 'acceptLicense'); + +let clientHost = config.clientRemoteHost || (config.hubEnabled ? config.hubHost : config.host), + clientPort = config.clientRemotePort || (config.hubEnabled ? config.hubPort : config.port), + hub = config.ssl ? `https://${clientHost}` : `http://${clientHost}:${clientPort}`; + +Object.assign(env, { + version: config.gver, + minor: config.minor, + host: clientHost, + port: clientPort, + hub: config.hubEnabled && hub +}); + +let plugins = [ + glsl(), + pwa({ + registerType: 'autoUpdate', + workbox: { + cacheId: name, + globDirectory: 'dist', + globPatterns: ['**/*.{js,css,svg,png,jpg,jpeg,gif,webp,woff,woff2,ttf,eot,ico}'], + navigateFallback: null + } + }) +]; + +if (config.sentryDsn && !config.debugging) + plugins.push( + sentryVitePlugin({ + org: config.sentryOrg, + project: config.sentryProject, + authToken: config.sentryAuthToken, + sourcemaps: { assets: './dist/**' } + }) + ); + +let imageCache = new Map(); +function getImageSize(image: string) { + if (!imageCache.has(image)) { + let path = fileURLToPath(new URL(`public/img/interface/${image}.png`, import.meta.url)), + size = imageSize(path); + + imageCache.set(image, size); + } + + return imageCache.get(image)!; +} + +let integrations = [i18n({ locales, defaultLocale })]; + +if (import.meta.env.PROD) + integrations.push( + webmanifest({ + icon: 'public/icon.png', + name: config.name, + description, + categories: ['entertainment', 'games'], + lang: 'en-US', + dir: 'ltr', + start_url: '/', + theme_color: '#000000', + background_color: '#000000', + display: 'fullscreen', + orientation: 'landscape-primary', + locales: Object.fromEntries( + Object.entries(locales).map(([locale, lang]) => [ + locale, + { + lang, + dir: dir(locale as Locale), + name: t('game:NAME', { lng: locale }), + description: t('game:DESCRIPTION', { lng: locale }) + } + ]) + ), + config: { + insertAppleTouchLinks: true, + iconPurpose: ['any', 'maskable'] + } + }), + sitemap({ + i18n: { locales, defaultLocale } + // filter: filterSitemapByDefaultLocale({ defaultLocale }) + }), + partytown({ config: { debug: false } }), + robotsTxt({ host: true }), + compress({ Logger: 1, Image: false }), + compressor({ gzip: true, brotli: true }) + ); + +// https://astro.build/config +export default defineConfig({ + srcDir: './', + site: 'https://kaetram.com/', + trailingSlash: 'always', + integrations, + server: { host: true, port: 9000 }, + vite: { + plugins, + build: { sourcemap: true }, + server: { + strictPort: true, + hmr: { protocol: 'ws', host: config.host, port: 5183 } + }, + define: { globalConfig: env }, + css: { + preprocessorOptions: { + scss: { + functions: { + 'width($image)'(image: sass.types.String) { + let { width } = getImageSize(image.getValue()); + + return new sass.types.Number(width!); + }, + 'height($image)'(image: sass.types.String) { + let { height } = getImageSize(image.getValue()); + + return new sass.types.Number(height!); + } + } + } + } + } + } +}); diff --git a/packages/client/components/game.astro b/packages/client/components/game.astro new file mode 100644 index 0000000000..c30e80f360 --- /dev/null +++ b/packages/client/components/game.astro @@ -0,0 +1,951 @@ +
    +
    +
    + + + + + + + + +
    + +
    +
    + +
    +

    Welcome to Kaetram!

    + +
    + Last login: + Time played: +
    + +
    +
      +
    • Version 0.3.4-beta
    • +
    • - Added new stuff
    • +
    • - Added more new stuff
    • +
    • - Added even more new stuff
    • +
    • - Added new stuff
    • +
    • - Added new stuff
    • +
    +
    +
    + +
    +
    +

    How to Play

    + +
    + + Use WASD, the Arrow Keys, or Click to move around. + + +
    +
    +
    +
    +
    +
    +
    + +
    +

    Daily Rewards

    + +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +

    Quest Name

    +
    +
      + +
      Start Quest
      +
      + +
      +
      +
      + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + +
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      + +
      +
      +
      + + +
      + + + +
      + + +
      + + + +
      +
      +
      + + + + + Total Exp: + + + +
        +
      • +
        +
      • +
      • +
        +
      • +
      • +
        +
      • +
      • +
        +
      • +
      + +
      +
      +
      +
      + +
      +
      + +
        +
      • +
        +
      • + +
      • +
        +
      • + +
      • +
        +
        +
      • + +
      • +
        +
      • + +
      • +
        +
      • + +
      • +
        +
      • + +
      • +
        +
      • + +
      • +
        +
      • + +
      • +
        +
      • + +
      • +
        +
      • + +
      • +
        +
      • + +
      • +
        +
      • +
      +
      + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
        +
        + +
        + + +
        +
        + +
        +
        + +
        +
        +
        + + + + + + + + + + + +
        + +
        + + + + + + + + + + + +
        +
        + +
        +
        + + Game Version: + + + + + Game World: + + +
        + +
        + Log Out +
        +
        +
        +
        + +
        +
        +
          + +
          +
          +
          +
          +
          + + + + +
          + + +
          +
          +
          + +
          +
          +
          +
          +
          + +
          +
          +
          +
          +
          +
          +
          + +
          +
          + +
          +
          +
            +
            +
            + +
            +
            + +
            +
              +
              +
              +
                +
                +
                + +
                +
                + +
                +
                Your Inventory
                + +
                +
                  + + +
                  Input Amount
                  + + + +
                  +
                  +
                  +
                  +
                  +
                  +
                  + +
                  +
                  +
                  +
                  +
                  +
                    +
                    +
                    + +
                    +
                    +
                    +
                      +
                      +
                      +
                      + +
                      +
                      ACCEPT
                      +
                      +
                      + +
                      +
                      + +
                      +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        + +
                        +
                        + +
                        +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +
                          +
                          +
                          +
                          +
                          +
                          +
                          +
                          + +
                          +
                          +
                          + +
                          +
                          +
                            +
                            +
                            +
                            + + +
                            Input Buy Amount
                            + + + +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            + + + +
                            +
                              +
                              +
                              + + + +
                              +
                              + +
                              +
                              +
                              +
                              + + Mudwich + +
                              +
                              +
                              +
                              + +
                              +
                                +
                                +
                                + +
                                +
                                + +
                                +
                                  +
                                  +
                                  +

                                  Quest Title

                                  +

                                  + +

                                  Description

                                  +

                                  + +

                                  Reward

                                  +

                                  + +

                                  Requirements

                                  +

                                  None

                                  +
                                  +
                                  +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                    +
                                    + + +
                                    Input Drop Amount
                                    + + + +
                                    +
                                    +
                                    +
                                    +
                                    +
                                    + +
                                    +
                                    + +
                                      +
                                        + +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        +
                                        +
                                        + +
                                        + +
                                          +
                                        • +
                                        • +
                                        • +
                                        + +
                                        Craft
                                        +
                                        + +
                                        +
                                        + + + +
                                        +
                                        Create
                                        + +
                                        Guilds
                                        + +
                                        +

                                        There are no guilds available...

                                        +
                                          +
                                          +
                                          + +
                                          + + + +
                                          + +
                                          +
                                          +
                                          + Leave +
                                          + +
                                          +
                                          + +
                                          +
                                            + + +

                                            + +

                                            + +
                                            +
                                            Promote
                                            + +
                                            + Demote +
                                            + +
                                            + Kick +
                                            +
                                            +
                                            +
                                            + +
                                            +
                                            + +
                                            + + +
                                            +
                                            + +
                                            +
                                            + +
                                            +
                                            +
                                              +
                                              +
                                              +
                                                +
                                                +
                                                +
                                                + +
                                                  + + +
                                                  +
                                                  diff --git a/packages/client/components/intro.astro b/packages/client/components/intro.astro new file mode 100644 index 0000000000..6902acf969 --- /dev/null +++ b/packages/client/components/intro.astro @@ -0,0 +1,404 @@ +--- +import { t, getLanguage } from '@kaetram/common/i18n'; + +let currentLanguage = getLanguage(), + languages = [ + { locale: 'en', name: 'English' }, + { locale: 'de', name: 'Deutsch' }, + { locale: 'es', name: 'Español' }, + { locale: 'fr', name: 'Français' }, + { locale: 'pt', name: 'Português' }, + { locale: 'ro', name: 'Română' }, + { locale: 'ru', name: 'Русский' }, + { locale: 'tl', name: 'Tagalog'} + ]; +--- + +
                                                  +
                                                  +
                                                  +

                                                  {t('game:NAME')}

                                                  + +
                                                  + + + +
                                                  + +
                                                  + + +
                                                  + +
                                                  + + +
                                                  +
                                                  +
                                                  + +
                                                  +

                                                  New Character

                                                  + +
                                                  + + + + + +
                                                  + +
                                                  + + +
                                                  +
                                                  +
                                                  + +
                                                  +

                                                  + + Reset Password + +

                                                  + +
                                                  + + +
                                                  + +
                                                  + + +
                                                  +
                                                  +
                                                  + +
                                                  +

                                                  + + World Select + +

                                                  + +
                                                  +
                                                    + +
                                                    + + +
                                                    +
                                                    +
                                                    + + + +
                                                    +

                                                    About

                                                    + +

                                                    + Kaetram is a browser-based 2D MMORPG adventure. You play as an adventurer amongst + others and explore the world of Kaetram. Originally started as a fork of + BrowserQuest, Kaetram has evolved into its own game. In honour to the original idea, + the assets have been preserved and expanded upon. We are one of a few open-source + community driven game projects. We are always looking for assistance in terms of + programming, graphic artists, and/or music composers. Our source-code can be found + on our + GitHub Repository. If you would like to stay up-to-date with the project, make sure you join our + Discord server. +

                                                    + +
                                                    + -- Click anywhere to close -- +
                                                    +
                                                    + +
                                                    Structure this later
                                                    + +
                                                    +

                                                    You have died...

                                                    + +
                                                    + + +
                                                    + + + + + + + + +
                                                    diff --git a/packages/client/data/maps/map.json b/packages/client/data/maps/map.json index f0ca42e437..2f6bba980b 100644 --- a/packages/client/data/maps/map.json +++ b/packages/client/data/maps/map.json @@ -1 +1 @@ -{"width":1056,"height":768,"tileSize":16,"version":1684996698897,"high":[5,18,19,20,132,133,134,135,136,137,138,139,185,186,187,193,196,197,198,199,200,201,202,203,321,646,647,648,653,654,655,656,709,710,711,712,713,717,718,719,720,739,740,772,773,774,775,776,777,778,781,782,783,784,802,803,804,805,845,848,865,866,867,868,869,870,897,898,928,929,930,931,932,933,934,935,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,961,962,1036,1037,1100,1101,1109,1110,1111,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1173,1174,1175,1217,1218,1219,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1281,1282,1283,1434,1435,1437,1438,1439,1446,1447,1448,1510,1511,1512,1525,1526,1527,1537,1538,1589,1590,1591,1592,1653,1654,1655,1656,1665,1711,1712,1714,1715,1717,1718,1719,1720,1793,1901,1914,1915,1916,1921,1922,1923,1938,1939,1941,1942,1943,1985,1986,1987,2001,2002,2003,2004,2005,2006,2007,2021,2022,2023,2065,2066,2067,2068,2069,2070,2071,2085,2086,2087,2089,2133,2158,2160,2217,2221,2222,2223,2224,2225,2241,2242,2243,2244,2285,2286,2287,2288,2289,2290,2291,2305,2306,2307,2308,2349,2350,2351,2352,2353,2354,2355,2369,2370,2371,2372,2385,2386,2387,2389,2390,2391,2429,2430,2431,2432,2453,2454,2455,2493,2494,2495,2496,2497,2498,2499,2500,2511,2549,2550,2551,2557,2558,2559,2560,2561,2562,2564,2574,2575,2576,2613,2614,2615,2616,2638,2639,2640,2671,2673,2677,2678,2679,2680,2709,2710,2711,2712,2734,2735,2736,2737,2738,2741,2742,2743,2744,2773,2774,2775,2776,2793,2794,2796,2797,2798,2799,2800,2801,2802,2821,2822,2823,2837,2838,2839,2840,2857,2858,2860,2861,2862,2863,2864,2865,2866,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2979,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,3042,3043,3044,3106,3107,3108,3113,3114,3115,3177,3178,3179,3289,3290,3291,3433,3434,3561,3562,3710,3711,3712,3774,3775,3776,3897,3898,3900,3901,3996,3998,3999,4028,4029,4570,4571,4572,4573,4579,4580,4581,4582,4583,4584,4585,4586,4587,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4634,4635,4636,4637,4638,4643,4660,4667,4698,4699,4700,4701,4702,4707,4724,4731,4771,4788,4795,4835,4852,4859,4916,4923,4980,4987,5023,5024,5025,5026,5078,5079,5080,5081,5082,5083,5084,5085,5146,5150,5151,5152,5154,5173,5174,5175,5176,5177,5178,5179,5199,5200,5237,5238,5239,5240,5241,5242,5243,5262,5263,5264,5265,5271,5272,5274,5275,5276,5277,5278,5279,5280,5281,5282,5325,5326,5327,5328,5329,5330,5335,5336,5388,5389,5390,5391,5392,5393,5394,5395,5397,5399,5525,5526,5527,5569,5570,5571,5633,5634,5635,5653,5654,5655,5697,5698,5699,5781,5782,5783,5784,5906,5907,5908,5970,5971,5972,6401,6402,6403,6465,6466,6467,6481,6482,6483,6529,6530,6531,6593,7110,7111,7112,7126,7127,7128,7129,7134,7135,7136,7137,7138,7139,7140,7141,7144,7173,7174,7175,7176,7190,7191,7192,7193,7198,7199,7200,7201,7202,7203,7204,7205,7237,7238,7239,7240,7241,7242,7243,7244,7369,7370,7371,7372,7433,7434,7435,7436,7497,7498,7499,7500,7621,7685,7693,7749,7757,9723,9788,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9852,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9908,9909,9916,9974,9980,10038,10044,10102,10108,10172,10230,10236,10294,10300,10358,10425,10427,10489,10490,10491,12329,12330,12331,12332,12333,12355,12356,12393,12394,12395,12396,12397,12417,12418,12419,12420,12421,12422,12457,12458,12459,12460,12461,12481,12482,12483,12484,12485,12486,12521,12522,12523,12524,12525,12545,12546,12547,12548,12549,12609,12610,12611,12612,12613,12943,12944,12998,13128,13129,13130,13131,13132,13133,13134,13135,13192,13193,13194,13195,13196,13197,13198,13199,13256,13257,13258,13259,13260,13320,13321,13322,13323,13398,13399,13461,13462,13463,13464,13465,13466,13467,13468,13525,13526,13527,13528,13529,13530,13531,13532,13534,13535,13536,13538,13539,13540,13541,13569,13570,13571,13572,13573,13574,13575,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13633,13634,13635,13636,13637,13638,13639,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13697,13698,13699,13700,13701,13702,13703,13725,13729,13730,13731,13732,13733,13921,13922,13923,13924,13925,13926,13985,13986,13987,13988,13989,14049,14050,14051,14052,14113,14116,14209,14210,14211,14273,14274,14275,14294,14295,14298,14299,14302,14358,14359,14361,14362,14363,14364,14365,14366,14367,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14467,14468,14469,14470,14471,14472,14473,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14531,14532,14533,14534,14535,14536,14537,14538,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14657,14658,14666,14667,14669,14670,14819,14820,14821,14925,14926,14927,14928,14929,14930,14931,14932,14989,14990,14991,14992,14993,14994,14995,14996,15005,15006,15007,15008,15009,15069,15070,15071,15072,15073,15117,15120,15121,15124,15206,15207,15208,15309,15310,15311,15746,15747,15810,15811,15820,15821,15822,15873,15874,15875,15876,15877,15878,15879,15880,15882,15883,15884,15885,15886,15887,15937,15938,15939,15940,15941,15942,15943,15944,15946,15947,15948,15949,15950,15951,16010,16011,16012,16013,16014,16647,16648,16649,16664,16665,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16702,16710,16711,16712,16713,16714,16728,16729,16767,16773,16774,16775,16776,16777,16778,16779,16792,16793,16830,16837,16838,16839,16840,16841,16842,16843,16895,17495,17511,17559,19462,19463,19526,19527,19528],"tilesets":[{"firstGid":0,"lastGid":4095,"path":"tilesets/tilesheet-1.png","relativePath":"tilesheet-1.png"},{"firstGid":4096,"lastGid":8191,"path":"tilesets/tilesheet-2.png","relativePath":"tilesheet-2.png"},{"firstGid":8192,"lastGid":12287,"path":"tilesets/tilesheet-3.png","relativePath":"tilesheet-3.png"},{"firstGid":12288,"lastGid":16383,"path":"tilesets/tilesheet-4.png","relativePath":"tilesheet-4.png"},{"firstGid":16644,"lastGid":20739,"path":"tilesets/tilesheet-5.png","relativePath":"tilesheet-5.png"}],"animations":{"1":[{"duration":150,"tileId":0},{"duration":150,"tileId":1},{"duration":150,"tileId":2}],"37":[{"duration":200,"tileId":36},{"duration":200,"tileId":37},{"duration":200,"tileId":38},{"duration":200,"tileId":39}],"95":[{"duration":200,"tileId":94},{"duration":200,"tileId":95},{"duration":200,"tileId":96},{"duration":200,"tileId":97},{"duration":200,"tileId":98},{"duration":200,"tileId":99}],"101":[{"duration":200,"tileId":100},{"duration":200,"tileId":101},{"duration":200,"tileId":102},{"duration":200,"tileId":103}],"159":[{"duration":200,"tileId":158},{"duration":200,"tileId":159},{"duration":200,"tileId":160},{"duration":200,"tileId":161},{"duration":200,"tileId":162},{"duration":200,"tileId":163}],"223":[{"duration":200,"tileId":222},{"duration":200,"tileId":223},{"duration":200,"tileId":224},{"duration":200,"tileId":225}],"287":[{"duration":200,"tileId":286},{"duration":200,"tileId":287},{"duration":200,"tileId":288},{"duration":200,"tileId":289}],"351":[{"duration":200,"tileId":350},{"duration":200,"tileId":351},{"duration":200,"tileId":352},{"duration":200,"tileId":353}],"570":[{"duration":150,"tileId":569},{"duration":150,"tileId":570},{"duration":150,"tileId":571},{"duration":150,"tileId":572},{"duration":150,"tileId":573},{"duration":150,"tileId":574}],"597":[{"duration":200,"tileId":596},{"duration":200,"tileId":597},{"duration":200,"tileId":598},{"duration":200,"tileId":599},{"duration":200,"tileId":600},{"duration":200,"tileId":601},{"duration":200,"tileId":602},{"duration":200,"tileId":603},{"duration":200,"tileId":604},{"duration":200,"tileId":605},{"duration":200,"tileId":606},{"duration":200,"tileId":607},{"duration":200,"tileId":608},{"duration":200,"tileId":609},{"duration":200,"tileId":610},{"duration":200,"tileId":611},{"duration":200,"tileId":612}],"634":[{"duration":150,"tileId":633},{"duration":150,"tileId":634},{"duration":150,"tileId":635},{"duration":150,"tileId":636},{"duration":150,"tileId":637},{"duration":150,"tileId":638}],"661":[{"duration":200,"tileId":660},{"duration":200,"tileId":661},{"duration":200,"tileId":662},{"duration":200,"tileId":663},{"duration":200,"tileId":664},{"duration":200,"tileId":665},{"duration":200,"tileId":666},{"duration":200,"tileId":667},{"duration":200,"tileId":668},{"duration":200,"tileId":669},{"duration":200,"tileId":670},{"duration":200,"tileId":671},{"duration":200,"tileId":672},{"duration":200,"tileId":673},{"duration":200,"tileId":674}],"762":[{"duration":150,"tileId":761},{"duration":150,"tileId":762},{"duration":150,"tileId":763},{"duration":150,"tileId":764},{"duration":150,"tileId":765},{"duration":150,"tileId":766}],"769":[{"duration":150,"tileId":768},{"duration":150,"tileId":769},{"duration":150,"tileId":770}],"826":[{"duration":150,"tileId":825},{"duration":150,"tileId":826},{"duration":150,"tileId":827},{"duration":150,"tileId":828},{"duration":150,"tileId":829},{"duration":150,"tileId":830}],"917":[{"duration":200,"tileId":916},{"duration":200,"tileId":917},{"duration":200,"tileId":918}],"954":[{"duration":150,"tileId":953},{"duration":150,"tileId":954},{"duration":150,"tileId":955},{"duration":150,"tileId":956},{"duration":150,"tileId":957},{"duration":150,"tileId":958}],"981":[{"duration":200,"tileId":980},{"duration":200,"tileId":981},{"duration":200,"tileId":982}],"1018":[{"duration":150,"tileId":1017},{"duration":150,"tileId":1018},{"duration":150,"tileId":1019},{"duration":150,"tileId":1020},{"duration":150,"tileId":1021},{"duration":150,"tileId":1022}],"1178":[{"duration":200,"tileId":1177},{"duration":200,"tileId":1178},{"duration":200,"tileId":1179},{"duration":200,"tileId":1180},{"duration":200,"tileId":1181},{"duration":200,"tileId":1182}],"1210":[{"duration":150,"tileId":1209},{"duration":150,"tileId":1210},{"duration":150,"tileId":1211},{"duration":150,"tileId":1212},{"duration":150,"tileId":1213},{"duration":150,"tileId":1214}],"1274":[{"duration":150,"tileId":1273},{"duration":150,"tileId":1274},{"duration":150,"tileId":1275},{"duration":150,"tileId":1276},{"duration":150,"tileId":1277},{"duration":150,"tileId":1278}],"1621":[{"duration":200,"tileId":1620},{"duration":200,"tileId":1621},{"duration":200,"tileId":1622}],"1685":[{"duration":200,"tileId":1684},{"duration":200,"tileId":1685},{"duration":200,"tileId":1686}],"1691":[{"duration":200,"tileId":1690},{"duration":200,"tileId":1691},{"duration":200,"tileId":1692}],"1813":[{"duration":100,"tileId":1812},{"duration":100,"tileId":1813},{"duration":100,"tileId":1814},{"duration":100,"tileId":1815},{"duration":100,"tileId":1816},{"duration":100,"tileId":1817},{"duration":100,"tileId":1818},{"duration":100,"tileId":1819},{"duration":100,"tileId":1820},{"duration":100,"tileId":1821},{"duration":100,"tileId":1822},{"duration":100,"tileId":1823},{"duration":100,"tileId":1824},{"duration":100,"tileId":1825},{"duration":100,"tileId":1826},{"duration":100,"tileId":1827},{"duration":100,"tileId":1828},{"duration":100,"tileId":1829},{"duration":100,"tileId":1830}],"1877":[{"duration":100,"tileId":1876},{"duration":100,"tileId":1877},{"duration":100,"tileId":1878},{"duration":100,"tileId":1879},{"duration":100,"tileId":1880},{"duration":100,"tileId":1881},{"duration":100,"tileId":1882},{"duration":100,"tileId":1883},{"duration":100,"tileId":1884},{"duration":100,"tileId":1885},{"duration":100,"tileId":1886},{"duration":100,"tileId":1887},{"duration":100,"tileId":1888},{"duration":100,"tileId":1889},{"duration":100,"tileId":1890},{"duration":100,"tileId":1891},{"duration":100,"tileId":1892},{"duration":100,"tileId":1893},{"duration":100,"tileId":1894}],"1897":[{"duration":200,"tileId":1896},{"duration":200,"tileId":1897},{"duration":200,"tileId":1898}],"1926":[{"duration":400,"tileId":1925},{"duration":400,"tileId":1926},{"duration":400,"tileId":1927}],"1990":[{"duration":400,"tileId":1989},{"duration":400,"tileId":1990}],"2054":[{"duration":400,"tileId":2053},{"duration":400,"tileId":2054}],"2246":[{"duration":200,"tileId":2245},{"duration":200,"tileId":2246},{"duration":200,"tileId":2247},{"duration":200,"tileId":2248}],"2310":[{"duration":200,"tileId":2309},{"duration":200,"tileId":2310},{"duration":200,"tileId":2311},{"duration":200,"tileId":2312}],"2376":[{"duration":300,"tileId":2375},{"duration":300,"tileId":2376}],"2394":[{"duration":400,"tileId":2393},{"duration":400,"tileId":2394},{"duration":400,"tileId":2395}],"2458":[{"duration":400,"tileId":2457},{"duration":400,"tileId":2458}],"2522":[{"duration":400,"tileId":2521},{"duration":400,"tileId":2522}],"2665":[{"duration":200,"tileId":2664},{"duration":200,"tileId":2665},{"duration":200,"tileId":2666}],"2714":[{"duration":150,"tileId":2713},{"duration":150,"tileId":2714},{"duration":150,"tileId":2715},{"duration":150,"tileId":2716}],"2778":[{"duration":200,"tileId":2777},{"duration":200,"tileId":2778},{"duration":200,"tileId":2779},{"duration":200,"tileId":2780}],"2844":[{"duration":300,"tileId":2843},{"duration":300,"tileId":2844}],"3201":[{"duration":200,"tileId":3200},{"duration":200,"tileId":3201},{"duration":200,"tileId":3202},{"duration":200,"tileId":3203}],"3265":[{"duration":200,"tileId":3264},{"duration":200,"tileId":3265},{"duration":200,"tileId":3266},{"duration":200,"tileId":3267}],"3329":[{"duration":200,"tileId":3328},{"duration":200,"tileId":3329},{"duration":200,"tileId":3330},{"duration":200,"tileId":3331}],"3393":[{"duration":200,"tileId":3392},{"duration":200,"tileId":3393},{"duration":200,"tileId":3394},{"duration":200,"tileId":3395}],"3669":[{"duration":150,"tileId":3668},{"duration":150,"tileId":3669},{"duration":150,"tileId":3670},{"duration":150,"tileId":3671}],"3733":[{"duration":150,"tileId":3732},{"duration":150,"tileId":3733},{"duration":150,"tileId":3734},{"duration":150,"tileId":3735}],"3797":[{"duration":150,"tileId":3796},{"duration":150,"tileId":3797},{"duration":150,"tileId":3798},{"duration":150,"tileId":3799}],"3861":[{"duration":150,"tileId":3860},{"duration":150,"tileId":3861},{"duration":150,"tileId":3862},{"duration":150,"tileId":3863}],"3922":[{"duration":200,"tileId":3921},{"duration":200,"tileId":3922},{"duration":200,"tileId":3923}],"3947":[{"duration":200,"tileId":3946},{"duration":200,"tileId":3947},{"duration":200,"tileId":3948},{"duration":200,"tileId":3949},{"duration":200,"tileId":3950},{"duration":200,"tileId":3951}],"3954":[{"duration":200,"tileId":3953},{"duration":200,"tileId":3954},{"duration":200,"tileId":3955},{"duration":200,"tileId":3956},{"duration":200,"tileId":3957},{"duration":200,"tileId":3958}],"3998":[{"duration":250,"tileId":3997},{"duration":250,"tileId":4000},{"duration":250,"tileId":4003},{"duration":250,"tileId":4006}],"4011":[{"duration":200,"tileId":4010},{"duration":200,"tileId":4011},{"duration":200,"tileId":4012},{"duration":200,"tileId":4013},{"duration":200,"tileId":4014},{"duration":200,"tileId":4015}],"4018":[{"duration":200,"tileId":4017},{"duration":200,"tileId":4018},{"duration":200,"tileId":4019},{"duration":200,"tileId":4020},{"duration":200,"tileId":4021},{"duration":200,"tileId":4022}],"4555":[{"duration":400,"tileId":4554},{"duration":400,"tileId":4555},{"duration":400,"tileId":4556},{"duration":400,"tileId":4557},{"duration":400,"tileId":4558}],"4561":[{"duration":200,"tileId":4560},{"duration":200,"tileId":4561},{"duration":200,"tileId":4562},{"duration":200,"tileId":4563}],"4619":[{"duration":400,"tileId":4618},{"duration":400,"tileId":4619},{"duration":400,"tileId":4620},{"duration":400,"tileId":4621},{"duration":400,"tileId":4622},{"duration":400,"tileId":4623}],"4683":[{"duration":400,"tileId":4682},{"duration":400,"tileId":4683},{"duration":400,"tileId":4684},{"duration":400,"tileId":4685}],"4747":[{"duration":400,"tileId":4746},{"duration":400,"tileId":4747},{"duration":400,"tileId":4748},{"duration":400,"tileId":4749}],"4811":[{"duration":400,"tileId":4810},{"duration":400,"tileId":4811},{"duration":400,"tileId":4812},{"duration":400,"tileId":4813}],"5057":[{"duration":200,"tileId":5056},{"duration":200,"tileId":5057},{"duration":200,"tileId":5058},{"duration":200,"tileId":5059},{"duration":200,"tileId":5060},{"duration":200,"tileId":5061},{"duration":200,"tileId":5062},{"duration":200,"tileId":5063},{"duration":200,"tileId":5064},{"duration":200,"tileId":5065},{"duration":200,"tileId":5066},{"duration":200,"tileId":5067},{"duration":200,"tileId":5068},{"duration":200,"tileId":5069},{"duration":200,"tileId":5070},{"duration":200,"tileId":5071},{"duration":200,"tileId":5072}],"5121":[{"duration":200,"tileId":5120},{"duration":200,"tileId":5121},{"duration":200,"tileId":5122},{"duration":200,"tileId":5123},{"duration":200,"tileId":5124},{"duration":200,"tileId":5125},{"duration":200,"tileId":5126},{"duration":200,"tileId":5127},{"duration":200,"tileId":5128},{"duration":200,"tileId":5129},{"duration":200,"tileId":5130},{"duration":200,"tileId":5131},{"duration":200,"tileId":5132},{"duration":200,"tileId":5133},{"duration":200,"tileId":5134}],"5377":[{"duration":200,"tileId":5376},{"duration":200,"tileId":5377},{"duration":200,"tileId":5378}],"5441":[{"duration":200,"tileId":5440},{"duration":200,"tileId":5441},{"duration":200,"tileId":5442}],"5638":[{"duration":200,"tileId":5637},{"duration":200,"tileId":5638},{"duration":200,"tileId":5639},{"duration":200,"tileId":5640},{"duration":200,"tileId":5641},{"duration":200,"tileId":5642}],"6081":[{"duration":200,"tileId":6080},{"duration":200,"tileId":6081},{"duration":200,"tileId":6082}],"6145":[{"duration":200,"tileId":6144},{"duration":200,"tileId":6145},{"duration":200,"tileId":6146}],"6151":[{"duration":200,"tileId":6150},{"duration":200,"tileId":6151},{"duration":200,"tileId":6152}],"6273":[{"duration":200,"tileId":6272},{"duration":200,"tileId":6273},{"duration":200,"tileId":6274},{"duration":200,"tileId":6275},{"duration":200,"tileId":6276},{"duration":200,"tileId":6277},{"duration":200,"tileId":6278},{"duration":200,"tileId":6279},{"duration":200,"tileId":6280},{"duration":200,"tileId":6281},{"duration":200,"tileId":6282},{"duration":200,"tileId":6283},{"duration":200,"tileId":6284},{"duration":200,"tileId":6285},{"duration":200,"tileId":6286},{"duration":200,"tileId":6287},{"duration":200,"tileId":6288},{"duration":200,"tileId":6289},{"duration":200,"tileId":6290}],"6337":[{"duration":200,"tileId":6336},{"duration":200,"tileId":6337},{"duration":200,"tileId":6338},{"duration":200,"tileId":6339},{"duration":200,"tileId":6340},{"duration":200,"tileId":6341},{"duration":200,"tileId":6342},{"duration":200,"tileId":6343},{"duration":200,"tileId":6344},{"duration":200,"tileId":6345},{"duration":200,"tileId":6346},{"duration":200,"tileId":6347},{"duration":200,"tileId":6348},{"duration":200,"tileId":6349},{"duration":200,"tileId":6350},{"duration":200,"tileId":6351},{"duration":200,"tileId":6352},{"duration":200,"tileId":6353},{"duration":200,"tileId":6354}],"7621":[{"duration":200,"tileId":7620},{"duration":200,"tileId":7621},{"duration":200,"tileId":7622},{"duration":200,"tileId":7623}],"7685":[{"duration":200,"tileId":7684},{"duration":200,"tileId":7685},{"duration":200,"tileId":7686},{"duration":200,"tileId":7687}],"7693":[{"duration":200,"tileId":7692},{"duration":200,"tileId":7693},{"duration":200,"tileId":7694},{"duration":200,"tileId":7695},{"duration":200,"tileId":7696},{"duration":200,"tileId":7697},{"duration":200,"tileId":7698},{"duration":200,"tileId":7699}],"7749":[{"duration":200,"tileId":7748},{"duration":200,"tileId":7749},{"duration":200,"tileId":7750},{"duration":200,"tileId":7751}],"7757":[{"duration":200,"tileId":7756},{"duration":200,"tileId":7757},{"duration":200,"tileId":7758},{"duration":200,"tileId":7759},{"duration":200,"tileId":7760},{"duration":200,"tileId":7761},{"duration":200,"tileId":7762},{"duration":200,"tileId":7763}],"7813":[{"duration":200,"tileId":7812},{"duration":200,"tileId":7813},{"duration":200,"tileId":7814},{"duration":200,"tileId":7815}],"8076":[{"duration":200,"tileId":6150},{"duration":200,"tileId":6151},{"duration":200,"tileId":6152}],"13354":[{"duration":150,"tileId":13353},{"duration":150,"tileId":13417},{"duration":150,"tileId":13481},{"duration":150,"tileId":13545},{"duration":150,"tileId":13609},{"duration":150,"tileId":13673}],"13355":[{"duration":150,"tileId":13354},{"duration":150,"tileId":13418},{"duration":150,"tileId":13482},{"duration":150,"tileId":13546},{"duration":150,"tileId":13610},{"duration":150,"tileId":13674}],"16936":[{"duration":250,"tileId":16935},{"duration":250,"tileId":16936},{"duration":250,"tileId":16937},{"duration":250,"tileId":16938}],"17487":[{"duration":250,"tileId":17486},{"duration":250,"tileId":17488},{"duration":250,"tileId":17490},{"duration":250,"tileId":17492}],"17488":[{"duration":250,"tileId":17487},{"duration":250,"tileId":17489},{"duration":250,"tileId":17491},{"duration":250,"tileId":17493}],"17495":[{"duration":250,"tileId":17494},{"duration":250,"tileId":17495},{"duration":250,"tileId":17496},{"duration":250,"tileId":17497}],"17506":[{"duration":150,"tileId":17505},{"duration":150,"tileId":17506},{"duration":150,"tileId":17507},{"duration":150,"tileId":17508}],"17551":[{"duration":250,"tileId":17550},{"duration":250,"tileId":17552},{"duration":250,"tileId":17554},{"duration":250,"tileId":17556}],"17552":[{"duration":250,"tileId":17551},{"duration":250,"tileId":17553},{"duration":250,"tileId":17555},{"duration":250,"tileId":17557}],"17559":[{"duration":250,"tileId":17558},{"duration":250,"tileId":17559},{"duration":250,"tileId":17560},{"duration":250,"tileId":17561}],"17570":[{"duration":150,"tileId":17569},{"duration":150,"tileId":17570},{"duration":150,"tileId":17571},{"duration":150,"tileId":17572}],"17615":[{"duration":250,"tileId":17614},{"duration":250,"tileId":17615},{"duration":250,"tileId":17616},{"duration":250,"tileId":17617},{"duration":250,"tileId":17618},{"duration":250,"tileId":17619}],"17634":[{"duration":150,"tileId":17633},{"duration":150,"tileId":17634},{"duration":150,"tileId":17635},{"duration":150,"tileId":17636}],"17679":[{"duration":250,"tileId":17678},{"duration":250,"tileId":17679},{"duration":250,"tileId":17680},{"duration":250,"tileId":17681}],"17698":[{"duration":150,"tileId":17697},{"duration":150,"tileId":17698},{"duration":150,"tileId":17699},{"duration":150,"tileId":17700}],"17743":[{"duration":250,"tileId":17742},{"duration":250,"tileId":17743},{"duration":250,"tileId":17744},{"duration":250,"tileId":17745},{"duration":250,"tileId":17746},{"duration":250,"tileId":17747}],"17807":[{"duration":250,"tileId":17806},{"duration":250,"tileId":17807},{"duration":250,"tileId":17808},{"duration":250,"tileId":17809}],"17871":[{"duration":250,"tileId":17870},{"duration":250,"tileId":17871},{"duration":250,"tileId":17872},{"duration":250,"tileId":17873},{"duration":250,"tileId":17874},{"duration":250,"tileId":17875}]}} \ No newline at end of file +{"width":1152,"height":1008,"tileSize":16,"version":1695981410504,"high":[17,18,19,58,59,74,77,78,81,82,83,131,132,133,134,135,136,137,140,141,142,143,186,187,192,193,195,196,197,198,199,200,201,203,204,205,206,207,208,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,320,321,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,387,393,394,401,458,465,566,567,630,631,640,641,704,705,896,897,960,961,1292,1293,1356,1357,1399,1401,1414,1415,1416,1419,1420,1421,1422,1423,1424,1425,1426,1462,1463,1464,1465,1466,1477,1478,1479,1480,1481,1483,1484,1485,1486,1487,1488,1489,1490,1526,1527,1528,1529,1530,1531,1532,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1590,1591,1592,1593,1594,1595,1596,1604,1605,1606,1607,1608,1609,1610,1648,1649,1650,1653,1654,1655,1656,1657,1658,1659,1660,1668,1669,1670,1671,1672,1673,1674,1712,1713,1714,1717,1718,1719,1720,1721,1722,1723,1776,1777,1778,1781,1782,1787,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1845,1846,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1942,1949,1950,1951,1952,1953,1954,1955,2004,2005,2068,2069,4174,4175,4178,4179,4182,4184,4185,4186,4187,4270,4271,4273,4274,4275,4276,4277,4278,4279,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,5005,5006,5058,5059,5060,5068,5069,5070,5117,5118,5119,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5344,5345,5346,5347,5348,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5387,5388,5440,5441,5442,5443,5444,5501,5502,5503,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5892,5893,5894,5895,5896,5960,5961,5962,6018,6019,6032,6056,6057,6058,6059,6069,6070,6071,6072,6073,6113,6114,6115,6116,6117,6127,6128,6129,6130,6152,6153,6154,6155,6208,6209,6210,6211,6212,6213,6216,6217,6218,6221,6222,6223,6224,6225,6226,6248,6249,6250,6304,6305,6306,6307,6308,6311,6312,6313,6314,6315,6317,6318,6319,6320,6321,6322,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,8276,8277,8278,8372,8373,8374,8552,8553,8554,8648,8649,8650,8709,8710,8711,8721,8722,8723,8730,8731,8732,8766,8767,8768,8775,8776,8777,8784,8785,8786,8793,8794,8795,8805,8806,8807,8817,8818,8819,8826,8827,8828,8862,8863,8864,8871,8872,8873,8880,8881,8882,8889,8890,8891,8900,8901,8902,8903,8904,8905,8912,8913,8914,8915,8916,8917,8921,8922,8923,8924,8925,8926,8939,8940,8941,8942,8943,8944,8948,8949,8950,8951,8952,8953,8957,8958,8959,8960,8961,8962,8966,8967,8968,8969,8970,8971,8975,8976,8977,8978,8979,8980,8984,8985,8986,8987,8988,8989,8996,8997,8998,8999,9000,9001,9008,9009,9010,9011,9012,9013,9017,9018,9019,9020,9021,9022,9035,9036,9037,9038,9039,9040,9044,9045,9046,9047,9048,9049,9053,9054,9055,9056,9057,9058,9062,9063,9064,9065,9066,9067,9071,9072,9073,9074,9075,9076,9080,9081,9082,9083,9084,9085,9092,9093,9094,9095,9096,9097,9104,9105,9106,9107,9108,9109,9113,9114,9115,9116,9117,9118,9131,9132,9133,9134,9135,9136,9140,9141,9142,9143,9144,9145,9149,9150,9151,9152,9153,9154,9158,9159,9160,9161,9162,9163,9167,9168,9169,9170,9171,9172,9176,9177,9178,9179,9180,9181,9294,9295,9296,9297,9303,9304,9305,9306,9321,9322,9323,9324,9330,9331,9332,9333,9339,9340,9341,9342,9348,9349,9350,9351,9357,9358,9359,9360,9366,9367,9368,9369,10245,10246,10247,10248,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10309,10310,10311,10312,10313,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10373,10374,10375,10376,10377,10393,10403,10457,10467,10521,10531,10698,10699,10700,10701,10753,10754,10755,10756,10757,10758,10759,10760,10777,10778,10779,10780,10781,10782,10783,10817,10818,10819,10820,10826,10827,10829,10841,10842,10843,10844,10845,10846,10847,10881,10882,10883,10884,10905,10906,10907,10908,10909,10910,10911,10944,10949,10950,10951,10952,10953,10954,10955,10956,10957,10969,10975,11033,11039,11072,11074,11077,11079,11080,11081,11082,11084,11085,11143,11144,11145,11146,11200,11201,11202,11207,11208,11209,11210,11328,11329,11330,11340,11341,11456,11457,11458,11459,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11584,11585,11586,11587,11596,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11714,11715,11726,11737,11750,11801,11814,11905,11906,11907,11908,11909,11910,11911,11913,11914,11915,11916,11917,11918,11919,11920,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12063,12064,12065,12066,12067,12068,12069,12070,12096,12097,12098,12099,12100,12101,12102,12103,12105,12106,12107,12108,12109,12110,12111,12127,12128,12129,12130,12131,12132,12133,12134,12160,12161,12166,12167,12169,12175,12191,12192,12193,12194,12195,12196,12197,12198,12224,12225,12230,12231,12233,12239,12288,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12608,12609,12613,12614,12615,12621,12622,12630,12639,12640,12643,12644,12672,12673,12677,12678,12679,12685,12686,12694,12702,12703,12704,12705,12706,12707,12708,12709,12743,12749,12750,12758,12766,12767,12768,12769,12770,12771,12772,12773,12807,12813,12814,12822,12830,12831,12832,12835,12836,12837,12886,12894,12897,12898,12901,12950,13278,13283,13286,13287,13288,13289,13290,13291,13340,13341,13342,13343,13345,13346,13347,13348,13350,13351,13352,13353,13354,13355,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13470,13475,13476,13477,13479,13480,13481,13482,13485,13671,13672,13673,13674,13734,13735,13736,13737,13740,13741,13742,13745,13746,13747,13749,13750,13751,13798,13799,13800,13801,13803,13804,13805,13806,13808,13809,13810,13811,13812,13867,13868,13869,13870,13872,13873,13874,13875,13876,13991,13992,13993,14054,14055,14056,14057,14058,14060,14061,14062,14065,14066,14067,14070,14071,14072,14075,14076,14077,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14182,14183,14184,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14996,14997,15011,15012,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15049,15051,15053,15075,15076,15114,15116,15118,15139,15140,15177,15179,15181,15184,15185,15186,15189,15190,15191,15192,15242,15244,15246,15248,15249,15250,15251,15252,15313,15314,15315,15316,15317,15318,15319,15320,15368,15369,15370,15371,15384,15441,15442,15445,15446,15447,15496,15497,15498,15499,15504,15505,15506,15507,15572,15573,15639,15842,15858,15906,16854],"tilesets":[{"firstGid":0,"lastGid":4095,"path":"tilesets/tilesheet-1.png","relativePath":"tilesheet-1.png"},{"firstGid":4096,"lastGid":10239,"path":"tilesets/tilesheet-2.png","relativePath":"tilesheet-2.png"},{"firstGid":10240,"lastGid":14335,"path":"tilesets/tilesheet-3.png","relativePath":"tilesheet-3.png"},{"firstGid":14992,"lastGid":19087,"path":"tilesets/tilesheet-4.png","relativePath":"tilesheet-4.png"}],"animations":{"29":[{"duration":300,"tileId":28},{"duration":300,"tileId":29},{"duration":300,"tileId":30},{"duration":300,"tileId":31}],"33":[{"duration":300,"tileId":32},{"duration":300,"tileId":33},{"duration":300,"tileId":34},{"duration":300,"tileId":35}],"64":[{"duration":250,"tileId":63},{"duration":250,"tileId":64},{"duration":250,"tileId":65},{"duration":250,"tileId":66},{"duration":250,"tileId":67},{"duration":250,"tileId":68}],"93":[{"duration":300,"tileId":92},{"duration":300,"tileId":93},{"duration":300,"tileId":94},{"duration":300,"tileId":95}],"97":[{"duration":300,"tileId":96},{"duration":300,"tileId":97},{"duration":300,"tileId":98},{"duration":300,"tileId":99}],"128":[{"duration":250,"tileId":127},{"duration":250,"tileId":0},{"duration":250,"tileId":1},{"duration":250,"tileId":2},{"duration":250,"tileId":3},{"duration":250,"tileId":4}],"146":[{"duration":350,"tileId":145},{"duration":350,"tileId":146}],"157":[{"duration":300,"tileId":156},{"duration":300,"tileId":157},{"duration":300,"tileId":158},{"duration":300,"tileId":159}],"161":[{"duration":300,"tileId":160},{"duration":300,"tileId":161},{"duration":300,"tileId":162},{"duration":300,"tileId":163}],"210":[{"duration":350,"tileId":209},{"duration":350,"tileId":210}],"221":[{"duration":300,"tileId":220},{"duration":300,"tileId":221},{"duration":300,"tileId":222},{"duration":300,"tileId":223}],"225":[{"duration":300,"tileId":224},{"duration":300,"tileId":225},{"duration":300,"tileId":226},{"duration":300,"tileId":227}],"285":[{"duration":300,"tileId":284},{"duration":300,"tileId":285},{"duration":300,"tileId":286},{"duration":300,"tileId":287}],"289":[{"duration":300,"tileId":288},{"duration":300,"tileId":289},{"duration":300,"tileId":290},{"duration":300,"tileId":291}],"349":[{"duration":300,"tileId":348},{"duration":300,"tileId":349},{"duration":300,"tileId":350},{"duration":300,"tileId":351}],"353":[{"duration":300,"tileId":352},{"duration":300,"tileId":353},{"duration":300,"tileId":354},{"duration":300,"tileId":355}],"1211":[{"duration":300,"tileId":1210},{"duration":300,"tileId":1211},{"duration":300,"tileId":1212}],"3361":[{"duration":400,"tileId":3360},{"duration":400,"tileId":3361}],"3395":[{"duration":400,"tileId":3394},{"duration":400,"tileId":3395},{"duration":400,"tileId":3396}],"3413":[{"duration":400,"tileId":3412},{"duration":400,"tileId":3413},{"duration":400,"tileId":3414}],"3425":[{"duration":400,"tileId":3424},{"duration":400,"tileId":3425}],"3431":[{"duration":400,"tileId":3430},{"duration":400,"tileId":3431},{"duration":400,"tileId":3432}],"3437":[{"duration":400,"tileId":3436},{"duration":400,"tileId":3437},{"duration":400,"tileId":3438}],"3443":[{"duration":400,"tileId":3442},{"duration":400,"tileId":3443},{"duration":400,"tileId":3444}],"3449":[{"duration":400,"tileId":3448},{"duration":400,"tileId":3449},{"duration":400,"tileId":3450}],"3459":[{"duration":400,"tileId":3458},{"duration":400,"tileId":3459}],"3477":[{"duration":400,"tileId":3476},{"duration":400,"tileId":3477}],"3489":[{"duration":400,"tileId":3488},{"duration":400,"tileId":3489}],"3495":[{"duration":400,"tileId":3494},{"duration":400,"tileId":3495}],"3501":[{"duration":400,"tileId":3500},{"duration":400,"tileId":3501}],"3507":[{"duration":400,"tileId":3506},{"duration":400,"tileId":3507}],"3513":[{"duration":400,"tileId":3512},{"duration":400,"tileId":3513}],"3553":[{"duration":400,"tileId":3552},{"duration":400,"tileId":3553},{"duration":400,"tileId":3554}],"4096":[{"duration":250,"tileId":4095},{"duration":250,"tileId":4096},{"duration":250,"tileId":4097},{"duration":250,"tileId":4098},{"duration":250,"tileId":4099},{"duration":250,"tileId":4100},{"duration":250,"tileId":4101},{"duration":250,"tileId":4102},{"duration":250,"tileId":4103},{"duration":250,"tileId":4104},{"duration":250,"tileId":4105},{"duration":250,"tileId":4106},{"duration":250,"tileId":4107},{"duration":250,"tileId":4108},{"duration":250,"tileId":4109},{"duration":250,"tileId":4110},{"duration":250,"tileId":4111}],"4184":[{"duration":200,"tileId":4183},{"duration":200,"tileId":4185},{"duration":200,"tileId":4375},{"duration":200,"tileId":4377}],"4185":[{"duration":200,"tileId":4184},{"duration":200,"tileId":4186},{"duration":200,"tileId":4376},{"duration":200,"tileId":4378}],"4192":[{"duration":250,"tileId":4191},{"duration":250,"tileId":4192},{"duration":250,"tileId":4193},{"duration":250,"tileId":4194},{"duration":250,"tileId":4195},{"duration":250,"tileId":4196},{"duration":250,"tileId":4197},{"duration":250,"tileId":4198},{"duration":250,"tileId":4199},{"duration":250,"tileId":4200},{"duration":250,"tileId":4201},{"duration":250,"tileId":4202},{"duration":250,"tileId":4203},{"duration":250,"tileId":4204},{"duration":250,"tileId":4205}],"4288":[{"duration":250,"tileId":4287},{"duration":250,"tileId":4288},{"duration":250,"tileId":4289},{"duration":250,"tileId":4290},{"duration":250,"tileId":4291},{"duration":250,"tileId":4292},{"duration":250,"tileId":4293},{"duration":250,"tileId":4294},{"duration":250,"tileId":4295},{"duration":250,"tileId":4296},{"duration":250,"tileId":4297},{"duration":250,"tileId":4298},{"duration":250,"tileId":4299},{"duration":250,"tileId":4300},{"duration":250,"tileId":4301},{"duration":250,"tileId":4302},{"duration":250,"tileId":4303}],"4384":[{"duration":250,"tileId":4383},{"duration":250,"tileId":4384},{"duration":250,"tileId":4385},{"duration":250,"tileId":4386},{"duration":250,"tileId":4387},{"duration":250,"tileId":4388},{"duration":250,"tileId":4389},{"duration":250,"tileId":4390},{"duration":250,"tileId":4391},{"duration":250,"tileId":4392},{"duration":250,"tileId":4393},{"duration":250,"tileId":4394},{"duration":250,"tileId":4395},{"duration":250,"tileId":4396},{"duration":250,"tileId":4397}],"4491":[{"duration":250,"tileId":4490},{"duration":250,"tileId":4491},{"duration":250,"tileId":4492},{"duration":250,"tileId":4493}],"4495":[{"duration":250,"tileId":4494},{"duration":250,"tileId":4495},{"duration":250,"tileId":4496},{"duration":250,"tileId":4497}],"4591":[{"duration":250,"tileId":4590},{"duration":250,"tileId":4591},{"duration":250,"tileId":4592},{"duration":250,"tileId":4593}],"4672":[{"duration":250,"tileId":4671},{"duration":250,"tileId":4672},{"duration":250,"tileId":4673},{"duration":250,"tileId":4674},{"duration":250,"tileId":4675},{"duration":250,"tileId":4676},{"duration":250,"tileId":4677},{"duration":250,"tileId":4678},{"duration":250,"tileId":4679},{"duration":250,"tileId":4680},{"duration":250,"tileId":4681},{"duration":250,"tileId":4682},{"duration":250,"tileId":4683},{"duration":250,"tileId":4684},{"duration":250,"tileId":4685},{"duration":250,"tileId":4686},{"duration":250,"tileId":4687},{"duration":250,"tileId":4688},{"duration":250,"tileId":4689}],"4768":[{"duration":250,"tileId":4767},{"duration":250,"tileId":4768},{"duration":250,"tileId":4769},{"duration":250,"tileId":4770},{"duration":250,"tileId":4771},{"duration":250,"tileId":4772},{"duration":250,"tileId":4773},{"duration":250,"tileId":4774},{"duration":250,"tileId":4775},{"duration":250,"tileId":4776},{"duration":250,"tileId":4777},{"duration":250,"tileId":4778},{"duration":250,"tileId":4779},{"duration":250,"tileId":4780},{"duration":250,"tileId":4781},{"duration":250,"tileId":4782},{"duration":250,"tileId":4783},{"duration":250,"tileId":4784},{"duration":250,"tileId":4785}],"4864":[{"duration":250,"tileId":4863},{"duration":250,"tileId":4864},{"duration":250,"tileId":4865},{"duration":250,"tileId":4866},{"duration":250,"tileId":4867},{"duration":250,"tileId":4868},{"duration":250,"tileId":4869},{"duration":250,"tileId":4870},{"duration":250,"tileId":4871},{"duration":250,"tileId":4872},{"duration":250,"tileId":4873},{"duration":250,"tileId":4874},{"duration":250,"tileId":4875},{"duration":250,"tileId":4876},{"duration":250,"tileId":4877},{"duration":250,"tileId":4878},{"duration":250,"tileId":4879},{"duration":250,"tileId":4880},{"duration":250,"tileId":4881}],"4960":[{"duration":250,"tileId":4959},{"duration":250,"tileId":4960},{"duration":250,"tileId":4961},{"duration":250,"tileId":4962},{"duration":250,"tileId":4963},{"duration":250,"tileId":4964},{"duration":250,"tileId":4965},{"duration":250,"tileId":4966},{"duration":250,"tileId":4967},{"duration":250,"tileId":4968},{"duration":250,"tileId":4969},{"duration":250,"tileId":4970},{"duration":250,"tileId":4971},{"duration":250,"tileId":4972},{"duration":250,"tileId":4973},{"duration":250,"tileId":4974},{"duration":250,"tileId":4975},{"duration":250,"tileId":4976},{"duration":250,"tileId":4977}],"5608":[{"duration":250,"tileId":5607},{"duration":250,"tileId":5609},{"duration":250,"tileId":5611},{"duration":250,"tileId":5613}],"5609":[{"duration":250,"tileId":5608},{"duration":250,"tileId":5610},{"duration":250,"tileId":5612},{"duration":250,"tileId":5614}],"5704":[{"duration":250,"tileId":5703},{"duration":250,"tileId":5705},{"duration":250,"tileId":5707},{"duration":250,"tileId":5709}],"5705":[{"duration":250,"tileId":5704},{"duration":250,"tileId":5706},{"duration":250,"tileId":5708},{"duration":250,"tileId":5710}],"5800":[{"duration":250,"tileId":5799},{"duration":250,"tileId":5801},{"duration":250,"tileId":5803},{"duration":250,"tileId":5805}],"5801":[{"duration":250,"tileId":5800},{"duration":250,"tileId":5802},{"duration":250,"tileId":5804},{"duration":250,"tileId":5806}],"6074":[{"duration":350,"tileId":6073},{"duration":350,"tileId":6169},{"duration":350,"tileId":6265},{"duration":350,"tileId":6361},{"duration":350,"tileId":6457},{"duration":350,"tileId":6553}],"6075":[{"duration":350,"tileId":6074},{"duration":350,"tileId":6170},{"duration":350,"tileId":6266},{"duration":350,"tileId":6362},{"duration":350,"tileId":6458},{"duration":350,"tileId":6554}],"6076":[{"duration":350,"tileId":6075},{"duration":350,"tileId":6171},{"duration":350,"tileId":6267},{"duration":350,"tileId":6363},{"duration":350,"tileId":6459},{"duration":350,"tileId":6555}],"6077":[{"duration":350,"tileId":6076},{"duration":350,"tileId":6172},{"duration":350,"tileId":6268},{"duration":350,"tileId":6364},{"duration":350,"tileId":6460},{"duration":350,"tileId":6556}],"6078":[{"duration":350,"tileId":6077},{"duration":350,"tileId":6173},{"duration":350,"tileId":6269},{"duration":350,"tileId":6365},{"duration":350,"tileId":6461},{"duration":350,"tileId":6557}],"6079":[{"duration":350,"tileId":6078},{"duration":350,"tileId":6174},{"duration":350,"tileId":6270},{"duration":350,"tileId":6366},{"duration":350,"tileId":6462},{"duration":350,"tileId":6558}],"8752":[{"duration":250,"tileId":8751},{"duration":250,"tileId":8753},{"duration":250,"tileId":8847},{"duration":250,"tileId":8849}],"8753":[{"duration":250,"tileId":8752},{"duration":250,"tileId":8754},{"duration":250,"tileId":8848},{"duration":250,"tileId":8850}],"8928":[{"duration":350,"tileId":8927},{"duration":350,"tileId":8928}],"8930":[{"duration":350,"tileId":8929},{"duration":350,"tileId":8930},{"duration":350,"tileId":9023}],"9024":[{"duration":350,"tileId":9023},{"duration":350,"tileId":8927}],"15283":[{"duration":250,"tileId":15282},{"duration":250,"tileId":15283},{"duration":250,"tileId":15284},{"duration":250,"tileId":15285}],"15834":[{"duration":250,"tileId":15833},{"duration":250,"tileId":15835},{"duration":250,"tileId":15837},{"duration":250,"tileId":15839}],"15835":[{"duration":250,"tileId":15834},{"duration":250,"tileId":15836},{"duration":250,"tileId":15838},{"duration":250,"tileId":15840}],"15842":[{"duration":250,"tileId":15841},{"duration":250,"tileId":15842},{"duration":250,"tileId":15843},{"duration":250,"tileId":15844}],"15853":[{"duration":150,"tileId":15852},{"duration":150,"tileId":15853},{"duration":150,"tileId":15854},{"duration":150,"tileId":15855}],"15898":[{"duration":250,"tileId":15897},{"duration":250,"tileId":15899},{"duration":250,"tileId":15901},{"duration":250,"tileId":15903}],"15899":[{"duration":250,"tileId":15898},{"duration":250,"tileId":15900},{"duration":250,"tileId":15902},{"duration":250,"tileId":15904}],"15906":[{"duration":250,"tileId":15905},{"duration":250,"tileId":15906},{"duration":250,"tileId":15907},{"duration":250,"tileId":15908}],"15917":[{"duration":150,"tileId":15916},{"duration":150,"tileId":15917},{"duration":150,"tileId":15918},{"duration":150,"tileId":15919}],"15962":[{"duration":250,"tileId":15961},{"duration":250,"tileId":15962},{"duration":250,"tileId":15963},{"duration":250,"tileId":15964},{"duration":250,"tileId":15965},{"duration":250,"tileId":15966}],"15981":[{"duration":150,"tileId":15980},{"duration":150,"tileId":15981},{"duration":150,"tileId":15982},{"duration":150,"tileId":15983}],"16026":[{"duration":250,"tileId":16025},{"duration":250,"tileId":16026},{"duration":250,"tileId":16027},{"duration":250,"tileId":16028}],"16045":[{"duration":150,"tileId":16044},{"duration":150,"tileId":16045},{"duration":150,"tileId":16046},{"duration":150,"tileId":16047}],"16090":[{"duration":250,"tileId":16089},{"duration":250,"tileId":16090},{"duration":250,"tileId":16091},{"duration":250,"tileId":16092},{"duration":250,"tileId":16093},{"duration":250,"tileId":16094}],"16154":[{"duration":250,"tileId":16153},{"duration":250,"tileId":16154},{"duration":250,"tileId":16155},{"duration":250,"tileId":16156}],"16218":[{"duration":250,"tileId":16217},{"duration":250,"tileId":16218},{"duration":250,"tileId":16219},{"duration":250,"tileId":16220},{"duration":250,"tileId":16221},{"duration":250,"tileId":16222}]}} \ No newline at end of file diff --git a/packages/client/data/sprites.json b/packages/client/data/sprites.json index f3eb54a178..56847b4a58 100755 --- a/packages/client/data/sprites.json +++ b/packages/client/data/sprites.json @@ -1,53 +1,291 @@ [ - { "id": "player/base", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/helmet/cobalthelmet", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/helmet/ironhelmet", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/helmet/copperhelmet", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/helmet/tinhelmet", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/helmet/bronzehelmet", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/helmet/goldhelmet", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/chestplate/ironchestplate", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/legs/cobaltlegs", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/legs/copperlegs", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/legs/tinlegs", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/legs/ironlegs", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/skin/danbo", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/skin/danboblue", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/skin/danbogreen", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/skin/danbored", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/skin/taekwondo", "width": 32, "height": 32, "idleSpeed": 250, "offsetX": -8 }, - { "id": "player/weapon/bronzeaxe", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/ironaxe", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/goldaxe", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/cobaltaxe", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/fishingpole", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -8, "offsetY": -16 }, + { "id": "player/base", "width": 32, "height": 32, "offsetX": -8 }, - { "id": "player/weapon/icesword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - - { "id": "player/weapon/coppersword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/tinsword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/bronzesword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/ironsword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/nisocsword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/cinnabarsword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/pytharsword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/ibosword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, - { "id": "player/weapon/goldsword", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -24 }, + { "id": "player/helmet/cobalthelmet", "offsetX": -8 }, + { "id": "player/helmet/ironhelmet", "offsetX": -8 }, + { "id": "player/helmet/copperhelmet", "offsetX": -8 }, + { "id": "player/helmet/tinhelmet", "offsetX": -8 }, + { "id": "player/helmet/bronzehelmet", "offsetX": -8 }, + { "id": "player/helmet/goldhelmet", "offsetX": -8 }, + { "id": "player/helmet/crystalhood", "offsetX": -8 }, + { "id": "player/helmet/fishbowl", "offsetX": -8 }, + { "id": "player/helmet/darkmagehood", "offsetX": -8 }, + { "id": "player/helmet/darkmagehoodblue", "offsetX": -8 }, + { "id": "player/helmet/darkmagehoodgreen", "offsetX": -8 }, + { "id": "player/helmet/darkmagehoodgold", "offsetX": -8 }, + { "id": "player/helmet/pilgrimhat", "offsetX": -8 }, + { "id": "player/helmet/pilgrimhatpink", "offsetX": -8 }, + { "id": "player/helmet/witchhat", "offsetX": -8 }, + { "id": "player/helmet/witchhatblue", "offsetX": -8 }, + { "id": "player/helmet/mushroomhat", "offsetX": -8 }, + { "id": "player/helmet/wizardhatblue", "offsetX": -8 }, + { "id": "player/helmet/wizardhatblack", "offsetX": -8 }, + { "id": "player/helmet/wizardhatcrimson", "offsetX": -8 }, + { "id": "player/helmet/wizardhatdarkblue", "offsetX": -8 }, + { "id": "player/helmet/wizardhatgreen", "offsetX": -8 }, + { "id": "player/helmet/wizardhatpink", "offsetX": -8 }, + { "id": "player/helmet/wizardhatpurple", "offsetX": -8 }, + { "id": "player/helmet/wizardhatred", "offsetX": -8 }, + { "id": "player/helmet/wizardhatturquoise", "offsetX": -8 }, + { "id": "player/helmet/wizardhatwhite", "offsetX": -8 }, + { "id": "player/helmet/wizardhatyellow", "offsetX": -8 }, + { "id": "player/helmet/nighthelm", "offsetX": -8 }, + { "id": "player/helmet/wolfhelmet", "offsetX": -8 }, + { "id": "player/helmet/demoniccrystalhood", "offsetX": -8 }, + { "id": "player/helmet/demonichelm", "offsetX": -8 }, + { "id": "player/helmet/helmofhaste", "offsetX": -8 }, + { "id": "player/helmet/helmofliberty", "offsetX": -8 }, + { "id": "player/helmet/magmahelm", "offsetX": -8 }, + { "id": "player/helmet/moonhelm", "offsetX": -8 }, + { "id": "player/helmet/naturecrystalhood", "offsetX": -8 }, + { "id": "player/helmet/sunshinecrystalhood", "offsetX": -8 }, + { "id": "player/helmet/redmoonhelm", "offsetX": -8 }, + { "id": "player/helmet/hellkeeperhelm", "offsetX": -8 }, + { "id": "player/helmet/sentinelhelm", "offsetX": -8 }, + { "id": "player/helmet/sapphirehelm", "offsetX": -8 }, + { "id": "player/helmet/amethysthelm", "offsetX": -8 }, + { "id": "player/helmet/midnightamethysthelm", "offsetX": -8 }, + { "id": "player/helmet/rubyhelm", "offsetX": -8 }, + { "id": "player/helmet/froghelm", "offsetX": -8 }, + { "id": "player/helmet/bearhelm", "offsetX": -8 }, + { "id": "player/helmet/darkskeletonhelm", "offsetX": -8 }, + { "id": "player/helmet/flameblackhelmet", "offsetX": -8 }, + { "id": "player/helmet/flamebluehelmet", "offsetX": -8 }, + { "id": "player/helmet/flamecursehelmet", "offsetX": -8 }, + { "id": "player/helmet/flamehelmet", "offsetX": -8 }, + { "id": "player/helmet/jesterhat", "offsetX": -8 }, + { "id": "player/helmet/oldmanmask", "offsetX": -8 }, + { "id": "player/helmet/refinedsapphirehelmet", "offsetX": -8 }, + { "id": "player/helmet/scholarshat", "offsetX": -8 }, + { "id": "player/helmet/scholarshatblack", "offsetX": -8 }, + { "id": "player/helmet/scholarshatgreen", "offsetX": -8 }, + { "id": "player/helmet/scholarshatred", "offsetX": -8 }, + { "id": "player/helmet/scholarshatyellow", "offsetX": -8 }, + { "id": "player/helmet/skeletonhelm", "offsetX": -8 }, + { "id": "player/helmet/slimehelmet", "offsetX": -8 }, + { "id": "player/helmet/slimekinghelmet", "offsetX": -8 }, + { "id": "player/helmet/slimekingrarehelmet", "offsetX": -8 }, + { "id": "player/helmet/slimepurplehelmet", "offsetX": -8 }, + { "id": "player/helmet/slimeredhelmet", "offsetX": -8 }, + { "id": "player/helmet/slimetealhelmet", "offsetX": -8 }, + { "id": "player/helmet/knighthelmet", "offsetX": -8 }, + { "id": "player/helmet/paladinhelmet", "offsetX": -8 }, + { "id": "player/helmet/samuraihelmet", "offsetX": -8 }, + { "id": "player/helmet/toyhat", "offsetX": -8 }, + { "id": "player/helmet/toyhatprogrammer", "offsetX": -8 }, + { "id": "player/helmet/toyhatwhite", "offsetX": -8 }, + { "id": "player/helmet/leatherhelmet", "offsetX": -8 }, + { "id": "player/helmet/artistcrown", "offsetX": -8 }, + { "id": "player/helmet/conquerorhelmet", "offsetX": -8 }, + { "id": "player/helmet/elfhelmet", "offsetX": -8 }, + { "id": "player/helmet/elfhelmetgrown", "offsetX": -8 }, + { "id": "player/helmet/minitaurushelmet", "offsetX": -8 }, + { "id": "player/helmet/scarabhelmet", "offsetX": -8 }, - { "id": "player/weapon/aquastaff", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -20 }, - { "id": "player/weapon/lightningstaff", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -20 }, - { "id": "player/weapon/naturestaff", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -20 }, - { "id": "player/weapon/firestaff", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -20 }, - { "id": "player/weapon/cursestaff", "width": 48, "height": 48, "idleSpeed": 250, "offsetX": -16, "offsetY": -20 }, + { "id": "player/chestplate/copperchestplate", "offsetX": -8 }, + { "id": "player/chestplate/tinchestplate", "offsetX": -8 }, + { "id": "player/chestplate/bronzechestplate", "offsetX": -8 }, + { "id": "player/chestplate/ironchestplate", "offsetX": -8 }, + { "id": "player/chestplate/goldchestplate", "offsetX": -8 }, + { "id": "player/chestplate/cobaltchestplate", "offsetX": -8 }, + { "id": "player/chestplate/hellkeeperchestplate", "offsetX": -8 }, + { "id": "player/chestplate/sentinelchestplate", "offsetX": -8 }, + { "id": "player/chestplate/nightchestplate", "offsetX": -8 }, + { "id": "player/chestplate/sapphirechestplate", "offsetX": -8 }, + { "id": "player/chestplate/refinedsapphirechestplate", "offsetX": -8 }, + { "id": "player/chestplate/amethystchestplate", "offsetX": -8 }, + { "id": "player/chestplate/midnightamethystchestplate", "offsetX": -8 }, + { "id": "player/chestplate/rubychestplate", "offsetX": -8 }, + { "id": "player/chestplate/paladinchestplate", "offsetX": -8 }, + { "id": "player/chestplate/samuraichestplate", "offsetX": -8 }, + { "id": "player/chestplate/leatherchest", "offsetX": -8 }, + { "id": "player/chestplate/knightchestplate", "offsetX": -8 }, + { "id": "player/chestplate/bluemysticchest", "offsetX": -8 }, + { "id": "player/chestplate/conquerorchestplate", "offsetX": -8 }, + { "id": "player/chestplate/greenmysticchest", "offsetX": -8 }, + { "id": "player/chestplate/minitauruschest", "offsetX": -8 }, + { "id": "player/chestplate/mysticchest", "offsetX": -8 }, + { "id": "player/chestplate/scarabchest", "offsetX": -8 }, + { "id": "player/chestplate/sentinelchestplate", "offsetX": -8 }, - { "id": "crowns/artist" }, - { "id": "crowns/tier1" }, - { "id": "crowns/tier2" }, - { "id": "crowns/tier3" }, - { "id": "crowns/tier4" }, - { "id": "crowns/tier5" }, - { "id": "crowns/tier6" }, - { "id": "crowns/tier7", "width": 17 }, + { "id": "player/legplates/copperlegplates", "offsetX": -8 }, + { "id": "player/legplates/tinlegplates", "offsetX": -8 }, + { "id": "player/legplates/bronzelegplates", "offsetX": -8 }, + { "id": "player/legplates/ironlegplates", "offsetX": -8 }, + { "id": "player/legplates/goldlegplates", "offsetX": -8 }, + { "id": "player/legplates/cobaltlegplates", "offsetX": -8 }, + { "id": "player/legplates/hellkeeperlegplates", "offsetX": -8 }, + { "id": "player/legplates/sentinellegplates", "offsetX": -8 }, + { "id": "player/legplates/nightlegplates", "offsetX": -8 }, + { "id": "player/legplates/sapphirelegplates", "offsetX": -8 }, + { "id": "player/legplates/amethystlegplates", "offsetX": -8 }, + { "id": "player/legplates/midnightamethystlegplates", "offsetX": -8 }, + { "id": "player/legplates/rubylegplates", "offsetX": -8 }, + { "id": "player/legplates/paladinlegplates", "offsetX": -8 }, + { "id": "player/legplates/samurailegplates", "offsetX": -8 }, + { "id": "player/legplates/leatherleggings", "offsetX": -8 }, + { "id": "player/legplates/knightlegplates", "offsetX": -8 }, + { "id": "player/legplates/refinedsapphirelegplates", "offsetX": -8 }, + { "id": "player/legplates/conquerorlegplates", "offsetX": -8 }, + { "id": "player/legplates/minitaurslegplates", "offsetX": -8 }, + { "id": "player/legplates/scarablegplates", "offsetX": -8 }, + + { "id": "player/cape/wings", "offsetX": -8 }, + { "id": "player/cape/wingsdark", "offsetX": -8 }, + + { "id": "player/skin/danbo", "offsetX": -8 }, + { "id": "player/skin/danboblue", "offsetX": -8 }, + { "id": "player/skin/danbogreen", "offsetX": -8 }, + { "id": "player/skin/danbored", "offsetX": -8 }, + { "id": "player/skin/taekwondo", "offsetX": -8 }, + { "id": "player/skin/skeletonskin", "offsetX": -8 }, + { "id": "player/skin/darkskeletonskin", "offsetX": -8 }, + { "id": "player/skin/oldmanskin", "offsetX": -8 }, + + { "id": "player/weapon/bronzebattleaxe", "offsetY": -24 }, + { "id": "player/weapon/ironbattleaxe", "offsetY": -24 }, + { "id": "player/weapon/goldbattleaxe", "offsetY": -24 }, + { "id": "player/weapon/cobaltbattleaxe", "offsetY": -24 }, + { "id": "player/weapon/bronzeaxe", "offsetY": -24 }, + { "id": "player/weapon/ironaxe", "offsetY": -24 }, + { "id": "player/weapon/goldaxe", "offsetY": -24 }, + { "id": "player/weapon/cobaltaxe", "offsetY": -24 }, + { "id": "player/weapon/fishingpole", "offsetX": -8 }, + { "id": "player/weapon/icesword", "offsetY": -24 }, + { "id": "player/weapon/coppersword", "offsetY": -24 }, + { "id": "player/weapon/tinsword", "offsetY": -24 }, + { "id": "player/weapon/bronzesword", "offsetY": -24 }, + { "id": "player/weapon/ironsword", "offsetY": -24 }, + { "id": "player/weapon/nisocsword", "offsetY": -24 }, + { "id": "player/weapon/cinnabarsword", "offsetY": -24 }, + { "id": "player/weapon/pytharsword", "offsetY": -24 }, + { "id": "player/weapon/ibosword", "offsetY": -24 }, + { "id": "player/weapon/goldsword", "offsetY": -24 }, + { "id": "player/weapon/nightsword", "offsetY": -24 }, + { "id": "player/weapon/sentinelsword", "offsetY": -24 }, + { "id": "player/weapon/adamantitesworth", "offsetY": -24 }, + { "id": "player/weapon/adeptsrapier", "offsetY": -24 }, + { "id": "player/weapon/alchemistalimony", "width": 64, "height": 64, "offsetX": -24, "offsetY": -32 }, + { "id": "player/weapon/ancientshovel", "offsetY": -24 }, + { "id": "player/weapon/ancientstaff", "offsetY": -24 }, + { "id": "player/weapon/angelicblade", "width": 64, "height": 64, "offsetX": -24, "offsetY": -32 }, + { "id": "player/weapon/berserkerssanity", "offsetY": -24 }, + { "id": "player/weapon/bident", "offsetY": -24 }, + { "id": "player/weapon/bladeofdarkness", "offsetY": -24 }, + { "id": "player/weapon/bloodmoonstaff", "offsetY": -24 }, + { "id": "player/weapon/bluelightsaber", "offsetY": -24 }, + { "id": "player/weapon/bluemoonstaff", "offsetY": -24 }, + { "id": "player/weapon/bonebonker", "offsetY": -24 }, + { "id": "player/weapon/brutishblade", "offsetY": -24 }, + { "id": "player/weapon/cellobello", "width": 64, "height": 64, "offsetX": -24, "offsetY": -32 }, + { "id": "player/weapon/club", "offsetY": -24 }, + { "id": "player/weapon/demonicstaff", "offsetY": -24 }, + { "id": "player/weapon/dragonscale", "offsetY": -24 }, + { "id": "player/weapon/etherialblade", "width": 64, "height": 64, "offsetX": -24, "offsetY": -32 }, + { "id": "player/weapon/executionershammer", "offsetY": -24 }, + { "id": "player/weapon/eyesword", "offsetY": -24 }, + { "id": "player/weapon/firesword", "offsetY": -24 }, + { "id": "player/weapon/golemsmace", "offsetY": -24 }, + { "id": "player/weapon/goldgolemsmace", "offsetY": -24 }, + { "id": "player/weapon/greenlightsaber", "offsetY": -24 }, + { "id": "player/weapon/hellhoundfang", "offsetY": -24 }, + { "id": "player/weapon/hellsword", "offsetY": -24 }, + { "id": "player/weapon/lolipop", "offsetY": -24 }, + { "id": "player/weapon/moongreataxe", "offsetY": -24 }, + { "id": "player/weapon/oldonesblade", "width": 64, "height": 64, "offsetX": -24, "offsetY": -32 }, + { "id": "player/weapon/peddlepounder", "offsetY": -24 }, + { "id": "player/weapon/pinklightsaber", "offsetY": -24 }, + { "id": "player/weapon/redlightsaber", "offsetY": -24 }, + { "id": "player/weapon/royalrapier", "offsetY": -24 }, + { "id": "player/weapon/scimitar", "width": 64, "height": 64, "offsetX": -24, "offsetY": -32 }, + { "id": "player/weapon/smithshammer", "offsetY": -24 }, + { "id": "player/weapon/spoon", "offsetY": -24 }, + { "id": "player/weapon/sunrisegreataxe", "offsetY": -24 }, + { "id": "player/weapon/sunshinestaff", "offsetY": -24 }, + { "id": "player/weapon/swashbuckler", "offsetY": -24 }, + { "id": "player/weapon/swordofliberty", "offsetY": -24 }, + { "id": "player/weapon/sycophant", "offsetY": -24 }, + { "id": "player/weapon/timelessglaive", "offsetY": -24 }, + { "id": "player/weapon/twilightgreataxe", "offsetY": -24 }, + { "id": "player/weapon/witchsstaffancient", "offsetY": -24 }, + { "id": "player/weapon/witchsstaffblood", "offsetY": -24 }, + { "id": "player/weapon/witchsstaffdemonic", "offsetY": -24 }, + { "id": "player/weapon/witchsstaffmoon", "offsetY": -24 }, + { "id": "player/weapon/witchsstaffsunshine", "offsetY": -24 }, + { "id": "player/weapon/zweipiercer", "offsetY": -24 }, + { "id": "player/weapon/aquastaff", "offsetY": -20 }, + { "id": "player/weapon/lightningstaff", "offsetY": -20 }, + { "id": "player/weapon/naturestaff", "offsetY": -20 }, + { "id": "player/weapon/firestaff", "offsetY": -20 }, + { "id": "player/weapon/cursestaff", "offsetY": -20 }, + { "id": "player/weapon/magichamberge", "offsetY": -22 }, + { "id": "player/weapon/bronzescythe", "offsetX": -12 }, + { "id": "player/weapon/ironscythe", "offsetX": -12 }, + { "id": "player/weapon/goldscythe", "offsetX": -12 }, + { "id": "player/weapon/cobaltscythe", "offsetX": -12 }, + { "id": "player/weapon/bronzespear", "offsetX": -12 }, + { "id": "player/weapon/ironspear", "offsetX": -12 }, + { "id": "player/weapon/goldspear", "offsetX": -12 }, + { "id": "player/weapon/cobaltspear", "offsetX": -12 }, + { "id": "player/weapon/gun", "offsetX": -16, "offsetY": -22 }, + { "id": "player/weapon/balloonyellow", "offsetY": -24 }, + { "id": "player/weapon/balloonblue", "offsetY": -24 }, + { "id": "player/weapon/balloongreen", "offsetY": -24 }, + { "id": "player/weapon/balloonpink", "offsetY": -24 }, + { "id": "player/weapon/balloonturquoise", "offsetY": -24 }, + { "id": "player/weapon/balloonwhite", "offsetY": -24 }, + { "id": "player/weapon/woodenbow", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowbamboo", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowdeuteranom", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/boweggplant", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowfleshflinger", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowiceicemaybe", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowillmuscal", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowkelpysburden", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowmagiccool", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowmagichot", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowmoon", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowocean", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowpine", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowsky", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowsun", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowswineslayer", "offsetX": -8, "offsetY": -32 }, + { "id": "player/weapon/bowwillowtwine", "offsetX": -8, "offsetY": -32 }, + + { "id": "player/weapon/bronzepickaxe", "offsetY": -24 }, + { "id": "player/weapon/ironpickaxe", "offsetY": -24 }, + { "id": "player/weapon/goldpickaxe", "offsetY": -24 }, + { "id": "player/weapon/cobaltpickaxe", "offsetY": -24 }, + { "id": "player/weapon/bonepickaxe", "offsetY": -24 }, + { "id": "player/weapon/cursedbattleaxe", "offsetY": -24 }, + { "id": "player/weapon/cursedpickaxe", "offsetY": -24 }, + { "id": "player/weapon/cursedsapphirepickaxe", "offsetY": -24 }, + { "id": "player/weapon/heavyberylpickaxe", "offsetY": -24 }, + + { "id": "player/shield/lantern", "offsetY": -20 }, + { "id": "player/shield/lantern2", "offsetY": -21 }, + { "id": "player/shield/lanternarcan", "offsetY": -24 }, + { "id": "player/shield/coppershield", "offsetY": -24 }, + { "id": "player/shield/tinshield", "offsetY": -24 }, + { "id": "player/shield/cobaltshield", "offsetY": -24 }, + { "id": "player/shield/goldshield", "offsetY": -24 }, + { "id": "player/shield/ironroundshield", "offsetY": -24 }, + { "id": "player/shield/woodenshield", "offsetY": -24 }, + { "id": "player/shield/ironshield", "offsetY": -24 }, + { "id": "player/shield/shieldofliberty", "offsetY": -24 }, + { "id": "player/shield/shieldofglory", "width": 32, "height": 32, "offsetX": -8 }, + + { "id": "crowns/artist", "preload": true }, + { "id": "crowns/tier1", "preload": true }, + { "id": "crowns/tier2", "preload": true }, + { "id": "crowns/tier3", "preload": true }, + { "id": "crowns/tier4", "preload": true }, + { "id": "crowns/tier5", "preload": true }, + { "id": "crowns/tier6", "preload": true }, + { "id": "crowns/tier7", "preload": true, "width": 17 }, + { "id": "crowns/bronzemedal", "preload": true, "width": 12, "height": 12 }, + { "id": "crowns/goldmedal", "preload": true, "width": 12, "height": 12 }, + { "id": "crowns/silvermedal", "preload": true, "width": 12, "height": 12 }, { "id": "cursors/hand", "width": 14, "height": 14 }, { "id": "cursors/axe", "width": 14, "height": 14 }, @@ -55,26 +293,170 @@ { "id": "cursors/sword", "width": 14, "height": 14 }, { "id": "cursors/loot", "width": 14, "height": 14 }, { "id": "cursors/talk", "width": 14, "height": 14 }, + { "id": "cursors/bow" }, { "id": "cursors/cooking" }, { "id": "cursors/smithing" }, + { "id": "cursors/smelting" }, { "id": "cursors/crafting" }, { "id": "cursors/foraging" }, { "id": "cursors/fishing" }, { "id": "cursors/spell" }, + + { "id": "skills/accuracy", "width": 16, "height": 16 }, + { "id": "skills/alchemy", "width": 16, "height": 16 }, + { "id": "skills/archery", "width": 16, "height": 16 }, + { "id": "skills/chiseling", "width": 16, "height": 16 }, + { "id": "skills/chiseling2", "width": 16, "height": 16 }, + { "id": "skills/cooking", "width": 16, "height": 16 }, + { "id": "skills/crafting", "width": 16, "height": 16 }, + { "id": "skills/defense", "width": 16, "height": 16 }, + { "id": "skills/eating", "width": 16, "height": 16 }, + { "id": "skills/fishing", "width": 16, "height": 16 }, + { "id": "skills/fletching", "width": 16, "height": 16 }, + { "id": "skills/foraging", "width": 16, "height": 16 }, + { "id": "skills/health", "width": 16, "height": 16 }, + { "id": "skills/loitering", "width": 16, "height": 16 }, + { "id": "skills/lumberjacking", "width": 16, "height": 16 }, + { "id": "skills/magic", "width": 16, "height": 16 }, + { "id": "skills/mining", "width": 16, "height": 16 }, + { "id": "skills/smelting", "width": 16, "height": 16 }, + { "id": "skills/smithing", "width": 16, "height": 16 }, + { "id": "skills/strength", "width": 16, "height": 16 }, + + { "id": "npcs/agent", "width": 32, "height": 32 }, + { "id": "npcs/superiorangelnpc", "width": 32, "height": 32 }, + { "id": "npcs/sponge", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/snowshepherdboy", "width": 32, "height": 32 }, + { "id": "npcs/secondsonangelnpc", "width": 32, "height": 32 }, + { "id": "npcs/shepherdboy", "width": 32, "height": 32 }, + { "id": "npcs/scientist", "width": 32, "height": 32 }, + { "id": "npcs/madscientist", "width": 32, "height": 32 }, + { "id": "npcs/redstoremannpc", "width": 32, "height": 32 }, + { "id": "npcs/purplestoremannpc", "width": 32, "height": 32 }, + { "id": "npcs/greenstoremannpc", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/redbikinigirlnpc", "width": 32, "height": 32 }, + { "id": "npcs/priest", "width": 32, "height": 32 }, + { "id": "npcs/pirategirlnpc", "width": 32, "height": 32 }, + { "id": "npcs/momangelnpc", "width": 32, "height": 32 }, + { "id": "npcs/nyan", "width": 49, "height": 24, "offsetX": -22, "offsetY": -6 }, + { "id": "npcs/octocat", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, + { "id": "npcs/octopus", "width": 32, "height": 32 }, + { "id": "npcs/oddeyecat", "width": 32, "height": 32 }, + { "id": "npcs/mojojojonpc", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/mermaidnpc", "width": 32, "height": 32 }, + { "id": "npcs/forestnpc", "width": 32, "height": 32 }, + { "id": "npcs/firstsonangelnpc", "width": 32, "height": 32 }, + { "id": "npcs/fisherman", "width": 32, "height": 32 }, + { "id": "npcs/fairynpc", "width": 32, "height": 32 }, + { "id": "npcs/fairynpc2", "width": 32, "height": 32 }, + { "id": "npcs/elfnpc", "width": 32, "height": 32 }, + { "id": "npcs/doctor", "width": 32, "height": 32 }, + { "id": "npcs/desertnpc", "width": 32, "height": 32 }, + { "id": "npcs/coder", "width": 32, "height": 32 }, + { "id": "npcs/bluestoremannpc", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/boxingman", "width": 32, "height": 32 }, + { "id": "npcs/beachnpc", "width": 32, "height": 32 }, + { "id": "npcs/bluebikinigirlnpc", "width": 32, "height": 32 }, + { "id": "npcs/guard", "width": 32, "height": 32 }, + { "id": "npcs/guard2", "width": 32, "height": 32 }, + { "id": "npcs/redbikinigirlnpc", "width": 32, "height": 32 }, + { "id": "npcs/royalguard", "width": 25, "height": 24, "offsetX": -5, "offsetY": -8 }, + { "id": "npcs/royalguard2", "width": 32, "height": 32, "offsetX": -4, "offsetY": -20 }, + { "id": "npcs/royalguard3", "width": 32, "height": 32, "offsetX": -12, "offsetY": -20 }, + { "id": "npcs/iamverycoldnpc", "width": 32, "height": 32 }, + { "id": "npcs/ancientmanumentnpc", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/oldlady", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/oldlady2", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/iceelfnpc", "width": 32, "height": 32 }, + { "id": "npcs/guildnpc", "width": 32, "height": 32 }, + { "id": "npcs/picklenpc", "height": 24, "offsetX": -2, "offsetY": -8 }, + { "id": "npcs/santaelfnpc", "width": 32, "height": 32 }, + { "id": "npcs/king", "width": 32, "height": 32 }, + { "id": "npcs/king2", "width": 32, "height": 32 }, + { "id": "npcs/lavanpc", "width": 32, "height": 32 }, + { "id": "npcs/soldier", "width": 32, "height": 32 }, + { "id": "npcs/vampire", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/vendingmachine", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/villagegirl", "width": 32, "height": 32 }, + { "id": "npcs/villagegirl2", "width": 32, "height": 32 }, + { "id": "npcs/villagegirl3", "width": 32, "height": 32 }, + { "id": "npcs/villagegirl4", "width": 32, "height": 32 }, + { "id": "npcs/villagegirl5", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/villagegirl6", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/villagegirl7", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/villager", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/villager2", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/villager3", "width": 32, "height": 32 }, + { "id": "npcs/villager4", "width": 32, "height": 32 }, + { "id": "npcs/prisoner", "width": 32, "height": 32 }, + { "id": "npcs/miner", "width": 32, "height": 32 }, + { "id": "npcs/miner2", "width": 32, "height": 32 }, + { "id": "npcs/zombiegf", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { "id": "npcs/angelnpc", "width": 32, "height": 32 }, + { "id": "npcs/rick", "width": 32, "height": 32 }, + { "id": "npcs/rickgf", "width": 32, "height": 32 }, + { "id": "npcs/sorcerer", "width": 32, "height": 32 }, + { + "id": "npcs/ratnpc", + "width": 32, + "height": 32, + "animations": { + "idle_down": { + "length": 4, + "row": 0 + } + }, + "offsetX": -8, + "offsetY": -10 + }, + { + "id": "npcs/blacksmith", + "width": 32, + "height": 36, + "idleSpeed": 200, + "animations": { + "idle_down": { + "length": 5, + "row": 0 + } + }, + "offsetX": -6, + "offsetY": -20 + }, + { + "id": "npcs/blacksmith2", + "width": 48, + "height": 48, + "idleSpeed": 130, + "animations": { + "idle_down": { + "length": 7, + "row": 0 + } + }, + "offsetX": -10, + "offsetY": -24 + }, + { + "id": "npcs/herbalist", + "width": 34, + "height": 34, + "animations": { + "idle_down": { + "length": 4, + "row": 0 + } + } + }, { "id": "pets/rat", "width": 48, "height": 48, - "idleSpeed": 250, "animations": { "death": { "length": 4, "row": 0 }, - "atk_right": { - "length": 6, - "row": 1 - }, "walk_right": { "length": 3, "row": 2 @@ -83,10 +465,6 @@ "length": 2, "row": 3 }, - "atk_up": { - "length": 4, - "row": 4 - }, "walk_up": { "length": 4, "row": 5 @@ -95,10 +473,6 @@ "length": 4, "row": 6 }, - "atk_down": { - "length": 4, - "row": 7 - }, "walk_down": { "length": 4, "row": 8 @@ -109,8 +483,7 @@ } } }, - - { + { "id": "pets/rathat", "width": 48, "height": 48, @@ -120,10 +493,6 @@ "length": 4, "row": 0 }, - "atk_right": { - "length": 6, - "row": 1 - }, "walk_right": { "length": 3, "row": 2 @@ -132,10 +501,6 @@ "length": 2, "row": 3 }, - "atk_up": { - "length": 4, - "row": 4 - }, "walk_up": { "length": 4, "row": 5 @@ -144,10 +509,6 @@ "length": 4, "row": 6 }, - "atk_down": { - "length": 4, - "row": 7 - }, "walk_down": { "length": 4, "row": 8 @@ -158,18 +519,102 @@ } } }, + { + "id": "pets/ratballoon", + "width": 48, + "height": 48, + "idleSpeed": 250, + "animations": { + "walk_right": { + "length": 4, + "row": 0 + }, + "idle_right": { + "length": 4, + "row": 1 + }, + "walk_up": { + "length": 4, + "row": 2 + }, + "idle_up": { + "length": 4, + "row": 3 + }, + "walk_down": { + "length": 4, + "row": 4 + }, + "idle_down": { + "length": 4, + "row": 5 + } + }, + "offsetY": -24 + }, + + { + "id": "effectentity/fire", + "width": 16, + "height": 16, + "animations": { "idle": { "length": 8, "row": 0 } }, + "offsetX": -4, + "offsetY": -4 + }, { "id": "mobs/angel", "width": 32, "height": 32, "offsetX": -8, "offsetY": -13 }, - { "id": "mobs/card", "width": 32, "height": 32, "offsetX": -8, "offsetY": -13}, + { "id": "mobs/card", "width": 32, "height": 32, "offsetX": -8, "offsetY": -13 }, { "id": "mobs/card2", "width": 32, "height": 32, "offsetX": -8, "offsetY": -13 }, { "id": "mobs/snowman2", "width": 32, "height": 32, "offsetX": -8, "offsetY": -13 }, { "id": "mobs/rabbitman", "width": 32, "height": 32, "offsetX": -8, "offsetY": -13 }, { "id": "mobs/cowwarrior", "width": 42, "height": 42, "offsetX": -13, "offsetY": -18 }, { "id": "mobs/rooster", "width": 42, "height": 42, "offsetX": -13, "offsetY": -18 }, { "id": "mobs/adherer", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, - { "id": "npcs/agent", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, - { "id": "mobs/ancientmanumentnpc", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, - { "id": "mobs/angelnpc", "width": 24, "height": 24, "offsetX": -4, "offsetY": -8 }, + { + "id": "mobs/goldgolem", + "width": 32, + "height": 32, + "animations": { + "atk_right": { + "length": 5, + "row": 0 + }, + "walk_right": { + "length": 4, + "row": 1 + }, + "idle_right": { + "length": 2, + "row": 2 + }, + "atk_up": { + "length": 5, + "row": 3 + }, + "walk_up": { + "length": 4, + "row": 4 + }, + "idle_up": { + "length": 2, + "row": 5 + }, + "atk_down": { + "length": 5, + "row": 6 + }, + "walk_down": { + "length": 4, + "row": 7 + }, + "idle_down": { + "length": 2, + "row": 8 + } + }, + "offsetX": -8, + "offsetY": -24 + }, { "id": "mobs/ant", "width": 48, @@ -212,7 +657,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -28 }, { @@ -352,62 +796,6 @@ "offsetX": -8, "offsetY": -24 }, - { - "id": "npcs/beachnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "mobs/bee", - "width": 20, - "height": 19, - "animations": { - "death": { - "length": 1, - "row": 4 - }, - "atk_right": { - "length": 4, - "row": 1 - }, - "walk_right": { - "length": 4, - "row": 1 - }, - "idle_right": { - "length": 2, - "row": 1 - }, - "atk_up": { - "length": 4, - "row": 3 - }, - "idle_up": { - "length": 2, - "row": 3 - }, - "walk_up": { - "length": 4, - "row": 3 - }, - "atk_down": { - "length": 4, - "row": 2 - }, - "walk_down": { - "length": 4, - "row": 2 - }, - "idle_down": { - "length": 2, - "row": 2 - } - }, - "offsetX": -8, - "offsetY": -8 - }, { "id": "mobs/beetle", "width": 64, @@ -448,10 +836,6 @@ "idle_down": { "length": 2, "row": 8 - }, - "Group 5": { - "length": 3, - "row": 9 } }, "offsetX": -24, @@ -502,27 +886,9 @@ "offsetX": -8, "offsetY": -15 }, - { - "id": "mobs/blackwizard", - "width": 48, - "height": 48, - "offsetX": -16, - "offsetY": -22 - }, - { - "id": "mobs/icewizard", - "width": 48, - "height": 48, - "offsetX": -16, - "offsetY": -22 - }, - { - "id": "mobs/ancientwizard", - "width": 48, - "height": 48, - "offsetX": -16, - "offsetY": -22 - }, + { "id": "mobs/blackwizard", "width": 48, "height": 48, "offsetY": -22 }, + { "id": "mobs/icewizard", "width": 48, "height": 48, "offsetY": -22 }, + { "id": "mobs/ancientwizard", "width": 48, "height": 48, "offsetY": -22 }, { "id": "mobs/blazespider", "width": 48, @@ -565,16 +931,8 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, - { - "id": "npcs/bluebikinigirlnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/greencockroach", "width": 42, @@ -618,7 +976,7 @@ } }, "offsetX": -14, - "offsetY": -21 + "offsetY": -20 }, { "id": "mobs/bluepreta", @@ -665,74 +1023,6 @@ "offsetX": -5, "offsetY": -13 }, - { - "id": "npcs/bluestoremannpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "mobs/boss", - "width": 64, - "height": 72, - "animations": { - "atk_right": { - "length": 6, - "row": 0 - }, - "walk_right": { - "length": 3, - "row": 1 - }, - "idle_right": { - "length": 4, - "row": 2 - }, - "atk_up": { - "length": 5, - "row": 3 - }, - "walk_up": { - "length": 4, - "row": 4 - }, - "idle_up": { - "length": 4, - "row": 5 - }, - "atk_down": { - "length": 6, - "row": 6 - }, - "walk_down": { - "length": 4, - "row": 7 - }, - "idle_down": { - "length": 4, - "row": 8 - }, - "Group 5": { - "length": 3, - "row": 9 - } - }, - "offsetX": -24, - "offsetY": -36 - }, - { - "id": "npcs/boxingman", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "crowns/bronzemedal", - "width": 12, - "height": 12 - }, { "id": "mobs/brownmouse", "width": 26, @@ -823,6 +1113,7 @@ "offsetX": -9, "offsetY": -32 }, + { "id": "mobs/paladin", "width": 32, "height": 32, "offsetX": -5, "offsetY": -8 }, { "id": "mobs/cactus", "width": 48, @@ -865,7 +1156,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -28 }, { @@ -910,7 +1200,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -25 }, { @@ -935,6 +1224,94 @@ "offsetX": 0, "offsetY": 0 }, + { + "id": "trees/spruce", + "width": 64, + "height": 80, + "animations": { + "idle": { + "length": 1, + "row": 0 + }, + "shake": { + "length": 5, + "row": 1 + }, + "exhausted": { + "length": 1, + "row": 2 + } + }, + "offsetX": -24, + "offsetY": -56 + }, + { "id": "trees/oak", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/tutorialoak", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/oak2", "width": 48, "height": 80, "offsetX": -16, "offsetY": -58 }, + { "id": "trees/oak3", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/oak4", "width": 48, "height": 80, "offsetX": -16, "offsetY": -56 }, + { "id": "trees/oak5", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/oak6", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/oak7", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/bloodwood", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/inibti", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/puhrix", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/flastel", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/iceoak", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/iceoak4", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/iceoak5", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/iceoak6", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/palm", "width": 48, "height": 64, "offsetX": -16, "offsetY": -40 }, + { "id": "trees/icepalm", "width": 48, "height": 64, "offsetX": -16, "offsetY": -40 }, + { "id": "trees/snowoak", "width": 80, "height": 96, "offsetX": -36, "offsetY": -64 }, + { "id": "trees/pine", "width": 48, "height": 64, "offsetX": -18, "offsetY": -48 }, + { "id": "trees/zoncil", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/zondul", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/heliphatit", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/aquasillius", "width": 80, "height": 96, "offsetX": -32, "offsetY": -64 }, + { "id": "trees/alkythn", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/iceoak2", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + { "id": "trees/iceoak3", "width": 64, "height": 96, "offsetX": -24, "offsetY": -64 }, + + { "id": "rocks/amethystrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/berylrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/cinnabarrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/citrinerock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/coalrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/copperrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/emeraldrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/goldrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/iborock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/ironrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/lapislazulirock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/moonrockrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/nisocrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/opalrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/peridotrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/pytharrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/rubyrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/taaffeiterock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/tinrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "rocks/topazrock", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + + { "id": "fishspots/clamspot", "width": 16, "height": 16, "offsetX": 0, "offsetY": 0 }, + { "id": "fishspots/jellyfishspot", "width": 16, "height": 16, "offsetX": 0, "offsetY": 0 }, + { "id": "fishspots/shrimpspot", "width": 16, "height": 16, "offsetX": 0, "offsetY": 0 }, + { "id": "fishspots/tutorialshrimpspot", "width": 16, "height": 16, "offsetX": 0, "offsetY": 0 }, + { "id": "fishspots/tunaspot", "width": 16, "height": 16, "offsetX": 0, "offsetY": 0 }, + + { "id": "bushes/blueberrybush", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "bushes/raspberrybush", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "bushes/blackberrybush", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "bushes/bluelilybush", "width": 32, "height": 48, "offsetX": -6, "offsetY": -24 }, + { "id": "bushes/cornbush", "width": 24, "height": 36, "offsetX": -2, "offsetY": -20 }, + { "id": "bushes/cuminbush", "width": 32, "height": 32, "offsetX": -6, "offsetY": -6 }, + { "id": "bushes/treestump1", "width": 32, "height": 32, "offsetX": -8, "offsetY": -8 }, + { "id": "bushes/mustardbush", "width": 24, "height": 24, "offsetX": -4, "offsetY": -4 }, + { "id": "bushes/paprikabush", "width": 32, "height": 32, "offsetX": -6, "offsetY": -6 }, + { "id": "bushes/peachbush", "width": 24, "height": 32, "offsetX": -4, "offsetY": -16 }, + { "id": "bushes/tomatobush", "width": 24, "height": 32, "offsetX": -4, "offsetY": -16 }, + { "id": "mobs/clam", "width": 32, @@ -980,23 +1357,8 @@ "offsetX": -5, "offsetY": -13 }, - - { - "id": "mobs/picklemob", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - - { - "id": "mobs/ghost", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - + { "id": "mobs/picklemob", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, + { "id": "mobs/ghost", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/cobra", "width": 28, @@ -1042,13 +1404,6 @@ "offsetX": -6, "offsetY": -10 }, - { - "id": "npcs/coder", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -7 - }, { "id": "mobs/crab", "width": 32, @@ -1298,7 +1653,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -30 }, { @@ -1343,23 +1697,10 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -25 }, - { - "id": "mobs/darkregionillusion", - "width": 42, - "height": 42, - "offsetX": -14, - "offsetY": -21 - }, - { - "id": "mobs/darkregion", - "width": 42, - "height": 42, - "offsetX": -14, - "offsetY": -21 - }, + { "id": "mobs/darkregionillusion", "width": 42, "height": 42, "offsetX": -14, "offsetY": -21 }, + { "id": "mobs/darkregion", "width": 42, "height": 42, "offsetX": -14, "offsetY": -21 }, { "id": "mobs/darkscorpion", "width": 64, @@ -1447,36 +1788,9 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, - { - "id": "death", - "width": 24, - "height": 24, - "animations": { - "death": { - "length": 6, - "row": 0 - } - }, - "offsetX": -4, - "offsetY": -4 - }, - { - "id": "mobs/deathknight", - "width": 42, - "height": 42, - "offsetX": -13, - "offsetY": -17 - }, - { - "id": "npcs/desertnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, + { "id": "mobs/deathknight", "width": 42, "height": 42, "offsetX": -13, "offsetY": -17 }, { "id": "mobs/desertscorpion", "width": 64, @@ -1522,20 +1836,7 @@ "offsetX": -24, "offsetY": -32 }, - { - "id": "mobs/devilkazya", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "npcs/doctor", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, + { "id": "mobs/devilkazya", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/earthworm", "width": 48, @@ -1578,30 +1879,10 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, - { - "id": "npcs/elfnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "mobs/eliminator", - "width": 42, - "height": 42, - "offsetX": -14, - "offsetY": -21 - }, - { - "id": "mobs/enel", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, + { "id": "mobs/eliminator", "width": 42, "height": 42, "offsetX": -14, "offsetY": -21 }, + { "id": "mobs/enel", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/eye", "width": 40, @@ -1647,13 +1928,6 @@ "offsetX": -12, "offsetY": -18 }, - { - "id": "npcs/fairynpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/firespider", "width": 48, @@ -1696,23 +1970,8 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, - { - "id": "npcs/firstsonangelnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/fisherman", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "effects/flaredance", "width": 48, @@ -1739,13 +1998,7 @@ "offsetX": -17, "offsetY": -21 }, - { - "id": "mobs/flaredeathknight", - "width": 42, - "height": 42, - "offsetX": -13, - "offsetY": -17 - }, + { "id": "mobs/flaredeathknight", "width": 42, "height": 42, "offsetX": -13, "offsetY": -17 }, { "id": "mobs/fluffy", "width": 28, @@ -1840,13 +2093,6 @@ "offsetX": -30, "offsetY": -30 }, - { - "id": "npcs/forestnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/frog", "width": 32, @@ -1934,16 +2180,9 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, - { - "id": "mobs/ghostrider", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, + { "id": "mobs/ghostrider", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/goblin", "width": 26, @@ -1989,31 +2228,9 @@ "offsetX": -5, "offsetY": -9 }, - { - "id": "crowns/goldmedal", - "width": 12, - "height": 12 - }, - { - "id": "pointer", - "width": 32, - "height": 32 - }, - - { - "id": "mobs/golem", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -17 - }, - { - "id": "mobs/greenfish", - "width": 32, - "height": 32, - "offsetX": -5, - "offsetY": -13 - }, + { "id": "pointer", "width": 32, "height": 32 }, + { "id": "mobs/golem", "width": 32, "height": 32, "offsetX": -8, "offsetY": -17 }, + { "id": "mobs/greenfish", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/greenpirateskeleton", "width": 32, @@ -2059,68 +2276,8 @@ "offsetX": -8, "offsetY": -15 }, - { - "id": "mobs/guardmace", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "mobs/guardsword", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "npcs/guard", - "width": 25, - "height": 24, - "offsetX": -5, - "offsetY": -8 - }, - { - "id": "npcs/guard2", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "npcs/royalguard", - "width": 25, - "height": 24, - "offsetX": -5, - "offsetY": -8 - }, - { - "id": "npcs/royalguard2", - "width": 32, - "height": 32, - "offsetX": -4, - "offsetY": -20 - }, - { - "id": "npcs/royalguard3", - "width": 32, - "height": 32, - "offsetX": -12, - "offsetY": -20 - }, - { - "id": "npcs/ratnpc", - "width": 32, - "height": 32, - "animations": { - "idle_down": { - "length": 4, - "row": 0 - } - }, - "offsetX": -8, - "offsetY": -10 - }, + { "id": "mobs/guardmace", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, + { "id": "mobs/guardsword", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/hellspider", "width": 64, @@ -2260,74 +2417,9 @@ "offsetX": -7, "offsetY": -13 }, - { - "id": "mobs/hongcheol", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -15 - }, - { - "id": "npcs/iamverycoldnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/oldlady", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/oldlady2", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/iceelfnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/guildnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/picklenpc", - "height": 24, - "offsetX": -2, - "offsetY": -8 - }, - { - "id": "npcs/santaelfnpc", - "height": 24, - "offsetX": 0, - "offsetY": -10 - }, - { - "id": "mobs//icegolem", - "width": 32, - "height": 32, - "offsetX": -5, - "offsetY": -12 - }, - { - "id": "mobs//iceknight", - "width": 42, - "height": 42, - "offsetX": -13, - "offsetY": -17 - }, + { "id": "mobs/hongcheol", "width": 32, "height": 32, "offsetX": -8, "offsetY": -15 }, + { "id": "mobs/icegolem", "width": 32, "height": 32, "offsetX": -5, "offsetY": -12 }, + { "id": "mobs/iceknight", "width": 42, "height": 42, "offsetX": -13, "offsetY": -17 }, { "id": "mobs/icevulture", "width": 48, @@ -2370,16 +2462,9 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -25 }, - { - "id": "mobs/infectedguard", - "width": 32, - "height": 32, - "offsetX": -7, - "offsetY": -13 - }, + { "id": "mobs/infectedguard", "width": 32, "height": 32, "offsetX": -7, "offsetY": -13 }, { "id": "mobs/ironogre", "width": 48, @@ -2422,8 +2507,8 @@ "row": 8 } }, - "offsetX": -16, - "offsetY": -25 + "offsetX": -8, + "offsetY": -16 }, { "id": "mobs/lightningguardian", @@ -2516,7 +2601,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -26 }, { @@ -2561,30 +2645,8 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, - { - "id": "npcs/king", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "npcs/king2", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "npcs/lavanpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/windguardian", "width": 64, @@ -2769,13 +2831,6 @@ "offsetX": -5, "offsetY": -13 }, - { - "id": "npcs/mermaidnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/mimic", "width": 32, @@ -3451,13 +3506,6 @@ "offsetX": -8, "offsetY": -22 }, - { - "id": "npcs/mojojojonpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/moleking", "width": 32, @@ -3503,48 +3551,7 @@ "offsetX": -5, "offsetY": -13 }, - { - "id": "npcs/momangelnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "mobs/nightmareregion", - "width": 42, - "height": 42, - "offsetX": -14, - "offsetY": -21 - }, - { - "id": "npcs/nyan", - "width": 49, - "height": 24, - "offsetX": -22, - "offsetY": -6 - }, - { - "id": "npcs/octocat", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "npcs/octopus", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/oddeyecat", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, + { "id": "mobs/nightmareregion", "width": 42, "height": 42, "offsetX": -14, "offsetY": -21 }, { "id": "mobs/ogre", "width": 48, @@ -3587,7 +3594,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -24 }, { @@ -3632,7 +3638,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -25 }, { @@ -3677,7 +3682,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -48 }, { @@ -3722,7 +3726,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -25 }, { @@ -3770,13 +3773,7 @@ "offsetX": -5, "offsetY": -13 }, - { - "id": "mobs/pain", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, + { "id": "mobs/infectedvillager", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/penguin", "width": 48, @@ -3819,16 +3816,9 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -25 }, - { - "id": "mobs/pierrot", - "width": 32, - "height": 32, - "offsetX": -5, - "offsetY": -13 - }, + { "id": "mobs/pierrot", "width": 32, "height": 32, "offsetX": -5, "offsetY": -13 }, { "id": "mobs/pinkelf", "width": 32, @@ -3923,20 +3913,7 @@ "offsetX": -24, "offsetY": -36 }, - { - "id": "npcs/pirategirlnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "mobs/pirateking", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, + { "id": "mobs/pirateking", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/pirateskeleton", "width": 32, @@ -4024,7 +4001,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, { @@ -4072,13 +4048,6 @@ "offsetX": -5, "offsetY": -13 }, - { - "id": "npcs/priest", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "effects/provocation", "width": 32, @@ -4233,8 +4202,8 @@ }, { "id": "mobs/rat", - "width": 48, - "height": 48, + "width": 32, + "height": 32, "idleSpeed": 250, "animations": { "death": { @@ -4277,12 +4246,14 @@ "length": 4, "row": 9 } - } + }, + "offsetX": -8, + "offsetY": -8 }, { "id": "mobs/icerat", - "width": 48, - "height": 48, + "width": 32, + "height": 32, "idleSpeed": 200, "animations": { "death": { @@ -4325,13 +4296,8 @@ "length": 4, "row": 9 } - } - }, - { - "id": "npcs/redbikinigirlnpc", - "width": 24, - "height": 24, - "offsetX": -4, + }, + "offsetX": -8, "offsetY": -8 }, { @@ -4424,20 +4390,8 @@ "offsetX": -8, "offsetY": -12 }, - { - "id": "mobs/redfish", - "width": 32, - "height": 32, - "offsetX": -5, - "offsetY": -13 - }, - { - "id": "mobs/redguard", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -13 - }, + { "id": "mobs/redfish", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, + { "id": "mobs/redguard", "width": 32, "height": 32, "offsetX": -4, "offsetY": -8 }, { "id": "mobs/redmouse", "width": 26, @@ -4525,30 +4479,8 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -23 }, - { - "id": "npcs/redstoremannpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/purplestoremannpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/greenstoremannpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/regionhenchman", "width": 64, @@ -4636,43 +4568,17 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, + { "id": "mobs/rudolf", "width": 42, "height": 42, "offsetX": -14, "offsetY": -21 }, + { "id": "mobs/santaelf", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { - "id": "npcs/rick", - "width": 32, - "height": 32, + "id": "mobs/santa", + "width": 64, + "height": 72, "animations": { - "idle_down": { - "length": 4, - "row": 0 - } - }, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "mobs/rudolf", - "width": 42, - "height": 42, - "offsetX": -14, - "offsetY": -21 - }, - { - "id": "mobs/santaelf", - "width": 32, - "height": 32, - "offsetX": -8, - "offsetY": -12 - }, - { - "id": "mobs/santa", - "width": 64, - "height": 72, - "animations": { - "atk_right": { - "length": 3, + "atk_right": { + "length": 3, "row": 0 }, "walk_right": { @@ -4711,13 +4617,6 @@ "offsetX": -24, "offsetY": -55 }, - { - "id": "npcs/scientist", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/seadragon", "width": 64, @@ -4767,28 +4666,7 @@ "offsetX": -24, "offsetY": -39 }, - { - "id": "npcs/secondsonangelnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { "id": "shadow16" }, - { - "id": "mobs/shadowregion", - "width": 42, - "height": 42, - "offsetX": -14, - "offsetY": -21 - }, - { - "id": "npcs/shepherdboy", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, + { "id": "mobs/shadowregion", "width": 42, "height": 42, "offsetX": -14, "offsetY": -21 }, { "id": "effects/shieldbenef", "width": 32, @@ -4834,11 +4712,6 @@ "offsetX": -6, "offsetY": -10 }, - { - "id": "crowns/silvermedal", - "width": 12, - "height": 12 - }, { "id": "mobs/skeleton2", "width": 48, @@ -4881,7 +4754,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -20 }, { @@ -4926,7 +4798,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -20 }, { @@ -5072,12 +4943,51 @@ "offsetX": -8, "offsetY": -12 }, + { "id": "mobs/slime", "width": 32, "height": 32, "offsetX": -6, "offsetY": -12 }, { - "id": "mobs/slime", + "id": "mobs/lavaslime", "width": 32, "height": 32, - "offsetX": -6, - "offsetY": -12 + "animations": { + "atk_right": { + "length": 4, + "row": 1 + }, + "walk_right": { + "length": 4, + "row": 0 + }, + "idle_right": { + "length": 4, + "row": 0 + }, + "atk_up": { + "length": 4, + "row": 1 + }, + "walk_up": { + "length": 4, + "row": 0 + }, + "idle_up": { + "length": 4, + "row": 0 + }, + "atk_down": { + "length": 4, + "row": 1 + }, + "walk_down": { + "length": 4, + "row": 0 + }, + "idle_down": { + "length": 4, + "row": 0 + } + }, + "offsetX": -7, + "offsetY": -13 }, { "id": "mobs/smalldevil", @@ -5121,8 +5031,7 @@ "row": 8 } }, - "offsetX": -14, - "offsetY": -16 + "offsetX": -14 }, { "id": "mobs/snek", @@ -5256,7 +5165,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -25 }, { @@ -5349,20 +5257,7 @@ "offsetX": -5, "offsetY": -13 }, - { - "id": "npcs/snowshepherdboy", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "mobs/snowwolf", - "width": 42, - "height": 42, - "offsetX": -14, - "offsetY": -21 - }, + { "id": "mobs/snowwolf", "width": 42, "height": 42, "offsetX": -14, "offsetY": -21 }, { "id": "mobs/soldierant", "width": 48, @@ -5405,29 +5300,8 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -27 }, - { - "id": "npcs/soldier", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/sorcerer", - "width": 26, - "height": 26, - "animations": { - "idle_down": { - "length": 6, - "row": 0 - } - }, - "offsetX": -5, - "offsetY": -9 - }, { "id": "mobs/soybeanbug", "width": 48, @@ -5470,14 +5344,8 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -30 }, - { - "id": "sparks", - "offsetX": 0, - "offsetY": 0 - }, { "id": "mobs/spectre", "width": 34, @@ -5572,13 +5440,6 @@ "offsetX": -8, "offsetY": -8 }, - { - "id": "npcs/sponge", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/squid", "width": 48, @@ -5621,7 +5482,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -30 }, { @@ -5679,7 +5539,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -30 }, { @@ -5695,13 +5554,6 @@ "offsetX": -8, "offsetY": -42 }, - { - "id": "npcs/superiorangelnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "target", "animations": { @@ -5712,58 +5564,13 @@ "atk": { "length": 4, "row": 1 + }, + "info": { + "length": 4, + "row": 2 } } }, - { - "id": "npcs/vampire", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/vendingmachine", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/villagegirl", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/villagegirl2", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/villagegirl3", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/villager", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, - { - "id": "npcs/miner", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/vulture", "width": 48, @@ -5806,7 +5613,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -25 }, { @@ -5851,7 +5657,6 @@ "row": 8 } }, - "offsetX": -16, "offsetY": -22 }, { @@ -5997,13 +5802,7 @@ "offsetX": -5, "offsetY": -9 }, - { - "id": "mobs/darkwolf", - "width": 42, - "height": 42, - "offsetX": -14, - "offsetY": -21 - }, + { "id": "mobs/darkwolf", "width": 42, "height": 42, "offsetX": -14, "offsetY": -21 }, { "id": "mobs/wolf", "width": 32, @@ -6050,9 +5849,10 @@ "offsetY": -13 }, { - "id": "yellowbat", + "id": "mobs/yellowbat", "width": 32, "height": 48, + "idleSpeed": 100, "animations": { "atk_right": { "length": 5, @@ -6094,13 +5894,7 @@ "offsetX": -8, "offsetY": -24 }, - { - "id": "mobs/yellowfish", - "width": 32, - "height": 32, - "offsetX": -5, - "offsetY": -13 - }, + { "id": "mobs/yellowfish", "width": 32, "height": 32, "offsetX": -8, "offsetY": -12 }, { "id": "mobs/yellowmouse", "width": 26, @@ -6191,13 +5985,6 @@ "offsetX": -5, "offsetY": -13 }, - { - "id": "npcs/zombiegf", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "mobs/zombie", "width": 32, @@ -6243,13 +6030,6 @@ "offsetX": -8, "offsetY": -13 }, - { - "id": "npcs/redbikinigirlnpc", - "width": 24, - "height": 24, - "offsetX": -4, - "offsetY": -8 - }, { "id": "projectiles/fireball", "idleSpeed": 75, @@ -6292,7 +6072,6 @@ "offsetX": -24, "offsetY": -24 }, - { "id": "projectiles/bluelightning", "width": 50, @@ -6360,8 +6139,8 @@ }, { "id": "projectiles/poisonball", - "width": 40, - "height": 40, + "width": 50, + "height": 48, "animations": { "travel": { "length": 10, @@ -6371,6 +6150,58 @@ "offsetX": -18, "offsetY": -17 }, + { + "id": "projectiles/bloodball", + "width": 50, + "height": 48, + "animations": { + "travel": { + "length": 8, + "row": 0 + } + }, + "offsetX": -18, + "offsetY": -17 + }, + { + "id": "projectiles/lightningarc", + "width": 50, + "height": 48, + "animations": { + "travel": { + "length": 8, + "row": 0 + } + }, + "offsetX": -18, + "offsetY": -17 + }, + { + "id": "projectiles/firearc", + "width": 50, + "height": 48, + "animations": { + "travel": { + "length": 8, + "row": 0 + } + }, + "offsetX": -18, + "offsetY": -17 + }, + { + "id": "projectiles/shadowarc", + "width": 50, + "height": 48, + "animations": { + "travel": { + "length": 8, + "row": 0 + } + }, + "offsetX": -18, + "offsetY": -17 + }, { "id": "projectiles/boulder", "idleSpeed": 75, @@ -6392,8 +6223,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -12, + "offsetY": -12 }, { "id": "projectiles/firearrow", @@ -6404,8 +6235,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -16, + "offsetY": -8 }, { "id": "projectiles/poisonarrow", @@ -6416,8 +6247,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -12, + "offsetY": -12 }, { "id": "projectiles/icearrow", @@ -6428,8 +6259,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -12, + "offsetY": -12 }, { "id": "projectiles/lightningarrow", @@ -6440,8 +6271,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -12, + "offsetY": -12 }, { "id": "projectiles/nisocarrow", @@ -6452,8 +6283,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -12, + "offsetY": -12 }, { "id": "projectiles/cinnabararrow", @@ -6464,8 +6295,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -12, + "offsetY": -12 }, { "id": "projectiles/pythararrow", @@ -6476,8 +6307,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -12, + "offsetY": -12 }, { "id": "projectiles/iboarrow", @@ -6488,8 +6319,8 @@ "row": 0 } }, - "offsetX": 0, - "offsetY": 0 + "offsetX": -12, + "offsetY": -12 }, { "id": "projectiles/none", @@ -6544,7 +6375,6 @@ "row": 0 } }, - "offsetX": -16, "offsetY": -24 }, { @@ -6558,7 +6388,6 @@ "row": 0 } }, - "offsetX": -16, "offsetY": -24 }, { @@ -6572,7 +6401,6 @@ "row": 0 } }, - "offsetX": -16, "offsetY": -24 }, { @@ -6586,7 +6414,6 @@ "row": 0 } }, - "offsetX": -16, "offsetY": -24 }, { @@ -6600,7 +6427,6 @@ "row": 0 } }, - "offsetX": -16, "offsetY": -24 }, { @@ -6614,7 +6440,6 @@ "row": 0 } }, - "offsetX": -16, "offsetY": -24 }, { @@ -6627,8 +6452,7 @@ "row": 0 } }, - "offsetX": -17, - "offsetY": -16 + "offsetX": -17 }, { "id": "effects/poisonball", @@ -6653,8 +6477,7 @@ "row": 0 } }, - "offsetX": -8, - "offsetY": -16 + "offsetX": -8 }, { "id": "effects/freeze", @@ -6666,8 +6489,7 @@ "row": 0 } }, - "offsetX": -8, - "offsetY": -16 + "offsetX": -8 }, { "id": "effects/lavaball", @@ -6679,7 +6501,6 @@ "row": 0 } }, - "offsetX": -16, "offsetY": -24 }, { @@ -6706,10 +6527,21 @@ "offsetX": -18, "offsetY": -15 }, + { + "id": "effects/lightningexplosion", + "width": 50, + "height": 48, + "animations": { + "effect": { + "length": 8, + "row": 0 + } + }, + "offsetX": -18, + "offsetY": -15 + }, { "id": "effects/boulder", - "width": 32, - "height": 32, "animations": { "effect": { "length": 7, @@ -6742,13 +6574,10 @@ "row": 0 } }, - "offsetX": -8, - "offsetY": -16 + "offsetX": -8 }, { "id": "effects/heal2", - "width": 32, - "height": 32, "animations": { "effect": { "length": 10, @@ -6758,6 +6587,138 @@ "offsetX": -8, "offsetY": -10 }, + { + "id": "effects/attack", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/strength", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/defense", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/magic", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/archery", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/attacksuper", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/strengthsuper", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/defensesuper", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/magicsuper", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/archerysuper", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, + { + "id": "effects/bleed", + "width": 32, + "height": 32, + "animations": { + "effect": { + "length": 5, + "row": 0 + } + }, + "offsetX": -8 + }, { "id": "mobs/icegoblin", "width": 32, @@ -6803,295 +6764,669 @@ "offsetX": -7, "offsetY": -13 }, - { "id": "items/accuracypotion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/apple", "offsetX": 0, "offsetY": 0 }, - { "id": "items/arrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/avocado", "offsetX": 0, "offsetY": 0 }, - { "id": "items/banana", "offsetX": 0, "offsetY": 0 }, - { "id": "items/barley", "offsetX": 0, "offsetY": 0 }, - { "id": "items/basket", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bead", "offsetX": 0, "offsetY": 0 }, - { "id": "items/beer", "offsetX": 0, "offsetY": 0 }, - { "id": "items/beermug", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bigflask", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bigmanaflask", "offsetX": 0, "offsetY": 0 }, - { "id": "items/blackberry", "offsetX": 0, "offsetY": 0 }, - { "id": "items/blackpotion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bloodwoodlogs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/blueberry", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bluelily", "offsetX": 0, "offsetY": 0 }, - { "id": "items/book", "offsetX": 0, "offsetY": 0 }, - { "id": "items/boostpotion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/borth", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bowcommon", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bowlimb", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bowrare", "offsetX": 0, "offsetY": 0 }, - { "id": "items/string", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bowuncommon", "offsetX": 0, "offsetY": 0 }, - { "id": "items/branch", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bronzebar", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bronzeore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bucket", "offsetX": 0, "offsetY": 0 }, - { "id": "items/burger", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cake", "offsetX": 0, "offsetY": 0 }, - { "id": "items/candykey", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cd", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cheese", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cilantro", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cinnabararrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cinnabarore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/clamobject", "offsetX": 0, "offsetY": 0 }, - { "id": "items/clamchowder", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cloth", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cloudberry", "offsetX": 0, "offsetY": 0 }, - { "id": "items/coal", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cookedbeef", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cookedchicken", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cookedpork", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cookedsausage", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cookedshrimp", "offsetX": 0, "offsetY": 0 }, - { "id": "items/copperbar", "offsetX": 0, "offsetY": 0 }, - { "id": "items/copperore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/corn", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cure", "offsetX": 0, "offsetY": 0 }, - { "id": "items/dandelion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/defensepotion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/diamondring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/dolring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/egg", "offsetX": 0, "offsetY": 0 }, - { "id": "items/element", "offsetX": 0, "offsetY": 0 }, - { "id": "items/emeraldpendant", "offsetX": 0, "offsetY": 0 }, - { "id": "items/emeraldring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/essentialrage", "offsetX": 0, "offsetY": 0 }, - { "id": "items/feather", "offsetX": 0, "offsetY": 0 }, - { "id": "items/firearrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/firebead", "offsetX": 0, "offsetY": 0 }, - { "id": "items/firepotion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/flask", "offsetX": 0, "offsetY": 0 }, - { "id": "items/frostring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/gold", "offsetX": 0, "offsetY": 0 }, - { "id": "items/goldbar", "offsetX": 0, "offsetY": 0 }, - { "id": "items/goldboots", "offsetX": 0, "offsetY": 0 }, - { "id": "items/goldnugget", "offsetX": 0, "offsetY": 0 }, - { "id": "items/goldore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/goldring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/gooseberry", "offsetX": 0, "offsetY": 0 }, - { "id": "items/greenpendant", "offsetX": 0, "offsetY": 0 }, - { "id": "items/hotsauce", "offsetX": 0, "offsetY": 0 }, - { "id": "items/iboarrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/iboore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/icearrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/icebead", "offsetX": 0, "offsetY": 0 }, - { "id": "items/icelogs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/icepalmlogs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/icepinelogs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ironbar", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ironore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/jellyfish", "offsetX": 0, "offsetY": 0 }, - { "id": "items/jellyfishsmoothie", "offsetX": 0, "offsetY": 0 }, - { "id": "items/kelp", "offsetX": 0, "offsetY": 0 }, - { "id": "items/kiwi", "offsetX": 0, "offsetY": 0 }, - { "id": "items/knife", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lavaboots", "offsetX": 0, "offsetY": 0 }, - { "id": "items/leaf", "offsetX": 0, "offsetY": 0 }, - { "id": "items/leatherboots", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lightningarrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lightningbead", "offsetX": 0, "offsetY": 0 }, - { "id": "items/logs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/loveactring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/manaflask", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mango", "offsetX": 0, "offsetY": 0 }, - { "id": "items/berylpendant", "offsetX": 0, "offsetY": 0 }, - { "id": "items/melon-slice", "offsetX": 0, "offsetY": 0 }, - { "id": "items/milkbottle", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mineral", "offsetX": 0, "offsetY": 0 }, - { "id": "items/moonrockore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mulberry", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mushroom1", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mushroom2", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mushroom3", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mushroom4", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mushroom5", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mushroom6", "offsetX": 0, "offsetY": 0 }, - { "id": "items/naturebead", "offsetX": 0, "offsetY": 0 }, - { "id": "items/nisocarrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/nisocore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/nisocring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/null", "offsetX": 0, "offsetY": 0 }, - { "id": "items/oat", "offsetX": 0, "offsetY": 0 }, - { "id": "items/onion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/orange", "offsetX": 0, "offsetY": 0 }, - { "id": "items/palmlogs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/peach", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pearlpendant", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pearlring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pendant1", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pineapple", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pinelogs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/plum", "offsetX": 0, "offsetY": 0 }, - { "id": "items/poisonarrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/potato", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pythararrow", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pytharore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pytharring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/quinoa", "offsetX": 0, "offsetY": 0 }, - { "id": "items/raspberry", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rawbeef", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rawchicken", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rawpork", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rawsausage", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rawshrimp", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rice", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ring1", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rock", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rockfish", "offsetX": 0, "offsetY": 0 }, - { "id": "items/royalazalea", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rubypendant", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rubyring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/sapphirering", "offsetX": 0, "offsetY": 0 }, - { "id": "items/sausage", "offsetX": 0, "offsetY": 0 }, - { "id": "items/seed", "offsetX": 0, "offsetY": 0 }, - { "id": "items/shardt1", "offsetX": 0, "offsetY": 0 }, - { "id": "items/shardt2", "offsetX": 0, "offsetY": 0 }, - { "id": "items/shardt3", "offsetX": 0, "offsetY": 0 }, - { "id": "items/shardt4", "offsetX": 0, "offsetY": 0 }, - { "id": "items/shardt5", "offsetX": 0, "offsetY": 0 }, - { "id": "items/silverring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/snowpotion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/spiritring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/sproutring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/steelboots", "offsetX": 0, "offsetY": 0 }, - { "id": "items/stew", "offsetX": 0, "offsetY": 0 }, - { "id": "items/stew2", "offsetX": 0, "offsetY": 0 }, - { "id": "items/stick", "offsetX": 0, "offsetY": 0 }, - { "id": "items/strawberry", "offsetX": 0, "offsetY": 0 }, - { "id": "items/strengthpotion", "offsetX": 0, "offsetY": 0 }, - { "id": "items/swiftboots", "offsetX": 0, "offsetY": 0 }, - { "id": "items/taekwondo", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tamagotchiring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tinbar", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tinore", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tofu", "offsetX": 0, "offsetY": 0 }, - { "id": "items/token", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tomato", "offsetX": 0, "offsetY": 0 }, - { "id": "items/topazring", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rawtuna", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tunasushi", "offsetX": 0, "offsetY": 0 }, - { "id": "items/typhoon", "offsetX": 0, "offsetY": 0 }, - { "id": "items/undefined", "offsetX": 0, "offsetY": 0 }, - { "id": "items/waterbucket", "offsetX": 0, "offsetY": 0 }, - { "id": "items/watermelon", "offsetX": 0, "offsetY": 0 }, - { "id": "items/watermelonslice", "offsetX": 0, "offsetY": 0 }, - { "id": "items/willowlogs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/amethyst", "offsetX": 0, "offsetY": 0 }, - { "id": "items/beryl", "offsetX": 0, "offsetY": 0 }, - { "id": "items/citrine", "offsetX": 0, "offsetY": 0 }, - { "id": "items/emerald", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lapislazuli", "offsetX": 0, "offsetY": 0 }, - { "id": "items/opal", "offsetX": 0, "offsetY": 0 }, - { "id": "items/peridot", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ruby", "offsetX": 0, "offsetY": 0 }, - { "id": "items/taaffeite", "offsetX": 0, "offsetY": 0 }, - { "id": "items/topaz", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cinnamonbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/basil", "offsetX": 0, "offsetY": 0 }, - { "id": "items/basilbowlmedium", "offsetX": 0, "offsetY": 0 }, - { "id": "items/basilpowder", "offsetX": 0, "offsetY": 0 }, - { "id": "items/basilshaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bayleaves", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bayleavesbottle", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bayleavesbowlmedium", "offsetX": 0, "offsetY": 0 }, - { "id": "items/blackpepperplant", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bowlmedium", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cayennebowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cayennepepper", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cayenneshaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/chilli", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cinnamon", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cinnamonbark", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cinnamonshaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cumin", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cuminbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cuminplant", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cuminshaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/emptybottle", "offsetX": 0, "offsetY": 0 }, - { "id": "items/emptyshaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ginderpowderbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ginger", "offsetX": 0, "offsetY": 0 }, - { "id": "items/gingerbottle", "offsetX": 0, "offsetY": 0 }, - { "id": "items/gingerpowder", "offsetX": 0, "offsetY": 0 }, - { "id": "items/horseradish", "offsetX": 0, "offsetY": 0 }, - { "id": "items/horseradishbottle", "offsetX": 0, "offsetY": 0 }, - { "id": "items/horseradishbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/horseradishsmashedbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lavender", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lavenderbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lavenderseeds", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lavendershaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mint", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mintbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mustardbottle", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mustardbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/mustardplant", "offsetX": 0, "offsetY": 0 }, - { "id": "items/paprika", "offsetX": 0, "offsetY": 0 }, - { "id": "items/paprikabowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/paprikapowder", "offsetX": 0, "offsetY": 0 }, - { "id": "items/paprikashaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pepper", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pepperbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/peppershaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rosemary", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rosemarybottle", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rosemarybowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/rosemarypowder", "offsetX": 0, "offsetY": 0 }, - { "id": "items/sage", "offsetX": 0, "offsetY": 0 }, - { "id": "items/sagebowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/sagepowder", "offsetX": 0, "offsetY": 0 }, - { "id": "items/sageshaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/salt", "offsetX": 0, "offsetY": 0 }, - { "id": "items/saltbowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/saltcrystal", "offsetX": 0, "offsetY": 0 }, - { "id": "items/saltshaker", "offsetX": 0, "offsetY": 0 }, - { "id": "items/vanila", "offsetX": 0, "offsetY": 0 }, - { "id": "items/vanillabottle", "offsetX": 0, "offsetY": 0 }, - { "id": "items/vanillabowlsmall", "offsetX": 0, "offsetY": 0 }, - { "id": "items/hilt1", "offsetX": 0, "offsetY": 0 }, - { "id": "items/hilt2", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cobalthelmet", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ironhelmet", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cobaltlegs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ironlegs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/danbo", "offsetX": 0, "offsetY": 0 }, - { "id": "items/danboblue", "offsetX": 0, "offsetY": 0 }, - { "id": "items/danbogreen", "offsetX": 0, "offsetY": 0 }, - { "id": "items/danbored", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bronzeaxe", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cobaltaxe", "offsetX": 0, "offsetY": 0 }, - { "id": "items/fishingpole", "offsetX": 0, "offsetY": 0 }, - { "id": "items/goldaxe", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ironaxe", "offsetX": 0, "offsetY": 0 }, - { "id": "items/icesword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/coppersword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tinsword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bronzesword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ironsword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/nisocsword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cinnabarsword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/pytharsword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ibosword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/goldsword", "offsetX": 0, "offsetY": 0 }, - { "id": "items/aquastaff", "offsetX": 0, "offsetY": 0 }, - { "id": "items/lightningstaff", "offsetX": 0, "offsetY": 0 }, - { "id": "items/naturestaff", "offsetX": 0, "offsetY": 0 }, - { "id": "items/firestaff", "offsetX": 0, "offsetY": 0 }, - { "id": "items/cursestaff", "offsetX": 0, "offsetY": 0 }, - { "id": "items/copperlegs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tinlegs", "offsetX": 0, "offsetY": 0 }, - { "id": "items/copperhelmet", "offsetX": 0, "offsetY": 0 }, - { "id": "items/tinhelmet", "offsetX": 0, "offsetY": 0 }, - { "id": "items/bronzehelmet", "offsetX": 0, "offsetY": 0 }, - { "id": "items/goldhelmet", "offsetX": 0, "offsetY": 0 }, - { "id": "items/ironchestplate", "offsetX": 0, "offsetY": 0 } + { + "id": "death", + "width": 24, + "height": 24, + "preload": true, + "animations": { + "death": { + "length": 6, + "row": 0 + } + }, + "offsetX": -4, + "offsetY": -4 + }, + { "id": "shadow", "preload": true }, + { + "id": "sparks", + "preload": true, + "animations": { + "idle_down": { + "length": 6, + "row": 0 + } + }, + "offsetX": 0, + "offsetY": 0 + }, + { + "id": "exclamation", + "idleSpeed": 360, + "animations": { "idle_down": { "length": 2, "row": 0 } }, + "preload": true, + "offsetY": -24 + }, + { + "id": "exclamationblue", + "idleSpeed": 360, + "animations": { "idle_down": { "length": 2, "row": 0 } }, + "preload": true, + "offsetY": -24 + }, + + { "id": "items/accuracypotion" }, + { "id": "items/adamantitesworth" }, + { "id": "items/adeptsrapier" }, + { "id": "items/alchemistalimony" }, + { "id": "items/alkythnlogs" }, + { "id": "items/amethyst" }, + { "id": "items/amethystboots" }, + { "id": "items/amethystchestplate" }, + { "id": "items/amethysthelm" }, + { "id": "items/amethystlegplates" }, + { "id": "items/ancientshovel" }, + { "id": "items/ancientstaff" }, + { "id": "items/angelicblade" }, + { "id": "items/apple" }, + { "id": "items/aquasilliuslogs" }, + { "id": "items/aquastaff" }, + { "id": "items/arcanahypercube" }, + { "id": "items/arrow" }, + { "id": "items/ashworm" }, + { "id": "items/avocado" }, + { "id": "items/balloonblue" }, + { "id": "items/balloongreen" }, + { "id": "items/balloonpink" }, + { "id": "items/balloonturquoise" }, + { "id": "items/balloonwhite" }, + { "id": "items/balloonyellow" }, + { "id": "items/banana" }, + { "id": "items/barley" }, + { "id": "items/basil" }, + { "id": "items/basilbowlmedium" }, + { "id": "items/basilpowder" }, + { "id": "items/basilshaker" }, + { "id": "items/basket" }, + { "id": "items/bayleaves" }, + { "id": "items/bayleavesbottle" }, + { "id": "items/bayleavesbowlmedium" }, + { "id": "items/bead" }, + { "id": "items/bearhelm" }, + { "id": "items/beer" }, + { "id": "items/beermug" }, + { "id": "items/berserkerssanity" }, + { "id": "items/beryl" }, + { "id": "items/berylgoldring" }, + { "id": "items/berylpendant" }, + { "id": "items/berylsilverring" }, + { "id": "items/bident" }, + { "id": "items/bigemptyvial" }, + { "id": "items/bigflask" }, + { "id": "items/bigmanaflask" }, + { "id": "items/blackberry" }, + { "id": "items/blackpepperplant" }, + { "id": "items/blackpotion" }, + { "id": "items/bladeofdarkness" }, + { "id": "items/bloodmoonstaff" }, + { "id": "items/bloodwoodlogs" }, + { "id": "items/blueberry" }, + { "id": "items/bluelightsaber" }, + { "id": "items/bluelily" }, + { "id": "items/bluemoonstaff" }, + { "id": "items/blueworm" }, + { "id": "items/bonebonker" }, + { "id": "items/bonepickaxe" }, + { "id": "items/book" }, + { "id": "items/borth" }, + { "id": "items/bowbamboo" }, + { "id": "items/bowdeuteranom" }, + { "id": "items/boweggplant" }, + { "id": "items/bowfleshflinger" }, + { "id": "items/bowiceicemaybe" }, + { "id": "items/bowillmuscal" }, + { "id": "items/bowkelpysburden" }, + { "id": "items/bowlmedium" }, + { "id": "items/bowlsmall" }, + { "id": "items/bowmagiccool" }, + { "id": "items/bowmagichot" }, + { "id": "items/bowmoon" }, + { "id": "items/bowocean" }, + { "id": "items/bowpine" }, + { "id": "items/bowsky" }, + { "id": "items/bowsun" }, + { "id": "items/bowswineslayer" }, + { "id": "items/bowwillowtwine" }, + { "id": "items/braceletbronzeberyl" }, + { "id": "items/braceletbronzeemerald" }, + { "id": "items/braceletbronzepythar" }, + { "id": "items/braceletbronzeruby" }, + { "id": "items/braceletbronzesapphire" }, + { "id": "items/braceletgoldberyl" }, + { "id": "items/braceletgoldemerald" }, + { "id": "items/braceletgoldpythar" }, + { "id": "items/braceletgoldruby" }, + { "id": "items/braceletgoldsapphire" }, + { "id": "items/braceletsilverberyl" }, + { "id": "items/braceletsilveremerald" }, + { "id": "items/braceletsilverpythar" }, + { "id": "items/braceletsilverruby" }, + { "id": "items/braceletsilversapphire" }, + { "id": "items/bronzeaxe" }, + { "id": "items/bronzebar" }, + { "id": "items/bronzebattleaxe" }, + { "id": "items/bronzeboots" }, + { "id": "items/bronzechestplate" }, + { "id": "items/bronzehelmet" }, + { "id": "items/bronzelegplates" }, + { "id": "items/bronzeore" }, + { "id": "items/bronzepickaxe" }, + { "id": "items/bronzering" }, + { "id": "items/bronzescythe" }, + { "id": "items/bronzespear" }, + { "id": "items/bronzesword" }, + { "id": "items/brutishblade" }, + { "id": "items/bucket" }, + { "id": "items/burger" }, + { "id": "items/cake" }, + { "id": "items/candykey" }, + { "id": "items/cayennebowlsmall" }, + { "id": "items/cayennepepper" }, + { "id": "items/cayenneshaker" }, + { "id": "items/cd" }, + { "id": "items/cellobello" }, + { "id": "items/cheese" }, + { "id": "items/chilli" }, + { "id": "items/chisel" }, + { "id": "items/cilantro" }, + { "id": "items/cinnabararrow" }, + { "id": "items/cinnabarore" }, + { "id": "items/cinnabarsword" }, + { "id": "items/cinnamon" }, + { "id": "items/cinnamonbark" }, + { "id": "items/cinnamonbowlsmall" }, + { "id": "items/cinnamonshaker" }, + { "id": "items/citrine" }, + { "id": "items/clamchowder" }, + { "id": "items/clamobject" }, + { "id": "items/cloth" }, + { "id": "items/cloudberry" }, + { "id": "items/club" }, + { "id": "items/coal" }, + { "id": "items/cobaltaxe" }, + { "id": "items/cobaltbattleaxe" }, + { "id": "items/cobaltboots" }, + { "id": "items/cobaltchestplate" }, + { "id": "items/cobalthelmet" }, + { "id": "items/cobaltlegplates" }, + { "id": "items/cobaltpickaxe" }, + { "id": "items/cobaltscythe" }, + { "id": "items/cobaltshield" }, + { "id": "items/cobaltspear" }, + { "id": "items/cookedbeef" }, + { "id": "items/cookedchicken" }, + { "id": "items/cookedpork" }, + { "id": "items/cookedsausage" }, + { "id": "items/cookedshrimp" }, + { "id": "items/copperbar" }, + { "id": "items/copperchestplate" }, + { "id": "items/copperhelmet" }, + { "id": "items/copperlegplates" }, + { "id": "items/copperore" }, + { "id": "items/coppershield" }, + { "id": "items/coppersword" }, + { "id": "items/corn" }, + { "id": "items/crystalhood" }, + { "id": "items/crystallegplates" }, + { "id": "items/cumin" }, + { "id": "items/cuminbowlsmall" }, + { "id": "items/cuminplant" }, + { "id": "items/cuminshaker" }, + { "id": "items/cure" }, + { "id": "items/cursebead" }, + { "id": "items/cursedbattleaxe" }, + { "id": "items/cursedpickaxe" }, + { "id": "items/cursedsapphirepickaxe" }, + { "id": "items/cursestaff" }, + { "id": "items/danbo" }, + { "id": "items/danboblue" }, + { "id": "items/danbogreen" }, + { "id": "items/danbored" }, + { "id": "items/dandelion" }, + { "id": "items/darkmagehood" }, + { "id": "items/darkmagehoodblue" }, + { "id": "items/darkmagehoodgold" }, + { "id": "items/darkmagehoodgreen" }, + { "id": "items/darkskeletonhelm" }, + { "id": "items/darkskeletonskin" }, + { "id": "items/defensepotion" }, + { "id": "items/demoniccrystalhood" }, + { "id": "items/demonichelm" }, + { "id": "items/demonicstaff" }, + { "id": "items/diamondring" }, + { "id": "items/dinosaurarmor" }, + { "id": "items/dolring" }, + { "id": "items/dragonscale" }, + { "id": "items/egg" }, + { "id": "items/element" }, + { "id": "items/emerald" }, + { "id": "items/emeraldpendant" }, + { "id": "items/emeraldring" }, + { "id": "items/emptybottle" }, + { "id": "items/emptyshaker" }, + { "id": "items/essentialrage" }, + { "id": "items/etherialblade" }, + { "id": "items/ettispinefruit" }, + { "id": "items/executionershammer" }, + { "id": "items/eyesword" }, + { "id": "items/feather" }, + { "id": "items/firearrow" }, + { "id": "items/firebead" }, + { "id": "items/firepotion" }, + { "id": "items/fireshot" }, + { "id": "items/firestaff" }, + { "id": "items/firesword" }, + { "id": "items/fishbowl" }, + { "id": "items/fishingpole" }, + { "id": "items/flameblackhelmet" }, + { "id": "items/flamebluehelmet" }, + { "id": "items/flamecursehelmet" }, + { "id": "items/flamehelmet" }, + { "id": "items/flask" }, + { "id": "items/froghelm" }, + { "id": "items/frostring" }, + { "id": "items/galaxylilies" }, + { "id": "items/ginderpowderbowlsmall" }, + { "id": "items/ginger" }, + { "id": "items/gingerbottle" }, + { "id": "items/gingerpowder" }, + { "id": "items/godscroissant" }, + { "id": "items/gold" }, + { "id": "items/goldaxe" }, + { "id": "items/goldbar" }, + { "id": "items/goldbattleaxe" }, + { "id": "items/goldboots" }, + { "id": "items/goldchestplate" }, + { "id": "items/goldgolemsmace" }, + { "id": "items/goldhelmet" }, + { "id": "items/goldlegplates" }, + { "id": "items/goldnugget" }, + { "id": "items/goldore" }, + { "id": "items/goldpickaxe" }, + { "id": "items/goldring" }, + { "id": "items/goldring2" }, + { "id": "items/goldscythe" }, + { "id": "items/goldshield" }, + { "id": "items/goldspear" }, + { "id": "items/goldsword" }, + { "id": "items/golemsmace" }, + { "id": "items/gooseberry" }, + { "id": "items/greenlightsaber" }, + { "id": "items/greenpendant" }, + { "id": "items/greenworm" }, + { "id": "items/gun" }, + { "id": "items/hammer" }, + { "id": "items/harmoniccrossband" }, + { "id": "items/heavyberylpickaxe" }, + { "id": "items/heliphatitlogs" }, + { "id": "items/hellhoundfang" }, + { "id": "items/hellkeeperboots" }, + { "id": "items/hellkeeperchestplate" }, + { "id": "items/hellkeeperhelm" }, + { "id": "items/hellkeeperlegplates" }, + { "id": "items/hellsword" }, + { "id": "items/helmofhaste" }, + { "id": "items/helmofliberty" }, + { "id": "items/hemocytelogs" }, + { "id": "items/hilt1" }, + { "id": "items/hilt2" }, + { "id": "items/horseradish" }, + { "id": "items/horseradishbottle" }, + { "id": "items/horseradishbowlsmall" }, + { "id": "items/horseradishsmashedbowlsmall" }, + { "id": "items/hotsauce" }, + { "id": "items/iboarrow" }, + { "id": "items/iboore" }, + { "id": "items/ibosword" }, + { "id": "items/icearrow" }, + { "id": "items/icebead" }, + { "id": "items/icelogs" }, + { "id": "items/icepalmlogs" }, + { "id": "items/icepinelogs" }, + { "id": "items/icerose" }, + { "id": "items/icesword" }, + { "id": "items/ironaxe" }, + { "id": "items/ironbar" }, + { "id": "items/ironbattleaxe" }, + { "id": "items/ironboots" }, + { "id": "items/ironchestplate" }, + { "id": "items/ironhelmet" }, + { "id": "items/ironlegplates" }, + { "id": "items/ironore" }, + { "id": "items/ironpickaxe" }, + { "id": "items/ironring" }, + { "id": "items/ironroundshield" }, + { "id": "items/ironscythe" }, + { "id": "items/ironshield" }, + { "id": "items/ironspear" }, + { "id": "items/ironsword" }, + { "id": "items/jellyfish" }, + { "id": "items/jellyfishsmoothie" }, + { "id": "items/jesterhat" }, + { "id": "items/kelp" }, + { "id": "items/kiwi" }, + { "id": "items/knife" }, + { "id": "items/knightchestplate" }, + { "id": "items/knighthelmet" }, + { "id": "items/knightlegplates" }, + { "id": "items/lantern" }, + { "id": "items/lantern2" }, + { "id": "items/lanternarcan" }, + { "id": "items/lapislazuli" }, + { "id": "items/largeemptyvial" }, + { "id": "items/lavaboots" }, + { "id": "items/lavender" }, + { "id": "items/lavenderbowlsmall" }, + { "id": "items/lavenderseeds" }, + { "id": "items/lavendershaker" }, + { "id": "items/leaf" }, + { "id": "items/leatherboots" }, + { "id": "items/leatherchest" }, + { "id": "items/leatherhelmet" }, + { "id": "items/leatherleggings" }, + { "id": "items/lightningarrow" }, + { "id": "items/lightningbead" }, + { "id": "items/lightningstaff" }, + { "id": "items/livinganchorroot" }, + { "id": "items/logs" }, + { "id": "items/lolipop" }, + { "id": "items/lootbag" }, + { "id": "items/loveactring" }, + { "id": "items/magichamberge" }, + { "id": "items/magmaboots" }, + { "id": "items/magmahelm" }, + { "id": "items/manaberry" }, + { "id": "items/manaflask" }, + { "id": "items/mango" }, + { "id": "items/midnightamethystboots" }, + { "id": "items/midnightamethystchestplate" }, + { "id": "items/midnightamethysthelm" }, + { "id": "items/midnightamethystlegplates" }, + { "id": "items/milkbottle" }, + { "id": "items/mineral" }, + { "id": "items/mint" }, + { "id": "items/mintbowlsmall" }, + { "id": "items/moongreataxe" }, + { "id": "items/moonhelm" }, + { "id": "items/moonrockore" }, + { "id": "items/mulberry" }, + { "id": "items/mushroom1" }, + { "id": "items/mushroom2" }, + { "id": "items/mushroom3" }, + { "id": "items/mushroom4" }, + { "id": "items/mushroom5" }, + { "id": "items/mushroom6" }, + { "id": "items/mushroomhat" }, + { "id": "items/mustardbottle" }, + { "id": "items/mustardbowlsmall" }, + { "id": "items/mustardplant" }, + { "id": "items/naturebead" }, + { "id": "items/naturecrystalhood" }, + { "id": "items/naturestaff" }, + { "id": "items/nexuscross" }, + { "id": "items/nightboots" }, + { "id": "items/nightchestplate" }, + { "id": "items/nighthelm" }, + { "id": "items/nightlegplates" }, + { "id": "items/nightsword" }, + { "id": "items/nisocarrow" }, + { "id": "items/nisocore" }, + { "id": "items/nisocring" }, + { "id": "items/nisocsword" }, + { "id": "items/null" }, + { "id": "items/oat" }, + { "id": "items/oldmanmask" }, + { "id": "items/oldmanskin" }, + { "id": "items/oldonesblade" }, + { "id": "items/onion" }, + { "id": "items/opal" }, + { "id": "items/orange" }, + { "id": "items/orchardsbane" }, + { "id": "items/paladinchestplate" }, + { "id": "items/paladinhelmet" }, + { "id": "items/paladinlegplates" }, + { "id": "items/palmlogs" }, + { "id": "items/paprika" }, + { "id": "items/paprikabowlsmall" }, + { "id": "items/paprikapowder" }, + { "id": "items/paprikashaker" }, + { "id": "items/peach" }, + { "id": "items/pearlpendant" }, + { "id": "items/pearlring" }, + { "id": "items/peddlepounder" }, + { "id": "items/pendant1" }, + { "id": "items/pendantbronzeberyl" }, + { "id": "items/pendantbronzeemerald" }, + { "id": "items/pendantbronzepythar" }, + { "id": "items/pendantbronzeruby" }, + { "id": "items/pendantbronzesapphire" }, + { "id": "items/pendantgoldberyl" }, + { "id": "items/pendantgoldemerald" }, + { "id": "items/pendantgoldpythar" }, + { "id": "items/pendantgoldruby" }, + { "id": "items/pendantgoldsapphire" }, + { "id": "items/pendantsilverberyl" }, + { "id": "items/pendantsilveremerald" }, + { "id": "items/pendantsilverpythar" }, + { "id": "items/pendantsilverruby" }, + { "id": "items/pendantsilversapphire" }, + { "id": "items/pepper" }, + { "id": "items/pepperbowlsmall" }, + { "id": "items/peppershaker" }, + { "id": "items/peridot" }, + { "id": "items/pilgrimhat" }, + { "id": "items/pilgrimhatpink" }, + { "id": "items/pineapple" }, + { "id": "items/pinelogs" }, + { "id": "items/pinklightsaber" }, + { "id": "items/plum" }, + { "id": "items/plunger" }, + { "id": "items/poisonarrow" }, + { "id": "items/potato" }, + { "id": "items/pythararrow" }, + { "id": "items/pytharore" }, + { "id": "items/pytharring" }, + { "id": "items/pytharsword" }, + { "id": "items/quinoa" }, + { "id": "items/raspberry" }, + { "id": "items/ratballoonpet" }, + { "id": "items/rathatpet" }, + { "id": "items/ratpet" }, + { "id": "items/rawbeef" }, + { "id": "items/rawchicken" }, + { "id": "items/rawpork" }, + { "id": "items/rawsausage" }, + { "id": "items/rawshrimp" }, + { "id": "items/rawtuna" }, + { "id": "items/redlightsaber" }, + { "id": "items/redmoonhelm" }, + { "id": "items/refinedsapphireboots" }, + { "id": "items/refinedsapphirechestplate" }, + { "id": "items/refinedsapphirehelmet" }, + { "id": "items/refinedsapphirelegplates" }, + { "id": "items/rice" }, + { "id": "items/ring1" }, + { "id": "items/ringbronzeberyl" }, + { "id": "items/ringbronzeemerald" }, + { "id": "items/ringbronzepythar" }, + { "id": "items/ringbronzeruby" }, + { "id": "items/ringbronzesapphire" }, + { "id": "items/ringgoldberyl" }, + { "id": "items/ringgoldemerald" }, + { "id": "items/ringgoldpythar" }, + { "id": "items/ringgoldruby" }, + { "id": "items/ringgoldsapphire" }, + { "id": "items/ringsilverberyl" }, + { "id": "items/ringsilveremerald" }, + { "id": "items/ringsilverpythar" }, + { "id": "items/ringsilverruby" }, + { "id": "items/ringsilversapphire" }, + { "id": "items/rock" }, + { "id": "items/rockfish" }, + { "id": "items/rosemary" }, + { "id": "items/rosemarybottle" }, + { "id": "items/rosemarybowlsmall" }, + { "id": "items/rosemarypowder" }, + { "id": "items/royalazalea" }, + { "id": "items/royalrapier" }, + { "id": "items/ruby" }, + { "id": "items/rubyboots" }, + { "id": "items/rubychestplate" }, + { "id": "items/rubygem" }, + { "id": "items/rubyhelm" }, + { "id": "items/rubylegplates" }, + { "id": "items/rubypendant" }, + { "id": "items/rubyring" }, + { "id": "items/sage" }, + { "id": "items/sagebowlsmall" }, + { "id": "items/sagepowder" }, + { "id": "items/sageshaker" }, + { "id": "items/salt" }, + { "id": "items/saltbowlsmall" }, + { "id": "items/saltcrystal" }, + { "id": "items/saltshaker" }, + { "id": "items/samuraichestplate" }, + { "id": "items/samuraihelmet" }, + { "id": "items/samurailegplates" }, + { "id": "items/sapphireboots" }, + { "id": "items/sapphirechestplate" }, + { "id": "items/sapphirehelm" }, + { "id": "items/sapphirelegplates" }, + { "id": "items/sapphirering" }, + { "id": "items/sausage" }, + { "id": "items/scholarshat" }, + { "id": "items/scholarshatblack" }, + { "id": "items/scholarshatgreen" }, + { "id": "items/scholarshatred" }, + { "id": "items/scholarshatyellow" }, + { "id": "items/scimitar" }, + { "id": "items/seaweedroll" }, + { "id": "items/seed" }, + { "id": "items/sentinelboots" }, + { "id": "items/sentinelchestplate" }, + { "id": "items/sentinelhelm" }, + { "id": "items/sentinellegplates" }, + { "id": "items/sentinelsword" }, + { "id": "items/shardt1" }, + { "id": "items/shardt2" }, + { "id": "items/shardt3" }, + { "id": "items/shardt4" }, + { "id": "items/shardt5" }, + { "id": "items/shieldofglory" }, + { "id": "items/shieldofliberty" }, + { "id": "items/silverring" }, + { "id": "items/silverring2" }, + { "id": "items/skeletonhelm" }, + { "id": "items/skeletonskin" }, + { "id": "items/slimehelmet" }, + { "id": "items/slimekinghelmet" }, + { "id": "items/slimekingrarehelmet" }, + { "id": "items/slimepurplehelmet" }, + { "id": "items/slimeredhelmet" }, + { "id": "items/slimetealhelmet" }, + { "id": "items/smallemptyvial" }, + { "id": "items/smithshammer" }, + { "id": "items/snowpotion" }, + { "id": "items/speedpotion" }, + { "id": "items/spiritring" }, + { "id": "items/spoon" }, + { "id": "items/sproutring" }, + { "id": "items/steelboots" }, + { "id": "items/stellarcluster" }, + { "id": "items/stew" }, + { "id": "items/stew2" }, + { "id": "items/stick" }, + { "id": "items/strawberry" }, + { "id": "items/strengthpotion" }, + { "id": "items/string" }, + { "id": "items/sunrisegreataxe" }, + { "id": "items/sunshinecrystalhood" }, + { "id": "items/sunshinestaff" }, + { "id": "items/swashbuckler" }, + { "id": "items/swiftboots" }, + { "id": "items/swordofliberty" }, + { "id": "items/sycophant" }, + { "id": "items/taaffeite" }, + { "id": "items/taekwondo" }, + { "id": "items/tamagotchiring" }, + { "id": "items/timelessglaive" }, + { "id": "items/tinbar" }, + { "id": "items/tinchestplate" }, + { "id": "items/tinhelmet" }, + { "id": "items/tinlegplates" }, + { "id": "items/tinore" }, + { "id": "items/tinshield" }, + { "id": "items/tinsword" }, + { "id": "items/tofu" }, + { "id": "items/token" }, + { "id": "items/tomato" }, + { "id": "items/topaz" }, + { "id": "items/topazring" }, + { "id": "items/toyhat" }, + { "id": "items/toyhatprogrammer" }, + { "id": "items/toyhatwhite" }, + { "id": "items/tunasushi" }, + { "id": "items/twilightgreataxe" }, + { "id": "items/undefined" }, + { "id": "items/vanila" }, + { "id": "items/vanillabottle" }, + { "id": "items/vanillabowlsmall" }, + { "id": "items/wartberries" }, + { "id": "items/waterbucket" }, + { "id": "items/watermelon" }, + { "id": "items/watermelonbow" }, + { "id": "items/watermelonslice" }, + { "id": "items/wings" }, + { "id": "items/wingsdark" }, + { "id": "items/witchhat" }, + { "id": "items/witchhatblue" }, + { "id": "items/witchsstaffancient" }, + { "id": "items/witchsstaffblood" }, + { "id": "items/witchsstaffdemonic" }, + { "id": "items/witchsstaffmoon" }, + { "id": "items/witchsstaffsunshine" }, + { "id": "items/wizardhatblack" }, + { "id": "items/wizardhatblue" }, + { "id": "items/wizardhatcrimson" }, + { "id": "items/wizardhatdarkblue" }, + { "id": "items/wizardhatgreen" }, + { "id": "items/wizardhatpink" }, + { "id": "items/wizardhatpurple" }, + { "id": "items/wizardhatred" }, + { "id": "items/wizardhatturquoise" }, + { "id": "items/wizardhatwhite" }, + { "id": "items/wizardhatyellow" }, + { "id": "items/wolfhelmet" }, + { "id": "items/woodenbow" }, + { "id": "items/woodenshield" }, + { "id": "items/worm" }, + { "id": "items/zephyrsgaleblade" }, + { "id": "items/zoncillogs" }, + { "id": "items/zondullogs" }, + { "id": "items/zweipiercer" }, + { "id": "artistcrown" }, + { "id": "conquerorhelmet" }, + { "id": "elfhelmet" }, + { "id": "elfhelmetgrown" }, + { "id": "minitauruschestplate" }, + { "id": "minitaurushelmet" }, + { "id": "minitauruslegboots" }, + { "id": "minitauruslegplates" }, + { "id": "scarabboots" }, + { "id": "scarabchest" }, + { "id": "scarabhelmet" }, + { "id": "scarablegplates" }, + { "id": "bluemysticchest" }, + { "id": "conquerorchestplate" }, + { "id": "greenmysticchest" }, + { "id": "minitauruschest" }, + { "id": "mysticchest" }, + { "id": "scarabchest" }, + { "id": "sentinelchestplate" }, + { "id": "conquerorlegplates" }, + { "id": "minitauruslegplates" }, + { "id": "scarablegplates" }, + { "id": "sentinelegplates" } ] diff --git a/packages/client/env.d.ts b/packages/client/env.d.ts new file mode 100644 index 0000000000..109e159623 --- /dev/null +++ b/packages/client/env.d.ts @@ -0,0 +1,27 @@ +/// +/// + +import type { env } from './astro.config'; + +declare global { + let globalConfig: typeof env & { + version: string; + minor: string; + port: number; + hub: string | false; + sentryDsn: string; + acceptLicense: boolean; + }; + + declare module '*.vert' { + let src: string; + export default src; + } + + declare module '*.frag' { + let src: string; + export default src; + } +} + +export {}; diff --git a/packages/client/index.html b/packages/client/index.html deleted file mode 100644 index 3477cd45d3..0000000000 --- a/packages/client/index.html +++ /dev/null @@ -1,1193 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Kaetram - - - - - - - - - -
                                                    - - -
                                                    -
                                                    - -
                                                    -
                                                    -

                                                    - - Kaetram - -

                                                    - -
                                                    - - - - - - - - - -
                                                    -
                                                    -
                                                    - -
                                                    -

                                                    - - New Character - -

                                                    - -
                                                    - - - - - - - - - - -
                                                    -
                                                    -
                                                    - -
                                                    -

                                                    - - Reset Password - -

                                                    - -
                                                    - - - - - -
                                                    -
                                                    -
                                                    - -
                                                    -

                                                    - - World Select - -

                                                    - -
                                                    -
                                                      - -
                                                      - - -
                                                      -
                                                      -
                                                      - - - -
                                                      -

                                                      - - About - -

                                                      - -

                                                      - Kaetram is a browser-based 2D MMORPG adventure. You play as an - adventurer amongst others and explore the world of Kaetram. Originally - started as a fork of BrowserQuest, Kaetram has evolved into its own - game. In honour to the original idea, the assets have been preserved and - expanded upon. We are one of a few open-source community driven game - projects. We are always looking for assistance in terms of programming, - graphic artists, and/or music composers. Our source-code can be found on - our - GitHub Repository. If you would like to stay up-to-date with the project, make sure you - join our - Discord server. -

                                                      - -
                                                      - -- Click anywhere to close -- -
                                                      -
                                                      - -
                                                      Structure this later
                                                      - -
                                                      -

                                                      You have died...

                                                      - -
                                                      - -
                                                      -

                                                      - - Welcome to Kaetram! - -

                                                      - -

                                                      - Kaetram is still in alpha development stage. We are currently looking - for developers and pixel artists who are interested in helping out! If - you encounter any bugs or have any suggestions, feel free to submit them - on our - GitHub - or - Discord server. -

                                                      - -
                                                      - -- Click anywhere to close -- -
                                                      -
                                                      - - -
                                                      - -
                                                      -
                                                      - - - - - - -
                                                      - -
                                                      -
                                                      -
                                                      - - - - - - -
                                                      - -
                                                      -
                                                        -
                                                      • -
                                                      • -
                                                      • -
                                                      • -
                                                      • -
                                                      • -
                                                      • -
                                                      • -
                                                      -
                                                      - -
                                                      - - -
                                                      - - - -
                                                      -
                                                      -
                                                      -
                                                      -
                                                        -
                                                      • -
                                                        -
                                                      • -
                                                      • -
                                                        -
                                                      • -
                                                      • -
                                                        -
                                                      • -
                                                      • -
                                                        -
                                                      • -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      - - -
                                                      -
                                                      -
                                                      - -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                      -
                                                        -
                                                        - -
                                                        -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                        - -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                        -
                                                        - - -
                                                        - -
                                                        -
                                                        - - - -
                                                        - -
                                                        -

                                                        Music Volume

                                                        -

                                                        Sound Volume

                                                        -

                                                        Brightness

                                                        -

                                                        Audio Enabled

                                                        -

                                                        Low Power Mode

                                                        -

                                                        Debug Mode

                                                        -

                                                        Show Names

                                                        -

                                                        Show Levels

                                                        -

                                                        Disable Caching

                                                        -

                                                        Enable WebGL

                                                        -
                                                        - -
                                                        - -
                                                        - - - - - - - -
                                                        -
                                                        - -
                                                        -
                                                        -
                                                          - -
                                                          -
                                                          -
                                                          - - -
                                                          - -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          - -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          -
                                                          - -
                                                          -
                                                          -
                                                            -
                                                            -
                                                            - -
                                                            -
                                                            -
                                                            -
                                                              -
                                                              -
                                                              -
                                                              -
                                                                -
                                                                -
                                                                -
                                                                - -
                                                                -
                                                                -
                                                                -
                                                                -
                                                                - -
                                                                -
                                                                  - - -
                                                                  Input Amount
                                                                  - - - -
                                                                  -
                                                                  -
                                                                  -
                                                                  -
                                                                  -
                                                                  -
                                                                    -
                                                                      - -
                                                                      -
                                                                      - -
                                                                      -
                                                                      -
                                                                      -
                                                                      -
                                                                        -
                                                                        -
                                                                        -
                                                                        -
                                                                        -
                                                                        -
                                                                        - -
                                                                        -
                                                                        -
                                                                          - -
                                                                          - -
                                                                          -
                                                                            - -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - -
                                                                            -
                                                                            - - -
                                                                            Input Buy Amount
                                                                            - - - -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - -
                                                                            -
                                                                            - - - - - -
                                                                              -
                                                                              - -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              -
                                                                              - -
                                                                              -
                                                                              - -
                                                                              - - -
                                                                              - -
                                                                              -

                                                                              Attack Stats

                                                                              -
                                                                              -

                                                                              Crush:

                                                                              -

                                                                              Slash:

                                                                              -

                                                                              Stab:

                                                                              -

                                                                              Archery:

                                                                              -

                                                                              Magic:

                                                                              -
                                                                              -
                                                                              -

                                                                              Defense Stats

                                                                              -
                                                                              -

                                                                              Crush:

                                                                              -

                                                                              Slash:

                                                                              -

                                                                              Stab:

                                                                              -

                                                                              Archery:

                                                                              -

                                                                              Magic:

                                                                              -
                                                                              -
                                                                              -

                                                                              Bonuses

                                                                              -
                                                                              -

                                                                              Accuracy:

                                                                              -

                                                                              Strength:

                                                                              -

                                                                              Archery:

                                                                              -

                                                                              Magic:

                                                                              -
                                                                              -
                                                                              - -
                                                                              -
                                                                              -
                                                                              -
                                                                                -
                                                                                -
                                                                                - -
                                                                                -
                                                                                -
                                                                                -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  Quest Title
                                                                                  -
                                                                                  - -
                                                                                  Description
                                                                                  -
                                                                                  - -
                                                                                  Reward
                                                                                  -
                                                                                  - -
                                                                                  Requirements
                                                                                  -
                                                                                  None C:
                                                                                  -
                                                                                  -
                                                                                  - -
                                                                                  - -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                    -
                                                                                    - - -
                                                                                    Input Drop Amount
                                                                                    - - - -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    - -
                                                                                    -
                                                                                    - -
                                                                                      -
                                                                                        - -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        - -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        - -
                                                                                        - -
                                                                                          -
                                                                                        • -
                                                                                        • -
                                                                                        • -
                                                                                        - -
                                                                                        Craft
                                                                                        -
                                                                                        - -
                                                                                        -
                                                                                        - - - -
                                                                                        -
                                                                                        Create
                                                                                        - -
                                                                                        -

                                                                                        Guilds

                                                                                        -
                                                                                        - -
                                                                                          - -

                                                                                          There are no guilds available...

                                                                                          -
                                                                                          - -
                                                                                          - - - - - - - -
                                                                                          Back
                                                                                          -
                                                                                          Create
                                                                                          - - -
                                                                                          - -
                                                                                          -
                                                                                          Leave
                                                                                          - -
                                                                                          -
                                                                                          - - - -
                                                                                            - -
                                                                                            -
                                                                                            - -
                                                                                            -
                                                                                              -
                                                                                              - -
                                                                                              -
                                                                                              - - -
                                                                                              - -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - diff --git a/packages/client/layouts/default.astro b/packages/client/layouts/default.astro new file mode 100644 index 0000000000..af47dd99b8 --- /dev/null +++ b/packages/client/layouts/default.astro @@ -0,0 +1,141 @@ +--- +import { Schema } from 'astro-seo-schema'; +import { GoogleAnalytics } from '@astrolib/analytics'; +import { t, dir, getLanguage } from '@kaetram/common/i18n'; + +export interface Props { + title?: string; +} + +let { title } = Astro.props, + currentLanguage = getLanguage(); + +function site(path = '') { + return new URL(path, Astro.site).toString(); +} + +let name = t('game:NAME'), + description = t('game:DESCRIPTION'); +--- + + + + + + + {name}{title ? ` | ${title}` : ''} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/client/middleware/index.ts b/packages/client/middleware/index.ts new file mode 100644 index 0000000000..437616219c --- /dev/null +++ b/packages/client/middleware/index.ts @@ -0,0 +1,12 @@ +import { defineMiddleware, sequence } from 'astro/middleware'; +import { i18nMiddleware, getLocale } from 'astro-i18n-aut'; +import { defaultLocale, changeLanguage, type Locale } from '@kaetram/common/i18n'; + +let language = defineMiddleware(async ({ url }, next) => { + let lang = getLocale(url) as Locale; + await changeLanguage(lang || defaultLocale); + + return await next(); +}); + +export let onRequest = sequence(i18nMiddleware, language); diff --git a/packages/client/package.json b/packages/client/package.json index 37af2b4fff..efd74c6fa3 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -2,46 +2,44 @@ "name": "@kaetram/client", "type": "module", "scripts": { - "dev": "vite", - "build": "tsc --noEmit && vite build", + "dev": "astro dev", + "build": "astro check && tsc && astro build", "start": "sirv dist -p 9000 --no-logs" }, "dependencies": { + "@astrojs/check": "^0.2.0", + "@astrojs/partytown": "^2.0.0", "@kaetram/common": "workspace:*", + "astro-compress": "^2.0.15", "gl-tiled": "^1.0.0", - "illuminated": "^1.3.0", + "illuminated": "^1.3.7", + "kaetram": "workspace:*", "pako": "^2.1.0", - "socket.io-client": "^4.5.4" + "socket.io-client": "^4.7.2" }, "devDependencies": { - "@sentry/browser": "^7.45.0", - "@sentry/tracing": "^7.45.0", - "@sentry/vite-plugin": "^0.7.2", + "@astrojs/sitemap": "^3.0.0", + "@astrolib/analytics": "^0.4.2", + "@sentry/browser": "^7.68.0", + "@sentry/tracing": "^7.68.0", + "@sentry/vite-plugin": "^2.7.1", "@types/dotenv-parse-variables": "^2.0.1", "@types/html-minifier-terser": "^7.0.0", - "@types/node": "^18.15.5", "@types/pako": "^2.0.0", - "@types/workbox-build": "^5.0.1", - "@vitejs/plugin-legacy": "^4.0.1", - "autoprefixer": "^10.4.13", + "@types/workbox-build": "^5.1.0", + "astro": "^3.2.0", + "astro-compressor": "^0.4.0", + "astro-i18n-aut": "^0.4.23", + "astro-robots-txt": "^1.0.0", + "astro-seo-schema": "^3.2.1", + "astro-webmanifest": "^1.0.0", "dotenv-extended": "^2.9.0", "dotenv-parse-variables": "^2.0.0", - "internal-ip": "^7.0.0", - "postcss": "^8.4.20", - "postcss-assets": "^6.0.0", - "postcss-custom-media": "^9.0.1", - "postcss-preset-env": "^7.8.3", - "sass": "^1.57.1", + "image-size": "^1.0.2", + "sass": "^1.66.1", "sirv-cli": "^2.0.2", - "stylelint": "^14.16.1", - "stylelint-config-clean-order": "^2.3.0", - "stylelint-config-prettier": "^9.0.4", - "stylelint-config-standard-scss": "^6.1.0", - "typescript": "^5.0.2", - "vite": "^4.1.1", + "typescript": "^5.2.2", "vite-plugin-glsl": "^1.1.2", - "vite-plugin-minify": "^1.5.2", - "vite-plugin-pwa": "^0.14.1", - "workbox-window": "^6.5.4" + "vite-plugin-pwa": "^0.16.4" } } diff --git a/packages/client/pages/index.astro b/packages/client/pages/index.astro new file mode 100644 index 0000000000..5c5298c191 --- /dev/null +++ b/packages/client/pages/index.astro @@ -0,0 +1,14 @@ +--- +import '../scss/main.scss'; + +import DefaultLayout from '../layouts/default.astro'; +import Intro from '../components/intro.astro'; +import Game from '../components/game.astro'; +--- + + + + + + + diff --git a/packages/client/pages/privacy.astro b/packages/client/pages/privacy.astro new file mode 100644 index 0000000000..b3a0ff930d --- /dev/null +++ b/packages/client/pages/privacy.astro @@ -0,0 +1,811 @@ +--- +import DefaultLayout from '../layouts/default.astro'; +--- + + +

                                                                                              PRIVACY NOTICE

                                                                                              +

                                                                                              Last updated December 26, 2022

                                                                                              +

                                                                                              + This privacy notice for Kaetram ("Company," "we," "us," or "our"), describes + how and why we might collect, store, use, and/or share ("process") your information when you use our services ("Services"), + such as when you: +

                                                                                              +
                                                                                                +
                                                                                              • +

                                                                                                + Visit our website at kaetram.com, or any website of ours that links to this privacy + notice +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + Download and use our mobile application (Kaetram), or any other application of ours + that links to this privacy notice +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                Engage with us in other related ways, including any sales, marketing, or events

                                                                                                +
                                                                                              • +
                                                                                              +

                                                                                              + Questions or concerns? Reading this privacy notice will help you understand + your privacy rights and choices. If you do not agree with our policies and practices, please + do not use our Services. If you still have any questions or concerns, please contact us at admin@kaetram.com. +

                                                                                              +

                                                                                              SUMMARY OF KEY POINTS

                                                                                              +

                                                                                              + This summary provides key points from our privacy notice, but you can find out more + details about any of these topics by clicking the link following each key point or + by using our table of contents below to find the section you are looking for. You + can also click + here + to go directly to our table of contents. +

                                                                                              +

                                                                                              + What personal information do we process? When you visit, use, or navigate our + Services, we may process personal information depending on how you interact with Kaetram and + the Services, the choices you make, and the products and features you use. Click here to learn more. +

                                                                                              +

                                                                                              + Do we process any sensitive personal information? We do not process sensitive + personal information. +

                                                                                              +

                                                                                              + Do we receive any information from third parties? We do not receive any information + from third parties. +

                                                                                              +

                                                                                              + How do we process your information? We process your information to provide, + improve, and administer our Services, communicate with you, for security and fraud prevention, + and to comply with law. We may also process your information for other purposes with your consent. + We process your information only when we have a valid legal reason to do so. Click + here to learn more. +

                                                                                              +

                                                                                              + In what situations and with which parties do we share personal information? + We may share information in specific situations and with specific third parties. Click + here to learn more. +

                                                                                              +

                                                                                              + How do we keep your information safe? We have organizational and technical processes + and procedures in place to protect your personal information. However, no electronic transmission + over the internet or information storage technology can be guaranteed to be 100% secure, so we + cannot promise or guarantee that hackers, cybercriminals, or other unauthorized third parties + will not be able to defeat our security and improperly collect, access, steal, or modify your + information. Click + here to learn more. +

                                                                                              +

                                                                                              + What are your rights? Depending on where you are located geographically, the + applicable privacy law may mean you have certain rights regarding your personal information. + Click here to learn more. +

                                                                                              +

                                                                                              + How do you exercise your rights? The easiest way to exercise your rights is + by filling out our data subject request form available + here, or by + contacting us. We will consider and act upon any request in accordance with applicable data + protection laws. +

                                                                                              +

                                                                                              + Want to learn more about what Kaetram does with any information we collect? Click + here to review the notice in full. +

                                                                                              +

                                                                                              TABLE OF CONTENTS

                                                                                              + + +

                                                                                              + 1. WHAT INFORMATION DO WE COLLECT? +

                                                                                              +

                                                                                              Personal information you disclose to us

                                                                                              +

                                                                                              + In Short: + We collect personal information that you provide to us. +

                                                                                              +

                                                                                              + We collect personal information that you voluntarily provide to us when you register on the + Services, express an interest in obtaining information about us or our products and + Services, when you participate in activities on the Services, or otherwise when you contact + us. +

                                                                                              +

                                                                                              + Personal Information Provided by You. The personal information that we collect + depends on the context of your interactions with us and the Services, the choices you make, and + the products and features you use. The personal information we collect may include the following: +

                                                                                              +
                                                                                                +
                                                                                              • email addresses

                                                                                              • +
                                                                                              • passwords

                                                                                              • +
                                                                                              • usernames

                                                                                              • +
                                                                                              +

                                                                                              Sensitive Information. We do not process sensitive information.

                                                                                              +

                                                                                              + All personal information that you provide to us must be true, complete, and accurate, and + you must notify us of any changes to such personal information. +

                                                                                              +

                                                                                              + 2. HOW DO WE PROCESS YOUR INFORMATION? +

                                                                                              +

                                                                                              + In Short: + We process your information to provide, improve, and administer our Services, + communicate with you, for security and fraud prevention, and to comply with law. We may + also process your information for other purposes with your consent. +

                                                                                              +

                                                                                              + We process your personal information for a variety of reasons, depending on how you + interact with our Services, including: +

                                                                                              +
                                                                                                +
                                                                                              • +

                                                                                                + To facilitate account creation and authentication and otherwise manage user + accounts. + We may process your information so you can create and log in to your account, as well + as keep your account in working order. +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + To save or protect an individual's vital interest. We may process + your information when necessary to save or protect an individual’s vital interest, such + as to prevent harm. +

                                                                                                +
                                                                                              • +
                                                                                              +

                                                                                              + 3. WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR INFORMATION? +

                                                                                              +

                                                                                              + In Short: We only process your personal information when we believe it + is necessary and we have a valid legal reason (i.e., legal basis) to do so under applicable + law, like with your consent, to comply with laws, to provide you with services to enter into + or fulfill our contractual obligations, to protect your rights, or to fulfill our legitimate + business interests. +

                                                                                              +

                                                                                              + If you are located in the EU or UK, this section applies to you. +

                                                                                              +

                                                                                              + The General Data Protection Regulation (GDPR) and UK GDPR require us to explain the valid + legal bases we rely on in order to process your personal information. As such, we may rely + on the following legal bases to process your personal information: +

                                                                                              +
                                                                                                +
                                                                                              • +

                                                                                                + Consent. We may process your information if you have given us permission + (i.e., consent) to use your personal information for a specific purpose. You can withdraw + your consent at any time. Click + here to learn more. +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + Legal Obligations. We may process your information where we believe + it is necessary for compliance with our legal obligations, such as to cooperate with + a law enforcement body or regulatory agency, exercise or defend our legal rights, or + disclose your information as evidence in litigation in which we are involved. +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + Vital Interests. We may process your information where we believe it + is necessary to protect your vital interests or the vital interests of a third party, + such as situations involving potential threats to the safety of any person. +

                                                                                                +
                                                                                              • +
                                                                                              +

                                                                                              + If you are located in Canada, this section applies to you. +

                                                                                              +

                                                                                              + We may process your information if you have given us specific permission (i.e., express + consent) to use your personal information for a specific purpose, or in situations where + your permission can be inferred (i.e., implied consent). You can withdraw your consent at + any time. Click here to learn more. +

                                                                                              +

                                                                                              + In some exceptional cases, we may be legally permitted under applicable law to process your + information without your consent, including, for example: +

                                                                                              +
                                                                                                +
                                                                                              • +

                                                                                                + If collection is clearly in the interests of an individual and consent cannot be + obtained in a timely way +

                                                                                                +
                                                                                              • +
                                                                                              • For investigations and fraud detection and prevention

                                                                                              • +
                                                                                              • For business transactions provided certain conditions are met

                                                                                              • +
                                                                                              • +

                                                                                                + If it is contained in a witness statement and the collection is necessary to assess, + process, or settle an insurance claim +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + For identifying injured, ill, or deceased persons and communicating with next of kin +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + If we have reasonable grounds to believe an individual has been, is, or may be + victim of financial abuse +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + If it is reasonable to expect collection and use with consent would compromise the + availability or the accuracy of the information and the collection is reasonable for + purposes related to investigating a breach of an agreement or a contravention of the + laws of Canada or a province +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + If disclosure is required to comply with a subpoena, warrant, court order, or rules + of the court relating to the production of records +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + If it was produced by an individual in the course of their employment, business, or + profession and the collection is consistent with the purposes for which the + information was produced +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                If the collection is solely for journalistic, artistic, or literary purposes

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                If the information is publicly available and is specified by the regulations

                                                                                                +
                                                                                              • +
                                                                                              +

                                                                                              + 4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL INFORMATION? +

                                                                                              +

                                                                                              + In Short: + We may share information in specific situations described in this section and/or with + the following third parties. +

                                                                                              +

                                                                                              We may need to share your personal information in the following situations:

                                                                                              +
                                                                                                +
                                                                                              • + Business Transfers. We may share or transfer your information in connection + with, or during negotiations of, any merger, sale of company assets, financing, or acquisition + of all or a portion of our business to another company. +
                                                                                              • +
                                                                                              +

                                                                                              + 5. HOW LONG DO WE KEEP YOUR INFORMATION? +

                                                                                              +

                                                                                              + In Short: + We keep your information for as long as necessary to fulfill the purposes outlined in + this privacy notice unless otherwise required by law. +

                                                                                              +

                                                                                              + We will only keep your personal information for as long as it is necessary for the purposes + set out in this privacy notice, unless a longer retention period is required or permitted by + law (such as tax, accounting, or other legal requirements). No purpose in this notice will + require us keeping your personal information for longer than the period of time in which + users have an account with us. +

                                                                                              +

                                                                                              + When we have no ongoing legitimate business need to process your personal information, we + will either delete or anonymize such information, or, if this is not possible (for example, + because your personal information has been stored in backup archives), then we will securely + store your personal information and isolate it from any further processing until deletion is + possible. +

                                                                                              +

                                                                                              + 6. HOW DO WE KEEP YOUR INFORMATION SAFE? +

                                                                                              +

                                                                                              + In Short: + We aim to protect your personal information through a system of organizational and + technical security measures. +

                                                                                              +

                                                                                              + We have implemented appropriate and reasonable technical and organizational security + measures designed to protect the security of any personal information we process. However, + despite our safeguards and efforts to secure your information, no electronic transmission + over the Internet or information storage technology can be guaranteed to be 100% secure, so + we cannot promise or guarantee that hackers, cybercriminals, or other unauthorized third + parties will not be able to defeat our security and improperly collect, access, steal, or + modify your information. Although we will do our best to protect your personal information, + transmission of personal information to and from our Services is at your own risk. You + should only access the Services within a secure environment. +

                                                                                              +

                                                                                              + 7. WHAT ARE YOUR PRIVACY RIGHTS? +

                                                                                              +

                                                                                              + In Short: + In some regions, such as the European Economic Area (EEA), United Kingdom (UK), and + Canada, you have rights that allow you greater access to and control over your personal + information. You may review, change, or terminate your account at any time. +

                                                                                              +

                                                                                              + In some regions (like the EEA, UK, and Canada), you have certain rights under applicable + data protection laws. These may include the right (i) to request access and obtain a copy of + your personal information, (ii) to request rectification or erasure; (iii) to restrict the + processing of your personal information; and (iv) if applicable, to data portability. In + certain circumstances, you may also have the right to object to the processing of your + personal information. You can make such a request by contacting us by using the contact + details provided in the section "HOW CAN YOU CONTACT US ABOUT THIS NOTICE?" below. +

                                                                                              +

                                                                                              + We will consider and act upon any request in accordance with applicable data protection + laws. +

                                                                                              +

                                                                                              + If you are located in the EEA or UK and you believe we are unlawfully processing your + personal information, you also have the right to complain to your local data protection + supervisory authority. You can find their contact details here: + https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm. +

                                                                                              +

                                                                                              + If you are located in Switzerland, the contact details for the data protection authorities + are available here: + https://www.edoeb.admin.ch/edoeb/en/home.html. +

                                                                                              +

                                                                                              + Withdrawing your consent: If we are relying on your consent to process your + personal information, which may be express and/or implied consent depending on the applicable + law, you have the right to withdraw your consent at any time. You can withdraw your consent at + any time by contacting us by using the contact details provided in the section "HOW CAN YOU CONTACT US ABOUT THIS NOTICE?" below. +

                                                                                              +

                                                                                              + However, please note that this will not affect the lawfulness of the processing before its + withdrawal nor, when applicable law allows, will it affect the processing of your personal + information conducted in reliance on lawful processing grounds other than consent. +

                                                                                              +

                                                                                              Account Information

                                                                                              +

                                                                                              + If you would at any time like to review or change the information in your account or + terminate your account, you can: +

                                                                                              +
                                                                                                +
                                                                                              • Contact us using the contact information provided.
                                                                                              • +
                                                                                              +

                                                                                              + Upon your request to terminate your account, we will deactivate or delete your account and + information from our active databases. However, we may retain some information in our files + to prevent fraud, troubleshoot problems, assist with any investigations, enforce our legal + terms and/or comply with applicable legal requirements. +

                                                                                              +

                                                                                              + If you have questions or comments about your privacy rights, you may email us at + admin@kaetram.com. +

                                                                                              +

                                                                                              + 8. CONTROLS FOR DO-NOT-TRACK FEATURES +

                                                                                              +

                                                                                              + Most web browsers and some mobile operating systems and mobile applications include a + Do-Not-Track ("DNT") feature or setting you can activate to signal your privacy + preference not to have data about your online browsing activities monitored and collected. + At this stage no uniform technology standard for recognizing and implementing DNT signals + has been finalized. As such, we do not currently respond to DNT browser signals or any other + mechanism that automatically communicates your choice not to be tracked online. If a + standard for online tracking is adopted that we must follow in the future, we will inform + you about that practice in a revised version of this privacy notice. +

                                                                                              +

                                                                                              + 9. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? +

                                                                                              +

                                                                                              + In Short: + Yes, if you are a resident of California, you are granted specific rights regarding + access to your personal information. +

                                                                                              +

                                                                                              + California Civil Code Section 1798.83, also known as the "Shine The Light" law, + permits our users who are California residents to request and obtain from us, once a year + and free of charge, information about categories of personal information (if any) we + disclosed to third parties for direct marketing purposes and the names and addresses of all + third parties with which we shared personal information in the immediately preceding + calendar year. If you are a California resident and would like to make such a request, + please submit your request in writing to us using the contact information provided below. +

                                                                                              +

                                                                                              + If you are under 18 years of age, reside in California, and have a registered account with + Services, you have the right to request removal of unwanted data that you publicly post on + the Services. To request removal of such data, please contact us using the contact + information provided below and include the email address associated with your account and a + statement that you reside in California. We will make sure the data is not publicly + displayed on the Services, but please be aware that the data may not be completely or + comprehensively removed from all our systems (e.g., backups, etc.). +

                                                                                              +

                                                                                              CCPA Privacy Notice

                                                                                              +

                                                                                              The California Code of Regulations defines a "resident" as:

                                                                                              +

                                                                                              + (1) every individual who is in the State of California for other than a temporary or + transitory purpose and +

                                                                                              +

                                                                                              + (2) every individual who is domiciled in the State of California who is outside the State of + California for a temporary or transitory purpose +

                                                                                              +

                                                                                              All other individuals are defined as "non-residents."

                                                                                              +

                                                                                              + If this definition of "resident" applies to you, we must adhere to certain rights + and obligations regarding your personal information. +

                                                                                              +

                                                                                              What categories of personal information do we collect?

                                                                                              +

                                                                                              + We have collected the following categories of personal information in the past twelve (12) + months: +

                                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                              CategoryExamplesCollected
                                                                                              A. Identifiers + Contact details, such as real name, alias, postal address, telephone or mobile + contact number, unique personal identifier, online identifier, Internet Protocol + address, email address, and account name + YES
                                                                                              + B. Personal information categories listed in the California Customer Records + statute + Name, contact information, education, employment, employment history, and + financial information + NO
                                                                                              + C. Protected classification characteristics under California or federal lawGender and date of birthNO
                                                                                              D. Commercial information + Transaction information, purchase history, financial details, and payment + information + NO
                                                                                              E. Biometric informationFingerprints and voiceprintsNO
                                                                                              F. Internet or other similar network activity + Browsing history, search history, online behavior, interest data, and + interactions with our and other websites, applications, systems, and + advertisements + NO
                                                                                              G. Geolocation dataDevice locationNO
                                                                                              H. Audio, electronic, visual, thermal, olfactory, or similar information + Images and audio, video or call recordings created in connection with our + business activities + NO
                                                                                              I. Professional or employment-related information + Business contact details in order to provide you our Services at a business + level or job title, work history, and professional qualifications if you apply + for a job with us + NO
                                                                                              J. Education InformationStudent records and directory informationNO
                                                                                              K. Inferences drawn from other personal information + Inferences drawn from any of the collected personal information listed above to + create a profile or summary about, for example, an individual’s preferences and + characteristics + NO
                                                                                              +

                                                                                              + We may also collect other personal information outside of these categories through instances + where you interact with us in person, online, or by phone or mail in the context of: +

                                                                                              +
                                                                                                +
                                                                                              • Receiving help through our customer support channels;

                                                                                              • +
                                                                                              • Participation in customer surveys or contests; and

                                                                                              • +
                                                                                              • +

                                                                                                Facilitation in the delivery of our Services and to respond to your inquiries.

                                                                                                +
                                                                                              • +
                                                                                              +

                                                                                              How do we use and share your personal information?

                                                                                              +

                                                                                              + More information about our data collection and sharing practices can be found in this + privacy notice. +

                                                                                              +

                                                                                              + You may contact us by email at admin@kaetram.com, or by referring to the contact details at + the bottom of this document. +

                                                                                              +

                                                                                              + If you are using an authorized agent to exercise your right to opt out we may deny a request + if the authorized agent does not submit proof that they have been validly authorized to act + on your behalf. +

                                                                                              +

                                                                                              Will your information be shared with anyone else?

                                                                                              +

                                                                                              + We may disclose your personal information with our service providers pursuant to a written + contract between us and each service provider. Each service provider is a for-profit entity + that processes the information on our behalf. +

                                                                                              +

                                                                                              + We may use your personal information for our own business purposes, such as for undertaking + internal research for technological development and demonstration. This is not considered to + be "selling" of your personal information. +

                                                                                              +

                                                                                              + Kaetram has not disclosed or sold any personal information to third parties for a business + or commercial purpose in the preceding twelve (12) months. Kaetram will not sell personal + information in the future belonging to website visitors, users, and other consumers. +

                                                                                              +

                                                                                              Your rights with respect to your personal data

                                                                                              +

                                                                                              Right to request deletion of the data — Request to delete

                                                                                              +

                                                                                              + You can ask for the deletion of your personal information. If you ask us to delete your + personal information, we will respect your request and delete your personal information, + subject to certain exceptions provided by law, such as (but not limited to) the exercise by + another consumer of his or her right to free speech, our compliance requirements resulting + from a legal obligation, or any processing that may be required to protect against illegal + activities. +

                                                                                              +

                                                                                              Right to be informed — Request to know

                                                                                              +

                                                                                              Depending on the circumstances, you have a right to know:

                                                                                              +
                                                                                                +
                                                                                              • whether we collect and use your personal information;

                                                                                              • +
                                                                                              • the categories of personal information that we collect;

                                                                                              • +
                                                                                              • the purposes for which the collected personal information is used;

                                                                                              • +
                                                                                              • whether we sell your personal information to third parties;

                                                                                              • +
                                                                                              • +

                                                                                                + the categories of personal information that we sold or disclosed for a business + purpose; +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + the categories of third parties to whom the personal information was sold or + disclosed for a business purpose; and +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + the business or commercial purpose for collecting or selling personal information. +

                                                                                                +
                                                                                              • +
                                                                                              +

                                                                                              + In accordance with applicable law, we are not obligated to provide or delete consumer + information that is de-identified in response to a consumer request or to re-identify + individual data to verify a consumer request. +

                                                                                              +

                                                                                              Right to Non-Discrimination for the Exercise of a Consumer’s Privacy Rights

                                                                                              +

                                                                                              We will not discriminate against you if you exercise your privacy rights.

                                                                                              +

                                                                                              Verification process

                                                                                              +

                                                                                              + Upon receiving your request, we will need to verify your identity to determine you are the + same person about whom we have the information in our system. These verification efforts + require us to ask you to provide information so that we can match it with information you + have previously provided us. For instance, depending on the type of request you submit, we + may ask you to provide certain information so that we can match the information you provide + with the information we already have on file, or we may contact you through a communication + method (e.g., phone or email) that you have previously provided to us. We may also use other + verification methods as the circumstances dictate. +

                                                                                              +

                                                                                              + We will only use personal information provided in your request to verify your identity or + authority to make the request. To the extent possible, we will avoid requesting additional + information from you for the purposes of verification. However, if we cannot verify your + identity from the information already maintained by us, we may request that you provide + additional information for the purposes of verifying your identity and for security or + fraud-prevention purposes. We will delete such additionally provided information as soon as + we finish verifying you. +

                                                                                              +

                                                                                              Other privacy rights

                                                                                              +
                                                                                                +
                                                                                              • You may object to the processing of your personal information.

                                                                                              • +
                                                                                              • +

                                                                                                + You may request correction of your personal data if it is incorrect or no longer + relevant, or ask to restrict the processing of the information. +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + You can designate an authorized agent to make a request under the CCPA on your + behalf. We may deny a request from an authorized agent that does not submit proof + that they have been validly authorized to act on your behalf in accordance with the + CCPA. +

                                                                                                +
                                                                                              • +
                                                                                              • +

                                                                                                + You may request to opt out from future selling of your personal information to third + parties. Upon receiving an opt-out request, we will act upon the request as soon as + feasibly possible, but no later than fifteen (15) days from the date of the request + submission. +

                                                                                                +
                                                                                              • +
                                                                                              +

                                                                                              + To exercise these rights, you can contact us by email at admin@kaetram.com, or by referring + to the contact details at the bottom of this document. If you have a complaint about how we + handle your data, we would like to hear from you. +

                                                                                              +

                                                                                              + 10. DO WE MAKE UPDATES TO THIS NOTICE? +

                                                                                              +

                                                                                              + In Short: Yes, we will update this notice as necessary to stay compliant + with relevant laws. +

                                                                                              +

                                                                                              + We may update this privacy notice from time to time. The updated version will be indicated + by an updated "Revised" date and the updated version will be effective as soon as + it is accessible. If we make material changes to this privacy notice, we may notify you + either by prominently posting a notice of such changes or by directly sending you a + notification. We encourage you to review this privacy notice frequently to be informed of + how we are protecting your information. +

                                                                                              +

                                                                                              + 11. HOW CAN YOU CONTACT US ABOUT THIS NOTICE? +

                                                                                              +

                                                                                              + If you have questions or comments about this notice, you may email us at admin@kaetram.com +

                                                                                              +

                                                                                              + 12. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU? +

                                                                                              +

                                                                                              + You have the right to request access to the personal information we collect from you, change + that information, or delete it. To request to review, update, or delete your personal + information, please submit a request form by clicking + here. +

                                                                                              +
                                                                                              diff --git a/packages/client/pages/reset.astro b/packages/client/pages/reset.astro new file mode 100644 index 0000000000..3b4f96e44e --- /dev/null +++ b/packages/client/pages/reset.astro @@ -0,0 +1,60 @@ +--- +import DefaultLayout from '../layouts/default.astro'; +import '../scss/main.scss'; +--- + + + + +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              Reset Password

                                                                                              + +
                                                                                              + + + +
                                                                                              + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + diff --git a/packages/client/pages/unavailable.astro b/packages/client/pages/unavailable.astro new file mode 100644 index 0000000000..ba15e3dbf6 --- /dev/null +++ b/packages/client/pages/unavailable.astro @@ -0,0 +1,31 @@ +--- +import DefaultLayout from '../layouts/default.astro'; +import '../scss/main.scss'; +--- + + +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              Kaetram

                                                                                              + +

                                                                                              + Kaetram alpha has ended. The beta version will be available October 7th, 2023. + If you would like to stay up-to-date with the project, make sure you join our + Discord server. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + diff --git a/packages/client/privacy.html b/packages/client/privacy.html deleted file mode 100644 index 5035acbd5c..0000000000 --- a/packages/client/privacy.html +++ /dev/null @@ -1,1016 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Kaetram | Privacy - - -

                                                                                              PRIVACY NOTICE

                                                                                              -

                                                                                              Last updated December 26, 2022

                                                                                              -

                                                                                              - This privacy notice for Kaetram ("Company," - "we," "us," or - "our"), describes how and why we might collect, store, use, - and/or share ("process") your information when you use our - services ("Services"), such as when you: -

                                                                                              -
                                                                                                -
                                                                                              • -

                                                                                                - Visit our website at kaetram.com, or any website of ours that links to this - privacy notice -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - Download and use our mobile application (Kaetram), or any other application of - ours that links to this privacy notice -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - Engage with us in other related ways, including any sales, marketing, or events -

                                                                                                -
                                                                                              • -
                                                                                              -

                                                                                              - Questions or concerns? Reading this privacy notice will help you - understand your privacy rights and choices. If you do not agree with our policies and - practices, please do not use our Services. If you still have any questions or concerns, - please contact us at admin@kaetram.com. -

                                                                                              -

                                                                                              SUMMARY OF KEY POINTS

                                                                                              -

                                                                                              - This summary provides key points from our privacy notice, but you can find out - more details about any of these topics by clicking the link following each key - point or by using our table of contents below to find the section you are - looking for. You can also click - here - to go directly to our table of contents. -

                                                                                              -

                                                                                              - What personal information do we process? When you visit, use, or - navigate our Services, we may process personal information depending on how you interact - with Kaetram and the Services, the choices you make, and the products and features you - use. Click here to learn more. -

                                                                                              -

                                                                                              - Do we process any sensitive personal information? We do not process - sensitive personal information. -

                                                                                              -

                                                                                              - Do we receive any information from third parties? We do not receive any - information from third parties. -

                                                                                              -

                                                                                              - How do we process your information? We process your information to - provide, improve, and administer our Services, communicate with you, for security and - fraud prevention, and to comply with law. We may also process your information for other - purposes with your consent. We process your information only when we have a valid legal - reason to do so. Click here to learn more. -

                                                                                              -

                                                                                              - In what situations and with which parties do we share personal information? - We may share information in specific situations and with specific third parties. Click - here to learn more. -

                                                                                              -

                                                                                              - How do we keep your information safe? We have organizational and - technical processes and procedures in place to protect your personal information. - However, no electronic transmission over the internet or information storage technology - can be guaranteed to be 100% secure, so we cannot promise or guarantee that hackers, - cybercriminals, or other unauthorized third parties will not be able to defeat our - security and improperly collect, access, steal, or modify your information. Click - here to learn more. -

                                                                                              -

                                                                                              - What are your rights? Depending on where you are located - geographically, the applicable privacy law may mean you have certain rights regarding - your personal information. Click here to learn more. -

                                                                                              -

                                                                                              - How do you exercise your rights? The easiest way to exercise your - rights is by filling out our data subject request form available - here, or - by contacting us. We will consider and act upon any request in accordance with - applicable data protection laws. -

                                                                                              -

                                                                                              - Want to learn more about what Kaetram does with any information we collect? Click - here to review the notice in full. -

                                                                                              -

                                                                                              TABLE OF CONTENTS

                                                                                              - - -

                                                                                              - 1. WHAT INFORMATION DO WE COLLECT? -

                                                                                              -

                                                                                              Personal information you disclose to us

                                                                                              -

                                                                                              - In Short: - We collect personal information that you provide to us. -

                                                                                              -

                                                                                              - We collect personal information that you voluntarily provide to us when you register on - the Services, express an interest in obtaining information about us or our products and - Services, when you participate in activities on the Services, or otherwise when you - contact us. -

                                                                                              -

                                                                                              - Personal Information Provided by You. The personal information that we - collect depends on the context of your interactions with us and the Services, the - choices you make, and the products and features you use. The personal information we - collect may include the following: -

                                                                                              -
                                                                                                -
                                                                                              • email addresses

                                                                                              • -
                                                                                              • passwords

                                                                                              • -
                                                                                              • usernames

                                                                                              • -
                                                                                              -

                                                                                              Sensitive Information. We do not process sensitive information.

                                                                                              -

                                                                                              - All personal information that you provide to us must be true, complete, and accurate, - and you must notify us of any changes to such personal information. -

                                                                                              -

                                                                                              - 2. HOW DO WE PROCESS YOUR INFORMATION? -

                                                                                              -

                                                                                              - In Short: - We process your information to provide, improve, and administer our Services, - communicate with you, for security and fraud prevention, and to comply with law. We - may also process your information for other purposes with your consent. -

                                                                                              -

                                                                                              - We process your personal information for a variety of reasons, depending on how you - interact with our Services, including: -

                                                                                              -
                                                                                                -
                                                                                              • -

                                                                                                - To facilitate account creation and authentication and otherwise manage user - accounts. - We may process your information so you can create and log in to your account, as - well as keep your account in working order. -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - To save or protect an individual's vital interest. We may - process your information when necessary to save or protect an individual’s vital - interest, such as to prevent harm. -

                                                                                                -
                                                                                              • -
                                                                                              -

                                                                                              - 3. WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR INFORMATION? -

                                                                                              -

                                                                                              - In Short: We only process your personal information when we - believe it is necessary and we have a valid legal reason (i.e., legal basis) to do - so under applicable law, like with your consent, to comply with laws, to provide you - with services to enter into or fulfill our contractual obligations, to protect your - rights, or to fulfill our legitimate business interests. -

                                                                                              -

                                                                                              - If you are located in the EU or UK, this section applies to you. -

                                                                                              -

                                                                                              - The General Data Protection Regulation (GDPR) and UK GDPR require us to explain the - valid legal bases we rely on in order to process your personal information. As such, we - may rely on the following legal bases to process your personal information: -

                                                                                              -
                                                                                                -
                                                                                              • -

                                                                                                - Consent. We may process your information if you have given us - permission (i.e., consent) to use your personal information for a specific - purpose. You can withdraw your consent at any time. Click - here to learn more. -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - Legal Obligations. We may process your information where we - believe it is necessary for compliance with our legal obligations, such as to - cooperate with a law enforcement body or regulatory agency, exercise or defend - our legal rights, or disclose your information as evidence in litigation in - which we are involved. -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - Vital Interests. We may process your information where we - believe it is necessary to protect your vital interests or the vital interests - of a third party, such as situations involving potential threats to the safety - of any person. -

                                                                                                -
                                                                                              • -
                                                                                              -

                                                                                              - If you are located in Canada, this section applies to you. -

                                                                                              -

                                                                                              - We may process your information if you have given us specific permission (i.e., express - consent) to use your personal information for a specific purpose, or in situations where - your permission can be inferred (i.e., implied consent). You can withdraw your consent - at any time. Click here to learn more. -

                                                                                              -

                                                                                              - In some exceptional cases, we may be legally permitted under applicable law to process - your information without your consent, including, for example: -

                                                                                              -
                                                                                                -
                                                                                              • -

                                                                                                - If collection is clearly in the interests of an individual and consent cannot be - obtained in a timely way -

                                                                                                -
                                                                                              • -
                                                                                              • For investigations and fraud detection and prevention

                                                                                              • -
                                                                                              • For business transactions provided certain conditions are met

                                                                                              • -
                                                                                              • -

                                                                                                - If it is contained in a witness statement and the collection is necessary to - assess, process, or settle an insurance claim -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - For identifying injured, ill, or deceased persons and communicating with next of - kin -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - If we have reasonable grounds to believe an individual has been, is, or may be - victim of financial abuse -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - If it is reasonable to expect collection and use with consent would compromise - the availability or the accuracy of the information and the collection is - reasonable for purposes related to investigating a breach of an agreement or a - contravention of the laws of Canada or a province -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - If disclosure is required to comply with a subpoena, warrant, court order, or - rules of the court relating to the production of records -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - If it was produced by an individual in the course of their employment, business, - or profession and the collection is consistent with the purposes for which the - information was produced -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                If the collection is solely for journalistic, artistic, or literary purposes

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                If the information is publicly available and is specified by the regulations

                                                                                                -
                                                                                              • -
                                                                                              -

                                                                                              - 4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL INFORMATION? -

                                                                                              -

                                                                                              - In Short: - We may share information in specific situations described in this section and/or - with the following third parties. -

                                                                                              -

                                                                                              We may need to share your personal information in the following situations:

                                                                                              -
                                                                                                -
                                                                                              • - Business Transfers. We may share or transfer your information in - connection with, or during negotiations of, any merger, sale of company assets, - financing, or acquisition of all or a portion of our business to another company. -
                                                                                              • -
                                                                                              -

                                                                                              - 5. HOW LONG DO WE KEEP YOUR INFORMATION? -

                                                                                              -

                                                                                              - In Short: - We keep your information for as long as necessary to fulfill the purposes outlined - in this privacy notice unless otherwise required by law. -

                                                                                              -

                                                                                              - We will only keep your personal information for as long as it is necessary for the - purposes set out in this privacy notice, unless a longer retention period is required or - permitted by law (such as tax, accounting, or other legal requirements). No purpose in - this notice will require us keeping your personal information for longer than the period - of time in which users have an account with us. -

                                                                                              -

                                                                                              - When we have no ongoing legitimate business need to process your personal information, - we will either delete or anonymize such information, or, if this is not possible (for - example, because your personal information has been stored in backup archives), then we - will securely store your personal information and isolate it from any further processing - until deletion is possible. -

                                                                                              -

                                                                                              - 6. HOW DO WE KEEP YOUR INFORMATION SAFE? -

                                                                                              -

                                                                                              - In Short: - We aim to protect your personal information through a system of organizational and - technical security measures. -

                                                                                              -

                                                                                              - We have implemented appropriate and reasonable technical and organizational security - measures designed to protect the security of any personal information we process. - However, despite our safeguards and efforts to secure your information, no electronic - transmission over the Internet or information storage technology can be guaranteed to be - 100% secure, so we cannot promise or guarantee that hackers, cybercriminals, or other - unauthorized third parties will not be able to defeat our security and improperly - collect, access, steal, or modify your information. Although we will do our best to - protect your personal information, transmission of personal information to and from our - Services is at your own risk. You should only access the Services within a secure - environment. -

                                                                                              -

                                                                                              - 7. WHAT ARE YOUR PRIVACY RIGHTS? -

                                                                                              -

                                                                                              - In Short: - In some regions, such as the European Economic Area (EEA), United Kingdom (UK), and - Canada, you have rights that allow you greater access to and control over your - personal information. You may review, change, or terminate your account at any - time. -

                                                                                              -

                                                                                              - In some regions (like the EEA, UK, and Canada), you have certain rights under applicable - data protection laws. These may include the right (i) to request access and obtain a - copy of your personal information, (ii) to request rectification or erasure; (iii) to - restrict the processing of your personal information; and (iv) if applicable, to data - portability. In certain circumstances, you may also have the right to object to the - processing of your personal information. You can make such a request by contacting us by - using the contact details provided in the section "HOW CAN YOU CONTACT US ABOUT THIS NOTICE?" below. -

                                                                                              -

                                                                                              - We will consider and act upon any request in accordance with applicable data protection - laws. -

                                                                                              -

                                                                                              - If you are located in the EEA or UK and you believe we are unlawfully processing your - personal information, you also have the right to complain to your local data protection - supervisory authority. You can find their contact details here: - https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm. -

                                                                                              -

                                                                                              - If you are located in Switzerland, the contact details for the data protection - authorities are available here: - https://www.edoeb.admin.ch/edoeb/en/home.html. -

                                                                                              -

                                                                                              - Withdrawing your consent: If we are relying on your consent to process - your personal information, which may be express and/or implied consent depending on the - applicable law, you have the right to withdraw your consent at any time. You can - withdraw your consent at any time by contacting us by using the contact details provided - in the section "HOW CAN YOU CONTACT US ABOUT THIS NOTICE?" below. -

                                                                                              -

                                                                                              - However, please note that this will not affect the lawfulness of the processing before - its withdrawal nor, when applicable law allows, will it affect the processing of your - personal information conducted in reliance on lawful processing grounds other than - consent. -

                                                                                              -

                                                                                              Account Information

                                                                                              -

                                                                                              - If you would at any time like to review or change the information in your account or - terminate your account, you can: -

                                                                                              -
                                                                                                -
                                                                                              • Contact us using the contact information provided.
                                                                                              • -
                                                                                              -

                                                                                              - Upon your request to terminate your account, we will deactivate or delete your account - and information from our active databases. However, we may retain some information in - our files to prevent fraud, troubleshoot problems, assist with any investigations, - enforce our legal terms and/or comply with applicable legal requirements. -

                                                                                              -

                                                                                              - If you have questions or comments about your privacy rights, you may email us at - admin@kaetram.com. -

                                                                                              -

                                                                                              - 8. CONTROLS FOR DO-NOT-TRACK FEATURES -

                                                                                              -

                                                                                              - Most web browsers and some mobile operating systems and mobile applications include a - Do-Not-Track ("DNT") feature or setting you can activate to signal your - privacy preference not to have data about your online browsing activities monitored and - collected. At this stage no uniform technology standard for recognizing and implementing - DNT signals has been finalized. As such, we do not currently respond to DNT browser - signals or any other mechanism that automatically communicates your choice not to be - tracked online. If a standard for online tracking is adopted that we must follow in the - future, we will inform you about that practice in a revised version of this privacy - notice. -

                                                                                              -

                                                                                              - 9. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS? -

                                                                                              -

                                                                                              - In Short: - Yes, if you are a resident of California, you are granted specific rights regarding - access to your personal information. -

                                                                                              -

                                                                                              - California Civil Code Section 1798.83, also known as the "Shine The Light" - law, permits our users who are California residents to request and obtain from us, once - a year and free of charge, information about categories of personal information (if any) - we disclosed to third parties for direct marketing purposes and the names and addresses - of all third parties with which we shared personal information in the immediately - preceding calendar year. If you are a California resident and would like to make such a - request, please submit your request in writing to us using the contact information - provided below. -

                                                                                              -

                                                                                              - If you are under 18 years of age, reside in California, and have a registered account - with Services, you have the right to request removal of unwanted data that you publicly - post on the Services. To request removal of such data, please contact us using the - contact information provided below and include the email address associated with your - account and a statement that you reside in California. We will make sure the data is not - publicly displayed on the Services, but please be aware that the data may not be - completely or comprehensively removed from all our systems (e.g., backups, etc.). -

                                                                                              -

                                                                                              CCPA Privacy Notice

                                                                                              -

                                                                                              The California Code of Regulations defines a "resident" as:

                                                                                              -

                                                                                              - (1) every individual who is in the State of California for other than a temporary or - transitory purpose and -

                                                                                              -

                                                                                              - (2) every individual who is domiciled in the State of California who is outside the - State of California for a temporary or transitory purpose -

                                                                                              -

                                                                                              All other individuals are defined as "non-residents."

                                                                                              -

                                                                                              - If this definition of "resident" applies to you, we must adhere to certain - rights and obligations regarding your personal information. -

                                                                                              -

                                                                                              What categories of personal information do we collect?

                                                                                              -

                                                                                              - We have collected the following categories of personal information in the past twelve - (12) months: -

                                                                                              - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                              CategoryExamplesCollected
                                                                                              A. Identifiers - Contact details, such as real name, alias, postal address, telephone or - mobile contact number, unique personal identifier, online identifier, - Internet Protocol address, email address, and account name - YES
                                                                                              - B. Personal information categories listed in the California Customer Records - statute - - Name, contact information, education, employment, employment history, and - financial information - NO
                                                                                              - C. Protected classification characteristics under California or federal law - Gender and date of birthNO
                                                                                              D. Commercial information - Transaction information, purchase history, financial details, and payment - information - NO
                                                                                              E. Biometric informationFingerprints and voiceprintsNO
                                                                                              F. Internet or other similar network activity - Browsing history, search history, online behavior, interest data, and - interactions with our and other websites, applications, systems, and - advertisements - NO
                                                                                              G. Geolocation dataDevice locationNO
                                                                                              - H. Audio, electronic, visual, thermal, olfactory, or similar information - - Images and audio, video or call recordings created in connection with our - business activities - NO
                                                                                              I. Professional or employment-related information - Business contact details in order to provide you our Services at a business - level or job title, work history, and professional qualifications if you - apply for a job with us - NO
                                                                                              J. Education InformationStudent records and directory informationNO
                                                                                              K. Inferences drawn from other personal information - Inferences drawn from any of the collected personal information listed above - to create a profile or summary about, for example, an individual’s - preferences and characteristics - NO
                                                                                              -

                                                                                              - We may also collect other personal information outside of these categories through - instances where you interact with us in person, online, or by phone or mail in the - context of: -

                                                                                              -
                                                                                                -
                                                                                              • Receiving help through our customer support channels;

                                                                                              • -
                                                                                              • Participation in customer surveys or contests; and

                                                                                              • -
                                                                                              • -

                                                                                                - Facilitation in the delivery of our Services and to respond to your inquiries. -

                                                                                                -
                                                                                              • -
                                                                                              -

                                                                                              How do we use and share your personal information?

                                                                                              -

                                                                                              - More information about our data collection and sharing practices can be found in this - privacy notice. -

                                                                                              -

                                                                                              - You may contact us by email at admin@kaetram.com, or by referring to the contact details - at the bottom of this document. -

                                                                                              -

                                                                                              - If you are using an authorized agent to exercise your right to opt out we may deny a - request if the authorized agent does not submit proof that they have been validly - authorized to act on your behalf. -

                                                                                              -

                                                                                              Will your information be shared with anyone else?

                                                                                              -

                                                                                              - We may disclose your personal information with our service providers pursuant to a - written contract between us and each service provider. Each service provider is a - for-profit entity that processes the information on our behalf. -

                                                                                              -

                                                                                              - We may use your personal information for our own business purposes, such as for - undertaking internal research for technological development and demonstration. This is - not considered to be "selling" of your personal information. -

                                                                                              -

                                                                                              - Kaetram has not disclosed or sold any personal information to third parties for a - business or commercial purpose in the preceding twelve (12) months. Kaetram will not - sell personal information in the future belonging to website visitors, users, and other - consumers. -

                                                                                              -

                                                                                              Your rights with respect to your personal data

                                                                                              -

                                                                                              Right to request deletion of the data — Request to delete

                                                                                              -

                                                                                              - You can ask for the deletion of your personal information. If you ask us to delete your - personal information, we will respect your request and delete your personal information, - subject to certain exceptions provided by law, such as (but not limited to) the exercise - by another consumer of his or her right to free speech, our compliance requirements - resulting from a legal obligation, or any processing that may be required to protect - against illegal activities. -

                                                                                              -

                                                                                              Right to be informed — Request to know

                                                                                              -

                                                                                              Depending on the circumstances, you have a right to know:

                                                                                              -
                                                                                                -
                                                                                              • whether we collect and use your personal information;

                                                                                              • -
                                                                                              • the categories of personal information that we collect;

                                                                                              • -
                                                                                              • the purposes for which the collected personal information is used;

                                                                                              • -
                                                                                              • whether we sell your personal information to third parties;

                                                                                              • -
                                                                                              • -

                                                                                                - the categories of personal information that we sold or disclosed for a business - purpose; -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - the categories of third parties to whom the personal information was sold or - disclosed for a business purpose; and -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - the business or commercial purpose for collecting or selling personal - information. -

                                                                                                -
                                                                                              • -
                                                                                              -

                                                                                              - In accordance with applicable law, we are not obligated to provide or delete consumer - information that is de-identified in response to a consumer request or to re-identify - individual data to verify a consumer request. -

                                                                                              -

                                                                                              Right to Non-Discrimination for the Exercise of a Consumer’s Privacy Rights

                                                                                              -

                                                                                              We will not discriminate against you if you exercise your privacy rights.

                                                                                              -

                                                                                              Verification process

                                                                                              -

                                                                                              - Upon receiving your request, we will need to verify your identity to determine you are - the same person about whom we have the information in our system. These verification - efforts require us to ask you to provide information so that we can match it with - information you have previously provided us. For instance, depending on the type of - request you submit, we may ask you to provide certain information so that we can match - the information you provide with the information we already have on file, or we may - contact you through a communication method (e.g., phone or email) that you have - previously provided to us. We may also use other verification methods as the - circumstances dictate. -

                                                                                              -

                                                                                              - We will only use personal information provided in your request to verify your identity - or authority to make the request. To the extent possible, we will avoid requesting - additional information from you for the purposes of verification. However, if we cannot - verify your identity from the information already maintained by us, we may request that - you provide additional information for the purposes of verifying your identity and for - security or fraud-prevention purposes. We will delete such additionally provided - information as soon as we finish verifying you. -

                                                                                              -

                                                                                              Other privacy rights

                                                                                              -
                                                                                                -
                                                                                              • You may object to the processing of your personal information.

                                                                                              • -
                                                                                              • -

                                                                                                - You may request correction of your personal data if it is incorrect or no longer - relevant, or ask to restrict the processing of the information. -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - You can designate an authorized agent to make a request under the CCPA on your - behalf. We may deny a request from an authorized agent that does not submit - proof that they have been validly authorized to act on your behalf in accordance - with the CCPA. -

                                                                                                -
                                                                                              • -
                                                                                              • -

                                                                                                - You may request to opt out from future selling of your personal information to - third parties. Upon receiving an opt-out request, we will act upon the request - as soon as feasibly possible, but no later than fifteen (15) days from the date - of the request submission. -

                                                                                                -
                                                                                              • -
                                                                                              -

                                                                                              - To exercise these rights, you can contact us by email at admin@kaetram.com, or by - referring to the contact details at the bottom of this document. If you have a complaint - about how we handle your data, we would like to hear from you. -

                                                                                              -

                                                                                              - 10. DO WE MAKE UPDATES TO THIS NOTICE? -

                                                                                              -

                                                                                              - In Short: Yes, we will update this notice as necessary to stay - compliant with relevant laws. -

                                                                                              -

                                                                                              - We may update this privacy notice from time to time. The updated version will be - indicated by an updated "Revised" date and the updated version will be - effective as soon as it is accessible. If we make material changes to this privacy - notice, we may notify you either by prominently posting a notice of such changes or by - directly sending you a notification. We encourage you to review this privacy notice - frequently to be informed of how we are protecting your information. -

                                                                                              -

                                                                                              - 11. HOW CAN YOU CONTACT US ABOUT THIS NOTICE? -

                                                                                              -

                                                                                              - If you have questions or comments about this notice, you may email us at - admin@kaetram.com -

                                                                                              -

                                                                                              - 12. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU? -

                                                                                              -

                                                                                              - You have the right to request access to the personal information we collect from you, - change that information, or delete it. To request to review, update, or delete your - personal information, please submit a request form by clicking - here. -

                                                                                              - - diff --git a/packages/client/public/apple-touch-icon.png b/packages/client/public/apple-touch-icon.png deleted file mode 100644 index edd4ae5ce0..0000000000 Binary files a/packages/client/public/apple-touch-icon.png and /dev/null differ diff --git a/packages/client/public/audio/music/desert.mp3 b/packages/client/public/audio/music/desert.mp3 index 5368ec012c..781832ae58 100644 Binary files a/packages/client/public/audio/music/desert.mp3 and b/packages/client/public/audio/music/desert.mp3 differ diff --git a/packages/client/public/audio/music/desert2.mp3 b/packages/client/public/audio/music/desert2.mp3 new file mode 100644 index 0000000000..3d5b4f834b Binary files /dev/null and b/packages/client/public/audio/music/desert2.mp3 differ diff --git a/packages/client/public/audio/music/desert3.mp3 b/packages/client/public/audio/music/desert3.mp3 new file mode 100644 index 0000000000..44c1c0781f Binary files /dev/null and b/packages/client/public/audio/music/desert3.mp3 differ diff --git a/packages/client/public/audio/music/jungle.mp3 b/packages/client/public/audio/music/jungle.mp3 new file mode 100644 index 0000000000..29c5f0e78f Binary files /dev/null and b/packages/client/public/audio/music/jungle.mp3 differ diff --git a/packages/client/public/audio/music/jungle2.mp3 b/packages/client/public/audio/music/jungle2.mp3 new file mode 100644 index 0000000000..8f80963929 Binary files /dev/null and b/packages/client/public/audio/music/jungle2.mp3 differ diff --git a/packages/client/public/audio/music/lavaland.mp3 b/packages/client/public/audio/music/lavaland.mp3 index 9a101af215..53782e7b22 100644 Binary files a/packages/client/public/audio/music/lavaland.mp3 and b/packages/client/public/audio/music/lavaland.mp3 differ diff --git a/packages/client/public/audio/music/reggae.mp3 b/packages/client/public/audio/music/reggae.mp3 new file mode 100644 index 0000000000..dbf45e6f60 Binary files /dev/null and b/packages/client/public/audio/music/reggae.mp3 differ diff --git a/packages/client/public/audio/music/underwater.mp3 b/packages/client/public/audio/music/underwater.mp3 new file mode 100644 index 0000000000..e6a1833c26 Binary files /dev/null and b/packages/client/public/audio/music/underwater.mp3 differ diff --git a/packages/client/public/audio/sounds/mining1.mp3 b/packages/client/public/audio/sounds/mining1.mp3 new file mode 100644 index 0000000000..f9cf038389 Binary files /dev/null and b/packages/client/public/audio/sounds/mining1.mp3 differ diff --git a/packages/client/public/audio/sounds/mining2.mp3 b/packages/client/public/audio/sounds/mining2.mp3 new file mode 100644 index 0000000000..bf122b0c07 Binary files /dev/null and b/packages/client/public/audio/sounds/mining2.mp3 differ diff --git a/packages/client/public/audio/sounds/mining3.mp3 b/packages/client/public/audio/sounds/mining3.mp3 new file mode 100644 index 0000000000..0fa241d247 Binary files /dev/null and b/packages/client/public/audio/sounds/mining3.mp3 differ diff --git a/packages/client/public/audio/sounds/wood1.mp3 b/packages/client/public/audio/sounds/wood1.mp3 new file mode 100644 index 0000000000..383138a99d Binary files /dev/null and b/packages/client/public/audio/sounds/wood1.mp3 differ diff --git a/packages/client/public/audio/sounds/wood2.mp3 b/packages/client/public/audio/sounds/wood2.mp3 new file mode 100644 index 0000000000..d6d8f21351 Binary files /dev/null and b/packages/client/public/audio/sounds/wood2.mp3 differ diff --git a/packages/client/public/audio/sounds/wood3.mp3 b/packages/client/public/audio/sounds/wood3.mp3 new file mode 100644 index 0000000000..de6d5bfdcc Binary files /dev/null and b/packages/client/public/audio/sounds/wood3.mp3 differ diff --git a/packages/client/public/audio/sounds/wood4.mp3 b/packages/client/public/audio/sounds/wood4.mp3 new file mode 100644 index 0000000000..c55a6bd3fe Binary files /dev/null and b/packages/client/public/audio/sounds/wood4.mp3 differ diff --git a/packages/client/public/audio/sounds/wood5.mp3 b/packages/client/public/audio/sounds/wood5.mp3 new file mode 100644 index 0000000000..33df8b4c56 Binary files /dev/null and b/packages/client/public/audio/sounds/wood5.mp3 differ diff --git a/packages/client/public/fonts/abaddon.ttf b/packages/client/public/fonts/abaddon.ttf new file mode 100644 index 0000000000..687f9591e5 Binary files /dev/null and b/packages/client/public/fonts/abaddon.ttf differ diff --git a/packages/client/public/fonts/advocut/advocut-webfont.eot b/packages/client/public/fonts/advocut/advocut-webfont.eot deleted file mode 100755 index add237953c..0000000000 Binary files a/packages/client/public/fonts/advocut/advocut-webfont.eot and /dev/null differ diff --git a/packages/client/public/fonts/fibberish.ttf b/packages/client/public/fonts/fibberish.ttf new file mode 100644 index 0000000000..c43b7a615e Binary files /dev/null and b/packages/client/public/fonts/fibberish.ttf differ diff --git a/packages/client/public/fonts/monogram.ttf b/packages/client/public/fonts/monogram.ttf new file mode 100644 index 0000000000..4d4a390a77 Binary files /dev/null and b/packages/client/public/fonts/monogram.ttf differ diff --git a/packages/client/public/fonts/quaver.ttf b/packages/client/public/fonts/quaver.ttf new file mode 100644 index 0000000000..fc86ee3222 Binary files /dev/null and b/packages/client/public/fonts/quaver.ttf differ diff --git a/packages/client/public/icon.png b/packages/client/public/icon.png index 32416fb3ef..beaac69409 100644 Binary files a/packages/client/public/icon.png and b/packages/client/public/icon.png differ diff --git a/packages/client/public/img/flags/american.png b/packages/client/public/img/flags/american.png index 8f32ad0375..b6eaaeabe5 100644 Binary files a/packages/client/public/img/flags/american.png and b/packages/client/public/img/flags/american.png differ diff --git a/packages/client/public/img/flags/canada.png b/packages/client/public/img/flags/canada.png index 08dd0b4ecc..63d44fff65 100644 Binary files a/packages/client/public/img/flags/canada.png and b/packages/client/public/img/flags/canada.png differ diff --git a/packages/client/public/img/flags/france.png b/packages/client/public/img/flags/france.png new file mode 100644 index 0000000000..1fcb095efb Binary files /dev/null and b/packages/client/public/img/flags/france.png differ diff --git a/packages/client/public/img/hand.png b/packages/client/public/img/hand.png index ed9ccf0626..cc115c236e 100644 Binary files a/packages/client/public/img/hand.png and b/packages/client/public/img/hand.png differ diff --git a/packages/client/public/img/icons/android-chrome-1024x1024.png b/packages/client/public/img/icons/android-chrome-1024x1024.png new file mode 100644 index 0000000000..588b45cab6 Binary files /dev/null and b/packages/client/public/img/icons/android-chrome-1024x1024.png differ diff --git a/packages/client/public/img/icons/android-chrome-192x192.png b/packages/client/public/img/icons/android-chrome-192x192.png index beaac69409..07f30a9490 100644 Binary files a/packages/client/public/img/icons/android-chrome-192x192.png and b/packages/client/public/img/icons/android-chrome-192x192.png differ diff --git a/packages/client/public/img/icons/android-chrome-512x512.png b/packages/client/public/img/icons/android-chrome-512x512.png index 36f1d03cad..9f2667aba4 100644 Binary files a/packages/client/public/img/icons/android-chrome-512x512.png and b/packages/client/public/img/icons/android-chrome-512x512.png differ diff --git a/packages/client/public/img/icons/apple-touch-icon-114x114.png b/packages/client/public/img/icons/apple-touch-icon-114x114.png deleted file mode 100644 index 773797ceb8..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-114x114.png and /dev/null differ diff --git a/packages/client/public/img/icons/apple-touch-icon-120x120.png b/packages/client/public/img/icons/apple-touch-icon-120x120.png deleted file mode 100644 index 4eac770802..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-120x120.png and /dev/null differ diff --git a/packages/client/public/img/icons/apple-touch-icon-144x144.png b/packages/client/public/img/icons/apple-touch-icon-144x144.png deleted file mode 100644 index 5caca14623..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-144x144.png and /dev/null differ diff --git a/packages/client/public/img/icons/apple-touch-icon-152x152.png b/packages/client/public/img/icons/apple-touch-icon-152x152.png deleted file mode 100644 index 82a52d5024..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-152x152.png and /dev/null differ diff --git a/packages/client/public/img/icons/apple-touch-icon-180x180.png b/packages/client/public/img/icons/apple-touch-icon-180x180.png deleted file mode 100644 index 3c4ff8c487..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-180x180.png and /dev/null differ diff --git a/packages/client/public/img/icons/apple-touch-icon-57x57.png b/packages/client/public/img/icons/apple-touch-icon-57x57.png deleted file mode 100644 index c7beb67b6a..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-57x57.png and /dev/null differ diff --git a/packages/client/public/img/icons/apple-touch-icon-60x60.png b/packages/client/public/img/icons/apple-touch-icon-60x60.png deleted file mode 100644 index a8d0025200..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-60x60.png and /dev/null differ diff --git a/packages/client/public/img/icons/apple-touch-icon-72x72.png b/packages/client/public/img/icons/apple-touch-icon-72x72.png deleted file mode 100644 index e0a7094e09..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-72x72.png and /dev/null differ diff --git a/packages/client/public/img/icons/apple-touch-icon-76x76.png b/packages/client/public/img/icons/apple-touch-icon-76x76.png deleted file mode 100644 index 3b0e886888..0000000000 Binary files a/packages/client/public/img/icons/apple-touch-icon-76x76.png and /dev/null differ diff --git a/packages/client/public/img/icons/favicon-16x16.png b/packages/client/public/img/icons/favicon-16x16.png deleted file mode 100644 index 11559d1729..0000000000 Binary files a/packages/client/public/img/icons/favicon-16x16.png and /dev/null differ diff --git a/packages/client/public/img/icons/favicon-32x32.png b/packages/client/public/img/icons/favicon-32x32.png deleted file mode 100644 index c847130bb6..0000000000 Binary files a/packages/client/public/img/icons/favicon-32x32.png and /dev/null differ diff --git a/packages/client/public/img/icons/logo-border-1024x1024.png b/packages/client/public/img/icons/logo-border-1024x1024.png new file mode 100644 index 0000000000..0710862c9f Binary files /dev/null and b/packages/client/public/img/icons/logo-border-1024x1024.png differ diff --git a/packages/client/public/img/icons/mstile-144x144.png b/packages/client/public/img/icons/mstile-144x144.png index be813c6546..b423d34eea 100644 Binary files a/packages/client/public/img/icons/mstile-144x144.png and b/packages/client/public/img/icons/mstile-144x144.png differ diff --git a/packages/client/public/img/icons/mstile-150x150.png b/packages/client/public/img/icons/mstile-150x150.png index 7689db530e..deac58158a 100644 Binary files a/packages/client/public/img/icons/mstile-150x150.png and b/packages/client/public/img/icons/mstile-150x150.png differ diff --git a/packages/client/public/img/icons/mstile-310x310.png b/packages/client/public/img/icons/mstile-310x310.png index 9d033b685e..26c65bd225 100644 Binary files a/packages/client/public/img/icons/mstile-310x310.png and b/packages/client/public/img/icons/mstile-310x310.png differ diff --git a/packages/client/public/img/icons/mstile-70x70.png b/packages/client/public/img/icons/mstile-70x70.png index 0823639424..df783c8c4a 100644 Binary files a/packages/client/public/img/icons/mstile-70x70.png and b/packages/client/public/img/icons/mstile-70x70.png differ diff --git a/packages/client/public/img/interface/abilityicons.png b/packages/client/public/img/interface/abilityicons.png index eda48f0b00..09ca40e815 100644 Binary files a/packages/client/public/img/interface/abilityicons.png and b/packages/client/public/img/interface/abilityicons.png differ diff --git a/packages/client/public/img/interface/achievements.png b/packages/client/public/img/interface/achievements.png index eb8758c9df..4bba1397ca 100644 Binary files a/packages/client/public/img/interface/achievements.png and b/packages/client/public/img/interface/achievements.png differ diff --git a/packages/client/public/img/interface/bank.png b/packages/client/public/img/interface/bank.png index 0282e500cc..42ce154bbf 100644 Binary files a/packages/client/public/img/interface/bank.png and b/packages/client/public/img/interface/bank.png differ diff --git a/packages/client/public/img/interface/bars.png b/packages/client/public/img/interface/bars.png index fbec83cac1..42153caf6c 100644 Binary files a/packages/client/public/img/interface/bars.png and b/packages/client/public/img/interface/bars.png differ diff --git a/packages/client/public/img/interface/buttons.png b/packages/client/public/img/interface/buttons.png index e69e6ed32a..b71da194e1 100644 Binary files a/packages/client/public/img/interface/buttons.png and b/packages/client/public/img/interface/buttons.png differ diff --git a/packages/client/public/img/interface/characterdialogsheet.png b/packages/client/public/img/interface/characterdialogsheet.png index 56f5877dde..92c387d0e6 100644 Binary files a/packages/client/public/img/interface/characterdialogsheet.png and b/packages/client/public/img/interface/characterdialogsheet.png differ diff --git a/packages/client/public/img/interface/chatbox.png b/packages/client/public/img/interface/chatbox.png index f072d9f306..04cd623d23 100644 Binary files a/packages/client/public/img/interface/chatbox.png and b/packages/client/public/img/interface/chatbox.png differ diff --git a/packages/client/public/img/interface/container-fancy-button.png b/packages/client/public/img/interface/container-fancy-button.png new file mode 100644 index 0000000000..15fc31503b Binary files /dev/null and b/packages/client/public/img/interface/container-fancy-button.png differ diff --git a/packages/client/public/img/interface/containers.png b/packages/client/public/img/interface/containers.png index ab75bb7c65..4e7a55d835 100644 Binary files a/packages/client/public/img/interface/containers.png and b/packages/client/public/img/interface/containers.png differ diff --git a/packages/client/public/img/interface/controls/arrows.png b/packages/client/public/img/interface/controls/arrows.png new file mode 100644 index 0000000000..b1a0b3dcb3 Binary files /dev/null and b/packages/client/public/img/interface/controls/arrows.png differ diff --git a/packages/client/public/img/interface/controls/click.png b/packages/client/public/img/interface/controls/click.png new file mode 100644 index 0000000000..01f03e4562 Binary files /dev/null and b/packages/client/public/img/interface/controls/click.png differ diff --git a/packages/client/public/img/interface/controls/wasd.png b/packages/client/public/img/interface/controls/wasd.png new file mode 100644 index 0000000000..ad61f58721 Binary files /dev/null and b/packages/client/public/img/interface/controls/wasd.png differ diff --git a/packages/client/public/img/interface/crafting.png b/packages/client/public/img/interface/crafting.png index 0e48867095..fe2ba9eabc 100644 Binary files a/packages/client/public/img/interface/crafting.png and b/packages/client/public/img/interface/crafting.png differ diff --git a/packages/client/public/img/interface/equipment/armourskin.png b/packages/client/public/img/interface/equipment/armourskin.png new file mode 100644 index 0000000000..b08bb11372 Binary files /dev/null and b/packages/client/public/img/interface/equipment/armourskin.png differ diff --git a/packages/client/public/img/interface/equipment/arrows.png b/packages/client/public/img/interface/equipment/arrows.png new file mode 100644 index 0000000000..a74050501e Binary files /dev/null and b/packages/client/public/img/interface/equipment/arrows.png differ diff --git a/packages/client/public/img/interface/equipment/boots.png b/packages/client/public/img/interface/equipment/boots.png new file mode 100644 index 0000000000..5d45f394d6 Binary files /dev/null and b/packages/client/public/img/interface/equipment/boots.png differ diff --git a/packages/client/public/img/interface/equipment/cape.png b/packages/client/public/img/interface/equipment/cape.png new file mode 100644 index 0000000000..c1d5a852c3 Binary files /dev/null and b/packages/client/public/img/interface/equipment/cape.png differ diff --git a/packages/client/public/img/interface/equipment/chestplate.png b/packages/client/public/img/interface/equipment/chestplate.png new file mode 100644 index 0000000000..cb4f10310e Binary files /dev/null and b/packages/client/public/img/interface/equipment/chestplate.png differ diff --git a/packages/client/public/img/interface/equipment/helmet.png b/packages/client/public/img/interface/equipment/helmet.png new file mode 100644 index 0000000000..046d30eab6 Binary files /dev/null and b/packages/client/public/img/interface/equipment/helmet.png differ diff --git a/packages/client/public/img/interface/equipment/legplates.png b/packages/client/public/img/interface/equipment/legplates.png new file mode 100644 index 0000000000..97c7987d0f Binary files /dev/null and b/packages/client/public/img/interface/equipment/legplates.png differ diff --git a/packages/client/public/img/interface/equipment/pendant.png b/packages/client/public/img/interface/equipment/pendant.png new file mode 100644 index 0000000000..7e9a6d4e5c Binary files /dev/null and b/packages/client/public/img/interface/equipment/pendant.png differ diff --git a/packages/client/public/img/interface/equipment/ring.png b/packages/client/public/img/interface/equipment/ring.png new file mode 100644 index 0000000000..e35160eecc Binary files /dev/null and b/packages/client/public/img/interface/equipment/ring.png differ diff --git a/packages/client/public/img/interface/equipment/shield.png b/packages/client/public/img/interface/equipment/shield.png new file mode 100644 index 0000000000..82b6baff8e Binary files /dev/null and b/packages/client/public/img/interface/equipment/shield.png differ diff --git a/packages/client/public/img/interface/equipment/weapon.png b/packages/client/public/img/interface/equipment/weapon.png new file mode 100644 index 0000000000..7870d2a3eb Binary files /dev/null and b/packages/client/public/img/interface/equipment/weapon.png differ diff --git a/packages/client/public/img/interface/equipment/weaponskin.png b/packages/client/public/img/interface/equipment/weaponskin.png new file mode 100644 index 0000000000..c27aec6e94 Binary files /dev/null and b/packages/client/public/img/interface/equipment/weaponskin.png differ diff --git a/packages/client/public/img/interface/frame_buttons.png b/packages/client/public/img/interface/frame_buttons.png new file mode 100644 index 0000000000..12776cf043 Binary files /dev/null and b/packages/client/public/img/interface/frame_buttons.png differ diff --git a/packages/client/public/img/interface/guilds/banners-outline.png b/packages/client/public/img/interface/guilds/banners-outline.png index 45e762ed40..aff0949f8c 100644 Binary files a/packages/client/public/img/interface/guilds/banners-outline.png and b/packages/client/public/img/interface/guilds/banners-outline.png differ diff --git a/packages/client/public/img/interface/guilds/banners.png b/packages/client/public/img/interface/guilds/banners.png index 4ae40c3935..53bace0598 100644 Binary files a/packages/client/public/img/interface/guilds/banners.png and b/packages/client/public/img/interface/guilds/banners.png differ diff --git a/packages/client/public/img/interface/guilds/decorations.png b/packages/client/public/img/interface/guilds/decorations.png index 445ba36985..a8b62c80a9 100644 Binary files a/packages/client/public/img/interface/guilds/decorations.png and b/packages/client/public/img/interface/guilds/decorations.png differ diff --git a/packages/client/public/img/interface/guilds/elements.png b/packages/client/public/img/interface/guilds/elements.png index 7412ce7bec..68a284fe54 100644 Binary files a/packages/client/public/img/interface/guilds/elements.png and b/packages/client/public/img/interface/guilds/elements.png differ diff --git a/packages/client/public/img/interface/guilds/frames.png b/packages/client/public/img/interface/guilds/frames.png index f00fa82faa..674e3063d5 100644 Binary files a/packages/client/public/img/interface/guilds/frames.png and b/packages/client/public/img/interface/guilds/frames.png differ diff --git a/packages/client/public/img/interface/guilds/outline1.png b/packages/client/public/img/interface/guilds/outline1.png index 493b95812f..45683ccbb8 100644 Binary files a/packages/client/public/img/interface/guilds/outline1.png and b/packages/client/public/img/interface/guilds/outline1.png differ diff --git a/packages/client/public/img/interface/guilds/outline2.png b/packages/client/public/img/interface/guilds/outline2.png index 20cce2de58..aa64917803 100644 Binary files a/packages/client/public/img/interface/guilds/outline2.png and b/packages/client/public/img/interface/guilds/outline2.png differ diff --git a/packages/client/public/img/interface/guilds/outline3.png b/packages/client/public/img/interface/guilds/outline3.png index 1d25185c7f..e19b36ebcd 100644 Binary files a/packages/client/public/img/interface/guilds/outline3.png and b/packages/client/public/img/interface/guilds/outline3.png differ diff --git a/packages/client/public/img/interface/guilds/outline4.png b/packages/client/public/img/interface/guilds/outline4.png index 0efc1c646b..6a6abd9cc6 100644 Binary files a/packages/client/public/img/interface/guilds/outline4.png and b/packages/client/public/img/interface/guilds/outline4.png differ diff --git a/packages/client/public/img/interface/guilds/outline5.png b/packages/client/public/img/interface/guilds/outline5.png index 670a7ca164..b82740028e 100644 Binary files a/packages/client/public/img/interface/guilds/outline5.png and b/packages/client/public/img/interface/guilds/outline5.png differ diff --git a/packages/client/public/img/interface/guilds/splitbanners.png b/packages/client/public/img/interface/guilds/splitbanners.png index ba0896899e..804187b58c 100644 Binary files a/packages/client/public/img/interface/guilds/splitbanners.png and b/packages/client/public/img/interface/guilds/splitbanners.png differ diff --git a/packages/client/public/img/interface/hud_buttons.png b/packages/client/public/img/interface/hud_buttons.png index b4ee4b86f0..d800935c97 100644 Binary files a/packages/client/public/img/interface/hud_buttons.png and b/packages/client/public/img/interface/hud_buttons.png differ diff --git a/packages/client/public/img/interface/image.png b/packages/client/public/img/interface/image.png index bcfb728138..e2ff4b92f4 100644 Binary files a/packages/client/public/img/interface/image.png and b/packages/client/public/img/interface/image.png differ diff --git a/packages/client/public/img/interface/leaderboards.png b/packages/client/public/img/interface/leaderboards.png index 18eb66b2a2..799c14d5a0 100644 Binary files a/packages/client/public/img/interface/leaderboards.png and b/packages/client/public/img/interface/leaderboards.png differ diff --git a/packages/client/public/img/interface/main.png b/packages/client/public/img/interface/main.png index 6e76d6aa73..c6368b16a4 100644 Binary files a/packages/client/public/img/interface/main.png and b/packages/client/public/img/interface/main.png differ diff --git a/packages/client/public/img/interface/mapframe.png b/packages/client/public/img/interface/mapframe.png index fb13a3c8fe..1c1e3ae072 100644 Binary files a/packages/client/public/img/interface/mapframe.png and b/packages/client/public/img/interface/mapframe.png differ diff --git a/packages/client/public/img/interface/mapicons.png b/packages/client/public/img/interface/mapicons.png index b3f4262b63..1d465884b5 100644 Binary files a/packages/client/public/img/interface/mapicons.png and b/packages/client/public/img/interface/mapicons.png differ diff --git a/packages/client/public/img/interface/pointer.png b/packages/client/public/img/interface/pointer.png index bfa2f81d06..424af7801c 100644 Binary files a/packages/client/public/img/interface/pointer.png and b/packages/client/public/img/interface/pointer.png differ diff --git a/packages/client/public/img/interface/quests.png b/packages/client/public/img/interface/quests.png index 35727247d1..a31fd9352b 100644 Binary files a/packages/client/public/img/interface/quests.png and b/packages/client/public/img/interface/quests.png differ diff --git a/packages/client/public/img/interface/skills/accuracy.png b/packages/client/public/img/interface/skills/accuracy.png index 379162ba5c..14347b31f6 100644 Binary files a/packages/client/public/img/interface/skills/accuracy.png and b/packages/client/public/img/interface/skills/accuracy.png differ diff --git a/packages/client/public/img/interface/skills/alchemy.png b/packages/client/public/img/interface/skills/alchemy.png new file mode 100644 index 0000000000..5d830a1e78 Binary files /dev/null and b/packages/client/public/img/interface/skills/alchemy.png differ diff --git a/packages/client/public/img/interface/skills/archery.png b/packages/client/public/img/interface/skills/archery.png index 5421d9039a..7357754f1f 100644 Binary files a/packages/client/public/img/interface/skills/archery.png and b/packages/client/public/img/interface/skills/archery.png differ diff --git a/packages/client/public/img/interface/skills/chiseling.png b/packages/client/public/img/interface/skills/chiseling.png new file mode 100644 index 0000000000..5e69f37581 Binary files /dev/null and b/packages/client/public/img/interface/skills/chiseling.png differ diff --git a/packages/client/public/img/interface/skills/chiseling2.png b/packages/client/public/img/interface/skills/chiseling2.png new file mode 100644 index 0000000000..a3cdf643fc Binary files /dev/null and b/packages/client/public/img/interface/skills/chiseling2.png differ diff --git a/packages/client/public/img/interface/skills/cooking.png b/packages/client/public/img/interface/skills/cooking.png index 4335c20803..89aaf5109b 100644 Binary files a/packages/client/public/img/interface/skills/cooking.png and b/packages/client/public/img/interface/skills/cooking.png differ diff --git a/packages/client/public/img/interface/skills/crafting.png b/packages/client/public/img/interface/skills/crafting.png index 2bde024912..5e69f37581 100644 Binary files a/packages/client/public/img/interface/skills/crafting.png and b/packages/client/public/img/interface/skills/crafting.png differ diff --git a/packages/client/public/img/interface/skills/defense.png b/packages/client/public/img/interface/skills/defense.png index 54442a33ff..21490506e3 100644 Binary files a/packages/client/public/img/interface/skills/defense.png and b/packages/client/public/img/interface/skills/defense.png differ diff --git a/packages/client/public/img/interface/skills/eating.png b/packages/client/public/img/interface/skills/eating.png index 561cf10630..ac43553e16 100644 Binary files a/packages/client/public/img/interface/skills/eating.png and b/packages/client/public/img/interface/skills/eating.png differ diff --git a/packages/client/public/img/interface/skills/fishing.png b/packages/client/public/img/interface/skills/fishing.png index 9a463eaf42..df6bed8cda 100644 Binary files a/packages/client/public/img/interface/skills/fishing.png and b/packages/client/public/img/interface/skills/fishing.png differ diff --git a/packages/client/public/img/interface/skills/fletching.png b/packages/client/public/img/interface/skills/fletching.png index 4b4577ddfb..1abf41b28f 100644 Binary files a/packages/client/public/img/interface/skills/fletching.png and b/packages/client/public/img/interface/skills/fletching.png differ diff --git a/packages/client/public/img/interface/skills/foraging.png b/packages/client/public/img/interface/skills/foraging.png index b0f2cf82df..57ea90edc1 100644 Binary files a/packages/client/public/img/interface/skills/foraging.png and b/packages/client/public/img/interface/skills/foraging.png differ diff --git a/packages/client/public/img/interface/skills/health.png b/packages/client/public/img/interface/skills/health.png index bef6119c0c..9aa983030e 100644 Binary files a/packages/client/public/img/interface/skills/health.png and b/packages/client/public/img/interface/skills/health.png differ diff --git a/packages/client/public/img/interface/skills/loitering.png b/packages/client/public/img/interface/skills/loitering.png index 4dfaf2253c..48b16ff274 100644 Binary files a/packages/client/public/img/interface/skills/loitering.png and b/packages/client/public/img/interface/skills/loitering.png differ diff --git a/packages/client/public/img/interface/skills/lumberjacking.png b/packages/client/public/img/interface/skills/lumberjacking.png index 85c2e6b287..557ba92285 100644 Binary files a/packages/client/public/img/interface/skills/lumberjacking.png and b/packages/client/public/img/interface/skills/lumberjacking.png differ diff --git a/packages/client/public/img/interface/skills/magic.png b/packages/client/public/img/interface/skills/magic.png index 731822ae63..fe8b0e9cd7 100644 Binary files a/packages/client/public/img/interface/skills/magic.png and b/packages/client/public/img/interface/skills/magic.png differ diff --git a/packages/client/public/img/interface/skills/mining.png b/packages/client/public/img/interface/skills/mining.png index 655a2ac613..46f438ee49 100644 Binary files a/packages/client/public/img/interface/skills/mining.png and b/packages/client/public/img/interface/skills/mining.png differ diff --git a/packages/client/public/img/interface/skills/smelting.png b/packages/client/public/img/interface/skills/smelting.png new file mode 100644 index 0000000000..d2694c464c Binary files /dev/null and b/packages/client/public/img/interface/skills/smelting.png differ diff --git a/packages/client/public/img/interface/skills/smithing.png b/packages/client/public/img/interface/skills/smithing.png index 89d24eab09..d2694c464c 100644 Binary files a/packages/client/public/img/interface/skills/smithing.png and b/packages/client/public/img/interface/skills/smithing.png differ diff --git a/packages/client/public/img/interface/skills/strength.png b/packages/client/public/img/interface/skills/strength.png index 5f5d88ca9a..eb8e09f430 100644 Binary files a/packages/client/public/img/interface/skills/strength.png and b/packages/client/public/img/interface/skills/strength.png differ diff --git a/packages/client/public/img/interface/skillslots.png b/packages/client/public/img/interface/skillslots.png index 7c9c25679c..a8cc2201d9 100644 Binary files a/packages/client/public/img/interface/skillslots.png and b/packages/client/public/img/interface/skillslots.png differ diff --git a/packages/client/public/img/interface/slices/button-active.png b/packages/client/public/img/interface/slices/button-active.png new file mode 100644 index 0000000000..b1345cfccb Binary files /dev/null and b/packages/client/public/img/interface/slices/button-active.png differ diff --git a/packages/client/public/img/interface/slices/button-green-active.png b/packages/client/public/img/interface/slices/button-green-active.png new file mode 100644 index 0000000000..88dd68f372 Binary files /dev/null and b/packages/client/public/img/interface/slices/button-green-active.png differ diff --git a/packages/client/public/img/interface/slices/button-green-hover.png b/packages/client/public/img/interface/slices/button-green-hover.png new file mode 100644 index 0000000000..5aa5a9a777 Binary files /dev/null and b/packages/client/public/img/interface/slices/button-green-hover.png differ diff --git a/packages/client/public/img/interface/slices/button-green.png b/packages/client/public/img/interface/slices/button-green.png new file mode 100644 index 0000000000..725ebe060f Binary files /dev/null and b/packages/client/public/img/interface/slices/button-green.png differ diff --git a/packages/client/public/img/interface/slices/button-hover.png b/packages/client/public/img/interface/slices/button-hover.png new file mode 100644 index 0000000000..b22872cb37 Binary files /dev/null and b/packages/client/public/img/interface/slices/button-hover.png differ diff --git a/packages/client/public/img/interface/slices/button.png b/packages/client/public/img/interface/slices/button.png new file mode 100644 index 0000000000..1b244928ba Binary files /dev/null and b/packages/client/public/img/interface/slices/button.png differ diff --git a/packages/client/public/img/interface/slices/container-fancy.png b/packages/client/public/img/interface/slices/container-fancy.png new file mode 100644 index 0000000000..77ab4c3af2 Binary files /dev/null and b/packages/client/public/img/interface/slices/container-fancy.png differ diff --git a/packages/client/public/img/interface/slices/container.png b/packages/client/public/img/interface/slices/container.png index 3fc513af54..19827361fb 100644 Binary files a/packages/client/public/img/interface/slices/container.png and b/packages/client/public/img/interface/slices/container.png differ diff --git a/packages/client/public/img/interface/slices/dialog.png b/packages/client/public/img/interface/slices/dialog.png new file mode 100644 index 0000000000..8f23679686 Binary files /dev/null and b/packages/client/public/img/interface/slices/dialog.png differ diff --git a/packages/client/public/img/interface/slices/inner-container.png b/packages/client/public/img/interface/slices/inner-container.png new file mode 100644 index 0000000000..d0e8c0916d Binary files /dev/null and b/packages/client/public/img/interface/slices/inner-container.png differ diff --git a/packages/client/public/img/interface/slices/input-active.png b/packages/client/public/img/interface/slices/input-active.png new file mode 100644 index 0000000000..91774cafbd Binary files /dev/null and b/packages/client/public/img/interface/slices/input-active.png differ diff --git a/packages/client/public/img/interface/slices/input-error.png b/packages/client/public/img/interface/slices/input-error.png new file mode 100644 index 0000000000..e2b078acbc Binary files /dev/null and b/packages/client/public/img/interface/slices/input-error.png differ diff --git a/packages/client/public/img/interface/slices/input.png b/packages/client/public/img/interface/slices/input.png new file mode 100644 index 0000000000..5269413ee5 Binary files /dev/null and b/packages/client/public/img/interface/slices/input.png differ diff --git a/packages/client/public/img/interface/slices/item-slot.png b/packages/client/public/img/interface/slices/item-slot.png new file mode 100644 index 0000000000..3f16448a65 Binary files /dev/null and b/packages/client/public/img/interface/slices/item-slot.png differ diff --git a/packages/client/public/img/interface/slices/list-hover.png b/packages/client/public/img/interface/slices/list-hover.png new file mode 100644 index 0000000000..5c8c850fd6 Binary files /dev/null and b/packages/client/public/img/interface/slices/list-hover.png differ diff --git a/packages/client/public/img/interface/slices/list-item-hover.png b/packages/client/public/img/interface/slices/list-item-hover.png new file mode 100644 index 0000000000..0a3b7f9266 Binary files /dev/null and b/packages/client/public/img/interface/slices/list-item-hover.png differ diff --git a/packages/client/public/img/interface/slices/list-item.png b/packages/client/public/img/interface/slices/list-item.png new file mode 100644 index 0000000000..328e57be5b Binary files /dev/null and b/packages/client/public/img/interface/slices/list-item.png differ diff --git a/packages/client/public/img/interface/slices/list.png b/packages/client/public/img/interface/slices/list.png new file mode 100644 index 0000000000..847ada5d6e Binary files /dev/null and b/packages/client/public/img/interface/slices/list.png differ diff --git a/packages/client/public/img/interface/slices/menu-fancy.png b/packages/client/public/img/interface/slices/menu-fancy.png new file mode 100644 index 0000000000..e3812c8c5d Binary files /dev/null and b/packages/client/public/img/interface/slices/menu-fancy.png differ diff --git a/packages/client/public/img/interface/slices/menu.png b/packages/client/public/img/interface/slices/menu.png new file mode 100644 index 0000000000..be17e06bf0 Binary files /dev/null and b/packages/client/public/img/interface/slices/menu.png differ diff --git a/packages/client/public/img/interface/slices/subframe.png b/packages/client/public/img/interface/slices/subframe.png deleted file mode 100644 index cff4c0e041..0000000000 Binary files a/packages/client/public/img/interface/slices/subframe.png and /dev/null differ diff --git a/packages/client/public/img/interface/slices/tab-active.png b/packages/client/public/img/interface/slices/tab-active.png new file mode 100644 index 0000000000..45d5d410c4 Binary files /dev/null and b/packages/client/public/img/interface/slices/tab-active.png differ diff --git a/packages/client/public/img/interface/slices/tab.png b/packages/client/public/img/interface/slices/tab.png new file mode 100644 index 0000000000..7e095c5ef5 Binary files /dev/null and b/packages/client/public/img/interface/slices/tab.png differ diff --git a/packages/client/public/img/interface/spritesheet.png b/packages/client/public/img/interface/spritesheet.png index 07656a7e4c..ef7d6e3c3e 100644 Binary files a/packages/client/public/img/interface/spritesheet.png and b/packages/client/public/img/interface/spritesheet.png differ diff --git a/packages/client/public/img/interface/trade.png b/packages/client/public/img/interface/trade.png index 6dbe71a619..3f0d7ac4b2 100644 Binary files a/packages/client/public/img/interface/trade.png and b/packages/client/public/img/interface/trade.png differ diff --git a/packages/client/public/img/overlays/fog.png b/packages/client/public/img/overlays/fog.png index 7b855ea505..a50b9d7329 100644 Binary files a/packages/client/public/img/overlays/fog.png and b/packages/client/public/img/overlays/fog.png differ diff --git a/packages/client/public/img/spinner.gif b/packages/client/public/img/spinner.gif index 160e5a7a0f..d2a0717059 100755 Binary files a/packages/client/public/img/spinner.gif and b/packages/client/public/img/spinner.gif differ diff --git a/packages/client/public/img/sprites/bushes/blackberrybush.png b/packages/client/public/img/sprites/bushes/blackberrybush.png new file mode 100644 index 0000000000..0cc71d2f7f Binary files /dev/null and b/packages/client/public/img/sprites/bushes/blackberrybush.png differ diff --git a/packages/client/public/img/sprites/bushes/blueberrybush.png b/packages/client/public/img/sprites/bushes/blueberrybush.png new file mode 100644 index 0000000000..b70971540d Binary files /dev/null and b/packages/client/public/img/sprites/bushes/blueberrybush.png differ diff --git a/packages/client/public/img/sprites/bushes/bluelilybush.png b/packages/client/public/img/sprites/bushes/bluelilybush.png new file mode 100644 index 0000000000..ab9a5f5349 Binary files /dev/null and b/packages/client/public/img/sprites/bushes/bluelilybush.png differ diff --git a/packages/client/public/img/sprites/bushes/cornbush.png b/packages/client/public/img/sprites/bushes/cornbush.png new file mode 100644 index 0000000000..6e3623e022 Binary files /dev/null and b/packages/client/public/img/sprites/bushes/cornbush.png differ diff --git a/packages/client/public/img/sprites/bushes/cuminbush.png b/packages/client/public/img/sprites/bushes/cuminbush.png new file mode 100644 index 0000000000..6971fc65f1 Binary files /dev/null and b/packages/client/public/img/sprites/bushes/cuminbush.png differ diff --git a/packages/client/public/img/sprites/bushes/mustardbush.png b/packages/client/public/img/sprites/bushes/mustardbush.png new file mode 100644 index 0000000000..bf73d60e05 Binary files /dev/null and b/packages/client/public/img/sprites/bushes/mustardbush.png differ diff --git a/packages/client/public/img/sprites/bushes/paprikabush.png b/packages/client/public/img/sprites/bushes/paprikabush.png new file mode 100644 index 0000000000..2fc196bf8a Binary files /dev/null and b/packages/client/public/img/sprites/bushes/paprikabush.png differ diff --git a/packages/client/public/img/sprites/bushes/peachbush.png b/packages/client/public/img/sprites/bushes/peachbush.png new file mode 100644 index 0000000000..1e04742ed9 Binary files /dev/null and b/packages/client/public/img/sprites/bushes/peachbush.png differ diff --git a/packages/client/public/img/sprites/bushes/raspberrybush.png b/packages/client/public/img/sprites/bushes/raspberrybush.png new file mode 100644 index 0000000000..43efd95a26 Binary files /dev/null and b/packages/client/public/img/sprites/bushes/raspberrybush.png differ diff --git a/packages/client/public/img/sprites/bushes/tomatobush.png b/packages/client/public/img/sprites/bushes/tomatobush.png new file mode 100644 index 0000000000..1e04742ed9 Binary files /dev/null and b/packages/client/public/img/sprites/bushes/tomatobush.png differ diff --git a/packages/client/public/img/sprites/bushes/treestump1.png b/packages/client/public/img/sprites/bushes/treestump1.png new file mode 100644 index 0000000000..95244ef702 Binary files /dev/null and b/packages/client/public/img/sprites/bushes/treestump1.png differ diff --git a/packages/client/public/img/sprites/crowns/bronzemedal.png b/packages/client/public/img/sprites/crowns/bronzemedal.png index 2517ec2386..255fa107f9 100755 Binary files a/packages/client/public/img/sprites/crowns/bronzemedal.png and b/packages/client/public/img/sprites/crowns/bronzemedal.png differ diff --git a/packages/client/public/img/sprites/crowns/goldmedal.png b/packages/client/public/img/sprites/crowns/goldmedal.png index a07908449a..9c27e70fb6 100755 Binary files a/packages/client/public/img/sprites/crowns/goldmedal.png and b/packages/client/public/img/sprites/crowns/goldmedal.png differ diff --git a/packages/client/public/img/sprites/crowns/silvermedal.png b/packages/client/public/img/sprites/crowns/silvermedal.png index 2f9f0daf56..97304b3411 100755 Binary files a/packages/client/public/img/sprites/crowns/silvermedal.png and b/packages/client/public/img/sprites/crowns/silvermedal.png differ diff --git a/packages/client/public/img/sprites/crowns/tier1.png b/packages/client/public/img/sprites/crowns/tier1.png index e4835148ae..3d5dd27f88 100644 Binary files a/packages/client/public/img/sprites/crowns/tier1.png and b/packages/client/public/img/sprites/crowns/tier1.png differ diff --git a/packages/client/public/img/sprites/crowns/tier2.png b/packages/client/public/img/sprites/crowns/tier2.png index 6f55f0430b..6fed50848c 100644 Binary files a/packages/client/public/img/sprites/crowns/tier2.png and b/packages/client/public/img/sprites/crowns/tier2.png differ diff --git a/packages/client/public/img/sprites/crowns/tier3.png b/packages/client/public/img/sprites/crowns/tier3.png index 114963b7f4..19636e7a8c 100644 Binary files a/packages/client/public/img/sprites/crowns/tier3.png and b/packages/client/public/img/sprites/crowns/tier3.png differ diff --git a/packages/client/public/img/sprites/crowns/tier6.png b/packages/client/public/img/sprites/crowns/tier6.png index 802b943fee..0789a193a2 100644 Binary files a/packages/client/public/img/sprites/crowns/tier6.png and b/packages/client/public/img/sprites/crowns/tier6.png differ diff --git a/packages/client/public/img/sprites/cursors/axe.png b/packages/client/public/img/sprites/cursors/axe.png index daa743f8fd..01e9c4e592 100644 Binary files a/packages/client/public/img/sprites/cursors/axe.png and b/packages/client/public/img/sprites/cursors/axe.png differ diff --git a/packages/client/public/img/sprites/cursors/crafting.png b/packages/client/public/img/sprites/cursors/crafting.png index 2bde024912..5e69f37581 100644 Binary files a/packages/client/public/img/sprites/cursors/crafting.png and b/packages/client/public/img/sprites/cursors/crafting.png differ diff --git a/packages/client/public/img/sprites/cursors/foraging.png b/packages/client/public/img/sprites/cursors/foraging.png index b0f2cf82df..57ea90edc1 100644 Binary files a/packages/client/public/img/sprites/cursors/foraging.png and b/packages/client/public/img/sprites/cursors/foraging.png differ diff --git a/packages/client/public/img/sprites/cursors/hand.png b/packages/client/public/img/sprites/cursors/hand.png index 73f5315039..3fa08d853d 100755 Binary files a/packages/client/public/img/sprites/cursors/hand.png and b/packages/client/public/img/sprites/cursors/hand.png differ diff --git a/packages/client/public/img/sprites/cursors/loot.png b/packages/client/public/img/sprites/cursors/loot.png index c177d4f0a9..a3439cfffc 100755 Binary files a/packages/client/public/img/sprites/cursors/loot.png and b/packages/client/public/img/sprites/cursors/loot.png differ diff --git a/packages/client/public/img/sprites/cursors/pickaxe.png b/packages/client/public/img/sprites/cursors/pickaxe.png index 62fa0d592d..46f438ee49 100644 Binary files a/packages/client/public/img/sprites/cursors/pickaxe.png and b/packages/client/public/img/sprites/cursors/pickaxe.png differ diff --git a/packages/client/public/img/sprites/cursors/spell.png b/packages/client/public/img/sprites/cursors/spell.png index 6da0c7e7ff..9922d292b7 100755 Binary files a/packages/client/public/img/sprites/cursors/spell.png and b/packages/client/public/img/sprites/cursors/spell.png differ diff --git a/packages/client/public/img/sprites/cursors/sword.png b/packages/client/public/img/sprites/cursors/sword.png index 271de38db9..a628200a62 100755 Binary files a/packages/client/public/img/sprites/cursors/sword.png and b/packages/client/public/img/sprites/cursors/sword.png differ diff --git a/packages/client/public/img/sprites/effectentity/fire.png b/packages/client/public/img/sprites/effectentity/fire.png new file mode 100644 index 0000000000..17040ec5e5 Binary files /dev/null and b/packages/client/public/img/sprites/effectentity/fire.png differ diff --git a/packages/client/public/img/sprites/effects/accuracy.png b/packages/client/public/img/sprites/effects/accuracy.png new file mode 100644 index 0000000000..4f2ba29e6b Binary files /dev/null and b/packages/client/public/img/sprites/effects/accuracy.png differ diff --git a/packages/client/public/img/sprites/effects/accuracysuper.png b/packages/client/public/img/sprites/effects/accuracysuper.png new file mode 100644 index 0000000000..b3873a31c0 Binary files /dev/null and b/packages/client/public/img/sprites/effects/accuracysuper.png differ diff --git a/packages/client/public/img/sprites/effects/archery.png b/packages/client/public/img/sprites/effects/archery.png new file mode 100644 index 0000000000..2c24aaf7c9 Binary files /dev/null and b/packages/client/public/img/sprites/effects/archery.png differ diff --git a/packages/client/public/img/sprites/effects/archerysuper.png b/packages/client/public/img/sprites/effects/archerysuper.png new file mode 100644 index 0000000000..dada9af054 Binary files /dev/null and b/packages/client/public/img/sprites/effects/archerysuper.png differ diff --git a/packages/client/public/img/sprites/effects/bleed.png b/packages/client/public/img/sprites/effects/bleed.png new file mode 100644 index 0000000000..de7183397d Binary files /dev/null and b/packages/client/public/img/sprites/effects/bleed.png differ diff --git a/packages/client/public/img/sprites/effects/critical.png b/packages/client/public/img/sprites/effects/critical.png index 7ba6654df5..7f01735bb0 100644 Binary files a/packages/client/public/img/sprites/effects/critical.png and b/packages/client/public/img/sprites/effects/critical.png differ diff --git a/packages/client/public/img/sprites/effects/defense.png b/packages/client/public/img/sprites/effects/defense.png new file mode 100644 index 0000000000..8a1b0108b0 Binary files /dev/null and b/packages/client/public/img/sprites/effects/defense.png differ diff --git a/packages/client/public/img/sprites/effects/defensesuper.png b/packages/client/public/img/sprites/effects/defensesuper.png new file mode 100644 index 0000000000..e83c811f44 Binary files /dev/null and b/packages/client/public/img/sprites/effects/defensesuper.png differ diff --git a/packages/client/public/img/sprites/effects/freeze.png b/packages/client/public/img/sprites/effects/freeze.png index 6d5aff4d2c..a7e202c190 100644 Binary files a/packages/client/public/img/sprites/effects/freeze.png and b/packages/client/public/img/sprites/effects/freeze.png differ diff --git a/packages/client/public/img/sprites/effects/heal2.png b/packages/client/public/img/sprites/effects/heal2.png index 0956291db4..077b0f9d74 100755 Binary files a/packages/client/public/img/sprites/effects/heal2.png and b/packages/client/public/img/sprites/effects/heal2.png differ diff --git a/packages/client/public/img/sprites/effects/lightningexplosion.png b/packages/client/public/img/sprites/effects/lightningexplosion.png new file mode 100644 index 0000000000..2f0ce03b10 Binary files /dev/null and b/packages/client/public/img/sprites/effects/lightningexplosion.png differ diff --git a/packages/client/public/img/sprites/effects/magic.png b/packages/client/public/img/sprites/effects/magic.png new file mode 100644 index 0000000000..c1b99c93dd Binary files /dev/null and b/packages/client/public/img/sprites/effects/magic.png differ diff --git a/packages/client/public/img/sprites/effects/magicsuper.png b/packages/client/public/img/sprites/effects/magicsuper.png new file mode 100644 index 0000000000..9d74dc7827 Binary files /dev/null and b/packages/client/public/img/sprites/effects/magicsuper.png differ diff --git a/packages/client/public/img/sprites/effects/poisonball.png b/packages/client/public/img/sprites/effects/poisonball.png index 14c46ae7c9..c7e58f0792 100644 Binary files a/packages/client/public/img/sprites/effects/poisonball.png and b/packages/client/public/img/sprites/effects/poisonball.png differ diff --git a/packages/client/public/img/sprites/effects/shieldbenef.png b/packages/client/public/img/sprites/effects/shieldbenef.png index 5b0b9747b9..6ac4424f53 100755 Binary files a/packages/client/public/img/sprites/effects/shieldbenef.png and b/packages/client/public/img/sprites/effects/shieldbenef.png differ diff --git a/packages/client/public/img/sprites/effects/strength.png b/packages/client/public/img/sprites/effects/strength.png new file mode 100644 index 0000000000..145c944f21 Binary files /dev/null and b/packages/client/public/img/sprites/effects/strength.png differ diff --git a/packages/client/public/img/sprites/effects/strengthsuper.png b/packages/client/public/img/sprites/effects/strengthsuper.png new file mode 100644 index 0000000000..75c96c9e98 Binary files /dev/null and b/packages/client/public/img/sprites/effects/strengthsuper.png differ diff --git a/packages/client/public/img/sprites/effects/supercat.png b/packages/client/public/img/sprites/effects/supercat.png index 342288e02a..356866882c 100644 Binary files a/packages/client/public/img/sprites/effects/supercat.png and b/packages/client/public/img/sprites/effects/supercat.png differ diff --git a/packages/client/public/img/sprites/exclamation.png b/packages/client/public/img/sprites/exclamation.png new file mode 100644 index 0000000000..2a536e8401 Binary files /dev/null and b/packages/client/public/img/sprites/exclamation.png differ diff --git a/packages/client/public/img/sprites/exclamationblue.png b/packages/client/public/img/sprites/exclamationblue.png new file mode 100644 index 0000000000..9640b66171 Binary files /dev/null and b/packages/client/public/img/sprites/exclamationblue.png differ diff --git a/packages/client/public/img/sprites/fishspots/clamspot.png b/packages/client/public/img/sprites/fishspots/clamspot.png new file mode 100644 index 0000000000..040a5c6818 Binary files /dev/null and b/packages/client/public/img/sprites/fishspots/clamspot.png differ diff --git a/packages/client/public/img/sprites/fishspots/jellyfishspot.png b/packages/client/public/img/sprites/fishspots/jellyfishspot.png new file mode 100644 index 0000000000..6e5d051975 Binary files /dev/null and b/packages/client/public/img/sprites/fishspots/jellyfishspot.png differ diff --git a/packages/client/public/img/sprites/fishspots/shrimpspot.png b/packages/client/public/img/sprites/fishspots/shrimpspot.png new file mode 100644 index 0000000000..051a6e4fcf Binary files /dev/null and b/packages/client/public/img/sprites/fishspots/shrimpspot.png differ diff --git a/packages/client/public/img/sprites/fishspots/tunaspot.png b/packages/client/public/img/sprites/fishspots/tunaspot.png new file mode 100644 index 0000000000..e62d0e43b3 Binary files /dev/null and b/packages/client/public/img/sprites/fishspots/tunaspot.png differ diff --git a/packages/client/public/img/sprites/fishspots/tutorialshrimpspot.png b/packages/client/public/img/sprites/fishspots/tutorialshrimpspot.png new file mode 100644 index 0000000000..64064662a6 Binary files /dev/null and b/packages/client/public/img/sprites/fishspots/tutorialshrimpspot.png differ diff --git a/packages/client/public/img/sprites/items/accuracypotion.png b/packages/client/public/img/sprites/items/accuracypotion.png index 78c297554e..239da837e7 100644 Binary files a/packages/client/public/img/sprites/items/accuracypotion.png and b/packages/client/public/img/sprites/items/accuracypotion.png differ diff --git a/packages/client/public/img/sprites/items/adamantitesworth.png b/packages/client/public/img/sprites/items/adamantitesworth.png new file mode 100644 index 0000000000..e2d373350b Binary files /dev/null and b/packages/client/public/img/sprites/items/adamantitesworth.png differ diff --git a/packages/client/public/img/sprites/items/adeptsrapier.png b/packages/client/public/img/sprites/items/adeptsrapier.png new file mode 100644 index 0000000000..1d842acbc2 Binary files /dev/null and b/packages/client/public/img/sprites/items/adeptsrapier.png differ diff --git a/packages/client/public/img/sprites/items/alchemistalimony.png b/packages/client/public/img/sprites/items/alchemistalimony.png new file mode 100644 index 0000000000..a5a7e0ea1f Binary files /dev/null and b/packages/client/public/img/sprites/items/alchemistalimony.png differ diff --git a/packages/client/public/img/sprites/items/alkythnlogs.png b/packages/client/public/img/sprites/items/alkythnlogs.png new file mode 100644 index 0000000000..0c060624dd Binary files /dev/null and b/packages/client/public/img/sprites/items/alkythnlogs.png differ diff --git a/packages/client/public/img/sprites/items/amethyst.png b/packages/client/public/img/sprites/items/amethyst.png index a12c3da921..a1ffe7c9e5 100644 Binary files a/packages/client/public/img/sprites/items/amethyst.png and b/packages/client/public/img/sprites/items/amethyst.png differ diff --git a/packages/client/public/img/sprites/items/amethystboots.png b/packages/client/public/img/sprites/items/amethystboots.png new file mode 100644 index 0000000000..0471cf3e3e Binary files /dev/null and b/packages/client/public/img/sprites/items/amethystboots.png differ diff --git a/packages/client/public/img/sprites/items/amethystchestplate.png b/packages/client/public/img/sprites/items/amethystchestplate.png new file mode 100644 index 0000000000..4a89fd0fa2 Binary files /dev/null and b/packages/client/public/img/sprites/items/amethystchestplate.png differ diff --git a/packages/client/public/img/sprites/items/amethysthelm.png b/packages/client/public/img/sprites/items/amethysthelm.png new file mode 100644 index 0000000000..35c2019a6c Binary files /dev/null and b/packages/client/public/img/sprites/items/amethysthelm.png differ diff --git a/packages/client/public/img/sprites/items/amethystlegplates.png b/packages/client/public/img/sprites/items/amethystlegplates.png new file mode 100644 index 0000000000..e7a2997bd5 Binary files /dev/null and b/packages/client/public/img/sprites/items/amethystlegplates.png differ diff --git a/packages/client/public/img/sprites/items/ancientshovel.png b/packages/client/public/img/sprites/items/ancientshovel.png new file mode 100644 index 0000000000..bb34b5e999 Binary files /dev/null and b/packages/client/public/img/sprites/items/ancientshovel.png differ diff --git a/packages/client/public/img/sprites/items/ancientstaff.png b/packages/client/public/img/sprites/items/ancientstaff.png new file mode 100644 index 0000000000..1d10d095aa Binary files /dev/null and b/packages/client/public/img/sprites/items/ancientstaff.png differ diff --git a/packages/client/public/img/sprites/items/angelicblade.png b/packages/client/public/img/sprites/items/angelicblade.png new file mode 100644 index 0000000000..e4b84bc9cd Binary files /dev/null and b/packages/client/public/img/sprites/items/angelicblade.png differ diff --git a/packages/client/public/img/sprites/items/apple.png b/packages/client/public/img/sprites/items/apple.png index af4e2f6445..bb8cfb18bb 100644 Binary files a/packages/client/public/img/sprites/items/apple.png and b/packages/client/public/img/sprites/items/apple.png differ diff --git a/packages/client/public/img/sprites/items/aquasilliuslogs.png b/packages/client/public/img/sprites/items/aquasilliuslogs.png new file mode 100644 index 0000000000..9b186da209 Binary files /dev/null and b/packages/client/public/img/sprites/items/aquasilliuslogs.png differ diff --git a/packages/client/public/img/sprites/items/aquastaff.png b/packages/client/public/img/sprites/items/aquastaff.png index 4bcefa4ddd..659447736d 100644 Binary files a/packages/client/public/img/sprites/items/aquastaff.png and b/packages/client/public/img/sprites/items/aquastaff.png differ diff --git a/packages/client/public/img/sprites/items/arcanahypercube.png b/packages/client/public/img/sprites/items/arcanahypercube.png new file mode 100644 index 0000000000..654ca6d9e3 Binary files /dev/null and b/packages/client/public/img/sprites/items/arcanahypercube.png differ diff --git a/packages/client/public/img/sprites/items/arrow.png b/packages/client/public/img/sprites/items/arrow.png index 660c2c2f7a..5747394892 100644 Binary files a/packages/client/public/img/sprites/items/arrow.png and b/packages/client/public/img/sprites/items/arrow.png differ diff --git a/packages/client/public/img/sprites/items/artistcrown.png b/packages/client/public/img/sprites/items/artistcrown.png new file mode 100644 index 0000000000..5610f688c0 Binary files /dev/null and b/packages/client/public/img/sprites/items/artistcrown.png differ diff --git a/packages/client/public/img/sprites/items/ashworm.png b/packages/client/public/img/sprites/items/ashworm.png new file mode 100644 index 0000000000..315041b58b Binary files /dev/null and b/packages/client/public/img/sprites/items/ashworm.png differ diff --git a/packages/client/public/img/sprites/items/avocado.png b/packages/client/public/img/sprites/items/avocado.png index 6d8bd271ef..1f17d3bc4e 100644 Binary files a/packages/client/public/img/sprites/items/avocado.png and b/packages/client/public/img/sprites/items/avocado.png differ diff --git a/packages/client/public/img/sprites/items/balloonblue.png b/packages/client/public/img/sprites/items/balloonblue.png new file mode 100644 index 0000000000..9c11ffab8f Binary files /dev/null and b/packages/client/public/img/sprites/items/balloonblue.png differ diff --git a/packages/client/public/img/sprites/items/balloongreen.png b/packages/client/public/img/sprites/items/balloongreen.png new file mode 100644 index 0000000000..77e91a853d Binary files /dev/null and b/packages/client/public/img/sprites/items/balloongreen.png differ diff --git a/packages/client/public/img/sprites/items/balloonpink.png b/packages/client/public/img/sprites/items/balloonpink.png new file mode 100644 index 0000000000..2c31049349 Binary files /dev/null and b/packages/client/public/img/sprites/items/balloonpink.png differ diff --git a/packages/client/public/img/sprites/items/balloonturquoise.png b/packages/client/public/img/sprites/items/balloonturquoise.png new file mode 100644 index 0000000000..7cb32671fb Binary files /dev/null and b/packages/client/public/img/sprites/items/balloonturquoise.png differ diff --git a/packages/client/public/img/sprites/items/balloonwhite.png b/packages/client/public/img/sprites/items/balloonwhite.png new file mode 100644 index 0000000000..669064fb87 Binary files /dev/null and b/packages/client/public/img/sprites/items/balloonwhite.png differ diff --git a/packages/client/public/img/sprites/items/balloonyellow.png b/packages/client/public/img/sprites/items/balloonyellow.png new file mode 100644 index 0000000000..7fdd6ef6eb Binary files /dev/null and b/packages/client/public/img/sprites/items/balloonyellow.png differ diff --git a/packages/client/public/img/sprites/items/banana.png b/packages/client/public/img/sprites/items/banana.png index 6996037334..d03f9a577e 100644 Binary files a/packages/client/public/img/sprites/items/banana.png and b/packages/client/public/img/sprites/items/banana.png differ diff --git a/packages/client/public/img/sprites/items/barley.png b/packages/client/public/img/sprites/items/barley.png index 17f2e815bc..f2216ec840 100644 Binary files a/packages/client/public/img/sprites/items/barley.png and b/packages/client/public/img/sprites/items/barley.png differ diff --git a/packages/client/public/img/sprites/items/basil.png b/packages/client/public/img/sprites/items/basil.png index 28f8e9950f..850fe39e39 100644 Binary files a/packages/client/public/img/sprites/items/basil.png and b/packages/client/public/img/sprites/items/basil.png differ diff --git a/packages/client/public/img/sprites/items/basilbowlmedium.png b/packages/client/public/img/sprites/items/basilbowlmedium.png index f922796b28..e0e790543f 100644 Binary files a/packages/client/public/img/sprites/items/basilbowlmedium.png and b/packages/client/public/img/sprites/items/basilbowlmedium.png differ diff --git a/packages/client/public/img/sprites/items/basilpowder.png b/packages/client/public/img/sprites/items/basilpowder.png index a348ad5804..a9b953f2fb 100644 Binary files a/packages/client/public/img/sprites/items/basilpowder.png and b/packages/client/public/img/sprites/items/basilpowder.png differ diff --git a/packages/client/public/img/sprites/items/basilshaker.png b/packages/client/public/img/sprites/items/basilshaker.png index fde503d9c0..4b029a98cb 100644 Binary files a/packages/client/public/img/sprites/items/basilshaker.png and b/packages/client/public/img/sprites/items/basilshaker.png differ diff --git a/packages/client/public/img/sprites/items/basket.png b/packages/client/public/img/sprites/items/basket.png index e6881ef4ff..b81d989313 100644 Binary files a/packages/client/public/img/sprites/items/basket.png and b/packages/client/public/img/sprites/items/basket.png differ diff --git a/packages/client/public/img/sprites/items/bayleaves.png b/packages/client/public/img/sprites/items/bayleaves.png index ce3fe68763..592713ebee 100644 Binary files a/packages/client/public/img/sprites/items/bayleaves.png and b/packages/client/public/img/sprites/items/bayleaves.png differ diff --git a/packages/client/public/img/sprites/items/bayleavesbottle.png b/packages/client/public/img/sprites/items/bayleavesbottle.png index cb24db7a19..73dec1ed5c 100644 Binary files a/packages/client/public/img/sprites/items/bayleavesbottle.png and b/packages/client/public/img/sprites/items/bayleavesbottle.png differ diff --git a/packages/client/public/img/sprites/items/bayleavesbowlmedium.png b/packages/client/public/img/sprites/items/bayleavesbowlmedium.png index 7c36f8c04c..94ecf62911 100644 Binary files a/packages/client/public/img/sprites/items/bayleavesbowlmedium.png and b/packages/client/public/img/sprites/items/bayleavesbowlmedium.png differ diff --git a/packages/client/public/img/sprites/items/bead.png b/packages/client/public/img/sprites/items/bead.png index 1073147eae..2c7e06e6b5 100644 Binary files a/packages/client/public/img/sprites/items/bead.png and b/packages/client/public/img/sprites/items/bead.png differ diff --git a/packages/client/public/img/sprites/items/bearhelm.png b/packages/client/public/img/sprites/items/bearhelm.png new file mode 100644 index 0000000000..c0c1ab77ab Binary files /dev/null and b/packages/client/public/img/sprites/items/bearhelm.png differ diff --git a/packages/client/public/img/sprites/items/beer.png b/packages/client/public/img/sprites/items/beer.png index ba71e70886..1a897fc131 100644 Binary files a/packages/client/public/img/sprites/items/beer.png and b/packages/client/public/img/sprites/items/beer.png differ diff --git a/packages/client/public/img/sprites/items/beermug.png b/packages/client/public/img/sprites/items/beermug.png index 3587a1496b..24a527d419 100644 Binary files a/packages/client/public/img/sprites/items/beermug.png and b/packages/client/public/img/sprites/items/beermug.png differ diff --git a/packages/client/public/img/sprites/items/berserkerssanity.png b/packages/client/public/img/sprites/items/berserkerssanity.png new file mode 100644 index 0000000000..560144d0ed Binary files /dev/null and b/packages/client/public/img/sprites/items/berserkerssanity.png differ diff --git a/packages/client/public/img/sprites/items/beryl.png b/packages/client/public/img/sprites/items/beryl.png index 7b2aa92b79..a576903a52 100644 Binary files a/packages/client/public/img/sprites/items/beryl.png and b/packages/client/public/img/sprites/items/beryl.png differ diff --git a/packages/client/public/img/sprites/items/berylgoldring.png b/packages/client/public/img/sprites/items/berylgoldring.png new file mode 100644 index 0000000000..ba1dc72c11 Binary files /dev/null and b/packages/client/public/img/sprites/items/berylgoldring.png differ diff --git a/packages/client/public/img/sprites/items/berylpendant.png b/packages/client/public/img/sprites/items/berylpendant.png index 4323faf25f..dfd022ab38 100644 Binary files a/packages/client/public/img/sprites/items/berylpendant.png and b/packages/client/public/img/sprites/items/berylpendant.png differ diff --git a/packages/client/public/img/sprites/items/berylsilverring.png b/packages/client/public/img/sprites/items/berylsilverring.png new file mode 100644 index 0000000000..f101dd5582 Binary files /dev/null and b/packages/client/public/img/sprites/items/berylsilverring.png differ diff --git a/packages/client/public/img/sprites/items/bident.png b/packages/client/public/img/sprites/items/bident.png new file mode 100644 index 0000000000..82d0dafcfc Binary files /dev/null and b/packages/client/public/img/sprites/items/bident.png differ diff --git a/packages/client/public/img/sprites/items/bigemptyvial.png b/packages/client/public/img/sprites/items/bigemptyvial.png new file mode 100644 index 0000000000..46d68f6a37 Binary files /dev/null and b/packages/client/public/img/sprites/items/bigemptyvial.png differ diff --git a/packages/client/public/img/sprites/items/bigflask.png b/packages/client/public/img/sprites/items/bigflask.png index 4531a7e67a..0f2ed14c4b 100644 Binary files a/packages/client/public/img/sprites/items/bigflask.png and b/packages/client/public/img/sprites/items/bigflask.png differ diff --git a/packages/client/public/img/sprites/items/bigmanaflask.png b/packages/client/public/img/sprites/items/bigmanaflask.png index 70d9bc630e..3bdc547e3b 100644 Binary files a/packages/client/public/img/sprites/items/bigmanaflask.png and b/packages/client/public/img/sprites/items/bigmanaflask.png differ diff --git a/packages/client/public/img/sprites/items/blackberry.png b/packages/client/public/img/sprites/items/blackberry.png index 5d800874fb..bddff036ae 100644 Binary files a/packages/client/public/img/sprites/items/blackberry.png and b/packages/client/public/img/sprites/items/blackberry.png differ diff --git a/packages/client/public/img/sprites/items/blackpepperplant.png b/packages/client/public/img/sprites/items/blackpepperplant.png index 9bb4587540..0abfa8e2a9 100644 Binary files a/packages/client/public/img/sprites/items/blackpepperplant.png and b/packages/client/public/img/sprites/items/blackpepperplant.png differ diff --git a/packages/client/public/img/sprites/items/blackpotion.png b/packages/client/public/img/sprites/items/blackpotion.png index 8cfadb5d19..7b5094ce6a 100644 Binary files a/packages/client/public/img/sprites/items/blackpotion.png and b/packages/client/public/img/sprites/items/blackpotion.png differ diff --git a/packages/client/public/img/sprites/items/bladeofdarkness.png b/packages/client/public/img/sprites/items/bladeofdarkness.png new file mode 100644 index 0000000000..fe6aab0416 Binary files /dev/null and b/packages/client/public/img/sprites/items/bladeofdarkness.png differ diff --git a/packages/client/public/img/sprites/items/bloodmoonstaff.png b/packages/client/public/img/sprites/items/bloodmoonstaff.png new file mode 100644 index 0000000000..c80d2e037f Binary files /dev/null and b/packages/client/public/img/sprites/items/bloodmoonstaff.png differ diff --git a/packages/client/public/img/sprites/items/bloodwoodlogs.png b/packages/client/public/img/sprites/items/bloodwoodlogs.png index 798ffe27bd..2df64d4578 100644 Binary files a/packages/client/public/img/sprites/items/bloodwoodlogs.png and b/packages/client/public/img/sprites/items/bloodwoodlogs.png differ diff --git a/packages/client/public/img/sprites/items/blueberry.png b/packages/client/public/img/sprites/items/blueberry.png index d99f389758..c5d36f307a 100644 Binary files a/packages/client/public/img/sprites/items/blueberry.png and b/packages/client/public/img/sprites/items/blueberry.png differ diff --git a/packages/client/public/img/sprites/items/bluelightsaber.png b/packages/client/public/img/sprites/items/bluelightsaber.png new file mode 100644 index 0000000000..1746f2095e Binary files /dev/null and b/packages/client/public/img/sprites/items/bluelightsaber.png differ diff --git a/packages/client/public/img/sprites/items/bluelily.png b/packages/client/public/img/sprites/items/bluelily.png index adedd801b4..04ce1a593d 100644 Binary files a/packages/client/public/img/sprites/items/bluelily.png and b/packages/client/public/img/sprites/items/bluelily.png differ diff --git a/packages/client/public/img/sprites/items/bluemoonstaff.png b/packages/client/public/img/sprites/items/bluemoonstaff.png new file mode 100644 index 0000000000..e08811de09 Binary files /dev/null and b/packages/client/public/img/sprites/items/bluemoonstaff.png differ diff --git a/packages/client/public/img/sprites/items/bluemysticchest.png b/packages/client/public/img/sprites/items/bluemysticchest.png new file mode 100644 index 0000000000..616cc63e6c Binary files /dev/null and b/packages/client/public/img/sprites/items/bluemysticchest.png differ diff --git a/packages/client/public/img/sprites/items/blueworm.png b/packages/client/public/img/sprites/items/blueworm.png new file mode 100644 index 0000000000..4d69cf863f Binary files /dev/null and b/packages/client/public/img/sprites/items/blueworm.png differ diff --git a/packages/client/public/img/sprites/items/bonebonker.png b/packages/client/public/img/sprites/items/bonebonker.png new file mode 100644 index 0000000000..581187be1c Binary files /dev/null and b/packages/client/public/img/sprites/items/bonebonker.png differ diff --git a/packages/client/public/img/sprites/items/bonepickaxe.png b/packages/client/public/img/sprites/items/bonepickaxe.png new file mode 100644 index 0000000000..79140ebc5c Binary files /dev/null and b/packages/client/public/img/sprites/items/bonepickaxe.png differ diff --git a/packages/client/public/img/sprites/items/book.png b/packages/client/public/img/sprites/items/book.png index 397b88012a..6c8f5cdec1 100644 Binary files a/packages/client/public/img/sprites/items/book.png and b/packages/client/public/img/sprites/items/book.png differ diff --git a/packages/client/public/img/sprites/items/boostpotion.png b/packages/client/public/img/sprites/items/boostpotion.png deleted file mode 100644 index 43ed0b4d45..0000000000 Binary files a/packages/client/public/img/sprites/items/boostpotion.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/borth.png b/packages/client/public/img/sprites/items/borth.png index 8d9ed8a099..c80f7412e3 100644 Binary files a/packages/client/public/img/sprites/items/borth.png and b/packages/client/public/img/sprites/items/borth.png differ diff --git a/packages/client/public/img/sprites/items/bowbamboo.png b/packages/client/public/img/sprites/items/bowbamboo.png new file mode 100644 index 0000000000..818d1a4cdc Binary files /dev/null and b/packages/client/public/img/sprites/items/bowbamboo.png differ diff --git a/packages/client/public/img/sprites/items/bowcommon.png b/packages/client/public/img/sprites/items/bowcommon.png deleted file mode 100644 index 7863f2bd3d..0000000000 Binary files a/packages/client/public/img/sprites/items/bowcommon.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/bowdeuteranom.png b/packages/client/public/img/sprites/items/bowdeuteranom.png new file mode 100644 index 0000000000..2a56cb2d83 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowdeuteranom.png differ diff --git a/packages/client/public/img/sprites/items/boweggplant.png b/packages/client/public/img/sprites/items/boweggplant.png new file mode 100644 index 0000000000..0372234443 Binary files /dev/null and b/packages/client/public/img/sprites/items/boweggplant.png differ diff --git a/packages/client/public/img/sprites/items/bowfleshflinger.png b/packages/client/public/img/sprites/items/bowfleshflinger.png new file mode 100644 index 0000000000..00bcf4b166 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowfleshflinger.png differ diff --git a/packages/client/public/img/sprites/items/bowiceicemaybe.png b/packages/client/public/img/sprites/items/bowiceicemaybe.png new file mode 100644 index 0000000000..feee6c1413 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowiceicemaybe.png differ diff --git a/packages/client/public/img/sprites/items/bowillmuscal.png b/packages/client/public/img/sprites/items/bowillmuscal.png new file mode 100644 index 0000000000..94dc470a5c Binary files /dev/null and b/packages/client/public/img/sprites/items/bowillmuscal.png differ diff --git a/packages/client/public/img/sprites/items/bowkelpysburden.png b/packages/client/public/img/sprites/items/bowkelpysburden.png new file mode 100644 index 0000000000..c79639c139 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowkelpysburden.png differ diff --git a/packages/client/public/img/sprites/items/bowlimb.png b/packages/client/public/img/sprites/items/bowlimb.png deleted file mode 100644 index 73dc806bae..0000000000 Binary files a/packages/client/public/img/sprites/items/bowlimb.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/bowlmedium.png b/packages/client/public/img/sprites/items/bowlmedium.png index 6af842e2b3..c1641b3225 100644 Binary files a/packages/client/public/img/sprites/items/bowlmedium.png and b/packages/client/public/img/sprites/items/bowlmedium.png differ diff --git a/packages/client/public/img/sprites/items/bowlsmall.png b/packages/client/public/img/sprites/items/bowlsmall.png index fcdcea4db9..7c9ce669f7 100644 Binary files a/packages/client/public/img/sprites/items/bowlsmall.png and b/packages/client/public/img/sprites/items/bowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/bowmagiccool.png b/packages/client/public/img/sprites/items/bowmagiccool.png new file mode 100644 index 0000000000..1ce054e454 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowmagiccool.png differ diff --git a/packages/client/public/img/sprites/items/bowmagichot.png b/packages/client/public/img/sprites/items/bowmagichot.png new file mode 100644 index 0000000000..91bc6fb40c Binary files /dev/null and b/packages/client/public/img/sprites/items/bowmagichot.png differ diff --git a/packages/client/public/img/sprites/items/bowmoon.png b/packages/client/public/img/sprites/items/bowmoon.png new file mode 100644 index 0000000000..02d5a68111 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowmoon.png differ diff --git a/packages/client/public/img/sprites/items/bowocean.png b/packages/client/public/img/sprites/items/bowocean.png new file mode 100644 index 0000000000..4ae6961e04 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowocean.png differ diff --git a/packages/client/public/img/sprites/items/bowpine.png b/packages/client/public/img/sprites/items/bowpine.png new file mode 100644 index 0000000000..23a25bd569 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowpine.png differ diff --git a/packages/client/public/img/sprites/items/bowsky.png b/packages/client/public/img/sprites/items/bowsky.png new file mode 100644 index 0000000000..dd12a57e38 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowsky.png differ diff --git a/packages/client/public/img/sprites/items/bowsun.png b/packages/client/public/img/sprites/items/bowsun.png new file mode 100644 index 0000000000..f2fc2ad52d Binary files /dev/null and b/packages/client/public/img/sprites/items/bowsun.png differ diff --git a/packages/client/public/img/sprites/items/bowswineslayer.png b/packages/client/public/img/sprites/items/bowswineslayer.png new file mode 100644 index 0000000000..24cf3914f2 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowswineslayer.png differ diff --git a/packages/client/public/img/sprites/items/bowwillowtwine.png b/packages/client/public/img/sprites/items/bowwillowtwine.png new file mode 100644 index 0000000000..e4a19ffca3 Binary files /dev/null and b/packages/client/public/img/sprites/items/bowwillowtwine.png differ diff --git a/packages/client/public/img/sprites/items/braceletbronzeberyl.png b/packages/client/public/img/sprites/items/braceletbronzeberyl.png new file mode 100644 index 0000000000..8bfa81e621 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletbronzeberyl.png differ diff --git a/packages/client/public/img/sprites/items/braceletbronzeemerald.png b/packages/client/public/img/sprites/items/braceletbronzeemerald.png new file mode 100644 index 0000000000..a5906b5955 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletbronzeemerald.png differ diff --git a/packages/client/public/img/sprites/items/braceletbronzepythar.png b/packages/client/public/img/sprites/items/braceletbronzepythar.png new file mode 100644 index 0000000000..44dd8b283e Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletbronzepythar.png differ diff --git a/packages/client/public/img/sprites/items/braceletbronzeruby.png b/packages/client/public/img/sprites/items/braceletbronzeruby.png new file mode 100644 index 0000000000..4efa95b6d2 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletbronzeruby.png differ diff --git a/packages/client/public/img/sprites/items/braceletbronzesapphire.png b/packages/client/public/img/sprites/items/braceletbronzesapphire.png new file mode 100644 index 0000000000..f64fa10f00 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletbronzesapphire.png differ diff --git a/packages/client/public/img/sprites/items/braceletgoldberyl.png b/packages/client/public/img/sprites/items/braceletgoldberyl.png new file mode 100644 index 0000000000..8ad2eb37bf Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletgoldberyl.png differ diff --git a/packages/client/public/img/sprites/items/braceletgoldemerald.png b/packages/client/public/img/sprites/items/braceletgoldemerald.png new file mode 100644 index 0000000000..c7e8be2f07 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletgoldemerald.png differ diff --git a/packages/client/public/img/sprites/items/braceletgoldpythar.png b/packages/client/public/img/sprites/items/braceletgoldpythar.png new file mode 100644 index 0000000000..6633ea3ea7 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletgoldpythar.png differ diff --git a/packages/client/public/img/sprites/items/braceletgoldruby.png b/packages/client/public/img/sprites/items/braceletgoldruby.png new file mode 100644 index 0000000000..da6dd01a39 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletgoldruby.png differ diff --git a/packages/client/public/img/sprites/items/braceletgoldsapphire.png b/packages/client/public/img/sprites/items/braceletgoldsapphire.png new file mode 100644 index 0000000000..201df46fdd Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletgoldsapphire.png differ diff --git a/packages/client/public/img/sprites/items/braceletsilverberyl.png b/packages/client/public/img/sprites/items/braceletsilverberyl.png new file mode 100644 index 0000000000..2f25033f2d Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletsilverberyl.png differ diff --git a/packages/client/public/img/sprites/items/braceletsilveremerald.png b/packages/client/public/img/sprites/items/braceletsilveremerald.png new file mode 100644 index 0000000000..e52fbef950 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletsilveremerald.png differ diff --git a/packages/client/public/img/sprites/items/braceletsilverpythar.png b/packages/client/public/img/sprites/items/braceletsilverpythar.png new file mode 100644 index 0000000000..a6b66848c2 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletsilverpythar.png differ diff --git a/packages/client/public/img/sprites/items/braceletsilverruby.png b/packages/client/public/img/sprites/items/braceletsilverruby.png new file mode 100644 index 0000000000..bfc08cc76d Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletsilverruby.png differ diff --git a/packages/client/public/img/sprites/items/braceletsilversapphire.png b/packages/client/public/img/sprites/items/braceletsilversapphire.png new file mode 100644 index 0000000000..31e6c0e415 Binary files /dev/null and b/packages/client/public/img/sprites/items/braceletsilversapphire.png differ diff --git a/packages/client/public/img/sprites/items/bronzeaxe.png b/packages/client/public/img/sprites/items/bronzeaxe.png index 70e3ae3d77..c1f1f5a666 100644 Binary files a/packages/client/public/img/sprites/items/bronzeaxe.png and b/packages/client/public/img/sprites/items/bronzeaxe.png differ diff --git a/packages/client/public/img/sprites/items/bronzebar.png b/packages/client/public/img/sprites/items/bronzebar.png index 522fc0f849..3ad736c72c 100644 Binary files a/packages/client/public/img/sprites/items/bronzebar.png and b/packages/client/public/img/sprites/items/bronzebar.png differ diff --git a/packages/client/public/img/sprites/items/bronzebattleaxe.png b/packages/client/public/img/sprites/items/bronzebattleaxe.png new file mode 100644 index 0000000000..987b7b6a69 Binary files /dev/null and b/packages/client/public/img/sprites/items/bronzebattleaxe.png differ diff --git a/packages/client/public/img/sprites/items/bronzeboots.png b/packages/client/public/img/sprites/items/bronzeboots.png new file mode 100644 index 0000000000..05b2051e68 Binary files /dev/null and b/packages/client/public/img/sprites/items/bronzeboots.png differ diff --git a/packages/client/public/img/sprites/items/bronzechestplate.png b/packages/client/public/img/sprites/items/bronzechestplate.png new file mode 100644 index 0000000000..57a7b386f1 Binary files /dev/null and b/packages/client/public/img/sprites/items/bronzechestplate.png differ diff --git a/packages/client/public/img/sprites/items/bronzehelmet.png b/packages/client/public/img/sprites/items/bronzehelmet.png index 57121b93a3..59c98a92f4 100644 Binary files a/packages/client/public/img/sprites/items/bronzehelmet.png and b/packages/client/public/img/sprites/items/bronzehelmet.png differ diff --git a/packages/client/public/img/sprites/items/bronzelegplates.png b/packages/client/public/img/sprites/items/bronzelegplates.png new file mode 100644 index 0000000000..0cf72ba14b Binary files /dev/null and b/packages/client/public/img/sprites/items/bronzelegplates.png differ diff --git a/packages/client/public/img/sprites/items/bronzeore.png b/packages/client/public/img/sprites/items/bronzeore.png index c63b492496..6b247ac1d1 100644 Binary files a/packages/client/public/img/sprites/items/bronzeore.png and b/packages/client/public/img/sprites/items/bronzeore.png differ diff --git a/packages/client/public/img/sprites/items/bronzepickaxe.png b/packages/client/public/img/sprites/items/bronzepickaxe.png new file mode 100644 index 0000000000..6d6ba834d8 Binary files /dev/null and b/packages/client/public/img/sprites/items/bronzepickaxe.png differ diff --git a/packages/client/public/img/sprites/items/bronzering.png b/packages/client/public/img/sprites/items/bronzering.png new file mode 100644 index 0000000000..0b08214d6d Binary files /dev/null and b/packages/client/public/img/sprites/items/bronzering.png differ diff --git a/packages/client/public/img/sprites/items/bronzescythe.png b/packages/client/public/img/sprites/items/bronzescythe.png new file mode 100644 index 0000000000..ad59fe55dd Binary files /dev/null and b/packages/client/public/img/sprites/items/bronzescythe.png differ diff --git a/packages/client/public/img/sprites/items/bronzespear.png b/packages/client/public/img/sprites/items/bronzespear.png new file mode 100644 index 0000000000..6e897a6eb8 Binary files /dev/null and b/packages/client/public/img/sprites/items/bronzespear.png differ diff --git a/packages/client/public/img/sprites/items/bronzesword.png b/packages/client/public/img/sprites/items/bronzesword.png index 6314e920b8..f2f227f284 100644 Binary files a/packages/client/public/img/sprites/items/bronzesword.png and b/packages/client/public/img/sprites/items/bronzesword.png differ diff --git a/packages/client/public/img/sprites/items/brutishblade.png b/packages/client/public/img/sprites/items/brutishblade.png new file mode 100644 index 0000000000..8a57a76c81 Binary files /dev/null and b/packages/client/public/img/sprites/items/brutishblade.png differ diff --git a/packages/client/public/img/sprites/items/bucket.png b/packages/client/public/img/sprites/items/bucket.png index c583ed521d..fdc602bafe 100644 Binary files a/packages/client/public/img/sprites/items/bucket.png and b/packages/client/public/img/sprites/items/bucket.png differ diff --git a/packages/client/public/img/sprites/items/burger.png b/packages/client/public/img/sprites/items/burger.png index 774054e869..ff82bd353f 100644 Binary files a/packages/client/public/img/sprites/items/burger.png and b/packages/client/public/img/sprites/items/burger.png differ diff --git a/packages/client/public/img/sprites/items/cake.png b/packages/client/public/img/sprites/items/cake.png index 54729ae986..a419931516 100644 Binary files a/packages/client/public/img/sprites/items/cake.png and b/packages/client/public/img/sprites/items/cake.png differ diff --git a/packages/client/public/img/sprites/items/candykey.png b/packages/client/public/img/sprites/items/candykey.png index 750844cb53..cd3600f519 100644 Binary files a/packages/client/public/img/sprites/items/candykey.png and b/packages/client/public/img/sprites/items/candykey.png differ diff --git a/packages/client/public/img/sprites/items/cayennebowlsmall.png b/packages/client/public/img/sprites/items/cayennebowlsmall.png index a78d0f563c..2daad26480 100644 Binary files a/packages/client/public/img/sprites/items/cayennebowlsmall.png and b/packages/client/public/img/sprites/items/cayennebowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/cayennepepper.png b/packages/client/public/img/sprites/items/cayennepepper.png index 5f64cf483a..fbe9303c21 100644 Binary files a/packages/client/public/img/sprites/items/cayennepepper.png and b/packages/client/public/img/sprites/items/cayennepepper.png differ diff --git a/packages/client/public/img/sprites/items/cayenneshaker.png b/packages/client/public/img/sprites/items/cayenneshaker.png index d24031036e..df26a0562b 100644 Binary files a/packages/client/public/img/sprites/items/cayenneshaker.png and b/packages/client/public/img/sprites/items/cayenneshaker.png differ diff --git a/packages/client/public/img/sprites/items/cd.png b/packages/client/public/img/sprites/items/cd.png old mode 100755 new mode 100644 index 715b0f15c5..a73239ce9c Binary files a/packages/client/public/img/sprites/items/cd.png and b/packages/client/public/img/sprites/items/cd.png differ diff --git a/packages/client/public/img/sprites/items/cellobello.png b/packages/client/public/img/sprites/items/cellobello.png new file mode 100644 index 0000000000..d351ab5cdd Binary files /dev/null and b/packages/client/public/img/sprites/items/cellobello.png differ diff --git a/packages/client/public/img/sprites/items/cheese.png b/packages/client/public/img/sprites/items/cheese.png index dddc6e9715..39441cc1cf 100644 Binary files a/packages/client/public/img/sprites/items/cheese.png and b/packages/client/public/img/sprites/items/cheese.png differ diff --git a/packages/client/public/img/sprites/items/chilli.png b/packages/client/public/img/sprites/items/chilli.png index 379ef9af3a..47d30828a4 100644 Binary files a/packages/client/public/img/sprites/items/chilli.png and b/packages/client/public/img/sprites/items/chilli.png differ diff --git a/packages/client/public/img/sprites/items/chisel.png b/packages/client/public/img/sprites/items/chisel.png new file mode 100644 index 0000000000..777e80a78a Binary files /dev/null and b/packages/client/public/img/sprites/items/chisel.png differ diff --git a/packages/client/public/img/sprites/items/cilantro.png b/packages/client/public/img/sprites/items/cilantro.png index 2c7134a030..8c09baf62b 100644 Binary files a/packages/client/public/img/sprites/items/cilantro.png and b/packages/client/public/img/sprites/items/cilantro.png differ diff --git a/packages/client/public/img/sprites/items/cinnabararrow.png b/packages/client/public/img/sprites/items/cinnabararrow.png index 82564c2f02..3a6a775633 100644 Binary files a/packages/client/public/img/sprites/items/cinnabararrow.png and b/packages/client/public/img/sprites/items/cinnabararrow.png differ diff --git a/packages/client/public/img/sprites/items/cinnabarore.png b/packages/client/public/img/sprites/items/cinnabarore.png index a6cb27e785..db64033ac3 100644 Binary files a/packages/client/public/img/sprites/items/cinnabarore.png and b/packages/client/public/img/sprites/items/cinnabarore.png differ diff --git a/packages/client/public/img/sprites/items/cinnabarsword.png b/packages/client/public/img/sprites/items/cinnabarsword.png index 7dda2648af..8cec170ddc 100644 Binary files a/packages/client/public/img/sprites/items/cinnabarsword.png and b/packages/client/public/img/sprites/items/cinnabarsword.png differ diff --git a/packages/client/public/img/sprites/items/cinnamon.png b/packages/client/public/img/sprites/items/cinnamon.png index 08c3b61213..3f81b1e015 100644 Binary files a/packages/client/public/img/sprites/items/cinnamon.png and b/packages/client/public/img/sprites/items/cinnamon.png differ diff --git a/packages/client/public/img/sprites/items/cinnamonbark.png b/packages/client/public/img/sprites/items/cinnamonbark.png index 49b76791f3..b5d952c7e8 100644 Binary files a/packages/client/public/img/sprites/items/cinnamonbark.png and b/packages/client/public/img/sprites/items/cinnamonbark.png differ diff --git a/packages/client/public/img/sprites/items/cinnamonbowlsmall.png b/packages/client/public/img/sprites/items/cinnamonbowlsmall.png index b432828c5f..89474aead3 100644 Binary files a/packages/client/public/img/sprites/items/cinnamonbowlsmall.png and b/packages/client/public/img/sprites/items/cinnamonbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/cinnamonshaker.png b/packages/client/public/img/sprites/items/cinnamonshaker.png index 9173ac815f..1560367480 100644 Binary files a/packages/client/public/img/sprites/items/cinnamonshaker.png and b/packages/client/public/img/sprites/items/cinnamonshaker.png differ diff --git a/packages/client/public/img/sprites/items/citrine.png b/packages/client/public/img/sprites/items/citrine.png index 6933e92511..02ad95a549 100644 Binary files a/packages/client/public/img/sprites/items/citrine.png and b/packages/client/public/img/sprites/items/citrine.png differ diff --git a/packages/client/public/img/sprites/items/clamchowder.png b/packages/client/public/img/sprites/items/clamchowder.png index 56fb67a148..6c60f1b7ac 100644 Binary files a/packages/client/public/img/sprites/items/clamchowder.png and b/packages/client/public/img/sprites/items/clamchowder.png differ diff --git a/packages/client/public/img/sprites/items/clamobject.png b/packages/client/public/img/sprites/items/clamobject.png index 971b92169b..3adc337308 100644 Binary files a/packages/client/public/img/sprites/items/clamobject.png and b/packages/client/public/img/sprites/items/clamobject.png differ diff --git a/packages/client/public/img/sprites/items/cloth.png b/packages/client/public/img/sprites/items/cloth.png index b1ac96dde7..7b46cb45fd 100644 Binary files a/packages/client/public/img/sprites/items/cloth.png and b/packages/client/public/img/sprites/items/cloth.png differ diff --git a/packages/client/public/img/sprites/items/cloudberry.png b/packages/client/public/img/sprites/items/cloudberry.png index fcc3fc4989..39fe22fc67 100644 Binary files a/packages/client/public/img/sprites/items/cloudberry.png and b/packages/client/public/img/sprites/items/cloudberry.png differ diff --git a/packages/client/public/img/sprites/items/club.png b/packages/client/public/img/sprites/items/club.png new file mode 100644 index 0000000000..1993766bb8 Binary files /dev/null and b/packages/client/public/img/sprites/items/club.png differ diff --git a/packages/client/public/img/sprites/items/coal.png b/packages/client/public/img/sprites/items/coal.png index d50229578d..530dd68f51 100644 Binary files a/packages/client/public/img/sprites/items/coal.png and b/packages/client/public/img/sprites/items/coal.png differ diff --git a/packages/client/public/img/sprites/items/cobaltaxe.png b/packages/client/public/img/sprites/items/cobaltaxe.png index 0797fb5f9a..e8f796f10d 100644 Binary files a/packages/client/public/img/sprites/items/cobaltaxe.png and b/packages/client/public/img/sprites/items/cobaltaxe.png differ diff --git a/packages/client/public/img/sprites/items/cobaltbattleaxe.png b/packages/client/public/img/sprites/items/cobaltbattleaxe.png new file mode 100644 index 0000000000..e3c2b56c53 Binary files /dev/null and b/packages/client/public/img/sprites/items/cobaltbattleaxe.png differ diff --git a/packages/client/public/img/sprites/items/cobaltboots.png b/packages/client/public/img/sprites/items/cobaltboots.png new file mode 100644 index 0000000000..388de9209f Binary files /dev/null and b/packages/client/public/img/sprites/items/cobaltboots.png differ diff --git a/packages/client/public/img/sprites/items/cobaltchestplate.png b/packages/client/public/img/sprites/items/cobaltchestplate.png new file mode 100644 index 0000000000..c93f60bd59 Binary files /dev/null and b/packages/client/public/img/sprites/items/cobaltchestplate.png differ diff --git a/packages/client/public/img/sprites/items/cobalthelmet.png b/packages/client/public/img/sprites/items/cobalthelmet.png index 65c1d5efb4..e1ffe7f2fe 100644 Binary files a/packages/client/public/img/sprites/items/cobalthelmet.png and b/packages/client/public/img/sprites/items/cobalthelmet.png differ diff --git a/packages/client/public/img/sprites/items/cobaltlegplates.png b/packages/client/public/img/sprites/items/cobaltlegplates.png new file mode 100644 index 0000000000..e70aee3427 Binary files /dev/null and b/packages/client/public/img/sprites/items/cobaltlegplates.png differ diff --git a/packages/client/public/img/sprites/items/cobaltlegs.png b/packages/client/public/img/sprites/items/cobaltlegs.png deleted file mode 100644 index 14b99d1439..0000000000 Binary files a/packages/client/public/img/sprites/items/cobaltlegs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/cobaltpickaxe.png b/packages/client/public/img/sprites/items/cobaltpickaxe.png new file mode 100644 index 0000000000..3db81a3334 Binary files /dev/null and b/packages/client/public/img/sprites/items/cobaltpickaxe.png differ diff --git a/packages/client/public/img/sprites/items/cobaltscythe.png b/packages/client/public/img/sprites/items/cobaltscythe.png new file mode 100644 index 0000000000..d863544cdc Binary files /dev/null and b/packages/client/public/img/sprites/items/cobaltscythe.png differ diff --git a/packages/client/public/img/sprites/items/cobaltshield.png b/packages/client/public/img/sprites/items/cobaltshield.png new file mode 100644 index 0000000000..be8742b47a Binary files /dev/null and b/packages/client/public/img/sprites/items/cobaltshield.png differ diff --git a/packages/client/public/img/sprites/items/cobaltspear.png b/packages/client/public/img/sprites/items/cobaltspear.png new file mode 100644 index 0000000000..13229c982b Binary files /dev/null and b/packages/client/public/img/sprites/items/cobaltspear.png differ diff --git a/packages/client/public/img/sprites/items/conquerorchestplate.png b/packages/client/public/img/sprites/items/conquerorchestplate.png new file mode 100644 index 0000000000..616cc63e6c Binary files /dev/null and b/packages/client/public/img/sprites/items/conquerorchestplate.png differ diff --git a/packages/client/public/img/sprites/items/conquerorhelmet.png b/packages/client/public/img/sprites/items/conquerorhelmet.png new file mode 100644 index 0000000000..d6068c171d Binary files /dev/null and b/packages/client/public/img/sprites/items/conquerorhelmet.png differ diff --git a/packages/client/public/img/sprites/items/conquerorlegplates.png b/packages/client/public/img/sprites/items/conquerorlegplates.png new file mode 100644 index 0000000000..616cc63e6c Binary files /dev/null and b/packages/client/public/img/sprites/items/conquerorlegplates.png differ diff --git a/packages/client/public/img/sprites/items/cookedbeef.png b/packages/client/public/img/sprites/items/cookedbeef.png index 4a5ee37d6c..75724f0920 100644 Binary files a/packages/client/public/img/sprites/items/cookedbeef.png and b/packages/client/public/img/sprites/items/cookedbeef.png differ diff --git a/packages/client/public/img/sprites/items/cookedchicken.png b/packages/client/public/img/sprites/items/cookedchicken.png index 0eade888e7..435681f71d 100644 Binary files a/packages/client/public/img/sprites/items/cookedchicken.png and b/packages/client/public/img/sprites/items/cookedchicken.png differ diff --git a/packages/client/public/img/sprites/items/cookedpork.png b/packages/client/public/img/sprites/items/cookedpork.png index f95f4af5ed..59550aedc0 100644 Binary files a/packages/client/public/img/sprites/items/cookedpork.png and b/packages/client/public/img/sprites/items/cookedpork.png differ diff --git a/packages/client/public/img/sprites/items/cookedsausage.png b/packages/client/public/img/sprites/items/cookedsausage.png index 561cf10630..ac43553e16 100644 Binary files a/packages/client/public/img/sprites/items/cookedsausage.png and b/packages/client/public/img/sprites/items/cookedsausage.png differ diff --git a/packages/client/public/img/sprites/items/cookedshrimp.png b/packages/client/public/img/sprites/items/cookedshrimp.png index 2ef9df9f30..83e000d21a 100644 Binary files a/packages/client/public/img/sprites/items/cookedshrimp.png and b/packages/client/public/img/sprites/items/cookedshrimp.png differ diff --git a/packages/client/public/img/sprites/items/copperbar.png b/packages/client/public/img/sprites/items/copperbar.png index 4846b655c1..a7265f671f 100644 Binary files a/packages/client/public/img/sprites/items/copperbar.png and b/packages/client/public/img/sprites/items/copperbar.png differ diff --git a/packages/client/public/img/sprites/items/copperchestplate.png b/packages/client/public/img/sprites/items/copperchestplate.png new file mode 100644 index 0000000000..16a1fb1f82 Binary files /dev/null and b/packages/client/public/img/sprites/items/copperchestplate.png differ diff --git a/packages/client/public/img/sprites/items/copperhelmet.png b/packages/client/public/img/sprites/items/copperhelmet.png index b6c3c6cf3b..ab62a6c473 100644 Binary files a/packages/client/public/img/sprites/items/copperhelmet.png and b/packages/client/public/img/sprites/items/copperhelmet.png differ diff --git a/packages/client/public/img/sprites/items/copperlegplates.png b/packages/client/public/img/sprites/items/copperlegplates.png new file mode 100644 index 0000000000..c7feaafb1d Binary files /dev/null and b/packages/client/public/img/sprites/items/copperlegplates.png differ diff --git a/packages/client/public/img/sprites/items/copperlegs.png b/packages/client/public/img/sprites/items/copperlegs.png deleted file mode 100644 index 02f6d1318b..0000000000 Binary files a/packages/client/public/img/sprites/items/copperlegs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/copperore.png b/packages/client/public/img/sprites/items/copperore.png index 2a6047be2a..4d6c06eed5 100644 Binary files a/packages/client/public/img/sprites/items/copperore.png and b/packages/client/public/img/sprites/items/copperore.png differ diff --git a/packages/client/public/img/sprites/items/coppershield.png b/packages/client/public/img/sprites/items/coppershield.png new file mode 100644 index 0000000000..0f787c17ba Binary files /dev/null and b/packages/client/public/img/sprites/items/coppershield.png differ diff --git a/packages/client/public/img/sprites/items/coppersword.png b/packages/client/public/img/sprites/items/coppersword.png index 39bb6c7e0f..1647417c2a 100644 Binary files a/packages/client/public/img/sprites/items/coppersword.png and b/packages/client/public/img/sprites/items/coppersword.png differ diff --git a/packages/client/public/img/sprites/items/corn.png b/packages/client/public/img/sprites/items/corn.png index 91cb769888..b6b7525d8b 100644 Binary files a/packages/client/public/img/sprites/items/corn.png and b/packages/client/public/img/sprites/items/corn.png differ diff --git a/packages/client/public/img/sprites/items/crystalhood.png b/packages/client/public/img/sprites/items/crystalhood.png new file mode 100644 index 0000000000..358f005da2 Binary files /dev/null and b/packages/client/public/img/sprites/items/crystalhood.png differ diff --git a/packages/client/public/img/sprites/items/crystallegplates.png b/packages/client/public/img/sprites/items/crystallegplates.png new file mode 100644 index 0000000000..616cc63e6c Binary files /dev/null and b/packages/client/public/img/sprites/items/crystallegplates.png differ diff --git a/packages/client/public/img/sprites/items/cumin.png b/packages/client/public/img/sprites/items/cumin.png index dcf1a34faa..56d42e5766 100644 Binary files a/packages/client/public/img/sprites/items/cumin.png and b/packages/client/public/img/sprites/items/cumin.png differ diff --git a/packages/client/public/img/sprites/items/cuminbowlsmall.png b/packages/client/public/img/sprites/items/cuminbowlsmall.png index 4830119974..f5eb5223fc 100644 Binary files a/packages/client/public/img/sprites/items/cuminbowlsmall.png and b/packages/client/public/img/sprites/items/cuminbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/cuminplant.png b/packages/client/public/img/sprites/items/cuminplant.png index af3741c570..255aa237c7 100644 Binary files a/packages/client/public/img/sprites/items/cuminplant.png and b/packages/client/public/img/sprites/items/cuminplant.png differ diff --git a/packages/client/public/img/sprites/items/cuminshaker.png b/packages/client/public/img/sprites/items/cuminshaker.png index 2d37e6d69f..7b56e0d5f1 100644 Binary files a/packages/client/public/img/sprites/items/cuminshaker.png and b/packages/client/public/img/sprites/items/cuminshaker.png differ diff --git a/packages/client/public/img/sprites/items/cure.png b/packages/client/public/img/sprites/items/cure.png index 37c81f4cef..84b619fc45 100644 Binary files a/packages/client/public/img/sprites/items/cure.png and b/packages/client/public/img/sprites/items/cure.png differ diff --git a/packages/client/public/img/sprites/items/cursebead.png b/packages/client/public/img/sprites/items/cursebead.png new file mode 100644 index 0000000000..606a41116b Binary files /dev/null and b/packages/client/public/img/sprites/items/cursebead.png differ diff --git a/packages/client/public/img/sprites/items/cursedbattleaxe.png b/packages/client/public/img/sprites/items/cursedbattleaxe.png new file mode 100644 index 0000000000..12ec819587 Binary files /dev/null and b/packages/client/public/img/sprites/items/cursedbattleaxe.png differ diff --git a/packages/client/public/img/sprites/items/cursedpickaxe.png b/packages/client/public/img/sprites/items/cursedpickaxe.png new file mode 100644 index 0000000000..6115cd8291 Binary files /dev/null and b/packages/client/public/img/sprites/items/cursedpickaxe.png differ diff --git a/packages/client/public/img/sprites/items/cursedsapphirepickaxe.png b/packages/client/public/img/sprites/items/cursedsapphirepickaxe.png new file mode 100644 index 0000000000..5b0d8d073a Binary files /dev/null and b/packages/client/public/img/sprites/items/cursedsapphirepickaxe.png differ diff --git a/packages/client/public/img/sprites/items/cursestaff.png b/packages/client/public/img/sprites/items/cursestaff.png index cdb8a29597..30ec36b4dd 100644 Binary files a/packages/client/public/img/sprites/items/cursestaff.png and b/packages/client/public/img/sprites/items/cursestaff.png differ diff --git a/packages/client/public/img/sprites/items/danbo.png b/packages/client/public/img/sprites/items/danbo.png index ba8dfbdb5a..7b7e746bf1 100644 Binary files a/packages/client/public/img/sprites/items/danbo.png and b/packages/client/public/img/sprites/items/danbo.png differ diff --git a/packages/client/public/img/sprites/items/danboblue.png b/packages/client/public/img/sprites/items/danboblue.png index fb684c3e99..396e10c9aa 100644 Binary files a/packages/client/public/img/sprites/items/danboblue.png and b/packages/client/public/img/sprites/items/danboblue.png differ diff --git a/packages/client/public/img/sprites/items/danbogreen.png b/packages/client/public/img/sprites/items/danbogreen.png index 7053a9042f..7b7bb6a906 100644 Binary files a/packages/client/public/img/sprites/items/danbogreen.png and b/packages/client/public/img/sprites/items/danbogreen.png differ diff --git a/packages/client/public/img/sprites/items/danbored.png b/packages/client/public/img/sprites/items/danbored.png index 7cb93b75e4..6c5a17d9bd 100644 Binary files a/packages/client/public/img/sprites/items/danbored.png and b/packages/client/public/img/sprites/items/danbored.png differ diff --git a/packages/client/public/img/sprites/items/dandelion.png b/packages/client/public/img/sprites/items/dandelion.png index 9858c8cbfb..1346de2b65 100644 Binary files a/packages/client/public/img/sprites/items/dandelion.png and b/packages/client/public/img/sprites/items/dandelion.png differ diff --git a/packages/client/public/img/sprites/items/darkmagehood.png b/packages/client/public/img/sprites/items/darkmagehood.png new file mode 100644 index 0000000000..99e348bd95 Binary files /dev/null and b/packages/client/public/img/sprites/items/darkmagehood.png differ diff --git a/packages/client/public/img/sprites/items/darkmagehoodblue.png b/packages/client/public/img/sprites/items/darkmagehoodblue.png new file mode 100644 index 0000000000..d540cf495d Binary files /dev/null and b/packages/client/public/img/sprites/items/darkmagehoodblue.png differ diff --git a/packages/client/public/img/sprites/items/darkmagehoodgold.png b/packages/client/public/img/sprites/items/darkmagehoodgold.png new file mode 100644 index 0000000000..1da573eef7 Binary files /dev/null and b/packages/client/public/img/sprites/items/darkmagehoodgold.png differ diff --git a/packages/client/public/img/sprites/items/darkmagehoodgreen.png b/packages/client/public/img/sprites/items/darkmagehoodgreen.png new file mode 100644 index 0000000000..ff1a12dd03 Binary files /dev/null and b/packages/client/public/img/sprites/items/darkmagehoodgreen.png differ diff --git a/packages/client/public/img/sprites/items/darkskeletonhelm.png b/packages/client/public/img/sprites/items/darkskeletonhelm.png new file mode 100644 index 0000000000..c4c3e4d9dd Binary files /dev/null and b/packages/client/public/img/sprites/items/darkskeletonhelm.png differ diff --git a/packages/client/public/img/sprites/items/darkskeletonskin.png b/packages/client/public/img/sprites/items/darkskeletonskin.png new file mode 100644 index 0000000000..c4c3e4d9dd Binary files /dev/null and b/packages/client/public/img/sprites/items/darkskeletonskin.png differ diff --git a/packages/client/public/img/sprites/items/defensepotion.png b/packages/client/public/img/sprites/items/defensepotion.png index f709c34091..5bbf62c57c 100644 Binary files a/packages/client/public/img/sprites/items/defensepotion.png and b/packages/client/public/img/sprites/items/defensepotion.png differ diff --git a/packages/client/public/img/sprites/items/demoniccrystalhood.png b/packages/client/public/img/sprites/items/demoniccrystalhood.png new file mode 100644 index 0000000000..b994bb731a Binary files /dev/null and b/packages/client/public/img/sprites/items/demoniccrystalhood.png differ diff --git a/packages/client/public/img/sprites/items/demonichelm.png b/packages/client/public/img/sprites/items/demonichelm.png new file mode 100644 index 0000000000..c6207d06cc Binary files /dev/null and b/packages/client/public/img/sprites/items/demonichelm.png differ diff --git a/packages/client/public/img/sprites/items/demonicstaff.png b/packages/client/public/img/sprites/items/demonicstaff.png new file mode 100644 index 0000000000..5c8405e3fc Binary files /dev/null and b/packages/client/public/img/sprites/items/demonicstaff.png differ diff --git a/packages/client/public/img/sprites/items/diamondring.png b/packages/client/public/img/sprites/items/diamondring.png index b7f61d797b..73fbbf82c3 100644 Binary files a/packages/client/public/img/sprites/items/diamondring.png and b/packages/client/public/img/sprites/items/diamondring.png differ diff --git a/packages/client/public/img/sprites/items/dinosaurarmor.png b/packages/client/public/img/sprites/items/dinosaurarmor.png index 642a52fc8a..ff70ed4234 100644 Binary files a/packages/client/public/img/sprites/items/dinosaurarmor.png and b/packages/client/public/img/sprites/items/dinosaurarmor.png differ diff --git a/packages/client/public/img/sprites/items/dolring.png b/packages/client/public/img/sprites/items/dolring.png index 7ffc9ff446..a5ba0a2c73 100644 Binary files a/packages/client/public/img/sprites/items/dolring.png and b/packages/client/public/img/sprites/items/dolring.png differ diff --git a/packages/client/public/img/sprites/items/dragonscale.png b/packages/client/public/img/sprites/items/dragonscale.png new file mode 100644 index 0000000000..9ec95bba2a Binary files /dev/null and b/packages/client/public/img/sprites/items/dragonscale.png differ diff --git a/packages/client/public/img/sprites/items/egg.png b/packages/client/public/img/sprites/items/egg.png index 985e9a67f7..2b1863ca81 100644 Binary files a/packages/client/public/img/sprites/items/egg.png and b/packages/client/public/img/sprites/items/egg.png differ diff --git a/packages/client/public/img/sprites/items/element.png b/packages/client/public/img/sprites/items/element.png index ef0a315f5d..cb583a554b 100644 Binary files a/packages/client/public/img/sprites/items/element.png and b/packages/client/public/img/sprites/items/element.png differ diff --git a/packages/client/public/img/sprites/items/elfhelmet.png b/packages/client/public/img/sprites/items/elfhelmet.png new file mode 100644 index 0000000000..d48a473959 Binary files /dev/null and b/packages/client/public/img/sprites/items/elfhelmet.png differ diff --git a/packages/client/public/img/sprites/items/elfhelmetgrown.png b/packages/client/public/img/sprites/items/elfhelmetgrown.png new file mode 100644 index 0000000000..95949bd24f Binary files /dev/null and b/packages/client/public/img/sprites/items/elfhelmetgrown.png differ diff --git a/packages/client/public/img/sprites/items/emerald.png b/packages/client/public/img/sprites/items/emerald.png index 54fe78ac7c..69b4e5e28a 100644 Binary files a/packages/client/public/img/sprites/items/emerald.png and b/packages/client/public/img/sprites/items/emerald.png differ diff --git a/packages/client/public/img/sprites/items/emeraldpendant.png b/packages/client/public/img/sprites/items/emeraldpendant.png index 507e0efa68..fe45450ded 100644 Binary files a/packages/client/public/img/sprites/items/emeraldpendant.png and b/packages/client/public/img/sprites/items/emeraldpendant.png differ diff --git a/packages/client/public/img/sprites/items/emeraldring.png b/packages/client/public/img/sprites/items/emeraldring.png index 0b153e9449..869555f8f1 100644 Binary files a/packages/client/public/img/sprites/items/emeraldring.png and b/packages/client/public/img/sprites/items/emeraldring.png differ diff --git a/packages/client/public/img/sprites/items/emptybottle.png b/packages/client/public/img/sprites/items/emptybottle.png index 9a03ad2cec..5d54105318 100644 Binary files a/packages/client/public/img/sprites/items/emptybottle.png and b/packages/client/public/img/sprites/items/emptybottle.png differ diff --git a/packages/client/public/img/sprites/items/emptyshaker.png b/packages/client/public/img/sprites/items/emptyshaker.png index f8280f1c37..38d18b95db 100644 Binary files a/packages/client/public/img/sprites/items/emptyshaker.png and b/packages/client/public/img/sprites/items/emptyshaker.png differ diff --git a/packages/client/public/img/sprites/items/essentialrage.png b/packages/client/public/img/sprites/items/essentialrage.png index f903584f07..670e05fe50 100644 Binary files a/packages/client/public/img/sprites/items/essentialrage.png and b/packages/client/public/img/sprites/items/essentialrage.png differ diff --git a/packages/client/public/img/sprites/items/etherialblade.png b/packages/client/public/img/sprites/items/etherialblade.png new file mode 100644 index 0000000000..d6ac6af44e Binary files /dev/null and b/packages/client/public/img/sprites/items/etherialblade.png differ diff --git a/packages/client/public/img/sprites/items/ettispinefruit.png b/packages/client/public/img/sprites/items/ettispinefruit.png new file mode 100644 index 0000000000..731e58fe09 Binary files /dev/null and b/packages/client/public/img/sprites/items/ettispinefruit.png differ diff --git a/packages/client/public/img/sprites/items/executionershammer.png b/packages/client/public/img/sprites/items/executionershammer.png new file mode 100644 index 0000000000..c386a2ab2a Binary files /dev/null and b/packages/client/public/img/sprites/items/executionershammer.png differ diff --git a/packages/client/public/img/sprites/items/eyesword.png b/packages/client/public/img/sprites/items/eyesword.png new file mode 100644 index 0000000000..249bb8fa42 Binary files /dev/null and b/packages/client/public/img/sprites/items/eyesword.png differ diff --git a/packages/client/public/img/sprites/items/feather.png b/packages/client/public/img/sprites/items/feather.png index b81e8974f7..f4ac3dfd33 100644 Binary files a/packages/client/public/img/sprites/items/feather.png and b/packages/client/public/img/sprites/items/feather.png differ diff --git a/packages/client/public/img/sprites/items/firearrow.png b/packages/client/public/img/sprites/items/firearrow.png index 3cb477839b..b906a37583 100644 Binary files a/packages/client/public/img/sprites/items/firearrow.png and b/packages/client/public/img/sprites/items/firearrow.png differ diff --git a/packages/client/public/img/sprites/items/firebead.png b/packages/client/public/img/sprites/items/firebead.png index 35ce9f0290..729525237f 100644 Binary files a/packages/client/public/img/sprites/items/firebead.png and b/packages/client/public/img/sprites/items/firebead.png differ diff --git a/packages/client/public/img/sprites/items/firepotion.png b/packages/client/public/img/sprites/items/firepotion.png index 798ad3df30..d2fd782846 100644 Binary files a/packages/client/public/img/sprites/items/firepotion.png and b/packages/client/public/img/sprites/items/firepotion.png differ diff --git a/packages/client/public/img/sprites/items/fireshot.png b/packages/client/public/img/sprites/items/fireshot.png index 4798252548..7e46740155 100644 Binary files a/packages/client/public/img/sprites/items/fireshot.png and b/packages/client/public/img/sprites/items/fireshot.png differ diff --git a/packages/client/public/img/sprites/items/firestaff.png b/packages/client/public/img/sprites/items/firestaff.png index 855ec36f24..02a9af1d7a 100644 Binary files a/packages/client/public/img/sprites/items/firestaff.png and b/packages/client/public/img/sprites/items/firestaff.png differ diff --git a/packages/client/public/img/sprites/items/firesword.png b/packages/client/public/img/sprites/items/firesword.png new file mode 100644 index 0000000000..561cd72b62 Binary files /dev/null and b/packages/client/public/img/sprites/items/firesword.png differ diff --git a/packages/client/public/img/sprites/items/fishbowl.png b/packages/client/public/img/sprites/items/fishbowl.png new file mode 100644 index 0000000000..4dea833fdb Binary files /dev/null and b/packages/client/public/img/sprites/items/fishbowl.png differ diff --git a/packages/client/public/img/sprites/items/fishingpole.png b/packages/client/public/img/sprites/items/fishingpole.png index e214f7ee0a..ae4ad443b0 100644 Binary files a/packages/client/public/img/sprites/items/fishingpole.png and b/packages/client/public/img/sprites/items/fishingpole.png differ diff --git a/packages/client/public/img/sprites/items/flameblackhelmet.png b/packages/client/public/img/sprites/items/flameblackhelmet.png new file mode 100644 index 0000000000..0ed5fd48a9 Binary files /dev/null and b/packages/client/public/img/sprites/items/flameblackhelmet.png differ diff --git a/packages/client/public/img/sprites/items/flamebluehelmet.png b/packages/client/public/img/sprites/items/flamebluehelmet.png new file mode 100644 index 0000000000..8d02ba536e Binary files /dev/null and b/packages/client/public/img/sprites/items/flamebluehelmet.png differ diff --git a/packages/client/public/img/sprites/items/flamecursehelmet.png b/packages/client/public/img/sprites/items/flamecursehelmet.png new file mode 100644 index 0000000000..3e574ffdeb Binary files /dev/null and b/packages/client/public/img/sprites/items/flamecursehelmet.png differ diff --git a/packages/client/public/img/sprites/items/flamehelmet.png b/packages/client/public/img/sprites/items/flamehelmet.png new file mode 100644 index 0000000000..3f377cbd8e Binary files /dev/null and b/packages/client/public/img/sprites/items/flamehelmet.png differ diff --git a/packages/client/public/img/sprites/items/flask.png b/packages/client/public/img/sprites/items/flask.png index e52a58acc0..3d2ad183c2 100644 Binary files a/packages/client/public/img/sprites/items/flask.png and b/packages/client/public/img/sprites/items/flask.png differ diff --git a/packages/client/public/img/sprites/items/froghelm.png b/packages/client/public/img/sprites/items/froghelm.png new file mode 100644 index 0000000000..c186a636f5 Binary files /dev/null and b/packages/client/public/img/sprites/items/froghelm.png differ diff --git a/packages/client/public/img/sprites/items/frostring.png b/packages/client/public/img/sprites/items/frostring.png index 02ed787259..3eaa081fca 100644 Binary files a/packages/client/public/img/sprites/items/frostring.png and b/packages/client/public/img/sprites/items/frostring.png differ diff --git a/packages/client/public/img/sprites/items/galaxylilies.png b/packages/client/public/img/sprites/items/galaxylilies.png new file mode 100644 index 0000000000..384987ddcb Binary files /dev/null and b/packages/client/public/img/sprites/items/galaxylilies.png differ diff --git a/packages/client/public/img/sprites/items/ginderpowderbowlsmall.png b/packages/client/public/img/sprites/items/ginderpowderbowlsmall.png index c7237b6934..a3928411f2 100644 Binary files a/packages/client/public/img/sprites/items/ginderpowderbowlsmall.png and b/packages/client/public/img/sprites/items/ginderpowderbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/ginger.png b/packages/client/public/img/sprites/items/ginger.png index 2a196957c2..f47309c2f2 100644 Binary files a/packages/client/public/img/sprites/items/ginger.png and b/packages/client/public/img/sprites/items/ginger.png differ diff --git a/packages/client/public/img/sprites/items/gingerbottle.png b/packages/client/public/img/sprites/items/gingerbottle.png index ee63f30d58..7a9f677294 100644 Binary files a/packages/client/public/img/sprites/items/gingerbottle.png and b/packages/client/public/img/sprites/items/gingerbottle.png differ diff --git a/packages/client/public/img/sprites/items/gingerpowder.png b/packages/client/public/img/sprites/items/gingerpowder.png index d000f78972..d6d78ec7c7 100644 Binary files a/packages/client/public/img/sprites/items/gingerpowder.png and b/packages/client/public/img/sprites/items/gingerpowder.png differ diff --git a/packages/client/public/img/sprites/items/godscroissant.png b/packages/client/public/img/sprites/items/godscroissant.png new file mode 100644 index 0000000000..2f1fff911a Binary files /dev/null and b/packages/client/public/img/sprites/items/godscroissant.png differ diff --git a/packages/client/public/img/sprites/items/gold.png b/packages/client/public/img/sprites/items/gold.png index 053ef702ed..f1209bd0ae 100644 Binary files a/packages/client/public/img/sprites/items/gold.png and b/packages/client/public/img/sprites/items/gold.png differ diff --git a/packages/client/public/img/sprites/items/goldaxe.png b/packages/client/public/img/sprites/items/goldaxe.png index b4d628299a..85ea37f6ce 100644 Binary files a/packages/client/public/img/sprites/items/goldaxe.png and b/packages/client/public/img/sprites/items/goldaxe.png differ diff --git a/packages/client/public/img/sprites/items/goldbar.png b/packages/client/public/img/sprites/items/goldbar.png index ed06aa1425..23d23f1ab5 100644 Binary files a/packages/client/public/img/sprites/items/goldbar.png and b/packages/client/public/img/sprites/items/goldbar.png differ diff --git a/packages/client/public/img/sprites/items/goldbattleaxe.png b/packages/client/public/img/sprites/items/goldbattleaxe.png new file mode 100644 index 0000000000..94adf9d8a0 Binary files /dev/null and b/packages/client/public/img/sprites/items/goldbattleaxe.png differ diff --git a/packages/client/public/img/sprites/items/goldboots.png b/packages/client/public/img/sprites/items/goldboots.png index 6c708e1ecd..325e2e69b6 100644 Binary files a/packages/client/public/img/sprites/items/goldboots.png and b/packages/client/public/img/sprites/items/goldboots.png differ diff --git a/packages/client/public/img/sprites/items/goldchestplate.png b/packages/client/public/img/sprites/items/goldchestplate.png new file mode 100644 index 0000000000..fc3cc53d4a Binary files /dev/null and b/packages/client/public/img/sprites/items/goldchestplate.png differ diff --git a/packages/client/public/img/sprites/items/goldgolemsmace.png b/packages/client/public/img/sprites/items/goldgolemsmace.png new file mode 100644 index 0000000000..4bb8d7049f Binary files /dev/null and b/packages/client/public/img/sprites/items/goldgolemsmace.png differ diff --git a/packages/client/public/img/sprites/items/goldhelmet.png b/packages/client/public/img/sprites/items/goldhelmet.png index e29c550ecb..fdf726076e 100644 Binary files a/packages/client/public/img/sprites/items/goldhelmet.png and b/packages/client/public/img/sprites/items/goldhelmet.png differ diff --git a/packages/client/public/img/sprites/items/goldlegplates.png b/packages/client/public/img/sprites/items/goldlegplates.png new file mode 100644 index 0000000000..87d6b1cd2c Binary files /dev/null and b/packages/client/public/img/sprites/items/goldlegplates.png differ diff --git a/packages/client/public/img/sprites/items/goldnugget.png b/packages/client/public/img/sprites/items/goldnugget.png index bf7a305854..6bb68ccdeb 100644 Binary files a/packages/client/public/img/sprites/items/goldnugget.png and b/packages/client/public/img/sprites/items/goldnugget.png differ diff --git a/packages/client/public/img/sprites/items/goldore.png b/packages/client/public/img/sprites/items/goldore.png index 7db7d24731..fd6ec828f3 100644 Binary files a/packages/client/public/img/sprites/items/goldore.png and b/packages/client/public/img/sprites/items/goldore.png differ diff --git a/packages/client/public/img/sprites/items/goldpickaxe.png b/packages/client/public/img/sprites/items/goldpickaxe.png new file mode 100644 index 0000000000..4d7f05e15c Binary files /dev/null and b/packages/client/public/img/sprites/items/goldpickaxe.png differ diff --git a/packages/client/public/img/sprites/items/goldring.png b/packages/client/public/img/sprites/items/goldring.png index 4c336ade4e..16a013934d 100644 Binary files a/packages/client/public/img/sprites/items/goldring.png and b/packages/client/public/img/sprites/items/goldring.png differ diff --git a/packages/client/public/img/sprites/items/goldring2.png b/packages/client/public/img/sprites/items/goldring2.png new file mode 100644 index 0000000000..d0adc0a311 Binary files /dev/null and b/packages/client/public/img/sprites/items/goldring2.png differ diff --git a/packages/client/public/img/sprites/items/goldscythe.png b/packages/client/public/img/sprites/items/goldscythe.png new file mode 100644 index 0000000000..7fa5b644e4 Binary files /dev/null and b/packages/client/public/img/sprites/items/goldscythe.png differ diff --git a/packages/client/public/img/sprites/items/goldshield.png b/packages/client/public/img/sprites/items/goldshield.png new file mode 100644 index 0000000000..a87267c962 Binary files /dev/null and b/packages/client/public/img/sprites/items/goldshield.png differ diff --git a/packages/client/public/img/sprites/items/goldspear.png b/packages/client/public/img/sprites/items/goldspear.png new file mode 100644 index 0000000000..208874d8b3 Binary files /dev/null and b/packages/client/public/img/sprites/items/goldspear.png differ diff --git a/packages/client/public/img/sprites/items/goldsword.png b/packages/client/public/img/sprites/items/goldsword.png index cfc0fad8c3..6f91c0ba9e 100644 Binary files a/packages/client/public/img/sprites/items/goldsword.png and b/packages/client/public/img/sprites/items/goldsword.png differ diff --git a/packages/client/public/img/sprites/items/golemsmace.png b/packages/client/public/img/sprites/items/golemsmace.png new file mode 100644 index 0000000000..cfe2d826f4 Binary files /dev/null and b/packages/client/public/img/sprites/items/golemsmace.png differ diff --git a/packages/client/public/img/sprites/items/gooseberry.png b/packages/client/public/img/sprites/items/gooseberry.png index 6409e81b05..faaf59ff49 100644 Binary files a/packages/client/public/img/sprites/items/gooseberry.png and b/packages/client/public/img/sprites/items/gooseberry.png differ diff --git a/packages/client/public/img/sprites/items/greenlightsaber.png b/packages/client/public/img/sprites/items/greenlightsaber.png new file mode 100644 index 0000000000..62d06c3527 Binary files /dev/null and b/packages/client/public/img/sprites/items/greenlightsaber.png differ diff --git a/packages/client/public/img/sprites/items/greenmysticchest.png b/packages/client/public/img/sprites/items/greenmysticchest.png new file mode 100644 index 0000000000..616cc63e6c Binary files /dev/null and b/packages/client/public/img/sprites/items/greenmysticchest.png differ diff --git a/packages/client/public/img/sprites/items/greenpendant.png b/packages/client/public/img/sprites/items/greenpendant.png index afbdcb615e..dec89f7d2d 100644 Binary files a/packages/client/public/img/sprites/items/greenpendant.png and b/packages/client/public/img/sprites/items/greenpendant.png differ diff --git a/packages/client/public/img/sprites/items/greenworm.png b/packages/client/public/img/sprites/items/greenworm.png new file mode 100644 index 0000000000..d961b0576d Binary files /dev/null and b/packages/client/public/img/sprites/items/greenworm.png differ diff --git a/packages/client/public/img/sprites/items/gun.png b/packages/client/public/img/sprites/items/gun.png new file mode 100644 index 0000000000..336cd0c27a Binary files /dev/null and b/packages/client/public/img/sprites/items/gun.png differ diff --git a/packages/client/public/img/sprites/items/hammer.png b/packages/client/public/img/sprites/items/hammer.png new file mode 100644 index 0000000000..568f04e6e8 Binary files /dev/null and b/packages/client/public/img/sprites/items/hammer.png differ diff --git a/packages/client/public/img/sprites/items/harmoniccrossband.png b/packages/client/public/img/sprites/items/harmoniccrossband.png new file mode 100644 index 0000000000..093ce7618a Binary files /dev/null and b/packages/client/public/img/sprites/items/harmoniccrossband.png differ diff --git a/packages/client/public/img/sprites/items/heavyberylpickaxe.png b/packages/client/public/img/sprites/items/heavyberylpickaxe.png new file mode 100644 index 0000000000..ef814659b2 Binary files /dev/null and b/packages/client/public/img/sprites/items/heavyberylpickaxe.png differ diff --git a/packages/client/public/img/sprites/items/heliphatitlogs.png b/packages/client/public/img/sprites/items/heliphatitlogs.png new file mode 100644 index 0000000000..0b66dcdbeb Binary files /dev/null and b/packages/client/public/img/sprites/items/heliphatitlogs.png differ diff --git a/packages/client/public/img/sprites/items/hellhoundfang.png b/packages/client/public/img/sprites/items/hellhoundfang.png new file mode 100644 index 0000000000..bb83697871 Binary files /dev/null and b/packages/client/public/img/sprites/items/hellhoundfang.png differ diff --git a/packages/client/public/img/sprites/items/hellkeeperboots.png b/packages/client/public/img/sprites/items/hellkeeperboots.png new file mode 100644 index 0000000000..ab420a2df3 Binary files /dev/null and b/packages/client/public/img/sprites/items/hellkeeperboots.png differ diff --git a/packages/client/public/img/sprites/items/hellkeeperchestplate.png b/packages/client/public/img/sprites/items/hellkeeperchestplate.png new file mode 100644 index 0000000000..09628989cc Binary files /dev/null and b/packages/client/public/img/sprites/items/hellkeeperchestplate.png differ diff --git a/packages/client/public/img/sprites/items/hellkeeperhelm.png b/packages/client/public/img/sprites/items/hellkeeperhelm.png new file mode 100644 index 0000000000..8effdb0661 Binary files /dev/null and b/packages/client/public/img/sprites/items/hellkeeperhelm.png differ diff --git a/packages/client/public/img/sprites/items/hellkeeperlegplates.png b/packages/client/public/img/sprites/items/hellkeeperlegplates.png new file mode 100644 index 0000000000..90670667ea Binary files /dev/null and b/packages/client/public/img/sprites/items/hellkeeperlegplates.png differ diff --git a/packages/client/public/img/sprites/items/hellsword.png b/packages/client/public/img/sprites/items/hellsword.png new file mode 100644 index 0000000000..f016c27aff Binary files /dev/null and b/packages/client/public/img/sprites/items/hellsword.png differ diff --git a/packages/client/public/img/sprites/items/helmofhaste.png b/packages/client/public/img/sprites/items/helmofhaste.png new file mode 100644 index 0000000000..22b4f67d49 Binary files /dev/null and b/packages/client/public/img/sprites/items/helmofhaste.png differ diff --git a/packages/client/public/img/sprites/items/helmofliberty.png b/packages/client/public/img/sprites/items/helmofliberty.png new file mode 100644 index 0000000000..cf3e642639 Binary files /dev/null and b/packages/client/public/img/sprites/items/helmofliberty.png differ diff --git a/packages/client/public/img/sprites/items/hemocytelogs.png b/packages/client/public/img/sprites/items/hemocytelogs.png new file mode 100644 index 0000000000..2df64d4578 Binary files /dev/null and b/packages/client/public/img/sprites/items/hemocytelogs.png differ diff --git a/packages/client/public/img/sprites/items/hilt1.png b/packages/client/public/img/sprites/items/hilt1.png index 555667a5a6..8ae1184820 100644 Binary files a/packages/client/public/img/sprites/items/hilt1.png and b/packages/client/public/img/sprites/items/hilt1.png differ diff --git a/packages/client/public/img/sprites/items/hilt2.png b/packages/client/public/img/sprites/items/hilt2.png index 82f066b973..4ddbbcc34f 100644 Binary files a/packages/client/public/img/sprites/items/hilt2.png and b/packages/client/public/img/sprites/items/hilt2.png differ diff --git a/packages/client/public/img/sprites/items/horseradish.png b/packages/client/public/img/sprites/items/horseradish.png index dbdde674d7..d8bb0093c1 100644 Binary files a/packages/client/public/img/sprites/items/horseradish.png and b/packages/client/public/img/sprites/items/horseradish.png differ diff --git a/packages/client/public/img/sprites/items/horseradishbottle.png b/packages/client/public/img/sprites/items/horseradishbottle.png index c25cac0f5d..713f38fb92 100644 Binary files a/packages/client/public/img/sprites/items/horseradishbottle.png and b/packages/client/public/img/sprites/items/horseradishbottle.png differ diff --git a/packages/client/public/img/sprites/items/horseradishbowlsmall.png b/packages/client/public/img/sprites/items/horseradishbowlsmall.png index ef13cb80d6..97606c83c0 100644 Binary files a/packages/client/public/img/sprites/items/horseradishbowlsmall.png and b/packages/client/public/img/sprites/items/horseradishbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/horseradishsmashedbowlsmall.png b/packages/client/public/img/sprites/items/horseradishsmashedbowlsmall.png index 6507a18394..260b787f7e 100644 Binary files a/packages/client/public/img/sprites/items/horseradishsmashedbowlsmall.png and b/packages/client/public/img/sprites/items/horseradishsmashedbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/hotsauce.png b/packages/client/public/img/sprites/items/hotsauce.png index d4db6ac067..f8a8bb7b29 100644 Binary files a/packages/client/public/img/sprites/items/hotsauce.png and b/packages/client/public/img/sprites/items/hotsauce.png differ diff --git a/packages/client/public/img/sprites/items/iboarrow.png b/packages/client/public/img/sprites/items/iboarrow.png index ccd058c8f8..b96aaa6446 100644 Binary files a/packages/client/public/img/sprites/items/iboarrow.png and b/packages/client/public/img/sprites/items/iboarrow.png differ diff --git a/packages/client/public/img/sprites/items/iboore.png b/packages/client/public/img/sprites/items/iboore.png index c3d3a96633..7acda89220 100644 Binary files a/packages/client/public/img/sprites/items/iboore.png and b/packages/client/public/img/sprites/items/iboore.png differ diff --git a/packages/client/public/img/sprites/items/ibosword.png b/packages/client/public/img/sprites/items/ibosword.png index 92e4cadf80..8c99b2d8d1 100644 Binary files a/packages/client/public/img/sprites/items/ibosword.png and b/packages/client/public/img/sprites/items/ibosword.png differ diff --git a/packages/client/public/img/sprites/items/icearrow.png b/packages/client/public/img/sprites/items/icearrow.png index 5036be9841..a563d6b6be 100644 Binary files a/packages/client/public/img/sprites/items/icearrow.png and b/packages/client/public/img/sprites/items/icearrow.png differ diff --git a/packages/client/public/img/sprites/items/icebead.png b/packages/client/public/img/sprites/items/icebead.png index 63db186afc..b7273142a7 100644 Binary files a/packages/client/public/img/sprites/items/icebead.png and b/packages/client/public/img/sprites/items/icebead.png differ diff --git a/packages/client/public/img/sprites/items/icelogs.png b/packages/client/public/img/sprites/items/icelogs.png index 76e2b02f77..037f81b5b9 100644 Binary files a/packages/client/public/img/sprites/items/icelogs.png and b/packages/client/public/img/sprites/items/icelogs.png differ diff --git a/packages/client/public/img/sprites/items/icepalmlogs.png b/packages/client/public/img/sprites/items/icepalmlogs.png index 3d0035ff23..cf1f0f8324 100644 Binary files a/packages/client/public/img/sprites/items/icepalmlogs.png and b/packages/client/public/img/sprites/items/icepalmlogs.png differ diff --git a/packages/client/public/img/sprites/items/icepinelogs.png b/packages/client/public/img/sprites/items/icepinelogs.png index abac671703..7a05822a47 100644 Binary files a/packages/client/public/img/sprites/items/icepinelogs.png and b/packages/client/public/img/sprites/items/icepinelogs.png differ diff --git a/packages/client/public/img/sprites/items/icerose.png b/packages/client/public/img/sprites/items/icerose.png index 40efea1886..d513b5a211 100644 Binary files a/packages/client/public/img/sprites/items/icerose.png and b/packages/client/public/img/sprites/items/icerose.png differ diff --git a/packages/client/public/img/sprites/items/icesword.png b/packages/client/public/img/sprites/items/icesword.png index ba5cc11c64..d1483ebd50 100644 Binary files a/packages/client/public/img/sprites/items/icesword.png and b/packages/client/public/img/sprites/items/icesword.png differ diff --git a/packages/client/public/img/sprites/items/ironaxe.png b/packages/client/public/img/sprites/items/ironaxe.png index 719f1244a3..b186e98bc7 100644 Binary files a/packages/client/public/img/sprites/items/ironaxe.png and b/packages/client/public/img/sprites/items/ironaxe.png differ diff --git a/packages/client/public/img/sprites/items/ironbar.png b/packages/client/public/img/sprites/items/ironbar.png index 3207719888..6b04c91ea4 100644 Binary files a/packages/client/public/img/sprites/items/ironbar.png and b/packages/client/public/img/sprites/items/ironbar.png differ diff --git a/packages/client/public/img/sprites/items/ironbattleaxe.png b/packages/client/public/img/sprites/items/ironbattleaxe.png new file mode 100644 index 0000000000..7acc4e431d Binary files /dev/null and b/packages/client/public/img/sprites/items/ironbattleaxe.png differ diff --git a/packages/client/public/img/sprites/items/ironboots.png b/packages/client/public/img/sprites/items/ironboots.png new file mode 100644 index 0000000000..4604e3e429 Binary files /dev/null and b/packages/client/public/img/sprites/items/ironboots.png differ diff --git a/packages/client/public/img/sprites/items/ironchestplate.png b/packages/client/public/img/sprites/items/ironchestplate.png index 299d2e3605..430a2f2783 100644 Binary files a/packages/client/public/img/sprites/items/ironchestplate.png and b/packages/client/public/img/sprites/items/ironchestplate.png differ diff --git a/packages/client/public/img/sprites/items/ironhelmet.png b/packages/client/public/img/sprites/items/ironhelmet.png index 1547a2da43..e13b56ba00 100644 Binary files a/packages/client/public/img/sprites/items/ironhelmet.png and b/packages/client/public/img/sprites/items/ironhelmet.png differ diff --git a/packages/client/public/img/sprites/items/ironlegplates.png b/packages/client/public/img/sprites/items/ironlegplates.png new file mode 100644 index 0000000000..d5aa080000 Binary files /dev/null and b/packages/client/public/img/sprites/items/ironlegplates.png differ diff --git a/packages/client/public/img/sprites/items/ironlegs.png b/packages/client/public/img/sprites/items/ironlegs.png deleted file mode 100644 index 3b9bb5e419..0000000000 Binary files a/packages/client/public/img/sprites/items/ironlegs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/ironore.png b/packages/client/public/img/sprites/items/ironore.png index 5d477b6e8d..428e327fd4 100644 Binary files a/packages/client/public/img/sprites/items/ironore.png and b/packages/client/public/img/sprites/items/ironore.png differ diff --git a/packages/client/public/img/sprites/items/ironpickaxe.png b/packages/client/public/img/sprites/items/ironpickaxe.png new file mode 100644 index 0000000000..809d185af1 Binary files /dev/null and b/packages/client/public/img/sprites/items/ironpickaxe.png differ diff --git a/packages/client/public/img/sprites/items/ironring.png b/packages/client/public/img/sprites/items/ironring.png new file mode 100644 index 0000000000..c77b132953 Binary files /dev/null and b/packages/client/public/img/sprites/items/ironring.png differ diff --git a/packages/client/public/img/sprites/items/ironroundshield.png b/packages/client/public/img/sprites/items/ironroundshield.png new file mode 100644 index 0000000000..71f52786f5 Binary files /dev/null and b/packages/client/public/img/sprites/items/ironroundshield.png differ diff --git a/packages/client/public/img/sprites/items/ironscythe.png b/packages/client/public/img/sprites/items/ironscythe.png new file mode 100644 index 0000000000..6e0dfb3f09 Binary files /dev/null and b/packages/client/public/img/sprites/items/ironscythe.png differ diff --git a/packages/client/public/img/sprites/items/ironshield.png b/packages/client/public/img/sprites/items/ironshield.png new file mode 100644 index 0000000000..ac121137a7 Binary files /dev/null and b/packages/client/public/img/sprites/items/ironshield.png differ diff --git a/packages/client/public/img/sprites/items/ironspear.png b/packages/client/public/img/sprites/items/ironspear.png new file mode 100644 index 0000000000..90d5b7f60e Binary files /dev/null and b/packages/client/public/img/sprites/items/ironspear.png differ diff --git a/packages/client/public/img/sprites/items/ironsword.png b/packages/client/public/img/sprites/items/ironsword.png index aeaf5f56e0..4efc6f7569 100644 Binary files a/packages/client/public/img/sprites/items/ironsword.png and b/packages/client/public/img/sprites/items/ironsword.png differ diff --git a/packages/client/public/img/sprites/items/jellyfish.png b/packages/client/public/img/sprites/items/jellyfish.png index 2d647f1dee..f55683fe9c 100644 Binary files a/packages/client/public/img/sprites/items/jellyfish.png and b/packages/client/public/img/sprites/items/jellyfish.png differ diff --git a/packages/client/public/img/sprites/items/jellyfishsmoothie.png b/packages/client/public/img/sprites/items/jellyfishsmoothie.png index 4724a6ca81..4f64e106ed 100644 Binary files a/packages/client/public/img/sprites/items/jellyfishsmoothie.png and b/packages/client/public/img/sprites/items/jellyfishsmoothie.png differ diff --git a/packages/client/public/img/sprites/items/jesterhat.png b/packages/client/public/img/sprites/items/jesterhat.png new file mode 100644 index 0000000000..3e044557e3 Binary files /dev/null and b/packages/client/public/img/sprites/items/jesterhat.png differ diff --git a/packages/client/public/img/sprites/items/kelp.png b/packages/client/public/img/sprites/items/kelp.png index 11445e8f25..1a7abeed1f 100644 Binary files a/packages/client/public/img/sprites/items/kelp.png and b/packages/client/public/img/sprites/items/kelp.png differ diff --git a/packages/client/public/img/sprites/items/kiwi.png b/packages/client/public/img/sprites/items/kiwi.png index 14a54fb676..1b307f9ee2 100644 Binary files a/packages/client/public/img/sprites/items/kiwi.png and b/packages/client/public/img/sprites/items/kiwi.png differ diff --git a/packages/client/public/img/sprites/items/knife.png b/packages/client/public/img/sprites/items/knife.png index 0af8694ac7..d2cc38a762 100644 Binary files a/packages/client/public/img/sprites/items/knife.png and b/packages/client/public/img/sprites/items/knife.png differ diff --git a/packages/client/public/img/sprites/items/knightchestplate.png b/packages/client/public/img/sprites/items/knightchestplate.png new file mode 100644 index 0000000000..4da7a9550e Binary files /dev/null and b/packages/client/public/img/sprites/items/knightchestplate.png differ diff --git a/packages/client/public/img/sprites/items/knighthelmet.png b/packages/client/public/img/sprites/items/knighthelmet.png new file mode 100644 index 0000000000..892576186f Binary files /dev/null and b/packages/client/public/img/sprites/items/knighthelmet.png differ diff --git a/packages/client/public/img/sprites/items/knightlegplates.png b/packages/client/public/img/sprites/items/knightlegplates.png new file mode 100644 index 0000000000..49052517d7 Binary files /dev/null and b/packages/client/public/img/sprites/items/knightlegplates.png differ diff --git a/packages/client/public/img/sprites/items/lantern.png b/packages/client/public/img/sprites/items/lantern.png new file mode 100644 index 0000000000..0fb77fe1d4 Binary files /dev/null and b/packages/client/public/img/sprites/items/lantern.png differ diff --git a/packages/client/public/img/sprites/items/lantern2.png b/packages/client/public/img/sprites/items/lantern2.png new file mode 100644 index 0000000000..b11224bc55 Binary files /dev/null and b/packages/client/public/img/sprites/items/lantern2.png differ diff --git a/packages/client/public/img/sprites/items/lanternarcan.png b/packages/client/public/img/sprites/items/lanternarcan.png new file mode 100644 index 0000000000..1d5652bac3 Binary files /dev/null and b/packages/client/public/img/sprites/items/lanternarcan.png differ diff --git a/packages/client/public/img/sprites/items/lapislazuli.png b/packages/client/public/img/sprites/items/lapislazuli.png index 4a3b833717..56d873ed10 100644 Binary files a/packages/client/public/img/sprites/items/lapislazuli.png and b/packages/client/public/img/sprites/items/lapislazuli.png differ diff --git a/packages/client/public/img/sprites/items/largeemptyvial.png b/packages/client/public/img/sprites/items/largeemptyvial.png new file mode 100644 index 0000000000..1c6641740d Binary files /dev/null and b/packages/client/public/img/sprites/items/largeemptyvial.png differ diff --git a/packages/client/public/img/sprites/items/lavaboots.png b/packages/client/public/img/sprites/items/lavaboots.png index d97d7256de..ef141a83fa 100644 Binary files a/packages/client/public/img/sprites/items/lavaboots.png and b/packages/client/public/img/sprites/items/lavaboots.png differ diff --git a/packages/client/public/img/sprites/items/lavender.png b/packages/client/public/img/sprites/items/lavender.png index 813bfbc9e1..1e07b3859b 100644 Binary files a/packages/client/public/img/sprites/items/lavender.png and b/packages/client/public/img/sprites/items/lavender.png differ diff --git a/packages/client/public/img/sprites/items/lavenderbowlsmall.png b/packages/client/public/img/sprites/items/lavenderbowlsmall.png index 77c38f65b1..707ce411e1 100644 Binary files a/packages/client/public/img/sprites/items/lavenderbowlsmall.png and b/packages/client/public/img/sprites/items/lavenderbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/lavenderseeds.png b/packages/client/public/img/sprites/items/lavenderseeds.png index 0275b09850..567c4fc3fb 100644 Binary files a/packages/client/public/img/sprites/items/lavenderseeds.png and b/packages/client/public/img/sprites/items/lavenderseeds.png differ diff --git a/packages/client/public/img/sprites/items/lavendershaker.png b/packages/client/public/img/sprites/items/lavendershaker.png index 72e0d39a65..d04ec1a528 100644 Binary files a/packages/client/public/img/sprites/items/lavendershaker.png and b/packages/client/public/img/sprites/items/lavendershaker.png differ diff --git a/packages/client/public/img/sprites/items/leaf.png b/packages/client/public/img/sprites/items/leaf.png index a0066863df..d3f576cbeb 100644 Binary files a/packages/client/public/img/sprites/items/leaf.png and b/packages/client/public/img/sprites/items/leaf.png differ diff --git a/packages/client/public/img/sprites/items/leatherboots.png b/packages/client/public/img/sprites/items/leatherboots.png index b9fc0a526c..f7dee6b3e5 100644 Binary files a/packages/client/public/img/sprites/items/leatherboots.png and b/packages/client/public/img/sprites/items/leatherboots.png differ diff --git a/packages/client/public/img/sprites/items/leatherchest.png b/packages/client/public/img/sprites/items/leatherchest.png new file mode 100644 index 0000000000..659c3fd988 Binary files /dev/null and b/packages/client/public/img/sprites/items/leatherchest.png differ diff --git a/packages/client/public/img/sprites/items/leatherhelmet.png b/packages/client/public/img/sprites/items/leatherhelmet.png new file mode 100644 index 0000000000..7bdd96f8b8 Binary files /dev/null and b/packages/client/public/img/sprites/items/leatherhelmet.png differ diff --git a/packages/client/public/img/sprites/items/leatherleggings.png b/packages/client/public/img/sprites/items/leatherleggings.png new file mode 100644 index 0000000000..c85de14869 Binary files /dev/null and b/packages/client/public/img/sprites/items/leatherleggings.png differ diff --git a/packages/client/public/img/sprites/items/lightningarrow.png b/packages/client/public/img/sprites/items/lightningarrow.png index 5cde7c01d1..335e80dd2a 100644 Binary files a/packages/client/public/img/sprites/items/lightningarrow.png and b/packages/client/public/img/sprites/items/lightningarrow.png differ diff --git a/packages/client/public/img/sprites/items/lightningbead.png b/packages/client/public/img/sprites/items/lightningbead.png index 9261fc6514..22bedf15ab 100644 Binary files a/packages/client/public/img/sprites/items/lightningbead.png and b/packages/client/public/img/sprites/items/lightningbead.png differ diff --git a/packages/client/public/img/sprites/items/lightningstaff.png b/packages/client/public/img/sprites/items/lightningstaff.png index 303db632ef..0ee2dcfea4 100644 Binary files a/packages/client/public/img/sprites/items/lightningstaff.png and b/packages/client/public/img/sprites/items/lightningstaff.png differ diff --git a/packages/client/public/img/sprites/items/livinganchorroot.png b/packages/client/public/img/sprites/items/livinganchorroot.png new file mode 100644 index 0000000000..3d7a074cfd Binary files /dev/null and b/packages/client/public/img/sprites/items/livinganchorroot.png differ diff --git a/packages/client/public/img/sprites/items/logs.png b/packages/client/public/img/sprites/items/logs.png index 9f48ea8cea..161b0ca3b4 100644 Binary files a/packages/client/public/img/sprites/items/logs.png and b/packages/client/public/img/sprites/items/logs.png differ diff --git a/packages/client/public/img/sprites/items/lolipop.png b/packages/client/public/img/sprites/items/lolipop.png new file mode 100644 index 0000000000..7e3fe0d005 Binary files /dev/null and b/packages/client/public/img/sprites/items/lolipop.png differ diff --git a/packages/client/public/img/sprites/items/lootbag.png b/packages/client/public/img/sprites/items/lootbag.png index d9729d39ad..2b8d17768d 100644 Binary files a/packages/client/public/img/sprites/items/lootbag.png and b/packages/client/public/img/sprites/items/lootbag.png differ diff --git a/packages/client/public/img/sprites/items/loveactring.png b/packages/client/public/img/sprites/items/loveactring.png index eb7ed99edd..d198a0d8fb 100644 Binary files a/packages/client/public/img/sprites/items/loveactring.png and b/packages/client/public/img/sprites/items/loveactring.png differ diff --git a/packages/client/public/img/sprites/items/magichamberge.png b/packages/client/public/img/sprites/items/magichamberge.png new file mode 100644 index 0000000000..3542a558ec Binary files /dev/null and b/packages/client/public/img/sprites/items/magichamberge.png differ diff --git a/packages/client/public/img/sprites/items/magmaboots.png b/packages/client/public/img/sprites/items/magmaboots.png new file mode 100644 index 0000000000..efec0343be Binary files /dev/null and b/packages/client/public/img/sprites/items/magmaboots.png differ diff --git a/packages/client/public/img/sprites/items/magmahelm.png b/packages/client/public/img/sprites/items/magmahelm.png new file mode 100644 index 0000000000..e81a7e473d Binary files /dev/null and b/packages/client/public/img/sprites/items/magmahelm.png differ diff --git a/packages/client/public/img/sprites/items/manaberry.png b/packages/client/public/img/sprites/items/manaberry.png new file mode 100644 index 0000000000..26dd7f3116 Binary files /dev/null and b/packages/client/public/img/sprites/items/manaberry.png differ diff --git a/packages/client/public/img/sprites/items/manaflask.png b/packages/client/public/img/sprites/items/manaflask.png index 625e53ef0c..205f42a454 100644 Binary files a/packages/client/public/img/sprites/items/manaflask.png and b/packages/client/public/img/sprites/items/manaflask.png differ diff --git a/packages/client/public/img/sprites/items/mango.png b/packages/client/public/img/sprites/items/mango.png index 2e9cf4cb2a..5ce3526e88 100644 Binary files a/packages/client/public/img/sprites/items/mango.png and b/packages/client/public/img/sprites/items/mango.png differ diff --git a/packages/client/public/img/sprites/items/melon-slice.png b/packages/client/public/img/sprites/items/melon-slice.png deleted file mode 100644 index ecc019e058..0000000000 Binary files a/packages/client/public/img/sprites/items/melon-slice.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/midnightamethystboots.png b/packages/client/public/img/sprites/items/midnightamethystboots.png new file mode 100644 index 0000000000..e26616d712 Binary files /dev/null and b/packages/client/public/img/sprites/items/midnightamethystboots.png differ diff --git a/packages/client/public/img/sprites/items/midnightamethystchestplate.png b/packages/client/public/img/sprites/items/midnightamethystchestplate.png new file mode 100644 index 0000000000..5ce51946fd Binary files /dev/null and b/packages/client/public/img/sprites/items/midnightamethystchestplate.png differ diff --git a/packages/client/public/img/sprites/items/midnightamethysthelm.png b/packages/client/public/img/sprites/items/midnightamethysthelm.png new file mode 100644 index 0000000000..2c88b361a9 Binary files /dev/null and b/packages/client/public/img/sprites/items/midnightamethysthelm.png differ diff --git a/packages/client/public/img/sprites/items/midnightamethystlegplates.png b/packages/client/public/img/sprites/items/midnightamethystlegplates.png new file mode 100644 index 0000000000..fefd879f95 Binary files /dev/null and b/packages/client/public/img/sprites/items/midnightamethystlegplates.png differ diff --git a/packages/client/public/img/sprites/items/milkbottle.png b/packages/client/public/img/sprites/items/milkbottle.png index fa88ca3000..6bd695c399 100644 Binary files a/packages/client/public/img/sprites/items/milkbottle.png and b/packages/client/public/img/sprites/items/milkbottle.png differ diff --git a/packages/client/public/img/sprites/items/mineral.png b/packages/client/public/img/sprites/items/mineral.png index 9018de5573..d9e4879f15 100644 Binary files a/packages/client/public/img/sprites/items/mineral.png and b/packages/client/public/img/sprites/items/mineral.png differ diff --git a/packages/client/public/img/sprites/items/minitaurchest.png b/packages/client/public/img/sprites/items/minitaurchest.png new file mode 100644 index 0000000000..616cc63e6c Binary files /dev/null and b/packages/client/public/img/sprites/items/minitaurchest.png differ diff --git a/packages/client/public/img/sprites/items/minitauruschestplate.png b/packages/client/public/img/sprites/items/minitauruschestplate.png new file mode 100644 index 0000000000..efa4c2cc1a Binary files /dev/null and b/packages/client/public/img/sprites/items/minitauruschestplate.png differ diff --git a/packages/client/public/img/sprites/items/minitaurushelmet.png b/packages/client/public/img/sprites/items/minitaurushelmet.png new file mode 100644 index 0000000000..c140a9c9bf Binary files /dev/null and b/packages/client/public/img/sprites/items/minitaurushelmet.png differ diff --git a/packages/client/public/img/sprites/items/minitauruslegboots.png b/packages/client/public/img/sprites/items/minitauruslegboots.png new file mode 100644 index 0000000000..a741a50932 Binary files /dev/null and b/packages/client/public/img/sprites/items/minitauruslegboots.png differ diff --git a/packages/client/public/img/sprites/items/minitauruslegplates.png b/packages/client/public/img/sprites/items/minitauruslegplates.png new file mode 100644 index 0000000000..43b04d17d8 Binary files /dev/null and b/packages/client/public/img/sprites/items/minitauruslegplates.png differ diff --git a/packages/client/public/img/sprites/items/mint.png b/packages/client/public/img/sprites/items/mint.png index 8c2fd8723f..335abafeaf 100644 Binary files a/packages/client/public/img/sprites/items/mint.png and b/packages/client/public/img/sprites/items/mint.png differ diff --git a/packages/client/public/img/sprites/items/mintbowlsmall.png b/packages/client/public/img/sprites/items/mintbowlsmall.png index 063683685e..105e537bee 100644 Binary files a/packages/client/public/img/sprites/items/mintbowlsmall.png and b/packages/client/public/img/sprites/items/mintbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/moongreataxe.png b/packages/client/public/img/sprites/items/moongreataxe.png new file mode 100644 index 0000000000..73a0f1e225 Binary files /dev/null and b/packages/client/public/img/sprites/items/moongreataxe.png differ diff --git a/packages/client/public/img/sprites/items/moonhelm.png b/packages/client/public/img/sprites/items/moonhelm.png new file mode 100644 index 0000000000..8dc9504f2a Binary files /dev/null and b/packages/client/public/img/sprites/items/moonhelm.png differ diff --git a/packages/client/public/img/sprites/items/moonrockore.png b/packages/client/public/img/sprites/items/moonrockore.png index 514264f3ce..8809761cf3 100644 Binary files a/packages/client/public/img/sprites/items/moonrockore.png and b/packages/client/public/img/sprites/items/moonrockore.png differ diff --git a/packages/client/public/img/sprites/items/mulberry.png b/packages/client/public/img/sprites/items/mulberry.png index ad4725d668..648d9a0965 100644 Binary files a/packages/client/public/img/sprites/items/mulberry.png and b/packages/client/public/img/sprites/items/mulberry.png differ diff --git a/packages/client/public/img/sprites/items/mushroom1.png b/packages/client/public/img/sprites/items/mushroom1.png index 35dd780afd..56377f070c 100644 Binary files a/packages/client/public/img/sprites/items/mushroom1.png and b/packages/client/public/img/sprites/items/mushroom1.png differ diff --git a/packages/client/public/img/sprites/items/mushroom2.png b/packages/client/public/img/sprites/items/mushroom2.png index 726da69a89..06f90ca229 100644 Binary files a/packages/client/public/img/sprites/items/mushroom2.png and b/packages/client/public/img/sprites/items/mushroom2.png differ diff --git a/packages/client/public/img/sprites/items/mushroom3.png b/packages/client/public/img/sprites/items/mushroom3.png index 513adeb43e..701d7523c8 100644 Binary files a/packages/client/public/img/sprites/items/mushroom3.png and b/packages/client/public/img/sprites/items/mushroom3.png differ diff --git a/packages/client/public/img/sprites/items/mushroom4.png b/packages/client/public/img/sprites/items/mushroom4.png index 1f65376ccb..10253cba7c 100644 Binary files a/packages/client/public/img/sprites/items/mushroom4.png and b/packages/client/public/img/sprites/items/mushroom4.png differ diff --git a/packages/client/public/img/sprites/items/mushroom5.png b/packages/client/public/img/sprites/items/mushroom5.png index 77aa496c7f..c361880266 100644 Binary files a/packages/client/public/img/sprites/items/mushroom5.png and b/packages/client/public/img/sprites/items/mushroom5.png differ diff --git a/packages/client/public/img/sprites/items/mushroom6.png b/packages/client/public/img/sprites/items/mushroom6.png index 4ec46fb9bd..62f346b9e1 100644 Binary files a/packages/client/public/img/sprites/items/mushroom6.png and b/packages/client/public/img/sprites/items/mushroom6.png differ diff --git a/packages/client/public/img/sprites/items/mushroomhat.png b/packages/client/public/img/sprites/items/mushroomhat.png new file mode 100644 index 0000000000..c1b8ec66b8 Binary files /dev/null and b/packages/client/public/img/sprites/items/mushroomhat.png differ diff --git a/packages/client/public/img/sprites/items/mustardbottle.png b/packages/client/public/img/sprites/items/mustardbottle.png index 9f2d631b62..200f77c49b 100644 Binary files a/packages/client/public/img/sprites/items/mustardbottle.png and b/packages/client/public/img/sprites/items/mustardbottle.png differ diff --git a/packages/client/public/img/sprites/items/mustardbowlsmall.png b/packages/client/public/img/sprites/items/mustardbowlsmall.png index d493a0a039..6d5fd841c5 100644 Binary files a/packages/client/public/img/sprites/items/mustardbowlsmall.png and b/packages/client/public/img/sprites/items/mustardbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/mustardplant.png b/packages/client/public/img/sprites/items/mustardplant.png index 52b62c0e38..4f0a9e883e 100644 Binary files a/packages/client/public/img/sprites/items/mustardplant.png and b/packages/client/public/img/sprites/items/mustardplant.png differ diff --git a/packages/client/public/img/sprites/items/mysticchest.png b/packages/client/public/img/sprites/items/mysticchest.png new file mode 100644 index 0000000000..616cc63e6c Binary files /dev/null and b/packages/client/public/img/sprites/items/mysticchest.png differ diff --git a/packages/client/public/img/sprites/items/naturebead.png b/packages/client/public/img/sprites/items/naturebead.png index ced67e6be0..8d746bdbfb 100644 Binary files a/packages/client/public/img/sprites/items/naturebead.png and b/packages/client/public/img/sprites/items/naturebead.png differ diff --git a/packages/client/public/img/sprites/items/naturecrystalhood.png b/packages/client/public/img/sprites/items/naturecrystalhood.png new file mode 100644 index 0000000000..d8dbb50aa7 Binary files /dev/null and b/packages/client/public/img/sprites/items/naturecrystalhood.png differ diff --git a/packages/client/public/img/sprites/items/naturestaff.png b/packages/client/public/img/sprites/items/naturestaff.png index fa5d3058d3..21a635664a 100644 Binary files a/packages/client/public/img/sprites/items/naturestaff.png and b/packages/client/public/img/sprites/items/naturestaff.png differ diff --git a/packages/client/public/img/sprites/items/nexuscross.png b/packages/client/public/img/sprites/items/nexuscross.png new file mode 100644 index 0000000000..b952741d6c Binary files /dev/null and b/packages/client/public/img/sprites/items/nexuscross.png differ diff --git a/packages/client/public/img/sprites/items/nightboots.png b/packages/client/public/img/sprites/items/nightboots.png new file mode 100644 index 0000000000..f410e48408 Binary files /dev/null and b/packages/client/public/img/sprites/items/nightboots.png differ diff --git a/packages/client/public/img/sprites/items/nightchestplate.png b/packages/client/public/img/sprites/items/nightchestplate.png new file mode 100644 index 0000000000..610c4da777 Binary files /dev/null and b/packages/client/public/img/sprites/items/nightchestplate.png differ diff --git a/packages/client/public/img/sprites/items/nighthelm.png b/packages/client/public/img/sprites/items/nighthelm.png new file mode 100644 index 0000000000..23f683f585 Binary files /dev/null and b/packages/client/public/img/sprites/items/nighthelm.png differ diff --git a/packages/client/public/img/sprites/items/nightlegplates.png b/packages/client/public/img/sprites/items/nightlegplates.png new file mode 100644 index 0000000000..db15c6f852 Binary files /dev/null and b/packages/client/public/img/sprites/items/nightlegplates.png differ diff --git a/packages/client/public/img/sprites/items/nightsword.png b/packages/client/public/img/sprites/items/nightsword.png new file mode 100644 index 0000000000..41d4f81a63 Binary files /dev/null and b/packages/client/public/img/sprites/items/nightsword.png differ diff --git a/packages/client/public/img/sprites/items/nisocarrow.png b/packages/client/public/img/sprites/items/nisocarrow.png index 78a73a603a..d2576b82fe 100644 Binary files a/packages/client/public/img/sprites/items/nisocarrow.png and b/packages/client/public/img/sprites/items/nisocarrow.png differ diff --git a/packages/client/public/img/sprites/items/nisocore.png b/packages/client/public/img/sprites/items/nisocore.png index dad29db635..1d9f3a5298 100644 Binary files a/packages/client/public/img/sprites/items/nisocore.png and b/packages/client/public/img/sprites/items/nisocore.png differ diff --git a/packages/client/public/img/sprites/items/nisocring.png b/packages/client/public/img/sprites/items/nisocring.png index 138da4f8f3..b62d50e324 100644 Binary files a/packages/client/public/img/sprites/items/nisocring.png and b/packages/client/public/img/sprites/items/nisocring.png differ diff --git a/packages/client/public/img/sprites/items/nisocsword.png b/packages/client/public/img/sprites/items/nisocsword.png index e869f963fe..632a24929d 100644 Binary files a/packages/client/public/img/sprites/items/nisocsword.png and b/packages/client/public/img/sprites/items/nisocsword.png differ diff --git a/packages/client/public/img/sprites/items/null.png b/packages/client/public/img/sprites/items/null.png index 2dcf5052cd..616cc63e6c 100644 Binary files a/packages/client/public/img/sprites/items/null.png and b/packages/client/public/img/sprites/items/null.png differ diff --git a/packages/client/public/img/sprites/items/oat.png b/packages/client/public/img/sprites/items/oat.png index c6cce6b06e..7b7fb05117 100644 Binary files a/packages/client/public/img/sprites/items/oat.png and b/packages/client/public/img/sprites/items/oat.png differ diff --git a/packages/client/public/img/sprites/items/oldmanmask.png b/packages/client/public/img/sprites/items/oldmanmask.png new file mode 100644 index 0000000000..5c58088ba6 Binary files /dev/null and b/packages/client/public/img/sprites/items/oldmanmask.png differ diff --git a/packages/client/public/img/sprites/items/oldmanskin.png b/packages/client/public/img/sprites/items/oldmanskin.png new file mode 100644 index 0000000000..5c58088ba6 Binary files /dev/null and b/packages/client/public/img/sprites/items/oldmanskin.png differ diff --git a/packages/client/public/img/sprites/items/oldonesblade.png b/packages/client/public/img/sprites/items/oldonesblade.png new file mode 100644 index 0000000000..dc4abc26b8 Binary files /dev/null and b/packages/client/public/img/sprites/items/oldonesblade.png differ diff --git a/packages/client/public/img/sprites/items/onion.png b/packages/client/public/img/sprites/items/onion.png index 214cc77e33..de60a4fbc3 100644 Binary files a/packages/client/public/img/sprites/items/onion.png and b/packages/client/public/img/sprites/items/onion.png differ diff --git a/packages/client/public/img/sprites/items/opal.png b/packages/client/public/img/sprites/items/opal.png index 4304ea798d..f7e35a5806 100644 Binary files a/packages/client/public/img/sprites/items/opal.png and b/packages/client/public/img/sprites/items/opal.png differ diff --git a/packages/client/public/img/sprites/items/orange.png b/packages/client/public/img/sprites/items/orange.png index 68eaf5fe28..a77e37cbd7 100644 Binary files a/packages/client/public/img/sprites/items/orange.png and b/packages/client/public/img/sprites/items/orange.png differ diff --git a/packages/client/public/img/sprites/items/orchardsbane.png b/packages/client/public/img/sprites/items/orchardsbane.png new file mode 100644 index 0000000000..20182c0302 Binary files /dev/null and b/packages/client/public/img/sprites/items/orchardsbane.png differ diff --git a/packages/client/public/img/sprites/items/paladinchestplate.png b/packages/client/public/img/sprites/items/paladinchestplate.png new file mode 100644 index 0000000000..c06396a8b6 Binary files /dev/null and b/packages/client/public/img/sprites/items/paladinchestplate.png differ diff --git a/packages/client/public/img/sprites/items/paladinhelmet.png b/packages/client/public/img/sprites/items/paladinhelmet.png new file mode 100644 index 0000000000..3322d0ef15 Binary files /dev/null and b/packages/client/public/img/sprites/items/paladinhelmet.png differ diff --git a/packages/client/public/img/sprites/items/paladinlegplates.png b/packages/client/public/img/sprites/items/paladinlegplates.png new file mode 100644 index 0000000000..95c48f60db Binary files /dev/null and b/packages/client/public/img/sprites/items/paladinlegplates.png differ diff --git a/packages/client/public/img/sprites/items/palmlogs.png b/packages/client/public/img/sprites/items/palmlogs.png index c2144b1904..e049b4c033 100644 Binary files a/packages/client/public/img/sprites/items/palmlogs.png and b/packages/client/public/img/sprites/items/palmlogs.png differ diff --git a/packages/client/public/img/sprites/items/paprika.png b/packages/client/public/img/sprites/items/paprika.png index c99a4f5823..cf334d13d0 100644 Binary files a/packages/client/public/img/sprites/items/paprika.png and b/packages/client/public/img/sprites/items/paprika.png differ diff --git a/packages/client/public/img/sprites/items/paprikabowlsmall.png b/packages/client/public/img/sprites/items/paprikabowlsmall.png index 45ee22e349..868c3e9f77 100644 Binary files a/packages/client/public/img/sprites/items/paprikabowlsmall.png and b/packages/client/public/img/sprites/items/paprikabowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/paprikapowder.png b/packages/client/public/img/sprites/items/paprikapowder.png index 991096e247..2f5a640c27 100644 Binary files a/packages/client/public/img/sprites/items/paprikapowder.png and b/packages/client/public/img/sprites/items/paprikapowder.png differ diff --git a/packages/client/public/img/sprites/items/paprikashaker.png b/packages/client/public/img/sprites/items/paprikashaker.png index 57a2023605..9feae51b72 100644 Binary files a/packages/client/public/img/sprites/items/paprikashaker.png and b/packages/client/public/img/sprites/items/paprikashaker.png differ diff --git a/packages/client/public/img/sprites/items/peach.png b/packages/client/public/img/sprites/items/peach.png index 2cd938b01f..0e0ec34949 100644 Binary files a/packages/client/public/img/sprites/items/peach.png and b/packages/client/public/img/sprites/items/peach.png differ diff --git a/packages/client/public/img/sprites/items/pearlpendant.png b/packages/client/public/img/sprites/items/pearlpendant.png index e55c88a4b3..3836a4da80 100644 Binary files a/packages/client/public/img/sprites/items/pearlpendant.png and b/packages/client/public/img/sprites/items/pearlpendant.png differ diff --git a/packages/client/public/img/sprites/items/pearlring.png b/packages/client/public/img/sprites/items/pearlring.png index c34543a9b1..418d491357 100644 Binary files a/packages/client/public/img/sprites/items/pearlring.png and b/packages/client/public/img/sprites/items/pearlring.png differ diff --git a/packages/client/public/img/sprites/items/peddlepounder.png b/packages/client/public/img/sprites/items/peddlepounder.png new file mode 100644 index 0000000000..471e6f5e8b Binary files /dev/null and b/packages/client/public/img/sprites/items/peddlepounder.png differ diff --git a/packages/client/public/img/sprites/items/pendant1.png b/packages/client/public/img/sprites/items/pendant1.png index 1ce2d7e6a6..1234d9328c 100644 Binary files a/packages/client/public/img/sprites/items/pendant1.png and b/packages/client/public/img/sprites/items/pendant1.png differ diff --git a/packages/client/public/img/sprites/items/pendantbronzeberyl.png b/packages/client/public/img/sprites/items/pendantbronzeberyl.png new file mode 100644 index 0000000000..8c1e24d9b4 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantbronzeberyl.png differ diff --git a/packages/client/public/img/sprites/items/pendantbronzeemerald.png b/packages/client/public/img/sprites/items/pendantbronzeemerald.png new file mode 100644 index 0000000000..72f108b1c5 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantbronzeemerald.png differ diff --git a/packages/client/public/img/sprites/items/pendantbronzepythar.png b/packages/client/public/img/sprites/items/pendantbronzepythar.png new file mode 100644 index 0000000000..40a68d2cc9 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantbronzepythar.png differ diff --git a/packages/client/public/img/sprites/items/pendantbronzeruby.png b/packages/client/public/img/sprites/items/pendantbronzeruby.png new file mode 100644 index 0000000000..ac4cc4e7dd Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantbronzeruby.png differ diff --git a/packages/client/public/img/sprites/items/pendantbronzesapphire.png b/packages/client/public/img/sprites/items/pendantbronzesapphire.png new file mode 100644 index 0000000000..0454e88832 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantbronzesapphire.png differ diff --git a/packages/client/public/img/sprites/items/pendantgoldberyl.png b/packages/client/public/img/sprites/items/pendantgoldberyl.png new file mode 100644 index 0000000000..af8186f033 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantgoldberyl.png differ diff --git a/packages/client/public/img/sprites/items/pendantgoldemerald.png b/packages/client/public/img/sprites/items/pendantgoldemerald.png new file mode 100644 index 0000000000..eeffafad34 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantgoldemerald.png differ diff --git a/packages/client/public/img/sprites/items/pendantgoldpythar.png b/packages/client/public/img/sprites/items/pendantgoldpythar.png new file mode 100644 index 0000000000..f950599495 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantgoldpythar.png differ diff --git a/packages/client/public/img/sprites/items/pendantgoldruby.png b/packages/client/public/img/sprites/items/pendantgoldruby.png new file mode 100644 index 0000000000..036f666dd2 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantgoldruby.png differ diff --git a/packages/client/public/img/sprites/items/pendantgoldsapphire.png b/packages/client/public/img/sprites/items/pendantgoldsapphire.png new file mode 100644 index 0000000000..2bef9e5152 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantgoldsapphire.png differ diff --git a/packages/client/public/img/sprites/items/pendantsilverberyl.png b/packages/client/public/img/sprites/items/pendantsilverberyl.png new file mode 100644 index 0000000000..4631e73fce Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantsilverberyl.png differ diff --git a/packages/client/public/img/sprites/items/pendantsilveremerald.png b/packages/client/public/img/sprites/items/pendantsilveremerald.png new file mode 100644 index 0000000000..34dc0ee9aa Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantsilveremerald.png differ diff --git a/packages/client/public/img/sprites/items/pendantsilverpythar.png b/packages/client/public/img/sprites/items/pendantsilverpythar.png new file mode 100644 index 0000000000..7d692c873b Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantsilverpythar.png differ diff --git a/packages/client/public/img/sprites/items/pendantsilverruby.png b/packages/client/public/img/sprites/items/pendantsilverruby.png new file mode 100644 index 0000000000..20663b4a15 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantsilverruby.png differ diff --git a/packages/client/public/img/sprites/items/pendantsilversapphire.png b/packages/client/public/img/sprites/items/pendantsilversapphire.png new file mode 100644 index 0000000000..a372257ef4 Binary files /dev/null and b/packages/client/public/img/sprites/items/pendantsilversapphire.png differ diff --git a/packages/client/public/img/sprites/items/pepper.png b/packages/client/public/img/sprites/items/pepper.png index 6945c65156..d166aebd8f 100644 Binary files a/packages/client/public/img/sprites/items/pepper.png and b/packages/client/public/img/sprites/items/pepper.png differ diff --git a/packages/client/public/img/sprites/items/pepperbowlsmall.png b/packages/client/public/img/sprites/items/pepperbowlsmall.png index 12cbd2733c..a4243a60ae 100644 Binary files a/packages/client/public/img/sprites/items/pepperbowlsmall.png and b/packages/client/public/img/sprites/items/pepperbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/peppershaker.png b/packages/client/public/img/sprites/items/peppershaker.png index fd149a741e..e3e51597f1 100644 Binary files a/packages/client/public/img/sprites/items/peppershaker.png and b/packages/client/public/img/sprites/items/peppershaker.png differ diff --git a/packages/client/public/img/sprites/items/peridot.png b/packages/client/public/img/sprites/items/peridot.png index 5c18248220..572732a9ab 100644 Binary files a/packages/client/public/img/sprites/items/peridot.png and b/packages/client/public/img/sprites/items/peridot.png differ diff --git a/packages/client/public/img/sprites/items/pilgrimhat.png b/packages/client/public/img/sprites/items/pilgrimhat.png new file mode 100644 index 0000000000..0665445036 Binary files /dev/null and b/packages/client/public/img/sprites/items/pilgrimhat.png differ diff --git a/packages/client/public/img/sprites/items/pilgrimhatpink.png b/packages/client/public/img/sprites/items/pilgrimhatpink.png new file mode 100644 index 0000000000..7f4e791ed1 Binary files /dev/null and b/packages/client/public/img/sprites/items/pilgrimhatpink.png differ diff --git a/packages/client/public/img/sprites/items/pineapple.png b/packages/client/public/img/sprites/items/pineapple.png index 3feb4137d7..4f44f38bdb 100644 Binary files a/packages/client/public/img/sprites/items/pineapple.png and b/packages/client/public/img/sprites/items/pineapple.png differ diff --git a/packages/client/public/img/sprites/items/pinelogs.png b/packages/client/public/img/sprites/items/pinelogs.png index 29bbd67c8b..08fffca454 100644 Binary files a/packages/client/public/img/sprites/items/pinelogs.png and b/packages/client/public/img/sprites/items/pinelogs.png differ diff --git a/packages/client/public/img/sprites/items/pinklightsaber.png b/packages/client/public/img/sprites/items/pinklightsaber.png new file mode 100644 index 0000000000..b97eb3efef Binary files /dev/null and b/packages/client/public/img/sprites/items/pinklightsaber.png differ diff --git a/packages/client/public/img/sprites/items/plum.png b/packages/client/public/img/sprites/items/plum.png index 90acd7b070..53c6d50ca4 100644 Binary files a/packages/client/public/img/sprites/items/plum.png and b/packages/client/public/img/sprites/items/plum.png differ diff --git a/packages/client/public/img/sprites/items/plunger.png b/packages/client/public/img/sprites/items/plunger.png index e31d3481f8..e4f2e8c707 100644 Binary files a/packages/client/public/img/sprites/items/plunger.png and b/packages/client/public/img/sprites/items/plunger.png differ diff --git a/packages/client/public/img/sprites/items/poisonarrow.png b/packages/client/public/img/sprites/items/poisonarrow.png index ea3de9841a..d5fad844de 100644 Binary files a/packages/client/public/img/sprites/items/poisonarrow.png and b/packages/client/public/img/sprites/items/poisonarrow.png differ diff --git a/packages/client/public/img/sprites/items/potato.png b/packages/client/public/img/sprites/items/potato.png index 43ff768215..7c11319c70 100644 Binary files a/packages/client/public/img/sprites/items/potato.png and b/packages/client/public/img/sprites/items/potato.png differ diff --git a/packages/client/public/img/sprites/items/pythararrow.png b/packages/client/public/img/sprites/items/pythararrow.png index 9258c2e80c..a4d9ecd73a 100644 Binary files a/packages/client/public/img/sprites/items/pythararrow.png and b/packages/client/public/img/sprites/items/pythararrow.png differ diff --git a/packages/client/public/img/sprites/items/pytharore.png b/packages/client/public/img/sprites/items/pytharore.png index 00b78d138e..41b19788e9 100644 Binary files a/packages/client/public/img/sprites/items/pytharore.png and b/packages/client/public/img/sprites/items/pytharore.png differ diff --git a/packages/client/public/img/sprites/items/pytharring.png b/packages/client/public/img/sprites/items/pytharring.png index beef662ea1..6c7e4b9592 100644 Binary files a/packages/client/public/img/sprites/items/pytharring.png and b/packages/client/public/img/sprites/items/pytharring.png differ diff --git a/packages/client/public/img/sprites/items/pytharsword.png b/packages/client/public/img/sprites/items/pytharsword.png index 646f935b3e..a5b8dd9801 100644 Binary files a/packages/client/public/img/sprites/items/pytharsword.png and b/packages/client/public/img/sprites/items/pytharsword.png differ diff --git a/packages/client/public/img/sprites/items/quinoa.png b/packages/client/public/img/sprites/items/quinoa.png index be0a39d369..30c5a1ca4f 100644 Binary files a/packages/client/public/img/sprites/items/quinoa.png and b/packages/client/public/img/sprites/items/quinoa.png differ diff --git a/packages/client/public/img/sprites/items/raspberry.png b/packages/client/public/img/sprites/items/raspberry.png index 5ee14c2fda..598df142de 100644 Binary files a/packages/client/public/img/sprites/items/raspberry.png and b/packages/client/public/img/sprites/items/raspberry.png differ diff --git a/packages/client/public/img/sprites/items/ratballoonpet.png b/packages/client/public/img/sprites/items/ratballoonpet.png new file mode 100644 index 0000000000..ed4d57a521 Binary files /dev/null and b/packages/client/public/img/sprites/items/ratballoonpet.png differ diff --git a/packages/client/public/img/sprites/items/rathatpet.png b/packages/client/public/img/sprites/items/rathatpet.png index 9d352a5845..2ae3b61b8b 100644 Binary files a/packages/client/public/img/sprites/items/rathatpet.png and b/packages/client/public/img/sprites/items/rathatpet.png differ diff --git a/packages/client/public/img/sprites/items/ratpet.png b/packages/client/public/img/sprites/items/ratpet.png index fcba54994e..1d5bce5bfc 100644 Binary files a/packages/client/public/img/sprites/items/ratpet.png and b/packages/client/public/img/sprites/items/ratpet.png differ diff --git a/packages/client/public/img/sprites/items/rawbeef.png b/packages/client/public/img/sprites/items/rawbeef.png index 5ab60edb34..9bccc3fddf 100644 Binary files a/packages/client/public/img/sprites/items/rawbeef.png and b/packages/client/public/img/sprites/items/rawbeef.png differ diff --git a/packages/client/public/img/sprites/items/rawchicken.png b/packages/client/public/img/sprites/items/rawchicken.png index e5ee20ba2e..d6b44e0fda 100644 Binary files a/packages/client/public/img/sprites/items/rawchicken.png and b/packages/client/public/img/sprites/items/rawchicken.png differ diff --git a/packages/client/public/img/sprites/items/rawpork.png b/packages/client/public/img/sprites/items/rawpork.png index 76a6c7798e..f0a189ebee 100644 Binary files a/packages/client/public/img/sprites/items/rawpork.png and b/packages/client/public/img/sprites/items/rawpork.png differ diff --git a/packages/client/public/img/sprites/items/rawsausage.png b/packages/client/public/img/sprites/items/rawsausage.png index d1a2a5c7f0..f9977457a2 100644 Binary files a/packages/client/public/img/sprites/items/rawsausage.png and b/packages/client/public/img/sprites/items/rawsausage.png differ diff --git a/packages/client/public/img/sprites/items/rawshrimp.png b/packages/client/public/img/sprites/items/rawshrimp.png index 304c51ccc4..bb67fb88d3 100644 Binary files a/packages/client/public/img/sprites/items/rawshrimp.png and b/packages/client/public/img/sprites/items/rawshrimp.png differ diff --git a/packages/client/public/img/sprites/items/rawtuna.png b/packages/client/public/img/sprites/items/rawtuna.png index 86b4593bd0..981eaf002a 100644 Binary files a/packages/client/public/img/sprites/items/rawtuna.png and b/packages/client/public/img/sprites/items/rawtuna.png differ diff --git a/packages/client/public/img/sprites/items/redlightsaber.png b/packages/client/public/img/sprites/items/redlightsaber.png new file mode 100644 index 0000000000..bfd62a48d1 Binary files /dev/null and b/packages/client/public/img/sprites/items/redlightsaber.png differ diff --git a/packages/client/public/img/sprites/items/redmoonhelm.png b/packages/client/public/img/sprites/items/redmoonhelm.png new file mode 100644 index 0000000000..7912b8d039 Binary files /dev/null and b/packages/client/public/img/sprites/items/redmoonhelm.png differ diff --git a/packages/client/public/img/sprites/items/refinedsapphireboots.png b/packages/client/public/img/sprites/items/refinedsapphireboots.png new file mode 100644 index 0000000000..2c46324733 Binary files /dev/null and b/packages/client/public/img/sprites/items/refinedsapphireboots.png differ diff --git a/packages/client/public/img/sprites/items/refinedsapphirechestplate.png b/packages/client/public/img/sprites/items/refinedsapphirechestplate.png new file mode 100644 index 0000000000..315027250b Binary files /dev/null and b/packages/client/public/img/sprites/items/refinedsapphirechestplate.png differ diff --git a/packages/client/public/img/sprites/items/refinedsapphirehelmet.png b/packages/client/public/img/sprites/items/refinedsapphirehelmet.png new file mode 100644 index 0000000000..286b23e7ae Binary files /dev/null and b/packages/client/public/img/sprites/items/refinedsapphirehelmet.png differ diff --git a/packages/client/public/img/sprites/items/refinedsapphirelegplates.png b/packages/client/public/img/sprites/items/refinedsapphirelegplates.png new file mode 100644 index 0000000000..f7aba3b7b0 Binary files /dev/null and b/packages/client/public/img/sprites/items/refinedsapphirelegplates.png differ diff --git a/packages/client/public/img/sprites/items/rice.png b/packages/client/public/img/sprites/items/rice.png index ee249376e1..3665ffd8bc 100644 Binary files a/packages/client/public/img/sprites/items/rice.png and b/packages/client/public/img/sprites/items/rice.png differ diff --git a/packages/client/public/img/sprites/items/ring1.png b/packages/client/public/img/sprites/items/ring1.png index a337af086e..37c1f28f11 100644 Binary files a/packages/client/public/img/sprites/items/ring1.png and b/packages/client/public/img/sprites/items/ring1.png differ diff --git a/packages/client/public/img/sprites/items/ringbronzeberyl.png b/packages/client/public/img/sprites/items/ringbronzeberyl.png new file mode 100644 index 0000000000..855e5b9f63 Binary files /dev/null and b/packages/client/public/img/sprites/items/ringbronzeberyl.png differ diff --git a/packages/client/public/img/sprites/items/ringbronzeemerald.png b/packages/client/public/img/sprites/items/ringbronzeemerald.png new file mode 100644 index 0000000000..d602130270 Binary files /dev/null and b/packages/client/public/img/sprites/items/ringbronzeemerald.png differ diff --git a/packages/client/public/img/sprites/items/ringbronzepythar.png b/packages/client/public/img/sprites/items/ringbronzepythar.png new file mode 100644 index 0000000000..1ebd1de187 Binary files /dev/null and b/packages/client/public/img/sprites/items/ringbronzepythar.png differ diff --git a/packages/client/public/img/sprites/items/ringbronzeruby.png b/packages/client/public/img/sprites/items/ringbronzeruby.png new file mode 100644 index 0000000000..36d4fb2c8a Binary files /dev/null and b/packages/client/public/img/sprites/items/ringbronzeruby.png differ diff --git a/packages/client/public/img/sprites/items/ringbronzesapphire.png b/packages/client/public/img/sprites/items/ringbronzesapphire.png new file mode 100644 index 0000000000..045339a281 Binary files /dev/null and b/packages/client/public/img/sprites/items/ringbronzesapphire.png differ diff --git a/packages/client/public/img/sprites/items/ringgoldberyl.png b/packages/client/public/img/sprites/items/ringgoldberyl.png new file mode 100644 index 0000000000..13597454ce Binary files /dev/null and b/packages/client/public/img/sprites/items/ringgoldberyl.png differ diff --git a/packages/client/public/img/sprites/items/ringgoldemerald.png b/packages/client/public/img/sprites/items/ringgoldemerald.png new file mode 100644 index 0000000000..17fecd9e6a Binary files /dev/null and b/packages/client/public/img/sprites/items/ringgoldemerald.png differ diff --git a/packages/client/public/img/sprites/items/ringgoldpythar.png b/packages/client/public/img/sprites/items/ringgoldpythar.png new file mode 100644 index 0000000000..47d91360cc Binary files /dev/null and b/packages/client/public/img/sprites/items/ringgoldpythar.png differ diff --git a/packages/client/public/img/sprites/items/ringgoldruby.png b/packages/client/public/img/sprites/items/ringgoldruby.png new file mode 100644 index 0000000000..15dfb20e7b Binary files /dev/null and b/packages/client/public/img/sprites/items/ringgoldruby.png differ diff --git a/packages/client/public/img/sprites/items/ringgoldsapphire.png b/packages/client/public/img/sprites/items/ringgoldsapphire.png new file mode 100644 index 0000000000..4e623dc542 Binary files /dev/null and b/packages/client/public/img/sprites/items/ringgoldsapphire.png differ diff --git a/packages/client/public/img/sprites/items/ringsilverberyl.png b/packages/client/public/img/sprites/items/ringsilverberyl.png new file mode 100644 index 0000000000..f101dd5582 Binary files /dev/null and b/packages/client/public/img/sprites/items/ringsilverberyl.png differ diff --git a/packages/client/public/img/sprites/items/ringsilveremerald.png b/packages/client/public/img/sprites/items/ringsilveremerald.png new file mode 100644 index 0000000000..559ddab2fe Binary files /dev/null and b/packages/client/public/img/sprites/items/ringsilveremerald.png differ diff --git a/packages/client/public/img/sprites/items/ringsilverpythar.png b/packages/client/public/img/sprites/items/ringsilverpythar.png new file mode 100644 index 0000000000..7316e2dfe4 Binary files /dev/null and b/packages/client/public/img/sprites/items/ringsilverpythar.png differ diff --git a/packages/client/public/img/sprites/items/ringsilverruby.png b/packages/client/public/img/sprites/items/ringsilverruby.png new file mode 100644 index 0000000000..7d4057f97d Binary files /dev/null and b/packages/client/public/img/sprites/items/ringsilverruby.png differ diff --git a/packages/client/public/img/sprites/items/ringsilversapphire.png b/packages/client/public/img/sprites/items/ringsilversapphire.png new file mode 100644 index 0000000000..7c0839f366 Binary files /dev/null and b/packages/client/public/img/sprites/items/ringsilversapphire.png differ diff --git a/packages/client/public/img/sprites/items/rock.png b/packages/client/public/img/sprites/items/rock.png index d7b38c5b68..de124c03ff 100644 Binary files a/packages/client/public/img/sprites/items/rock.png and b/packages/client/public/img/sprites/items/rock.png differ diff --git a/packages/client/public/img/sprites/items/rockfish.png b/packages/client/public/img/sprites/items/rockfish.png index 332ac9d459..fa40a96cee 100644 Binary files a/packages/client/public/img/sprites/items/rockfish.png and b/packages/client/public/img/sprites/items/rockfish.png differ diff --git a/packages/client/public/img/sprites/items/rosemary.png b/packages/client/public/img/sprites/items/rosemary.png index b1a8938d6a..dc55233280 100644 Binary files a/packages/client/public/img/sprites/items/rosemary.png and b/packages/client/public/img/sprites/items/rosemary.png differ diff --git a/packages/client/public/img/sprites/items/rosemarybottle.png b/packages/client/public/img/sprites/items/rosemarybottle.png index 621ae08992..9151b99b1d 100644 Binary files a/packages/client/public/img/sprites/items/rosemarybottle.png and b/packages/client/public/img/sprites/items/rosemarybottle.png differ diff --git a/packages/client/public/img/sprites/items/rosemarybowlsmall.png b/packages/client/public/img/sprites/items/rosemarybowlsmall.png index f857d9b967..1cb6a35103 100644 Binary files a/packages/client/public/img/sprites/items/rosemarybowlsmall.png and b/packages/client/public/img/sprites/items/rosemarybowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/rosemarypowder.png b/packages/client/public/img/sprites/items/rosemarypowder.png index 52b3e72aef..18d567fa05 100644 Binary files a/packages/client/public/img/sprites/items/rosemarypowder.png and b/packages/client/public/img/sprites/items/rosemarypowder.png differ diff --git a/packages/client/public/img/sprites/items/royalazalea.png b/packages/client/public/img/sprites/items/royalazalea.png index 50ab84c71c..bc9ba5df7b 100644 Binary files a/packages/client/public/img/sprites/items/royalazalea.png and b/packages/client/public/img/sprites/items/royalazalea.png differ diff --git a/packages/client/public/img/sprites/items/royalrapier.png b/packages/client/public/img/sprites/items/royalrapier.png new file mode 100644 index 0000000000..1804de4d8b Binary files /dev/null and b/packages/client/public/img/sprites/items/royalrapier.png differ diff --git a/packages/client/public/img/sprites/items/ruby.png b/packages/client/public/img/sprites/items/ruby.png index 86b7b8040d..cf6f38b32b 100644 Binary files a/packages/client/public/img/sprites/items/ruby.png and b/packages/client/public/img/sprites/items/ruby.png differ diff --git a/packages/client/public/img/sprites/items/rubyboots.png b/packages/client/public/img/sprites/items/rubyboots.png new file mode 100644 index 0000000000..82d3b1e988 Binary files /dev/null and b/packages/client/public/img/sprites/items/rubyboots.png differ diff --git a/packages/client/public/img/sprites/items/rubychestplate.png b/packages/client/public/img/sprites/items/rubychestplate.png new file mode 100644 index 0000000000..b6be933623 Binary files /dev/null and b/packages/client/public/img/sprites/items/rubychestplate.png differ diff --git a/packages/client/public/img/sprites/items/rubygem.png b/packages/client/public/img/sprites/items/rubygem.png new file mode 100644 index 0000000000..2303523e59 Binary files /dev/null and b/packages/client/public/img/sprites/items/rubygem.png differ diff --git a/packages/client/public/img/sprites/items/rubyhelm.png b/packages/client/public/img/sprites/items/rubyhelm.png new file mode 100644 index 0000000000..02bc6812bd Binary files /dev/null and b/packages/client/public/img/sprites/items/rubyhelm.png differ diff --git a/packages/client/public/img/sprites/items/rubylegplates.png b/packages/client/public/img/sprites/items/rubylegplates.png new file mode 100644 index 0000000000..4b51f89925 Binary files /dev/null and b/packages/client/public/img/sprites/items/rubylegplates.png differ diff --git a/packages/client/public/img/sprites/items/rubypendant.png b/packages/client/public/img/sprites/items/rubypendant.png index d0cb322676..51190f9fdd 100644 Binary files a/packages/client/public/img/sprites/items/rubypendant.png and b/packages/client/public/img/sprites/items/rubypendant.png differ diff --git a/packages/client/public/img/sprites/items/rubyring.png b/packages/client/public/img/sprites/items/rubyring.png index 33364578a3..44e76cfc9e 100644 Binary files a/packages/client/public/img/sprites/items/rubyring.png and b/packages/client/public/img/sprites/items/rubyring.png differ diff --git a/packages/client/public/img/sprites/items/sage.png b/packages/client/public/img/sprites/items/sage.png index a6c78b2107..6289c0f9c2 100644 Binary files a/packages/client/public/img/sprites/items/sage.png and b/packages/client/public/img/sprites/items/sage.png differ diff --git a/packages/client/public/img/sprites/items/sagebowlsmall.png b/packages/client/public/img/sprites/items/sagebowlsmall.png index c7237b6934..a3928411f2 100644 Binary files a/packages/client/public/img/sprites/items/sagebowlsmall.png and b/packages/client/public/img/sprites/items/sagebowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/sagepowder.png b/packages/client/public/img/sprites/items/sagepowder.png index d000f78972..d6d78ec7c7 100644 Binary files a/packages/client/public/img/sprites/items/sagepowder.png and b/packages/client/public/img/sprites/items/sagepowder.png differ diff --git a/packages/client/public/img/sprites/items/sageshaker.png b/packages/client/public/img/sprites/items/sageshaker.png index 467761ffab..2b62806b21 100644 Binary files a/packages/client/public/img/sprites/items/sageshaker.png and b/packages/client/public/img/sprites/items/sageshaker.png differ diff --git a/packages/client/public/img/sprites/items/salt.png b/packages/client/public/img/sprites/items/salt.png index 8ab602f8f2..88ca75cc2e 100644 Binary files a/packages/client/public/img/sprites/items/salt.png and b/packages/client/public/img/sprites/items/salt.png differ diff --git a/packages/client/public/img/sprites/items/saltbowlsmall.png b/packages/client/public/img/sprites/items/saltbowlsmall.png index cc6d1bb063..98014a031e 100644 Binary files a/packages/client/public/img/sprites/items/saltbowlsmall.png and b/packages/client/public/img/sprites/items/saltbowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/saltcrystal.png b/packages/client/public/img/sprites/items/saltcrystal.png index d1efb936e0..0cf0222446 100644 Binary files a/packages/client/public/img/sprites/items/saltcrystal.png and b/packages/client/public/img/sprites/items/saltcrystal.png differ diff --git a/packages/client/public/img/sprites/items/saltshaker.png b/packages/client/public/img/sprites/items/saltshaker.png index 3608e95c85..1f34af1f64 100644 Binary files a/packages/client/public/img/sprites/items/saltshaker.png and b/packages/client/public/img/sprites/items/saltshaker.png differ diff --git a/packages/client/public/img/sprites/items/samuraichestplate.png b/packages/client/public/img/sprites/items/samuraichestplate.png new file mode 100644 index 0000000000..a3152212f8 Binary files /dev/null and b/packages/client/public/img/sprites/items/samuraichestplate.png differ diff --git a/packages/client/public/img/sprites/items/samuraihelmet.png b/packages/client/public/img/sprites/items/samuraihelmet.png new file mode 100644 index 0000000000..75d846779d Binary files /dev/null and b/packages/client/public/img/sprites/items/samuraihelmet.png differ diff --git a/packages/client/public/img/sprites/items/samurailegplates.png b/packages/client/public/img/sprites/items/samurailegplates.png new file mode 100644 index 0000000000..512ea00392 Binary files /dev/null and b/packages/client/public/img/sprites/items/samurailegplates.png differ diff --git a/packages/client/public/img/sprites/items/sapphireboots.png b/packages/client/public/img/sprites/items/sapphireboots.png new file mode 100644 index 0000000000..20cf4cc6c4 Binary files /dev/null and b/packages/client/public/img/sprites/items/sapphireboots.png differ diff --git a/packages/client/public/img/sprites/items/sapphirechestplate.png b/packages/client/public/img/sprites/items/sapphirechestplate.png new file mode 100644 index 0000000000..c023ae0007 Binary files /dev/null and b/packages/client/public/img/sprites/items/sapphirechestplate.png differ diff --git a/packages/client/public/img/sprites/items/sapphirehelm.png b/packages/client/public/img/sprites/items/sapphirehelm.png new file mode 100644 index 0000000000..1ad7cce3e3 Binary files /dev/null and b/packages/client/public/img/sprites/items/sapphirehelm.png differ diff --git a/packages/client/public/img/sprites/items/sapphirelegplates.png b/packages/client/public/img/sprites/items/sapphirelegplates.png new file mode 100644 index 0000000000..87b92a6c30 Binary files /dev/null and b/packages/client/public/img/sprites/items/sapphirelegplates.png differ diff --git a/packages/client/public/img/sprites/items/sapphirering.png b/packages/client/public/img/sprites/items/sapphirering.png index 2abce70a72..f733d4ae36 100644 Binary files a/packages/client/public/img/sprites/items/sapphirering.png and b/packages/client/public/img/sprites/items/sapphirering.png differ diff --git a/packages/client/public/img/sprites/items/sausage.png b/packages/client/public/img/sprites/items/sausage.png index d1a2a5c7f0..f9977457a2 100644 Binary files a/packages/client/public/img/sprites/items/sausage.png and b/packages/client/public/img/sprites/items/sausage.png differ diff --git a/packages/client/public/img/sprites/items/scarabboots.png b/packages/client/public/img/sprites/items/scarabboots.png new file mode 100644 index 0000000000..40e679cbe3 Binary files /dev/null and b/packages/client/public/img/sprites/items/scarabboots.png differ diff --git a/packages/client/public/img/sprites/items/scarabchest.png b/packages/client/public/img/sprites/items/scarabchest.png new file mode 100644 index 0000000000..ce37737428 Binary files /dev/null and b/packages/client/public/img/sprites/items/scarabchest.png differ diff --git a/packages/client/public/img/sprites/items/scarabhelmet.png b/packages/client/public/img/sprites/items/scarabhelmet.png new file mode 100644 index 0000000000..9ea6c0b6de Binary files /dev/null and b/packages/client/public/img/sprites/items/scarabhelmet.png differ diff --git a/packages/client/public/img/sprites/items/scarablegplates.png b/packages/client/public/img/sprites/items/scarablegplates.png new file mode 100644 index 0000000000..398cdf5837 Binary files /dev/null and b/packages/client/public/img/sprites/items/scarablegplates.png differ diff --git a/packages/client/public/img/sprites/items/scholarshat.png b/packages/client/public/img/sprites/items/scholarshat.png new file mode 100644 index 0000000000..ac1027d553 Binary files /dev/null and b/packages/client/public/img/sprites/items/scholarshat.png differ diff --git a/packages/client/public/img/sprites/items/scholarshatblack.png b/packages/client/public/img/sprites/items/scholarshatblack.png new file mode 100644 index 0000000000..d0d18fe1c4 Binary files /dev/null and b/packages/client/public/img/sprites/items/scholarshatblack.png differ diff --git a/packages/client/public/img/sprites/items/scholarshatgreen.png b/packages/client/public/img/sprites/items/scholarshatgreen.png new file mode 100644 index 0000000000..53526316fd Binary files /dev/null and b/packages/client/public/img/sprites/items/scholarshatgreen.png differ diff --git a/packages/client/public/img/sprites/items/scholarshatred.png b/packages/client/public/img/sprites/items/scholarshatred.png new file mode 100644 index 0000000000..b76e0111c1 Binary files /dev/null and b/packages/client/public/img/sprites/items/scholarshatred.png differ diff --git a/packages/client/public/img/sprites/items/scholarshatyellow.png b/packages/client/public/img/sprites/items/scholarshatyellow.png new file mode 100644 index 0000000000..3116e5ac0f Binary files /dev/null and b/packages/client/public/img/sprites/items/scholarshatyellow.png differ diff --git a/packages/client/public/img/sprites/items/scimitar.png b/packages/client/public/img/sprites/items/scimitar.png new file mode 100644 index 0000000000..97f6779a09 Binary files /dev/null and b/packages/client/public/img/sprites/items/scimitar.png differ diff --git a/packages/client/public/img/sprites/items/seaweedroll.png b/packages/client/public/img/sprites/items/seaweedroll.png new file mode 100755 index 0000000000..8bab8172b1 Binary files /dev/null and b/packages/client/public/img/sprites/items/seaweedroll.png differ diff --git a/packages/client/public/img/sprites/items/seed.png b/packages/client/public/img/sprites/items/seed.png index 7fadd78c4c..67a69503b8 100644 Binary files a/packages/client/public/img/sprites/items/seed.png and b/packages/client/public/img/sprites/items/seed.png differ diff --git a/packages/client/public/img/sprites/items/sentinelboots.png b/packages/client/public/img/sprites/items/sentinelboots.png new file mode 100644 index 0000000000..f0b2067461 Binary files /dev/null and b/packages/client/public/img/sprites/items/sentinelboots.png differ diff --git a/packages/client/public/img/sprites/items/sentinelchestplate.png b/packages/client/public/img/sprites/items/sentinelchestplate.png new file mode 100644 index 0000000000..a2178e8fd5 Binary files /dev/null and b/packages/client/public/img/sprites/items/sentinelchestplate.png differ diff --git a/packages/client/public/img/sprites/items/sentinelhelm.png b/packages/client/public/img/sprites/items/sentinelhelm.png new file mode 100644 index 0000000000..c55f457e4d Binary files /dev/null and b/packages/client/public/img/sprites/items/sentinelhelm.png differ diff --git a/packages/client/public/img/sprites/items/sentinellegplates.png b/packages/client/public/img/sprites/items/sentinellegplates.png new file mode 100644 index 0000000000..c79d2c23ad Binary files /dev/null and b/packages/client/public/img/sprites/items/sentinellegplates.png differ diff --git a/packages/client/public/img/sprites/items/sentinelsword.png b/packages/client/public/img/sprites/items/sentinelsword.png new file mode 100644 index 0000000000..2769f12114 Binary files /dev/null and b/packages/client/public/img/sprites/items/sentinelsword.png differ diff --git a/packages/client/public/img/sprites/items/shardt1.png b/packages/client/public/img/sprites/items/shardt1.png index 3f20d60ce7..9bc621f138 100644 Binary files a/packages/client/public/img/sprites/items/shardt1.png and b/packages/client/public/img/sprites/items/shardt1.png differ diff --git a/packages/client/public/img/sprites/items/shardt2.png b/packages/client/public/img/sprites/items/shardt2.png index 07b1b915dd..688755205d 100644 Binary files a/packages/client/public/img/sprites/items/shardt2.png and b/packages/client/public/img/sprites/items/shardt2.png differ diff --git a/packages/client/public/img/sprites/items/shardt3.png b/packages/client/public/img/sprites/items/shardt3.png index b59cf08f2e..22821ea1e0 100644 Binary files a/packages/client/public/img/sprites/items/shardt3.png and b/packages/client/public/img/sprites/items/shardt3.png differ diff --git a/packages/client/public/img/sprites/items/shardt4.png b/packages/client/public/img/sprites/items/shardt4.png index 5f64765bc6..31204738fe 100644 Binary files a/packages/client/public/img/sprites/items/shardt4.png and b/packages/client/public/img/sprites/items/shardt4.png differ diff --git a/packages/client/public/img/sprites/items/shardt5.png b/packages/client/public/img/sprites/items/shardt5.png index 936442580b..7329a5e12c 100644 Binary files a/packages/client/public/img/sprites/items/shardt5.png and b/packages/client/public/img/sprites/items/shardt5.png differ diff --git a/packages/client/public/img/sprites/items/shieldofglory.png b/packages/client/public/img/sprites/items/shieldofglory.png new file mode 100644 index 0000000000..d168e20539 Binary files /dev/null and b/packages/client/public/img/sprites/items/shieldofglory.png differ diff --git a/packages/client/public/img/sprites/items/shieldofliberty.png b/packages/client/public/img/sprites/items/shieldofliberty.png new file mode 100644 index 0000000000..cdabd48f7c Binary files /dev/null and b/packages/client/public/img/sprites/items/shieldofliberty.png differ diff --git a/packages/client/public/img/sprites/items/silverring.png b/packages/client/public/img/sprites/items/silverring.png index 9d467d0421..223828a507 100644 Binary files a/packages/client/public/img/sprites/items/silverring.png and b/packages/client/public/img/sprites/items/silverring.png differ diff --git a/packages/client/public/img/sprites/items/silverring2.png b/packages/client/public/img/sprites/items/silverring2.png new file mode 100644 index 0000000000..0f65a1944d Binary files /dev/null and b/packages/client/public/img/sprites/items/silverring2.png differ diff --git a/packages/client/public/img/sprites/items/skeletonhelm.png b/packages/client/public/img/sprites/items/skeletonhelm.png new file mode 100644 index 0000000000..2bb5f3b012 Binary files /dev/null and b/packages/client/public/img/sprites/items/skeletonhelm.png differ diff --git a/packages/client/public/img/sprites/items/skeletonskin.png b/packages/client/public/img/sprites/items/skeletonskin.png new file mode 100644 index 0000000000..2bb5f3b012 Binary files /dev/null and b/packages/client/public/img/sprites/items/skeletonskin.png differ diff --git a/packages/client/public/img/sprites/items/slimehelmet.png b/packages/client/public/img/sprites/items/slimehelmet.png new file mode 100644 index 0000000000..f2f97a41cf Binary files /dev/null and b/packages/client/public/img/sprites/items/slimehelmet.png differ diff --git a/packages/client/public/img/sprites/items/slimekinghelmet.png b/packages/client/public/img/sprites/items/slimekinghelmet.png new file mode 100644 index 0000000000..4841176268 Binary files /dev/null and b/packages/client/public/img/sprites/items/slimekinghelmet.png differ diff --git a/packages/client/public/img/sprites/items/slimekingrarehelmet.png b/packages/client/public/img/sprites/items/slimekingrarehelmet.png new file mode 100644 index 0000000000..6ab73c87be Binary files /dev/null and b/packages/client/public/img/sprites/items/slimekingrarehelmet.png differ diff --git a/packages/client/public/img/sprites/items/slimepurplehelmet.png b/packages/client/public/img/sprites/items/slimepurplehelmet.png new file mode 100644 index 0000000000..1fbafeb2ac Binary files /dev/null and b/packages/client/public/img/sprites/items/slimepurplehelmet.png differ diff --git a/packages/client/public/img/sprites/items/slimeredhelmet.png b/packages/client/public/img/sprites/items/slimeredhelmet.png new file mode 100644 index 0000000000..d46035c8b5 Binary files /dev/null and b/packages/client/public/img/sprites/items/slimeredhelmet.png differ diff --git a/packages/client/public/img/sprites/items/slimetealhelmet.png b/packages/client/public/img/sprites/items/slimetealhelmet.png new file mode 100644 index 0000000000..3728892743 Binary files /dev/null and b/packages/client/public/img/sprites/items/slimetealhelmet.png differ diff --git a/packages/client/public/img/sprites/items/smallemptyvial.png b/packages/client/public/img/sprites/items/smallemptyvial.png new file mode 100644 index 0000000000..c0cb62dfbf Binary files /dev/null and b/packages/client/public/img/sprites/items/smallemptyvial.png differ diff --git a/packages/client/public/img/sprites/items/smithshammer.png b/packages/client/public/img/sprites/items/smithshammer.png new file mode 100644 index 0000000000..89b1669ac4 Binary files /dev/null and b/packages/client/public/img/sprites/items/smithshammer.png differ diff --git a/packages/client/public/img/sprites/items/snowpotion.png b/packages/client/public/img/sprites/items/snowpotion.png index 95a3d781b6..e74157e764 100644 Binary files a/packages/client/public/img/sprites/items/snowpotion.png and b/packages/client/public/img/sprites/items/snowpotion.png differ diff --git a/packages/client/public/img/sprites/items/speedpotion.png b/packages/client/public/img/sprites/items/speedpotion.png new file mode 100644 index 0000000000..6a03cf6b22 Binary files /dev/null and b/packages/client/public/img/sprites/items/speedpotion.png differ diff --git a/packages/client/public/img/sprites/items/spiritring.png b/packages/client/public/img/sprites/items/spiritring.png index dfa51dd023..be8285e972 100644 Binary files a/packages/client/public/img/sprites/items/spiritring.png and b/packages/client/public/img/sprites/items/spiritring.png differ diff --git a/packages/client/public/img/sprites/items/spoon.png b/packages/client/public/img/sprites/items/spoon.png new file mode 100644 index 0000000000..61a777b2ed Binary files /dev/null and b/packages/client/public/img/sprites/items/spoon.png differ diff --git a/packages/client/public/img/sprites/items/sproutring.png b/packages/client/public/img/sprites/items/sproutring.png index 484bb2aed7..ba7f92b37e 100644 Binary files a/packages/client/public/img/sprites/items/sproutring.png and b/packages/client/public/img/sprites/items/sproutring.png differ diff --git a/packages/client/public/img/sprites/items/steelboots.png b/packages/client/public/img/sprites/items/steelboots.png index 0ddb3c3f51..ea2aa1ec48 100644 Binary files a/packages/client/public/img/sprites/items/steelboots.png and b/packages/client/public/img/sprites/items/steelboots.png differ diff --git a/packages/client/public/img/sprites/items/stellarcluster.png b/packages/client/public/img/sprites/items/stellarcluster.png new file mode 100644 index 0000000000..5fad891bf1 Binary files /dev/null and b/packages/client/public/img/sprites/items/stellarcluster.png differ diff --git a/packages/client/public/img/sprites/items/stew.png b/packages/client/public/img/sprites/items/stew.png index dc2595182b..74316cb07d 100644 Binary files a/packages/client/public/img/sprites/items/stew.png and b/packages/client/public/img/sprites/items/stew.png differ diff --git a/packages/client/public/img/sprites/items/stew2.png b/packages/client/public/img/sprites/items/stew2.png index b7b5243462..a2033220bb 100644 Binary files a/packages/client/public/img/sprites/items/stew2.png and b/packages/client/public/img/sprites/items/stew2.png differ diff --git a/packages/client/public/img/sprites/items/stick.png b/packages/client/public/img/sprites/items/stick.png index 69ab4199d0..c2ba373563 100644 Binary files a/packages/client/public/img/sprites/items/stick.png and b/packages/client/public/img/sprites/items/stick.png differ diff --git a/packages/client/public/img/sprites/items/strawberry.png b/packages/client/public/img/sprites/items/strawberry.png index ac76c0991b..65e54b0000 100644 Binary files a/packages/client/public/img/sprites/items/strawberry.png and b/packages/client/public/img/sprites/items/strawberry.png differ diff --git a/packages/client/public/img/sprites/items/strengthpotion.png b/packages/client/public/img/sprites/items/strengthpotion.png index 7b9ae00730..dbb575c937 100644 Binary files a/packages/client/public/img/sprites/items/strengthpotion.png and b/packages/client/public/img/sprites/items/strengthpotion.png differ diff --git a/packages/client/public/img/sprites/items/string.png b/packages/client/public/img/sprites/items/string.png index ff9e1ae74c..e7b9603359 100644 Binary files a/packages/client/public/img/sprites/items/string.png and b/packages/client/public/img/sprites/items/string.png differ diff --git a/packages/client/public/img/sprites/items/sunrisegreataxe.png b/packages/client/public/img/sprites/items/sunrisegreataxe.png new file mode 100644 index 0000000000..51fcaef6d1 Binary files /dev/null and b/packages/client/public/img/sprites/items/sunrisegreataxe.png differ diff --git a/packages/client/public/img/sprites/items/sunshinecrystalhood.png b/packages/client/public/img/sprites/items/sunshinecrystalhood.png new file mode 100644 index 0000000000..12f4afe588 Binary files /dev/null and b/packages/client/public/img/sprites/items/sunshinecrystalhood.png differ diff --git a/packages/client/public/img/sprites/items/sunshinestaff.png b/packages/client/public/img/sprites/items/sunshinestaff.png new file mode 100644 index 0000000000..b2133888e4 Binary files /dev/null and b/packages/client/public/img/sprites/items/sunshinestaff.png differ diff --git a/packages/client/public/img/sprites/items/swashbuckler.png b/packages/client/public/img/sprites/items/swashbuckler.png new file mode 100644 index 0000000000..5fea0ea989 Binary files /dev/null and b/packages/client/public/img/sprites/items/swashbuckler.png differ diff --git a/packages/client/public/img/sprites/items/swiftboots.png b/packages/client/public/img/sprites/items/swiftboots.png index cd9d0fe063..55659d45b4 100644 Binary files a/packages/client/public/img/sprites/items/swiftboots.png and b/packages/client/public/img/sprites/items/swiftboots.png differ diff --git a/packages/client/public/img/sprites/items/swordofliberty.png b/packages/client/public/img/sprites/items/swordofliberty.png new file mode 100644 index 0000000000..568490fd7a Binary files /dev/null and b/packages/client/public/img/sprites/items/swordofliberty.png differ diff --git a/packages/client/public/img/sprites/items/sycophant.png b/packages/client/public/img/sprites/items/sycophant.png new file mode 100644 index 0000000000..76d670258b Binary files /dev/null and b/packages/client/public/img/sprites/items/sycophant.png differ diff --git a/packages/client/public/img/sprites/items/taaffeite.png b/packages/client/public/img/sprites/items/taaffeite.png index 3d2c1d54ac..1a49760e7e 100644 Binary files a/packages/client/public/img/sprites/items/taaffeite.png and b/packages/client/public/img/sprites/items/taaffeite.png differ diff --git a/packages/client/public/img/sprites/items/taekwondo.png b/packages/client/public/img/sprites/items/taekwondo.png index 609d216127..6eb8d91b83 100644 Binary files a/packages/client/public/img/sprites/items/taekwondo.png and b/packages/client/public/img/sprites/items/taekwondo.png differ diff --git a/packages/client/public/img/sprites/items/tamagotchiring.png b/packages/client/public/img/sprites/items/tamagotchiring.png index 22d8add694..35323b4421 100644 Binary files a/packages/client/public/img/sprites/items/tamagotchiring.png and b/packages/client/public/img/sprites/items/tamagotchiring.png differ diff --git a/packages/client/public/img/sprites/items/timelessglaive.png b/packages/client/public/img/sprites/items/timelessglaive.png new file mode 100644 index 0000000000..826f42ce11 Binary files /dev/null and b/packages/client/public/img/sprites/items/timelessglaive.png differ diff --git a/packages/client/public/img/sprites/items/tinbar.png b/packages/client/public/img/sprites/items/tinbar.png index 6dc13e80c6..094cdf8576 100644 Binary files a/packages/client/public/img/sprites/items/tinbar.png and b/packages/client/public/img/sprites/items/tinbar.png differ diff --git a/packages/client/public/img/sprites/items/tinchestplate.png b/packages/client/public/img/sprites/items/tinchestplate.png new file mode 100644 index 0000000000..dfc04dbbce Binary files /dev/null and b/packages/client/public/img/sprites/items/tinchestplate.png differ diff --git a/packages/client/public/img/sprites/items/tinhelmet.png b/packages/client/public/img/sprites/items/tinhelmet.png index 666653907e..0b812dde4c 100644 Binary files a/packages/client/public/img/sprites/items/tinhelmet.png and b/packages/client/public/img/sprites/items/tinhelmet.png differ diff --git a/packages/client/public/img/sprites/items/tinlegplates.png b/packages/client/public/img/sprites/items/tinlegplates.png new file mode 100644 index 0000000000..953387912e Binary files /dev/null and b/packages/client/public/img/sprites/items/tinlegplates.png differ diff --git a/packages/client/public/img/sprites/items/tinlegs.png b/packages/client/public/img/sprites/items/tinlegs.png deleted file mode 100644 index eadf87cbfd..0000000000 Binary files a/packages/client/public/img/sprites/items/tinlegs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/tinore.png b/packages/client/public/img/sprites/items/tinore.png index b49200c791..75aa30b562 100644 Binary files a/packages/client/public/img/sprites/items/tinore.png and b/packages/client/public/img/sprites/items/tinore.png differ diff --git a/packages/client/public/img/sprites/items/tinshield.png b/packages/client/public/img/sprites/items/tinshield.png new file mode 100644 index 0000000000..c47010a565 Binary files /dev/null and b/packages/client/public/img/sprites/items/tinshield.png differ diff --git a/packages/client/public/img/sprites/items/tinsword.png b/packages/client/public/img/sprites/items/tinsword.png index 77f1e84d51..9b50960d44 100644 Binary files a/packages/client/public/img/sprites/items/tinsword.png and b/packages/client/public/img/sprites/items/tinsword.png differ diff --git a/packages/client/public/img/sprites/items/tofu.png b/packages/client/public/img/sprites/items/tofu.png index 8848108418..66f811a89b 100644 Binary files a/packages/client/public/img/sprites/items/tofu.png and b/packages/client/public/img/sprites/items/tofu.png differ diff --git a/packages/client/public/img/sprites/items/token.png b/packages/client/public/img/sprites/items/token.png index 631597b7ab..128fd44dfc 100644 Binary files a/packages/client/public/img/sprites/items/token.png and b/packages/client/public/img/sprites/items/token.png differ diff --git a/packages/client/public/img/sprites/items/tomato.png b/packages/client/public/img/sprites/items/tomato.png index 2a547da0a8..a42620162e 100644 Binary files a/packages/client/public/img/sprites/items/tomato.png and b/packages/client/public/img/sprites/items/tomato.png differ diff --git a/packages/client/public/img/sprites/items/topaz.png b/packages/client/public/img/sprites/items/topaz.png index 8d4eb2b0bd..83dbdf3c0c 100644 Binary files a/packages/client/public/img/sprites/items/topaz.png and b/packages/client/public/img/sprites/items/topaz.png differ diff --git a/packages/client/public/img/sprites/items/topazring.png b/packages/client/public/img/sprites/items/topazring.png index ba4a1659d7..227de9443d 100644 Binary files a/packages/client/public/img/sprites/items/topazring.png and b/packages/client/public/img/sprites/items/topazring.png differ diff --git a/packages/client/public/img/sprites/items/toyhat.png b/packages/client/public/img/sprites/items/toyhat.png new file mode 100644 index 0000000000..2cafd9c599 Binary files /dev/null and b/packages/client/public/img/sprites/items/toyhat.png differ diff --git a/packages/client/public/img/sprites/items/toyhatprogrammer.png b/packages/client/public/img/sprites/items/toyhatprogrammer.png new file mode 100644 index 0000000000..d1847a139d Binary files /dev/null and b/packages/client/public/img/sprites/items/toyhatprogrammer.png differ diff --git a/packages/client/public/img/sprites/items/toyhatwhite.png b/packages/client/public/img/sprites/items/toyhatwhite.png new file mode 100644 index 0000000000..cce8bb89e4 Binary files /dev/null and b/packages/client/public/img/sprites/items/toyhatwhite.png differ diff --git a/packages/client/public/img/sprites/items/tunasushi.png b/packages/client/public/img/sprites/items/tunasushi.png index f8e19c5609..dde47310aa 100644 Binary files a/packages/client/public/img/sprites/items/tunasushi.png and b/packages/client/public/img/sprites/items/tunasushi.png differ diff --git a/packages/client/public/img/sprites/items/twilightgreataxe.png b/packages/client/public/img/sprites/items/twilightgreataxe.png new file mode 100644 index 0000000000..ad491b2412 Binary files /dev/null and b/packages/client/public/img/sprites/items/twilightgreataxe.png differ diff --git a/packages/client/public/img/sprites/items/undefined.png b/packages/client/public/img/sprites/items/undefined.png index e8987e02f4..616cc63e6c 100644 Binary files a/packages/client/public/img/sprites/items/undefined.png and b/packages/client/public/img/sprites/items/undefined.png differ diff --git a/packages/client/public/img/sprites/items/vanila.png b/packages/client/public/img/sprites/items/vanila.png index 7b55c54303..585d10f6bf 100644 Binary files a/packages/client/public/img/sprites/items/vanila.png and b/packages/client/public/img/sprites/items/vanila.png differ diff --git a/packages/client/public/img/sprites/items/vanillabottle.png b/packages/client/public/img/sprites/items/vanillabottle.png index 9a7b21df99..5a58c4f60e 100644 Binary files a/packages/client/public/img/sprites/items/vanillabottle.png and b/packages/client/public/img/sprites/items/vanillabottle.png differ diff --git a/packages/client/public/img/sprites/items/vanillabowlsmall.png b/packages/client/public/img/sprites/items/vanillabowlsmall.png index 463f8c3085..7a2808629a 100644 Binary files a/packages/client/public/img/sprites/items/vanillabowlsmall.png and b/packages/client/public/img/sprites/items/vanillabowlsmall.png differ diff --git a/packages/client/public/img/sprites/items/wartberries.png b/packages/client/public/img/sprites/items/wartberries.png new file mode 100644 index 0000000000..15cf3ec021 Binary files /dev/null and b/packages/client/public/img/sprites/items/wartberries.png differ diff --git a/packages/client/public/img/sprites/items/waterbucket.png b/packages/client/public/img/sprites/items/waterbucket.png index 0fd55cf336..de8e75fbb8 100644 Binary files a/packages/client/public/img/sprites/items/waterbucket.png and b/packages/client/public/img/sprites/items/waterbucket.png differ diff --git a/packages/client/public/img/sprites/items/watermelon.png b/packages/client/public/img/sprites/items/watermelon.png index 9d53b2b8d9..104f953365 100644 Binary files a/packages/client/public/img/sprites/items/watermelon.png and b/packages/client/public/img/sprites/items/watermelon.png differ diff --git a/packages/client/public/img/sprites/items/watermelonbow.png b/packages/client/public/img/sprites/items/watermelonbow.png index f2c98487d6..5a81a37e62 100644 Binary files a/packages/client/public/img/sprites/items/watermelonbow.png and b/packages/client/public/img/sprites/items/watermelonbow.png differ diff --git a/packages/client/public/img/sprites/items/watermelonslice.png b/packages/client/public/img/sprites/items/watermelonslice.png index cc297a6a96..3a75ff6c64 100644 Binary files a/packages/client/public/img/sprites/items/watermelonslice.png and b/packages/client/public/img/sprites/items/watermelonslice.png differ diff --git a/packages/client/public/img/sprites/items/willowlogs.png b/packages/client/public/img/sprites/items/willowlogs.png deleted file mode 100644 index fa9efdc9e3..0000000000 Binary files a/packages/client/public/img/sprites/items/willowlogs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/items/wings.png b/packages/client/public/img/sprites/items/wings.png new file mode 100644 index 0000000000..142cde90ae Binary files /dev/null and b/packages/client/public/img/sprites/items/wings.png differ diff --git a/packages/client/public/img/sprites/items/wingsdark.png b/packages/client/public/img/sprites/items/wingsdark.png new file mode 100644 index 0000000000..627bf955c8 Binary files /dev/null and b/packages/client/public/img/sprites/items/wingsdark.png differ diff --git a/packages/client/public/img/sprites/items/witchhat.png b/packages/client/public/img/sprites/items/witchhat.png new file mode 100644 index 0000000000..a1985dd128 Binary files /dev/null and b/packages/client/public/img/sprites/items/witchhat.png differ diff --git a/packages/client/public/img/sprites/items/witchhatblue.png b/packages/client/public/img/sprites/items/witchhatblue.png new file mode 100644 index 0000000000..f6497c6619 Binary files /dev/null and b/packages/client/public/img/sprites/items/witchhatblue.png differ diff --git a/packages/client/public/img/sprites/items/witchsstaffancient.png b/packages/client/public/img/sprites/items/witchsstaffancient.png new file mode 100644 index 0000000000..0ed13ca1ed Binary files /dev/null and b/packages/client/public/img/sprites/items/witchsstaffancient.png differ diff --git a/packages/client/public/img/sprites/items/witchsstaffblood.png b/packages/client/public/img/sprites/items/witchsstaffblood.png new file mode 100644 index 0000000000..caed67ca62 Binary files /dev/null and b/packages/client/public/img/sprites/items/witchsstaffblood.png differ diff --git a/packages/client/public/img/sprites/items/witchsstaffdemonic.png b/packages/client/public/img/sprites/items/witchsstaffdemonic.png new file mode 100644 index 0000000000..eaf20ab60d Binary files /dev/null and b/packages/client/public/img/sprites/items/witchsstaffdemonic.png differ diff --git a/packages/client/public/img/sprites/items/witchsstaffmoon.png b/packages/client/public/img/sprites/items/witchsstaffmoon.png new file mode 100644 index 0000000000..276afdec03 Binary files /dev/null and b/packages/client/public/img/sprites/items/witchsstaffmoon.png differ diff --git a/packages/client/public/img/sprites/items/witchsstaffsunshine.png b/packages/client/public/img/sprites/items/witchsstaffsunshine.png new file mode 100644 index 0000000000..112dc271b0 Binary files /dev/null and b/packages/client/public/img/sprites/items/witchsstaffsunshine.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatblack.png b/packages/client/public/img/sprites/items/wizardhatblack.png new file mode 100644 index 0000000000..ce7b532e41 Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatblack.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatblue.png b/packages/client/public/img/sprites/items/wizardhatblue.png new file mode 100644 index 0000000000..6ef9dd1978 Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatblue.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatcrimson.png b/packages/client/public/img/sprites/items/wizardhatcrimson.png new file mode 100644 index 0000000000..6d876eb50a Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatcrimson.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatdarkblue.png b/packages/client/public/img/sprites/items/wizardhatdarkblue.png new file mode 100644 index 0000000000..8b1f1b918e Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatdarkblue.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatgreen.png b/packages/client/public/img/sprites/items/wizardhatgreen.png new file mode 100644 index 0000000000..8cafd95bba Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatgreen.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatpink.png b/packages/client/public/img/sprites/items/wizardhatpink.png new file mode 100644 index 0000000000..2c6bb75637 Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatpink.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatpurple.png b/packages/client/public/img/sprites/items/wizardhatpurple.png new file mode 100644 index 0000000000..1d9247fb2b Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatpurple.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatred.png b/packages/client/public/img/sprites/items/wizardhatred.png new file mode 100644 index 0000000000..86a0d62a12 Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatred.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatturquoise.png b/packages/client/public/img/sprites/items/wizardhatturquoise.png new file mode 100644 index 0000000000..1529826925 Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatturquoise.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatwhite.png b/packages/client/public/img/sprites/items/wizardhatwhite.png new file mode 100644 index 0000000000..024289abeb Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatwhite.png differ diff --git a/packages/client/public/img/sprites/items/wizardhatyellow.png b/packages/client/public/img/sprites/items/wizardhatyellow.png new file mode 100644 index 0000000000..d4c2255289 Binary files /dev/null and b/packages/client/public/img/sprites/items/wizardhatyellow.png differ diff --git a/packages/client/public/img/sprites/items/wolfhelmet.png b/packages/client/public/img/sprites/items/wolfhelmet.png new file mode 100644 index 0000000000..85d7569a09 Binary files /dev/null and b/packages/client/public/img/sprites/items/wolfhelmet.png differ diff --git a/packages/client/public/img/sprites/items/woodenbow.png b/packages/client/public/img/sprites/items/woodenbow.png new file mode 100644 index 0000000000..2505ff4874 Binary files /dev/null and b/packages/client/public/img/sprites/items/woodenbow.png differ diff --git a/packages/client/public/img/sprites/items/woodenshield.png b/packages/client/public/img/sprites/items/woodenshield.png new file mode 100644 index 0000000000..6842a2fd58 Binary files /dev/null and b/packages/client/public/img/sprites/items/woodenshield.png differ diff --git a/packages/client/public/img/sprites/items/worm.png b/packages/client/public/img/sprites/items/worm.png new file mode 100644 index 0000000000..810c51c885 Binary files /dev/null and b/packages/client/public/img/sprites/items/worm.png differ diff --git a/packages/client/public/img/sprites/items/zephyrsgaleblade.png b/packages/client/public/img/sprites/items/zephyrsgaleblade.png new file mode 100644 index 0000000000..8636365d25 Binary files /dev/null and b/packages/client/public/img/sprites/items/zephyrsgaleblade.png differ diff --git a/packages/client/public/img/sprites/items/zoncillogs.png b/packages/client/public/img/sprites/items/zoncillogs.png new file mode 100644 index 0000000000..57fb071222 Binary files /dev/null and b/packages/client/public/img/sprites/items/zoncillogs.png differ diff --git a/packages/client/public/img/sprites/items/zondullogs.png b/packages/client/public/img/sprites/items/zondullogs.png new file mode 100644 index 0000000000..30f1213cd8 Binary files /dev/null and b/packages/client/public/img/sprites/items/zondullogs.png differ diff --git a/packages/client/public/img/sprites/items/zweipiercer.png b/packages/client/public/img/sprites/items/zweipiercer.png new file mode 100644 index 0000000000..f62670e7d7 Binary files /dev/null and b/packages/client/public/img/sprites/items/zweipiercer.png differ diff --git a/packages/client/public/img/sprites/mobs/ancientwizard.png b/packages/client/public/img/sprites/mobs/ancientwizard.png index 9729a53c8b..7aa19225e1 100644 Binary files a/packages/client/public/img/sprites/mobs/ancientwizard.png and b/packages/client/public/img/sprites/mobs/ancientwizard.png differ diff --git a/packages/client/public/img/sprites/mobs/bat.png b/packages/client/public/img/sprites/mobs/bat.png index 78ee8cfe96..3a42cd1345 100755 Binary files a/packages/client/public/img/sprites/mobs/bat.png and b/packages/client/public/img/sprites/mobs/bat.png differ diff --git a/packages/client/public/img/sprites/mobs/bee.png b/packages/client/public/img/sprites/mobs/bee.png index 6b97bc76e4..c36e479b78 100755 Binary files a/packages/client/public/img/sprites/mobs/bee.png and b/packages/client/public/img/sprites/mobs/bee.png differ diff --git a/packages/client/public/img/sprites/mobs/blackpirateskeleton.png b/packages/client/public/img/sprites/mobs/blackpirateskeleton.png index 8bbc706802..ee2f644915 100755 Binary files a/packages/client/public/img/sprites/mobs/blackpirateskeleton.png and b/packages/client/public/img/sprites/mobs/blackpirateskeleton.png differ diff --git a/packages/client/public/img/sprites/mobs/blackwizard.png b/packages/client/public/img/sprites/mobs/blackwizard.png index dd34d8c3fb..f1dbd7281e 100755 Binary files a/packages/client/public/img/sprites/mobs/blackwizard.png and b/packages/client/public/img/sprites/mobs/blackwizard.png differ diff --git a/packages/client/public/img/sprites/mobs/boss.png b/packages/client/public/img/sprites/mobs/boss.png deleted file mode 100755 index 7c803f0ab4..0000000000 Binary files a/packages/client/public/img/sprites/mobs/boss.png and /dev/null differ diff --git a/packages/client/public/img/sprites/mobs/cactus.png b/packages/client/public/img/sprites/mobs/cactus.png index 9e40c49d2b..cb246affdf 100644 Binary files a/packages/client/public/img/sprites/mobs/cactus.png and b/packages/client/public/img/sprites/mobs/cactus.png differ diff --git a/packages/client/public/img/sprites/mobs/flaredeathknight.png b/packages/client/public/img/sprites/mobs/flaredeathknight.png index 07cc74dd2e..c7a6a2cf86 100755 Binary files a/packages/client/public/img/sprites/mobs/flaredeathknight.png and b/packages/client/public/img/sprites/mobs/flaredeathknight.png differ diff --git a/packages/client/public/img/sprites/mobs/ghost.png b/packages/client/public/img/sprites/mobs/ghost.png index 6ea03848a5..e7347cac1d 100755 Binary files a/packages/client/public/img/sprites/mobs/ghost.png and b/packages/client/public/img/sprites/mobs/ghost.png differ diff --git a/packages/client/public/img/sprites/mobs/goblin.png b/packages/client/public/img/sprites/mobs/goblin.png index b63655b5af..4bf4227ca0 100755 Binary files a/packages/client/public/img/sprites/mobs/goblin.png and b/packages/client/public/img/sprites/mobs/goblin.png differ diff --git a/packages/client/public/img/sprites/mobs/greencockroach.png b/packages/client/public/img/sprites/mobs/greencockroach.png index e243c316d4..3d34bf0f0d 100644 Binary files a/packages/client/public/img/sprites/mobs/greencockroach.png and b/packages/client/public/img/sprites/mobs/greencockroach.png differ diff --git a/packages/client/public/img/sprites/mobs/guardmace.png b/packages/client/public/img/sprites/mobs/guardmace.png index e8929f8679..258d476711 100644 Binary files a/packages/client/public/img/sprites/mobs/guardmace.png and b/packages/client/public/img/sprites/mobs/guardmace.png differ diff --git a/packages/client/public/img/sprites/mobs/guardsword.png b/packages/client/public/img/sprites/mobs/guardsword.png index c2951aed33..4c9d56c0ac 100644 Binary files a/packages/client/public/img/sprites/mobs/guardsword.png and b/packages/client/public/img/sprites/mobs/guardsword.png differ diff --git a/packages/client/public/img/sprites/mobs/hammerman.png b/packages/client/public/img/sprites/mobs/hammerman.png index ca395efbb9..ff6c50e770 100644 Binary files a/packages/client/public/img/sprites/mobs/hammerman.png and b/packages/client/public/img/sprites/mobs/hammerman.png differ diff --git a/packages/client/public/img/sprites/mobs/hongcheol.png b/packages/client/public/img/sprites/mobs/hongcheol.png index cfd4716d1e..3be5421bf7 100755 Binary files a/packages/client/public/img/sprites/mobs/hongcheol.png and b/packages/client/public/img/sprites/mobs/hongcheol.png differ diff --git a/packages/client/public/img/sprites/mobs/hornet.png b/packages/client/public/img/sprites/mobs/hornet.png new file mode 100644 index 0000000000..302b321296 Binary files /dev/null and b/packages/client/public/img/sprites/mobs/hornet.png differ diff --git a/packages/client/public/img/sprites/mobs/icerat.png b/packages/client/public/img/sprites/mobs/icerat.png index c99c4f3176..35ff8bc25f 100644 Binary files a/packages/client/public/img/sprites/mobs/icerat.png and b/packages/client/public/img/sprites/mobs/icerat.png differ diff --git a/packages/client/public/img/sprites/mobs/icevulture.png b/packages/client/public/img/sprites/mobs/icevulture.png index 32a127d1d6..26551210f1 100755 Binary files a/packages/client/public/img/sprites/mobs/icevulture.png and b/packages/client/public/img/sprites/mobs/icevulture.png differ diff --git a/packages/client/public/img/sprites/mobs/icewizard.png b/packages/client/public/img/sprites/mobs/icewizard.png index 4621c7c03d..437101ba4b 100644 Binary files a/packages/client/public/img/sprites/mobs/icewizard.png and b/packages/client/public/img/sprites/mobs/icewizard.png differ diff --git a/packages/client/public/img/sprites/mobs/infectedguard.png b/packages/client/public/img/sprites/mobs/infectedguard.png index 162a2eca31..eb18ca71d3 100755 Binary files a/packages/client/public/img/sprites/mobs/infectedguard.png and b/packages/client/public/img/sprites/mobs/infectedguard.png differ diff --git a/packages/client/public/img/sprites/mobs/infectedvillager.png b/packages/client/public/img/sprites/mobs/infectedvillager.png new file mode 100755 index 0000000000..3c35576292 Binary files /dev/null and b/packages/client/public/img/sprites/mobs/infectedvillager.png differ diff --git a/packages/client/public/img/sprites/mobs/lavaslime.png b/packages/client/public/img/sprites/mobs/lavaslime.png new file mode 100644 index 0000000000..8cda4e4c95 Binary files /dev/null and b/packages/client/public/img/sprites/mobs/lavaslime.png differ diff --git a/packages/client/public/img/sprites/mobs/miniiceknight1.png b/packages/client/public/img/sprites/mobs/miniiceknight1.png index 5f4b738c25..94360a2ea2 100644 Binary files a/packages/client/public/img/sprites/mobs/miniiceknight1.png and b/packages/client/public/img/sprites/mobs/miniiceknight1.png differ diff --git a/packages/client/public/img/sprites/mobs/miniiceknight2.png b/packages/client/public/img/sprites/mobs/miniiceknight2.png index 244fe19eac..29227ce5b6 100644 Binary files a/packages/client/public/img/sprites/mobs/miniiceknight2.png and b/packages/client/public/img/sprites/mobs/miniiceknight2.png differ diff --git a/packages/client/public/img/sprites/mobs/miniiceknight3.png b/packages/client/public/img/sprites/mobs/miniiceknight3.png index 8ff619d398..cc0a768569 100644 Binary files a/packages/client/public/img/sprites/mobs/miniiceknight3.png and b/packages/client/public/img/sprites/mobs/miniiceknight3.png differ diff --git a/packages/client/public/img/sprites/mobs/miniiceknight4.png b/packages/client/public/img/sprites/mobs/miniiceknight4.png index 035ad6d48c..af734b5245 100644 Binary files a/packages/client/public/img/sprites/mobs/miniiceknight4.png and b/packages/client/public/img/sprites/mobs/miniiceknight4.png differ diff --git a/packages/client/public/img/sprites/mobs/miniiceknight5.png b/packages/client/public/img/sprites/mobs/miniiceknight5.png index 84ff5fc77d..cc2e306cb2 100755 Binary files a/packages/client/public/img/sprites/mobs/miniiceknight5.png and b/packages/client/public/img/sprites/mobs/miniiceknight5.png differ diff --git a/packages/client/public/img/sprites/mobs/miniknight1.png b/packages/client/public/img/sprites/mobs/miniknight1.png index b8a5068c86..8d520a9c9e 100644 Binary files a/packages/client/public/img/sprites/mobs/miniknight1.png and b/packages/client/public/img/sprites/mobs/miniknight1.png differ diff --git a/packages/client/public/img/sprites/mobs/miniknight2.png b/packages/client/public/img/sprites/mobs/miniknight2.png index 8ccfe2db60..170c47c3fe 100644 Binary files a/packages/client/public/img/sprites/mobs/miniknight2.png and b/packages/client/public/img/sprites/mobs/miniknight2.png differ diff --git a/packages/client/public/img/sprites/mobs/miniknight3.png b/packages/client/public/img/sprites/mobs/miniknight3.png index 9766e1490f..0d9e4289b2 100644 Binary files a/packages/client/public/img/sprites/mobs/miniknight3.png and b/packages/client/public/img/sprites/mobs/miniknight3.png differ diff --git a/packages/client/public/img/sprites/mobs/miniknight4.png b/packages/client/public/img/sprites/mobs/miniknight4.png index fca62cca43..8c89899f1b 100644 Binary files a/packages/client/public/img/sprites/mobs/miniknight4.png and b/packages/client/public/img/sprites/mobs/miniknight4.png differ diff --git a/packages/client/public/img/sprites/mobs/miniknight5.png b/packages/client/public/img/sprites/mobs/miniknight5.png index f37da5d22c..f668571b49 100644 Binary files a/packages/client/public/img/sprites/mobs/miniknight5.png and b/packages/client/public/img/sprites/mobs/miniknight5.png differ diff --git a/packages/client/public/img/sprites/mobs/ogre.png b/packages/client/public/img/sprites/mobs/ogre.png index e4ee5440b0..78b0660c43 100755 Binary files a/packages/client/public/img/sprites/mobs/ogre.png and b/packages/client/public/img/sprites/mobs/ogre.png differ diff --git a/packages/client/public/img/sprites/mobs/ogrelord.png b/packages/client/public/img/sprites/mobs/ogrelord.png index f0f9b6e536..e4af484215 100755 Binary files a/packages/client/public/img/sprites/mobs/ogrelord.png and b/packages/client/public/img/sprites/mobs/ogrelord.png differ diff --git a/packages/client/public/img/sprites/mobs/oldogre.png b/packages/client/public/img/sprites/mobs/oldogre.png index 1e07133237..e92566025f 100755 Binary files a/packages/client/public/img/sprites/mobs/oldogre.png and b/packages/client/public/img/sprites/mobs/oldogre.png differ diff --git a/packages/client/public/img/sprites/mobs/pain.png b/packages/client/public/img/sprites/mobs/pain.png deleted file mode 100755 index b1636ce67e..0000000000 Binary files a/packages/client/public/img/sprites/mobs/pain.png and /dev/null differ diff --git a/packages/client/public/img/sprites/mobs/paladinarmor.png b/packages/client/public/img/sprites/mobs/paladin.png similarity index 100% rename from packages/client/public/img/sprites/mobs/paladinarmor.png rename to packages/client/public/img/sprites/mobs/paladin.png diff --git a/packages/client/public/img/sprites/mobs/penguin.png b/packages/client/public/img/sprites/mobs/penguin.png index 631ebd2f70..83fd17af62 100755 Binary files a/packages/client/public/img/sprites/mobs/penguin.png and b/packages/client/public/img/sprites/mobs/penguin.png differ diff --git a/packages/client/public/img/sprites/mobs/pinkelf.png b/packages/client/public/img/sprites/mobs/pinkelf.png index 413b906b87..882d32d2c7 100755 Binary files a/packages/client/public/img/sprites/mobs/pinkelf.png and b/packages/client/public/img/sprites/mobs/pinkelf.png differ diff --git a/packages/client/public/img/sprites/mobs/queenspider.png b/packages/client/public/img/sprites/mobs/queenspider.png index 9f9c0bb29c..43a113b24c 100755 Binary files a/packages/client/public/img/sprites/mobs/queenspider.png and b/packages/client/public/img/sprites/mobs/queenspider.png differ diff --git a/packages/client/public/img/sprites/mobs/rabbitman.png b/packages/client/public/img/sprites/mobs/rabbitman.png index 1e45fd0c39..c141a31c06 100644 Binary files a/packages/client/public/img/sprites/mobs/rabbitman.png and b/packages/client/public/img/sprites/mobs/rabbitman.png differ diff --git a/packages/client/public/img/sprites/mobs/rat.png b/packages/client/public/img/sprites/mobs/rat.png index d6d843c50b..ae1d6526ec 100755 Binary files a/packages/client/public/img/sprites/mobs/rat.png and b/packages/client/public/img/sprites/mobs/rat.png differ diff --git a/packages/client/public/img/sprites/mobs/redcockroach.png b/packages/client/public/img/sprites/mobs/redcockroach.png index c40344931e..c514badd2f 100755 Binary files a/packages/client/public/img/sprites/mobs/redcockroach.png and b/packages/client/public/img/sprites/mobs/redcockroach.png differ diff --git a/packages/client/public/img/sprites/mobs/redfish.png b/packages/client/public/img/sprites/mobs/redfish.png index 0821cbb170..162ac98c1b 100755 Binary files a/packages/client/public/img/sprites/mobs/redfish.png and b/packages/client/public/img/sprites/mobs/redfish.png differ diff --git a/packages/client/public/img/sprites/mobs/redguard.png b/packages/client/public/img/sprites/mobs/redguard.png index e8cc24c27a..c6d8b62f4a 100755 Binary files a/packages/client/public/img/sprites/mobs/redguard.png and b/packages/client/public/img/sprites/mobs/redguard.png differ diff --git a/packages/client/public/img/sprites/mobs/redpirateskeleton.png b/packages/client/public/img/sprites/mobs/redpirateskeleton.png index 9581f8c7b2..3a60e66b7c 100755 Binary files a/packages/client/public/img/sprites/mobs/redpirateskeleton.png and b/packages/client/public/img/sprites/mobs/redpirateskeleton.png differ diff --git a/packages/client/public/img/sprites/mobs/scorpion.png b/packages/client/public/img/sprites/mobs/scorpion.png deleted file mode 100755 index 31c0e27a2e..0000000000 Binary files a/packages/client/public/img/sprites/mobs/scorpion.png and /dev/null differ diff --git a/packages/client/public/img/sprites/mobs/slime.png b/packages/client/public/img/sprites/mobs/slime.png index d18d05a60e..4444db6f5f 100644 Binary files a/packages/client/public/img/sprites/mobs/slime.png and b/packages/client/public/img/sprites/mobs/slime.png differ diff --git a/packages/client/public/img/sprites/mobs/snowelf.png b/packages/client/public/img/sprites/mobs/snowelf.png index 47eb72ae0a..8ebb7f8a10 100755 Binary files a/packages/client/public/img/sprites/mobs/snowelf.png and b/packages/client/public/img/sprites/mobs/snowelf.png differ diff --git a/packages/client/public/img/sprites/mobs/snowrabbit.png b/packages/client/public/img/sprites/mobs/snowrabbit.png index d470273eed..21843549d8 100755 Binary files a/packages/client/public/img/sprites/mobs/snowrabbit.png and b/packages/client/public/img/sprites/mobs/snowrabbit.png differ diff --git a/packages/client/public/img/sprites/mobs/snowwolf.png b/packages/client/public/img/sprites/mobs/snowwolf.png index f4cfb59260..91341661e6 100755 Binary files a/packages/client/public/img/sprites/mobs/snowwolf.png and b/packages/client/public/img/sprites/mobs/snowwolf.png differ diff --git a/packages/client/public/img/sprites/mobs/spectre.png b/packages/client/public/img/sprites/mobs/spectre.png index 552e877c7b..7dfd881db6 100755 Binary files a/packages/client/public/img/sprites/mobs/spectre.png and b/packages/client/public/img/sprites/mobs/spectre.png differ diff --git a/packages/client/public/img/sprites/mobs/spider.png b/packages/client/public/img/sprites/mobs/spider.png index e0c1437364..942ba9441c 100755 Binary files a/packages/client/public/img/sprites/mobs/spider.png and b/packages/client/public/img/sprites/mobs/spider.png differ diff --git a/packages/client/public/img/sprites/mobs/suicideghost.png b/packages/client/public/img/sprites/mobs/suicideghost.png index 461aaaafaa..bfeff436e4 100755 Binary files a/packages/client/public/img/sprites/mobs/suicideghost.png and b/packages/client/public/img/sprites/mobs/suicideghost.png differ diff --git a/packages/client/public/img/sprites/mobs/vulture.png b/packages/client/public/img/sprites/mobs/vulture.png index fad47ea541..dbdb8b93cf 100755 Binary files a/packages/client/public/img/sprites/mobs/vulture.png and b/packages/client/public/img/sprites/mobs/vulture.png differ diff --git a/packages/client/public/img/sprites/mobs/windguardian copy.png b/packages/client/public/img/sprites/mobs/windguardian copy.png new file mode 100755 index 0000000000..b914221991 Binary files /dev/null and b/packages/client/public/img/sprites/mobs/windguardian copy.png differ diff --git a/packages/client/public/img/sprites/mobs/windguardian.png b/packages/client/public/img/sprites/mobs/windguardian.png index 11cf1ec4b1..cd1bccf2cd 100755 Binary files a/packages/client/public/img/sprites/mobs/windguardian.png and b/packages/client/public/img/sprites/mobs/windguardian.png differ diff --git a/packages/client/public/img/sprites/mobs/wolf.png b/packages/client/public/img/sprites/mobs/wolf.png index 6b18727e82..e9f1d31c16 100755 Binary files a/packages/client/public/img/sprites/mobs/wolf.png and b/packages/client/public/img/sprites/mobs/wolf.png differ diff --git a/packages/client/public/img/sprites/mobs/yellowfish.png b/packages/client/public/img/sprites/mobs/yellowfish.png index 0ae7efd887..7e655d182c 100755 Binary files a/packages/client/public/img/sprites/mobs/yellowfish.png and b/packages/client/public/img/sprites/mobs/yellowfish.png differ diff --git a/packages/client/public/img/sprites/npcs/agent.png b/packages/client/public/img/sprites/npcs/agent.png old mode 100755 new mode 100644 index 616768cc6b..365603f5d4 Binary files a/packages/client/public/img/sprites/npcs/agent.png and b/packages/client/public/img/sprites/npcs/agent.png differ diff --git a/packages/client/public/img/sprites/npcs/angelnpc.png b/packages/client/public/img/sprites/npcs/angelnpc.png old mode 100755 new mode 100644 index 94418dce4f..78c4d3f751 Binary files a/packages/client/public/img/sprites/npcs/angelnpc.png and b/packages/client/public/img/sprites/npcs/angelnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/beachnpc.png b/packages/client/public/img/sprites/npcs/beachnpc.png old mode 100755 new mode 100644 index 1062207b8b..284e62a90e Binary files a/packages/client/public/img/sprites/npcs/beachnpc.png and b/packages/client/public/img/sprites/npcs/beachnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/blacksmith.png b/packages/client/public/img/sprites/npcs/blacksmith.png new file mode 100644 index 0000000000..2ea01a0850 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/blacksmith.png differ diff --git a/packages/client/public/img/sprites/npcs/blacksmith2.png b/packages/client/public/img/sprites/npcs/blacksmith2.png new file mode 100644 index 0000000000..ed36bd8ce2 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/blacksmith2.png differ diff --git a/packages/client/public/img/sprites/npcs/bluebikinigirlnpc.png b/packages/client/public/img/sprites/npcs/bluebikinigirlnpc.png old mode 100755 new mode 100644 index 940744effe..82205083a5 Binary files a/packages/client/public/img/sprites/npcs/bluebikinigirlnpc.png and b/packages/client/public/img/sprites/npcs/bluebikinigirlnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/boxingman.png b/packages/client/public/img/sprites/npcs/boxingman.png old mode 100755 new mode 100644 index bd516f44ee..ddefa95a09 Binary files a/packages/client/public/img/sprites/npcs/boxingman.png and b/packages/client/public/img/sprites/npcs/boxingman.png differ diff --git a/packages/client/public/img/sprites/npcs/coder.png b/packages/client/public/img/sprites/npcs/coder.png old mode 100755 new mode 100644 index 0eeba48a1e..c3fc19cff4 Binary files a/packages/client/public/img/sprites/npcs/coder.png and b/packages/client/public/img/sprites/npcs/coder.png differ diff --git a/packages/client/public/img/sprites/npcs/desertnpc.png b/packages/client/public/img/sprites/npcs/desertnpc.png old mode 100755 new mode 100644 index 7c5716c462..4c115d65b5 Binary files a/packages/client/public/img/sprites/npcs/desertnpc.png and b/packages/client/public/img/sprites/npcs/desertnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/doctor.png b/packages/client/public/img/sprites/npcs/doctor.png old mode 100755 new mode 100644 index 5b687d7024..56f0d8f0c5 Binary files a/packages/client/public/img/sprites/npcs/doctor.png and b/packages/client/public/img/sprites/npcs/doctor.png differ diff --git a/packages/client/public/img/sprites/npcs/elfnpc.png b/packages/client/public/img/sprites/npcs/elfnpc.png old mode 100755 new mode 100644 index 94a6354ba8..a9e0a845b6 Binary files a/packages/client/public/img/sprites/npcs/elfnpc.png and b/packages/client/public/img/sprites/npcs/elfnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/fairynpc.png b/packages/client/public/img/sprites/npcs/fairynpc.png old mode 100755 new mode 100644 index 7fa24cf5c4..1673def46d Binary files a/packages/client/public/img/sprites/npcs/fairynpc.png and b/packages/client/public/img/sprites/npcs/fairynpc.png differ diff --git a/packages/client/public/img/sprites/npcs/fairynpc2.png b/packages/client/public/img/sprites/npcs/fairynpc2.png new file mode 100644 index 0000000000..04e4483309 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/fairynpc2.png differ diff --git a/packages/client/public/img/sprites/npcs/firstsonangelnpc.png b/packages/client/public/img/sprites/npcs/firstsonangelnpc.png old mode 100755 new mode 100644 index 17a4fa804c..4922a03ea5 Binary files a/packages/client/public/img/sprites/npcs/firstsonangelnpc.png and b/packages/client/public/img/sprites/npcs/firstsonangelnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/fisherman.png b/packages/client/public/img/sprites/npcs/fisherman.png old mode 100755 new mode 100644 index 4b92a1b7b6..69c76110db Binary files a/packages/client/public/img/sprites/npcs/fisherman.png and b/packages/client/public/img/sprites/npcs/fisherman.png differ diff --git a/packages/client/public/img/sprites/npcs/forestnpc.png b/packages/client/public/img/sprites/npcs/forestnpc.png old mode 100755 new mode 100644 index a4f1744525..72d1075608 Binary files a/packages/client/public/img/sprites/npcs/forestnpc.png and b/packages/client/public/img/sprites/npcs/forestnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/greenstoremannpc.png b/packages/client/public/img/sprites/npcs/greenstoremannpc.png index 5ec3b4d73c..b8afa4e9b9 100644 Binary files a/packages/client/public/img/sprites/npcs/greenstoremannpc.png and b/packages/client/public/img/sprites/npcs/greenstoremannpc.png differ diff --git a/packages/client/public/img/sprites/npcs/guard.png b/packages/client/public/img/sprites/npcs/guard.png old mode 100755 new mode 100644 index 29f2288643..daedf6cea2 Binary files a/packages/client/public/img/sprites/npcs/guard.png and b/packages/client/public/img/sprites/npcs/guard.png differ diff --git a/packages/client/public/img/sprites/npcs/guard2.png b/packages/client/public/img/sprites/npcs/guard2.png index b87990647c..63d10ee40d 100644 Binary files a/packages/client/public/img/sprites/npcs/guard2.png and b/packages/client/public/img/sprites/npcs/guard2.png differ diff --git a/packages/client/public/img/sprites/npcs/guildnpc.png b/packages/client/public/img/sprites/npcs/guildnpc.png index af592e8bc4..40d3788764 100644 Binary files a/packages/client/public/img/sprites/npcs/guildnpc.png and b/packages/client/public/img/sprites/npcs/guildnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/herbalist.png b/packages/client/public/img/sprites/npcs/herbalist.png new file mode 100644 index 0000000000..0d91533489 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/herbalist.png differ diff --git a/packages/client/public/img/sprites/npcs/iamverycoldnpc.png b/packages/client/public/img/sprites/npcs/iamverycoldnpc.png old mode 100755 new mode 100644 index bb36dbf5b8..162405a90e Binary files a/packages/client/public/img/sprites/npcs/iamverycoldnpc.png and b/packages/client/public/img/sprites/npcs/iamverycoldnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/iceelfnpc.png b/packages/client/public/img/sprites/npcs/iceelfnpc.png old mode 100755 new mode 100644 index 164f27af76..353ef83f64 Binary files a/packages/client/public/img/sprites/npcs/iceelfnpc.png and b/packages/client/public/img/sprites/npcs/iceelfnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/king.png b/packages/client/public/img/sprites/npcs/king.png old mode 100755 new mode 100644 index 9abd7f7d15..d568a32030 Binary files a/packages/client/public/img/sprites/npcs/king.png and b/packages/client/public/img/sprites/npcs/king.png differ diff --git a/packages/client/public/img/sprites/npcs/king2.png b/packages/client/public/img/sprites/npcs/king2.png index 9abd7f7d15..5d8747b93d 100644 Binary files a/packages/client/public/img/sprites/npcs/king2.png and b/packages/client/public/img/sprites/npcs/king2.png differ diff --git a/packages/client/public/img/sprites/npcs/lavanpc.png b/packages/client/public/img/sprites/npcs/lavanpc.png old mode 100755 new mode 100644 index b60e10e61c..e31a1831e6 Binary files a/packages/client/public/img/sprites/npcs/lavanpc.png and b/packages/client/public/img/sprites/npcs/lavanpc.png differ diff --git a/packages/client/public/img/sprites/npcs/madscientist.png b/packages/client/public/img/sprites/npcs/madscientist.png new file mode 100644 index 0000000000..273eb73f48 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/madscientist.png differ diff --git a/packages/client/public/img/sprites/npcs/mermaidnpc.png b/packages/client/public/img/sprites/npcs/mermaidnpc.png old mode 100755 new mode 100644 index 61d73e310b..3b49ada0d1 Binary files a/packages/client/public/img/sprites/npcs/mermaidnpc.png and b/packages/client/public/img/sprites/npcs/mermaidnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/miner.png b/packages/client/public/img/sprites/npcs/miner.png index 895a372b73..3ccaac4ba6 100644 Binary files a/packages/client/public/img/sprites/npcs/miner.png and b/packages/client/public/img/sprites/npcs/miner.png differ diff --git a/packages/client/public/img/sprites/npcs/miner2.png b/packages/client/public/img/sprites/npcs/miner2.png new file mode 100644 index 0000000000..d99014f6e8 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/miner2.png differ diff --git a/packages/client/public/img/sprites/npcs/momangelnpc.png b/packages/client/public/img/sprites/npcs/momangelnpc.png old mode 100755 new mode 100644 index 366ecb9808..e2f9236aab Binary files a/packages/client/public/img/sprites/npcs/momangelnpc.png and b/packages/client/public/img/sprites/npcs/momangelnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/octopus.png b/packages/client/public/img/sprites/npcs/octopus.png old mode 100755 new mode 100644 index 46ba65aacb..9adf3f574b Binary files a/packages/client/public/img/sprites/npcs/octopus.png and b/packages/client/public/img/sprites/npcs/octopus.png differ diff --git a/packages/client/public/img/sprites/npcs/oddeyecat.png b/packages/client/public/img/sprites/npcs/oddeyecat.png old mode 100755 new mode 100644 index abfa5c0bc1..fef82fcc71 Binary files a/packages/client/public/img/sprites/npcs/oddeyecat.png and b/packages/client/public/img/sprites/npcs/oddeyecat.png differ diff --git a/packages/client/public/img/sprites/npcs/oldlady.png b/packages/client/public/img/sprites/npcs/oldlady.png index a155266fd4..645e31d09d 100644 Binary files a/packages/client/public/img/sprites/npcs/oldlady.png and b/packages/client/public/img/sprites/npcs/oldlady.png differ diff --git a/packages/client/public/img/sprites/npcs/oldlady2.png b/packages/client/public/img/sprites/npcs/oldlady2.png index 4bad69d56d..8a390a2f15 100644 Binary files a/packages/client/public/img/sprites/npcs/oldlady2.png and b/packages/client/public/img/sprites/npcs/oldlady2.png differ diff --git a/packages/client/public/img/sprites/npcs/pirategirlnpc.png b/packages/client/public/img/sprites/npcs/pirategirlnpc.png old mode 100755 new mode 100644 index 8925fa2a56..ccb52fd843 Binary files a/packages/client/public/img/sprites/npcs/pirategirlnpc.png and b/packages/client/public/img/sprites/npcs/pirategirlnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/priest.png b/packages/client/public/img/sprites/npcs/priest.png old mode 100755 new mode 100644 index afa7a2e2fb..51e6c34d35 Binary files a/packages/client/public/img/sprites/npcs/priest.png and b/packages/client/public/img/sprites/npcs/priest.png differ diff --git a/packages/client/public/img/sprites/npcs/prisoner.png b/packages/client/public/img/sprites/npcs/prisoner.png new file mode 100644 index 0000000000..7050c30689 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/prisoner.png differ diff --git a/packages/client/public/img/sprites/npcs/purplestoremannpc.png b/packages/client/public/img/sprites/npcs/purplestoremannpc.png index 7b68e5d91f..e1bb685c4d 100644 Binary files a/packages/client/public/img/sprites/npcs/purplestoremannpc.png and b/packages/client/public/img/sprites/npcs/purplestoremannpc.png differ diff --git a/packages/client/public/img/sprites/npcs/ratnpc.png b/packages/client/public/img/sprites/npcs/ratnpc.png index c8f7018436..78d8179ffc 100644 Binary files a/packages/client/public/img/sprites/npcs/ratnpc.png and b/packages/client/public/img/sprites/npcs/ratnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/redbikinigirlnpc.png b/packages/client/public/img/sprites/npcs/redbikinigirlnpc.png old mode 100755 new mode 100644 index 7d245970a9..12dd553c3b Binary files a/packages/client/public/img/sprites/npcs/redbikinigirlnpc.png and b/packages/client/public/img/sprites/npcs/redbikinigirlnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/redstoremannpc.png b/packages/client/public/img/sprites/npcs/redstoremannpc.png old mode 100755 new mode 100644 index 9279906610..7da63c074d Binary files a/packages/client/public/img/sprites/npcs/redstoremannpc.png and b/packages/client/public/img/sprites/npcs/redstoremannpc.png differ diff --git a/packages/client/public/img/sprites/npcs/rick.png b/packages/client/public/img/sprites/npcs/rick.png old mode 100755 new mode 100644 index cdb5b8b2f2..c7546d3eec Binary files a/packages/client/public/img/sprites/npcs/rick.png and b/packages/client/public/img/sprites/npcs/rick.png differ diff --git a/packages/client/public/img/sprites/npcs/rickgf.png b/packages/client/public/img/sprites/npcs/rickgf.png new file mode 100644 index 0000000000..3fd1d61646 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/rickgf.png differ diff --git a/packages/client/public/img/sprites/npcs/royalguard.png b/packages/client/public/img/sprites/npcs/royalguard.png index d1a1b1f897..0a825eb15e 100644 Binary files a/packages/client/public/img/sprites/npcs/royalguard.png and b/packages/client/public/img/sprites/npcs/royalguard.png differ diff --git a/packages/client/public/img/sprites/npcs/royalguard2.png b/packages/client/public/img/sprites/npcs/royalguard2.png index e701a5f1d3..4f2daf97ff 100644 Binary files a/packages/client/public/img/sprites/npcs/royalguard2.png and b/packages/client/public/img/sprites/npcs/royalguard2.png differ diff --git a/packages/client/public/img/sprites/npcs/royalguard3.png b/packages/client/public/img/sprites/npcs/royalguard3.png index 383c5b8053..01aa5f69a3 100644 Binary files a/packages/client/public/img/sprites/npcs/royalguard3.png and b/packages/client/public/img/sprites/npcs/royalguard3.png differ diff --git a/packages/client/public/img/sprites/npcs/santaelfnpc.png b/packages/client/public/img/sprites/npcs/santaelfnpc.png index 0312059cb8..af420963d7 100644 Binary files a/packages/client/public/img/sprites/npcs/santaelfnpc.png and b/packages/client/public/img/sprites/npcs/santaelfnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/scientist.png b/packages/client/public/img/sprites/npcs/scientist.png old mode 100755 new mode 100644 index 0a98f6bd0d..c617860f5c Binary files a/packages/client/public/img/sprites/npcs/scientist.png and b/packages/client/public/img/sprites/npcs/scientist.png differ diff --git a/packages/client/public/img/sprites/npcs/secondsonangelnpc.png b/packages/client/public/img/sprites/npcs/secondsonangelnpc.png old mode 100755 new mode 100644 index 8cd95b85f0..b9cf16326e Binary files a/packages/client/public/img/sprites/npcs/secondsonangelnpc.png and b/packages/client/public/img/sprites/npcs/secondsonangelnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/shepherdboy.png b/packages/client/public/img/sprites/npcs/shepherdboy.png old mode 100755 new mode 100644 index 703c9df44f..0ed2b83449 Binary files a/packages/client/public/img/sprites/npcs/shepherdboy.png and b/packages/client/public/img/sprites/npcs/shepherdboy.png differ diff --git a/packages/client/public/img/sprites/npcs/shroomy.png b/packages/client/public/img/sprites/npcs/shroomy.png new file mode 100644 index 0000000000..e18fec4d48 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/shroomy.png differ diff --git a/packages/client/public/img/sprites/npcs/snowshepherdboy.png b/packages/client/public/img/sprites/npcs/snowshepherdboy.png old mode 100755 new mode 100644 index 5e006c9f06..77a5783083 Binary files a/packages/client/public/img/sprites/npcs/snowshepherdboy.png and b/packages/client/public/img/sprites/npcs/snowshepherdboy.png differ diff --git a/packages/client/public/img/sprites/npcs/soldier.png b/packages/client/public/img/sprites/npcs/soldier.png old mode 100755 new mode 100644 index 88c2ba50bd..881018f97f Binary files a/packages/client/public/img/sprites/npcs/soldier.png and b/packages/client/public/img/sprites/npcs/soldier.png differ diff --git a/packages/client/public/img/sprites/npcs/sorcerer.png b/packages/client/public/img/sprites/npcs/sorcerer.png old mode 100755 new mode 100644 index 08b4e5a6e9..ac5efa1346 Binary files a/packages/client/public/img/sprites/npcs/sorcerer.png and b/packages/client/public/img/sprites/npcs/sorcerer.png differ diff --git a/packages/client/public/img/sprites/npcs/superiorangelnpc.png b/packages/client/public/img/sprites/npcs/superiorangelnpc.png old mode 100755 new mode 100644 index 902f10feaa..ab181a8726 Binary files a/packages/client/public/img/sprites/npcs/superiorangelnpc.png and b/packages/client/public/img/sprites/npcs/superiorangelnpc.png differ diff --git a/packages/client/public/img/sprites/npcs/villagegirl.png b/packages/client/public/img/sprites/npcs/villagegirl.png old mode 100755 new mode 100644 index 9585388439..739de32084 Binary files a/packages/client/public/img/sprites/npcs/villagegirl.png and b/packages/client/public/img/sprites/npcs/villagegirl.png differ diff --git a/packages/client/public/img/sprites/npcs/villagegirl2.png b/packages/client/public/img/sprites/npcs/villagegirl2.png index b1c0138aca..82fc4bee74 100644 Binary files a/packages/client/public/img/sprites/npcs/villagegirl2.png and b/packages/client/public/img/sprites/npcs/villagegirl2.png differ diff --git a/packages/client/public/img/sprites/npcs/villagegirl3.png b/packages/client/public/img/sprites/npcs/villagegirl3.png index 9c90670ae6..b8ea1bdf5e 100644 Binary files a/packages/client/public/img/sprites/npcs/villagegirl3.png and b/packages/client/public/img/sprites/npcs/villagegirl3.png differ diff --git a/packages/client/public/img/sprites/npcs/villagegirl4.png b/packages/client/public/img/sprites/npcs/villagegirl4.png new file mode 100644 index 0000000000..b0d1fe4e89 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/villagegirl4.png differ diff --git a/packages/client/public/img/sprites/npcs/villagegirl5.png b/packages/client/public/img/sprites/npcs/villagegirl5.png new file mode 100755 index 0000000000..a543eb633a Binary files /dev/null and b/packages/client/public/img/sprites/npcs/villagegirl5.png differ diff --git a/packages/client/public/img/sprites/npcs/villagegirl6.png b/packages/client/public/img/sprites/npcs/villagegirl6.png new file mode 100755 index 0000000000..6f6bc6c115 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/villagegirl6.png differ diff --git a/packages/client/public/img/sprites/npcs/villagegirl7.png b/packages/client/public/img/sprites/npcs/villagegirl7.png new file mode 100755 index 0000000000..89d8130dc4 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/villagegirl7.png differ diff --git a/packages/client/public/img/sprites/npcs/villager2.png b/packages/client/public/img/sprites/npcs/villager2.png new file mode 100755 index 0000000000..ab19d1174b Binary files /dev/null and b/packages/client/public/img/sprites/npcs/villager2.png differ diff --git a/packages/client/public/img/sprites/npcs/villager3.png b/packages/client/public/img/sprites/npcs/villager3.png new file mode 100644 index 0000000000..d6a22a7859 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/villager3.png differ diff --git a/packages/client/public/img/sprites/npcs/villager4.png b/packages/client/public/img/sprites/npcs/villager4.png new file mode 100644 index 0000000000..f25435dec3 Binary files /dev/null and b/packages/client/public/img/sprites/npcs/villager4.png differ diff --git a/packages/client/public/img/sprites/objects/footlocker.png b/packages/client/public/img/sprites/objects/footlocker.png new file mode 100644 index 0000000000..ddf21c50a9 Binary files /dev/null and b/packages/client/public/img/sprites/objects/footlocker.png differ diff --git a/packages/client/public/img/sprites/objects/reinforcedchest.png b/packages/client/public/img/sprites/objects/reinforcedchest.png new file mode 100644 index 0000000000..28f728edb5 Binary files /dev/null and b/packages/client/public/img/sprites/objects/reinforcedchest.png differ diff --git a/packages/client/public/img/sprites/objects/smallchest.png b/packages/client/public/img/sprites/objects/smallchest.png new file mode 100644 index 0000000000..563f431339 Binary files /dev/null and b/packages/client/public/img/sprites/objects/smallchest.png differ diff --git a/packages/client/public/img/sprites/pets/ratballoon.png b/packages/client/public/img/sprites/pets/ratballoon.png new file mode 100644 index 0000000000..74ef0a5334 Binary files /dev/null and b/packages/client/public/img/sprites/pets/ratballoon.png differ diff --git a/packages/client/public/img/sprites/pets/rathat.png b/packages/client/public/img/sprites/pets/rathat.png index 173eb8bc93..1b570e7215 100644 Binary files a/packages/client/public/img/sprites/pets/rathat.png and b/packages/client/public/img/sprites/pets/rathat.png differ diff --git a/packages/client/public/img/sprites/player/base.png b/packages/client/public/img/sprites/player/base.png index d4368945bd..931c8c8eb3 100644 Binary files a/packages/client/public/img/sprites/player/base.png and b/packages/client/public/img/sprites/player/base.png differ diff --git a/packages/client/public/img/sprites/player/base_48x48.png b/packages/client/public/img/sprites/player/base_48x48.png index d8af0e797f..ed004037da 100644 Binary files a/packages/client/public/img/sprites/player/base_48x48.png and b/packages/client/public/img/sprites/player/base_48x48.png differ diff --git a/packages/client/public/img/sprites/player/cape/wings.png b/packages/client/public/img/sprites/player/cape/wings.png new file mode 100644 index 0000000000..066e7d236b Binary files /dev/null and b/packages/client/public/img/sprites/player/cape/wings.png differ diff --git a/packages/client/public/img/sprites/player/cape/wingsdark.png b/packages/client/public/img/sprites/player/cape/wingsdark.png new file mode 100644 index 0000000000..7bbbfe7d31 Binary files /dev/null and b/packages/client/public/img/sprites/player/cape/wingsdark.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/amethystchestplate.png b/packages/client/public/img/sprites/player/chestplate/amethystchestplate.png new file mode 100644 index 0000000000..7f0b68426b Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/amethystchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/bluemysticchest.png b/packages/client/public/img/sprites/player/chestplate/bluemysticchest.png new file mode 100644 index 0000000000..b6ce6204e3 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/bluemysticchest.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/bronzechestplate.png b/packages/client/public/img/sprites/player/chestplate/bronzechestplate.png new file mode 100644 index 0000000000..3d7d43a986 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/bronzechestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/cobaltchestplate.png b/packages/client/public/img/sprites/player/chestplate/cobaltchestplate.png new file mode 100644 index 0000000000..f7b6f94afe Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/cobaltchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/conquerorchestplate.png b/packages/client/public/img/sprites/player/chestplate/conquerorchestplate.png new file mode 100644 index 0000000000..459003aaa1 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/conquerorchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/copperchestplate.png b/packages/client/public/img/sprites/player/chestplate/copperchestplate.png new file mode 100644 index 0000000000..53e18d7811 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/copperchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/goldchestplate.png b/packages/client/public/img/sprites/player/chestplate/goldchestplate.png new file mode 100644 index 0000000000..953264acc6 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/goldchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/greenmysticchest.png b/packages/client/public/img/sprites/player/chestplate/greenmysticchest.png new file mode 100644 index 0000000000..4184f1f7fe Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/greenmysticchest.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/hellkeeperchestplate.png b/packages/client/public/img/sprites/player/chestplate/hellkeeperchestplate.png new file mode 100644 index 0000000000..94e8d02ab1 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/hellkeeperchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/ironchestplate.png b/packages/client/public/img/sprites/player/chestplate/ironchestplate.png index 7907126ae2..98e709d832 100644 Binary files a/packages/client/public/img/sprites/player/chestplate/ironchestplate.png and b/packages/client/public/img/sprites/player/chestplate/ironchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/knightchestplate.png b/packages/client/public/img/sprites/player/chestplate/knightchestplate.png new file mode 100644 index 0000000000..f68ebf80b2 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/knightchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/leatherchest.png b/packages/client/public/img/sprites/player/chestplate/leatherchest.png new file mode 100644 index 0000000000..8845bd81cd Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/leatherchest.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/midnightamethystchestplate.png b/packages/client/public/img/sprites/player/chestplate/midnightamethystchestplate.png new file mode 100644 index 0000000000..c4d3d16374 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/midnightamethystchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/minitauruschest.png b/packages/client/public/img/sprites/player/chestplate/minitauruschest.png new file mode 100644 index 0000000000..3125f01f82 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/minitauruschest.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/mysticchest.png b/packages/client/public/img/sprites/player/chestplate/mysticchest.png new file mode 100644 index 0000000000..a4af0d2631 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/mysticchest.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/nightchestplate.png b/packages/client/public/img/sprites/player/chestplate/nightchestplate.png new file mode 100644 index 0000000000..6938092220 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/nightchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/paladinchestplate.png b/packages/client/public/img/sprites/player/chestplate/paladinchestplate.png new file mode 100644 index 0000000000..d0d9394408 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/paladinchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/refinedsapphirechestplate.png b/packages/client/public/img/sprites/player/chestplate/refinedsapphirechestplate.png new file mode 100644 index 0000000000..277c883434 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/refinedsapphirechestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/rubychestplate.png b/packages/client/public/img/sprites/player/chestplate/rubychestplate.png new file mode 100644 index 0000000000..9d094ca78b Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/rubychestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/samuraichestplate.png b/packages/client/public/img/sprites/player/chestplate/samuraichestplate.png new file mode 100644 index 0000000000..43642c7971 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/samuraichestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/sapphirechestplate.png b/packages/client/public/img/sprites/player/chestplate/sapphirechestplate.png new file mode 100644 index 0000000000..74023d4e5f Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/sapphirechestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/scarabchest.png b/packages/client/public/img/sprites/player/chestplate/scarabchest.png new file mode 100644 index 0000000000..e6670ccfd4 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/scarabchest.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/sentinelchestplate.png b/packages/client/public/img/sprites/player/chestplate/sentinelchestplate.png new file mode 100644 index 0000000000..4adf22d5ba Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/sentinelchestplate.png differ diff --git a/packages/client/public/img/sprites/player/chestplate/tinchestplate.png b/packages/client/public/img/sprites/player/chestplate/tinchestplate.png new file mode 100644 index 0000000000..f3677aed41 Binary files /dev/null and b/packages/client/public/img/sprites/player/chestplate/tinchestplate.png differ diff --git a/packages/client/public/img/sprites/player/helmet/amethysthelm.png b/packages/client/public/img/sprites/player/helmet/amethysthelm.png new file mode 100644 index 0000000000..49217b7e1f Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/amethysthelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/artistcrown.png b/packages/client/public/img/sprites/player/helmet/artistcrown.png new file mode 100644 index 0000000000..0739587436 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/artistcrown.png differ diff --git a/packages/client/public/img/sprites/player/helmet/bearhelm.png b/packages/client/public/img/sprites/player/helmet/bearhelm.png new file mode 100644 index 0000000000..a0520a282f Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/bearhelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/bronzehelmet.png b/packages/client/public/img/sprites/player/helmet/bronzehelmet.png index 9545d5222b..2e66bc6144 100644 Binary files a/packages/client/public/img/sprites/player/helmet/bronzehelmet.png and b/packages/client/public/img/sprites/player/helmet/bronzehelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/cobalthelmet.png b/packages/client/public/img/sprites/player/helmet/cobalthelmet.png index 4c2876a866..06404e77ec 100644 Binary files a/packages/client/public/img/sprites/player/helmet/cobalthelmet.png and b/packages/client/public/img/sprites/player/helmet/cobalthelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/conquerorhelmet.png b/packages/client/public/img/sprites/player/helmet/conquerorhelmet.png new file mode 100644 index 0000000000..d308c3fb93 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/conquerorhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/copperhelmet.png b/packages/client/public/img/sprites/player/helmet/copperhelmet.png index 0df41df430..6243756c38 100644 Binary files a/packages/client/public/img/sprites/player/helmet/copperhelmet.png and b/packages/client/public/img/sprites/player/helmet/copperhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/crystalhood.png b/packages/client/public/img/sprites/player/helmet/crystalhood.png new file mode 100644 index 0000000000..e8afb136da Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/crystalhood.png differ diff --git a/packages/client/public/img/sprites/player/helmet/darkmagehood.png b/packages/client/public/img/sprites/player/helmet/darkmagehood.png new file mode 100644 index 0000000000..94865bd8c9 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/darkmagehood.png differ diff --git a/packages/client/public/img/sprites/player/helmet/darkmagehoodblue.png b/packages/client/public/img/sprites/player/helmet/darkmagehoodblue.png new file mode 100644 index 0000000000..380e61355f Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/darkmagehoodblue.png differ diff --git a/packages/client/public/img/sprites/player/helmet/darkmagehoodgold.png b/packages/client/public/img/sprites/player/helmet/darkmagehoodgold.png new file mode 100644 index 0000000000..f396ee0539 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/darkmagehoodgold.png differ diff --git a/packages/client/public/img/sprites/player/helmet/darkmagehoodgreen.png b/packages/client/public/img/sprites/player/helmet/darkmagehoodgreen.png new file mode 100644 index 0000000000..3ed37535f0 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/darkmagehoodgreen.png differ diff --git a/packages/client/public/img/sprites/player/helmet/darkskeletonhelm.png b/packages/client/public/img/sprites/player/helmet/darkskeletonhelm.png new file mode 100644 index 0000000000..daa04cc99f Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/darkskeletonhelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/demoniccrystalhood.png b/packages/client/public/img/sprites/player/helmet/demoniccrystalhood.png new file mode 100644 index 0000000000..bc1c387e51 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/demoniccrystalhood.png differ diff --git a/packages/client/public/img/sprites/player/helmet/demonichelm.png b/packages/client/public/img/sprites/player/helmet/demonichelm.png new file mode 100644 index 0000000000..6fbc309ee4 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/demonichelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/elfhelmet.png b/packages/client/public/img/sprites/player/helmet/elfhelmet.png new file mode 100644 index 0000000000..4b13570ef3 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/elfhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/elfhelmetgrown.png b/packages/client/public/img/sprites/player/helmet/elfhelmetgrown.png new file mode 100644 index 0000000000..287636b61c Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/elfhelmetgrown.png differ diff --git a/packages/client/public/img/sprites/player/helmet/fishbowl.png b/packages/client/public/img/sprites/player/helmet/fishbowl.png new file mode 100644 index 0000000000..76a3f9a176 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/fishbowl.png differ diff --git a/packages/client/public/img/sprites/player/helmet/flameblackhelmet.png b/packages/client/public/img/sprites/player/helmet/flameblackhelmet.png new file mode 100644 index 0000000000..5edd8532ec Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/flameblackhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/flamebluehelmet.png b/packages/client/public/img/sprites/player/helmet/flamebluehelmet.png new file mode 100644 index 0000000000..65f5255b60 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/flamebluehelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/flamecursehelmet.png b/packages/client/public/img/sprites/player/helmet/flamecursehelmet.png new file mode 100644 index 0000000000..112b83c74b Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/flamecursehelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/flamehelmet.png b/packages/client/public/img/sprites/player/helmet/flamehelmet.png new file mode 100644 index 0000000000..29dcba310e Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/flamehelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/froghelm.png b/packages/client/public/img/sprites/player/helmet/froghelm.png new file mode 100644 index 0000000000..a836c43f43 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/froghelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/goldhelmet.png b/packages/client/public/img/sprites/player/helmet/goldhelmet.png index 673c632037..192dab8017 100644 Binary files a/packages/client/public/img/sprites/player/helmet/goldhelmet.png and b/packages/client/public/img/sprites/player/helmet/goldhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/hellkeeperhelm.png b/packages/client/public/img/sprites/player/helmet/hellkeeperhelm.png new file mode 100644 index 0000000000..90e8515195 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/hellkeeperhelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/helmofhaste.png b/packages/client/public/img/sprites/player/helmet/helmofhaste.png new file mode 100644 index 0000000000..8df2a7b21e Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/helmofhaste.png differ diff --git a/packages/client/public/img/sprites/player/helmet/helmofliberty.png b/packages/client/public/img/sprites/player/helmet/helmofliberty.png new file mode 100644 index 0000000000..91d76f008a Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/helmofliberty.png differ diff --git a/packages/client/public/img/sprites/player/helmet/ironhelmet.png b/packages/client/public/img/sprites/player/helmet/ironhelmet.png index 7ecb1d609d..391d62110c 100644 Binary files a/packages/client/public/img/sprites/player/helmet/ironhelmet.png and b/packages/client/public/img/sprites/player/helmet/ironhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/jesterhat.png b/packages/client/public/img/sprites/player/helmet/jesterhat.png new file mode 100644 index 0000000000..a64188b8b2 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/jesterhat.png differ diff --git a/packages/client/public/img/sprites/player/helmet/knighthelmet.png b/packages/client/public/img/sprites/player/helmet/knighthelmet.png new file mode 100644 index 0000000000..c8ef79ad68 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/knighthelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/leatherhelmet.png b/packages/client/public/img/sprites/player/helmet/leatherhelmet.png new file mode 100644 index 0000000000..a02f7c8704 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/leatherhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/magmahelm.png b/packages/client/public/img/sprites/player/helmet/magmahelm.png new file mode 100644 index 0000000000..b21c0592f9 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/magmahelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/midnightamethysthelm.png b/packages/client/public/img/sprites/player/helmet/midnightamethysthelm.png new file mode 100644 index 0000000000..2d906548c4 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/midnightamethysthelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/minitaurushelmet.png b/packages/client/public/img/sprites/player/helmet/minitaurushelmet.png new file mode 100644 index 0000000000..6de328228e Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/minitaurushelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/moonhelm.png b/packages/client/public/img/sprites/player/helmet/moonhelm.png new file mode 100644 index 0000000000..f6a102891d Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/moonhelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/mushroomhat.png b/packages/client/public/img/sprites/player/helmet/mushroomhat.png new file mode 100644 index 0000000000..e3369ac29e Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/mushroomhat.png differ diff --git a/packages/client/public/img/sprites/player/helmet/naturecrystalhood.png b/packages/client/public/img/sprites/player/helmet/naturecrystalhood.png new file mode 100644 index 0000000000..a6216671d3 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/naturecrystalhood.png differ diff --git a/packages/client/public/img/sprites/player/helmet/nighthelm.png b/packages/client/public/img/sprites/player/helmet/nighthelm.png new file mode 100644 index 0000000000..dba12dab3c Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/nighthelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/oldmanmask.png b/packages/client/public/img/sprites/player/helmet/oldmanmask.png new file mode 100644 index 0000000000..d531eaa256 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/oldmanmask.png differ diff --git a/packages/client/public/img/sprites/player/helmet/paladinhelmet.png b/packages/client/public/img/sprites/player/helmet/paladinhelmet.png new file mode 100644 index 0000000000..5a49450229 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/paladinhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/pilgrimhat.png b/packages/client/public/img/sprites/player/helmet/pilgrimhat.png new file mode 100644 index 0000000000..f11db21c82 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/pilgrimhat.png differ diff --git a/packages/client/public/img/sprites/player/helmet/pilgrimhatpink.png b/packages/client/public/img/sprites/player/helmet/pilgrimhatpink.png new file mode 100644 index 0000000000..e386ae92ab Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/pilgrimhatpink.png differ diff --git a/packages/client/public/img/sprites/player/helmet/redmoonhelm.png b/packages/client/public/img/sprites/player/helmet/redmoonhelm.png new file mode 100644 index 0000000000..75b4254947 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/redmoonhelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/refinedsapphirehelmet.png b/packages/client/public/img/sprites/player/helmet/refinedsapphirehelmet.png new file mode 100644 index 0000000000..aa2de56514 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/refinedsapphirehelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/rubyhelm.png b/packages/client/public/img/sprites/player/helmet/rubyhelm.png new file mode 100644 index 0000000000..a761998944 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/rubyhelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/samuraihelmet.png b/packages/client/public/img/sprites/player/helmet/samuraihelmet.png new file mode 100644 index 0000000000..26e3a21e1f Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/samuraihelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/sapphirehelm.png b/packages/client/public/img/sprites/player/helmet/sapphirehelm.png new file mode 100644 index 0000000000..4133ffe572 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/sapphirehelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/scarabhelmet.png b/packages/client/public/img/sprites/player/helmet/scarabhelmet.png new file mode 100644 index 0000000000..eac7c77961 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/scarabhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/scholarshat.png b/packages/client/public/img/sprites/player/helmet/scholarshat.png new file mode 100644 index 0000000000..48586c7639 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/scholarshat.png differ diff --git a/packages/client/public/img/sprites/player/helmet/scholarshatblack.png b/packages/client/public/img/sprites/player/helmet/scholarshatblack.png new file mode 100644 index 0000000000..b6e8afac34 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/scholarshatblack.png differ diff --git a/packages/client/public/img/sprites/player/helmet/scholarshatgreen.png b/packages/client/public/img/sprites/player/helmet/scholarshatgreen.png new file mode 100644 index 0000000000..ef54d3bbe0 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/scholarshatgreen.png differ diff --git a/packages/client/public/img/sprites/player/helmet/scholarshatred.png b/packages/client/public/img/sprites/player/helmet/scholarshatred.png new file mode 100644 index 0000000000..e982348e4a Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/scholarshatred.png differ diff --git a/packages/client/public/img/sprites/player/helmet/scholarshatyellow.png b/packages/client/public/img/sprites/player/helmet/scholarshatyellow.png new file mode 100644 index 0000000000..474d75ab60 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/scholarshatyellow.png differ diff --git a/packages/client/public/img/sprites/player/helmet/sentinelhelm.png b/packages/client/public/img/sprites/player/helmet/sentinelhelm.png new file mode 100644 index 0000000000..756ac8d74d Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/sentinelhelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/skeletonhelm.png b/packages/client/public/img/sprites/player/helmet/skeletonhelm.png new file mode 100644 index 0000000000..953f7fbd13 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/skeletonhelm.png differ diff --git a/packages/client/public/img/sprites/player/helmet/slimehelmet.png b/packages/client/public/img/sprites/player/helmet/slimehelmet.png new file mode 100644 index 0000000000..f0d0618161 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/slimehelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/slimekinghelmet.png b/packages/client/public/img/sprites/player/helmet/slimekinghelmet.png new file mode 100644 index 0000000000..ba4739b1cf Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/slimekinghelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/slimekingrarehelmet.png b/packages/client/public/img/sprites/player/helmet/slimekingrarehelmet.png new file mode 100644 index 0000000000..b91fd40db4 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/slimekingrarehelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/slimepurplehelmet.png b/packages/client/public/img/sprites/player/helmet/slimepurplehelmet.png new file mode 100644 index 0000000000..b82ecdf44f Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/slimepurplehelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/slimeredhelmet.png b/packages/client/public/img/sprites/player/helmet/slimeredhelmet.png new file mode 100644 index 0000000000..8996a34fda Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/slimeredhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/slimetealhelmet.png b/packages/client/public/img/sprites/player/helmet/slimetealhelmet.png new file mode 100644 index 0000000000..3801dd7c49 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/slimetealhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/sunshinecrystalhood.png b/packages/client/public/img/sprites/player/helmet/sunshinecrystalhood.png new file mode 100644 index 0000000000..ca8bf24812 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/sunshinecrystalhood.png differ diff --git a/packages/client/public/img/sprites/player/helmet/tinhelmet.png b/packages/client/public/img/sprites/player/helmet/tinhelmet.png index f506e244c8..edc4884564 100644 Binary files a/packages/client/public/img/sprites/player/helmet/tinhelmet.png and b/packages/client/public/img/sprites/player/helmet/tinhelmet.png differ diff --git a/packages/client/public/img/sprites/player/helmet/toyhat.png b/packages/client/public/img/sprites/player/helmet/toyhat.png new file mode 100644 index 0000000000..e1494c6b26 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/toyhat.png differ diff --git a/packages/client/public/img/sprites/player/helmet/toyhatprogrammer.png b/packages/client/public/img/sprites/player/helmet/toyhatprogrammer.png new file mode 100644 index 0000000000..d2fdc5828b Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/toyhatprogrammer.png differ diff --git a/packages/client/public/img/sprites/player/helmet/toyhatwhite.png b/packages/client/public/img/sprites/player/helmet/toyhatwhite.png new file mode 100644 index 0000000000..0fbdcc7ddd Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/toyhatwhite.png differ diff --git a/packages/client/public/img/sprites/player/helmet/witchhat.png b/packages/client/public/img/sprites/player/helmet/witchhat.png new file mode 100644 index 0000000000..853816605b Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/witchhat.png differ diff --git a/packages/client/public/img/sprites/player/helmet/witchhatblue.png b/packages/client/public/img/sprites/player/helmet/witchhatblue.png new file mode 100644 index 0000000000..acd1b0f575 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/witchhatblue.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatblack.png b/packages/client/public/img/sprites/player/helmet/wizardhatblack.png new file mode 100644 index 0000000000..1068ff8770 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatblack.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatblue.png b/packages/client/public/img/sprites/player/helmet/wizardhatblue.png new file mode 100644 index 0000000000..7e1eb51b83 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatblue.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatcrimson.png b/packages/client/public/img/sprites/player/helmet/wizardhatcrimson.png new file mode 100644 index 0000000000..e8a3c8ed34 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatcrimson.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatdarkblue.png b/packages/client/public/img/sprites/player/helmet/wizardhatdarkblue.png new file mode 100644 index 0000000000..f48944524a Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatdarkblue.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatgreen.png b/packages/client/public/img/sprites/player/helmet/wizardhatgreen.png new file mode 100644 index 0000000000..d8a9d1e1ce Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatgreen.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatpink.png b/packages/client/public/img/sprites/player/helmet/wizardhatpink.png new file mode 100644 index 0000000000..35af75c317 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatpink.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatpurple.png b/packages/client/public/img/sprites/player/helmet/wizardhatpurple.png new file mode 100644 index 0000000000..a982773d79 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatpurple.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatred.png b/packages/client/public/img/sprites/player/helmet/wizardhatred.png new file mode 100644 index 0000000000..19f54b5eb8 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatred.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatturquoise.png b/packages/client/public/img/sprites/player/helmet/wizardhatturquoise.png new file mode 100644 index 0000000000..e77467b0ec Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatturquoise.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatwhite.png b/packages/client/public/img/sprites/player/helmet/wizardhatwhite.png new file mode 100644 index 0000000000..3d59f25130 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatwhite.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wizardhatyellow.png b/packages/client/public/img/sprites/player/helmet/wizardhatyellow.png new file mode 100644 index 0000000000..bd978a0d23 Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wizardhatyellow.png differ diff --git a/packages/client/public/img/sprites/player/helmet/wolfhelmet.png b/packages/client/public/img/sprites/player/helmet/wolfhelmet.png new file mode 100644 index 0000000000..ee98b3513e Binary files /dev/null and b/packages/client/public/img/sprites/player/helmet/wolfhelmet.png differ diff --git a/packages/client/public/img/sprites/player/legplates/amethystlegplates.png b/packages/client/public/img/sprites/player/legplates/amethystlegplates.png new file mode 100644 index 0000000000..101d84b214 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/amethystlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/bronzelegplates.png b/packages/client/public/img/sprites/player/legplates/bronzelegplates.png new file mode 100644 index 0000000000..678b26a378 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/bronzelegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/cobaltlegplates.png b/packages/client/public/img/sprites/player/legplates/cobaltlegplates.png new file mode 100644 index 0000000000..c553620813 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/cobaltlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/conquerorlegplates.png b/packages/client/public/img/sprites/player/legplates/conquerorlegplates.png new file mode 100644 index 0000000000..fff9698b54 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/conquerorlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/copperlegplates.png b/packages/client/public/img/sprites/player/legplates/copperlegplates.png new file mode 100644 index 0000000000..e90c9ed6d2 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/copperlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/crystallegplates.png b/packages/client/public/img/sprites/player/legplates/crystallegplates.png new file mode 100644 index 0000000000..faebdf95bc Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/crystallegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/goldlegplates.png b/packages/client/public/img/sprites/player/legplates/goldlegplates.png new file mode 100644 index 0000000000..f69f068274 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/goldlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/hellkeeperlegplates.png b/packages/client/public/img/sprites/player/legplates/hellkeeperlegplates.png new file mode 100644 index 0000000000..f369946e0a Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/hellkeeperlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/ironlegplates.png b/packages/client/public/img/sprites/player/legplates/ironlegplates.png new file mode 100644 index 0000000000..821d86d819 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/ironlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/knightlegplates.png b/packages/client/public/img/sprites/player/legplates/knightlegplates.png new file mode 100644 index 0000000000..d5a71b8c48 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/knightlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/leatherleggings.png b/packages/client/public/img/sprites/player/legplates/leatherleggings.png new file mode 100644 index 0000000000..8bd074755f Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/leatherleggings.png differ diff --git a/packages/client/public/img/sprites/player/legplates/midnightamethystlegplates.png b/packages/client/public/img/sprites/player/legplates/midnightamethystlegplates.png new file mode 100644 index 0000000000..4f8b7072db Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/midnightamethystlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/minitauruslegplates.png b/packages/client/public/img/sprites/player/legplates/minitauruslegplates.png new file mode 100644 index 0000000000..cdbb61a223 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/minitauruslegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/nightlegplates.png b/packages/client/public/img/sprites/player/legplates/nightlegplates.png new file mode 100644 index 0000000000..f9089c4dda Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/nightlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/paladinlegplates.png b/packages/client/public/img/sprites/player/legplates/paladinlegplates.png new file mode 100644 index 0000000000..8ece524bbe Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/paladinlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/rubylegplates.png b/packages/client/public/img/sprites/player/legplates/rubylegplates.png new file mode 100644 index 0000000000..5f336090c7 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/rubylegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/samurailegplates.png b/packages/client/public/img/sprites/player/legplates/samurailegplates.png new file mode 100644 index 0000000000..82dcc00ecb Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/samurailegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/sapphirelegplates.png b/packages/client/public/img/sprites/player/legplates/sapphirelegplates.png new file mode 100644 index 0000000000..f991e6e4ca Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/sapphirelegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/scarablegplates.png b/packages/client/public/img/sprites/player/legplates/scarablegplates.png new file mode 100644 index 0000000000..7ccd5b41df Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/scarablegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/sentinelchestplate.png b/packages/client/public/img/sprites/player/legplates/sentinelchestplate.png new file mode 100644 index 0000000000..4adf22d5ba Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/sentinelchestplate.png differ diff --git a/packages/client/public/img/sprites/player/legplates/sentinelegplates.png b/packages/client/public/img/sprites/player/legplates/sentinelegplates.png new file mode 100644 index 0000000000..6349153929 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/sentinelegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/sentinellegplates.png b/packages/client/public/img/sprites/player/legplates/sentinellegplates.png new file mode 100644 index 0000000000..bdb686543e Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/sentinellegplates.png differ diff --git a/packages/client/public/img/sprites/player/legplates/tinlegplates.png b/packages/client/public/img/sprites/player/legplates/tinlegplates.png new file mode 100644 index 0000000000..4b3a3cfd64 Binary files /dev/null and b/packages/client/public/img/sprites/player/legplates/tinlegplates.png differ diff --git a/packages/client/public/img/sprites/player/legs/cobaltlegs.png b/packages/client/public/img/sprites/player/legs/cobaltlegs.png deleted file mode 100644 index 406bd48f11..0000000000 Binary files a/packages/client/public/img/sprites/player/legs/cobaltlegs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/player/legs/copperlegs.png b/packages/client/public/img/sprites/player/legs/copperlegs.png deleted file mode 100644 index e6cae9d5bd..0000000000 Binary files a/packages/client/public/img/sprites/player/legs/copperlegs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/player/legs/ironlegs.png b/packages/client/public/img/sprites/player/legs/ironlegs.png deleted file mode 100644 index 45f8f918b3..0000000000 Binary files a/packages/client/public/img/sprites/player/legs/ironlegs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/player/legs/tinlegs.png b/packages/client/public/img/sprites/player/legs/tinlegs.png deleted file mode 100644 index 5ec31b7718..0000000000 Binary files a/packages/client/public/img/sprites/player/legs/tinlegs.png and /dev/null differ diff --git a/packages/client/public/img/sprites/player/shield/cobaltshield.png b/packages/client/public/img/sprites/player/shield/cobaltshield.png new file mode 100644 index 0000000000..6ff96d88e8 Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/cobaltshield.png differ diff --git a/packages/client/public/img/sprites/player/shield/coppershield.png b/packages/client/public/img/sprites/player/shield/coppershield.png new file mode 100644 index 0000000000..9a27573d8d Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/coppershield.png differ diff --git a/packages/client/public/img/sprites/player/shield/goldshield.png b/packages/client/public/img/sprites/player/shield/goldshield.png new file mode 100644 index 0000000000..0d66b03337 Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/goldshield.png differ diff --git a/packages/client/public/img/sprites/player/shield/ironroundshield.png b/packages/client/public/img/sprites/player/shield/ironroundshield.png new file mode 100644 index 0000000000..19561bda0a Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/ironroundshield.png differ diff --git a/packages/client/public/img/sprites/player/shield/ironshield.png b/packages/client/public/img/sprites/player/shield/ironshield.png new file mode 100644 index 0000000000..80c8eda156 Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/ironshield.png differ diff --git a/packages/client/public/img/sprites/player/shield/lantern.png b/packages/client/public/img/sprites/player/shield/lantern.png new file mode 100644 index 0000000000..7b20ad2efe Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/lantern.png differ diff --git a/packages/client/public/img/sprites/player/shield/lantern2.png b/packages/client/public/img/sprites/player/shield/lantern2.png new file mode 100644 index 0000000000..3275d925a9 Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/lantern2.png differ diff --git a/packages/client/public/img/sprites/player/shield/lanternarcan.png b/packages/client/public/img/sprites/player/shield/lanternarcan.png new file mode 100644 index 0000000000..420ed87fe9 Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/lanternarcan.png differ diff --git a/packages/client/public/img/sprites/player/shield/shieldofglory.png b/packages/client/public/img/sprites/player/shield/shieldofglory.png new file mode 100644 index 0000000000..307cb2ded2 Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/shieldofglory.png differ diff --git a/packages/client/public/img/sprites/player/shield/shieldofliberty.png b/packages/client/public/img/sprites/player/shield/shieldofliberty.png new file mode 100644 index 0000000000..55d62cbe52 Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/shieldofliberty.png differ diff --git a/packages/client/public/img/sprites/player/shield/tinshield.png b/packages/client/public/img/sprites/player/shield/tinshield.png new file mode 100644 index 0000000000..e5f43ad3ad Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/tinshield.png differ diff --git a/packages/client/public/img/sprites/player/shield/woodenshield.png b/packages/client/public/img/sprites/player/shield/woodenshield.png new file mode 100644 index 0000000000..ad33300532 Binary files /dev/null and b/packages/client/public/img/sprites/player/shield/woodenshield.png differ diff --git a/packages/client/public/img/sprites/player/skin/danbo.png b/packages/client/public/img/sprites/player/skin/danbo.png index c2ebb73ccc..37b79d0173 100644 Binary files a/packages/client/public/img/sprites/player/skin/danbo.png and b/packages/client/public/img/sprites/player/skin/danbo.png differ diff --git a/packages/client/public/img/sprites/player/skin/danboblue.png b/packages/client/public/img/sprites/player/skin/danboblue.png index 6362e80002..9e34c2f235 100644 Binary files a/packages/client/public/img/sprites/player/skin/danboblue.png and b/packages/client/public/img/sprites/player/skin/danboblue.png differ diff --git a/packages/client/public/img/sprites/player/skin/danbogreen.png b/packages/client/public/img/sprites/player/skin/danbogreen.png index 0b9fbf9f55..1d2d650447 100644 Binary files a/packages/client/public/img/sprites/player/skin/danbogreen.png and b/packages/client/public/img/sprites/player/skin/danbogreen.png differ diff --git a/packages/client/public/img/sprites/player/skin/danbored.png b/packages/client/public/img/sprites/player/skin/danbored.png index 9a2e036854..2dd0d771fb 100644 Binary files a/packages/client/public/img/sprites/player/skin/danbored.png and b/packages/client/public/img/sprites/player/skin/danbored.png differ diff --git a/packages/client/public/img/sprites/player/skin/darkskeletonskin.png b/packages/client/public/img/sprites/player/skin/darkskeletonskin.png new file mode 100644 index 0000000000..8d4349da64 Binary files /dev/null and b/packages/client/public/img/sprites/player/skin/darkskeletonskin.png differ diff --git a/packages/client/public/img/sprites/player/skin/oldmanskin.png b/packages/client/public/img/sprites/player/skin/oldmanskin.png new file mode 100644 index 0000000000..397667a057 Binary files /dev/null and b/packages/client/public/img/sprites/player/skin/oldmanskin.png differ diff --git a/packages/client/public/img/sprites/player/skin/skeletonskin.png b/packages/client/public/img/sprites/player/skin/skeletonskin.png new file mode 100644 index 0000000000..611a5f3f68 Binary files /dev/null and b/packages/client/public/img/sprites/player/skin/skeletonskin.png differ diff --git a/packages/client/public/img/sprites/player/skin/taekwondo.png b/packages/client/public/img/sprites/player/skin/taekwondo.png index fac47e52f5..89e3028e09 100644 Binary files a/packages/client/public/img/sprites/player/skin/taekwondo.png and b/packages/client/public/img/sprites/player/skin/taekwondo.png differ diff --git a/packages/client/public/img/sprites/player/weapon/adamantitesworth.png b/packages/client/public/img/sprites/player/weapon/adamantitesworth.png new file mode 100644 index 0000000000..815c2f9f79 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/adamantitesworth.png differ diff --git a/packages/client/public/img/sprites/player/weapon/adeptsrapier.png b/packages/client/public/img/sprites/player/weapon/adeptsrapier.png new file mode 100644 index 0000000000..69a212e55f Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/adeptsrapier.png differ diff --git a/packages/client/public/img/sprites/player/weapon/alchemistalimony.png b/packages/client/public/img/sprites/player/weapon/alchemistalimony.png new file mode 100644 index 0000000000..dfac8b50d6 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/alchemistalimony.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ancientshovel.png b/packages/client/public/img/sprites/player/weapon/ancientshovel.png new file mode 100644 index 0000000000..8925938c60 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/ancientshovel.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ancientstaff.png b/packages/client/public/img/sprites/player/weapon/ancientstaff.png new file mode 100644 index 0000000000..a079725537 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/ancientstaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/angelicblade.png b/packages/client/public/img/sprites/player/weapon/angelicblade.png new file mode 100644 index 0000000000..36ba539af7 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/angelicblade.png differ diff --git a/packages/client/public/img/sprites/player/weapon/aquastaff.png b/packages/client/public/img/sprites/player/weapon/aquastaff.png index 82cbe6aa94..25423aae95 100644 Binary files a/packages/client/public/img/sprites/player/weapon/aquastaff.png and b/packages/client/public/img/sprites/player/weapon/aquastaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/balloonblue.png b/packages/client/public/img/sprites/player/weapon/balloonblue.png new file mode 100644 index 0000000000..1bce649121 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/balloonblue.png differ diff --git a/packages/client/public/img/sprites/player/weapon/balloongreen.png b/packages/client/public/img/sprites/player/weapon/balloongreen.png new file mode 100644 index 0000000000..5b716d94c0 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/balloongreen.png differ diff --git a/packages/client/public/img/sprites/player/weapon/balloonpink.png b/packages/client/public/img/sprites/player/weapon/balloonpink.png new file mode 100644 index 0000000000..2fd58c6645 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/balloonpink.png differ diff --git a/packages/client/public/img/sprites/player/weapon/balloonturquoise.png b/packages/client/public/img/sprites/player/weapon/balloonturquoise.png new file mode 100644 index 0000000000..ad0ad4fbe1 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/balloonturquoise.png differ diff --git a/packages/client/public/img/sprites/player/weapon/balloonwhite.png b/packages/client/public/img/sprites/player/weapon/balloonwhite.png new file mode 100644 index 0000000000..26a2d219c2 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/balloonwhite.png differ diff --git a/packages/client/public/img/sprites/player/weapon/balloonyellow.png b/packages/client/public/img/sprites/player/weapon/balloonyellow.png new file mode 100644 index 0000000000..a7edbf7084 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/balloonyellow.png differ diff --git a/packages/client/public/img/sprites/player/weapon/berserkerssanity.png b/packages/client/public/img/sprites/player/weapon/berserkerssanity.png new file mode 100644 index 0000000000..38f1f71fb1 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/berserkerssanity.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bident.png b/packages/client/public/img/sprites/player/weapon/bident.png new file mode 100644 index 0000000000..00d64e3dd9 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bident.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bladeofdarkness.png b/packages/client/public/img/sprites/player/weapon/bladeofdarkness.png new file mode 100644 index 0000000000..0a8a15502f Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bladeofdarkness.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bloodmoonstaff.png b/packages/client/public/img/sprites/player/weapon/bloodmoonstaff.png new file mode 100644 index 0000000000..1ac97b3ef3 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bloodmoonstaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bluelightsaber.png b/packages/client/public/img/sprites/player/weapon/bluelightsaber.png new file mode 100644 index 0000000000..2e589240de Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bluelightsaber.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bluemoonstaff.png b/packages/client/public/img/sprites/player/weapon/bluemoonstaff.png new file mode 100644 index 0000000000..64ad1d4ad9 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bluemoonstaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bonebonker.png b/packages/client/public/img/sprites/player/weapon/bonebonker.png new file mode 100644 index 0000000000..96cf59616b Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bonebonker.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bonepickaxe.png b/packages/client/public/img/sprites/player/weapon/bonepickaxe.png new file mode 100644 index 0000000000..44f2f367c7 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bonepickaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowbamboo.png b/packages/client/public/img/sprites/player/weapon/bowbamboo.png new file mode 100644 index 0000000000..04c071f02b Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowbamboo.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowdeuteranom.png b/packages/client/public/img/sprites/player/weapon/bowdeuteranom.png new file mode 100644 index 0000000000..7d0914b449 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowdeuteranom.png differ diff --git a/packages/client/public/img/sprites/player/weapon/boweggplant.png b/packages/client/public/img/sprites/player/weapon/boweggplant.png new file mode 100644 index 0000000000..9e8c4afcab Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/boweggplant.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowfleshflinger.png b/packages/client/public/img/sprites/player/weapon/bowfleshflinger.png new file mode 100644 index 0000000000..a10ce03970 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowfleshflinger.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowiceicemaybe.png b/packages/client/public/img/sprites/player/weapon/bowiceicemaybe.png new file mode 100644 index 0000000000..ccd0ce169c Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowiceicemaybe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowillmuscal.png b/packages/client/public/img/sprites/player/weapon/bowillmuscal.png new file mode 100644 index 0000000000..7453349bfc Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowillmuscal.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowkelpysburden.png b/packages/client/public/img/sprites/player/weapon/bowkelpysburden.png new file mode 100644 index 0000000000..f65e7dab7b Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowkelpysburden.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowmagiccool.png b/packages/client/public/img/sprites/player/weapon/bowmagiccool.png new file mode 100644 index 0000000000..182499f0ba Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowmagiccool.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowmagichot.png b/packages/client/public/img/sprites/player/weapon/bowmagichot.png new file mode 100644 index 0000000000..1e7d2e501e Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowmagichot.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowmoon.png b/packages/client/public/img/sprites/player/weapon/bowmoon.png new file mode 100644 index 0000000000..40fd9e9298 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowmoon.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowocean.png b/packages/client/public/img/sprites/player/weapon/bowocean.png new file mode 100644 index 0000000000..61e3ac9814 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowocean.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowpine.png b/packages/client/public/img/sprites/player/weapon/bowpine.png new file mode 100644 index 0000000000..aa9bb2b671 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowpine.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowsky.png b/packages/client/public/img/sprites/player/weapon/bowsky.png new file mode 100644 index 0000000000..7e0c057e29 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowsky.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowsun.png b/packages/client/public/img/sprites/player/weapon/bowsun.png new file mode 100644 index 0000000000..05f1da79d8 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowsun.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowswineslayer.png b/packages/client/public/img/sprites/player/weapon/bowswineslayer.png new file mode 100644 index 0000000000..a7d7238712 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowswineslayer.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bowwillowtwine.png b/packages/client/public/img/sprites/player/weapon/bowwillowtwine.png new file mode 100644 index 0000000000..469e299e0a Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bowwillowtwine.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bronzeaxe.png b/packages/client/public/img/sprites/player/weapon/bronzeaxe.png index ac14818656..fdb41de73a 100644 Binary files a/packages/client/public/img/sprites/player/weapon/bronzeaxe.png and b/packages/client/public/img/sprites/player/weapon/bronzeaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bronzebattleaxe.png b/packages/client/public/img/sprites/player/weapon/bronzebattleaxe.png new file mode 100644 index 0000000000..71257c38a1 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bronzebattleaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bronzepickaxe.png b/packages/client/public/img/sprites/player/weapon/bronzepickaxe.png new file mode 100644 index 0000000000..0ff2dcc0df Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bronzepickaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bronzescythe.png b/packages/client/public/img/sprites/player/weapon/bronzescythe.png new file mode 100644 index 0000000000..b2dd44db89 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bronzescythe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bronzespear.png b/packages/client/public/img/sprites/player/weapon/bronzespear.png new file mode 100644 index 0000000000..6451d5ad27 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/bronzespear.png differ diff --git a/packages/client/public/img/sprites/player/weapon/bronzesword.png b/packages/client/public/img/sprites/player/weapon/bronzesword.png index d381a994d8..f3dd0dad02 100644 Binary files a/packages/client/public/img/sprites/player/weapon/bronzesword.png and b/packages/client/public/img/sprites/player/weapon/bronzesword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/brutishblade.png b/packages/client/public/img/sprites/player/weapon/brutishblade.png new file mode 100644 index 0000000000..9fd4b62ec0 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/brutishblade.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cellobello.png b/packages/client/public/img/sprites/player/weapon/cellobello.png new file mode 100644 index 0000000000..a12147c983 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/cellobello.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cinnabarsword.png b/packages/client/public/img/sprites/player/weapon/cinnabarsword.png index 4d18b52545..15a7be3b0c 100644 Binary files a/packages/client/public/img/sprites/player/weapon/cinnabarsword.png and b/packages/client/public/img/sprites/player/weapon/cinnabarsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/club.png b/packages/client/public/img/sprites/player/weapon/club.png new file mode 100644 index 0000000000..6dda98ce21 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/club.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cobaltaxe.png b/packages/client/public/img/sprites/player/weapon/cobaltaxe.png index 23fe41ca98..74d4b35428 100644 Binary files a/packages/client/public/img/sprites/player/weapon/cobaltaxe.png and b/packages/client/public/img/sprites/player/weapon/cobaltaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cobaltbattleaxe.png b/packages/client/public/img/sprites/player/weapon/cobaltbattleaxe.png new file mode 100644 index 0000000000..d04ad30a0e Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/cobaltbattleaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cobaltpickaxe.png b/packages/client/public/img/sprites/player/weapon/cobaltpickaxe.png new file mode 100644 index 0000000000..9dcac84aec Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/cobaltpickaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cobaltscythe.png b/packages/client/public/img/sprites/player/weapon/cobaltscythe.png new file mode 100644 index 0000000000..58f8233257 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/cobaltscythe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cobaltspear.png b/packages/client/public/img/sprites/player/weapon/cobaltspear.png new file mode 100644 index 0000000000..5cb2a553aa Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/cobaltspear.png differ diff --git a/packages/client/public/img/sprites/player/weapon/coppersword.png b/packages/client/public/img/sprites/player/weapon/coppersword.png index 34ca8db376..c80bc73680 100644 Binary files a/packages/client/public/img/sprites/player/weapon/coppersword.png and b/packages/client/public/img/sprites/player/weapon/coppersword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cursedbattleaxe.png b/packages/client/public/img/sprites/player/weapon/cursedbattleaxe.png new file mode 100644 index 0000000000..ca3c30c94a Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/cursedbattleaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cursedpickaxe.png b/packages/client/public/img/sprites/player/weapon/cursedpickaxe.png new file mode 100644 index 0000000000..26dd2a0859 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/cursedpickaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cursedsapphirepickaxe.png b/packages/client/public/img/sprites/player/weapon/cursedsapphirepickaxe.png new file mode 100644 index 0000000000..15b8c25580 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/cursedsapphirepickaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/cursestaff.png b/packages/client/public/img/sprites/player/weapon/cursestaff.png index b79dd26bcd..dee07c5199 100644 Binary files a/packages/client/public/img/sprites/player/weapon/cursestaff.png and b/packages/client/public/img/sprites/player/weapon/cursestaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/demonicstaff.png b/packages/client/public/img/sprites/player/weapon/demonicstaff.png new file mode 100644 index 0000000000..d2d813ef9e Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/demonicstaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/dragonscale.png b/packages/client/public/img/sprites/player/weapon/dragonscale.png new file mode 100644 index 0000000000..338f2b4d0a Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/dragonscale.png differ diff --git a/packages/client/public/img/sprites/player/weapon/etherialblade.png b/packages/client/public/img/sprites/player/weapon/etherialblade.png new file mode 100644 index 0000000000..346f18f763 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/etherialblade.png differ diff --git a/packages/client/public/img/sprites/player/weapon/executionershammer.png b/packages/client/public/img/sprites/player/weapon/executionershammer.png new file mode 100644 index 0000000000..ebccc4d6ab Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/executionershammer.png differ diff --git a/packages/client/public/img/sprites/player/weapon/eyesword.png b/packages/client/public/img/sprites/player/weapon/eyesword.png new file mode 100644 index 0000000000..a14d741a93 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/eyesword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/firestaff.png b/packages/client/public/img/sprites/player/weapon/firestaff.png index b437b8c41a..5097cfbeb3 100644 Binary files a/packages/client/public/img/sprites/player/weapon/firestaff.png and b/packages/client/public/img/sprites/player/weapon/firestaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/firesword.png b/packages/client/public/img/sprites/player/weapon/firesword.png new file mode 100644 index 0000000000..49f0c75a6c Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/firesword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/fishingpole.png b/packages/client/public/img/sprites/player/weapon/fishingpole.png index c5eb878216..188e5019d1 100644 Binary files a/packages/client/public/img/sprites/player/weapon/fishingpole.png and b/packages/client/public/img/sprites/player/weapon/fishingpole.png differ diff --git a/packages/client/public/img/sprites/player/weapon/goldaxe.png b/packages/client/public/img/sprites/player/weapon/goldaxe.png index 6e61975011..434c399307 100644 Binary files a/packages/client/public/img/sprites/player/weapon/goldaxe.png and b/packages/client/public/img/sprites/player/weapon/goldaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/goldbattleaxe.png b/packages/client/public/img/sprites/player/weapon/goldbattleaxe.png new file mode 100644 index 0000000000..a5e2f375ce Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/goldbattleaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/goldgolemsmace.png b/packages/client/public/img/sprites/player/weapon/goldgolemsmace.png new file mode 100644 index 0000000000..f2b633d51b Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/goldgolemsmace.png differ diff --git a/packages/client/public/img/sprites/player/weapon/goldpickaxe.png b/packages/client/public/img/sprites/player/weapon/goldpickaxe.png new file mode 100644 index 0000000000..ccc58b217b Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/goldpickaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/goldscythe.png b/packages/client/public/img/sprites/player/weapon/goldscythe.png new file mode 100644 index 0000000000..6d28453ce6 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/goldscythe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/goldspear.png b/packages/client/public/img/sprites/player/weapon/goldspear.png new file mode 100644 index 0000000000..968457fa58 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/goldspear.png differ diff --git a/packages/client/public/img/sprites/player/weapon/goldsword.png b/packages/client/public/img/sprites/player/weapon/goldsword.png index b17c32a261..ef8fe8eace 100644 Binary files a/packages/client/public/img/sprites/player/weapon/goldsword.png and b/packages/client/public/img/sprites/player/weapon/goldsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/golemsmace.png b/packages/client/public/img/sprites/player/weapon/golemsmace.png new file mode 100644 index 0000000000..926e9bc0be Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/golemsmace.png differ diff --git a/packages/client/public/img/sprites/player/weapon/greenlightsaber.png b/packages/client/public/img/sprites/player/weapon/greenlightsaber.png new file mode 100644 index 0000000000..f9f3693b8f Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/greenlightsaber.png differ diff --git a/packages/client/public/img/sprites/player/weapon/gun.png b/packages/client/public/img/sprites/player/weapon/gun.png new file mode 100644 index 0000000000..6a2179fd72 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/gun.png differ diff --git a/packages/client/public/img/sprites/player/weapon/heavyberylpickaxe.png b/packages/client/public/img/sprites/player/weapon/heavyberylpickaxe.png new file mode 100644 index 0000000000..ee763d5b1f Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/heavyberylpickaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/hellhoundfang.png b/packages/client/public/img/sprites/player/weapon/hellhoundfang.png new file mode 100644 index 0000000000..af63ad8b49 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/hellhoundfang.png differ diff --git a/packages/client/public/img/sprites/player/weapon/hellsword.png b/packages/client/public/img/sprites/player/weapon/hellsword.png new file mode 100644 index 0000000000..c437f20669 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/hellsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ibosword.png b/packages/client/public/img/sprites/player/weapon/ibosword.png index 79b87a02d2..bd36eb5ceb 100644 Binary files a/packages/client/public/img/sprites/player/weapon/ibosword.png and b/packages/client/public/img/sprites/player/weapon/ibosword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/icesword.png b/packages/client/public/img/sprites/player/weapon/icesword.png index 0eb341d0b6..eeaf107b6d 100644 Binary files a/packages/client/public/img/sprites/player/weapon/icesword.png and b/packages/client/public/img/sprites/player/weapon/icesword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ironaxe.png b/packages/client/public/img/sprites/player/weapon/ironaxe.png index 7ad6ac5611..0dbeb04ee8 100644 Binary files a/packages/client/public/img/sprites/player/weapon/ironaxe.png and b/packages/client/public/img/sprites/player/weapon/ironaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ironbattleaxe.png b/packages/client/public/img/sprites/player/weapon/ironbattleaxe.png new file mode 100644 index 0000000000..b9cdca57e2 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/ironbattleaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ironpickaxe.png b/packages/client/public/img/sprites/player/weapon/ironpickaxe.png new file mode 100644 index 0000000000..53967de842 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/ironpickaxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ironscythe.png b/packages/client/public/img/sprites/player/weapon/ironscythe.png new file mode 100644 index 0000000000..f2d45f2a15 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/ironscythe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ironspear.png b/packages/client/public/img/sprites/player/weapon/ironspear.png new file mode 100644 index 0000000000..1ddf48e1de Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/ironspear.png differ diff --git a/packages/client/public/img/sprites/player/weapon/ironsword.png b/packages/client/public/img/sprites/player/weapon/ironsword.png index a923c45537..6e65d268b3 100644 Binary files a/packages/client/public/img/sprites/player/weapon/ironsword.png and b/packages/client/public/img/sprites/player/weapon/ironsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/lightningstaff.png b/packages/client/public/img/sprites/player/weapon/lightningstaff.png index 690f008c65..e401d74a8f 100644 Binary files a/packages/client/public/img/sprites/player/weapon/lightningstaff.png and b/packages/client/public/img/sprites/player/weapon/lightningstaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/lolipop.png b/packages/client/public/img/sprites/player/weapon/lolipop.png new file mode 100644 index 0000000000..824bd414a4 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/lolipop.png differ diff --git a/packages/client/public/img/sprites/player/weapon/magichamberge.png b/packages/client/public/img/sprites/player/weapon/magichamberge.png new file mode 100644 index 0000000000..0306547c97 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/magichamberge.png differ diff --git a/packages/client/public/img/sprites/player/weapon/moongreataxe.png b/packages/client/public/img/sprites/player/weapon/moongreataxe.png new file mode 100644 index 0000000000..57a3443e2a Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/moongreataxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/naturestaff.png b/packages/client/public/img/sprites/player/weapon/naturestaff.png index d66ee941a4..e3399277ec 100644 Binary files a/packages/client/public/img/sprites/player/weapon/naturestaff.png and b/packages/client/public/img/sprites/player/weapon/naturestaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/nightsword.png b/packages/client/public/img/sprites/player/weapon/nightsword.png new file mode 100644 index 0000000000..11a474d6df Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/nightsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/nisocsword.png b/packages/client/public/img/sprites/player/weapon/nisocsword.png index be1bcb5ad4..68039bce11 100644 Binary files a/packages/client/public/img/sprites/player/weapon/nisocsword.png and b/packages/client/public/img/sprites/player/weapon/nisocsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/oldonesblade.png b/packages/client/public/img/sprites/player/weapon/oldonesblade.png new file mode 100644 index 0000000000..557a367017 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/oldonesblade.png differ diff --git a/packages/client/public/img/sprites/player/weapon/peddlepounder.png b/packages/client/public/img/sprites/player/weapon/peddlepounder.png new file mode 100644 index 0000000000..02fb75998b Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/peddlepounder.png differ diff --git a/packages/client/public/img/sprites/player/weapon/pinklightsaber.png b/packages/client/public/img/sprites/player/weapon/pinklightsaber.png new file mode 100644 index 0000000000..cdb6804f03 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/pinklightsaber.png differ diff --git a/packages/client/public/img/sprites/player/weapon/pytharsword.png b/packages/client/public/img/sprites/player/weapon/pytharsword.png index 9f6cacf460..64fe6ab376 100644 Binary files a/packages/client/public/img/sprites/player/weapon/pytharsword.png and b/packages/client/public/img/sprites/player/weapon/pytharsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/redlightsaber.png b/packages/client/public/img/sprites/player/weapon/redlightsaber.png new file mode 100644 index 0000000000..ce86601a21 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/redlightsaber.png differ diff --git a/packages/client/public/img/sprites/player/weapon/royalrapier.png b/packages/client/public/img/sprites/player/weapon/royalrapier.png new file mode 100644 index 0000000000..da9eb188cf Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/royalrapier.png differ diff --git a/packages/client/public/img/sprites/player/weapon/scimitar.png b/packages/client/public/img/sprites/player/weapon/scimitar.png new file mode 100644 index 0000000000..59ab93dff3 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/scimitar.png differ diff --git a/packages/client/public/img/sprites/player/weapon/sentinelsword.png b/packages/client/public/img/sprites/player/weapon/sentinelsword.png new file mode 100644 index 0000000000..6cb4788769 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/sentinelsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/smithshammer.png b/packages/client/public/img/sprites/player/weapon/smithshammer.png new file mode 100644 index 0000000000..37b819941b Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/smithshammer.png differ diff --git a/packages/client/public/img/sprites/player/weapon/spoon.png b/packages/client/public/img/sprites/player/weapon/spoon.png new file mode 100644 index 0000000000..1aec7ddfcb Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/spoon.png differ diff --git a/packages/client/public/img/sprites/player/weapon/sunrisegreataxe.png b/packages/client/public/img/sprites/player/weapon/sunrisegreataxe.png new file mode 100644 index 0000000000..7e9e0b9cc9 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/sunrisegreataxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/sunshinestaff.png b/packages/client/public/img/sprites/player/weapon/sunshinestaff.png new file mode 100644 index 0000000000..6cd716c626 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/sunshinestaff.png differ diff --git a/packages/client/public/img/sprites/player/weapon/swashbuckler.png b/packages/client/public/img/sprites/player/weapon/swashbuckler.png new file mode 100644 index 0000000000..6bd59bfefb Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/swashbuckler.png differ diff --git a/packages/client/public/img/sprites/player/weapon/swordofliberty.png b/packages/client/public/img/sprites/player/weapon/swordofliberty.png new file mode 100644 index 0000000000..bdb167830d Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/swordofliberty.png differ diff --git a/packages/client/public/img/sprites/player/weapon/sycophant.png b/packages/client/public/img/sprites/player/weapon/sycophant.png new file mode 100644 index 0000000000..c5ddba0c01 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/sycophant.png differ diff --git a/packages/client/public/img/sprites/player/weapon/timelessglaive.png b/packages/client/public/img/sprites/player/weapon/timelessglaive.png new file mode 100644 index 0000000000..be99eefbd6 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/timelessglaive.png differ diff --git a/packages/client/public/img/sprites/player/weapon/tinsword.png b/packages/client/public/img/sprites/player/weapon/tinsword.png index b7b70d3d10..0bd8cb32e0 100644 Binary files a/packages/client/public/img/sprites/player/weapon/tinsword.png and b/packages/client/public/img/sprites/player/weapon/tinsword.png differ diff --git a/packages/client/public/img/sprites/player/weapon/twilightgreataxe.png b/packages/client/public/img/sprites/player/weapon/twilightgreataxe.png new file mode 100644 index 0000000000..62ad437af3 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/twilightgreataxe.png differ diff --git a/packages/client/public/img/sprites/player/weapon/witchsstaffancient.png b/packages/client/public/img/sprites/player/weapon/witchsstaffancient.png new file mode 100644 index 0000000000..2c7ea7912a Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/witchsstaffancient.png differ diff --git a/packages/client/public/img/sprites/player/weapon/witchsstaffblood.png b/packages/client/public/img/sprites/player/weapon/witchsstaffblood.png new file mode 100644 index 0000000000..5eaeb84826 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/witchsstaffblood.png differ diff --git a/packages/client/public/img/sprites/player/weapon/witchsstaffdemonic.png b/packages/client/public/img/sprites/player/weapon/witchsstaffdemonic.png new file mode 100644 index 0000000000..5693810230 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/witchsstaffdemonic.png differ diff --git a/packages/client/public/img/sprites/player/weapon/witchsstaffmoon.png b/packages/client/public/img/sprites/player/weapon/witchsstaffmoon.png new file mode 100644 index 0000000000..63cea0e94a Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/witchsstaffmoon.png differ diff --git a/packages/client/public/img/sprites/player/weapon/witchsstaffsunshine.png b/packages/client/public/img/sprites/player/weapon/witchsstaffsunshine.png new file mode 100644 index 0000000000..eccb0c44f3 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/witchsstaffsunshine.png differ diff --git a/packages/client/public/img/sprites/player/weapon/woodenbow.png b/packages/client/public/img/sprites/player/weapon/woodenbow.png new file mode 100644 index 0000000000..9299bd2742 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/woodenbow.png differ diff --git a/packages/client/public/img/sprites/player/weapon/zweipiercer.png b/packages/client/public/img/sprites/player/weapon/zweipiercer.png new file mode 100644 index 0000000000..d1e7e789b6 Binary files /dev/null and b/packages/client/public/img/sprites/player/weapon/zweipiercer.png differ diff --git a/packages/client/public/img/sprites/projectiles/bloodball.png b/packages/client/public/img/sprites/projectiles/bloodball.png new file mode 100644 index 0000000000..c71ed36c99 Binary files /dev/null and b/packages/client/public/img/sprites/projectiles/bloodball.png differ diff --git a/packages/client/public/img/sprites/projectiles/bluelightning.png b/packages/client/public/img/sprites/projectiles/bluelightning.png index 508ef22492..ed3f121a4a 100644 Binary files a/packages/client/public/img/sprites/projectiles/bluelightning.png and b/packages/client/public/img/sprites/projectiles/bluelightning.png differ diff --git a/packages/client/public/img/sprites/projectiles/firearc.png b/packages/client/public/img/sprites/projectiles/firearc.png new file mode 100644 index 0000000000..c616d29b74 Binary files /dev/null and b/packages/client/public/img/sprites/projectiles/firearc.png differ diff --git a/packages/client/public/img/sprites/projectiles/gift.png b/packages/client/public/img/sprites/projectiles/gift.png index 92a92d5686..0af5e2401f 100644 Binary files a/packages/client/public/img/sprites/projectiles/gift.png and b/packages/client/public/img/sprites/projectiles/gift.png differ diff --git a/packages/client/public/img/sprites/projectiles/gift3.png b/packages/client/public/img/sprites/projectiles/gift3.png index bd9bf3a20a..6b7b5df992 100644 Binary files a/packages/client/public/img/sprites/projectiles/gift3.png and b/packages/client/public/img/sprites/projectiles/gift3.png differ diff --git a/packages/client/public/img/sprites/projectiles/gift4.png b/packages/client/public/img/sprites/projectiles/gift4.png index c986b190d2..01f2e067d9 100644 Binary files a/packages/client/public/img/sprites/projectiles/gift4.png and b/packages/client/public/img/sprites/projectiles/gift4.png differ diff --git a/packages/client/public/img/sprites/projectiles/gift5.png b/packages/client/public/img/sprites/projectiles/gift5.png index fcb8fda9e9..3f0e8914d7 100644 Binary files a/packages/client/public/img/sprites/projectiles/gift5.png and b/packages/client/public/img/sprites/projectiles/gift5.png differ diff --git a/packages/client/public/img/sprites/projectiles/greenbolt.png b/packages/client/public/img/sprites/projectiles/greenbolt.png index 3bd08f6d99..fd93960bd2 100644 Binary files a/packages/client/public/img/sprites/projectiles/greenbolt.png and b/packages/client/public/img/sprites/projectiles/greenbolt.png differ diff --git a/packages/client/public/img/sprites/projectiles/lightningarc.png b/packages/client/public/img/sprites/projectiles/lightningarc.png new file mode 100644 index 0000000000..43062ff023 Binary files /dev/null and b/packages/client/public/img/sprites/projectiles/lightningarc.png differ diff --git a/packages/client/public/img/sprites/projectiles/pinearrow.png b/packages/client/public/img/sprites/projectiles/pinearrow.png index 868eb1a749..a1afc73d7d 100755 Binary files a/packages/client/public/img/sprites/projectiles/pinearrow.png and b/packages/client/public/img/sprites/projectiles/pinearrow.png differ diff --git a/packages/client/public/img/sprites/projectiles/poisonball.png b/packages/client/public/img/sprites/projectiles/poisonball.png index 9c552d97bf..a882787f0d 100644 Binary files a/packages/client/public/img/sprites/projectiles/poisonball.png and b/packages/client/public/img/sprites/projectiles/poisonball.png differ diff --git a/packages/client/public/img/sprites/projectiles/purplebolt.png b/packages/client/public/img/sprites/projectiles/purplebolt.png index 35e5792783..8fce20299d 100644 Binary files a/packages/client/public/img/sprites/projectiles/purplebolt.png and b/packages/client/public/img/sprites/projectiles/purplebolt.png differ diff --git a/packages/client/public/img/sprites/projectiles/redlightning.png b/packages/client/public/img/sprites/projectiles/redlightning.png index 7d2ccc35bd..44c4c3a6db 100644 Binary files a/packages/client/public/img/sprites/projectiles/redlightning.png and b/packages/client/public/img/sprites/projectiles/redlightning.png differ diff --git a/packages/client/public/img/sprites/projectiles/shadowarc.png b/packages/client/public/img/sprites/projectiles/shadowarc.png new file mode 100644 index 0000000000..e06e5cfdf9 Binary files /dev/null and b/packages/client/public/img/sprites/projectiles/shadowarc.png differ diff --git a/packages/client/public/img/sprites/rocks/amethystrock.png b/packages/client/public/img/sprites/rocks/amethystrock.png new file mode 100644 index 0000000000..94f088099c Binary files /dev/null and b/packages/client/public/img/sprites/rocks/amethystrock.png differ diff --git a/packages/client/public/img/sprites/rocks/berylrock.png b/packages/client/public/img/sprites/rocks/berylrock.png new file mode 100644 index 0000000000..6a97e3609a Binary files /dev/null and b/packages/client/public/img/sprites/rocks/berylrock.png differ diff --git a/packages/client/public/img/sprites/rocks/cinnabarrock.png b/packages/client/public/img/sprites/rocks/cinnabarrock.png new file mode 100644 index 0000000000..dadbd30352 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/cinnabarrock.png differ diff --git a/packages/client/public/img/sprites/rocks/citrinerock.png b/packages/client/public/img/sprites/rocks/citrinerock.png new file mode 100644 index 0000000000..f86e39a5e6 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/citrinerock.png differ diff --git a/packages/client/public/img/sprites/rocks/coalrock.png b/packages/client/public/img/sprites/rocks/coalrock.png new file mode 100644 index 0000000000..aa074daad3 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/coalrock.png differ diff --git a/packages/client/public/img/sprites/rocks/copperrock.png b/packages/client/public/img/sprites/rocks/copperrock.png new file mode 100644 index 0000000000..f863dc990d Binary files /dev/null and b/packages/client/public/img/sprites/rocks/copperrock.png differ diff --git a/packages/client/public/img/sprites/rocks/emeraldrock.png b/packages/client/public/img/sprites/rocks/emeraldrock.png new file mode 100644 index 0000000000..2410521d61 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/emeraldrock.png differ diff --git a/packages/client/public/img/sprites/rocks/goldrock.png b/packages/client/public/img/sprites/rocks/goldrock.png new file mode 100644 index 0000000000..c9faac11ae Binary files /dev/null and b/packages/client/public/img/sprites/rocks/goldrock.png differ diff --git a/packages/client/public/img/sprites/rocks/iborock.png b/packages/client/public/img/sprites/rocks/iborock.png new file mode 100644 index 0000000000..4a7004fac4 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/iborock.png differ diff --git a/packages/client/public/img/sprites/rocks/ironrock.png b/packages/client/public/img/sprites/rocks/ironrock.png new file mode 100644 index 0000000000..76af9a593a Binary files /dev/null and b/packages/client/public/img/sprites/rocks/ironrock.png differ diff --git a/packages/client/public/img/sprites/rocks/lapislazulirock.png b/packages/client/public/img/sprites/rocks/lapislazulirock.png new file mode 100644 index 0000000000..f3f4cf236d Binary files /dev/null and b/packages/client/public/img/sprites/rocks/lapislazulirock.png differ diff --git a/packages/client/public/img/sprites/rocks/moonrockrock.png b/packages/client/public/img/sprites/rocks/moonrockrock.png new file mode 100644 index 0000000000..7cd7fc906d Binary files /dev/null and b/packages/client/public/img/sprites/rocks/moonrockrock.png differ diff --git a/packages/client/public/img/sprites/rocks/nisocrock.png b/packages/client/public/img/sprites/rocks/nisocrock.png new file mode 100644 index 0000000000..594b8519bc Binary files /dev/null and b/packages/client/public/img/sprites/rocks/nisocrock.png differ diff --git a/packages/client/public/img/sprites/rocks/opalrock.png b/packages/client/public/img/sprites/rocks/opalrock.png new file mode 100644 index 0000000000..4ee11ea807 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/opalrock.png differ diff --git a/packages/client/public/img/sprites/rocks/peridotrock.png b/packages/client/public/img/sprites/rocks/peridotrock.png new file mode 100644 index 0000000000..be133a2ae1 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/peridotrock.png differ diff --git a/packages/client/public/img/sprites/rocks/pytharrock.png b/packages/client/public/img/sprites/rocks/pytharrock.png new file mode 100644 index 0000000000..83c2dc9a74 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/pytharrock.png differ diff --git a/packages/client/public/img/sprites/rocks/rubyrock.png b/packages/client/public/img/sprites/rocks/rubyrock.png new file mode 100644 index 0000000000..b89373a023 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/rubyrock.png differ diff --git a/packages/client/public/img/sprites/rocks/taaffeiterock.png b/packages/client/public/img/sprites/rocks/taaffeiterock.png new file mode 100644 index 0000000000..517bbf75ef Binary files /dev/null and b/packages/client/public/img/sprites/rocks/taaffeiterock.png differ diff --git a/packages/client/public/img/sprites/rocks/tinrock.png b/packages/client/public/img/sprites/rocks/tinrock.png new file mode 100644 index 0000000000..03edec7bf4 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/tinrock.png differ diff --git a/packages/client/public/img/sprites/rocks/topazrock.png b/packages/client/public/img/sprites/rocks/topazrock.png new file mode 100644 index 0000000000..f1fe52b4a0 Binary files /dev/null and b/packages/client/public/img/sprites/rocks/topazrock.png differ diff --git a/packages/client/public/img/sprites/shadow.png b/packages/client/public/img/sprites/shadow.png new file mode 100755 index 0000000000..b2ef4ff02f Binary files /dev/null and b/packages/client/public/img/sprites/shadow.png differ diff --git a/packages/client/public/img/sprites/shadow16.png b/packages/client/public/img/sprites/shadow16.png deleted file mode 100755 index db700d685c..0000000000 Binary files a/packages/client/public/img/sprites/shadow16.png and /dev/null differ diff --git a/packages/client/public/img/sprites/skills/accuracy.png b/packages/client/public/img/sprites/skills/accuracy.png new file mode 100644 index 0000000000..14347b31f6 Binary files /dev/null and b/packages/client/public/img/sprites/skills/accuracy.png differ diff --git a/packages/client/public/img/sprites/skills/alchemy.png b/packages/client/public/img/sprites/skills/alchemy.png new file mode 100644 index 0000000000..5d830a1e78 Binary files /dev/null and b/packages/client/public/img/sprites/skills/alchemy.png differ diff --git a/packages/client/public/img/sprites/skills/archery.png b/packages/client/public/img/sprites/skills/archery.png new file mode 100644 index 0000000000..7357754f1f Binary files /dev/null and b/packages/client/public/img/sprites/skills/archery.png differ diff --git a/packages/client/public/img/sprites/skills/chiseling.png b/packages/client/public/img/sprites/skills/chiseling.png new file mode 100644 index 0000000000..5e69f37581 Binary files /dev/null and b/packages/client/public/img/sprites/skills/chiseling.png differ diff --git a/packages/client/public/img/sprites/skills/chiseling2.png b/packages/client/public/img/sprites/skills/chiseling2.png new file mode 100644 index 0000000000..a3cdf643fc Binary files /dev/null and b/packages/client/public/img/sprites/skills/chiseling2.png differ diff --git a/packages/client/public/img/sprites/skills/cooking.png b/packages/client/public/img/sprites/skills/cooking.png new file mode 100644 index 0000000000..89aaf5109b Binary files /dev/null and b/packages/client/public/img/sprites/skills/cooking.png differ diff --git a/packages/client/public/img/sprites/skills/crafting.png b/packages/client/public/img/sprites/skills/crafting.png new file mode 100644 index 0000000000..5e69f37581 Binary files /dev/null and b/packages/client/public/img/sprites/skills/crafting.png differ diff --git a/packages/client/public/img/sprites/skills/defense.png b/packages/client/public/img/sprites/skills/defense.png new file mode 100644 index 0000000000..21490506e3 Binary files /dev/null and b/packages/client/public/img/sprites/skills/defense.png differ diff --git a/packages/client/public/img/sprites/skills/eating.png b/packages/client/public/img/sprites/skills/eating.png new file mode 100644 index 0000000000..ac43553e16 Binary files /dev/null and b/packages/client/public/img/sprites/skills/eating.png differ diff --git a/packages/client/public/img/sprites/skills/fishing.png b/packages/client/public/img/sprites/skills/fishing.png new file mode 100644 index 0000000000..df6bed8cda Binary files /dev/null and b/packages/client/public/img/sprites/skills/fishing.png differ diff --git a/packages/client/public/img/sprites/skills/fletching.png b/packages/client/public/img/sprites/skills/fletching.png new file mode 100644 index 0000000000..1abf41b28f Binary files /dev/null and b/packages/client/public/img/sprites/skills/fletching.png differ diff --git a/packages/client/public/img/sprites/skills/foraging.png b/packages/client/public/img/sprites/skills/foraging.png new file mode 100644 index 0000000000..57ea90edc1 Binary files /dev/null and b/packages/client/public/img/sprites/skills/foraging.png differ diff --git a/packages/client/public/img/sprites/skills/health.png b/packages/client/public/img/sprites/skills/health.png new file mode 100644 index 0000000000..9aa983030e Binary files /dev/null and b/packages/client/public/img/sprites/skills/health.png differ diff --git a/packages/client/public/img/sprites/skills/loitering.png b/packages/client/public/img/sprites/skills/loitering.png new file mode 100644 index 0000000000..48b16ff274 Binary files /dev/null and b/packages/client/public/img/sprites/skills/loitering.png differ diff --git a/packages/client/public/img/sprites/skills/lumberjacking.png b/packages/client/public/img/sprites/skills/lumberjacking.png new file mode 100644 index 0000000000..557ba92285 Binary files /dev/null and b/packages/client/public/img/sprites/skills/lumberjacking.png differ diff --git a/packages/client/public/img/sprites/skills/magic.png b/packages/client/public/img/sprites/skills/magic.png new file mode 100644 index 0000000000..fe8b0e9cd7 Binary files /dev/null and b/packages/client/public/img/sprites/skills/magic.png differ diff --git a/packages/client/public/img/sprites/skills/mining.png b/packages/client/public/img/sprites/skills/mining.png new file mode 100644 index 0000000000..46f438ee49 Binary files /dev/null and b/packages/client/public/img/sprites/skills/mining.png differ diff --git a/packages/client/public/img/sprites/skills/smelting.png b/packages/client/public/img/sprites/skills/smelting.png new file mode 100644 index 0000000000..d2694c464c Binary files /dev/null and b/packages/client/public/img/sprites/skills/smelting.png differ diff --git a/packages/client/public/img/sprites/skills/smithing.png b/packages/client/public/img/sprites/skills/smithing.png new file mode 100644 index 0000000000..d2694c464c Binary files /dev/null and b/packages/client/public/img/sprites/skills/smithing.png differ diff --git a/packages/client/public/img/sprites/skills/strength.png b/packages/client/public/img/sprites/skills/strength.png new file mode 100644 index 0000000000..eb8e09f430 Binary files /dev/null and b/packages/client/public/img/sprites/skills/strength.png differ diff --git a/packages/client/public/img/sprites/target.png b/packages/client/public/img/sprites/target.png old mode 100755 new mode 100644 index c2d69c0f63..cd793eea64 Binary files a/packages/client/public/img/sprites/target.png and b/packages/client/public/img/sprites/target.png differ diff --git a/packages/client/public/img/sprites/trees/alkythn.png b/packages/client/public/img/sprites/trees/alkythn.png new file mode 100644 index 0000000000..46077a6090 Binary files /dev/null and b/packages/client/public/img/sprites/trees/alkythn.png differ diff --git a/packages/client/public/img/sprites/trees/aquasillius.png b/packages/client/public/img/sprites/trees/aquasillius.png new file mode 100644 index 0000000000..2e3c8e176a Binary files /dev/null and b/packages/client/public/img/sprites/trees/aquasillius.png differ diff --git a/packages/client/public/img/sprites/trees/bloodwood.png b/packages/client/public/img/sprites/trees/bloodwood.png new file mode 100644 index 0000000000..198ab40c22 Binary files /dev/null and b/packages/client/public/img/sprites/trees/bloodwood.png differ diff --git a/packages/client/public/img/sprites/trees/flastel.png b/packages/client/public/img/sprites/trees/flastel.png new file mode 100644 index 0000000000..52a04f342a Binary files /dev/null and b/packages/client/public/img/sprites/trees/flastel.png differ diff --git a/packages/client/public/img/sprites/trees/heliphatit.png b/packages/client/public/img/sprites/trees/heliphatit.png new file mode 100644 index 0000000000..3e30b3bebb Binary files /dev/null and b/packages/client/public/img/sprites/trees/heliphatit.png differ diff --git a/packages/client/public/img/sprites/trees/iceoak.png b/packages/client/public/img/sprites/trees/iceoak.png new file mode 100644 index 0000000000..3e9c6aee08 Binary files /dev/null and b/packages/client/public/img/sprites/trees/iceoak.png differ diff --git a/packages/client/public/img/sprites/trees/iceoak2.png b/packages/client/public/img/sprites/trees/iceoak2.png new file mode 100644 index 0000000000..5d29ed985a Binary files /dev/null and b/packages/client/public/img/sprites/trees/iceoak2.png differ diff --git a/packages/client/public/img/sprites/trees/iceoak3.png b/packages/client/public/img/sprites/trees/iceoak3.png new file mode 100644 index 0000000000..5d29ed985a Binary files /dev/null and b/packages/client/public/img/sprites/trees/iceoak3.png differ diff --git a/packages/client/public/img/sprites/trees/iceoak5.png b/packages/client/public/img/sprites/trees/iceoak5.png new file mode 100644 index 0000000000..34835297e9 Binary files /dev/null and b/packages/client/public/img/sprites/trees/iceoak5.png differ diff --git a/packages/client/public/img/sprites/trees/iceoak6.png b/packages/client/public/img/sprites/trees/iceoak6.png new file mode 100644 index 0000000000..561fb16239 Binary files /dev/null and b/packages/client/public/img/sprites/trees/iceoak6.png differ diff --git a/packages/client/public/img/sprites/trees/icepalm.png b/packages/client/public/img/sprites/trees/icepalm.png new file mode 100644 index 0000000000..c95e8d68de Binary files /dev/null and b/packages/client/public/img/sprites/trees/icepalm.png differ diff --git a/packages/client/public/img/sprites/trees/inibti.png b/packages/client/public/img/sprites/trees/inibti.png new file mode 100644 index 0000000000..a2a7c7f9a3 Binary files /dev/null and b/packages/client/public/img/sprites/trees/inibti.png differ diff --git a/packages/client/public/img/sprites/trees/oak.png b/packages/client/public/img/sprites/trees/oak.png new file mode 100644 index 0000000000..5d29ed985a Binary files /dev/null and b/packages/client/public/img/sprites/trees/oak.png differ diff --git a/packages/client/public/img/sprites/trees/oak2.png b/packages/client/public/img/sprites/trees/oak2.png new file mode 100644 index 0000000000..b1a33b1ba7 Binary files /dev/null and b/packages/client/public/img/sprites/trees/oak2.png differ diff --git a/packages/client/public/img/sprites/trees/oak3.png b/packages/client/public/img/sprites/trees/oak3.png new file mode 100644 index 0000000000..39f68f51b9 Binary files /dev/null and b/packages/client/public/img/sprites/trees/oak3.png differ diff --git a/packages/client/public/img/sprites/trees/oak4.png b/packages/client/public/img/sprites/trees/oak4.png new file mode 100644 index 0000000000..0cc7a22c52 Binary files /dev/null and b/packages/client/public/img/sprites/trees/oak4.png differ diff --git a/packages/client/public/img/sprites/trees/oak5.png b/packages/client/public/img/sprites/trees/oak5.png new file mode 100644 index 0000000000..cb0415b0e2 Binary files /dev/null and b/packages/client/public/img/sprites/trees/oak5.png differ diff --git a/packages/client/public/img/sprites/trees/oak6.png b/packages/client/public/img/sprites/trees/oak6.png new file mode 100644 index 0000000000..446c71d60d Binary files /dev/null and b/packages/client/public/img/sprites/trees/oak6.png differ diff --git a/packages/client/public/img/sprites/trees/oak7.png b/packages/client/public/img/sprites/trees/oak7.png new file mode 100644 index 0000000000..203b43fd6d Binary files /dev/null and b/packages/client/public/img/sprites/trees/oak7.png differ diff --git a/packages/client/public/img/sprites/trees/palm.png b/packages/client/public/img/sprites/trees/palm.png new file mode 100644 index 0000000000..9e09a2fef1 Binary files /dev/null and b/packages/client/public/img/sprites/trees/palm.png differ diff --git a/packages/client/public/img/sprites/trees/pine.png b/packages/client/public/img/sprites/trees/pine.png new file mode 100644 index 0000000000..80af5817c3 Binary files /dev/null and b/packages/client/public/img/sprites/trees/pine.png differ diff --git a/packages/client/public/img/sprites/trees/puhrix.png b/packages/client/public/img/sprites/trees/puhrix.png new file mode 100644 index 0000000000..e99c6377aa Binary files /dev/null and b/packages/client/public/img/sprites/trees/puhrix.png differ diff --git a/packages/client/public/img/sprites/trees/snowoak.png b/packages/client/public/img/sprites/trees/snowoak.png new file mode 100644 index 0000000000..1835f93ea7 Binary files /dev/null and b/packages/client/public/img/sprites/trees/snowoak.png differ diff --git a/packages/client/public/img/sprites/trees/spruce.png b/packages/client/public/img/sprites/trees/spruce.png new file mode 100644 index 0000000000..560133d662 Binary files /dev/null and b/packages/client/public/img/sprites/trees/spruce.png differ diff --git a/packages/client/public/img/sprites/trees/tutorialoak.png b/packages/client/public/img/sprites/trees/tutorialoak.png new file mode 100644 index 0000000000..5d29ed985a Binary files /dev/null and b/packages/client/public/img/sprites/trees/tutorialoak.png differ diff --git a/packages/client/public/img/sprites/trees/zoncil.png b/packages/client/public/img/sprites/trees/zoncil.png new file mode 100644 index 0000000000..162f1ab954 Binary files /dev/null and b/packages/client/public/img/sprites/trees/zoncil.png differ diff --git a/packages/client/public/img/sprites/trees/zondul.png b/packages/client/public/img/sprites/trees/zondul.png new file mode 100644 index 0000000000..5be0125fe0 Binary files /dev/null and b/packages/client/public/img/sprites/trees/zondul.png differ diff --git a/packages/client/public/img/thingy.png b/packages/client/public/img/thingy.png index 81b0a70532..1447ebb8f2 100755 Binary files a/packages/client/public/img/thingy.png and b/packages/client/public/img/thingy.png differ diff --git a/packages/client/public/img/tilesets/tilesheet-1.png b/packages/client/public/img/tilesets/tilesheet-1.png index d67b2da707..0cce4d1339 100644 Binary files a/packages/client/public/img/tilesets/tilesheet-1.png and b/packages/client/public/img/tilesets/tilesheet-1.png differ diff --git a/packages/client/public/img/tilesets/tilesheet-2.png b/packages/client/public/img/tilesets/tilesheet-2.png index 2cf6a1f10b..a64b3b09a0 100644 Binary files a/packages/client/public/img/tilesets/tilesheet-2.png and b/packages/client/public/img/tilesets/tilesheet-2.png differ diff --git a/packages/client/public/img/tilesets/tilesheet-3.png b/packages/client/public/img/tilesets/tilesheet-3.png index 975f521776..a4a72e765b 100644 Binary files a/packages/client/public/img/tilesets/tilesheet-3.png and b/packages/client/public/img/tilesets/tilesheet-3.png differ diff --git a/packages/client/public/img/tilesets/tilesheet-4.png b/packages/client/public/img/tilesets/tilesheet-4.png index 10d46e2cf3..d9dab909ad 100644 Binary files a/packages/client/public/img/tilesets/tilesheet-4.png and b/packages/client/public/img/tilesets/tilesheet-4.png differ diff --git a/packages/client/public/img/tilesets/tilesheet-5.png b/packages/client/public/img/tilesets/tilesheet-5.png index f278d9c736..4342aae9a7 100644 Binary files a/packages/client/public/img/tilesets/tilesheet-5.png and b/packages/client/public/img/tilesets/tilesheet-5.png differ diff --git a/packages/client/public/img/tilesets/tilesheet-6.png b/packages/client/public/img/tilesets/tilesheet-6.png index a09ab7c6d7..2af7ce10b2 100644 Binary files a/packages/client/public/img/tilesets/tilesheet-6.png and b/packages/client/public/img/tilesets/tilesheet-6.png differ diff --git a/packages/client/public/robots.txt b/packages/client/public/robots.txt deleted file mode 100644 index 64e2fcac0d..0000000000 --- a/packages/client/public/robots.txt +++ /dev/null @@ -1,4 +0,0 @@ -User-agent: * -Allow: / -Sitemap: https://kaetram.com/sitemap.xml -Host: https://kaetram.com diff --git a/packages/client/public/sitemap.xml b/packages/client/public/sitemap.xml deleted file mode 100644 index 7f9e1bed8f..0000000000 --- a/packages/client/public/sitemap.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - https://kaetram.com - - diff --git a/packages/client/reset/index.html b/packages/client/reset/index.html deleted file mode 100644 index 1a278af555..0000000000 --- a/packages/client/reset/index.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Kaetram - - - - - - -
                                                                                              - - -
                                                                                              -
                                                                                              - -
                                                                                              -
                                                                                              -

                                                                                              - - Reset Password - -

                                                                                              - -
                                                                                              - - - - - -
                                                                                              -
                                                                                              -
                                                                                              - - -
                                                                                              - -
                                                                                              -
                                                                                              - - -
                                                                                              - - - diff --git a/packages/client/scss/abstracts/_media.scss b/packages/client/scss/abstracts/_media.scss index ac453c8c84..92e366c5e9 100644 --- a/packages/client/scss/abstracts/_media.scss +++ b/packages/client/scss/abstracts/_media.scss @@ -2,6 +2,6 @@ @custom-media --md only screen and (max-width: 1500px), only screen and (max-height: 870px); @custom-media --sm only screen and (max-width: 1000px); -$sizes: --lg 3, --md 2, --sm 1; -$b-sizes: --lg 3, --md 2; -$s-sizes: --lg 2, --md 2, --sm 1; +@custom-media --portrait only screen and (orientation: portrait); + +$sizes: --lg 1.875, --md 1.5, --sm 1; diff --git a/packages/client/scss/abstracts/_sprite.scss b/packages/client/scss/abstracts/_sprite.scss new file mode 100644 index 0000000000..d11d4150c7 --- /dev/null +++ b/packages/client/scss/abstracts/_sprite.scss @@ -0,0 +1,80 @@ +@use 'sass:math'; + +@use 'media'; + +$default-font-size: 16; + +@mixin sheet( + $image, + $x: 0, + $y: 0, + $width: width($image), + $height: height($image), + $rows: true, + $gap: 0, + $scale: 2, + $hover: 0, + $active: 0, + $disabled: 0, + $selectors: '&' +) { + $scale: $scale * math.div(1em, $default-font-size); + $x: $x * $scale; + $y: $y * $scale; + $width: $width * $scale; + $height: $height * $scale; + $gap: $gap * $scale; + + #{$selectors} { + width: $width; + height: $height; + + background-image: url('/img/interface/#{$image}.png'); + background-repeat: no-repeat; + background-size: width($image) * $scale height($image) * $scale; + + @if $rows { + &:hover { + background-position-x: -$x - $gap * $hover - $width * $hover; + } + + &:active, + &.active { + background-position-x: -$x - $gap * $active - $width * $active; + } + + &:disabled, + &.disabled { + background-position-x: -$x - $gap * $disabled - $width * $disabled; + } + } @else { + &:hover { + background-position-y: -$y - $gap * $hover - $height * $hover; + } + + &:active, + &.active { + background-position-y: -$y - $gap * $active - $height * $active; + } + + &:disabled, + &.disabled { + background-position-y: -$y - $gap * $disabled - $height * $disabled; + } + } + + @content; + } + + @for $i from 0 to length($selectors) { + #{nth($selectors, $i + 1)} { + @if $rows { + background-position-x: -$x; + background-position-y: -$y - $gap * $i - $height * $i; + } @else { + background-position-x: -$x - $gap * $i - $width * $i; + background-position-y: -$y; + } + } + } +} diff --git a/packages/client/scss/app/_index.scss b/packages/client/scss/app/_index.scss index 4cef946ef8..63e9ac5164 100644 --- a/packages/client/scss/app/_index.scss +++ b/packages/client/scss/app/_index.scss @@ -6,11 +6,9 @@ #alert { width: 100%; - height: 50px; + height: 3.125em; - font-family: AdvoCut, arial, sans-serif; - font-size: 20px; - line-height: 50px; + line-height: 3.125em; color: #eee; text-align: center; @@ -23,9 +21,7 @@ right: 0; bottom: 0; - padding: 3em; + padding: 1em; - font-family: AdvoCut, sans-serif, arial; - font-size: 24px; color: #eee; } diff --git a/packages/client/scss/app/impl/_check.scss b/packages/client/scss/app/impl/_check.scss index 3e1a650fe8..3f306d7f0c 100644 --- a/packages/client/scss/app/impl/_check.scss +++ b/packages/client/scss/app/impl/_check.scss @@ -1,67 +1,68 @@ -@use '../../abstracts/media'; +@use '../../abstracts/sprite'; + +@include sprite.sheet( + $image: 'characterdialogsheet', + $x: 109, + $y: 240, + $width: 8, + $height: 8, + $hover: 1, + $active: 2, + $selectors: '.check .checkmark::before' +); .check { cursor: pointer; user-select: none; - position: absolute; - top: 100%; + position: relative; - display: block; - - padding-left: 1em; + display: flex; + flex-direction: row; + gap: 0.5em; + align-items: center; + line-height: 1; text-align: left; - input { + input[type='checkbox'] { cursor: pointer; position: absolute; - top: -200%; + inset: 0; - width: 0; - height: 0; + width: 100%; + height: 100%; + margin: 0; + padding: 0; opacity: 0; } .checkmark { - position: absolute; - top: 0.5px; - left: 0; + display: block; - width: 16px; - height: 16px; + &::before { + content: ''; + display: block; + } } -} - -@each $size, $i in media.$sizes { - @media ($size) { - .check { - .checkmark { - width: 8px * $i; - height: 8px * $i; - background: url('/img/interface/characterdialogsheet.png') -109px * $i -240px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - &:hover input ~ .checkmark, - input:focus ~ .checkmark { - background-position-x: -118px * $i; - } + &:hover input ~ .checkmark::before, + input:focus ~ .checkmark::before { + background-position-x: -14.75em; + } - input:active ~ .checkmark { - background-position-x: -127px * $i; - } + input:active ~ .checkmark::before { + background-position-x: -15.875em; + } - input:checked ~ .checkmark { - background-position-x: -136px * $i; - } + input:checked ~ .checkmark::before { + background-position-x: -17em; + } - &:hover input:checked ~ .checkmark, - input:focus:checked ~ .checkmark { - background-position-x: -145px * $i; - } - } + &:hover input:checked ~ .checkmark::before, + input:focus:checked ~ .checkmark::before { + background-position-x: -18.125em; } } diff --git a/packages/client/scss/app/impl/_intro.scss b/packages/client/scss/app/impl/_intro.scss index 83f665e166..aa31095082 100644 --- a/packages/client/scss/app/impl/_intro.scss +++ b/packages/client/scss/app/impl/_intro.scss @@ -5,6 +5,27 @@ text-decoration: none; } +#intro { + position: absolute; + + display: flex; + flex-direction: row; + align-items: center; + + width: 100%; + height: 100%; +} + +#lang-select { + position: absolute; + top: 1em; + right: 1em; + + &[hidden] { + display: none; + } +} + body.intro { #intro-container { transition: 0.4s opacity linear; @@ -23,13 +44,11 @@ body.intro { footer { position: absolute; - bottom: 5%; + bottom: 1em; left: 0; width: 100%; - font-family: AdvoCut, sans-serif; - font-size: 18px; color: #c6c0a3; text-align: center; text-shadow: 0 1px 0 black; @@ -38,58 +57,35 @@ body.intro { div { display: inline-block; - padding: 0 5px; + padding: 0 0.3125em; span:hover { cursor: pointer; color: #fcda5c; } } - - @media (--lg) { - font-size: 28px; - } - } - - #load-character, - #create-character, - #reset-password, - #world-select { - form { - position: relative; - } } .validation-summary { - height: 1em; - margin: 0.5em auto; + flex-direction: row; + justify-content: center; + height: 2em; + font-size: 1em; } .validation-error { - font-size: 15px; - color: #800; - text-shadow: 2px 2px 2px #f66; + color: #e00a0a; + text-shadow: 0.125em 0.125em 0.125em #800; } .validation-warning { - font-size: 15px; color: rgb(168 162 16); - text-shadow: 2px 2px 2px #fc6; + text-shadow: 0.125em 0.125em 0.125em #fc6; } .status { - font-size: 15px; color: #03c; - text-shadow: 2px 2px 2px #39f; - } - - .loader { - position: relative; - margin-top: 30%; - - @media (--lg) { - font-size: 26px; - } + text-shadow: 0.125em 0.125em 0.125em #39f; } .loader-dot { @@ -104,3 +100,11 @@ body.intro { } } } + +@media (--portrait) { + body.intro { + footer { + // bottom: 3.5em; + } + } +} diff --git a/packages/client/scss/app/impl/_login.scss b/packages/client/scss/app/impl/_login.scss index b951e70785..e795af1cba 100644 --- a/packages/client/scss/app/impl/_login.scss +++ b/packages/client/scss/app/impl/_login.scss @@ -1,231 +1,35 @@ @use '../../abstracts/media'; - -#login, -#new-account { - top: 120%; -} - -#cancel-register, -#cancel-forget, -#continue-forget, -#play { - top: 92.5%; -} - -#confirm-reset { - top: 120%; - right: 38%; -} - -#login { - left: 15%; -} - -#cancel-register, -#cancel-forget { - left: 10%; -} - -#new-account { - left: 60%; -} - -#play, -#continue-forget { - left: 65%; -} - -#remember-me { - left: 18%; -} - -#guest { - left: 61%; -} - -#guest-text { - left: 110%; -} +@use '../../abstracts/sprite'; input[type='range'] { width: 100%; + height: 0.5em; + + appearance: none; background-image: -webkit-gradient( linear, left top, right top, - color-stop(1, #4d4d4d), - color-stop(1, #c5c5c5) + color-stop(1, #c5c5c5), + color-stop(1, #4d4d4d) ); - - appearance: none; + border-radius: 0.1875em; &::-webkit-slider-thumb { - background-color: #707070; - border: 1px solid #000; + width: 0.75em; + height: 1em; appearance: none !important; + background-color: #4d4d4d; + border: 0.125em solid #7f7f7f; + border-radius: 0.125em; &:active { - background-color: #fcda5c; - } - } -} - -@each $size, $i in media.$sizes { - @media ($size) { - $button-width: 96px * $i; - $button-height: 27px * $i; - - #remember-me-text, - #guest-text { - height: 8px * $i; - padding-left: 5px * $i; - font-size: 10px * $i; - } - - #login { - background-position-x: -$button-width; - } - - #new-account { - background-position-x: -$button-width * 2; - } - - #cancel-register, - #cancel-forget, - #cancel-worlds { - background-position-x: -$button-width * 3; - } - - #continue-worlds { - background-position-x: -$button-width * 4; - } - - #play, - #continue-forget, - #login, - #new-account, - #cancel-register, - #cancel-forget, - #cancel-worlds, - #confirm-reset, - #continue-worlds { - cursor: pointer; - - position: absolute; - - width: $button-width; - height: $button-height; - - background-color: transparent; - background-image: url('/img/interface/buttons.png'); - background-size: calc(width('buttons.png') * $i); - border: none; - - &:hover, - &:focus { - background-position-y: -$button-height; - } - - &:active { - background-position-y: -$button-height * 2; - } - - &:disabled { - cursor: wait; - background-position-y: -$button-height * 3; - } - } - - #continue-forget { - background-position-x: -$button-width * 4; - } - - #confirm-reset { - background-position-x: -$button-width * 5; - } - - .validation-error, - .validation-warning, - .status { - font-size: 8px * $i; - } - - .validation-summary { - width: 128px * $i; + background-color: #7f7f7f; } - // Other - - input[type='range'] { - height: 3px * $i; - border-radius: 3px * $i; - - &::-webkit-slider-thumb { - width: 5px * $i; - height: 8px * $i; - border-radius: 2px * $i; - } + &:hover { + border-color: #fcda5c; } } } - -@media (--lg) { - .validation-error, - .validation-warning, - .status { - font-size: 24px; - } - - .stroke { - text-shadow: 2px 2px 0 #373737, 2px -2px 0 #373737, 0 2px 0 #373737, 2px 0 0 #373737, - -2px 2px 0 #373737, -2px -2px 0 #373737, 0 -2px 0 #373737, 0 2px 0 #373737, - -2px 0 0 #373737; - } - - #remember-me-text, - #guest-text { - width: 225px; - } - - .validation-summary { - width: 366px; - } -} - -@media (--md) { - #remember-me-text, - #guest-text { - width: 150px; - } - - input[type='range']::-webkit-slider-thumb { - height: 15px; - } - - .stroke { - text-shadow: 1px 1px 0 #373737, 1px -1px 0 #373737, 0 1px 0 #373737, 1px 0 0 #373737, - -1px 1px 0 #373737, -1px -1px 0 #373737, 0 -1px 0 #373737, 0 1px 0 #373737, - -1px 0 0 #373737; - } -} - -@media (--sm) { - #remember-me-text, - #guest-text { - width: 100px; - } - - #yes { - left: 0; - } - - #no { - left: 40%; - } - - #about h1, - #credits h1 { - font-size: 16px; - } -} diff --git a/packages/client/scss/app/impl/_parchment.scss b/packages/client/scss/app/impl/_parchment.scss index a33bc5f3e5..88250ab33d 100644 --- a/packages/client/scss/app/impl/_parchment.scss +++ b/packages/client/scss/app/impl/_parchment.scss @@ -1,41 +1,11 @@ @use '../../abstracts/media'; -#parchment, -#parchment input, -#parchment select { - font-family: AdvoCut, sans-serif; -} - #parchment { + top: -3em; + width: 38em; + height: 19em; opacity: 0; - p { - font-family: AdvoCut, sans-serif; - } - - input { - width: 50%; - - color: #eee; - text-align: center; - - background-color: rgb(0 0 0 / 5%); - - animation: glow 0.5s linear infinite alternate; - - &:focus { - color: #fff; - background-color: rgb(0 0 0 / 10%); - border-color: rgb(0 0 0 / 30%); - animation: none; - } - - &.field-error { - background-color: rgb(255 0 0 / 10%); - border-color: #f84444; - } - } - select { width: 25%; color: black; @@ -57,37 +27,44 @@ pointer-events: none; position: absolute; - z-index: 1000; - left: 50%; + inset: 0; + + overflow: auto; + display: flex; + flex-direction: column; + gap: 0; + + box-sizing: border-box; + width: 24em; + height: 16.5em; + margin: auto; + padding: 0 0.25em; - font-family: AdvoCut, sans-serif; text-align: center; opacity: 0; transition: none; -} -#credits, -#about, -#death, -#news, -#git { - top: 50%; -} + form { + position: relative; -#parchment, -#create-character, -#reset-password, -#load-character, -#world-select, -#error { - position: absolute; - z-index: 2; - top: 55%; - left: 50%; + display: flex; + flex: 1; + flex-direction: column; + gap: 0; + justify-content: space-between; - text-align: center; + height: 100%; + + button { + width: 8em; + } + + input { + font-size: 0.9em; + } + } } .parchment-left { @@ -115,16 +92,6 @@ image-rendering: pixelated; } -.animate { - .parchment-left { - animation: move-parchment-left 1s ease-in-out 1; - } - - .parchment-right { - animation: move-parchment-right 1s ease-in-out 1; - } -} - .left-ornament, .right-ornament { position: relative; @@ -132,35 +99,21 @@ image-rendering: pixelated; } -#about p, -#news p { - width: 80%; - margin-top: 5%; - margin-left: 10%; -} - -#news p { - margin-top: 3%; -} - -.close-about { - margin-top: 2%; -} - -.close-news { - margin-top: 5%; -} - #death { - p { - margin-top: 10%; + h1 { + margin-top: 20%; } #respawn { cursor: pointer; - margin-top: 5%; - background-color: transparent; - border: none; + + display: flex; + flex-direction: row; + justify-content: center; + + margin-top: 1em; + + font-size: 1.5em; } } @@ -179,260 +132,35 @@ transition: 0.5s opacity linear; } -@each $size, $i in media.$sizes { - @media ($size) { - #parchment h1, - #news h1, - #about h1 { - margin-top: 20px * $i; - } - - #parchment, - #create-character, - #reset-password, - #load-character, - #world-select, - #error { - width: 422px * $i; - height: 182px * $i; - margin-top: -91px * $i; - margin-left: -211px * $i; - } - - #parchment input, - #parchment select { - padding: 0 5px * $i; - font-size: 10px * $i; - border: 1px * $i dashed #b2af9b; - border-radius: 3px * $i; - } - - #parchment input { - height: 20px * $i; - margin-top: 10px * $i; - } - - #parchment select { - height: 16px * $i; - margin-top: 8px * $i; - } - - #load-character h1, - #create-character h1, - #reset-password h1, - #world-select h1 { - margin-top: 10px * $i; - } - - #credits, - #about, - #death, - #news, - #git { - width: 422px * $i; - height: 182px * $i; - margin-top: -91px * $i; - margin-left: -211px * $i; - - font-size: 10px * $i; - } - - .parchment-left, - .parchment-middle, - .parchment-right, - #respawn { - background-image: url('/img/interface/spritesheet.png'); - background-size: calc(width('spritesheet.png') * $i); - } - - .parchment-left { - width: 38px * $i; - height: 182px * $i; - background-position: 0 -294px * $i; - } - - .parchment-middle { - width: 346px * $i; - height: 182px * $i; - margin-left: -173px * $i; - background-position: -38px * $i -294px * $i; - } - - .parchment-right { - width: 38px * $i; - height: 182px * $i; - background-position: -384px * $i -294px * $i; - } - - .left-ornament, - .right-ornament { - top: 3px * $i; - - width: 31px * $i; - height: 12px * $i; - margin: 0 5px * $i + 5px; - - background-image: url('/img/interface/spritesheet.png'); - background-size: calc(width('spritesheet.png') * $i); - } - - .left-ornament { - background-position-x: -354px * $i; - } - - .right-ornament { - background-position-x: -385px * $i; - } +@media (--portrait) { + #parchment { + top: -5em; + width: 20em; + height: 26em; } -} -@media (--lg) { - #parchment h1, - #load-character h1, - #news h1, - #about h1 { - margin-top: 30px; - font-size: 30px; - } - - #create-character h1, - #reset-password h1 { - margin-top: 10px; - font-size: 30px; - } - - .left-ornament, - .right-ornament { - top: 12px; - } - - #parchment, - #create-character, - #reset-password, + #loading, #load-character, - #world-select, - #error { - font-size: 20px; - } - - #parchment.create-character input { - height: 45px; - margin-top: 24px; - } - - #parchment.reset-password input { - height: 45px; - margin-top: 120px; - margin-bottom: 90px; - } - - .animate .parchment-middle { - animation: parchment-middle-3 1s ease-in-out 1; - } - - .game.death .parchment-middle, - .game.news .parchment-middle { - width: 1038px; - margin-left: -519px; - background-position: -114px -882px; - } - - #respawn { - width: 375px; - height: 153px; - margin: 63px auto 0; - background-position: 0 -1428px; - - &:active { - background-position: -375px -1428px; - } - } -} - -@media (--md) { - #parchment, #create-character, #reset-password, #world-select, - #load-character, + #credits, + #about, + #git, + #death, + #news, #error { - font-size: 20px; - } - - #parchment.create-character input { - height: 30px; - margin-top: 15px; - } - - #parchment.reset-password input { - height: 30px; - margin-top: 80px; - margin-bottom: 60px; - } - - .animate .parchment-middle { - animation: parchment-middle-2 1s ease-in-out 1; - } - - .game.death .parchment-middle, - .game.news .parchment-middle { - width: 692px; - margin-left: -346px; - background-position: -76px -588px; - } + flex-flow: column; + justify-content: center; + width: 16em; + height: 23em; - #respawn { - width: 250px; - height: 102px; - margin: 42px auto 0; - background-position: 0 -952px; - - &:active { - background-position: -250px -952px; + .button-row { + flex-flow: column; } - } -} - -@media (--sm) { - #parchment, - #create-character, - #reset-password, - #load-character, - #world-select, - #error { - font-size: 10px; - } - - #parchment.create-character input { - height: 15px; - margin-top: 8px; - } - - #parchment.reset-password input { - height: 15px; - margin-top: 40px; - margin-bottom: 30px; - } - - .animate .parchment-middle { - animation: parchment-middle-1 1s ease-in-out 1; - } - - .game.death .parchment-middle, - .game.news .parchment-middle { - width: 346px; - margin-left: -173px; - background-position: -38px -294px; - } - - #respawn { - width: 125px; - height: 51px; - margin: 21px auto 0; - background-position: 0 -476px; - &:active { - background-position: -125px -476px; + .slice-button { + width: 15em; } } } diff --git a/packages/client/scss/app/impl/_worlds.scss b/packages/client/scss/app/impl/_worlds.scss index ee6c76c6d6..5312d571a7 100644 --- a/packages/client/scss/app/impl/_worlds.scss +++ b/packages/client/scss/app/impl/_worlds.scss @@ -7,56 +7,37 @@ bottom: 0; left: 0; - margin: 3.5em; - padding: 0.5em 1em; - - font-family: AdvoCut, sans-serif, arial; - font-size: 24px; - color: #eee; - - background-color: #d83939; - border: 2px solid #373737; - border-radius: 0.25em; - - &:hover { - background-color: #e26d6d; - border-color: #fcda5c; - } + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; - &:active { - background-color: #db4848; - } + box-sizing: border-box; + margin: 1em; - strong { - display: block; - letter-spacing: 0.05em; - } + color: #eee; - span { - font-size: 20px; + &[hidden] { + display: none; } } -#world-select form { - display: flex; - flex-flow: column; - height: 65%; - padding: 1em 5em; -} - #worlds { overflow-y: auto; - padding: 0 5em; li { cursor: pointer; display: flex; flex: 1; + flex-direction: row; justify-content: space-evenly; + box-sizing: border-box; padding: 0.5em 0; + border: 0.125em solid transparent; + &:nth-child(odd) { background-color: rgb(0 0 0 / 25%); } @@ -72,18 +53,19 @@ &.active { color: #fcda5c; background-color: rgb(0 0 0 / 75%); - outline: 2px solid #fcda5c; + border-color: #fcda5c; } } } .button-row { display: flex; + flex-direction: row; gap: 1em; + align-items: center; justify-content: space-between; width: 100%; - margin: 0.5em 0; } #cancel-worlds, @@ -91,8 +73,8 @@ position: relative; } -@media (--lg) { - #world-select form { - padding: 1em 7.5em; +@media (--portrait) { + #world-select-button { + bottom: 4em; } } diff --git a/packages/client/scss/base/_index.scss b/packages/client/scss/base/_index.scss index 1948c294d9..bcb3acd0a7 100644 --- a/packages/client/scss/base/_index.scss +++ b/packages/client/scss/base/_index.scss @@ -1,4 +1,41 @@ +@use 'sass:math'; + +@use '../abstracts/media'; + @use 'impl/reset'; @use 'impl/fonts'; @use 'impl/animations'; @use 'impl/utils'; +@use 'impl/defaults'; + +body, +button, +input, +select { + font-family: Monogram, 'AdvoCut Fallback', arial, sans-serif; +} + +h1, +h2, +h3 { + font-family: Fibberish, Monogram, AdvoCut, arial, sans-serif; +} + +select { + padding: 0.25em; + + font-size: 1em; + color: #c6c0a3; + + background-color: #000; + border: none; + border-radius: 0.25em; +} + +@each $size, $scale in media.$sizes { + @media ($size) { + body { + font-size: 1em * $scale; + } + } +} diff --git a/packages/client/scss/base/impl/_animations.scss b/packages/client/scss/base/impl/_animations.scss index 085156e59e..9db909c2ac 100644 --- a/packages/client/scss/base/impl/_animations.scss +++ b/packages/client/scss/base/impl/_animations.scss @@ -25,48 +25,48 @@ @keyframes parchment-middle-1 { 0%, 100% { - width: 346px; - margin-left: -173px; - background-position: -38px -294px; + width: 21.625em; + margin-left: -10.8125em; + background-position: -2.375em -18.375em; } 45%, 55% { width: 0; margin-left: 0; - background-position: -211px -294px; + background-position: -13.1875em -18.375em; } } @keyframes parchment-middle-2 { 0%, 100% { - width: 692px; - margin-left: -346px; - background-position: -76px -588px; + width: 43.25em; + margin-left: -21.625em; + background-position: -4.75em -36.75em; } 45%, 55% { width: 0; margin-left: 0; - background-position: -422px -588px; + background-position: -26.375em -36.75em; } } @keyframes parchment-middle-3 { 0%, 100% { - width: 1038px; - margin-left: -519px; - background-position: -114px -882px; + width: 64.875em; + margin-left: -32.4375em; + background-position: -7.125em -55.125em; } 45%, 55% { width: 0; margin-left: 0; - background-position: -633px -882px; + background-position: -39.5625em -55.125em; } } @@ -75,3 +75,23 @@ color: transparent; } } + +@keyframes animate-instructions { + 0% { + background-position-x: 0; + } + + 100% { + background-position-x: -12em; + } +} + +@keyframes animate-instructions-click { + 0% { + background-position-x: 0; + } + + 100% { + background-position-x: -6em; + } +} diff --git a/packages/client/scss/base/impl/_fonts.scss b/packages/client/scss/base/impl/_fonts.scss index 91a2f5afac..41970eb928 100644 --- a/packages/client/scss/base/impl/_fonts.scss +++ b/packages/client/scss/base/impl/_fonts.scss @@ -1,27 +1,94 @@ @font-face { font-family: AdvoCut; - font-weight: normal; + font-weight: 400; font-style: normal; font-display: swap; - src: url('/fonts/advocut/advocut-webfont.eot'); - src: url('/fonts/advocut/advocut-webfont.eot?#iefix') format('embedded-opentype'), + src: url('/fonts/advocut/advocut-webfont.woff') format('woff'), url('/fonts/advocut/advocut-webfont.ttf') format('truetype'), url('/fonts/advocut/advocut-webfont.svg#AndinaRegular') format('svg'); } +@font-face { + font-family: 'AdvoCut Fallback'; + font-weight: 400; + font-style: normal; + src: local('Arial'); + ascent-override: 89.2%; + descent-override: 21.78%; + line-gap-override: 0%; + + size-adjust: 100.89%; +} + @font-face { font-family: KerrieFont; - font-weight: normal; + font-weight: 400; font-style: normal; font-display: swap; src: url('/fonts/kerriefont.ttf') format('truetype'); } +@font-face { + font-family: Monogram; + font-weight: 400; + font-style: normal; + font-display: swap; + src: url('/fonts/monogram.ttf') format('truetype'); +} + +@font-face { + font-family: Fibberish; + font-weight: 400; + font-style: normal; + font-display: swap; + src: url('/fonts/fibberish.ttf') format('truetype'); +} + +@font-face { + font-family: Abaddon; + font-weight: 400; + font-style: normal; + font-display: swap; + src: url('/fonts/abaddon.ttf') format('truetype'); +} + +@font-face { + font-family: Quaver; + font-weight: 400; + font-style: normal; + font-display: swap; + src: url('/fonts/quaver.ttf') format('truetype'); +} + +@font-face { + font-family: 'KerrieFont Fallback'; + font-weight: 400; + font-style: normal; + src: local('Arial'); + ascent-override: 68.45%; + descent-override: 22.82%; + line-gap-override: 0%; + + size-adjust: 109.58%; +} + @font-face { font-family: DorfScratch; - font-weight: normal; + font-weight: 400; font-style: normal; font-display: swap; src: url('/fonts/dorfscratch.ttf') format('truetype'); -} \ No newline at end of file +} + +@font-face { + font-family: 'DorfScratch Fallback'; + font-weight: 400; + font-style: normal; + src: local('Arial'); + ascent-override: 68.45%; + descent-override: 22.82%; + line-gap-override: 0%; + + size-adjust: 109.58%; +} diff --git a/packages/client/scss/base/impl/_reset.scss b/packages/client/scss/base/impl/_reset.scss index ae2d0bb839..324ec67631 100644 --- a/packages/client/scss/base/impl/_reset.scss +++ b/packages/client/scss/base/impl/_reset.scss @@ -63,7 +63,6 @@ td { margin: 0; padding: 0; - font-size: 100%; vertical-align: baseline; background-color: transparent; @@ -86,8 +85,9 @@ body { } canvas { - position: absolute; image-rendering: pixelated; + + -webkit-font-smoothing: none; } body { @@ -170,6 +170,28 @@ html [type='button'], } ::-webkit-scrollbar { - width: 0; - background-color: transparent; // Make scrollbar transparent + width: 0.5em; + height: 0.5em; + + @media (--portrait) { + width: 0; + height: 0; + } +} + +::-webkit-scrollbar-track, +::-webkit-scrollbar-corner { + background-color: transparent; +} + +::-webkit-scrollbar-thumb { + background-color: #eee; + + &:hover { + background-color: #ccc; + } + + &:active { + background-color: #aaa; + } } diff --git a/packages/client/scss/base/impl/_utils.scss b/packages/client/scss/base/impl/_utils.scss index 98ccf351fc..1887bc73a2 100644 --- a/packages/client/scss/base/impl/_utils.scss +++ b/packages/client/scss/base/impl/_utils.scss @@ -1,6 +1,33 @@ +.row { + display: flex; + flex-direction: row; +} + +.col { + display: flex; + flex-direction: column; +} + +.stroke { + text-shadow: 0.0625em 0.0625em 0 #373737, 0.0625em -0.0625em 0 #373737, 0 0.0625em 0 #373737, + 0.0625em 0 0 #373737, -0.0625em 0.0625em 0 #373737, -0.0625em -0.0625em 0 #373737, + 0 -0.0625em 0 #373737, 0 0.0625em 0 #373737, -0.0625em 0 0 #373737; +} + +.text-red { + color: #e00a0a; +} + +.text-green { + color: #00a800; +} + +.text-yellow { + color: #e0e000; +} + .dimmed { - overflow: hidden; - width: 100%; - height: 100%; - filter: brightness(50%); + pointer-events: none; + user-select: none; + filter: brightness(25%); } diff --git a/packages/client/scss/base/impl/defaults.scss b/packages/client/scss/base/impl/defaults.scss new file mode 100644 index 0000000000..17a7d5c5e4 --- /dev/null +++ b/packages/client/scss/base/impl/defaults.scss @@ -0,0 +1,49 @@ +div, +ul, +dialog, +article { + display: flex; + flex-direction: column; + + &[hidden] { + display: none; + } +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin-bottom: 0.25em; +} + +h1 { + font-size: 1.75em; +} + +h2 { + font-size: 1.375em; +} + +h3 { + font-size: 1.25em; +} + +h4 { + font-size: 1.125em; +} + +h5 { + font-size: 1em; +} + +h6 { + font-size: 0.875em; +} + +p { + margin-bottom: 0.25em; + font-size: 1em; +} diff --git a/packages/client/scss/game/_index.scss b/packages/client/scss/game/_index.scss index 222dd02597..4e4b3e998d 100644 --- a/packages/client/scss/game/_index.scss +++ b/packages/client/scss/game/_index.scss @@ -3,16 +3,22 @@ @use 'impl/action'; @use 'impl/attack'; @use 'impl/bank'; +@use 'impl/book'; @use 'impl/bubbles'; @use 'impl/buttons'; @use 'impl/chat'; @use 'impl/container'; +@use 'impl/crafting'; @use 'impl/dialog'; @use 'impl/enchant'; @use 'impl/equipments'; @use 'impl/friends'; +@use 'impl/guilds'; @use 'impl/interact'; @use 'impl/inventory'; +@use 'impl/joystick'; +@use 'impl/leaderboards'; +@use 'impl/lootbag'; @use 'impl/map'; @use 'impl/notifications'; @use 'impl/page'; @@ -20,16 +26,24 @@ @use 'impl/profile'; @use 'impl/quests'; @use 'impl/settings'; +@use 'impl/skills'; +@use 'impl/slice'; @use 'impl/store'; @use 'impl/trade'; +@use 'impl/welcome'; @use 'impl/zoom'; -@use 'impl/leaderboards'; -@use 'impl/guilds'; -@use 'impl/crafting'; +@use 'impl/quest'; +@use 'impl/inappstore'; body.game { background: #000; + label, + input[type], + a { + cursor: none; + } + #load-character, #create-character, #reset-password, @@ -39,27 +53,9 @@ body.game { #parchment { z-index: 0; - transition: 0.5s opacity linear 0.5s, z-index 0s linear 1s; - } - - #credits, - #death, - #news, - #about, - #git { - z-index: 1000; - opacity: 0; - transition: 0s opacity linear 0s; - } - - .parchment-left { - left: 41%; - transition: 0.5s left ease-in-out; - } - - .parchment-right { - right: 41%; - transition: 0.5s right ease-in-out; + transition: + 0.2s opacity linear 0.2s, + z-index 0s linear 1s; } &.credits #credits, @@ -92,13 +88,6 @@ body.game { } } - .parchment-middle { - width: 0; - margin-left: 0; - transition: 0.5s width ease-in-out, 0.5s margin-left ease-in-out, - 0.5s background-position ease-in-out; - } - #game-container { opacity: 1; } @@ -108,23 +97,3 @@ body.game { color: #8a8a8a; } } - -@media (--lg) { - body.game { - .parchment-middle { - background-position: -633px -882px; - } - - &.credits, - &.death, - &.news, - &.git, - &.about { - .parchment-middle { - width: 1038px; - margin-left: -519px; - background-position-x: -114px; - } - } - } -} diff --git a/packages/client/scss/game/impl/_abilities.scss b/packages/client/scss/game/impl/_abilities.scss index b68165593d..d19c71953c 100644 --- a/packages/client/scss/game/impl/_abilities.scss +++ b/packages/client/scss/game/impl/_abilities.scss @@ -5,328 +5,129 @@ margin-left: 40%; opacity: 0; transition: opacity 2s; -} - -#ability-shortcut ul { - overflow: hidden; - width: 128%; - margin-left: 7%; - padding: 0; + ul { + overflow: hidden; - list-style-type: none; + width: 128%; + margin-left: 7%; + padding: 0; - li { - float: left; - margin-top: 1%; - margin-right: 4%; - } -} + list-style-type: none; -@each $size, $i in media.$b-sizes { - @media ($size) { - .ability-quickslot { - cursor: url('/img/hand.png'), auto; - position: absolute; - width: 16px * $i; - height: 16px * $i; - } - - #ability-quickslot1 { - top: 2px * $i; - left: 9px * $i; - } - - #ability-quickslot2 { - top: 2px * $i; - left: 31px * $i; - } - - #ability-quickslot3 { - top: 2px * $i; - left: 53px * $i; - } - - #ability-quickslot4 { - top: 2px * $i; - left: 75px * $i; + li { + float: left; + margin-top: 1%; + margin-right: 4%; } } } -@each $size, $i in media.$s-sizes { - @media ($size) { - #ability-shortcut { - cursor: url('/img/hand.png'), auto; - - bottom: 5px; - - width: 200px * $i; - height: 40px * $i; - - background-image: url('/img/interface/skillslots.png'); - background-size: calc(width('skillslots.png') * $i); - } - } - - .ability-quickslot { - cursor: url('/img/hand.png'), auto; - - position: absolute; - - width: 64px; - height: 64px; - margin-top: 2px; - } - - .quickslot-icon-intimidate { - background-image: url('/img/interface/abilityicons.png'); - background-position: 0 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-run { - background-image: url('/img/interface/abilityicons.png'); - background-position: -64px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-awareness { - background-image: url('/img/interface/abilityicons.png'); - background-position: -128px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-dualistsmark { - background-image: url('/img/interface/abilityicons.png'); - background-position: -192px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-hotshot { - background-image: url('/img/interface/abilityicons.png'); - background-position: -256px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-thickskin { - background-image: url('/img/interface/abilityicons.png'); - background-position: -320px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-precognition { - background-image: url('/img/interface/abilityicons.png'); - background-position: -384px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-secretcalling { - background-image: url('/img/interface/abilityicons.png'); - background-position: -448px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-intimidate, - .quickslot-icon-run, - .quickslot-icon-awareness, - .quickslot-icon-dualistsmark, - .quickslot-icon-hotshot, - .quickslot-icon-thickskin, - .quickslot-icon-precognition, - .quickslot-icon-secretcalling { - &:hover { - background-position-y: -60px; - } - - &:active, - &.active { - background-position-y: -120px; - } - } +.ability-quickslot { + position: absolute; + width: 1em; + height: 1em; } -@media (--lg) { - #ability-quickslot1 { - left: 36px; - } - - #ability-quickslot2 { - left: 124px; - } - - #ability-quickslot3 { - left: 212px; - } - - #ability-quickslot4 { - left: 300px; - } +#ability-quickslot1 { + top: 0.125em; + left: 0.5625em; } -@media (--md) { - #ability-shortcut { - margin-left: 25%; - } - - .ability-quickslot { - cursor: url('/img/hand.png'), auto; - - position: absolute; - - width: 64px; - height: 64px; - margin-top: 4px; - margin-left: 18px; - } - - .quickslot-icon-intimidate { - background-image: url('/img/interface/abilityicons.png'); - background-position: 0 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-run { - background-image: url('/img/interface/abilityicons.png'); - background-position: -64px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-awareness { - background-image: url('/img/interface/abilityicons.png'); - background-position: -128px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-dualistsmark { - background-image: url('/img/interface/abilityicons.png'); - background-position: -192px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-hotshot { - background-image: url('/img/interface/abilityicons.png'); - background-position: -256px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-thickskin { - background-image: url('/img/interface/abilityicons.png'); - background-position: -320px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-precognition { - background-image: url('/img/interface/abilityicons.png'); - background-position: -384px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-secretcalling { - background-image: url('/img/interface/abilityicons.png'); - background-position: -448px 1px; - background-size: calc(width('abilityicons.png') * 4); - } - - .quickslot-icon-intimidate, - .quickslot-icon-run, - .quickslot-icon-awareness, - .quickslot-icon-dualistsmark, - .quickslot-icon-hotshot, - .quickslot-icon-thickskin, - .quickslot-icon-precognition, - .quickslot-icon-secretcalling { - &:hover { - background-position-y: -60px; - } +#ability-quickslot2 { + top: 0.125em; + left: 1.9375em; +} - &:active, - &.active { - background-position-y: -120px; - } - } +#ability-quickslot3 { + top: 0.125em; + left: 3.3125em; } -@media (--sm) { - #ability-shortcut { - right: 0; - margin-bottom: 50px; - } +#ability-quickslot4 { + top: 0.125em; + left: 4.6875em; +} - .ability-quickslot { - cursor: url('/img/hand.png'), auto; +#ability-shortcut { + bottom: 0.3125em; - position: absolute; + width: 12.5em; + height: 2.5em; - width: 32px; - height: 32px; - margin-top: 0; - margin-left: 0; - } + background-image: url('/img/interface/skillslots.png'); + background-size: calc(width('skillslots')); +} - .quickslot-icon-intimidate { - background-image: url('/img/interface/abilityicons.png'); - background-position: 0 1px; - background-size: calc(width('abilityicons.png') * 2); - } +.ability-quickslot { + position: absolute; + width: 4em; + height: 4em; + margin-top: 0.125em; +} - .quickslot-icon-run { - background-image: url('/img/interface/abilityicons.png'); - background-position: -32px 1px; - background-size: calc(width('abilityicons.png') * 2); - } +.quickslot-icon-intimidate { + background-image: url('/img/interface/abilityicons.png'); + background-position: 0 0.0625em; + background-size: calc(width('abilityicons') * 0.25rem); +} - .quickslot-icon-awareness { - background-image: url('/img/interface/abilityicons.png'); - background-position: -64px 1px; - background-size: calc(width('abilityicons.png') * 2); - } +.quickslot-icon-run { + background-image: url('/img/interface/abilityicons.png'); + background-position: -4em 0.0625em; + background-size: calc(width('abilityicons') * 0.25rem); +} - .quickslot-icon-dualistsmark { - background-image: url('/img/interface/abilityicons.png'); - background-position: -96px 1px; - background-size: calc(width('abilityicons.png') * 2); - } +.quickslot-icon-awareness { + background-image: url('/img/interface/abilityicons.png'); + background-position: -8em 0.0625em; + background-size: calc(width('abilityicons') * 0.25rem); +} - .quickslot-icon-hotshot { - background-image: url('/img/interface/abilityicons.png'); - background-position: -128px 1px; - background-size: calc(width('abilityicons.png') * 2); - } +.quickslot-icon-dualistsmark { + background-image: url('/img/interface/abilityicons.png'); + background-position: -12em 0.0625em; + background-size: calc(width('abilityicons') * 0.25rem); +} - .quickslot-icon-thickskin { - background-image: url('/img/interface/abilityicons.png'); - background-position: -160px 1px; - background-size: calc(width('abilityicons.png') * 2); - } +.quickslot-icon-hotshot { + background-image: url('/img/interface/abilityicons.png'); + background-position: -16em 0.0625em; + background-size: calc(width('abilityicons') * 0.25rem); +} - .quickslot-icon-precognition { - background-image: url('/img/interface/abilityicons.png'); - background-position: -192px 1px; - background-size: calc(width('abilityicons.png') * 2); - } +.quickslot-icon-thickskin { + background-image: url('/img/interface/abilityicons.png'); + background-position: -20em 0.0625em; + background-size: calc(width('abilityicons') * 0.25rem); +} - .quickslot-icon-secretcalling { - background-image: url('/img/interface/abilityicons.png'); - background-position: -224px 1px; - background-size: calc(width('abilityicons.png') * 2); - } +.quickslot-icon-precognition { + background-image: url('/img/interface/abilityicons.png'); + background-position: -24em 0.0625em; + background-size: calc(width('abilityicons') * 0.25rem); +} - .quickslot-icon-intimidate, - .quickslot-icon-run, - .quickslot-icon-awareness, - .quickslot-icon-dualistsmark, - .quickslot-icon-hotshot, - .quickslot-icon-thickskin, - .quickslot-icon-precognition, - .quickslot-icon-secretcalling { - &:hover { - background-position-y: -30px; - } +.quickslot-icon-secretcalling { + background-image: url('/img/interface/abilityicons.png'); + background-position: -28em 0.0625em; + background-size: calc(width('abilityicons') * 0.25rem); +} - &:active, - &.active { - background-position-y: -60px; - } +.quickslot-icon-intimidate, +.quickslot-icon-run, +.quickslot-icon-awareness, +.quickslot-icon-dualistsmark, +.quickslot-icon-hotshot, +.quickslot-icon-thickskin, +.quickslot-icon-precognition, +.quickslot-icon-secretcalling { + &:hover { + background-position-y: -3.75em; + } + + &:active, + &.active { + background-position-y: -7.5em; } } diff --git a/packages/client/scss/game/impl/_achievements.scss b/packages/client/scss/game/impl/_achievements.scss index d0aa059c9b..ee7317a1f9 100644 --- a/packages/client/scss/game/impl/_achievements.scss +++ b/packages/client/scss/game/impl/_achievements.scss @@ -1,129 +1,110 @@ -@use '../../abstracts/media'; +@use '../../abstracts/sprite'; -#achievements-container { - position: absolute; - inset: 0; +#achievements { + display: none; - overflow: auto; + &-tab { + position: absolute; + top: -3em; + left: calc(50% - 5.5em); - margin: auto; + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; - font-family: AdvoCut, sans-serif; -} - -#achievements-container > ul > li:last-child.achievement-element { - padding-bottom: 0 !important; -} + width: 11em; + height: 3em; -.achievement-element > p.achievement-title { - float: left; - color: #fff; -} + #achievements-tab-arrow-left { + position: absolute; + top: 0.375em; + left: -1.6875em; -.achievement-element > p.achievement-progress { - float: right; - color: #fff; -} + padding: 0.3125em; + padding-right: 0.25em; -.coin { - position: absolute; -} + border-image-width: 1em 0 1em 1em; -@each $size, $i in media.$sizes { - @media ($size) { - #achievements-container { - width: 318px * $i; - height: 130px * $i; - font-size: 22px; + .colour-button-arrow-left { + position: static; + } } - .achievement-element { - width: 318px * $i; - height: 26px * $i; - padding-bottom: 8px * $i; + #achievements-tab-arrow-right { + position: absolute; + top: 0.375em; + right: -1.6875em; - background: url('/img/interface/achievements.png') 0 -96px * $i no-repeat; - background-size: calc(width('achievements.png') * $i); - } + padding: 0.3125em; + padding-left: 0.25em; - .achievement-element > p.achievement-title, - .achievement-element > p.achievement-description { - padding-top: 9px * $i; - } + border-image-width: 1em 1em 1em 0; - .achievement-element > p.achievement-title { - margin-left: 30px * $i; - font-size: 8px * $i; + .colour-button-arrow-right { + position: static; + } } - .achievement-element > p.achievement-description { - margin-left: 95px * $i; - } - - .achievement-element > p.achievement-progress { - margin-right: 2px * $i; - } - - .coin { - width: 24px * $i; - height: 26px * $i; - background: url('/img/interface/achievements.png') no-repeat; - background-size: calc(width('achievements.png') * $i); - } - - // Coin used by default achievements when completed. - .coin-default { - background-position: -72px * $i -26px * $i; - } - - .coin-gravemystery { - background-position: -216px * $i 0; - } - - .coin-kaetramdungeon { - background-position: -120px * $i 0; - } - - .coin-lumberjacking50, - .coin-lumberjacking100, - .coin-lumberjacking500, - .coin-lumberjacking1000, - .coin-lumberjacking5000, - .coin-lumberjacking10000, - .coin-mining50, - .coin-mining100, - .coin-mining500, - .coin-mining1000, - .coin-mining5000, - .coin-mining10000, - .coin-fishing50, - .coin-fishing100, - .coin-fishing500, - .coin-fishing1000, - .coin-fishing5000, - .coin-fishing10000 { - background-position: -72px * $i -26px * $i; + span { + font-family: Fibberish; + font-size: 1.2em; } } - @media (--md) { - .achievement-element > p.achievement-title { - font-size: 16px; - } - - .achievement-element > p.achievement-description { - font-size: 15px; + &-content { + height: 100%; + padding: 0.75em; + + ul { + overflow: hidden auto; + display: flex; + flex-direction: column; + gap: 0.5em; + + height: 100%; + padding-right: 0.25em; + + li { + display: flex; + flex-direction: row; + flex-shrink: 0; + gap: 0.5em; + align-items: center; + + .achievement-title { + flex: 1; + font-family: Fibberish; + font-size: 1.1em; + } + + .achievement-description { + flex: 2; + font-size: 1em; + } + } } } +} - @media (--sm) { - .achievement-element > p.achievement-title { - font-size: 10px; - } - - .achievement-element > p.achievement-description { - margin-left: 110px; - font-size: 9px; - } +@media (--portrait) { + #achievements { + width: 22em; + height: 27em; + margin-bottom: 5em; } } + +@include sprite.sheet($image: 'achievements', $width: 20, $height: 20, $selectors: '.coin-slot') { + box-sizing: border-box; + padding: 0.25em; +} + +@include sprite.sheet( + $image: 'achievements', + $x: 21, + $y: 2, + $width: 16, + $height: 16, + $selectors: '.coin-default' +); diff --git a/packages/client/scss/game/impl/_action.scss b/packages/client/scss/game/impl/_action.scss index fb19e3731d..8c50e2923e 100644 --- a/packages/client/scss/game/impl/_action.scss +++ b/packages/client/scss/game/impl/_action.scss @@ -1,34 +1,37 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; #action-container { position: absolute; + right: 13em; + bottom: 5em; + display: none; -} -#action-page { - cursor: url('/img/hand.png'), auto; + width: 8em; + height: 10em; + padding-right: 0; - position: absolute; + border-image-width: 1em 0 1em 1em; +} - width: 100%; +#action-page { + display: flex; + flex: 1; + flex-direction: column; height: 100%; - font-family: AdvoCut, sans-serif; - ul { - position: absolute; - display: inline-flex; + display: flex; + flex-direction: row; + justify-content: space-evenly; } } -#action-description-attack, -#action-description-defense, -#action-description-bonuses, -#action-description-enchantments { - position: absolute; +.action-item-description { overflow: auto; - width: 45%; - height: 30%; + flex: 1; + font-size: 0.9em; } .action-item-name { @@ -40,137 +43,43 @@ color: #fff; } -@each $size, $i in media.$b-sizes { - @media ($size) { - #action-container { - right: 101px * $i; - bottom: 34px * $i; - width: 64px * $i; - height: 89px * $i; - } - - #action-page { - background: url('/img/interface/main.png') -224px * $i -392px * $i no-repeat; - background-size: calc(width('main.png') * $i); - - ul { - bottom: 4px * $i; - left: 4px * $i; - - li { - margin-left: 3px * $i; - } - } - } - - .action-wield, - .action-equip, - .action-attack { - background: url('/img/interface/main.png') -400px * $i -384px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-drop-one { - background: url('/img/interface/main.png') -400px * $i -400px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-drop-many { - background: url('/img/interface/main.png') -400px * $i -416px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-eat { - background: url('/img/interface/main.png') -400px * $i -432px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-eat2 { - background: url('/img/interface/main.png') -400px * $i -448px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-trade { - background: url('/img/interface/main.png') -400px * $i -464px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-potion { - background: url('/img/interface/main.png') -400px * $i -480px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-follow { - background: url('/img/interface/main.png') -400px * $i -496px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-examine { - background: url('/img/interface/main.png') -400px * $i -512px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-addfriend { - background: url('/img/interface/main.png') -400px * $i -528px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .action-button { - width: 16px * $i; - height: 16px * $i; - - &:hover { - background-position-x: -432px * $i; - } - - &:active { - background-position-x: -416px * $i; - } - } - - .action-item-name { - margin-top: 3px * $i; - margin-bottom: 2px * $i; - margin-left: 4px * $i; - font-size: 6px * $i; - } - - .action-item-description { - margin-left: 3px * $i; - font-size: 4px * $i; - } - - - #action-description-attack { - left: 4px * $i; - } - - #action-description-defense { - right: 0 - } - - #action-description-bonuses { - bottom: 22px * $i; - left: 4px * $i; - } +#action-description-attack { + left: 0.25em; +} - #action-description-enchantments { - right: 0; - bottom: 22px * $i; - } - } +#action-description-defense { + right: 0; } -@media (--lg) { - #action-container { - right: 298px; - bottom: 80px; - } +#action-description-bonuses { + bottom: 1.375em; + left: 0.25em; } -@media (--md) { - #action-container { - right: 202px; - bottom: 68px; - } +#action-description-enchantments { + right: 0; + bottom: 1.375em; } + +@include sprite.sheet( + $image: 'main', + $x: 63, + $width: 16, + $height: 16, + $hover: 2, + $active: 1, + $selectors: ( + '.action-button', + '.action-attack', + '.action-equip', + '.action-drop-one', + '.action-drop-many', + '.action-eat', + '.action-interact', + '.action-trade', + '.action-potion', + '.action-follow', + '.action-examine', + '.action-addfriend' + ) +); diff --git a/packages/client/scss/game/impl/_attack.scss b/packages/client/scss/game/impl/_attack.scss index b968899210..c813f12f1d 100644 --- a/packages/client/scss/game/impl/_attack.scss +++ b/packages/client/scss/game/impl/_attack.scss @@ -2,13 +2,21 @@ #attack-info { position: absolute; - left: 40%; + top: 0; + left: calc(50% - 5em); + display: none; + flex-direction: column; + + box-sizing: border-box; + width: 10em; + padding: 0.5em 1em; + + border-image-width: 0 1em 1em 1em; .name, .health { - position: absolute; - font-family: AdvoCut, sans-serif; + margin-bottom: 0.25em; color: white; text-align: center; } @@ -20,53 +28,21 @@ .details { overflow: hidden; - - width: 100%; - - font-family: AdvoCut, sans-serif; + font-size: 0.75em; color: white; text-align: center; } .health { - left: 5%; overflow: hidden; - width: 90%; - } -} -@each $size, $i in media.$sizes { - @media ($size) { - #attack-info { - top: 0; - - width: 100px * $i; - height: 32px * $i; - - // border: 2px * $i solid #373737; - // border-bottom-right-radius: 8px * $i; - // border-bottom-left-radius: 8px * $i; - - background: url('/img/interface/main.png') -32px * $i -464px * $i no-repeat; - background-size: calc(width('main.png') * $i); - - .name { - margin-top: 3px * $i; - } - - .details { - margin-top: 12px * $i; - } - - .health { - height: 6px * $i; + width: 100%; + height: 0.75em; - background-color: red; - border: 1px * $i solid #373737; - border-radius: 2px * $i; + background-color: red; + border: 1px solid #373737; + border-radius: 0.125em; - transition: 0.5s width ease; - } - } + transition: 0.5s width ease; } } diff --git a/packages/client/scss/game/impl/_bank.scss b/packages/client/scss/game/impl/_bank.scss index e93f411deb..65d5aa283b 100644 --- a/packages/client/scss/game/impl/_bank.scss +++ b/packages/client/scss/game/impl/_bank.scss @@ -1,136 +1,54 @@ -@use '../../abstracts/media'; +@use '../../abstracts/sprite'; #bank { - cursor: url('/img/hand.png'), auto; - position: absolute; inset: 0; display: none; + flex-direction: row; + width: 37em; + height: 21em; margin: auto; -} -#bank-container { - float: right; -} - -#bank-slot { - position: absolute; - top: 9%; - overflow: hidden; - overflow-y: scroll; + @media (--portrait) { + flex-direction: column-reverse; + justify-content: center; - ul { - margin: 0; - padding: 0; - list-style-type: none; + width: 21em; + height: 37em; - li { - float: left; - } + font-size: 0.875em; } } -#bank-inventory-slots { - position: absolute; - overflow: hidden; - overflow-y: scroll; - - ul { - margin: 0; - padding: 0; - list-style-type: none; - - li { - float: left; - } - } +#bank-container { + float: right; } -.bank-item-count { - font-family: AdvoCut, sans-serif !important; - color: gold !important; - text-shadow: 1px 1px black; +#bank-container, +#bank-inventory-container { + box-sizing: border-box; + padding: 2.75em 1.75em; } -@each $size, $i in media.$sizes { - @media ($size) { - #bank { - width: 300px * $i; - height: 167px * $i; - } - - #bank-container, - #bank-inventory-container { - background-image: url('/img/interface/bank.png'); - background-size: calc(width('bank.png') * $i); - } - - #bank-inventory-slots { - top: 16px * $i; - left: 20px * $i; - width: 96px * $i; - height: 92px * $i; - - ul { - li { - .item-slot { - margin-bottom: 4px * $i; - } - } - } - } +#bank-slots, +#bank-inventory-slots { + overflow: auto; + display: flex; + flex-flow: row wrap; + gap: 0.25em; + justify-content: space-evenly; - #bank-container { - width: 171px * $i; - height: 167px * $i; - background-position: -132px * $i 0; - } + width: 100%; + height: 100%; - #bank-slot { - left: 140px * $i; - width: 144px * $i; - height: 130px * $i; + list-style-type: none; - ul { - li { - .item-slot { - margin-bottom: 4px * $i; - margin-left: 2px * $i; - } - } - } - } + li { + float: left; } } -@media (--sm) { - #bank { - transform: scale(1.5); - } - - #bank-slot { - ul { - li { - .item-slot { - margin-bottom: 8px; - margin-left: 3px; - } - } - } - } - - #bank-inventory-slots { - left: 11px; - width: 106px; - - ul { - li { - .item-slot { - margin-bottom: 8px; - } - } - } - } -} +@include sprite.sheet('bank', $x: 132, $width: 168, $height: 166, $selectors: #bank-container); +@include sprite.sheet('bank', $width: 128, $height: 126, $selectors: #bank-inventory-container); diff --git a/packages/client/scss/game/impl/_book.scss b/packages/client/scss/game/impl/_book.scss new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/client/scss/game/impl/_bubbles.scss b/packages/client/scss/game/impl/_bubbles.scss index 2f3bc1202b..249088822d 100644 --- a/packages/client/scss/game/impl/_bubbles.scss +++ b/packages/client/scss/game/impl/_bubbles.scss @@ -11,12 +11,6 @@ width: 100%; height: 100%; - font-family: AdvoCut, sans-serif; - - p { - margin-top: 6px; - } - a { pointer-events: auto; color: #fcda5c; @@ -27,8 +21,15 @@ .pointer { pointer-events: none; user-select: none; + position: absolute; + display: inline-block; + + width: 4.5rem; + height: 4.5rem; + + background: url('/img/pointer.png') no-repeat; } .bubble { @@ -38,22 +39,30 @@ display: inline-block; - padding: 3px 10px 0; + box-sizing: border-box; + max-width: 12em; + padding: 0.5em 0.55em; + font-size: 0.9em; color: rgb(255 255 255 / 80%); text-align: center; background-color: rgb(45 45 45 / 90%); - border-radius: 8px; -} + border-radius: 0.5em; + + &::after { + content: ''; -.bubble-tip { - position: relative; - top: 10px; + position: absolute; + bottom: -0.7em; + left: calc(50% - 0.75em); - width: 11px; - height: 10px; - margin: 0 auto; + display: block; - background-image: url('/img/thingy.png'); + width: 0; + + border-color: rgb(45 45 45 / 90%) transparent; + border-style: solid; + border-width: 0.75em 0.5em 0; + } } diff --git a/packages/client/scss/game/impl/_buttons.scss b/packages/client/scss/game/impl/_buttons.scss index 94d1bb7670..a0c8dc55c6 100644 --- a/packages/client/scss/game/impl/_buttons.scss +++ b/packages/client/scss/game/impl/_buttons.scss @@ -1,210 +1,53 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; #buttons { - cursor: url('/img/hand.png'), auto; - position: absolute; right: 0; bottom: 0; - overflow-x: hidden; - overflow-y: hidden; + display: flex; + flex-direction: row; background-color: rgb(0 0 0 / 0%); - - ul { - float: right; - overflow: hidden; - - margin: 0; - padding: 0; - - list-style-type: none; - - li { - float: left; - } - } } -// Big buttons with text on them -.accept-button { - position: absolute; +@media (--lg) { + #buttons { + font-size: 0.95em; + } } -@each $size, $i in media.$b-sizes { - @media ($size) { +@include sprite.sheet( + $image: 'hud_buttons', + $width: 22, + $height: 25, + $hover: 1, + $active: 2, + $selectors: ( #inventory-button, #chat-button, - #profile-button, - #settings-button, + #leaderboard-button, #warp-button, - #audio-button, - #achievements-button, + #settings-button, + #profile-button, #quests-button, + #guildss-button, #friends-button, - .placeholder-button { - position: relative; - - width: 22px * $i; - height: 25px * $i; - - background: url('/img/interface/hud_buttons.png') 0 0 no-repeat; - background-size: calc(width('hud_buttons.png') * $i); - } - - #chat-button { - background-position: 0 -26px * $i; - - &:hover { - background-position-x: -23px * $i; - } - - &.active, - &:active { - background-position-x: -46px * $i; - } - } - - #inventory-button { - background-position-x: -0; - - &:hover { - background-position-x: -23px * $i; - } - - &.active, - &:active { - background-position-x: -46px * $i; - } - } - - #profile-button { - background-position-x: -71px * $i; - - &:hover { - background-position-x: -94px * $i; - } - - &.active, - &:active { - background-position-x: -117px * $i; - } - } - - #settings-button { - background-position-y: -104px * $i; - - &:hover { - background-position-x: -23px * $i; - } - - &.active, - &:active { - background-position-x: -46px * $i; - } - } - - #warp-button { - background-position-y: -78px * $i; - - &:hover { - background-position-x: -23px * $i; - } - - &.active, - &:active { - background-position-x: -46px * $i; - } - } - - #audio-button { - background-position-x: -98px * $i; - - &:hover { - background-position-x: -126px * $i; - } - - &.active, - &:active { - background-position-x: -112px * $i; - } - } - - #achievements-button { - background-position: -71px * $i -104px * $i; - - &:hover { - background-position-x: -94px * $i; - } - - &.active, - &:active { - background-position-x: -117px * $i; - } - } - - #quests-button { - background-position: -71px * $i -26px * $i; - - &:hover { - background-position-x: -94px * $i; - } - - &.active, - &:active { - background-position-x: -117px * $i; - } - } - - #friends-button { - background-position: -71px * $i -78px * $i; - - &:hover { - background-position-x: -94px * $i; - } - - &.active, - &:active { - background-position-x: -117px * $i; - } - } - - .placeholder-button { - background-position: -400px * $i -336px * $i; - - &:hover { - background-position-x: -416px * $i; - } - - &.active, - &:active { - background-position-x: -432px * $i; - } - } - } -} - -@each $size, $i in media.$sizes { - @media ($size) { - .accept-button { - width: 96px * $i; - height: 27px * $i; - background: url('/img/interface/buttons.png') -480px * $i 0 no-repeat; - background-size: calc(width('buttons.png') * $i); - - &:hover { - background-position-y: -27px * $i; - } - - &.active, - &:active { - background-position-y: -54px * $i; - } - - &.disabled { - background-position-y: -81px * $i; - } - } - } -} \ No newline at end of file + #achievements-button + ) +); + +@include sprite.sheet( + $image: 'frame_buttons', + $width: 19, + $height: 19, + $hover: 1, + $active: 2, + $selectors: ( + #guilds-button, + #leaderboards-button, + #equipment-button, + #pickup-pet-button + ) +); diff --git a/packages/client/scss/game/impl/_chat.scss b/packages/client/scss/game/impl/_chat.scss index 2874c602af..aae7659f61 100644 --- a/packages/client/scss/game/impl/_chat.scss +++ b/packages/client/scss/game/impl/_chat.scss @@ -1,39 +1,62 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; #chat { pointer-events: auto; scroll-behavior: smooth; position: absolute; - bottom: 12px; - left: 12px; + bottom: 3em; + left: 1em; display: none; + flex-direction: column; - p { - padding-left: 8px; - font-family: AdvoCut, sans-serif; + width: 24em; + + @media (--portrait) { + bottom: 6em; + font-size: 0.875em; } } -#chat-log { +#chat-frame { position: absolute; - overflow-y: scroll; - text-shadow: 2px 2px 2px black; } -#chat-log::-webkit-scrollbar-thumb { - pointer-events: auto; +#chat-log { + overflow-x: hidden; + overflow-y: auto; + + height: 10em; + margin: 1em 0.375em 0 0.675em; + + text-shadow: 0.125em 0.125em 0.125em black; + + p { + margin-bottom: 0.1em; + font-size: 1.25em; + } +} + +#chat-log::-webkit-scrollbar { + width: 0; } #chat-input { pointer-events: auto; position: absolute; + bottom: -1.35em; display: none; - width: 90%; + box-sizing: border-box; + width: 22em; + height: 1.25em; + margin-left: 1em; + + font-size: 1em; background: transparent; border: none; @@ -41,45 +64,8 @@ #chat-log, #chat-input { - font-family: AdvoCut, sans-serif; - font-size: 16px; + z-index: 4; color: white; } -@each $size, $i in media.$s-sizes { - - @media ($size) { - #chat { - width: 264px * $i; - height: 135px * $i; - background: url('/img/interface/chatbox.png') no-repeat; - background-size: calc(width('chatbox.png') * $i); - } - - #chat-log { - top: 8px * $i; - left: 4px * $i; - width: 254px * $i; - height: 104px * $i; - } - - #chat-input { - bottom: 4px * $i; - left: 12px * $i; - height: 10px * $i; - } - } - - @media (--lg) { - #chat-log { - font-size: 18px; - } - } - - @media(--sm) { - #chat { - bottom: 70px; - left: 4px; - } - } -} +@include sprite.sheet($image: 'chatbox', $scale: 1.5, $selectors: #chat-frame); diff --git a/packages/client/scss/game/impl/_container.scss b/packages/client/scss/game/impl/_container.scss index b3dada7530..4c8e8b0db4 100644 --- a/packages/client/scss/game/impl/_container.scss +++ b/packages/client/scss/game/impl/_container.scss @@ -1,4 +1,4 @@ -@use '../../abstracts/media'; +@use '../../abstracts/sprite'; #game-container { position: inherit; @@ -14,15 +14,23 @@ } #background, -#text-canvas, +#entities, +#entities-fore, #foreground, #cursor, -#overlay { +#text-canvas, +#overlay, +#entities-mask { + position: absolute; transform: translateZ(0); margin: 0; padding: 0; } +#entities-mask { + opacity: 0.2; +} + #canvas, #foreground, #background, @@ -33,16 +41,12 @@ #cursor { cursor: none; user-select: none; - - @media (--sm) { - cursor: url('/img/hand.png'), auto; - } } -// #game-container { -// top: 48%; -// left: 50%; -// } +#cursor { + pointer-events: none; + z-index: 1000; +} #border { position: absolute; @@ -58,171 +62,41 @@ border: 0; } -.container-frame { - cursor: url('/img/hand.png'), auto; - - position: absolute; - inset: 0; - - margin: auto; - - border-image: url('/img/interface/slices/container.png'); - border-image-slice: 42% fill; - border-image-width: 16px; - border-image-outset: 0; - border-image-repeat: stretch; -} - -.container-subframe { - cursor: url('/img/hand.png'), auto; - - position: absolute; - inset: 0; - - margin: auto; - - border-image: url('/img/interface/slices/subframe.png'); - border-image-slice: 42% fill; - border-image-width: 64px; - border-image-outset: 0; - border-image-repeat: stretch; -} - .container { - cursor: url('/img/hand.png'), auto; position: absolute; inset: 0; display: none; } -.container-slot, -.container-slot-large { - margin: auto; -} - -.container-slot.flex, -.container-slot-large.flex { - display: inline-flex; - align-items: center; - justify-content: space-between; -} - -.container-slot > p, -.container-slot-large > p { - font-size: 20px; - color: rgb(168 16 5); - text-align: center; -} - -.container-slot > p.left, -.container-slot-large > p.left { - float: left; - text-align: left; +.greyscale { + opacity: 0.5; + filter: grayscale(100%); } -.container-slot > p.right, -.container-slot-large > p.right { - float: right; - text-align: right; -} - -.container-slot > p.yellow, -.container-slot-large > p.yellow { - color: rgb(168 168 5); -} - -.container-slot > p.green, -.container-slot-large > p.green { - color: rgb(16 168 5); -} - -.container-slot > p.white, -.container-slot-large > p.white { - color: rgb(255 255 255); -} - -@each $size, $i in media.$sizes { - @media ($size) { - .container { - width: 344px * $i; - height: 157px * $i; - margin: auto; - - background: url('/img/interface/spritesheet.png') 0 -80px * $i no-repeat; - background-size: calc(width('spritesheet.png') * $i); - } - - .container-slot { - width: 102px * $i; - height: 15px * $i; - margin-top: 2px * $i; - - background: url('/img/interface/characterdialogsheet.png') -144px * $i -256px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - - &:hover { - background-position-y: -320px * $i; - } - - &:active { - background-position-y: -336px * $i; - } - } - - .container-slot-large { - width: 166px * $i; - height: 15px * $i; - margin-top: 2px * $i; - - background: url('/img/interface/leaderboards.png') 0 -160px * $i; - background-size: calc(width('leaderboards.png') * $i); - - &:hover { - background-position-y: -176px * $i; - } - - &:active { - background-position-y: -192px * $i; - } - } - - .container-slot > p, - .container-slot-large > p { - padding-top: 4px * $i; - } - - .new-close-container { - width: 11px * $i; - height: 12px * $i; - background: url('/img/interface/guilds/elements.png') -64px * $i 0; - background-size: calc(width('guilds/elements.png') * $i); - - &:hover { - background-position-x: -76px * $i; - } - - &:active, - &.active { - background-position-x: -88px * $i; - } - } - } - - @media (--sm) { - .container-slot > p, - .container-slot-large > p { - padding-top: 2px; - font-size: 10px; - } - } -} - -.close-container { - top: -2% !important; - left: 96% !important; -} - -.new-close-container { +@include sprite.sheet( + $image: 'guilds/elements', + $x: 64, + $width: 11, + $height: 11, + $gap: 1, + $hover: 1, + $active: 2, + $selectors: '.close-container' +) { + position: absolute; + top: -0.25em; + right: -0.25em; +} + +@include sprite.sheet( + $image: 'container-fancy-button', + $width: 20, + $height: 26, + $hover: 1, + $active: 2, + $selectors: '.close-container-fancy' +) { position: absolute; - right: 1px; -} \ No newline at end of file + top: -0.25em; + right: -0.45em; +} diff --git a/packages/client/scss/game/impl/_crafting.scss b/packages/client/scss/game/impl/_crafting.scss index 07c56a319c..b91193607f 100644 --- a/packages/client/scss/game/impl/_crafting.scss +++ b/packages/client/scss/game/impl/_crafting.scss @@ -1,41 +1,42 @@ -@use '../../abstracts/media'; +@use '../../abstracts/sprite'; #crafting { - cursor: url('/img/hand.png'), auto; - position: absolute; inset: 0; - display: none; - margin: auto; } #crafting-options { position: absolute; + top: 1.375em; + left: 1.75em; + overflow: auto; display: grid; grid-template-columns: repeat(4, 1fr); + + width: 11.125em; + height: 9.875em; } #craft-button { position: absolute; display: flex; + flex-direction: row; align-items: center; justify-content: center; - font-family: KerrieFont, sans-serif; + font-family: KerrieFont, 'KerrieFont Fallback', sans-serif; color: white; vertical-align: middle; } #crafting-requirements { position: absolute; - - //overflow: auto; - display: flex; + flex-direction: row; } #crafting-result, @@ -46,14 +47,14 @@ .crafting-option-icon { background-size: cover; - + // Safari filters so the images aren't blurry. filter: opacity(100%); } -#crafting-result-name, .crafting-option-count { - font-family: KerrieFont, sans-serif; - font-size: 14px; +#crafting-result-name, +.crafting-option-count { + font-family: KerrieFont, 'KerrieFont Fallback', sans-serif; color: white; text-align: center; } @@ -61,6 +62,7 @@ .crafting-buttons { position: absolute; display: flex; + flex-direction: row; justify-content: space-between; } @@ -68,156 +70,114 @@ flex: auto; } -@each $size, $i in media.$sizes { - @media ($size) { - #crafting { - width: 416px * $i; - height: 252px * $i; - background: url('/img/interface/crafting.png') no-repeat; - background-size: calc(width('crafting.png') * $i); - } - - #crafting-options { - top: 24px * $i; - left: 30px * $i; - width: 174px * $i; - height: 154px * $i; - } - - #crafting-requirements { - top: 24px * $i; - right: 24px * $i; - - gap: 6px * $i; - - width: 140px * $i; - height: 48px * $i; - } - - #craft-button { - right: 46px * $i; - bottom: 24px * $i; - - width: 96px * $i; - height: 32px * $i; - - font-size: 12px * $i; - - background: url('/img/interface/crafting.png') 0 -314px * $i; - background-size: calc(width('crafting.png') * $i); - - &:hover { - height: 28px * $i; - background-position-y: -382px * $i; - } - - &:active, &.active { - height: 26px * $i; - background-position-y: -352px * $i; - } - } - - #crafting-result-name { - right: 24px * $i; - bottom: 78px * $i; - width: 140px * $i; - font-size: 12px * $i; - } - - #crafting-result, - #crafting-level { - bottom: 96px * $i; - } - - #crafting-result { - right: 106px * $i; - } - - #crafting-level { - right: 42px * $i; - } - - .crafting-option { - width: 42px * $i; - height: 44px * $i; - margin-bottom: 8px * $i; - - background: url('/img/interface/crafting.png') -96px * $i -256px * $i; - background-size: calc(width('crafting.png') * $i); - - &:hover { - background-position-x: -140px * $i; - } - - &:active, &.active { - background-position-x: -184px * $i; - } - - &.disabled { - background-position-x: -96px * $i !important; - } - } - - .crafting-option-icon { - width: 32px * $i; - height: 32px * $i; - margin: 5px * $i; - } - - .crafting-option-count { - font-size: 14px * $i; - } - - .crafting-buttons { - bottom: 28px * $i; - left: 32px * $i; - gap: 12px * $i; - } - - .craft-slot { - width: 42px * $i; - height: 44px * $i; - background: url('/img/interface/crafting.png') -256px * $i -352px * $i; - background-size: calc(width('crafting.png') * $i); - - &:hover { - background-position-x: -300px * $i; - } - - &:active, &.active { - background-position-x: -344px * $i; - } - } - - .amount-button { - width: 32px * $i; - height: 32px * $i; - background: url('/img/interface/crafting.png'); - background-size: calc(width('crafting.png') * $i); - } - - .amount-one { - background-position: -2px -416px * $i; - } - - .amount-five { - background-position: -34px * $i -416px * $i; - } - - .amount-ten { - background-position: -68px * $i -416px * $i; - } - - .amount-one, - .amount-five, - .amount-ten { - &:hover, &.active { - background-position-y: -480px * $i; - } - - &:active { - background-position-y: -448px * $i; - } - } +#crafting-requirements { + top: 1.5em; + right: 1.5em; + + gap: 0.375em; + + width: 8.75em; + height: 3em; +} + +#craft-button { + right: 2.875em; + bottom: 1.5em; +} + +#crafting-result-name { + right: 1.375em; + bottom: 4.875em; + width: 9em; +} + +#crafting-result, +#crafting-level { + bottom: 7em; +} + +#crafting-result { + right: 6.625em; +} + +#crafting-level { + right: 2.625em; +} + +.crafting-option-icon { + width: 2em; + height: 2em; + margin: 0.3125em; +} + +.crafting-buttons { + bottom: 1.75em; + left: 2em; + gap: 0.75em; +} + +.crafting-option-count { + position: absolute; + top: 2.8em; + left: 1em; +} + +@include sprite.sheet($image: 'crafting', $width: 208, $height: 126, $selectors: #crafting); + +@include sprite.sheet( + $image: 'crafting', + $y: 157, + $width: 48, + $height: 16, + $rows: false, + $hover: 2, + $active: 1, + $selectors: #craft-button +) { + box-sizing: border-box; + padding-bottom: 0.25em; + + &:hover { + padding-top: 0.5em; } -} \ No newline at end of file + + &:active { + padding-top: 0.75em; + } +} + +@include sprite.sheet( + $image: 'crafting', + $x: 48, + $y: 128, + $width: 21, + $height: 22, + $gap: 1, + $hover: 2, + $active: 1, + $selectors: '.crafting-option' +); + +@include sprite.sheet( + $image: 'crafting', + $x: 128, + $y: 176, + $width: 21, + $height: 22, + $selectors: '.craft-slot' +); + +@include sprite.sheet( + $image: 'crafting', + $y: 208, + $width: 16, + $height: 16, + $rows: false, + $hover: 2, + $active: 1, + $selectors: ( + '.amount-one', + '.amount-five', + '.amount-ten' + ) +); diff --git a/packages/client/scss/game/impl/_dialog.scss b/packages/client/scss/game/impl/_dialog.scss index 52bb136a9a..a6ca781e97 100644 --- a/packages/client/scss/game/impl/_dialog.scss +++ b/packages/client/scss/game/impl/_dialog.scss @@ -1,81 +1,43 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; dialog { - cursor: url('/img/hand.png'), auto; - - position: absolute; inset: 0; - - display: none; - - margin: auto; - padding: 0; - - font-family: AdvoCut, sans-serif; - font-size: 16px; color: #e3e3e3; - background-color: rgb(45 45 45 / 80%); - border: none; -} - -.dialog-count { - display: block; + input { + display: block; - margin: 0 auto; + width: 7.5em; + margin: 0.25em; - font-family: AdvoCut, sans-serif; - color: white; + font-size: 0.75em; + color: white; - background-color: rgb(0 0 0 / 50%); + background-color: rgb(0 0 0 / 50%); + } } .dialog-title { + font-size: 0.75em; text-align: center; } -.dialog-accept, -.dialog-cancel { - cursor: pointer; - cursor: url('/img/hand.png'), auto; -} - .dialog-buttons { display: flex; - justify-content: space-between; - padding: 0 10px; + flex-direction: row; + justify-content: space-evenly; } -@each $size, $i in media.$b-sizes { - @media ($size) { - .dialog { - width: 53px * $i; - height: 40px * $i; - background: url('/img/interface/main.png') -144px * $i -496px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - .dialog-count { - width: 40px * $i; - margin-bottom: 1px * $i; - } - - .dialog-title { - margin-top: 3px * $i; - margin-bottom: 3px * $i; - font-size: 6px * $i; - } - } - - @media (--sm) { - .dialog-title { - font-size: 10px; - } - - .dialog-buttons { - transform: scale(2); - margin-top: 8px; - padding: 0 30px; - } - } -} +@include sprite.sheet( + $image: 'characterdialogsheet', + $y: 308, + $width: 21, + $height: 14, + $hover: 2, + $active: 1, + $selectors: ( + '.confirm', + '.cancel' + ) +); diff --git a/packages/client/scss/game/impl/_enchant.scss b/packages/client/scss/game/impl/_enchant.scss index 34539d4abb..40e34d3d95 100644 --- a/packages/client/scss/game/impl/_enchant.scss +++ b/packages/client/scss/game/impl/_enchant.scss @@ -1,100 +1,56 @@ -@use '../../abstracts/media'; - #enchant { - cursor: url('/img/hand.png'), auto; - - position: absolute; - inset: 0; - display: none; - - margin: auto; -} - -#enchant-inventory-slots { - position: absolute; - - overflow: hidden; - overflow-y: scroll; - - margin: 0; - padding: 0; - - list-style-type: none; - - li { - float: left; + flex-direction: column; + width: 16em; + height: 16em; + + &-content { + display: flex; + gap: 1em; + height: 100%; } -} - -#enchant-selected-item, -#enchant-shards { - position: absolute; - top: 80%; - background-size: cover; -} - -#enchant-selected-item { - left: 11%; -} -#enchant-shards { - left: 34%; -} - -@each $size, $i in media.$sizes { - @media ($size) { - #enchant { - width: 129px * $i; - height: 155px * $i; - background: url('/img/interface/containers.png') 0 0; - background-size: calc(width('containers.png') * $i); - } + &-inventory { + flex: 1; - #enchant-selected-item, - #enchant-shards { - width: 16px * $i; - height: 15px * $i; - } + &-slots { + overflow: auto; + display: grid; + grid-template-columns: repeat(5, 1fr); + gap: 0.25em; + justify-items: center; - #enchant-container { - background-image: url('/img/interface/containers.png'); - background-size: calc(width('containers.png') * $i); + height: 100%; + padding-right: 0.25em; } + } - .inventory-slots { - width: 96px * $i; - height: 80px * $i; - } + &-item { + display: flex; + flex-direction: row; + gap: 1em; + align-items: center; + justify-content: center; - #shards-count { - width: 16px * $i; + &-selected { + margin-bottom: 1em; } - #enchant-inventory-slots { - top: 16px * $i; - left: 20px * $i; - width: 96px * $i; - height: 92px * $i; + &-selected, + &-shards { + width: 2em; + height: 2em; - li { - .item-slot { - margin-bottom: 4px * $i; - } + div { + width: 100%; + height: 100%; + background-size: 100%; } } - } - - @media (--sm) { - #enchant-inventory-slots { - left: 11px; - width: 106px; - li { - .item-slot { - margin-bottom: 8px; - } - } + &-count { + height: 1em; + text-align: center; } } } diff --git a/packages/client/scss/game/impl/_equipments.scss b/packages/client/scss/game/impl/_equipments.scss index 6d29635efc..fd32a3a9c2 100644 --- a/packages/client/scss/game/impl/_equipments.scss +++ b/packages/client/scss/game/impl/_equipments.scss @@ -1,138 +1,149 @@ @use '../../abstracts/media'; -@each $size, $i in media.$sizes { - @media ($size) { - #equipment-slots { - top: 20px * $i; - left: 55px * $i; +#equipments { + align-items: center; +} - overflow: hidden; +#equipment-content { + display: flex; + flex-direction: row; + gap: 1em; + justify-content: space-between; +} - width: 116px * $i; - height: 120px * $i; +#equipments-player-visual { + display: grid; +} - background-position: -4px * $i -80px * $i; - } +#equipments-player-image { + z-index: 1; +} - #equipment-container { - position: absolute; - top: -70px * $i; - left: -2px * $i; - } +#equipments-player-image, +#equipment-slots { + display: flex; + grid-area: 1 / 1; + place-items: center; + align-items: center; + justify-content: center; +} - .player-image { - position: absolute; - top: 70px * $i; - left: 110px * $i; - } +#equipments-player-stats { + display: grid; + grid-template-columns: repeat(2, 1fr); + flex: 1; + gap: 0.5em; - #player-image-armour, - #player-image-weapon { - transform: scale($i); - scale: $i; + font-size: 1em; - overflow: auto; + .title { + padding-bottom: 0.5em; + text-decoration: underline; + } - width: 32px; - height: 32px; - } + p { + margin-bottom: 0.125em; + } +} - #player-image-navigator { - position: absolute; - top: 94px * $i; - left: 95px * $i; - } +#equipments-player-image-canvas { + width: 8em; + height: 4em; +} - .title { - font-size: 10px * $i; - text-decoration: underline; - } +#equipments-player-image-navigator { + display: flex; + flex-direction: row; + font-size: 0.75em; +} - #attack-stats, - #defense-stats, - #bonuses { - font-size: 8px * $i; - border-color: black; - border-radius: 1px; - } +#equipment-slots { + position: relative; + width: 14em; + height: 14em; - #attack-stats, - #defense-stats { - top: 16px * $i; - width: 70px * $i; - height: 80px * $i; - } + .equipment-slot { + position: absolute; + z-index: 2; - #attack-stats { - left: 180px * $i; - } + width: 2em; + height: 2em; + padding: 0.25em; - #defense-stats { - left: 250px * $i; + &-image { + width: 100%; + height: 100%; + background-size: 100%; } + } - #bonuses { - top: 90px * $i; - left: 180px * $i; - } + .equipment-slot-helmet { + top: 0; + left: 6em; + } - .equip-weapon-slot { - top: 118px * $i; - left: 2px * $i; - } + .equipment-slot-pendant { + top: 1.25em; + left: 0.25em; + } - .equip-weapon-skin-slot { - top: 118px * $i; - left: 26px * $i; - } + .equipment-slot-arrows { + top: 1.25em; + left: 11.75em; + } - .equip-armour-slot { - top: 118px * $i; - left: 102px * $i; - } + .equipment-slot-arrows-count { + position: absolute; + top: -1em; + left: 0; - .equip-armour-skin-slot { - top: 118px * $i; - left: 79px * $i; - } + width: 2em; - .equip-pendant-slot { - top: 76px * $i; - left: 26px * $i; - } + text-align: center; + } - .equip-ring-slot { - top: 164px * $i; - left: 26px * $i; - } + .equipment-slot-chestplate { + top: 2.5em; + left: 2.75em; + } - .equip-boots-slot { - top: 164px * $i; - left: 78px * $i; - } - - .equip-arrows-slot { - top: 76px * $i; - left: 77px * $i; - } + .equipment-slot-weapon { + top: 2.5em; + left: 9.25em; } -} -@media (--sm) { - .player-image { - top: 60px; - left: 100px; + .equipment-slot-shield { + top: 6em; + left: 11em; } -} -#attack-stats, -#defense-stats, -#bonuses { - position: absolute; - font-family: AdvoCut, sans-serif; -} + .equipment-slot-armour-skin { + top: 9.5em; + left: 2.75em; + } + + .equipment-slot-weapon-skin { + top: 9.5em; + left: 9.25em; + } + + .equipment-slot-ring { + top: 6em; + left: 1em; + } -#close-equipments { - top: -2%; - left: 96%; + .equipment-slot-legplates { + top: 10.75em; + left: 0.25em; + } + + .equipment-slot-cape { + top: 10.75em; + left: 11.75em; + } + + .equipment-slot-boots { + top: 12em; + left: 6em; + } } diff --git a/packages/client/scss/game/impl/_friends.scss b/packages/client/scss/game/impl/_friends.scss index 38a09a2f64..e42232e094 100644 --- a/packages/client/scss/game/impl/_friends.scss +++ b/packages/client/scss/game/impl/_friends.scss @@ -1,216 +1,37 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; #friends-container { - position: absolute; - right: 0; - bottom: 45px; -} - -#friends-list { - position: absolute; - inset: 0; - - overflow: auto; - - margin: auto; - - font-family: AdvoCut, sans-serif; - - li { - p:first-child { - color: #fff; - } - - p:last-child { - float: right; - } - } -} - -#popup-container { - position: absolute; - inset: 0; - + right: 1em; display: none; + width: 20em; +} +#friends-page { + display: flex; + gap: 0.5em; width: 100%; height: 100%; - - border-radius: 16px; } -#add-popup { - position: absolute; - inset: 0; - margin: auto; -} - -#popup-friend-input { - position: absolute; - - font-family: AdvoCut, sans-serif; - font-size: 16px; - color: #fff; - - background-color: transparent; - border: none; -} - -.add, -.remove { - position: absolute; -} - -.confirm, -.cancel { - position: inherit; - bottom: 0; -} - -@each $size, $i in media.$sizes { - @media ($size) { - #friends-container { - display: none; - } - - #friends-page { - width: 100%; - height: 100%; - background: url('/img/interface/characterdialogsheet.png') -248px * $i -217px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #friends-list { - width: 106px * $i; - height: 172px * $i; - margin-top: 14px * $i; - padding-left: 2px * $i; - - li { - p:first-child { - padding-left: 6px * $i; - } - - p:last-child { - padding-right: 6px * $i; - } - } - } - - #friends-list > li:last-child { - margin-bottom: 1px * $i; - } - - #add-popup { - width: 96px * $i; - height: 38px * $i; - background: url('/img/interface/characterdialogsheet.png') -146px * $i -272px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #popup-friend-input { - top: 8px * $i; - left: 8px * $i; - width: 76px * $i; - } - - .add { - left: 24px * $i; - background-position-y: -274px * $i; - } - - .remove { - right: 24px * $i; - background-position-y: -291px * $i; - } - - .add, - .remove { - bottom: 8px * $i; - - width: 21px * $i; - height: 17px * $i; - - background-image: url('/img/interface/characterdialogsheet.png'); - background-size: calc(width('characterdialogsheet.png') * $i); - - &:hover { - background-position-x: -42px * $i; - } - - &:active { - background-position-x: -21px * $i; - } - } - - // Popup buttons - - .confirm { - bottom: 4px * $i; - left: 14px * $i; - background-position-y: -308px * $i; - } - - .cancel { - right: 14px * $i; - bottom: 4px * $i; - background-position-y: -322px * $i; - } - - .confirm, - .cancel { - width: 21px * $i; - height: 14px * $i; - background-image: url('/img/interface/characterdialogsheet.png'); - background-size: calc(width('characterdialogsheet.png') * $i); - - &:hover { - background-position-x: -42px * $i; - } - - &:active { - background-position-x: -21px * $i; - } - } - } - - @media (--lg) { - #friends-container { - right: 0; - right: 52px; - bottom: 68px; - } - } - - @media (--md) { - #friends-container { - right: 36px; - bottom: 48px; - } - - #popup-friend-input { - top: 12px; - } - - #friends-page > ul > li > p { - font-size: 20px; - } - } - - @media (--sm) { - #friends-container { - right: 84px; - bottom: 99px; - transform: scale(1.5); - } - - #popup-friend-input { - top: 6px; - font-size: 7px; - } +#friends-list { + overflow: auto; + flex: 1; - #friends-page > ul > li > p { - font-size: 10px; - } + p { + font-size: 1.2em; } } + +@include sprite.sheet( + $image: 'characterdialogsheet', + $y: 274, + $width: 21, + $height: 17, + $hover: 2, + $active: 1, + $selectors: ( + '.add', + '.remove' + ) +); diff --git a/packages/client/scss/game/impl/_guilds.scss b/packages/client/scss/game/impl/_guilds.scss index f5c2a31f9e..0930b26c5b 100644 --- a/packages/client/scss/game/impl/_guilds.scss +++ b/packages/client/scss/game/impl/_guilds.scss @@ -1,959 +1,482 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; #guilds { - cursor: url('/img/hand.png'), auto; - - position: absolute; - inset: 0; - display: none; - - margin: auto; -} - -#guilds-list-container, -#guilds-info-container { - position: absolute; - - p { - font-family: AdvoCut, sans-serif; - text-align: center; - } - - ul { - position: absolute; - overflow: auto; - height: 86%; - } + padding-left: 8.5em; } -#guilds-create-container, #guilds-info-container { display: none; + flex: 1; + flex-direction: column; } -#close-guilds { - position: absolute; - right: 1px; -} +#guilds-create { + overflow: hidden; + display: none; + flex: 1; + flex-direction: row; + gap: 0.5em; + align-items: center; -#guilds-info { - color: white; + @media (--portrait) { + flex-direction: column; + justify-content: center; + } } -#create-guild, -#guild-back, -#guild-create { +#create-guild { position: absolute; + top: 6em; + left: 2.25em; } -#banner-colours, -#banner-crests { - position: absolute; - overflow: auto; - display: grid; - grid-template-columns: repeat(3, 1fr); +#guilds-list-container { + display: flex; + flex: 1; + gap: 0.5em; + text-align: center; } -#guild-name-input, -#guild-chat-input { - position: absolute; - - font-family: AdvoCut, sans-serif; - color: #fff; - text-align: center; +#guilds-list { + flex: 1; - background-color: transparent; - border: none; + ul { + padding-right: 0.25em; + } } -#guild-chat-input { - display: none; +#banner-select { + display: flex; + flex-direction: column; + justify-content: space-evenly; + margin: 0 1.5em; } -#guild-chat-log { - position: absolute; - - overflow: auto; - display: none; - - font-family: AdvoCut, sans-serif; - color: #fff; +#banner-options { + display: flex; + flex: 1; + flex-direction: column; + gap: 0.25em; + justify-content: center; +} - p { - text-align: left; - text-shadow: 2px 2px 2px black; - } +#banner-colours { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 0.25em; + justify-items: center; } -#create-error { - position: absolute; +#guilds-create-error { + height: 1em; - font-family: AdvoCut, sans-serif; - font-size: 16px; + font-size: 0.675em; color: rgb(233 31 31); text-align: center; text-shadow: 1px 1px 1px rgb(226 101 101); } -#sidebar-list { - li { - div.members-icon, - div.chat-icon { - position: relative; - } - } -} - -#banner-colour-button, -#banner-outline-button { - position: absolute; +#guilds-back-button, +#guilds-create-button { + font-size: 0.75em; } -.colour-button-arrow-left, -.colour-button-arrow-right { +#banner-outline { position: absolute; + top: 0.875em; } -.guilds-decoration { - position: absolute; - inset: 0 0 auto 0; - margin: auto; - - p { - font-family: AdvoCut, sans-serif; - color: #fff; - text-align: center; - } -} - -.element-button { - font-family: AdvoCut, sans-serif; - color: white; - text-align: center; - vertical-align: middle; +#banner-colour-button, +#banner-outline-button { + position: relative; + box-sizing: border-box; + padding: 0.375em; } -.slot-element { +#guilds-info-header { display: flex; + flex-direction: row; + gap: 1.5em; align-items: center; +} - span.count { - flex: 1; - text-align: center; - } - - span.name { - flex: 3; - } - - span.server { - text-align: right; - } - - span.count, - span.name, - span.server { - font-family: AdvoCut, sans-serif; - color: white; - } - - span.red { - color: #f00; - } - - span.yellow { - color: #ff0; +.title-decoration { + @include sprite.sheet( + $image: 'guilds/frames', + $x: 286, + $y: 8, + $width: 78, + $height: 6, + $selectors: '&::after' + ) { + content: ''; } - span.green { - color: #0f0; - } + display: flex; + flex-direction: column; + align-items: center; } -.guild-banner-decoration, -.banner-crest { +@include sprite.sheet( + $image: 'guilds/elements', + $x: 105, + $y: 78, + $width: 9, + $height: 16, + $gap: 1, + $disabled: 1, + $rows: false, + $selectors: ( + '.colour-button-arrow-left', + '.colour-button-arrow-right' + ) +); + +.colour-button-arrow-left { position: absolute; + left: -1.5em; } -.banner, -.banner-outline, -.banner-outline-2, -.banner-outline-3, -.banner-outline-4, -.banner-outline-5 { +.colour-button-arrow-right { position: absolute; + right: -1.5em; } +@include sprite.sheet( + $image: 'guilds/elements', + $y: 124, + $width: 22, + $height: 22, + $hover: 1, + $active: 2, + $selectors: ( + '.button-banner-colour', + '.outline-button-1', + '.outline-button-2', + '.outline-button-3', + '.outline-button-4', + '.outline-button-5' + ) +); + +@include sprite.sheet( + $image: 'guilds/elements', + $x: 144, + $y: 160, + $width: 20, + $height: 20, + $gap: 1, + $rows: false, + $hover: 1, + $active: 2, + $selectors: '.banner-colour-button-outline' +); + +@include sprite.sheet( + $image: 'guilds/elements', + $x: 165, + $y: 160, + $width: 20, + $height: 20, + $gap: 1, + $rows: false, + $selectors: ( + '.banner-colour-button-teal', + '.banner-colour-button-green', + '.banner-colour-button-grey', + '.banner-colour-button-darkgrey', + '.banner-colour-button-red' + ) +); + +@include sprite.sheet( + $image: 'guilds/elements', + $x: 165, + $y: 181, + $width: 20, + $height: 20, + $gap: 1, + $rows: false, + $selectors: ( + '.banner-colour-button-goldenyellow', + '.banner-colour-button-fuchsia', + '.banner-colour-button-brown', + '.banner-colour-button-cyan' + ) +); + +@include sprite.sheet( + $image: 'guilds/elements', + $x: 45, + $y: 78, + $width: 28, + $height: 14, + $scale: 2.5, + $rows: false, + $hover: 1, + $active: 2, + $selectors: ( + '.element-button', + '.element-button-red' + ) +) { + line-height: 1.75em; + text-align: center; -@each $size, $i in media.$sizes { - @if $i == 3 { - $i: 5; - } @else if $i == 2 { - $i: 3; - } @else if $i == 1 { - $i: 2; + &:hover { + line-height: 2em; } - @media ($size) { - #guilds { - width: 240px * $i; - height: 116px * $i; - } - - #guilds-list-container, - #guilds-info-container { - top: 18px * $i; - left: 64px * $i; - - // top: 40px * $i; - // right: -144px * $i; - - width: 140px * $i; - height: 84px * $i; - - ul { - top: 6px * $i; - left: 6px * $i; - - li { - margin-bottom: 2px * $i; - } - } - } - - #guilds-create-container { - top: 0; - left: 64px * $i; - width: 140px * $i; - height: 102px * $i; - } - - #guilds-info { - margin-top: 50%; - } - - #create-guild { - top: 68px * $i; - left: -59px * $i; - } - - #banner-colours { - top: 20px * $i; - right: 6px * $i; - width: 74px * $i; - height: 64px * $i; - } - - #banner-crests { - top: 50px * $i; - right: 26px * $i; - width: 78px * $i; - height: 100px * $i; - } - - #guild-name-input { - top: 5px * $i; - right: 24px * $i; - } - - #guild-chat-input { - right: 18px * $i; - bottom: 4px * $i; - } - - #guild-chat-log { - top: 6px * $i; - left: 6px * $i; - width: 128px * $i; - height: 52px * $i; - } - - #guild-back { - right: 102px * $i; - bottom: 2px * $i; - } - - #guild-create { - right: 10px * $i; - bottom: 2px * $i; - } - - #create-error { - right: 38px * $i; - bottom: 6px * $i; - width: 64px * $i; - } - - #guild-leave { - margin-top: -18px * $i; - } - - #sidebar-list { - top: 16px * $i !important; - left: 139px * $i !important; - width: 44px * $i; - height: 57px * $i; - - li { - margin-bottom: 2px * $i; - } - } - - #banner-colour-button, - #banner-outline-button { - left: 18px * $i; - } - - #banner-colour-button { - top: 24px * $i; - } - - #banner-outline-button { - top: 52px * $i; - } - - .guild-chat { - background-position: -528px * $i 0 * $i !important; - } - - .guilds-decoration { - top: -12px * $i; - - width: 78px * $i; - height: 6px * $i; - - background: url('/img/interface/guilds/frames.png') -286px * $i -8px * $i no-repeat; - background-size: calc(width('guilds/frames.png') * $i); - - p { - margin-top: -6px * $i; - } - } - - .slot-element { - box-sizing: border-box; - width: 125px * $i; - height: 22px * $i; - padding-left: 4px * $i; - - background: url('/img/interface/guilds/elements.png') -128px * $i -103px * $i; - background-size: calc(width('guilds/elements.png') * $i); - - &:hover { - background-position-y: -126px * $i; - } - - &:active, - &.active { - background-position-y: -80px * $i; - } - - span.name { - margin-left: 6px * $i; - } - - span.server { - margin-right: 10px * $i; - } - } - - .crest-element { - width: 24px * $i; - height: 32px * $i; - margin-top: 1px * $i; - - background: url('/img/interface/guilds/elements.png') -125px * $i -37px * $i; - background-size: calc(width('guilds/elements.png') * $i); - - &:hover { - background-position-x: -152px * $i; - } - - &:active, - &.active { - background-position-x: -179px * $i; - } - } - - .members-icon { - width: 12px * $i; - height: 12px * $i; - background: url('/img/interface/guilds/elements.png') -272px * $i 0; - background-size: calc(width('guilds/elements.png') * $i); - } - - .chat-icon { - width: 15px * $i; - height: 12px * $i; - background: url('/img/interface/guilds/elements.png') -256px * $i 0; - background-size: calc(width('guilds/elements.png') * $i); - } - - .element-button, - .element-button-red { - width: 28px * $i; - height: 16px * $i; - - line-height: 14px * $i; - - background: url('/img/interface/guilds/elements.png') 0 -144px * $i; - background-size: calc(width('guilds/elements.png') * $i); - - &:hover { - line-height: 12px * $i; - background-position-y: -128px * $i; - } - - &:active, - &.active { - line-height: 16px * $i; - background-position-y: -158px * $i; - } - } - - .element-button-red { - background-position-x: -32px * $i; - } - - .sidebar-element { - width: 43px * $i; - height: 22px * $i; - background: url('/img/interface/guilds/elements.png') 0 -80px * $i; - background-size: calc(width('guilds/elements.png') * $i); - - &:hover { - background-position-y: -103px * $i; - - div.members-icon, - div.chat-icon { - left: 10px * $i; - } - } - - &:active, - &.active { - background-position-y: -57px * $i; - - div.members-icon, - div.chat-icon { - left: 6px * $i; - } - } - - div.members-icon, - div.chat-icon { - top: 5px * $i; - left: 6px * $i; - } - } - - .guild-name-input-image { - width: 76px * $i; - height: 13px * $i; - background: url('/img/interface/guilds/elements.png') -176px * $i -208px * $i; - background-size: calc(width('guilds/elements.png') * $i); - - &:active, &.active, &:focus { - background-position-y: -224px * $i; - } - } - - .guild-chat-input-image { - width: 96px * $i; - height: 19px * $i; - background: url('/img/interface/guilds/elements.png') -144px * $i 0; - background-size: calc(width('guilds/elements.png') * $i); - - &:active, &.active, &:focus { - background-position-y: -20px * $i; - } - } - - .guild-banner-decoration { - top: 16px * $i; - - width: 9px * $i; - height: 12px * $i; - - background: url('/img/interface/guilds/elements.png') no-repeat; - background-size: calc(width('guilds/elements.png') * $i); - } - - .guild-banner-select { - left: 84px * $i; - background-position-x: -72px * $i; - } - - .guild-outline-select { - left: 104px * $i; - background-position-x: -94px * $i; - } - - .slot-image { - width: 14px * $i; - height: 14px * $i; - margin-top: 3px * $i; - - background: url('/img/interface/guilds/elements.png') no-repeat; - background-size: calc(width('guilds/elements.png') * $i); - } - - .slot-image-fledgling { - background-position: -256px * $i -48px * $i; - } - - .slot-image-emergent { - background-position: -240px * $i -48px * $i; - } - - .slot-image-established { - background-position: -224px * $i -48px * $i; - } - - .slot-image-adept { - background-position: -208px * $i -48px * $i; - } - - .slot-image-veteran { - background-position: -192px * $i -48px * $i; - } - - .slot-image-elite { - background-position: -176px * $i -48px * $i; - } - - .slot-image-master { - background-position: -160px * $i -48px * $i; - } - - .slot-image-landlord { - background-position: -144px * $i -48px * $i; - } - - .banner, - .banner-outline, - .banner-outline-2, - .banner-outline-3, - .banner-outline-4, - .banner-outline-5 { - width: 50px * $i; - height: 128px * $i; - } - - .banner { - top: -6px * $i; - left: 12px * $i; - background: url('/img/interface/guilds/banners.png') no-repeat; - background-size: calc(width('guilds/banners.png') * $i); - } - - .banner-outline, - .banner-outline-2, - .banner-outline-3, - .banner-outline-4, - .banner-outline-5 { - top: 6px * $i; - } - - - .banner-outline { - background: url('/img/interface/guilds/outline1.png') 0 0 no-repeat; - background-size: calc(width('guilds/outline1.png') * $i); - } - - .banner-outline-2 { - background: url('/img/interface/guilds/outline2.png') 0 0 no-repeat; - background-size: calc(width('guilds/outline2.png') * $i); - } - - .banner-outline-3 { - background: url('/img/interface/guilds/outline3.png') 0 0 no-repeat; - background-size: calc(width('guilds/outline3.png') * $i); - } - - .banner-outline-4 { - background: url('/img/interface/guilds/outline4.png') 0 0 no-repeat; - background-size: calc(width('guilds/outline4.png') * $i); - } - - .banner-outline-5 { - background: url('/img/interface/guilds/outline5.png') 0 0 no-repeat; - background-size: calc(width('guilds/outline5.png') * $i); - } - - .banner-crest, - .banner-crest-icon { - background: url('/img/interface/guilds/decorations.png') no-repeat; - background-size: calc(width('guilds/decorations.png') * $i); - } - - .banner-crest { - top: 72px * $i; - left: 15px * $i; - - width: 52px * $i; - height: 52px * $i; - - background-position: -1px * $i -1px * $i; - } - - .banner-crest-icon { - width: 16px * $i; - height: 15px * $i; - margin-top: 10px * $i; - margin-left: 4px * $i; - - background-position-y: -240px * $i; - } - - .banner-colour-button { - width: 20px * $i; - height: 20px * $i; - background: url('/img/interface/guilds/elements.png') no-repeat; - background-size: calc(width('guilds/elements.png') * $i); - } - - .banner-colour-button-outline { - width: 20px * $i; - height: 20px * $i; - background: url('/img/interface/guilds/elements.png') -144px * $i -160px * $i; - background-size: calc(width('guilds/elements.png') * $i); - - &:hover { - background-position-y: -181px * $i; - } - - &:active, &.active { - background-position-y: -202px * $i; - } - } - - .banner-colour-button-teal { - background-position: -165px * $i -160px * $i - } - - .banner-colour-button-green { - background-position: -186px * $i -160px * $i - } - - .banner-colour-button-grey { - background-position: -207px * $i -160px * $i - } - - .banner-colour-button-darkgrey { - background-position: -228px * $i -160px * $i - } - - .banner-colour-button-red { - background-position: -249px * $i -160px * $i - } - - .banner-colour-button-goldenyellow { - background-position: -165px * $i -181px * $i - } - - .banner-colour-button-fuchsia { - background-position: -186px * $i -181px * $i - } - - .banner-colour-button-brown { - background-position: -207px * $i -181px * $i - } - - .banner-colour-button-cyan { - background-position: -228px * $i -181px * $i - } - - .banner-grey { - background-position-x: 0; - } - - .banner-green { - background-position-x: -50px * $i; - } - - .banner-fuchsia { - background-position-x: -100px * $i; - } - - .banner-red { - background-position-x: -150px * $i; - } - - .banner-brown { - background-position-x: -200px * $i; - } - - .banner-cyan { - background-position-x: -250px * $i; - } - - .banner-darkgrey { - background-position-x: -300px * $i; - } - - .banner-teal { - background-position-x: -350px * $i; - } - - .banner-goldenyellow { - background-position-x: -400px * $i; - } - - .banner-outline-goldenyellow { - background-position-x: 0; - } - - .banner-outline-fuchsia { - background-position-x: -50px * $i; - } - - .banner-outline-red { - background-position-x: -100px * $i; - } - - .banner-outline-brown { - background-position-x: -150px * $i; - } - - .banner-outline-cyan { - background-position-x: -200px * $i; - } - - .banner-outline-darkgrey { - background-position-x: -250px * $i; - } - - .banner-outline-teal { - background-position-x: -300px * $i; - } - - .banner-outline-green { - background-position-x: -350px * $i; - } - - .banner-outline-grey { - background-position-x: -400px * $i; - } - - .banner-crest-star { - background-position-x: -55px * $i; - } - - .banner-crest-hawk { - background-position-x: -109px * $i; - } - - .banner-crest-phoenix { - background-position-x: -163px * $i; - } - - .banner-crest-icon-none { - background-position-x: 0; - } - - .banner-crest-icon-star { - background-position-x: -16px * $i; - } - - .banner-crest-icon-hawk { - background-position-x: -32px * $i; - } - - .banner-crest-icon-phoenix { - background-position-x: -48px * $i; - } - - .colour-select-button { - width: 22px * $i; - height: 22px * $i; - background: url('/img/interface/guilds/elements.png') no-repeat; - background-size: calc(width('guilds/elements.png') * $i); - } - - .colour-button-arrow-right { - top: 3px * $i; - left: 24px * $i; - - width: 9px * $i; - height: 16px * $i; - - background: url('/img/interface/guilds/elements.png') -94px * $i -128px * $i; - background-size: calc(width('guilds/elements.png') * $i); - - &.disabled { - background-position-x: -84px * $i; - } - } - - .colour-button-arrow-left { - top: 3px * $i; - left: -11px * $i; - - width: 9px * $i; - height: 16px * $i; - - background: url('/img/interface/guilds/elements.png') -64px * $i -128px * $i; - background-size: calc(width('guilds/elements.png') * $i); - - &.disabled { - background-position-x: -74px * $i; - } - } - - .button-banner-colour { - background-position: -115px * $i -176px * $i; - - &:hover { - background-position: -69px * $i -176px * $i; - } - - &:active, &.active { - background-position: -92px * $i -176px * $i; - } - } - - .outline-button-1 { - background-position: -46px * $i -199px * $i; - - &:hover { - background-position: 0 -199px * $i; - } - - &:active, &.active { - background-position: -23px * $i -199px * $i; - } - } - - .outline-button-2 { - background-position: -46px * $i -176px * $i; - - &:hover { - background-position: 0 -176px * $i; - } - - &:active, &.active { - background-position: -23px * $i -176px * $i; - } - } - - .outline-button-3 { - background-position: -46px * $i -222px * $i; - - &:hover { - background-position: 0 -222px * $i; - } - - &:active, &.active { - background-position: -23px * $i -222px * $i; - } - } - - .outline-button-4 { - background-position: -115px * $i -199px * $i; - - &:hover { - background-position: -69px * $i -199px * $i; - } + &:active, + &.active { + line-height: 2.25em; + } +} - &:active, &.active { - background-position: -92px * $i -199px * $i; - } - } +@include sprite.sheet( + $image: 'guilds/banners', + $width: 50, + $scale: 2.25, + $rows: false, + $selectors: ( + '.banner-grey', + '.banner-green', + '.banner-fuchsia', + '.banner-red', + '.banner-brown', + '.banner-cyan', + '.banner-darkgrey', + '.banner-teal', + '.banner-goldenyellow' + ) +) { + position: absolute; + top: -1.375em; + left: 1em; + box-sizing: border-box; +} - .outline-button-5 { - background-position: -115px * $i -222px * $i; +@include sprite.sheet( + $image: 'guilds/outline1', + $width: 50, + $scale: 2.25, + $rows: false, + $selectors: ( + '.banner-outline-1.banner-outline-goldenyellow', + '.banner-outline-1.banner-outline-fuchsia', + '.banner-outline-1.banner-outline-red', + '.banner-outline-1.banner-outline-brown', + '.banner-outline-1.banner-outline-cyan', + '.banner-outline-1.banner-outline-darkgrey', + '.banner-outline-1.banner-outline-teal', + '.banner-outline-1.banner-outline-green', + '.banner-outline-1.banner-outline-grey' + ) +); + +@include sprite.sheet( + $image: 'guilds/outline2', + $width: 50, + $scale: 2.25, + $rows: false, + $selectors: ( + '.banner-outline-2.banner-outline-goldenyellow', + '.banner-outline-2.banner-outline-fuchsia', + '.banner-outline-2.banner-outline-red', + '.banner-outline-2.banner-outline-brown', + '.banner-outline-2.banner-outline-cyan', + '.banner-outline-2.banner-outline-darkgrey', + '.banner-outline-2.banner-outline-teal', + '.banner-outline-2.banner-outline-green', + '.banner-outline-2.banner-outline-grey' + ) +); + +@include sprite.sheet( + $image: 'guilds/outline3', + $width: 50, + $scale: 2.25, + $rows: false, + $selectors: ( + '.banner-outline-3.banner-outline-goldenyellow', + '.banner-outline-3.banner-outline-fuchsia', + '.banner-outline-3.banner-outline-red', + '.banner-outline-3.banner-outline-brown', + '.banner-outline-3.banner-outline-cyan', + '.banner-outline-3.banner-outline-darkgrey', + '.banner-outline-3.banner-outline-teal', + '.banner-outline-3.banner-outline-green', + '.banner-outline-3.banner-outline-grey' + ) +); + +@include sprite.sheet( + $image: 'guilds/outline4', + $width: 50, + $scale: 2.25, + $rows: false, + $selectors: ( + '.banner-outline-4.banner-outline-goldenyellow', + '.banner-outline-4.banner-outline-fuchsia', + '.banner-outline-4.banner-outline-red', + '.banner-outline-4.banner-outline-brown', + '.banner-outline-4.banner-outline-cyan', + '.banner-outline-4.banner-outline-darkgrey', + '.banner-outline-4.banner-outline-teal', + '.banner-outline-4.banner-outline-green', + '.banner-outline-4.banner-outline-grey' + ) +); + +@include sprite.sheet( + $image: 'guilds/outline5', + $width: 50, + $scale: 2.25, + $rows: false, + $selectors: ( + '.banner-outline-5.banner-outline-goldenyellow', + '.banner-outline-5.banner-outline-fuchsia', + '.banner-outline-5.banner-outline-red', + '.banner-outline-5.banner-outline-brown', + '.banner-outline-5.banner-outline-cyan', + '.banner-outline-5.banner-outline-darkgrey', + '.banner-outline-5.banner-outline-teal', + '.banner-outline-5.banner-outline-green', + '.banner-outline-5.banner-outline-grey' + ) +); + +#member-list-container { + flex: 1; - &:hover { - background-position: -69px * $i -222px * $i; - } + ul { + overflow: hidden auto; + display: flex; + flex-direction: column; + gap: 0.5em; - &:active, &.active { - background-position: -92px * $i -222px * $i; - } + li { + flex-shrink: 0; } } } -@media (--lg) { - #guild-name-input, - #guild-chat-input { - font-size: 20px; - } +#guild-member-selected { + padding: 0.5em; + text-align: center; +} - .guilds-decoration { - p { - margin-top: -24px; - font-size: 28px; - } - } +#guild-member-demote { + margin-right: 1em; +} - .slot-element { - span.name, - span.count, - span.server { - font-size: 22px; - } - } +@include sprite.sheet( + $image: 'guilds/elements', + $x: 242, + $width: 12, + $height: 12, + $gap: 2, + $rows: false, + $selectors: ( + '.members-icon', + '.chat-icon' + ) +); + +#guilds-chat { + display: none; + flex: 1; + flex-direction: column; +} - .element-button { - font-size: 18px; - } +#guilds-chat-log { + overflow: auto; + flex: 1; } -@media (--md) { - #guild-name-input, - #guild-chat-input { - font-size: 14px; - } +@include sprite.sheet( + $image: 'guilds/elements', + $x: 128, + $y: 80, + $width: 125, + $height: 22, + $gap: 1, + $scale: 2.5, + $hover: 1, + $active: 2, + $rows: false, + $selectors: '.slot-element' +) { + display: flex; + flex-direction: row; + gap: 1.5em; + align-items: center; - #guild-chat-log { - font-size: 14px; - } + box-sizing: border-box; + padding-right: 2em; + padding-left: 0.875em; - .guilds-decoration { - p { - margin-top: -22px; - font-size: 20px; - } + .name { + flex: 1; } +} - .slot-element { - span.name, - span.count, - span.server { - font-size: 14px; - } - } +.slot-image { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + + width: 2em; + height: 2em; } -@media (--sm) { - #guild-name-input, - #guild-chat-input { - font-size: 8px; - } +@include sprite.sheet( + $image: 'guilds/elements', + $x: 144, + $y: 48, + $width: 14, + $height: 12, + $rows: false, + $gap: 2, + $selectors: ( + '.slot-image-landlord', + '.slot-image-master', + '.slot-image-elite', + '.slot-image-veteran', + '.slot-image-adept', + '.slot-image-established', + '.slot-image-emergent', + '.slot-image-fledgling' + ) +); - #guild-chat-log { - font-size: 10px; - } +#sidebar-list { + position: absolute; + top: 6em; + right: -4.25em; +} - .guilds-decoration { - p { - margin-top: -12px; - font-size: 10px; - } - } +@include sprite.sheet( + $image: 'guilds/elements', + $width: 43, + $height: 22, + $y: 57, + $hover: 1, + $active: 2, + $rows: false, + $selectors: '.sidebar-element' +) { + display: flex; + flex-direction: row; + align-items: center; - .slot-element { - span.name, - span.count, - span.server { - font-size: 8px; - } - } + box-sizing: border-box; + padding-left: 1em; - .element-button { - font-size: 7px; + &:hover:not(:active, .active) { + padding-left: 2em; } } diff --git a/packages/client/scss/game/impl/_inappstore.scss b/packages/client/scss/game/impl/_inappstore.scss new file mode 100644 index 0000000000..aab9e4e37b --- /dev/null +++ b/packages/client/scss/game/impl/_inappstore.scss @@ -0,0 +1,6 @@ +#in-app-store { + display: none; + width: 28em; + height: 18em; + margin: auto; +} diff --git a/packages/client/scss/game/impl/_interact.scss b/packages/client/scss/game/impl/_interact.scss index fdaf3d930c..ca9a75c156 100644 --- a/packages/client/scss/game/impl/_interact.scss +++ b/packages/client/scss/game/impl/_interact.scss @@ -1,34 +1,11 @@ @use '../../abstracts/media'; #interact { - cursor: url('/img/hand.png'), auto; position: absolute; - display: none; - - ul { - position: absolute; - display: flex; - justify-content: center; - width: 100%; - } -} -@each $size, $i in media.$b-sizes { - @media ($size) { - #interact { - width: 64px * $i; - height: 30px * $i; - background: url('/img/interface/main.png') -144px * $i -464px * $i no-repeat; - background-size: calc(width('main.png') * $i); - - ul { - top: 6px * $i; - left: 1px * $i; + display: none; + flex-direction: row; + justify-content: space-evenly; - li { - margin-right: 3px * $i; - } - } - } - } + width: 8em; } diff --git a/packages/client/scss/game/impl/_inventory.scss b/packages/client/scss/game/impl/_inventory.scss index 25feecfba7..f43eb8245f 100644 --- a/packages/client/scss/game/impl/_inventory.scss +++ b/packages/client/scss/game/impl/_inventory.scss @@ -1,92 +1,64 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; #inventory { - cursor: url('/img/hand.png'), auto; - position: absolute; - right: 10px; - bottom: 80px; + right: 1em; + bottom: 4em; display: none; - font-family: AdvoCut, sans-serif; + width: 12em; + height: 15em; +} + +#inventory-container { + width: 100%; + height: 100%; ul { - overflow: hidden; - margin: 0; - padding: 0; - list-style-type: none; + display: flex; + flex-flow: row wrap; + justify-content: space-between; + + width: 100%; + height: 100%; - li { - float: left; - } + list-style-type: none; } } -#inventory-container { - position: absolute; +.item-slot { + box-sizing: border-box; + padding: 0.125em; } .item-image { pointer-events: none; + + width: 100%; + height: 100%; + background-size: cover; // Safari filters so the images aren't blurry. filter: opacity(100%); } -// 144 x 108 - -@each $size, $i in media.$b-sizes { - @media ($size) { - #inventory { - width: 96px * $i; - height: 132px * $i; - background: url('/img/interface/main.png') -288px * $i -352px * $i no-repeat; - background-size: calc(width('main.png') * $i); - } - - #inventory-container { - top: 3px * $i; - right: 3px * $i; - width: 90px * $i; - height: 102px * $i; - } - - .item-slot, - .item-image { - width: 16px * $i; - height: 16px * $i; - } - - .item-slot { - margin-top: 2px * $i; - margin-bottom: 7px * $i; - margin-left: 1.5px * $i; - - background: url('/img/interface/main.png') -400px * $i -352px * $i no-repeat; - background-size: calc(width('main.png') * $i); - - &:hover { - background-position-x: -416px * $i; - } - - &:active { - background-position-x: -432px * $i; - } - } - - .item-count { - width: 16px * $i; - height: 7px * $i; - font-size: 6px * $i; - text-align: center; - } - } +.item-count { + height: 1em; + font-size: 0.8em; + text-align: center; } -@media (--sm) { - #inventory { - bottom: 56px; - } -} \ No newline at end of file +@include sprite.sheet( + $image: 'main', + $y: 42, + $width: 16, + $height: 16, + $hover: 1, + $active: 2, + $selectors: ( + '.item-slot' + ) +); diff --git a/packages/client/scss/game/impl/_joystick.scss b/packages/client/scss/game/impl/_joystick.scss new file mode 100644 index 0000000000..02e8ec4c1a --- /dev/null +++ b/packages/client/scss/game/impl/_joystick.scss @@ -0,0 +1,27 @@ +@use '../../abstracts/sprite'; + +#joystick { + @include sprite.sheet($image: 'main', $y: 133, $width: 42, $height: 42, $scale: 3); + + position: absolute; + bottom: 2.5em; + left: 2.5em; + + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + + opacity: 0.75; + + &[hidden] { + display: none; + } +} + +#joystick-handle { + @include sprite.sheet($image: 'main', $y: 175, $width: 22, $height: 22, $scale: 3, $active: 1); + + pointer-events: none; + user-select: none; +} diff --git a/packages/client/scss/game/impl/_leaderboards.scss b/packages/client/scss/game/impl/_leaderboards.scss index 610e005644..310378cad8 100644 --- a/packages/client/scss/game/impl/_leaderboards.scss +++ b/packages/client/scss/game/impl/_leaderboards.scss @@ -1,73 +1,28 @@ -@use '../../abstracts/media'; +#leaderboards { + display: none; +} -#leaderboards-search-input, #leaderboards-search, #leaderboards-results { - position: absolute; - overflow: auto; - font-family: AdvoCut, sans-serif; -} + display: flex; + flex: 1; + flex-direction: column; + gap: 0.5em; -#leaderboards-search-input { - position: absolute; + height: 100%; - font-family: AdvoCut, sans-serif; - font-size: 24px; - color: #fff; - text-align: center; - - background-color: transparent; - border: none; -} + ul { + overflow: hidden auto; + display: flex; + flex: 1; + flex-direction: column; + gap: 0.25em; -@each $size, $i in media.$sizes { - @media ($size) { - #leaderboards { - background: url('/img/interface/leaderboards.png') 0 0 no-repeat; - background-size: calc(width('leaderboards.png') * $i); - } - - #leaderboards-search-input { - top: 20px * $i; - left: 32px * $i; - width: 94px * $i; - height: 12px * $i; - } + height: 100%; + padding-right: 0.25em; - #leaderboards-search { - top: 42px * $i; - left: 22px * $i; - width: 104px * $i; - height: 95px * $i; - } - - #leaderboards-results { - top: 20px * $i; - left: 152px * $i; - width: 170px * $i; - height: 116px * $i; - - li { - p:first-child { - padding-left: 6px * $i; - } - - p:last-child { - padding-right: 6px * $i; - } - } + li { + flex-shrink: 0; } } } - -@media (--sm) { - #leaderboards-search-input { - font-size: 8px; - } - - #leaderboards-search { - p { - font-size: 10px; - } - } -} \ No newline at end of file diff --git a/packages/client/scss/game/impl/_lootbag.scss b/packages/client/scss/game/impl/_lootbag.scss new file mode 100644 index 0000000000..d2ecc25b73 --- /dev/null +++ b/packages/client/scss/game/impl/_lootbag.scss @@ -0,0 +1,30 @@ +@use '../../abstracts/media'; + +#lootbag { + display: none; +} + +#lootbag-container { + display: flex; + flex-direction: row; + gap: 0.5em; + height: 100%; +} + +#lootbag-items, +#lootbag-inventory { + flex: 1; + + ul { + overflow: hidden auto; + display: flex; + flex-flow: row wrap; + gap: 0.25em; + justify-content: space-between; + + height: 100%; + padding-right: 0.25em; + + list-style-type: none; + } +} diff --git a/packages/client/scss/game/impl/_map.scss b/packages/client/scss/game/impl/_map.scss index f5f8b78498..106dd442f0 100644 --- a/packages/client/scss/game/impl/_map.scss +++ b/packages/client/scss/game/impl/_map.scss @@ -1,8 +1,7 @@ -@use '../../abstracts/media'; +@use '../../abstracts/sprite'; -#map-frame { +@include sprite.sheet($image: 'mapframe', $scale: 1.5, $selectors: #map-frame) { pointer-events: auto; - cursor: url('/img/hand.png'), auto; position: absolute; z-index: 100; @@ -20,103 +19,65 @@ background-position-y: 0; } -#close-map-frame { - top: 0; - left: 95%; -} - .warp-button { position: absolute; } -@each $size, $i in media.$sizes { - @media ($size) { - #warp0 { - top: 40px * $i; - left: 120px * $i; - background: url('/img/interface/mapicons.png') 0 0; - background-size: calc(width('mapicons.png') * $i); - } - - #warp1 { - top: 55px * $i; - left: 25px * $i; - background: url('/img/interface/mapicons.png') -75px * $i 0; - background-size: calc(width('mapicons.png') * $i); - } - - #warp2 { - top: 70px * $i; - left: 175px * $i; - background: url('/img/interface/mapicons.png') -60px * $i 0; - background-size: calc(width('mapicons.png') * $i); - } - - #warp3 { - top: 120px * $i; - left: 135px * $i; - background: url('/img/interface/mapicons.png') -45px * $i 0; - background-size: calc(width('mapicons.png') * $i); - } - - #warp4 { - top: 120px * $i; - left: 75px * $i; - background: url('/img/interface/mapicons.png') -30px * $i 0; - background-size: calc(width('mapicons.png') * $i); - } - - #warp5 { - top: 140px * $i; - left: 20px * $i; - background: url('/img/interface/mapicons.png') -90px * $i 0; - background-size: calc(width('mapicons.png') * $i); - } - - #warp6 { - top: 80px * $i; - left: 90px * $i; - background: url('/img/interface/mapicons.png') 77px * $i 0; - background-size: calc(width('mapicons.png') * $i); - } - +@include sprite.sheet( + $image: 'mapicons', + $width: 16, + $height: 16, + $hover: 1, + $active: 2, + $rows: false, + $selectors: ( #warp0, #warp1, #warp2, #warp3, #warp4, #warp5, - #warp6 { - &:hover { - background-position-y: -20px * $i; - } - - &:active { - background-position-y: -40px * $i; - } - } - - #map-frame { - width: 270px * $i; - height: 180px * $i; - background-image: url('/img/interface/mapframe.png'); - background-size: calc(width('mapframe.png') * $i); - } - - .map-button { - width: 15px * $i; - height: 16px * $i; - } - } + #warp6 + ) +); + +#warp0 { + top: 3.75em; + left: 11.25em; } -@media (--sm) { - #map-frame { - transform: scale(1.6); - } +#warp1 { + top: 5.15625em; + left: 2.34375em; +} + +#warp2 { + top: 6.5625em; + left: 16.40625em; +} - #close-map-frame { - top: -6px; - left: 90%; +#warp3 { + top: 11.25em; + left: 12.65625em; +} + +#warp4 { + top: 11.25em; + left: 7.03125em; +} + +#warp5 { + top: 13.125em; + left: 1.875em; +} + +#warp6 { + top: 7.5em; + left: 8.4375em; +} + +@media (--portrait) { + #map-frame { + font-size: 0.875em; } } diff --git a/packages/client/scss/game/impl/_notifications.scss b/packages/client/scss/game/impl/_notifications.scss index 9dd560956f..9e99bfe915 100644 --- a/packages/client/scss/game/impl/_notifications.scss +++ b/packages/client/scss/game/impl/_notifications.scss @@ -3,11 +3,8 @@ #notify, #confirm { pointer-events: auto; - position: absolute; - top: 45%; left: 35%; - display: none; } @@ -31,12 +28,9 @@ #message { pointer-events: none; - position: absolute; top: 48%; left: 42%; - - font-family: AdvoCut, sans-serif; } .fade { @@ -56,144 +50,39 @@ pointer-events: none; position: absolute; - top: 100%; + bottom: -6em; left: 50%; + display: flex; + flex-direction: column; + gap: 0.2em; + + width: 14em; + height: 6em; + margin-left: -7em; + padding: 1em; + padding-top: 1.5em; + opacity: 0.8; + border-image-width: 1em 1em 0 1em; - transition: 0.7s top ease; + transition: 0.7s bottom ease; } #notification-text-title { position: relative; - top: 25%; - font-family: AdvoCut, sans-serif; - font-size: 20px; + font-family: Fibberish; color: #45ebfc; text-align: center; - text-shadow: 2px 2px #0e0a00; + text-shadow: 0.125em 0.125em #0e0a00; } #notification-text-description { position: relative; - top: 25%; - - margin-top: 10px; - font-family: AdvoCut, sans-serif; - font-size: 14px; - color: white; + font-size: 1em; + color: #eee; text-align: center; - text-shadow: 2px 2px #0e0a00; -} - -@each $size, $i in media.$b-sizes { - @media ($size) { - #notification { - width: 216px * $i; - height: 34px * $i; - margin-left: -108px * $i; - - background: url('/img/interface/spritesheet.png') no-repeat; - background-size: calc(width('spritesheet.png') * $i); - } - - #notify, - #confirm { - background-image: url('/img/interface/containers.png'); - background-size: calc(width('containers.png') * $i); - } - - #question, - #exclamation { - position: relative; - display: block; - width: 15px * $i; - height: 16px * $i; - } - - #question { - background: url('/img/interface/containers.png') -349px * $i -47px * $i; - background-size: calc(width('containers.png') * $i); - } - - #exclamation { - background: url('/img/interface/containers.png') -334px * $i -47px * $i; - background-size: calc(width('containers.png') * $i); - } - - #message { - width: 120px * $i; - height: 23px * $i; - } - - #cancel { - background: url('/img/interface/containers.png'); - background-size: calc(width('containers.png') * $i); - } - } -} - -@media (--lg) { - #notification { - margin-left: -344px; - } -} - -@media (--md) { - #notify, - #confirm { - width: 333px; - height: 94px; - background-position: -601px 0; - } - - #notification-text-title { - font-size: 18px; - } - - #notification-text-description { - font-size: 12px; - } - - #cancel { - width: 40px; - height: 14px; - background-position: -601px -108px; - - &:hover, - &:focus { - background-position-y: -94px; - } - } - - #message { - width: 240px; - height: 46px; - } -} - -@media (--sm) { - #notify, - #confirm { - width: 166px; - height: 47px; - background: url('/img/interface/containers.png') -300px 0; - } - - #cancel { - top: 55%; - left: 75%; - - width: 14px; - height: 14px; - - background: url('/img/interface/containers.png') -371px -79px; - - &:hover, - &:focus { - background-position-x: -65px; - } - } + text-shadow: 0.05em 0.075em #0e0a00; } diff --git a/packages/client/scss/game/impl/_page.scss b/packages/client/scss/game/impl/_page.scss index 08cfe4a57b..c3498057f2 100644 --- a/packages/client/scss/game/impl/_page.scss +++ b/packages/client/scss/game/impl/_page.scss @@ -1,10 +1,29 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; + +.slice-page { + user-select: none; -#profile-dialog, -#settings-page { position: absolute; - right: 0; - bottom: 45px; + bottom: 3.5em; + + display: none; + + box-sizing: border-box; + width: 24em; + height: 15em; + padding: 1em 0.675em 0.675em; + + color: #eee; + + border-image: url('/img/interface/slices/dialog.png'); + border-image-slice: 45% fill; + border-image-width: 1em; + border-image-outset: 0; + border-image-repeat: stretch; +} + +#profile-container { display: none; } @@ -20,108 +39,16 @@ } .item-count { - font-family: AdvoCut, sans-serif; color: rgb(255 255 255 / 100%); } -.close { - position: absolute; - top: -3%; - left: 92%; -} - -.ok, -.ok-check { - position: absolute; -} - -@each $size, $i in media.$sizes { - @media ($size) { - #bank-inventory-container, - #enchant-container { - width: 129px * $i; - height: 127px * $i; - background-position: 0 0; - } - - .item-count { - width: 16px * $i; - height: 7px * $i; - margin-left: $i; - text-align: center; - } - - #store-sell-slot-return-text, - #store-sell-slot-text, - #shards-count { - margin-top: 19px * $i; - } - - .ok, - .ok-check { - background-image: url('/img/interface/containers.png'); - background-size: calc(width('containers.png') * $i); - } - - .ok { - width: 28px * $i; - height: 14px * $i; - background-position: -341px * $i -79px * $i; - - &:hover { - background-position-y: -65px * $i; - } - } - - .ok-check { - width: 14px * $i; - height: 14px * $i; - background-position: -387px * $i -79px * $i; - - &:hover { - background-position-y: -65px * $i; - } - - &:active { - background-position-y: -93px * $i; - } - } - } -} - -@each $size, $i in media.$b-sizes { - @media ($size) { - .close { - width: 16px * $i; - height: 16px * $i; - background: url('/img/interface/containers.png') -32px * $i -166px * $i; - background-size: calc(width('containers.png') * $i); - - &:hover { - background-position-x: -48px * $i; - } - - &:active { - background-position-x: -64px * $i; - } - } - } -} - -@media (--lg) { - .item-count { - font-size: 14px; - } -} - -@media (--md) { - .item-count { - font-size: 11px; - } -} - -@media (--sm) { - .item-count { - font-size: 8px; - } -} +@include sprite.sheet('bank', $width: 128, $height: 126, $selectors: #enchant-container); +@include sprite.sheet( + 'main', + $y: 119, + $width: 14, + $height: 14, + $hover: 1, + $active: 2, + $selectors: '.ok-check' +); diff --git a/packages/client/scss/game/impl/_player.scss b/packages/client/scss/game/impl/_player.scss index 22081587a6..6b9f8e3d6f 100644 --- a/packages/client/scss/game/impl/_player.scss +++ b/packages/client/scss/game/impl/_player.scss @@ -1,178 +1,86 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; -@keyframes flash { - 0% { - background: #ffa2a2; - } - - 100% { - background: #e22525; - } +#health, +#mana, +#mana-mask, +.health-mask-base, +.health-text, +.mana-text { + position: absolute; } -@keyframes flash-green { - 0% { - background: #a2ffa2; - } - - 100% { - background: #25e225; - } +#health { + top: 0.5em; + left: 1em; } -@keyframes flash-poison { - 0% { - background: #42e373; - } - - 100% { - background: #146e2b; - } -} - -#health, #mana { - cursor: url('/img/hand.png'), auto; - position: absolute; + top: 3.25em; + left: 1em; } -#health-mask, -.health-mask-poison, -.health-mask-white, -#mana-mask { - position: absolute; - top: 0; - left: 0; - +#mana-mask, +.health-mask-base, +.health-text, +.mana-text { + inset: 0; width: 100%; height: 100%; - - transition: 0.5s width ease; } -#player-info { - position: absolute; - top: 10px; - left: 10px; +#mana-mask, +.health-mask-base, +.health-mask-poison, +.health-mask-white { + transition: 0.5s width ease; } .health-text, .mana-text { - position: absolute; - z-index: 5; - width: 100%; - - font-family: AdvoCut, sans-serif; + font-size: 1.25em; color: white; text-align: center; - vertical-align: middle; } -#exp { - /* Safari 5.1, Chrome 10+ */ - background: linear-gradient(to left, #4f4, #080); - transition: 0.5s width ease; +.health-text { + top: 0.75em; } -#health.white { - animation: flash 0.5s linear infinite; -} - -#health.green { - animation: flash-green 0.5s linear infinite; +.mana-text { + top: 0.1em; } -#health.poison { - animation: flash-poison 0.5s linear infinite; -} +/* Safari 7.1+ */ -@each $size, $i in media.$sizes { - @if $i == 3 { - $i: 4.25; - } @else if $i == 2 { - $i: 3.75; - } @else { - $i: 3; +_::-webkit-full-page-media, +_:future, +:root .safari_only { + #health, + #mana { + left: 2.5em !important; } +} - @media ($size) { - #health, #health-mask { - width: 63px * $i; - height: 15px * $i; - } - - #mana, #mana-mask { - width: 56px * $i; - height: 11px * $i; - } - - #health { - background: url('/img/interface/bars.png') no-repeat; - background-size: calc(width('bars.png') * $i); - } - - #health-mask { - background: url('/img/interface/bars.png') 0 -32px * $i no-repeat; - background-size: calc(width('bars.png') * $i); - } - - .health-mask-poison { - background: url('/img/interface/bars.png') 0 -64px * $i no-repeat !important; - background-size: calc(width('bars.png') * $i) !important; - } - - .health-mask-white { - background: url('/img/interface/bars.png') 0 -80px * $i no-repeat !important; - background-size: calc(width('bars.png') * $i) !important; - } - - #mana { - top: 12px * $i; - left: 3px * $i; - background: url('/img/interface/bars.png') 0 -16px * $i no-repeat; - background-size: calc(width('bars.png') * $i); - } - - #mana-mask { - background: url('/img/interface/bars.png') 0 -48px * $i no-repeat; - background-size: calc(width('bars.png') * $i); - } - } - - @media (--lg) { - .health-text { - top: 17px; - } - } - - @media (--md) { - .health-text { - top: 17px; - } - - .mana-text { - top: 2px; - } - - .health-text, - .mana-text { - font-size: 14px; - } - } - - @media (--sm) { - .health-text { - top: 11px; - } - - .mana-text { - top: 0; - } - - .health-text, - .mana-text { - font-size: 11px; - } +@media (--lg) { + #health, + #mana { + font-size: 0.85em; } } + +@include sprite.sheet( + $image: 'bars', + $width: 63, + $height: 15, + $scale: 4, + $selectors: ( + #health, + #mana, + '.health-mask-base', + #mana-mask, + '.health-mask-poison', + '.health-mask-white' + ) +); diff --git a/packages/client/scss/game/impl/_profile.scss b/packages/client/scss/game/impl/_profile.scss index bb649fcf2f..d8561fad8b 100644 --- a/packages/client/scss/game/impl/_profile.scss +++ b/packages/client/scss/game/impl/_profile.scss @@ -1,859 +1,215 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; -.page { - cursor: url('/img/hand.png'), auto; - user-select: none; -} - -#quest-list { - position: absolute; - top: 50%; - left: 8%; - overflow: auto; -} - -#skills-list { - position: absolute; - overflow: auto; -} +#profile-container { + right: 0.5em; -#armour-slot-info { - text-align: right; -} - -#arrows-count { - position: absolute; - font-family: AdvoCut, sans-serif; - color: white; - text-align: center; -} - -#profile-info { - position: absolute; - display: none; + @media (--portrait) { + font-size: 0.875em; + } } #attack-style-list { display: flex; - gap: 6px; - align-items: center; - justify-content: center; -} - -#guilds-button, #leaderboards-button { - position: absolute; -} - -.profession-item { - width: 100%; - height: 10%; - font-family: AdvoCut, sans-serif; -} + flex-direction: row; + gap: 0.75em; + justify-content: space-evenly; -.profession-name { - z-index: 1; - - float: left; - - width: 98%; - margin-top: 3px; - - font-size: 22px; - color: white; - text-align: center; - - background-color: rgb(51 153 255 / 40%); - border: 2px solid #373737; + height: 3em; + margin-top: 0.25em; + margin-bottom: 0.25em; } -.profile-info { +#state-page, +#skills-page, +#abilities-page { position: absolute; - left: 24px; - - width: 92px; - height: 12px; + inset: 0; - font-family: AdvoCut, sans-serif; - font-size: 6px; - font-weight: bold; - line-height: 12px; - text-align: center; - text-shadow: 1px 1px #808080; -} - -.profile-item-info { - pointer-events: none; - - position: absolute; - - font-family: AdvoCut, sans-serif; - font-size: 12px; - font-weight: bold; -} - -.navigator { - position: absolute; - top: 89%; - left: 37%; -} + display: none; + flex-direction: row; + gap: 0.5em; + align-items: center; -.skill-level, -.skill-experience { - position: absolute; + box-sizing: border-box; + height: 12em; + padding: 1.5em 1em 0.5em; } -.skill-level { - font-family: AdvoCut, sans-serif; - color: white; -} +#profile-stats { + display: flex; + flex: 1; + gap: 0.5em; + align-items: center; + justify-content: space-between; -.skill-experience { - background: linear-gradient(to left, #4f4, #080); - transition: 0.5s width ease; -} + #profile-level, + #profile-experience, + span { + font-size: 1.1em; + } -.profile-info-title, -.profile-info-details { - position: absolute; - font-family: AdvoCut, sans-serif; - color: #fff; -} + .button-row { + display: flex; + flex-direction: row; + gap: 0.55em; + justify-content: space-evenly; -.attack-style { - position: absolute; + width: 12em; + } } -@each $size, $i in media.$sizes { - @media ($size) { - #state-page, - .state-page { - display: block; - background: url('/img/interface/characterdialogsheet.png') 0 0; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #abilities-page { - display: none; - background: url('/img/interface/characterdialogsheet.png') -124px * $i 0; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #settings-page { - display: none; - background: url('/img/interface/characterdialogsheet.png') -248px * $i 0; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #quest-page { - display: none; - background: url('/img/interface/characterdialogsheet.png') -372px * $i 0; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #guild-page { - display: none; - background: url('/img/interface/characterdialogsheet.png') -496px * $i 0; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #skills-page { - display: none; - background: url('/img/interface/characterdialogsheet.png') -248px * $i -217px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #profile-dialog, - .page { - position: absolute; - width: 124px * $i; - height: 217px * $i; - } - - .profile-slot { - position: absolute; - - width: 16px * $i; - height: 15px * $i; - margin-top: -2px * $i; - - background-position: 0 0; - background-size: cover; - } - - .profile-info { - position: absolute; - left: 24px * $i; - - width: 92px * $i; - height: 12px * $i; - - font-family: AdvoCut, sans-serif; - font-size: 6px * $i; - font-weight: bold; - line-height: 12px * $i; - text-align: center; - text-shadow: 1px 1px #808080; - } - - #equipment-button { - position: absolute; - top: 59%; - right: 51px * $i; - - width: 21px * $i; - height: 17px * $i; - - background: url('/img/interface/characterdialogsheet.png') 0 -257px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #equipment-button:hover { - background: url('/img/interface/characterdialogsheet.png') -42px * $i -257px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #equipment-button:active, - #equipment-button.active { - background: url('/img/interface/characterdialogsheet.png') -21px * $i -257px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - #arrows-count { - top: 19px * $i; - left: 2px * $i; - } - - #profile-level { - top: 8px * $i; - } - - #profile-experience { - top: 29px * $i; - } - - #guilds-button, - #leaderboards-button { - bottom: 8px * $i; - } - - #guilds-button { - left: 6px * $i; - } - - #leaderboards-button { - right: 6px * $i; - } - - #guilds-button, - #leaderboards-button { - width: 14px * $i; - height: 15px * $i; - - background: url('/img/interface/main.png') no-repeat; - background-position-y: -314px * $i; - background-size: calc(width('main.png') * $i); - } - - #guilds-button { - background-position: -280px * $i -329px * $i; - - &:hover { - background-position-x: -294px * $i; - } - - &.active, - &:active { - background-position-x: -308px * $i; - } - } - - #leaderboards-button { - background-position: -238px * $i -329px * $i; - - &:hover { - background-position-x: -252px * $i; - } - - &.active, - &:active { - background-position-x: -266px * $i; - } - } - - .slot-background { - z-index: -1; - background: url('/img/interface/characterdialogsheet.png') -464px * $i -256px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - .weapon-slot { - top: 128px * $i; - left: 4px * $i; - } - - .weapon-skin-slot { - top: 128px * $i; - left: 28px * $i; - } - - .armour-slot { - top: 128px * $i; - left: 104px * $i; - } - - .armour-skin-slot { - top: 128px * $i; - left: 81px * $i; - } - - .pendant-slot { - top: 86px * $i; - left: 28px * $i; - } - - .ring-slot { - top: 174px * $i; - left: 27px * $i; - } - - .boots-slot { - top: 174px * $i; - left: 80px * $i; - } - - .arrows-slot { - top: 86px * $i; - left: 79px * $i; - } - - .navigator { - width: 42px * $i; - height: 17px * $i; - } - - .previous, - .next { - position: absolute; - top: 0; - left: initial; - - width: 21px * $i; - height: 17px * $i; - - background-image: url('/img/interface/characterdialogsheet.png'); - background-size: calc(width('characterdialogsheet.png') * $i); - } - - .previous { - cursor: pointer; - left: 0; - background-position: 0 -240px * $i; - - &.disabled { - cursor: url('/img/hand.png'), auto; - background-position: 0 -223px * $i; - } - } - - .next { - cursor: pointer; - left: 21px * $i; - background-position: -21px * $i -223px * $i; - - &.disabled { - cursor: url('/img/hand.png'), auto; - background-position: -21px * $i -240px * $i; - } - } - - #skills-list { - top: 16px * $i; - left: 12px * $i; - width: 106px * $i; - height: 170px * $i; - } - - .skill { - width: 102px * $i; - height: 31px * $i; - padding-top: 3px * $i; - - background: url('/img/interface/characterdialogsheet.png') -32px * $i -353px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - - &:hover { - background-position: -144px * $i -353px * $i; - } - - &:active { - background-position: -144px * $i -400px * $i; - } - } - - .skill-experience { - width: 64px * $i; - height: 1px * $i; - margin-top: 20px * $i; - margin-left: 28px * $i; - } - - .skill-level { - margin-top: 6px * $i; - margin-left: 48px * $i; - font-size: 10px * $i; - } - - .skill-image { - width: 16px * $i; - height: 16px * $i; - margin-top: 5px * $i; - margin-left: 8px * $i; - } - - .skill-image-accuracy { - background: url('/img/interface/skills/accuracy.png'); - background-size: calc(width('skills/accuracy.png') * $i); - } - - .skill-image-archery { - background: url('/img/interface/skills/archery.png'); - background-size: calc(width('skills/archery.png') * $i); - } - - .skill-image-health { - background: url('/img/interface/skills/health.png'); - background-size: calc(width('skills/health.png') * $i); - } - - .skill-image-lumberjacking { - background: url('/img/interface/skills/lumberjacking.png'); - background-size: calc(width('skills/lumberjacking.png') * $i); - } - - .skill-image-magic { - background: url('/img/interface/skills/magic.png'); - background-size: calc(width('skills/magic.png') * $i); - } - - .skill-image-mining { - background: url('/img/interface/skills/mining.png'); - background-size: calc(width('skills/mining.png') * $i); - } - - .skill-image-strength { - background: url('/img/interface/skills/strength.png'); - background-size: calc(width('skills/strength.png') * $i); - } - - .skill-image-defense { - background: url('/img/interface/skills/defense.png'); - background-size: calc(width('skills/defense.png') * $i); - } - - .skill-image-fishing { - background: url('/img/interface/skills/fishing.png'); - background-size: calc(width('skills/fishing.png') * $i); - } - - .skill-image-smithing { - background: url('/img/interface/skills/smithing.png'); - background-size: calc(width('skills/smithing.png') * $i); - } - - .skill-image-cooking { - background: url('/img/interface/skills/cooking.png'); - background-size: calc(width('skills/cooking.png') * $i); - } - - .skill-image-fletching { - background: url('/img/interface/skills/fletching.png'); - background-size: calc(width('skills/fletching.png') * $i); - } - - .skill-image-crafting { - background: url('/img/interface/skills/crafting.png'); - background-size: calc(width('skills/crafting.png') * $i); - } - - .skill-image-foraging { - background: url('/img/interface/skills/foraging.png'); - background-size: calc(width('skills/foraging.png') * $i); - } +#profile-equipment-slots { + position: relative; + width: 10em; + height: 9.5em; - .skill-image-eating { - background: url('/img/interface/skills/eating.png'); - background-size: calc(width('skills/eating.png') * $i); - } - - .skill-image-loitering { - background: url('/img/interface/skills/loitering.png'); - background-size: calc(width('skills/loitering.png') * $i); - } - - #achievement-count, - #quest-count { - width: 30px * $i; - height: 8px * $i; - font-size: 8px * $i; - } + .equipment-slot { + position: absolute; + width: 2em; + height: 2em; + padding: 0.25em; - .ability, - .ability-icon { - position: absolute; - display: none; - width: 16px * $i; - height: 16px * $i; - } - - .ability-icon { - display: block; - } - - .ability-icon-intimidate { - background-image: url('/img/interface/abilityicons.png'); - background-position: 0 1px; - background-size: calc(width('abilityicons.png') * $i); - } - - .ability-icon-run { - background-image: url('/img/interface/abilityicons.png'); - background-position: -16px * $i 1px; - background-size: calc(width('abilityicons.png') * $i); - } - - .ability-icon-awareness { - background-image: url('/img/interface/abilityicons.png'); - background-position: -32px * $i 1px; - background-size: calc(width('abilityicons.png') * $i); - } - - .ability-icon-dualistsmark { - background-image: url('/img/interface/abilityicons.png'); - background-position: -48px * $i 1px; - background-size: calc(width('abilityicons.png') * $i); - } - - .ability-icon-hotshot { - background-image: url('/img/interface/abilityicons.png'); - background-position: -64px * $i 1px; - background-size: calc(width('abilityicons.png') * $i); - } - - .ability-icon-thickskin { - background-image: url('/img/interface/abilityicons.png'); - background-position: -80px * $i 1px; - background-size: calc(width('abilityicons.png') * $i); - } - - .ability-icon-precognition { - background-image: url('/img/interface/abilityicons.png'); - background-position: -96px * $i 1px; - background-size: calc(width('abilityicons.png') * $i); - } - - .ability-icon-secretcalling { - background-image: url('/img/interface/abilityicons.png'); - background-position: -112px * $i 1px; - background-size: calc(width('abilityicons.png') * $i); - } - - .ability-icon-run, - .ability-icon-awareness, - .ability-icon-dualistsmark, - .ability-icon-hotshot, - .ability-icon-thickskin, - .ability-icon-precognition, - .ability-icon-secretcalling { - &:hover { - background-position-y: -15px * $i; - } - - &:active, - &.active { - background-position-y: -30px * $i; - } - } - - .ability-level { - position: absolute; - - width: 5px * $i; - height: 6px * $i; - margin-top: 10px * $i; - - background-image: url('/img/interface/characterdialogsheet.png'); - background-position: -97px * $i -242px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - .ability-level1 { - margin-left: 19px * $i; - } - - .ability-level2 { - margin-left: 25px * $i; - } - - .ability-level3 { - margin-left: 31px * $i; - } - - .ability-level4 { - margin-left: 37px * $i; - } - - // Active abilities - - #activeability1 { - top: 16px * $i; - left: 14px * $i; - } - - #activeability2 { - top: 16px * $i; - left: 70px * $i; - } - - #activeability3 { - top: 36px * $i; - left: 14px * $i; - } - - #activeability4 { - top: 36px * $i; - left: 70px * $i; - } - - #activeability5 { - top: 56px * $i; - left: 14px * $i; - } - - #activeability6 { - top: 56px * $i; - left: 70px * $i; - } - - #activeability7 { - top: 76px * $i; - left: 14px * $i; - } - - #activeability8 { - top: 76px * $i; - left: 70px * $i; - } - - // Passive abilities - - #passiveability1 { - top: 112px * $i; - left: 14px * $i; - } - - #passiveability2 { - top: 112px * $i; - left: 70px * $i; - } - - #passiveability3 { - top: 132px * $i; - left: 14px * $i; - } - - #passiveability4 { - top: 132px * $i; - left: 70px * $i; - } - - #passiveability5 { - top: 152px * $i; - left: 14px * $i; - } - - #passiveability6 { - top: 152px * $i; - left: 70px * $i; - } - - #passiveability7 { - top: 172px * $i; - left: 14px * $i; - } - - #passiveability8 { - top: 172px * $i; - left: 70px * $i; - } - - #profile-info { - top: 20px * $i; - right: 124px * $i; - - width: 92px * $i; - height: 130px * $i; - - background: url('/img/interface/characterdialogsheet.png') -528px * $i -304px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - .profile-info-skill-image { - width: 16px * $i; - height: 16px * $i; - margin-top: 10px * $i; - margin-left: 9px * $i; - } - - .profile-info-title { - top: 14px * $i; - left: 32px * $i; - font-size: 10px * $i; - } - - .profile-info-details { - bottom: 6px * $i; - left: 6px * $i; - - width: 84px * $i; - height: 72px * $i; - - font-size: 10px * $i; - text-align: center; - } - - #attack-style-list { - margin-top: 46px * $i; - } - - .attack-style-box { - width: 23px * $i; - height: 31px * $i; - background: url('/img/interface/characterdialogsheet.png') -409px * $i -256px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - - &:hover { - background-position-x: -384px * $i; - } - - &:active, - &.active { - background-position-x: -434px * $i; - } - } - - .attack-style { - width: 17px * $i; - height: 17px * $i; - margin-top: 9px * $i; - margin-left: 3px * $i; - } - - .attack-style-stab { - background: url('/img/interface/characterdialogsheet.png') -384px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - .attack-style-slash { - background: url('/img/interface/characterdialogsheet.png') -403px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - .attack-style-defensive { - background: url('/img/interface/characterdialogsheet.png') -422px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - .attack-style-crush { - background: url('/img/interface/characterdialogsheet.png') -441px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } - - .attack-style-shared { - background: url('/img/interface/characterdialogsheet.png') -460px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); + &-image { + width: 100%; + height: 100%; + background-repeat: no-repeat; + background-size: 100%; } + } - .attack-style-hack { - background: url('/img/interface/characterdialogsheet.png') -479px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } + .equipment-slot-helmet { + left: 4em; + } - .attack-style-chop { - background: url('/img/interface/characterdialogsheet.png') -498px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } + .equipment-slot-pendant { + top: 1.25em; + left: 0.25em; + } - .attack-style-accurate { - background: url('/img/interface/characterdialogsheet.png') -517px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } + .equipment-slot-arrows { + top: 1.25em; + left: 7.75em; + } - .attack-style-fast { - background: url('/img/interface/characterdialogsheet.png') -536px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } + .equipment-slot-arrows-count { + position: absolute; + top: -1em; + left: 0; - .attack-style-focused { - background: url('/img/interface/characterdialogsheet.png') -555px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } + width: 2em; - .attack-style-longrange { - background: url('/img/interface/characterdialogsheet.png') -574px * $i -224px * $i; - background-size: calc(width('characterdialogsheet.png') * $i); - } + text-align: center; } -} -@media (--lg) { - #profile-dialog { - right: 118px; - bottom: 68px; + .equipment-slot-chestplate { + top: 2.5em; + left: 2.75em; } - .profile-item-info { - font-size: 24px; + .equipment-slot-weapon { + top: 2.5em; + left: 5.25em; } - .profession-name { - border-radius: 12px; + .equipment-slot-shield { + top: 3.75em; + left: 8em; } -} -@media (--md) { - #profile-dialog { - right: 78px; - bottom: 48px; + .equipment-slot-armour-skin { + top: 5em; + left: 2.75em; } - .profile-item-info { - font-size: 18px; + .equipment-slot-weapon-skin { + top: 5em; + left: 5.25em; } - .profession-name { - font-size: 20px; - border-radius: 8px; + .equipment-slot-ring { + top: 3.75em; } -} -@media (--sm) { - #profile-dialog { - right: 128px; - bottom: 99px; - transform: scale(1.5); + .equipment-slot-legplates { + top: 6.25em; + left: 0.25em; } - .profile-item-info { - font-size: 8px; + .equipment-slot-cape { + top: 6.25em; + left: 7.75em; } - .profession-name { - font-size: 10px; - border: 1px solid #373737; - border-radius: 4px; + .equipment-slot-boots { + top: 7.5em; + left: 4em; } +} - #arrows-count { - font-size: 8px; - } +#profile-navigator { + position: absolute; + bottom: 1em; + left: 0; + + display: flex; + flex-direction: row; + justify-content: center; + + width: 100%; } + +@include sprite.sheet( + $image: 'characterdialogsheet', + $x: 384, + $y: 256, + $width: 23, + $height: 23, + $scale: 1.5, + $gap: 2, + $hover: 1, + $active: 2, + $selectors: '.attack-style-box' +) { + display: flex; + flex-direction: row; + justify-content: center; + padding-top: 0.875em; +} + +@include sprite.sheet( + $image: 'characterdialogsheet', + $x: 384, + $y: 224, + $width: 17, + $height: 17, + $gap: 2, + $scale: 1.5, + $rows: false, + $selectors: ( + '.attack-style-stab', + '.attack-style-slash', + '.attack-style-defensive', + '.attack-style-crush', + '.attack-style-shared', + '.attack-style-hack', + '.attack-style-chop', + '.attack-style-accurate', + '.attack-style-fast', + '.attack-style-focused', + '.attack-style-longrange' + ) +); + +@include sprite.sheet( + $image: 'characterdialogsheet', + $y: 223, + $width: 21, + $height: 17, + $rows: false, + $disabled: 1, + $selectors: ( + '.previous', + '.next' + ) +); diff --git a/packages/client/scss/game/impl/_quest.scss b/packages/client/scss/game/impl/_quest.scss new file mode 100644 index 0000000000..b608fa91b5 --- /dev/null +++ b/packages/client/scss/game/impl/_quest.scss @@ -0,0 +1,25 @@ +#quest { + display: none; + flex-direction: column; + align-items: center; + justify-content: center; + + width: 22em; + height: 20em; + + &-button { + bottom: 1em; + display: flex; + width: 12em; + } + + &-rewards { + display: flex; + flex-direction: row; + gap: 0.25em; + align-items: center; + justify-content: center; + + width: 100%; + } +} diff --git a/packages/client/scss/game/impl/_quests.scss b/packages/client/scss/game/impl/_quests.scss index 9b505c2690..775ab428fe 100644 --- a/packages/client/scss/game/impl/_quests.scss +++ b/packages/client/scss/game/impl/_quests.scss @@ -1,53 +1,59 @@ @use '../../abstracts/media'; -#quests-container, -#quest-log { - position: absolute; - overflow: auto; - font-family: AdvoCut, sans-serif; +#quests { + display: none; } -.quest-log-h1 { - font-size: 150%; - color: white; - text-align: left; +#quests-container { + display: flex; + flex-direction: row; + gap: 0.5em; + height: 100%; } -.quest-log-p { - color: white; -} +#quests-list { + flex: 3; -@each $size, $i in media.$sizes { - @media ($size) { - #quests { - background: url('/img/interface/quests.png') 0 0 no-repeat; - background-size: calc(width('quests.png') * $i); - } + ul { + overflow: hidden auto; + display: flex; + flex-direction: column; + gap: 0.25em; - #quests-container { - width: 106px * $i; - height: 117px * $i; - margin-top: 20px * $i; - margin-left: 21px * $i; - } + height: 100%; + padding-right: 0.25em; - #quest-log { - width: 172px * $i; - height: 117px * $i; - margin-top: 20px * $i; - margin-left: 151px * $i; + li { + flex-shrink: 0; } + } +} - #quest-log > div { - margin-top: 4px * $i; - margin-left: 4px * $i; - } +#quests-logs { + flex: 4; +} + +#quests-logs-container { + overflow: auto; + height: 100%; +} + +@media (--portrait) { + #quests { + width: 20em; + height: 30em; + margin-bottom: 5em; } - @media (--sm) { - #quests-container, - #quest-log { - font-size: 8px; + #quests-container { + flex-direction: column; + + #quests-list { + flex: 3; + } + + #quests-logs { + flex: 4; } } } diff --git a/packages/client/scss/game/impl/_settings.scss b/packages/client/scss/game/impl/_settings.scss index 4b211bd78f..6f45d2484e 100644 --- a/packages/client/scss/game/impl/_settings.scss +++ b/packages/client/scss/game/impl/_settings.scss @@ -1,168 +1,85 @@ @use '../../abstracts/media'; -#sliders { - position: absolute; - top: 15%; - right: 10%; - float: right; -} - -#texts { - position: absolute; - top: 15%; - left: 10%; - - float: left; - - font-family: AdvoCut, sans-serif; -} - -#info { - position: absolute; - top: 78%; - - width: 100%; - height: 8%; - - text-align: center; -} - -#check-marks { - position: absolute; - top: 41%; - right: 10%; - float: right; -} - -#music, -#sound, -#brightness { - position: absolute; -} - -#audio-enabled-checkbox, -#low-power-checkbox, -#debug-mode-checkbox, -#centre-checkbox, -#show-names-checkbox, -#show-levels-checkbox, -#disable-region-caching-checkbox, -#webgl-checkbox { - left: 50%; -} - -@each $size, $i in media.$sizes { - @media ($size) { - #sliders { - width: 40px * $i; - height: 25px * $i; +#settings-page { + display: none; + + label { + display: flex; + gap: 0.25em; + align-items: center; + padding: 0.25em 0; + + span, + input { + flex: 2; + font-size: 0.75em; } - #music { - top: -1px * $i; + span { + font-size: 1em; } - #sound { - top: 17px * $i; - } - - #brightness { - top: 35px * $i; - } + .checkmark { + flex: 1; - #check-marks { - width: 40px * $i; - height: 120px * $i; - } - - #texts { - width: 60px * $i; - height: 100px * $i; - font-size: 8px * $i; - - p { - margin-bottom: 10px * $i; + &::before { + float: right; } } - - #audio-enabled-checkbox { - top: -3px * $i; - } - - #low-power-checkbox { - top: 15px * $i; - } - - #debug-mode-checkbox { - top: 33px * $i; - } - - #show-names-checkbox { - top: 50px * $i; - } - - #show-levels-checkbox { - top: 68px * $i; - } - - #disable-region-caching-checkbox { - top: 87px * $i; - } - - #webgl-checkbox { - top: 104px * $i; - } } } -@media (--lg) { - #settings-page { - bottom: 68px; - } -} +#settings-container { + flex-direction: row; + gap: 0.5em; + height: 100%; -@media (--md) { - #settings-page { - bottom: 48px; + @media (--portrait) { + flex-direction: column; } } -@media (--sm) { - #settings-page { - right: 38px; - bottom: 99px; - transform: scale(1.5); - } +#input-settings, +#action-settings { + display: flex; + flex-direction: row; + justify-content: space-between; +} - #texts { - top: 14%; - } +#input-settings { + flex: 6; + flex-flow: row; + gap: 3em; + padding: 0.75em 1em; - #audio-enabled-checkbox { - top: -6px; - } - - #low-power-checkbox { - top: 13px; + > .col { + flex: 1; + justify-content: space-between; } +} - #debug-mode-checkbox { - top: 31px; - } +#action-settings { + flex: 2; + flex-flow: column; + gap: 0.5em; + align-items: center; + justify-content: space-between; +} - #show-names-checkbox { - top: 48px; - } +#game-info { + display: flex; + flex: 1; + flex-direction: column; + gap: 0.5em; - #show-levels-checkbox { - top: 66px; - } + width: 100%; - #disable-region-caching-checkbox { - top: 85px; + strong, + span { + font-size: 1em; } +} - #webgl-checkbox { - top: 102px; - } +#joystick-enabled-checkbox[hidden] { + display: none; } diff --git a/packages/client/scss/game/impl/_skills.scss b/packages/client/scss/game/impl/_skills.scss new file mode 100644 index 0000000000..41e5bf3011 --- /dev/null +++ b/packages/client/scss/game/impl/_skills.scss @@ -0,0 +1,98 @@ +@use '../../abstracts/sprite'; + +#skill-info { + position: absolute; + right: 100%; + + display: none; + flex-direction: column; + + width: 8em; + height: 10em; + padding-right: 0; + + border-image-width: 1em 0 1em 1em; + + .skill-info-header { + display: flex; + flex-direction: row; + gap: 0.5em; + align-items: center; + + font-size: 1em; + } + + .skill-info-details { + display: flex; + flex-direction: column; + + span { + padding: 0.25em; + font-size: 1em; + } + } +} + +#skills-list { + height: 100%; + + ul { + overflow: hidden auto; + display: flex; + flex-direction: column; + gap: 0.25em; + + height: 100%; + padding-right: 0.25em; + + .slice-list-item { + flex-shrink: 0; + gap: 0.25em; + + .skill-content { + display: flex; + flex: 1; + flex-direction: column; + justify-content: space-evenly; + + text-align: center; + + .skill-level { + font-size: 1.3em; + } + + .skill-experience { + width: 17.25em; + background: rgb(0 0 0 / 50%); + border: 0.125em solid rgb(0 0 0 / 75%); + border-radius: 0.25em; + } + + .skill-experience-progress { + height: 0.5em; + background: linear-gradient(to left, #4f4, #080); + transition: 0.5s width ease; + } + } + } + } +} + +@include sprite.sheet($image: 'skills/accuracy', $selectors: '.skill-image-accuracy'); +@include sprite.sheet($image: 'skills/archery', $selectors: '.skill-image-archery'); +@include sprite.sheet($image: 'skills/health', $selectors: '.skill-image-health'); +@include sprite.sheet($image: 'skills/lumberjacking', $selectors: '.skill-image-lumberjacking'); +@include sprite.sheet($image: 'skills/magic', $selectors: '.skill-image-magic'); +@include sprite.sheet($image: 'skills/mining', $selectors: '.skill-image-mining'); +@include sprite.sheet($image: 'skills/strength', $selectors: '.skill-image-strength'); +@include sprite.sheet($image: 'skills/defense', $selectors: '.skill-image-defense'); +@include sprite.sheet($image: 'skills/fishing', $selectors: '.skill-image-fishing'); +@include sprite.sheet($image: 'skills/smithing', $selectors: '.skill-image-smithing'); +@include sprite.sheet($image: 'skills/smelting', $selectors: '.skill-image-smelting'); +@include sprite.sheet($image: 'skills/cooking', $selectors: '.skill-image-cooking'); +@include sprite.sheet($image: 'skills/fletching', $selectors: '.skill-image-fletching'); +@include sprite.sheet($image: 'skills/crafting', $selectors: '.skill-image-crafting'); +@include sprite.sheet($image: 'skills/foraging', $selectors: '.skill-image-foraging'); +@include sprite.sheet($image: 'skills/eating', $selectors: '.skill-image-eating'); +@include sprite.sheet($image: 'skills/loitering', $selectors: '.skill-image-loitering'); +@include sprite.sheet($image: 'skills/alchemy', $selectors: '.skill-image-alchemy'); diff --git a/packages/client/scss/game/impl/_slice.scss b/packages/client/scss/game/impl/_slice.scss new file mode 100644 index 0000000000..9e2707cf5c --- /dev/null +++ b/packages/client/scss/game/impl/_slice.scss @@ -0,0 +1,216 @@ +.slice-menu { + position: absolute; + inset: 0; + + box-sizing: border-box; + margin: auto; + + color: #eee; + + border-image: url('/img/interface/slices/menu.png') 44% fill/ 1em / 0 stretch; +} + +.slice-menu-fancy { + position: absolute; + inset: 0; + + box-sizing: border-box; + margin: auto; + + color: #eee; + + border-image: url('/img/interface/slices/menu-fancy.png') 44% fill/ 4em / 0 stretch; +} + +.slice-container { + position: absolute; + inset: 0; + + display: none; + flex-direction: row; + gap: 0.5em; + + box-sizing: border-box; + width: 32em; + height: 16em; + margin: auto; + padding: 1em; + + color: #eee; + + border-image: url('/img/interface/slices/container.png') 44% fill/ 1em / 0 stretch; + + @media (--portrait) { + flex-direction: column; + width: 22em; + height: 30em; + } +} + +.slice-container-fancy { + position: absolute; + inset: 0; + + display: none; + flex-direction: row; + gap: 0.5em; + + box-sizing: border-box; + width: 32em; + height: 16em; + margin: auto; + padding: 1em; + + color: #eee; + + border-image: url('/img/interface/slices/container-fancy.png') 44% fill/ 4.75em / 0 stretch; + + @media (--portrait) { + flex-direction: column; + width: 22em; + height: 30em; + } +} + +.slice-inner-container { + overflow: auto; + flex: 1; + + box-sizing: border-box; + padding: 0.75em; + + border-image: url('/img/interface/slices/inner-container.png') 42% fill / 2em / 0 stretch; +} + +.slice-list { + overflow: auto; + box-sizing: border-box; + padding: 0.5em; + border-image: url('/img/interface/slices/list.png') 44% fill / 1em / 0 stretch; + + // &:hover { + // border-image-source: url('/img/interface/slices/list-hover.png'); + // } +} + +.slice-list-item { + display: flex; + flex-direction: row; + justify-content: space-between; + + box-sizing: border-box; + padding: 0.5em; + + border-image: url('/img/interface/slices/list-item.png') 44% fill / 0.5em / 0 stretch; + + &:hover { + border-image-source: url('/img/interface/slices/list-item-hover.png'); + } +} + +.slice-item-slot { + overflow: auto; + display: flex; + flex-direction: row; + justify-content: space-between; + + box-sizing: border-box; + padding: 0.25em; + + border-image: url('/img/interface/slices/item-slot.png') 44% fill / 0.5em / 0 stretch; +} + +.slice-button { + box-sizing: border-box; + padding: 0.5em 1em; + + font-size: 1em; + color: #eee; + text-align: center; + + background-color: transparent; + border-image: url('/img/interface/slices/button.png') 44% fill/ 1em / 0 stretch; + + &:hover { + border-image-source: url('/img/interface/slices/button-hover.png'); + } + + &:active { + border-image-source: url('/img/interface/slices/button-active.png'); + } +} + +.slice-button-green { + box-sizing: border-box; + padding: 0.5em 1em; + + font-size: 1em; + color: #eee; + text-align: center; + + background-color: transparent; + border-image: url('/img/interface/slices/button-green.png') 44% fill/ 1em / 0 stretch; + + &:hover { + border-image-source: url('/img/interface/slices/button-green-hover.png'); + } + + &:active { + border-image-source: url('/img/interface/slices/button-green-active.png'); + } +} + +.slice-dialog { + position: absolute; + + display: none; + + box-sizing: border-box; + margin: auto; + padding: 1em 0.675em 0.675em; + + background: transparent; + border-image: url('/img/interface/slices/dialog.png') 42% fill / 1em / 0 stretch; +} + +.slice-input { + overflow: auto; + display: flex; + flex-direction: row; + justify-content: space-between; + + box-sizing: border-box; + padding: 0.625em 0.75em; + + font-size: 0.875em; + color: #eee; + + background-color: transparent; + border-image: url('/img/interface/slices/input.png') 25% fill / 0.5em / 0 stretch; + + &:focus, + &:active { + border-image-source: url('/img/interface/slices/input-active.png'); + } + + &.field-error { + border-image-source: url('/img/interface/slices/input-error.png'); + } +} + +.slice-tab { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + + box-sizing: border-box; + padding: 0.5em 0.5em 0; + + background-color: transparent; + border-image: url('/img/interface/slices/tab.png') 44% fill/ 1em / 0 stretch; + + &:focus { + border-image-source: url('/img/interface/slices/tab-active.png'); + } +} diff --git a/packages/client/scss/game/impl/_store.scss b/packages/client/scss/game/impl/_store.scss index fe37f38893..4501767bdd 100644 --- a/packages/client/scss/game/impl/_store.scss +++ b/packages/client/scss/game/impl/_store.scss @@ -1,249 +1,129 @@ -@use '../../abstracts/media'; +@use '../../abstracts/sprite'; #store { - cursor: url('/img/hand.png'), auto; - - position: absolute; - top: 17%; - left: 50%; - display: none; -} - -#store-inventory-container { - position: absolute; - top: 0; - right: 100%; -} -#store-inventory-slots { - position: absolute; + &-content { + display: flex; + flex: 3; + flex-direction: row; + gap: 0.5em; - overflow: hidden; - overflow-y: scroll; - - margin: 0; - padding: 0; - - list-style-type: none; - - li { - float: left; + height: 100%; } -} - -#store-container { - position: absolute; - top: 8%; - left: 8%; - overflow-y: scroll; + &-inventory { + display: flex; + flex-direction: column; + gap: 0.5em; - font-family: AdvoCut, sans-serif; + &-slots { + ul { + overflow: hidden auto; + display: grid; + grid-template-columns: repeat(5, 1fr); + gap: 0.25em; - li { - margin-bottom: 5px; - - &:first-child { - margin-top: 5px; + height: 100%; + padding-right: 0.25em; + } } } -} -#store-help { - margin: 90% auto; - font-family: AdvoCut, sans-serif; - text-align: center; -} + &-sell { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-evenly; -#store-sell-slot-return-text, -#store-sell-slot-text, -#shards-count { - color: black; -} - -#confirm-enchant, -#confirm-sell { - top: 80%; - left: 70%; -} - -.store-item-image { - width: 32px; - height: 32px; - margin-bottom: 4px; - background-size: cover; -} - -.store-item-name, -.store-item-count, -.store-item-price { - flex: 1; - font-family: AdvoCut, sans-serif; - font-size: 12px; - color: #fff; -} - -.store-item-name { - float: left; - flex: 4; -} - -.store-item-count, -.store-item-price { - text-align: right; -} - -@each $size, $i in media.$sizes { - @media ($size) { - #store { - width: 170px * $i; - height: 168px * $i; - background: url('/img/interface/containers.png') -129px * $i -22px * $i; - background-size: calc(width('containers.png') * $i); + &-text, + &-return-text { + height: 1em; + text-align: center; } + } - #store-container { - width: 146px * $i; - height: 134px * $i; - - li { - .item-slot { - margin-bottom: 4px * $i; + &-slots { + display: flex; + flex: 2; + flex-direction: column; + gap: 0.5em; + + &-content { + flex: 1; + + ul { + overflow: hidden auto; + display: flex; + flex-direction: column; + gap: 0.25em; + + height: 100%; + padding-right: 0.25em; + + li { + display: flex; + flex-direction: row; + flex-shrink: 0; + gap: 0.5em; + align-items: center; + + padding: 0.25em; + + .store-item-image { + width: 100%; + height: 100%; + background-size: 100%; + } + + .store-item-name { + flex: 3; + } + + .store-item-count, + .store-item-price { + flex: 1; + } } } } - #store-help { - font-size: 10px * $i; - } - - #store-inventory-container { - width: 129px * $i; - height: 155px * $i; - background: url('/img/interface/containers.png') 0 0; - background-size: calc(width('containers.png') * $i); - } - - #store-inventory-slots { - top: 16px * $i; - left: 20px * $i; - width: 96px * $i; - height: 92px * $i; - - li { - .item-slot { - margin-bottom: 4px * $i; - } - } - } - - #store-sell-slot, - #store-sell-slot-return { - position: absolute; - top: 123px * $i; - - width: 16px * $i; - height: 16px * $i; - - background-size: cover; - } - - #store-sell-slot { - left: 14px * $i; - } - - #store-sell-slot-return { - left: 44px * $i; - } - - .store-item { - display: flex; - flex-direction: row; - align-items: center; - justify-content: space-between; - - box-sizing: border-box; - width: 136px * $i; - height: 22px * $i; - margin-left: 4px * $i; - padding-left: 1em; - - background: url('/img/interface/containers.png') -352px * $i -112px * $i; - background-size: calc(width('containers.png') * $i); - - &:hover { - background-position-y: -134px * $i; - } - - &:active { - background-position-y: -156px * $i; - } - } - - .store-item-name, - .store-item-count, - .store-item-price { - font-size: 18px; - } - - .store-item-name { - padding-left: 1.5em; - } - - .store-item-count, - .store-item-price { - padding-right: 1em; + &-help { + text-align: center; } } - @media (--md) { - .store-item { - padding-left: 5px; - } - - .store-item-name, - .store-item-count, - .store-item-price { - font-size: 14px; - } + .slice-item-slot { + box-sizing: border-box; + width: 2em; + height: 2em; + padding: 0.375em; - .store-item-name { - padding-left: 1em; + div { + width: 100%; + height: 100%; + background-size: 100%; } } +} - @media (--sm) { - #store { - top: 30%; - left: 55%; - transform: scale(1.7); - } - - #store-inventory-slots { - left: 11px; - width: 106px; - - li { - .item-slot { - margin-bottom: 8px; - } - } - } +@media (--portrait) { + #store { + width: 16em; + height: 28em; + } - .store-item { - padding-left: 3px; - } + #store-content { + flex-direction: column; + } - .store-item-name, - .store-item-count, - .store-item-price { - font-size: 7px; - } + #store-inventory { + gap: 0.1em; + height: 13em; + } - .store-item-image { - width: 16px; - height: 16px; - } + #store-slots { + gap: 0.2em; + height: 12em; } } diff --git a/packages/client/scss/game/impl/_trade.scss b/packages/client/scss/game/impl/_trade.scss index 18a654eec4..c6eac2434a 100644 --- a/packages/client/scss/game/impl/_trade.scss +++ b/packages/client/scss/game/impl/_trade.scss @@ -1,160 +1,76 @@ @use '../../abstracts/media'; -#trade-container { - cursor: url('/img/hand.png'), auto; +#trade { + display: none; + width: 37.875em; + height: 21.5em; +} - position: absolute; - inset: 0; +#trade-content { + display: flex; + flex-direction: row; + gap: 0.5em; + justify-content: space-between; - display: none; + height: 100%; - margin: auto; -} + .player-trade { + display: flex; + flex-direction: column; + gap: 0.5em; + align-items: center; + justify-content: space-between; -#close-trade { - left: 98% !important; + height: 100%; + } } #trade-inventory-slots, #trade-player-slots, #trade-oplayer-slots { - position: absolute; - overflow: hidden; - overflow-y: scroll; - ul { - margin: 0; - padding: 0; - list-style-type: none; + overflow: hidden auto; + display: grid; + grid-template-columns: repeat(5, 1fr); + gap: 0.25em; + + height: 100%; + padding-right: 0.375em; li { - float: left; + font-size: 0.875em; } } } -#trade-player-name, -#trade-oplayer-name, -#trade-status { - position: absolute; - font-family: AdvoCut, sans-serif; - color: white; - text-align: center; -} - -@each $size, $i in media.$sizes { - @media ($size) { - #trade-container { - width: 379px * $i; - height: 170px * $i; - background: url('/img/interface/trade.png') 0 0 no-repeat; - background-size: calc(width('trade.png') * $i); - } - - #trade-inventory-slots { - top: 16px * $i; - left: 20px * $i; - width: 96px * $i; - height: 90px * $i; - } - - #trade-player-slots { - top: 40px * $i; - left: 148px * $i; - } - - #trade-oplayer-slots { - top: 40px * $i; - left: 268px * $i; +#trade-inventory { + display: flex; + flex-direction: column; + gap: 0.5em; + justify-content: center; - ul { - li { - .item-slot { - pointer-events: none; - } - } - } - } - - #trade-player-slots, - #trade-oplayer-slots { - width: 102px * $i; - height: 92px * $i; - - ul { - li { - .item-slot { - margin-bottom: 4px * $i; - } - } - } - } - - #trade-inventory-slots, - #trade-player-slots, - #trade-oplayer-slots { - ul { - li { - .item-slot { - margin-bottom: 4px * $i; - } - } - } - } - - #trade-player-name, - #trade-oplayer-name { - top: 13px * $i; - width: 104px * $i; - height: 10px * $i; - font-size: 10px * $i; - } - - #trade-status { - top: 27px * $i; - right: 22px * $i; - - width: 208px * $i; - height: 10px * $i; - - font-size: 6px * $i; - } - - #trade-player-name { - left: 140px * $i; - } - - #trade-oplayer-name { - left: 263px * $i; - } - - #trade-accept { - right: 77px * $i; - bottom: 7px * $i; - } - } + height: 100%; } -@media (--sm) { - #trade-inventory-slots { - top: 16px; - left: 10px; - width: 106px; - height: 90px; - } +#trade-player { + display: flex; + flex-direction: column; + gap: 0.5em; + align-items: center; +} - #trade-player-slots, - #trade-oplayer-slots { - top: 40px; - width: 106px; - height: 92px; - } +#trade-player-content { + display: flex; + flex-direction: row; + gap: 0.5em; + height: 100%; +} - #trade-player-slots { - left: 140px; - } +#trade-status { + height: 1em; + font-size: 0.75em; +} - #trade-oplayer-slots { - left: 260px; - } +#trade-accept { + width: 10em; } diff --git a/packages/client/scss/game/impl/_welcome.scss b/packages/client/scss/game/impl/_welcome.scss new file mode 100644 index 0000000000..0fe3c76acc --- /dev/null +++ b/packages/client/scss/game/impl/_welcome.scss @@ -0,0 +1,82 @@ +@use '../../abstracts/sprite'; + +#welcome { + z-index: 100; + bottom: -2em; + flex-direction: row; + + &-info { + flex: 1; + gap: 0.75em; + font-size: 0.8em; + } + + &-stats { + gap: 0.25em; + } + + &-changelog { + display: flex; + padding: 0.75em; + + ul { + overflow: auto; + display: grid; + gap: 0.2em; + } + } + + &-play { + overflow: auto; + flex: 1; + gap: 0.25em; + font-size: 0.95em; + } + + &-instructions-keyboard { + gap: 0.375em; + } + + .welcome-controls { + flex-direction: row; + gap: 0.25em; + justify-content: space-evenly; + } + + &-daily-rewards { + flex: 1; + + &-items { + flex-direction: row; + justify-content: space-evenly; + + .slice-item-slot { + width: 2.5em; + height: 2.5em; + } + } + } +} + +#controls-wasd, +#controls-arrows { + image-rendering: pixelated; + animation: 2.5s animate-instructions infinite steps(2); +} + +#controls-click { + image-rendering: pixelated; + animation: 2.5s animate-instructions-click infinite steps(2); +} + +@media (--portrait) { + #welcome { + flex-direction: column; + width: 18em; + height: 31em; + } +} + +@include sprite.sheet('controls/wasd', $selectors: #controls-wasd); +@include sprite.sheet('controls/arrows', $selectors: #controls-arrows); +@include sprite.sheet('controls/click', $selectors: #controls-click); diff --git a/packages/client/scss/game/impl/_zoom.scss b/packages/client/scss/game/impl/_zoom.scss index 60c2995192..0bff05f638 100644 --- a/packages/client/scss/game/impl/_zoom.scss +++ b/packages/client/scss/game/impl/_zoom.scss @@ -1,42 +1,36 @@ @use '../../abstracts/media'; +@use '../../abstracts/sprite'; + +@include sprite.sheet( + $image: 'main', + $width: 21, + $height: 21, + $scale: 3, + $hover: 1, + $active: 2, + $selectors: ( + #zoom-in, + #zoom-out + ) +); #zoom-buttons { position: absolute; top: 1em; - right: 2em; - transform: scale(2); + right: 1em; display: none; - flex-direction: row; + flex-flow: row; button { - width: 21px; - height: 21px; - background-color: transparent; - background-image: url('/img/interface/main.png'); border: none; - - &:hover { - background-position-x: -22px; - } - - &:active { - background-position-x: -44px; - } } } -#zoom-in { - background-position-y: -336px; -} - -#zoom-out { - background-position-y: -359px; -} - @media (--sm) { #zoom-buttons { display: flex; + flex-direction: row; } } diff --git a/packages/client/src/app.ts b/packages/client/src/app.ts index 9dd036d1b7..1f911caee6 100644 --- a/packages/client/src/app.ts +++ b/packages/client/src/app.ts @@ -1,12 +1,10 @@ import install from './lib/pwa'; -import { isMobile } from './utils/detect'; import Storage from './utils/storage'; import Util from './utils/util'; +import { isMobile } from './utils/detect'; import { onSecondaryPress } from './utils/press'; -import Updates from '@kaetram/common/text/en/updates.json'; - -import type { SerializedServer } from '@kaetram/common/types/api'; +import type { SerializedServer } from '@kaetram/common/types/network'; type EmptyCallback = () => void; type KeyDownCallback = (e: KeyboardEvent) => void; @@ -19,7 +17,7 @@ type MouseMoveCallback = (e: MouseEvent) => void; type ValidationType = 'status' | 'validation-error' | 'validation-warning'; export default class App { - public config = window.config; + public config = globalConfig; public storage: Storage = new Storage(); @@ -59,11 +57,11 @@ export default class App { private validation: NodeListOf = document.querySelectorAll('.validation-summary')!; private loading: HTMLElement = document.querySelector('.loader')!; + private langSelect: HTMLElement = document.querySelector('#lang-select')!; private worldSelectButton: HTMLElement = document.querySelector('#world-select-button')!; private gameVersion: HTMLElement = document.querySelector('#game-version')!; private currentScroll = 'load-character'; - private parchmentAnimating = false; private loggingIn = false; // Used to prevent interactions when trying to log in. private menuHidden = false; // Used to reroute key input to the callback. @@ -95,6 +93,14 @@ export default class App { */ private load(): void { + if (!this.config.acceptLicense) { + this.sendError( + 'You must read and accept both MPL2.0 and OPL licensing agreements. Once you have done so, toggle ACCEPT_LICENSE in your environment variables.' + ); + + return; + } + this.loginForm.addEventListener('submit', this.login.bind(this)); this.registerForm.addEventListener('submit', this.login.bind(this)); @@ -136,9 +142,13 @@ export default class App { window.addEventListener('focus', () => this.focusCallback?.()); // Body callbacks - onSecondaryPress(document.querySelector('#canvas')!, (position) => - this.rightClickCallback?.(position) + onSecondaryPress( + document.querySelector('#canvas')!, + (position) => this.rightClickCallback?.(position) ); + + for (let input of document.querySelectorAll("input[type='number']")) + input.addEventListener('input', () => this.validateNumberInput(input)); } /** @@ -189,6 +199,8 @@ export default class App { */ public ready(): void { + if (!this.config.acceptLicense) return; + this.sendStatus(); this.loginButton.disabled = false; @@ -227,6 +239,9 @@ export default class App { */ private saveLogin(): void { + // Prevent saving login if logging in as guest. + if (this.isGuest()) return; + // Always save the state of the remember me button. this.storage.setRemember(this.isRememberMe()); @@ -249,6 +264,7 @@ export default class App { this.body.className = 'intro'; this.menuHidden = false; + this.langSelect.hidden = false; this.worldSelectButton.hidden = false; this.gameVersion.hidden = false; } @@ -264,13 +280,12 @@ export default class App { this.body.className = 'game'; this.menuHidden = true; + this.langSelect.hidden = true; this.worldSelectButton.hidden = true; this.gameVersion.hidden = true; this.updateLoader(); this.saveLogin(); - - setTimeout(() => this.displayNews(), 1000); } /** @@ -281,7 +296,7 @@ export default class App { */ public openScroll(destination: string): void { - if (this.loggingIn || this.parchmentAnimating) return; + if (this.loggingIn) return; // Clears all errors that may have been displayed. this.clearErrors(); @@ -298,24 +313,16 @@ export default class App { public changeScroll(destination: string, withAnimation = false): void { if (withAnimation) { - this.parchmentAnimating = true; - // Toggle animation and remove the current scroll class from parchment. this.parchment.classList.toggle('animate'); this.parchment.classList.remove(this.currentScroll); - // Set a timeout for the animation before displaying data. - window.setTimeout(() => { - // Toggle so that we can allow changing scrolls again. - this.parchmentAnimating = false; - - // Animate again and add the new destination scroll. - this.parchment.classList.toggle('animate'); - this.parchment.classList.add(destination); + // Animate again and add the new destination scroll. + this.parchment.classList.toggle('animate'); + this.parchment.classList.add(destination); - // Focus on the first text field in the new scroll. - document.querySelector(`#${destination} input`)?.focus(); - }, 1000); + // Focus on the first text field in the new scroll. + document.querySelector(`#${destination} input`)?.focus(); } else { this.parchment.classList.remove(this.currentScroll); this.parchment.classList.add(destination); @@ -403,37 +410,6 @@ export default class App { this.loading.innerHTML = message ? message + this.getLoaderDots() : ''; } - /** - * When a new player or an update to the game has occurred we send a scroll - * notification. In the case of a new player we welcome them to the game, - * in the case of an update, we show the update changelog using the JSON in `common`. - */ - - public displayNews(): void { - let title = document.querySelector('#news-title')!, - content = document.querySelector('#news-content')!; - - if (!title || !content) return; - - // Show the default welcome screen when there is a new player. - if (this.storage.isNew()) return this.body.classList.add('news'); - - // Display new version changelogs. - if (this.storage.newVersion) { - title.textContent = `Kaetram ${this.config.version} Changelog`; - - let changes = Updates[this.config.version as keyof typeof Updates]; - - if (!changes) return; - - content.textContent = ''; - - for (let cc of changes.content) content.innerHTML += `${cc}
                                                                                              `; - - this.body.classList.add('news'); - } - } - /** * An error is a red message displayed on the login * or registration page. This is generally when something @@ -505,10 +481,11 @@ export default class App { this.loggingIn = toggle; - this.loading.hidden = !toggle; - this.loginButton.disabled = toggle; this.registerButton.disabled = toggle; + + document.querySelector(`#${this.currentScroll} .validation-summary`)?.append(this.loading); + this.loading.hidden = !toggle; } /** @@ -796,6 +773,14 @@ export default class App { } } + /** + * Validates number inputs from negative and decimal values. + */ + + private validateNumberInput(input: HTMLInputElement) { + input.value = input.value.replaceAll(/\D/g, ''); + } + /** * Handles the event of a key being initially pressed down. * @param callback Contains event data about the key pressed. diff --git a/packages/client/src/controllers/audio.ts b/packages/client/src/controllers/audio.ts index b9f4a337c7..c6bd3ea781 100644 --- a/packages/client/src/controllers/audio.ts +++ b/packages/client/src/controllers/audio.ts @@ -288,6 +288,7 @@ export default class AudioController { /** * Picks between the two possible hit sound effects * and plays one of them randomly. + * @param target The target used for dimensional audio. */ public playHitSound(target: Entity): void { @@ -296,9 +297,28 @@ export default class AudioController { /** * Plays one of the kill sound effects randomly. + * @param target The target used for dimensional audio. */ public playKillSound(target: Entity): void { this.playSound(`kill${Util.randomInt(1, 2)}`, target); } + + /** + * Plays one of the mining sound effects randomly. + * @param target The target used for dimensional audio. + */ + + public playMiningSound(target: Entity): void { + this.playSound(`mining${Util.randomInt(1, 3)}`, target); + } + + /** + * Plays one of the chopping sound effects randomly. + * @param target The target used for dimensional audio. + */ + + public playChoppingSound(target: Entity): void { + this.playSound(`wood${Util.randomInt(1, 4)}`, target); + } } diff --git a/packages/client/src/controllers/bubble.ts b/packages/client/src/controllers/bubble.ts index dd2ef77ee9..401e6341c5 100644 --- a/packages/client/src/controllers/bubble.ts +++ b/packages/client/src/controllers/bubble.ts @@ -1,14 +1,26 @@ import Blob from '../renderer/bubbles/blob'; +import { DEFAULT_ZOOM } from '../renderer/camera'; -import type Game from '../game'; +import type Camera from '../renderer/camera'; +import type Renderer from '../renderer/renderer'; +import type EntitiesController from './entities'; export default class BubbleController { + private camera: Camera; + private container: HTMLElement = document.querySelector('#bubbles')!; // Each entity's instance is associated with a bubble for the duration of a bubble. private bubbles: { [instance: string]: Blob } = {}; - public constructor(private game: Game) {} + private scale = 1; + + public constructor( + private renderer: Renderer, + private entities: EntitiesController + ) { + this.camera = this.renderer.camera; + } /** * This creates the blob that will be used to display text. The bubble @@ -43,18 +55,24 @@ export default class BubbleController { */ public setTo(instance: string, x: number, y: number): void { - let bubble = this.bubbles[instance], - { zoomFactor } = this.game.camera, - tileSize = this.game.renderer.tileSize * zoomFactor, - width = bubble.element.offsetWidth, - offset = width / 2 - tileSize / 2, - offsetY = -20; - - x = (x - this.game.camera.x) * zoomFactor; - y = (y - this.game.camera.y) * zoomFactor - tileSize * 2 - offsetY; - - bubble.element.style.left = `${x - offset + 3}px`; - bubble.element.style.top = `${y}px`; + let bubble = this.bubbles[instance]; + + // Update the position of the bubble. + bubble.setPosition(x, y); + + let { offsetWidth, offsetHeight, style } = bubble.element, + relativeX = (x - this.camera.x) * this.camera.zoomFactor, + relativeY = (y - this.camera.y) * this.camera.zoomFactor - this.renderer.actualTileSize, + offsetX = offsetWidth / 2 - this.renderer.actualTileSize / 2 - 6, + offsetY = offsetHeight * this.scale, + boundaryY = relativeY / this.renderer.canvasHeight; + + // Assign the CSS values based on our calculations. + style.left = `${relativeX - offsetX}px`; + style.top = `${relativeY - offsetY}px`; + + // Clip the bubble blob if it is outside of the screen. + if (boundaryY < 0.1) style.top = '0'; } /** @@ -67,7 +85,7 @@ export default class BubbleController { public update(time: number): void { for (let bubble of Object.values(this.bubbles)) { - let entity = this.game.entities.get(bubble.instance); + let entity = this.entities.get(bubble.instance); // If there is an entity, we set the bubble to its position. if (entity) this.setTo(entity.instance, entity.x, entity.y); @@ -80,6 +98,15 @@ export default class BubbleController { } } + /** + * Handles resizing the bubbles currently visible and updating the zoom scaling relative + * to the default scale. + */ + + public resize(): void { + this.scale = DEFAULT_ZOOM / this.camera.zoomFactor; + } + /** * Removes a bubble based on its instance. Checks if it exists * first then calls the destroy command with the bubble. diff --git a/packages/client/src/controllers/chat.ts b/packages/client/src/controllers/chat.ts index 63965b93fa..64bfbf2d9f 100644 --- a/packages/client/src/controllers/chat.ts +++ b/packages/client/src/controllers/chat.ts @@ -1,4 +1,5 @@ import Util from '../utils/util'; +import { isMobile } from '../utils/detect'; import { Packets } from '@kaetram/common/network'; @@ -6,6 +7,7 @@ import type Game from '../game'; export default class ChatController { private chatBox: HTMLElement = document.querySelector('#chat')!; + private chatFrame: HTMLElement = document.querySelector('#chat-frame')!; private log: HTMLElement = document.querySelector('#chat-log')!; private input: HTMLInputElement = document.querySelector('#chat-input')!; private button = document.querySelector('#chat-button')!; @@ -17,6 +19,8 @@ export default class ChatController { this.button.addEventListener('click', () => this.toggle()); this.input.addEventListener('blur', () => this.hide()); + + if (isMobile()) this.input.addEventListener('click', () => this.input.focus()); } /** @@ -60,7 +64,7 @@ export default class ChatController { element.style.color = colour || 'white'; if (notify) element.style.fontWeight = 'bold'; - this.displayChatBox(); + this.display(); // Start the timeout for hiding the chatbox. this.hideChatBox(); @@ -103,30 +107,33 @@ export default class ChatController { this.clearTimeout(); if (this.inputVisible()) this.hide(); - else this.display(); + else this.display(true); } /** * Makes the input field for the chat visible. * It also updates the state of the chat button. - * @param text Optional parameter for the text to display in the input field. + * @param withInput Whether to display the input field with text. */ - private display(): void { + private display(withInput = false): void { this.button.classList.add('active'); - if (this.inputVisible()) this.input.style.display = 'block'; - else Util.fadeIn(this.input); - this.displayChatBox(); - // Fade input in, clear the input field, and focus it. - this.input.focus(); - this.input.value = ''; + // Display the chat frame and input field. + if (withInput) { + this.displayChatFrame(); - this.log.scrollTop = this.log.scrollHeight; + if (this.inputVisible()) this.input.style.display = 'flex'; + else Util.fadeIn(this.input); + + // Fade input in, clear the input field, and focus it. + if (!isMobile()) this.input.focus(); + this.input.value = ''; + } else this.hideChatFrame(); - Util.fadeIn(this.input); + this.log.scrollTop = this.log.scrollHeight; } /** @@ -137,6 +144,16 @@ export default class ChatController { Util.fadeIn(this.chatBox); } + /** + * Fades in the chat frame. + */ + + private displayChatFrame(): void { + Util.fadeIn(this.chatFrame); + + this.chatBox.style.pointerEvents = 'auto'; + } + /** * Clears the input field and hides it from the view. * It also updates the state of the chat button. @@ -155,6 +172,8 @@ export default class ChatController { this.log.scrollTop = this.log.scrollHeight; Util.fadeOut(this.input); + + this.hideChatFrame(); } /** @@ -170,13 +189,23 @@ export default class ChatController { }, this.fadingDuration); } + /** + * Hides the chat frame after fading it out. + */ + + private hideChatFrame(): void { + Util.fadeOut(this.chatFrame); + + this.chatBox.style.pointerEvents = 'none'; + } + /** * Checks if the input element has a visible value. * @returns Whether `:visible` flag is in the HTML element. */ public inputVisible(): boolean { - return this.input.style.display === 'block'; + return this.input.style.display === 'flex'; } /** diff --git a/packages/client/src/controllers/entities.ts b/packages/client/src/controllers/entities.ts index ac3d9d7d11..b1fe1b0b38 100644 --- a/packages/client/src/controllers/entities.ts +++ b/packages/client/src/controllers/entities.ts @@ -1,6 +1,5 @@ import log from '../lib/log'; import NPC from '../entity/npc/npc'; -import Grids from '../renderer/grids'; import Item from '../entity/objects/item'; import Chest from '../entity/objects/chest'; import Mob from '../entity/character/mob/mob'; @@ -8,21 +7,31 @@ import Pet from '../entity/character/pet/pet'; import Player from '../entity/character/player/player'; import Projectile from '../entity/objects/projectile'; import Effect from '../entity/objects/effect'; +import Tree from '../entity/objects/resource/impl/tree'; +import Rock from '../entity/objects/resource/impl/rock'; +import FishSpot from '../entity/objects/resource/impl/fishspot'; +import Foraging from '../entity/objects/resource/impl/foraging'; import { Modules } from '@kaetram/common/network'; +import type Grids from '../map/grids'; import type Game from '../game'; import type Entity from '../entity/entity'; import type SpritesController from './sprites'; import type Character from '../entity/character/character'; -import type { EntityData } from '@kaetram/common/types/entity'; -import type { PlayerData } from '@kaetram/common/types/player'; import type { PetData } from '@kaetram/common/types/pet'; +import type { PlayerData } from '@kaetram/common/network/impl/player'; +import type { EntityData, EntityDisplayInfo } from '@kaetram/common/types/entity'; +import type { ResourceEntityData } from '@kaetram/common/types/resource'; interface EntitiesCollection { [instance: string]: Entity; } +interface EntityUpdateQueue { + [instance: string]: EntityDisplayInfo; +} + export interface Movable { string: number; characterId: string; @@ -36,11 +45,13 @@ export default class EntitiesController { public sprites: SpritesController; public entities: EntitiesCollection = {}; + public entityUpdateQueue: EntityUpdateQueue = {}; + public decrepit: Entity[] = []; public constructor(private game: Game) { - this.grids = new Grids(game.map); this.sprites = game.sprites; + this.grids = game.map.grids; game.input.loadCursors(); } @@ -79,6 +90,7 @@ export default class EntitiesController { break; } + case Modules.EntityType.LootBag: case Modules.EntityType.Item: { entity = this.createItem(info); @@ -120,15 +132,43 @@ export default class EntitiesController { prefix = 'effectentity'; break; } + + case Modules.EntityType.Tree: { + entity = this.createTree(info as ResourceEntityData); + + prefix = 'trees'; + break; + } + + case Modules.EntityType.Rock: { + entity = this.createRock(info as ResourceEntityData); + + prefix = 'rocks'; + break; + } + + case Modules.EntityType.FishSpot: { + entity = this.createFishSpot(info as ResourceEntityData); + + prefix = 'fishspots'; + break; + } + + case Modules.EntityType.Foraging: { + entity = this.createForaging(info as ResourceEntityData); + + prefix = 'bushes'; + break; + } } // Something went wrong creating the entity. if (!entity) return log.error(`Failed to create entity ${info.instance}`); - let sprite = this.game.sprites.get(`${prefix}/${info.key}`); + let sprite = entity.sprite || this.game.sprites.get(`${prefix}/${info.key}`); // Don't add entities that don't have a sprite. - if (!sprite) return log.error(`Failed to create sprite for entity ${info.key}.`); + if (!sprite) return console.trace(`Failed to create sprite for entity ${info.key}.`); // The name the player sees for an entity. entity.name = info.name; @@ -143,6 +183,12 @@ export default class EntitiesController { entity.idle(); this.addEntity(entity); + + // If the instance exists in the update queue, add the display info and remove it from the queue. + if (info.instance in this.entityUpdateQueue) { + entity.updateDisplayInfo(this.entityUpdateQueue[info.instance]); + delete this.entityUpdateQueue[info.instance]; + } } /** @@ -217,20 +263,13 @@ export default class EntitiesController { let attacker = this.get(info.ownerInstance!), target = this.get(info.targetInstance!); - if (!attacker || !target) return undefined; + if (!target) return undefined; - attacker.lookAt(target); - - let projectile = new Projectile(info.instance, attacker, info.hitType!); + let projectile = new Projectile(info.instance, info.hit!.type!); projectile.name = info.name; - - projectile.setStart(attacker.x, attacker.y); projectile.setTarget(target); - projectile.angled = true; - projectile.type = info.type; - /** * Move this into the external overall function */ @@ -246,19 +285,29 @@ export default class EntitiesController { if (impactEffect !== Modules.Effects.None) target.addEffect(impactEffect); this.game.info.create( - info.hitType!, - info.damage!, + info.hit!.type!, + info.hit!.damage!, target.x, target.y, - this.isPlayer(target.instance) + this.isPlayer(target.instance), + -1, + true, + info.hit!.skills ); target.triggerHealthBar(); + target.toggleHurt(); this.unregisterPosition(projectile); delete this.entities[projectile.instance]; }); + // Stop here and return the projectile if the attacker despawns (e.g. out of view). + if (!attacker) return projectile; + + projectile.setGridPosition(attacker.gridX, attacker.gridY); + + attacker.lookAt(target); attacker.performAction(attacker.orientation, Modules.Actions.Attack); attacker.triggerHealthBar(); @@ -280,6 +329,9 @@ export default class EntitiesController { player.ready = true; + // If the player has a light source then we add it to the renderer. + if (player.hasLight()) this.game.renderer.addPlayerLight(player); + return player; } @@ -297,8 +349,13 @@ export default class EntitiesController { // Add the pet as the owner's follower. if (owner) { + owner.hasPet = true; + owner.addFollower(pet); pet.setTarget(owner); + + // Synchronizes the interfaces with the pet's addition. + if (owner.instance === this.game.player.instance) this.game.player.sync(); } return pet; @@ -314,6 +371,66 @@ export default class EntitiesController { return new Effect(info.instance); } + /** + * Creates a new tree object based on the info provided. + * @param info Contains the key and instance of the tree. + * @returns A new tree object. + */ + + private createTree(info: ResourceEntityData): Entity { + let tree = new Tree(info.instance); + + // Update the state of the tree. + tree.exhausted = info.state === Modules.ResourceState.Depleted; + + return tree; + } + + /** + * Creates a new rock object based on the info provided. + * @param info Contains the key and instance of the rock. + * @returns A new rock object. + */ + + private createRock(info: ResourceEntityData): Entity { + let rock = new Rock(info.instance); + + // Update the state of the rock. + rock.exhausted = info.state === Modules.ResourceState.Depleted; + + return rock; + } + + /** + * Creates a new fish spot object based on the info provided. + * @param info Contains the key and instance of the fish spot. + * @returns A new fish spot object. + */ + + private createFishSpot(info: ResourceEntityData): Entity { + let fishSpot = new FishSpot(info.instance); + + // Update the state of the fish spot. + fishSpot.exhausted = info.state === Modules.ResourceState.Depleted; + + return fishSpot; + } + + /** + * Creates a new foraging object based on the info provided. + * @param info Contains the key and instance of the foraging. + * @returns A new foraging object. + */ + + private createForaging(info: ResourceEntityData): Entity { + let foraging = new Foraging(info.instance); + + // Update the state of the foraging. + foraging.exhausted = info.state === Modules.ResourceState.Depleted; + + return foraging; + } + /** * Checks if the instance provided is the same as the main player. * @param instance The instance we are checking. @@ -335,6 +452,16 @@ export default class EntitiesController { return this.entities[instance] as E; } + /** + * Used for filtering out the existing entities from the batch + * that the server will send us. + * @returns The instance list of entities currently loaded. + */ + + public getEntityList(): string[] { + return Object.keys(this.entities); + } + /** * Adds an entity to the rendering grid and the list of entities. * We do not render in the fading if the user is on a mobile device. @@ -363,7 +490,13 @@ export default class EntitiesController { let owner = this.get(entity.owner) as Player; // Remove the pet from the owner's list of followers. - if (owner) owner.removeFollower(entity); + if (owner) { + owner.hasPet = false; + owner.removeFollower(entity); + + // Synchronizes the player's menu interfaces to represent the pet's removal. + if (owner.instance === this.game.player.instance) this.game.player.sync(); + } } this.unregisterPosition(entity); @@ -418,6 +551,10 @@ export default class EntitiesController { */ public registerPosition(entity: Entity): void { + // Tree entities are registered as colliding on the rendering grid. + if (entity.isResource() || entity.isNPC()) + this.game.map.grid[entity.gridY][entity.gridX] = 2; + this.grids.addToRenderingGrid(entity); } @@ -455,9 +592,13 @@ export default class EntitiesController { */ public cleanDisplayInfo(): void { - for (let entity of Object.values(this.entities)) { + for (let instance in this.entities) { + let entity = this.entities[instance]; + entity.nameColour = ''; entity.customScale = 0; + entity.exclamation = false; + entity.blueExclamation = false; } } diff --git a/packages/client/src/controllers/hud.ts b/packages/client/src/controllers/hud.ts index cda28dd3a0..65a7692e4d 100644 --- a/packages/client/src/controllers/hud.ts +++ b/packages/client/src/controllers/hud.ts @@ -76,11 +76,11 @@ export default class HUDController { private setHealth(hitPoints: number): void { if (!this.hasHealth()) return; - this.health.style.display = 'block'; + this.health.style.display = 'flex'; let { maxHitPoints } = this.hovering as Character; - this.health.style.width = `${Math.ceil((hitPoints / maxHitPoints) * 100) - 10}%`; + this.health.style.width = `${Math.ceil((hitPoints / maxHitPoints) * 100)}%`; this.details.innerHTML = `${hitPoints} / ${maxHitPoints}`; } @@ -131,7 +131,7 @@ export default class HUDController { */ private isVisible(): boolean { - return this.attackInfo.style.display === 'block'; + return this.attackInfo.style.display === 'flex'; } /** diff --git a/packages/client/src/controllers/info.ts b/packages/client/src/controllers/info.ts index 36f631fdd4..91b1a24dea 100644 --- a/packages/client/src/controllers/info.ts +++ b/packages/client/src/controllers/info.ts @@ -22,16 +22,17 @@ export default class InfoController { y: number, isTarget = false, skill = -1, - randomize = false + randomize = false, + skills: string[] = [] ): void { if (randomize) { - x += Utils.randomInt(-16, 16); - y += Utils.randomInt(-10, 10); + x += Utils.randomInt(-8, 8); + y += Utils.randomInt(-6, 6); } let id = Utils.createId(Date.now(), x, y); - this.addInfo(new Splat(id, type, amount, x, y, isTarget, skill)); + this.addInfo(new Splat(id, type, amount, x, y, isTarget, skill, skills)); } /** diff --git a/packages/client/src/controllers/input.ts b/packages/client/src/controllers/input.ts index c12865f77c..0b0fc363fe 100644 --- a/packages/client/src/controllers/input.ts +++ b/packages/client/src/controllers/input.ts @@ -3,8 +3,8 @@ import HUDController from './hud'; import Animation from '../entity/animation'; import log from '../lib/log'; -import { isMobile } from '../utils/detect'; import Character from '../entity/character/character'; +import { isMobile } from '../utils/detect'; import { Modules, Packets, Opcodes } from '@kaetram/common/network'; @@ -21,6 +21,11 @@ import type Map from '../map/map'; import type Trade from '../menu/trade'; import type Leaderboards from '../menu/leaderboards'; import type Guilds from '../menu/guilds'; +import type Tree from '../entity/objects/resource/impl/tree'; +import type Rock from '../entity/objects/resource/impl/rock'; +import type FishSpot from '../entity/objects/resource/impl/fishspot'; +import type Foraging from '../entity/objects/resource/impl/foraging'; +import type Store from '../menu/store'; interface TargetData { sprite: Sprite; @@ -45,10 +50,12 @@ export default class InputController { private trade: Trade; private leaderboards: Leaderboards; private guilds: Guilds; + private store: Store; public selectedCellVisible = false; public keyMovement = false; public targetVisible = true; + public isOnCanvas = false; public selectedX = -1; public selectedY = -1; @@ -69,7 +76,7 @@ export default class InputController { */ public chatHandler: Chat; public hud: HUDController; - public targetAnimation: Animation = new Animation('move', 4, 0, 16, 16); + public targetAnimation: Animation = new Animation('move', 2, 0, 16, 16); public entity: Entity | undefined; public interactEntity: Entity | undefined; // Used to store entity while the interact menu is active. @@ -85,6 +92,7 @@ export default class InputController { this.trade = game.menu.getTrade(); this.leaderboards = game.menu.getLeaderboards(); this.guilds = game.menu.getGuilds(); + this.store = game.menu.getStore(); this.chatHandler = new Chat(game); this.hud = new HUDController(this); @@ -99,6 +107,8 @@ export default class InputController { this.app.onMouseMove((event: MouseEvent) => { if (!this.game.started) return; + this.isOnCanvas = event.target instanceof HTMLCanvasElement; + this.setCoords(event); this.moveCursor(); }); @@ -130,6 +140,8 @@ export default class InputController { this.cursors.cooking = this.game.sprites.get('cursors/cooking'); this.cursors.fishing = this.game.sprites.get('cursors/fishing'); this.cursors.smithing = this.game.sprites.get('cursors/smithing'); + this.cursors.smelting = this.game.sprites.get('cursors/smelting'); + this.cursors.chiseling = this.game.sprites.get('cursors/chiseling'); this.cursors.crafting = this.game.sprites.get('cursors/crafting'); this.cursors.foraging = this.game.sprites.get('cursors/foraging'); @@ -147,6 +159,7 @@ export default class InputController { this.keyMovement = false; this.player.disableAction = false; + this.player.joystickMovement = false; // Admin command for teleporting to a location. if (this.isCtrlKey()) @@ -187,6 +200,10 @@ export default class InputController { */ private handleKeyDown(event: KeyboardEvent): void { + // Redirect input to the store handler if the store is visible. + if (this.store.isVisible()) return this.store.keyDown(event.key); + + // Redirect input to the guilds handler if the guilds are visible. if (this.guilds.isVisible()) return this.guilds.keyDown(event.key); // Redirect input to the leaderboards handler if the leaderboards are visible. @@ -208,6 +225,7 @@ export default class InputController { switch (event.key) { case 'w': + case 'W': case 'ц': case 'ArrowUp': { this.player.moveUp = true; @@ -215,6 +233,7 @@ export default class InputController { } case 'a': + case 'A': case 'ф': case 'ArrowLeft': { this.player.moveLeft = true; @@ -222,6 +241,7 @@ export default class InputController { } case 's': + case 'S': case 'ы': case 'ArrowDown': { this.player.moveDown = true; @@ -229,6 +249,7 @@ export default class InputController { } case 'd': + case 'D': case 'в': case 'ArrowRight': { this.player.moveRight = true; @@ -265,7 +286,7 @@ export default class InputController { if (!target) return; - this.setAttackTarget(); + this.setInteractionTarget(); this.setPosition(target.gridX, target.gridY); this.player.follow(target); @@ -399,6 +420,7 @@ export default class InputController { if (this.player.hasPath()) return; this.keyMovement = true; + this.player.joystickMovement = false; this.move(position); } @@ -411,7 +433,7 @@ export default class InputController { * @param position The grid coordinates of the position we're requesting. */ - private move(position: Coordinate, useSearch = !this.keyMovement): void { + public move(position: Coordinate, useSearch = !this.keyMovement): void { if (this.player.stunned || this.player.teleporting) return; // Default the target to the passive one. @@ -430,8 +452,11 @@ export default class InputController { this.game.menu.hide(); // Handle object interaction. - if (this.game.map.isObject(position.gridX, position.gridY)) + if (this.game.map.isObject(position.gridX, position.gridY)) { + this.setInteractionTarget(); + return this.player.setObjectTarget(position); + } // Remove player's targets prior to an action. this.player.removeTarget(); @@ -439,21 +464,32 @@ export default class InputController { // Handle NPC interaction. this.entity = this.getEntity(position, useSearch); - if (this.entity && this.entity.instance !== this.player.instance) { - this.setAttackTarget(); + // Check that the entity exists and we're not targeting ourselves. + if (this.entity && this.entity?.instance !== this.player.instance) { + // Attack target if we're interacting with a mob or a player in a PVP area. + if (this.entity.isMob() || (this.entity.isPlayer() && !this.entity.pvp)) + this.setAttackTarget(); + else this.setInteractionTarget(); // Set target and follow a targetable entity. if (this.isTargetable(this.entity)) { this.player.follow(this.entity); - if (this.isAttackable(this.entity)) + // This is to initiate the attack if we're within the range of the target. + if (this.isAttackable(this.entity)) { (this.entity as Character).addAttacker(this.player); - if (this.player.isRanged()) - this.game.socket.send(Packets.Target, [ - Opcodes.Target.Attack, - this.entity.instance - ]); + // Update the last target to the last clicked attackable entity. + this.player.lastTarget = this.entity.instance; + + if (this.player.canAttackTarget()) + this.game.socket.send(Packets.Target, [ + Opcodes.Target.Attack, + this.entity.instance, + this.entity.gridX, + this.entity.gridY + ]); + } return; } } @@ -475,6 +511,9 @@ export default class InputController { public moveCursor(): void { if (isMobile()) return; + // If the cursor is not on the canvas, we default to the hand cursor. + if (!this.isOnCanvas) return this.setCursor(this.cursors.hand); + let position = this.getCoords(), entity = this.game.searchForEntityAt(position); @@ -532,6 +571,41 @@ export default class InputController { break; } + case Modules.EntityType.Tree: { + if ((entity as Tree).exhausted) return; + + this.setCursor(this.cursors.axe); + this.hovering = Modules.Hovering.Tree; + break; + } + + case Modules.EntityType.Rock: { + if ((entity as Rock).exhausted) return; + + this.setCursor(this.cursors.pickaxe); + this.hovering = Modules.Hovering.Rock; + + break; + } + + case Modules.EntityType.FishSpot: { + if ((entity as FishSpot).exhausted) return; + + this.setCursor(this.cursors.fishing); + this.hovering = Modules.Hovering.FishSpot; + + break; + } + + case Modules.EntityType.Foraging: { + if ((entity as Foraging).exhausted) return; + + this.setCursor(this.cursors.foraging); + this.hovering = Modules.Hovering.Foraging; + + break; + } + case Modules.EntityType.Player: { if (this.game.pvp) { this.setCursor(this.getAttackCursor()); @@ -555,7 +629,7 @@ export default class InputController { // Remove the silhouette from the previous entity. if (this.entity && (!entity || entity.instance !== this.entity.instance)) - this.entity.updateSilhouette(false); + this.entity.updateSilhouette(); return entity; } @@ -588,7 +662,7 @@ export default class InputController { */ private setCursor(cursor: Sprite): void { - if (cursor) this.cursor = cursor; + this.cursor = cursor; } /** @@ -600,6 +674,16 @@ export default class InputController { this.targetAnimation.setRow(0); } + /** + * Sets the animation for the target to the question + * mark sprite indicating a target-based interaction + * is occurring. + */ + + private setInteractionTarget(): void { + this.targetAnimation.setRow(1); + } + /** * Sets the animation for the target to the red * spinning sprite indicating a target-based @@ -607,7 +691,7 @@ export default class InputController { */ private setAttackTarget(): void { - this.targetAnimation.setRow(1); + this.targetAnimation.setRow(2); } /** @@ -657,8 +741,8 @@ export default class InputController { offsetY = this.mouse.y % this.camera.zoomFactor, x = (this.mouse.x - offsetX) / this.camera.zoomFactor + this.camera.x, y = (this.mouse.y - offsetY) / this.camera.zoomFactor + this.camera.y, - gridX = Math.floor(x / this.map.tileSize), - gridY = Math.floor(y / this.map.tileSize); + gridX = ~~(x / this.map.tileSize), + gridY = ~~(y / this.map.tileSize); return { x, y, gridX, gridY }; } @@ -712,7 +796,9 @@ export default class InputController { */ private isTargetable(entity: Entity): boolean { - return this.isAttackable(entity) || entity.isNPC() || entity.isChest(); + return ( + this.isAttackable(entity) || entity.isNPC() || entity.isChest() || entity.isResource() + ); } /** diff --git a/packages/client/src/controllers/joystick.ts b/packages/client/src/controllers/joystick.ts new file mode 100644 index 0000000000..a2afee10c2 --- /dev/null +++ b/packages/client/src/controllers/joystick.ts @@ -0,0 +1,110 @@ +import type Game from '../game'; + +/** + * Joystick controller for mobile devices. + */ +export default class JoystickController { + private container: HTMLDivElement = document.querySelector('#joystick')!; + private handle: HTMLDivElement = document.querySelector('#joystick-handle')!; + + private position!: Position; + /** Whether or not the joystick is being moving. */ + private moving = false; + + public constructor(public game: Game) { + this.container.addEventListener('touchstart', (event) => { + this.handle.classList.add('active'); + this.onTouch(event); + }); + this.container.addEventListener('touchmove', this.onTouch.bind(this)); + this.container.addEventListener('touchend', this.onTouchEnd.bind(this)); + this.container.addEventListener('touchcancel', this.onTouchEnd.bind(this)); + } + + /** + * Show the joystick. + */ + + public show() { + this.container.hidden = false; + } + + /** + * Hide the joystick. + */ + + public hide() { + this.container.hidden = true; + } + + /** + * Handles the touch event for the joystick. + * @param event The touch event. + */ + + private onTouch(event: TouchEvent) { + let [{ clientX, clientY }] = event.touches, + { left, top, width, height } = this.container.getBoundingClientRect(), + // Calculate the distance from the center of the joystick (both from 0 to 1). + dx = Math.max(0, Math.min(1, (clientX - left) / width)), + dy = Math.max(0, Math.min(1, (clientY - top) / height)), + // Calculate and restrict the distance from the center of the joystick (from 0 to 0.75). + distance = Math.min(0.75, Math.hypot(dx - 0.5, dy - 0.5) * 2), + // Using the distance, calculate the angle of the joystick (from -PI to PI). + angle = Math.atan2(dy - 0.5, dx - 0.5), + // Unit vector of the angle (from -1 to 1). + ux = Math.cos(angle), + uy = Math.sin(angle); + + // Translate the handle to the calculated position. + this.handle.style.transform = `translate(${ux * distance * 100}%, ${uy * distance * 100}%)`; + + // If the distance is less than 0.25, we don't want to move. + if (distance < 0.25) { + this.moving = false; + this.game.player.joystickMovement = false; + + return; + } + + let wasMoving = this.moving; + + // Set the position and start moving. + this.position = { x: Math.round(ux), y: Math.round(uy) }; + this.moving = true; + this.game.player.joystickMovement = true; + + // Only call `move` if we weren't already moving. + if (!wasMoving) this.move(); + } + + /** + * Handles the movement of the player using the joystick's position. + */ + + private move() { + let { player, map, input } = this.game, + // Calculate the player's position on the grid. + x = player.x + this.position.x * map.tileSize, + y = player.y + this.position.y * map.tileSize, + gridX = Math.round(player.x / map.tileSize + this.position.x), + gridY = Math.round(player.y / map.tileSize + this.position.y); + + input.player.disableAction = false; + + input.move({ x, y, gridX, gridY }, false); + + if (this.moving) requestAnimationFrame(this.move.bind(this)); + } + + /** + * Handles the touch end event for the joystick. + */ + + private onTouchEnd() { + this.moving = false; + + this.handle.classList.remove('active'); + this.handle.style.transform = ''; + } +} diff --git a/packages/client/src/controllers/menu.ts b/packages/client/src/controllers/menu.ts index 2538d3ba1a..c9d5081949 100644 --- a/packages/client/src/controllers/menu.ts +++ b/packages/client/src/controllers/menu.ts @@ -17,6 +17,9 @@ import Interact from '../menu/interact'; import Leaderboards from '../menu/leaderboards'; import Guilds from '../menu/guilds'; import Crafting from '../menu/crafting'; +import LootBag from '../menu/lootbag'; +import Welcome from '../menu/welcome'; +import Quest from '../menu/quest'; import { Modules, Opcodes, Packets } from '@kaetram/common/network'; @@ -25,14 +28,14 @@ import type Menu from '../menu/menu'; export default class MenuController { private actions: Actions = new Actions(); - private crafting: Crafting = new Crafting(); + private warp: Warp = new Warp(); + private crafting: Crafting; private inventory: Inventory; private bank: Bank; private store: Store; private profile: Profile; private enchant: Enchant; - private warp: Warp; private notification: Notification; private settings: Settings; private equipments: Equipments; @@ -43,29 +46,35 @@ export default class MenuController { private interact: Interact; private leaderboards: Leaderboards; private guilds: Guilds; + private lootBag: LootBag; + private welcome: Welcome; + private quest: Quest; public header: Header; public menus: { [key: string]: Menu }; public constructor(private game: Game) { + this.crafting = new Crafting(game.player); this.inventory = new Inventory(this.actions); this.bank = new Bank(this.inventory); this.store = new Store(this.inventory); this.profile = new Profile(game.player); this.enchant = new Enchant(this.inventory); - this.warp = new Warp(game.socket); this.notification = new Notification(); this.settings = new Settings(game); this.header = new Header(game.player); - this.equipments = new Equipments(game.player, game.sprites); + this.equipments = new Equipments(game); this.achievements = new Achievements(game.player); this.quests = new Quests(game.player); - this.friends = new Friends(game.player); + this.friends = new Friends(game); this.trade = new Trade(this.inventory); this.interact = new Interact(game.player); this.leaderboards = new Leaderboards(game.app); this.guilds = new Guilds(game); + this.lootBag = new LootBag(this.inventory); + this.welcome = new Welcome(game); + this.quest = new Quest(game.player); this.menus = { inventory: this.inventory, @@ -84,7 +93,10 @@ export default class MenuController { interact: this.interact, leaderboards: this.leaderboards, guilds: this.guilds, - crafting: this.crafting + crafting: this.crafting, + lootBag: this.lootBag, + welcome: this.welcome, + quest: this.quest }; this.inventory.onSelect(this.handleInventorySelect.bind(this)); @@ -94,7 +106,7 @@ export default class MenuController { this.profile.onUnequip(this.handleProfileUnequip.bind(this)); this.profile.onAttackStyle(this.handleProfileAttackStyle.bind(this)); - this.profile.onAbility(this.handleAbility.bind(this)); + this.profile.onPickup(this.handleProfilePickup.bind(this)); this.enchant.onSelect(this.handleEnchantSelect.bind(this)); this.enchant.onConfirm(this.handleEnchantConfirm.bind(this)); @@ -110,6 +122,10 @@ export default class MenuController { this.crafting.onSelect(this.handleCraftingSelect.bind(this)); this.crafting.onCraft(this.handleCraftingConfirm.bind(this)); + this.lootBag.onSelect(this.handleLootBagSelect.bind(this)); + + this.quest.onAccept(this.handleQuestAccept.bind(this)); + this.load(); } @@ -155,6 +171,19 @@ export default class MenuController { this.forEachMenu((menu: Menu) => menu.resize()); } + /** + * Attempts to find an interface based on a specified identifiers. + * @param identifier The identifier of the interface we are looking for. + * @returns A menu object if found, otherwise undefined. + */ + + public get(identifier: Modules.Interfaces): Menu | undefined { + for (let key in this.menus) + if (this.menus[key].identifier === (identifier as number)) return this.menus[key]; + + return undefined; + } + /** * @returns The interact menu object. */ @@ -275,6 +304,30 @@ export default class MenuController { return this.crafting; } + /** + * @returns The loot bag menu object. + */ + + public getLootBag(): LootBag { + return this.lootBag; + } + + /** + * @returns The welcome menu object. + */ + + public getWelcome(): Welcome { + return this.welcome; + } + + /** + * @returns The quest menu object. + */ + + public getQuest(): Quest { + return this.quest; + } + /** * Callback handler for when an item in the inventory is selected. * @param fromIndex Index of the item selected. @@ -285,13 +338,13 @@ export default class MenuController { private handleInventorySelect( opcode: Opcodes.Container, fromIndex: number, - toIndex?: number + value?: number ): void { this.game.socket.send(Packets.Container, { opcode, type: Modules.ContainerType.Inventory, fromIndex, - value: toIndex + value }); } @@ -362,6 +415,16 @@ export default class MenuController { }); } + /** + * Sends a packet to the server to indicate wanting to pickup a pet. + */ + + private handleProfilePickup(): void { + this.game.socket.send(Packets.Pet, { + opcode: Opcodes.Pet.Pickup + }); + } + /** * Callback for when an action within the abilities menu occurs. * Generally this will consist of activating an ability or dragging it @@ -511,6 +574,29 @@ export default class MenuController { }); } + /** + * Handles selecting an item in a loot bag. + * @param index The index of the item we are selecting. + */ + + private handleLootBagSelect(index: number): void { + this.game.socket.send(Packets.LootBag, { + opcode: Opcodes.LootBag.Take, + index + }); + } + + /** + * Handles accepting a quest from the quest interface. + * @param key The key of the quest we are accepting. + */ + + private handleQuestAccept(key: string): void { + this.game.socket.send(Packets.Quest, { + key + }); + } + /** * Iterates through all the menus and passes a callback. * @param callback Current menu being iterated through. diff --git a/packages/client/src/controllers/pointer.ts b/packages/client/src/controllers/pointer.ts index bbad27f30e..88959b084f 100644 --- a/packages/client/src/controllers/pointer.ts +++ b/packages/client/src/controllers/pointer.ts @@ -1,204 +1,176 @@ import Arrow from '../renderer/pointers/arrow'; +import { DEFAULT_ZOOM } from '../renderer/camera'; import { Opcodes } from '@kaetram/common/network'; -import type Entity from '../entity/entity'; -import type Game from '../game'; +import type Renderer from '../renderer/renderer'; import type Camera from '../renderer/camera'; +import type EntitiesController from './entities'; export default class PointerController { private camera: Camera; - private pointers: { [id: string]: Arrow } = {}; + private pointers: { [instance: string]: Arrow } = {}; - private container: HTMLElement = document.querySelector('#bubbles')!; + private bubbles: HTMLElement = document.querySelector('#bubbles')!; - public constructor(private game: Game) { - this.camera = this.game.camera; + private scale = 1; + + public constructor( + private renderer: Renderer, + private entities: EntitiesController + ) { + this.camera = this.renderer.camera; } - public create(id: string, type: Opcodes.Pointer, name?: string): void { - let { pointers, container } = this; + /** + * Creates a pointer given the type specified. Some pointers are static and + * bind to a tile on the map. Others are bounded to an entity. Lastly, some + * are static pointers relative to the screen. + * @param type The type of pointer we are creating (one that binds to an entity, + * one that binds to a tile, and so on.) + * @param instance The instance of the pointer (used as an identifier). + * @param x (Optional) The x position of the pointer (relative or absolute). + * @param y (Optional) The y position of the pointer (relative or absolute). + */ + + public create(type: Opcodes.Pointer, instance: string, x = -1, y = -1): void { + // Pointer already exists for a specified instance, stop here. + if (instance in this.pointers) return; + + // Create a new pointer. + let pointer = new Arrow(type, instance); + + // Set the position for the pointer. + pointer.setPosition(x, y); - if (id in pointers) return; + // Add the pointer to the list of pointers. + this.pointers[instance] = pointer; - switch (type) { - case Opcodes.Pointer.Button: { - let element = document.createElement('div'); + // Append the pointer to the bubbles container. + this.bubbles.append(pointer.element); + } - element.id = name!; + /** + * Calculates the position of the pointer on the screen based on its position + * in the game. We do some magic camera calculations here. + * @param pointer The pointer that we are calculating the position for. + * @param x The x position of the pointer in the game. + * @param y The y position of the pointer in the game. + */ - pointers[id] = new Arrow(id, element, type); + private set(pointer: Arrow, x: number, y: number): void { + pointer.setPosition(x, y); - break; - } + let relativeX = (x - this.camera.x) * this.camera.zoomFactor, + relativeY = (y - this.camera.y) * this.camera.zoomFactor - this.renderer.actualTileSize, + boundaryX = relativeX / this.renderer.canvasWidth, + boundaryY = relativeY / this.renderer.canvasHeight; - default: { - let element = document.createElement('div'); + // Reset all the styles. + pointer.reset(); - element.id = id; - element.className = 'pointer'; + // Store for later when we want to stack transformations. + let transform = `scale(${this.scale})`; - this.setSize(element); + // Handle the pointer being within the boundaries of the screen. + if (boundaryX >= 0 && boundaryX <= 1 && boundaryY >= 0 && boundaryY <= 1) { + let offsetX = pointer.offsetWidth - this.renderer.actualTileSize / 2; - container.append(element); + pointer.element.style.left = `${relativeX - offsetX}px`; + pointer.element.style.top = `${relativeY}px`; - pointers[id] = new Arrow(id, element, type); + // Apply the transformation. + pointer.element.style.transform = transform; - break; - } + return; } - } - - public resize(): void { - for (let { type, x, y, element } of Object.values(this.pointers)) - switch (type) { - case Opcodes.Pointer.Relative: { - let scale = this.getZoom(), - offsetX = 0, - offsetY = 0; - - element.style.left = `${x * scale - offsetX}px`; - element.style.top = `${y * scale - offsetY}px`; - - break; - } - } - } - - private setSize(element: HTMLElement): void { - let pointer = '/img/pointer.png'; - - element.style.top = '30px'; - element.style.width = '64px'; - element.style.height = '64px'; - element.style.margin = 'inherit'; - element.style.marginTop = '-18px'; - element.style.background = `url("${pointer}") no-repeat -4px`; - } - - public clean(): void { - for (let pointer of Object.values(this.pointers)) pointer.destroy(); - - this.pointers = {}; - } - - private destroy(pointer: Arrow): void { - delete this.pointers[pointer.id]; - pointer.destroy(); - } - private set(pointer: Arrow, posX: number, posY: number): void { - let { camera, game } = this; - - if (!camera) return; - - let { element } = pointer, - { canvasWidth, canvasHeight } = game.renderer, - tileSize = game.map.tileSize * this.getZoom(), // 16 * scale - x = (posX - camera.x) * this.getZoom(), - width = parseInt(element.style.width), - offset = width / 2 - tileSize / 2, - y = (posY - camera.y) * this.getZoom() - tileSize, - outX = x / canvasWidth, - outY = y / canvasHeight; - - if (outX >= 1.5) { - element.style.left = ''; - element.style.right = '0'; - element.style.top = '50%'; - element.style.bottom = ''; - element.style.transform = 'rotate(-90deg)'; - } else if (outY >= 1.5) { - element.style.left = ''; - element.style.right = '0'; - element.style.top = '50%'; - element.style.bottom = ''; - element.style.transform = 'rotate(-90deg)'; - } else if (outX <= 0) { - element.style.left = '0'; - element.style.right = ''; - element.style.top = '50%'; - element.style.bottom = ''; - element.style.transform = 'rotate(90deg)'; - } else if (outY <= 0) { - element.style.left = ''; - element.style.right = '50%'; - element.style.top = '0'; - element.style.bottom = ''; - element.style.transform = 'rotate(180deg)'; - } else { - element.style.left = `${x - offset}px`; - element.style.right = ''; - element.style.top = `${y}px`; - element.style.bottom = ''; - element.style.transform = ''; + // Handle pointers outside the boundaries of the screen. + if (boundaryX > 1) { + // Pointer is to the right of the screen. + pointer.element.style.right = '0'; + pointer.element.style.top = boundaryY > 1 ? '' : boundaryY < 0 ? '0' : `${relativeY}px`; + pointer.element.style.bottom = boundaryY > 1 ? '0' : ''; + pointer.element.style.transform = `${transform} rotate(-90deg)`; + } else if (boundaryX < 0) { + // Pointer is to the left of the screen. + pointer.element.style.left = '0'; + pointer.element.style.top = boundaryY > 1 ? '' : boundaryY < 0 ? '0' : `${relativeY}px`; + pointer.element.style.bottom = boundaryY > 1 ? '0' : ''; + pointer.element.style.transform = `${transform} rotate(90deg)`; + } else if (boundaryY > 1) { + // Pointer is above the screen. + pointer.element.style.bottom = '0'; + pointer.element.style.left = + boundaryX > 1 ? '' : boundaryX < 0 ? '0' : `${relativeX}px`; + pointer.element.style.right = boundaryX > 1 ? '0' : ''; + pointer.element.style.transform = transform; + } else if (boundaryY < 0) { + // Pointer is below the screen. + pointer.element.style.top = '0'; + pointer.element.style.left = + boundaryX > 1 ? '' : boundaryX < 0 ? '0' : `${relativeX}px`; + pointer.element.style.right = boundaryX > 1 ? '0' : ''; + pointer.element.style.transform = `${transform} rotate(180deg)`; } } - public setToEntity(entity: Entity): void { - let pointer = this.get(entity.instance); + /** + * Handles updating of a pointer. This is called every frame and + * ensures that a pointer is always in the correct position. If it's + * bound to an entity, it will always follow it. If it's bound to a location + * it will always be in the same position regardless of how the player moves. + */ - if (!pointer) return; - - this.set(pointer, entity.x, entity.y); - } + public update(): void { + for (let instance in this.pointers) { + let pointer = this.pointers[instance]; - public setToPosition(id: string, x: number, y: number): void { - let pointer = this.get(id); + // Location pointers just use the x and y coordinates that were given to them. + if (pointer.type === Opcodes.Pointer.Location) { + this.set(pointer, pointer.x, pointer.y); + continue; + } - if (!pointer) return; + // Entity pointers use the instance that pertains to the entity. + if (pointer.type === Opcodes.Pointer.Entity) { + let entity = this.entities.get(instance); - pointer.setPosition(x, y); + if (entity) this.set(pointer, entity.x, entity.y); + else this.remove(instance); - this.set(pointer, x, y); + continue; + } + } } - public setRelative(id: string, x: number, y: number): void { - let pointer = this.get(id); - - if (!pointer) return; + /** + * Handles resizing of relative pointers (those which have a fixed position on the screen). + */ - let scale = this.getZoom(), - offsetX = 0, - offsetY = 0; - - pointer.setPosition(x, y); - - pointer.element.style.left = `${x * scale - offsetX}px`; - pointer.element.style.top = `${y * scale - offsetY}px`; + public resize(): void { + this.scale = this.camera.zoomFactor / DEFAULT_ZOOM; } - public update(): void { - for (let pointer of Object.values(this.pointers)) - switch (pointer.type) { - case Opcodes.Pointer.Entity: { - let entity = this.game.entities.get(pointer.id); - - if (entity) this.setToEntity(entity); - else this.destroy(pointer); - - break; - } + /** + * Iterates through all pointers and removes them. + */ - case Opcodes.Pointer.Location: { - if (pointer.x !== -1 && pointer.y !== -1) - this.set(pointer, pointer.x, pointer.y); - - break; - } - } + public clean(): void { + for (let instance in this.pointers) this.remove(instance); } - private get(id: string): Arrow | null { - let { pointers } = this; + /** + * Removes a pointer from the list of pointers and destroys it. + * @param instance The instance of the pointer we are removing. + */ - if (id in pointers) return pointers[id]; + private remove(instance: string): void { + let pointer = this.pointers[instance]; - return null; - } + pointer?.destroy(); - private getZoom(): number { - return this.game.camera.zoomFactor; + delete this.pointers[instance]; } } diff --git a/packages/client/src/controllers/sprites.ts b/packages/client/src/controllers/sprites.ts index 93492075b6..6e4eb40174 100644 --- a/packages/client/src/controllers/sprites.ts +++ b/packages/client/src/controllers/sprites.ts @@ -1,17 +1,15 @@ -import spriteData from '../../data/sprites.json'; -import Animation from '../entity/animation'; -import Sprite from '../entity/sprite'; import log from '../lib/log'; +import Sprite from '../entity/sprite'; +import spriteData from '../../data/sprites.json'; +import type Animation from '../entity/animation'; import type { SpriteData } from '../entity/sprite'; export default class SpritesController { public sprites: { [id: string]: Sprite } = {}; - public sparksAnimation: Animation = new Animation('idle_down', 6, 0, 16, 16); + public preloadedAnimations: Animation[] = []; // Used for updating. public constructor() { - this.sparksAnimation.setSpeed(120); - this.load(); } @@ -21,25 +19,27 @@ export default class SpritesController { */ public load(): void { - // TS doesn't like this for some reason. for (let data of spriteData as SpriteData[]) { let sprite = new Sprite(data); - this.sprites[data.id] = sprite; - } + this.sprites[sprite.key] = sprite; - log.debug('Finished loading sprite data...'); + // Some sprites are required to be preloaded. + if (sprite.preload) { + sprite.load(); - this.preloadSprites(); - } + let idleDown = sprite.animations.idle_down; - /** - * Hardcoded function that preloads necessary sprites off the bat. - * Things like the death animation has to be loaded as soon as possible. - */ + // Some of the preloaded sprites have animations that we can use. + if (idleDown?.length > 1) { + this.preloadedAnimations.push(idleDown); - public preloadSprites(): void { - this.get('death').load(); + idleDown.setSpeed(sprite.idleSpeed || 200); + } + } + } + + log.debug('Finished loading sprite data...'); } /** diff --git a/packages/client/src/entity/animation.ts b/packages/client/src/entity/animation.ts index 46dca36858..7fbb0fb645 100644 --- a/packages/client/src/entity/animation.ts +++ b/packages/client/src/entity/animation.ts @@ -1,4 +1,4 @@ -interface Frame { +export interface Frame { index: number; x: number; y: number; @@ -12,6 +12,7 @@ export default class Animation { public bopIndex = 0; public bopCount = 4; // Used for items bopping up and down. public decreaseBop = false; + public stopped = false; private lastTime = Date.now(); private speed = 100; @@ -24,7 +25,8 @@ export default class Animation { public length: number, public row: number, public width: number, - public height: number + public height: number, + private withStop = false ) { this.reset(); } @@ -59,6 +61,12 @@ export default class Animation { // Invoke the callback if we have finished playing the animation. if (this.count <= 0) this.endCallback?.(); + // If stopped we pause on the last animation frame. + if (this.withStop) { + this.stopped = true; + return; + } + return this.reset(); } @@ -108,7 +116,21 @@ export default class Animation { */ private canAnimate(): boolean { - return Date.now() - this.lastTime > this.speed; + return Date.now() - this.lastTime > this.speed && !this.stopped; + } + + /** + * Used by tree objects to select the correct animation frame when trying to use the + * base of the tree or the cut stump. + * @returns The second animation in the row. + */ + + public getSecondFrame(): Frame { + return { + index: 1, + x: this.width, + y: this.row * this.height + }; } /** diff --git a/packages/client/src/entity/character/character.ts b/packages/client/src/entity/character/character.ts index ea64b6a446..94d7921a1a 100644 --- a/packages/client/src/entity/character/character.ts +++ b/packages/client/src/entity/character/character.ts @@ -35,6 +35,7 @@ export default class Character extends Entity { public target: Entity | null = null; public lastTarget = ''; + public lastFollow = 0; // List of active status effects currently applied on the player. public statusEffects: Modules.Effects[] = []; @@ -106,6 +107,66 @@ export default class Character extends Entity { [Modules.Effects.Boulder]: { key: 'effects/boulder', animation: new Animation('effect', 7, 0, 32, 32) + }, + [Modules.Effects.AccuracyBuff]: { + key: 'effects/accuracy', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.StrengthBuff]: { + key: 'effects/strength', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.DefenseBuff]: { + key: 'effects/defense', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.MagicBuff]: { + key: 'effects/magic', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.ArcheryBuff]: { + key: 'effects/archery', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.AccuracySuperBuff]: { + key: 'effects/accuracysuper', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.StrengthSuperBuff]: { + key: 'effects/strengthsuper', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.DefenseSuperBuff]: { + key: 'effects/defensesuper', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.MagicSuperBuff]: { + key: 'effects/magicsuper', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 + }, + [Modules.Effects.ArcherySuperBuff]: { + key: 'effects/archerysuper', + animation: new Animation('effect', 5, 0, 32, 32), + perpetual: true, + speed: 200 } }; @@ -120,7 +181,11 @@ export default class Character extends Entity { private fallbackCallback?: FallbackCallback; private hitPointsCallback?: HitPointsCallback; - public constructor(instance: string, type: Modules.EntityType, public game: Game) { + public constructor( + instance: string, + type: Modules.EntityType, + public game: Game + ) { super(instance, type); this.loadAnimations(); @@ -136,7 +201,7 @@ export default class Character extends Entity { // Iterate through all the effects and load default speed and end callback events. for (let key in this.effects) { let effect = this.effects[key], - keyValue = parseInt(key); + keyValue: Modules.Effects = parseInt(key); // Default speed effect.animation.setSpeed(effect.speed || 50); @@ -171,7 +236,7 @@ export default class Character extends Entity { count = 0, onEndCount?: () => void ): void { - let o = ['atk', 'walk', 'idle']; + let o = ['atk', 'bow_atk', 'walk', 'idle']; // Do not perform another animation while the death one is playing. if (this.animation?.name === 'death') return; @@ -189,30 +254,24 @@ export default class Character extends Entity { super.setAnimation(name, speed, count, onEndCount); } - /** - * Takes in consideration the death animations that may be playing and - * ignores updating the silhouette if so. - * @param active Whether or not we should update the silhouette. - */ - - public override updateSilhouette(active?: boolean): void { - // Default the effect to the normal sprite if the character's death animation is playing. - if (this.hasDeathAnimation()) active = false; - - super.updateSilhouette(active); - } - /** * Briefly changes the character's sprite with that of the * hurt sprite (a white and red sprite when a character is hurt). */ public toggleHurt(): void { - if (this.dead || this.teleporting || !this.hurtSprite) return; + // Prevent any hurt sprite rendering while the death animation or the character is teleporting. + if (this.dead || this.teleporting) { + this.hurt = false; + return; + } + + // Attempt to load the hurt sprite if it doesn't exist. + if (this.sprite.hasHurtSprite() && !this.sprite.hurtSprite) this.sprite.loadHurtSprite(); - this.sprite = this.hurtSprite; + this.hurt = true; - window.setTimeout(() => (this.sprite = this.normalSprite), 100); + window.setTimeout(() => (this.hurt = false), 100); } /** @@ -234,7 +293,7 @@ export default class Character extends Entity { */ public trade(entity: Entity): void { - if (this.dead) return; + if (this.dead || this.teleporting) return; this.trading = true; @@ -249,7 +308,13 @@ export default class Character extends Entity { */ public follow(entity: Entity, forced = false): void { - if (this.dead || this.isStunned()) return; + // Prevents follow spam which will cause entities to visually vibrate. + if (Date.now() - this.lastFollow < 300) return; + + // Prevent following when entity is stunned or dead. + if (this.dead || this.isStunned() || this.teleporting) return; + + this.lastFollow = Date.now(); this.following = true; @@ -265,7 +330,7 @@ export default class Character extends Entity { */ public pursue(character: Character): void { - if (this.dead || this.isStunned()) return; + if (this.dead || this.isStunned() || this.teleporting) return; this.setTarget(character); this.move(character.gridX, character.gridY); @@ -444,7 +509,7 @@ export default class Character extends Entity { public override idle(o?: Modules.Orientation, force = false): void { // Prevents the idle animation from affecting the walking animation. - if (this.hasPath() && !force) return; + if ((this.hasPath() || this.moving) && !force) return; let orientation = o || this.orientation; @@ -493,6 +558,24 @@ export default class Character extends Entity { this.idle(); } + /** + * Same functionality as the `lookAt` function except it takes in a position + * rather than an entity. + * @param x The grid x position to look at. + * @param y The grid y position to look at. + */ + + public lookAtPosition(x: number, y: number): void { + let { gridX, gridY } = this; + + if (x > gridX) this.setOrientation(Modules.Orientation.Right); + else if (x < gridX) this.setOrientation(Modules.Orientation.Left); + else if (y > gridY) this.setOrientation(Modules.Orientation.Down); + else if (y < gridY) this.setOrientation(Modules.Orientation.Up); + + this.idle(); + } + /** * Begins the movement of the entity to the given position. * @param x The grid x position to move to. @@ -571,9 +654,13 @@ export default class Character extends Entity { // Set the new position onto the grid. this.updateGridPosition(); - if (!this.interrupted && this.path) { - if (this.hasNextStep()) [this.nextGridX, this.nextGridY] = this.path[this.step + 1]; + // Pathing has been interrupted, stop. + if (this.interrupted) stop = true; + + // Append the next step if it exists. + if (this.hasNextStep()) [this.nextGridX, this.nextGridY] = this.path![this.step + 1]; + if (!stop) { this.stepCallback?.(); if (this.changedPath()) { @@ -594,20 +681,33 @@ export default class Character extends Entity { this.step++; this.updateMovement(); } else stop = true; - } else { - stop = true; - this.interrupted = false; } - if (stop) { - this.path = null; - this.idle(); + if (stop) this.resetMovement(); + } + + /** + * Used for when pathing has come to an end. We reset all the pathing + * variables and stop the character from moving. + * @param withCallback Whether or not to call the stop pathing callback. + */ - if (this.stopPathingCallback) - this.stopPathingCallback(this.gridX, this.gridY, this.forced); + private resetMovement(withCallback = true): void { + this.path = null; - this.forced = false; - } + this.idle(); + + this.destination = null; + this.newDestination = null; + this.movement = new Transition(); + + this.nextGridX = this.gridX; + this.nextGridY = this.gridY; + + this.forced = false; + this.interrupted = false; + + if (withCallback) this.stopPathingCallback?.(this.gridX, this.gridY, this.forced); } /** @@ -666,16 +766,11 @@ export default class Character extends Entity { */ public stop(force = false): void { - if (!force) this.interrupted = true; - else if (this.hasPath()) { - this.path = null; - this.destination = null; - this.newDestination = null; - this.movement = new Transition(); - this.performAction(this.orientation, Modules.Actions.Idle); - this.nextGridX = this.gridX; - this.nextGridY = this.gridY; - } + if (!this.hasPath()) return; + + if (force) return this.resetMovement(false); + + this.interrupted = true; } /** @@ -688,7 +783,7 @@ export default class Character extends Entity { if (!this.target!.isMob() && !this.target!.isPlayer()) return false; - if (this.getDistance(this.target!) > this.attackRange - 1) return false; + if (this.getDistance(this.target!) > this.attackRange) return false; return true; } @@ -741,7 +836,7 @@ export default class Character extends Entity { } public hasNextStep(): boolean | null { - return this.path && this.path.length - 1 > this.step; + return this.path!.length - 1 > this.step; } public changedPath(): boolean { @@ -757,13 +852,13 @@ export default class Character extends Entity { } public moved(): void { + if (!this.game.isMainPlayer(this.instance)) return; + this.moveCallback?.(); } public setTarget(target: Entity): void { this.target = target; - - this.lastTarget = target.instance; } /** diff --git a/packages/client/src/entity/character/handler.ts b/packages/client/src/entity/character/handler.ts index bfa4b072aa..f3de5e3220 100644 --- a/packages/client/src/entity/character/handler.ts +++ b/packages/client/src/entity/character/handler.ts @@ -79,12 +79,11 @@ export default class Handler { // Essentially the same as the above, but for followers. this.handleFollowers(); - /** - * We temporarily rely on a consensus between multiple clients to establish - * the position of a character (the server is only involved in telling the mob where to go). - */ - - if (this.character.hasTarget() || this.character.hasAttackers()) + // Update position of the character to the server if they have a target or attackers. + if ( + (this.character.isMob() || this.character.isPet()) && + (this.character.hasTarget() || this.character.hasAttackers()) + ) this.game.socket.send(Packets.Movement, { opcode: Opcodes.Movement.Entity, targetInstance: this.character.instance, @@ -97,7 +96,8 @@ export default class Handler { * and it's within attack range distance we stop the movement. */ - if (this.character.canAttackTarget()) this.character.stop(true); + // Check if we can initiate combat. + if (this.character.moving && this.character.canAttackTarget()) this.character.stop(); } /** @@ -118,6 +118,7 @@ export default class Handler { */ protected handleStopPathing(_x: number, _y: number): void { + this.entities.registerPosition(this.character); this.character.moving = false; } @@ -150,7 +151,7 @@ export default class Handler { protected handleAttackers(): void { this.character.forEachAttacker((attacker) => { // Clear the attackers if their target doesn't match this character (or it doesn't exist). - if (!attacker.target || attacker.target.instance !== this.character.instance) + if (attacker.target?.instance !== this.character.instance) return this.character.removeAttacker(attacker); // If the attacker is too far away from the target, make them follow their target. @@ -166,6 +167,7 @@ export default class Handler { protected handleFollowers(): void { this.character.forEachFollower((follower: Character) => { + // Clear the followers if their target doesn't match this character (or it doesn't exist). if (!follower.target || follower.target.instance !== this.character.instance) return this.character.removeFollower(follower); diff --git a/packages/client/src/entity/character/pet/pet.ts b/packages/client/src/entity/character/pet/pet.ts index 5bc50a286c..2bf722f4a4 100644 --- a/packages/client/src/entity/character/pet/pet.ts +++ b/packages/client/src/entity/character/pet/pet.ts @@ -5,7 +5,11 @@ import { Modules } from '@kaetram/common/network'; import type Game from '../../../game'; export default class Pet extends Character { - public constructor(instance: string, public owner: string, game: Game) { + public constructor( + instance: string, + public owner: string, + game: Game + ) { super(instance, Modules.EntityType.Pet, game); } diff --git a/packages/client/src/entity/character/player/equipment.ts b/packages/client/src/entity/character/player/equipment.ts index c91fa3a663..996a104d54 100644 --- a/packages/client/src/entity/character/player/equipment.ts +++ b/packages/client/src/entity/character/player/equipment.ts @@ -2,7 +2,7 @@ import Util from '../../../utils/util'; import { Modules } from '@kaetram/common/network'; -import type { Bonuses, Enchantments, Stats } from '@kaetram/common/types/item'; +import type { Bonuses, Enchantments, Light, Stats } from '@kaetram/common/types/item'; export default class Equipment { public key = ''; @@ -10,9 +10,14 @@ export default class Equipment { public count = -1; public enchantments: Enchantments = {}; + // Used to determine if the weapon is a bow or not. + public bow = false; + // Used for ignoring rendering of the equipment. public drawable = false; + public light: Light = {}; + public attackStats: Stats = Util.getEmptyStats(); public defenseStats: Stats = Util.getEmptyStats(); public bonuses: Bonuses = Util.getEmptyBonuses(); @@ -44,7 +49,8 @@ export default class Equipment { defenseStats?: Stats, bonuses?: Bonuses, attackStyle = Modules.AttackStyle.None, - attackStyles: Modules.AttackStyle[] = [] + attackStyles: Modules.AttackStyle[] = [], + light: Light = {} ): void { this.key = key; this.name = name; @@ -59,6 +65,8 @@ export default class Equipment { // Attack styles are optional parameters for the weapon. this.attackStyle = attackStyle; this.attackStyles = attackStyles; + + this.light = light; } /** diff --git a/packages/client/src/entity/character/player/handler.ts b/packages/client/src/entity/character/player/handler.ts index 42251b269a..3136b5c371 100644 --- a/packages/client/src/entity/character/player/handler.ts +++ b/packages/client/src/entity/character/player/handler.ts @@ -1,8 +1,7 @@ import CharacterHandler from '../handler'; -import { Packets, Opcodes } from '@kaetram/common/network'; +import { Packets, Opcodes, Modules } from '@kaetram/common/network'; -import type Character from '../character'; import type Map from '../../../map/map'; import type Player from './player'; import type Game from '../../../game'; @@ -18,13 +17,13 @@ export default class Handler extends CharacterHandler { protected override game: Game; protected override entities: EntitiesController; - public constructor(player: Player) { - super(player); + public constructor(protected override character: Player) { + super(character); - this.map = player.game.map; + this.map = character.game.map; - this.game = player.game; - this.entities = player.game.entities; + this.game = character.game; + this.entities = character.game.entities; } /** @@ -42,13 +41,19 @@ export default class Handler extends CharacterHandler { // Prevent calculations from being made if the player is dead. if (this.character.dead || this.character.frozen) return []; + // Turn the character towards the tile they clicked on. + if (!this.character.hasKeyboardMovement() && !this.character.target) + this.character.lookAtPosition(x, y); + // Prevent calculating pathing when we target a mob that is within range. if (this.character.canAttackTarget() && !this.character.trading) return []; - let isObject = this.map.isObject(x, y); + let isObject = this.map.isObject(x, y), + isResource = this.character.target?.isResource(), + isNPC = this.character.target?.isNPC(); // Ignore requests into colliding tiles but allow targetable objects. - if (this.map.isColliding(x, y) && !isObject) return []; + if (this.map.isColliding(x, y) && !isObject && !isResource && !isNPC) return []; // Sends the packet to the server with the request. this.game.socket.send(Packets.Movement, { @@ -75,6 +80,8 @@ export default class Handler extends CharacterHandler { ignores.push({ x: x + 1, y }, { x: x - 1, y }, { x, y: y + 1 }, { x, y: y - 1 }); } + if (isResource || isNPC) ignores.push({ x, y }); + return this.game.findPath(this.character, x, y, ignores, cursor); } @@ -86,7 +93,7 @@ export default class Handler extends CharacterHandler { protected override handleStartPathing(path: number[][]): void { // The selected tile is the last tile in the path. - [this.game.input.selectedX, this.game.input.selectedY] = path[path.length - 1]; + [this.game.input.selectedX, this.game.input.selectedY] = path.at(-1)!; this.character.moving = true; this.game.input.selectedCellVisible = true; @@ -115,9 +122,6 @@ export default class Handler extends CharacterHandler { // Once stopped, remove the selected tile animation. this.game.input.selectedCellVisible = false; - // Clipping the camera ensures it's always bound to the nearest tile. - this.game.camera.clip(); - // Sends the stop pathing packet to the server this.game.socket.send(Packets.Movement, { opcode: Opcodes.Movement.Stop, @@ -128,18 +132,20 @@ export default class Handler extends CharacterHandler { orientation: this.character.orientation }); - // TODO - Combine these two packets into the movement packet. - if (this.character.trading) this.game.socket.send(Packets.Trade, { opcode: Opcodes.Trade.Request, instance: this.character.target?.instance }); - this.game.socket.send(Packets.Target, [ - this.getTargetType(), - this.character.target?.instance || '' - ]); + let targetType = this.getTargetType(); + + // Send target packet only if we have a target. + if (targetType !== Opcodes.Target.None) + this.game.socket.send(Packets.Target, [ + this.getTargetType(), + this.character.target?.instance || '' + ]); // --------------------------------------------------------- @@ -159,8 +165,9 @@ export default class Handler extends CharacterHandler { // Save the player's orientation. this.game.storage.setOrientation(this.character.orientation); - // Reset the animated tiles when we stop moving. - this.game.renderer.resetAnimatedTiles(); + // Default to idling state once we stop pathing. + if (!this.character.hasKeyboardMovement()) + this.character.performAction(this.character.orientation, Modules.Actions.Idle); // Reset movement and trading variables this.character.moving = false; @@ -191,11 +198,21 @@ export default class Handler extends CharacterHandler { // Handle followers this.handleFollowers(); + if (this.character.hasTarget()) + this.game.socket.send(Packets.Movement, { + opcode: Opcodes.Movement.Entity, + targetInstance: this.character.target?.instance, + requestX: this.character.target?.gridX, + requestY: this.character.target?.gridY + }); + // Send the packet to the server to inform it that the player has moved. this.game.socket.send(Packets.Movement, { opcode: Opcodes.Movement.Step, playerX: this.character.gridX, playerY: this.character.gridY, + nextGridX: this.character.nextGridX, + nextGridY: this.character.nextGridY, timestamp: Date.now() }); @@ -204,16 +221,7 @@ export default class Handler extends CharacterHandler { this.lastStepY = this.character.gridY; // Check if we can initiate combat. - if (this.character.canAttackTarget() && !this.character.trading) this.character.stop(true); - } - - /** - * Updates the animated tiles every second step to get them all - * synchronized with one another. - */ - - protected override handleSecondStep(): void { - this.game.renderer.updateAnimatedTiles(); + if (this.character.canAttackTarget()) this.character.stop(); } /** @@ -241,7 +249,8 @@ export default class Handler extends CharacterHandler { return Opcodes.Target.Talk; // Interaction type for objects. - if (this.character.target.isObject()) return Opcodes.Target.Object; + if (this.character.target.isObject() || this.character.target.isResource()) + return Opcodes.Target.Object; // Interaction for attacking if (this.character.target.isMob() || (this.character.target.isPlayer() && this.game.pvp)) diff --git a/packages/client/src/entity/character/player/player.ts b/packages/client/src/entity/character/player/player.ts index 22bb312724..c3e25448c4 100644 --- a/packages/client/src/entity/character/player/player.ts +++ b/packages/client/src/entity/character/player/player.ts @@ -8,24 +8,23 @@ import Character from '../character'; import { Modules } from '@kaetram/common/network'; -import type { GuildPacket } from '@kaetram/common/types/messages/outgoing'; import type Game from '../../../game'; -import type { AchievementData } from '@kaetram/common/types/achievement'; -import type { EquipmentData } from '@kaetram/common/types/equipment'; -import type { PlayerData } from '@kaetram/common/types/player'; -import type { SkillData } from '@kaetram/common/types/skills'; -import type { QuestData } from '@kaetram/common/types/quest'; -import type { AbilityData } from '@kaetram/common/types/ability'; -import type { Friend as FriendType } from '@kaetram/common/types/friends'; -import type { GuildData } from '@kaetram/common/types/guild'; +import type { Light } from '@kaetram/common/types/item'; +import type { GuildPacketData } from '@kaetram/common/types/messages/outgoing'; +import type { AchievementData } from '@kaetram/common/network/impl/achievement'; +import type { PlayerData } from '@kaetram/common/network/impl/player'; +import type { SkillData } from '@kaetram/common/network/impl/skill'; +import type { QuestData } from '@kaetram/common/network/impl/quest'; +import type { AbilityData } from '@kaetram/common/network/impl/ability'; +import type { Friend as FriendType } from '@kaetram/common/network/impl/friends'; +import type { GuildData, Member } from '@kaetram/common/network/impl/guild'; +import type { EquipmentData } from '@kaetram/common/network/impl/equipment'; type AbilityCallback = (key: string, level: number, quickSlot: number) => void; type PoisonCallback = (status: boolean) => void; type ManaCallback = (mana: number, maxMana: number) => void; export default class Player extends Character { - public rank: Modules.Ranks = Modules.Ranks.None; - public serverId = -1; public pvpKills = -1; @@ -38,11 +37,16 @@ export default class Player extends Character { public poison = false; public disableAction = false; + public joystickMovement = false; + public hasPet = false; - public medal: Modules.Medals = Modules.Medals.None; + public rank: Modules.Ranks = Modules.Ranks.None; + public crown: Modules.Crowns = Modules.Crowns.None; public guild!: Partial | undefined; + private equipmentOrder = Modules.EquipmentRenderOrder; + public override hitPoints = 0; public override maxHitPoints = 0; @@ -88,6 +92,8 @@ export default class Player extends Character { } this.equipments[Modules.Equipment.Weapon].drawable = true; + this.equipments[Modules.Equipment.Shield].drawable = true; + this.equipments[Modules.Equipment.Cape].drawable = true; } /** @@ -170,6 +176,9 @@ export default class Player extends Character { // Secret tasks are displayed slightly different. if (achievement.secret) task.secret = true; + // Achievements may have a region specified. + if (achievement.region) task.region = achievement.region; + this.achievements[achievement.key] = task; } } @@ -219,12 +228,15 @@ export default class Player extends Character { defenseStats, bonuses, attackStyle, - attackStyles + attackStyles, + bow, + light } = equipment; if (!key) return this.unequip(type); - let prefix = this.getType(type); + // Weapon skin uses the weapon folder instead of a separate one. + let prefix = type === Modules.Equipment.WeaponSkin ? 'weapon' : this.getType(type); this.equipments[type].update( prefix ? `player/${prefix}/${key}` : `items/${key}`, @@ -240,10 +252,14 @@ export default class Player extends Character { if (type === Modules.Equipment.Weapon) { this.attackRange = attackRange || 1; this.setAttackStyle(attackStyle!, attackStyles!); + + this.equipments[type].bow = !!bow; } - // Disable drawing for the other equipment slots if we're wearing a skin. - if (type === Modules.Equipment.Skin) this.toggleDrawableEquipments(false); + // If a light is present on the equipment just apply it. + if (light) this.equipments[type].light = light; + + this.updateEquipmentAppearance(); } /** @@ -261,6 +277,22 @@ export default class Player extends Character { ); } + /** + * Handles adding a guild member to the guild list. + * @param username The username of the guild member. + * @param serverId The server id of the guild member. + */ + + public addGuildMember(username: string, serverId: number): void { + if (!this.hasMember(username)) return; + + // Add the member to the guild list. + this.guild!.members!.push({ + username, + serverId + }); + } + /** * Calls an empty update() function onto the equipment slot * and resets it. @@ -273,8 +305,20 @@ export default class Player extends Character { if (count > 0) this.equipments[type].count = count; else this.equipments[type].update(); - // Make the normal equipments drawable again. - if (type === Modules.Equipment.Skin) this.toggleDrawableEquipments(true); + this.updateEquipmentAppearance(); + } + + /** + * Removes a guild member given their username. + * @param username The username of the guild member we are removing. + */ + + public removeGuildMember(username: string): void { + if (!this.hasMember(username)) return; + + let index = this.guild!.members!.findIndex((member) => member.username === username); + + this.guild!.members!.splice(index, 1); } /** @@ -286,6 +330,27 @@ export default class Player extends Character { this.syncCallback?.(); } + /** + * Synchronizes the player's appearance with its weapon/armour skin and depending on + * in-game properties like a PVP flag. This is called when the player equips or unequips + * an equipment or when the player's PVP flag is toggled. + */ + + public updateEquipmentAppearance(): void { + // Skins are not drawable in PVP. + this.getArmourSkin().drawable = !this.game.pvp; + this.getWeaponSkin().drawable = !this.game.pvp; + + let weaponHidden = !!this.getWeaponSkin().key && this.getWeaponSkin().drawable, + armourHidden = !!this.getArmourSkin().key && this.getArmourSkin().drawable; + + // Check if we have a weapon skin equipped and update the weapon appearance. + this.getWeapon().drawable = !weaponHidden; + + // Check if we have an armour skin equipped and update the armour appearance. + this.toggleDrawableEquipments(!armourHidden); + } + /** * Override for the idling function which also adds checking for keyboard * movement and prevents setting idle during keyboard movement. @@ -295,7 +360,11 @@ export default class Player extends Character { public override idle(o?: Modules.Orientation, force = false): void { // Check for moving instead of path if keyboard movement is enabled. - if (this.hasKeyboardMovement() && this.moving) return; + if ((this.hasKeyboardMovement() || this.hasAttackers() || this.hasTarget()) && this.moving) + return; + + // ?? this shouldn't affect anything but it does so just leave it for now. + if (this.hasPath()) return; super.idle(o, force); } @@ -305,33 +374,38 @@ export default class Player extends Character { */ public getSpriteName(): string { + let armourSkin = this.getArmourSkin(); + // Use the armour skin if it exists. - if (this.equipments[Modules.Equipment.Skin].key) - return this.equipments[Modules.Equipment.Skin].key; + if (armourSkin.key && armourSkin.drawable) return armourSkin.key; return 'player/base'; } + //// Shortcut functions for getting equipment objects. //// + /** - * @returns The key of the currently equipped weapon. + * @returns The helmet object of the player. */ - public getWeaponSpriteName(): string { - // Use the weapon skin if it exists. - if (this.equipments[Modules.Equipment.WeaponSkin].key) - return this.equipments[Modules.Equipment.WeaponSkin].key; - - return this.equipments[Modules.Equipment.Weapon].key; + public getHelmet(): Equipment { + return this.equipments[Modules.Equipment.Helmet]; } - //// Shortcut functions for getting equipment objects. //// + /** + * @returns The pendant object of the player. + */ + + public getPendant(): Equipment { + return this.equipments[Modules.Equipment.Pendant]; + } /** - * @returns The helmet object of the player. + * @returns The arrows object of the player. */ - public getHelmet(): Equipment { - return this.equipments[Modules.Equipment.Helmet]; + public getArrows(): Equipment { + return this.equipments[Modules.Equipment.Arrows]; } /** @@ -343,67 +417,67 @@ export default class Player extends Character { } /** - * @returns The legs equipment object. + * @returns The weapon object of the player. */ - public getLegs(): Equipment { - return this.equipments[Modules.Equipment.Legs]; + public getWeapon(): Equipment { + return this.equipments[Modules.Equipment.Weapon]; } /** - * @returns The armour skin object of the player. + * @returns The shield object of the player. */ - public getArmourSkin(): Equipment { - return this.equipments[Modules.Equipment.Skin]; + public getShield(): Equipment { + return this.equipments[Modules.Equipment.Shield]; } /** - * @returns The boots object of the player. + * @returns The ring object of the player. */ - public getBoots(): Equipment { - return this.equipments[Modules.Equipment.Boots]; + public getRing(): Equipment { + return this.equipments[Modules.Equipment.Ring]; } /** - * @returns The arrows object of the player. + * @returns The weapon skin object of the player. */ - public getArrows(): Equipment { - return this.equipments[Modules.Equipment.Arrows]; + public getWeaponSkin(): Equipment { + return this.equipments[Modules.Equipment.WeaponSkin]; } /** - * @returns The pendant object of the player. + * @returns The armour skin object of the player. */ - public getPendant(): Equipment { - return this.equipments[Modules.Equipment.Pendant]; + public getArmourSkin(): Equipment { + return this.equipments[Modules.Equipment.ArmourSkin]; } /** - * @returns The ring object of the player. + * @returns The legplate equipment object. */ - public getRing(): Equipment { - return this.equipments[Modules.Equipment.Ring]; + public getLegplate(): Equipment { + return this.equipments[Modules.Equipment.Legplates]; } /** - * @returns The weapon object of the player. + * @returns The cape equipment object. */ - public getWeapon(): Equipment { - return this.equipments[Modules.Equipment.Weapon]; + public getCape(): Equipment { + return this.equipments[Modules.Equipment.Cape]; } /** - * @returns The weapon skin object of the player. + * @returns The boots object of the player. */ - public getWeaponSkin(): Equipment { - return this.equipments[Modules.Equipment.WeaponSkin]; + public getBoots(): Equipment { + return this.equipments[Modules.Equipment.Boots]; } /** @@ -436,48 +510,48 @@ export default class Player extends Character { } /** - * @returns The key of the medal based on the player's medal type. + * @returns The key of the crown based on the player's crown type. */ - public getMedalKey(): string { - switch (this.medal) { - case Modules.Medals.Silver: { + public getCrownKey(): string { + switch (this.crown) { + case Modules.Crowns.Silver: { return 'silvermedal'; } - case Modules.Medals.Gold: { + case Modules.Crowns.Gold: { return 'goldmedal'; } - case Modules.Medals.Artist: { + case Modules.Crowns.Artist: { return 'crown-artist'; } - case Modules.Medals.Tier1: { + case Modules.Crowns.Tier1: { return 'crown-tier1'; } - case Modules.Medals.Tier2: { + case Modules.Crowns.Tier2: { return 'crown-tier2'; } - case Modules.Medals.Tier3: { + case Modules.Crowns.Tier3: { return 'crown-tier3'; } - case Modules.Medals.Tier4: { + case Modules.Crowns.Tier4: { return 'crown-tier4'; } - case Modules.Medals.Tier5: { + case Modules.Crowns.Tier5: { return 'crown-tier5'; } - case Modules.Medals.Tier6: { + case Modules.Crowns.Tier6: { return 'crown-tier6'; } - case Modules.Medals.Tier7: { + case Modules.Crowns.Tier7: { return 'crown-tier7'; } @@ -488,46 +562,46 @@ export default class Player extends Character { } /** - * Returns a medal based on the player's rank. - * @returns The medal type for the player's rank. + * Returns a crown based on the player's rank. + * @returns The crown type for the player's rank. */ - private getRankMedal(): Modules.Medals { + private getRankCrown(): Modules.Crowns { switch (this.rank) { case Modules.Ranks.Artist: { - return Modules.Medals.Artist; + return Modules.Crowns.Artist; } case Modules.Ranks.TierOne: { - return Modules.Medals.Tier1; + return Modules.Crowns.Tier1; } case Modules.Ranks.TierTwo: { - return Modules.Medals.Tier2; + return Modules.Crowns.Tier2; } case Modules.Ranks.TierThree: { - return Modules.Medals.Tier3; + return Modules.Crowns.Tier3; } case Modules.Ranks.TierFour: { - return Modules.Medals.Tier4; + return Modules.Crowns.Tier4; } case Modules.Ranks.TierFive: { - return Modules.Medals.Tier5; + return Modules.Crowns.Tier5; } case Modules.Ranks.TierSix: { - return Modules.Medals.Tier6; + return Modules.Crowns.Tier6; } case Modules.Ranks.TierSeven: { - return Modules.Medals.Tier7; + return Modules.Crowns.Tier7; } default: { - return Modules.Medals.None; + return Modules.Crowns.None; } } } @@ -547,8 +621,8 @@ export default class Player extends Character { return 'chestplate'; } - case Modules.Equipment.Legs: { - return 'legs'; + case Modules.Equipment.Legplates: { + return 'legplates'; } case Modules.Equipment.Weapon: { @@ -559,16 +633,45 @@ export default class Player extends Character { return 'weaponskin'; } - case Modules.Equipment.Skin: { + case Modules.Equipment.ArmourSkin: { return 'skin'; } + case Modules.Equipment.Shield: { + return 'shield'; + } + + case Modules.Equipment.Cape: { + return 'cape'; + } + default: { return ''; } } } + /** + * Grabs the light object from the weapon. + * @returns The light object of the weapon. + */ + + public getLight(): Light { + return this.getShield().light; + } + + /** + * Attempts to find a guild member based on their username. + * @param username The username of the guild member we are looking for. + * @returns The guild member object if found, otherwise undefined. + */ + + public getGuildMember(username: string): Member | undefined { + if (!this.guild) return; + + return this.guild.members?.find((member) => member.username === username); + } + /** * Updates the mana of the player. * @param mana The current amount of mana. @@ -696,13 +799,13 @@ export default class Player extends Character { } /** - * Updates the player's rank and synchronizes the medals. + * Updates the player's rank and synchronizes the Crowns. * @param rank The new rank of the player. */ public setRank(rank: Modules.Ranks): void { this.rank = rank; - this.medal = this.getRankMedal(); + this.crown = this.getRankCrown(); } /** @@ -710,7 +813,7 @@ export default class Player extends Character { * @param packet Contains information about the guild we are updating. */ - public setGuild(packet?: GuildPacket): void { + public setGuild(packet?: GuildPacketData): void { if (!packet) { this.guild = undefined; return; @@ -722,6 +825,77 @@ export default class Player extends Character { }; } + /** + * An override function for the superclass `setAnimation` where we adjust the animation + * currently performed by the player depending on the weapon they are equipping. Bows use + * a different animation than normal melee weapons. + * @param name The name of the animation that we are setting. + * @param speed The speed at which to animate the player. + * @param count The amount of times to play the animation. + * @param onEndCount The callback to execute when the animation has finished playing. + */ + + public override setAnimation( + name: string, + speed = 120, + count = 0, + onEndCount?: () => void + ): void { + // Update the animation name if we're using a bow. + if (name === 'atk' && this.getWeapon().bow) name = 'bow_atk'; + + super.setAnimation(name, speed, count, onEndCount); + } + + /** + * Attempts to update the values of a guild member based on their username. + * @param username The username of the guild member we are updating. + * @param rank The rank we want to update, defaults to the lowest + */ + + public setGuildMember( + username: string, + rank: Modules.GuildRank = Modules.GuildRank.Fledgling + ): void { + if (!this.guild) return; + + // Attempt to find the guild member. + let member = this.guild.members?.find((member) => member.username === username); + + if (!member) return; + + member.rank = rank; + } + + /** + * Override for the `setOrientation` function to also update the positioning + * of the cape and weapon relative to the player. + * @param orientation The new orientation that we are setting. + */ + + public override setOrientation(orientation: Modules.Orientation): void { + super.setOrientation(orientation); + + // Reset the equipment order to the default. + this.equipmentOrder = Modules.EquipmentRenderOrder; + + switch (orientation) { + case Modules.Orientation.Up: { + this.equipmentOrder = [ + Modules.Equipment.Legplates, + Modules.Equipment.Chestplate, + Modules.Equipment.Helmet, + Modules.Equipment.ArmourSkin, + Modules.Equipment.Shield, + Modules.Equipment.Weapon, + Modules.Equipment.WeaponSkin, + Modules.Equipment.Cape + ]; + break; + } + } + } + /** * Updates the active status of an ability. * @param key The key of the ability we are updating. @@ -740,7 +914,7 @@ export default class Player extends Character { private toggleDrawableEquipments(state = false): void { this.getHelmet().drawable = state; this.getChestplate().drawable = state; - this.getLegs().drawable = state; + this.getLegplate().drawable = state; } /** @@ -768,11 +942,19 @@ export default class Player extends Character { } /** - * @returns Whether or not the player has a medal. + * @returns Whether or not the player has a rank. + */ + + public hasRank(): boolean { + return this.rank !== Modules.Ranks.None; + } + + /** + * @returns Whether or not the player has a crown. */ - public override hasMedal(): boolean { - return this.medal !== Modules.Medals.None; + public override hasCrown(): boolean { + return this.crown !== Modules.Crowns.None; } /** @@ -793,21 +975,58 @@ export default class Player extends Character { return username.toLowerCase() in this.friends; } + /** + * Checks if the current player has a light source equipped. + * @returns Whether the light contains an inner or outer light source. + */ + + public hasLight(): boolean { + let light = this.getLight(); + + return !!(light?.outer || light?.inner); + } + + /** + * Whether or not the guild has a member with the given username. + * @param username The username of the guild member we are checking. + * @returns Whether or not the guild has a member with the given username. + */ + + public hasMember(username: string): boolean { + if (!this.guild) return false; + + let exists = false; + + for (let i in this.guild.members) { + let member = this.guild.members[i as never] as Member; + + if (member.username === username) { + exists = true; + break; + } + } + + return exists; + } + /** * Iterates through the renderable equipments and executes the callback. This function * is used by the rendering system to draw the paperdoll equipments. - * @param callback Contains the equipment currently being iterated. + * @param callback Contains the equipment currently being iterated and its type. * @param ignoreEmpty Whether or not we want to iterate through all equipment or just the ones that exist. */ - public forEachEquipment(callback: (equipment: Equipment) => void, ignoreEmpty = false): void { - for (let type of Modules.EquipmentRenderOrder) { + public forEachEquipment( + callback: (equipment: Equipment, type?: number) => void, + ignoreEmpty = false + ): void { + for (let type of this.equipmentOrder) { let equipment = this.equipments[type as never] as Equipment; if (!equipment.drawable) continue; if (ignoreEmpty && !equipment.exists()) continue; - callback(equipment); + callback(equipment, ~~type); } } diff --git a/packages/client/src/entity/character/player/skill.ts b/packages/client/src/entity/character/player/skill.ts index dbe8d7ca1a..14e4d40a57 100644 --- a/packages/client/src/entity/character/player/skill.ts +++ b/packages/client/src/entity/character/player/skill.ts @@ -5,7 +5,11 @@ export default class Skill { public percentage = 0; public nextExperience = 0; - public constructor(public type: Modules.Skills, public experience = 0, public level = 1) { + public constructor( + public type: Modules.Skills, + public experience = 0, + public level = 1 + ) { this.name = Modules.Skills[type]; } diff --git a/packages/client/src/entity/character/player/task.ts b/packages/client/src/entity/character/player/task.ts index e4eca6d8d7..b114ecb075 100644 --- a/packages/client/src/entity/character/player/task.ts +++ b/packages/client/src/entity/character/player/task.ts @@ -6,6 +6,7 @@ export default class Task { public secret = false; // Whether or not the task is a secret task. + public region = ''; // The region the task is located in. public constructor( public id: number, diff --git a/packages/client/src/entity/entity.ts b/packages/client/src/entity/entity.ts index 93c66bd1c0..8a107c69a1 100644 --- a/packages/client/src/entity/entity.ts +++ b/packages/client/src/entity/entity.ts @@ -8,6 +8,8 @@ import type Player from './character/player/player'; import type Item from './objects/item'; import type Sprite from './sprite'; import type Pet from './character/pet/pet'; +import type Projectile from './objects/projectile'; +import type { EntityDisplayInfo } from '@kaetram/common/types/entity'; export default abstract class Entity { public x = 0; @@ -38,15 +40,21 @@ export default abstract class Entity { public animation!: Animation | null; + public offsetY = 0; // Used for manually offsetting the entity itself. public shadowOffsetY = 0; public hidden = false; private visible = true; + // Exclamation points display above. + public exclamation = false; + public blueExclamation = false; + public fading = false; + public hurt = false; + public silhouette = false; public angle = 0; - public angled = false; // Counter variables public counter = 0; @@ -58,10 +66,6 @@ export default abstract class Entity { public fadingTime!: number; private blinking!: number; - public normalSprite!: Sprite; - public hurtSprite!: Sprite; - public silhouetteSprite!: Sprite; - public ready = false; public hitPoints = 0; @@ -72,14 +76,17 @@ export default abstract class Entity { public experience = 0; public teleporting = false; public pvp = false; - public nameColour!: string; + public nameColour = ''; public customScale!: number; - public fadingAlpha!: number; + public fadingAlpha = 0; public lastUpdate = Date.now(); public counterInterval!: NodeJS.Timeout | undefined; - public constructor(public instance = '', public type: Modules.EntityType) {} + public constructor( + public instance = '', + public type: Modules.EntityType + ) {} /** * Fades in the entity when spawning in. @@ -130,14 +137,54 @@ export default abstract class Entity { } /** - * Updates the entity's silhouette sprite. - * @param active Whether or not to show the silhouette. + * Updates the current state of the silhouette sprite. If the silhouette sprite doesn't exist + * we attempt to load it. + * @param state The new state to set the silhouette sprite to, defaults to false. + */ + + public updateSilhouette(state = false): void { + if (this.dead || this.teleporting) { + this.silhouette = false; + return; + } + + // Attempt to load the silhouette if it doesn't exist. + if (state && this.sprite.hasSilhouette() && !this.sprite.silhouetteSprite) + this.sprite.loadSilhouetteSprite(); + + this.silhouette = state; + } + + /** + * Updates the display info for the entity. This essentially adds minor + * decorations to the entity's name colour, scaling, and whether or not + * they have additional markings above their head. + * @param displayInfo Contains the display info data to update. + */ + + public updateDisplayInfo(displayInfo: EntityDisplayInfo): void { + if (displayInfo.colour) this.nameColour = displayInfo.colour; + if (displayInfo.scale) this.customScale = displayInfo.scale; + + // Display the exclamations if they're set onto the entity. + if (displayInfo.exclamation === 'achievement') this.exclamation = true; + else if (displayInfo.exclamation === 'blue') this.blueExclamation = true; + } + + /** + * Grabs the currently active sprite based on the effects. This is used + * for when we want to display a silhouette or a hurt sprite. + * @returns The currently active */ - public updateSilhouette(active = false): void { - if (!this.silhouetteSprite) return; + public getSprite(): Sprite { + // Display the hurt sprite if the entity has one. + if (this.hurt && this.sprite.hurtSprite) return this.sprite.hurtSprite; + + // Display the silhouette sprite if the entity has one. + if (this.silhouette && this.sprite.silhouetteSprite) return this.sprite.silhouetteSprite; - this.sprite = active ? this.silhouetteSprite : this.normalSprite; + return this.sprite; } /** @@ -146,6 +193,8 @@ export default abstract class Entity { */ public setSprite(sprite: Sprite): void { + if (this.teleporting) return; + // Load the sprite if it hasn't been loaded yet. if (!sprite.loaded) { sprite.load(); @@ -155,30 +204,8 @@ export default abstract class Entity { } this.sprite = sprite; - this.normalSprite = sprite; - - /** - * Attempt to reload the sprite if it's still loading, we do this - * because we want all elements of the sprite (hurt sprite, silhouette) - * to be fully loaded and then apply them to the entity. - */ - - if (sprite.loading) { - setTimeout(() => this.setSprite(sprite), 100); - return; - } - - // Load the hurt and silhouette sprites if they exist. - if (sprite.hurtSprite) this.hurtSprite = sprite.hurtSprite; - if (sprite.silhouetteSprite) this.silhouetteSprite = sprite.silhouetteSprite; sprite.onLoad(() => { - this.normalSprite = sprite; - - // Load the hurt and silhouette sprites if they exist. - if (sprite.hurtSprite) this.hurtSprite = sprite.hurtSprite; - if (sprite.silhouetteSprite) this.silhouetteSprite = sprite.silhouetteSprite; - // Custom scales can be applied to certain entities. if (!this.customScale) return; @@ -199,7 +226,8 @@ export default abstract class Entity { name: string, speed = this.sprite.idleSpeed, count = 1, - onEndCount?: () => void + onEndCount?: () => void, + withStop = false ): void { // Prevent setting animation if no sprite or it's the same animation. if (this.animation?.name === name) return; @@ -208,7 +236,7 @@ export default abstract class Entity { let { length, row, width, height } = this.sprite.animations[name]; // Create a new animation instance to prevent pointer issues. - this.animation = new Animation(name, length, row, width, height); + this.animation = new Animation(name, length, row, width, height, withStop); // Restart the attack animation if it's already playing. if (name.startsWith('atk')) this.animation.reset(); @@ -271,7 +299,7 @@ export default abstract class Entity { * @param visible New visibility value. */ - private setVisible(visible: boolean): void { + public setVisible(visible: boolean): void { this.visible = visible; } @@ -288,12 +316,18 @@ export default abstract class Entity { } /** - * Returns the angle of the entity in radians. - * @returns Angle number value. + * Extracts the bounding rectangle box for the entity. We use this to determine the centre + * point for the sprite for either debugging or when detecting mouse interaction. + * @returns A rectangle that contains the bounding box of the entity. */ - public getAngle(): number { - return this.angle; + public getBoundingBox(): Rectangle { + return { + x: this.x + this.sprite.offsetX / 2, + y: this.y + this.sprite.offsetY / 2, + width: this.sprite.width + this.sprite.offsetX, + height: this.sprite.height + this.sprite.offsetY + }; } /** @@ -334,11 +368,11 @@ export default abstract class Entity { } /** - * Default implementation for medal. + * Default implementation for crown. * @returns Defaults to false. */ - public hasMedal(): boolean { + public hasCrown(): boolean { return false; } @@ -395,7 +429,7 @@ export default abstract class Entity { * @returns Whether or not the entity is a projectile type. */ - public isProjectile(): boolean { + public isProjectile(): this is Projectile { return this.type === Modules.EntityType.Projectile; } @@ -415,6 +449,58 @@ export default abstract class Entity { return this.type === Modules.EntityType.Object; } + /** + * @returns Whether or not the entity is a tree type. + */ + + public isTree(): boolean { + return this.type === Modules.EntityType.Tree; + } + + /** + * @returns Whether or not the entity is a rock type. + */ + + public isRock(): boolean { + return this.type === Modules.EntityType.Rock; + } + + /** + * @returns Whether or not the entity is a fish spot type. + */ + + public isFishSpot(): boolean { + return this.type === Modules.EntityType.FishSpot; + } + + /** + * @returns Whether or not the entity is a foraging type. + */ + + public isForaging(): boolean { + return this.type === Modules.EntityType.Foraging; + } + + /** + * We use this to determine the drawing context for rocks and foraging spots since + * they may be taking up more than a tile vertically. + * @returns Whether the entity is a rock, a fishing spot or a foraging spot. + */ + + public isNonTreeResource(): boolean { + return this.isRock() || this.isForaging(); + } + + /** + * Used for unifying multiple resources into one function. Things + * like trees, rocks, and bushes are all considered resources. + * @returns Whether or not the entity is a tree, a rock, or a bush. + */ + + public isResource(): boolean { + return this.isTree() || this.isRock() || this.isFishSpot() || this.isForaging(); + } + /** * Default implementation for `isModerator()` * @returns False by default. diff --git a/packages/client/src/entity/npc/npc.ts b/packages/client/src/entity/npc/npc.ts index fd52b6e415..88d176dfc2 100644 --- a/packages/client/src/entity/npc/npc.ts +++ b/packages/client/src/entity/npc/npc.ts @@ -14,4 +14,13 @@ export default class NPC extends Entity { public override idle(): void { this.setAnimation('idle_down', this.sprite.idleSpeed); } + + /** + * Overrides the `hasShadow` function to return true. + * @returns Whether or not the NPC has a shadow. + */ + + public override hasShadow(): boolean { + return true; + } } diff --git a/packages/client/src/entity/objects/effect.ts b/packages/client/src/entity/objects/effect.ts index 9558ab6169..95d18447e8 100644 --- a/packages/client/src/entity/objects/effect.ts +++ b/packages/client/src/entity/objects/effect.ts @@ -6,4 +6,16 @@ export default class Effect extends Entity { public constructor(instance: string) { super(instance, Modules.EntityType.Effect); } + + public override idle(): void { + this.setAnimation( + 'idle', + 150, + 1, + () => { + // + }, + true + ); + } } diff --git a/packages/client/src/entity/objects/item.ts b/packages/client/src/entity/objects/item.ts index a957d2acee..964a1a3f67 100644 --- a/packages/client/src/entity/objects/item.ts +++ b/packages/client/src/entity/objects/item.ts @@ -36,7 +36,7 @@ export default class Item extends Entity { // We use the `onBop` callback to update the sprite's offset. this.animation?.onBop((bopIndex: number) => { - this.sprite.offsetY = this.originalY - bopIndex; + this.offsetY = this.originalY - bopIndex; }); } diff --git a/packages/client/src/entity/objects/projectile.ts b/packages/client/src/entity/objects/projectile.ts index 132bcc6e1c..4fdc0897f7 100644 --- a/packages/client/src/entity/objects/projectile.ts +++ b/packages/client/src/entity/objects/projectile.ts @@ -1,4 +1,3 @@ -import Utils from '../../utils/util'; import Entity from '../entity'; import { Modules } from '@kaetram/common/network'; @@ -6,31 +5,38 @@ import { Modules } from '@kaetram/common/network'; import type Character from '../character/character'; export default class Projectile extends Entity { - public override type = Modules.EntityType.Projectile; + public override type: number = Modules.EntityType.Projectile; + + public override readonly fadingDuration: number = 100; public speed = 150; - public override readonly fadingDuration = 100; + public hasSpawned = false; public target!: Character; - private impactCallback?(): void; + // Callback created when the projectile impacts the target. + public impactCallback?(): void; - public constructor(instance: string, public owner: Entity, private hitType: Modules.Hits) { + public constructor( + instance: string, + private hitType: Modules.Hits + ) { super(instance, Modules.EntityType.Projectile); } + /** + * Override for the idle animation to use the projectile's default animation. + */ + public override idle(): void { this.setAnimation('travel'); } - public impact(): void { - this.impactCallback?.(); - } - - public setStart(x: number, y: number): void { - this.setGridPosition(Math.floor(x / Utils.tileSize), Math.floor(y / Utils.tileSize)); - } + /** + * Updates the projectile's target and calculates the new angle. + * @param target The character object that we are setting as the target. + */ public setTarget(target: Character): void { this.target = target; @@ -38,6 +44,23 @@ export default class Projectile extends Entity { this.updateAngle(); } + /** + * Override for `setGridPosition` to support projectile spawning logic. When we + * have an owner, we spawn it at the owner's position, otherwise we use whatever + * the server sent us. + * @param gridX The grid x coordinate to set the projectile to. + * @param gridY The grid y coordinate to set the projectile to. + */ + + public override setGridPosition(gridX: number, gridY: number): void { + // Prevent projectile from updating its position again after spawning. + if (this.hasSpawned) return; + + super.setGridPosition(gridX, gridY); + + this.hasSpawned = true; + } + /** * @returns How fast the projectile animation travels between frames (milliseconds) */ @@ -94,19 +117,14 @@ export default class Projectile extends Entity { } /** - * Calculates the angle between the projectile and the target. - * @returns Angle in radians so that the projectile faces the target. + * Updates the projectile's angle to face the target. We take the + * inverse tangent of the target's y and x coordinates. */ public updateAngle(): void { if (!this.target) return; - this.angle = - Math.atan2(this.target.y - this.y, this.target.x - this.x) * (180 / Math.PI) - 90; - } - - public override getAngle(): number { - return (this.angle * Math.PI) / 180; + this.angle = Math.atan2(this.target.y - this.y, this.target.x - this.x) - Math.PI / 2; } /** diff --git a/packages/client/src/entity/objects/resource/impl/fishspot.ts b/packages/client/src/entity/objects/resource/impl/fishspot.ts new file mode 100644 index 0000000000..645d6b98a1 --- /dev/null +++ b/packages/client/src/entity/objects/resource/impl/fishspot.ts @@ -0,0 +1,9 @@ +import Resource from '../resource'; + +import { Modules } from '@kaetram/common/network'; + +export default class FishSpot extends Resource { + public constructor(instance: string) { + super(instance, Modules.EntityType.FishSpot); + } +} diff --git a/packages/client/src/entity/objects/resource/impl/foraging.ts b/packages/client/src/entity/objects/resource/impl/foraging.ts new file mode 100644 index 0000000000..a41443b104 --- /dev/null +++ b/packages/client/src/entity/objects/resource/impl/foraging.ts @@ -0,0 +1,9 @@ +import Resource from '../resource'; + +import { Modules } from '@kaetram/common/network'; + +export default class Foraging extends Resource { + public constructor(instance: string) { + super(instance, Modules.EntityType.Foraging); + } +} diff --git a/packages/client/src/entity/objects/resource/impl/rock.ts b/packages/client/src/entity/objects/resource/impl/rock.ts new file mode 100644 index 0000000000..27c99cb5ae --- /dev/null +++ b/packages/client/src/entity/objects/resource/impl/rock.ts @@ -0,0 +1,9 @@ +import Resource from '../resource'; + +import { Modules } from '@kaetram/common/network'; + +export default class Rock extends Resource { + public constructor(instance: string) { + super(instance, Modules.EntityType.Rock); + } +} diff --git a/packages/client/src/entity/objects/resource/impl/tree.ts b/packages/client/src/entity/objects/resource/impl/tree.ts new file mode 100644 index 0000000000..d9d98c9b14 --- /dev/null +++ b/packages/client/src/entity/objects/resource/impl/tree.ts @@ -0,0 +1,27 @@ +import Resource from '../resource'; + +import { Modules } from '@kaetram/common/network'; + +import type { Frame } from '../../../animation'; +import type Sprite from '../../../sprite'; + +export default class Tree extends Resource { + public baseFrame!: Frame; + public exhaustedFrame!: Frame; + + public constructor(instance: string) { + super(instance, Modules.EntityType.Tree); + } + + /** + * Override for the set sprite that computes the base frame and the stump frame. + * @param sprite The sprite that we are setting. + */ + + public override setSprite(sprite: Sprite): void { + super.setSprite(sprite); + + this.baseFrame = this.sprite.animations.exhausted.frame; + this.exhaustedFrame = this.sprite.animations.exhausted.getSecondFrame(); + } +} diff --git a/packages/client/src/entity/objects/resource/resource.ts b/packages/client/src/entity/objects/resource/resource.ts new file mode 100644 index 0000000000..b212cff10e --- /dev/null +++ b/packages/client/src/entity/objects/resource/resource.ts @@ -0,0 +1,58 @@ +import Entity from '../../entity'; + +import type { Modules } from '@kaetram/common/network'; + +export default abstract class Resource extends Entity { + public exhausted = false; + + public constructor(instance: string, type: Modules.EntityType) { + super(instance, type); + } + + /** + * Plays the shake animation for the resource. + */ + + public shake(): void { + this.setAnimation('shake', 150, 1, () => { + this.idle(); + }); + } + + /** + * Override for the animation frame to use for the tree. + */ + + public override idle(): void { + this.setAnimation(this.exhausted ? 'exhausted' : 'idle', 150, 1, () => { + // + }); + } + + /** + * Override for the `updateSilhouette` function to bypass drawing any silhouette + * around the resource if it is exhausted. + * @param state The state of the silhouette. + */ + + public override updateSilhouette(state?: boolean): void { + if (this.exhausted) { + this.silhouette = false; + return; + } + + super.updateSilhouette(state); + } + + /** + * Used for a resource to alternate between an exhausted state (just the empty + * resource) or its default idle state. + * @param state The new state of the resource. + */ + + public setExhausted(state = false): void { + this.exhausted = state; + + this.idle(); + } +} diff --git a/packages/client/src/entity/sprite.ts b/packages/client/src/entity/sprite.ts index 0fed985f43..e297576901 100644 --- a/packages/client/src/entity/sprite.ts +++ b/packages/client/src/entity/sprite.ts @@ -1,6 +1,7 @@ import Animation from './animation'; import Utils from '../utils/util'; +import { isMobile } from '../utils/detect'; export interface AnimationData { [name: string]: { @@ -13,6 +14,7 @@ export interface SpriteData { id: string; width?: number; height?: number; + preload?: boolean; idleSpeed?: number; animations?: AnimationData; offsetX?: number; @@ -26,7 +28,6 @@ export interface Animations { export default class Sprite { public key = ''; - private type = ''; private path = ''; public width = Utils.tileSize; // Default tile size of 16 if not specified. @@ -38,7 +39,7 @@ export default class Sprite { public idleSpeed = 250; public loaded = false; - public loading = false; + public preload = false; public hasDeathAnimation = false; public animations: Animations = {}; @@ -55,11 +56,16 @@ export default class Sprite { this.path = `/img/sprites/${data.id}.png`; - this.width = this.data.width ?? this.width; - this.height = this.data.height ?? this.height; + let dimensions = Utils.getDefaultEquipmentDimension(this.getSubType()), + offset = Utils.getDefaultOffset(this.getType()); - this.offsetX = this.data.offsetX ?? -Utils.tileSize; - this.offsetY = this.data.offsetY ?? -Utils.tileSize; + this.width = this.data.width ?? dimensions; + this.height = this.data.height ?? dimensions; + + this.preload = this.data.preload ?? false; + + this.offsetX = this.data.offsetX ?? offset.x; + this.offsetY = this.data.offsetY ?? offset.y; this.idleSpeed = this.data.idleSpeed || this.idleSpeed; @@ -75,9 +81,7 @@ export default class Sprite { */ public load(): void { - if (this.loading || this.loaded) return; - - this.loading = true; + if (this.loaded) return; this.image = new Image(); @@ -88,18 +92,32 @@ export default class Sprite { this.image.addEventListener('load', () => { this.loaded = true; - // Ignore drawing hurt sprites for item types and very small sprites. - if (this.key.includes('items') && this.image.width > 96) - this.hurtSprite = Utils.getHurtSprite(this); + this.loadCallback?.(); + }); + } + + /** + * Loads the hurt sprite for the current sprite. This is used for mobs and players + * when they are engaged in combat and receive any damage. + */ + + public loadHurtSprite(): void { + // Hurt sprite already exists or there's not hurt effect, no need to load. + if (this.hurtSprite || !this.hasHurtSprite() || !this.loaded) return; + + this.hurtSprite = Utils.getHurtSprite(this); + } - // Load the silhouette sprite for the entity if it has one. - if (this.hasSilhouette()) this.silhouetteSprite = Utils.getSilhouetteSprite(this); + /** + * Loads the silhouette sprite for the current sprite. This is used upon hovering over + * an entity to display an outline around them. + */ - // Loading only done after the hurt sprite. - this.loading = false; + public loadSilhouetteSprite(): void { + // Silhouette sprite already exists or there's no silhouette, no need to load. + if (this.silhouetteSprite || !this.hasSilhouette() || isMobile() || !this.loaded) return; - this.loadCallback?.(); - }); + this.silhouetteSprite = Utils.getSilhouetteSprite(this); } /** @@ -142,6 +160,33 @@ export default class Sprite { return this.key.split('/')[0]; } + /** + * The subtype is the second index after splitting the path format + * of the sprite. So for example, for the path player/weapon/sword, the + * subtype would be the weapon. If the provided sprite doesn't have a subtype + * we just return an empty string. + * @return The subtype based on the sprite's key, otherwise an empty string. + */ + + private getSubType(): string { + let blocks = this.key.split('/'); + + if (blocks.length < 3) return ''; + + return blocks[1]; + } + + /** + * Load the hurt sprite only for mobs and players. + * @returns Whether or not the current sprite supports a hurt sprite. + */ + + public hasHurtSprite(): boolean { + let type = this.getType(); + + return type === 'mobs' || type === 'player'; + } + /** * Checks whether or not to draw a silhouette based on the sprite type. * We do not need to have a silhouette for everything, only for mobs, @@ -149,10 +194,11 @@ export default class Sprite { * @returns Whether or not the sprite has a silhouette. */ - private hasSilhouette(): boolean { - let type = this.getType(); + public hasSilhouette(): boolean { + let type = this.getType(), + list = ['mobs', 'player', 'npcs', 'trees', 'rocks', 'fishspots', 'bushes']; - return type === 'mobs' || type === 'player' || type === 'npcs'; + return list.includes(type); } /** diff --git a/packages/client/src/game.ts b/packages/client/src/game.ts index 7bfd1722f9..c0a61ed6d2 100644 --- a/packages/client/src/game.ts +++ b/packages/client/src/game.ts @@ -7,6 +7,7 @@ import MenuController from './controllers/menu'; import Pointer from './controllers/pointer'; import SpritesController from './controllers/sprites'; import Zoning from './controllers/zoning'; +import JoystickController from './controllers/joystick'; import Player from './entity/character/player/player'; import Handler from './entity/character/player/handler'; import Map from './map/map'; @@ -29,6 +30,7 @@ import type Entity from './entity/entity'; import type Storage from './utils/storage'; import type Character from './entity/character/character'; import type { TileIgnore } from './utils/pathfinder'; +import type Resource from './entity/objects/resource/resource'; export default class Game { public player: Player; @@ -55,16 +57,20 @@ export default class Game { public audio: AudioController; public entities: EntitiesController; public bubble: BubbleController; + public joystick: JoystickController; public menu: MenuController; public connection: Connection; public time = Date.now(); - public lastTime = Date.now(); + public timeDiff = Date.now(); // Used for FPS calculation. + public timeLast = Date.now(); + public targetFPS = 1000 / 50; public started = false; public ready = false; public pvp = false; + public throttle = false; public useWebGl = false; public constructor(public app: App) { @@ -78,18 +84,17 @@ export default class Game { this.sprites = new SpritesController(); this.renderer = this.useWebGl ? new WebGL(this) : new Canvas(this); + this.joystick = new JoystickController(this); this.menu = new MenuController(this); this.input = new InputController(this); this.socket = new Socket(this); - this.pointer = new Pointer(this); this.updater = new Updater(this); this.audio = new AudioController(this); this.entities = new EntitiesController(this); - this.bubble = new BubbleController(this); + this.bubble = new BubbleController(this.renderer, this.entities); + this.pointer = new Pointer(this.renderer, this.entities); this.connection = new Connection(this); - app.sendStatus('Loading game'); - this.map.onReady(() => { app.ready(); @@ -124,12 +129,21 @@ export default class Game { */ private tick(): void { + if (this.started) requestAnimationFrame(() => this.tick()); + this.time = Date.now(); - this.renderer.render(); - this.updater.update(); + // Only calculate throttling when we enable it. + if (this.throttle) { + this.timeDiff = this.time - this.timeLast; - if (this.started) requestAnimationFrame(() => this.tick()); + if (this.timeDiff < this.targetFPS) return; + + this.timeLast = this.time - (this.timeDiff % this.targetFPS); + } + + this.updater.update(); + this.renderer.render(); } /** @@ -176,25 +190,31 @@ export default class Game { this.camera.setZoom(this.storage.data.player.zoom); this.renderer.resize(); + this.pointer.resize(); + this.bubble.resize(); } this.camera.centreOn(this.player); this.player.handler = new Handler(this.player); - this.renderer.updateAnimatedTiles(); - this.socket.send(Packets.Ready, { regionsLoaded: this.map.regionsLoaded, userAgent: agent }); + if (this.storage.isNew()) this.menu.getWelcome().show(); + if (this.storage.data.new) { this.storage.data.new = false; this.storage.save(); } if (this.map.hasCachedDate()) this.app.fadeMenu(); + + this.menu.synchronize(); + + this.forceRendering(); } /** @@ -223,7 +243,7 @@ export default class Game { // Special case for fishing where we remove the last path if it is colliding. if (cursor === 'fishing') { - let last = path[path.length - 2]; + let last = path.at(-2)!; // Remove if there is a collision at the last path only (to allow fishing from a distance). if (this.map.isColliding(last[0], last[1])) path.pop(); @@ -232,6 +252,22 @@ export default class Game { return path; } + /** + * Finds the closest non-colliding tile around the character entity. + * @param character The character we are finding the closest tile for. + */ + + public findAdjacentTile(character: Character): void { + if (!this.map.isColliding(character.gridX + 1, character.gridY)) + character.go(character.gridX + 1, character.gridY); + else if (!this.map.isColliding(character.gridX - 1, character.gridY)) + character.go(character.gridX - 1, character.gridY); + else if (!this.map.isColliding(character.gridX, character.gridY + 1)) + character.go(character.gridX, character.gridY + 1); + else if (!this.map.isColliding(character.gridX, character.gridY - 1)) + character.go(character.gridX, character.gridY - 1); + } + /** * Used for when the player has selected low power mode and we do not * actively centre the camera on the character. We check the boundaries @@ -262,9 +298,6 @@ export default class Game { // Synchronize the camera and reset the zoning directions. this.camera.zone(this.zoning.getDirection()); - // Update the animated tiles. - this.renderer.updateAnimatedTiles(); - // Reset the zoning directions. this.zoning.reset(); } @@ -290,6 +323,7 @@ export default class Game { this.renderer.resize(); this.pointer.resize(); + this.bubble.resize(); this.menu.resize(); } @@ -323,33 +357,46 @@ export default class Game { * @returns An entity if found, otherwise undefined. */ - public searchForEntityAt(position: Position, radius = 2): Entity | undefined { + public searchForEntityAt(position: Position, radius = 3): Entity | undefined { let entities = this.entities.grids.getEntitiesAround( position.gridX!, position.gridY!, radius ), - closest: Entity | undefined, - boundary = this.map.tileSize * 1.5; + closest: Entity | undefined; /** - * The `position` parameter contains the absolute x and y coordinates - * of the cursor. We iterate through the entities and try to find - * the distance between the cursor and the entity. We then compare - * the distance to the previous entity and if it is smaller, we - * replace the previous entity with the current one. + * We iterate through every entity that we find near the mouse position. We + * check if the entity can be interacted with, and then we do some magical + * math to determine if the mouse position is within the entity's boundaries. + * We take the entity's bounding box, find the centre of it, and then we + * calculate the distance between the mouse position and the centre of the + * bounding box. Think of it as a circle, actually, turn on debug mode so + * you can see the entity bounding box better. */ for (let entity of entities) { - // Skip pets from the search. - if (entity.isPet()) continue; - - let entityX = entity.x - entity.sprite.offsetX / 2, - entityY = entity.y - entity.sprite.offsetY / 2, - distance = Utils.distance(position.x, position.y, entityX, entityY); - - if (distance > boundary) continue; - + // Exclude unnecessary entities. + if (entity.isProjectile() || entity.isPet() || this.isMainPlayer(entity.instance)) + continue; + + // Skip if the entity is a resource and is exhausted. + if (entity.isResource() && (entity as Resource).exhausted) continue; + + // Get the bounding box, determine the centre, calculate distance between mouse and centre. + let boundingBox = entity.getBoundingBox(), + centreX = boundingBox.x + boundingBox.width / 2, + centreY = boundingBox.y + boundingBox.height / 2, + distance = Utils.distance(position.x, position.y, centreX, centreY), + threshold = + (entity.sprite.width < entity.sprite.height + ? entity.sprite.width + : entity.sprite.height) / 2; + + // Skip if the distance is greater than the boundary. + if (distance > threshold) continue; + + // Find the closest entity to the mouse position. if (!closest || distance < closest.distance) { closest = entity; closest.distance = distance; @@ -385,8 +432,9 @@ export default class Game { this.player.moving = false; this.player.disableAction = false; this.camera.centreOn(this.player); - this.renderer.updateAnimatedTiles(); } + + this.forceRendering(); } /** @@ -397,7 +445,45 @@ export default class Game { public zoom(amount: number): void { this.camera.zoom(amount); this.storage.setZoom(this.camera.zoomFactor); + this.pointer.resize(); this.renderer.resize(); } + + /** + * Whether or not the game is in low power mode. This prevents the camera + * from following the player and disables animated tiles. + */ + + public isLowPowerMode(): boolean { + return !this.camera.isCentered() && !this.renderer.animateTiles; + } + + /** + * Function to consolidate all calls to check whether or not the current + * entity we're dealing with is the main player. + * @param instance The instance we want to check. + * @returns Whether the main player's instance matches the instance provided. + */ + + public isMainPlayer(instance: string): boolean { + return this.player.instance === instance; + } + + /** + * Forcibly makes the renderer render a couple frames to + * ensure animated tiles are rendered. + */ + + public forceRendering(): void { + // Forcibly render the game for a few frames to ensure animated tiles are rendered. + let count = 0, + interval = setInterval(() => { + this.renderer.forceRendering = true; + + count++; + + if (count > 10) clearInterval(interval); + }, 100); + } } diff --git a/packages/client/src/lib/astar.ts b/packages/client/src/lib/astar.ts index adcf5d078e..f19c0f3617 100644 --- a/packages/client/src/lib/astar.ts +++ b/packages/client/src/lib/astar.ts @@ -209,10 +209,10 @@ function successors( result = [], i = 0; - $N && (result[i++] = { x, y: N }); - $E && (result[i++] = { x: E, y }); - $S && (result[i++] = { x, y: S }); - $W && (result[i++] = { x: W, y }); + if ($N) result[i++] = { x, y: N }; + if ($E) result[i++] = { x: E, y }; + if ($S) result[i++] = { x, y: S }; + if ($W) result[i++] = { x: W, y }; return find($N, $S, $E, $W, N, S, E, W, grid, rows, cols, result, i); } diff --git a/packages/client/src/lib/i18n.ts b/packages/client/src/lib/i18n.ts new file mode 100644 index 0000000000..835e50edeb --- /dev/null +++ b/packages/client/src/lib/i18n.ts @@ -0,0 +1,5 @@ +import { changeLanguage, type Locale } from '@kaetram/common/i18n'; + +let lang = location.pathname.slice(1, 3) as Locale; + +if (lang) await changeLanguage(lang); diff --git a/packages/client/src/lib/sentry.ts b/packages/client/src/lib/sentry.ts index c0baf6e6ea..ab6444c065 100644 --- a/packages/client/src/lib/sentry.ts +++ b/packages/client/src/lib/sentry.ts @@ -1,9 +1,8 @@ -import * as Sentry from '@sentry/browser'; -import { BrowserTracing } from '@sentry/tracing'; +import { init, BrowserTracing } from '@sentry/browser'; -if (window.config.sentryDsn) - Sentry.init({ - dsn: window.config.sentryDsn, +if (import.meta.env.PROD && globalConfig.sentryDsn) + init({ + dsn: globalConfig.sentryDsn, integrations: [new BrowserTracing()], tracesSampleRate: 1 }); diff --git a/packages/client/src/main.ts b/packages/client/src/main.ts index 776b83d43c..c82532c33e 100644 --- a/packages/client/src/main.ts +++ b/packages/client/src/main.ts @@ -1,12 +1,14 @@ import App from './app'; import Game from './game'; +import './lib/i18n'; import './lib/sentry'; -import '../scss/main.scss'; /** * The entry point for the game. Create an instance of the game * and pass a new instance of the app onto it. */ -new Game(new App()); +window.addEventListener('load', () => { + new Game(new App()); +}); diff --git a/packages/client/src/renderer/grids.ts b/packages/client/src/map/grids.ts similarity index 74% rename from packages/client/src/renderer/grids.ts rename to packages/client/src/map/grids.ts index 05f57f5c6c..159bdece4d 100644 --- a/packages/client/src/renderer/grids.ts +++ b/packages/client/src/map/grids.ts @@ -1,32 +1,13 @@ -import log from '../lib/log'; import Character from '../entity/character/character'; import type Entity from '../entity/entity'; -import type Map from '../map/map'; +import type Map from './map'; export default class Grids { // Grid used for rendering entities. public renderingGrid: { [id: string]: Entity }[][] = []; - public constructor(private map: Map) { - this.load(); - } - - /** - * Loads a rendering grid based on the proportions of the map's - * width and height. The rendering grid saves the entities near - * the players. We use this grid in order to render them. - */ - - private load(): void { - for (let i = 0; i < this.map.height; i++) { - this.renderingGrid[i] = []; - - for (let j = 0; j < this.map.width; j++) this.renderingGrid[i][j] = {}; - } - - log.debug('Finished generating the rendering grid.'); - } + public constructor(private map: Map) {} /** * Adds an entity to the rendering grid. diff --git a/packages/client/src/map/map.ts b/packages/client/src/map/map.ts index 57911cc320..d8b22a767f 100644 --- a/packages/client/src/map/map.ts +++ b/packages/client/src/map/map.ts @@ -1,17 +1,21 @@ -import mapData from '../../data/maps/map.json'; +import Grids from './grids'; + import log from '../lib/log'; +import mapData from '../../data/maps/map.json'; import Utils, { isInt } from '../utils/util'; import { Modules } from '@kaetram/common/network'; +import type Game from '../game'; import type { + ClientTile, ProcessedAnimation, ProcessedTileset, RegionData, - RegionTile, - RegionTileData + RegionTileData, + Tile, + TransformedTile } from '@kaetram/common/types/map'; -import type Game from '../game'; export interface CursorTiles { [tileId: number]: string; @@ -32,17 +36,22 @@ export default class Map { public tileSize = mapData.tileSize; // Map data - public data: RegionTile[] = []; + public data: ClientTile[] = []; public grid: number[][] = []; // Two dimensional grid array for collisions/pathing private high: number[] = mapData.high; + private cachedHighTiles: { [index: number]: 0 } = {}; private objects: number[] = []; private lights: number[] = []; public tilesets: TilesetInfo[] = []; private rawTilesets: ProcessedTileset[] = mapData.tilesets; // Key is tileset id, value is the firstGID private cursorTiles: CursorTiles = {}; + private animatedTiles: { [tileId: number]: ProcessedAnimation[] } = mapData.animations; + public dynamicAnimatedTiles: { [index: number]: ClientTile } = {}; + + public grids: Grids; public mapLoaded = false; public regionsLoaded = 0; @@ -51,7 +60,21 @@ export default class Map { private readyCallback?(): void; public constructor(private game: Game) { - this.load(); + this.grids = new Grids(this); + + // Load the empty grid data without webworkers if we're on iOS. + this.loadGrid(); + + this.loadTilesets(); + this.loadRegionData(); + + this.ready(); + + // Store tile size globally into the utils. + Utils.tileSize = this.tileSize; + Utils.sideLength = this.width / Modules.Constants.MAP_DIVISION_SIZE; + Utils.halfTile = this.tileSize / 2; + Utils.tileAndAQuarter = this.tileSize * 1.25; } /** @@ -65,38 +88,29 @@ export default class Map { } /** - * Uses webworkers to create an empty data and collision - * grid based on the map's dimensions. This can be quite - * time consuming so we relay it to an external worker - * to speed up the task. + * Initializes the collision, map data, and rendering grid. The data grid is used + * for rendering tiles, and the collision grid for determining which + * tile is a collision. */ - private load(): void { - log.debug('Parsing map with Web Workers...'); - - // Store tile size globally into the utils. - Utils.tileSize = this.tileSize; - Utils.sideLength = this.width / Modules.Constants.MAP_DIVISION_SIZE; - Utils.thirdTile = this.tileSize / 3; - Utils.tileAndAQuarter = this.tileSize * 1.25; - - let worker = new Worker(new URL('mapworker.ts', import.meta.url), { type: 'classic' }); - - // Send the map's width and height to the webworker. - worker.postMessage([this.width, this.height]); + private loadGrid(): void { + let time = Date.now(); - worker.addEventListener('message', (event) => { - if (event.data.data) this.data = event.data.data; - if (event.data.grid) this.grid = event.data.grid; + for (let y = 0; y < this.height; y++) { + this.grid[y] = []; + this.grids.renderingGrid[y] = []; - this.loadRegionData(); - - this.mapLoaded = true; - }); + // Initialize collision grid. + for (let x = 0; x < this.width; x++) { + this.data.push(0); + this.grid[y][x] = 1; + this.grids.renderingGrid[y][x] = {}; + } + } - this.loadTilesets(); + log.debug(`Loaded empty grid in ${Date.now() - time}ms.`); - this.ready(); + this.mapLoaded = true; } /** @@ -123,37 +137,54 @@ export default class Map { */ public loadRegion(data: RegionTileData[], region: number): void { - for (let tile of data) { - let index = this.coordToIndex(tile.x, tile.y), - objectIndex = this.objects.indexOf(index); + for (let tile of data) this.loadRegionTileData(tile); + + // Store the region we just saved into our local storage. + this.game.storage.setRegionData(data, region); + } + + /** + * Parses through a specified tile within the region information and extracts all + * the necessary information into its respective array/dictionary. + * @param tile The tile that we want to parse. + */ - // Store the tile data so that we can render it later. - this.data[index] = tile.data; + private loadRegionTileData(tile: RegionTileData): void { + let index = this.coordToIndex(tile.x, tile.y), + objectIndex = this.objects.indexOf(index), + useAnimationData = !(index in this.dynamicAnimatedTiles) && !this.game.isLowPowerMode(), + tileData = this.parseTileData(tile.data), + animationData = tile.animation ? this.parseTileData(tile.animation) : undefined; - // Add collision if the tile is colliding and there's no collision. - if (tile.c && !this.isColliding(tile.x, tile.y)) this.grid[tile.y][tile.x] = 1; + /** + * If we're in low power mode just store the tile data as is. Otherwise we store + * the animated data if specified and default to the data if not. + */ + this.data[index] = useAnimationData ? animationData || tileData : tileData; - // Remove collision if the tile is not colliding and there's a collision. - if (!tile.c && this.isColliding(tile.x, tile.y)) this.grid[tile.y][tile.x] = 0; + // If the tile contains an animation flag, we store it in the dynamic animated tiles dictionary. + if (animationData) this.dynamicAnimatedTiles[index] = tileData; - // If the tile has a cursor, we store it in our cursorTiles dictionary. - if (tile.cur) this.cursorTiles[index] = tile.cur; + // Add collision if the tile is colliding and there's no collision. + if (tile.c && !this.isColliding(tile.x, tile.y)) this.grid[tile.y][tile.x] = 1; - // If the tile doesn't have a cursor but the index is in our cursorTiles dictionary, we remove it. - if (!tile.cur && index in this.cursorTiles) this.cursorTiles[index] = ''; + // Remove collision if the tile is not colliding and there's a collision. + if (!tile.c && this.isColliding(tile.x, tile.y)) this.grid[tile.y][tile.x] = 0; - // If the tile has an object, we store it in our objects array. - if (tile.o && objectIndex < 0) this.objects.push(index); + // If the tile has a cursor, we store it in our cursorTiles dictionary. + if (tile.cur) this.cursorTiles[index] = tile.cur; - // If the tile doesn't have an object but the index is in our objects array, we remove it. - if (!tile.o && objectIndex > -1) this.objects.splice(objectIndex, 1); + // If the tile doesn't have a cursor but the index is in our cursorTiles dictionary, we remove it. + if (!tile.cur && index in this.cursorTiles) this.cursorTiles[index] = ''; - // Add the tile information to the WebGL renderer if it's active. - if (this.game.useWebGl) this.game.renderer.setTile(index, tile.data); - } + // If the tile has an object, we store it in our objects array. + if (tile.o && objectIndex < 0) this.objects.push(index); - // Store the region we just saved into our local storage. - this.game.storage.setRegionData(data, region); + // If the tile doesn't have an object but the index is in our objects array, we remove it. + if (!tile.o && objectIndex > -1) this.objects.splice(objectIndex, 1); + + // Add the tile information to the WebGL renderer if it's active. + if (this.game.useWebGl) this.game.renderer.setTile(index, this.data[index]); } /** @@ -208,7 +239,7 @@ export default class Map { tilesetInfo.addEventListener('load', () => { // Prevent uneven tilemaps from loading. if (tilesetInfo.width % this.tileSize > 0) - throw new Error(`The tile size is malformed in the tile set: ${tileset.path}`); + log.error(`The tile size is malformed in the tile set: ${tileset.path}`); // Mark tileset as loaded. tilesetInfo.loaded = true; @@ -217,7 +248,7 @@ export default class Map { }); tilesetInfo.addEventListener('error', () => { - throw new Error(`Could not find tile set: ${tileset.path}`); + log.error(`Could not find tile set: ${tileset.path}`); }); /** @@ -254,6 +285,7 @@ export default class Map { this.loadRegions(data.regionData); } catch { this.game.storage.clear(); + this.game.storage.clearIndexedDB(); } this.objects = data.objects; @@ -261,11 +293,65 @@ export default class Map { this.regionsLoaded = keys.length; - log.info(`Preloaded map data with ${keys.length} regions.`); + log.debug(`Preloaded map data with ${keys.length} regions.`); } }); } + /** + * Given a raw tile received from a server at an index, we try to extract the information + * from it and determine if it contains and flipped flags. We create a new array (or single + * variable if the original data is not an array). + * @param data The raw tile data, may be a single number or an array of numbers. + * @returns A processed client tile object. + */ + + public parseTileData(data: Tile): ClientTile { + let isArray = Array.isArray(data), + parsedData: ClientTile = isArray ? [] : 0; + + this.forEachTile(data, (tileId: number) => { + let tile: number | TransformedTile = tileId; + + if (this.isFlippedTileId(tileId)) tile = this.getFlippedTile(tileId); + + if (isArray) (parsedData as unknown[]).push(tile); + else parsedData = tile; + }); + + return parsedData; + } + + /** + * Uses a rotated tile which contains the flip flags bitshifted onto it and undoes + * the bitshift to retrieve the original tileId. This is used for retrieving the + * original tileId from a flipped tile. We also store each flag of the transformations + * and apply them onto a TransformedTile object. + * For more information refer to the following + * https://doc.mapeditor.org/en/stable/reference/tmx-map-format/#tmx-tile-flipping + * @param tileId The tileId of the flipped tile. + * @returns A parsed tile of type `RotatedTile`. + */ + + public getFlippedTile(tileId: number): TransformedTile { + let h = !!(tileId & Modules.MapFlags.HORIZONTAL_FLAG), + v = !!(tileId & Modules.MapFlags.VERTICAL_FLAG), + d = !!(tileId & Modules.MapFlags.DIAGONAL_FLAG); + + tileId &= ~( + Modules.MapFlags.DIAGONAL_FLAG | + Modules.MapFlags.VERTICAL_FLAG | + Modules.MapFlags.HORIZONTAL_FLAG + ); + + return { + tileId, + h, + v, + d + }; + } + /** * Saves and stores information about objects and cursor tiles into the local storage. */ @@ -293,7 +379,7 @@ export default class Map { public indexToCoord(index: number): Position { return { x: index % this.width, - y: Math.floor(index / this.width) + y: ~~(index / this.width) }; } @@ -302,14 +388,15 @@ export default class Map { * marked as a collision. * @param x The x grid coordinate. * @param y The y grid coordinate. + * @param all Whether to include additional collisions. * @returns Whether the x and y coordinates in the 2D grid are colliding. */ - public isColliding(x: number, y: number): boolean { + public isColliding(x: number, y: number, all = false): boolean { if (this.isOutOfBounds(x, y)) return true; if ((this.data[this.coordToIndex(x, y)] as number) < 1) return true; - return this.grid[y][x] === 1; + return this.grid[y][x] === 1 || (all && this.grid[y][x] === 2); } /** @@ -326,21 +413,6 @@ export default class Map { return this.objects.includes(index); } - /** - * Converts the x and y grid coordinate into an index and checks - * our cursor tiles dictionary for an entry of the index. If it's not - * found, it returns undefined by default. - * @param x The x grid coordinate we are checking. - * @param y The y grid coordinate we are checking. - * @returns The name of the cursor at the tile index if exists, otherwise undefined. - */ - - public getTileCursor(x: number, y: number): string { - let index = this.coordToIndex(x, y); - - return this.cursorTiles[index]; - } - /** * Checks if the tileId parameter is part of our high tiles array. * @param tileId The tileId we are checking. @@ -348,7 +420,17 @@ export default class Map { */ public isHighTile(tileId: number): boolean { - return this.high.includes(tileId); + // Check if the tileId is cached. + if (this.cachedHighTiles[tileId]) return true; + + // Cache the tileId if it's in our high tiles hashmap + if (this.high.includes(tileId)) { + this.cachedHighTiles[tileId] = 0; + + return true; + } + + return false; } /** @@ -390,7 +472,31 @@ export default class Map { */ public isOutOfBounds(x: number, y: number): boolean { - return isInt(x) && isInt(y) && (x < 0 || x >= this.width || y < 0 || y >= this.height); + return x < 0 || x >= this.width || y < 0 || y >= this.height; + } + + /** + * A flipped tile is any tile that contains a flip flag or transpose flag. + * @param tile Tile data received from the server. + * @returns Whether or not the tile contains and flip flags. + */ + + public isFlipped(tile: ClientTile): tile is TransformedTile { + return ( + (tile as TransformedTile).v || + (tile as TransformedTile).h || + (tile as TransformedTile).d + ); + } + + /** + * Checks whether a tileId is flipped or not by comparing + * the value against the lowest flipped bitflag. + * @param tileId The tileId we are checking. + */ + + public isFlippedTileId(tileId: number): boolean { + return tileId > (Modules.MapFlags.DIAGONAL_FLAG as number); } /** @@ -415,6 +521,22 @@ export default class Map { return undefined; } + + /** + * Converts the x and y grid coordinate into an index and checks + * our cursor tiles dictionary for an entry of the index. If it's not + * found, it returns undefined by default. + * @param x The x grid coordinate we are checking. + * @param y The y grid coordinate we are checking. + * @returns The name of the cursor at the tile index if exists, otherwise undefined. + */ + + public getTileCursor(x: number, y: number): string { + let index = this.coordToIndex(x, y); + + return this.cursorTiles[index]; + } + /** * Callback for when the map is ready to be used (preliminary data is loaded). */ @@ -422,4 +544,17 @@ export default class Map { public onReady(callback: () => void): void { this.readyCallback = callback; } + + /** + * Iterates through all the tiles at a given index if it's an array, otherwise we just return + * the number contained at that location. This is used to speed up code when trying to handle + * logic for multiple tiles at a location. + * @param data The raw tile data (generally contained in the umodified map) at an index. + * @param callback The tile id and index of the tile currently being iterated. + */ + + public forEachTile(data: Tile, callback: (tileId: number, index?: number) => void): void { + if (Array.isArray(data)) for (let index in data) callback(data[index], parseInt(index)); + else callback(data); + } } diff --git a/packages/client/src/map/mapworker.ts b/packages/client/src/map/mapworker.ts deleted file mode 100644 index d7331de35a..0000000000 --- a/packages/client/src/map/mapworker.ts +++ /dev/null @@ -1,33 +0,0 @@ -/// - -/** - * WebWorker just works in the background to create - * an empty data grid and collision grid. - */ - -let width = 0, - height = 0, - data: number[] = [], - grid: number[][] = []; - -onmessage = (event) => { - [width, height] = event.data; - - loadGrids(); - - postMessage({ - data, - grid - }); -}; - -function loadGrids() { - for (let y = 0; y < height; y++) { - grid[y] = []; - - for (let x = 0; x < width; x++) { - data.push(0); - grid[y][x] = 1; - } - } -} diff --git a/packages/client/src/map/tile.ts b/packages/client/src/map/tile.ts new file mode 100644 index 0000000000..f02eabf075 --- /dev/null +++ b/packages/client/src/map/tile.ts @@ -0,0 +1,65 @@ +import type { ProcessedAnimation, ClientTile } from '@kaetram/common/types/map'; + +export default class Tile { + public animationIndex = 0; + + // Denotes whether or not to delete the tile after the animation is complete. + public expired = false; + + // Used to indicate the tile is no longer used in the rendering process. + public unused = false; + + // WebGL rendering functions. + public uploaded = true; + + public lastTime = 0; + + // Used to keep track of whether or not the tile is still being used. + public lastAccessed = Date.now(); + + public constructor( + public id: number, // The tileId + public index: number, // Index position of the tile. + public animationInfo: ProcessedAnimation[], + public isFlipped = false, + public isHighTile = false, // Used by the WebGL renderer. + public postAnimationData?: ClientTile + ) {} + + /** + * Animates a tile when the time elapsed since the last update is + * greater than the duration of the animation. We change the tileId + * when this update occurs and increment the animationIndex. Once + * we exhaust all the animations in the tile, we reset the animationIndex. + * @param time The current time in milliseconds (sent from the client updater). + */ + + public animate(time: number): void { + // Expire the tile if it hasn't been accessed in 5 seconds. + if (time - this.lastAccessed > 5000) this.unused = true; + + // The animation loop occurs once the time elapsed since the last update is greater than the duration of the animation. + if (time - this.lastTime > this.getDuration()) { + this.id = this.animationInfo[this.animationIndex].tileId; + + this.lastTime = time; + + this.uploaded = false; + + if (this.animationIndex >= Object.keys(this.animationInfo).length - 1) { + if (this.postAnimationData) this.expired = true; + + this.animationIndex = 0; + } else this.animationIndex++; + } + } + + /** + * Obtains the duration of the current animation. + * @returns The duration of the current animation. + */ + + public getDuration(): number { + return this.animationInfo[this.animationIndex].duration; + } +} diff --git a/packages/client/src/menu/achievements.ts b/packages/client/src/menu/achievements.ts index 54b17b2072..60db1453aa 100644 --- a/packages/client/src/menu/achievements.ts +++ b/packages/client/src/menu/achievements.ts @@ -1,16 +1,34 @@ import Menu from './menu'; -import { Opcodes } from '@kaetram/common/network'; +import { Modules, Opcodes } from '@kaetram/common/network'; import type Player from '../entity/character/player/player'; import type Task from '../entity/character/player/task'; export default class Achievements extends Menu { + public override identifier: number = Modules.Interfaces.Achievements; + + private tabArrowLeft: HTMLDivElement = document.querySelector('#achievements-tab-arrow-left')!; + private tabArrowRight: HTMLDivElement = document.querySelector( + '#achievements-tab-arrow-right' + )!; + + private tabText: HTMLSpanElement = document.querySelector('#achievements-tab-text')!; + // List where all the achievement objects are contained. - private list: HTMLUListElement = document.querySelector('#achievements-container > ul')!; + private list: HTMLUListElement = document.querySelector('#achievements-content > ul')!; + + // The current region the player is viewing. + private currentRegion = 'Mudwich'; + + // The list of regions that the player has activated. + private regions: string[] = []; public constructor(private player: Player) { super('#achievements', '#close-achievements', '#achievements-button'); + + this.tabArrowLeft.addEventListener('click', this.handleTabArrowLeft.bind(this)); + this.tabArrowRight.addEventListener('click', this.handleTabArrowRight.bind(this)); } /** @@ -21,12 +39,7 @@ export default class Achievements extends Menu { public handle(opcode: Opcodes.Achievement, key?: string): void { // Handle achievement batch creation. - if (opcode === Opcodes.Achievement.Batch) { - for (let key in this.player.achievements) - this.createAchievement(this.player.achievements[key], key); - - return; - } + if (opcode === Opcodes.Achievement.Batch) return this.displayAchievements(); // Grab the task by key from the player. This will have been recently updated. let task = this.player.achievements[key!]; @@ -41,6 +54,76 @@ export default class Achievements extends Menu { this.update(this.list.children[task.id] as HTMLLIElement, task); } + /** + * Handles the tab arrow left click event. + */ + + private handleTabArrowLeft(): void { + let index = this.regions.indexOf(this.currentRegion); + + // If the index is 0 then we set the index to the last region. + if (index === 0) index = this.regions.length - 1; + else index--; + + // Set the current region to the new region. + this.currentRegion = this.regions[index]; + + // Display the achievements for the new region. + this.displayAchievements(); + } + + /** + * Handles the tab arrow right click event. + */ + + private handleTabArrowRight(): void { + let index = this.regions.indexOf(this.currentRegion); + + // If the index is the last region then we set the index to 0. + if (index === this.regions.length - 1) index = 0; + else index++; + + // Set the current region to the new region. + this.currentRegion = this.regions[index]; + + // Display the achievements for the new region. + this.displayAchievements(); + } + + /** + * Displays the achievements for the region we currently have selected. We + * clear the list and then iterate through the player's achievements to + * determine which ones we should display. + */ + + private displayAchievements(): void { + // Clear the existing list. + this.list.innerHTML = ''; + this.list.scrollTop = 0; + + // Iterate through the player's achievements. + for (let key in this.player.achievements) { + let task = this.player.achievements[key], + { region } = task; + + // Achievements without a region are miscellaneous. + if (!region) region = 'Miscellaneous'; + + // If the region isn't in the list then we add it. + if (!this.regions.includes(region)) this.regions.push(region); + + // If the task is in the current region then we display it. + if (region === this.currentRegion) this.createAchievement(task, key); + } + + // Remove the miscellaneous region and add it to the end. + this.regions.splice(this.regions.indexOf('Miscellaneous'), 1); + this.regions.push('Miscellaneous'); + + // Update the tab text. + this.tabText.innerHTML = this.currentRegion; + } + /** * Creates an achievement based on the task object provided. A task object is used * for either quests or achievements. In this case we are only using it for achievements. @@ -51,15 +134,16 @@ export default class Achievements extends Menu { private createAchievement(task: Task, key: string): void { let element = document.createElement('li'), + slot = document.createElement('div'), coin = document.createElement('div'), title = document.createElement('p'), description = document.createElement('p'); // Adds the achievement element styling. - element.classList.add('achievement-element'); + element.classList.add('achievement-element', 'slice-list'); - // Adds the classes for achievement title styling. - title.classList.add('stroke'); + // Adds the classes for the coin and achievement title. + slot.classList.add('coin-slot'); title.classList.add('achievement-title'); // Adds the classes for achievement description. @@ -74,19 +158,18 @@ export default class Achievements extends Menu { title.innerHTML = task.name; description.innerHTML = task.description; - // Add the title and description elements onto the achievement element. - element.append(title); - element.append(description); + // Add the coin to the slot. + slot.append(coin); + + // Add the elements to the achievement element. + element.append(slot, title, description); if (task.isFinished()) { // Title is displayed as gold if the achievement is completed. - title.style.color = '#fcda1d'; + title.style.color = '#f4b41b'; // Styling for the coin element. - coin.classList.add('coin', task.secret ? `coin-${key}` : 'coin-default'); - - // Add the coin element. - element.prepend(coin); + coin.classList.add(task.secret ? `coin-${key}` : 'coin-default'); } else if (task.isStarted()) // Create and add the progress to the achievement element. element.append(this.createProgress(task)); @@ -104,7 +187,6 @@ export default class Achievements extends Menu { let progress = document.createElement('p'); // Add styling to the progress. - progress.classList.add('stroke'); progress.classList.add('achievement-progress'); // Hide the progress if task is not started and we are creating a progress object anyway. @@ -120,6 +202,9 @@ export default class Achievements extends Menu { */ private update(element: HTMLLIElement, task: Task): void { + // The achievement is not visible so an undefined element is passed. + if (!element) return; + let title = element.querySelector('.achievement-title')!, description = element.querySelector('.achievement-description')!, progress = element.querySelector('.achievement-progress')!; @@ -140,13 +225,10 @@ export default class Achievements extends Menu { progress?.remove(); // Styling for the coin element. - let coin = document.createElement('div'); - - coin.classList.add('coin'); - coin.classList.add('coin-default'); + let slot = element.querySelector('.coin-slot > div')!; - // Add the coin element to the beginning of the children list. - element.prepend(coin); + slot.classList.add('coin'); + slot.classList.add('coin-default'); } else { // Title is displayed as white if the achievement is not completed. title.style.color = '#fff'; diff --git a/packages/client/src/menu/actions.ts b/packages/client/src/menu/actions.ts index f25d8cf97c..0b3d20096c 100644 --- a/packages/client/src/menu/actions.ts +++ b/packages/client/src/menu/actions.ts @@ -98,7 +98,7 @@ export default class Actions extends Menu { enchantmentsDiv.id = 'action-description-enchantments'; // Apply the attack stats to the attack div. - attack.innerHTML = `Attack Stats:
                                                                                              + attack.innerHTML = `Attack Stats: Crush: ${attackStats.crush}
                                                                                              Slash: ${attackStats.slash}
                                                                                              Stab: ${attackStats.stab}
                                                                                              @@ -106,7 +106,7 @@ export default class Actions extends Menu { Magic: ${attackStats.magic}
                                                                                              `; // Apply the defense stats to the defense div. - defense.innerHTML = `Defense Stats:
                                                                                              + defense.innerHTML = `Defense Stats: Crush: ${defenseStats.crush}
                                                                                              Slash: ${defenseStats.slash}
                                                                                              Stab: ${defenseStats.stab}
                                                                                              @@ -114,7 +114,7 @@ export default class Actions extends Menu { Magic: ${defenseStats.magic}
                                                                                              `; // Apply the bonuses to the bonuses div. - bonusesDiv.innerHTML = `Bonuses:
                                                                                              + bonusesDiv.innerHTML = `Bonuses: Accuracy: ${bonuses.accuracy}
                                                                                              Strength: ${bonuses.strength}
                                                                                              Archery: ${bonuses.archery}
                                                                                              @@ -123,7 +123,7 @@ export default class Actions extends Menu { // If the item has enchantments, apply them to the enchantments div. if (Object.keys(enchantments).length > 0) { // Apply the enchantments to the enchantments div. - enchantmentsDiv.innerHTML = `Enchantments:
                                                                                              `; + enchantmentsDiv.innerHTML = `Enchantments:`; for (let key in enchantments) { let enchantment = Modules.Enchantment[key]; @@ -182,7 +182,6 @@ export default class Actions extends Menu { public showDropDialog(): void { Util.fadeIn(this.dropDialog); - Util.fadeOut(this.description); this.page.classList.add('dimmed'); @@ -196,7 +195,6 @@ export default class Actions extends Menu { public hideDropDialog(): void { Util.fadeOut(this.dropDialog); - Util.fadeIn(this.description); this.page.classList.remove('dimmed'); } diff --git a/packages/client/src/menu/bank.ts b/packages/client/src/menu/bank.ts index ba93350971..5bb53233c5 100644 --- a/packages/client/src/menu/bank.ts +++ b/packages/client/src/menu/bank.ts @@ -17,8 +17,10 @@ type SelectCallback = ( ) => void; export default class Bank extends Menu { - private bankList: HTMLUListElement = document.querySelector('#bank-slot > ul')!; - private inventoryList: HTMLUListElement = document.querySelector('#bank-inventory-slots > ul')!; + public override identifier: number = Modules.Interfaces.Bank; + + private bankList: HTMLUListElement = document.querySelector('#bank-slots')!; + private inventoryList: HTMLUListElement = document.querySelector('#bank-inventory-slots')!; private selectCallback?: SelectCallback; @@ -152,6 +154,8 @@ export default class Bank extends Menu { public override synchronize(): void { if (!this.isVisible()) return; + this.inventoryList.scrollTop = 0; + this.inventory.forEachSlot((index: number, slot: HTMLElement) => { let element = this.getInventoryElement(index), image = element.querySelector('.item-image')!, @@ -204,6 +208,8 @@ export default class Bank extends Menu { public override show(slots: SlotData[]): void { super.show(); + this.bankList.scrollTop = 0; + this.synchronize(); // Set all slots to the new data. @@ -231,7 +237,7 @@ export default class Bank extends Menu { */ private getBankElement(index: number): HTMLElement { - return this.bankList.children[index].querySelector('div') as HTMLElement; + return this.bankList.children[index] as HTMLElement; } /** @@ -242,7 +248,7 @@ export default class Bank extends Menu { */ private getInventoryElement(index: number): HTMLElement { - return this.inventoryList.children[index].querySelector('div') as HTMLElement; + return this.inventoryList.children[index] as HTMLElement; } /** diff --git a/packages/client/src/menu/crafting.ts b/packages/client/src/menu/crafting.ts index 2761d0e908..f6379086d7 100644 --- a/packages/client/src/menu/crafting.ts +++ b/packages/client/src/menu/crafting.ts @@ -4,12 +4,18 @@ import Utils from '../utils/util'; import { Modules, Opcodes } from '@kaetram/common/network'; -import type { CraftingRequirement } from '@kaetram/common/types/crafting'; -import type { CraftingPacket } from '@kaetram/common/types/messages/outgoing'; +import type Player from '../entity/character/player/player'; +import type { + CraftingItemPreview, + CraftingRequirement +} from '@kaetram/common/network/impl/crafting'; +import type { CraftingPacketData } from '@kaetram/common/types/messages/outgoing'; type SelectCallback = (key: string) => void; type CraftCallback = (key: string, amount: number) => void; export default class Crafting extends Menu { + public override identifier: number = Modules.Interfaces.Crafting; + // Where we store the available options for crafting. private options: HTMLUListElement = document.querySelector('#crafting-options')!; private requirements: HTMLUListElement = document.querySelector('#crafting-requirements')!; @@ -38,7 +44,7 @@ export default class Crafting extends Menu { private selectCallback?: SelectCallback; private craftCallback?: CraftCallback; - public constructor() { + public constructor(private player: Player) { super('#crafting', '#close-crafting'); this.craftOne.addEventListener('click', () => this.handleAmount(1)); @@ -58,10 +64,10 @@ export default class Crafting extends Menu { * @param info Contains the information about the crafting action. */ - public handle(opcode: Opcodes.Crafting, info: CraftingPacket): void { + public handle(opcode: Opcodes.Crafting, info: CraftingPacketData): void { switch (opcode) { case Opcodes.Crafting.Open: { - return this.show(info.type!, info.keys!); + return this.show(info.type!, info.previews!); } case Opcodes.Crafting.Select: { @@ -119,7 +125,9 @@ export default class Crafting extends Menu { // Create new requirement element and append it to the list of requirements. for (let requirement of requirements) - this.requirements.append(this.createSlot(requirement.key, requirement.count, true)); + this.requirements.append( + this.createSlot(requirement.key, requirement.name!, requirement.count, 0, true) + ); } /** @@ -159,7 +167,7 @@ export default class Crafting extends Menu { * @param keys Contains a string array of the available keys (used for item url path). */ - public override show(type: Modules.Skills, keys: string[]): void { + public override show(type: Modules.Skills, previews: CraftingItemPreview[]): void { super.show(); // Clear all the options. @@ -169,11 +177,12 @@ export default class Crafting extends Menu { this.type = type; // Create a new option for each key and append it to the list of options. - for (let key of keys) this.options.append(this.createSlot(key)); + for (let preview of previews) + this.options.append(this.createSlot(preview.key, '', 0, preview.level)); // Select the first option by default if it exists. - if (keys.length > 0) { - this.selectCallback?.(keys[0]); + if (previews.length > 0) { + this.selectCallback?.(previews[0].key); this.options.children[0].classList.add('active'); } @@ -187,6 +196,7 @@ export default class Crafting extends Menu { break; } + case Modules.Skills.Chiseling: case Modules.Skills.Crafting: { text = 'Craft'; break; @@ -206,6 +216,11 @@ export default class Crafting extends Menu { text = 'Smelt'; break; } + + case Modules.Skills.Alchemy: { + text = 'Brew'; + break; + } } this.craftButton.innerHTML = text; @@ -214,9 +229,18 @@ export default class Crafting extends Menu { /** * Creates a option list element and appends it to the list of options. * @param key The key of the item to craft. + * @param name The formatted name of the item to craft. + * @param count The amount of the item to craft. + * @param disableClick Whether or not to disable the click event for the option. */ - private createSlot(key: string, count?: number, disableClick = false): HTMLLIElement { + private createSlot( + key: string, + name?: string, + count?: number, + level = 0, + disableClick = false + ): HTMLLIElement { let element = document.createElement('li'), icon = document.createElement('div'); @@ -224,6 +248,9 @@ export default class Crafting extends Menu { element.classList.add('crafting-option'); icon.classList.add('crafting-option-icon'); + // Fade and greyscale the icon if the player doesn't have the required level. + if (this.player.skills[this.type]?.level < level) icon.classList.add('greyscale'); + // Apply the image url to the icon. icon.style.backgroundImage = Utils.getImageURL(key); @@ -265,13 +292,6 @@ export default class Crafting extends Menu { private getSkillIcon(): string { let name = Modules.Skills[this.type].toLowerCase(); - switch (this.type) { - case Modules.Skills.Smelting: - case Modules.Skills.Smithing: { - return `url(/img/interface/skills/smithing.png)`; - } - } - return `url(/img/interface/skills/${name}.png)`; } diff --git a/packages/client/src/menu/enchant.ts b/packages/client/src/menu/enchant.ts index f2772d36a6..df15813583 100644 --- a/packages/client/src/menu/enchant.ts +++ b/packages/client/src/menu/enchant.ts @@ -9,15 +9,17 @@ import type Inventory from './inventory'; type SelectCallback = (index: number) => void; type ConfirmCallback = (index: number, shardIndex: number) => void; export default class Enchant extends Menu { + public override identifier: number = Modules.Interfaces.Enchant; + private list: HTMLUListElement = document.querySelector('#enchant-inventory-slots')!; // Selected items for the enchanting process. - private selectedItem: HTMLElement = document.querySelector('#enchant-selected-item')!; - private selectedShards: HTMLElement = document.querySelector('#enchant-shards')!; - private selectedShardsCount: HTMLElement = document.querySelector('#shards-count')!; + private selectedItem: HTMLElement = document.querySelector('#enchant-item-selected > div')!; + private selectedShards: HTMLElement = document.querySelector('#enchant-item-shards > div')!; + private selectedShardsCount: HTMLElement = document.querySelector('#enchant-item-count')!; // Confirm button - private confirmButton: HTMLElement = document.querySelector('#confirm-enchant')!; + private confirmButton: HTMLElement = document.querySelector('#enchant-item-confirm')!; // Selected elements for packet data private selectedSlot = -1; // Item slot @@ -174,7 +176,7 @@ export default class Enchant extends Menu { */ private getElement(index: number): HTMLElement { - return this.list.children[index].querySelector('div') as HTMLElement; + return this.list.children[index] as HTMLElement; } /** diff --git a/packages/client/src/menu/equipments.ts b/packages/client/src/menu/equipments.ts index 6c98c053ad..f269a03a73 100644 --- a/packages/client/src/menu/equipments.ts +++ b/packages/client/src/menu/equipments.ts @@ -1,5 +1,6 @@ import Menu from './menu'; +import log from '../lib/log'; import Util from '../utils/util'; import { Modules } from '@kaetram/common/network'; @@ -7,30 +8,73 @@ import { Modules } from '@kaetram/common/network'; import type { Bonuses, Stats } from '@kaetram/common/types/item'; import type SpritesController from '../controllers/sprites'; import type Player from '../entity/character/player/player'; +import type Equipment from '../entity/character/player/equipment'; +import type Game from '../game'; type UnequipCallback = (type: Modules.Equipment) => void; +type ImageOrientation = 'down' | 'right' | 'up' | 'left'; export default class Equipments extends Menu { - // Player image elements - private playerArmour: HTMLElement = document.querySelector('#player-image-armour')!; - private playerWeapon: HTMLElement = document.querySelector('#player-image-weapon')!; + public override identifier: number = Modules.Interfaces.Equipments; + + private player: Player; + private sprites: SpritesController; + + // Player image canvas + private playerCanvas: HTMLCanvasElement = document.querySelector( + '#equipments-player-image-canvas' + )!; + + private equipmentSlots: HTMLElement = document.querySelector('#equipment-slots')!; // Equipment slots elements - private weapon: HTMLElement = document.querySelector('.equip-weapon-slot')!; - private weaponSkin: HTMLElement = document.querySelector('.equip-weapon-skin-slot')!; - private armour: HTMLElement = document.querySelector('.equip-armour-slot')!; - private armourSkin: HTMLElement = document.querySelector('.equip-armour-skin-slot')!; - private pendant: HTMLElement = document.querySelector('.equip-pendant-slot')!; - private ring: HTMLElement = document.querySelector('.equip-ring-slot')!; - private boots: HTMLElement = document.querySelector('.equip-boots-slot')!; - private arrow: HTMLElement = document.querySelector('.equip-arrows-slot')!; + private helmet: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-helmet > .equipment-slot-image' + )!; + private pendant: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-pendant > .equipment-slot-image' + )!; + private arrows: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-arrows > .equipment-slot-image' + )!; + private chestplate: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-chestplate > .equipment-slot-image' + )!; + private weapon: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-weapon > .equipment-slot-image' + )!; + private shield: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-shield > .equipment-slot-image' + )!; + private ring: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-ring > .equipment-slot-image' + )!; + private weaponSkin: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-weapon-skin > .equipment-slot-image' + )!; + private armourSkin: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-armour-skin > .equipment-slot-image' + )!; + private legplates: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-legplates > .equipment-slot-image' + )!; + private cape: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-cape > .equipment-slot-image' + )!; + private boots: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-boots > .equipment-slot-image' + )!; // Counts - private arrowsCount: HTMLElement = document.querySelector('#arrows-count')!; + private arrowsCount: HTMLElement = document.querySelector('.equipment-slot-arrows-count')!; // Navigation elements - private previous: HTMLElement = document.querySelector('#player-image-navigator > .previous')!; - private next: HTMLElement = document.querySelector('#player-image-navigator > .next')!; + private previous: HTMLElement = document.querySelector( + '#equipments-player-image-navigator > .previous' + )!; + private next: HTMLElement = document.querySelector( + '#equipments-player-image-navigator > .next' + )!; // Stats elements private attackStats: HTMLElement = document.querySelector('#attack-stats')!; @@ -42,34 +86,67 @@ export default class Equipments extends Menu { private unequipCallback?: UnequipCallback; - public constructor(private player: Player, private sprites: SpritesController) { + public constructor(private game: Game) { super('#equipments', '#close-equipments', '#equipment-button'); + this.player = game.player; + this.sprites = game.sprites; + // Navigation event listeners. this.previous.addEventListener('click', () => this.handleNavigation('previous')); this.next.addEventListener('click', () => this.handleNavigation('next')); // Equipment slot event listeners -- definitely not stolen from the state page :) - this.weapon.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Weapon) + this.helmet.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Helmet) + ); + this.pendant.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Pendant) ); - this.weaponSkin.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.WeaponSkin) + this.arrows.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Arrows) ); - this.armour.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Helmet) + this.chestplate.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Chestplate) ); - this.armourSkin.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Skin) + this.weapon.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Weapon) ); - this.pendant.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Pendant) + this.shield.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Shield) ); this.ring.addEventListener('click', () => this.unequipCallback?.(Modules.Equipment.Ring)); - this.boots.addEventListener('click', () => this.unequipCallback?.(Modules.Equipment.Boots)); - this.arrow.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Arrows) + this.weaponSkin.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.WeaponSkin) ); + this.armourSkin.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.ArmourSkin) + ); + this.legplates.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Legplates) + ); + this.cape.addEventListener('click', () => this.unequipCallback?.(Modules.Equipment.Cape)); + this.boots.addEventListener('click', () => this.unequipCallback?.(Modules.Equipment.Boots)); + } + + /** + * Override for the menu `show()` function to synchronize + * the equipment screen with the player's equipment data. + */ + + public override show(): void { + super.show(); + + this.synchronize(); } /** @@ -78,20 +155,45 @@ export default class Equipments extends Menu { public override synchronize(): void { this.loadStats(); - this.loadPlayerImage(); + this.updatePlayerImage(); // Synchronize equipment data - this.weapon.style.backgroundImage = Util.getImageURL(this.player.getWeapon().key); - this.weaponSkin.style.backgroundImage = Util.getImageURL(this.player.getWeaponSkin().key); - // Cloth armour shouldn't be displayed in the UI. - this.armour.style.backgroundImage = Util.getImageURL( - this.player.getHelmet().key === 'clotharmor' ? '' : this.player.getHelmet().key - ); - this.armourSkin.style.backgroundImage = Util.getImageURL(this.player.getArmourSkin().key); - this.pendant.style.backgroundImage = Util.getImageURL(this.player.getPendant().key); - this.ring.style.backgroundImage = Util.getImageURL(this.player.getRing().key); - this.boots.style.backgroundImage = Util.getImageURL(this.player.getBoots().key); - this.arrow.style.backgroundImage = Util.getImageURL(this.player.getArrows().key); + this.helmet.style.backgroundImage = + Util.getImageURL(this.player.getHelmet().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Helmet); + this.pendant.style.backgroundImage = + Util.getImageURL(this.player.getPendant().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Pendant); + this.arrows.style.backgroundImage = + Util.getImageURL(this.player.getArrows().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Arrows); + this.chestplate.style.backgroundImage = + Util.getImageURL(this.player.getChestplate().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Chestplate); + this.weapon.style.backgroundImage = + Util.getImageURL(this.player.getWeapon().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Weapon); + this.shield.style.backgroundImage = + Util.getImageURL(this.player.getShield().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Shield); + this.ring.style.backgroundImage = + Util.getImageURL(this.player.getRing().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Ring); + this.weaponSkin.style.backgroundImage = + Util.getImageURL(this.player.getWeaponSkin().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.WeaponSkin); + this.armourSkin.style.backgroundImage = + Util.getImageURL(this.player.getArmourSkin().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.ArmourSkin); + this.legplates.style.backgroundImage = + Util.getImageURL(this.player.getLegplate().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Legplates); + this.cape.style.backgroundImage = + Util.getImageURL(this.player.getCape().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Cape); + this.boots.style.backgroundImage = + Util.getImageURL(this.player.getBoots().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Boots); // Synchronize arrow count let arrowCount = this.player.getArrows().count; @@ -99,14 +201,6 @@ export default class Equipments extends Menu { this.arrowsCount.innerHTML = arrowCount < 1 ? '' : `+${arrowCount}`; } - /** - * Reload the image every time we resize the screen. - */ - - public override resize(): void { - this.loadPlayerImage(); - } - /** * Handles the navigation arrows. We just change the orientation and then update the player image. */ @@ -134,7 +228,9 @@ export default class Equipments extends Menu { this.imageOrientation = orientations[index]; - this.loadPlayerImage(); + this.updatePlayerImage( + Modules.Orientation[this.imageOrientation].toString().toLowerCase() as ImageOrientation + ); } /** @@ -192,64 +288,117 @@ export default class Equipments extends Menu { } /** - * Prepares the player image that is displayed in the equipment screen. We pick both the - * armour and the weapon and overlay them on top of each other. + * The character image is a 2D canvas that is using the player's base + * alongside all of the equipment and customizations their sprite has. + * We build the character image by drawing the base sprite and then + * drawing the equipment and customizations on top of it. */ - private loadPlayerImage(): void { - // let armourUrl = `url("/img/sprites/${this.player.getArmour().key}.png")`, - // armourSprite = this.player.sprite, - // isFlipped = this.imageOrientation === Modules.Orientation.Left, - // index = this.getOrientationIndex(); - // if (!armourSprite) return; - // // Set the player armour sprite. - // this.playerArmour.style.backgroundImage = armourUrl; - // this.playerArmour.style.backgroundPosition = `0 -${index * armourSprite.height}px`; - // /** - // * If the player has a weapon we do some fancy math, otherwise we remove the weapon - // * element's background image. - // */ - // if (this.player.hasWeapon()) { - // let weaponUrl = `url("/img/sprites/${this.player.getWeapon().key}.png")`, - // weaponSprite = this.sprites.get(this.player.getWeapon().key), - // offsetX = Math.floor(weaponSprite.offsetX / 2), - // offsetY = Math.floor(weaponSprite.offsetY / 2); - // // Since weapons have varying widths and heights, we update every time we load the image. - // this.playerWeapon.style.width = `${weaponSprite.width}px`; - // this.playerWeapon.style.height = `${weaponSprite.height}px`; - // // Offset by the sprite x and y offsets - // this.playerWeapon.style.marginLeft = `${offsetX}px`; - // this.playerWeapon.style.marginTop = `${offsetY}px`; - // // Set the background image and position. - // this.playerWeapon.style.backgroundImage = weaponUrl; - // this.playerWeapon.style.backgroundPosition = `0 -${index * weaponSprite.height}px`; - // } else this.playerWeapon.style.backgroundImage = 'none'; - // // Flip the player image if we are rendering the right orientation. - // this.playerArmour.style.transform = `scaleX(${isFlipped ? -1 : 1})`; - // this.playerWeapon.style.transform = `scaleX(${isFlipped ? -1 : 1})`; - } + public updatePlayerImage(frame: ImageOrientation = 'down'): void { + let context = this.playerCanvas.getContext('2d')!, + flip = frame === 'left', + { sprite } = this.player; - /** - * Orientation grabs the y frame index of the sprite in its sprite sheet. The left and right - * orientations are the same since we just flip the sprite. - * @returns A number representing the y frame index of the sprite in its sprite sheet. - */ + // Ensure we have a valid sprite and context before drawing anything. + if (!context || !sprite || sprite.key === 'death') return; - private getOrientationIndex(): number { - switch (this.imageOrientation) { - case Modules.Orientation.Left: - case Modules.Orientation.Right: { - return 1; - } + if (flip) frame = 'right'; - case Modules.Orientation.Up: { - return 4; - } + // Grab the frame based on the specified parameter + let idleFrame = sprite.animations[`idle_${frame}`]; - case Modules.Orientation.Down: { - return 7; - } + if (!idleFrame) return log.error(`Could not find idle frame for ${frame}.`); + + let frameY = idleFrame.row * sprite.height, // Grab the row of the frame specified. + canvasWidth = this.playerCanvas.width, + canvasHeight = this.playerCanvas.height; + + // Remove image smoothing to make the image look pixelated. + context.imageSmoothingQuality = 'low'; + context.imageSmoothingEnabled = false; + + // Clear the canvas before drawing the new image. + context.clearRect(0, 0, this.playerCanvas.width, this.playerCanvas.height); + + // Restore to original and save that data so we can undo the flip. + context.restore(); + context.save(); + + // Flip the canvas if we are facing left. + if (flip) { + context.translate(canvasWidth, 0); + context.scale(-1, 1); } + + // Scale proportionally to the ratio between canvas width and its height. + let ratio = canvasHeight / canvasWidth; + + // // Translate the sprite to the middle. + context.save(); + context.scale(ratio, 1); + context.translate(canvasWidth / 2, 0); + + // Draw the base sprite and then the equipment on top of it. + context.drawImage( + sprite.image, + 0, + frameY, + sprite.width, + sprite.height, + 0, + 0, + canvasWidth, + canvasHeight + ); + + // Draw the equipment on top of the base sprite. + this.player.forEachEquipment((equipment: Equipment) => { + // Grab the sprite based on the equipment key. + let equipmentSprite = this.game.sprites.get(equipment.key); + + // Skip if we don't have a valid sprite. + if (!equipmentSprite) return; + + if (!equipmentSprite.loaded) equipmentSprite.load(); + + let scalingWidth = 1, + scalingHeight = 1, + mismatchSize = + equipmentSprite.width !== sprite.width || + equipmentSprite.height !== sprite.height; + + if (mismatchSize) { + frameY = idleFrame.row * equipmentSprite.height; + scalingWidth = equipmentSprite.width / sprite.width; + scalingHeight = equipmentSprite.height / sprite.height; + + let dx = equipmentSprite.offsetX * 4 - 8, + dy = equipmentSprite.offsetY - 8; + + if (equipmentSprite.width === 64) dx -= 48; + if (equipmentSprite.height === 64) dy -= 28; + + context.save(); + context.translate(dx, dy); + } + + // Draw using the same frames as the base sprite. + context.drawImage( + equipmentSprite.image, + 0, + frameY, + equipmentSprite.width, + equipmentSprite.height, + 0, + 0, + canvasWidth * scalingWidth, + canvasHeight * scalingHeight + ); + + if (mismatchSize) context.restore(); + }, true); + + context.restore(); } /** diff --git a/packages/client/src/menu/friends.ts b/packages/client/src/menu/friends.ts index 159adac80b..4e03015fd2 100644 --- a/packages/client/src/menu/friends.ts +++ b/packages/client/src/menu/friends.ts @@ -3,8 +3,9 @@ import Menu from './menu'; import Util from '../utils/util'; import { isLargeScreen } from '../utils/detect'; -import { Opcodes } from '@kaetram/common/network'; +import { Modules, Opcodes } from '@kaetram/common/network'; +import type Game from '../game'; import type Player from '../entity/character/player/player'; type ConfirmCallback = (username: string, remove?: boolean) => void; @@ -14,6 +15,10 @@ interface FriendsElement extends HTMLLIElement { } export default class Friends extends Menu { + public override identifier: number = Modules.Interfaces.Friends; + + private player: Player; + private page: HTMLDivElement = document.querySelector('#friends-page')!; // List where we store all the friends. @@ -39,9 +44,11 @@ export default class Friends extends Menu { private popupActive = false; private removeActive = false; - public constructor(private player: Player) { + public constructor(private game: Game) { super('#friends-container', undefined, '#friends-button'); + this.player = game.player; + this.addButton.addEventListener('click', () => this.showPopup()); this.removeButton.addEventListener('click', () => this.showPopup(true)); @@ -130,6 +137,15 @@ export default class Friends extends Menu { this.messageCallback?.(username); } + /** + * Shortcut function for sending a message notification to the user. + * @param message The message string that we want to display. + */ + + private notify(message: string): void { + this.game.input.chatHandler.add('WORLD', message, '#0dd9e0', true); + } + /** * Handles the keydown event for the friends menu. * @param key The key that was pressed. @@ -148,7 +164,10 @@ export default class Friends extends Menu { this.popupActive = true; this.removeActive = remove; - this.input.placeholder = remove ? 'Enter name to remove...' : 'Enter name to add...'; + let text = remove ? 'Friend to remove' : 'Friend to add'; + + this.input.title = text; + this.input.placeholder = text; Util.fadeIn(this.popup); @@ -181,16 +200,12 @@ export default class Friends extends Menu { world = document.createElement('p'); // Add styling to the friend slot element. - element.classList.add('container-slot'); - - // Add styling to the friend name element. - name.classList.add('stroke', 'left'); - - // Add styling to the world element. - world.classList.add('stroke', 'right'); + element.classList.add('slice-list-item'); // If the friend is online, add the online class (makes the username green). - if (online) world.classList.add(this.player.serverId === serverId ? 'green' : 'yellow'); + if (online) + world.classList.add(this.player.serverId === serverId ? 'text-green' : 'text-yellow'); + else world.classList.add('text-red'); // Store the username of the friend in the element. element.username = username.toLowerCase(); @@ -252,11 +267,15 @@ export default class Friends extends Menu { // If the friend is online, add the online class (makes the username green). if (online) { - world.classList.add(this.player.serverId === serverId ? 'green' : 'yellow'); + world.classList.add(this.player.serverId === serverId ? 'text-green' : 'text-yellow'); world.innerHTML = `World ${friend.serverId}`; + + this.notify(`${Util.formatName(username)} has logged in.`); } else { - world.classList.remove('green', 'yellow'); + world.classList.remove('text-green', 'text-yellow'); world.innerHTML = 'Offline'; + + this.notify(`${Util.formatName(username)} has logged out.`); } } diff --git a/packages/client/src/menu/guilds.ts b/packages/client/src/menu/guilds.ts index 6f8b398003..9f40ad404f 100644 --- a/packages/client/src/menu/guilds.ts +++ b/packages/client/src/menu/guilds.ts @@ -5,39 +5,37 @@ import Util from '../utils/util'; import { Modules, Packets, Opcodes } from '@kaetram/common/network'; import type Game from '../game'; -import type { ListInfo, Member } from '@kaetram/common/types/guild'; -import type { GuildPacket } from '@kaetram/common/types/messages/outgoing'; - -interface ListElement extends HTMLElement { - identifier?: string; -} +import type { ListInfo, Member } from '@kaetram/common/network/impl/guild'; +import type { GuildPacketData } from '@kaetram/common/types/messages/outgoing'; export default class Guilds extends Menu { + public override identifier: number = Modules.Interfaces.Guilds; + // The banner is the banner of the guild that the player is currently in. - private banner: HTMLElement = document.querySelector('#guilds > .banner')!; + private banner: HTMLElement = document.querySelector('#guilds .banner')!; // The default container and elements for the guilds list, displayed prior to joining a guild. private listContainer: HTMLElement = document.querySelector('#guilds-list-container')!; private createButton: HTMLButtonElement = document.querySelector('#create-guild')!; // Container for creating a new guild. - private create: HTMLElement = document.querySelector('#guilds-create-container')!; + private create: HTMLElement = document.querySelector('#guilds-create')!; + private createError: HTMLElement = document.querySelector('#guilds-create-error')!; - private createError: HTMLElement = document.querySelector('#create-error')!; - - private backButton: HTMLElement = document.querySelector('#guild-back')!; - private createConfirmButton: HTMLButtonElement = document.querySelector('#guild-create')!; + private backButton: HTMLElement = document.querySelector('#guilds-back-button')!; + private createConfirmButton: HTMLButtonElement = + document.querySelector('#guilds-create-button')!; // The colour buttons for the banner (used when creating a guild). private bannerColours: HTMLUListElement = document.querySelector('#banner-colours')!; - private nameInput: HTMLInputElement = document.querySelector('#guild-name-input')!; + private nameInput: HTMLInputElement = document.querySelector('#guilds-name-input')!; // Decorations for the guild interface banner (updated during creation or when guild data is received). private bannerColour: Modules.BannerColour = Modules.BannerColour.Grey; private bannerOutline: Modules.BannerOutline = Modules.BannerOutline.StyleOne; private bannerOutlineColour: Modules.BannerColour = Modules.BannerColour.GoldenYellow; - private bannerCrest: Modules.BannerCrests = Modules.BannerCrests.None; + private bannerCrest: Modules.BannerCrests | undefined = Modules.BannerCrests.None; // Buttons used for selecting which banner colours we're modifying (outline or banner). private bannerColourButton: HTMLElement = document.querySelector('#banner-colour-button')!; @@ -52,17 +50,26 @@ export default class Guilds extends Menu { // The guild information container (if the player is in a guild). private infoContainer: HTMLElement = document.querySelector('#guilds-info-container')!; - private chatLog: HTMLUListElement = document.querySelector('#guild-chat-log')!; - private chatInput: HTMLInputElement = document.querySelector('#guild-chat-input')!; + private chat: HTMLUListElement = document.querySelector('#guilds-chat')!; + private chatLog: HTMLUListElement = document.querySelector('#guilds-chat-log')!; + private chatInput: HTMLInputElement = document.querySelector('#guilds-chat-input')!; - private guildName: HTMLElement = document.querySelector('#guild-name')!; - private leaveButton: HTMLElement = document.querySelector('#guild-leave')!; + private guildName: HTMLElement = document.querySelector('#guilds-name')!; + private leaveButton: HTMLElement = document.querySelector('#guilds-leave')!; // List where we store players/guilds list (depending on the context). - private guildList: HTMLUListElement = document.querySelector('#guilds-list-container > ul')!; - private memberList: HTMLUListElement = document.querySelector('#member-list')!; + private guildList: HTMLUListElement = document.querySelector('#guilds-list > ul')!; + private memberListContainer: HTMLElement = document.querySelector('#member-list-container')!; + private memberList: HTMLUListElement = this.memberListContainer.querySelector('ul')!; private sidebarList: HTMLUListElement = document.querySelector('#sidebar-list')!; + private selectedMember?: string; + private memberName: HTMLElement = document.querySelector('#guild-member-selected')!; + private memberDialog: HTMLElement = document.querySelector('#guild-member-dialog')!; + private memberPromote: HTMLElement = document.querySelector('#guild-member-promote')!; + private memberDemote: HTMLElement = document.querySelector('#guild-member-demote')!; + private memberKick: HTMLElement = document.querySelector('#guild-member-kick')!; + // Indexing - default values, used for pagination. private from = 0; private to = 10; @@ -99,8 +106,15 @@ export default class Guilds extends Menu { this.handleBannerOutlineStyle('left') ); + this.memberPromote.addEventListener('click', this.handlePromote.bind(this)); + this.memberDemote.addEventListener('click', this.handleDemote.bind(this)); + this.memberKick.addEventListener('click', this.handleKick.bind(this)); + this.loadSidebar(); this.loadDecorations(); + + // Request a list update every 10 seconds. + setInterval(() => this.requestList(), 12_000); } /** @@ -109,7 +123,7 @@ export default class Guilds extends Menu { * @param info Information about the opcode we received. */ - public handle(opcode: Opcodes.Guild, info: GuildPacket): void { + public handle(opcode: Opcodes.Guild, info: GuildPacketData): void { switch (opcode) { case Opcodes.Guild.Join: { return this.handleMemberJoin(info.username!, info.serverId!); @@ -120,8 +134,13 @@ export default class Guilds extends Menu { } case Opcodes.Guild.Leave: { - if (info?.username && info.username !== this.getUsername()) + if (info?.username && info.username !== this.getUsername()) { + this.game.player.removeGuildMember(info.username!); + return this.handleMemberLeave(info.username); + } + + this.game.player.setGuild(); return this.handleBackButton(); } @@ -164,7 +183,7 @@ export default class Guilds extends Menu { this.infoContainer.style.display = 'none'; // Display the create guild form. - this.create.style.display = 'block'; + this.create.style.display = 'flex'; } /** @@ -196,7 +215,7 @@ export default class Guilds extends Menu { this.infoContainer.style.display = 'none'; // Display the default information. - this.listContainer.style.display = 'block'; + this.listContainer.style.display = 'flex'; // Request the guilds list from the server. this.requestList(); @@ -236,6 +255,48 @@ export default class Guilds extends Menu { }); } + /** + * Handler for when the player clicks the promote button. + */ + + private handlePromote(): void { + this.memberListContainer.querySelector('ul')!.classList.remove('dimmed'); + this.memberDialog.style.display = 'none'; + + this.game.socket.send(Packets.Guild, { + opcode: Opcodes.Guild.Promote, + username: this.selectedMember + }); + } + + /** + * Handler for when the player clicks the demote button. + */ + + private handleDemote(): void { + this.memberListContainer.querySelector('ul')!.classList.remove('dimmed'); + this.memberDialog.style.display = 'none'; + + this.game.socket.send(Packets.Guild, { + opcode: Opcodes.Guild.Demote, + username: this.selectedMember + }); + } + + /** + * Handler for when the player clicks the kick button. + */ + + private handleKick(): void { + this.memberListContainer.querySelector('ul')!.classList.remove('dimmed'); + this.memberDialog.style.display = 'none'; + + this.game.socket.send(Packets.Guild, { + opcode: Opcodes.Guild.Kick, + username: this.selectedMember + }); + } + /** * Handles connection received from the server. We essentially * clear all the other interfaces and focus on the guild interface. @@ -243,7 +304,7 @@ export default class Guilds extends Menu { * @param info Contains information about the guild, such as decorations. */ - private handleConnect(info: GuildPacket): void { + private handleConnect(info: GuildPacketData): void { // Clear the error message. this.setError(); @@ -254,7 +315,7 @@ export default class Guilds extends Menu { this.create.style.display = 'none'; // Display the guild information container. - this.infoContainer.style.display = 'block'; + this.infoContainer.style.display = 'flex'; // Load the guild decorations. this.bannerColour = info.decoration?.banner || Modules.BannerColour.Grey; @@ -329,26 +390,20 @@ export default class Guilds extends Menu { switch (menu) { case 'sidebar-members': { - this.memberList.style.display = 'block'; - - // Hide the chat input. - this.chatInput.style.display = 'none'; + this.memberListContainer.style.display = 'flex'; - // Hide the chat log - this.chatLog.style.display = 'none'; + // Hide the chat. + this.chat.style.display = 'none'; break; } case 'sidebar-chat': { // Hide the members list. - this.memberList.style.display = 'none'; + this.memberListContainer.style.display = 'none'; // Show the chat input. - this.chatInput.style.display = 'block'; - - // Show the chat log. - this.chatLog.style.display = 'block'; + this.chat.style.display = 'flex'; break; } @@ -365,7 +420,7 @@ export default class Guilds extends Menu { * @param packet Contains information about the message. */ - private handleChat(packet: GuildPacket): void { + private handleChat(packet: GuildPacketData): void { // Ignore invalid packets (shouldn't happen). if (!packet.username || !packet.serverId) return; @@ -408,8 +463,10 @@ export default class Guilds extends Menu { direction === 'right' ? this.bannerOutline + 1 : this.bannerOutline - 1; // Make sure the style selection is within the bounds of the array. - if (this.bannerOutline < 0) this.bannerOutline = this.bannerOutlineStyles.length - 1; - else if (this.bannerOutline >= this.bannerOutlineStyles.length) this.bannerOutline = 0; + if ((this.bannerOutline as number) < 0) + this.bannerOutline = this.bannerOutlineStyles.length - 1; + else if ((this.bannerOutline as number) >= this.bannerOutlineStyles.length) + this.bannerOutline = 0; // Update the banner outline selection button thingy. this.bannerOutlineButton.className = `colour-select-button outline-button-${ @@ -443,7 +500,7 @@ export default class Guilds extends Menu { */ private requestList(): void { - if (this.game.player.guild) return; + if (this.game.player.guild || !this.isVisible()) return; return this.game.socket.send(Packets.Guild, { opcode: Opcodes.Guild.List, @@ -477,16 +534,14 @@ export default class Guilds extends Menu { */ private loadList(guilds: ListInfo[] = [], total = 0): void { - // Nothing to do if there are no guilds. - if (total === 0) return; - // Clear the list of guilds. this.guildList.innerHTML = ''; // Remove the description for no guilds available. let description = this.listContainer.querySelector('#guilds-info')!; - description.innerHTML = ''; + // Description is empty if there are any guilds. + description.innerHTML = total === 0 ? 'There are no guilds available...' : ''; // Iterate through the guilds and create a list element for each one. for (let guild of guilds) @@ -572,8 +627,7 @@ export default class Guilds extends Menu { if (isNaN(index)) continue; // The class elements that we're going to add to the banner. - if (index === 0) this.bannerOutlineStyles.push('banner-outline'); - else this.bannerOutlineStyles.push(`banner-outline-${index + 1}`); + this.bannerOutlineStyles.push(`banner-outline-${index + 1}`); } } @@ -626,10 +680,10 @@ export default class Guilds extends Menu { serverElement = element.querySelector('.server')!, colour = member.serverId === -1 - ? 'red' + ? 'text-red' : member.serverId === this.game.player.serverId - ? 'green' - : 'yellow'; + ? 'text-green' + : 'text-yellow'; // Update the colour based on the online status. nameElement.className = `name`; @@ -706,19 +760,19 @@ export default class Guilds extends Menu { name: string, count = 0 ): void { - let element = document.createElement('li') as ListElement, + let element = document.createElement('li'), nameElement = document.createElement('span'), imageElement = document.createElement('div'), isGuild = type === 'guild', slotType = type === 'guild' ? 'guild' : Modules.GuildRank[type].toLowerCase(); // Assign the name as the identifier for the element - element.identifier = name; + element.dataset.name = name; // Add the classes to the element, name element, and image element. - element.className = `slot-element stroke`; - nameElement.className = `name`; - imageElement.className = `slot-image`; + element.className = 'slot-element stroke'; + nameElement.className = 'name'; + imageElement.className = 'slot-image'; // Set the name of the element, format it if it's a player name. nameElement.innerHTML = isGuild ? name : Util.formatName(name, 14); @@ -735,7 +789,7 @@ export default class Guilds extends Menu { countElement.classList.add('count'); countElement.innerHTML = `${count}/${Modules.Constants.MAX_GUILD_MEMBERS}`; - element.append(countElement); + element.append(nameElement, countElement); } // Event listener to handle the guild selection. @@ -745,23 +799,34 @@ export default class Guilds extends Menu { identifier: name.toLowerCase() }) ); - } - - // Case for when we are dealing with members within a guild. - if (!isGuild) { + } // Case for when we are dealing with members within a guild. + else { // Handle the image element for when we are in a guild. imageElement.classList.add(`slot-image-${slotType}`); element.append(nameElement); let serverElement = document.createElement('span'), - isPlayer = this.getUsername() === element.identifier; + isPlayer = this.getUsername() === element.dataset.name, + playerMember = this.game.player.getGuildMember(this.getUsername()), + otherMember = this.game.player.getGuildMember(name), + lowerRank = (otherMember?.rank || 0) > (playerMember?.rank || 0); - serverElement.className = `server ${isPlayer ? 'green' : 'red'}`; + serverElement.className = `server ${isPlayer ? 'text-green' : 'text-red'}`; serverElement.innerHTML = isPlayer ? `Kaetram ${this.game.player.serverId}` : 'Offline'; element.append(serverElement); + + if (!isPlayer && !lowerRank) + element.addEventListener('click', () => { + this.selectedMember = element.dataset.name; + this.memberName.textContent = Util.formatName(this.selectedMember, 14); + + this.memberListContainer.querySelector('ul')!.classList.add('dimmed'); + + this.memberDialog.style.display = 'flex'; + }); } // Append the element to the list. @@ -792,7 +857,7 @@ export default class Guilds extends Menu { private updateBanner(): void { let outlineElement = this.banner.querySelector('#banner-outline')!, - crestElement = this.banner.querySelector('.banner-crest')!; + crestElement = this.banner.querySelector('#banner-crest')!; // Update the classes with the new colours. this.banner.className = `banner banner-${this.bannerColour}`; @@ -813,9 +878,10 @@ export default class Guilds extends Menu { * @returns A list element if found otherwise undefined. */ - private getElement(list: HTMLUListElement, identifier: string): ListElement | undefined { + private getElement(list: HTMLUListElement, identifier: string): HTMLLIElement | undefined { for (let element of list.children) - if ((element as ListElement).identifier === identifier) return element as ListElement; + if ((element as HTMLLIElement).dataset.name === identifier) + return element as HTMLLIElement; return undefined; } @@ -837,6 +903,6 @@ export default class Guilds extends Menu { */ private setError(text = ''): void { - this.createError.innerHTML = text; + this.createError.innerHTML = Util.parseMessage(Util.formatNotification(text)); } } diff --git a/packages/client/src/menu/interact.ts b/packages/client/src/menu/interact.ts index 414505b52a..4fad3b6caa 100644 --- a/packages/client/src/menu/interact.ts +++ b/packages/client/src/menu/interact.ts @@ -6,9 +6,6 @@ import type Player from '../entity/character/player/player'; import type Entity from '../entity/entity'; export default class Interact extends Menu { - // Contains the list of actions. - private list: HTMLUListElement = document.querySelector('#interact > ul')!; - private buttonCallback?: (menuAction: Modules.MenuActions) => void; private closeCallback?: () => void; @@ -91,7 +88,7 @@ export default class Interact extends Menu { // Assign an action when the element is clicked. element.addEventListener('click', () => this.buttonCallback!(menuAction)); - this.list.append(element); + this.container.append(element); } /** @@ -99,7 +96,7 @@ export default class Interact extends Menu { */ private clear(): void { - this.list.innerHTML = ''; + this.container.innerHTML = ''; } /** diff --git a/packages/client/src/menu/inventory.ts b/packages/client/src/menu/inventory.ts index 3e6b0dfea2..1dc3877ab1 100644 --- a/packages/client/src/menu/inventory.ts +++ b/packages/client/src/menu/inventory.ts @@ -10,7 +10,7 @@ import type Actions from './actions'; import type { SlotData } from '@kaetram/common/types/slot'; import type { Bonuses, Enchantments, Stats } from '@kaetram/common/types/item'; -type SelectCallback = (index: number, action: Opcodes.Container, value?: number) => void; +type SelectCallback = (opcode: Opcodes.Container, fromIndex: number, value?: number) => void; type BatchCallback = () => void; interface SlotElement extends HTMLElement { @@ -28,6 +28,8 @@ interface SlotElement extends HTMLElement { } export default class Inventory extends Menu { + public override identifier: number = Modules.Interfaces.Inventory; + private list: HTMLUListElement = document.querySelector('#inventory-container > ul')!; // Used for when we open the action menu interface. @@ -176,7 +178,7 @@ export default class Inventory extends Menu { let actions: Modules.MenuActions[] = []; if (element.edible) actions.push(Modules.MenuActions.Eat); - if (element.interactable) actions.push(Modules.MenuActions.Eat2); + if (element.interactable) actions.push(Modules.MenuActions.Interact); if (element.equippable) actions.push(Modules.MenuActions.Equip); // Push drop option as the last one. @@ -290,11 +292,8 @@ export default class Inventory extends Menu { // Append the image onto the item slot. item.append(image); - // Append the count onto the item slot. - item.append(count); - - // Append the item onto the slot list element. - slot.append(item); + // Append the item and count onto the slot. + slot.append(item, count); // Add the click event listeners to the slot. slot.addEventListener('click', () => this.select(index)); @@ -315,7 +314,7 @@ export default class Inventory extends Menu { let fromIndex = clone?.dataset?.index, toIndex = target?.dataset?.index; - if (!fromIndex || !toIndex) return; + if (!fromIndex || !toIndex || fromIndex === toIndex) return; this.swap(parseInt(fromIndex), parseInt(toIndex)); } @@ -369,7 +368,7 @@ export default class Inventory extends Menu { */ public isDropDialogVisible(): boolean { - return this.actions.dropDialog.style.display === 'block'; + return this.actions.dropDialog.style.display === 'flex'; } /** @@ -379,7 +378,7 @@ export default class Inventory extends Menu { */ public getElement(index: number): SlotElement { - return this.list.children[index].querySelector('div') as HTMLElement; + return this.list.children[index] as HTMLElement; } /** diff --git a/packages/client/src/menu/leaderboards.ts b/packages/client/src/menu/leaderboards.ts index 257cb0f07c..43138e06bf 100644 --- a/packages/client/src/menu/leaderboards.ts +++ b/packages/client/src/menu/leaderboards.ts @@ -20,11 +20,13 @@ interface ResultInfo { } export default class Leaderboards extends Menu { + public override identifier: number = Modules.Interfaces.Leaderboards; + // Where we show all the possible leaderboards - private searchList: HTMLUListElement = document.querySelector('#leaderboards-search')!; + private searchList: HTMLUListElement = document.querySelector('#leaderboards-search > ul')!; // Where we display the results from the selected list - private resultsList: HTMLUListElement = document.querySelector('#leaderboards-results')!; + private resultsList: HTMLUListElement = document.querySelector('#leaderboards-results > ul')!; // The search input private search: HTMLInputElement = document.querySelector('#leaderboards-search-input')!; @@ -136,6 +138,18 @@ export default class Leaderboards extends Menu { }); } + /** + * Override for the show function to scroll all the elements back to the top + * when we display the leaderboards interface. + */ + + public override show(): void { + super.show(); + + this.searchList.scrollTop = 0; + this.resultsList.scrollTop = 0; + } + /** * Override for the hide function where we also clear the input field. */ @@ -171,7 +185,7 @@ export default class Leaderboards extends Menu { name = document.createElement('p'); // Add the slot class to the element. - element.classList.add('container-slot'); + element.classList.add('slice-list-item'); // Add styling to the friend name element. name.classList.add('stroke', 'white'); @@ -201,13 +215,13 @@ export default class Leaderboards extends Menu { info = document.createElement('p'); // Add the slot class to the element. - element.classList.add('container-slot-large'); + element.classList.add('slice-list-item'); // Bind the username to the left of the container - name.classList.add('stroke', result.cheater ? 'red' : 'white', 'left'); + if (result.cheater) name.classList.add('text-red'); // Bind the description to the right of the container - info.classList.add('stroke', result.cheater ? 'red' : 'white', 'right'); + if (result.cheater) info.classList.add('text-red'); // Set the name of the element. name.innerHTML = result._id; diff --git a/packages/client/src/menu/lootbag.ts b/packages/client/src/menu/lootbag.ts new file mode 100644 index 0000000000..3e9d13460f --- /dev/null +++ b/packages/client/src/menu/lootbag.ts @@ -0,0 +1,161 @@ +import Menu from './menu'; + +import Utils from '../utils/util'; + +import { Modules, Opcodes } from '@kaetram/common/network'; + +import type Inventory from './inventory'; +import type { SlotData } from '@kaetram/common/types/slot'; +import type { LootBagPacketData } from '@kaetram/common/types/messages/outgoing'; + +type SelectCallback = (index: number) => void; + +interface LootElement extends HTMLLIElement { + index: number; // The actual index of the item on the server-side? +} + +export default class LootBag extends Menu { + public override identifier: number = Modules.Interfaces.Lootbag; + + private itemList: HTMLUListElement = document.querySelector('#lootbag-items > ul')!; + private inventoryList: HTMLUListElement = document.querySelector('#lootbag-inventory > ul')!; + + private selectCallback?: SelectCallback; + + public constructor(private inventory: Inventory) { + super('#lootbag', '#close-lootbag'); + + // Create empty slots using the default inventory size. + for (let i = 0; i < Modules.Constants.INVENTORY_SIZE; i++) + this.inventoryList.append(Utils.createSlot(Modules.ContainerType.LootBag, i)); + } + + /** + * Responsible for displaying the loot bag menu. + * @param opcode The type of action we are performing. + * @param info Contains the items that are in the loot bag. + */ + + public handle(opcode: Opcodes.LootBag, info: LootBagPacketData): void { + switch (opcode) { + case Opcodes.LootBag.Open: { + this.loadItems(info.items!); + + return this.show(); + } + + case Opcodes.LootBag.Take: { + return this.take(info.index!); + } + + case Opcodes.LootBag.Close: { + return this.hide(); + } + } + } + + /** + * Synchronizes the information between the inventory and the loot bag interface. + */ + + public override synchronize(): void { + if (!this.isVisible()) return; + + this.inventory.forEachSlot((index: number, slot: HTMLElement) => { + let image: HTMLElement = this.getInventoryElement(index).querySelector('.item-image')!, + slotImage = slot.querySelector('.item-image')!; + + if (!slotImage) return; + + image.style.backgroundImage = slotImage.style.backgroundImage; + }); + } + + /** + * Override for the `show()` function that inclues synchronization + * between the inventory and the loot bag interface. + */ + + public override show(): void { + super.show(); + + this.synchronize(); + } + + /** + * Removes an item from the loot bag at a specified index. + * @param index The index of the item to remove. + */ + + private take(index: number): void { + let element = this.getLootElement(index); + + if (!element) return; + + element.remove(); + } + + /** + * Loads the items received from the server into the loot bag list. Note that the + * item's index represents the slot identifier, so when we click on it and want + * to take an item from the loot bag, we send the slot data's index, not the index + * of the element we are creating. + * @param items The list of items to load into the loot bag. + */ + + private loadItems(items: SlotData[]): void { + // Clear the current list of items. + this.itemList.innerHTML = ''; + + // Iterate through the items and create a new inventory slot for each one. + for (let item of items) { + let element = Utils.createSlot( + Modules.ContainerType.LootBag, + item.index, + () => this.selectCallback?.(item.index) + ) as LootElement, + image: HTMLElement = element.querySelector('.item-image')!; + + if (image) image.style.backgroundImage = Utils.getImageURL(item.key); + + element.index = item.index; + + this.itemList.append(element); + } + } + + /** + * Obtains a loot element based on the index of the item it represents. Note + * that this index is not the same as the element's index as a child in the list. + * @param index The index of the item to grab. + * @returns An HTMLElement representing the item at the specified index. + */ + + private getLootElement(index: number): HTMLElement | undefined { + for (let child of this.itemList.children) + if ((child as LootElement).index === index) return child as HTMLElement; + + return undefined; + } + + /** + * Grabs the HTMLElement at a specified index within the + * inventory slot list. + * @param index The index of the element to grab. + * @returns The HTMLElement at the specified index. + */ + + private getInventoryElement(index: number): HTMLElement { + return this.inventoryList.children[index] as HTMLElement; + } + + /** + * Callback for when the user clicks on an item in the loot bag. We + * send a packet to the server with this action. + * @param callback Contains the index of the item that was clicked. + */ + + public onSelect(callback: SelectCallback): void { + this.selectCallback = callback; + } +} diff --git a/packages/client/src/menu/menu.ts b/packages/client/src/menu/menu.ts index 49869ed494..9efc0d8b0a 100644 --- a/packages/client/src/menu/menu.ts +++ b/packages/client/src/menu/menu.ts @@ -2,8 +2,11 @@ import log from '../lib/log'; import Util from '../utils/util'; +import type { Modules } from '@kaetram/common/network'; + export default abstract class Menu { public hideOnShow = true; + public identifier: Modules.Interfaces | number = -1; protected container: HTMLElement; protected close: HTMLElement; @@ -35,8 +38,8 @@ export default abstract class Menu { this.close = document.querySelector(this.closeButton!)!; this.button = document.querySelector(this.toggleButton!)!; - this.close?.addEventListener('click', this.hide.bind(this)); - this.button?.addEventListener('click', this.toggle.bind(this)); + this.close?.addEventListener('click', () => this.hide()); + this.button?.addEventListener('click', () => this.toggle()); } /** @@ -134,7 +137,9 @@ export default abstract class Menu { */ public isVisible(): boolean { - return this.container.style.display === 'block'; + return ( + this.container.style.display === 'flex' || this.container.style.display.includes('flex') + ); } /** diff --git a/packages/client/src/menu/notification.ts b/packages/client/src/menu/notification.ts index 7b068d9f8f..42274eb1d4 100644 --- a/packages/client/src/menu/notification.ts +++ b/packages/client/src/menu/notification.ts @@ -27,7 +27,7 @@ export default class Notification extends Menu { // Displays the notification. this.container.classList.add('active'); - this.setPosition(); + this.container.style.bottom = '0'; // Updates the title's colour. this.title.style.color = colour; @@ -53,18 +53,7 @@ export default class Notification extends Menu { // Hides the notification. this.container.classList.remove('active'); - this.container.style.top = '100%'; - } - - /** - * Updates the position of the notification. - */ - - public override resize(): void { - // Don't update unless visible. - if (!this.isVisible()) return; - - this.setPosition(); + this.container.style.bottom = '-6em'; } /** @@ -90,12 +79,4 @@ export default class Notification extends Menu { private getPosition(): number { return window.innerHeight - this.container.offsetHeight; } - - /** - * Updates the notification's body positioning relative to the screen. - */ - - private setPosition(): void { - this.container.style.top = `${this.getPosition()}px`; - } } diff --git a/packages/client/src/menu/profile/impl/abilities.ts b/packages/client/src/menu/profile/impl/abilities.ts deleted file mode 100644 index b3826c96c9..0000000000 --- a/packages/client/src/menu/profile/impl/abilities.ts +++ /dev/null @@ -1,272 +0,0 @@ -import log from '../../../lib/log'; -import Menu from '../../menu'; -import QuickSlots from '../../quickslots'; - -import { Modules, Opcodes } from '@kaetram/common/network'; - -import type Ability from '../../../entity/character/player/ability'; -import type Player from '../../../entity/character/player/player'; - -interface AbilityElement extends HTMLElement { - key?: string; -} - -export type SelectCallback = (type: Opcodes.Ability, key: string, index?: number) => void; - -export default class Abilities extends Menu { - private activeAbilities: HTMLUListElement = document.querySelector('#active-abilities')!; - private passiveAbilities: HTMLUListElement = document.querySelector('#passive-abilities')!; - - private abilityBar: HTMLElement = document.querySelector('#ability-shortcut')!; - - private draggedElement = ''; - - //private quickSlots: QuickSlots; - - private selectCallback?: SelectCallback; - - public constructor(private player: Player) { - super('#abilities-page'); - - // Loads the event listeners for when we click on an ability. - for (let i = 0; i < this.activeAbilities.children.length; i++) - this.activeAbilities.children[i].addEventListener('click', () => this.handleAction(i)); - - // Creates the drag detection listener onto the ability bar. - for (let i = 0; i < this.abilityBar.children.length; i++) { - let element = this.abilityBar.children[i] as AbilityElement; - - element.draggable = true; - - element.addEventListener('dragover', (event: DragEvent) => this.dragOver(event)); - element.addEventListener('drop', (event: DragEvent) => this.dragDrop(event, i)); - } - - // // Load the quickslots. - // this.quickSlots = new QuickSlots(this.player); - - // // Redirect the quick slots select callback through this class' select callback. - // this.quickSlots.onSelect((type: Opcodes.Ability, key: string) => - // this.selectCallback?.(type, key) - // ); - } - - /** - * Synchronizes ability information from the player object into the interface. - * @param player The player object we are synchronizing abilities from. - */ - - public override synchronize(): void { - // Hide all abilities and start from scratch. - this.hideAll(); - - let activeIndex = 0, - passiveIndex = 0; - - /** - * Depending on whether the ability is passive or active, we increment - * the adequate index and add it to the appropriate list. - */ - - for (let ability of Object.values(this.player.abilities)) - switch (ability.type) { - case Modules.AbilityType.Active: { - this.setActiveAbility(activeIndex, ability.key, ability.level, ability.active); - activeIndex++; - break; - } - - case Modules.AbilityType.Passive: { - this.setPassiveAbility(passiveIndex, ability.key, ability.level); - passiveIndex++; - break; - } - } - } - - /** - * Handler for when an ability at a specific index is used. We createa a callback - * that is passed through the controllers to the the server. - * @param index The index of the ability. - */ - - private handleAction(index: number): void { - let ability = this.activeAbilities.children[index] as AbilityElement; - - if (ability.style.display === 'none' || !ability.key) return; - - this.selectCallback?.(Opcodes.Ability.Use, ability.key); - } - - /** - * Event handler for when a slot begins the dragging and dropping - * process. We store the key of the ability we are currently dragging. - * @param key The key of the ability that is being dragged. - */ - - private dragStart(key: string): void { - this.draggedElement = key; - } - - /** - * The drop event within the drag and drop actions. The target represents - * the slot that the item is being dropped into. - * @param event Contains event data about the target. - * @param index The index of the quick slot we are dragging ability onto. - */ - - private dragDrop(event: DragEvent, index: number): void { - this.selectCallback?.(Opcodes.Ability.QuickSlot, this.draggedElement, index); - - this.draggedElement = ''; - } - - /** - * Event handler for when a slot is being dragged over (but not dropped). - * We use this to give the user feedback on which slot they are hovering. - * @param event Contains event data and the ability element being dragged - */ - - private dragOver(event: DragEvent): void { - // Check that a target exists firstly. - if (!event.target || !(event.target as HTMLElement).draggable) return; - - event.preventDefault(); - } - - /** - * Event handler for when an item being dragged exits a valid slot area. - * @param event Contains the target slot that is exited. - */ - - private dragLeave(_event: DragEvent): void { - // - } - - /** - * Takes in an HTMLElement object and assigns the necessary information to it. This is used - * by both the active and passive abilities. - * @param ability The HTML element that we are modifying. - * @param key The key of the image that we are using. - * @param level The level of the ability. - */ - - private setAbility(ability: AbilityElement, key: string, level = 1, passive = false): void { - // Clear the inner HTML first (to erase any potential existing elements such as levels). - ability.innerHTML = ''; - ability.className = `ability`; // Clear the classes - - // Make ability visible. - ability.style.display = 'block'; - - // Handle icons for the abilities - let icon = document.createElement('div'); - - // Set the icon class and add it to the ability. - icon.classList.add('ability-icon'); - icon.classList.add(`ability-icon-${key}`); - - // Make the icon draggable. - icon.draggable = true; - - // Ignore the drag and drop events if the ability is passive. - if (!passive) { - // Add event listeners for drag and drop for the ability icon. - icon.addEventListener('dragleave', (event: DragEvent) => this.dragLeave(event)); - icon.addEventListener('dragstart', () => this.dragStart(key)); - } - - // Clamp the level. - if (level > 4) level = 4; - if (level < 1) level = 1; - - // Add the levels to the ability.t - for (let i = 0; i < level; i++) { - let level = document.createElement('div'); - - level.classList.add('ability-level'); - level.classList.add(`ability-level${i + 1}`); - - ability.append(level, icon); - } - } - - /** - * Updates the icon of a active ability based on the key and level provided. - * @param index The index of the ability we are modifying. - * @param key The key of the ability we are setting. - * @param level The level of the ability. - */ - - public setActiveAbility(index: number, key: string, level = 1, active = false): void { - let ability = this.activeAbilities.children[index] as AbilityElement; - - // Invalid index is provided. - if (!ability) return log.error(`Could not find ability with index ${index}, key: ${key}.`); - - // Indicates that we are clearing an active ability. - if (!key) return this.hideAbility(ability); - - this.setAbility(ability, key, level); - - ability.key = key; - - let icon = ability.querySelector('.ability-icon')!; - - if (!icon) return; - - // Toggle the ability if it has been activated. - if (active) icon.classList.add('active'); - else icon.classList.remove('active'); - - //this.quickSlots.toggleAbility(key, active); - } - - /** - * Updates the icon and level of a passive ability in the user interface. - * @param index The index of the passive ability. - * @param key The key (image) of the passive ability. - * @param level The level we are setting the passive ability to. - */ - - public setPassiveAbility(index: number, key: string, level = 1): void { - let ability = this.passiveAbilities.children[index] as AbilityElement; - - // Invalid index is provided. - if (!ability) return log.error(`Could not find ability with index ${index}, key: ${key}.`); - - // Indicates that we are clearing a passive ability. - if (!key) return this.hideAbility(ability); - - this.setAbility(ability, key, level, true); - } - - /** - * Sets the display style for an ability to hidden to hide it. - * @param ability The HTML element of the ability we are hiding. - */ - - private hideAbility(ability: HTMLElement): void { - ability.style.display = 'none'; - } - - /** - * Goes through all the passive and active abilities and hides - * all of them. We generally use this during batching. - */ - - private hideAll(): void { - for (let child of this.activeAbilities.children) this.hideAbility(child as HTMLElement); - - for (let child of this.passiveAbilities.children) this.hideAbility(child as HTMLElement); - } - - /** - * Callback for when an active ability is selected within the menu. - * @param callback Contains the key of the ability that was selected. - */ - - public onSelect(callback: SelectCallback): void { - this.selectCallback = callback; - } -} diff --git a/packages/client/src/menu/profile/impl/skills.ts b/packages/client/src/menu/profile/impl/skills.ts index 12b94ec287..9f985fcf40 100644 --- a/packages/client/src/menu/profile/impl/skills.ts +++ b/packages/client/src/menu/profile/impl/skills.ts @@ -17,7 +17,7 @@ export default class Skills extends Menu { private list: HTMLUListElement = document.querySelector('#skills-list > ul')!; // Skill info side-menu - private info: HTMLElement = document.querySelector('#profile-info')!; + private info: HTMLElement = document.querySelector('#skill-info')!; // Skill we have info menu open for. private selectedSkill!: Skill; @@ -39,8 +39,11 @@ export default class Skills extends Menu { if (resize) this.list.innerHTML = ''; for (let id of Modules.SkillsOrder) { - let skill = this.player.skills[id], - element = this.get(skill.name); + let skill = this.player.skills[id]; + + if (!skill) continue; + + let element = this.get(skill.name); // Update the element if found. if (element) this.update(element, skill); @@ -106,24 +109,45 @@ export default class Skills extends Menu { private createElement(skill: Skill): HTMLLIElement { let element: SkillElement = document.createElement('li'), - level = document.createElement('div'), + slot = document.createElement('div'), image = document.createElement('div'), - experience = document.createElement('div'); + content = document.createElement('div'), + level = document.createElement('div'), + experience = document.createElement('div'), + expProgress = document.createElement('div'); // Add the skill class to the base element. - element.classList.add('skill'); + element.classList.add('slice-list-item'); - // Update the skill level - level.classList.add('skill-level', 'stroke'); + // Add the item slot slice to the element. + slot.classList.add('slice-item-slot'); // Load the image based on the skill name. image.classList.add('skill-image', `skill-image-${skill.name.toLowerCase()}`); - // Load up the experience bar. + // Load up the content. + content.classList.add('skill-content'); + + // Update the skill level + level.classList.add('skill-level', 'stroke'); + + // Update the experience bar container. experience.classList.add('skill-experience'); - // Add the image to the element. - element.append(level, experience, image); + // Load up the experience bar. + expProgress.classList.add('skill-experience-progress'); + + // Add the image to the item slot. + slot.append(image); + + // Add the experience bar to the experience container. + experience.append(expProgress); + + // Add the level and experience bar to the content. + content.append(level, experience); + + // Add the slot and content to the element. + element.append(slot, content); // Store information about the skill in the element. element.name = skill.name; @@ -144,23 +168,20 @@ export default class Skills extends Menu { private showInfo(skill = this.selectedSkill): void { Util.fadeIn(this.info); - let image = this.info.querySelector('.profile-info-skill-image')!, - title = this.info.querySelector('.profile-info-title')!, - details = this.info.querySelector('.profile-info-details')!; + let image = this.info.querySelector('.skill-info-image')!, + title = this.info.querySelector('.skill-info-title')!, + details = this.info.querySelector('.skill-info-details')!; // Update the image and title of the skill. - image.className = `profile-info-skill-image skill-image-${skill.name.toLowerCase()}`; + image.className = `skill-info-image skill-image-${skill.name.toLowerCase()}`; title.innerHTML = skill.name; // Update the details of the skill. details.innerHTML = ` -

                                                                                              Level: ${skill.level}

                                                                                              -
                                                                                              -

                                                                                              Exp: ${skill.experience}

                                                                                              -
                                                                                              -

                                                                                              Next Exp: ${skill.nextExperience}

                                                                                              -
                                                                                              -

                                                                                              Percent: ${(skill.percentage * 100).toFixed(3)}%

                                                                                              + Level: ${skill.level} + Exp: ${skill.experience} + Next Exp: ${skill.nextExperience} + Percent: ${(skill.percentage * 100).toFixed(3)}% `; this.selectedSkill = skill; @@ -175,19 +196,13 @@ export default class Skills extends Menu { private update(element: SkillElement, skill: Skill): void { // Update the level and experience bar of the skill. let level: HTMLElement = element.querySelector('.skill-level')!, - experience: HTMLElement = element.querySelector('.skill-experience')!; + expProgress: HTMLElement = element.querySelector('.skill-experience-progress')!; // Update the skill level level.innerHTML = `${skill.level}/${Modules.Constants.MAX_LEVEL}`; - // Store the original width of the experience bar. - if (!element.originalWidth && experience.offsetWidth !== 0) - element.originalWidth = experience.offsetWidth; - - if (!element.originalWidth) return; - // Set the experience bar's width. - experience.style.width = `${element.originalWidth * skill.percentage}px`; + expProgress.style.width = `${skill.percentage * 100}%`; // Update the properties of the element. element.level = skill.level; @@ -212,6 +227,6 @@ export default class Skills extends Menu { */ public isInfoVisible(): boolean { - return this.info.style.display === 'block'; + return this.info.style.display === 'flex'; } } diff --git a/packages/client/src/menu/profile/impl/state.ts b/packages/client/src/menu/profile/impl/state.ts index c114140063..3a865fed63 100644 --- a/packages/client/src/menu/profile/impl/state.ts +++ b/packages/client/src/menu/profile/impl/state.ts @@ -1,8 +1,8 @@ import Util from '../../../utils/util'; import Menu from '../../menu'; +import { attachTooltip } from '../../../utils/tooltip'; import { Modules } from '@kaetram/common/network'; -import { attachTooltip } from '@kaetram/client/src/utils/tooltip'; import type Player from '../../../entity/character/player/player'; @@ -14,45 +14,100 @@ export default class State extends Menu { private level: HTMLElement = document.querySelector('#profile-level')!; private experience: HTMLElement = document.querySelector('#profile-experience')!; + // Pet pickup button + private petPickupButton: HTMLElement = document.querySelector('#pickup-pet-button')!; + // Attack style element private attackStyleList: HTMLUListElement = document.querySelector('#attack-style-list')!; + private equipmentSlots: HTMLElement = document.querySelector('#profile-equipment-slots')!; + // Equipment information - private weapon: HTMLElement = document.querySelector('#state-page > .weapon-slot')!; - private weaponSkin: HTMLElement = document.querySelector('#state-page > .weapon-skin-slot')!; - private armour: HTMLElement = document.querySelector('#state-page > .armour-slot')!; - private armourSkin: HTMLElement = document.querySelector('#state-page > .armour-skin-slot')!; - private pendant: HTMLElement = document.querySelector('#state-page > .pendant-slot')!; - private ring: HTMLElement = document.querySelector('#state-page > .ring-slot')!; - private boots: HTMLElement = document.querySelector('#state-page > .boots-slot')!; - private arrow: HTMLElement = document.querySelector('#state-page > .arrows-slot')!; + private helmet: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-helmet > .equipment-slot-image' + )!; + private pendant: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-pendant > .equipment-slot-image' + )!; + private arrows: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-arrows > .equipment-slot-image' + )!; + private chestplate: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-chestplate > .equipment-slot-image' + )!; + private weapon: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-weapon > .equipment-slot-image' + )!; + private shield: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-shield > .equipment-slot-image' + )!; + private ring: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-ring > .equipment-slot-image' + )!; + private weaponSkin: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-weapon-skin > .equipment-slot-image' + )!; + private armourSkin: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-armour-skin > .equipment-slot-image' + )!; + private legplates: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-legplates > .equipment-slot-image' + )!; + private cape: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-cape > .equipment-slot-image' + )!; + private boots: HTMLElement = this.equipmentSlots.querySelector( + '.equipment-slot-boots > .equipment-slot-image' + )!; private unequipCallback?: UnequipCallback; private styleCallback?: StyleCallback; + private pickupCallback?: () => void; public constructor(private player: Player) { super('#state-page'); - this.weapon.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Weapon) + this.petPickupButton.addEventListener('click', () => this.pickupCallback?.()); + + this.helmet.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Helmet) + ); + this.pendant.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Pendant) ); - this.weaponSkin.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.WeaponSkin) + this.arrows.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Arrows) ); - this.armour.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Helmet) + this.chestplate.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Chestplate) ); - this.armourSkin.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Skin) + this.weapon.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Weapon) ); - this.pendant.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Pendant) + this.shield.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Shield) ); this.ring.addEventListener('click', () => this.unequipCallback?.(Modules.Equipment.Ring)); - this.boots.addEventListener('click', () => this.unequipCallback?.(Modules.Equipment.Boots)); - this.arrow.addEventListener('click', () => - this.unequipCallback?.(Modules.Equipment.Arrows) + this.weaponSkin.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.WeaponSkin) + ); + this.armourSkin.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.ArmourSkin) ); + this.legplates.addEventListener( + 'click', + () => this.unequipCallback?.(Modules.Equipment.Legplates) + ); + this.cape.addEventListener('click', () => this.unequipCallback?.(Modules.Equipment.Cape)); + this.boots.addEventListener('click', () => this.unequipCallback?.(Modules.Equipment.Boots)); } /** @@ -62,22 +117,49 @@ export default class State extends Menu { */ public override synchronize(): void { + this.petPickupButton.hidden = !this.player.hasPet; + // Synchronize the player's general information this.level.textContent = `Level ${this.player.level}`; this.experience.textContent = `${this.player.getTotalExperience()}`; // Synchronize equipment data - this.weapon.style.backgroundImage = Util.getImageURL(this.player.getWeapon().key); - this.weaponSkin.style.backgroundImage = Util.getImageURL(this.player.getWeaponSkin().key); - // Cloth armour shouldn't be displayed in the UI. - this.armour.style.backgroundImage = Util.getImageURL( - this.player.getHelmet().key === 'clotharmor' ? '' : this.player.getHelmet().key - ); - this.armourSkin.style.backgroundImage = Util.getImageURL(this.player.getArmourSkin().key); - this.pendant.style.backgroundImage = Util.getImageURL(this.player.getPendant().key); - this.ring.style.backgroundImage = Util.getImageURL(this.player.getRing().key); - this.boots.style.backgroundImage = Util.getImageURL(this.player.getBoots().key); - this.arrow.style.backgroundImage = Util.getImageURL(this.player.getArrows().key); + this.helmet.style.backgroundImage = + Util.getImageURL(this.player.getHelmet().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Helmet); + this.pendant.style.backgroundImage = + Util.getImageURL(this.player.getPendant().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Pendant); + this.arrows.style.backgroundImage = + Util.getImageURL(this.player.getArrows().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Arrows); + this.chestplate.style.backgroundImage = + Util.getImageURL(this.player.getChestplate().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Chestplate); + this.weapon.style.backgroundImage = + Util.getImageURL(this.player.getWeapon().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Weapon); + this.shield.style.backgroundImage = + Util.getImageURL(this.player.getShield().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Shield); + this.ring.style.backgroundImage = + Util.getImageURL(this.player.getRing().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Ring); + this.weaponSkin.style.backgroundImage = + Util.getImageURL(this.player.getWeaponSkin().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.WeaponSkin); + this.armourSkin.style.backgroundImage = + Util.getImageURL(this.player.getArmourSkin().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.ArmourSkin); + this.legplates.style.backgroundImage = + Util.getImageURL(this.player.getLegplate().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Legplates); + this.cape.style.backgroundImage = + Util.getImageURL(this.player.getCape().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Cape); + this.boots.style.backgroundImage = + Util.getImageURL(this.player.getBoots().key) || + Util.getEquipmentPlaceholderURL(Modules.Equipment.Boots); // Synchronize the attack styles this.loadAttackStyles(); @@ -180,7 +262,7 @@ export default class State extends Menu { } } - return 'Report as bug if you see this :)'; + return 'Create a bug report if you see this :)'; } /** @@ -200,4 +282,12 @@ export default class State extends Menu { public onStyle(callback: StyleCallback): void { this.styleCallback = callback; } + + /** + * Callback for when the player presses the pickup button. + */ + + public onPickup(callback: () => void): void { + this.pickupCallback = callback; + } } diff --git a/packages/client/src/menu/profile/profile.ts b/packages/client/src/menu/profile/profile.ts index 503be445b8..8522956ae0 100644 --- a/packages/client/src/menu/profile/profile.ts +++ b/packages/client/src/menu/profile/profile.ts @@ -1,12 +1,10 @@ import State from './impl/state'; -import Abilities from './impl/abilities'; import Skills from './impl/skills'; import Menu from '../menu'; import type Player from '../../entity/character/player/player'; -import type { Modules, Opcodes } from '@kaetram/common/network'; -import type { SelectCallback } from './impl/abilities'; +import type { Modules } from '@kaetram/common/network'; type UnequipCallback = (type: Modules.Equipment) => void; type AttackStyleCallback = (style: Modules.AttackStyle) => void; @@ -15,7 +13,6 @@ export default class Profile extends Menu { // Initialize the pages separately for callbacks sake. private state: State; private skills: Skills; - private abilities: Abilities; // Initialize all pages here. private pages: Menu[] = []; @@ -29,10 +26,10 @@ export default class Profile extends Menu { private unequipCallback?: UnequipCallback; private attackStyleCallback?: AttackStyleCallback; - private abilityCallback?: SelectCallback; + private pickupCallback?: () => void; public constructor(private player: Player) { - super('#profile-dialog', undefined, '#profile-button'); + super('#profile-container', undefined, '#profile-button'); // Initialize the state page. this.state = new State(this.player); @@ -40,11 +37,8 @@ export default class Profile extends Menu { // Initialize the skills page. this.skills = new Skills(this.player); - // Initialize the abilities page. - this.abilities = new Abilities(this.player); - // Add the abilities and skills page to the pages array. - this.pages.push(this.state, this.skills, this.abilities); + this.pages.push(this.state, this.skills); // Used to initialize the navigation buttons. this.update(); @@ -56,10 +50,7 @@ export default class Profile extends Menu { // Initialize callbacks for pages. this.state.onUnequip((type: Modules.Equipment) => this.unequipCallback?.(type)); this.state.onStyle((style: Modules.AttackStyle) => this.attackStyleCallback?.(style)); - - this.abilities.onSelect((type: Opcodes.Ability, key: string, index?: number) => - this.abilityCallback?.(type, key, index) - ); + this.state.onPickup(() => this.pickupCallback?.()); } /** @@ -181,11 +172,10 @@ export default class Profile extends Menu { } /** - * Callback for when an ability action occurs. - * @param callback Contains data about the action. + * Callback for when the player clicks on the pet pickup button. */ - public onAbility(callback: SelectCallback): void { - this.abilityCallback = callback; + public onPickup(callback: () => void): void { + this.pickupCallback = callback; } } diff --git a/packages/client/src/menu/quest.ts b/packages/client/src/menu/quest.ts new file mode 100644 index 0000000000..1cb902aaf8 --- /dev/null +++ b/packages/client/src/menu/quest.ts @@ -0,0 +1,70 @@ +import Menu from './menu'; + +import log from '../lib/log'; + +import { Modules } from '@kaetram/common/network'; + +import type Player from '../entity/character/player/player'; +import type { QuestPacketData } from '@kaetram/common/network/impl/quest'; + +export type AcceptCallback = (key: string) => void; + +export default class Quest extends Menu { + public override identifier: number = Modules.Interfaces.Quest; + + // Elements that we can update + private title: HTMLElement = document.querySelector('#quest > .quest-title')!; + private description: HTMLElement = document.querySelector('#quest > .quest-description')!; + private rewards: HTMLElement = document.querySelector('#quest > .quest-rewards')!; + private questButton: HTMLElement = document.querySelector('#quest-button')!; + + // Used for determining what type of quest interface we're dealing with. + private activeQuest = ''; // Key of the currently active quest. + + private acceptCallback?: AcceptCallback; + + public constructor(private player: Player) { + super('#quest', '#close-quest'); + + this.questButton.addEventListener('click', () => { + if (!this.activeQuest) return log.error('No active quest.'); + + this.hide(); + + this.acceptCallback?.(this.activeQuest); + }); + } + + /** + * Handles the incoming logic for the quest interface. + * @param opcode Contains the type of quest interface action we're dealing with. + * @param data Contains data about the quest interface. + */ + + public handle(data: QuestPacketData): void { + // Attempt to find the quest in the player's quest list. + let quest = this.player.quests[data.key!]; + + if (!quest) return log.error(`Quest ${data.key} does not exist.`); + + this.activeQuest = data.key!; + + let [, description] = quest.description.split('|'); + + // Update the quest interface with the quest data. + this.title.innerHTML = quest.name; + this.description.innerHTML = description; + // TODO - Update rewards + + this.show(); + } + + /** + * Callback for when the player clicks on the quest button. + * @param callback Contains the quest interface action and the quest key. + */ + + public onAccept(callback: AcceptCallback): void { + this.acceptCallback = callback; + } +} diff --git a/packages/client/src/menu/quests.ts b/packages/client/src/menu/quests.ts index 434f06ae72..3bc2411ec4 100644 --- a/packages/client/src/menu/quests.ts +++ b/packages/client/src/menu/quests.ts @@ -6,15 +6,20 @@ import type Player from '../entity/character/player/player'; import type Task from '../entity/character/player/task'; export default class Quests extends Menu { + public override identifier: number = Modules.Interfaces.Quests; + // Contains the list of all the quests and their respective status. - private list: HTMLUListElement = document.querySelector('#quests-container > ul')!; + private list: HTMLUListElement = document.querySelector('#quests-list > ul')!; + + // The quest log element (used for scrolling actions). + private questsLogsContainer: HTMLElement = document.querySelector('#quests-logs-container')!; // Contains information about a selected quest. - private title: HTMLElement = document.querySelector('#quest-log-title')!; - private shortDescription: HTMLElement = document.querySelector('#quest-log-shortdesc')!; - private description: HTMLElement = document.querySelector('#quest-log-description')!; - private rewards: HTMLElement = document.querySelector('#quest-log-rewards')!; - private requirements: HTMLElement = document.querySelector('#quest-log-requirements')!; + private title: HTMLElement = document.querySelector('#quests-logs-title')!; + private shortDescription: HTMLElement = document.querySelector('#quests-logs-shortdesc')!; + private description: HTMLElement = document.querySelector('#quests-logs-description')!; + private rewards: HTMLElement = document.querySelector('#quests-logs-rewards')!; + private requirements: HTMLElement = document.querySelector('#quests-logs-requirements')!; public constructor(private player: Player) { super('#quests', '#close-quests', '#quests-button'); @@ -59,11 +64,11 @@ export default class Quests extends Menu { if (!nameElement) return; - nameElement.classList.remove('green', 'yellow'); + nameElement.classList.remove('text-green', 'text-yellow'); // Update colours of the name relative to its completion - if (quest.isFinished()) nameElement.classList.add('green'); - else if (quest.isStarted()) nameElement.classList.add('yellow'); + if (quest.isFinished()) nameElement.classList.add('text-green'); + else if (quest.isStarted()) nameElement.classList.add('text-yellow'); } /** @@ -76,17 +81,14 @@ export default class Quests extends Menu { name = document.createElement('p'); // Add the slot class to the element. - element.classList.add('container-slot'); - - // Add styling to the friend name element. - name.classList.add('stroke'); + element.classList.add('slice-list-item'); // Set the quest name. name.innerHTML = quest.name; // Update colours of the name relative to its completion - if (quest.isFinished()) name.classList.add('green'); - else if (quest.isStarted()) name.classList.add('yellow'); + if (quest.isFinished()) name.classList.add('text-green'); + else if (quest.isStarted()) name.classList.add('text-yellow'); // Add the name element to the element. element.append(name); @@ -102,6 +104,8 @@ export default class Quests extends Menu { */ private buildLog(quest: Task): void { + this.questsLogsContainer.scrollTop = 0; + let [shortDescription, description] = quest.description.split('|'); this.title.innerHTML = quest.name; @@ -115,7 +119,7 @@ export default class Quests extends Menu { Object.keys(quest.skillRequirements).length === 0 && quest.questRequirements.length === 0 ) { - this.requirements.innerHTML = 'None C:'; + this.requirements.innerHTML = 'None'; return; } diff --git a/packages/client/src/menu/quickslots.ts b/packages/client/src/menu/quickslots.ts index 328283ddc8..495ceb338b 100644 --- a/packages/client/src/menu/quickslots.ts +++ b/packages/client/src/menu/quickslots.ts @@ -1,10 +1,13 @@ import { Opcodes } from '@kaetram/common/network'; import type Player from '../entity/character/player/player'; -import type { SelectCallback } from './profile/impl/abilities'; + interface QuickSlotElement extends HTMLElement { key?: string; } + +export type SelectCallback = (type: Opcodes.Ability, key: string, index?: number) => void; + export default class QuickSlots { private abilityBar: HTMLElement = document.querySelector('#ability-shortcut')!; diff --git a/packages/client/src/menu/settings.ts b/packages/client/src/menu/settings.ts index e3f1d912f8..faac57f85f 100644 --- a/packages/client/src/menu/settings.ts +++ b/packages/client/src/menu/settings.ts @@ -1,8 +1,14 @@ import Menu from './menu'; +import { isMobile, isMacintoshFirefox } from '../utils/detect'; + +import { Modules } from '@kaetram/common/network'; + import type Game from '../game'; export default class Settings extends Menu { + public override identifier: number = Modules.Interfaces.Settings; + private musicSlider: HTMLInputElement = document.querySelector('#music')!; private soundSlider: HTMLInputElement = document.querySelector('#sound')!; private brightnessSlider: HTMLInputElement = document.querySelector('#brightness')!; @@ -13,6 +19,9 @@ export default class Settings extends Menu { private lowPowerCheckbox: HTMLInputElement = document.querySelector( '#low-power-checkbox > input' )!; + private joystickEnabledCheckbox: HTMLInputElement = document.querySelector( + '#joystick-enabled-checkbox > input' + )!; private debugCheckbox: HTMLInputElement = document.querySelector( '#debug-mode-checkbox > input' )!; @@ -26,9 +35,12 @@ export default class Settings extends Menu { '#disable-region-caching-checkbox > input' )!; private webGlCheckbox: HTMLInputElement = document.querySelector('#webgl-checkbox > input')!; + private fpsThrottleDropdown: HTMLSelectElement = document.querySelector( + '#frame-throttle > select' + )!; public constructor(private game: Game) { - super('#settings-page', undefined, '#settings-button'); + super('#settings-page', '#close-settings', '#settings-button'); this.musicSlider.addEventListener('input', this.handleMusic.bind(this)); this.soundSlider.addEventListener('input', this.handleSoundVolume.bind(this)); @@ -36,11 +48,16 @@ export default class Settings extends Menu { this.audioEnabledCheckbox.addEventListener('change', this.handleAudioEnabled.bind(this)); this.lowPowerCheckbox.addEventListener('change', this.handleLowPower.bind(this)); + this.joystickEnabledCheckbox.addEventListener( + 'change', + this.handleJoystickEnabled.bind(this) + ); this.debugCheckbox.addEventListener('change', this.handleDebug.bind(this)); this.showNamesCheckbox.addEventListener('change', this.handleName.bind(this)); this.showLevelsCheckbox.addEventListener('change', this.handleLevel.bind(this)); this.disableCachingCheckbox.addEventListener('change', this.handleCaching.bind(this)); this.webGlCheckbox.addEventListener('change', this.handleWebGl.bind(this)); + this.fpsThrottleDropdown.addEventListener('change', this.handleFpsThrottle.bind(this)); this.load(); } @@ -61,11 +78,19 @@ export default class Settings extends Menu { this.audioEnabledCheckbox.checked = settings.audioEnabled; this.lowPowerCheckbox.checked = settings.lowPowerMode; + this.joystickEnabledCheckbox.checked = settings.joyStickEnabled; this.debugCheckbox.checked = settings.debugMode; this.showNamesCheckbox.checked = settings.showNames; this.showLevelsCheckbox.checked = settings.showLevels; this.disableCachingCheckbox.checked = settings.disableCaching; this.webGlCheckbox.checked = settings.webgl; + this.fpsThrottleDropdown.selectedIndex = settings.fpsThrottle; + + // Hide webgl checkbox if not supported. + if (isMacintoshFirefox()) this.hideWebGlOption(); + + // Hide the debug option if not on desktop. + if (import.meta.env.PROD || isMobile()) this.hideDebugOption(); // Update brightness value. this.handleBrightness(); @@ -76,9 +101,15 @@ export default class Settings extends Menu { // Update camera once loaded. this.handleLowPower(); + // Update joystick once loaded. + this.handleJoystickEnabled(); + // Update the renderer for names and levels this.handleName(); this.handleLevel(); + + this.handleInfo(); + this.handleFpsThrottle(); } /** @@ -131,10 +162,22 @@ export default class Settings extends Menu { // Force camera to recenter on the player. this.game.camera.center(); this.game.camera.centreOn(this.game.player); - this.game.renderer.updateAnimatedTiles(); } // Remove the camera from the player. } + /** + * Handler for when the joystick checkbox is toggled. + */ + + private handleJoystickEnabled(): void { + if (isMobile()) { + this.game.storage.setJoyStickEnabled(this.joystickEnabledCheckbox.checked); + + if (this.joystickEnabledCheckbox.checked) this.game.joystick.show(); + else this.game.joystick.hide(); + } else document.querySelector('#joystick-enabled-checkbox')!.hidden = true; + } + /** * Handler for when the debug checkbox is toggled. */ @@ -177,6 +220,65 @@ export default class Settings extends Menu { private handleWebGl(): void { this.game.storage.setWebGl(this.webGlCheckbox.checked); - window.location.reload(); + setTimeout(() => { + window.location.reload(); + }, 500); + } + + /** + * Handles updating of the FPS throttle from the drop down menu. + * @param value + */ + + private handleFpsThrottle(): void { + let index = this.fpsThrottleDropdown.selectedIndex; + + this.game.storage.setFpsThrottle(index); + + let isEnabled = index !== 0; + + // Enable or disable the throttle based on the index selected. + this.game.throttle = isEnabled; + + // Apply the FPS throttling to the game tick. + if (index === 1) this.game.targetFPS = 1000 / 50; + else if (index === 2) this.game.targetFPS = 1000 / 30; + } + + /** + * Handles the information section of the settings page. + */ + + private handleInfo() { + let { config } = this.game.app; + document.querySelector( + '#game-info-version' + )!.textContent = `${config.version}${config.minor}`; + + let { serverId } = this.game.player; + document.querySelector('#game-info-world')!.textContent = + serverId === -1 ? 'Unknown' : serverId.toString(); + } + + /** + * Some browsers (specifically Firefox) don't play well with WebGL resizing. Since I've + * already spent so much time trying to figure out why it doesn't work, I'm just going + * to hide the option for now. + */ + + private hideWebGlOption(): void { + let checkbox = document.querySelector('#webgl-checkbox')!; + + checkbox.style.display = 'none'; + } + + /** + * Hides the debug mode checkbox when the game is not in debug mode. + */ + + private hideDebugOption(): void { + let checkbox = document.querySelector('#debug-mode-checkbox')!; + + checkbox.style.display = 'none'; } } diff --git a/packages/client/src/menu/store.ts b/packages/client/src/menu/store.ts index 441260ab0c..c648aaf066 100644 --- a/packages/client/src/menu/store.ts +++ b/packages/client/src/menu/store.ts @@ -3,17 +3,18 @@ import Menu from './menu'; import log from '../lib/log'; import Util from '../utils/util'; import { isMobile } from '../utils/detect'; -import { onSecondaryPress } from '../utils/press'; import { Modules, Opcodes } from '@kaetram/common/network'; import type Inventory from './inventory'; -import type { StorePacket } from '@kaetram/common/types/messages/outgoing'; -import type { SerializedStoreItem } from '@kaetram/common/types/stores'; +import type { StorePacketData } from '@kaetram/common/types/messages/outgoing'; +import type { SerializedStoreItem } from '@kaetram/common/network/impl/store'; type SelectCallback = (opcode: Opcodes.Store, key: string, index: number, count?: number) => void; export default class Store extends Menu { + public override identifier: number = Modules.Interfaces.Store; + private key = ''; // Key of the current store private currency = 'gold'; // Key of the currency used, defaults to gold. @@ -22,23 +23,23 @@ export default class Store extends Menu { private selectedBuyIndex = -1; // Index of currently selected item to buy. - private storeContainer: HTMLElement = document.querySelector('#store-container')!; + private storeContainer: HTMLElement = document.querySelector('#store-content')!; - private storeHelp: HTMLElement = document.querySelector('#store-help')!; + //private storeHelp: HTMLElement = document.querySelector('#store-slots-help')!; - private confirmSell: HTMLElement = document.querySelector('#confirm-sell')!; + private confirmSell: HTMLElement = document.querySelector('#store-sell-confirm')!; // Sell slot information private sellSlot: HTMLElement = document.querySelector('#store-sell-slot')!; - private sellSlotText: HTMLElement = document.querySelector('#store-sell-slot-text')!; - private sellSlotReturn: HTMLElement = document.querySelector('#store-sell-slot-return')!; - private sellSlotReturnText: HTMLElement = document.querySelector( - '#store-sell-slot-return-text' - )!; + private sellSlotText: HTMLElement = document.querySelector('#store-sell-text')!; + private sellSlotReturn: HTMLElement = document.querySelector('#store-sell-return-slot')!; + private sellSlotReturnText: HTMLElement = document.querySelector('#store-sell-return-text')!; // Lists - private storeList: HTMLUListElement = document.querySelector('#store-container')!; - private inventoryList: HTMLUListElement = document.querySelector('#store-inventory-slots')!; + private storeList: HTMLUListElement = document.querySelector('#store-slots-content > ul')!; + private inventoryList: HTMLUListElement = document.querySelector( + '#store-inventory-slots > ul' + )!; // Buy dialog elements public buyDialog: HTMLElement = document.querySelector('#store-buy')!; @@ -67,13 +68,16 @@ export default class Store extends Menu { } /** - * Updates the helper text when the user resizes the screen. + * Handles incoming input from the keyboard. Things like pressing enter to accept + * the buy dialog and pressing escape to close the buy dialog. + * @param key The key that we are pressing. */ - public override resize(): void { - let action = isMobile() ? 'Long tap' : 'Right click'; + public keyDown(key: string): void { + if (!this.isBuyDialogVisible()) return; - this.storeHelp.textContent = `${action} to buy multiple items.`; + if (key === 'Enter') this.handleBuy(); + else if (key === 'Escape') this.hideBuyDialog(); } /** @@ -83,7 +87,7 @@ export default class Store extends Menu { * @param info Contains the store's key, currency, and items (or specific item if selecting). */ - public update(info: StorePacket): void { + public update(info: StorePacketData): void { this.clear(); this.key = info.key!; @@ -143,7 +147,8 @@ export default class Store extends Menu { this.storeContainer.classList.add('dimmed'); this.buyCount.value = '1'; - this.buyCount.focus(); + + if (!isMobile()) this.buyCount.focus(); } /** @@ -165,6 +170,8 @@ export default class Store extends Menu { this.clearSellSlot(); + this.inventoryList.scrollTop = 0; + this.inventory.forEachSlot((index: number, slot: HTMLElement) => { let image = this.getElement(index).querySelector('.item-image')!, count = this.getElement(index).querySelector('.item-count')!, @@ -183,13 +190,26 @@ export default class Store extends Menu { * @param info Store packet data containing information about the store. */ - public override show(info: StorePacket): void { + public override show(info: StorePacketData): void { super.show(); this.update(info); this.synchronize(); } + /** + * Hides the store UI and clears the store. + */ + + public override hide(): void { + super.hide(); + + this.clear(); + this.clearSellSlot(); + + this.hideBuyDialog(); + } + /** * Clears the store so that new data can be inserted * once again. Clears the key of the currently open store, @@ -201,6 +221,7 @@ export default class Store extends Menu { this.currency = 'gold'; this.storeList.innerHTML = ''; + this.storeList.scrollTop = 0; } /** @@ -225,7 +246,7 @@ export default class Store extends Menu { * @param info Contains store packet data such as the index, key, price, etc. */ - public move(info: StorePacket): void { + public move(info: StorePacketData): void { if (info.key !== this.key) return log.error(`Invalid store key provided for the select.`); //Refreshes the inventory container prior to moving.s @@ -259,13 +280,15 @@ export default class Store extends Menu { private createStoreItem(item: SerializedStoreItem, index: number): HTMLElement { let listElement = document.createElement('li'), + slot = document.createElement('div'), image = document.createElement('div'), name = document.createElement('div'), count = document.createElement('div'), price = document.createElement('div'); // Add the class to the elements. - listElement.classList.add('store-item'); + listElement.classList.add('slice-list-item'); + slot.classList.add('slice-item-slot'); image.classList.add('store-item-image'); name.classList.add('store-item-name', 'stroke'); count.classList.add('store-item-count', 'stroke'); @@ -279,19 +302,30 @@ export default class Store extends Menu { // Update the image of the element. image.style.backgroundImage = Util.getImageURL(item.key); - listElement.addEventListener('click', () => this.buy(index)); - onSecondaryPress(listElement, () => { + listElement.addEventListener('click', () => { this.selectedBuyIndex = index; this.showBuyDialog(); }); + // Append the image to the slot. + slot.append(image); + // Append all the elements together and nest them. - listElement.append(image, name, count, price); + listElement.append(slot, name, count, price); return listElement; } + /** + * Checks the display property of the buy dialog to see if it is visible. + * @returns Whether or not the buy dialog is visible. + */ + + private isBuyDialogVisible(): boolean { + return this.buyDialog.style.display !== 'none'; + } + /** * Grabs the HTMLElement at a specified index within the * inventory slot list. @@ -300,7 +334,7 @@ export default class Store extends Menu { */ private getElement(index: number): HTMLElement { - return this.inventoryList.children[index].querySelector('div') as HTMLElement; + return this.inventoryList.children[index] as HTMLElement; } /** diff --git a/packages/client/src/menu/trade.ts b/packages/client/src/menu/trade.ts index d4965e426c..9f5aef1150 100644 --- a/packages/client/src/menu/trade.ts +++ b/packages/client/src/menu/trade.ts @@ -15,6 +15,7 @@ type SelectCallback = (type: Modules.ContainerType, index: number, count?: numbe export default class Trade extends Menu { public override hideOnShow = false; + public override identifier: number = Modules.Interfaces.Trade; private inventoryList: HTMLUListElement = document.querySelector( '#trade-inventory-slots > ul' @@ -45,7 +46,7 @@ export default class Trade extends Menu { private closeCallback?: () => void; public constructor(private inventory: Inventory) { - super('#trade-container', undefined, '#close-trade'); + super('#trade', '#close-trade'); this.load(); @@ -163,7 +164,7 @@ export default class Trade extends Menu { * @param key The key of the item being added (if we are adding item of other player). */ - public override add(index: number, count: number, key: string, otherPlayer = false): void { + public override add(index: number, count: number, key?: string, otherPlayer = false): void { let slot = otherPlayer ? this.otherPlayerSlots.children[index] : this.playerSlots.children[index], @@ -290,7 +291,7 @@ export default class Trade extends Menu { private select(type: Modules.ContainerType, index: number, count?: number): void { this.inventoryIndex = index; - this.selectCallback?.(type, index, count); + this.selectCallback?.(type, index, count || 1); } /** @@ -301,7 +302,7 @@ export default class Trade extends Menu { */ private getElement(index: number): HTMLElement { - return this.inventoryList.children[index].querySelector('div') as HTMLElement; + return this.inventoryList.children[index] as HTMLElement; } /** @@ -322,7 +323,7 @@ export default class Trade extends Menu { */ public isInputDialogueVisible(): boolean { - return this.tradeDialog.style.display === 'block'; + return this.tradeDialog.style.display === 'flex'; } /** diff --git a/packages/client/src/menu/warp.ts b/packages/client/src/menu/warp.ts index de6d1a5656..d587425c59 100644 --- a/packages/client/src/menu/warp.ts +++ b/packages/client/src/menu/warp.ts @@ -2,14 +2,16 @@ import Menu from './menu'; import log from '../lib/log'; -import type Socket from '../network/socket'; +import { Modules } from '@kaetram/common/network'; export default class Warp extends Menu { + public override identifier: number = Modules.Interfaces.Warp; + private list: NodeListOf = document.querySelectorAll('.map-button')!; private selectCallback?: (id: number) => void; - public constructor(private socket: Socket) { + public constructor() { super('#map-frame', '#close-map-frame', '#warp-button'); for (let element of this.list) diff --git a/packages/client/src/menu/welcome.ts b/packages/client/src/menu/welcome.ts new file mode 100644 index 0000000000..d4894463e0 --- /dev/null +++ b/packages/client/src/menu/welcome.ts @@ -0,0 +1,53 @@ +import Menu from './menu'; + +import Updates from '@kaetram/common/text/updates.json'; +import { Modules } from '@kaetram/common/network'; + +import type Game from '../game'; + +export default class Welcome extends Menu { + public override identifier: number = Modules.Interfaces.Welcome; + + private changelog: HTMLUListElement = document.querySelector('#welcome-changelog > ul')!; + + public constructor(private game: Game) { + super('#welcome', '#close-welcome'); + } + + /** + * Override for the show function to include loading the necessary data such as + * change log and the player's information. + */ + + public override show(): void { + super.show(); + + this.loadChangelog(); + } + + /** + * Iterates through the update file and adds all the new updates to the changelog. + */ + + private loadChangelog(): void { + // Clear the change log. + this.changelog.innerHTML = ''; + + let update = Updates[this.game.app.config.version as keyof typeof Updates]; + + if (!update) return; + + let title = (document.createElement('li').innerHTML = update.title); + + this.changelog.append(title); + + // Iterate through the content of the update. + for (let change of update.content) { + let element = document.createElement('li'); + + element.innerHTML = change; + + this.changelog.append(element); + } + } +} diff --git a/packages/client/src/network/connection.ts b/packages/client/src/network/connection.ts index 87661f8403..5d00a7d158 100644 --- a/packages/client/src/network/connection.ts +++ b/packages/client/src/network/connection.ts @@ -1,3 +1,5 @@ +import Util from '../utils/util'; + import { inflate } from 'pako'; import { Packets, Opcodes, Modules } from '@kaetram/common/network'; @@ -21,48 +23,52 @@ import type SpritesController from '../controllers/sprites'; import type Player from '../entity/character/player/player'; import type PointerController from '../controllers/pointer'; import type EntitiesController from '../controllers/entities'; -import type { PlayerData } from '@kaetram/common/types/player'; +import type { PlayerData } from '@kaetram/common/network/impl/player'; import type { EntityDisplayInfo } from '@kaetram/common/types/entity'; -import type { SerializedSkills, SkillData } from '@kaetram/common/types/skills'; -import type { EquipmentData, SerializedEquipment } from '@kaetram/common/types/equipment'; -import type { SerializedAbility, AbilityData } from '@kaetram/common/types/ability'; +import type { SerializedSkills, SkillData } from '@kaetram/common/network/impl/skill'; +import type { SerializedAbility, AbilityData } from '@kaetram/common/network/impl/ability'; import type { - AbilityPacket, - AchievementPacket, - AnimationPacket, - BubblePacket, - ChatPacket, - CombatPacket, - CommandPacket, - ContainerPacket, - DespawnPacket, - EnchantPacket, - EquipmentPacket, - ExperiencePacket, - HealPacket, - MovementPacket, - NotificationPacket, - NPCPacket, - OverlayPacket, - PointerPacket, - PointsPacket, - PVPPacket, - QuestPacket, - RespawnPacket, - StorePacket, - TeleportPacket, - SkillPacket, - MinigamePacket, - EffectPacket, - FriendsPacket, - ListPacket, - TradePacket, - HandshakePacket, - GuildPacket, - CraftingPacket, - LootBagPacket, - CountdownPacket + AbilityPacketData, + AchievementPacketData, + AnimationPacketData, + BubblePacketData, + ChatPacketData, + CombatPacketData, + CommandPacketData, + ContainerPacketData, + DespawnPacketData, + EnchantPacketData, + EquipmentPacketData, + ExperiencePacketData, + HealPacketData, + MovementPacketData, + NotificationPacketData, + NPCPacketData, + OverlayPacketData, + PointerPacketData, + PointsPacketData, + PVPPacketData, + QuestPacketData, + RespawnPacketData, + StorePacketData, + TeleportPacketData, + SkillPacketData, + MinigamePacketData, + EffectPacketData, + FriendsPacketData, + EntityListPacketData, + TradePacketData, + HandshakePacketData, + GuildPacketData, + CraftingPacketData, + LootBagPacketData, + CountdownPacketData, + InterfacePacketData } from '@kaetram/common/types/messages/outgoing'; +import type { TradePacketValues } from '@kaetram/common/network/impl/trade'; +import type { EquipmentPacketValues } from '@kaetram/common/network/impl/equipment'; +import type Resource from '../entity/objects/resource/resource'; +import type { ResourcePacketData } from '@kaetram/common/network/impl/resource'; export default class Connection { /** @@ -111,7 +117,13 @@ export default class Connection { this.sprites = game.sprites; this.messages = this.socket.messages; - this.app.onFocus(() => this.socket.send(Packets.Focus)); + this.app.onFocus(() => { + if (Date.now() - this.lastEntityListRequest < 4000) return; + + this.socket.send(Packets.Focus); + + this.lastEntityListRequest = Date.now(); + }); this.messages.onHandshake(this.handleHandshake.bind(this)); this.messages.onWelcome(this.handleWelcome.bind(this)); @@ -158,8 +170,10 @@ export default class Connection { this.messages.onFriends(this.handleFriends.bind(this)); this.messages.onRank(this.handleRank.bind(this)); this.messages.onCrafting(this.handleCrafting.bind(this)); + this.messages.onInterface(this.handleInterface.bind(this)); this.messages.onLootBag(this.handleLootBag.bind(this)); this.messages.onCountdown(this.handleCountdown.bind(this)); + this.messages.onResource(this.handleResource.bind(this)); } /** @@ -168,7 +182,13 @@ export default class Connection { * must send the login packet (guest, registering, or login). */ - private handleHandshake(data: HandshakePacket): void { + private handleHandshake(data: HandshakePacketData): void { + if (data.type !== 'client') { + this.app.updateLoader('Invalid client'); + + return; + } + this.app.updateLoader('Connecting to server'); // Set the server id and instance @@ -239,9 +259,6 @@ export default class Connection { // Used if the client uses low-power mode, forces redrawing of trees. this.renderer.forceRendering = true; - // Update the animated tiles when we receive new map data. - this.renderer.updateAnimatedTiles(); - if (!this.map.hasCachedDate()) this.app.fadeMenu(); } @@ -253,33 +270,44 @@ export default class Connection { * @param info Data containing equipment(s) information. */ - private handleEquipment(opcode: Opcodes.Equipment, info: EquipmentPacket): void { + private handleEquipment(opcode: Opcodes.Equipment, info: EquipmentPacketValues): void { switch (opcode) { case Opcodes.Equipment.Batch: { - for (let equipment of (info.data as SerializedEquipment).equipments) - this.game.player.equip(equipment); + let { data } = info as EquipmentPacketData[typeof opcode]; + + for (let equipment of data.equipments) this.game.player.equip(equipment); break; } case Opcodes.Equipment.Equip: { - this.game.player.equip(info.data as EquipmentData); + let { data } = info as EquipmentPacketData[typeof opcode]; + + this.game.player.equip(data); break; } case Opcodes.Equipment.Unequip: { - this.game.player.unequip(info.type!, info.count); + let { type, count } = info as EquipmentPacketData[typeof opcode]; + + this.game.player.unequip(type, count); break; } case Opcodes.Equipment.Style: { - this.game.player.setAttackStyle(info.attackStyle!); - this.game.player.attackRange = info.attackRange!; + let { attackRange, attackStyle } = info as EquipmentPacketData[typeof opcode]; + + this.game.player.setAttackStyle(attackStyle); + this.game.player.attackRange = attackRange; + break; } } this.game.player.sync(); + + // Update the lighting for the player. + this.renderer.updatePlayerLight(); } /** @@ -289,7 +317,7 @@ export default class Connection { * @param entities A list of strings that contains the instances of the entities in the region. */ - private handleEntityList(opcode: Opcodes.List, info: ListPacket): void { + private handleEntityList(opcode: Opcodes.List, info: EntityListPacketData): void { switch (opcode) { case Opcodes.List.Spawns: { let ids = new Set( @@ -319,7 +347,7 @@ export default class Connection { entity = this.entities.get(instance); // No entity found, just skip. - if (!entity || entity.moving || entity.hasPath()) return; + if (!entity || entity.hasPath()) return; /** * When we detect a mismatch in client-sided and server-sided @@ -349,6 +377,8 @@ export default class Connection { player.load(data, true); player.setSprite(this.game.sprites.get(player.getSpriteName())); + + this.renderer.updatePlayerLight(player); } /** @@ -359,7 +389,7 @@ export default class Connection { * @param info Information such as instance and coordinates of the entity that is moving. */ - private handleMovement(opcode: Opcodes.Movement, info: MovementPacket): void { + private handleMovement(opcode: Opcodes.Movement, info: MovementPacketData): void { let entity = this.entities.get(info.instance) as Character, target: Character; @@ -380,9 +410,14 @@ export default class Connection { switch (opcode) { case Opcodes.Movement.Move: { - if (info.forced) entity.stop(true); + if (info.target === this.game.player.instance && entity.following) return; - entity.go(info.x!, info.y!, false, info.instance !== this.game.player.instance); + entity.go( + info.x!, + info.y!, + info.forced, + info.instance !== this.game.player.instance + ); break; } @@ -407,8 +442,7 @@ export default class Connection { } case Opcodes.Movement.Stop: { - if (info.forced) entity.stop(true); - break; + return entity.stop(); } case Opcodes.Movement.Speed: { @@ -424,7 +458,7 @@ export default class Connection { * @param info Instance of the entity, x and y coordinates, and whether to animate. */ - private handleTeleport(info: TeleportPacket): void { + private handleTeleport(info: TeleportPacketData): void { let entity = this.entities.get(info.instance); if (!entity?.isMob() && !entity?.isPlayer()) return; @@ -452,12 +486,12 @@ export default class Connection { // Copy the entity's sprite temporarily. let entitySprite = entity.sprite.key; - // Prevent rendering of the sword. - entity.teleporting = true; - // Set the entity's sprite to the death animation sprite. entity.setSprite(this.sprites.getDeath()); + // Prevent rendering of the sword. + entity.teleporting = true; + entity.animateDeath(() => { this.game.teleport(entity, info.x, info.y); @@ -475,7 +509,7 @@ export default class Connection { * @param info Contains despawn packet information such as instance and list of regions to ignore. */ - private handleDespawn(info: DespawnPacket): void { + private handleDespawn(info: DespawnPacketData): void { let entity = this.entities.get(info.instance); // Could not find the entity. @@ -519,7 +553,7 @@ export default class Connection { * @param info Contains attacker, target, and damage information. */ - private handleCombat(opcode: Opcodes.Combat, info: CombatPacket): void { + private handleCombat(opcode: Opcodes.Combat, info: CombatPacketData): void { let attacker = this.entities.get(info.instance), target = this.entities.get(info.target); @@ -554,7 +588,16 @@ export default class Connection { if (currentPlayerTarget && info.hit.damage > 0) this.audio.playSound('hurt'); // Create the hit info to be displayed above the entity. - this.info.create(info.hit.type, info.hit.damage, target.x, target.y, currentPlayerTarget); + this.info.create( + info.hit.type, + info.hit.damage, + target.x, + target.y, + currentPlayerTarget, + -1, + true, + info.hit.skills + ); // Flash the target character when a hit occurs. if (info.hit.damage > 0) target.toggleHurt(); @@ -562,6 +605,14 @@ export default class Connection { // Show the health bar for both entities. attacker.triggerHealthBar(); target.triggerHealthBar(); + + // Add the attacker to the target's list of attackers. + target.addAttacker(attacker); + //attacker.setTarget(target); + + // Ensure the attacker and the target are not on the same tile and just move them. + if (attacker.isMob() && attacker.gridX === target.gridX && attacker.gridY === target.gridY) + this.game.findAdjacentTile(attacker); } /** @@ -569,12 +620,21 @@ export default class Connection { * @param info Contains instance and what animation to perform. */ - private handleAnimation(info: AnimationPacket): void { + private handleAnimation(info: AnimationPacketData): void { let character = this.entities.get(info.instance); - if (!character) return; + character?.performAction(character.orientation, info.action); - character.performAction(character.orientation, info.action); + if (info.resourceInstance) { + let resource = this.entities.get(info.resourceInstance); + + resource?.shake(); + + // Play the tree chopping sound effect with every animation. + if (resource?.isTree()) this.audio.playChoppingSound(this.game.player); + // Play the mining sound effect with every animation. + else if (resource?.isRock()) this.audio.playMiningSound(this.game.player); + } } /** @@ -583,7 +643,7 @@ export default class Connection { * @param info Contains the player instance, hit points, and mana. */ - private handlePoints(info: PointsPacket): void { + private handlePoints(info: PointsPacketData): void { let character = this.entities.get(info.instance); if (!character || character.dead) return; @@ -615,7 +675,10 @@ export default class Connection { * when a player sends a chat. */ - private handleChat(info: ChatPacket): void { + private handleChat(info: ChatPacketData): void { + // Parse the message for special characters. + info.message = Util.parseMessage(info.message); + // Messages with source are static, we add them directly to the chatbox. if (info.source) return this.input.chatHandler.add(info.source, info.message, info.colour, true); @@ -647,7 +710,7 @@ export default class Connection { * @param info Packet contains the command string. */ - private handleCommand(info: CommandPacket): void { + private handleCommand(info: CommandPacketData): void { if (info.command.includes('toggle') && this.game.player.hasActiveEffect()) return this.game.player.removeAllEffects(); @@ -656,6 +719,10 @@ export default class Connection { this.renderer.debugging = !this.renderer.debugging; return; } + + case 'hide': { + return this.game.player.setVisible(!this.game.player.isVisible()); + } } } @@ -665,7 +732,7 @@ export default class Connection { * @param info Contains array of serialized slots, a single slot, and type of container. */ - private handleContainer(opcode: Opcodes.Container, info: ContainerPacket): void { + private handleContainer(opcode: Opcodes.Container, info: ContainerPacketData): void { let container = info.type === Modules.ContainerType.Inventory ? this.menu.getInventory() @@ -699,7 +766,7 @@ export default class Connection { * @param info Contains information in batch about abilities or a single ability serialized information. */ - private handleAbility(opcode: Opcodes.Ability, info: AbilityPacket): void { + private handleAbility(opcode: Opcodes.Ability, info: AbilityPacketData): void { switch (opcode) { case Opcodes.Ability.Batch: { this.game.player.loadAbilities((info as SerializedAbility).abilities); @@ -733,7 +800,7 @@ export default class Connection { * @param info Contains quest batch data or individual quest data. */ - private handleQuest(opcode: Opcodes.Quest, info: QuestPacket): void { + private handleQuest(opcode: Opcodes.Quest, info: QuestPacketData): void { switch (opcode) { case Opcodes.Quest.Batch: { this.game.player.loadQuests(info.quests!); @@ -744,6 +811,10 @@ export default class Connection { this.game.player.setQuest(info.key!, info.stage!, info.subStage!); break; } + + case Opcodes.Quest.Start: { + return this.menu.getQuest().handle(info); + } } this.menu.getQuests().handle(opcode, info.key); @@ -758,7 +829,7 @@ export default class Connection { * @param info Contains individual achievement data or batch data. */ - private handleAchievement(opcode: Opcodes.Achievement, info: AchievementPacket): void { + private handleAchievement(opcode: Opcodes.Achievement, info: AchievementPacketData): void { switch (opcode) { case Opcodes.Achievement.Batch: { this.game.player.loadAchievements(info.achievements!); @@ -786,19 +857,31 @@ export default class Connection { * @param info Contains message, title, and colour information. */ - private handleNotification(opcode: Opcodes.Notification, info: NotificationPacket): void { + private handleNotification(opcode: Opcodes.Notification, info: NotificationPacketData): void { switch (opcode) { case Opcodes.Notification.Text: { + let message = info.source ? info.message : Util.formatNotification(info.message); + + if (info.source === 'TRADE') message = Util.formatNotification(message); + return this.input.chatHandler.add( info.source || 'WORLD', - info.message, + Util.parseMessage(message), info.colour, true ); } case Opcodes.Notification.Popup: { - return this.menu.getNotification().show(info.title!, info.message, info.colour!); + if (info.soundEffect) this.audio.playSound(info.soundEffect); + + return this.menu + .getNotification() + .show( + Util.parseMessage(Util.formatNotification(info.title!)), + Util.parseMessage(Util.formatNotification(info.message)), + info.colour! + ); } } } @@ -822,7 +905,7 @@ export default class Connection { * @param info Contains the instance, type of healing (mana or health), and amount. */ - private handleHeal(info: HealPacket): void { + private handleHeal(info: HealPacketData): void { let character = this.entities.get(info.instance); if (!character) return; @@ -832,6 +915,9 @@ export default class Connection { this.info.create(Modules.Hits.Heal, info.amount, character.x, character.y); character.addEffect(Modules.Effects.Healing); + + if (this.game.player.instance === character.instance) this.audio.playSound('heal'); + break; } @@ -854,7 +940,7 @@ export default class Connection { * much experience they will require and calculate percentages. */ - private handleExperience(opcode: Opcodes.Experience, info: ExperiencePacket): void { + private handleExperience(opcode: Opcodes.Experience, info: ExperiencePacketData): void { let player = this.entities.get(info.instance); if (!player) return; @@ -892,6 +978,8 @@ export default class Connection { */ private handleDeath(): void { + this.audio.playSound('death'); + // Stop player movement this.game.player.stop(true); @@ -901,12 +989,12 @@ export default class Connection { // Remove the minigame interfaces. this.game.minigame.reset(); - // Stops the player from performing actions. - this.game.player.teleporting = true; - // Set the player's sprite to the death animation sprite. this.game.player.setSprite(this.sprites.getDeath()); + // Stops the player from performing actions. + this.game.player.teleporting = true; + // Set health and mana to 0 this.game.player.setHitPoints(0); this.game.player.setMana(0); @@ -942,7 +1030,7 @@ export default class Connection { * @param info Contains information about the NPC interaction. */ - private handleNPC(opcode: Opcodes.NPC, info: NPCPacket): void { + private handleNPC(opcode: Opcodes.NPC, info: NPCPacketData): void { let npc, soundEffect; switch (opcode) { @@ -986,7 +1074,9 @@ export default class Connection { * the player to following the respawn. */ - private handleRespawn(info: RespawnPacket): void { + private handleRespawn(info: RespawnPacketData): void { + this.game.audio.playSound('revive'); + this.game.player.setGridPosition(info.x, info.y); this.camera.centreOn(this.game.player); @@ -1008,10 +1098,11 @@ export default class Connection { * @param info Information about the trade. */ - private handleTrade(opcode: Opcodes.Trade, info: TradePacket): void { + private handleTrade(opcode: Opcodes.Trade, info: TradePacketValues): void { switch (opcode) { case Opcodes.Trade.Open: { - let otherPlayer = this.entities.get(info.instance!); + let { instance } = info as TradePacketData[typeof opcode], + otherPlayer = this.entities.get(instance); if (!otherPlayer) return; @@ -1023,24 +1114,25 @@ export default class Connection { } case Opcodes.Trade.Add: { + let { index, count, key, instance } = info as TradePacketData[typeof opcode]; + return this.menu .getTrade() - .add( - info.index!, - info.count!, - info.key!, - info.instance !== this.game.player.instance - ); + .add(index, count || 0, key, instance !== this.game.player.instance); } case Opcodes.Trade.Remove: { - return this.menu - .getTrade() - .remove(info.index!, info.instance !== this.game.player.instance); + let { index, instance } = info as TradePacketData[typeof opcode]; + + return this.menu.getTrade().remove(index, instance !== this.game.player.instance); } case Opcodes.Trade.Accept: { - return this.menu.getTrade().accept(info.message); + let { message } = info as TradePacketData[typeof opcode]; + + return this.menu + .getTrade() + .accept(Util.parseMessage(Util.formatNotification(message!))); } } } @@ -1051,7 +1143,7 @@ export default class Connection { * @param info Contains index and type of item. */ - private handleEnchant(opcode: Opcodes.Enchant, info: EnchantPacket): void { + private handleEnchant(opcode: Opcodes.Enchant, info: EnchantPacketData): void { switch (opcode) { case Opcodes.Enchant.Select: { return this.menu.getEnchant().move(info.index, info.isShard); @@ -1063,15 +1155,20 @@ export default class Connection { * Unimplemented guild packet. */ - private handleGuild(opcode: Opcodes.Guild, info: GuildPacket): void { + private handleGuild(opcode: Opcodes.Guild, info: GuildPacketData): void { switch (opcode) { case Opcodes.Guild.Login: { this.game.player.setGuild(info); break; } - case Opcodes.Guild.Leave: { - this.game.player.setGuild(); + case Opcodes.Guild.Join: { + this.game.player.addGuildMember(info.username!, info.serverId!); + break; + } + + case Opcodes.Guild.Rank: { + this.game.player.setGuildMember(info.username!, info.rank!); break; } } @@ -1086,7 +1183,7 @@ export default class Connection { * @param info Information such as location and instance of the pointer. */ - private handlePointer(opcode: Opcodes.Pointer, info: PointerPacket): void { + private handlePointer(opcode: Opcodes.Pointer, info: PointerPacketData): void { let entity; switch (opcode) { @@ -1095,26 +1192,19 @@ export default class Connection { if (!entity) return; - this.pointer.create(entity.instance, opcode); - this.pointer.setToEntity(entity); + this.pointer.create(opcode, info.instance); break; } + // Location based pointers stick to one point on the map. case Opcodes.Pointer.Location: { - this.pointer.create(info.instance, opcode); - this.pointer.setToPosition( + this.pointer.create( + opcode, info.instance, info.x! * this.map.tileSize, info.y! * this.map.tileSize ); - - break; - } - - case Opcodes.Pointer.Relative: { - this.pointer.create(info.instance, opcode); - this.pointer.setRelative(info.instance, info.x!, info.y!); break; } @@ -1122,11 +1212,6 @@ export default class Connection { this.pointer.clean(); break; } - - case Opcodes.Pointer.Button: { - this.pointer.create(info.instance, opcode, info.button); - break; - } } } @@ -1136,8 +1221,11 @@ export default class Connection { * @param info Contains the instance and pvp status of an entity. */ - private handlePVP(info: PVPPacket): void { + private handlePVP(info: PVPPacketData): void { this.game.pvp = info.state; + + // Update the viewing for the player's skin and weapon skin. + this.game.player.updateEquipmentAppearance(); } /** @@ -1157,7 +1245,7 @@ export default class Connection { * @param info Contains information such as store key and items to update. */ - private handleStore(opcode: Opcodes.Store, info: StorePacket): void { + private handleStore(opcode: Opcodes.Store, info: StorePacketData): void { switch (opcode) { case Opcodes.Store.Open: { return this.menu.getStore().show(info); @@ -1174,16 +1262,21 @@ export default class Connection { } /** - * - * @param opcode - * @param info + * Handles the logic for the overlay system. Overlay is generally a mask applied on top + * of the current viewport to darken the screen. Using that mask we can calculate things + * such as the lighting effect from a torch for example. + * @param opcode Contains information about the type of overlay action to perform. + * @param info Information about the overlay such as the image and colour (or lighting). */ - private handleOverlay(opcode: Opcodes.Overlay, info: OverlayPacket): void { + private handleOverlay(opcode: Opcodes.Overlay, info: OverlayPacketData): void { switch (opcode) { case Opcodes.Overlay.Set: { this.overlays.update(info.image); this.renderer.updateDarkMask(info.colour); + + this.renderer.addPlayerLight(); + this.renderer.resizeLights(); break; } @@ -1194,7 +1287,8 @@ export default class Connection { } case Opcodes.Overlay.Lamp: { - return this.renderer.addLight(info.light!); + this.renderer.addLight(info.light!); + return; } } } @@ -1217,10 +1311,11 @@ export default class Connection { * @param info Contains information such as the text and position of the bubble. */ - private handleBubble(opcode: Opcodes.Bubble, info: BubblePacket): void { + private handleBubble(opcode: Opcodes.Bubble, info: BubblePacketData): void { if (!info.text) return this.bubble.clear(info.instance); let entity = this.entities.get(info.instance); + // Check validity of the entity only when the bubble is attached to an entity. if (opcode === Opcodes.Bubble.Entity && !entity) return; @@ -1251,7 +1346,7 @@ export default class Connection { * @param info Contains the skill batch data or a specific skill data. */ - private handleSkill(opcode: Opcodes.Skill, info: SkillPacket): void { + private handleSkill(opcode: Opcodes.Skill, info: SkillPacketData): void { switch (opcode) { case Opcodes.Skill.Batch: { this.game.player.loadSkills((info as SerializedSkills).skills); @@ -1279,10 +1374,13 @@ export default class Connection { for (let update of info) { let entity = this.entities.get(update.instance); - if (!entity) continue; + // If the entity doesn't exist, we add it to the update queue. + if (!entity) { + this.entities.entityUpdateQueue[update.instance] = update; + continue; + } - if (update.colour) entity.nameColour = update.colour; - if (update.scale) entity.customScale = update.scale; + entity.updateDisplayInfo(update); } } @@ -1295,7 +1393,7 @@ export default class Connection { * @param info Contains information about the minigame status. */ - private handleMinigame(opcode: Opcodes.Minigame, info: MinigamePacket): void { + private handleMinigame(opcode: Opcodes.Minigame, info: MinigamePacketData): void { let { minigame, player } = this.game; minigame.type = opcode; @@ -1305,22 +1403,23 @@ export default class Connection { switch (info.action) { // Game starting packet. - case Opcodes.TeamWar.Score: { - if (!isNaN(info.redTeamKills!) && !isNaN(info.blueTeamKills!)) - minigame.setScore(info.redTeamKills!, info.blueTeamKills!); + case Opcodes.MinigameActions.Score: { + minigame.setScore(info); return minigame.setStatus('ingame'); } // Entering lobby packets - case Opcodes.TeamWar.End: - case Opcodes.TeamWar.Lobby: { + case Opcodes.MinigameActions.End: + case Opcodes.MinigameActions.Lobby: { player.nameColour = ''; + this.pointer.clean(); + return minigame.setStatus('lobby'); } // Exiting the entire minigame - case Opcodes.TeamWar.Exit: { + case Opcodes.MinigameActions.Exit: { return minigame.reset(); } } @@ -1334,7 +1433,7 @@ export default class Connection { * @param info Information about the entity we are applying the effect to. */ - private handleEffect(opcode: Opcodes.Effect, info: EffectPacket): void { + private handleEffect(opcode: Opcodes.Effect, info: EffectPacketData): void { let entity = info.instance === this.game.player.instance ? this.game.player @@ -1360,7 +1459,7 @@ export default class Connection { * @param info Contains information about the packet we are handling. */ - private handleFriends(opcode: Opcodes.Friends, info: FriendsPacket): void { + private handleFriends(opcode: Opcodes.Friends, info: FriendsPacketData): void { switch (opcode) { case Opcodes.Friends.List: { this.game.player.loadFriends(info.list!); @@ -1397,18 +1496,41 @@ export default class Connection { * @param info Contains the information about the crafting action. */ - private handleCrafting(opcode: Opcodes.Crafting, info: CraftingPacket): void { + private handleCrafting(opcode: Opcodes.Crafting, info: CraftingPacketData): void { this.menu.getCrafting().handle(opcode, info); } + /** + * Generic packet for receiving interface information. These can be used for a wide + * variety of interfaces that we want to display to the player (with dynamic information). + * @param opcode What type of action to perform (open or close the interface). + * @param info Contains what interface we are acting upon and information about it. + */ + + private handleInterface(opcode: Opcodes.Interface, info: InterfacePacketData): void { + let menu = this.menu.get(info.identifier); + + // If the interface doesn't exist, we create it. + if (!menu) return; + + switch (opcode) { + case Opcodes.Interface.Open: { + return menu.show(info); + } + case Opcodes.Interface.Close: { + return menu.hide(); + } + } + } + /** * Handles incoming packet regarding a loot bag. This just displays the loot bag * menu and allows the player to interact with it. * @param slots */ - private handleLootBag(info: LootBagPacket): void { - console.log(info); + private handleLootBag(opcode: Opcodes.LootBag, info: LootBagPacketData): void { + this.menu.getLootBag().handle(opcode, info); } /** @@ -1416,7 +1538,7 @@ export default class Connection { * @param info Contains the instance and the counter information. */ - private handleCountdown(info: CountdownPacket): void { + private handleCountdown(info: CountdownPacketData): void { let entity = this.entities.get(info.instance); if (!entity) return; @@ -1424,6 +1546,28 @@ export default class Connection { entity.setCountdown(info.time); } + /** + * Handles the incoming resource packet. We essentially update the exhausted status + * of the resource based on what the server is telling us. + * @param info Contains the instance and the state of the resource. + */ + + private handleResource(info: ResourcePacketData): void { + let entity = this.entities.get(info.instance); + + // Entity either doesn't exist or it's not a resource. + if (!entity?.isResource()) return; + + let depleted = info.state === Modules.ResourceState.Depleted; + + (entity as Resource).setExhausted(depleted); + + // Update the cursor and silhouette + this.input.moveCursor(); + + if (depleted) entity.updateSilhouette(false); + } + /** * Compares the epoch between the last entity list update request and current * time. This is in order to prevent spams to the server and timeout. diff --git a/packages/client/src/network/messages.ts b/packages/client/src/network/messages.ts index 67b4d6cc01..eb58bc7c97 100644 --- a/packages/client/src/network/messages.ts +++ b/packages/client/src/network/messages.ts @@ -2,105 +2,109 @@ import { Packets } from '@kaetram/common/network'; import type App from '../app'; import type { - AbilityCallback, - AchievementCallback, - AnimationCallback, - BlinkCallback, - BubbleCallback, - CameraCallback, - ChatCallback, - CombatCallback, - CommandCallback, - ContainerCallback, - CountdownCallback, - CraftingCallback, - DeathCallback, - DespawnCallback, - EffectCallback, - EnchantCallback, - EntityListCallback, - EquipmentCallback, - ExperienceCallback, - FriendsCallback, - GuildCallback, - HandshakeCallback, - HealCallback, - LootBagCallback, - MapCallback, - MinigameCallback, - MovementCallback, - MusicCallback, - NetworkCallback, - NotificationCallback, - NPCCallback, - OverlayCallback, - PointerCallback, - PointsCallback, - PoisonCallback, - PVPCallback, - QuestCallback, - RankCallback, - RespawnCallback, - SkillCallback, - SpawnCallback, - StoreCallback, - SyncCallback, - TeleportCallback, - TradeCallback, - UpdateCallback, - WelcomeCallback + AbilityPacketCallback, + AchievementPacketCallback, + AnimationPacketCallback, + BlinkPacketCallback, + BubblePacketCallback, + CameraPacketCallback, + ChatPacketCallback, + CombatPacketCallback, + CommandPacketCallback, + ContainerPacketCallback, + CountdownPacketCallback, + CraftingPacketCallback, + DeathPacketCallback, + DespawnPacketCallback, + EffectPacketCallback, + EnchantPacketCallback, + EntityListPacketCallback, + EquipmentPacketCallback, + ExperiencePacketCallback, + FriendsPacketCallback, + GuildPacketCallback, + HandshakePacketCallback, + HealPacketCallback, + InterfacePacketCallback, + LootBagPacketCallback, + MapPacketCallback, + MinigamePacketCallback, + MovementPacketCallback, + MusicPacketCallback, + NetworkPacketCallback, + NotificationPacketCallback, + NPCPacketCallback, + OverlayPacketCallback, + PointerPacketCallback, + PointsPacketCallback, + PoisonPacketCallback, + PVPPacketCallback, + QuestPacketCallback, + RankPacketCallback, + ResourcePacketCallback, + RespawnPacketCallback, + SkillPacketCallback, + SpawnPacketCallback, + StorePacketCallback, + SyncPacketCallback, + TeleportPacketCallback, + TradePacketCallback, + UpdatePacketCallback, + WelcomePacketCallback } from '@kaetram/common/types/messages/outgoing'; export default class Messages { private messages: (() => ((...data: never[]) => void) | undefined)[] = []; - private handshakeCallback?: HandshakeCallback; - private welcomeCallback?: WelcomeCallback; - private mapCallback?: MapCallback; - private spawnCallback?: SpawnCallback; - private equipmentCallback?: EquipmentCallback; - private entityListCallback?: EntityListCallback; - private syncCallback?: SyncCallback; - private movementCallback?: MovementCallback; - private teleportCallback?: TeleportCallback; - private despawnCallback?: DespawnCallback; - private combatCallback?: CombatCallback; - private animationCallback?: AnimationCallback; - private pointsCallback?: PointsCallback; - private networkCallback?: NetworkCallback; - private chatCallback?: ChatCallback; - private commandCallback?: CommandCallback; - private containerCallback?: ContainerCallback; - private abilityCallback?: AbilityCallback; - private questCallback?: QuestCallback; - private achievementCallback?: AchievementCallback; - private notificationCallback?: NotificationCallback; - private blinkCallback?: BlinkCallback; - private healCallback?: HealCallback; - private experienceCallback?: ExperienceCallback; - private deathCallback?: DeathCallback; - private musicCallback?: MusicCallback; - private npcCallback?: NPCCallback; - private respawnCallback?: RespawnCallback; - private tradeCallback?: TradeCallback; - private enchantCallback?: EnchantCallback; - private guildCallback?: GuildCallback; - private pointerCallback?: PointerCallback; - private pvpCallback?: PVPCallback; - private poisonCallback?: PoisonCallback; - private storeCallback?: StoreCallback; - private overlayCallback?: OverlayCallback; - private cameraCallback?: CameraCallback; - private bubbleCallback?: BubbleCallback; - private skillCallback?: SkillCallback; - private updateCallback?: UpdateCallback; - private minigameCallback?: MinigameCallback; - private effectCallback?: EffectCallback; - private friendsCallback?: FriendsCallback; - private rankCallback?: RankCallback; - private craftingCallback?: CraftingCallback; - private lootBagCallback?: LootBagCallback; - private countdownCallback?: CountdownCallback; + private handshakeCallback?: HandshakePacketCallback; + private welcomeCallback?: WelcomePacketCallback; + private mapCallback?: MapPacketCallback; + private spawnCallback?: SpawnPacketCallback; + private equipmentCallback?: EquipmentPacketCallback; + private entityListCallback?: EntityListPacketCallback; + private syncCallback?: SyncPacketCallback; + private movementCallback?: MovementPacketCallback; + private teleportCallback?: TeleportPacketCallback; + private despawnCallback?: DespawnPacketCallback; + private combatCallback?: CombatPacketCallback; + private animationCallback?: AnimationPacketCallback; + private pointsCallback?: PointsPacketCallback; + private networkCallback?: NetworkPacketCallback; + private chatCallback?: ChatPacketCallback; + private commandCallback?: CommandPacketCallback; + private containerCallback?: ContainerPacketCallback; + private abilityCallback?: AbilityPacketCallback; + private questCallback?: QuestPacketCallback; + private achievementCallback?: AchievementPacketCallback; + private notificationCallback?: NotificationPacketCallback; + private blinkCallback?: BlinkPacketCallback; + private healCallback?: HealPacketCallback; + private experienceCallback?: ExperiencePacketCallback; + private deathCallback?: DeathPacketCallback; + private musicCallback?: MusicPacketCallback; + private npcCallback?: NPCPacketCallback; + private respawnCallback?: RespawnPacketCallback; + private tradeCallback?: TradePacketCallback; + private enchantCallback?: EnchantPacketCallback; + private guildCallback?: GuildPacketCallback; + private pointerCallback?: PointerPacketCallback; + private pvpCallback?: PVPPacketCallback; + private poisonCallback?: PoisonPacketCallback; + private storeCallback?: StorePacketCallback; + private overlayCallback?: OverlayPacketCallback; + private cameraCallback?: CameraPacketCallback; + private bubbleCallback?: BubblePacketCallback; + private skillCallback?: SkillPacketCallback; + private updateCallback?: UpdatePacketCallback; + private minigameCallback?: MinigamePacketCallback; + private effectCallback?: EffectPacketCallback; + private friendsCallback?: FriendsPacketCallback; + private rankCallback?: RankPacketCallback; + private craftingCallback?: CraftingPacketCallback; + private interfaceCallback?: InterfacePacketCallback; + private lootBagCallback?: LootBagPacketCallback; + private countdownCallback?: CountdownPacketCallback; + private resourceCallback?: ResourcePacketCallback; /** * Do not clutter up the Socket class with callbacks, @@ -158,8 +162,10 @@ export default class Messages { this.messages[Packets.Friends] = () => this.friendsCallback; this.messages[Packets.Rank] = () => this.rankCallback; this.messages[Packets.Crafting] = () => this.craftingCallback; + this.messages[Packets.Interface] = () => this.interfaceCallback; this.messages[Packets.LootBag] = () => this.lootBagCallback; this.messages[Packets.Countdown] = () => this.countdownCallback; + this.messages[Packets.Resource] = () => this.resourceCallback; } /** @@ -210,6 +216,11 @@ export default class Messages { break; } + case 'disabledregister': { + this.app.sendError('Registration is currently disabled.'); + break; + } + case 'development': { this.app.sendError('The game is currently in development mode.'); break; @@ -303,191 +314,199 @@ export default class Messages { * Packet callbacks. */ - public onHandshake(callback: HandshakeCallback): void { + public onHandshake(callback: HandshakePacketCallback): void { this.handshakeCallback = callback; } - public onWelcome(callback: WelcomeCallback): void { + public onWelcome(callback: WelcomePacketCallback): void { this.welcomeCallback = callback; } - public onSpawn(callback: SpawnCallback): void { + public onSpawn(callback: SpawnPacketCallback): void { this.spawnCallback = callback; } - public onEquipment(callback: EquipmentCallback): void { + public onEquipment(callback: EquipmentPacketCallback): void { this.equipmentCallback = callback; } - public onEntityList(callback: EntityListCallback): void { + public onEntityList(callback: EntityListPacketCallback): void { this.entityListCallback = callback; } - public onSync(callback: SyncCallback): void { + public onSync(callback: SyncPacketCallback): void { this.syncCallback = callback; } - public onMovement(callback: MovementCallback): void { + public onMovement(callback: MovementPacketCallback): void { this.movementCallback = callback; } - public onTeleport(callback: TeleportCallback): void { + public onTeleport(callback: TeleportPacketCallback): void { this.teleportCallback = callback; } - public onDespawn(callback: DespawnCallback): void { + public onDespawn(callback: DespawnPacketCallback): void { this.despawnCallback = callback; } - public onCombat(callback: CombatCallback): void { + public onCombat(callback: CombatPacketCallback): void { this.combatCallback = callback; } - public onAnimation(callback: AnimationCallback): void { + public onAnimation(callback: AnimationPacketCallback): void { this.animationCallback = callback; } - public onPoints(callback: PointsCallback): void { + public onPoints(callback: PointsPacketCallback): void { this.pointsCallback = callback; } - public onNetwork(callback: NetworkCallback): void { + public onNetwork(callback: NetworkPacketCallback): void { this.networkCallback = callback; } - public onChat(callback: ChatCallback): void { + public onChat(callback: ChatPacketCallback): void { this.chatCallback = callback; } - public onCommand(callback: CommandCallback): void { + public onCommand(callback: CommandPacketCallback): void { this.commandCallback = callback; } - public onContainer(callback: ContainerCallback): void { + public onContainer(callback: ContainerPacketCallback): void { this.containerCallback = callback; } - public onAbility(callback: AbilityCallback): void { + public onAbility(callback: AbilityPacketCallback): void { this.abilityCallback = callback; } - public onQuest(callback: QuestCallback): void { + public onQuest(callback: QuestPacketCallback): void { this.questCallback = callback; } - public onAchievement(callback: AchievementCallback): void { + public onAchievement(callback: AchievementPacketCallback): void { this.achievementCallback = callback; } - public onNotification(callback: NotificationCallback): void { + public onNotification(callback: NotificationPacketCallback): void { this.notificationCallback = callback; } - public onBlink(callback: BlinkCallback): void { + public onBlink(callback: BlinkPacketCallback): void { this.blinkCallback = callback; } - public onHeal(callback: HealCallback): void { + public onHeal(callback: HealPacketCallback): void { this.healCallback = callback; } - public onExperience(callback: ExperienceCallback): void { + public onExperience(callback: ExperiencePacketCallback): void { this.experienceCallback = callback; } - public onDeath(callback: DeathCallback): void { + public onDeath(callback: DeathPacketCallback): void { this.deathCallback = callback; } - public onMusic(callback: MusicCallback): void { + public onMusic(callback: MusicPacketCallback): void { this.musicCallback = callback; } - public onNPC(callback: NPCCallback): void { + public onNPC(callback: NPCPacketCallback): void { this.npcCallback = callback; } - public onRespawn(callback: RespawnCallback): void { + public onRespawn(callback: RespawnPacketCallback): void { this.respawnCallback = callback; } - public onTrade(callback: TradeCallback): void { + public onTrade(callback: TradePacketCallback): void { this.tradeCallback = callback; } - public onEnchant(callback: EnchantCallback): void { + public onEnchant(callback: EnchantPacketCallback): void { this.enchantCallback = callback; } - public onGuild(callback: GuildCallback): void { + public onGuild(callback: GuildPacketCallback): void { this.guildCallback = callback; } - public onPointer(callback: PointerCallback): void { + public onPointer(callback: PointerPacketCallback): void { this.pointerCallback = callback; } - public onPVP(callback: PVPCallback): void { + public onPVP(callback: PVPPacketCallback): void { this.pvpCallback = callback; } - public onPoison(callback: PoisonCallback): void { + public onPoison(callback: PoisonPacketCallback): void { this.poisonCallback = callback; } - public onStore(callback: StoreCallback): void { + public onStore(callback: StorePacketCallback): void { this.storeCallback = callback; } - public onMap(callback: MapCallback): void { + public onMap(callback: MapPacketCallback): void { this.mapCallback = callback; } - public onOverlay(callback: OverlayCallback): void { + public onOverlay(callback: OverlayPacketCallback): void { this.overlayCallback = callback; } - public onCamera(callback: CameraCallback): void { + public onCamera(callback: CameraPacketCallback): void { this.cameraCallback = callback; } - public onBubble(callback: BubbleCallback): void { + public onBubble(callback: BubblePacketCallback): void { this.bubbleCallback = callback; } - public onSkill(callback: SkillCallback): void { + public onSkill(callback: SkillPacketCallback): void { this.skillCallback = callback; } - public onUpdate(callback: UpdateCallback): void { + public onUpdate(callback: UpdatePacketCallback): void { this.updateCallback = callback; } - public onMinigame(callback: MinigameCallback): void { + public onMinigame(callback: MinigamePacketCallback): void { this.minigameCallback = callback; } - public onEffect(callback: EffectCallback): void { + public onEffect(callback: EffectPacketCallback): void { this.effectCallback = callback; } - public onFriends(callback: FriendsCallback): void { + public onFriends(callback: FriendsPacketCallback): void { this.friendsCallback = callback; } - public onRank(callback: RankCallback): void { + public onRank(callback: RankPacketCallback): void { this.rankCallback = callback; } - public onCrafting(callback: CraftingCallback): void { + public onCrafting(callback: CraftingPacketCallback): void { this.craftingCallback = callback; } - public onLootBag(callback: LootBagCallback): void { + public onInterface(callback: InterfacePacketCallback): void { + this.interfaceCallback = callback; + } + + public onLootBag(callback: LootBagPacketCallback): void { this.lootBagCallback = callback; } - public onCountdown(callback: CountdownCallback): void { + public onCountdown(callback: CountdownPacketCallback): void { this.countdownCallback = callback; } + + public onResource(callback: ResourcePacketCallback): void { + this.resourceCallback = callback; + } } diff --git a/packages/client/src/network/socket.ts b/packages/client/src/network/socket.ts index ae62af2cc2..38f692cf6c 100644 --- a/packages/client/src/network/socket.ts +++ b/packages/client/src/network/socket.ts @@ -5,7 +5,12 @@ import log from '../lib/log'; import { Packets } from '@kaetram/common/network'; import type Game from '../game'; -import type { SerializedServer } from '@kaetram/common/types/api'; +import type { SerializedServer } from '@kaetram/common/types/network'; +import type { TradePacketOutgoing } from '@kaetram/common/network/impl/trade'; + +interface OutgoingPackets { + [Packets.Trade]: TradePacketOutgoing; +} export default class Socket { public messages; @@ -44,8 +49,12 @@ export default class Socket { */ public async connect(server?: SerializedServer): Promise { - let { host, port } = server || (await this.getServer()) || this.config, - url = this.config.ssl ? `wss://${host}` : `ws://${host}:${port}`; + let { host, port } = server || (await this.getServer()) || this.config; + + host ||= this.config.host; + port ||= this.config.port; + + let url = this.config.ssl ? `wss://${host}` : `ws://${host}:${port}`; // Create a websocket connection with the url generated. this.connection = new WebSocket(url); @@ -92,7 +101,7 @@ export default class Socket { * @param data Packet data in an array format. */ - public send(packet: number, data?: unknown): void { + public send(packet: P, data?: OutgoingPackets[P & number]): void { // Ensure the connection is open before sending. if (this.connection?.readyState !== WebSocket.OPEN) return; @@ -128,7 +137,7 @@ export default class Socket { this.game.app.toggleLogin(false); this.game.app.sendError( - window.config.debug + import.meta.env.DEV ? `Couldn't connect to ${host}:${port}` : 'Could not connect to the game server.' ); diff --git a/packages/client/src/renderer/bubbles/blob.ts b/packages/client/src/renderer/bubbles/blob.ts index 53e6054f99..dda5aad2bf 100644 --- a/packages/client/src/renderer/bubbles/blob.ts +++ b/packages/client/src/renderer/bubbles/blob.ts @@ -1,6 +1,9 @@ import Timer from '../../utils/timer'; export default class Blob { + public x = -1; + public y = -1; + public element: HTMLElement; public duration = 5000; @@ -21,6 +24,17 @@ export default class Blob { this.static = !!this.position; } + /** + * Sets the position of the blob to the specified x and y coordinates. + * @param x The x coordinate (absolute position on the map). + * @param y The y coordinate (absolute position on the map). + */ + + public setPosition(x: number, y: number): void { + this.x = x; + this.y = y; + } + /** * Updates a blob with the new text and resets the timer. * @param text The new string text we are displaying. @@ -65,21 +79,17 @@ export default class Blob { private createBlob(instance: string, message: string): HTMLElement { let blob = document.createElement('div'), - tip = document.createElement('div'), text = document.createElement('p'); // Add the identifiers and classes to the blob. blob.id = instance; blob.classList.add('bubble'); - // Add the identifiers and classes to the tip. - tip.classList.add('bubble-tip'); - // Add the message to the text element. text.innerHTML = message; // Combine elements and return the result. - blob.append(text, tip); + blob.append(text); return blob; } diff --git a/packages/client/src/renderer/camera.ts b/packages/client/src/renderer/camera.ts index 6355492cdb..f5e7c5c160 100644 --- a/packages/client/src/renderer/camera.ts +++ b/packages/client/src/renderer/camera.ts @@ -2,12 +2,10 @@ import { Modules } from '@kaetram/common/network'; import type Character from '../entity/character/character'; -const MAXIMUM_ZOOM = 6, - DEFAULT_ZOOM = 3, - MAX_GRID_WIDTH = 52, - MAX_GRID_HEIGHT = 28; - -let MINIMUM_ZOOM = 2.6; +export const MAXIMUM_ZOOM = 8, + DEFAULT_ZOOM = 4, + MAX_GRID_WIDTH = 64, + MAX_GRID_HEIGHT = 32; export default class Camera { // Border is used to determine the screen size of the website (not browser). @@ -28,9 +26,15 @@ export default class Camera { // The maximum camera position for the bottom and right edges of the map. private borderX = 0; private borderY = 0; + public borderWidth = 0; + public borderHeight = 0; + + // Border offset sizes (the actual dimension of the screen). + public borderOffsetWidth = 0; + public borderOffsetHeight = 0; // How zoomed in we are. - public zoomFactor = 3; + public zoomFactor = DEFAULT_ZOOM; // Whether to centre the camera on a specific entity. private centered = true; @@ -39,7 +43,17 @@ export default class Camera { public lockX = false; public lockY = false; - public constructor(private width: number, private height: number, private tileSize: number) { + // The maximum and minimum zoom factors. + public maxZoom = MAXIMUM_ZOOM; + public minZoom = 2.6; + + private zoomCallback?: () => void; + + public constructor( + private width: number, + private height: number, + private tileSize: number + ) { this.update(); } @@ -51,8 +65,13 @@ export default class Camera { */ public update(): void { - let borderWidth = this.border.offsetWidth, - borderHeight = this.border.offsetHeight; + // Store the true dimensions of the border. + this.borderOffsetWidth = this.border.offsetWidth; + this.borderOffsetHeight = this.border.offsetHeight; + + // Calculate the actual border width using the tile size and zoom factor. + this.borderWidth = this.border.offsetWidth / this.tileSize / this.zoomFactor; + this.borderHeight = this.border.offsetHeight / this.tileSize / this.zoomFactor; /** * The grid width and height are defined by how many tiles we can fit into @@ -62,8 +81,8 @@ export default class Camera { * and vertically after the zoom. */ - this.gridWidth = Math.ceil(borderWidth / this.tileSize / this.zoomFactor); - this.gridHeight = Math.ceil(borderHeight / this.tileSize / this.zoomFactor); + this.gridWidth = ~~this.borderWidth + 1; + this.gridHeight = ~~this.borderHeight + 1; this.clamp(); @@ -106,7 +125,7 @@ export default class Camera { /** * Sets the zoom factor of the camera and clamps the limits. - * @param zoom The new zoom factor, defaults to DEFAULT_ZOOM value. + * @param zoom The new zoom factor, defaults to {@linkcode DEFAULT_ZOOM} value. */ public setZoom(zoom = DEFAULT_ZOOM): void { @@ -114,8 +133,10 @@ export default class Camera { if (isNaN(this.zoomFactor)) this.zoomFactor = DEFAULT_ZOOM; - if (this.zoomFactor > MAXIMUM_ZOOM) this.zoomFactor = MAXIMUM_ZOOM; - if (this.zoomFactor < MINIMUM_ZOOM) this.zoomFactor = MINIMUM_ZOOM; + if (this.zoomFactor > this.maxZoom) this.zoomFactor = this.maxZoom; + if (this.zoomFactor < this.minZoom) this.zoomFactor = this.minZoom; + + this.zoomCallback?.(); } /** @@ -160,8 +181,8 @@ export default class Camera { */ public centreOn(character: Character): void { - let width = Math.floor(this.gridWidth / 2), - height = Math.floor(this.gridHeight / 2), + let width = this.borderWidth / 2, + height = this.borderHeight / 2, nextX = character.x - width * this.tileSize, nextY = character.y - height * this.tileSize; @@ -174,12 +195,12 @@ export default class Camera { if (nextX >= 0 && nextX <= this.borderX && !this.lockX) { this.x = nextX; - this.gridX = Math.round(character.x / this.tileSize) - width; + this.gridX = Math.round(character.x / this.tileSize - ~~width); } else this.offsetX(nextX); // Bind to the x edge. if (nextY >= 0 && nextY <= this.borderY && !this.lockY) { this.y = nextY; - this.gridY = Math.round(character.y / this.tileSize) - height; + this.gridY = Math.round(character.y / this.tileSize - ~~height); } else this.offsetY(nextY); // Bind to the y edge. } @@ -296,7 +317,7 @@ export default class Camera { public updateMinimumZoom(mobile = false): void { // Update the minimum zoom. - MINIMUM_ZOOM = mobile ? 2 : 2.6; + this.minZoom = mobile ? 2 : 2.6; this.zoom(); } @@ -318,11 +339,11 @@ export default class Camera { * @returns Whether or not the coordinates are within the viewport. */ - public isVisible(x: number, y: number, offsetX: number, offsetY: number): boolean { + public isVisible(x: number, y: number, offsetX: number, offsetY = offsetX): boolean { return ( x > this.gridX - offsetX && - x < this.gridX + this.gridWidth && - y > this.gridY - offsetX && + x < this.gridX + this.gridWidth + offsetX && + y > this.gridY - offsetY && y < this.gridY + this.gridHeight + offsetY ); } @@ -331,11 +352,27 @@ export default class Camera { * Iterates through every grid coordinate in the view port. * @param callback Callback contains the grid coordinates being iterated in the view. * @param offset How much to look outside the width and height of the viewport. + * @param offsetRight How much to look outside the right edge of the viewport. */ - public forEachVisiblePosition(callback: (x: number, y: number) => void, offset = 1): void { - for (let y = this.gridY - offset, maxY = y + this.gridHeight + offset * 2; y < maxY; y++) - for (let x = this.gridX - offset, maxX = x + this.gridWidth + offset * 2; x < maxX; x++) + public forEachVisiblePosition( + callback: (x: number, y: number) => void, + offset = 2, + offsetRight = offset + ): void { + for (let y = this.gridY - offset; y < this.gridY + this.gridHeight + offsetRight; y++) + for (let x = this.gridX - offset; x < this.gridX + this.gridWidth + offsetRight; x++) { + if (x < 0 || y < 0 || x >= this.width || y >= this.height) continue; callback(x, y); + } + } + + /** + * Callback for when the zooming has changed. Used by the renderer to recalculate + * text dimensions and other things that are affected by the zoom. + */ + + public onZoom(callback: () => void): void { + this.zoomCallback = callback; } } diff --git a/packages/client/src/renderer/canvas.ts b/packages/client/src/renderer/canvas.ts index 78909ca9bf..8366e80577 100644 --- a/packages/client/src/renderer/canvas.ts +++ b/packages/client/src/renderer/canvas.ts @@ -1,9 +1,10 @@ import Renderer from './renderer'; -import Tile from './tile'; + +import Tile from '../map/tile'; import type Game from '../game'; import type { ContextCallback } from './renderer'; -import type { RegionTile, RotatedTile } from '@kaetram/common/types/map'; +import type { ClientTile, TransformedTile } from '@kaetram/common/types/map'; enum TileFlip { Horizontal, @@ -28,12 +29,16 @@ interface RendererCell { } export default class Canvas extends Renderer { - public animatedTiles: { [index: number]: Tile } = {}; + public animatedTiles: { [tileId: number | string]: Tile } = {}; + public animatedTileIndexes: { [tileId: number | string]: number[] } = {}; // Used for storing and caching tile information. private tiles: { [id: string]: RendererTile } = {}; private cells: { [id: number]: RendererCell } = {}; + // Used to keep track of already animated dynamic animated tiles. + private animatedDynamicTiles: string[] = []; + // Override for the context types private backContext: CanvasRenderingContext2D = this.background.getContext('2d')!; private foreContext: CanvasRenderingContext2D = this.foreground.getContext('2d')!; @@ -56,9 +61,6 @@ export default class Canvas extends Renderer { // Clear all the cells so they're redrawn. this.cells = {}; - - // Re-calculate visible animated tiles. - this.updateAnimatedTiles(); } /** @@ -84,63 +86,155 @@ export default class Canvas extends Renderer { */ private draw(): void { - if (this.hasRenderedFrame()) return; + // Draw only tiles with animated indexes if we have rendered a frame. + if (this.hasRenderedFrame()) return this.drawAnimatedIndexes(); this.clearDrawing(); this.saveDrawing(); - // Draw the default background colour - this.backContext.fillStyle = 'rgba(9, 10, 20, 1)'; - this.backContext.fillRect(0, 0, this.background.width, this.background.height); - // Sets the view according to the camera. this.updateDrawingView(); - this.forEachVisibleTile((tile: RegionTile, index: number) => { - let flips: number[] = this.getFlipped(tile as RotatedTile); - - // Extract the tileId from the animated region tile. - if (flips.length > 0) tile = (tile as RotatedTile).tileId; + /** + * I made a decision to sacrifice legibility to maximize performance. We avoid using + * `forEachVisiblePosition` so that we do not make a ridiculous amount of callbacks + * for each tile. We do the iteration through the visible tiles using a for loop and + * all within one function. + */ - // Determine the layer of the tile depending on if it is a high tile or not. - let isHighTile = this.map.isHighTile(tile as number), - context = ( - isHighTile ? this.foreContext : this.backContext - ) as CanvasRenderingContext2D; + for (let y = this.camera.gridY - 2; y < this.camera.gridY + this.camera.gridHeight; y++) + for ( + let x = this.camera.gridX - 2; + x < this.camera.gridX + this.camera.gridWidth; + x++ + ) { + // Prevent out of bounds coordinates. + if (this.map.isOutOfBounds(x, y)) continue; - // Only do the lighting logic if there is an overlay. - if (this.game.overlays.hasOverlay()) { - let isLightTile = this.map.isLightTile(tile as number); + let index = x + y * this.map.width; - context = isLightTile ? (this.overlayContext as CanvasRenderingContext2D) : context; + this.parseTile(this.map.data[index], index); } - /** - * Draws the animated tiles first so they display behind potential - * high tiles. We check if the current index contains an animated tile - * and if we are currently animating tiles before proceeding. - */ - if (index in this.animatedTiles && this.animateTiles) { - // Prevent double draws when drawing flipped animated tiles. - if (flips.length === 0 && this.animatedTiles[index].isFlipped) return; - - this.drawTile( - context, - this.animatedTiles[index].id, - this.animatedTiles[index].index, - flips - ); + this.saveFrame(); + this.restoreDrawing(); + } + + /** + * Processes a tileId at a specified map index and draws it onto the canvas. + * We determine what canvas layer to draw the tile on, and whether it's an animated + * tile or not. If it is, we handle the animated tile logic. + * @param tile The tileId of the tile we are drawing, used to access the animated tile. + * @param index The index of the tile on the map. + */ + + private drawVisibleTile(tile: ClientTile, index: number): void { + let flips: number[] = this.getFlipped(tile as TransformedTile); + + // Extract the tileId from the animated region tile. + if (flips.length > 0) tile = (tile as TransformedTile).tileId; + + // Determine the layer of the tile depending on if it is a high tile or not. + let context = ( + this.map.isHighTile(tile as number) ? this.foreContext : this.backContext + ) as CanvasRenderingContext2D; + + // Only do the lighting logic if there is an overlay. + if (this.game.overlays.hasOverlay()) { + let isLightTile = this.map.isLightTile(tile as number); + + context = isLightTile ? (this.overlayContext as CanvasRenderingContext2D) : context; + } + + // Draw animated tiles if the tile is animated and we're animating tiles. + if (this.animateTiles && this.map.isAnimatedTile(tile as number)) + this.drawAnimatedTile(tile as number, index, flips); + else this.drawTile(context, tile as number, index, flips); + } + + /** + * We iterate through the animated indexes for each animated tile and draw them. + * We store the animated tiles in a dictionary since it makes it easier to delete + * them when they are no longer used. For each index we render the whole tile information + * at that index to ensure that the tile is drawn correctly. We also check if the tile + * has been previously uploaded (whether or not the last frame changed). + */ + + private drawAnimatedIndexes(): void { + this.saveDrawing(); + this.updateDrawingView(); + + for (let tileId in this.animatedTileIndexes) { + let animatedTile = this.animatedTiles[tileId]; + + // Skip if the tile has been uploaded. + if (animatedTile?.uploaded) continue; + + let indexes = this.animatedTileIndexes[tileId]; + + for (let index of indexes) { + let cell = this.cells[index]; + + // Clear the context at the cell of the index we are drawing. + if (cell) { + this.backContext.clearRect(cell.dx, cell.dy, cell.width, cell.height); + this.foreContext.clearRect(cell.dx, cell.dy, cell.width, cell.height); + } + + this.parseTile(this.map.data[index], index); } - // Skip animated tiles unless we disable animations, then just draw the tile once. - if (!this.map.isAnimatedTile(tile as number) || !this.animateTiles) - this.drawTile(context, (tile as number) - 1, index, flips); - }); + // Mark the tile as uploaded. + animatedTile.uploaded = true; + } - this.saveFrame(); this.restoreDrawing(); } + /** + * Given the index of the specified animated tile, we draw the tile contained at + * that index. We first have to check whether the tile is a foreground tile or not. + * @param tile The tileId of the tile we are drawing, used to access the animated tile. + * @param index The index of the tile on the map. + * @param flips An array containing transformations the tile will undergo. + */ + + private drawAnimatedTile(tile: number, index: number, flips: number[] = []): void { + // No drawing if we aren't animating tiles. + if (!this.animateTiles) return; + + /** + * There are special animated tiles that have their own unique tileId given the fact + * that they animate once. For these we want to separate them into their own object + * and animate separately. Example of these are the tiles that function as doors. + */ + + let isDynamicallyAnimated = this.map.dynamicAnimatedTiles[index], + identifier = isDynamicallyAnimated ? `${tile}-${index}` : tile, + animatedTile = this.animatedTiles[identifier]; + + // The tile does not exist at the specified index, so we add it. + if (!animatedTile) + return this.addAnimatedTile(tile as number, isDynamicallyAnimated ? index : -1); + + // Store the indices of animated tiles for later use. + if (!this.animatedTileIndexes[tile]) this.animatedTileIndexes[tile] = []; + else if (!this.animatedTileIndexes[tile].includes(index)) + this.animatedTileIndexes[tile].push(index); + + // Update the last accessed time. + animatedTile.lastAccessed = this.game.time; + + // Prevent double draws when drawing flipped animated tiles. + if (flips.length === 0 && animatedTile.isFlipped) return; + + // Extract the context from the animated tile. + let context = animatedTile.isHighTile ? this.foreContext : this.backContext; + + // Draw the tile given its context (determined when we initialize the tile). + this.drawTile(context, animatedTile.id + 1, index, flips); + } + // ---------- Primitive Drawing Functions ---------- /** @@ -159,8 +253,6 @@ export default class Canvas extends Renderer { index: number, flips: number[] = [] ): void { - if (tileId < 0) return; - let tileset = this.map.getTilesetFromId(tileId); if (!tileset) return; @@ -180,24 +272,24 @@ export default class Canvas extends Renderer { relativeTileId, setWidth, x: this.getX(relativeTileId + 1, setWidth) * this.tileSize, - y: Math.floor(relativeTileId / setWidth) * this.tileSize, + y: ~~(relativeTileId / setWidth) * this.tileSize, width: this.tileSize, height: this.tileSize }; } /** - * Cell cache stores data about every index coordinate the player - * has explored. This may create overhead in terms of memory usage, - * but it is a necessary optimization. + * Cell cache is responsible for storing the position and dimensions of each individual + * tile. This is used to avoid recalculating the delta x and y coordinates for each rendering + * call. Instead we keep it here for the duration the tile is in the camera's view. */ if (!(index in this.cells) || flips.length > 0) this.cells[index] = { - dx: this.getX(index + 1, this.map.width) * this.actualTileSize, - dy: Math.floor(index / this.map.width) * this.actualTileSize, - width: this.actualTileSize, - height: this.actualTileSize + dx: ~~(this.getX(index + 1, this.map.width) * this.actualTileSize) + 1, + dy: ~~(~~(index / this.map.width) * this.actualTileSize) + 1, + width: this.ceilActualTileSize, + height: this.ceilActualTileSize }; this.drawImage(context, tileset, this.tiles[tileId], this.cells[index], flips); @@ -273,7 +365,7 @@ export default class Canvas extends Renderer { * when the next available flip is horizontal (essentially performing two horizontals in a row.) */ - if (flips[index + 1] === TileFlip.Horizontal) + if (flips[index + 1] === (TileFlip.Horizontal as number)) flips.push(TileFlip.Horizontal); else flips.push(TileFlip.Vertical); @@ -336,50 +428,72 @@ export default class Canvas extends Renderer { } /** - * Iterates through all the currently visible tiles and appends tiles - * that are animated to our list of animated tiles. This function ensures - * that animated tiles are initialzied only once and stored for the - * duration of the client's session. + * Used to synchronize all animated tiles under certain conditions. Generally whenever + * we add a new tile we want to sync them in case there are animations that require + * multiple tiles. */ - public override updateAnimatedTiles(): void { - if (!this.animateTiles) return; - - this.forEachVisibleTile((tile: RegionTile, index: number) => { - let isFlipped = this.isFlipped(tile as RotatedTile); + public resetAnimatedTiles(): void { + // Reset the animation frame index for each animated tile. + for (let tileId in this.animatedTiles) { + let tile = this.animatedTiles[tileId]; - if (isFlipped) tile = (tile as RotatedTile).tileId; + tile.lastTime = Date.now() - tile.getDuration() + 24; + tile.animationIndex = 0; + } + } - /** - * We don't want to reinitialize animated tiles that already exist - * and are within the visible camera proportions. This way we can parse - * it every time the tile moves slightly. - */ + /** + * Creates a new animated tile object and adds the tile id to the list of animated tiles. + * This ID is used by all tiles that share the same id but are at different positions. + * @param tileId The tileId of the tile we are adding, this is not the tile index. + * @param index Specified when dealing with dynamically animated tiles (tiles that animate once). + */ - if (!this.map.isAnimatedTile(tile as number)) return; + private addAnimatedTile(tileId: number, index = -1): void { + let isDynamicallyAnimated = index !== -1, + identifier = isDynamicallyAnimated ? `${tileId}-${index}` : tileId; + + // Ignore dynamically animated tiles if they have already been animated. + if (isDynamicallyAnimated && this.animatedDynamicTiles.includes(identifier as string)) + return; + + // Create the tile and add it to the list of animated tiles. + this.animatedTiles[identifier] = new Tile( + tileId, + index, + this.map.getTileAnimation(tileId), + false, + this.map.isHighTile(tileId), + isDynamicallyAnimated ? this.map.dynamicAnimatedTiles[index] : undefined + ); - /** - * Push the pre-existing tiles. - */ + // If the tile is dynamically animated then we keep track of it and not reset the tiles. + if (isDynamicallyAnimated) this.animatedDynamicTiles.push(identifier as string); - if (!(index in this.animatedTiles)) - this.animatedTiles[index] = new Tile( - tile as number, - index, - this.map.getTileAnimation(tile as number), - isFlipped - ); - }, 2); + // Synchronize all the existing tiles after we add a new one. + this.resetAnimatedTiles(); } /** - * Used for synchronization of all animated tiles when the player - * stops moving or every couple of steps. + * Parses a map tile at a specified index and determines what to do + * with it. If it's an array, we iterate through the array and draw + * each tile. Otherwise, we draw the tile. + * @param tile The tile we are parsing, raw from the client map. + * @param index The index of the tile on the map. */ - public override resetAnimatedTiles(): void { - // Reset the animation frame index for each animated tile. - for (let tile in this.animatedTiles) this.animatedTiles[tile].animationIndex = 0; + private parseTile(tile: ClientTile, index: number): void { + // Ignore empty tiles. + if (tile === 0) return; + + // Check for transformed tiles and draw them. + if ((tile as TransformedTile).tileId) + return this.drawVisibleTile(tile as TransformedTile, index); + + // This is a hackfix to check if the tile is an array at the index. + if (~~tile === 0) for (let info of tile as number[]) this.drawVisibleTile(info, index); + else this.drawVisibleTile(tile, index); } // ---------- Getters and Checkers ---------- @@ -392,11 +506,11 @@ export default class Canvas extends Renderer { * @returns An array containing all flip flags in order. */ - public getFlipped(tile: RotatedTile): number[] { + public getFlipped(tile: TransformedTile): number[] { let flips: number[] = []; // Return empty if tile doesn't contain flip flags. - if (!this.isFlipped(tile)) return flips; + if (!this.map.isFlipped(tile)) return flips; if (tile.v) flips.push(TileFlip.Vertical); if (tile.d) flips.push(TileFlip.Diagonal); @@ -416,13 +530,4 @@ export default class Canvas extends Renderer { for (let context in this.drawingContexts) callback(this.drawingContexts[context] as CanvasRenderingContext2D); } - - /** - * Iterates through each of the animated tiles. - * @param callback Returns the tile object for that animated tile. - */ - - private forEachAnimatedTile(callback: (tile: Tile) => void): void { - for (let tile in this.animatedTiles) callback(this.animatedTiles[tile]); - } } diff --git a/packages/client/src/renderer/infos/countdown.ts b/packages/client/src/renderer/infos/countdown.ts deleted file mode 100644 index eb7f586858..0000000000 --- a/packages/client/src/renderer/infos/countdown.ts +++ /dev/null @@ -1,45 +0,0 @@ -export default class Countdown { - public string: string | null = null; - - private time = Date.now(); - private lastTime = 0; - private updateTime = 1000; // Update every second. - - private destroyCallback?(id: string): void; - - public constructor(public id: string) {} - - private tick(): void { - if (this.time < 1) return; - - // Originally was gonna do this in the renderer - // But it's best to update the string here. - - this.string = this.getStringFormat(); - - this.time--; - } - - public update(time: number): void { - if (time - this.lastTime > this.updateTime) this.lastTime = time; - } - - private getStringFormat(): string { - if (this.time < 60) return `00:${this.time}`; - - let minutes = Math.floor(this.time / 60), - seconds = this.time - minutes * 60; - - if (minutes < 10) return `0${minutes}:${seconds}`; - - return `${minutes}:${seconds}`; - } - - private destroy(): void { - this.destroyCallback?.(this.id); - } - - public onDestroy(callback: (id: string) => void): void { - this.destroyCallback = callback; - } -} diff --git a/packages/client/src/renderer/infos/splat.ts b/packages/client/src/renderer/infos/splat.ts index f139786471..246b69a9c7 100644 --- a/packages/client/src/renderer/infos/splat.ts +++ b/packages/client/src/renderer/infos/splat.ts @@ -1,4 +1,5 @@ import { Modules } from '@kaetram/common/network'; +import { Hits } from '@kaetram/common/network/modules'; interface Colour { fill: string; @@ -12,18 +13,19 @@ interface Colours { export default class Splat { public opacity = 1; + public skillKey = ''; - private text: string; - private prefix: string; - private suffix: string; - private lastTime: number; - private speed: number; - private updateY: number; - private duration: number; - private colour: Colour; + private text = ''; + private prefix = ''; + private suffix = ''; + private lastTime = 0; + private speed = 100; + private updateY = 1; + private duration = 1000; + private colour: Colour = Modules.DamageColours[Hits.Normal]; - public fill: string; - public stroke: string; + public fill = 'rgb(255, 50, 50)'; + public stroke = 'rgb(255, 180, 180)'; private destroyCallback?: (id: string) => void; @@ -34,21 +36,24 @@ export default class Splat { public x: number, public y: number, isTarget = false, - skill = -1 + skill = -1, + public skills: string[] = [] ) { this.text = `${value}`; - this.prefix = ''; - this.suffix = ''; - this.lastTime = 0; - this.speed = 100; this.updateY = this.isHeal() ? 2 : 1; this.duration = this.isHeal() ? 400 : 1000; - this.colour = (Modules.DamageColours as Colours)[type]; + this.colour = (Modules.DamageColours as Colours)[type] || this.colour; - if (skill > -1) this.colour = (Modules.SkillExpColours as Colours)[skill]; + if (skill > -1) { + this.colour = (Modules.SkillExpColours as Colours)[skill]; + this.skillKey = `skills/${Modules.Skills[skill].toLowerCase()}`; + } + + // Prefix the skills sprite folder so we can load the icon. + for (let i = 0; i < skills.length; i++) skills[i] = `skills/${skills[i]}`; - this.fill = this.colour.fill; - this.stroke = this.colour.stroke; + this.fill = this.colour?.fill || this.fill; + this.stroke = this.colour?.stroke || this.stroke; if (isTarget && this.hasInflicted()) { this.fill = this.colour.inflicted!.fill; @@ -56,7 +61,10 @@ export default class Splat { } // Text gets marked as MISS if this is a damage type and the value is 0. - if (this.isDamage() && value < 1) this.text = 'MISS'; + if (this.isDamage() && value < 1) { + this.text = 'MISS'; + this.skills = []; // Don't render any skills if the hit is a miss. + } if (this.isPoison() || this.isFreezing()) this.prefix = '--'; if (this.isPoints()) this.prefix = '++'; diff --git a/packages/client/src/renderer/minigame.ts b/packages/client/src/renderer/minigame.ts index 33e7a2542d..08fe8935c0 100644 --- a/packages/client/src/renderer/minigame.ts +++ b/packages/client/src/renderer/minigame.ts @@ -1,14 +1,23 @@ /** * Represents the default class for minigame status. It's used by the game world - * to update the player's status in the minigame. + * to update the player's status in the minigame. This is altered in accordance + * to the minigame the player is in. */ +import { Opcodes } from '@kaetram/common/network'; + import type { Status } from '@kaetram/common/api/minigame'; +import type { MinigamePacketData } from '@kaetram/common/types/messages/outgoing'; export default class Minigame { + // Coursing score variables. + public score = 0; + // TeamWar score variables. public redTeamScore = 0; public blueTeamScore = 0; + + // Generic minigame variables. public started = false; /** @@ -16,7 +25,11 @@ export default class Minigame { * @param status Whether the player is in-game or in the lobby. * @param countdown Lobby/in-game countdown timer updated from the server. */ - public constructor(public type = -1, public status: Status = 'exit', public countdown = 180) {} + public constructor( + public type = -1, + public status: Status = 'exit', + public countdown = 180 + ) {} /** * Resets the minigame status to default. @@ -43,9 +56,19 @@ export default class Minigame { * @param blueTeam New blue team score. */ - public setScore(redTeam: number, blueTeam: number): void { - this.redTeamScore = redTeam; - this.blueTeamScore = blueTeam; + public setScore(info: MinigamePacketData): void { + switch (this.type) { + case Opcodes.Minigame.TeamWar: { + this.redTeamScore = info.redTeamKills || -1; + this.blueTeamScore = info.blueTeamKills || -1; + return; + } + + case Opcodes.Minigame.Coursing: { + this.score = info.score || -1; + return; + } + } } /** diff --git a/packages/client/src/renderer/pointers/arrow.ts b/packages/client/src/renderer/pointers/arrow.ts index d0dad2a7f9..ca9ad19a76 100644 --- a/packages/client/src/renderer/pointers/arrow.ts +++ b/packages/client/src/renderer/pointers/arrow.ts @@ -1,33 +1,40 @@ -import { Opcodes } from '@kaetram/common/network'; +import Utils from '../../utils/util'; + +import type { Opcodes } from '@kaetram/common/network'; export default class Arrow { + // Hardcoded value representing the width of the arrow element divided by 2. + public offsetWidth = 36; + public x = -1; public y = -1; - private blinkInterval!: number; + public element: HTMLElement = document.createElement('div'); + + private blinkInterval = -1; private visible = true; public constructor( - public id: string, - public element: HTMLElement, - public type: Opcodes.Pointer + public type: Opcodes.Pointer, + public instance: string ) { - this.load(); - } + // Apply the correct class name to the element. + this.element.classList.add('pointer'); - private load(): void { + // Blink interval essentially hides and shows the arrow every 600ms. this.blinkInterval = window.setInterval(() => { - if (this.visible) this.hide(); - else this.show(); + if (this.visible) Utils.fadeOut(this.element); + else Utils.fadeIn(this.element); this.visible = !this.visible; }, 600); } - /**e - * Sets the coordinates of the pointer. - * @param x Sets the x position of the pointer (relative or absolute). - * @param y Sets the y position of the pointer (relative or absolute). + /** + * Sets the arrow's position on the screen. The position corresponds to the + * absolute x and y coordinate (not the grid position) in the game. + * @param x The x coordinate. + * @param y The y coordinate. */ public setPosition(x: number, y: number): void { @@ -42,25 +49,18 @@ export default class Arrow { public destroy(): void { clearInterval(this.blinkInterval); - if (this.type === Opcodes.Pointer.Button) this.hide(); - else this.element.remove(); - } - - /** - * Displays the pointer object. - */ - - private show(): void { - if (this.type === Opcodes.Pointer.Button) this.element.classList.add('active'); - else this.element.style.display = 'block'; + this.element.remove(); } /** - * Hides the current pointer. + * Resets all the styles for the arrow element. */ - private hide(): void { - if (this.type === Opcodes.Pointer.Button) this.element.classList.remove('active'); - else this.element.style.display = 'none'; + public reset(): void { + this.element.style.top = ''; + this.element.style.left = ''; + this.element.style.right = ''; + this.element.style.bottom = ''; + this.element.style.transform = ''; } } diff --git a/packages/client/src/renderer/renderer.ts b/packages/client/src/renderer/renderer.ts index ff943b8974..87bcb12e1c 100644 --- a/packages/client/src/renderer/renderer.ts +++ b/packages/client/src/renderer/renderer.ts @@ -1,37 +1,55 @@ +import { DEFAULT_ZOOM } from './camera'; + import Utils from '../utils/util'; import Character from '../entity/character/character'; import { isMobile, isTablet } from '../utils/detect'; -import { Modules } from '@kaetram/common/network'; +import { Modules, Opcodes } from '@kaetram/common/network'; import { DarkMask, Vec2, Lamp, Lighting } from 'illuminated'; +import type Minigame from './minigame'; import type Equipment from '../entity/character/player/equipment'; import type Game from '../game'; import type Map from '../map/map'; +import type Canvas from './canvas'; import type Camera from './camera'; import type Splat from './infos/splat'; +import type WebGL from './webgl/webgl'; import type Entity from '../entity/entity'; import type Sprite from '../entity/sprite'; import type Item from '../entity/objects/item'; import type Player from '../entity/character/player/player'; -import type { SerializedLight } from '@kaetram/common/types/light'; -import type { RegionTile, RotatedTile } from '@kaetram/common/types/map'; +import type Tree from '../entity/objects/resource/impl/tree'; +import type Grids from '../map/grids'; +import type { LampData } from '@kaetram/common/types/item'; +import type { ClientTile } from '@kaetram/common/types/map'; +import type { SerializedLight } from '@kaetram/common/network/impl/overlay'; + +interface Light extends Lamp { + originalX: number; + originalY: number; + originalDistance: number; + + scaledDistance: number; + scaledFlickerIntensity: number; + + gridX: number; + gridY: number; + + offset: number; -interface RendererLight { - origX: number; - origY: number; - diff: number; relative: boolean; - computed: boolean; -} + entity?: string; -type RendererLamp = RendererLight & Lamp; + flickerSpeed: number; + flickerIntensity: number; +} -export type ContextType = '2d' | 'webgl'; -export interface RendererLighting extends RendererLight, Lighting { - light: RendererLamp; +export interface RendererLighting extends Lighting { + light: Light; } +export type ContextType = '2d' | 'webgl'; export type ContextCallback = (context: CanvasRenderingContext2D) => void; export default class Renderer { @@ -40,7 +58,9 @@ export default class Renderer { protected overlay = document.querySelector('#overlay')!; protected textCanvas = document.querySelector('#text-canvas')!; protected entities = document.querySelector('#entities')!; + protected entitiesFore = document.querySelector('#entities-fore')!; protected cursor = document.querySelector('#cursor')!; + protected entitiesMask = document.querySelector('#entities-mask')!; // Store all canvases for easy iteration protected canvases: HTMLCanvasElement[] = [ @@ -49,35 +69,49 @@ export default class Renderer { this.overlay, this.textCanvas, this.entities, - this.cursor + this.entitiesFore, + this.cursor, + this.entitiesMask ]; // Create the contexts based on the canvases. protected entitiesContext: CanvasRenderingContext2D = this.entities.getContext('2d')!; + protected entitiesForeContext: CanvasRenderingContext2D = this.entitiesFore.getContext('2d')!; protected overlayContext: CanvasRenderingContext2D = this.overlay.getContext('2d')!; protected textContext: CanvasRenderingContext2D = this.textCanvas.getContext('2d')!; protected cursorContext: CanvasRenderingContext2D = this.cursor.getContext('2d')!; + protected entitiesMaskContext: CanvasRenderingContext2D = this.entitiesMask.getContext('2d')!; protected allContexts = [ this.entitiesContext, + this.entitiesForeContext, + this.entitiesMaskContext, this.overlayContext, this.textContext, this.cursorContext ]; // We split contexts into two arrays, one for tilemap rendering and one for the rest. - protected contexts = [this.entitiesContext, this.textContext, this.overlayContext]; + protected contexts = [ + this.entitiesContext, + this.entitiesForeContext, + this.entitiesMaskContext, + this.textContext, + this.overlayContext + ]; // Zooming buttons private zoomIn: HTMLElement = document.querySelector('#zoom-in')!; private zoomOut: HTMLElement = document.querySelector('#zoom-out')!; - protected map: Map; - protected camera: Camera; + public map: Map; + public camera: Camera; + public grids: Grids; // Variables used for calculating multiple things public tileSize = Utils.tileSize; public actualTileSize = Utils.tileSize; + public ceilActualTileSize = Utils.tileSize; // Screen dimensions public screenWidth = 0; @@ -92,7 +126,7 @@ export default class Renderer { private renderedFrame: number[] = []; // Lighting - protected lightings: RendererLighting[] = []; + protected lightings: { [instance: string]: RendererLighting } = {}; protected darkMask: DarkMask = new DarkMask({ lights: [], color: 'rgba(0, 0, 0, 0.84)' @@ -106,47 +140,41 @@ export default class Renderer { public drawLevels = true; // Default values - public fontSize = 10; + public fontSize = 12; + public strokeSize = 4; // Detect functions public mobile = isMobile(); public tablet = isTablet(); - // FPS variables + // FPS variables` protected time = Date.now(); protected fps = 0; protected frameCount = 0; - // Static sprites - protected shadowSprite!: Sprite; - protected sparksSprite!: Sprite; - protected silverMedal!: Sprite; - protected goldMedal!: Sprite; - protected crownArtist!: Sprite; - protected crownTier1!: Sprite; - protected crownTier2!: Sprite; - protected crownTier3!: Sprite; - protected crownTier4!: Sprite; - protected crownTier5!: Sprite; - protected crownTier6!: Sprite; - protected crownTier7!: Sprite; - - public constructor(protected game: Game, public type = 'canvas') { + public constructor( + protected game: Game, + public type = 'canvas' + ) { this.map = game.map; this.camera = game.camera; + this.grids = game.map.grids; this.tileSize = game.map.tileSize; this.actualTileSize = this.tileSize * this.camera.zoomFactor; + this.ceilActualTileSize = Math.ceil(this.actualTileSize); // Load the sizes of the canvases this.loadSizes(); - // Load the static sprites - this.loadStaticSprites(); - // Event listeners for zooming in and out this.zoomIn.addEventListener('click', () => this.game.zoom(0.2)); this.zoomOut.addEventListener('click', () => this.game.zoom(-0.2)); + + this.camera.onZoom(() => { + this.fontSize = Math.floor(12 + this.camera.zoomFactor * 3); + this.strokeSize = Math.floor(this.fontSize / 6); + }); } /** @@ -168,6 +196,7 @@ export default class Renderer { private loadSizes(): void { // Actual tile size is the tile size times the zoom factor. this.actualTileSize = this.tileSize * this.camera.zoomFactor; + this.ceilActualTileSize = Math.ceil(this.actualTileSize); // Screen width in pixels is the amount of grid spaces times the tile size. this.screenWidth = this.camera.gridWidth * this.tileSize; @@ -177,70 +206,17 @@ export default class Renderer { this.canvasWidth = this.screenWidth * this.camera.zoomFactor; this.canvasHeight = this.screenHeight * this.camera.zoomFactor; - // Update the dark mask sizes - this.darkMask.compute(this.canvasWidth, this.canvasHeight); - // Iterate through the canvases and apply the new size. this.forEachCanvas((canvas: HTMLCanvasElement) => { canvas.width = this.canvasWidth; canvas.height = this.canvasHeight; }); - } - - /** - * Loads statically used sprites that are only necessary - * in the renderer. The shadow gets displayed under each - * entity, and the sparks are displayed around items. - */ - - public loadStaticSprites(): void { - this.shadowSprite = this.game.sprites.get('shadow16')!; - - if (!this.shadowSprite.loaded) this.shadowSprite.load(); - - this.sparksSprite = this.game.sprites.get('sparks')!; - if (!this.sparksSprite.loaded) this.sparksSprite.load(); - - this.silverMedal = this.game.sprites.get('crowns/silvermedal')!; - - if (!this.silverMedal.loaded) this.silverMedal.load(); - - this.goldMedal = this.game.sprites.get('crowns/goldmedal')!; - - if (!this.goldMedal.loaded) this.goldMedal.load(); - - this.crownArtist = this.game.sprites.get('crowns/artist')!; - - if (!this.crownArtist.loaded) this.crownArtist.load(); - - this.crownTier1 = this.game.sprites.get('crowns/tier1')!; - - if (!this.crownTier1.loaded) this.crownTier1.load(); - - this.crownTier2 = this.game.sprites.get('crowns/tier2')!; - - if (!this.crownTier2.loaded) this.crownTier2.load(); - - this.crownTier3 = this.game.sprites.get('crowns/tier3')!; - - if (!this.crownTier3.loaded) this.crownTier3.load(); - - this.crownTier4 = this.game.sprites.get('crowns/tier4')!; - - if (!this.crownTier4.loaded) this.crownTier4.load(); - - this.crownTier5 = this.game.sprites.get('crowns/tier5')!; - - if (!this.crownTier5.loaded) this.crownTier5.load(); - - this.crownTier6 = this.game.sprites.get('crowns/tier6')!; - - if (!this.crownTier6.loaded) this.crownTier6.load(); - - this.crownTier7 = this.game.sprites.get('crowns/tier7')!; + // Clear the default canvas anti-alias smoothing. + this.removeSmoothing(); - if (!this.crownTier7.loaded) this.crownTier7.load(); + // Remove the player's light source and re-add it. + this.resizeLights(); } /** @@ -282,8 +258,6 @@ export default class Renderer { this.clear(); this.save(); - this.removeSmoothing(); - this.drawDebugging(); this.drawOverlays(); @@ -324,7 +298,7 @@ export default class Renderer { } /** - * Overlays are images drawn on top of the game. They are generally + * Overlays are images drawn on top of the game. They aFOvre generally * used in conjunction with the lighting system to give a shadow * effect or dark room effect. When overlays are present, the light * system is enabled. @@ -342,12 +316,12 @@ export default class Renderer { this.overlayContext.globalCompositeOperation = 'lighter'; // Draw each lighting - this.forEachLighting((lighting) => { - if (this.inRadius(lighting)) this.drawLighting(lighting); - }); + this.forEachLighting((lighting: RendererLighting) => this.drawLighting(lighting)); // Essentially makes the overlay be drawn on top of everything. this.overlayContext.globalCompositeOperation = 'source-over'; + + this.darkMask.compute(this.overlay.width, this.overlay.height); this.darkMask.render(this.overlayContext); } @@ -360,18 +334,22 @@ export default class Renderer { private drawHoveringCell(): void { if (this.mobile) return; - let { input } = this.game, - location = input.getCoords(); + let location = this.game.input.getCoords(); - if (this.isSelectedCell(location.gridX, location.gridY)) return; + if (!this.game.input.isOnCanvas || this.isSelectedCell(location.gridX, location.gridY)) + return; - let isColliding = this.map.isColliding(location.gridX, location.gridY); + let colour = this.game.input.targetColour, + isObject = this.map.isObject(location.gridX, location.gridY); - this.drawCellHighlight( - location.gridX, - location.gridY, - isColliding ? 'rgba(230, 0, 0, 0.7)' : input.targetColour - ); + // Update the colour for the cell highlight if it's an object. + if (isObject) colour = 'rgba(245, 230, 66, 0.5)'; + + // Colliding map cells are highlighted in red. + if (this.map.isColliding(location.gridX, location.gridY) && !isObject) + colour = 'rgba(230, 0, 0, 0.7)'; + + this.drawCellHighlight(location.gridX, location.gridY, colour); } /** @@ -417,13 +395,23 @@ export default class Renderer { if (this.game.player.dead) return; this.setCameraView(this.entitiesContext); + this.setCameraView(this.entitiesForeContext); this.forEachVisibleEntity((entity: Entity) => { - // Skip entities that aren't properly loaded or are invisible. + // Check that the entity is loaded, has an animation, and is visible. if (!entity.sprite?.loaded || !entity.animation || !entity.isVisible()) return; + // Draw the entity's debugging information if debugging is enabled. + if (this.debugging) this.drawEntityBoundary(entity); + + // Handle tree drawing as separate from other entities. + if (entity.isTree()) return this.drawTree(entity as Tree); + this.drawEntity(entity); }); + + //this.entitiesMaskContext.globalAlpha = 0.2; + this.entitiesMaskContext.drawImage(this.entities, 0, 0); } /** @@ -439,20 +427,65 @@ export default class Renderer { this.game.info.forEachInfo((info: Splat) => { this.textContext.save(); this.textContext.globalAlpha = info.opacity; - this.drawText( - `${info.getText()}`, - Math.floor(info.x + 8), - Math.floor(info.y), - true, - info.fill, - info.stroke, - 26, - true - ); + + let { x, y, fill, skillKey, skills, stroke } = info, + hasSkill = skillKey || skills.length > 0; + + x += 8; + + if (hasSkill) { + this.setCameraView(this.textContext); + + let skillX = ~~((x - 2) * this.camera.zoomFactor); + + x = ~~(x * this.camera.zoomFactor); + y = ~~(y * this.camera.zoomFactor); + + if (skillKey) this.drawInfoSkill(skillKey, skillX, y); + else + for (let i = 0; i < skills.length; i++) + this.drawInfoSkill(skills[i], skillX, y, i, skills.length); + } + + this.drawText(`${info.getText()}`, x, y, true, !hasSkill, fill, stroke, 32); this.textContext.restore(); }); } + /** + * Draws a little skill icon above the info splats displayed when the + * player gains some experience. + * @param skill The skill that we are drawing the icon for. + * @param x The x coordinate of the skill. + * @param y The y coordinate of the skill. + * @param index Optional parameter for displaying multiple skills, indicates the currently iterated skill. + * @param total Optional parameter for displaying multiple skills, indicates the total amount of skills. + */ + + private drawInfoSkill(skill: string, x: number, y: number, index = 0, total = 0): void { + let sprite = this.game.sprites.get(skill); + + if (!sprite) return; + + if (!sprite.loaded) sprite.load(); + + // Draw the multiple skin icons in a row. + if (total === 2) + if (index === 0) x -= sprite.width; + else x += sprite.width / 1.5; + else if (total === 3) + if (index === 0) x -= sprite.width * 2; + else if (index === 2) x += sprite.width * 2; + + this.textContext.drawImage( + sprite.image, + x + sprite.offsetX, + y + sprite.offsetY * 4, + sprite.width * 2, + sprite.height * 2 + ); + } + /** * Draws the cursor at the coordinates extracted from the input * controller. The mouse coordinates represent the absolute position @@ -496,7 +529,11 @@ export default class Renderer { private drawFPS(): void { this.calculateFPS(); - this.drawText(`[${this.type}] FPS: ${this.fps}`, 10, 61, false, 'white'); + this.drawText( + `[${this.type}, cw: ${this.camera.gridWidth}, ch: ${this.camera.gridHeight}] FPS: ${this.fps}`, + 50, + 180 + ); } /** @@ -537,28 +574,25 @@ export default class Renderer { player.gridX, player.gridY )} movementSpeed: ${player.movementSpeed}`, - 10, - 81, - false, - 'white' + 50, + 240 ); - this.drawText(`zoomFactor: ${this.camera.zoomFactor}`, 10, 141, false, 'white'); + this.drawText(`zoomFactor: ${this.camera.zoomFactor}`, 50, 420); + this.drawText(`actulTileSize: ${this.actualTileSize}`, 50, 480); // Draw information about the entity we're hovering over. if (input.hovering && input.entity) { // Draw the entity's grid coordinates and tile index. this.drawText( `x: ${input.entity.gridX} y: ${input.entity.gridY} instance: ${input.entity.instance}`, - 10, - 101, - false, - 'white' + 50, + 300 ); // Draw the entity's attack range. if (input.entity.attackRange) - this.drawText(`att range: ${input.entity.attackRange}`, 10, 121, false, 'white'); + this.drawText(`att range: ${input.entity.attackRange}`, 50, 360); } } @@ -580,6 +614,37 @@ export default class Renderer { }); } + /** + * Draws the boundary area around an entity. This is a circle that represents + * the interaction area of the entity when using a mouse or tapping on/near it. + * @param entity The entity we are drawing the bounding circle for. + */ + + private drawEntityBoundary(entity: Entity): void { + this.entitiesContext.save(); + //this.setCameraView(this.entitiesContext); + + this.entitiesContext.lineWidth = 2 * this.camera.zoomFactor; + + let boundingBox = entity.getBoundingBox(); + + this.entitiesContext.translate( + (boundingBox.x + boundingBox.width / 2) * this.camera.zoomFactor, + (boundingBox.y + boundingBox.height / 2) * this.camera.zoomFactor + ); + + this.entitiesContext.strokeStyle = 'rgba(255, 50, 50, 0.4)'; + + let smallest = + entity.sprite.width < entity.sprite.height ? entity.sprite.width : entity.sprite.height; + + this.entitiesContext.beginPath(); + this.entitiesContext.arc(0, 0, (smallest / 2) * this.camera.zoomFactor, 0, 2 * Math.PI); + this.entitiesContext.stroke(); + + this.entitiesContext.restore(); + } + /** * Draws the currently calculated path that the player will * be taking. Highlights the upcoming tile cells in the path. @@ -599,72 +664,140 @@ export default class Renderer { private drawEntity(entity: Entity): void { let frame = entity.animation?.frame, - dx = entity.x * this.camera.zoomFactor, - dy = entity.y * this.camera.zoomFactor, + dx = ~~(entity.x * this.camera.zoomFactor), + dy = ~~(entity.y * this.camera.zoomFactor), flipX = dx + this.actualTileSize, - flipY = dy + entity.sprite.height; + flipY = dy + entity.sprite.height, + context = + entity.isNonTreeResource() && this.game.player.gridY < entity.gridY + ? this.entitiesForeContext + : this.entitiesContext; - this.entitiesContext.save(); - - if (entity.angled && !entity.isProjectile()) entity.angle *= Math.PI / 180; + context.save(); // Update the entity fading onto the context. - if (entity.fading) this.entitiesContext.globalAlpha = entity.fadingAlpha; + if (entity.fading) context.globalAlpha = entity.fadingAlpha; // Handle flipping since we use the same sprite for right/left. if (entity.spriteFlipX) { - this.entitiesContext.translate(flipX, dy); - this.entitiesContext.scale(-1, 1); + context.translate(flipX, dy); + context.scale(-1, 1); } else if (entity.spriteFlipY) { - this.entitiesContext.translate(dx, flipY); - this.entitiesContext.scale(1, -1); - } else this.entitiesContext.translate(dx, dy); + context.translate(dx, flipY); + context.scale(1, -1); + } else context.translate(dx, dy); // Scale the entity to the current zoom factor. - this.entitiesContext.scale(this.camera.zoomFactor, this.camera.zoomFactor); + context.scale(this.camera.zoomFactor, this.camera.zoomFactor); // Scale the entity again if it has a custom scaling associated with it. - if (entity.customScale) this.entitiesContext.scale(entity.customScale, entity.customScale); + if (entity.customScale) context.scale(entity.customScale, entity.customScale); // Rotate using the entity's angle. - if (entity.angled) this.entitiesContext.rotate(entity.getAngle()); + if (entity.angle !== 0) context.rotate(entity.angle); // Draw the entity shadowf if (entity.hasShadow()) { - this.entitiesContext.globalCompositeOperation = 'source-over'; + let shadowSprite = this.game.sprites.get('shadow')!; - this.entitiesContext.drawImage( - this.shadowSprite.image, + context.drawImage( + shadowSprite.image, 0, 0, - this.shadowSprite.width, - this.shadowSprite.height, + shadowSprite.width, + shadowSprite.height, 0, entity.shadowOffsetY, - this.shadowSprite.width, - this.shadowSprite.height + shadowSprite.width, + shadowSprite.height ); } - this.entitiesContext.drawImage( - entity.sprite.image, + context.drawImage( + entity.getSprite().image, frame!.x, frame!.y, entity.sprite.width, entity.sprite.height, entity.sprite.offsetX, - entity.sprite.offsetY, + entity.sprite.offsetY + entity.offsetY, entity.sprite.width, entity.sprite.height ); this.drawEntityFore(entity); - this.entitiesContext.restore(); + context.restore(); this.drawHealth(entity as Character); - if (!this.game.overlays.hasOverlay()) this.drawName(entity as Player & Item); + if (!entity.isPlayer() && !entity.isMob() && !entity.isNPC() && !entity.isItem()) return; + + if (!this.game.overlays.hasOverlay()) + if (this.game.player.instance === entity.instance && this.camera.isCentered()) + this.drawPlayerName(entity as Player); + else this.drawName(entity as Character & Item); + } + + /** + * We use a separate function for rendering trees since we need to do a bit more magic. Trees + * require their stumps be rendered below the player, and their leaves be rendered above the + * player. Both renderings are done on the same entities fore context, however the trick is to + * use globalCompositeOperation to render the leaves on top of the player, and the stumps + * below the player. + * @param entity The tree entity that we are drawing. + */ + + private drawTree(entity: Tree): void { + // We extract the normal animation frames about the tree. + let frame = entity.animation?.frame, + baseFrame = entity.exhausted ? entity.exhaustedFrame : entity.baseFrame, // use stump if cut + dx = ~~(entity.x * this.camera.zoomFactor), + dy = ~~(entity.y * this.camera.zoomFactor); + + this.entitiesForeContext.save(); + this.entitiesContext.save(); + + // Translate the context to the tree's position. + this.entitiesForeContext.translate(dx, dy); + this.entitiesContext.translate(dx, dy); + + // Scale relative to the camera zoom factor. + this.entitiesForeContext.scale(this.camera.zoomFactor, this.camera.zoomFactor); + this.entitiesContext.scale(this.camera.zoomFactor, this.camera.zoomFactor); + + // Draw the top part of the tree if the tree is not cut. + if (!entity.exhausted) + this.entitiesForeContext.drawImage( + entity.getSprite().image, + frame!.x, + frame!.y, + entity.sprite.width, + entity.sprite.height, + entity.sprite.offsetX, + entity.sprite.offsetY + entity.offsetY, + entity.sprite.width, + entity.sprite.height + ); + + // Set the global composite operation to destination over. + this.entitiesContext.globalCompositeOperation = 'destination-over'; + + // Draw the bottom part of the tree. + this.entitiesContext.drawImage( + entity.getSprite().image, + baseFrame.x, + baseFrame.y, + entity.sprite.width, + entity.sprite.height, + entity.sprite.offsetX, + entity.sprite.offsetY + entity.offsetY, + entity.sprite.width, + entity.sprite.height + ); + + this.entitiesForeContext.restore(); + this.entitiesContext.restore(); } /** @@ -677,6 +810,10 @@ export default class Renderer { private drawEntityFore(entity: Entity): void { if (entity.isItem()) return this.drawSparks(); + // Draw the exclamations if the entity has them. + if (entity.exclamation) this.drawExclamation(); + if (entity.blueExclamation) this.drawBlueExclamation(); + if (!(entity instanceof Character)) return; // Iterate through the drawable equipments and draw them. @@ -707,6 +844,9 @@ export default class Renderer { if (!sprite.loaded) sprite.load(); + // Do not render until the image is ready. + if (!sprite.image) return; + this.drawSprite(player, sprite); } @@ -718,8 +858,12 @@ export default class Renderer { private drawSprite(character: Character, sprite: Sprite): void { let animation = character.animation!, - animationData = sprite.animations[animation.name], - { frame, row } = animation, + animationData = sprite.animations[animation.name]; + + // May occur when the death sprite is being animated. + if (!animationData) return; + + let { frame, row } = animation, index = frame.index < animationData.length ? frame.index @@ -787,49 +931,120 @@ export default class Renderer { } /** - * Draws the sprites sparks on top of items - * to give them the sparkle effect. + * Draws the static sparks sprite that are displayed on top of an + * item entity. */ private drawSparks(): void { - let { sparksAnimation } = this.game.entities.sprites, - sparksFrame = sparksAnimation.frame; + let sparksSprite = this.game.sprites.get('sparks')!, + animation = sparksSprite.animations.idle_down; + + this.entitiesContext.drawImage( + sparksSprite.image, + sparksSprite.width * animation.frame.index, + sparksSprite.height * animation.row, + sparksSprite.width, + sparksSprite.height, + 0, + 0, + sparksSprite.width, + sparksSprite.height + ); + } + + /** + * Draws the exclamation animation that is drawn above NPCs. + */ + + private drawExclamation(): void { + let sprite = this.game.sprites.get('exclamation')!, + animation = sprite.animations.idle_down; this.entitiesContext.drawImage( - this.sparksSprite.image, - this.sparksSprite.width * sparksFrame.index, - this.sparksSprite.height * sparksAnimation.row, - this.sparksSprite.width, - this.sparksSprite.height, + sprite.image, + sprite.width * animation.frame.index, + sprite.height * animation.row, + sprite.width, + sprite.height, 0, + sprite.offsetY, + sprite.width, + sprite.height + ); + } + + /** + * Draws the blue exclamation animation that is drawn above NPCs. + */ + + private drawBlueExclamation(): void { + let sprite = this.game.sprites.get('exclamationblue')!, + animation = sprite.animations.idle_down; + + this.entitiesContext.drawImage( + sprite.image, + sprite.width * animation.frame.index, + sprite.height * animation.row, + sprite.width, + sprite.height, 0, - this.sparksSprite.width, - this.sparksSprite.height + sprite.offsetY, + sprite.width, + sprite.height ); } /** - * Draws a special medal above the player's name. - * @param key The key of the medal we are drawing. + * Draws a special crown above the player's name. + * @param key The key of the crown we are drawing. * @param x The x coordinate on the screen we are drawing at. * @param y The y coordinate on the screen we are drawing at. */ - private drawMedal(key: string, x: number, y: number): void { - let medal = this.getMedal(key); + private drawCrown(key: string, x: number, y: number): void { + let crown = this.getCrown(key); + + if (!crown) return; + + this.setCameraView(this.textContext); + + this.textContext.drawImage( + crown.image, + 0, + 0, + crown.width, + crown.height, + x * this.camera.zoomFactor - crown.width, + y * this.camera.zoomFactor - crown.height * 3, + crown.width * 2, + crown.height * 2 + ); + + this.textContext.restore(); + } + + /** + * Handles drawing the crown for the currently active player. We follow a similar logic + * to how we draw player name and level, and we draw it relative to the middle of the + * screen. + * @param key The key of the crown we want to draw. + */ + + private drawPlayerCrown(key: string): void { + let crown = this.getCrown(key); - if (!medal) return; + if (!crown) return; this.textContext.drawImage( - medal.image, + crown.image, 0, 0, - medal.width, - medal.height, - (x - 5) * this.camera.zoomFactor, - (y - 17) * this.camera.zoomFactor, - medal.width * 2, - medal.height * 2 + crown.width, + crown.height, + this.camera.borderOffsetWidth / 2 - crown.width + 8 * this.camera.zoomFactor, + this.camera.borderOffsetHeight / 2 - crown.height * 3 - 24 * this.camera.zoomFactor, + crown.width * 2, + crown.height * 2 ); } @@ -844,8 +1059,10 @@ export default class Renderer { let barLength = this.tileSize, healthX = entity.x * this.camera.zoomFactor - barLength / 2 + 8, healthY = (entity.y - entity.sprite.height / 4) * this.camera.zoomFactor, - healthWidth = Math.round( - (entity.hitPoints / entity.maxHitPoints) * barLength * this.camera.zoomFactor + healthWidth = ~~( + (entity.hitPoints / entity.maxHitPoints) * + barLength * + this.camera.zoomFactor ), healthHeight = 2 * this.camera.zoomFactor; @@ -870,30 +1087,43 @@ export default class Renderer { * @param entity The entity we're drawing the name for. */ - private drawName(entity: Character & Item): void { - if (entity.isPet()) return; - + private drawName(entity: Character | Item): void { let x = entity.x + 8, // Default offsets - y = entity.y - 10, - colour = 'white', - stroke = 'rgba(0, 0, 0, 1)', - fontSize = 11; + y = entity.y - 5, + colour = 'white'; // Handle the counter if an entity has one. if (entity.hasCounter()) - return this.drawText(`${entity.counter}`, x, y, true, colour, stroke, fontSize, true); + return this.drawText(`${entity.counter}`, x, y, true, true, colour); // Handle the item amount if the entity is an item. if (entity.isItem() && entity.count > 1) - return this.drawText(`${entity.count}`, x, y, true, colour, stroke, fontSize, true); - - if (entity.hidden || entity.healthBarVisible || !(entity instanceof Character)) return; - - let drawNames = this.drawNames && entity.drawNames(), - nameY = this.drawLevels ? y - 7 : y - 4, + return this.drawText(`${entity.count}`, x, y, true, true, colour); + + if ( + entity.hidden || + entity.healthBarVisible || + entity.exclamation || + entity.blueExclamation + ) + return; + + let drawNames = this.drawNames && entity.drawNames() && !entity.isItem(), + drawLevels = this.drawLevels && !entity.isNPC() && !entity.isItem(), + nameY = this.drawLevels ? y - 10 : y - 4, levelY = this.drawLevels ? y : y - 7, levelText = `Level ${entity.level}`; + // NPCs will have their name displayed closer to their sprite. + if (entity.isNPC()) nameY = y - 2; + + // Handle additional player rank and crown logic. + if (entity.isPlayer()) { + if (entity.hasRank()) colour = Modules.RankColours[entity.rank]; + + if (drawNames && entity.hasCrown()) this.drawCrown(entity.getCrownKey(), x, nameY); + } + // If there's a rank aside from default then we use that rank's colour. if (entity.isPlayer() && entity.rank !== Modules.Ranks.None) colour = Modules.RankColours[entity.rank]; @@ -905,76 +1135,172 @@ export default class Renderer { if (entity.nameColour) colour = entity.nameColour; // Draw the name if we're drawing names. - if (drawNames) this.drawText(entity.name, x, nameY, true, colour, stroke, fontSize, true); + if (drawNames) this.drawText(entity.name, x, nameY, true, true, colour); // Draw the level if we're drawing levels. - if (this.drawLevels) - this.drawText(levelText, x, levelY, true, colour, stroke, fontSize, true); + if (drawLevels && entity.level) this.drawText(levelText, x, levelY, true, true, colour); + } + + /** + * Handles an optimized way of drawing the player's name. Since it's always centred with + * the player, we can just draw the text statically right in the middle when using centred + * camera. + */ + + private drawPlayerName(entity: Player): void { + let nameOffset = this.drawLevels ? 22 : 10; + + if (this.drawNames) { + this.drawText( + entity.name, + this.camera.borderOffsetWidth / 2 + 8 * this.camera.zoomFactor, + this.camera.borderOffsetHeight / 2 - nameOffset * this.camera.zoomFactor, + true, + false, + 'rgba(252,218,92, 1)' + ); + + if (entity.hasCrown()) this.drawPlayerCrown(entity.getCrownKey()); + } + + if (this.drawLevels && entity.level) + this.drawText( + `Level ${entity.level}`, + this.camera.borderOffsetWidth / 2 + 8 * this.camera.zoomFactor, + this.camera.borderOffsetHeight / 2 - 10 * this.camera.zoomFactor, + true, + false, + 'rgba(252,218,92, 1)' + ); } + /** + * Responsible for drawing the appropriate GUI for the minigame that + * the player is currently in. We use the minigame's type to determine + * what GUI to draw. + */ + private drawMinigameGUI(): void { if (!this.game.minigame.exists()) return; - switch (this.game.minigame.status) { + switch (this.game.minigame.type) { + case Opcodes.Minigame.TeamWar: { + return this.drawTeamWarGUI(this.game.minigame); + } + + case Opcodes.Minigame.Coursing: { + return this.drawCoursingGUI(this.game.minigame); + } + } + } + + /** + * Draws the team war minigame GUI. This consists of the score board + * or the countdown timer depending on the status of the minigame. + * @param minigame The minigame class from which we are extracting the data. + */ + + private drawTeamWarGUI(minigame: Minigame): void { + let { status, started, countdown, redTeamScore, blueTeamScore } = minigame, + scoreX = this.textCanvas.width / 6; + + switch (status) { case 'lobby': { this.drawText( - this.game.minigame.started - ? `There is a game in progress: ${this.game.minigame.countdown} seconds` - : `Game starts in ${this.game.minigame.countdown} seconds`, - this.textCanvas.width / 6, + started + ? `There is a game in progress, remaining time: ${countdown} seconds` + : `Game starts in ${countdown} seconds`, + scoreX, 30, - true, - 'white' + true ); return; } case 'ingame': { - this.drawText( - `Red: ${this.game.minigame.redTeamScore}`, - this.textCanvas.width / 6 - 20, - 30, - true, - 'red' - ); + this.drawText(`Red: ${redTeamScore}`, scoreX - 20, 30, true, false, 'red'); + this.drawText(`Blue: ${blueTeamScore}`, scoreX + 20, 30, true, false, 'blue'); + this.drawText(`Time left: ${countdown} seconds`, scoreX, 50, true, false, 'white'); + return; + } + } + } - this.drawText( - `Blue: ${this.game.minigame.blueTeamScore}`, - this.textCanvas.width / 6 + 20, - 30, - true, - 'blue' - ); + /** + * Draws the coursing GUI. The score is different for every player, so we + * are constantly updating it with the data we receive from the server. + * @param minigame Contains the minigame data. + */ + private drawCoursingGUI(minigame: Minigame): void { + let { status, started, countdown, score } = minigame, + scoreX = this.textCanvas.width / 6; + + switch (status) { + case 'lobby': { this.drawText( - `Time left: ${this.game.minigame.countdown} seconds`, - this.textCanvas.width / 6, - 50, - true, - 'white' + started + ? `There is a game in progress, remaining time: ${countdown} seconds` + : `Game starts in ${countdown} seconds`, + scoreX, + 30 ); + return; + } + case 'ingame': { + this.drawText(`Score: ${score}`, scoreX, 30, true); return; } } } + /** + * Handles drawing the lighting for a given lighting object. We essentially have two + * different kinds of lights, entity based and relative ones. By default lights which + * do not have an entity are relative to the player. In the case of entity-based ones + * they follow the entity they belong to. Otherwise they stay in the same position + * on the map (even after moving the camera). + * @param lighting The lighting object that contains the lamp we are drawing. + */ + protected drawLighting(lighting: RendererLighting): void { - if (lighting.relative) { - let lightX = - (lighting.light.origX - this.camera.x / this.tileSize) * this.actualTileSize, - lightY = - (lighting.light.origY - this.camera.y / this.tileSize) * this.actualTileSize; - - lighting.light.position = new Vec2(lightX, lightY); - lighting.compute(this.canvasWidth, this.canvasHeight); - this.darkMask.compute(this.canvasWidth, this.canvasHeight); - } else if (!lighting.computed) { - lighting.compute(this.canvasWidth, this.canvasHeight); - lighting.computed = true; + let { light } = lighting; + + // Handle drawing the light where the entity is. + if (light.entity) { + // Use our own player if the instance of the light's entity matches our own. + let isPlayer = light.entity === this.game.player.instance, + entity: Player = isPlayer ? this.game.player : this.game.entities.get(light.entity); + + // Hide the light if there is light source from the entity. + light.hidden = !entity?.hasLight(); + + if (light.hidden) return; + + // If the entity has a light source and it's not our own player, check its visibility. + if (!isPlayer) light.hidden = !this.camera.isVisible(entity.gridX, entity.gridY, 4, 8); + + // Stop here if the light is hidden. + if (light.hidden) return; + + light.position = this.getLightPosition(entity.x, entity.y); + } else { + light.hidden = !this.camera.isVisible(light.gridX, light.gridY, 4, 8); + + if (light.hidden) return; + + let lightX = (light.originalX - this.camera.x) * this.camera.zoomFactor, + lightY = (light.originalY - this.camera.y) * this.camera.zoomFactor; + + light.position = new Vec2(lightX, lightY); } - lighting.render(this.overlayContext); + // // Don't do any fancy lighting if we're in low power mode. + // if (this.game.isLowPowerMode()) return; + + // lighting.compute(this.overlay.width, this.overlay.height); + // lighting.render(this.overlayContext); } // -------------- Drawing Methods -------------- @@ -1017,6 +1343,7 @@ export default class Renderer { * @param x The x coordinate of the text. * @param y The y coordinate of the text. * @param centered Whether or not we want the text to be centered. + * @param setViews Whether or not we want to set the camera view. * @param colour The colour of the text in rgba format. * @param strokeColour The colour of the stroke in rgba format. * @param fontSize (Optional) The font size of the text. @@ -1026,28 +1353,28 @@ export default class Renderer { text: string, x: number, y: number, - centered: boolean, - colour: string, - strokeColour?: string, - fontSize: number = this.fontSize, - setViews = false + centered = false, + setViews = false, + colour = 'white', + strokeColour = 'rgba(0, 0, 0, 1)', + fontSize: number = this.fontSize ): void { - let strokeSize = 3; - this.textContext.save(); if (centered) this.textContext.textAlign = 'center'; - if (setViews) this.setCameraView(this.textContext); + if (setViews) { + this.setCameraView(this.textContext); - // Decrease font size relative to zoom out. - fontSize += this.camera.zoomFactor * 2; + x = ~~(x * this.camera.zoomFactor); + y = ~~(y * this.camera.zoomFactor); + } - this.textContext.strokeStyle = strokeColour || 'rgba(55, 55, 55, 1)'; - this.textContext.lineWidth = strokeSize; - this.textContext.font = `${fontSize}px AdvoCut`; - this.textContext.strokeText(text, x * this.camera.zoomFactor, y * this.camera.zoomFactor); + this.textContext.strokeStyle = strokeColour; + this.textContext.lineWidth = this.strokeSize; + this.textContext.font = `${fontSize}px Quaver`; + this.textContext.strokeText(text, x, y); this.textContext.fillStyle = colour || 'white'; - this.textContext.fillText(text, x * this.camera.zoomFactor, y * this.camera.zoomFactor); + this.textContext.fillText(text, x, y); this.textContext.restore(); } @@ -1062,68 +1389,141 @@ export default class Renderer { public updateDarkMask(color = 'rgba(0, 0, 0, 0.5)'): void { this.darkMask.color = color; - this.darkMask.compute(this.canvasWidth, this.canvasHeight); } /** - * Adds a new light to the rendering screen. + * Creates a new light element using the provided data about its position, distance + * and colour. We then add it to our lightings array and draw it on the overlay. * @param info Contains information about the light we are adding. + * @param relative Whether or not the light stays in a single position in the world. + * @param flicker Whether or not the light should flicker. */ - public addLight(info: SerializedLight): void { - let light = new Lamp( + public addLight(info: SerializedLight): RendererLighting | undefined { + // Prevent adding lighting if it already exists. + if (info.instance in this.lightings) return; + + // Create the new lighting object and lamp with the provided data. + let lighting = new Lighting({ + light: new Lamp( this.getLightData(info.x, info.y, info.distance, info.diffuse, info.colour) - ) as RendererLamp, - lighting = new Lighting({ - light - // diffuse: light.diffuse - }) as RendererLighting; + ) + }) as RendererLighting; + + // Store the grid position of the light (used for camera calculations). + lighting.light.gridX = info.x; + lighting.light.gridY = info.y; - light.origX = light.position.x; - light.origY = light.position.y; + // Store the offset of the light (used for flicker calculations). + lighting.light.offset = Utils.randomInt(0, 1000); - light.diff = Math.round(light.distance / this.tileSize); + // Store the absolute position of the light. + lighting.light.originalX = lighting.light.position.x; + lighting.light.originalY = lighting.light.position.y; + lighting.light.originalDistance = lighting.light.distance; - if (this.hasLighting(lighting)) return; + // Whether the light is bound to an entity + lighting.light.entity = info.entity; - lighting.relative = true; + lighting.light.flickerSpeed = info.flickerSpeed; + lighting.light.flickerIntensity = info.flickerIntensity; - this.lightings.push(lighting); - this.darkMask.lights.push(light); + // Add the lighting to our dictionary and the dark mask dictionary. + this.lightings[info.instance] = lighting; + this.darkMask.lights.push(lighting.light); - this.drawLighting(lighting); - this.darkMask.compute(this.canvasWidth, this.canvasHeight); + return lighting; } - public removeAllLights(): void { - this.lightings = []; - this.darkMask.lights = []; + /** + * Adds a light to a player entity in the world. This can be our own player if we + * do not specify another object, or it can be another player which has a light source. + * @param player The player we want to add a light to, defaults to our own player. + */ + + public addPlayerLight(player: Player = this.game.player): void { + let light = player.getLight(), + x = this.overlay.width / this.tileSize / 2, + y = this.overlay.height / this.tileSize / 2; + + // Handle the outer light if it exists. + if (light.outer) this.addLight(this.getSerializedLight(player.instance, x, y, light.outer)); - this.darkMask.compute(this.canvasWidth, this.canvasHeight); + // Handle the inner light if it exists. + if (light.inner) + this.addLight(this.getSerializedLight(`${player.instance}inner`, x, y, light.inner)); } - public removeNonRelativeLights(): void { - for (let i in this.lightings) - if (!this.lightings[i].light.relative) { - let index = parseInt(i); + /** + * Responsible for synchronizing the player lighting with the latest + * information from the player's light equipment. + * @param player The player we want to update the light for, if not specified + * then we assume it's our own player. + */ - this.lightings.splice(index, 1); - this.darkMask.lights.splice(index, 1); - } + public updatePlayerLight(player: Player = this.game.player): void { + let light = player.getLight(), + outer = this.lightings[player.instance], + inner = this.lightings[`${player.instance}inner`]; + + // No light exists for the player, so we add it. + if (player.hasLight() && (!outer || !inner)) this.addPlayerLight(player); + + // Update the outer light if it exists. + if (outer && light.outer) { + outer.light.distance = light.outer.distance; + outer.light.originalDistance = light.outer.distance; - this.darkMask.compute(this.canvasWidth, this.canvasHeight); + outer.light.color = light.outer.colour; + + outer.light.flickerSpeed = light.outer.flickerSpeed; + outer.light.flickerIntensity = light.outer.flickerIntensity; + } + + // Update the inner light if it exists. + if (inner && light.inner) { + inner.light.distance = light.inner.distance; + inner.light.originalDistance = light.inner.distance; + + inner.light.color = light.inner.colour; + + inner.light.flickerSpeed = light.inner.flickerSpeed; + inner.light.flickerIntensity = light.inner.flickerIntensity; + } + + this.resizeLights(); } - private hasLighting(lighting: RendererLighting): boolean { - for (let { light } of this.lightings) - if ( - lighting.light.origX === light.origX && - lighting.light.origY === light.origY && - lighting.light.distance === light.distance - ) - return true; + /** + * Goes through every light in the renderer and resizes it relative + * to the proportion of the zoom factor versus the default zoom. + */ + + public resizeLights(): void { + let scale = this.camera.zoomFactor / DEFAULT_ZOOM; + + this.forEachLighting((lighting: RendererLighting) => { + lighting.light.distance = lighting.light.originalDistance * scale; - return false; + // Store the scaled distance as a reference. + lighting.light.scaledDistance = lighting.light.distance; + + // Store the scaled flicker intensity as a reference for calculating scaled flicker. + lighting.light.scaledFlickerIntensity = lighting.light.flickerIntensity * scale; + }); + } + + /** + * Removes all the lightings and lamps from the renderer and recomputes the dark mask. + * We re-add the player light since it gets toggled depending on the player has a torch + * or not. + */ + + public removeAllLights(): void { + this.lightings = {}; + this.darkMask.lights = []; + + this.addPlayerLight(); } /** @@ -1133,9 +1533,7 @@ export default class Renderer { */ protected hasRenderedFrame(): boolean { - if (this.forceRendering || !this.isLowPowerMode()) return false; - - if (this.stopRendering) return true; + if (this.forceRendering) return false; return this.renderedFrame[0] === this.camera.x && this.renderedFrame[1] === this.camera.y; } @@ -1186,8 +1584,6 @@ export default class Renderer { */ protected saveFrame(): void { - if (!this.isLowPowerMode()) return; - this.renderedFrame[0] = this.camera.x; this.renderedFrame[1] = this.camera.y; @@ -1228,8 +1624,8 @@ export default class Renderer { if (!this.camera || this.stopRendering) return; context.translate( - -this.camera.x * this.camera.zoomFactor, - -this.camera.y * this.camera.zoomFactor + ~~(-this.camera.x * this.camera.zoomFactor), + ~~(-this.camera.y * this.camera.zoomFactor) ); } @@ -1242,47 +1638,80 @@ export default class Renderer { } /** - * Checks whether a light source is in the radius of the camera. - * @param lighting The light source we are checking for. - * @returns Whether or not the light source is in the camera radius. + * Calculates the light's position on the screen given an entity's position. This + * is used when our player character moves or when the light belongs to another entity. + * @param x The absolute x position of the entity. + * @param y The absolute y position of the entity. + * @returns A position object of where the light should be on the screen. */ - private inRadius(lighting: RendererLighting): boolean { - let position = { - x: lighting.light.origX, - y: lighting.light.origY, - diff: lighting.light.diff - }; - - return ( - position.x > this.camera.gridX - position.diff && - position.x < this.camera.gridX + this.camera.gridWidth + position.diff && - position.y > this.camera.gridY - position.diff && - position.y < this.camera.gridY + this.camera.gridHeight + position.diff + private getLightPosition(x: number, y: number): Vec2 { + return new Vec2( + (x - this.camera.x) * this.camera.zoomFactor + this.actualTileSize / 2, + (y - this.camera.y) * this.camera.zoomFactor ); } /** - * A flipped tile is any tile that contains a flip - * flag or transpose flag. - * @param tileInfo Tile data received from the server. - * @returns Whether or not the tile contains and flip flags. + * Creates a partial lamp object given the specified data. + * @param x The x grid position of the light. + * @param y The y grid position of the light. + * @param distance How far the light can reach. + * @param diffuse How much the light can diffuse. + * @param color The color of the light. + * @returns A partial lamp object. */ - protected isFlipped(tileInfo: RotatedTile): boolean { - if (!tileInfo) return false; - - return tileInfo.v || tileInfo.h || tileInfo.d; + private getLightData( + x: number, + y: number, + distance: number, + diffuse: number, + color: string + ): Partial { + return { + position: new Vec2( + x * this.tileSize + this.tileSize / 2, + y * this.tileSize + this.tileSize / 2 + ), + distance, + diffuse, + color, + radius: 0, + samples: 2, + roughness: 0, + angle: 0 + }; } /** - * Low power mode is activated when both the camera centration and - * animated tiles are turned off. This is for devices that cannot - * sustain the constant re-drawing of the frame every second. + * Given a lamp data object (generally from a player's weapon), we generate + * a serialized light object that can be used to render the light onto the + * screen. + * @param instance Who this light source belongs to. + * @param x The x grid position of the light. + * @param y The y grid position of the light. + * @param lamp Contains the lamp data from which we generate the light. + * @returns A serialized light object. */ - protected isLowPowerMode(): boolean { - return !this.camera.isCentered() && !this.animateTiles; + private getSerializedLight( + instance: string, + x: number, + y: number, + lamp: LampData + ): SerializedLight { + return { + instance, + x, + y, + distance: lamp.distance, + diffuse: 0.2, + colour: lamp.colour, + entity: instance.includes('inner') ? instance.split('inner')[0] : instance, + flickerSpeed: lamp.flickerSpeed, + flickerIntensity: lamp.flickerIntensity + }; } /** @@ -1303,109 +1732,70 @@ export default class Renderer { * @returns Whether the current rendering engine is WebGL. */ - public isWebGl(): boolean { + public isWebGl(): this is WebGL { return this.type === 'webgl'; } /** - * Given a key we return the sprite associated with the medal. - * @param key The key of the medal. + * @returns Whether or not the current rendering engine is Canvas. + */ + + public isCanvas(): this is Canvas { + return this.type === 'canvas'; + } + + /** + * Given a key we return the sprite associated with the crown. + * @param key The key of the crown. * @returns A sprite element or undefined if the key is invalid. */ - protected getMedal(key: string): Sprite | undefined { + protected getCrown(key: string): Sprite | undefined { switch (key) { case 'goldmedal': { - return this.goldMedal; + return this.game.sprites.get('crowns/goldmedal'); } case 'silvermedal': { - return this.silverMedal; + return this.game.sprites.get('crowns/silvermedal'); } case 'crown-artist': { - return this.crownArtist; + return this.game.sprites.get('crowns/artist'); } case 'crown-tier1': { - return this.crownTier1; + return this.game.sprites.get('crowns/tier1'); } case 'crown-tier2': { - return this.crownTier2; + return this.game.sprites.get('crowns/tier2'); } case 'crown-tier3': { - return this.crownTier3; + return this.game.sprites.get('crowns/tier3'); } case 'crown-tier4': { - return this.crownTier4; + return this.game.sprites.get('crowns/tier4'); } case 'crown-tier5': { - return this.crownTier5; + return this.game.sprites.get('crowns/tier5'); } case 'crown-tier6': { - return this.crownTier6; + return this.game.sprites.get('crowns/tier6'); } case 'crown-tier7': { - return this.crownTier7; + return this.game.sprites.get('crowns/tier7'); } } } - /** - * Creates a partial lamp object given the specified data. - * @param x The x grid position of the light. - * @param y The y grid position of the light. - * @param distance How far the light can reach. - * @param diffuse How much the light can diffuse. - * @param color The color of the light. - * @returns A partial lamp object. - */ - - private getLightData( - x: number, - y: number, - distance: number, - diffuse: number, - color: string - ): Partial { - return { - position: new Vec2(x, y), - distance, - diffuse, - color, - radius: 0, - samples: 2, - roughness: 0, - angle: 0 - }; - } - // -------------- Update functions -------------- - /** - * Superclass implementation for updating animated tiles. These are - * implemented by the Canvas2D rendering engine to update the - * animated tiles currently within the player's field of vision. - */ - - public updateAnimatedTiles(): void { - // - } - - /** - * Superclass implementation for resetting the animated tiles. - */ - - public resetAnimatedTiles(): void { - // - } - /** * Superclass implementation for updating the tile at a specified * index. This is implemented by the WebGL renderer to update the @@ -1414,7 +1804,7 @@ export default class Renderer { * @param data The data with which to update the tile. */ - public setTile(_index: number, _data: RegionTile): void { + public setTile(_index: number, _data: ClientTile): void { // unimplemented } @@ -1435,32 +1825,9 @@ export default class Renderer { * @param offset How much to look outside the boundaries of the map. */ - protected forEachVisibleIndex(callback: (index: number) => void, offset?: number): void { + protected forEachVisibleIndex(callback: (index: number) => void, offset = 0): void { this.camera.forEachVisiblePosition((x, y) => { - if (!this.map.isOutOfBounds(x, y)) callback(this.map.coordToIndex(x, y)); - }, offset); - } - - /** - * Iterates through all the indexes and extracts the tile data at that - * specified index by iterating through each tile array (if present) or - * returning the tile data from the map. - * @param callback Returns a region tile object containing rendering information - * such as tileId, x, y, and flip flags. The index is the positioning in the map. - * @param offset How much to look outside the visible camera proportions. - */ - - protected forEachVisibleTile( - callback: (data: RegionTile, index: number) => void, - offset?: number - ): void { - if (!this.map?.mapLoaded) return; - - this.forEachVisibleIndex((index) => { - let indexData = this.map.data[index]; - - if (Array.isArray(indexData)) for (let data of indexData) callback(data, index); - else if (this.map.data[index]) callback(this.map.data[index], index); + callback(this.map.coordToIndex(x, y)); }, offset); } @@ -1471,12 +1838,14 @@ export default class Renderer { */ protected forEachVisibleEntity(callback: (entity: Entity) => void): void { - let { grids } = this.game.entities; - - this.camera.forEachVisiblePosition((x, y) => { - if (!this.map.isOutOfBounds(x, y) && grids.renderingGrid[y][x]) - for (let entity of Object.values(grids.renderingGrid[y][x])) callback(entity); - }); + this.camera.forEachVisiblePosition( + (x, y) => { + for (let entity in this.grids.renderingGrid[y][x]) + callback(this.grids.renderingGrid[y][x][entity]); + }, + 3, + 6 + ); } /** @@ -1484,7 +1853,7 @@ export default class Renderer { * @param callback The light currently being iterated. */ - private forEachLighting(callback: (lighting: RendererLighting) => void): void { + public forEachLighting(callback: (lighting: RendererLighting) => void): void { for (let lighting in this.lightings) callback(this.lightings[lighting]); } diff --git a/packages/client/src/renderer/tile.ts b/packages/client/src/renderer/tile.ts deleted file mode 100644 index 0a01cb63fc..0000000000 --- a/packages/client/src/renderer/tile.ts +++ /dev/null @@ -1,40 +0,0 @@ -import type { ProcessedAnimation } from '@kaetram/common/types/map'; - -export default class Tile { - public animationIndex = 0; - - // WebGL rendering functions. - public uploaded = true; - - private lastTime = 0; - - public constructor( - public id: number, // The tileId - public index: number, // Index position of the tile. - public animationInfo: ProcessedAnimation[], - public isFlipped = false, - public isHighTile = false - ) {} - - /** - * Animates a tile when the time elapsed since the last update is - * greater than the duration of the animation. We change the tileId - * when this update occurs and increment the animationIndex. Once - * we exhaust all the animations in the tile, we reset the animationIndex. - * @param time The current time in milliseconds (sent from the client updater). - */ - - public animate(time: number): void { - if (time - this.lastTime > this.animationInfo[this.animationIndex].duration) { - this.id = this.animationInfo[this.animationIndex].tileId; - - this.lastTime = time; - - this.uploaded = false; - - if (this.animationIndex >= Object.keys(this.animationInfo).length - 1) - this.animationIndex = 0; - else this.animationIndex++; - } - } -} diff --git a/packages/client/src/renderer/updater.ts b/packages/client/src/renderer/updater.ts index f17c977eaa..486eb8cda2 100644 --- a/packages/client/src/renderer/updater.ts +++ b/packages/client/src/renderer/updater.ts @@ -4,10 +4,10 @@ import Projectile from '../entity/objects/projectile'; import { Modules } from '@kaetram/common/network'; import type Game from '../game'; -import type Canvas from './canvas'; import type Renderer from './renderer'; import type Entity from '../entity/entity'; import type SpritesController from '../controllers/sprites'; +import type { RendererLighting } from './renderer'; export default class Updater { private tileSize: number; @@ -33,6 +33,7 @@ export default class Updater { this.updateBubbles(); this.updateSounds(); this.updateAnimatedTiles(); + this.updateLights(); } /** @@ -50,11 +51,11 @@ export default class Updater { entity.animation?.update(this.game.time); // Handle projectile instances separately. - if (entity instanceof Projectile) { + if (entity.isProjectile()) { let mDistance = entity.speed * entity.getTimeDiff(), dx = entity.target.x - entity.x, // delta x current position to target dy = entity.target.y - entity.y, // delta y current position to target - tDistance = Math.sqrt(dx * dx + dy * dy), // pythagorean theorem uwu + tDistance = Math.hypot(dx, dy), // pythagorean theorem uwu amount = mDistance / tDistance; // Always angle the projectile towards the target. @@ -66,7 +67,7 @@ export default class Updater { entity.x += dx * amount; entity.y += dy * amount; - if (tDistance < 5) entity.impact(); + if (tDistance < 5) entity.impactCallback?.(); entity.lastUpdate = this.game.time; @@ -192,11 +193,9 @@ export default class Updater { if (target && this.game.input.selectedCellVisible) target.update(this.game.time); - if (!this.sprites) return; - - let sparks = this.sprites.sparksAnimation; - - sparks?.update(this.game.time); + // Iterate through the preloaded animation sprites and update them. + for (let animation of this.sprites?.preloadedAnimations || []) + animation.update(this.game.time); } /** @@ -227,7 +226,10 @@ export default class Updater { } /** - * Updates the animated tiles present in the renderer. + * Responsible for iterating through the tile ids of all animated tiles + * and updating their animation. Whenever a tile has not been drawn for + * a certain amount of time it is marked as unused and removed from the + * renderer. */ private updateAnimatedTiles(): void { @@ -237,10 +239,44 @@ export default class Updater { * Canvas2D rendering. We also disable animated tiles if the renderer * says so. */ - if (this.renderer.isWebGl() || !this.renderer.animateTiles) return; + if (!this.renderer.isCanvas() || !this.renderer.animateTiles) return; // Update the animated tiles. - for (let index in (this.renderer as Canvas).animatedTiles) - (this.renderer as Canvas).animatedTiles[index].animate(this.game.time); + for (let identifier in this.renderer.animatedTiles) { + let tile = this.renderer.animatedTiles[identifier]; + + // Update the tile's frame to the postAnimationData if it is expired. + if (tile.expired) this.game.map.data[tile.index] = tile.postAnimationData!; + + // Delete the tile and continue if it's unused or expired. + if (tile.unused || tile.expired) { + delete this.renderer.animatedTiles[identifier]; + delete this.renderer.animatedTileIndexes[identifier]; + + continue; + } + + tile.animate(this.game.time); + } + } + + /** + * Goes through each light source and flickers the light + * to give the effect of a candle or torch. We essentially + * just change the light's radius by a small amount. + */ + + private updateLights(): void { + this.renderer.forEachLighting((lighting: RendererLighting) => { + let { light } = lighting; + + // -1 intensity means that the light doesn't flicker. + if (light.flickerIntensity < 0) return; + + light.distance = + light.scaledDistance + + Math.sin((this.game.time + light.offset) / light.flickerSpeed) * + light.scaledFlickerIntensity; + }); } } diff --git a/packages/client/src/renderer/webgl/layer.ts b/packages/client/src/renderer/webgl/layer.ts index c96b435ba9..711ed895a1 100644 --- a/packages/client/src/renderer/webgl/layer.ts +++ b/packages/client/src/renderer/webgl/layer.ts @@ -1,7 +1,8 @@ -import Tile from '../tile'; +import Tile from '../../map/tile'; +import type WebGL from './webgl'; import type Map from '../../map/map'; -import type { RotatedTile } from '@kaetram/common/types/map'; +import type { TransformedTile } from '@kaetram/common/types/map'; /** * A layer is a class object that corresponds with a layer in the map data. This is used to @@ -22,6 +23,8 @@ interface AnimatedTiles { } export default class Layer { + private map: Map; + /** * The background texture is for the normal tiles that are rendered on top of each other. * The foreground layer are tiles that are rendered on top of the background layer and that @@ -40,7 +43,9 @@ export default class Layer { // Animated tiles pertaining to this layer. private animatedTiles: AnimatedTiles = {}; - public constructor(private map: Map) { + public constructor(private renderer: WebGL) { + this.map = renderer.map; + this.backgroundData = new Uint8Array(this.map.width * this.map.height * 4); this.foregroundData = new Uint8Array(this.map.width * this.map.height * 4); @@ -145,9 +150,9 @@ export default class Layer { * @param foreground Whether we want to add the tile to the foreground or background texture data. */ - public addTile(index: number, tile: number | RotatedTile, flipped = false): void { + public addTile(index: number, tile: number | TransformedTile, flipped = false): void { // Grab the index in the respective texture data array. - let tileId = flipped ? (tile as RotatedTile).tileId : (tile as number), + let tileId = flipped ? (tile as TransformedTile).tileId : (tile as number), isHighTile = this.map.isHighTile(tileId), textureData = isHighTile ? this.foregroundData : this.backgroundData, dataIndex = index * 4; @@ -168,14 +173,14 @@ export default class Layer { // If the tileset is invalid, then we just return. if (!tileset) return; - let relativeId = tileId - tileset.firstGid - 1, + let relativeId = tileId - tileset.firstGid, tilesWidth = tileset.width / this.map.tileSize; // Write the texture information to the texture data array. textureData[dataIndex] = relativeId % tilesWidth; // tile's x coordinate in the tileset - textureData[dataIndex + 1] = Math.floor(relativeId / tilesWidth); // tile's y coordinate in the tileset + textureData[dataIndex + 1] = ~~(relativeId / tilesWidth); // tile's y coordinate in the tileset textureData[dataIndex + 2] = tileset.index; // tileset index - textureData[dataIndex + 3] = flipped ? this.getFlippedFlag(tile as RotatedTile) : 0; // tile flags + textureData[dataIndex + 3] = flipped ? this.getFlippedFlag(tile as TransformedTile) : 0; // tile flags // Skip if the tile is already animated. if (index in this.animatedTiles) return; @@ -187,7 +192,8 @@ export default class Layer { index, this.map.getTileAnimation(tileId), flipped, - isHighTile + isHighTile, + this.map.dynamicAnimatedTiles[index] ); } @@ -230,6 +236,17 @@ export default class Layer { // Update using the current game tick. tile.animate(time); + // An expired tile is replaced with the post animation tile. + if (tile.expired) { + // We ask the renderer to re-set the tile with the post animation data. + this.renderer.setTile(tile.index, tile.postAnimationData!); + + delete this.animatedTiles[index]; + + continue; + } + + // Upload indicates that the tile is ready to be reloaded into the texture data. if (!tile.uploaded) { // We update the tile in the texture data. this.addTile(tile.index, tile.id + 1, tile.isFlipped); @@ -252,11 +269,11 @@ export default class Layer { * @returns The bit flag after applying all transformations. */ - private getFlippedFlag(tile: RotatedTile): number { + private getFlippedFlag(tile: TransformedTile): number { return ( - (tile.h ? FlipFlags.FlippedHorizontal >> 28 : 0) | - (tile.v ? FlipFlags.FlippedVertical >> 28 : 0) | - (tile.d ? FlipFlags.FlippedAntiDiagonal >> 28 : 0) + (tile.h ? (FlipFlags.FlippedHorizontal as number) >> 28 : 0) | + (tile.v ? (FlipFlags.FlippedVertical as number) >> 28 : 0) | + (tile.d ? (FlipFlags.FlippedAntiDiagonal as number) >> 28 : 0) ); } } diff --git a/packages/client/src/renderer/webgl/tileset.ts b/packages/client/src/renderer/webgl/tileset.ts index 2d6f0165eb..cb1845d0ec 100644 --- a/packages/client/src/renderer/webgl/tileset.ts +++ b/packages/client/src/renderer/webgl/tileset.ts @@ -10,7 +10,10 @@ import type Map from '../../map/map'; export default class Tileset { public textures: WebGLTexture[] = []; - public constructor(private map: Map, private context: WebGLRenderingContext) { + public constructor( + private map: Map, + private context: WebGLRenderingContext + ) { // Create the textures for each tileset. for (let tileset of this.map.tilesets) this.createTexture(tileset); } diff --git a/packages/client/src/renderer/webgl/webgl.ts b/packages/client/src/renderer/webgl/webgl.ts index 182d328968..899a1f9fcb 100644 --- a/packages/client/src/renderer/webgl/webgl.ts +++ b/packages/client/src/renderer/webgl/webgl.ts @@ -7,7 +7,7 @@ import LayerVertex from '../shaders/layer.vert'; import LayerFragment from '../shaders/layer.frag'; import type Game from '../../game'; -import type { RegionTile, RotatedTile } from '@kaetram/common/types/map'; +import type { ClientTile, TransformedTile } from '@kaetram/common/types/map'; /** * Huge thanks to the developer of `gl-tiled` for the point of reference in @@ -50,12 +50,7 @@ export default class WebGL extends Renderer { private quadVertices = new Float32Array([ //x y u v // eslint-disable-next-line prettier/prettier - -1, -1, 0, 1, - 1, -1, 1, 1, - 1, 1, 1, 0, - -1, -1, 0, 1, - 1, 1, 1, 0, - -1, 1, 0, 0, + -1, -1, 0, 1, 1, -1, 1, 1, 1, 1, 1, 0, -1, -1, 0, 1, 1, 1, 1, 0, -1, 1, 0, 0 ]); private attributeIndices = { @@ -153,7 +148,7 @@ export default class WebGL extends Renderer { * @param data The data we want to update the tile with, may be an array or a number. */ - public override setTile(index: number, data: RegionTile): void { + public override setTile(index: number, data: ClientTile): void { // Clear all the tiles of every layer at the specified index. this.clearTile(index); @@ -161,7 +156,7 @@ export default class WebGL extends Renderer { if (!Array.isArray(data)) return this.addTile(index, data); // If we find an array tile then we need to iterate through the array and pass the data to the layers. - for (let tileIndex in data) this.addTile(index, data[tileIndex], parseInt(tileIndex)); + for (let tileIndex in data) this.addTile(index, data[tileIndex], ~~tileIndex); } /** @@ -243,7 +238,7 @@ export default class WebGL extends Renderer { let viewPort = new Float32Array([this.screenWidth, this.screenHeight]), shader = this.getShader(context); - context.viewport(0, 0, context.canvas.width, context.canvas.height); + context.viewport(0, 0, context.drawingBufferWidth, context.drawingBufferHeight); context.uniform2fv(shader.uniforms.uViewportSize, viewPort); context.uniform1f(shader.uniforms.uInverseTileScale, 1 / this.camera.zoomFactor); @@ -268,7 +263,7 @@ export default class WebGL extends Renderer { private draw(x = this.camera.x, y = this.camera.y): void { // Used for low power mode - if (this.hasRenderedFrame()) return; + if (this.hasRenderedFrame() && (this.game.isLowPowerMode() || this.mobile)) return; // Iterate through the drawing contexts and apply the necessary transformations/attributes. this.forEachDrawingContext((context: WebGLRenderingContext) => { @@ -319,7 +314,7 @@ export default class WebGL extends Renderer { * obstruct certain foreground elements (tree shadows). */ - context.uniform1f(shader.uniforms.uAlpha, isBackground ? 1 : 2); + context.uniform1f(shader.uniforms.uAlpha, isBackground ? 1 : 1.5); context.uniform1i(shader.uniforms.uRepeatTiles, 1); context.uniform2fv(shader.uniforms.uInverseLayerTileCount, this.inverseTileCount); @@ -327,7 +322,7 @@ export default class WebGL extends Renderer { // Do the actual drawing. for (let layer of this.layers) - layer.draw(context, this.game.time, !isBackground, this.isLowPowerMode()); + layer.draw(context, this.game.time, !isBackground, this.game.isLowPowerMode()); }); this.saveFrame(); @@ -342,10 +337,10 @@ export default class WebGL extends Renderer { * @param layerIndex Which layer index we are drawing to. */ - private addTile(index: number, tile: number | RotatedTile, layerIndex = 0): void { - if (!this.layers[layerIndex]) this.layers[layerIndex] = new Layer(this.map); + private addTile(index: number, tile: number | TransformedTile, layerIndex = 0): void { + if (!this.layers[layerIndex]) this.layers[layerIndex] = new Layer(this); - this.layers[layerIndex].addTile(index, tile, this.isFlipped(tile as RotatedTile)); + this.layers[layerIndex].addTile(index, tile, this.map.isFlipped(tile)); } /** diff --git a/packages/client/reset/reset.ts b/packages/client/src/reset.ts similarity index 97% rename from packages/client/reset/reset.ts rename to packages/client/src/reset.ts index c0c3a6ab24..f6d76be779 100644 --- a/packages/client/reset/reset.ts +++ b/packages/client/src/reset.ts @@ -1,7 +1,7 @@ -import '../scss/main.scss'; +import './lib/sentry'; export default class Main { - private config = window.config; + private config = globalConfig; private parameters: URLSearchParams = new URLSearchParams(window.location.search); @@ -138,4 +138,4 @@ export default class Main { } } -new Main(); +window.addEventListener('load', () => new Main()); diff --git a/packages/client/src/utils/detect.ts b/packages/client/src/utils/detect.ts index defbfdc6e5..a53f9e1ccd 100644 --- a/packages/client/src/utils/detect.ts +++ b/packages/client/src/utils/detect.ts @@ -8,14 +8,14 @@ export let isSafari = (): boolean => agent.includes('safari') && !agent.includes export let isEdge = (): boolean => agent.includes('edge/'); -export function isTablet(): boolean { - let isAppleTablet = agent.includes('ipad'), - isAndroidTablet = agent.includes('android'); +export let isIos = (): boolean => agent.includes('iphone') || agent.includes('ipad'); - return (isAppleTablet || isAndroidTablet) && window.innerWidth >= 640; -} +export let isMobile = (): boolean => + agent.includes('android') || agent.includes('iphone') || agent.includes('ipad'); + +export let isTablet = () => isMobile() && window.innerWidth >= 640; -export let isMobile = (): boolean => window.innerWidth < 1000; +export let isMacintoshFirefox = (): boolean => agent.includes('mac') && agent.includes('firefox'); export function iOSVersion(): number | undefined { let match = /os (\d+)_(\d+)_?(\d+?)/.exec(agent); diff --git a/packages/client/src/utils/press.ts b/packages/client/src/utils/press.ts index cea14b9afa..a4a76a6058 100644 --- a/packages/client/src/utils/press.ts +++ b/packages/client/src/utils/press.ts @@ -1,6 +1,6 @@ let holdTimeout: number | undefined; -// A touch is considered a hold if it lasts longer than 200ms. +// A touch is considered a hold if it lasts longer than 300ms. const HOLD_TIME = 200; /** @@ -139,7 +139,7 @@ export function onDragDrop( // When the user stops holding the item, drop the item. function endHold(x: number, y: number) { // If the user is not holding the item, cancel the hold. - if (!isHolding) return; + if (!isHolding) return cancelHold(); // Save the clone element in a variable. let clone = dragClone; @@ -166,6 +166,6 @@ export function onDragDrop( dragClone = undefined; // Remove the focused class from the item element. - element.classList.remove('item-slot-focused'); + element.classList.remove('active'); } } diff --git a/packages/client/src/utils/storage.ts b/packages/client/src/utils/storage.ts index 4c088e675f..72b6a98da7 100644 --- a/packages/client/src/utils/storage.ts +++ b/packages/client/src/utils/storage.ts @@ -1,4 +1,4 @@ -import { isMobile } from './detect'; +import { isIos, isMobile } from './detect'; import log from '../lib/log'; @@ -22,11 +22,13 @@ interface Settings { brightness: number; audioEnabled: boolean; lowPowerMode: boolean; + joyStickEnabled: boolean; debugMode: boolean; showNames: boolean; showLevels: boolean; disableCaching: boolean; webgl: boolean; + fpsThrottle: number; } interface RegionMapData { @@ -72,8 +74,8 @@ export default class Storage { private create(): StorageData { return { new: true, - world: window.config.serverId, - clientVersion: window.config.version, + world: globalConfig.serverId, + clientVersion: globalConfig.version, errorMessage: '', player: { @@ -86,16 +88,18 @@ export default class Storage { }, settings: { - musicVolume: 100, - soundVolume: 100, + musicVolume: 25, + soundVolume: 25, brightness: 100, audioEnabled: !isMobile(), lowPowerMode: false, + joyStickEnabled: false, debugMode: false, showNames: true, showLevels: true, disableCaching: false, - webgl: false + webgl: false, + fpsThrottle: isIos() ? 1 : 0 // default to 50fps throttle on iOS. } }; } @@ -165,7 +169,7 @@ export default class Storage { * Deletes the IndexedDB database and recreates it. */ - private clearIndexedDB(): void { + public clearIndexedDB(): void { this.mapData?.close(); window.indexedDB.deleteDatabase('mapCache'); @@ -273,6 +277,17 @@ export default class Storage { this.save(); } + /** + * Sets the value of the joystick in the local storage. + * @param joyStickEnabled New value to update in the local storage. + */ + + public setJoyStickEnabled(joyStickEnabled: boolean): void { + this.data.settings.joyStickEnabled = joyStickEnabled; + + this.save(); + } + /** * Updates the debug value in the local storage. * @param debug New value of the debug. @@ -350,6 +365,17 @@ export default class Storage { this.save(); } + /** + * Updates the fps throttle in the local storage. + * @param fpsThrottle New fps throttle we are saving. + */ + + public setFpsThrottle(fpsThrottle: number): void { + this.data.settings.fpsThrottle = fpsThrottle; + + this.save(); + } + /** * Saves the objects and cursor tiles into the first index of their respective * object store within the IndexedDB database. @@ -462,7 +488,7 @@ export default class Storage { */ private isNewVersion(): boolean { - return this.data.clientVersion !== window.config.version; + return this.data.clientVersion !== globalConfig.version; } /** diff --git a/packages/client/src/utils/timer.ts b/packages/client/src/utils/timer.ts index a9ba72414d..2f1793a3ed 100644 --- a/packages/client/src/utils/timer.ts +++ b/packages/client/src/utils/timer.ts @@ -1,5 +1,8 @@ export default class Timer { - public constructor(public time: number, public duration: number) {} + public constructor( + public time: number, + public duration: number + ) {} /** * Checks if the timer has expired, that is, diff --git a/packages/client/src/utils/util.ts b/packages/client/src/utils/util.ts index d26b569baf..e36f56f0f9 100644 --- a/packages/client/src/utils/util.ts +++ b/packages/client/src/utils/util.ts @@ -2,6 +2,7 @@ import { onSecondaryPress } from './press'; import Sprite from '../entity/sprite'; +import { t } from '@kaetram/common/i18n'; import { Modules, Opcodes } from '@kaetram/common/network'; import type { AnimationData } from '../entity/sprite'; @@ -12,7 +13,7 @@ export let isInt = (n: number): boolean => n % 1 === 0; export default { tileSize: -1, sideLength: -1, - thirdTile: -1, + halfTile: -1, tileAndAQuarter: -1, /** @@ -35,7 +36,7 @@ export default { */ randomInt(min: number, max: number): number { - return min + Math.floor(Math.random() * (max - min + 1)); + return min + ~~(Math.random() * (max - min + 1)); }, /** @@ -90,34 +91,45 @@ export default { // Bank item counts are a different colour. if (type === Modules.ContainerType.Bank) count.classList.add('bank-item-count'); - // Appends image and count onto the bank slot. + // Appends the image to the slot. slot.append(image); - slot.append(count); if (primaryCallback) slot.addEventListener('click', () => primaryCallback(type, index)); if (secondaryCallback) onSecondaryPress(slot, () => secondaryCallback(type, index)); - // Appends the bank slot onto the list element. - listElement.append(slot); + // Appends the slot and count to the list element. + listElement.append(slot, count); return listElement; }, /** * Converts an item's key into an image URL for the client. - * @param key The item's key, defaults to empty string. + * @param itemKey The item's key, defaults to empty string. * @returns The CSS image URL format for the item's key. */ - getImageURL(key = ''): string { - if (key === '') return ''; + getImageURL(itemKey = ''): string { + if (!itemKey) return ''; - let blocks = key.split('/'); + let blocks = itemKey.split('/'); // Use the last block as the key if we are extracting a key path. - if (blocks.length > 1) key = blocks[blocks.length - 1]; + if (blocks.length > 1) itemKey = blocks.at(-1)!; - return `url("/img/sprites/items/${key}.png")`; + return `url("/img/sprites/items/${itemKey}.png")`; + }, + + /** + * Grabs the placeholder icon for when the equipment slow is unequipped. + * @param type The type of equipment we are getting the icon for. + * @returns A string of the URL for the icon. + */ + + getEquipmentPlaceholderURL(type: Modules.Equipment): string { + let equipment = Modules.Equipment[type].toLowerCase(); + + return `url("img/interface/equipment/${equipment}.png")`; }, /** @@ -141,6 +153,66 @@ export default { return name; }, + /** + * Responsible for handling the formatting of a string when received from a server. If this + * string is an i18n string, then we must handle the data passed alongside with it and extract + * it into the necessary format. + * @param message The message string that we are formatting. + */ + + formatNotification(message: string): string { + // Raw notification text, no need to format. + if (!message.includes(':')) return message; + + // If there is no ; character to indicate variables then we return the i18n parsed string; + if (!message.includes(';')) return t(message as never); + + /** + * Split the message string into blocks, the first block is the actual i18n string to call + * and each subsequent block is a variable to pass to the i18n string. + */ + + let blocks = message.split(';'), + data: { [key: string]: string } = {}; + + // Iterate through the variable blocks. + for (let i = 1; i < blocks.length; i++) { + let [key, value] = blocks[i].split('='); + + // Insert the key and value into the data object. + data[key] = value; + } + + return t(blocks[0] as never, data as never); + }, + + /** + * Responsible for extracting special characters responsible for colour codes + * from the message string and converting them into HTML span elements. + * @param message The message string that we are parsing. + */ + + parseMessage(message: string): string { + try { + let messageBlocks = message.split('@'); + + if (messageBlocks.length % 2 === 0) return messageBlocks.join(' '); + + for (let index in messageBlocks) + if (parseInt(index) % 2 !== 0) + // we hit a colour code. + messageBlocks[index] = ``; + + let codeCount = messageBlocks.length / 2 - 1; + + for (let i = 0; i < codeCount; i++) messageBlocks.push(''); + + return messageBlocks.join(''); + } catch { + return ''; + } + }, + /** * Converts an integer value into a compact string used * when wanting to display large numbers of stackable items. @@ -172,20 +244,16 @@ export default { getContainerAction(menuAction: Modules.MenuActions): Opcodes.Container | undefined { switch (menuAction) { - case Modules.MenuActions.Wield: + case Modules.MenuActions.Interact: case Modules.MenuActions.Equip: case Modules.MenuActions.Eat: - case Modules.MenuActions.Eat2: { + case Modules.MenuActions.Potion: { return Opcodes.Container.Select; } case Modules.MenuActions.DropOne: { return Opcodes.Container.Remove; } - - case Modules.MenuActions.Move: { - return Opcodes.Container.Swap; - } } }, @@ -254,7 +322,7 @@ export default { getHurtSprite(sprite: Sprite): Sprite { let canvas = document.createElement('canvas'), - context = canvas.getContext('2d')!, + context = canvas.getContext('2d', { willReadFrequently: true })!, hurtSprite = new Sprite(sprite.data); // Create a clone to avoid issues. canvas.width = sprite.image.width; @@ -301,7 +369,7 @@ export default { getSilhouetteSprite(sprite: Sprite): Sprite { let canvas = document.createElement('canvas'), - context = canvas.getContext('2d')!, + context = canvas.getContext('2d', { willReadFrequently: true })!, silhouetteSprite = new Sprite(sprite.data); // Create a clone to avoid issues. canvas.width = sprite.image.width; @@ -321,11 +389,14 @@ export default { for (let i = 0; i < cloneData.data.length; i += 4) { // Non-empty pixels are skipped. - if (cloneData.data[i + 3] !== 0) continue; + if (cloneData.data[i + 3] > 24) continue; + + // Ignore the delimiter pixels (RGBA: x, x, x, 1); + if (cloneData.data[i + 3] === 1) continue; // Extract the x and y coordinates of the pixel. let x = (i / 4) % sprite.image.width, - y = Math.floor(i / 4 / sprite.image.width); + y = ~~(i / 4 / sprite.image.width); // Test edge cases, we don't want to draw a silhouette on the edge of the sprite. if (x === 0 || x === sprite.image.width - 1 || y === 0 || y === sprite.image.height - 1) @@ -340,7 +411,8 @@ export default { ]; // If any of the adjacent pixels are non-empty, we set the current pixel to yellow. - if (adjacentPixels.some((pixel) => pixel !== 0)) { + if (adjacentPixels.some((pixel) => pixel > 24)) { + // 24 to ignore semi-transparent pixels. spriteData.data[i] = spriteData.data[i + 1] = 255; spriteData.data[i + 2] = spriteData.data[i + 3] = 150; } @@ -358,6 +430,57 @@ export default { return silhouetteSprite; }, + /** + * Obtains the default x and y offset for a given type of entity. This is to + * lessen the amount of code needed when writing the JSON file for the sprites. + * @param type The typo of entity we are grabbing the offset for. + */ + + getDefaultOffset(type: string): { x: number; y: number } { + switch (type) { + case 'items': { + return { x: 0, y: 0 }; + } + + case 'npcs': { + return { x: -8, y: -14 }; + } + + default: { + return { x: -this.tileSize, y: -this.tileSize }; + } + } + }, + + /** + * Gets the default width and height dimensions for player equipments. This is to + * lessen the amount of code needed when writing the JSON file for the sprites. + * @param type The type of equipment we are grabbing the width and height for. + * @returns The pixel dimensions (for both width and height). + */ + + getDefaultEquipmentDimension(type: string): number { + switch (type) { + case 'effects': + case 'skin': + case 'cape': + case 'legplates': + case 'chestplate': + case 'helmet': { + return 32; + } + + case 'shield': + case 'weapon': { + return 48; + } + + default: { + return this.tileSize; + } + } + }, + /** * Provides a default animation for a given type of entity. When we do not * specify the animations in the `sprites.json` we use this as a default @@ -387,6 +510,26 @@ export default { }; } + case 'trees': + case 'rocks': + case 'fishspots': + case 'bushes': { + return { + idle: { + length: 1, + row: 0 + }, + shake: { + length: 1, + row: 1 + }, + exhausted: { + length: 1, + row: 2 + } + }; + } + case 'mobs': { return { atk_right: { @@ -429,7 +572,7 @@ export default { } default: { - // Default animations for a player/mob character. + // Default animations for a player character. return { idle_down: { length: 4, @@ -445,27 +588,39 @@ export default { }, walk_down: { length: 4, - row: 6 + row: 3 }, walk_right: { length: 4, - row: 7 + row: 4 }, walk_up: { length: 4, - row: 8 + row: 5 }, atk_down: { length: 4, - row: 3 + row: 6 }, atk_right: { length: 4, - row: 4 + row: 7 }, atk_up: { length: 4, - row: 5 + row: 8 + }, + bow_atk_down: { + length: 4, + row: 9 + }, + bow_atk_right: { + length: 4, + row: 10 + }, + bow_atk_up: { + length: 4, + row: 11 } }; } @@ -480,7 +635,7 @@ export default { fadeIn(element: HTMLElement, speed = 0.1): void { element.style.opacity ||= '0'; - element.style.display = 'block'; + element.style.display = 'flex'; let fade = () => { let opacity = parseFloat(element.style.opacity) + speed; diff --git a/packages/client/tsconfig.json b/packages/client/tsconfig.json index bf6b18f295..8d9d2d200f 100644 --- a/packages/client/tsconfig.json +++ b/packages/client/tsconfig.json @@ -1,6 +1 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "types": ["@kaetram/common", "vite/client", "vite-plugin-pwa/client"] - } -} +{ "extends": "../../tsconfig.json" } diff --git a/packages/client/vite.config.ts b/packages/client/vite.config.ts deleted file mode 100644 index 772653232f..0000000000 --- a/packages/client/vite.config.ts +++ /dev/null @@ -1,142 +0,0 @@ -import path from 'node:path'; - -import { description, name } from '../../package.json'; -import config, { type Config } from '../common/config'; - -import ViteLegacy from '@vitejs/plugin-legacy'; -import glsl from 'vite-plugin-glsl'; -import { defineConfig } from 'vite'; -import { ViteMinifyPlugin } from 'vite-plugin-minify'; -import { VitePWA } from 'vite-plugin-pwa'; -import { sentryVitePlugin } from '@sentry/vite-plugin'; -import { internalIpV4 } from 'internal-ip'; - -let expose = ['name', 'host', 'ssl', 'serverId', 'sentryDsn'] as const; - -interface ExposedConfig extends Pick { - debug: boolean; - version: string; - minor: string; - port: number; - hub: string | false; - sentryDsn: string; -} - -declare global { - interface Window { - config: ExposedConfig; - } -} - -function loadEnv(isProduction: boolean): ExposedConfig { - let env = {} as ExposedConfig, - { - gver, - minor, - clientRemoteHost, - clientRemotePort, - hubEnabled, - hubHost, - hubPort, - host, - port, - ssl - } = config; - - for (let key of expose) env[key] = config[key] as never; - - let clientHost = clientRemoteHost || (hubEnabled ? hubHost : host), - clientPort = clientRemotePort || (hubEnabled ? hubPort : port), - hub = ssl ? `https://${clientHost}` : `http://${clientHost}:${clientPort}`; - - return Object.assign(env, { - debug: !isProduction, - version: gver, - minor, - host: clientHost, - port: clientPort, - hub: hubEnabled && hub - }); -} - -export default defineConfig(async ({ mode }) => { - let isProduction = mode === 'production', - env = loadEnv(isProduction), - ipv4 = await internalIpV4(), - plugins = [ - glsl(), - VitePWA({ - registerType: 'autoUpdate', - workbox: { cacheId: name }, - manifest: { - name: config.name, - short_name: config.name, - description, - display: 'fullscreen', - background_color: '#000000', - theme_color: '#000000', - icons: [192, 512].map((size) => { - let sizes = `${size}x${size}`; - - return { - src: `/img/icons/android-chrome-${sizes}.png`, - sizes, - type: 'image/png', - purpose: 'any maskable' - }; - }), - screenshots: [ - { - src: 'screenshot.png', - sizes: '750x1334', - type: 'image/png' - } - ], - categories: ['entertainment', 'games'] - } - }), - ViteLegacy(), - ViteMinifyPlugin({ processScripts: ['application/ld+json'] }) - ]; - - if (config.sentryDsn && !config.debugging) - plugins.push( - sentryVitePlugin({ - include: '.', - org: config.sentryOrg, - project: config.sentryProject, - authToken: config.sentryAuthToken, - sourcemaps: { - // Specify the directory containing build artifacts - assets: './dist/**' - } - }) - ); - - return { - appType: 'mpa', - plugins, - build: { - sourcemap: true, - chunkSizeWarningLimit: 4e3, - rollupOptions: { - input: { - index: path.resolve(__dirname, 'index.html'), - privacy: path.resolve(__dirname, 'privacy.html'), - reset: path.resolve(__dirname, 'reset/index.html') - } - } - }, - server: { - host: '0.0.0.0', - port: 9000, - strictPort: true, - hmr: { - protocol: 'ws', - host: ipv4!, - port: 5183 - } - }, - define: { 'window.config': env } - }; -}); diff --git a/packages/common/api/minigame.ts b/packages/common/api/minigame.ts index 387aa761d3..186e7b92bb 100644 --- a/packages/common/api/minigame.ts +++ b/packages/common/api/minigame.ts @@ -2,5 +2,7 @@ export type Status = 'lobby' | 'ingame' | 'exit'; export enum Team { Red, - Blue + Blue, + Prey, + Hunter } diff --git a/packages/common/config.ts b/packages/common/config.ts index c08641a987..84809ae977 100644 --- a/packages/common/config.ts +++ b/packages/common/config.ts @@ -1,3 +1,5 @@ +import fs from 'node:fs/promises'; + import dotenv from 'dotenv-extended'; import dotenvParseVariables from 'dotenv-parse-variables'; @@ -20,6 +22,8 @@ export interface Config { hubPort: number; // API port for hub hubWsPort: number; // Websocket port for hub hubAccessToken: string; + adminHost: string; + adminPort: number; remoteServerHost: string; remoteApiHost: string; @@ -44,6 +48,7 @@ export interface Config { tutorialEnabled: boolean; overrideAuth: boolean; + disableRegister: boolean; maxPlayers: number; updateTime: number; gver: string; @@ -71,6 +76,8 @@ export interface Config { discordChannelId: string; discordBotToken: string; + acceptLicense: boolean; + debugging: boolean; debugLevel: 'all'; fsDebugging: boolean; @@ -85,12 +92,14 @@ function camelCase(str: string): string { } let { NODE_ENV } = process.env, - env = dotenv.load({ path: `../../.env`, defaults: '../../.env.defaults' }); + env = dotenv.load({ path: `../../.env`, defaults: '../../.env.defaults' }), + nodeEnvConfig = `../../.env.${NODE_ENV}`, + nodeEnvConfigExists = await fs.stat(nodeEnvConfig).catch(() => false); -if (NODE_ENV) { +if (NODE_ENV && nodeEnvConfigExists) { console.debug(`Loading additional env values from [.env.${NODE_ENV}]`); - Object.assign(env, dotenv.load({ path: `../../.env.${NODE_ENV}` })); + Object.assign(env, dotenv.load({ path: nodeEnvConfig })); } let envConfig = dotenvParseVariables(env), @@ -102,8 +111,10 @@ for (let key in envConfig) { config[camelCaseKey] = envConfig[key] as never; } -config.hubHost = config.hubHost || config.host; -config.hubWsHost = config.hubWsHost || config.hubHost; +config.hubHost ||= config.host; +config.hubWsHost ||= config.hubHost; +config.adminHost ||= config.hubHost; +config.remoteServerHost ||= config.host; if (NODE_ENV === 'e2e' && !config.mongodbDatabase.includes('e2e')) { console.error( @@ -116,4 +127,12 @@ if (NODE_ENV === 'e2e' && !config.mongodbDatabase.includes('e2e')) { ); } +export function exposedConfig(...keys: T[]) { + let exposed = {} as Pick; + + for (let key of keys) exposed[key] = config[key]; + + return exposed; +} + export default config; diff --git a/packages/common/database/mongodb/creator.ts b/packages/common/database/mongodb/creator.ts index 12a6fd97ca..5d126e11b5 100644 --- a/packages/common/database/mongodb/creator.ts +++ b/packages/common/database/mongodb/creator.ts @@ -2,10 +2,11 @@ import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import config from '@kaetram/common/config'; -import type { GuildData } from '@kaetram/common/types/guild'; -import type { Modules } from '@kaetram/common/network'; -import type { Collection, Db } from 'mongodb'; import type Player from '@kaetram/server/src/game/entity/character/player/player'; +import type { Collection, Db } from 'mongodb'; +import type { Modules } from '@kaetram/common/network'; +import type { GuildData } from '@kaetram/common/network/impl/guild'; +import type { SerializedEffects } from '@kaetram/common/types/status'; // Used for password reset export interface ResetToken { @@ -27,10 +28,12 @@ export interface PlayerInfo { userAgent: string; rank: Modules.Ranks; poison: PoisonInfo; + effects: SerializedEffects; hitPoints: number; mana: number; orientation: Modules.Orientation; ban: number; + jail: number; mute: number; lastWarp: number; mapVersion: number; @@ -38,6 +41,7 @@ export interface PlayerInfo { friends: string[]; lastServerId: number; lastAddress: string; + lastGlobalChat: number; guild: string; pet: string; resetToken?: ResetToken; @@ -184,18 +188,17 @@ export default class Creator { public saveGuild(guild: GuildData, callback?: () => void): void { let collection = this.database.collection('guilds'); - collection.updateOne( - { identifier: guild.identifier }, - { $set: guild }, - { upsert: true }, - (error, result) => { - if (error) log.error(`An error occurred while saving guild ${guild.name}.`); - + collection + .updateOne({ identifier: guild.identifier }, { $set: guild }, { upsert: true }) + .then((result) => { if (!result) log.error(`Unable to save guild ${guild.name}.`); callback?.(); - } - ); + }) + .catch((error) => { + log.error(`An error occurred while saving guild ${guild.name}.`); + log.error(error); + }); } /** @@ -208,14 +211,18 @@ export default class Creator { */ private updateCollection(collection: Collection, username: string, data: S) { - collection.updateOne({ username }, { $set: data }, { upsert: true }, (error, result) => { - if (error) + collection + .updateOne({ username }, { $set: data }, { upsert: true }) + .then((result) => { + if (!result) + log.error(`Unable to save ${collection.collectionName} for ${username}.`); + }) + .catch((error) => { log.error( `An error occurred while saving ${collection.collectionName} for ${username}.` ); - - if (!result) log.error(`Unable to save ${collection.collectionName} for ${username}.`); - }); + log.error(error); + }); } /** @@ -279,17 +286,20 @@ export default class Creator { type: player.poison ? player.poison.type : -1, remaining: player.poison ? player.poison.getRemainingTime() : -1 }, + effects: player.status.serialize(), hitPoints: player.hitPoints.getHitPoints(), mana: player.mana.getMana(), orientation: player.orientation, ban: player.ban, mute: player.mute, + jail: player.jail, lastWarp: player.lastWarp, mapVersion: player.mapVersion, regionsLoaded: player.regionsLoaded, friends: player.friends.serialize(), lastServerId: config.serverId, lastAddress: player.connection.address, + lastGlobalChat: player.lastGlobalChat, guild: player.guild, pet: player.pet ? player.pet.key : '', resetToken: undefined // Save token as undefined to prevent it from being saved. diff --git a/packages/common/database/mongodb/loader.ts b/packages/common/database/mongodb/loader.ts index 02e610aa1f..c25308f076 100644 --- a/packages/common/database/mongodb/loader.ts +++ b/packages/common/database/mongodb/loader.ts @@ -3,14 +3,17 @@ import log from '@kaetram/common/util/log'; import type Player from '@kaetram/server/src/game/entity/character/player/player'; import type { Db } from 'mongodb'; -import type { SerializedAbility } from '@kaetram/common/types/ability'; -import type { GuildData } from '@kaetram/common/types/guild'; +import type { SerializedAbility } from '@kaetram/common/network/impl/ability'; +import type { GuildData } from '@kaetram/common/network/impl/guild'; import type { StatisticsData } from '@kaetram/common/types/statistics'; -import type { AchievementData, SerializedAchievement } from '@kaetram/common/types/achievement'; -import type { EquipmentData, SerializedEquipment } from '@kaetram/common/types/equipment'; -import type { QuestData, SerializedQuest } from '@kaetram/common/types/quest'; -import type { SerializedSkills, SkillData } from '@kaetram/common/types/skills'; +import type { + AchievementData, + SerializedAchievement +} from '@kaetram/common/network/impl/achievement'; +import type { QuestData, SerializedQuest } from '@kaetram/common/network/impl/quest'; +import type { SerializedSkills, SkillData } from '@kaetram/common/network/impl/skill'; import type { SerializedContainer, SlotData } from '@kaetram/common/types/slot'; +import type { EquipmentData, SerializedEquipment } from '@kaetram/common/network/impl/equipment'; export default class Loader { public constructor(private database?: Db) {} @@ -195,20 +198,19 @@ export default class Loader { * @param identifier The string identifier of the guild. */ - public loadGuild(identifier: string, callback: (guild?: GuildData) => void): void { - if (!this.database || config.skipDatabase) return callback(); + public async loadGuild(identifier: string): Promise { + if (!this.database || config.skipDatabase) return; - let cursor = this.database.collection('guilds').find({ identifier }); + let cursor = this.database.collection('guilds').find({ identifier }), + info = await cursor.toArray(); - cursor.toArray().then((info: unknown[]) => { - if (info.length > 1) log.warning(`[Guilds] Duplicate entry for ${identifier}.`); + if (info.length > 1) log.warning(`[Guilds] Duplicate entry for ${identifier}.`); - // Return empty array if we can't find any data. - if (info.length === 0) return callback(); + // Return if we can't find any data. + if (info.length === 0) return; - // Return the raw data from the database. - callback(info[0] as GuildData); - }); + // Return the raw data from the database. + return info[0]; } /** diff --git a/packages/common/database/mongodb/mongodb.ts b/packages/common/database/mongodb/mongodb.ts index cea6c117c0..2e59d49219 100644 --- a/packages/common/database/mongodb/mongodb.ts +++ b/packages/common/database/mongodb/mongodb.ts @@ -55,7 +55,7 @@ export default class MongoDB { * no MongoDB server is present for the given host. */ - private createConnection(): void { + public createConnection(): void { let client = new MongoClient(this.connectionUrl, { connectTimeoutMS: 5000, serverSelectionTimeoutMS: 5000, @@ -63,22 +63,24 @@ export default class MongoDB { tls: this.tls }); - client.connect((error: Error | undefined, _client: MongoClient | undefined) => { - if (error) { - // Initializes an empty loader controller. - this.loader = new Loader(); - return this.failCallback?.(error); - } + client + .connect() + .then((mongoClient: MongoClient) => { + this.database = mongoClient.db(this.databaseName); - this.database = _client!.db(this.databaseName); + this.loader = new Loader(this.database); + this.creator = new Creator(this.database); - this.loader = new Loader(this.database); - this.creator = new Creator(this.database); + this.readyCallback?.(); - this.readyCallback?.(); + log.notice('Successfully connected to the MongoDB server.'); + }) + .catch((error: Error) => { + // Initializes an empty loader controller. + this.loader = new Loader(); - log.notice('Successfully connected to the MongoDB server.'); - }); + return this.failCallback?.(error); + }); } /** diff --git a/packages/common/i18n/de/crafting.ts b/packages/common/i18n/de/crafting.ts new file mode 100644 index 0000000000..5a10902946 --- /dev/null +++ b/packages/common/i18n/de/crafting.ts @@ -0,0 +1,8 @@ +export default { + INVALID_DATA: 'Ungültige Crafting-Daten, bitte reiche einen Fehlerbericht ein.', + INVALID_ITEM: 'Ungültigen Gegenstand ausgewählt.', + INVALID_ITEMS: 'Du hast nicht die erforderlichen Gegenstände, um dies herzustellen.', + SELECT_ITEM: 'Bitte wähle einen Gegenstand zum herstellen aus.', + FAILED_CRAFT: 'Dir ist es nicht gelungen, {{failedText}} herzustellen', + FAILED_CRAFT_ONE: 'Dir ist es nicht gelungen, den Gegenstand herzustellen.' +} as const; diff --git a/packages/common/i18n/de/enchant.ts b/packages/common/i18n/de/enchant.ts new file mode 100644 index 0000000000..a7c7b5271b --- /dev/null +++ b/packages/common/i18n/de/enchant.ts @@ -0,0 +1,7 @@ +export default { + NO_ITEM_SELECTED: 'Du hast keinen Gegenstand zum Verzaubern ausgewählt.', + CANNOT_ENCHANT: 'Der von dir ausgewählte Gegenstand kann nicht verzaubert werden.', + NO_SHARD: 'Du musst einen Scherbe bereitstellen, um einen Gegenstand zu verzaubern.', + FAILED_ENCHANT: 'Du hast versucht zu verzaubern, aber nichts ist passiert.', + SUCCESSFUL_ENCHANT: 'Du hast deinen Gegenstand erfolgreich verzaubert.' +} as const; diff --git a/packages/common/i18n/de/game.ts b/packages/common/i18n/de/game.ts new file mode 100644 index 0000000000..c201f08716 --- /dev/null +++ b/packages/common/i18n/de/game.ts @@ -0,0 +1,5 @@ +export default { + NAME: 'Kaetram', + DESCRIPTION: + 'Kaetram ist eine Open-Source Spiele-Engine, die entwickelt wurde, um Interessierten den Einstieg in die Spieleentwicklung zu erleichtern. Die ursprüngliche Idee basiert auf dem Demospiel von Little Workshop - BrowserQuest. Die Assets sind die gleichen geblieben, aber der Code selbst wurde komplett gelöscht und von Grund auf neu entwickelt.' +} as const; diff --git a/packages/common/i18n/de/guilds.ts b/packages/common/i18n/de/guilds.ts new file mode 100644 index 0000000000..a37e0233e3 --- /dev/null +++ b/packages/common/i18n/de/guilds.ts @@ -0,0 +1,13 @@ +export default { + ALREADY_EXISTS: 'Eine Gilde mit diesem Namen existiert bereits.', + ALREADY_IN_GUILD: 'Du bist bereits in einer Gilde.', + CANNOT_KICK_YOURSELF: 'Du kannst dich nicht selbst aus der Gilde entfernen.', + GUILD_FULL: 'Diese Gilde ist voll.', + MUST_FINISH_TUTORIAL_CREATE: + 'Du musst das Tutorial beenden, bevor du eine Gilde gründen kannst.', + NO_PERMISSION: 'Du hast keine Erlaubnis, das zu tun.', + NO_PERMISSION_RANK: 'Du hast nicht die Erlaubnis, den Rang dieses Mitglieds zu ändern.', + NOT_ENOUGH_GOLD: 'Du brauchst 30.000 Gold in deinem Inventar, um eine Gilde zu gründen.', + NOT_ALLOWED_GUESTS_JOIN: 'Gäste dürfen Gilden nicht beitreten.', + NOT_ALLOWED_GUESTS_CREATE: 'Gäste dürfen keine Gilden gründen.' +} as const; diff --git a/packages/common/i18n/de/item.ts b/packages/common/i18n/de/item.ts new file mode 100644 index 0000000000..41e7c53f60 --- /dev/null +++ b/packages/common/i18n/de/item.ts @@ -0,0 +1,10 @@ +export default { + CANNOT_ACCESS_LOOTBAG: 'Du kannst im Moment nicht auf diesen Beutel zugreifen.', + REQUIRES_ACHIEVEMENT: + 'Dieser Gegenstand erfordert eine geheime Errungenschaft, um ihn auszurüsten zu können.', + REQUIRES_QUEST: 'Du musst {{quest}} abschließen, um diesen Gegenstand auszurüsten zu können.', + SKILL_LEVEL_REQUIREMENT_EQUIP: + 'Dein {{skill}} muss mindestens Level {{level}} sein, um diesen Gegenstand auszurüsten zu können.', + TOTAL_LEVEL_REQUIREMENT: + 'Dein Gesamtlevel muss mindestens {{level}} sein, um diesen Gegenstand ausrüsten zu können.' +} as const; diff --git a/packages/common/i18n/de/misc.ts b/packages/common/i18n/de/misc.ts new file mode 100644 index 0000000000..fcd1fa2806 --- /dev/null +++ b/packages/common/i18n/de/misc.ts @@ -0,0 +1,93 @@ +export default { + ACCEPTED_TRADE: 'Du hast den Handel akzeptiert.', + ACCEPTED_TRADE_OTHER: 'Der andere Spieler hat den Handel akzeptiert.', + ALREADY_HAVE_PET: 'Du hast bereits ein Haustier.', + BLACK_POTION: 'Du trinkst den schwarzen Trank und fühlst dich unwohl.', + CANNOT_ADD_ITEMS_TRADE: 'Du kannst keine weiteren Gegenstände zum Handel hinzufügen.', + CANNOT_ATTACK_CHEATER: + 'Dieser Spieler ist ein Betrüger. Du solltest so jemanden nicht angreifen.', + CANNOT_ATTACK_CHEATER_SELF: + 'Sorry, aber Betrüger können andere Spieler nicht angreifen, das wäre ihnen gegenüber nicht fair!', + CANNOT_ATTACK_MOB: 'Du hast keinen Grund, diese Kreaturen anzugreifen.', + CANNOT_ATTACK_PET: + 'Du bist verrückt? Du hast den Verstand verloren? Warum solltest du ein Haustier angreifen?', + CANNOT_ATTACK_PREY: 'Du kannst nicht angreifen, wenn du die Beute bist.', + CANNOT_ATTACK_TARGET: 'Du kannst niemanden angreifen, der nicht dein Ziel ist.', + CANNOT_ATTACK_LEVEL_DIFF: + 'Du kannst niemanden angreifen, der mehr als 30 Levels über oder unter dir ist.', + CANNOT_DO_THAT: 'Du kannst das im Moment nicht tun.', + CANNOT_DROP_ITEM_DOOR: + 'Du kannst diesen Gegenstand nicht fallen lassen, wenn du in einer Tür stehst.', + CANNOT_PASS_DOOR: 'Du kannst nicht durch diese Tür gehen.', + CANNOT_GLOBAL_CHAT_SECONDS: + 'Du musst weitere {{duration}} Sekunden warten, bevor du den globalen Chat benutzen kannst.', + CANNOT_GLOBAL_CHAT_MINUTES: + 'Du musst weitere {{duration}} Minuten warten, bevor du den globalen Chat benutzen kannst.', + CANNOT_GLOBAL_CHAT_JAIL: + 'Du kannst den globalen Chat nicht benutzen, solange du inhaftiert bist.', + CANNOT_GLOBAL_CHAT_TUTORIAL: + 'Du kannst den globalen Chat nicht benutzen, während du dich im Tutorial befindest..', + CANNOT_PICK_UP_ITEM: 'Dieser Gegenstand kann nur von {{username}} aufgehoben werden.', + CANNOT_TALK: 'Du kannst jetzt nicht reden.', + CANNOT_TRADE_ITEM: 'Du kannst diesen Gegenstand nicht handeln.', + CANNOT_TRADE_CHEATER: 'Betrüger dürfen leider nicht handeln.', + CANNOT_TRADE_CHEATER_OTHER: + 'Dieser Spieler ist ein Betrüger, er könnte dir Schmuggelware verkaufen!', + CANNOT_TRADE_ADMIN: 'Als Administrator kannst du die Wirtschaft nicht beeinflussen.', + CANNOT_TRADE_ADMIN_OTHER: + 'Der Spieler ist ein Administrator und kann nicht mit gehandelt werden.', + DONT_THINK_GO_IN: 'Ich glaube nicht, dass ich da jetzt schon reingehen sollte...', + ENTERED_LOBBY: 'Du hast die Lobby betreten für {{name}}.', + EXITED_LOBBY: 'Du hast die Lobby verlassen für {{name}}.', + IN_PVP_ZONE: 'Du hast eine PvP-Zone betreten!', + INVALID_AMOUNT: 'Du hast einen ungültigen Betrag eingegeben.', + DOOR_KEY_CRUMBLES: 'Der Schlüssel zerbröselt zu Staub, während du durch die Tür gehst.', + MINIMUM_PLAYERS_MINIGAME: + 'Es müssen mindestens {{minimum}} Spieler anwesend sein, um dieses Minispiel zu starten.', + NEED_COMBAT: 'Du musst im Kampf sein, um diese Fähigkeit zu nutzen.', + NEED_WAIT_ABILIY: + 'Du musst {{duration}} Sekunden warten, bevor du diese Fähigkeit erneut einsetzen kannst.', + NO_IDEA: 'Ich habe keine Ahnung, was das ist.', + NO_ARROWS: 'Du hast keine Pfeile zum Schießen.', + NO_ACHIEVEMENT_DOOR: + 'Du musst die Errungenschaft {{achievement}} abschließen, um durch diese Tür gehen zu können.', + NO_COMBAT_DOOR: + 'Dein Kampflevel muss mindestens {{level}} sein, um durch diese Tür gehen zu können.', + NO_QUEST_DOOR: 'Du musst die Quest {{quest}} abschließen, um durch diese Tür gehen zu können.', + NO_KEY_DOOR: 'Du hast nicht den nötigen Schlüssel, um durch diese Tür gehen zu können.', + NO_SKILL_DOOR: + 'Dein {{skill}} muss mindestens {{level}} sein, um durch diese Tür gehen zu können.', + NO_KNOWLEDGE_USE: 'Du hast nicht das Wissen, um dies zu benutzen.', + NO_SPACE: 'Du hast nicht genug Platz in deinem Inventar.', + NO_SPACE_OTHER: 'Der andere Spieler hat nicht genug Platz in seinem Inventar.', + NO_SPACE_PET: 'Du hast nicht genug Platz in deinem Haustierinventar.', + NOT_IN_PVP_ZONE: 'Du bist nicht mehr in einer PvP-Zone!', + NOT_ONLINE: 'Spieler @aquamarine@{{username}}@crimson@ ist nicht online.', + NOT_ENOUGH_MANA: 'Du hast nicht genug Mana, um diese Fähigkeit einzusetzen.', + PLEASE_MAKE_ROOM_REWARD: 'Bitte mach Platz in deinem Inventar, um diese Belohnung anzunehmen', + POISONED: 'Du wurdest vergiftet!', + POISON_WORN_OFF: 'Das Gift hat nachgelassen.', + PLEASE_REPORT_BUG: 'Es ist ein Problem aufgetreten, bitte melde dies als Fehler.', + FREEZE_IMMUNITY: 'Du bist jetzt für {{duration} Sekunden immun gegen Einfriereffekte.', + FREEZE_IMMUNITY_WORN_OFF: 'Deine Immunität gegen Gefriereffekte hat nachgelassen.', + FIRE_IMMUNITY: 'Du bist jetzt für {{duration}} Sekunden immun gegen Feuereffekte.', + FIRE_IMMUNITY_WORN_OFF: 'Deine Immunität gegen Feuereffekte hat nachgelassen.', + FRIENDS_USERNAME_TOO_LONG: 'Dieser Benutzername ist zu lang.', + FRIENDS_ADD_SELF: `Hör zu, ich verstehe, dass du einsam bist. Du kannst dich aber nicht selber in deine Freundesliste eintragen.`, + FRIENDS_ALREADY_ADDED: 'Dieser Spieler ist bereits in deiner Freundesliste.', + FRIENDS_USER_DOES_NOT_EXIST: 'Es gibt keinen Spieler mit diesem Benutzernamen.', + FRIENDS_NOT_IN_LIST: 'Dieser Spieler ist nicht in deiner Freundesliste.', + PEOPLE_ONLINE: 'Derzeit sind {{population}} Spieler online.', + SKILL_LEVEL_UP: 'Fertigkeitslevel erhöht!', + SKILL_LEVEL_UP_DESC: 'Herzlichen Glückwunsch, dein {{name}} hat Level {{level}} erreicht!', + JAILED: 'Du bist derzeit inhaftiert für {{duration}}.', + MUTED: 'Du bist derzeit stummgeschaltet.', + LOW_MANA: 'Du hast nur noch wenig Mana, deine Angriffe werden schwächer sein.', + TRADE_REQUEST: 'Du hast angefragt, mit {{username}} zu handeln.', + TRADE_REQUEST_OTHER: '{{username}} hat angefragt, mit dir zu handeln.', + TRADE_EMPTY: `Yo, warum handelt ihr mit nichts??`, + TRADE_COMPLETE: 'Danke, dass du das Kaetram Handelssystem benutzt!', + WELCOME: 'Willkommen bei {{name}}!', + WELCOME_BACK: 'Willkommen zurück bei {{name}}!', + WHY_GO_THERE: 'Moment mal, warum sollte ich da reingehen??' +} as const; diff --git a/packages/common/i18n/de/resource.ts b/packages/common/i18n/de/resource.ts new file mode 100644 index 0000000000..db89d28ae9 --- /dev/null +++ b/packages/common/i18n/de/resource.ts @@ -0,0 +1,19 @@ +export default { + MUST_EQUIP_AXE: 'Du musst eine Axt ausrüsten, um Bäume fällen zu können.', + MUST_EQUIP_PICKAXE: 'Du musst eine Spitzhacke ausrüsten, um Steine abbauen zu können.', + MUST_EQUIP_FISHING: 'Du musst ein Angelgerät ausrüsten, um fischen zu können.', + MUST_EQUIP_FORAGING: 'Du brauchst ein spezielles Werkzeug, um dieses zu ernten', + + INVALID_LEVEL_LUMBERJACKING: 'Du musst Level {{level}} sein, um diesen Baum fällen zu können.', + INVALID_LEVEL_MINING: 'Du musst Level {{level}} sein, um dieses Gestein abbauen zu können.', + INVALID_LEVEL_FISHING: 'Du musst Level {{level}} sein, um hier angeln zu können.', + INVALID_LEVEL_FORAGING: 'Du musst Level {{level}} sein, um diese Ressource ernten zu können.', + + UNABLE_TO_INTERACT_LUMBERJACKING: 'Du kannst diesen Baum im Moment nicht fällen.', + UNABLE_TO_INTERACT_MINING: 'Du hast nicht das nötige Wissen, um dieses Gestein abzubauen.', + UNABLE_TO_INTERACT_FISHING: 'Du kannst hier im Moment nicht angeln.', + UNABLE_TO_INTERACT_FORAGING: 'Du kannst diese Ressource im Moment nicht ernten.', + + NO_REASON_TREE: 'Es gibt keinen Grund für dich, diesen Baum zu fällen.', + NO_REASON_FISHING: 'Es gibt keinen Grund für dich, hier zu fischen.' +} as const; diff --git a/packages/common/i18n/de/store.ts b/packages/common/i18n/de/store.ts new file mode 100644 index 0000000000..c50aba42ff --- /dev/null +++ b/packages/common/i18n/de/store.ts @@ -0,0 +1,20 @@ +export default { + WARNING_DUPLICATE: 'Duplicate item key found in store: ', + INVALID_STORE: 'You tried to parse a non-existent store.', + INVALID_STORE_REFRESH: 'hat versucht, ein ungültiges Geschäft zu aktualisieren: ', + INVALID_ITEM_SELECTION: 'Ungültige Gegenstandsauswahl.', + PURCHASE_INVALID_STORE: + 'hat versucht, einen Gegenstand zu kaufen, den es im Geschäft nicht gibt: ', + SELL_INVALID_ITEM: 'hat versucht, einen ungültigen Gegenstand zu verkaufen.', + ITEM_OUT_OF_STOCK: 'Dieser Gegenstand ist derzeit ausverkauft.', + NOT_ENOUGH_CURRENCY: 'Du hast nicht genug Währung, um diesen Gegenstand zu kaufen.', + NOT_ENOUGH_SPACE: 'Du hast nicht genug Platz in deinem Inventar.', + CANNOT_SELL_ITEM: 'Du kannst diesen Gegenstand nicht verkaufen.', + ACTION_STORE_NOT_OPEN: + 'hat versucht, eine Aktion in einem Geschäft durchzuführen, das nicht geöffnet ist.', + CHEATER: 'Du wurdest als Betrüger markiert. Du kannst nichts kaufen.', + RESTRICTED_STORE: 'Dieses Geschäft nimmt keine Gegenstände an.', + RESTRICTED_ITEM: 'Dieser Gegenstand kann hier nicht verkauft werden.', + INVALID_ITEM_COUNT: 'Du hast eine ungültige Anzahl von Gegenständen eingegeben.', + HOLLOW_ADMIN: 'Du kannst als Administrator nicht mit der Wirtschaft interagieren.' +} as const; diff --git a/packages/common/i18n/de/warps.ts b/packages/common/i18n/de/warps.ts new file mode 100644 index 0000000000..3f9fce11ba --- /dev/null +++ b/packages/common/i18n/de/warps.ts @@ -0,0 +1,15 @@ +export default { + WARPED_TO: 'Du hast dich nach {{name}} teleportiert.', + + CANNOT_WARP_ACHIEVEMENT: + 'Dieser Teleport erfordert eine Errungenschaft, die vor der Benutzung abgeschlossen werden muss.', + CANNOT_WARP_QUEST: + 'Du musst {{questName}} abschließen, um nach {{name}} zu teleportieren zu können.', + CANNOT_WARP_LEVEL: + 'Du musst mindestens Level {{level}} sein, um hierher zu teleportieren zu können.', + CANNOT_WARP_JAIL: 'Du kannst nicht teleportieren, du bist für weitere {{time}} eingesperrt.', + CANNOT_WARP_TUTORIAL: 'Du musst das Tutorial beenden, bevor du teleportieren kannst.', + CANNOT_WARP_COMBAT: + 'Du musst 10 Sekunden nach Beendigung des Kampfes warten, um zu teleportieren zu können.', + CANNOT_WARP_COOLDOWN: 'Du musst weitere {{time}} warten, um zu teleportieren zu können.' +} as const; diff --git a/packages/common/i18n/en/crafting.ts b/packages/common/i18n/en/crafting.ts new file mode 100644 index 0000000000..7f50ca5e53 --- /dev/null +++ b/packages/common/i18n/en/crafting.ts @@ -0,0 +1,8 @@ +export default { + INVALID_DATA: 'Invalid crafting data, please submit a bug report.', + INVALID_ITEM: 'Invalid item selected.', + INVALID_ITEMS: 'You do not have the required items to craft that.', + SELECT_ITEM: 'Please select an item to craft.', + FAILED_CRAFT: 'You have failed to craft {{failedText}}.', + FAILED_CRAFT_ONE: ' You have failed to craft the item.' +} as const; diff --git a/packages/common/i18n/en/enchant.ts b/packages/common/i18n/en/enchant.ts new file mode 100644 index 0000000000..fdd53d7da6 --- /dev/null +++ b/packages/common/i18n/en/enchant.ts @@ -0,0 +1,7 @@ +export default { + NO_ITEM_SELECTED: 'You have not selected an item to enchant.', + CANNOT_ENCHANT: 'The item you have selected cannot be enchanted.', + NO_SHARD: 'You must provide a shard to enchant an item.', + FAILED_ENCHANT: 'You tried enchanting but nothing happened.', + SUCCESSFUL_ENCHANT: 'You successfully enchanted your item.' +} as const; diff --git a/packages/common/i18n/en/game.ts b/packages/common/i18n/en/game.ts new file mode 100644 index 0000000000..484bd2c95c --- /dev/null +++ b/packages/common/i18n/en/game.ts @@ -0,0 +1,5 @@ +export default { + NAME: 'Kaetram', + DESCRIPTION: + "Kaetram is an open-source game-engine created to aid those interested in entering the game development realm. The original idea is based on Little Workshop's demo game - BrowserQuest. The assets have remained the same, but the code itself has been completely wiped and redone from the ground up." +} as const; diff --git a/packages/common/i18n/en/guilds.ts b/packages/common/i18n/en/guilds.ts new file mode 100644 index 0000000000..fa0c4ee561 --- /dev/null +++ b/packages/common/i18n/en/guilds.ts @@ -0,0 +1,12 @@ +export default { + ALREADY_EXISTS: 'A guild with that name already exists.', + ALREADY_IN_GUILD: 'You are already in a guild.', + CANNOT_KICK_YOURSELF: 'You cannot kick yourself from the guild.', + GUILD_FULL: 'This guild is at maximum capacity.', + MUST_FINISH_TUTORIAL_CREATE: 'You must finish the tutorial before creating a guild.', + NO_PERMISSION: 'You do not have permission to do that.', + NO_PERMISSION_RANK: 'You do not have permission to update the rank of that member.', + NOT_ENOUGH_GOLD: 'You need 30,000 gold in your inventory to create a guild.', + NOT_ALLOWED_GUESTS_JOIN: 'Guests are not allowed to join guilds.', + NOT_ALLOWED_GUESTS_CREATE: 'Guests are not allowed to create guilds.' +} as const; diff --git a/packages/common/i18n/en/item.ts b/packages/common/i18n/en/item.ts new file mode 100644 index 0000000000..85aaf861ec --- /dev/null +++ b/packages/common/i18n/en/item.ts @@ -0,0 +1,7 @@ +export default { + CANNOT_ACCESS_LOOTBAG: 'You cannot access this lootbag right now.', + REQUIRES_ACHIEVEMENT: 'This item requires a secret achievement to equip.', + REQUIRES_QUEST: 'You must complete {{quest}} to equip this item.', + SKILL_LEVEL_REQUIREMENT_EQUIP: 'Your {{skill}} must be at least level {{level}} to equip this.', + TOTAL_LEVEL_REQUIREMENT: 'Your total level must be at least {{level}} to equip this item.' +} as const; diff --git a/packages/common/i18n/en/misc.ts b/packages/common/i18n/en/misc.ts new file mode 100644 index 0000000000..64020d9928 --- /dev/null +++ b/packages/common/i18n/en/misc.ts @@ -0,0 +1,82 @@ +export default { + ACCEPTED_TRADE: 'You have accepted the trade.', + ACCEPTED_TRADE_OTHER: 'The other player has accepted the trade.', + ALREADY_HAVE_PET: 'You already have a pet.', + BLACK_POTION: 'You drink the black potion and start feeling unwell.', + CANNOT_ADD_ITEMS_TRADE: 'You cannot add any more items to the trade.', + CANNOT_ATTACK_CHEATER: 'That player is a cheater, you do not wanna attack someone like that', + CANNOT_ATTACK_CHEATER_SELF: + 'Sorry but cheaters cannot attack other players, that would not be fair to them!', + CANNOT_ATTACK_MOB: 'You have no reason to attack these creatures.', + CANNOT_ATTACK_PET: 'Are you crazy? Are you out of your mind? Why would you attack a pet?', + CANNOT_ATTACK_PREY: 'You cannot attack while you are the prey.', + CANNOT_ATTACK_TARGET: 'You cannot attack someone who is not your target.', + CANNOT_ATTACK_LEVEL_DIFF: 'You cannot attack someone more than 30 levels above or below you.', + CANNOT_DO_THAT: 'You cannot do that right now.', + CANNOT_DROP_ITEM_DOOR: 'You cannot drop this item while standing in a door.', + CANNOT_PASS_DOOR: 'You cannot pass through this door.', + CANNOT_GLOBAL_CHAT_SECONDS: + 'You must wait another {{duration}} seconds before using global chat.', + CANNOT_GLOBAL_CHAT_MINUTES: + 'You must wait another {{duration}} minutes before using global chat.', + CANNOT_GLOBAL_CHAT_JAIL: 'You cannot use global chat while you are jailed.', + CANNOT_GLOBAL_CHAT_TUTORIAL: 'You cannot use global chat while you are in the tutorial.', + CANNOT_PICK_UP_ITEM: 'This item can only be picked up by {{username}}.', + CANNOT_TALK: 'You cannot talk right now.', + CANNOT_TRADE_ITEM: 'You cannot trade this item.', + CANNOT_TRADE_CHEATER: 'Sorry but cheaters are not allowed to trade.', + CANNOT_TRADE_CHEATER_OTHER: 'That player is a cheater, he might sell you contraband!', + CANNOT_TRADE_ADMIN: 'As an administrator, you cannot influence the economy.', + CANNOT_TRADE_ADMIN_OTHER: 'The player is an administrator and cannot be traded with.', + DONT_THINK_GO_IN: 'I do not think I should go in there just yet...', + ENTERED_LOBBY: 'You have entered the lobby for {{name}}.', + EXITED_LOBBY: 'You have left the lobby for {{name}}.', + IN_PVP_ZONE: 'You have entered a PvP zone!', + INVALID_AMOUNT: 'You have entered an invalid amount.', + DOOR_KEY_CRUMBLES: 'The key crumbles to dust as you pass through the door.', + MINIMUM_PLAYERS_MINIGAME: 'There must be at least {{minimum}} players to start this minigame.', + NEED_COMBAT: 'You must be in combat to use this ability.', + NEED_WAIT_ABILIY: 'You need to wait {{duration}} seconds before using this ability again.', + NO_IDEA: 'I have no idea what that is.', + NO_ARROWS: 'You do not have any arrows to shoot.', + NO_ACHIEVEMENT_DOOR: + 'You need to complete the achievement {{achievement}} to pass through this door.', + NO_COMBAT_DOOR: 'Your combat level must be at least {{level}} to enter.', + NO_QUEST_DOOR: 'You need to complete the quest {{quest}} to pass through this door.', + NO_KEY_DOOR: 'You do not have the required key to pass through this door.', + NO_SKILL_DOOR: 'Your {{skill}} must be at least {{level}} to enter.', + NO_KNOWLEDGE_USE: 'You do not have the knowledge to use this.', + NO_SPACE: 'You do not have enough space in your inventory.', + NO_SPACE_OTHER: 'The other player does not have enough space in their inventory.', + NO_SPACE_PET: 'You do not have enough space in your pet inventory.', + NOT_IN_PVP_ZONE: 'You are no longer in a PvP zone!', + NOT_ONLINE: 'Player @aquamarine@{{username}}@crimson@ is not online.', + NOT_ENOUGH_MANA: 'You do not have enough mana to use this ability.', + NO_NEED_CLICK_REPEATEDLY: 'Pstt, you do not have to repeatedly click on that.', + PLEASE_MAKE_ROOM_REWARD: 'Please make room in your inventory to accept this reward', + POISONED: 'You have been poisoned!', + POISON_WORN_OFF: 'The poison has worn off.', + PLEASE_REPORT_BUG: 'An error has occurred, please report this as a bug.', + FREEZE_IMMUNITY: 'You are now immune to freeze effects for {{duration}} seconds.', + FREEZE_IMMUNITY_WORN_OFF: 'Your immunity to freeze effects has worn off.', + FIRE_IMMUNITY: 'You are now immune to fire effects for {{duration}} seconds.', + FIRE_IMMUNITY_WORN_OFF: 'Your immunity to fire effects has worn off.', + FRIENDS_USERNAME_TOO_LONG: 'That username is too long.', + FRIENDS_ADD_SELF: `Listen, I get it, you're lonely. But you cannot add yourself to the friends list.`, + FRIENDS_ALREADY_ADDED: 'That player is already on your friends list.', + FRIENDS_USER_DOES_NOT_EXIST: 'No player with that username exists.', + FRIENDS_NOT_IN_LIST: 'That player is not on your friends list.', + PEOPLE_ONLINE: 'There are currently {{population}} people online.', + SKILL_LEVEL_UP: 'Skill level up!', + SKILL_LEVEL_UP_DESC: 'Congratulations, your {{name}} has reached level {{level}}!', + JAILED: 'You are currently jailed for {{duration}}.', + MUTED: 'You are currently muted.', + LOW_MANA: 'You are low on mana, your attacks will be weaker.', + TRADE_REQUEST: 'You have requested to trade with {{username}}.', + TRADE_REQUEST_OTHER: '{{username}} has requested to trade with you.', + TRADE_EMPTY: `Yo why are y'all trading nothing?`, + TRADE_COMPLETE: 'Thank you for using Kaetram trading system!', + WELCOME: 'Welcome to {{name}}!', + WELCOME_BACK: 'Welcome back to {{name}}!', + WHY_GO_THERE: 'Now hang on, why would I wanna go in there?' +} as const; diff --git a/packages/common/i18n/en/resource.ts b/packages/common/i18n/en/resource.ts new file mode 100644 index 0000000000..94a108ea87 --- /dev/null +++ b/packages/common/i18n/en/resource.ts @@ -0,0 +1,19 @@ +export default { + MUST_EQUIP_AXE: 'You must equip an axe in order to cut trees.', + MUST_EQUIP_PICKAXE: 'You must be wielding a pickaxe in order to mine rocks.', + MUST_EQUIP_FISHING: 'You must be wielding a fishing utensil in order to fish.', + MUST_EQUIP_FORAGING: 'You require a special tool to forage this', + + INVALID_LEVEL_LUMBERJACKING: 'You must be level {{level}} in order to cut this tree.', + INVALID_LEVEL_MINING: 'You must be level {{level}} in order to mine this rock.', + INVALID_LEVEL_FISHING: 'You must be level {{level}} in order to fish here.', + INVALID_LEVEL_FORAGING: 'You must be level {{level}} to harvest this resource.', + + UNABLE_TO_INTERACT_LUMBERJACKING: 'You are unable to cut this tree at the moment.', + UNABLE_TO_INTERACT_MINING: 'You do not have the necessary knowledge to mine this rock.', + UNABLE_TO_INTERACT_FISHING: 'You are unable to fish here at the moment.', + UNABLE_TO_INTERACT_FORAGING: 'You are unable to harvest this resource at the moment.', + + NO_REASON_TREE: 'There is no reason for you to cut this tree.', + NO_REASON_FISHING: 'There is no reason for you to fish here.' +} as const; diff --git a/packages/common/i18n/en/store.ts b/packages/common/i18n/en/store.ts new file mode 100644 index 0000000000..442634a7f2 --- /dev/null +++ b/packages/common/i18n/en/store.ts @@ -0,0 +1,18 @@ +export default { + WARNING_DUPLICATE: 'Duplicate item key found in store: ', + INVALID_STORE: 'Tried to parse a non-existent store.', + INVALID_STORE_REFRESH: 'Tried to refresh invalid store: ', + INVALID_ITEM_SELECTION: 'Invalid item selection.', + PURCHASE_INVALID_STORE: 'tried purchasing an item that does not exist store: ', + SELL_INVALID_ITEM: 'tried selling an invalid item.', + ITEM_OUT_OF_STOCK: 'This item is currently out of stock.', + NOT_ENOUGH_CURRENCY: 'You do not have enough currency to buy this item.', + NOT_ENOUGH_SPACE: 'You do not have enough space in your inventory.', + CANNOT_SELL_ITEM: 'You cannot sell this item.', + ACTION_STORE_NOT_OPEN: 'Tried to perform an action on a store that is not open.', + CHEATER: 'You have been flagged for cheating. You cannot purchase anything.', + RESTRICTED_STORE: 'This store does not accept any items.', + RESTRICTED_ITEM: 'This item cannot be sold here.', + INVALID_ITEM_COUNT: 'You have entered an invalid amount of items.', + HOLLOW_ADMIN: 'As an admin you cannot interact with the economy.' +} as const; diff --git a/packages/common/i18n/en/warps.ts b/packages/common/i18n/en/warps.ts new file mode 100644 index 0000000000..bba4f6f48f --- /dev/null +++ b/packages/common/i18n/en/warps.ts @@ -0,0 +1,11 @@ +export default { + WARPED_TO: 'You have warped to {{name}}.', + + CANNOT_WARP_ACHIEVEMENT: 'This warp requires an achievement to be finished before use.', + CANNOT_WARP_QUEST: 'You must complete {{questName}} to warp to {{name}}.', + CANNOT_WARP_LEVEL: 'You must be at least level {{level}} to warp here.', + CANNOT_WARP_JAIL: 'You cannot teleport, you are jailed for another {{time}}.', + CANNOT_WARP_TUTORIAL: 'You must finish the tutorial before warping.', + CANNOT_WARP_COMBAT: 'You must wait 10 seconds after finishing combat to warp.', + CANNOT_WARP_COOLDOWN: 'You must wait another {{time}} to warp.' +} as const; diff --git a/packages/common/i18n/es/crafting.ts b/packages/common/i18n/es/crafting.ts new file mode 100644 index 0000000000..0c4f7f2875 --- /dev/null +++ b/packages/common/i18n/es/crafting.ts @@ -0,0 +1,7 @@ +export default { + INVALID_DATA: 'Datos de creación no válidos, por favor envía un informe de error.', + INVALID_ITEM: 'Elemento seleccionado no válido.', + INVALID_ITEMS: 'No tienes los elementos necesarios para fabricar eso.', + SELECT_ITEM: 'Por favor selecciona un artículo para crear.', + FAILED_CRAFT: 'Has fallado en crear el {{failedText}}.' +} as const; diff --git a/packages/common/i18n/es/enchant.ts b/packages/common/i18n/es/enchant.ts new file mode 100644 index 0000000000..df06168341 --- /dev/null +++ b/packages/common/i18n/es/enchant.ts @@ -0,0 +1,7 @@ +export default { + NO_ITEM_SELECTED: 'No has seleccionado un elemento para encantar.', + CANNOT_ENCHANT: 'El elemento que has seleccionado no se puede encantar.', + NO_SHARD: 'Debes proporcionar un fragmento para encantar un objeto.', + FAILED_ENCHANT: 'Intentaste encantar pero no pasó nada.', + SUCCESSFUL_ENCHANT: 'Encantaste con éxito tu objeto.' +} as const; diff --git a/packages/common/i18n/es/game.ts b/packages/common/i18n/es/game.ts new file mode 100644 index 0000000000..58c12c751d --- /dev/null +++ b/packages/common/i18n/es/game.ts @@ -0,0 +1,5 @@ +export default { + NAME: 'Kaetram', + DESCRIPTION: + 'Kaetram es un motor de videojuegos de código abierto creado para ayudar a aquellos interesados en ingresar al ámbito del desarrollo de videojuegos. La idea original se basa en el juego de demostración de Little Workshop: BrowserQuest. Los activos se han mantenido igual, pero el código en sí se ha borrado por completo y se ha rehecho desde cero.' +} as const; diff --git a/packages/common/i18n/es/guilds.ts b/packages/common/i18n/es/guilds.ts new file mode 100644 index 0000000000..8626c97729 --- /dev/null +++ b/packages/common/i18n/es/guilds.ts @@ -0,0 +1,12 @@ +export default { + ALREADY_EXISTS: 'Ya existe un gremio con ese nombre.', + ALREADY_IN_GUILD: 'Ya estás en un gremio.', + CANNOT_KICK_YOURSELF: 'No puedes expulsarte a ti mismo del gremio.', + GUILD_FULL: 'Este gremio está al máximo de su capacidad.', + MUST_FINISH_TUTORIAL_CREATE: 'Debes terminar el tutorial antes de poder crear un gremio.', + NO_PERMISSION: 'No tienes permiso para hacer eso.', + NO_PERMISSION_RANK: 'No tienes permiso para actualizar el rango de ese miembro.', + NOT_ENOUGH_GOLD: 'Necesitas 30 000 de oro en tu inventario para crear un gremio.', + NOT_ALLOWED_GUESTS_JOIN: 'Los invitados no pueden unirse a los gremios.', + NOT_ALLOWED_GUESTS_CREATE: 'Los invitados no pueden crear gremios.' +} as const; diff --git a/packages/common/i18n/es/item.ts b/packages/common/i18n/es/item.ts new file mode 100644 index 0000000000..58b37b4b2f --- /dev/null +++ b/packages/common/i18n/es/item.ts @@ -0,0 +1,9 @@ +export default { + CANNOT_ACCESS_LOOTBAG: 'No puedes acceder a este botín en este momento.', + REQUIRES_ACHIEVEMENT: 'Este artículo requiere de un logro secreto para equiparlo.', + REQUIRES_QUEST: 'Debes completar {{quest}} para equipar este artículo.', + SKILL_LEVEL_REQUIREMENT_EQUIP: + 'Tu {{skill}} debe tener al menos el nivel {{level}} para equipar esto.', + TOTAL_LEVEL_REQUIREMENT: + 'Tu nivel total debe ser al menos {{level}} para equipar este artículo.' +} as const; diff --git a/packages/common/i18n/es/misc.ts b/packages/common/i18n/es/misc.ts new file mode 100644 index 0000000000..163c837efc --- /dev/null +++ b/packages/common/i18n/es/misc.ts @@ -0,0 +1,84 @@ +export default { + ACCEPTED_TRADE: 'Has aceptado el intercambio.', + ACCEPTED_TRADE_OTHER: 'El otro jugador ha aceptado el intercambio.', + ALREADY_HAVE_PET: 'Ya tienes una mascota.', + BLACK_POTION: 'Bebes la poción negra y empiezas a sentirte mal.', + CANNOT_ADD_ITEMS_TRADE: 'No puede agregar más artículos al intercambio.', + CANNOT_ATTACK_CHEATER: 'Ese jugador es un tramposo, no quieres atacar a alguien así.', + CANNOT_ATTACK_CHEATER_SELF: + 'Lo siento, pero los tramposos no pueden atacar a otros jugadores, ¡eso no sería justo para ellos!', + CANNOT_ATTACK_MOB: 'No tienes motivos para atacar a estas criaturas.', + CANNOT_ATTACK_PET: '¿Estás loco? ¿Por qué atacarías a una mascota?', + CANNOT_ATTACK_PREY: 'No puedes atacar mientras eres la presa.', + CANNOT_ATTACK_TARGET: 'No puedes atacar a alguien que no es tu objetivo.', + CANNOT_ATTACK_LEVEL_DIFF: + 'No puedes atacar a alguien con 30 niveles por encima o por debajo de ti.', + CANNOT_DO_THAT: 'No puedes hacer eso ahora mismo.', + CANNOT_DROP_ITEM_DOOR: + 'No puedes dejar caer este artículo mientras estás parado en una puerta.', + CANNOT_PASS_DOOR: 'No puedes pasar por esta puerta.', + CANNOT_GLOBAL_CHAT_SECONDS: + 'Debes esperar otros {{duration}} segundos antes de usar el chat global.', + CANNOT_GLOBAL_CHAT_MINUTES: + 'Debes esperar otros {{duration}} minutos antes de usar el chat global.', + CANNOT_GLOBAL_CHAT_JAIL: 'No puedes usar el chat global mientras estás encarcelado.', + CANNOT_PICK_UP_ITEM: 'Este artículo solo puede ser recogido por {{username}}.', + CANNOT_TALK: 'No puedes hablar ahora.', + CANNOT_TRADE_ITEM: 'No puedes intercambiar este artículo.', + CANNOT_TRADE_CHEATER: 'Lo sentimos, pero los tramposos no pueden comerciar.', + CANNOT_TRADE_CHEATER_OTHER: '¡Ese jugador es un tramposo, podría venderte contrabando!', + CANNOT_TRADE_ADMIN: 'Como administrador, no puedes influenciar la economía.', + CANNOT_TRADE_ADMIN_OTHER: 'El jugador es un administrador y no se puede comerciar con él.', + DONT_THINK_GO_IN: 'No creo que deba entrar allí todavía...', + ENTERED_LOBBY: 'Has entrado en el lobby de {{name}}.', + EXITED_LOBBY: 'Has dejado el lobby de {{name}}.', + IN_PVP_ZONE: '¡Has entrado en una zona PvP!', + INVALID_AMOUNT: 'Has introducido una cantidad no válida.', + DOOR_KEY_CRUMBLES: 'La llave se convierte en polvo al pasar por la puerta.', + MINIMUM_PLAYERS_MINIGAME: + 'Debe haber al menos {{minimum}} jugadores para comenzar este minijuego.', + NEED_COMBAT: 'Debes estar en combate para usar esta habilidad.', + NEED_WAIT_ABILIY: 'Debes esperar {{duration}} segundos antes de volver a usar esta habilidad.', + NO_IDEA: 'No tengo idea de qué es eso.', + NO_ARROWS: 'No tienes flechas para disparar.', + NO_ACHIEVEMENT_DOOR: 'Debes completar el logro {{achievement}} para pasar por esta puerta.', + NO_COMBAT_DOOR: 'Tu nivel de combate debe ser al menos {{level}} para participar.', + NO_QUEST_DOOR: 'Debes completar la misión {{quest}} para atravesar esta puerta.', + NO_KEY_DOOR: 'No tienes la llave requerida para pasar por esta puerta.', + NO_SKILL_DOOR: 'Tu {{skill}} debe tener al menos {{level}} para participar.', + NO_KNOWLEDGE_USE: 'No tienes el conocimiento para usar esto.', + NO_SPACE: 'No tienes suficiente espacio en tu inventario.', + NO_SPACE_OTHER: 'El otro jugador no tiene suficiente espacio en su inventario.', + NO_SPACE_PET: 'No tienes suficiente espacio en tu inventario de mascotas.', + NOT_IN_PVP_ZONE: '¡Ya no estás en una zona PvP!', + NOT_ONLINE: 'El jugador @aquamarine@{{username}}@crimson@ no está en línea.', + NOT_ENOUGH_MANA: 'No tienes suficiente mana para usar esta habilidad.', + PLEASE_MAKE_ROOM_REWARD: 'Haz espacio en tu inventario para aceptar esta recompensa.', + POISONED: '¡Has sido envenenado!', + POISON_WORN_OFF: 'El veneno ha desaparecido.', + PLEASE_REPORT_BUG: 'Se ha producido un error, repórtalo como un bug.', + FREEZE_IMMUNITY: + 'Ahora eres inmune a los efectos de congelación durante {{duration}} segundos.', + FREEZE_IMMUNITY_WORN_OFF: 'Tu inmunidad a los efectos de congelación ha desaparecido.', + FIRE_IMMUNITY: 'Ahora eres inmune a los efectos de fuego durante {{duration}} segundos.', + FIRE_IMMUNITY_WORN_OFF: 'Tu inmunidad a los efectos del fuego ha desaparecido.', + FRIENDS_USERNAME_TOO_LONG: 'Ese nombre de usuario es demasiado largo.', + FRIENDS_ADD_SELF: + 'Escucha, lo entiendo, te sientes solo. Pero no puedes agregarte a ti mismo a la lista de amigos.', + FRIENDS_ALREADY_ADDED: 'Ese jugador ya está en tu lista de amigos.', + FRIENDS_USER_DOES_NOT_EXIST: 'No existe ningún jugador con ese nombre de usuario.', + FRIENDS_NOT_IN_LIST: 'Ese jugador no está en tu lista de amigos.', + PEOPLE_ONLINE: 'Actualmente hay {{population}} personas en línea.', + SKILL_LEVEL_UP: '¡Sube el nivel de habilidad!', + SKILL_LEVEL_UP_DESC: '¡Felicitaciones, tu {{skill}} ha alcanzado el nivel {{level}}!!', + JAILED: 'Actualmente estás encarcelado por {{duration}}.', + MUTED: 'Actualmente estás silenciado.', + LOW_MANA: 'Tienes poco mana, tus ataques serán más débiles.', + TRADE_REQUEST: 'Has solicitado comerciar con {{username}}.', + TRADE_REQUEST_OTHER: '{{username}} ha solicitado comerciar contigo.', + TRADE_EMPTY: '¿Oye, por qué no intercambias nada?', + TRADE_COMPLETE: '¡Gracias por usar el sistema de comercio de Kaetram!', + WELCOME: '¡Bienvenido a {{name}}!', + WELCOME_BACK: '¡Bienvenido de nuevo a {{name}}!', + WHY_GO_THERE: 'Espera, ¿por qué querría entrar allí?' +} as const; diff --git a/packages/common/i18n/es/resource.ts b/packages/common/i18n/es/resource.ts new file mode 100644 index 0000000000..03a27ae9ea --- /dev/null +++ b/packages/common/i18n/es/resource.ts @@ -0,0 +1,19 @@ +export default { + MUST_EQUIP_AXE: 'Debes equipar un hacha para cortar árboles.', + MUST_EQUIP_PICKAXE: 'Debes equipar un pico para minar rocas.', + MUST_EQUIP_FISHING: 'Debes equipar una caña de pescar para poder pescar.', + MUST_EQUIP_FORAGING: 'Necesitas una herramienta especial para forrajear esto.', + + INVALID_LEVEL_LUMBERJACKING: 'Debes tener el nivel {{level}} para cortar este árbol.', + INVALID_LEVEL_MINING: 'Debes tener el nivel {{level}} para minar esta roca.', + INVALID_LEVEL_FISHING: 'Debes tener el nivel {{level}} para poder pescar aquí.', + INVALID_LEVEL_FORAGING: 'Debes tener el nivel {{level}} para recolectar este recurso.', + + UNABLE_TO_INTERACT_LUMBERJACKING: 'No puedes cortar este árbol en este momento.', + UNABLE_TO_INTERACT_MINING: 'No tienes los conocimientos necesarios para minar esta roca.', + UNABLE_TO_INTERACT_FISHING: 'No puede pescar aquí en este momento.', + UNABLE_TO_INTERACT_FORAGING: 'No puedes recolectar este recurso en este momento.', + + NO_REASON_TREE: 'No hay razón para que cortes este árbol.', + NO_REASON_FISHING: 'No hay razón para que pesques aquí.' +} as const; diff --git a/packages/common/i18n/es/store.ts b/packages/common/i18n/es/store.ts new file mode 100644 index 0000000000..b9d9ce75d3 --- /dev/null +++ b/packages/common/i18n/es/store.ts @@ -0,0 +1,18 @@ +export default { + WARNING_DUPLICATE: 'Llave de artículo duplicada encontrada en la tienda: ', + INVALID_STORE: 'Intentaste analizar una tienda inexistente.', + INVALID_STORE_REFRESH: 'Intentaste actualizar una tienda no válida:', + INVALID_ITEM_SELECTION: 'Seleccionaste un artículo no válido.', + PURCHASE_INVALID_STORE: 'Intentaste comprar un artículo que no existe en la tienda: ', + SELL_INVALID_ITEM: 'Intentaste vender un artículo no válido.', + ITEM_OUT_OF_STOCK: 'Este artículo está actualmente agotado.', + NOT_ENOUGH_CURRENCY: 'No tienes suficiente oro para comprar este artículo.', + NOT_ENOUGH_SPACE: 'No tienes suficiente espacio en tu inventario.', + CANNOT_SELL_ITEM: 'No puedes vender este artículo.', + ACTION_STORE_NOT_OPEN: 'Intentaste realizar una acción en una tienda que no está abierta.', + CHEATER: 'Te han marcado por hacer trampa. No puedes comprar nada.', + RESTRICTED_STORE: 'Esta tienda no acepta ningún artículo.', + RESTRICTED_ITEM: 'Este artículo no se puede vender aquí.', + INVALID_ITEM_COUNT: 'Has introducido una cantidad no válida de artículos.', + HOLLOW_ADMIN: 'Como administrador no puedes interactuar con la economía.' +} as const; diff --git a/packages/common/i18n/es/warps.ts b/packages/common/i18n/es/warps.ts new file mode 100644 index 0000000000..4d998cbced --- /dev/null +++ b/packages/common/i18n/es/warps.ts @@ -0,0 +1,13 @@ +export default { + WARPED_TO: 'Te has teletransportado a {{name}}.', + + CANNOT_WARP_ACHIEVEMENT: + 'Este teletransportador requiere que se complete un logro antes de su uso.', + CANNOT_WARP_QUEST: 'Debes completar {{questName}} para viajar a {{name}}.', + CANNOT_WARP_LEVEL: 'Debes tener al menos el nivel {{level}} para teletransportarte aquí.', + CANNOT_WARP_JAIL: 'No puedes teletransportarte, estás encarcelado por otro {{time}}.', + CANNOT_WARP_TUTORIAL: 'Debes terminar el tutorial antes de teletransportarte.', + CANNOT_WARP_COMBAT: + 'Debes esperar 10 segundos después de terminar el combate para teletransportarte.', + CANNOT_WARP_COOLDOWN: 'Debes esperar otro {{time}} para teletransportarte.' +} as const; diff --git a/packages/common/i18n/fr/crafting.ts b/packages/common/i18n/fr/crafting.ts new file mode 100644 index 0000000000..c680f09907 --- /dev/null +++ b/packages/common/i18n/fr/crafting.ts @@ -0,0 +1,7 @@ +export default { + INVALID_DATA: 'Invalid crafting data, please submit a bug report.', + INVALID_ITEM: 'Invalid item selected.', + INVALID_ITEMS: 'You do not have the required items to craft that.', + SELECT_ITEM: 'Please select an item to craft.', + FAILED_CRAFT: 'You have failed to craft {{failedText}}' +} as const; diff --git a/packages/common/i18n/fr/enchant.ts b/packages/common/i18n/fr/enchant.ts new file mode 100644 index 0000000000..fdd53d7da6 --- /dev/null +++ b/packages/common/i18n/fr/enchant.ts @@ -0,0 +1,7 @@ +export default { + NO_ITEM_SELECTED: 'You have not selected an item to enchant.', + CANNOT_ENCHANT: 'The item you have selected cannot be enchanted.', + NO_SHARD: 'You must provide a shard to enchant an item.', + FAILED_ENCHANT: 'You tried enchanting but nothing happened.', + SUCCESSFUL_ENCHANT: 'You successfully enchanted your item.' +} as const; diff --git a/packages/common/i18n/fr/game.ts b/packages/common/i18n/fr/game.ts new file mode 100644 index 0000000000..484bd2c95c --- /dev/null +++ b/packages/common/i18n/fr/game.ts @@ -0,0 +1,5 @@ +export default { + NAME: 'Kaetram', + DESCRIPTION: + "Kaetram is an open-source game-engine created to aid those interested in entering the game development realm. The original idea is based on Little Workshop's demo game - BrowserQuest. The assets have remained the same, but the code itself has been completely wiped and redone from the ground up." +} as const; diff --git a/packages/common/i18n/fr/guilds.ts b/packages/common/i18n/fr/guilds.ts new file mode 100644 index 0000000000..fa0c4ee561 --- /dev/null +++ b/packages/common/i18n/fr/guilds.ts @@ -0,0 +1,12 @@ +export default { + ALREADY_EXISTS: 'A guild with that name already exists.', + ALREADY_IN_GUILD: 'You are already in a guild.', + CANNOT_KICK_YOURSELF: 'You cannot kick yourself from the guild.', + GUILD_FULL: 'This guild is at maximum capacity.', + MUST_FINISH_TUTORIAL_CREATE: 'You must finish the tutorial before creating a guild.', + NO_PERMISSION: 'You do not have permission to do that.', + NO_PERMISSION_RANK: 'You do not have permission to update the rank of that member.', + NOT_ENOUGH_GOLD: 'You need 30,000 gold in your inventory to create a guild.', + NOT_ALLOWED_GUESTS_JOIN: 'Guests are not allowed to join guilds.', + NOT_ALLOWED_GUESTS_CREATE: 'Guests are not allowed to create guilds.' +} as const; diff --git a/packages/common/i18n/fr/item.ts b/packages/common/i18n/fr/item.ts new file mode 100644 index 0000000000..85aaf861ec --- /dev/null +++ b/packages/common/i18n/fr/item.ts @@ -0,0 +1,7 @@ +export default { + CANNOT_ACCESS_LOOTBAG: 'You cannot access this lootbag right now.', + REQUIRES_ACHIEVEMENT: 'This item requires a secret achievement to equip.', + REQUIRES_QUEST: 'You must complete {{quest}} to equip this item.', + SKILL_LEVEL_REQUIREMENT_EQUIP: 'Your {{skill}} must be at least level {{level}} to equip this.', + TOTAL_LEVEL_REQUIREMENT: 'Your total level must be at least {{level}} to equip this item.' +} as const; diff --git a/packages/common/i18n/fr/misc.ts b/packages/common/i18n/fr/misc.ts new file mode 100644 index 0000000000..21b06e29a5 --- /dev/null +++ b/packages/common/i18n/fr/misc.ts @@ -0,0 +1,75 @@ +export default { + ACCEPTED_TRADE: 'You have accepted the trade.', + ACCEPTED_TRADE_OTHER: 'The other player has accepted the trade.', + ALREADY_HAVE_PET: 'You already have a pet.', + BLACK_POTION: 'You drink the black potion and start feeling unwell.', + CANNOT_ADD_ITEMS_TRADE: 'You cannot add any more items to the trade.', + CANNOT_ATTACK_CHEATER: 'That player is a cheater, you do not wanna attack someone like that', + CANNOT_ATTACK_CHEATER_SELF: + 'Sorry but cheaters cannot attack other players, that would not be fair to them!', + CANNOT_ATTACK_MOB: 'You have no reason to attack these creatures.', + CANNOT_ATTACK_PET: 'Are you crazy? Are you out of your mind? Why would you attack a pet?', + CANNOT_ATTACK_PREY: 'You cannot attack while you are the prey.', + CANNOT_ATTACK_TARGET: 'You cannot attack someone who is not your target.', + CANNOT_ATTACK_LEVEL_DIFF: 'You cannot attack someone more than 30 levels above or below you.', + CANNOT_DO_THAT: 'You cannot do that right now.', + CANNOT_DROP_ITEM_DOOR: 'You cannot drop this item while standing in a door.', + CANNOT_PASS_DOOR: 'You cannot pass through this door.', + CANNOT_PICK_UP_ITEM: 'This item can only be picked up by {{username}}.', + CANNOT_TALK: 'You cannot talk right now.', + CANNOT_TRADE_ITEM: 'You cannot trade this item.', + CANNOT_TRADE_CHEATER: 'Sorry but cheaters are not allowed to trade.', + CANNOT_TRADE_CHEATER_OTHER: 'That player is a cheater, he might sell you contraband!', + CANNOT_TRADE_ADMIN: 'As an administrator, you cannot influence the economy.', + CANNOT_TRADE_ADMIN_OTHER: 'The player is an administrator and cannot be traded with.', + DONT_THINK_GO_IN: 'I do not think I should go in there just yet...', + ENTERED_LOBBY: 'You have entered the lobby for {{name}}.', + EXITED_LOBBY: 'You have left the lobby for {{name}}.', + IN_PVP_ZONE: 'You have entered a PvP zone!', + INVALID_AMOUNT: 'You have entered an invalid amount.', + DOOR_KEY_CRUMBLES: 'The key crumbles to dust as you pass through the door.', + MINIMUM_PLAYERS_MINIGAME: 'There must be at least {{minimum}} players to start this minigame.', + NEED_COMBAT: 'You must be in combat to use this ability.', + NEED_WAIT_ABILIY: 'You need to wait {{duration}} seconds before using this ability again.', + NO_IDEA: 'I have no idea what that is.', + NO_ARROWS: 'You do not have any arrows to shoot.', + NO_ACHIEVEMENT_DOOR: + 'You need to complete the achievement {{achievement}} to pass through this door.', + NO_COMBAT_DOOR: 'Your combat level must be at least {{level}} to enter.', + NO_QUEST_DOOR: 'You need to complete the quest {{quest}} to pass through this door.', + NO_KEY_DOOR: 'You do not have the required key to pass through this door.', + NO_SKILL_DOOR: 'Your {{skill}} must be at least {{level}} to enter.', + NO_KNOWLEDGE_USE: 'You do not have the knowledge to use this.', + NO_SPACE: 'You do not have enough space in your inventory.', + NO_SPACE_OTHER: 'The other player does not have enough space in their inventory.', + NO_SPACE_PET: 'You do not have enough space in your pet inventory.', + NOT_IN_PVP_ZONE: 'You are no longer in a PvP zone!', + NOT_ONLINE: 'Player @aquamarine@{{username}}@crimson@ is not online.', + NOT_ENOUGH_MANA: 'You do not have enough mana to use this ability.', + PLEASE_MAKE_ROOM_REWARD: 'Please make room in your inventory to accept this reward', + POISONED: 'You have been poisoned!', + POISON_WORN_OFF: 'The poison has worn off.', + PLEASE_REPORT_BUG: 'An error has occurred, please report this as a bug.', + FREEZE_IMMUNITY: 'You are now immune to freeze effects for {{duration}} seconds.', + FREEZE_IMMUNITY_WORN_OFF: 'Your immunity to freeze effects has worn off.', + FIRE_IMMUNITY: 'You are now immune to fire effects for {{duration}} seconds.', + FIRE_IMMUNITY_WORN_OFF: 'Your immunity to fire effects has worn off.', + FRIENDS_USERNAME_TOO_LONG: 'That username is too long.', + FRIENDS_ADD_SELF: `Listen, I get it, you're lonely. But you cannot add yourself to the friends list.`, + FRIENDS_ALREADY_ADDED: 'That player is already on your friends list.', + FRIENDS_USER_DOES_NOT_EXIST: 'No player with that username exists.', + FRIENDS_NOT_IN_LIST: 'That player is not on your friends list.', + PEOPLE_ONLINE: 'There are currently {{population}} people online.', + SKILL_LEVEL_UP: 'Skill level up!', + SKILL_LEVEL_UP_DESC: 'Congratulations, your {{name}} has reached level {{level}}!', + JAILED: 'You are currently jailed for {{duration}}.', + MUTED: 'You are currently muted.', + LOW_MANA: 'You are low on mana, your attacks will be weaker.', + TRADE_REQUEST: 'You have requested to trade with {{username}}.', + TRADE_REQUEST_OTHER: '{{username}} has requested to trade with you.', + TRADE_EMPTY: `Yo why are y'all trading nothing?`, + TRADE_COMPLETE: 'Thank you for using Kaetram trading system!', + WELCOME: 'Welcome to {{name}}!', + WELCOME_BACK: 'Welcome back to {{name}}!', + WHY_GO_THERE: 'Now hang on, why would I wanna go in there?' +} as const; diff --git a/packages/common/i18n/fr/resource.ts b/packages/common/i18n/fr/resource.ts new file mode 100644 index 0000000000..b1248085eb --- /dev/null +++ b/packages/common/i18n/fr/resource.ts @@ -0,0 +1,18 @@ +export default { + MUST_EQUIP_AXE: 'You must equip an axe in order to cut trees.', + MUST_EQUIP_PICKAXE: 'You must be wielding a pickaxe in order to mine rocks.', + MUST_EQUIP_FISHING: 'You must be wielding a fishing utensil in order to fish.', + MUST_EQUIP_FORAGING: 'You require a special tool to forage this', + + INVALID_LEVEL_LUMBERJACKING: 'You must be level {{level}} in order to cut this tree.', + INVALID_LEVEL_MINING: 'You must be level {{level}} in order to mine this rock.', + INVALID_LEVEL_FISHING: 'You must be level {{level}} in order to fish here.', + INVALID_LEVEL_FORAGING: 'You must be level {{level}} to harvest this resource.', + + UNABLE_TO_INTERACT_LUMBERJACKING: 'You are unable to cut this tree at the moment.', + UNABLE_TO_INTERACT_MINING: 'You do not have the necessary knowledge to mine this rock.', + UNABLE_TO_INTERACT_FISHING: 'You are unable to fish here at the moment.', + UNABLE_TO_INTERACT_FORAGING: 'You are unable to harvest this resource at the moment.', + + NO_REASON_TREE: 'There is no reason for you to cut this tree.' +} as const; diff --git a/packages/common/i18n/fr/store.ts b/packages/common/i18n/fr/store.ts new file mode 100644 index 0000000000..442634a7f2 --- /dev/null +++ b/packages/common/i18n/fr/store.ts @@ -0,0 +1,18 @@ +export default { + WARNING_DUPLICATE: 'Duplicate item key found in store: ', + INVALID_STORE: 'Tried to parse a non-existent store.', + INVALID_STORE_REFRESH: 'Tried to refresh invalid store: ', + INVALID_ITEM_SELECTION: 'Invalid item selection.', + PURCHASE_INVALID_STORE: 'tried purchasing an item that does not exist store: ', + SELL_INVALID_ITEM: 'tried selling an invalid item.', + ITEM_OUT_OF_STOCK: 'This item is currently out of stock.', + NOT_ENOUGH_CURRENCY: 'You do not have enough currency to buy this item.', + NOT_ENOUGH_SPACE: 'You do not have enough space in your inventory.', + CANNOT_SELL_ITEM: 'You cannot sell this item.', + ACTION_STORE_NOT_OPEN: 'Tried to perform an action on a store that is not open.', + CHEATER: 'You have been flagged for cheating. You cannot purchase anything.', + RESTRICTED_STORE: 'This store does not accept any items.', + RESTRICTED_ITEM: 'This item cannot be sold here.', + INVALID_ITEM_COUNT: 'You have entered an invalid amount of items.', + HOLLOW_ADMIN: 'As an admin you cannot interact with the economy.' +} as const; diff --git a/packages/common/i18n/fr/warps.ts b/packages/common/i18n/fr/warps.ts new file mode 100644 index 0000000000..bba4f6f48f --- /dev/null +++ b/packages/common/i18n/fr/warps.ts @@ -0,0 +1,11 @@ +export default { + WARPED_TO: 'You have warped to {{name}}.', + + CANNOT_WARP_ACHIEVEMENT: 'This warp requires an achievement to be finished before use.', + CANNOT_WARP_QUEST: 'You must complete {{questName}} to warp to {{name}}.', + CANNOT_WARP_LEVEL: 'You must be at least level {{level}} to warp here.', + CANNOT_WARP_JAIL: 'You cannot teleport, you are jailed for another {{time}}.', + CANNOT_WARP_TUTORIAL: 'You must finish the tutorial before warping.', + CANNOT_WARP_COMBAT: 'You must wait 10 seconds after finishing combat to warp.', + CANNOT_WARP_COOLDOWN: 'You must wait another {{time}} to warp.' +} as const; diff --git a/packages/common/i18n/index.ts b/packages/common/i18n/index.ts new file mode 100644 index 0000000000..50dc375f32 --- /dev/null +++ b/packages/common/i18n/index.ts @@ -0,0 +1,15 @@ +import { ns, resources, defaultLocale, type Locale } from './options'; + +import i18next from 'i18next'; + +import type { GetFixedTFunction, TFunction } from './ns'; + +await i18next.init({ ns, resources, lng: defaultLocale, fallbackLng: defaultLocale }); + +export let getLanguage = () => i18next.language as Locale; +export let dir = (lng: Locale) => i18next.dir(lng); +export let changeLanguage = (lng?: Locale) => i18next.changeLanguage(lng); +export let t = i18next.t.bind(i18next) as TFunction; +export let getFixedT = i18next.getFixedT.bind(i18next) as GetFixedTFunction; + +export * from './options'; diff --git a/packages/common/i18n/ns.d.ts b/packages/common/i18n/ns.d.ts new file mode 100644 index 0000000000..eedac3d68b --- /dev/null +++ b/packages/common/i18n/ns.d.ts @@ -0,0 +1,85 @@ +import type { TOptions, TypeOptions } from 'i18next'; +import type { Namespaces } from './options'; +import type { MaybeArray, UnionToIntersection } from '../types/utils'; +import type { Locale } from '.'; + +type DotValue = T extends `${infer L}.${infer R}` + ? { [K in L]: DotValue } + : { [K in T]: string }; + +type Prefix = TypeOptions['interpolationPrefix']; +type Suffix = TypeOptions['interpolationSuffix']; +type Interpolation = T extends `${string}${Prefix}${infer I}${Suffix}${infer N}` + ? DotValue & Interpolation + : unknown; + +type TraverseInterpolation = T extends string + ? Interpolation + : T extends object + ? { [K in keyof T]: TraverseInterpolation } + : never; + +type KeySeparator = TypeOptions['keySeparator']; +type FlattenKeys = T extends object + ? { [K in keyof T]: FlattenKeys } & UnionToIntersection< + { + [K in keyof T]: T[K] extends object + ? FlattenKeys< + { + [L in keyof T[K]]: { + [M in `${K & string}${KeySeparator}${L & string}`]: FlattenKeys< + T[K][L] + >; + }; + }[keyof T[K]] + > + : T; + }[keyof T] + > + : T; + +export type NsInter = { + [K in keyof Namespaces]: TraverseInterpolation>; +}; + +type NsSeparator = TypeOptions['nsSeparator']; +type DefaultNs = TypeOptions['defaultNS']; + +export type TFunction = < + const K extends O extends { ns: infer Ns extends keyof NsInter } + ? keyof NsInter[Ns] + : MaybeArray< + | keyof NsInter[Ns] + | { + [Ns in keyof NsInter]: `${Ns & string}${NsSeparator}${keyof NsInter[Ns] & + string}`; + }[keyof NsInter] + >, + const O extends { ns?: Ns }, + const KUnion = K extends readonly (infer KUnion)[] ? KUnion : K, + const Ns extends keyof NsInter = KUnion extends `${infer Ns extends + keyof NsInter}${NsSeparator}${string}` + ? Ns + : O extends { ns: infer Ns extends keyof NsInter } + ? Ns + : DefaultNs +>( + key: K, + options?: TOptions< + O & + NsInter[Ns][(KUnion extends `${string}${NsSeparator}${infer N}` ? N : KUnion) & + keyof NsInter[Ns]] + > +) => string; + +export type GetFixedTFunction = < + const L extends Locale, + const N extends keyof NsInter, + const K extends keyof NsInter[Ns], + const Ns extends [keyof NsInter[N]] extends [never] ? DefaultNs : N, + const KObject extends [keyof NsInter[Ns][K]] extends [never] ? NsInter[Ns] : NsInter[Ns][K] +>( + lng: L | undefined, + ns?: N, + keyPrefix?: K +) => (key: keyof KObject, options?: TOptions) => string; diff --git a/packages/common/i18n/options.ts b/packages/common/i18n/options.ts new file mode 100644 index 0000000000..e0eafe7876 --- /dev/null +++ b/packages/common/i18n/options.ts @@ -0,0 +1,190 @@ +import CraftingEn from './en/crafting'; +import EnchantEn from './en/enchant'; +import GuildsEn from './en/guilds'; +import ItemEn from './en/item'; +import MiscEn from './en/misc'; +import ResourceEn from './en/resource'; +import StoreEn from './en/store'; +import GameEn from './en/game'; +import WarpsEn from './en/warps'; +import CraftingDe from './de/crafting'; +import EnchantDe from './de/enchant'; +import GuildsDe from './de/guilds'; +import ItemDe from './de/item'; +import MiscDe from './de/misc'; +import ResourceDe from './de/resource'; +import StoreDe from './de/store'; +import GameDe from './de/game'; +import WarpsDe from './de/warps'; +import CraftingEs from './es/crafting'; +import EnchantEs from './es/enchant'; +import GuildsEs from './es/guilds'; +import ItemEs from './es/item'; +import MiscEs from './es/misc'; +import ResourceEs from './es/resource'; +import StoreEs from './es/store'; +import GameEs from './es/game'; +import WarpsEs from './es/warps'; +import CraftingFr from './fr/crafting'; +import EnchantFr from './fr/enchant'; +import GuildsFr from './fr/guilds'; +import ItemFr from './fr/item'; +import MiscFr from './fr/misc'; +import ResourceFr from './fr/resource'; +import StoreFr from './fr/store'; +import GameFr from './fr/game'; +import WarpsFr from './fr/warps'; +import CraftingRo from './ro/crafting'; +import EnchantRo from './ro/enchant'; +import GuildsRo from './ro/guilds'; +import ItemRo from './ro/item'; +import MiscRo from './ro/misc'; +import ResourceRo from './ro/resource'; +import StoreRo from './ro/store'; +import GameRo from './ro/game'; +import WarpsRo from './ro/warps'; +import CraftingRu from './ru/crafting'; +import EnchantRu from './ru/enchant'; +import GuildsRu from './ru/guilds'; +import ItemRu from './ru/item'; +import MiscRu from './ru/misc'; +import ResourceRu from './ru/resource'; +import StoreRu from './ru/store'; +import GameRu from './ru/game'; +import WarpsRu from './ru/warps'; +import CraftingPt from './pt/crafting'; +import EnchantPt from './pt/enchant'; +import GuildsPt from './pt/guilds'; +import ItemPt from './pt/item'; +import MiscPt from './pt/misc'; +import ResourcePt from './pt/resource'; +import StorePt from './pt/store'; +import GamePt from './pt/game'; +import WarpsPt from './pt/warps'; +import CraftingTl from './tl/crafting'; +import EnchantTl from './tl/enchant'; +import GuildsTl from './tl/guilds'; +import ItemTl from './tl/item'; +import MiscTl from './tl/misc'; +import ResourceTl from './tl/resource'; +import StoreTl from './tl/store'; +import GameTl from './tl/game'; +import WarpsTl from './tl/warps'; + +export let resources = { + en: { + crafting: CraftingEn, + enchant: EnchantEn, + guilds: GuildsEn, + item: ItemEn, + misc: MiscEn, + resource: ResourceEn, + store: StoreEn, + game: GameEn, + warps: WarpsEn + }, + de: { + crafting: CraftingDe, + enchant: EnchantDe, + guilds: GuildsDe, + item: ItemDe, + misc: MiscDe, + resource: ResourceDe, + store: StoreDe, + game: GameDe, + warps: WarpsDe + }, + es: { + crafting: CraftingEs, + enchant: EnchantEs, + guilds: GuildsEs, + item: ItemEs, + misc: MiscEs, + resource: ResourceEs, + store: StoreEs, + game: GameEs, + warps: WarpsEs + }, + fr: { + crafting: CraftingFr, + enchant: EnchantFr, + guilds: GuildsFr, + item: ItemFr, + misc: MiscFr, + resource: ResourceFr, + store: StoreFr, + game: GameFr, + warps: WarpsFr + }, + pt: { + crafting: CraftingPt, + enchant: EnchantPt, + guilds: GuildsPt, + item: ItemPt, + misc: MiscPt, + resource: ResourcePt, + store: StorePt, + game: GamePt, + warps: WarpsPt + }, + ro: { + crafting: CraftingRo, + enchant: EnchantRo, + guilds: GuildsRo, + item: ItemRo, + misc: MiscRo, + resource: ResourceRo, + store: StoreRo, + game: GameRo, + warps: WarpsRo + }, + ru: { + crafting: CraftingRu, + enchant: EnchantRu, + guilds: GuildsRu, + item: ItemRu, + misc: MiscRu, + resource: ResourceRu, + store: StoreRu, + game: GameRu, + warps: WarpsRu + }, + tl: { + crafting: CraftingTl, + enchant: EnchantTl, + guilds: GuildsTl, + item: ItemTl, + misc: MiscTl, + resource: ResourceTl, + store: StoreTl, + game: GameTl, + warps: WarpsTl + } +} as const; + +export type Locale = keyof typeof resources; + +export let locales: { [K in Locale]: string } = { + en: 'en-US', + de: 'de-DE', + es: 'es-ES', + fr: 'fr-FR', + pt: 'pt-PT', + ro: 'ro-RO', + ru: 'ru-RU', + tl: 'tl-PH' +} as const; + +export let defaultLocale = 'en' as const; +export let defaultResource = resources[defaultLocale]; + +export let ns = Object.keys(defaultResource); +export type Namespaces = typeof defaultResource; + +declare module 'i18next' { + interface CustomTypeOptions { + returnNull: false; + returnObjects: false; + resources: typeof defaultResource; + } +} diff --git a/packages/common/i18n/pt/crafting.ts b/packages/common/i18n/pt/crafting.ts new file mode 100644 index 0000000000..9dac8bc7f9 --- /dev/null +++ b/packages/common/i18n/pt/crafting.ts @@ -0,0 +1,7 @@ +export default { + INVALID_DATA: 'Invalid crafting data, please submit a bug report.', + INVALID_ITEM: 'Invalid item selected.', + INVALID_ITEMS: 'You do not have the required items to craft that.', + SELECT_ITEM: 'Please select an item to craft.', + FAILED_CRAFT: 'You have failed to craft {{failedText}} ' +} as const; diff --git a/packages/common/i18n/pt/enchant.ts b/packages/common/i18n/pt/enchant.ts new file mode 100644 index 0000000000..fdd53d7da6 --- /dev/null +++ b/packages/common/i18n/pt/enchant.ts @@ -0,0 +1,7 @@ +export default { + NO_ITEM_SELECTED: 'You have not selected an item to enchant.', + CANNOT_ENCHANT: 'The item you have selected cannot be enchanted.', + NO_SHARD: 'You must provide a shard to enchant an item.', + FAILED_ENCHANT: 'You tried enchanting but nothing happened.', + SUCCESSFUL_ENCHANT: 'You successfully enchanted your item.' +} as const; diff --git a/packages/common/i18n/pt/game.ts b/packages/common/i18n/pt/game.ts new file mode 100644 index 0000000000..484bd2c95c --- /dev/null +++ b/packages/common/i18n/pt/game.ts @@ -0,0 +1,5 @@ +export default { + NAME: 'Kaetram', + DESCRIPTION: + "Kaetram is an open-source game-engine created to aid those interested in entering the game development realm. The original idea is based on Little Workshop's demo game - BrowserQuest. The assets have remained the same, but the code itself has been completely wiped and redone from the ground up." +} as const; diff --git a/packages/common/i18n/pt/guilds.ts b/packages/common/i18n/pt/guilds.ts new file mode 100644 index 0000000000..fa0c4ee561 --- /dev/null +++ b/packages/common/i18n/pt/guilds.ts @@ -0,0 +1,12 @@ +export default { + ALREADY_EXISTS: 'A guild with that name already exists.', + ALREADY_IN_GUILD: 'You are already in a guild.', + CANNOT_KICK_YOURSELF: 'You cannot kick yourself from the guild.', + GUILD_FULL: 'This guild is at maximum capacity.', + MUST_FINISH_TUTORIAL_CREATE: 'You must finish the tutorial before creating a guild.', + NO_PERMISSION: 'You do not have permission to do that.', + NO_PERMISSION_RANK: 'You do not have permission to update the rank of that member.', + NOT_ENOUGH_GOLD: 'You need 30,000 gold in your inventory to create a guild.', + NOT_ALLOWED_GUESTS_JOIN: 'Guests are not allowed to join guilds.', + NOT_ALLOWED_GUESTS_CREATE: 'Guests are not allowed to create guilds.' +} as const; diff --git a/packages/common/i18n/pt/item.ts b/packages/common/i18n/pt/item.ts new file mode 100644 index 0000000000..85aaf861ec --- /dev/null +++ b/packages/common/i18n/pt/item.ts @@ -0,0 +1,7 @@ +export default { + CANNOT_ACCESS_LOOTBAG: 'You cannot access this lootbag right now.', + REQUIRES_ACHIEVEMENT: 'This item requires a secret achievement to equip.', + REQUIRES_QUEST: 'You must complete {{quest}} to equip this item.', + SKILL_LEVEL_REQUIREMENT_EQUIP: 'Your {{skill}} must be at least level {{level}} to equip this.', + TOTAL_LEVEL_REQUIREMENT: 'Your total level must be at least {{level}} to equip this item.' +} as const; diff --git a/packages/common/i18n/pt/misc.ts b/packages/common/i18n/pt/misc.ts new file mode 100644 index 0000000000..4782b4b990 --- /dev/null +++ b/packages/common/i18n/pt/misc.ts @@ -0,0 +1,81 @@ +export default { + ACCEPTED_TRADE: 'You have accepted the trade.', + ACCEPTED_TRADE_OTHER: 'The other player has accepted the trade.', + ALREADY_HAVE_PET: 'You already have a pet.', + BLACK_POTION: 'You drink the black potion and start feeling unwell.', + CANNOT_ADD_ITEMS_TRADE: 'You cannot add any more items to the trade.', + CANNOT_ATTACK_CHEATER: 'That player is a cheater, you do not wanna attack someone like that', + CANNOT_ATTACK_CHEATER_SELF: + 'Sorry but cheaters cannot attack other players, that would not be fair to them!', + CANNOT_ATTACK_MOB: 'You have no reason to attack these creatures.', + CANNOT_ATTACK_PET: 'Are you crazy? Are you out of your mind? Why would you attack a pet?', + CANNOT_ATTACK_PREY: 'You cannot attack while you are the prey.', + CANNOT_ATTACK_TARGET: 'You cannot attack someone who is not your target.', + CANNOT_ATTACK_LEVEL_DIFF: 'You cannot attack someone more than 30 levels above or below you.', + CANNOT_DO_THAT: 'You cannot do that right now.', + CANNOT_DROP_ITEM_DOOR: 'You cannot drop this item while standing in a door.', + CANNOT_PASS_DOOR: 'You cannot pass through this door.', + CANNOT_GLOBAL_CHAT_SECONDS: + 'You must wait another {{duration}} seconds before using global chat.', + CANNOT_GLOBAL_CHAT_MINUTES: + 'You must wait another {{duration}} minutes before using global chat.', + CANNOT_GLOBAL_CHAT_JAIL: 'You cannot use global chat while you are jailed.', + CANNOT_GLOBAL_CHAT_TUTORIAL: 'You cannot use global chat while you are in the tutorial.', + CANNOT_PICK_UP_ITEM: 'This item can only be picked up by {{username}}.', + CANNOT_TALK: 'You cannot talk right now.', + CANNOT_TRADE_ITEM: 'You cannot trade this item.', + CANNOT_TRADE_CHEATER: 'Sorry but cheaters are not allowed to trade.', + CANNOT_TRADE_CHEATER_OTHER: 'That player is a cheater, he might sell you contraband!', + CANNOT_TRADE_ADMIN: 'As an administrator, you cannot influence the economy.', + CANNOT_TRADE_ADMIN_OTHER: 'The player is an administrator and cannot be traded with.', + DONT_THINK_GO_IN: 'I do not think I should go in there just yet...', + ENTERED_LOBBY: 'You have entered the lobby for {{name}}.', + EXITED_LOBBY: 'You have left the lobby for {{name}}.', + IN_PVP_ZONE: 'You have entered a PvP zone!', + INVALID_AMOUNT: 'You have entered an invalid amount.', + DOOR_KEY_CRUMBLES: 'The key crumbles to dust as you pass through the door.', + MINIMUM_PLAYERS_MINIGAME: 'There must be at least {{minimum}} players to start this minigame.', + NEED_COMBAT: 'You must be in combat to use this ability.', + NEED_WAIT_ABILIY: 'You need to wait {{duration}} seconds before using this ability again.', + NO_IDEA: 'I have no idea what that is.', + NO_ARROWS: 'You do not have any arrows to shoot.', + NO_ACHIEVEMENT_DOOR: + 'You need to complete the achievement {{achievement}} to pass through this door.', + NO_COMBAT_DOOR: 'Your combat level must be at least {{level}} to enter.', + NO_QUEST_DOOR: 'You need to complete the quest {{quest}} to pass through this door.', + NO_KEY_DOOR: 'You do not have the required key to pass through this door.', + NO_SKILL_DOOR: 'Your {{skill}} must be at least {{level}} to enter.', + NO_KNOWLEDGE_USE: 'You do not have the knowledge to use this.', + NO_SPACE: 'You do not have enough space in your inventory.', + NO_SPACE_OTHER: 'The other player does not have enough space in their inventory.', + NO_SPACE_PET: 'You do not have enough space in your pet inventory.', + NOT_IN_PVP_ZONE: 'You are no longer in a PvP zone!', + NOT_ONLINE: 'Player @aquamarine@{{username}}@crimson@ is not online.', + NOT_ENOUGH_MANA: 'You do not have enough mana to use this ability.', + PLEASE_MAKE_ROOM_REWARD: 'Please make room in your inventory to accept this reward', + POISONED: 'You have been poisoned!', + POISON_WORN_OFF: 'The poison has worn off.', + PLEASE_REPORT_BUG: 'An error has occurred, please report this as a bug.', + FREEZE_IMMUNITY: 'You are now immune to freeze effects for {{duration}} seconds.', + FREEZE_IMMUNITY_WORN_OFF: 'Your immunity to freeze effects has worn off.', + FIRE_IMMUNITY: 'You are now immune to fire effects for {{duration}} seconds.', + FIRE_IMMUNITY_WORN_OFF: 'Your immunity to fire effects has worn off.', + FRIENDS_USERNAME_TOO_LONG: 'That username is too long.', + FRIENDS_ADD_SELF: `Listen, I get it, you're lonely. But you cannot add yourself to the friends list.`, + FRIENDS_ALREADY_ADDED: 'That player is already on your friends list.', + FRIENDS_USER_DOES_NOT_EXIST: 'No player with that username exists.', + FRIENDS_NOT_IN_LIST: 'That player is not on your friends list.', + PEOPLE_ONLINE: 'There are currently {{population}} people online.', + SKILL_LEVEL_UP: 'Skill level up!', + SKILL_LEVEL_UP_DESC: 'Congratulations, your {{name}} has reached level {{level}}!', + JAILED: 'You are currently jailed for {{duration}}.', + MUTED: 'You are currently muted.', + LOW_MANA: 'You are low on mana, your attacks will be weaker.', + TRADE_REQUEST: 'You have requested to trade with {{username}}.', + TRADE_REQUEST_OTHER: '{{username}} has requested to trade with you.', + TRADE_EMPTY: `Yo why are y'all trading nothing?`, + TRADE_COMPLETE: 'Thank you for using Kaetram trading system!', + WELCOME: 'Welcome to {{name}}!', + WELCOME_BACK: 'Welcome back to {{name}}!', + WHY_GO_THERE: 'Now hang on, why would I wanna go in there?' +} as const; diff --git a/packages/common/i18n/pt/resource.ts b/packages/common/i18n/pt/resource.ts new file mode 100644 index 0000000000..b1248085eb --- /dev/null +++ b/packages/common/i18n/pt/resource.ts @@ -0,0 +1,18 @@ +export default { + MUST_EQUIP_AXE: 'You must equip an axe in order to cut trees.', + MUST_EQUIP_PICKAXE: 'You must be wielding a pickaxe in order to mine rocks.', + MUST_EQUIP_FISHING: 'You must be wielding a fishing utensil in order to fish.', + MUST_EQUIP_FORAGING: 'You require a special tool to forage this', + + INVALID_LEVEL_LUMBERJACKING: 'You must be level {{level}} in order to cut this tree.', + INVALID_LEVEL_MINING: 'You must be level {{level}} in order to mine this rock.', + INVALID_LEVEL_FISHING: 'You must be level {{level}} in order to fish here.', + INVALID_LEVEL_FORAGING: 'You must be level {{level}} to harvest this resource.', + + UNABLE_TO_INTERACT_LUMBERJACKING: 'You are unable to cut this tree at the moment.', + UNABLE_TO_INTERACT_MINING: 'You do not have the necessary knowledge to mine this rock.', + UNABLE_TO_INTERACT_FISHING: 'You are unable to fish here at the moment.', + UNABLE_TO_INTERACT_FORAGING: 'You are unable to harvest this resource at the moment.', + + NO_REASON_TREE: 'There is no reason for you to cut this tree.' +} as const; diff --git a/packages/common/i18n/pt/store.ts b/packages/common/i18n/pt/store.ts new file mode 100644 index 0000000000..442634a7f2 --- /dev/null +++ b/packages/common/i18n/pt/store.ts @@ -0,0 +1,18 @@ +export default { + WARNING_DUPLICATE: 'Duplicate item key found in store: ', + INVALID_STORE: 'Tried to parse a non-existent store.', + INVALID_STORE_REFRESH: 'Tried to refresh invalid store: ', + INVALID_ITEM_SELECTION: 'Invalid item selection.', + PURCHASE_INVALID_STORE: 'tried purchasing an item that does not exist store: ', + SELL_INVALID_ITEM: 'tried selling an invalid item.', + ITEM_OUT_OF_STOCK: 'This item is currently out of stock.', + NOT_ENOUGH_CURRENCY: 'You do not have enough currency to buy this item.', + NOT_ENOUGH_SPACE: 'You do not have enough space in your inventory.', + CANNOT_SELL_ITEM: 'You cannot sell this item.', + ACTION_STORE_NOT_OPEN: 'Tried to perform an action on a store that is not open.', + CHEATER: 'You have been flagged for cheating. You cannot purchase anything.', + RESTRICTED_STORE: 'This store does not accept any items.', + RESTRICTED_ITEM: 'This item cannot be sold here.', + INVALID_ITEM_COUNT: 'You have entered an invalid amount of items.', + HOLLOW_ADMIN: 'As an admin you cannot interact with the economy.' +} as const; diff --git a/packages/common/i18n/pt/warps.ts b/packages/common/i18n/pt/warps.ts new file mode 100644 index 0000000000..bba4f6f48f --- /dev/null +++ b/packages/common/i18n/pt/warps.ts @@ -0,0 +1,11 @@ +export default { + WARPED_TO: 'You have warped to {{name}}.', + + CANNOT_WARP_ACHIEVEMENT: 'This warp requires an achievement to be finished before use.', + CANNOT_WARP_QUEST: 'You must complete {{questName}} to warp to {{name}}.', + CANNOT_WARP_LEVEL: 'You must be at least level {{level}} to warp here.', + CANNOT_WARP_JAIL: 'You cannot teleport, you are jailed for another {{time}}.', + CANNOT_WARP_TUTORIAL: 'You must finish the tutorial before warping.', + CANNOT_WARP_COMBAT: 'You must wait 10 seconds after finishing combat to warp.', + CANNOT_WARP_COOLDOWN: 'You must wait another {{time}} to warp.' +} as const; diff --git a/packages/common/i18n/ro/crafting.ts b/packages/common/i18n/ro/crafting.ts new file mode 100644 index 0000000000..9dac8bc7f9 --- /dev/null +++ b/packages/common/i18n/ro/crafting.ts @@ -0,0 +1,7 @@ +export default { + INVALID_DATA: 'Invalid crafting data, please submit a bug report.', + INVALID_ITEM: 'Invalid item selected.', + INVALID_ITEMS: 'You do not have the required items to craft that.', + SELECT_ITEM: 'Please select an item to craft.', + FAILED_CRAFT: 'You have failed to craft {{failedText}} ' +} as const; diff --git a/packages/common/i18n/ro/enchant.ts b/packages/common/i18n/ro/enchant.ts new file mode 100644 index 0000000000..fdd53d7da6 --- /dev/null +++ b/packages/common/i18n/ro/enchant.ts @@ -0,0 +1,7 @@ +export default { + NO_ITEM_SELECTED: 'You have not selected an item to enchant.', + CANNOT_ENCHANT: 'The item you have selected cannot be enchanted.', + NO_SHARD: 'You must provide a shard to enchant an item.', + FAILED_ENCHANT: 'You tried enchanting but nothing happened.', + SUCCESSFUL_ENCHANT: 'You successfully enchanted your item.' +} as const; diff --git a/packages/common/i18n/ro/game.ts b/packages/common/i18n/ro/game.ts new file mode 100644 index 0000000000..484bd2c95c --- /dev/null +++ b/packages/common/i18n/ro/game.ts @@ -0,0 +1,5 @@ +export default { + NAME: 'Kaetram', + DESCRIPTION: + "Kaetram is an open-source game-engine created to aid those interested in entering the game development realm. The original idea is based on Little Workshop's demo game - BrowserQuest. The assets have remained the same, but the code itself has been completely wiped and redone from the ground up." +} as const; diff --git a/packages/common/i18n/ro/guilds.ts b/packages/common/i18n/ro/guilds.ts new file mode 100644 index 0000000000..fa0c4ee561 --- /dev/null +++ b/packages/common/i18n/ro/guilds.ts @@ -0,0 +1,12 @@ +export default { + ALREADY_EXISTS: 'A guild with that name already exists.', + ALREADY_IN_GUILD: 'You are already in a guild.', + CANNOT_KICK_YOURSELF: 'You cannot kick yourself from the guild.', + GUILD_FULL: 'This guild is at maximum capacity.', + MUST_FINISH_TUTORIAL_CREATE: 'You must finish the tutorial before creating a guild.', + NO_PERMISSION: 'You do not have permission to do that.', + NO_PERMISSION_RANK: 'You do not have permission to update the rank of that member.', + NOT_ENOUGH_GOLD: 'You need 30,000 gold in your inventory to create a guild.', + NOT_ALLOWED_GUESTS_JOIN: 'Guests are not allowed to join guilds.', + NOT_ALLOWED_GUESTS_CREATE: 'Guests are not allowed to create guilds.' +} as const; diff --git a/packages/common/i18n/ro/item.ts b/packages/common/i18n/ro/item.ts new file mode 100644 index 0000000000..85aaf861ec --- /dev/null +++ b/packages/common/i18n/ro/item.ts @@ -0,0 +1,7 @@ +export default { + CANNOT_ACCESS_LOOTBAG: 'You cannot access this lootbag right now.', + REQUIRES_ACHIEVEMENT: 'This item requires a secret achievement to equip.', + REQUIRES_QUEST: 'You must complete {{quest}} to equip this item.', + SKILL_LEVEL_REQUIREMENT_EQUIP: 'Your {{skill}} must be at least level {{level}} to equip this.', + TOTAL_LEVEL_REQUIREMENT: 'Your total level must be at least {{level}} to equip this item.' +} as const; diff --git a/packages/common/i18n/ro/misc.ts b/packages/common/i18n/ro/misc.ts new file mode 100644 index 0000000000..21b06e29a5 --- /dev/null +++ b/packages/common/i18n/ro/misc.ts @@ -0,0 +1,75 @@ +export default { + ACCEPTED_TRADE: 'You have accepted the trade.', + ACCEPTED_TRADE_OTHER: 'The other player has accepted the trade.', + ALREADY_HAVE_PET: 'You already have a pet.', + BLACK_POTION: 'You drink the black potion and start feeling unwell.', + CANNOT_ADD_ITEMS_TRADE: 'You cannot add any more items to the trade.', + CANNOT_ATTACK_CHEATER: 'That player is a cheater, you do not wanna attack someone like that', + CANNOT_ATTACK_CHEATER_SELF: + 'Sorry but cheaters cannot attack other players, that would not be fair to them!', + CANNOT_ATTACK_MOB: 'You have no reason to attack these creatures.', + CANNOT_ATTACK_PET: 'Are you crazy? Are you out of your mind? Why would you attack a pet?', + CANNOT_ATTACK_PREY: 'You cannot attack while you are the prey.', + CANNOT_ATTACK_TARGET: 'You cannot attack someone who is not your target.', + CANNOT_ATTACK_LEVEL_DIFF: 'You cannot attack someone more than 30 levels above or below you.', + CANNOT_DO_THAT: 'You cannot do that right now.', + CANNOT_DROP_ITEM_DOOR: 'You cannot drop this item while standing in a door.', + CANNOT_PASS_DOOR: 'You cannot pass through this door.', + CANNOT_PICK_UP_ITEM: 'This item can only be picked up by {{username}}.', + CANNOT_TALK: 'You cannot talk right now.', + CANNOT_TRADE_ITEM: 'You cannot trade this item.', + CANNOT_TRADE_CHEATER: 'Sorry but cheaters are not allowed to trade.', + CANNOT_TRADE_CHEATER_OTHER: 'That player is a cheater, he might sell you contraband!', + CANNOT_TRADE_ADMIN: 'As an administrator, you cannot influence the economy.', + CANNOT_TRADE_ADMIN_OTHER: 'The player is an administrator and cannot be traded with.', + DONT_THINK_GO_IN: 'I do not think I should go in there just yet...', + ENTERED_LOBBY: 'You have entered the lobby for {{name}}.', + EXITED_LOBBY: 'You have left the lobby for {{name}}.', + IN_PVP_ZONE: 'You have entered a PvP zone!', + INVALID_AMOUNT: 'You have entered an invalid amount.', + DOOR_KEY_CRUMBLES: 'The key crumbles to dust as you pass through the door.', + MINIMUM_PLAYERS_MINIGAME: 'There must be at least {{minimum}} players to start this minigame.', + NEED_COMBAT: 'You must be in combat to use this ability.', + NEED_WAIT_ABILIY: 'You need to wait {{duration}} seconds before using this ability again.', + NO_IDEA: 'I have no idea what that is.', + NO_ARROWS: 'You do not have any arrows to shoot.', + NO_ACHIEVEMENT_DOOR: + 'You need to complete the achievement {{achievement}} to pass through this door.', + NO_COMBAT_DOOR: 'Your combat level must be at least {{level}} to enter.', + NO_QUEST_DOOR: 'You need to complete the quest {{quest}} to pass through this door.', + NO_KEY_DOOR: 'You do not have the required key to pass through this door.', + NO_SKILL_DOOR: 'Your {{skill}} must be at least {{level}} to enter.', + NO_KNOWLEDGE_USE: 'You do not have the knowledge to use this.', + NO_SPACE: 'You do not have enough space in your inventory.', + NO_SPACE_OTHER: 'The other player does not have enough space in their inventory.', + NO_SPACE_PET: 'You do not have enough space in your pet inventory.', + NOT_IN_PVP_ZONE: 'You are no longer in a PvP zone!', + NOT_ONLINE: 'Player @aquamarine@{{username}}@crimson@ is not online.', + NOT_ENOUGH_MANA: 'You do not have enough mana to use this ability.', + PLEASE_MAKE_ROOM_REWARD: 'Please make room in your inventory to accept this reward', + POISONED: 'You have been poisoned!', + POISON_WORN_OFF: 'The poison has worn off.', + PLEASE_REPORT_BUG: 'An error has occurred, please report this as a bug.', + FREEZE_IMMUNITY: 'You are now immune to freeze effects for {{duration}} seconds.', + FREEZE_IMMUNITY_WORN_OFF: 'Your immunity to freeze effects has worn off.', + FIRE_IMMUNITY: 'You are now immune to fire effects for {{duration}} seconds.', + FIRE_IMMUNITY_WORN_OFF: 'Your immunity to fire effects has worn off.', + FRIENDS_USERNAME_TOO_LONG: 'That username is too long.', + FRIENDS_ADD_SELF: `Listen, I get it, you're lonely. But you cannot add yourself to the friends list.`, + FRIENDS_ALREADY_ADDED: 'That player is already on your friends list.', + FRIENDS_USER_DOES_NOT_EXIST: 'No player with that username exists.', + FRIENDS_NOT_IN_LIST: 'That player is not on your friends list.', + PEOPLE_ONLINE: 'There are currently {{population}} people online.', + SKILL_LEVEL_UP: 'Skill level up!', + SKILL_LEVEL_UP_DESC: 'Congratulations, your {{name}} has reached level {{level}}!', + JAILED: 'You are currently jailed for {{duration}}.', + MUTED: 'You are currently muted.', + LOW_MANA: 'You are low on mana, your attacks will be weaker.', + TRADE_REQUEST: 'You have requested to trade with {{username}}.', + TRADE_REQUEST_OTHER: '{{username}} has requested to trade with you.', + TRADE_EMPTY: `Yo why are y'all trading nothing?`, + TRADE_COMPLETE: 'Thank you for using Kaetram trading system!', + WELCOME: 'Welcome to {{name}}!', + WELCOME_BACK: 'Welcome back to {{name}}!', + WHY_GO_THERE: 'Now hang on, why would I wanna go in there?' +} as const; diff --git a/packages/common/i18n/ro/resource.ts b/packages/common/i18n/ro/resource.ts new file mode 100644 index 0000000000..b1248085eb --- /dev/null +++ b/packages/common/i18n/ro/resource.ts @@ -0,0 +1,18 @@ +export default { + MUST_EQUIP_AXE: 'You must equip an axe in order to cut trees.', + MUST_EQUIP_PICKAXE: 'You must be wielding a pickaxe in order to mine rocks.', + MUST_EQUIP_FISHING: 'You must be wielding a fishing utensil in order to fish.', + MUST_EQUIP_FORAGING: 'You require a special tool to forage this', + + INVALID_LEVEL_LUMBERJACKING: 'You must be level {{level}} in order to cut this tree.', + INVALID_LEVEL_MINING: 'You must be level {{level}} in order to mine this rock.', + INVALID_LEVEL_FISHING: 'You must be level {{level}} in order to fish here.', + INVALID_LEVEL_FORAGING: 'You must be level {{level}} to harvest this resource.', + + UNABLE_TO_INTERACT_LUMBERJACKING: 'You are unable to cut this tree at the moment.', + UNABLE_TO_INTERACT_MINING: 'You do not have the necessary knowledge to mine this rock.', + UNABLE_TO_INTERACT_FISHING: 'You are unable to fish here at the moment.', + UNABLE_TO_INTERACT_FORAGING: 'You are unable to harvest this resource at the moment.', + + NO_REASON_TREE: 'There is no reason for you to cut this tree.' +} as const; diff --git a/packages/common/i18n/ro/store.ts b/packages/common/i18n/ro/store.ts new file mode 100644 index 0000000000..442634a7f2 --- /dev/null +++ b/packages/common/i18n/ro/store.ts @@ -0,0 +1,18 @@ +export default { + WARNING_DUPLICATE: 'Duplicate item key found in store: ', + INVALID_STORE: 'Tried to parse a non-existent store.', + INVALID_STORE_REFRESH: 'Tried to refresh invalid store: ', + INVALID_ITEM_SELECTION: 'Invalid item selection.', + PURCHASE_INVALID_STORE: 'tried purchasing an item that does not exist store: ', + SELL_INVALID_ITEM: 'tried selling an invalid item.', + ITEM_OUT_OF_STOCK: 'This item is currently out of stock.', + NOT_ENOUGH_CURRENCY: 'You do not have enough currency to buy this item.', + NOT_ENOUGH_SPACE: 'You do not have enough space in your inventory.', + CANNOT_SELL_ITEM: 'You cannot sell this item.', + ACTION_STORE_NOT_OPEN: 'Tried to perform an action on a store that is not open.', + CHEATER: 'You have been flagged for cheating. You cannot purchase anything.', + RESTRICTED_STORE: 'This store does not accept any items.', + RESTRICTED_ITEM: 'This item cannot be sold here.', + INVALID_ITEM_COUNT: 'You have entered an invalid amount of items.', + HOLLOW_ADMIN: 'As an admin you cannot interact with the economy.' +} as const; diff --git a/packages/common/i18n/ro/warps.ts b/packages/common/i18n/ro/warps.ts new file mode 100644 index 0000000000..bba4f6f48f --- /dev/null +++ b/packages/common/i18n/ro/warps.ts @@ -0,0 +1,11 @@ +export default { + WARPED_TO: 'You have warped to {{name}}.', + + CANNOT_WARP_ACHIEVEMENT: 'This warp requires an achievement to be finished before use.', + CANNOT_WARP_QUEST: 'You must complete {{questName}} to warp to {{name}}.', + CANNOT_WARP_LEVEL: 'You must be at least level {{level}} to warp here.', + CANNOT_WARP_JAIL: 'You cannot teleport, you are jailed for another {{time}}.', + CANNOT_WARP_TUTORIAL: 'You must finish the tutorial before warping.', + CANNOT_WARP_COMBAT: 'You must wait 10 seconds after finishing combat to warp.', + CANNOT_WARP_COOLDOWN: 'You must wait another {{time}} to warp.' +} as const; diff --git a/packages/common/i18n/ru/crafting.ts b/packages/common/i18n/ru/crafting.ts new file mode 100644 index 0000000000..a27cd95149 --- /dev/null +++ b/packages/common/i18n/ru/crafting.ts @@ -0,0 +1,7 @@ +export default { + INVALID_DATA: 'Неверные данные о крафте, пожалуйста, отправьте сообщение об ошибке.', + INVALID_ITEM: 'Выбран неверный элемент.', + INVALID_ITEMS: 'У вас нет необходимых предметов для его создания.', + SELECT_ITEM: 'Пожалуйста, выберите предмет для изготовления.', + FAILED_CRAFT: 'Вам не удалось создать. {{failedText}}' +} as const; diff --git a/packages/common/i18n/ru/enchant.ts b/packages/common/i18n/ru/enchant.ts new file mode 100644 index 0000000000..512d0184ac --- /dev/null +++ b/packages/common/i18n/ru/enchant.ts @@ -0,0 +1,7 @@ +export default { + NO_ITEM_SELECTED: 'Вы не выбрали предмет для зачарования.', + CANNOT_ENCHANT: 'Выбранный вами предмет не может быть зачарован.', + NO_SHARD: 'Для зачарования предмета необходимо предоставить осколок.', + FAILED_ENCHANT: 'Вы попробовали зачаровать, но ничего не получилось.', + SUCCESSFUL_ENCHANT: 'Вы успешно зачаровали свой предмет.' +} as const; diff --git a/packages/common/i18n/ru/game.ts b/packages/common/i18n/ru/game.ts new file mode 100644 index 0000000000..5de0da228c --- /dev/null +++ b/packages/common/i18n/ru/game.ts @@ -0,0 +1,5 @@ +export default { + NAME: 'Kaetram', + DESCRIPTION: + 'Kaetram - это игровой движок с открытым исходным кодом, созданный для помощи тем, кто хочет начать заниматься разработкой игр. За основу была взята демонстрационная игра компании Little Workshop - BrowserQuest. Активы остались прежними, но сам код был полностью вычищен и переделан с нуля.' +} as const; diff --git a/packages/common/i18n/ru/guilds.ts b/packages/common/i18n/ru/guilds.ts new file mode 100644 index 0000000000..806a885245 --- /dev/null +++ b/packages/common/i18n/ru/guilds.ts @@ -0,0 +1,12 @@ +export default { + ALREADY_EXISTS: 'Гильдия с таким названием уже существует.', + ALREADY_IN_GUILD: 'Вы уже состоите в гильдии.', + CANNOT_KICK_YOURSELF: 'Вы не можете выгнать себя из гильдии.', + GUILD_FULL: 'Эта гильдия работает на пределе возможностей,нет мест', + MUST_FINISH_TUTORIAL_CREATE: 'Перед созданием гильдии необходимо завершить обучение.', + NO_PERMISSION: 'У вас нет на это разрешения.', + NO_PERMISSION_RANK: 'У вас нет разрешения на обновление ранга этого пользователя.', + NOT_ENOUGH_GOLD: 'Для создания гильдии необходимо иметь в инвентаре 30,000 золотых.', + NOT_ALLOWED_GUESTS_JOIN: 'Гостям не разрешается вступать в гильдии.', + NOT_ALLOWED_GUESTS_CREATE: 'Гости не могут создавать гильдии.' +} as const; diff --git a/packages/common/i18n/ru/item.ts b/packages/common/i18n/ru/item.ts new file mode 100644 index 0000000000..e2d11bee42 --- /dev/null +++ b/packages/common/i18n/ru/item.ts @@ -0,0 +1,9 @@ +export default { + CANNOT_ACCESS_LOOTBAG: 'Вы не можете получить доступ к этому мешку прямо сейчас.', + REQUIRES_ACHIEVEMENT: 'Для экипировки этого предмета требуется секретное достижение.', + REQUIRES_QUEST: 'Чтобы экипировать этот предмет, необходимо выполнить {{quest}}.', + SKILL_LEVEL_REQUIREMENT_EQUIP: + 'Для его использования ваш {{skill}} должен быть не ниже {{level}}.', + TOTAL_LEVEL_REQUIREMENT: + 'Чтобы экипировать этот предмет, ваш общий уровень должен быть не ниже {{level}}.' +} as const; diff --git a/packages/common/i18n/ru/misc.ts b/packages/common/i18n/ru/misc.ts new file mode 100644 index 0000000000..4eea0a35c3 --- /dev/null +++ b/packages/common/i18n/ru/misc.ts @@ -0,0 +1,79 @@ +export default { + ACCEPTED_TRADE: 'Вы согласились на сделку.', + ACCEPTED_TRADE_OTHER: 'Другой игрок принял сделку.', + ALREADY_HAVE_PET: 'У вас уже есть домашнее животное.', + BLACK_POTION: 'Вы выпиваете черное зелье и начинаете чувствовать себя плохо.', + CANNOT_ADD_ITEMS_TRADE: 'Вы не можете больше добавлять товары в сделку.', + CANNOT_ATTACK_CHEATER: 'Этот игрок - мошенник, не стоит нападать на такого человека', + CANNOT_ATTACK_CHEATER_SELF: + 'Извините, но читеры не могут атаковать других игроков, это было бы нечестно по отношению к ним!', + CANNOT_ATTACK_MOB: 'У вас нет причин нападать на этих существ.', + CANNOT_ATTACK_PET: 'Вы сошли с ума? Вызвать санитаров? Почему вы напали на домашнее животное?', + CANNOT_ATTACK_PREY: 'Вы не можете атаковать, пока являетесь добычей.', + CANNOT_ATTACK_TARGET: 'Вы не можете атаковать того, кто не является вашей целью.', + CANNOT_ATTACK_LEVEL_DIFF: + 'Вы не можете атаковать того, кто находится более чем на 30 уровней выше или ниже вас.', + CANNOT_DO_THAT: 'Вы не можете сделать это прямо сейчас.', + CANNOT_DROP_ITEM_DOOR: 'Вы не можете бросить этот предмет, стоя в дверях.', + CANNOT_PASS_DOOR: 'Через эту дверь нельзя пройти.', + CANNOT_PICK_UP_ITEM: 'Этот предмет может забрать только {{username}}.', + CANNOT_TALK: 'Сейчас вы не можете говорить.', + CANNOT_TRADE_ITEM: 'Вы не можете обменять этот предмет.', + CANNOT_TRADE_CHEATER: 'Извините, но мошенники к торговле не допускаются.', + CANNOT_TRADE_CHEATER_OTHER: 'Этот игрок - мошенник, он может продать вам контрабанду!', + CANNOT_TRADE_ADMIN: 'Как администратор, вы не можете влиять на экономику.', + CANNOT_TRADE_ADMIN_OTHER: 'Игрок является администратором и с ним нельзя торговать.', + DONT_THINK_GO_IN: 'Я не думаю, что мне стоит туда идти...', + ENTERED_LOBBY: 'Вы вошли в лобби {{name}}.', + EXITED_LOBBY: 'Вы покинули лобби {{name}}.', + IN_PVP_ZONE: 'Вы вошли в зону PvP!', + INVALID_AMOUNT: 'Вы ввели недопустимую сумму.', + DOOR_KEY_CRUMBLES: 'Ключ рассыпается в пыль, когда вы проходите через дверь.', + MINIMUM_PLAYERS_MINIGAME: 'Для начала этой мини-игры должно быть не менее {{minimum}} игроков.', + NEED_COMBAT: 'Для использования этой способности необходимо находиться в бою.', + NEED_WAIT_ABILIY: + 'Перед повторным использованием этой способности необходимо подождать {{duration}} секунд.', + NO_IDEA: 'Я понятия не имею, что это такое.', + NO_ARROWS: 'У вас нет стрел для стрельбы.', + NO_ACHIEVEMENT_DOOR: + 'Чтобы пройти через эту дверь, необходимо выполнить достижение {{achievement}}.', + NO_COMBAT_DOOR: 'Ваш боевой уровень должен быть не ниже {{level}}, чтобы войти.', + NO_QUEST_DOOR: 'Чтобы пройти через эту дверь, необходимо выполнить квест {{quest}}.', + NO_KEY_DOOR: 'У вас нет ключа, необходимого для прохода через эту дверь.', + NO_SKILL_DOOR: 'Ваш {{skill}} должен быть не ниже {{level}}, чтобы войти.', + NO_KNOWLEDGE_USE: 'Вы не обладаете достаточными знаниями, чтобы использовать это.', + NO_SPACE: 'В инвентаре не хватает места.', + NO_SPACE_OTHER: 'У другого игрока недостаточно места в инвентаре.', + NO_SPACE_PET: 'У вас недостаточно места в инвентаре питомца.', + NOT_IN_PVP_ZONE: 'Вы больше не находитесь в зоне PvP!', + NOT_ONLINE: 'Игрок @aquamarine@{{username}}@crimson@ не в сети.', + NOT_ENOUGH_MANA: 'У вас недостаточно маны для использования этой способности.', + PLEASE_MAKE_ROOM_REWARD: + 'Пожалуйста, освободите место в своем инвентаре, чтобы принять эту награду', + POISONED: 'Вы были отравлены!', + POISON_WORN_OFF: 'Яд выветрился.', + PLEASE_REPORT_BUG: 'Произошла ошибка, пожалуйста, сообщите об этом как об ошибке.', + FREEZE_IMMUNITY: + 'Теперь вы невосприимчивы к эффектам замораживания в течение {{duration}} секунд.', + FREEZE_IMMUNITY_WORN_OFF: 'Ваш иммунитет к эффектам замораживания ослаб.', + FIRE_IMMUNITY: 'Теперь вы невосприимчивы к эффектам огня в течение {{duration}} секунд.', + FIRE_IMMUNITY_WORN_OFF: 'Ваш иммунитет к эффектам огня ослаб.', + FRIENDS_USERNAME_TOO_LONG: 'Это имя пользователя слишком длинное.', + FRIENDS_ADD_SELF: `Послушайте, я понимаю, вам одиноко. Но вы не можете добавить себя в список друзей.`, + FRIENDS_ALREADY_ADDED: 'Этот игрок уже находится в списке ваших друзей.', + FRIENDS_USER_DOES_NOT_EXIST: 'Игрока с таким именем пользователя не существует.', + FRIENDS_NOT_IN_LIST: 'Этого игрока нет в вашем списке друзей.', + PEOPLE_ONLINE: 'В настоящее время в сети находится {{population}} человек.', + SKILL_LEVEL_UP: 'Повышение уровня мастерства!', + SKILL_LEVEL_UP_DESC: 'Поздравляем, ваше {{name}} достигло уровня {{level}}!', + JAILED: 'В настоящее время вы находитесь в тюрьме на {{duration}}.', + MUTED: 'В данный момент вы в муте.', + LOW_MANA: 'Если у вас мало маны, ваши атаки будут слабее.', + TRADE_REQUEST: 'Вы запросили торговлю с {{username}}.', + TRADE_REQUEST_OTHER: '{{username}} запросил торговлю с вами.', + TRADE_EMPTY: `Йо, почему вы ничего не торгуете?`, + TRADE_COMPLETE: 'Благодарим Вас за использование торговой системы Kaetram!', + WELCOME: 'Добро пожаловать в {{name}}!', + WELCOME_BACK: 'С возвращением в {{name}}!', + WHY_GO_THERE: 'Погодите, зачем мне туда идти?' +} as const; diff --git a/packages/common/i18n/ru/resource.ts b/packages/common/i18n/ru/resource.ts new file mode 100644 index 0000000000..90d4833d05 --- /dev/null +++ b/packages/common/i18n/ru/resource.ts @@ -0,0 +1,19 @@ +export default { + MUST_EQUIP_AXE: 'Чтобы рубить деревья, необходимо вооружиться топором.', + MUST_EQUIP_PICKAXE: 'Для добычи камней необходимо использовать кирку.', + MUST_EQUIP_FISHING: 'Для ловли рыбы необходимо иметь при себе удочку или что-то другое.', + MUST_EQUIP_FORAGING: 'Для его добычи требуется специальный инструмент', + + INVALID_LEVEL_LUMBERJACKING: 'Вы должны быть {{level}}, чтобы срубить это дерево.', + INVALID_LEVEL_MINING: 'Для добычи этой породы необходимо иметь уровень {{level}}.', + INVALID_LEVEL_FISHING: 'Чтобы ловить здесь рыбу, вы должны иметь уровень {{level}}.', + INVALID_LEVEL_FORAGING: 'Чтобы добыть этот ресурс, необходимо иметь уровень {{level}}.', + + UNABLE_TO_INTERACT_LUMBERJACKING: 'В настоящее время вы не можете спилить это дерево.', + UNABLE_TO_INTERACT_MINING: 'Вы не обладаете необходимыми знаниями для добычи этой породы.', + UNABLE_TO_INTERACT_FISHING: 'В настоящее время вы не можете ловить здесь рыбу.', + UNABLE_TO_INTERACT_FORAGING: 'В настоящее время вы не можете добывать этот ресурс.', + + NO_REASON_TREE: 'Нет никаких причин для того, чтобы спиливать это дерево.', + NO_REASON_FISH: 'Нет никаких причин для того, чтобы ловить здесь рыбу.' +} as const; diff --git a/packages/common/i18n/ru/store.ts b/packages/common/i18n/ru/store.ts new file mode 100644 index 0000000000..551c40eaf9 --- /dev/null +++ b/packages/common/i18n/ru/store.ts @@ -0,0 +1,18 @@ +export default { + WARNING_DUPLICATE: 'В магазине найден дубликат ключа от товара:', + INVALID_STORE: 'Попытка разобрать несуществующий магазин.', + INVALID_STORE_REFRESH: 'Попытался обновить недействительный магазин:', + INVALID_ITEM_SELECTION: 'Неверный выбор элемента.', + PURCHASE_INVALID_STORE: 'пытались приобрести товар, которого нет в магазине:', + SELL_INVALID_ITEM: 'попытка продать недействительный товар.', + ITEM_OUT_OF_STOCK: 'В настоящее время этот товар отсутствует на складе.', + NOT_ENOUGH_CURRENCY: 'У вас недостаточно валюты для покупки этого товара.', + NOT_ENOUGH_SPACE: 'В инвентаре не хватает места.', + CANNOT_SELL_ITEM: 'Вы не можете продать этот товар.', + ACTION_STORE_NOT_OPEN: 'Попытался выполнить действие для магазина, который не открыт.', + CHEATER: 'Вы были отмечены за мошенничество. Вы не можете ничего приобрести.', + RESTRICTED_STORE: 'Этот магазин не принимает никаких товаров.', + RESTRICTED_ITEM: 'Этот товар не может быть продан здесь.', + INVALID_ITEM_COUNT: 'Вы ввели недопустимое количество товаров.', + HOLLOW_ADMIN: 'Как администратор вы не можете взаимодействовать с экономикой.' +} as const; diff --git a/packages/common/i18n/ru/warps.ts b/packages/common/i18n/ru/warps.ts new file mode 100644 index 0000000000..869fb905c4 --- /dev/null +++ b/packages/common/i18n/ru/warps.ts @@ -0,0 +1,12 @@ +export default { + WARPED_TO: 'Вы переместились в {{name}}.', + + CANNOT_WARP_ACHIEVEMENT: + 'Перед использованием этого искривления необходимо получить достижение.', + CANNOT_WARP_QUEST: 'Вы должны завершить {{questName}}, чтобы переместиться в {{name}}.', + CANNOT_WARP_LEVEL: 'Чтобы переместиться сюда, вы должны иметь уровень не ниже {{level}}.', + CANNOT_WARP_JAIL: 'Вы не можете переместится, вы заключены в тюрьму еще на {{time}}.', + CANNOT_WARP_TUTORIAL: 'Перед началом перемещения необходимо завершить обучение.', + CANNOT_WARP_COMBAT: 'После окончания боя необходимо подождать 10 секунд, чтобы переместиться.', + CANNOT_WARP_COOLDOWN: 'Вы должны подождать еще {{time}}, чтобы переместиться.' +} as const; diff --git a/packages/common/i18n/tl/crafting.ts b/packages/common/i18n/tl/crafting.ts new file mode 100644 index 0000000000..5c981156ec --- /dev/null +++ b/packages/common/i18n/tl/crafting.ts @@ -0,0 +1,8 @@ +export default { + INVALID_DATA: 'Hindi wasto ang paggawa, kailangan mo magsumite ng ulat ng bug.', + INVALID_ITEM: 'Hindi wasto ang item na iyong napili.', + INVALID_ITEMS: 'Mali ang item mo para gawin ito.', + SELECT_ITEM: 'Pumili ka ng item para gawin ito.', + FAILED_CRAFT: 'Nabigo kang gumawa. {{failedText}}', + FAILED_CRAFT_ONE: ' You have failed to craft the item.' +} as const; diff --git a/packages/common/i18n/tl/enchant.ts b/packages/common/i18n/tl/enchant.ts new file mode 100644 index 0000000000..d7d03411ca --- /dev/null +++ b/packages/common/i18n/tl/enchant.ts @@ -0,0 +1,7 @@ +export default { + NO_ITEM_SELECTED: 'Kailangan mo pumili ng item para makapag enchant.', + CANNOT_ENCHANT: 'Ang napili mong item ay di pwedeng ma enchant.', + NO_SHARD: 'Kailangan mo ng shard upang ma enchant and item na ito', + FAILED_ENCHANT: 'Triny mong mag enchant pero walang nangyare.', + SUCCESSFUL_ENCHANT: 'Matagumpay mong na enchant ang iyong item.' +} as const; diff --git a/packages/common/i18n/tl/game.ts b/packages/common/i18n/tl/game.ts new file mode 100644 index 0000000000..79a190c450 --- /dev/null +++ b/packages/common/i18n/tl/game.ts @@ -0,0 +1,5 @@ +export default { + NAME: 'Kaetram', + DESCRIPTION: + 'Kaetram ay isang open-source na game-engine, nilikha ito para tulungan and mga interesadong pumasok sa larangan na pag develop ng laro. Ang original na ideya ay batay sa larong BrowserQuest. Ang mga assets ay pareho ngunit and code ay binura at muling ginawa sa simula' +} as const; diff --git a/packages/common/i18n/tl/guilds.ts b/packages/common/i18n/tl/guilds.ts new file mode 100644 index 0000000000..d2ddda3a79 --- /dev/null +++ b/packages/common/i18n/tl/guilds.ts @@ -0,0 +1,13 @@ +export default { + ALREADY_EXISTS: 'Meron nang guild na may ganitong pangalan', + ALREADY_IN_GUILD: 'Ikaw ay nasa guild na.', + CANNOT_KICK_YOURSELF: 'Hindi mong pwedeng paalisin ang iyong sarili', + GUILD_FULL: 'Puno na ang Guild mo.', + MUST_FINISH_TUTORIAL_CREATE: 'Dapat mong tapusin ang tutorial, bago ka makagawa ng guild', + NO_PERMISSION: 'Kailangan mo ng permisyon para gawin yan.', + NO_PERMISSION_RANK: 'Wala kang permisyon na i-update ang ranggo ng miyembrong iyon.', + NOT_ENOUGH_GOLD: + 'Kailangan mo ng 30,000 gold sa iyong imbentaryo para maka gawa ng isang guild.', + NOT_ALLOWED_GUESTS_JOIN: 'Ang mga Guest ay hindi pwedeng sumali sa mga guild.', + NOT_ALLOWED_GUESTS_CREATE: 'Ang mga guest ay hindi pwedeng gumawa nang guild.' +} as const; diff --git a/packages/common/i18n/tl/item.ts b/packages/common/i18n/tl/item.ts new file mode 100644 index 0000000000..4fe8a474f7 --- /dev/null +++ b/packages/common/i18n/tl/item.ts @@ -0,0 +1,8 @@ +export default { + CANNOT_ACCESS_LOOTBAG: 'Hindi pa pwedeng ma access ang lootbag na ito', + REQUIRES_ACHIEVEMENT: "Ang item na ito ay kailangan ng Secret Achievement upang magamit 'to", + REQUIRES_QUEST: 'Kailangan mong tapusin ang {{quest}} para ma equip ito.', + SKILL_LEVEL_REQUIREMENT_EQUIP: + 'Iyong {{skill}} ay kailangang maging {{level}} para ma equip ito.', + TOTAL_LEVEL_REQUIREMENT: 'Your total level must be at least {{level}} to equip this item.' +} as const; diff --git a/packages/common/i18n/tl/misc.ts b/packages/common/i18n/tl/misc.ts new file mode 100644 index 0000000000..205057f01b --- /dev/null +++ b/packages/common/i18n/tl/misc.ts @@ -0,0 +1,86 @@ +export default { + ACCEPTED_TRADE: 'Tinangap mo ang Trade.', + ACCEPTED_TRADE_OTHER: 'Tinanggap na nang ibang player ang trade.', + ALREADY_HAVE_PET: 'Meron ka nang Pet.', + BLACK_POTION: 'Uminom ka nang Black Potion at nagsimulang sumama ang pakiramdam mo.', + CANNOT_ADD_ITEMS_TRADE: 'Hindi ka pwedeng maka dagdag ng item sa Trade.', + CANNOT_ATTACK_CHEATER: 'Ang player na yan ay isang cheater, wag mong atakihin yan', + CANNOT_ATTACK_CHEATER_SELF: 'Paumanhin, hindi maaring maka atake ang mga Cheater', + CANNOT_ATTACK_MOB: 'Hindi mo pwedeng atakihin ang nilalang na ito.', + CANNOT_ATTACK_PET: 'BAWLIW KABA?! Nasisiraan kaba ng bait? bakit ka umaatake ng hayop?!', + CANNOT_ATTACK_PREY: 'Hindi ka maaring umatake habang ikaw ang biktima.', + CANNOT_ATTACK_TARGET: 'Hindi mo maaring atakihin ang salakayin na hindi mo target.', + CANNOT_ATTACK_LEVEL_DIFF: 'Hindi mo maaring atakihin ang player na higit 30 levels sa iyo.', + CANNOT_DO_THAT: 'Hindi mo magawa yan ngayon.', + CANNOT_DROP_ITEM_DOOR: + 'Hindi mo pwedeng mabitawan ang item na ito habang ikaw ay nakatayo sa isang pinto.', + CANNOT_PASS_DOOR: 'Di ka pwedeng makadaan sa pinto na ito.', + CANNOT_GLOBAL_CHAT_SECONDS: + 'Kailangan mong mag hintay ng {{duration}} segundo bago maka gamit ng Global Chat.', + CANNOT_GLOBAL_CHAT_MINUTES: + 'Kailangan mong mag hintay ng {{duration}} minuto bago maka gamit ng Global Chat.', + CANNOT_GLOBAL_CHAT_JAIL: 'Hindi ka pwedeng makapag Global Chat habang ikaw ay nasa kulungan.', + CANNOT_GLOBAL_CHAT_TUTORIAL: + 'Hindi ka pwedeng makapag Global chat habang ikaw ay nasa Tutorial.', + CANNOT_PICK_UP_ITEM: 'ang item na ito at ma ari lamang kunin ni {{username}}.', + CANNOT_TALK: 'Hindi ka makapagsalita ngayon', + CANNOT_TRADE_ITEM: 'Hindi ma aring i-trade ang item na ito.', + CANNOT_TRADE_CHEATER: 'Paumanhi pero bawal mag trade ang mga cheaters.', + CANNOT_TRADE_CHEATER_OTHER: 'Manloloko ang player na yan, baka bebentahan ka ng droga nyan!', + CANNOT_TRADE_ADMIN: 'Bilang isang admin, hindi mo maiimpluwensya ang ekonomiya ng Kaetram.', + CANNOT_TRADE_ADMIN_OTHER: + 'Ang Player na to ay isang admin at hindi maaring makapag trade sakanya.', + DONT_THINK_GO_IN: 'Sa tingin ko, dapat di pa ako papasok diyan.', + ENTERED_LOBBY: 'Pumasok ka sa lobby ni {{name}}.', + EXITED_LOBBY: 'Umalis ka sa lobby ni {{name}}.', + IN_PVP_ZONE: 'Pumasok ka sa isang PvP zone!', + INVALID_AMOUNT: 'Hindi wastong halaga ang nilagay mo.', + DOOR_KEY_CRUMBLES: 'Ang susi ay gumuho at naging alikabok habang dumadaan ka sa pintuan', + MINIMUM_PLAYERS_MINIGAME: + 'Dapat merong at least {{minimum}} na players upang makapag laro sa mini-game na ito.', + NEED_COMBAT: 'Dapat ay nasa laban ka upang magamit ang abilidad na ito', + NEED_WAIT_ABILIY: + 'Kailangan mo mag hintay ng {{duration}} segundo bago gamitin ang abilidad na ito.', + NO_IDEA: 'Di ko alam kung ano ito.', + NO_ARROWS: 'Kailangan mo ng arrow para makapag tira.', + NO_ACHIEVEMENT_DOOR: + 'Kailangan mong kumpletohin ang {{achievement}} upang makapag daan sa pinto na ito.', + NO_COMBAT_DOOR: 'Ang iyong combat level ay dapat at least {{level}} para makapasok.', + NO_QUEST_DOOR: + 'Kailangan mong kumpletuhin ang quest na {{quest}} para makapasok sa pinto na ito.', + NO_KEY_DOOR: 'You do not have the required key to pass through this door.', + NO_SKILL_DOOR: 'Ang {{skill}} ay dapat atleast {{level}} para maka pasok.', + NO_KNOWLEDGE_USE: 'Kulang ang kaalaman mo para gamitin ito.', + NO_SPACE: 'Kulang ng espasyo ang iyong imbentaryo.', + NO_SPACE_OTHER: 'Kulang sa espasyo ang imbentaryo ng ibang malalaro.', + NO_SPACE_PET: 'Kulang ang espasyo ng iyong Pet Inventory.', + NOT_IN_PVP_ZONE: 'Wala ka na sa PvP zone!', + NOT_ONLINE: 'Player @aquamarine@{{username}}@crimson@ ay hindi online.', + NOT_ENOUGH_MANA: 'Kulang ang mana mo para gamitin ang abilidad na ito.', + PLEASE_MAKE_ROOM_REWARD: 'Mag bigay ng puwang sa iyong imbentaryo upang ma tanggap ang reward', + POISONED: 'Nalason ka!', + POISON_WORN_OFF: 'Nawala na ang lason.', + PLEASE_REPORT_BUG: 'May error na naganap, i-report ito bilang isang bug.', + FREEZE_IMMUNITY: 'Ikaw ay immune sa mga Freeze Effect hanggang {{duration}} segundo.', + FREEZE_IMMUNITY_WORN_OFF: 'Nawala na ang immunity mo sa Freeze Effect.', + FIRE_IMMUNITY: 'Ikaw ay immune sa mga Fire Effect hanggang {{duration}} segundo.', + FIRE_IMMUNITY_WORN_OFF: 'Nawala na ang immunity mo sa Fire Effect.', + FRIENDS_USERNAME_TOO_LONG: 'Ang username mo ay masyadong mahaba.', + FRIENDS_ADD_SELF: `Makinig ka, alam ko ikaw ay nag-iisa at walang jowa pero di mo pwedeng i-add sarili mo.`, + FRIENDS_ALREADY_ADDED: 'Ang player na ito ay nasa Friends List mo na.', + FRIENDS_USER_DOES_NOT_EXIST: 'Walang player na merong ganon na username.', + FRIENDS_NOT_IN_LIST: 'Ang player na to ay wala sa iyong Friends list.', + PEOPLE_ONLINE: 'Merong {{population}} na manlalaro.', + SKILL_LEVEL_UP: 'Tumaas ang level ng skill mo', + SKILL_LEVEL_UP_DESC: 'Congratulations, si {{name}} ay naging {{level}}!', + JAILED: 'Ikaw ay nasa kulungan hanggang {{duration}}.', + MUTED: 'Ikaw ay naka-mute.', + LOW_MANA: 'Mababa ang mana mo, ang iyong mga atake ay magiging mas mahina.', + TRADE_REQUEST: 'Humihiling kang makipag trade kay {{username}}.', + TRADE_REQUEST_OTHER: 'Si {{username}} ay humihiling na makipag trade sa iyo.', + TRADE_EMPTY: `Yo, Bakit wala kayong pinagpalit?`, + TRADE_COMPLETE: 'Salamat sa paggamit ng Trading System nang Kaetram!', + WELCOME: 'Maligayang pagdating {{name}}!', + WELCOME_BACK: 'Maligayang pag balik {{name}}!', + WHY_GO_THERE: 'Teka lang, bakit ako pupunta diyan?' +} as const; diff --git a/packages/common/i18n/tl/resource.ts b/packages/common/i18n/tl/resource.ts new file mode 100644 index 0000000000..94a108ea87 --- /dev/null +++ b/packages/common/i18n/tl/resource.ts @@ -0,0 +1,19 @@ +export default { + MUST_EQUIP_AXE: 'You must equip an axe in order to cut trees.', + MUST_EQUIP_PICKAXE: 'You must be wielding a pickaxe in order to mine rocks.', + MUST_EQUIP_FISHING: 'You must be wielding a fishing utensil in order to fish.', + MUST_EQUIP_FORAGING: 'You require a special tool to forage this', + + INVALID_LEVEL_LUMBERJACKING: 'You must be level {{level}} in order to cut this tree.', + INVALID_LEVEL_MINING: 'You must be level {{level}} in order to mine this rock.', + INVALID_LEVEL_FISHING: 'You must be level {{level}} in order to fish here.', + INVALID_LEVEL_FORAGING: 'You must be level {{level}} to harvest this resource.', + + UNABLE_TO_INTERACT_LUMBERJACKING: 'You are unable to cut this tree at the moment.', + UNABLE_TO_INTERACT_MINING: 'You do not have the necessary knowledge to mine this rock.', + UNABLE_TO_INTERACT_FISHING: 'You are unable to fish here at the moment.', + UNABLE_TO_INTERACT_FORAGING: 'You are unable to harvest this resource at the moment.', + + NO_REASON_TREE: 'There is no reason for you to cut this tree.', + NO_REASON_FISHING: 'There is no reason for you to fish here.' +} as const; diff --git a/packages/common/i18n/tl/store.ts b/packages/common/i18n/tl/store.ts new file mode 100644 index 0000000000..442634a7f2 --- /dev/null +++ b/packages/common/i18n/tl/store.ts @@ -0,0 +1,18 @@ +export default { + WARNING_DUPLICATE: 'Duplicate item key found in store: ', + INVALID_STORE: 'Tried to parse a non-existent store.', + INVALID_STORE_REFRESH: 'Tried to refresh invalid store: ', + INVALID_ITEM_SELECTION: 'Invalid item selection.', + PURCHASE_INVALID_STORE: 'tried purchasing an item that does not exist store: ', + SELL_INVALID_ITEM: 'tried selling an invalid item.', + ITEM_OUT_OF_STOCK: 'This item is currently out of stock.', + NOT_ENOUGH_CURRENCY: 'You do not have enough currency to buy this item.', + NOT_ENOUGH_SPACE: 'You do not have enough space in your inventory.', + CANNOT_SELL_ITEM: 'You cannot sell this item.', + ACTION_STORE_NOT_OPEN: 'Tried to perform an action on a store that is not open.', + CHEATER: 'You have been flagged for cheating. You cannot purchase anything.', + RESTRICTED_STORE: 'This store does not accept any items.', + RESTRICTED_ITEM: 'This item cannot be sold here.', + INVALID_ITEM_COUNT: 'You have entered an invalid amount of items.', + HOLLOW_ADMIN: 'As an admin you cannot interact with the economy.' +} as const; diff --git a/packages/common/i18n/tl/warps.ts b/packages/common/i18n/tl/warps.ts new file mode 100644 index 0000000000..6f91d3dfc4 --- /dev/null +++ b/packages/common/i18n/tl/warps.ts @@ -0,0 +1,13 @@ +export default { + WARPED_TO: 'Ikaw ay winarp kay {{name}}.', + + CANNOT_WARP_ACHIEVEMENT: + 'Ang warp na ito ay kailangan ng Achievement na dapat tapusin bago ito gamitin.', + CANNOT_WARP_QUEST: 'Kailangan mong tapusin ang {{questName}} para makapag warp kay {{name}}.', + CANNOT_WARP_LEVEL: 'Kailangan mo maging atleast level {{level}} para makapag warp dito.', + CANNOT_WARP_JAIL: 'Hindi ka pwedeng mag-teleport dahil ikaw ay nakulong hanggang {{time}}.', + CANNOT_WARP_TUTORIAL: 'Kailangan mong tapusin ang tutorial bago makapag warp.', + CANNOT_WARP_COMBAT: + 'Kailangan mong mag hintay ng Sampung segundo pagkatapos mong lumaban upang makapag warp.', + CANNOT_WARP_COOLDOWN: 'Kailangan mo mag hintay ng {{time}} para makapag warp.' +} as const; diff --git a/packages/common/network/impl/ability.ts b/packages/common/network/impl/ability.ts index bcdb8021ca..77580b952e 100644 --- a/packages/common/network/impl/ability.ts +++ b/packages/common/network/impl/ability.ts @@ -2,11 +2,42 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { AbilityPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules, Opcodes } from '@kaetram/common/network'; -export default class Container extends Packet { - public constructor(opcode: Opcodes.Ability, data: AbilityPacket) { +/** Raw ability information from the JSON file. */ +export interface RawAbilityLevelData { + cooldown?: number; + duration?: number; + mana?: number; +} + +export interface RawAbilityData { + type: string; + levels?: { [level: number]: RawAbilityLevelData }; +} + +export interface RawAbility { + [key: string]: RawAbilityData; +} + +/** Object ability information. */ +export interface AbilityData { + key: string; + level: number; + quickSlot?: number; + type?: Modules.AbilityType; +} + +export interface SerializedAbility { + abilities: AbilityData[]; +} + +export type AbilityPacketData = SerializedAbility | AbilityData; + +export type AbilityPacketCallback = (opcode: Opcodes.Ability, info: AbilityPacketData) => void; + +export default class AbilityPacket extends Packet { + public constructor(opcode: Opcodes.Ability, data: AbilityPacketData) { super(Packets.Ability, opcode, data); } } diff --git a/packages/common/network/impl/achievement.ts b/packages/common/network/impl/achievement.ts index 98f996b5d3..f63993ff78 100644 --- a/packages/common/network/impl/achievement.ts +++ b/packages/common/network/impl/achievement.ts @@ -3,10 +3,73 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { AchievementPacket } from '@kaetram/common/types/messages/outgoing'; +/** + * Achievement data straight from the JSON file. + */ -export default class Achievement extends Packet { - public constructor(opcode: Opcodes.Achievement, data: AchievementPacket) { +export interface RawAchievement { + name: string; + description?: string; + region?: string; // The region that the achievement belongs to. + hidden?: boolean; // Whether or not to display description and achievement title. + secret?: boolean; // Secret achievements are only displayed when completed. + + npc?: string; // NPC handing out the achievement. + dialogueHidden?: string[]; // Dialogue to display before the achievement is discovered. + dialogueStarted?: string[]; // Dialogue when the achievement has been started. + + mob?: string | string[]; // If the achievement requires a mob (or mobs) to be killed. + mobCount?: number; // How many of the mobs to be killed. + + item?: string; // If the achievement requires an item to be found. + itemCount?: number; // How much of an item to bring. + + rewardItem?: string; // String of the item we are rewarding. + rewardItemCount?: number; // How much of the item to reward. + + rewardSkill?: string; // Skill we are rewarding experience in. + rewardExperience?: number; // How much experience to reward. + + rewardAbility?: string; // Key of the ability that is being rewarded. + rewardAbilityLevel?: number; // Optional, otherwise defaults to 1. + + // Experience reward to skills will be added later. +} + +/** + * Achievement data object that can be stored in the database + * or relayed to the server. The optional parameters are used + * when batching the data to the client. + */ + +export interface AchievementData { + key: string; + name?: string; + description?: string; + region?: string; + stage: number; + stageCount?: number; + secret?: boolean; +} + +export interface SerializedAchievement { + achievements: AchievementData[]; +} + +export interface AchievementPacketData { + key?: string; + name?: string; + description?: string; + stage?: number; + achievements?: AchievementData[]; +} + +export type AchievementPacketCallback = ( + opcode: Opcodes.Achievement, + info: AchievementPacketData +) => void; +export default class AchievementPacket extends Packet { + public constructor(opcode: Opcodes.Achievement, data: AchievementPacketData) { super(Packets.Achievement, opcode, data); } } diff --git a/packages/common/network/impl/animation.ts b/packages/common/network/impl/animation.ts index 0ea498931c..80e8d47e91 100644 --- a/packages/common/network/impl/animation.ts +++ b/packages/common/network/impl/animation.ts @@ -2,10 +2,18 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { AnimationPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules } from '@kaetram/common/network'; -export default class Animation extends Packet { - public constructor(data: AnimationPacket) { +export interface AnimationPacketData { + instance: string; + action: Modules.Actions; + resourceInstance?: string; +} + +export type AnimationPacketCallback = (info: AnimationPacketData) => void; + +export default class AnimationPacket extends Packet { + public constructor(data: AnimationPacketData) { super(Packets.Animation, undefined, data); } } diff --git a/packages/common/network/impl/blink.ts b/packages/common/network/impl/blink.ts index 20f899b95b..7982d89524 100644 --- a/packages/common/network/impl/blink.ts +++ b/packages/common/network/impl/blink.ts @@ -2,7 +2,9 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -export default class Blink extends Packet { +export type BlinkPacketCallback = (instance: string) => void; + +export default class BlinkPacket extends Packet { public constructor(instance: string) { super(Packets.Blink, undefined, instance); } diff --git a/packages/common/network/impl/bubble.ts b/packages/common/network/impl/bubble.ts index 3e068340cb..046682ae33 100644 --- a/packages/common/network/impl/bubble.ts +++ b/packages/common/network/impl/bubble.ts @@ -2,7 +2,17 @@ import Packet from '../packet'; import { Opcodes, Packets } from '@kaetram/common/network'; -export default class Bubble extends Packet { +export interface BubblePacketData { + instance: string; + text: string; + duration?: number; + x?: number; + y?: number; +} + +export type BubblePacketCallback = (opcode: Opcodes.Bubble, info: BubblePacketData) => void; + +export default class BubblePacket extends Packet { public constructor(data: unknown, opcode = Opcodes.Bubble.Entity) { super(Packets.Bubble, opcode, data); } diff --git a/packages/common/network/impl/camera.ts b/packages/common/network/impl/camera.ts index 234044ba41..6d2f13df97 100644 --- a/packages/common/network/impl/camera.ts +++ b/packages/common/network/impl/camera.ts @@ -4,7 +4,9 @@ import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -export default class Camera extends Packet { +export type CameraPacketCallback = (opcode: Opcodes.Camera) => void; + +export default class CameraPacket extends Packet { public constructor(opcode: Opcodes.Camera) { super(Packets.Camera, opcode); } diff --git a/packages/common/network/impl/chat.ts b/packages/common/network/impl/chat.ts index 981e3585be..d70f0450fe 100644 --- a/packages/common/network/impl/chat.ts +++ b/packages/common/network/impl/chat.ts @@ -2,11 +2,20 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { ChatPacket } from '@kaetram/common/types/messages/outgoing'; -import type { ChatPacket as HubChatPacket } from '@kaetram/common/types/messages/hub'; +import type { ChatPacketData as HubChatPacketData } from '@kaetram/common/types/messages/hub'; -export default class Chat extends Packet { - public constructor(data: ChatPacket | HubChatPacket) { +export interface ChatPacketData { + instance?: string; // Entity that the chat packet belongs to. + message: string; // Message contents of the packet. + withBubble?: boolean; // If the message should have a bubble. + colour?: string; // Colour of the message. + source?: string; +} + +export type ChatPacketCallback = (info: ChatPacketData) => void; + +export default class ChatPacket extends Packet { + public constructor(data: ChatPacketData | HubChatPacketData) { super(Packets.Chat, undefined, data); } } diff --git a/packages/common/network/impl/combat.ts b/packages/common/network/impl/combat.ts index e3ad990492..7adc37054b 100644 --- a/packages/common/network/impl/combat.ts +++ b/packages/common/network/impl/combat.ts @@ -2,11 +2,19 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; +import type { HitData } from '@kaetram/common/types/info'; import type { Opcodes } from '@kaetram/common/network'; -import type { CombatPacket } from '@kaetram/common/types/messages/outgoing'; -export default class Combat extends Packet { - public constructor(opcode: Opcodes.Combat, data: CombatPacket) { +export interface CombatPacketData { + instance: string; // The entity the combat packet revolves around. + target: string; // Instance of the targeted entity. + hit: HitData; +} + +export type CombatPacketCallback = (opcode: Opcodes.Combat, info: CombatPacketData) => void; + +export default class CombatPacket extends Packet { + public constructor(opcode: Opcodes.Combat, data: CombatPacketData) { super(Packets.Combat, opcode, data); } } diff --git a/packages/common/network/impl/command.ts b/packages/common/network/impl/command.ts index 820c18b34a..7fed0520b6 100644 --- a/packages/common/network/impl/command.ts +++ b/packages/common/network/impl/command.ts @@ -2,10 +2,14 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { CommandPacket } from '@kaetram/common/types/messages/outgoing'; +export interface CommandPacketData { + command: string; +} + +export type CommandPacketCallback = (info: CommandPacketData) => void; -export default class Command extends Packet { - public constructor(data: CommandPacket) { +export default class CommandPacket extends Packet { + public constructor(data: CommandPacketData) { super(Packets.Command, undefined, data); } } diff --git a/packages/common/network/impl/container.ts b/packages/common/network/impl/container.ts index b505a1fc20..fd68f01013 100644 --- a/packages/common/network/impl/container.ts +++ b/packages/common/network/impl/container.ts @@ -2,11 +2,22 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { ContainerPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules, Opcodes } from '@kaetram/common/network'; +import type { SerializedContainer, SlotData } from '@kaetram/common/types/slot'; -export default class Container extends Packet { - public constructor(opcode: Opcodes.Container, data: ContainerPacket) { +export interface ContainerPacketData { + type: Modules.ContainerType; + data?: SerializedContainer; // Batch data + slot?: SlotData; // Used for adding or removing an item to the container. +} + +export type ContainerPacketCallback = ( + opcode: Opcodes.Container, + info: ContainerPacketData +) => void; + +export default class ContainerPacket extends Packet { + public constructor(opcode: Opcodes.Container, data: ContainerPacketData) { super(Packets.Container, opcode, data); } } diff --git a/packages/common/network/impl/countdown.ts b/packages/common/network/impl/countdown.ts index 0c9ffd4113..3d20fb7a05 100644 --- a/packages/common/network/impl/countdown.ts +++ b/packages/common/network/impl/countdown.ts @@ -2,10 +2,15 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { CountdownPacket } from '@kaetram/common/types/messages/outgoing'; +export interface CountdownPacketData { + instance: string; + time: number; +} + +export type CountdownPacketCallback = (info: CountdownPacketData) => void; -export default class Countdown extends Packet { - public constructor(data: CountdownPacket) { +export default class CountdownPacket extends Packet { + public constructor(data: CountdownPacketData) { super(Packets.Countdown, undefined, data); } } diff --git a/packages/common/network/impl/crafting.ts b/packages/common/network/impl/crafting.ts index 59172e4f11..65b46816d0 100644 --- a/packages/common/network/impl/crafting.ts +++ b/packages/common/network/impl/crafting.ts @@ -2,11 +2,49 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { CraftingPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules, Opcodes } from '@kaetram/common/network'; -export default class Crafting extends Packet { - public constructor(opcode: Opcodes.Crafting, data: CraftingPacket) { +export interface CraftingItemPreview { + key: string; + level: number; +} +export interface CraftingRequirement { + key: string; + count: number; + name?: string; +} + +export interface CraftingResult { + count: number; +} + +export interface CraftingItem { + level: number; + experience: number; + chance?: number; // Out of 100 chance of success + requirements: CraftingRequirement[]; + result: CraftingResult; +} + +// Crafting JSON is just a dictionary that contains information about craftable items for each skill. +export interface CraftingInfo { + [key: string]: { [key: string]: CraftingItem }; +} + +export interface CraftingPacketData { + type?: Modules.Skills; + previews?: CraftingItemPreview[]; // The keys of the items we are crafting. + key?: string; // The key of the item we are crafting. + name?: string; + level?: number; // The level required to craft the item. + requirements?: CraftingRequirement[]; + result?: number; // The amount the item we are crafting will give. +} + +export type CraftingPacketCallback = (opcode: Opcodes.Crafting, info: CraftingPacketData) => void; + +export default class CraftingPacket extends Packet { + public constructor(opcode: Opcodes.Crafting, data: CraftingPacketData) { super(Packets.Crafting, opcode, data); } } diff --git a/packages/common/network/impl/death.ts b/packages/common/network/impl/death.ts index 39dd117bd5..94a537ee0f 100644 --- a/packages/common/network/impl/death.ts +++ b/packages/common/network/impl/death.ts @@ -2,7 +2,9 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -export default class Death extends Packet { +export type DeathPacketCallback = () => void; + +export default class DeathPacket extends Packet { public constructor(instance: string) { super(Packets.Death, undefined, instance); } diff --git a/packages/common/network/impl/despawn.ts b/packages/common/network/impl/despawn.ts index ebb93e11d6..5e7779701a 100644 --- a/packages/common/network/impl/despawn.ts +++ b/packages/common/network/impl/despawn.ts @@ -2,10 +2,15 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { DespawnPacket } from '@kaetram/common/types/messages/outgoing'; +export interface DespawnPacketData { + instance: string; // The entity we are despawning. + regions?: number[]; // Region checker for when an entity despawns. +} + +export type DespawnPacketCallback = (info: DespawnPacketData) => void; -export default class Despawn extends Packet { - public constructor(info: DespawnPacket) { +export default class DespawnPacket extends Packet { + public constructor(info: DespawnPacketData) { super(Packets.Despawn, undefined, info); } } diff --git a/packages/common/network/impl/effect.ts b/packages/common/network/impl/effect.ts index 8deaba3b51..d5cb65937d 100644 --- a/packages/common/network/impl/effect.ts +++ b/packages/common/network/impl/effect.ts @@ -2,11 +2,17 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { EffectPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules, Opcodes } from '@kaetram/common/network'; -export default class Effect extends Packet { - public constructor(opcode: Opcodes.Effect, data: EffectPacket) { +export interface EffectPacketData { + instance: string; + effect: Modules.Effects; +} + +export type EffectPacketCallback = (opcode: Opcodes.Effect, info: EffectPacketData) => void; + +export default class EffectPacket extends Packet { + public constructor(opcode: Opcodes.Effect, data: EffectPacketData) { super(Packets.Effect, opcode, data); } } diff --git a/packages/common/network/impl/enchant.ts b/packages/common/network/impl/enchant.ts index 8f5f07e6ce..0bfae4651e 100644 --- a/packages/common/network/impl/enchant.ts +++ b/packages/common/network/impl/enchant.ts @@ -4,7 +4,14 @@ import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -export default class Enchant extends Packet { +export interface EnchantPacketData { + index: number; + isShard?: boolean; +} + +export type EnchantPacketCallback = (opcode: Opcodes.Enchant, info: EnchantPacketData) => void; + +export default class EnchantPacket extends Packet { public constructor(opcode: Opcodes.Enchant, data: unknown) { super(Packets.Enchant, opcode, data); } diff --git a/packages/common/network/impl/equipment.ts b/packages/common/network/impl/equipment.ts index 7d7626745d..e7ad64455f 100644 --- a/packages/common/network/impl/equipment.ts +++ b/packages/common/network/impl/equipment.ts @@ -2,11 +2,48 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { EquipmentPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules, Opcodes } from '@kaetram/common/network'; +import type { Bonuses, Enchantments, Light, Stats } from '../../types/item'; +import type { DefinePacket } from './utils'; -export default class Equipment extends Packet { - public constructor(opcode: Opcodes.Equipment, data: EquipmentPacket) { +export type EquipmentType = 'weapon' | 'armour' | 'pendant' | 'ring' | 'boots'; + +export interface EquipmentData { + type: Modules.Equipment; + key: string; + name?: string; + count: number; + enchantments: Enchantments; + attackRange?: number; // Specifically for weapon type. + poisonous?: boolean; + attackStats?: Stats; + defenseStats?: Stats; + bonuses?: Bonuses; + attackStyle?: Modules.AttackStyle; + attackStyles?: Modules.AttackStyle[]; + bow?: boolean; + archer?: boolean; + light?: Light; +} + +export interface SerializedEquipment { + equipments: EquipmentData[]; +} + +type Equipment = DefinePacket<{ + [Opcodes.Equipment.Batch]: { data: SerializedEquipment }; + [Opcodes.Equipment.Equip]: { data: EquipmentData }; + [Opcodes.Equipment.Unequip]: { type: Modules.Equipment; count?: number }; + [Opcodes.Equipment.Style]: { attackStyle: Modules.AttackStyle; attackRange: number }; +}>; + +export type EquipmentPacketData = Equipment['Data']; +export type EquipmentPacketValues = Equipment['Values']; +export type EquipmentPacketCallback = Equipment['Callback']; +export type EquipmentPacketOutgoing = Equipment['Outgoing']; + +export default class EquipmentPacket extends Packet { + public constructor(opcode: O, data: EquipmentPacketData[O]) { super(Packets.Equipment, opcode, data); } } diff --git a/packages/common/network/impl/experience.ts b/packages/common/network/impl/experience.ts index 595a2a42f5..e3cfa8d866 100644 --- a/packages/common/network/impl/experience.ts +++ b/packages/common/network/impl/experience.ts @@ -2,11 +2,22 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { ExperiencePacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules, Opcodes } from '@kaetram/common/network'; -export default class Experience extends Packet { - public constructor(opcode: Opcodes.Experience, data: ExperiencePacket) { +export interface ExperiencePacketData { + instance: string; + amount?: number; + level?: number; + skill?: Modules.Skills; +} + +export type ExperiencePacketCallback = ( + opcode: Opcodes.Experience, + info: ExperiencePacketData +) => void; + +export default class ExperiencePacket extends Packet { + public constructor(opcode: Opcodes.Experience, data: ExperiencePacketData) { super(Packets.Experience, opcode, data); } } diff --git a/packages/common/network/impl/friends.ts b/packages/common/network/impl/friends.ts index d4f516a8bd..b811ee2f57 100644 --- a/packages/common/network/impl/friends.ts +++ b/packages/common/network/impl/friends.ts @@ -3,11 +3,28 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { FriendsPacket } from '@kaetram/common/types/messages/outgoing'; -import type { FriendsPacket as HubFriendsPacket } from '@kaetram/common/types/messages/hub'; +import type { FriendsPacketData as HubFriendsPacketData } from '@kaetram/common/types/messages/hub'; -export default class Friends extends Packet { - public constructor(opcode?: Opcodes.Friends, data?: FriendsPacket | HubFriendsPacket) { +export interface FriendInfo { + online: boolean; + serverId: number; +} + +export interface Friend { + [username: string]: FriendInfo; +} + +export interface FriendsPacketData { + list?: Friend; + username?: string; + status?: boolean; + serverId?: number; +} + +export type FriendsPacketCallback = (opcode: Opcodes.Friends, info: FriendsPacketData) => void; + +export default class FriendsPacket extends Packet { + public constructor(opcode?: Opcodes.Friends, data?: FriendsPacketData | HubFriendsPacketData) { super(Packets.Friends, opcode, data); } } diff --git a/packages/common/network/impl/guild.ts b/packages/common/network/impl/guild.ts index 62e80ad5dc..97da409e9b 100644 --- a/packages/common/network/impl/guild.ts +++ b/packages/common/network/impl/guild.ts @@ -2,11 +2,69 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { GuildPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules, Opcodes } from '@kaetram/common/network'; -export default class Guild extends Packet { - public constructor(opcode?: Opcodes.Guild, data?: GuildPacket) { +export interface Member { + username: string; + rank?: Modules.GuildRank; + joinDate?: number; + serverId?: number; // -1 if offline +} + +export interface Decoration { + banner: Modules.BannerColour; + outline: Modules.BannerOutline; + outlineColour: Modules.BannerColour; + crest: Modules.BannerCrests; +} + +export interface GuildData { + identifier: string; + name: string; + creationDate: number; + owner: string; + inviteOnly: boolean; + experience: number; + decoration: Decoration; + members: Member[]; +} + +// Used to relay update information to other players. +export interface UpdateInfo { + opcode: Opcodes.Guild; + username: string; + serverId?: number; + rank?: Modules.GuildRank; +} + +// Contains only necessary information to be passed to client. +export interface ListInfo { + name: string; + members: number; + decoration: Decoration; +} + +export interface GuildPacketData { + identifier?: string; + name?: string; + username?: string; + usernames?: string[]; + serverId?: number; + member?: Member; + members?: Member[]; + total?: number; + guilds?: ListInfo[]; + message?: string; + owner?: string; + decoration?: Decoration; + experience?: number; + rank?: Modules.GuildRank; +} + +export type GuildPacketCallback = (opcode: Opcodes.Guild, info: GuildPacketData) => void; + +export default class GuildPacket extends Packet { + public constructor(opcode?: Opcodes.Guild, data?: GuildPacketData) { super(Packets.Guild, opcode, data); } } diff --git a/packages/common/network/impl/handshake.ts b/packages/common/network/impl/handshake.ts index b8dcf02cdb..b7af732734 100644 --- a/packages/common/network/impl/handshake.ts +++ b/packages/common/network/impl/handshake.ts @@ -2,11 +2,37 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { HandshakePacket } from '@kaetram/common/types/messages/outgoing'; -import type { HandshakePacket as HubHandshakePacket } from '@kaetram/common/types/messages/hub'; +export interface ClientHandshakePacketData { + type: 'client'; + instance?: string; // Player's instance. + serverId?: number; +} + +export interface HubHandshakePacketData { + type: 'hub'; + gVer: string; // Game version. + name: string; + serverId: number; + accessToken: string; // Denied if mismatches + remoteHost: string; // Relayed to game clients as the server's IP. + port: number; + players: string[]; + maxPlayers: number; +} + +export interface AdminHandshakePacketData { + type: 'admin'; + accessToken: string; +} + +export type HandshakePacketData = + | ClientHandshakePacketData + | HubHandshakePacketData + | AdminHandshakePacketData; +export type HandshakePacketCallback = (data: HandshakePacketData) => void; -export default class Handshake extends Packet { - public constructor(data: HandshakePacket | HubHandshakePacket) { +export default class HandshakePacket extends Packet { + public constructor(data: HandshakePacketData) { super(Packets.Handshake, undefined, data); } } diff --git a/packages/common/network/impl/heal.ts b/packages/common/network/impl/heal.ts index b947fdd007..b82f4a6214 100644 --- a/packages/common/network/impl/heal.ts +++ b/packages/common/network/impl/heal.ts @@ -2,10 +2,18 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { HealPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Modules } from '@kaetram/common/network'; -export default class Heal extends Packet { - public constructor(data: HealPacket) { +export interface HealPacketData { + instance: string; + type: Modules.HealTypes; + amount: number; +} + +export type HealPacketCallback = (info: HealPacketData) => void; + +export default class HealPacket extends Packet { + public constructor(data: HealPacketData) { super(Packets.Heal, undefined, data); } } diff --git a/packages/common/network/impl/index.ts b/packages/common/network/impl/index.ts index 6be789d4d6..fe40ebda4b 100644 --- a/packages/common/network/impl/index.ts +++ b/packages/common/network/impl/index.ts @@ -1,48 +1,51 @@ -export { default as Handshake } from './handshake'; -export { default as Welcome } from './welcome'; -export { default as Map } from './map'; -export { default as Spawn } from './spawn'; -export { default as List } from './list'; -export { default as Equipment } from './equipment'; -export { default as Sync } from './sync'; -export { default as Movement } from './movement'; -export { default as Teleport } from './teleport'; -export { default as Despawn } from './despawn'; -export { default as Combat } from './combat'; -export { default as Animation } from './animation'; -export { default as Points } from './points'; -export { default as Network } from './network'; -export { default as Chat } from './chat'; -export { default as Command } from './command'; -export { default as Container } from './container'; -export { default as Ability } from './ability'; -export { default as Quest } from './quest'; -export { default as Achievement } from './achievement'; -export { default as Notification } from './notification'; -export { default as Blink } from './blink'; -export { default as Heal } from './heal'; -export { default as Experience } from './experience'; -export { default as Death } from './death'; -export { default as Music } from './music'; -export { default as NPC } from './npc'; -export { default as Respawn } from './respawn'; -export { default as Trade } from './trade'; -export { default as Enchant } from './enchant'; -export { default as Guild } from './guild'; -export { default as Pointer } from './pointer'; -export { default as PVP } from './pvp'; -export { default as Poison } from './poison'; -export { default as Store } from './store'; -export { default as Overlay } from './overlay'; -export { default as Camera } from './camera'; -export { default as Bubble } from './bubble'; -export { default as Skill } from './skill'; -export { default as Update } from './update'; -export { default as Minigame } from './minigame'; -export { default as Effect } from './effect'; -export { default as Friends } from './friends'; -export { default as Rank } from './rank'; -export { default as Player } from './player'; -export { default as Relay } from './relay'; -export { default as Crafting } from './crafting'; -export { default as Countdown } from './countdown'; +export { default as HandshakePacket } from './handshake'; +export { default as WelcomePacket } from './welcome'; +export { default as MapPacket } from './map'; +export { default as SpawnPacket } from './spawn'; +export { default as ListPacket } from './list'; +export { default as EquipmentPacket } from './equipment'; +export { default as SyncPacket } from './sync'; +export { default as MovementPacket } from './movement'; +export { default as TeleportPacket } from './teleport'; +export { default as DespawnPacket } from './despawn'; +export { default as CombatPacket } from './combat'; +export { default as AnimationPacket } from './animation'; +export { default as PointsPacket } from './points'; +export { default as NetworkPacket } from './network'; +export { default as ChatPacket } from './chat'; +export { default as CommandPacket } from './command'; +export { default as ContainerPacket } from './container'; +export { default as AbilityPacket } from './ability'; +export { default as QuestPacket } from './quest'; +export { default as AchievementPacket } from './achievement'; +export { default as NotificationPacket } from './notification'; +export { default as BlinkPacket } from './blink'; +export { default as HealPacket } from './heal'; +export { default as ExperiencePacket } from './experience'; +export { default as DeathPacket } from './death'; +export { default as MusicPacket } from './music'; +export { default as NPCPacket } from './npc'; +export { default as RespawnPacket } from './respawn'; +export { default as TradePacketPacket } from './trade'; +export { default as EnchantPacket } from './enchant'; +export { default as GuildPacket } from './guild'; +export { default as PointerPacket } from './pointer'; +export { default as PVPPacket } from './pvp'; +export { default as PoisonPacket } from './poison'; +export { default as StorePacket } from './store'; +export { default as OverlayPacket } from './overlay'; +export { default as CameraPacket } from './camera'; +export { default as BubblePacket } from './bubble'; +export { default as SkillPacket } from './skill'; +export { default as UpdatePacket } from './update'; +export { default as MinigamePacket } from './minigame'; +export { default as EffectPacket } from './effect'; +export { default as FriendsPacket } from './friends'; +export { default as RankPacket } from './rank'; +export { default as PlayerPacket } from './player'; +export { default as RelayPacket } from './relay'; +export { default as CraftingPacket } from './crafting'; +export { default as InterfacePacket } from './interface'; +export { default as LootBagPacket } from './lootbag'; +export { default as CountdownPacket } from './countdown'; +export { default as ResourcePacket } from './resource'; diff --git a/packages/common/network/impl/interface.ts b/packages/common/network/impl/interface.ts new file mode 100644 index 0000000000..00c73b8905 --- /dev/null +++ b/packages/common/network/impl/interface.ts @@ -0,0 +1,20 @@ +import Packet from '../packet'; + +import { Packets } from '@kaetram/common/network'; + +import type { Modules, Opcodes } from '@kaetram/common/network'; + +export interface InterfacePacketData { + identifier: Modules.Interfaces; +} + +export type InterfacePacketCallback = ( + opcode: Opcodes.Interface, + data: InterfacePacketData +) => void; + +export default class Interface extends Packet { + public constructor(opcode: Opcodes.Interface, data: InterfacePacketData) { + super(Packets.Interface, opcode, data); + } +} diff --git a/packages/common/network/impl/list.ts b/packages/common/network/impl/list.ts index d5a57a9400..cb3e83c43f 100644 --- a/packages/common/network/impl/list.ts +++ b/packages/common/network/impl/list.ts @@ -3,10 +3,16 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { ListPacket } from '@kaetram/common/types/messages/outgoing'; -export default class List extends Packet { - public constructor(opcode: Opcodes.List, info: ListPacket) { +export interface EntityListPacketData { + entities?: string[]; // List of entity instances to be checked in the client. + positions?: { [instance: string]: Position }; // List of entity positions to verify. +} + +export type EntityListPacketCallback = (opcode: Opcodes.List, info: EntityListPacketData) => void; + +export default class ListPacket extends Packet { + public constructor(opcode: Opcodes.List, info: EntityListPacketData) { super(Packets.List, opcode, info); } } diff --git a/packages/common/network/impl/lootbag.ts b/packages/common/network/impl/lootbag.ts index ba2c98ec2c..aaac17c20e 100644 --- a/packages/common/network/impl/lootbag.ts +++ b/packages/common/network/impl/lootbag.ts @@ -2,10 +2,18 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { LootBagPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Opcodes } from '@kaetram/common/network'; +import type { SlotData } from '@kaetram/common/types/slot'; -export default class LootBag extends Packet { - public constructor(info: LootBagPacket) { - super(Packets.LootBag, undefined, info); +export interface LootBagPacketData { + items?: SlotData[]; + index?: number; +} + +export type LootBagPacketCallback = (opcode: Opcodes.LootBag, info: LootBagPacketData) => void; + +export default class LootBagPacket extends Packet { + public constructor(opcode: Opcodes.LootBag, info: LootBagPacketData) { + super(Packets.LootBag, opcode, info); } } diff --git a/packages/common/network/impl/map.ts b/packages/common/network/impl/map.ts index eac1fd6105..249e7b520c 100644 --- a/packages/common/network/impl/map.ts +++ b/packages/common/network/impl/map.ts @@ -3,7 +3,9 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import Utils from '@kaetram/common/util/utils'; -export default class Map extends Packet { +export type MapPacketCallback = (data: string) => void; + +export default class MapPacket extends Packet { public constructor(data: unknown) { super( Packets.Map, diff --git a/packages/common/network/impl/minigame.ts b/packages/common/network/impl/minigame.ts index 51a66dd902..b60f5117f5 100644 --- a/packages/common/network/impl/minigame.ts +++ b/packages/common/network/impl/minigame.ts @@ -3,10 +3,20 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { MinigamePacket } from '@kaetram/common/types/messages/outgoing'; -export default class Minigame extends Packet { - public constructor(opcode: Opcodes.Minigame, data?: MinigamePacket) { +export interface MinigamePacketData { + action: number; + countdown?: number; + score?: number; + redTeamKills?: number; + blueTeamKills?: number; + started?: boolean; +} + +export type MinigamePacketCallback = (opcode: Opcodes.Minigame, info: MinigamePacketData) => void; + +export default class MinigamePacket extends Packet { + public constructor(opcode: Opcodes.Minigame, data?: MinigamePacketData) { super(Packets.Minigame, opcode, data); } } diff --git a/packages/common/network/impl/movement.ts b/packages/common/network/impl/movement.ts index f0b62782b4..c172878eee 100644 --- a/packages/common/network/impl/movement.ts +++ b/packages/common/network/impl/movement.ts @@ -2,11 +2,23 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { MovementPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Opcodes, Modules } from '@kaetram/common/network'; -export default class Movement extends Packet { - public constructor(opcode: Opcodes.Movement, data?: MovementPacket) { +export interface MovementPacketData { + instance: string; // Main entity involved in the movement. + x?: number; // X coordinate of the movement. + y?: number; // Y coordinate of the movement. + forced?: boolean; // Whether or not the movement is forced. + target?: string; // Entity instance we are trying to follow if specified. + orientation?: Modules.Orientation; + state?: boolean; // State about stun/freeze. + movementSpeed?: number; // Movement speed of the entity. +} + +export type MovementPacketCallback = (opcode: Opcodes.Movement, info: MovementPacketData) => void; + +export default class MovementPacket extends Packet { + public constructor(opcode: Opcodes.Movement, data?: MovementPacketData) { super(Packets.Movement, opcode, data); } } diff --git a/packages/common/network/impl/music.ts b/packages/common/network/impl/music.ts index 527bd6b774..12b91aa402 100644 --- a/packages/common/network/impl/music.ts +++ b/packages/common/network/impl/music.ts @@ -2,7 +2,9 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -export default class Music extends Packet { +export type MusicPacketCallback = (newSong?: string) => void; + +export default class MusicPacket extends Packet { public constructor(newSong?: string) { super(Packets.Music, undefined, newSong); } diff --git a/packages/common/network/impl/network.ts b/packages/common/network/impl/network.ts index 19bab9e4d3..1903e6bf53 100644 --- a/packages/common/network/impl/network.ts +++ b/packages/common/network/impl/network.ts @@ -4,7 +4,9 @@ import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -export default class Network extends Packet { +export type NetworkPacketCallback = (opcode?: Opcodes.Network) => void; + +export default class NetworkPacket extends Packet { public constructor(opcode: Opcodes.Network) { super(Packets.Network, opcode); } diff --git a/packages/common/network/impl/notification.ts b/packages/common/network/impl/notification.ts index 438e1fe724..727c71d829 100644 --- a/packages/common/network/impl/notification.ts +++ b/packages/common/network/impl/notification.ts @@ -3,10 +3,22 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { NotificationPacket } from '@kaetram/common/types/messages/outgoing'; -export default class Notification extends Packet { - public constructor(opcode: Opcodes.Notification, data: NotificationPacket) { +export interface NotificationPacketData { + title?: string; // Title when displaying a popup. + message: string; // String message to display. + colour?: string; // Colour of the message. + source?: string; + soundEffect?: string; +} + +export type NotificationPacketCallback = ( + opcode: Opcodes.Notification, + info: NotificationPacketData +) => void; + +export default class NotificationPacket extends Packet { + public constructor(opcode: Opcodes.Notification, data: NotificationPacketData) { super(Packets.Notification, opcode, data); } } diff --git a/packages/common/network/impl/npc.ts b/packages/common/network/impl/npc.ts index 1a2b7b5e0a..db2b3c0de0 100644 --- a/packages/common/network/impl/npc.ts +++ b/packages/common/network/impl/npc.ts @@ -3,8 +3,24 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; +import type { SlotData } from '@kaetram/common/types/slot'; -export default class NPC extends Packet { +export interface NPCData { + name?: string; + text?: string[]; + role?: string; + store?: string; +} + +export interface NPCPacketData { + instance?: string; // Used when an NPC sends a text message. + text?: string; // Message to display in a bubble. + slots?: SlotData[]; // When opening a bank NPC. +} + +export type NPCPacketCallback = (opcode: Opcodes.NPC, info: NPCPacketData) => void; + +export default class NPCPacket extends Packet { public constructor(opcode: Opcodes.NPC, data: unknown) { super(Packets.NPC, opcode, data); } diff --git a/packages/common/network/impl/overlay.ts b/packages/common/network/impl/overlay.ts index d9ba638d8e..9e7c4fae03 100644 --- a/packages/common/network/impl/overlay.ts +++ b/packages/common/network/impl/overlay.ts @@ -3,10 +3,30 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { OverlayPacket } from '@kaetram/common/types/messages/outgoing'; -export default class Overlay extends Packet { - public constructor(opcode: Opcodes.Overlay, data?: OverlayPacket) { +export interface SerializedLight { + instance: string; + x: number; + y: number; + colour: string; + diffuse: number; + distance: number; + flickerSpeed: number; + flickerIntensity: number; + + entity?: string; +} + +export interface OverlayPacketData { + image?: string; + colour?: string; + light?: SerializedLight; +} + +export type OverlayPacketCallback = (opcode: Opcodes.Overlay, info: OverlayPacketData) => void; + +export default class OverlayPacket extends Packet { + public constructor(opcode: Opcodes.Overlay, data?: OverlayPacketData) { super(Packets.Overlay, opcode, data); } } diff --git a/packages/common/network/impl/player.ts b/packages/common/network/impl/player.ts index b3c26d96c9..74cc6a580c 100644 --- a/packages/common/network/impl/player.ts +++ b/packages/common/network/impl/player.ts @@ -2,11 +2,33 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { PlayerPacket } from '@kaetram/common/types/messages/hub'; +import type { Opcodes, Modules } from '@kaetram/common/network'; +import type { EntityData } from '@kaetram/common/types/entity'; +import type { EquipmentData } from '@kaetram/common/network/impl/equipment'; -export default class Player extends Packet { - public constructor(opcode: Opcodes.Player, data?: PlayerPacket) { +export interface PlayerPacketData { + username: string; + serverId?: number; + guild?: string; +} + +export interface PlayerData extends EntityData { + rank: Modules.Ranks; + pvp: boolean; + orientation: number; + + experience?: number; + nextExperience?: number; + prevExperience?: number; + + mana?: number; + maxMana?: number; + + equipments: EquipmentData[]; +} + +export default class PlayerPacket extends Packet { + public constructor(opcode: Opcodes.Player, data?: PlayerPacketData) { super(Packets.Player, opcode, data); } } diff --git a/packages/common/network/impl/pointer.ts b/packages/common/network/impl/pointer.ts index e356f3dbd2..1bbc2b36bd 100644 --- a/packages/common/network/impl/pointer.ts +++ b/packages/common/network/impl/pointer.ts @@ -4,7 +4,24 @@ import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -export default class Pointer extends Packet { +export interface PointerData { + type: number; + x?: number; + y?: number; + instance?: string; + button?: string; +} + +export interface PointerPacketData { + instance: string; + x?: number; + y?: number; + button?: string; +} + +export type PointerPacketCallback = (opcode: Opcodes.Pointer, info: PointerPacketData) => void; + +export default class PointerPacket extends Packet { public constructor(opcode: Opcodes.Pointer, data?: unknown) { super(Packets.Pointer, opcode, data); } diff --git a/packages/common/network/impl/points.ts b/packages/common/network/impl/points.ts index d82a5416d7..16f31e6818 100644 --- a/packages/common/network/impl/points.ts +++ b/packages/common/network/impl/points.ts @@ -2,10 +2,18 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { PointsPacket } from '@kaetram/common/types/messages/outgoing'; +export interface PointsPacketData { + instance: string; + hitPoints?: number; + maxHitPoints?: number; + mana?: number; + maxMana?: number; +} + +export type PointsPacketCallback = (info: PointsPacketData) => void; -export default class Points extends Packet { - public constructor(data: PointsPacket) { +export default class PointsPacket extends Packet { + public constructor(data: PointsPacketData) { super(Packets.Points, undefined, data); } } diff --git a/packages/common/network/impl/poison.ts b/packages/common/network/impl/poison.ts index 7a07112ca1..5303303a44 100644 --- a/packages/common/network/impl/poison.ts +++ b/packages/common/network/impl/poison.ts @@ -2,7 +2,9 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -export default class Poison extends Packet { +export type PoisonPacketCallback = (type: number) => void; + +export default class PoisonPacket extends Packet { public constructor(type: number) { super(Packets.Poison, undefined, type); } diff --git a/packages/common/network/impl/pvp.ts b/packages/common/network/impl/pvp.ts index 8ddebd6394..9fa5e83fb0 100644 --- a/packages/common/network/impl/pvp.ts +++ b/packages/common/network/impl/pvp.ts @@ -2,10 +2,14 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { PVPPacket } from '@kaetram/common/types/messages/outgoing'; +export interface PVPPacketData { + state: boolean; +} + +export type PVPPacketCallback = (info: PVPPacketData) => void; -export default class PVP extends Packet { - public constructor(data: PVPPacket) { +export default class PVPPacket extends Packet { + public constructor(data: PVPPacketData) { super(Packets.PVP, undefined, data); } } diff --git a/packages/common/network/impl/quest.ts b/packages/common/network/impl/quest.ts index 654cbc39f9..3f42197d55 100644 --- a/packages/common/network/impl/quest.ts +++ b/packages/common/network/impl/quest.ts @@ -3,10 +3,143 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { QuestPacket } from '@kaetram/common/types/messages/outgoing'; +import type { PointerData } from './pointer'; +import type { PopupData } from '../../types/popup'; -export default class Quest extends Packet { - public constructor(opcode: Opcodes.Quest, data: QuestPacket) { +export interface QuestItem { + key: string; + count: number; +} + +export interface SkillReward { + key: string; + experience: number; +} + +export interface RawStage { + task: string; + npc?: string; + + subStages?: RawStage[]; + + /** Array of mob keys to kill. */ + mob?: string[]; + + /** How many of mobs to be killed. */ + mobCountRequirement?: number; + + /** Item required in the inventory to progress to next stage. */ + itemRequirements?: QuestItem[]; + + /** The items that we are rewarding the player for the stage. */ + itemRewards?: QuestItem[]; + + /** Text for the NPC. */ + text?: string[]; + completedText?: string[]; + hasItemText?: string[]; // Text for if the player has a required item/count in the inventory. + + /** Pointer information */ + pointer?: PointerData; + + /** Popup information */ + popup?: PopupData; + + /** If the stage grants the user an ability. */ + ability?: string; + abilityLevel?: number; // Sets an ability to a level. + + /** If a tree must be cut. */ + tree?: string; + treeCount?: number; // Amount of tress to be cut. + + /** If a fish must be caught */ + fish?: string; + fishCount?: number; + + /** If a rock must be mined */ + rock?: string; + rockCount?: number; + + /** Skill experience rewards */ + skillRewards?: SkillReward[]; + + /** Timer information for the stage */ + timer?: number; +} + +export interface RawQuest { + name: string; + description: string; + rewards?: string[]; + difficulty?: string; + skillRequirements?: { [key: string]: number }; // Skills required to start the quest. + questRequirements?: string[]; // Quests required to start this quest. + hideNPCs?: HideNPC; // NPCs to hide after quest. + stages: { [id: number]: RawStage }; +} + +export interface StageData { + task: string; + npc?: string; + subStages?: RawStage[]; + mob?: string[]; + mobCountRequirement: number; // how many mobs we need to kill to progress + itemRequirements?: QuestItem[]; + itemRewards?: QuestItem[]; + text?: string[]; + completedText?: string[]; + pointer?: PointerData; + popup?: PopupData; + ability?: string; + abilityLevel?: number; + tree?: string; + treeCount?: number; + fish?: string; + fishCount?: number; + rock?: string; + rockCount?: number; + skillRewards?: SkillReward[]; + timer?: number; +} + +export interface QuestData { + key: string; + stage: number; + subStage: number; + completedSubStages: string[]; + + name?: string; + description?: string; + skillRequirements?: { [key: string]: number }; + questRequirements?: string[]; + rewards?: string[]; + difficulty?: string; + stageCount?: number; +} + +export interface QuestPacketData { + key?: string; + stage?: number; + subStage?: number; + quests?: QuestData[]; // Batch of quests + interface?: Opcodes.Quest.Start; // Interface actions +} + +export type QuestPacketCallback = (opcode: Opcodes.Quest, info: QuestPacketData) => void; + +export interface SerializedQuest { + quests: QuestData[]; +} + +export interface HideNPC { + [key: string]: string; +} + +export type TaskType = 'talk' | 'kill' | 'pickup' | 'tree'; + +export default class QuestPacket extends Packet { + public constructor(opcode: Opcodes.Quest, data: QuestPacketData) { super(Packets.Quest, opcode, data); } } diff --git a/packages/common/network/impl/rank.ts b/packages/common/network/impl/rank.ts index 5901e03143..e409f5d251 100644 --- a/packages/common/network/impl/rank.ts +++ b/packages/common/network/impl/rank.ts @@ -4,7 +4,9 @@ import { Packets } from '@kaetram/common/network'; import type { Modules } from '@kaetram/common/network'; -export default class Rank extends Packet { +export type RankPacketCallback = (rank: Modules.Ranks) => void; + +export default class RankPacket extends Packet { public constructor(rank: Modules.Ranks) { super(Packets.Rank, undefined, rank); } diff --git a/packages/common/network/impl/relay.ts b/packages/common/network/impl/relay.ts index e71d7067a8..9b4d9fc5d6 100644 --- a/packages/common/network/impl/relay.ts +++ b/packages/common/network/impl/relay.ts @@ -2,7 +2,7 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -export default class Relay extends Packet { +export default class RelayPacket extends Packet { public constructor(username: string, packet: Packet) { super(Packets.Relay, undefined, [username, [...(packet.serialize() as unknown[])]]); } diff --git a/packages/common/network/impl/resource.ts b/packages/common/network/impl/resource.ts new file mode 100644 index 0000000000..b22002881b --- /dev/null +++ b/packages/common/network/impl/resource.ts @@ -0,0 +1,18 @@ +import Packet from '../packet'; + +import { Packets } from '@kaetram/common/network'; + +import type { Modules } from '@kaetram/common/network'; + +export type ResourcePacketData = { + instance: string; + state: Modules.ResourceState; +}; + +export type ResourcePacketCallback = (data: ResourcePacketData) => void; + +export default class ResourcePacket extends Packet { + public constructor(data: ResourcePacketData) { + super(Packets.Resource, undefined, data); + } +} diff --git a/packages/common/network/impl/respawn.ts b/packages/common/network/impl/respawn.ts index aca957a7af..9b6b3ba0d1 100644 --- a/packages/common/network/impl/respawn.ts +++ b/packages/common/network/impl/respawn.ts @@ -4,7 +4,14 @@ import { Packets } from '@kaetram/common/network'; import type Entity from '@kaetram/server/src/game/entity/entity'; -export default class Respawn extends Packet { +export interface RespawnPacketData { + x: number; // Spawn x coordinate + y: number; // Spawn y coordinate +} + +export type RespawnPacketCallback = (info: RespawnPacketData) => void; + +export default class RespawnPacket extends Packet { public constructor(entity: Entity) { super(Packets.Respawn, undefined, { x: entity.x, diff --git a/packages/common/network/impl/skill.ts b/packages/common/network/impl/skill.ts index 687379bb6d..bdbd96ad50 100644 --- a/packages/common/network/impl/skill.ts +++ b/packages/common/network/impl/skill.ts @@ -2,11 +2,28 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { Opcodes } from '@kaetram/common/network'; -import type { SkillPacket } from '@kaetram/common/types/messages/outgoing'; +import type { Opcodes, Modules } from '@kaetram/common/network'; -export default class Skill extends Packet { - public constructor(opcode: Opcodes.Skill, data?: SkillPacket) { +export interface SkillData { + type: Modules.Skills; + experience: number; + level?: number; + percentage?: number; + nextExperience?: number; + combat?: boolean; +} + +export interface SerializedSkills { + skills: SkillData[]; + cheater: boolean; +} + +export type SkillPacketData = SerializedSkills | SkillData; + +export type SkillPacketCallback = (opcode: Opcodes.Skill, info: SkillPacketData) => void; + +export default class SkillPacket extends Packet { + public constructor(opcode: Opcodes.Skill, data?: SkillPacketData) { super(Packets.Skill, opcode, data); } } diff --git a/packages/common/network/impl/spawn.ts b/packages/common/network/impl/spawn.ts index 0e5b6f8e34..420dfa40d0 100644 --- a/packages/common/network/impl/spawn.ts +++ b/packages/common/network/impl/spawn.ts @@ -2,10 +2,13 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; +import type { EntityData } from '@kaetram/common/types/entity'; import type Entity from '@kaetram/server/src/game/entity/entity'; import type Player from '@kaetram/server/src/game/entity/character/player/player'; -export default class Spawn extends Packet { +export type SpawnPacketCallback = (data: EntityData) => void; + +export default class SpawnPacket extends Packet { /** * The spawn packet for entity is a little bit more complex. We include an optional * player parameter that we can use to obtain special display data upon spawning the entity. diff --git a/packages/common/network/impl/store.ts b/packages/common/network/impl/store.ts index 5a8003297b..e680d722c0 100644 --- a/packages/common/network/impl/store.ts +++ b/packages/common/network/impl/store.ts @@ -3,10 +3,54 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { StorePacket } from '@kaetram/common/types/messages/outgoing'; -export default class Store extends Packet { - public constructor(opcode: Opcodes.Store, data: StorePacket) { +/// INFO FROM THE STORE JSON /// + +export interface StoreItem { + key: string; + count: number; + price?: number; + stockAmount?: number; +} + +export interface StoreData { + items: StoreItem[]; // The items in the store. + refresh: number; // How often the store refreshes. + currency: string; // The currency used to buy items. + restricted?: boolean; +} + +export interface RawStore { + [key: string]: StoreData; +} + +////////////////////////////////////////// + +export interface SerializedStoreItem { + key: string; + name: string; + count: number; + price: number; + index?: number; +} + +export interface SerializedStoreInfo { + key: string; // Store's key + currency: string; // Store's currency + items: SerializedStoreItem[]; // Serialized store items. +} + +export interface StorePacketData { + key?: string; + currency?: string; + item?: SerializedStoreItem; // Used for selecting items. + items?: SerializedStoreItem[]; // Used for batch data. +} + +export type StorePacketCallback = (opcode: Opcodes.Store, info: StorePacketData) => void; + +export default class StorePacket extends Packet { + public constructor(opcode: Opcodes.Store, data: StorePacketData) { super(Packets.Store, opcode, data); } } diff --git a/packages/common/network/impl/sync.ts b/packages/common/network/impl/sync.ts index c4bba8979d..237daf17a7 100644 --- a/packages/common/network/impl/sync.ts +++ b/packages/common/network/impl/sync.ts @@ -2,9 +2,11 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { PlayerData } from '@kaetram/common/types/player'; +import type { PlayerData } from './player'; -export default class Sync extends Packet { +export type SyncPacketCallback = (data: PlayerData) => void; + +export default class SyncPacket extends Packet { public constructor(data: PlayerData) { super(Packets.Sync, undefined, data); } diff --git a/packages/common/network/impl/teleport.ts b/packages/common/network/impl/teleport.ts index 88cb6ef837..4c7ae6d780 100644 --- a/packages/common/network/impl/teleport.ts +++ b/packages/common/network/impl/teleport.ts @@ -2,10 +2,17 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { TeleportPacket } from '@kaetram/common/types/messages/outgoing'; +export interface TeleportPacketData { + instance: string; // Main entity involved in the teleportation. + x: number; // x coordinate of the teleportation. + y: number; // y coordinate of the teleportation. + withAnimation?: boolean; +} + +export type TeleportPacketCallback = (info: TeleportPacketData) => void; -export default class Teleport extends Packet { - public constructor(data: TeleportPacket) { +export default class TeleportPacket extends Packet { + public constructor(data: TeleportPacketData) { super(Packets.Teleport, undefined, data); } } diff --git a/packages/common/network/impl/trade.ts b/packages/common/network/impl/trade.ts index 2650469319..13f6547af5 100644 --- a/packages/common/network/impl/trade.ts +++ b/packages/common/network/impl/trade.ts @@ -3,10 +3,24 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; import type { Opcodes } from '@kaetram/common/network'; -import type { TradePacket } from '@kaetram/common/types/messages/outgoing'; +import type { DefinePacket } from './utils'; -export default class Trade extends Packet { - public constructor(opcode: Opcodes.Trade, data: TradePacket) { +type Trade = DefinePacket<{ + [Opcodes.Trade.Request]: { instance?: string }; + [Opcodes.Trade.Add]: { instance?: string; index: number; count?: number; key?: string }; + [Opcodes.Trade.Remove]: { instance?: string; index: number; count?: number }; + [Opcodes.Trade.Accept]: { message?: string }; + [Opcodes.Trade.Close]: { [key: string]: unknown }; + [Opcodes.Trade.Open]: { instance: string }; +}>; + +export type TradePacketData = Trade['Data']; +export type TradePacketValues = Trade['Values']; +export type TradePacketCallback = Trade['Callback']; +export type TradePacketOutgoing = Trade['Outgoing']; + +export default class TradePacket extends Packet { + public constructor(opcode: O, data: TradePacketData[O]) { super(Packets.Trade, opcode, data); } } diff --git a/packages/common/network/impl/update.ts b/packages/common/network/impl/update.ts index 44ac00aeb2..14d920f927 100644 --- a/packages/common/network/impl/update.ts +++ b/packages/common/network/impl/update.ts @@ -4,7 +4,9 @@ import { Packets } from '@kaetram/common/network'; import type { EntityDisplayInfo } from '@kaetram/common/types/entity'; -export default class Update extends Packet { +export type UpdatePacketCallback = (info: EntityDisplayInfo[]) => void; + +export default class UpdatePacket extends Packet { public constructor(data?: EntityDisplayInfo[]) { super(Packets.Update, undefined, data); } diff --git a/packages/common/network/impl/utils.d.ts b/packages/common/network/impl/utils.d.ts new file mode 100644 index 0000000000..959c634517 --- /dev/null +++ b/packages/common/network/impl/utils.d.ts @@ -0,0 +1,6 @@ +export interface DefinePacket { + Data: T; + Values: T[U]; + Outgoing: { [O in U]: { opcode: O } & T[O] }[U]; + Callback(opcode: O, info: T[O]): void; +} diff --git a/packages/common/network/impl/welcome.ts b/packages/common/network/impl/welcome.ts index 05c4119297..825699023f 100644 --- a/packages/common/network/impl/welcome.ts +++ b/packages/common/network/impl/welcome.ts @@ -2,9 +2,11 @@ import Packet from '../packet'; import { Packets } from '@kaetram/common/network'; -import type { PlayerData } from '@kaetram/common/types/player'; +import type { PlayerData } from './player'; -export default class Welcome extends Packet { +export type WelcomePacketCallback = (data: PlayerData) => void; + +export default class WelcomePacket extends Packet { public constructor(data: PlayerData) { super(Packets.Welcome, undefined, data); } diff --git a/packages/common/network/modules.ts b/packages/common/network/modules.ts index 2863c50993..962bd67653 100644 --- a/packages/common/network/modules.ts +++ b/packages/common/network/modules.ts @@ -18,7 +18,8 @@ export enum PacketType { export enum ContainerType { Bank, Inventory, - Trade + Trade, + LootBag } export enum Orientation { @@ -38,7 +39,35 @@ export enum EntityType { Object, Pet, LootBag, - Effect + Effect, + Tree, + Rock, + Foraging, + FishSpot +} + +export enum Interfaces { + Inventory, + Crafting, + Spells, + Bank, + Store, + Quests, + Quest, + Achievements, + Skills, + Trade, + Settings, + Warp, + Leaderboards, + Guilds, + Friends, + Enchant, + Customization, + Book, + Lootbag, + Equipments, + Welcome } export enum AbilityType { @@ -69,14 +98,12 @@ export enum Actions { } export enum MenuActions { + Attack = 'attack', + Equip = 'equip', DropOne = 'drop-one', DropMany = 'drop-many', - Wield = 'wield', - Equip = 'equip', - Attack = 'attack', Eat = 'eat', - Eat2 = 'eat2', - Move = 'move', + Interact = 'interact', Trade = 'trade', Potion = 'potion', Follow = 'follow', @@ -104,22 +131,26 @@ export enum Hits { export enum Equipment { Helmet, - Chestplate, - Legs, - Skin, - Boots, Pendant, - Ring, Arrows, + Chestplate, Weapon, - WeaponSkin + Shield, + Ring, + ArmourSkin, + WeaponSkin, + Legplates, + Cape, + Boots } export let EquipmentRenderOrder = [ - Equipment.Helmet, - Equipment.Legs, + Equipment.Cape, + Equipment.Legplates, Equipment.Chestplate, - Equipment.Skin, + Equipment.Helmet, + Equipment.ArmourSkin, + Equipment.Shield, Equipment.Weapon, Equipment.WeaponSkin ]; @@ -154,7 +185,11 @@ export enum Hovering { Item, NPC, Chest, - Object + Object, + Tree, + Rock, + FishSpot, + Foraging } export enum AudioTypes { @@ -190,11 +225,13 @@ export enum Skills { Cooking, Smithing, Crafting, + Chiseling, // Not a skill, but used to differntiate chiseling from crafting in the crafting. Fletching, Smelting, // Not a skill, but used to differntiate smithing from smelting in the crafting. Foraging, Eating, - Loitering + Loitering, + Alchemy } // It's easier to define and swap order around here. @@ -213,6 +250,7 @@ export let SkillsOrder = [ Skills.Cooking, Skills.Fletching, Skills.Smithing, + Skills.Alchemy, Skills.Eating, Skills.Loitering ]; @@ -250,9 +288,17 @@ export enum Effects { Burning, Freezing, Invincible, - AccuracyPotion, - StrengthPotion, - DefensePotion + AccuracyBuff, + StrengthBuff, + DefenseBuff, + MagicBuff, + ArcheryBuff, + AccuracySuperBuff, + StrengthSuperBuff, + DefenseSuperBuff, + MagicSuperBuff, + ArcherySuperBuff, + Bleed } export enum DamageStyle { @@ -264,7 +310,7 @@ export enum DamageStyle { Archery } -export enum Medals { +export enum Crowns { None, Silver, Gold, @@ -407,6 +453,11 @@ export let DamageColours = { [Hits.Burning]: { fill: 'rgb(227, 170, 14)', stroke: 'rgb(235, 135, 52)' + }, + + [Hits.Terror]: { + fill: 'rgb(89, 21, 125)', + stroke: 'rgb(136, 29, 194)' } }; @@ -415,85 +466,77 @@ export let SkillExpColours = { fill: 'rgb(132, 57, 45)', stroke: 'rgb(101, 48, 35)' }, - [Skills.Accuracy]: { fill: 'rgb(6, 191, 188)', stroke: 'rgb(2, 94, 93)' }, - [Skills.Archery]: { fill: 'rgb(34, 214, 130)', stroke: 'rgb(7, 184, 101)' }, - [Skills.Health]: { fill: 'rgb(239, 90, 90)', stroke: 'rgb(255, 0, 0)' }, - [Skills.Magic]: { fill: 'rgb(37, 124, 210)', stroke: 'rgb(12, 55, 208)' }, - [Skills.Mining]: { fill: 'rgb(105, 106, 107)', stroke: 'rgb(45, 45, 46)' }, - [Skills.Strength]: { fill: 'rgb(232, 211, 185)', stroke: 'rgb(189, 172, 151)' }, - [Skills.Defense]: { fill: 'rgb(110, 158, 255)', stroke: 'rgb(7, 63, 176)' }, - [Skills.Fishing]: { - fill: 'rgb(0, 255, 255)', - stroke: 'rgb(0, 255, 255)' + fill: 'rgb(0, 170, 230)', + stroke: 'rgb(0, 100, 180)' }, - [Skills.Cooking]: { - fill: 'rgb(255, 0, 0)', - stroke: 'rgb(255, 0, 0)' + fill: 'rgb(255, 165, 0)', + stroke: 'rgb(205, 133, 0)' }, - [Skills.Smithing]: { fill: 'rgb(132, 57, 45)', stroke: 'rgb(101, 48, 35)' }, - [Skills.Crafting]: { - fill: 'rgb(255, 255, 0)', - stroke: 'rgb(255, 255, 0)' + fill: 'rgb(128, 0, 128)', + stroke: 'rgb(85, 0, 85)' + }, + [Skills.Chiseling]: { + fill: 'rgb(188, 143, 143)', + stroke: 'rgb(139, 100, 100)' }, - [Skills.Fletching]: { - fill: 'rgb(255, 255, 0)', - stroke: 'rgb(255, 255, 0)' + fill: 'rgb(139, 69, 19)', + stroke: 'rgb(85, 40, 0)' }, - [Skills.Smelting]: { - fill: 'rgb(255, 255, 0)', - stroke: 'rgb(255, 255, 0)' + fill: 'rgb(255, 99, 71)', + stroke: 'rgb(205, 50, 25)' + }, + [Skills.Foraging]: { + fill: 'rgb(124, 252, 0)', + stroke: 'rgb(85, 180, 0)' }, - [Skills.Eating]: { - fill: 'rgb(255, 0, 0)', - stroke: 'rgb(255, 0, 0)' + fill: 'rgb(255, 228, 196)', + stroke: 'rgb(238, 213, 183)' }, - [Skills.Loitering]: { - fill: 'rgb(255, 0, 0)', - stroke: 'rgb(255, 0, 0)' + fill: 'rgb(221, 160, 221)', + stroke: 'rgb(199, 120, 199)' }, - - [Skills.Foraging]: { - fill: 'rgb(255, 0, 0)', - stroke: 'rgb(255, 0, 0)' + [Skills.Alchemy]: { + fill: 'rgb(255, 215, 0)', + stroke: 'rgb(218, 165, 0)' } }; @@ -576,18 +619,21 @@ export enum BannerCrests { export const Constants = { MAX_STACK: 2_147_483_647, // Maximum default stack size for a stackable item. - MAX_LEVEL: 135, // Maximum attainable level. + MAX_LEVEL: 120, // Maximum attainable level. INVENTORY_SIZE: 25, // Maximum inventory size BANK_SIZE: 420, // Maximum bank size - DROP_PROBABILITY: 10_000, // 1 in 10000 + DROP_PROBABILITY: 100_000, // 1 in 100000 MAX_PROFESSION_LEVEL: 99, // Totally not influenced by another game lol HEAL_RATE: 7000, // healing every 7 seconds EFFECT_RATE: 10_000, // effects every 10 seconds STORE_UPDATE_FREQUENCY: 20_000, // update store every 20 seconds MAP_DIVISION_SIZE: 48, // The size of a region the map is split into. - SPAWN_POINT: '405,27', // Default starting point outside the tutorial - TUTORIAL_QUEST_KEY: 'tutorial', // key of the tutorial quest - TUTORIAL_SPAWN_POINT: '579,7', // 'x,y' values + SPAWN_POINT: '328,892', // Default starting point outside the tutorial + TUTORIAL_QUEST_KEY: 'tutorial', // key of the tutorial quest. + ALCHEMY_QUEST_KEY: 'scientistspotion', // key of the alchemy quest. + CRAFTING_QUEST_KEY: 'artsandcrafts', // key of the crafting quest. + TUTORIAL_SPAWN_POINT: '133,562', // 'x,y' values + JAIL_SPAWN_POINT: '110,915', RESOURCE_RESPAWN: 30_000, TREE_RESPAWN: 25_000, CHEST_RESPAWN: 50_000, // 50 seconds @@ -595,10 +641,9 @@ export const Constants = { MAX_ACCURACY: 0.45, // Maximum attainable accuracy for a character. EDIBLE_COOLDOWN: 1500, // 1.5 seconds between eating foods to prevent spam. CRAFT_COOLDOWN: 1500, // 1.5 seconds between crafting items to prevent spam. - INVALID_MOVEMENT_THRESHOLD: 3, // Amount of invalid movements before ignoring packets. ARCHER_ATTACK_RANGE: 8, // Default attack range for bows if no other range is specified. MAX_CONNECTIONS: 16, // Maximum number of connections per IP address. - EXPERIENCE_PER_HIT: 4, // Amount of experinece received per 1 damage dealt. + EXPERIENCE_PER_HIT: 2, // Amount of experience received per 1 damage dealt. SNOW_POTION_DURATION: 60_000, // 60 seconds FIRE_POTION_DURATION: 60_000, // 60 seconds FREEZING_DURATION: 60_000, // 60 seconds @@ -614,8 +659,11 @@ export const Constants = { }; export enum MinigameConstants { - TEAM_WAR_COUNTDOWN = 240, // 240 seconds (4 minutes) in the lobby - TEAM_WAR_MIN_PLAYERS = 2 // Minimum number of players to start a team war + TEAM_WAR_COUNTDOWN = 240, // 240 seconds (4 minutes) in the lobby and in-game + TEAM_WAR_MIN_PLAYERS = 2, // Minimum number of players to start a team war + COURSING_COUNTDOWN = 45, // 360 seconds (6 minutes) in the lobby and in-game + COURSING_MIN_PLAYERS = 2, // Minimum number of players to start coursing + COURSING_SCORE_DIVISOR = 10 // Divide the score by 100 to get the number of points } export enum APIConstants { @@ -627,7 +675,7 @@ export enum APIConstants { // Defaults that apply to all types of entities export enum Defaults { - MOVEMENT_SPEED = 250, // 250 milliseconds to traverse one tile + MOVEMENT_SPEED = 220, // 250 milliseconds to traverse one tile ATTACK_RATE = 1000, // every 1 second POISON_CHANCE = 15 // 15 in (235 - level) chance to poison } diff --git a/packages/common/network/opcodes.ts b/packages/common/network/opcodes.ts index f372cbbea8..64b1584b16 100644 --- a/packages/common/network/opcodes.ts +++ b/packages/common/network/opcodes.ts @@ -74,7 +74,8 @@ export enum Ability { export enum Quest { Batch, Progress, - Finish + Finish, + Start } export enum Achievement { @@ -102,7 +103,7 @@ export enum NPC { Countdown } -export enum Trade { +export const enum Trade { Request, Add, Remove, @@ -128,15 +129,17 @@ export enum Guild { Banner, List, Error, - Chat + Chat, + Promote, + Demote, + Kick } export enum Pointer { Location, // Pointer on the map - Relative, // Pointer relative to the screen Entity, // Pointer following an entity - Remove, - Button // Pointer for a button + Relative, + Remove } export enum Store { @@ -148,18 +151,6 @@ export enum Store { Select } -export enum TeamWar { - Score, - End, - Lobby, - Exit -} - -export enum Coursing { - Lobby, - Exit -} - export enum Overlay { Set, Remove, @@ -195,6 +186,14 @@ export enum MinigameState { Exit } +// Generic actions for when in a minigame. +export enum MinigameActions { + Score, + End, + Lobby, + Exit +} + export enum Bubble { Entity, Position @@ -223,3 +222,18 @@ export enum Crafting { Select, Craft } + +export enum LootBag { + Open, + Take, + Close +} + +export enum Pet { + Pickup +} + +export enum Interface { + Open, + Close +} diff --git a/packages/common/network/packets.ts b/packages/common/network/packets.ts index 7c28507eee..74488ff8e9 100644 --- a/packages/common/network/packets.ts +++ b/packages/common/network/packets.ts @@ -53,8 +53,14 @@ enum Packets { Player, Relay, Crafting, + Interface, LootBag, - Countdown + Countdown, + Pet, + Resource, + + // Hub <-> Admin + AdminSync } export default Packets; diff --git a/packages/common/package.json b/packages/common/package.json index c156387626..d2ced350a4 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -4,11 +4,11 @@ "types": "./types/index.d.ts", "devDependencies": { "@types/dotenv-parse-variables": "^2.0.1", - "@types/node": "^18.15.5", "bcryptjs": "^2.4.3", - "discord.js": "^14.3.0", + "discord.js": "^14.13.0", "dotenv-extended": "^2.9.0", "dotenv-parse-variables": "^2.0.0", - "ipaddr.js": "^2.0.1" + "i18next": "^23.5.1", + "ipaddr.js": "^2.1.0" } } diff --git a/packages/common/text/en/crafting.ts b/packages/common/text/en/crafting.ts index b0392b87fb..5ca4368aad 100644 --- a/packages/common/text/en/crafting.ts +++ b/packages/common/text/en/crafting.ts @@ -7,6 +7,7 @@ export default { return `You must be level ${level} in order to fletch this.`; } + case Modules.Skills.Chiseling: case Modules.Skills.Crafting: { return `You must be level ${level} in order to craft this.`; } @@ -23,6 +24,10 @@ export default { return `You must be level ${level} in order to smelt this.`; } + case Modules.Skills.Alchemy: { + return `You must be level ${level} in order to brew this.`; + } + default: { return 'INVALID_LEVEL() NOT IMPLEMENTED'; } diff --git a/packages/common/text/en/resource.ts b/packages/common/text/en/resource.ts index 13e965973a..8396df16ed 100644 --- a/packages/common/text/en/resource.ts +++ b/packages/common/text/en/resource.ts @@ -4,19 +4,19 @@ export default { INVALID_WEAPON(type: Modules.Skills) { switch (type) { case Modules.Skills.Lumberjacking: { - return 'You must equip an axe in order to cut trees.'; + return 'resource:MUST_EQUIP_AXE'; } case Modules.Skills.Mining: { - return 'You must be wielding a pickaxe in order to mine rocks.'; + return 'resource:MUST_EQUIP_PICKAXE'; } case Modules.Skills.Fishing: { - return 'You must be wielding a fishing utensil in order to fish.'; + return 'resource:MUST_EQUIP_FISHING'; } case Modules.Skills.Foraging: { - return 'You require a special tool to forage this.'; + return 'resource:MUST_EQUIP_FORAGING'; } default: { @@ -27,19 +27,19 @@ export default { INVALID_LEVEL(type: Modules.Skills, level: number) { switch (type) { case Modules.Skills.Lumberjacking: { - return `You must be level ${level} in order to cut this tree.`; + return `resource:INVALID_LEVEL_LUMBERJACKING;level=${level}`; } case Modules.Skills.Mining: { - return `You must be level ${level} in order to mine this rock.`; + return `resource:INVALID_LEVEL_MINING;level=${level}`; } case Modules.Skills.Fishing: { - return `You must be level ${level} in order to fish here.`; + return `resource:INVALID_LEVEL_FISHING;level=${level}`; } case Modules.Skills.Foraging: { - return `You must be level ${level} in order to harvest this resource.`; + return `resource:INVALID_LEVEL_FORAGING;level=${level}`; } default: { @@ -47,29 +47,27 @@ export default { } } }, - INVENTORY_FULL: 'You do not have enough space in your inventory.', UNABLE_TO_INTERACT(type: Modules.Skills) { switch (type) { case Modules.Skills.Lumberjacking: { - return 'You are unable to cut this tree at the moment.'; + return 'resource:UNABLE_TO_INTERACT_LUMBERJACKING'; } case Modules.Skills.Mining: { - return 'You do not have the necessary knowledge to mine this rock.'; + return 'resource:UNABLE_TO_INTERACT_MINING'; } case Modules.Skills.Fishing: { - return 'You are unable to fish here at the moment.'; + return 'resource:UNABLE_TO_INTERACT_FISHING'; } case Modules.Skills.Foraging: { - return 'You are unable to harvest this resource at the moment.'; + return 'resource:UNABLE_TO_INTERACT_FORAGING'; } default: { return 'UNABLE_TO_INTERACT() NOT IMPLEMENTED'; } } - }, - NO_REASON: 'There is no reason for you to cut this tree.' + } }; diff --git a/packages/common/text/en/updates.json b/packages/common/text/en/updates.json deleted file mode 100644 index 5187a658ec..0000000000 --- a/packages/common/text/en/updates.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "0.1.0-beta": { - "title": "Kaetram 0.1.0-beta", - "content": [ - "- This is a placeholder update" - ] - } -} \ No newline at end of file diff --git a/packages/common/text/profanity.json b/packages/common/text/profanity.json index b7f1ebb9c1..b68f7ed71b 100644 --- a/packages/common/text/profanity.json +++ b/packages/common/text/profanity.json @@ -1,62 +1,62 @@ [ - "a s s", - "a ss", - "aa s", - "anal", - "anus", - "ass", - "aryan", - "ash0le", - "ash0les", - "asholes", - "azz", - "bitch", - "cock", - "cummin", - "chink", - "cunt", - "diaperhead", - "diaperh3ad", - "dick", - "dildo", - "d1ld0", - "d1ldo", - "dild0", - "ejaculate", - "ejaculation", - "fag", - "jacking off", - "jerking off", - "sieg heil", - "heil hitler", - "fuck", - "masturbat3", - "masturbate", - "masturbation", - "masturbating", - "nigger", - "nigga", - "niqqa", - "niqqer", - "negro", - "n3gro", - "n3gr0", - "penis", - "pissing", - "rape", - "r@pe", - "r@ape", - "retard", - "porno", - "pussy", - "sex", - "shit", - "tranny", - "transexual", - "twat", - "vagina", - "vulva", - "whigger", - "wetbag", - "whore" -] \ No newline at end of file + "a s s", + "a ss", + "aa s", + "anal", + "anus", + "ass", + "aryan", + "ash0le", + "ash0les", + "asholes", + "azz", + "bitch", + "cock", + "cummin", + "chink", + "cunt", + "diaperhead", + "diaperh3ad", + "dick", + "dildo", + "d1ld0", + "d1ldo", + "dild0", + "ejaculate", + "ejaculation", + "fag", + "jacking off", + "jerking off", + "sieg heil", + "heil hitler", + "fuck", + "masturbat3", + "masturbate", + "masturbation", + "masturbating", + "nigger", + "nigga", + "niqqa", + "niqqer", + "negro", + "n3gro", + "n3gr0", + "penis", + "pissing", + "rape", + "r@pe", + "r@ape", + "retard", + "porno", + "pussy", + "sex", + "shit", + "tranny", + "transexual", + "twat", + "vagina", + "vulva", + "whigger", + "wetbag", + "whore" +] diff --git a/packages/common/text/updates.json b/packages/common/text/updates.json new file mode 100644 index 0000000000..80b217e0b6 --- /dev/null +++ b/packages/common/text/updates.json @@ -0,0 +1,11 @@ +{ + "0.5.5-beta": { + "title": "Kaetram 0.5.5-beta", + "content": [ + "- Add language selection menu", + "- Add FPS throttle option", + "- New quests", + "- Anti-cheating detection improvements" + ] + } +} diff --git a/packages/common/tsconfig.json b/packages/common/tsconfig.json index 657a95d929..8d9d2d200f 100644 --- a/packages/common/tsconfig.json +++ b/packages/common/tsconfig.json @@ -1,6 +1 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "types": ["@types/node"] - } -} +{ "extends": "../../tsconfig.json" } diff --git a/packages/common/types/ability.d.ts b/packages/common/types/ability.d.ts deleted file mode 100644 index bb4f816644..0000000000 --- a/packages/common/types/ability.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type { Modules } from '../network'; - -// Raw ability information from the JSON file. - -export interface RawAbilityLevelData { - cooldown?: number; - duration?: number; - mana?: number; -} - -export interface RawAbilityData { - type: string; - levels?: { [level: number]: RawAbilityLevelData }; -} - -export interface RawAbility { - [key: string]: RawAbilityInfo; -} - -// Object ability information - -export interface AbilityData { - key: string; - level: number; - quickSlot?: number; - type?: Modules.AbilityType; -} - -export interface SerializedAbility { - abilities: AbilityData[]; -} diff --git a/packages/common/types/achievement.d.ts b/packages/common/types/achievement.d.ts deleted file mode 100644 index e6d7c56ed0..0000000000 --- a/packages/common/types/achievement.d.ts +++ /dev/null @@ -1,50 +0,0 @@ -/** - * Achievement data straight from the JSON file. - */ - -export interface RawAchievement { - name: string; - description?: string; - hidden?: boolean; // Whether or not to display description and achievement title. - secret?: boolean; // Secret achievements are only displayed when completed. - - npc?: string; // NPC handing out the achievement. - dialogueHidden?: string[]; // Dialogue to display before the achievement is discovered. - dialogueStarted?: string[]; // Dialogue when the achievement has been started. - - mob?: string | string[]; // If the achievement requires a mob (or mobs) to be killed. - mobCount?: number; // How many of the mobs to be killed. - - item?: string; // If the achievement requires an item to be found. - itemCount?: number; // How much of an item to bring. - - rewardItem?: string; // String of the item we are rewarding. - rewardItemCount?: number; // How much of the item to reward. - - rewardSkill?: string; // Skill we are rewarding experience in. - rewardExperience?: number; // How much experience to reward. - - rewardAbility?: string; // Key of the ability that is being rewarded. - rewardAbilityLevel?: number; // Optional, otherwise defaults to 1. - - // Experience reward to skills will be added later. -} - -/** - * Achievement data object that can be stored in the database - * or relayed to the server. The optional parameters are used - * when batching the data to the client. - */ - -export interface AchievementData { - key: string; - name?: string; - description?: string; - stage: number; - stageCount?: number; - secret?: boolean; -} - -export interface SerializedAchievement { - achievements: AchievementData[]; -} diff --git a/packages/common/types/api.d.ts b/packages/common/types/api.d.ts deleted file mode 100644 index 2158f3caf5..0000000000 --- a/packages/common/types/api.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -export interface SerializedServer { - id: number; - name: string; - host: string; - port: number; - players: number; - maxPlayers: number; -} diff --git a/packages/common/types/crafting.d.ts b/packages/common/types/crafting.d.ts deleted file mode 100644 index a54aee7d4a..0000000000 --- a/packages/common/types/crafting.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -export interface CraftingRequirement { - key: string; - count: number; -} - -export interface CraftingResult { - count: number; -} - -export interface CraftingItem { - level: number; - experience: number; - chance?: number; // Out of 100 chance of success - requirements: CraftingRequirement[]; - result: CraftingResult; -} - -// Crafting JSON is just a dictionary that contains information about craftable items for each skill. -export interface CraftingInfo { - [key: string]: { [key: string]: CraftingItem }; -} diff --git a/packages/common/types/entity.d.ts b/packages/common/types/entity.d.ts index 28bdb188c7..3096185736 100644 --- a/packages/common/types/entity.d.ts +++ b/packages/common/types/entity.d.ts @@ -4,6 +4,7 @@ * to stand out for some reason (i.e. miniboss has a different scale). */ +import type { HitData } from './info'; import type { Modules } from '../network'; import type { Enchantments } from './item'; @@ -11,6 +12,7 @@ export interface EntityDisplayInfo { instance: string; colour?: string; scale?: number; + exclamation?: string; } /** @@ -49,8 +51,7 @@ export interface EntityData { // Projectile data ownerInstance?: string; targetInstance?: string; - damage?: number; - hitType?: Modules.Hits; + hit?: HitData; displayInfo?: EntityDisplayInfo; } diff --git a/packages/common/types/equipment.d.ts b/packages/common/types/equipment.d.ts deleted file mode 100644 index b986b8656e..0000000000 --- a/packages/common/types/equipment.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Modules } from '../network'; -import type { Bonuses, Enchantments, Stats } from './item'; - -export interface EquipmentData { - type: Modules.Equipment; - key: string; - name?: string; - count: number; - enchantments: Enchantments; - attackRange?: number; // Specifically for weapon type. - poisonous?: boolean; - attackStats?: Stats; - defenseStats?: Stats; - bonuses?: Bonuses; - attackStyle?: Modules.AttackStyle; - attackStyles?: Modules.AttackStyle[]; -} - -export interface SerializedEquipment { - equipments: EquipmentData[]; -} - -export type EquipmentType = 'weapon' | 'armour' | 'pendant' | 'ring' | 'boots'; diff --git a/packages/common/types/friends.d.ts b/packages/common/types/friends.d.ts deleted file mode 100644 index 38954a6b0d..0000000000 --- a/packages/common/types/friends.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -export interface FriendInfo { - online: boolean; - serverId: number; -} - -export interface Friend { - [username: string]: FriendInfo; -} diff --git a/packages/common/types/global.d.ts b/packages/common/types/global.d.ts new file mode 100644 index 0000000000..6505e017ac --- /dev/null +++ b/packages/common/types/global.d.ts @@ -0,0 +1,31 @@ +/** + * A 2D position or vertex. + */ + +declare interface Position { + x: number; + y: number; + + gridX?: number; + gridY?: number; +} + +/** + * Used in the client-sided part of the game. This contains the absolute position + * of an object as well as its grid position Math.floor(x / tileSize). + */ + +declare interface Coordinate { + x: number; + y: number; + + gridX: number; + gridY: number; +} + +declare interface Rectangle { + x: number; + y: number; + width: number; + height: number; +} diff --git a/packages/common/types/guild.d.ts b/packages/common/types/guild.d.ts deleted file mode 100644 index d39211cb08..0000000000 --- a/packages/common/types/guild.d.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { Modules, Opcodes } from '../network'; - -export interface Member { - username: string; - rank?: Modules.GuildRank; - joinDate?: number; - serverId?: number; // -1 if offline -} - -export interface Decoration { - banner: Modules.BannerColours; - outline: Modules.BannerOutline; - outlineColour: Modules.BannerColours; - crest: Modules.BannerCrest; -} - -export interface GuildData { - identifier: string; - name: string; - creationDate: number; - owner: string; - inviteOnly: boolean; - experience: number; - decoration: Decoration; - members: Member[]; -} - -// Used to relay update information to other players. -export interface UpdateInfo { - opcode: Opcodes.Guild; - username: string; - serverId?: number; - rank?: Modules.GuildRank; -} - -// Contains only necessary information to be passed to client. -export interface ListInfo { - name: string; - members: number; - decoration: Decoration; -} diff --git a/packages/common/types/index.d.ts b/packages/common/types/index.d.ts index bcd327cd10..1539ce74fc 100644 --- a/packages/common/types/index.d.ts +++ b/packages/common/types/index.d.ts @@ -1,3 +1 @@ -import './utils'; - -export * from './network'; +import './global'; diff --git a/packages/common/types/info.d.ts b/packages/common/types/info.d.ts index 8f1eea7722..cdc29137ce 100644 --- a/packages/common/types/info.d.ts +++ b/packages/common/types/info.d.ts @@ -1,5 +1,3 @@ -import type { Modules } from '../network'; - export interface HitData { type: Modules.Hits; damage: number; @@ -7,27 +5,5 @@ export interface HitData { aoe?: number; terror?: boolean; poison?: boolean; -} - -export interface RegionTileData { - index: number; - position: Position; - data: number[]; - c: boolean; // Collision - isObject: boolean; - cursor: string | undefined; -} - -export interface TilesetData { - [i: number]: { - c?: boolean; - h?: number; - }; -} - -export interface ProfessionsInfo { - id: number; - name: string; - level: number; - percentage: string; + skills?: string[]; } diff --git a/packages/common/types/item.d.ts b/packages/common/types/item.d.ts index f1d4fe3309..25e0f5081d 100644 --- a/packages/common/types/item.d.ts +++ b/packages/common/types/item.d.ts @@ -6,6 +6,11 @@ export interface Enchantments { [id: number]: Enchantment; } +export interface Light { + outer?: LampData; + inner?: LampData; +} + export interface ContainerItem { index: number; key: string; @@ -28,6 +33,15 @@ export interface Bonuses { magic: number; } +// This is for items that have a lamp effect. +export interface LampData { + distance: number; + colour: string; + + flickerSpeed: number; + flickerIntensity: number; +} + export interface ItemData { type: string; name: string; @@ -43,9 +57,11 @@ export interface ItemData { achievement?: string; // Achievement required to use the item. quest?: string; // Quest requirement for the item. attackRate?: number; + twoHanded?: boolean; poisonous?: boolean; freezing?: boolean; burning?: boolean; + light?: Light; movementModifier?: number; lumberjacking?: number; mining?: number; diff --git a/packages/common/types/light.d.ts b/packages/common/types/light.d.ts deleted file mode 100644 index 75c957b436..0000000000 --- a/packages/common/types/light.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -export interface SerializedLight { - x: number; - y: number; - colour: string; - diffuse: number; - distance: number; -} diff --git a/packages/common/types/map.d.ts b/packages/common/types/map.d.ts index 4e8d5182ad..722dd845ae 100644 --- a/packages/common/types/map.d.ts +++ b/packages/common/types/map.d.ts @@ -1,5 +1,5 @@ // Tile that has undergone rotation -export interface RotatedTile { +export interface TransformedTile { tileId: number; h: boolean; v: boolean; @@ -8,17 +8,17 @@ export interface RotatedTile { // These are tiles straight from the map file. export type Tile = number | number[]; +export type RotatedTile = TransformedTile | TransformedTile[]; -export type FlatTile = (number | RotatedTile)[]; - -// Tiles used when sending region data to the client. -export type RegionTile = Tile | RotatedTile | RotatedTile[]; +// Client tiles are processed tiles that are cached on the client. +export type ClientTile = Tile | RotatedTile; // Tile data that is sent to the client. export interface RegionTileData { x: number; y: number; - data: RegionTile; + data: Tile; + animation?: Tile; // animation data c?: boolean; // collision property cur?: string; // cursor property o?: boolean; // object property @@ -60,12 +60,15 @@ export interface ProcessedArea { destination?: number; orientation?: string; stage?: number; + npc?: string; // Light colour?: string; distance?: number; diffuse?: number; objects?: Position[]; + flickerSpeed?: number; + flickerIntensity?: number; // Chest entities?: number; @@ -88,11 +91,13 @@ export interface ProcessedArea { // Overlay darkness?: number; + rgb?: string; fog?: string; // Dynamic quest?: string; mapping?: number; + animation?: number; // Minigame minigame?: string; @@ -118,6 +123,7 @@ export interface ProcessedDoor { stage: number; skill: string; level: number; + npc: string; // NPC to trigger chat when player can't pass through. } export interface ProcessedResource { @@ -147,7 +153,9 @@ export interface ProcessedMap { data: (number | number[])[]; + // Corresponds to the tile id of the tile that is considered a collision. collisions: number[]; + entities: { [tileId: number]: string }; // tilesetId: firstGid @@ -162,19 +170,4 @@ export interface ProcessedMap { obstructing?: number[]; areas: { [name: string]: ProcessedArea[] }; cursors: { [tileId: number]: string }; - trees: ProcessedResource[]; - rocks: ProcessedResource[]; - fishSpots: ProcessedResource[]; - foraging: ProcessedResource[]; -} - -export interface ProcessedClientMap { - width: number; - height: number; - tileSize: number; - version: number; - high: number[]; - tilesets: { [name: string]: number }; - animations: { [tileId: number]: ProcessedAnimation[] }; - grid?: number[][]; } diff --git a/packages/common/types/messages/hub.d.ts b/packages/common/types/messages/hub.d.ts index 78e91ecfb0..c09cd55c87 100644 --- a/packages/common/types/messages/hub.d.ts +++ b/packages/common/types/messages/hub.d.ts @@ -3,26 +3,10 @@ * We separate them from the rest of packets for brevity. */ +import type { Packets } from '@kaetram/common/network'; import type { Friend } from '../friends'; -export interface HandshakePacket { - gVer: string; // Game version. - name: string; - serverId: number; - accessToken: string; // Denied if mismatches - remoteHost: string; // Relayed to game clients as the server's IP. - port: number; - players: string[]; - maxPlayers: number; -} - -export interface PlayerPacket { - username: string; - serverId?: number; - guild?: string; -} - -export interface ChatPacket { +export interface ChatPacketData { source: string; message?: string; @@ -33,10 +17,10 @@ export interface ChatPacket { notFound?: boolean; } -export interface FriendsPacket { +export interface FriendsPacketData { username: string; activeFriends?: Friend; inactiveFriends?: string[]; } -export type RelayPacket = [string, [number, never, never]]; +export type RelayPacketData = [string, [Packets, number, { [key: string]: unknown }]]; diff --git a/packages/common/types/messages/incoming.d.ts b/packages/common/types/messages/incoming.d.ts index 2b26800a80..e5042370f3 100644 --- a/packages/common/types/messages/incoming.d.ts +++ b/packages/common/types/messages/incoming.d.ts @@ -4,18 +4,9 @@ import type { Modules, Opcodes } from '../../network'; * Packet interfaces of data being sent from the client to the server. */ -export interface HandshakePacket { - gVer: string; +export type { HandshakePacket } from '../../network/impl/handshake'; - // Hub related handshake data. - name?: string; - serverId?: number; - accessToken?: string; // Denied if mismatches - remoteHost?: string; // Relayed to game clients as the server's IP. - port?: number; - players?: string[]; - maxPlayers?: number; -} +export { TradePacket } from '../../network/impl/trade'; export interface LoginPacket { opcode: Opcodes.Login; @@ -41,6 +32,8 @@ export interface MovementPacket { requestY?: number; playerX?: number; playerY?: number; + nextGridX?: number; + nextGridY?: number; movementSpeed?: number; targetInstance?: string; following?: boolean; @@ -71,13 +64,6 @@ export interface AbilityPacket { index?: number; } -export interface TradePacket { - opcode: Opcodes.Trade; - instance?: string; - index?: number; - count?: number; -} - export interface EnchantPacket { opcode: Opcodes.Enchant; index?: number; @@ -93,8 +79,9 @@ export interface GuildPacket { colour?: Modules.BannerColour; outline?: Modules.BannerOutline; outlineColour?: Modules.BannerColour; - crest?: Modules.BannerCrest; + crest?: Modules.BannerCrests; message?: string; + username?: string; } export interface WarpPacket { @@ -118,3 +105,12 @@ export interface CraftingPacket { key?: string; count?: number; } + +export interface LootBagPacket { + opcode: Opcodes.LootBag; + index?: number; +} + +export interface PetPacket { + opcode: Opcodes.Pet; +} diff --git a/packages/common/types/messages/outgoing.d.ts b/packages/common/types/messages/outgoing.d.ts index 705d320c72..357a7b7505 100644 --- a/packages/common/types/messages/outgoing.d.ts +++ b/packages/common/types/messages/outgoing.d.ts @@ -1,447 +1,56 @@ -import type { Decoration, ListInfo, UpdateInfo } from '../guild'; -import type { Friend } from '../friends'; -import type { HitData } from '../info'; -import type { SerializedLight } from '../light'; -import type { PlayerData } from '../player'; -import type { QuestData } from '../quest'; -import type { Modules, Opcodes } from '../../network'; -import type { SerializedStoreItem } from '../stores'; -import type { EntityData, EntityDisplayInfo } from '../entity'; -import type { SerializedContainer, SlotData } from '@kaetram/common/types/slot'; -import type { SerializedSkills, SkillData } from '../skills'; -import type { AbilityData, SerializedAbility } from '../ability'; -import type { EquipmentData, SerializedEquipment } from '../equipment'; -import type { CraftingRequirement } from '../crafting'; - -/** - * Packet interfaces of data being sent from the server to the client. - */ - -//////////////////////////////////////////////////////////////////////////////// - -export interface HandshakePacket { - // Client-server related handshake data. - instance?: string; // Player's instance. - serverId?: number; -} - -export type HandshakeCallback = (data: HandshakePacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type WelcomeCallback = (data: PlayerData) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type MapCallback = (data: string) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface EquipmentPacket { - data?: SerializedEquipment | EquipmentData; - type?: Modules.Equipment; // Specified when equipping a specific item - count?: number; - attackStyle?: Modules.AttackStyle; - attackRange?: number; // Passed with attack style to update the player's attack range. -} - -export type EquipmentCallback = (opcode: Opcodes.Equipment, info: EquipmentPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface ListPacket { - entities?: string[]; // List of entity instances to be checked in the client. - positions?: { [instance: string]: Position }; // List of entity positions to verify. -} - -export type EntityListCallback = (opcode: Opcodes.List, info: ListPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type SyncCallback = (data: PlayerData) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type SpawnCallback = (data: EntityData) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface MovementPacket { - instance: string; // Main entity involved in the movement. - x?: number; // X coordinate of the movement. - y?: number; // Y coordinate of the movement. - forced?: boolean; // Whether or not the movement is forced. - target?: string; // Entity instance we are trying to follow if specified. - orientation?: Modules.Orientation; - state?: boolean; // State about stun/freeze. - movementSpeed?: number; // Movement speed of the entity. -} - -export type MovementCallback = (opcode: Opcodes.Movement, info: MovementPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface DespawnPacket { - instance: string; // The entity we are despawning. - regions?: number[]; // Region checker for when an entity despawns. -} - -export type DespawnCallback = (info: DespawnPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface TeleportPacket { - instance: string; // Main entity involved in the teleportation. - x: number; // x coordinate of the teleportation. - y: number; // y coordinate of the teleportation. - withAnimation?: boolean; -} - -export type TeleportCallback = (info: TeleportPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface CombatPacket { - instance: string; // The entity the combat packet revolves around. - target: string; // Instance of the targeted entity. - hit: HitData; -} - -export type CombatCallback = (opcode: Opcodes.Combat, info: CombatPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface AnimationPacket { - instance: string; - action: Modules.Actions; -} - -export type AnimationCallback = (info: AnimationPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface PointsPacket { - instance: string; - hitPoints?: number; - maxHitPoints?: number; - mana?: number; - maxMana?: number; -} - -export type PointsCallback = (info: PointsPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type NetworkCallback = (opcode?: Opcodes.Network) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface ChatPacket { - instance?: string; // Entity that the chat packet belongs to. - message: string; // Message contents of the packet. - withBubble?: boolean; // If the message should have a bubble. - colour?: string; // Colour of the message. - source?: string; -} - -export type ChatCallback = (info: ChatPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface CommandPacket { - command: string; -} - -export type CommandCallback = (info: CommandPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface ContainerPacket { - type: Modules.ContainerType; - data?: SerializedContainer; // Batch data - slot?: SlotData; // Used for adding or removing an item to the container. -} - -export type ContainerCallback = (opcode: Opcodes.Container, info: ContainerPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type AbilityPacket = SerializedAbility | AbilityData; - -export type AbilityCallback = (opcode: Opcodes.Ability, info: AbilityPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface QuestPacket { - key?: string; - stage?: number; - subStage?: number; - quests?: QuestData[]; // Batch of quests -} - -export type QuestCallback = (opcode: Opcodes.Quest, info: QuestPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface AchievementPacket { - key?: string; - name?: string; - description?: string; - stage?: number; - achievements?: AchievementData[]; -} - -export type AchievementCallback = (opcode: Opcodes.Achievement, info: AchievementPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface NotificationPacket { - title?: string; // Title when displaying a popup. - message: string; // String message to display. - colour?: string; // Colour of the message. - source?: string; -} - -export type NotificationCallback = (opcode: Opcodes.Notification, info: NotificationPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type BlinkCallback = (instance: string) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface HealPacket { - instance: string; - type: Modules.HealTypes; - amount: number; -} - -export type HealCallback = (info: HealPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface ExperiencePacket { - instance: string; - amount?: number; - level?: number; - skill?: Modules.Skills; -} - -export type ExperienceCallback = (opcode: Opcodes.Experience, info: ExperiencePacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type DeathCallback = () => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type MusicCallback = (newSong?: string) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface NPCPacket { - instance?: string; // Used when an NPC sends a text message. - text?: string; // Message to display in a bubble. - slots?: SlotData[]; // When opening a bank NPC. -} - -export type NPCCallback = (opcode: Opcodes.NPC, info: NPCPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface RespawnPacket { - x: number; // Spawn x coordinate - y: number; // Spawn y coordinate -} - -export type RespawnCallback = (opcode: Opcodes.Respawn, info: RespawnPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface TradePacket { - instance?: string; - index?: number; - count?: number; - key?: string; - message?: string; -} - -export type TradeCallback = (opcode: Opcodes.Trade, info: TradePacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface EnchantPacket { - index: number; - isShard?: boolean; -} - -export type EnchantCallback = (opcode: Opcodes.Enchant, info: EnchantPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface GuildPacket { - identifier?: string; - name?: string; - username?: string; - usernames?: string[]; - serverId?: number; - member?: Member; - members?: Member[]; - total?: number; - guilds?: ListInfo[]; - message?: string; - owner?: string; - decoration?: Decoration; - experience?: number; - rank?: Modules.GuildRank; -} - -export type GuildCallback = (opcode: Opcodes.Guild, info: GuildPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface PointerPacket { - instance: string; - x?: number; - y?: number; - button?: string; -} - -export type PointerCallback = (opcode: Opcodes.Pointer, info: PointerPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface PVPPacket { - state: boolean; -} - -export type PVPCallback = (info: PVPPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type PoisonCallback = (type: number) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface StorePacket { - key?: string; - currency?: string; - item?: SerializedStoreItem; // Used for selecting items. - items?: SerializedStoreItem[]; // Used for batch data. -} - -export type StoreCallback = (opcode: Opcodes.Store, info: StorePacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface OverlayPacket { - image?: string; - colour?: string; - light?: SerializedLight; -} - -export type OverlayCallback = (opcode: Opcodes.Overlay, info: OverlayPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type CameraCallback = (opcode: Opcodes.Camera) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface BubblePacket { - instance: string; - text: string; - duration?: number; - x?: number; - y?: number; -} - -export type BubbleCallback = (opcode: Opcodes.Bubble, info: BubblePacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type SkillPacket = SerializedSkills | SkillData; - -export type SkillCallback = (opcode: Opcodes.Skill, info: SkillPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type UpdateCallback = (info: EntityDisplayInfo[]) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface MinigamePacket { - action: number; - countdown?: number; - redTeamKills?: number; - blueTeamKills?: number; - started?: boolean; -} - -export type MinigameCallback = (opcode: Opcodes.Minigame, info: MinigamePacket) => void; - -//////////////////////////////s////////////////////////////////////////////////// - -export interface EffectPacket { - instance: string; - effect: Modules.Effects; -} - -export type EffectCallback = (opcode: Opcodes.Effect, info: EffectPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface FriendsPacket { - list?: Friend; - username?: string; - status?: boolean; - serverId?: number; -} - -export type FriendsCallback = (opcode: Opcodes.Friends, info: FriendsPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export type RankCallback = (rank: Modules.Ranks) => void; - -//////////////////////////////s////////////////////////////////////////////////// - -export interface PlayerPacket { - username?: string; - serverId?: number; - guild?: UpdateInfo; -} - -//////////////////////////////////////////////////////////////////////////////// - -export interface CraftingPacket { - type?: Modules.Skills; - keys?: string[]; // The keys of the items we are crafting. - key?: string; // The key of the item we are crafting. - name?: string; // The name of the item we are crafting. - level?: number; // The level required to craft the item. - requirements?: CraftingRequirement[]; - result?: number; // The amount the item we are crafting will give. -} - -export type CraftingCallback = (opcode: Opcodes.Crafting, info: CraftingPacket) => void; - -///////////////////////////////////////////////////////////////////////////////// - -export interface LootBagPacket { - instance: string; - items: SlotData[]; -} - -export type LootBagCallback = (info: LootBagPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// - -export interface CountdownPacket { - instance: string; - time: number; -} - -export type CountdownCallback = (info: CountdownPacket) => void; - -//////////////////////////////////////////////////////////////////////////////// +export type { HandshakePacketData, HandshakePacketCallback } from '../../network/impl/handshake'; +export type { WelcomePacketCallback } from '../../network/impl/welcome'; +export type { MapPacketCallback } from '../../network/impl/map'; +export type { SpawnPacketCallback } from '../../network/impl/spawn'; +export type { EntityListPacketData, EntityListPacketCallback } from '../../network/impl/list'; +export type { EquipmentPacketData, EquipmentPacketCallback } from '../../network/impl/equipment'; +export type { SyncPacketCallback } from '../../network/impl/sync'; +export type { MovementPacketData, MovementPacketCallback } from '../../network/impl/movement'; +export type { TeleportPacketData, TeleportPacketCallback } from '../../network/impl/teleport'; +export type { DespawnPacketData, DespawnPacketCallback } from '../../network/impl/despawn'; +export type { CombatPacketData, CombatPacketCallback } from '../../network/impl/combat'; +export type { AnimationPacketData, AnimationPacketCallback } from '../../network/impl/animation'; +export type { PointsPacketData, PointsPacketCallback } from '../../network/impl/points'; +export type { NetworkPacketCallback } from '../../network/impl/network'; +export type { ChatPacketData, ChatPacketCallback } from '../../network/impl/chat'; +export type { CommandPacketData, CommandPacketCallback } from '../../network/impl/command'; +export type { ContainerPacketData, ContainerPacketCallback } from '../../network/impl/container'; +export type { AbilityPacketData, AbilityPacketCallback } from '../../network/impl/ability'; +export type { QuestPacketData, QuestPacketCallback } from '../../network/impl/quest'; +export type { + AchievementPacketData, + AchievementPacketCallback +} from '../../network/impl/achievement'; +export type { + NotificationPacketData, + NotificationPacketCallback +} from '../../network/impl/notification'; +export type { BlinkPacketCallback } from '../../network/impl/blink'; +export type { HealPacketData, HealPacketCallback } from '../../network/impl/heal'; +export type { ExperiencePacketData, ExperiencePacketCallback } from '../../network/impl/experience'; +export type { DeathPacketCallback } from '../../network/impl/death'; +export type { MusicPacketCallback } from '../../network/impl/music'; +export type { NPCPacketData, NPCPacketCallback } from '../../network/impl/npc'; +export type { RespawnPacketData, RespawnPacketCallback } from '../../network/impl/respawn'; +export type { TradePacketData, TradePacketCallback } from '../../network/impl/trade'; +export type { EnchantPacketData, EnchantPacketCallback } from '../../network/impl/enchant'; +export type { GuildPacketData, GuildPacketCallback } from '../../network/impl/guild'; +export type { PointerPacketData, PointerPacketCallback } from '../../network/impl/pointer'; +export type { PVPPacketData, PVPPacketCallback } from '../../network/impl/pvp'; +export type { PoisonPacketCallback } from '../../network/impl/poison'; +export type { StorePacketData, StorePacketCallback } from '../../network/impl/store'; +export type { OverlayPacketData, OverlayPacketCallback } from '../../network/impl/overlay'; +export type { CameraPacketCallback } from '../../network/impl/camera'; +export type { BubblePacketData, BubblePacketCallback } from '../../network/impl/bubble'; +export type { SkillPacketData, SkillPacketCallback } from '../../network/impl/skill'; +export type { UpdatePacketCallback } from '../../network/impl/update'; +export type { MinigamePacketData, MinigamePacketCallback } from '../../network/impl/minigame'; +export type { EffectPacketData, EffectPacketCallback } from '../../network/impl/effect'; +export type { FriendsPacketData, FriendsPacketCallback } from '../../network/impl/friends'; +export type { RankPacketCallback } from '../../network/impl/rank'; +export type { PlayerPacketData } from '../../network/impl/player'; +export type { CraftingPacketData, CraftingPacketCallback } from '../../network/impl/crafting'; +export type { CountdownPacketData, CountdownPacketCallback } from '../../network/impl/countdown'; +export type { InterfacePacketData, InterfacePacketCallback } from '../../network/impl/interface'; +export type { LootBagPacketData, LootBagPacketCallback } from '../../network/impl/lootbag'; +export type { ResourcePacketCallback } from '../../network/impl/resource'; diff --git a/packages/common/types/mob.d.ts b/packages/common/types/mob.d.ts index 10e431faaf..38d1f77cf3 100644 --- a/packages/common/types/mob.d.ts +++ b/packages/common/types/mob.d.ts @@ -1,17 +1,39 @@ +import type { Bonuses, Stats } from '@kaetram/common/types/item'; + +// The mobs.json drops structure. +export interface MobDrop { + key: string; + count?: number; // Defaults to 1 if undefined. + chance: number; + variable?: boolean; // Whether or not the drop amount is randomized. + // Quest and achievement requirements. + quest?: string; + achievement?: string; + status?: 'started' | 'notstarted'; // Optional parameter for when to drop item given quest/achievement. +} + +export interface MobDropTable { + drops: MobDrop[]; + achievement?: string; // Achievement that has to be finished to unlock the drop table. + quest?: string; // Quest that must be completed to unlock drop table. +} + +export interface MobSkills { + accuracy: number; + strength: number; + defense: number; + magic: number; + archery: number; +} + export interface MobData { name: string; description?: string | string[]; hitPoints?: number; - drops?: { [itemKey: string]: number }; + drops?: MobDrop[]; dropTables?: string[]; level?: number; - health?: number; - accuracy?: number; - strength?: number; - defense?: number; - magic?: number; - archery?: number; - attackLevel?: number; + skills?: MobSkills; attackStats?: Stats; defenseStats?: Stats; bonuses?: Bonuses; @@ -36,6 +58,6 @@ export interface MobData { healRate?: number; } -export interface RawData { +export interface RawMobData { [key: string]: MobData; } diff --git a/packages/common/types/network.d.ts b/packages/common/types/network.d.ts index 1cedc2146c..d5e9925c2f 100644 --- a/packages/common/types/network.d.ts +++ b/packages/common/types/network.d.ts @@ -1,4 +1,4 @@ -import type { Packets } from '../network/packets'; +import type { Packets } from '@kaetram/common/network'; export interface ConnectionInfo { instance: string; diff --git a/packages/common/types/npc.d.ts b/packages/common/types/npc.d.ts deleted file mode 100644 index 4702c41e9b..0000000000 --- a/packages/common/types/npc.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -export interface NPCData { - name?: string; - text?: string[]; - role?: string; - store?: string; -} diff --git a/packages/common/types/player.d.ts b/packages/common/types/player.d.ts deleted file mode 100644 index d20241ccde..0000000000 --- a/packages/common/types/player.d.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Modules } from '../network'; -import type { EntityData } from '@kaetram/common/types/entity'; -import type { EquipmentData } from '@kaetram/common/types/equipment'; - -export interface PlayerData extends EntityData { - rank: Modules.Ranks; - pvp: boolean; - orientation: number; - - experience?: number; - nextExperience?: number; - prevExperience?: number; - - mana?: number; - maxMana?: number; - - equipments: EquipmentData[]; -} diff --git a/packages/common/types/pointer.d.ts b/packages/common/types/pointer.d.ts deleted file mode 100644 index ac2a273459..0000000000 --- a/packages/common/types/pointer.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -export interface PointerData { - type: number; - x?: number; - y?: number; - instance?: string; - button?: string; -} diff --git a/packages/common/types/popup.d.ts b/packages/common/types/popup.d.ts index afbd3f6fbc..09c0419df2 100644 --- a/packages/common/types/popup.d.ts +++ b/packages/common/types/popup.d.ts @@ -2,4 +2,5 @@ export interface PopupData { title: string; text: string; colour: string; + soundEffect?: string; } diff --git a/packages/common/types/quest.d.ts b/packages/common/types/quest.d.ts deleted file mode 100644 index fc06197c72..0000000000 --- a/packages/common/types/quest.d.ts +++ /dev/null @@ -1,102 +0,0 @@ -import type { PointerData } from './pointer'; -import type { PopupData } from './popup'; - -export type Actor = 'player' | 'npc'; - -export interface RawStage { - task: string; - npc?: string; - - /** Array of mob keys to kill. */ - mob?: string[]; - - /** How many of mobs to be killed. */ - mobCountRequirement?: number; - - /** Item required in the inventory to progress to next stage. */ - itemRequirement?: string[]; - - /** How many of a given item we need to progress. */ - itemRequirementCount?: number[]; - - /** Text for the NPC. */ - text?: DialogueItem[]; - completedText?: string[]; - hasItemText?: string[]; // Text for if the player has a required item/count in the inventory. - - /** Pointer information */ - pointer?: PointerData; - - /** Popup information */ - popup?: PopupData; - - /** If the stage grants the player an item. */ - itemKey?: string; - itemCount?: number; - - /** If the stage grants the user an ability. */ - ability?: string; - abilityLevel?: number; // Sets an ability to a level. - - /** If a tree must be cut. */ - tree?: string; - treeCount?: number; // Amount of tress to be cut. - - /** Skill experience rewards */ - skill?: string; - experience?: number; -} - -export interface RawQuest { - name: string; - description: string; - rewards?: string[]; - skillRequirements?: { [key: string]: number }; // Skills required to start the quest. - questRequirements?: string[]; // Quests required to start this quest. - hideNPCs?: HideNPC; // NPCs to hide after quest.- - stages: { [id: number]: RawStage }; -} - -export interface StageData { - task: string; - npc?: string; - mob?: string[]; - mobCountRequirement: number; // how many mobs we need to kill to progress - itemRequirement?: string[]; - itemRequirementCount?: number[]; // how many of an item we need for progression - text?: string[]; - completedText?: string[]; - pointer?: PointerData; - popup?: PopupData; - itemKey?: string; - itemCount?: number; - ability?: string; - abilityLevel?: number; - tree?: string; - treeCount?: number; - skill?: string; - experience?: number; -} - -export interface QuestData { - key: string; - stage: number; - subStage: number; - - name?: string; - description?: string; - skillRequirements?: { [key: string]: number }; - questRequirements?: string[]; - rewards?: string[]; - stageCount?: number; -} - -export interface SerializedQuest { - quests: QuestData[]; -} - -export interface HideNPC { - [key: string]: string; -} - -export type TaskType = 'talk' | 'kill' | 'pickup' | 'tree'; diff --git a/packages/common/types/resource.d.ts b/packages/common/types/resource.d.ts index b468928463..d5f488d4e5 100644 --- a/packages/common/types/resource.d.ts +++ b/packages/common/types/resource.d.ts @@ -1,4 +1,13 @@ +import type { Modules } from '../network'; +import type { EntityData } from './entity'; + +export interface ResourceRandomItem { + key: string; + chance: number; +} + export interface ResourceInfo { + name?: string; levelRequirement: number; // Required level to exhaust the resource experience: number; // Experience gained when exhausting the resource difficulty: number; // How hard it is to exhaust the resource @@ -8,8 +17,13 @@ export interface ResourceInfo { reqQuest?: string; // Quest required to exhaust the resource achievement?: string; // Achievement to be awarded when exhausting the resource (for first time). quest?: string; // Quest progress to be checked when exhausting the resource + randomItems?: ResourceRandomItem[]; // Random items to be awarded when exhausting the resource } export interface ResourceData { [key: string]: ResourceInfo; } + +export interface ResourceEntityData extends EntityData { + state: Modules.ResourceState; // The state of the resource +} diff --git a/packages/common/types/skills.d.ts b/packages/common/types/skills.d.ts deleted file mode 100644 index 12e05a707e..0000000000 --- a/packages/common/types/skills.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -import type Modules from '../network/modules'; - -export interface SkillData { - type: Modules.Skills; - experience: number; - level?: number; - percentage?: number; - nextExperience?: number; - combat?: boolean; -} - -export interface SerializedSkills { - skills: SkillData[]; - cheater: boolean; -} diff --git a/packages/common/types/statistics.d.ts b/packages/common/types/statistics.d.ts index e2c7e75e6a..9cdbaf165f 100644 --- a/packages/common/types/statistics.d.ts +++ b/packages/common/types/statistics.d.ts @@ -4,6 +4,7 @@ export interface StatisticsData { mobKills: { [key: string]: number }; mobExamines: string[]; resources: { [key: string]: number }; + drops: { [key: string]: number }; creationTime: number; totalTimePlayed: number; diff --git a/packages/common/types/status.d.ts b/packages/common/types/status.d.ts new file mode 100644 index 0000000000..0d1b7bcdd6 --- /dev/null +++ b/packages/common/types/status.d.ts @@ -0,0 +1,14 @@ +// Used to keep track of duration when logging out and back in. +export interface Duration { + timeout: NodeJS.Timeout; + startTime: number; + duration: number; +} + +export interface SerializedDuration { + remainingTime: number; +} + +export interface SerializedEffects { + [effect: number]: SerializedDuration; +} diff --git a/packages/common/types/stores.d.ts b/packages/common/types/stores.d.ts deleted file mode 100644 index c1d12a1862..0000000000 --- a/packages/common/types/stores.d.ts +++ /dev/null @@ -1,35 +0,0 @@ -/// INFO FROM THE STORE JSON /// - -export interface StoreItem { - key: string; - count: number; - price?: number; - stockAmount?: number; -} - -export interface StoreData { - items: StoreItem[]; // The items in the store. - refresh: number; // How often the store refreshes. - currency: string; // The currency used to buy items. - restricted?: boolean; -} - -export interface RawStore { - [key: string]: StoreData; -} - -////////////////////////////////////////// - -export interface SerializedStoreItem { - key: string; - name: string; - count: number; - price: number; - index?: number; -} - -export interface SerializedStoreInfo { - key: string; // Store's key - currency: string; // Store's currency - items: SerializedStoreItem[]; // Serialized store items. -} diff --git a/packages/common/types/utils.d.ts b/packages/common/types/utils.d.ts index 578f392900..cb3616c707 100644 --- a/packages/common/types/utils.d.ts +++ b/packages/common/types/utils.d.ts @@ -1,34 +1,7 @@ -/** - * A 2D position or vertex. - */ +export type MaybeArray = T | readonly T[]; -declare interface Position { - x: number; - y: number; - - gridX?: number; - gridY?: number; -} - -/** - * Used in the client-sided part of the game. This contains the absolute position - * of an object as well as its grid position Math.floor(x / tileSize). - */ - -declare interface Coordinate { - x: number; - y: number; - - gridX: number; - gridY: number; -} - -declare module '*.vert' { - let src: string; - export default src; -} - -declare module '*.frag' { - let src: string; - export default src; -} +export type UnionToIntersection = (T extends unknown ? (_: T) => unknown : never) extends ( + _: infer R +) => unknown + ? R + : never; diff --git a/packages/common/util/utils.ts b/packages/common/util/utils.ts index f6bdb713bd..39091948fc 100644 --- a/packages/common/util/utils.ts +++ b/packages/common/util/utils.ts @@ -27,7 +27,7 @@ export default { */ createInstance(identifier = 0): string { - return `${identifier}${this.randomInt(1000, 100_000)}${++this.counter}`; + return `${identifier}-${this.randomInt(1000, 100_000)}${++this.counter}`; }, /** @@ -109,37 +109,6 @@ export default { ); }, - /** - * This function is responsible for parsing a message and looking for special - * characters (primarily used for colour codes). This function will be expanded - * if necessary in the nearby future. - */ - - parseMessage(message: string): string { - try { - let messageBlocks = message.split('@'); - - if (messageBlocks.length % 2 === 0) { - log.warning('Improper message block format!'); - log.warning('Ensure format follows @COLOUR@ format.'); - return messageBlocks.join(' '); - } - - for (let index in messageBlocks) - if (parseInt(index) % 2 !== 0) - // we hit a colour code. - messageBlocks[index] = ``; - - let codeCount = messageBlocks.length / 2 - 1; - - for (let i = 0; i < codeCount; i++) messageBlocks.push(''); - - return messageBlocks.join(''); - } catch { - return ''; - } - }, - /** * This function is primarily used for comparing checksum data * of maps in order to determine if an update is necessary. @@ -168,7 +137,7 @@ export default { */ getEntityType(instance: string): number { - return parseInt(instance.slice(0, 1)); + return parseInt(instance.split('-')[0]); }, /** @@ -192,7 +161,7 @@ export default { */ hash(data: string, callback: (hash: string) => void): void { - bcryptjs.hash(data, 10, (error: Error, hash: string) => { + bcryptjs.hash(data, 10, (error: Error | null, hash: string) => { // Throw an error to prevent any further execution of the database. if (error) throw error; @@ -209,7 +178,7 @@ export default { */ compare(data: string, hash: string, callback: (result: boolean) => void): void { - bcryptjs.compare(data, hash, (error: Error, result: boolean) => { + bcryptjs.compare(data, hash, (error: Error | null, result: boolean) => { // Throw an error to prevent any further execution of the database. if (error) throw error; @@ -374,5 +343,32 @@ export default { archery: 0, magic: 0 }; + }, + + /** + * Converts a skill parameter into a resource type that can be + * used as an identifier for quests. + * @param skill The skill we are converting. + * @returns The type of resoruce that the skill corresponds to. + */ + + getResourceType(skill: Modules.Skills): string { + switch (skill) { + case Modules.Skills.Lumberjacking: { + return 'tree'; + } + + case Modules.Skills.Fishing: { + return 'fish'; + } + + case Modules.Skills.Mining: { + return 'rock'; + } + + default: { + return 'tree'; + } + } } }; diff --git a/packages/e2e/.eslintrc b/packages/e2e/.eslintrc deleted file mode 100644 index e26a008001..0000000000 --- a/packages/e2e/.eslintrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "globals": { - "cy": true - }, - "rules": { - "@typescript-eslint/no-namespace": "off" - } -} diff --git a/packages/e2e/cypress.config.ts b/packages/e2e/cypress.config.ts index be690ac7f0..02888961c4 100644 --- a/packages/e2e/cypress.config.ts +++ b/packages/e2e/cypress.config.ts @@ -24,7 +24,7 @@ async function setupNodeEvents( } export default defineConfig({ - projectId: 'wkwqqh', + projectId: 'v4ex1a', e2e: { baseUrl: 'http://localhost:9000', defaultCommandTimeout: 10_000, diff --git a/packages/e2e/cypress/e2e/inventory/inventory.context.ts b/packages/e2e/cypress/e2e/inventory/inventory.context.ts index 0a8e09adc3..01f25da108 100644 --- a/packages/e2e/cypress/e2e/inventory/inventory.context.ts +++ b/packages/e2e/cypress/e2e/inventory/inventory.context.ts @@ -7,10 +7,7 @@ export default class InventoryContext extends LoggedInContext { super(); this.registerLookup('inventory button', '#inventory-button'); this.registerLookup('inventory window', '#inventory'); - this.registerLookup( - 'first inventory slot', - '#inventory-container > ul > li:first-child div.item-slot' - ); + this.registerLookup('first inventory slot', '#inventory-container > ul > li:first-child'); this.registerLookup('drop command', '.action-drop-one'); } diff --git a/packages/e2e/cypress/support/repository.ts b/packages/e2e/cypress/support/repository.ts index 3f11b8784b..474f70921e 100644 --- a/packages/e2e/cypress/support/repository.ts +++ b/packages/e2e/cypress/support/repository.ts @@ -77,6 +77,7 @@ Cypress.Commands.add('createPlayerInventory', (playerInventory: PlayerInventory) }); declare global { + // eslint-disable-next-line @typescript-eslint/no-namespace namespace Cypress { interface Chainable { createPlayerInfo(playerInfo: PlayerInfo): Chainable; diff --git a/packages/e2e/cypress/tsconfig.json b/packages/e2e/cypress/tsconfig.json index 9bd0fdfb3d..ce6ba54c9a 100644 --- a/packages/e2e/cypress/tsconfig.json +++ b/packages/e2e/cypress/tsconfig.json @@ -1,12 +1,6 @@ { "extends": "../tsconfig.json", "compilerOptions": { - "module": "commonjs", - "target": "es6", - - "preserveSymlinks": true, - "types": ["@types/node", "cypress"] - }, - "include": ["**/*.ts"] + } } diff --git a/packages/e2e/database/mongodb.ts b/packages/e2e/database/mongodb.ts index e8364d9ead..a66c310723 100644 --- a/packages/e2e/database/mongodb.ts +++ b/packages/e2e/database/mongodb.ts @@ -21,12 +21,16 @@ export default class MongoDB { password: string, private databaseName: string, private tls: boolean, - srv: boolean + srv: boolean, + authSource: string ) { let srvInsert = srv ? 'mongodb+srv' : 'mongodb', authInsert = username && password ? `${username}:${password}@` : '', - portInsert = port > 0 ? `:${port}` : ''; - this.connectionUrl = `${srvInsert}://${authInsert}${host}${portInsert}/${databaseName}`; + portInsert = port > 0 ? `:${port}` : '', + authSourceInsert = authSource ? `?authSource=${authSource}` : ''; + this.connectionUrl = `${srvInsert}://${authInsert}${host}${portInsert}/${databaseName}${authSourceInsert}`; + + console.log(`MongoDB connection URL: ${this.connectionUrl}`); // Attempt to connect to MongoDB. this.createConnection(); @@ -45,15 +49,18 @@ export default class MongoDB { tls: this.tls }); - client.connect((error: Error | undefined, _client: MongoClient | undefined) => { - if (error) throw new Error(`Error while connecting to mongodb: [${error}]`); - - this.database = _client!.db(this.databaseName); + client + .connect() + .then((mongoClient: MongoClient) => { + this.database = mongoClient.db(this.databaseName); - this._isReady = true; + this._isReady = true; - log.notice('Successfully connected to the MongoDB server.'); - }); + log.notice('Successfully connected to the MongoDB server.'); + }) + .catch((error: Error) => { + throw new Error(`Error while connecting to mongodb: [${error}]`); + }); } /** @@ -92,21 +99,26 @@ export default class MongoDB { callback: (error?: AnyError) => void ) { let collection = this.database.collection(collectionName); - collection.updateOne(filter, { $set: body }, { upsert: true }, (error, result) => { - if (error) - log.error( - `An error occurred while saving ${ - collection.collectionName - } for ${JSON.stringify(filter)}:`, - error - ); - if (!result) - log.error( - `Unable to save ${collection.collectionName} for ${JSON.stringify(filter)}.` - ); - callback(error); - }); + collection + .updateOne(filter, { $set: body }, { upsert: true }) + .then((result) => { + if (!result) + log.error( + `Unable to save ${collection.collectionName} for ${JSON.stringify(filter)}.` + ); + callback(); + }) + .catch((error) => { + if (error) + log.error( + `An error occurred while saving ${ + collection.collectionName + } for ${JSON.stringify(filter)}:`, + error + ); + callback(error); + }); } public delete( @@ -115,15 +127,13 @@ export default class MongoDB { callback: (error?: AnyError) => void ) { let collection = this.database.collection(collectionName); - collection.deleteOne(filter, (error) => { - if (error) + + collection.deleteOne(filter).then((result) => { + if (!result) log.error( - `An error occurred while deleting ${JSON.stringify(filter)} from ${ - collection.collectionName - }:`, - error + `Unable to delete ${collection.collectionName} for ${JSON.stringify(filter)}.` ); - callback(error); + callback(); }); } diff --git a/packages/e2e/package.json b/packages/e2e/package.json index 3d80221613..b364cff71f 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -8,15 +8,14 @@ "test:open": "yarn test 'yarn cypress open -e TAGS=\"not @ignore\"'" }, "devDependencies": { - "@badeball/cypress-cucumber-preprocessor": "^12.0.0", - "@bahmutov/cypress-esbuild-preprocessor": "^2.1.3", + "@badeball/cypress-cucumber-preprocessor": "^18.0.5", + "@bahmutov/cypress-esbuild-preprocessor": "^2.2.0", "@kaetram/common": "workspace:*", - "@types/node": "^18.15.5", - "cypress": "^10.4.0", - "esbuild": "^0.14.53", - "start-server-and-test": "^1.14.0", - "tsx": "^3.12.6", - "typescript": "^5.0.2" + "cypress": "^13.1.0", + "esbuild": "^0.19.2", + "start-server-and-test": "^2.0.0", + "tsx": "^3.12.10", + "typescript": "^5.2.2" }, "cypress-cucumber-preprocessor": { "stepDefinitions": [ diff --git a/packages/e2e/tsconfig.json b/packages/e2e/tsconfig.json index b864fb7c9b..8d9d2d200f 100644 --- a/packages/e2e/tsconfig.json +++ b/packages/e2e/tsconfig.json @@ -1,7 +1 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "types": ["@types/node", "@kaetram/common"] - }, - "include": ["types/index.d.ts"] -} +{ "extends": "../../tsconfig.json" } diff --git a/packages/hub/build.ts b/packages/hub/build.ts new file mode 100644 index 0000000000..6acedd40d9 --- /dev/null +++ b/packages/hub/build.ts @@ -0,0 +1,18 @@ +import esbuild from 'esbuild'; + +await esbuild.build({ + entryPoints: ['./src/main.ts'], + outfile: './dist/main.js', + minify: true, + bundle: true, + sourcemap: true, + format: 'esm', + platform: 'node', + external: ['uws', 'discord.js'], + banner: { + js: ` + import { createRequire as topLevelCreateRequire } from 'module'; + const require = topLevelCreateRequire(import.meta.url); + ` + } +}); diff --git a/packages/hub/package.json b/packages/hub/package.json index 72edf69a1e..db1879ec69 100644 --- a/packages/hub/package.json +++ b/packages/hub/package.json @@ -2,33 +2,32 @@ "name": "@kaetram/hub", "type": "module", "scripts": { - "start": "tsx --preserve-symlinks ./src/main.ts", - "hub": "tsx watch --preserve-symlinks --clear-screen=false ./src/main.ts", - "build": "tsc --noEmit" + "hub": "tsx --watch --preserve-symlinks ./src/main.ts", + "build": "tsc && tsx --preserve-symlinks ./build.ts", + "start": "node --enable-source-maps ./dist/main.js" }, "dependencies": { "@kaetram/common": "workspace:*", - "@sentry/node": "^7.45.0", - "@sentry/tracing": "^7.45.0", - "axios": "^1.2.3", + "@sentry/node": "^7.68.0", + "@sentry/tracing": "^7.68.0", + "axios": "^1.5.0", "cors": "^2.8.5", - "discord.js": "^14.3.0", + "discord.js": "^14.13.0", "dotenv-extended": "^2.9.0", "dotenv-parse-variables": "^2.0.0", "express": "^4.18.2", - "mongodb": "^4.8.1", - "nodemailer": "^6.9.1", - "stripe": "^12.2.0", - "tsx": "^3.12.6", - "uws": "https://github.com/uNetworking/uWebSockets.js.git#commit=42c9c0d5d31f46ca4115dc75672b0037ec970f28" + "mongodb": "^6.0.0", + "nodemailer": "^6.9.5", + "stripe": "^13.5.0", + "tsx": "^3.12.10", + "uws": "https://github.com/uNetworking/uWebSockets.js.git#commit=e6ecc2102d68d99dc35969b0898fbd201e0f252b" }, "devDependencies": { - "@types/cors": "^2", + "@types/cors": "^2.8.14", "@types/dotenv-parse-variables": "^2.0.1", - "@types/express": "^4.17.13", - "@types/node": "^18.15.5", - "@types/nodemailer": "^6", - "nodemon": "^2.0.19", - "typescript": "^5.0.2" + "@types/express": "^4.17.17", + "@types/nodemailer": "^6.4.9", + "esbuild": "^0.19.2", + "typescript": "^5.2.2" } } diff --git a/packages/hub/src/console.ts b/packages/hub/src/console.ts index 5ae9cfa8ab..45cd54e4f7 100644 --- a/packages/hub/src/console.ts +++ b/packages/hub/src/console.ts @@ -1,9 +1,9 @@ import log from '@kaetram/common/util/log'; -import type Servers from './controllers/servers'; +import type Models from './controllers/models'; export default class Console { - public constructor(private servers: Servers) { + public constructor(private models: Models) { let { stdin } = process; stdin.addListener('data', (data) => { @@ -21,7 +21,7 @@ export default class Console { switch (command) { case 'server': { - return console.log(this.servers.findEmpty()); + return console.log(this.models.findEmptyServer()); } case 'player': { @@ -32,7 +32,7 @@ export default class Console { return; } - console.log(this.servers.findPlayer(username)); + console.log(this.models.findPlayer(username)); break; } diff --git a/packages/hub/src/controllers/api.ts b/packages/hub/src/controllers/api.ts index a6ee32a6e9..fcf5798fc0 100644 --- a/packages/hub/src/controllers/api.ts +++ b/packages/hub/src/controllers/api.ts @@ -11,7 +11,7 @@ import { Modules } from '@kaetram/common/network'; import type Cache from './cache'; import type Server from '../model/server'; -import type Servers from './servers'; +import type Models from './models'; import type Mailer from './mailer'; import type { ObjectId } from 'mongodb'; import type { Integration } from '@sentry/types'; @@ -25,14 +25,18 @@ import type { // Initialize stripe const stripe = new Stripe(config.stripeSecretKey, { - apiVersion: '2022-11-15' + apiVersion: '2023-08-16' }); /** * We use the API format from `@kaetram/server`. */ export default class API { - public constructor(private servers: Servers, private mailer: Mailer, private cache: Cache) { + public constructor( + private models: Models, + private mailer: Mailer, + private cache: Cache + ) { let apiEnabled = config.apiEnabled || config.hubEnabled, app: Express | undefined, router: Router | undefined; @@ -117,12 +121,12 @@ export default class API { */ private handleServer(_request: Request, response: Response): void { - if (!this.servers.hasSpace()) { + if (!this.models.hasSpace()) { response.json({ status: 'error' }); return; } - let server = this.servers.findEmpty(); + let server = this.models.findEmptyServer(); if (!server) { response.json({ status: 'error' }); @@ -139,7 +143,7 @@ export default class API { */ private handleAll(_request: Request, response: Response): void { - response.json(this.servers.serialize()); + response.json(this.models.serializeServers()); } /** @@ -228,7 +232,7 @@ export default class API { online = false; // Look through all the servers and see if the player is online. - this.servers.forEachServer((server: Server) => { + this.models.forEachServer((server: Server) => { if (server.id === serverId) return; if (server.players.includes(username)) online = true; diff --git a/packages/hub/src/controllers/cache.ts b/packages/hub/src/controllers/cache.ts index f4711d1216..7226de2832 100644 --- a/packages/hub/src/controllers/cache.ts +++ b/packages/hub/src/controllers/cache.ts @@ -6,7 +6,7 @@ import mobs from '@kaetram/server/data/mobs.json'; import Database from '@kaetram/common/database/database'; import type MongoDB from '@kaetram/common/database/mongodb/mongodb'; -import type { RawData } from '@kaetram/common/types/mob'; +import type { RawMobData } from '@kaetram/common/types/mob'; import type { Modules } from '@kaetram/common/network'; import type { MobAggregate, @@ -41,7 +41,7 @@ export default class Cache { this.database.onFail(this.handleFail.bind(this)); // Initialize the available mobs. - for (let key in mobs) this.availableMobs[key] = (mobs as RawData)[key].name; + for (let key in mobs) this.availableMobs[key] = (mobs as RawMobData)[key].name; } /** diff --git a/packages/hub/src/controllers/incoming.ts b/packages/hub/src/controllers/incoming.ts deleted file mode 100644 index 3e41bcb2f0..0000000000 --- a/packages/hub/src/controllers/incoming.ts +++ /dev/null @@ -1,130 +0,0 @@ -import log from '@kaetram/common/util/log'; -import config from '@kaetram/common/config'; -import Utils from '@kaetram/common/util/utils'; -import { Packets, Opcodes } from '@kaetram/common/network'; - -import type { GuildPacket } from '@kaetram/common/types/messages/outgoing'; -import type Server from '../model/server'; -import type { - ChatPacket, - FriendsPacket, - HandshakePacket, - PlayerPacket -} from '@kaetram/common/types/messages/hub'; - -export default class Incoming { - public constructor(private server: Server) { - // Callback for when the hub receives a message from the web socket. - this.server.connection.onMessage(([packet, opcode, info]) => { - if (!Utils.validPacket(packet)) { - log.error(`Non-existent packet received: ${packet} data: `); - log.error(info); - - return; - } - - try { - switch (packet) { - case Packets.Handshake: { - return this.handleHandshake(opcode); - } - - case Packets.Chat: { - return this.handleChat(opcode); - } - - case Packets.Guild: { - return this.handleGuild(opcode, info); - } - - case Packets.Friends: { - return this.handleFriends(info); - } - - case Packets.Player: { - return this.handlePlayer(opcode, info); - } - - case Packets.Relay: { - return this.server.relay(opcode); - } - } - } catch (error) { - log.error(error); - } - }); - } - - /** - * Handles a handshake from the web socket. Here we assign a server ID - * from the server list to the socket. - * @param message Contains the server ID among other preliminary information. - */ - - private handleHandshake(data: HandshakePacket): void { - // In the event the versions mismatch we just stop the connection. - if (config.gver !== data.gVer) { - log.error(`Game version mismatch: ${config.gver} ${data.gVer} from ${data.serverId}`); - - return this.server.connection.close(); - } - - this.server.load(data); - - this.server.readyCallback?.(); - } - - /** - * Receives information about the player's login our logout activity. - * @param opcode What type of player event we are handling. - * @param info Contains the username of the player that is logging in or out. - */ - - private handlePlayer(opcode: Opcodes.Player, info: PlayerPacket): void { - switch (opcode) { - case Opcodes.Player.Login: { - return this.server.add(info.username!, info.guild!); - } - - case Opcodes.Player.Logout: { - return this.server.remove(info.username!, info.guild!); - } - } - } - - /** - * Sends a chat callback message to the server. Depending on the information received, - * we determine whether it's a private message or a normal message. - * @param info Contains information about the message, such as source, content, and optionally, a target. - */ - - private handleChat(info: ChatPacket): void { - return this.server.message(info.source, info.message!, info.target!); - } - - /** - * Handles incoming messages regarding a guild. Used to broadcast to other servers - * actions that are performed on a guild. Things like a player joining, a player's - * rank being changed, or someone leaving. - * @param opcode The type of action that is being performed. - * @param info unknown (for now). - */ - - public handleGuild(opcode: Opcodes.Guild, info: GuildPacket): void { - switch (opcode) { - case Opcodes.Guild.Update: { - return this.server.handleGuild(info.username!, info.usernames!); - } - } - } - - /** - * Contains a list of inactive friends list for a given username. We relay this to the server - * controller so that we can check if any server has a player that is on the inactive list. - * @param info Contains the username and the list of inactive friends. - */ - - private handleFriends(info: FriendsPacket): void { - return this.server.handleFriends(info.username, info.inactiveFriends!); - } -} diff --git a/packages/hub/src/controllers/servers.ts b/packages/hub/src/controllers/models.ts similarity index 52% rename from packages/hub/src/controllers/servers.ts rename to packages/hub/src/controllers/models.ts index ce10e9d4d7..63aae58912 100644 --- a/packages/hub/src/controllers/servers.ts +++ b/packages/hub/src/controllers/models.ts @@ -1,11 +1,17 @@ import Server from '../model/server'; +import Admin from '../model/admin'; import log from '@kaetram/common/util/log'; -import { Chat } from '@kaetram/common/network/impl'; +import { ChatPacket } from '@kaetram/common/network/impl'; +import Utils from '@kaetram/common/util/utils'; +import { Packets } from '@kaetram/common/network'; +import config from '@kaetram/common/config'; +import Packet from '@kaetram/common/network/packet'; -import type Packet from '@kaetram/common/network/packet'; +import type Model from '../model'; import type Connection from '../network/connection'; import type { SerializedServer } from '@kaetram/common/types/network'; +import type { HandshakePacketData } from '@kaetram/common/network/impl/handshake'; type PlayerCallback = ( username: string, @@ -20,8 +26,9 @@ type MessageCallback = ( serverName?: string, withArrow?: boolean ) => void; -export default class Servers { - private servers: { [instance: string]: Server } = {}; + +export default class Models { + private models: { [instance: string]: Model } = {}; public playerCallback?: PlayerCallback; public messageCallback?: MessageCallback; @@ -37,10 +44,100 @@ export default class Servers { */ public connect(instance: string, connection: Connection): void { - let server = new Server(instance, this, connection); + connection.onMessage(([packet, opcode, info]) => { + if (!Utils.validPacket(packet)) { + log.error(`Non-existent packet received: ${packet} data: `); + log.error(info); + + return; + } + + if (packet === Packets.Handshake) this.handleHandshake(opcode, instance, connection); + else this.models[instance].handlePacket(packet, opcode, info); + + this.syncAdmins(); + }); + } + + private handleHandshake(data: HandshakePacketData, instance: string, connection: Connection) { + switch (data.type) { + case 'hub': { + if (config.gver !== data.gVer) { + log.error( + `Game version mismatch: ${config.gver} ${data.gVer} from ${data.serverId}` + ); + + return connection.close(); + } + + let server = new Server(this, instance, connection); + + server.load(data); + this.addServer(server); + + break; + } + + case 'admin': { + let admin = new Admin(this, instance, connection); + + this.addAdmin(admin); + + break; + } + + case 'client': { + log.error(`Client ${instance} is not a valid server.`); - // Callback for when the server finishes the handshake. - server.onReady(() => this.add(server)); + break; + } + } + } + + /** + * Get a server object from our list of servers. + * @param instance The instance of the server we are getting. + * @returns The server object if it exists. + */ + + private getServer(instance: string): Server | undefined { + let server = this.models[instance]; + + if (server instanceof Server) return server; + } + + /** + * Get a list of all servers. + * @returns An array of all servers. + */ + + private getAllServers(): Server[] { + let servers = Object.values(this.models).filter((model) => model instanceof Server); + + return servers as Server[]; + } + + /** + * Get an admin object from our list of admins. + * @param instance The instance of the admin we are getting. + * @returns The admin object if it exists. + */ + + private getAdmin(instance: string): Admin | undefined { + let admin = this.models[instance]; + + if (admin instanceof Admin) return admin; + } + + /** + * Get a list of all admins. + * @returns An array of all admins. + */ + + private getAllAdmins(): Admin[] { + let admins = Object.values(this.models).filter((model) => model instanceof Admin); + + return admins as Admin[]; } /** @@ -48,27 +145,48 @@ export default class Servers { * @param server The server object we are adding. */ - private add(server: Server): void { - if (server.instance in this.servers) + private addServer(server: Server): void { + if (server.instance in this.models) return log.error(`Server ${server.instance} already exists.`); - this.servers[server.instance] = server; - + this.models[server.instance] = server; this.addCallback?.(server.id, server.name); } + /** + * Handles adding an admin to our list of admins. + * @param admin The admin object we are adding. + */ + + private addAdmin(admin: Admin): void { + if (admin.instance in this.models) + return log.error(`Admin ${admin.instance} already exists.`); + + this.models[admin.instance] = admin; + } + + private syncAdmins() { + this.broadcastAdmins( + new Packet(Packets.AdminSync, undefined, { servers: this.serializeServers() }) + ); + } + /** * Handles removing a server from our list of servers. * @param instance The instance of the server we are removing. */ public remove(instance: string): void { + if (!(instance in this.models)) return; + + let model = this.models[instance]; + // Prevent crashes from removing non-existent servers. - if (!(instance in this.servers)) return; + if (model instanceof Server) this.removeCallback?.(model.id, model.name); - this.removeCallback?.(this.servers[instance].id, this.servers[instance].name); + delete this.models[instance]; - delete this.servers[instance]; + this.syncAdmins(); } /** @@ -77,11 +195,25 @@ export default class Servers { * @param exclude The server we are excluding from the broadcast. */ - public broadcast(packet: Packet, exclude = ''): void { - for (let server in this.servers) { - if (server === exclude) continue; + public broadcastServers(packet: Packet, exclude = ''): void { + for (let instance in this.models) { + if (instance === exclude) continue; + + this.getServer(instance)?.send(packet); + } + } + + /** + * Broadcasts a message to all admins. Optionally we can exclude an admin. + * @param packet The packet object that we want to send to the admin. + * @param exclude The admin we are excluding from the broadcast. + */ + + public broadcastAdmins(packet: Packet, exclude = ''): void { + for (let instance in this.models) { + if (instance === exclude) continue; - this.servers[server].send(packet); + this.getAdmin(instance)?.send(packet); } } @@ -93,7 +225,7 @@ export default class Servers { */ public global(source: string, message: string, colour: string): void { - this.broadcast(new Chat({ source, message, colour })); + this.broadcastServers(new ChatPacket({ source, message, colour })); } /** @@ -117,8 +249,8 @@ export default class Servers { */ public hasSpace(): boolean { - return Object.values(this.servers).some((server: Server) => { - return server.players.length < server.maxPlayers; + return Object.values(this.models).some((server) => { + return server instanceof Server && server.players.length < server.maxPlayers; }); } @@ -129,10 +261,8 @@ export default class Servers { * @returns The server that has space for a new player, or undefined if not found. */ - public findEmpty(): Server | undefined { - for (let key in this.servers) { - let server = this.servers[key]; - + public findEmptyServer(): Server | undefined { + for (let server of this.getAllServers()) { if (server.players.length >= server.maxPlayers - 1) continue; return server; @@ -149,8 +279,8 @@ export default class Servers { */ public findPlayer(username: string): Server | undefined { - for (let key in this.servers) - if (this.servers[key].players.includes(username)) return this.servers[key]; + for (let server of this.getAllServers()) + if (server.players.includes(username)) return server; return undefined; } @@ -174,12 +304,10 @@ export default class Servers { * @returns Contains an array of serialized server information. */ - public serialize(): SerializedServer[] { - return Object.values(this.servers) - .map((server: Server) => server.serialize()) - .sort((a, b) => { - return a.id - b.id; - }); + public serializeServers(): SerializedServer[] { + return this.getAllServers() + .map((server) => server.serialize()) + .sort((a, b) => a.id - b.id); } /** @@ -188,7 +316,7 @@ export default class Servers { */ public forEachServer(callback: (server: Server) => void): void { - for (let server in this.servers) callback(this.servers[server]); + for (let server of this.getAllServers()) callback(server); } /** diff --git a/packages/hub/src/main.ts b/packages/hub/src/main.ts index 7ad5aa6769..d97064b393 100644 --- a/packages/hub/src/main.ts +++ b/packages/hub/src/main.ts @@ -2,7 +2,7 @@ import Console from './console'; import API from './controllers/api'; import Cache from './controllers/cache'; import Handler from './network/handler'; -import Servers from './controllers/servers'; +import Models from './controllers/models'; import Mailer from './controllers/mailer'; import log from '@kaetram/common/util/log'; @@ -12,8 +12,8 @@ import Utils from '@kaetram/common/util/utils'; export default class Main { private cache: Cache = new Cache(); - private servers: Servers = new Servers(); private handler: Handler = new Handler(); // The network handler. + private models: Models = new Models(); private discord: Discord = new Discord(); private mailer: Mailer = new Mailer(); @@ -21,22 +21,22 @@ export default class Main { log.notice(`Initializing ${config.name} Hub ${config.gver}.`); // Relay global messages from the Discord server to all servers. - this.discord.onMessage(this.servers.global.bind(this.servers)); + this.discord.onMessage(this.models.global.bind(this.models)); // Callbacks for the web socket server. - this.handler.onConnection(this.servers.connect.bind(this.servers)); - this.handler.onDisconnect(this.servers.remove.bind(this.servers)); + this.handler.onConnection(this.models.connect.bind(this.models)); + this.handler.onDisconnect(this.models.remove.bind(this.models)); // Callbacks for the server handler. - this.servers.onAdd(this.handleAdd.bind(this)); - this.servers.onRemove(this.handleRemove.bind(this)); - this.servers.onPlayer(this.handlePlayer.bind(this)); - this.servers.onMessage(this.discord.sendMessage.bind(this.discord)); + this.models.onAdd(this.handleAdd.bind(this)); + this.models.onRemove(this.handleRemove.bind(this)); + this.models.onPlayer(this.handlePlayer.bind(this)); + this.models.onMessage(this.discord.sendMessage.bind(this.discord)); if (this.handler.ready) log.notice(`Hub is now listening on port: ${config.hubWsPort}.`); - new Console(this.servers); - new API(this.servers, this.mailer, this.cache); + new Console(this.models); + new API(this.models, this.mailer, this.cache); } /** diff --git a/packages/hub/src/model/admin.ts b/packages/hub/src/model/admin.ts new file mode 100644 index 0000000000..d563ca25a0 --- /dev/null +++ b/packages/hub/src/model/admin.ts @@ -0,0 +1,32 @@ +import Model from '.'; + +import log from '@kaetram/common/util/log'; + +import type { Packets } from '@kaetram/common/network'; +import type Packet from '@kaetram/common/network/packet'; + +export default class Admin extends Model { + /** + * Handles sending a message to the admin's websocket connection. + * @param packet The packet object that we want to send to the admin. + */ + + public send(packet: Packet): void { + this.connection.send(JSON.stringify(packet.serialize())); + } + + /** + * A broadcast message is sent to all the admins currently connected to the hub. + * We also want to relay an update to the Discord bot to update population + * if it's a login/logout-based packet. + * @param packet The packet that we want to broadcast to all admins. + */ + + public broadcast(packet: Packet): void { + this.controller.broadcastAdmins(packet, this.instance); + } + + public override handlePacket(packet: Packets, opcode: never, info: never): void { + log.info(`Received packet ${packet} from admin ${this.address}`); + } +} diff --git a/packages/hub/src/model/index.ts b/packages/hub/src/model/index.ts new file mode 100644 index 0000000000..6e779313ea --- /dev/null +++ b/packages/hub/src/model/index.ts @@ -0,0 +1,19 @@ +import Utils from '@kaetram/common/util/utils'; + +import type Models from '../controllers/models'; +import type Connection from '../network/connection'; +import type { Packets } from '@kaetram/common/network'; + +export default abstract class Model { + public address; + + public constructor( + public controller: Models, + public instance: string, + public connection: Connection + ) { + this.address = Utils.bufferToAddress(this.connection.socket.getRemoteAddressAsText()); + } + + public abstract handlePacket(packet: Packets, opcode: never, data: never): void; +} diff --git a/packages/hub/src/model/server.ts b/packages/hub/src/model/server.ts index 5208e7883f..829d8cbc25 100644 --- a/packages/hub/src/model/server.ts +++ b/packages/hub/src/model/server.ts @@ -1,52 +1,145 @@ -import Incoming from '../controllers/incoming'; +import Model from '.'; -import Utils from '@kaetram/common/util/utils'; import Packet from '@kaetram/common/network/packet'; -import { Chat, Friends, Guild, Relay } from '@kaetram/common/network/impl'; import { Opcodes, Packets } from '@kaetram/common/network'; - -import type { Member } from '@kaetram/common/types/guild'; -import type { Friend } from '@kaetram/common/types/friends'; -import type Servers from '../controllers/servers'; -import type Connection from '../network/connection'; +import log from '@kaetram/common/util/log'; +import { GuildPacket, FriendsPacket, ChatPacket } from '@kaetram/common/network/impl'; + +import type { PlayerPacketData } from '@kaetram/common/network/impl/player'; +import type { HandshakePacketData } from '@kaetram/common/network/impl/handshake'; +import type { Member } from '@kaetram/common/network/impl/guild'; +import type { Friend } from '@kaetram/common/network/impl/friends'; +import type { ChatPacketData, FriendsPacketData } from '@kaetram/common/types/messages/hub'; import type { SerializedServer } from '@kaetram/common/types/network'; -import type { HandshakePacket } from '@kaetram/common/types/messages/hub'; +import type { GuildPacketData } from '@kaetram/common/types/messages/outgoing'; -export default class Server { +export default class Server extends Model { public id = -1; public name = ''; public host = ''; public port = -1; - public address = ''; public players: string[] = []; public maxPlayers = 2; - public readyCallback?: () => void; + /** + * Loads the information from the handshake packet into the server object. + * @param data Contains preliminary information about the server. + */ + + public load(data: HandshakePacketData): void { + if (data.type === 'hub') { + this.name = data.name; + this.id = data.serverId; + this.host = data.remoteHost; + this.port = data.port; + this.players = data.players; + this.maxPlayers = data.maxPlayers; + } else log.error(`Invalid handshake type: ${data.type}`); + } + + public override handlePacket(packet: Packets, opcode: never, info: never): void { + switch (packet) { + case Packets.Chat: { + return this.handleChat(opcode); + } + + case Packets.Guild: { + return this.handleGuild(opcode, info); + } + + case Packets.Friends: { + return this.handleFriends(info); + } - public constructor( - public instance: string, - public controller: Servers, - public connection: Connection - ) { - this.address = Utils.bufferToAddress(this.connection.socket.getRemoteAddressAsText()); + case Packets.Player: { + return this.handlePlayer(opcode, info); + } - new Incoming(this); + case Packets.Relay: { + return this.relay(opcode); + } + } } /** - * Loads the information from the handshake packet into the server object. - * @param data Contains preliminary information about the server. + * Receives information about the player's login our logout activity. + * @param opcode What type of player event we are handling. + * @param info Contains the username of the player that is logging in or out. + */ + + private handlePlayer(opcode: Opcodes.Player, info: PlayerPacketData): void { + switch (opcode) { + case Opcodes.Player.Login: { + return this.add(info.username!, info.guild!); + } + + case Opcodes.Player.Logout: { + return this.remove(info.username!, info.guild!); + } + } + } + + /** + * Sends a chat callback message to the server. Depending on the information received, + * we determine whether it's a private message or a normal message. + * @param info Contains information about the message, such as source, content, and optionally, a target. + */ + + private handleChat(info: ChatPacketData): void { + return this.message(info.source, info.message!, info.target!); + } + + /** + * Handles incoming messages regarding a guild. Used to broadcast to other servers + * actions that are performed on a guild. Things like a player joining, a player's + * rank being changed, or someone leaving. + * @param opcode The type of action that is being performed. + * @param info unknown (for now). */ - public load(data: HandshakePacket): void { - this.name = data.name; - this.id = data.serverId; - this.host = data.remoteHost; - this.port = data.port; - this.players = data.players; - this.maxPlayers = data.maxPlayers; + public handleGuild(opcode: Opcodes.Guild, info: GuildPacketData): void { + switch (opcode) { + case Opcodes.Guild.Update: { + let { username, usernames: inactiveMembers } = info, + activeMembers: Member[] = []; + + for (let member of inactiveMembers!) { + let targetServer = this.controller.findPlayer(member); + + if (targetServer) + activeMembers.push({ username: member, serverId: targetServer.id }); + } + + // Send the list of active members back to the source server's player. + this.send( + new GuildPacket(Opcodes.Guild.Update, { username, members: activeMembers }) + ); + } + } + } + + /** + * Contains a list of inactive friends list for a given username. We relay this to the server + * controller so that we can check if any server has a player that is on the inactive list. + * @param info Contains the username and the list of inactive friends. + */ + + private handleFriends(info: FriendsPacketData): void { + let { username, inactiveFriends } = info, + activeFriends: Friend = {}; + + // Look through all the inactive friends and try to find them on a server. + for (let friend of inactiveFriends!) { + let targetServer = this.controller.findPlayer(friend); + + // If the player is online, add them to the active friends list. + if (targetServer) activeFriends[friend] = { online: true, serverId: targetServer.id }; + } + + // Send the active friends back to the server. + this.send(new FriendsPacket(Opcodes.Friends.Sync, { username, activeFriends })); } /** @@ -66,7 +159,7 @@ export default class Server { */ public broadcast(packet: Packet): void { - this.controller.broadcast(packet, this.instance); + this.controller.broadcastServers(packet, this.instance); } /** @@ -99,8 +192,12 @@ export default class Server { this.players.push(username); // Broadcast the login to all the servers. - this.controller.broadcast( - new Packet(Packets.Player, Opcodes.Player.Login, { username, serverId: this.id, guild }) + this.controller.broadcastServers( + new Packet(Packets.Player, Opcodes.Player.Login, { + username, + serverId: this.id, + guild + }) ); // Create a callback for the player logging in. @@ -117,7 +214,7 @@ export default class Server { this.players = this.players.filter((player) => player !== username); // Broadcast the logout to all the servers. - this.controller.broadcast( + this.controller.broadcastServers( new Packet(Packets.Player, Opcodes.Player.Logout, { username, serverId: this.id, @@ -146,68 +243,13 @@ export default class Server { let targetServer = this.controller.findPlayer(target); // No player could be found, so we tell the source server that the player is not online. - if (!targetServer) return this.send(new Chat({ source, target, notFound: true })); + if (!targetServer) return this.send(new ChatPacket({ source, target, notFound: true })); // Send the private message to the target player's server. - targetServer.send(new Chat({ source, message, target })); + targetServer.send(new ChatPacket({ source, message, target })); // Send a confirmation to the source server that the message was sent. - this.send(new Chat({ source, message, target, success: true })); - } - - /** - * Searches through all the game servers to see which players in the `inactiveMembers` - * list are online on another server. We create a dictionary of these players and - * pass it back to the player that is making the request. - * @param username The player that is making the request. - * @param inactiveMembers List of members to search for in other servers. - */ - - public handleGuild(username: string, inactiveMembers: string[] = []): void { - let activeMembers: Member[] = []; - - for (let member of inactiveMembers) { - let targetServer = this.controller.findPlayer(member); - - if (targetServer) activeMembers.push({ username: member, serverId: targetServer.id }); - } - - // Send the list of active members back to the source server's player. - this.send(new Guild(Opcodes.Guild.Update, { username, members: activeMembers })); - } - - /** - * Searches through all the servers connected to the hub and tries to see which players - * among the inactive player list are online. For each player online we store them in - * an array. We send that array back to the source server (where the player logged in), - * and the source server will update the player's friend list. - * @param username The player that is logging in. - * @param inactiveFriends The list of friends that are not online on the source server. - */ - - public handleFriends(username: string, inactiveFriends: string[] = []): void { - let activeFriends: Friend = {}; - - // Look through all the inactive friends and try to find them on a server. - for (let friend of inactiveFriends) { - let targetServer = this.controller.findPlayer(friend); - - // If the player is online, add them to the active friends list. - if (targetServer) activeFriends[friend] = { online: true, serverId: targetServer.id }; - } - - // Send the active friends back to the server. - this.send(new Friends(Opcodes.Friends.Sync, { username, activeFriends })); - } - - /** - * Ready callback for when the server has finished initializing the handshake - * protocol with the hub. Once the handshake is ready and we have all the preliminary - * data, we can add the server to the list of servers. - */ - - public onReady(callback: () => void): void { - this.readyCallback = callback; + this.send(new ChatPacket({ source, message, target, success: true })); } /** diff --git a/packages/hub/src/network/handler.ts b/packages/hub/src/network/handler.ts index 8f82ea1bc0..46715e1288 100644 --- a/packages/hub/src/network/handler.ts +++ b/packages/hub/src/network/handler.ts @@ -3,9 +3,8 @@ import Connection from './connection'; import log from '@kaetram/common/util/log'; import config from '@kaetram/common/config'; import Utils from '@kaetram/common/util/utils'; -import { App, DEDICATED_COMPRESSOR_3KB } from 'uws'; +import { App, DEDICATED_COMPRESSOR_3KB, type WebSocket } from 'uws'; -import type { WebSocket } from 'uws'; import type { ConnectionInfo } from '@kaetram/common/types/network'; /** diff --git a/packages/hub/tsconfig.json b/packages/hub/tsconfig.json index 97b31d4a54..8d9d2d200f 100644 --- a/packages/hub/tsconfig.json +++ b/packages/hub/tsconfig.json @@ -1,6 +1 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "types": ["@types/node", "@kaetram/common"] - } -} +{ "extends": "../../tsconfig.json" } diff --git a/packages/server/build.ts b/packages/server/build.ts new file mode 100644 index 0000000000..6acedd40d9 --- /dev/null +++ b/packages/server/build.ts @@ -0,0 +1,18 @@ +import esbuild from 'esbuild'; + +await esbuild.build({ + entryPoints: ['./src/main.ts'], + outfile: './dist/main.js', + minify: true, + bundle: true, + sourcemap: true, + format: 'esm', + platform: 'node', + external: ['uws', 'discord.js'], + banner: { + js: ` + import { createRequire as topLevelCreateRequire } from 'module'; + const require = topLevelCreateRequire(import.meta.url); + ` + } +}); diff --git a/packages/server/data/abilities.json b/packages/server/data/abilities.json index 82fe0bd977..1b5154a53e 100644 --- a/packages/server/data/abilities.json +++ b/packages/server/data/abilities.json @@ -1,165 +1,165 @@ { - "intimidate": { - "type": "active", - "levels": { - "1": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "2": { - "cooldown": 60000, - "duration": 20000, - "mana": 17 - }, - "3": { - "cooldown": 60000, - "duration": 25000, - "mana": 19 - }, - "4": { - "cooldown": 60000, - "duration": 30000, - "mana": 21 - } - } - }, + "intimidate": { + "type": "active", + "levels": { + "1": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "2": { + "cooldown": 60000, + "duration": 20000, + "mana": 17 + }, + "3": { + "cooldown": 60000, + "duration": 25000, + "mana": 19 + }, + "4": { + "cooldown": 60000, + "duration": 30000, + "mana": 21 + } + } + }, - "run": { - "type": "active", - "levels": { - "1": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "2": { - "cooldown": 60000, - "duration": 17000, - "mana": 15 - }, - "3": { - "cooldown": 60000, - "duration": 19000, - "mana": 15 - }, - "4": { - "cooldown": 60000, - "duration": 22000, - "mana": 15 - } - } - }, + "run": { + "type": "active", + "levels": { + "1": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "2": { + "cooldown": 60000, + "duration": 17000, + "mana": 15 + }, + "3": { + "cooldown": 60000, + "duration": 19000, + "mana": 15 + }, + "4": { + "cooldown": 60000, + "duration": 22000, + "mana": 15 + } + } + }, - "awareness": { - "type": "passive" - }, + "awareness": { + "type": "passive" + }, - "dualistsmark": { - "type": "active", - "levels": { - "1": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "2": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "3": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "4": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - } - } - }, + "dualistsmark": { + "type": "active", + "levels": { + "1": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "2": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "3": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "4": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + } + } + }, - "hotshot": { - "type": "active", - "levels": { - "1": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "2": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "3": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "4": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - } - } - }, + "hotshot": { + "type": "active", + "levels": { + "1": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "2": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "3": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "4": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + } + } + }, - "thickskin": { - "type": "active", - "levels": { - "1": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "2": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "3": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "4": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - } - } - }, + "thickskin": { + "type": "active", + "levels": { + "1": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "2": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "3": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "4": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + } + } + }, - "precognition": { - "type": "passive" - }, + "precognition": { + "type": "passive" + }, - "secretcalling": { - "type": "active", - "levels": { - "1": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "2": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "3": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - }, - "4": { - "cooldown": 60000, - "duration": 15000, - "mana": 15 - } + "secretcalling": { + "type": "active", + "levels": { + "1": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "2": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "3": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + }, + "4": { + "cooldown": 60000, + "duration": 15000, + "mana": 15 + } + } } - } } diff --git a/packages/server/data/achievements.json b/packages/server/data/achievements.json index b96ec78626..7dafd6f03d 100644 --- a/packages/server/data/achievements.json +++ b/packages/server/data/achievements.json @@ -1,105 +1,88 @@ { - - "firstrock": { "name": "First Rock", "description": "Mine your first rock!" }, - "firstfish": { "name": "First Fish", "description": "Catch your first fish!" }, - "ratinfestation": { "name": "Generic Task 1", "description": "Bulk Bogan needs you to defeat 20 rats!", - "npc": "villager", + "region": "Mudwich", + "npc": "forestnpc", "dialogueHidden": [ - "Hello there fellow adventurer!", - "Please...", "Please help me with these rats!", + "Hello there fellow adventurer!", + "Please...", + "Please help me with these rats!", "If you slay 20 of them, I'll su-", - "Reward you with something special!"], - "dialogueStarted": [ - "Please, those rats are really annoying!", - "They won't let me be." + "Reward you with something special!" ], - + "dialogueStarted": ["Please, those rats are really annoying!", "They won't let me be."], "mob": ["rat", "icerat"], "mobCount": 20, - "rewardSkill": "strength", "rewardExperience": 369 }, - "examiner10": { "name": "Examiner", "description": "Inspect 10 random things around the world." }, - "lumberjacking10": { "name": "Lumberjacker", "description": "Chop down 10 trees." }, - "mining10": { "name": "Miner Man", "description": "Acquire 10 rocks." }, - "fishing10": { "name": "Fisherman", "description": "Catch 10 fishies." }, - "boxingman": { "name": "Generic Task 2", - "description": "Talk to Mike Tyson in Mudwich about beating stuff up", + "description": "Talk to Bike Lyson in Mudwich about beating stuff up", + "region": "Mudwich", "npc": "boxingman", "dialogueHidden": [ "Hey there, you look like you can take a punch!", "I'm looking for someone to beat up some stuff for me.", "If you go and beat up 25 snakes, I have a special reward for you!" ], - - "dialogueStarted": [ - "Beat up 25 sneks for me!", - "I'll show you something special if you do!" - ], - + "dialogueStarted": ["Beat up 25 sneks for me!", "I'll show you something special if you do!"], "mob": ["snek"], "mobCount": 25, - "rewardAbility": "run", "rewardSkill": "strength", "rewardExperience": 2000 }, - "ahiddenpath": { "name": "Hidden Path", - "description": "Discover the hidden path in Mudwich." + "description": "Discover the hidden path.", + "region": "Mudwich" }, - "hiddenreward": { "name": "Hidden Reward", - "description": "Kill some secret spooky skeletons somewhere." + "description": "Kill some secret spooky skeletons somewhere.", + "region": "Mudwich" }, - "wormholes": { "name": "Wormholes", "description": "Investigate the spooky occurrence in Mudwich.", + "region": "Mudwich", "hidden": true, "rewardAbility": "precognition" }, - "ancientwizard": { "name": "Ancient Wizard", "description": "Defeat the ancient wizard in Mudwich!" }, - "crabproblem": { - "name": "Crab Problem", + "name": "Oh Crab!", "description": "Help Bubba by defeating 10 crabs!", + "region": "Mudwich", "hidden": true, "npc": "beachnpc", "dialogueHidden": [ @@ -108,53 +91,49 @@ "I see you're pretty good with the killing stuff.", "Mind killing 10 crabs for me?" ], - "dialogueStarted": [ - "C'mon man, please kill me 10 crabs." - ], - + "dialogueStarted": ["C'mon man, please kill me 10 crabs."], "mob": ["crab", "hermitcrab"], "mobCount": 10, - "rewardSkill": "accuracy", "rewardExperience": 696 }, - "warriorcrab": { "name": "Warrior Crab", - "description": "Defeat the Hermit Crab Warrior hidden on the beach." + "description": "Defeat the Hermit Crab Warrior hidden on the beach.", + "region": "Mudwich" }, - "sandtreasure": { "name": "Sand Treasure", - "description": "Find the treasure hidden somewhere on the beach." + "description": "Find the treasure hidden somewhere on the beach.", + "region": "Mudwich" }, - "waterguardian": { "name": "Water Guardian", "description": "Defeat the Water Guardian!", + "region": "Mudwich", "hidden": true }, - "mermaidguard": { "name": "Mermaid Guard", "description": "Defeat the mermaid guarding the Sea Cucumber!", + "region": "Under the Sea", "hidden": true }, - "pirates": { "name": "Pirates", - "description": "There's skeleton pirates under the sea?" + "description": "There's skeleton pirates under the sea?", + "region": "Under the Sea" }, - "piratestreasure": { "name": "Pirate's Treasure", "description": "Find the treasure hidden in the pirate's ship.", + "region": "Under the Sea", "hidden": true }, - "zombielovers": { "name": "Zombie Lovers", "description": "The worried zombie girlfriend needs your help!", + "region": "Under the Sea", "npc": "zombiegf", "dialogueHidden": [ "You! Please, you need to help me!", @@ -163,285 +142,353 @@ "Slay 20 of them just to make sure they're not my boyfriend.", "What? I gotta give you a task, isn't that why you talked to me?" ], - "dialogueStarted": [ - "Please, slay 20 zombies for me!" - ], - + "dialogueStarted": ["Please, slay 20 zombies for me!"], "mob": ["zombie"], "mobCount": 20, - "rewardSkill": "strength", "rewardExperience": 4269 }, - "babyseadragon": { "name": "Baby Sea Dragon", - "description": "Defeat the baby sea dragon guardian!" + "description": "Defeat the baby sea dragon guardian!", + "region": "Under the Sea" }, - "underwatertreasure": { "name": "Water Chest", - "description": "Find the treasure hidden underwater." + "description": "Find the treasure hidden underwater.", + "region": "Under the Sea" }, - "patsow": { "name": "Patsow Pleateau", "description": "Arrive at Patsow plateau!", + "region": "Patsow", "hidden": true }, - "ogreguardian": { "name": "Ogre Guardian", "description": "Defeat the Ogre Guardian!", + "region": "Patsow", "rewardExperience": 1420 }, - "pathofdeath": { "name": "Path of Death", - "description": "Defeat the ogre defending the ogre lord." , + "description": "Defeat the ogre defending the ogre lord.", + "region": "Patsow", "hidden": true }, - "treadcarefully": { "name": "Tread Carefully", "description": "I literally said to tread carefully.", + "region": "Patsow", "hidden": true }, - "goldengolem": { "name": "Golden Golem", - "description": "Defeat the Golden Golem!" + "description": "Defeat the Golden Golem!", + "region": "Patsow" }, - "skeletonking": { "name": "Skeleton King", "description": "Defeat the Skeleton King!", + "region": "Patsow", "hidden": true, - "rewardSkill": "strength", "rewardExperience": 12560 }, - "ogrelord": { "name": "Ogre Lord", "description": "Defeat the Ogre Lord!", + "region": "Patsow", "hidden": true, - "rewardSkill": "strength", "rewardExperience": 12560 }, - "queenant": { "name": "Queen Ant", "description": "Defeat the Queen Ant!", + "region": "Crullfeld", "hidden": true, - "rewardSkill": "health", "rewardExperience": 33560 }, - "notwhatitseems": { "name": "Spooky Look-alike", "description": "Discover a mimic.", "hidden": true, - - "rewardSkill": "magic", - "rewardExperience": 85 + "rewardSkill": "health", + "rewardExperience": 240 }, - "webdeveloper": { "name": "Web Developer", - "description": "Spiders are developing webs left and right!" + "description": "Spiders are developing webs left and right!", + "region": "Lakesworld" }, - "vulture": { "name": "Vulture", "description": "Defeat a vulture!", + "region": "Crullfeld", "hidden": true }, - "ogresgateway": { "name": "Ogre's Gateway", - "description": "Discover the secret portal after defeating ogres." + "description": "Discover the secret portal after defeating ogres.", + "region": "Crullfeld" }, - "frozentundra": { "name": "Frozen Tundra", "description": "Gain access to icelands by defeating the guardians.", + "region": "Lakesworld", "hidden": true }, - "iceworld": { "name": "Ice World", "description": "Gain access into the ice world!", + "region": "Yontil Pass", "hidden": true }, - "forestdragon": { "name": "Forest Dragon", "description": "Defeat the dragon laying dormant under Mudwich.", + "region": "Mudwich", "hidden": true, - "rewardSkill": "health", "rewardExperience": 52600 }, - + "getmaxlevel": { + "name": "Get Max Level!", + "description": "Receive max amount of experience if you talk to this inhabitant in hell.", + "region": "Kingdom of Kaetram", + "npc": "rick" + }, "roadtohell": { "name": "Road to Hell", "description": "Defeat the Dark Wolf guarding the entrance to the Hellhound.", + "region": "Kingdom of Kaetram", "hidden": true, - "rewardSkill": "health", "rewardExperience": 4000 }, - "hellhound": { "name": "Hellhound", "description": "Defeat the hellhound in the hell dungeon!", + "region": "Kingdom of Kaetram", "hidden": true, - "rewardSkill": "strength", "rewardExperience": 25600 }, - "miniemperor": { "name": "Mini Emperor", "description": "Defeat the mini emperor in the mini knight's land!", + "region": "Chymos", "hidden": true, - "rewardSkill": "loitering", "rewardExperience": 3000 }, - "examiner25": { "name": "Examiner", "description": "Inspect 25 random things around the world.", "secret": true }, - "examiner50": { "name": "Examiner", "description": "Inspect 50 random things around the world.", "secret": true }, - "lumberjacking50": { "name": "Lumberjacker", "description": "Cut down 50 trees.", "secret": true }, - "lumberjacking100": { "name": "Lumberjacker", "description": "Cut down 100 trees.", "secret": true }, - "lumberjacking500": { "name": "Lumberjacker", "description": "Cut down 500 trees.", "secret": true }, - "lumberjacking1000": { "name": "Lumberjacker", "description": "Cut down 1000 trees.", "secret": true }, - "lumberjacking5000": { "name": "Lumberjacker", "description": "Cut down 5000 trees.", "secret": true }, - "lumberjacking10000": { "name": "Lumberjacker", "description": "Cut down 10000 trees.", "secret": true }, - "mining50": { "name": "Miner Man", "description": "Acquire 50 ores.", "secret": true }, - "mining100": { "name": "Miner Man", "description": "Acquire 100 ores.", "secret": true }, - "mining500": { "name": "Miner Man", "description": "Acquire 500 ores.", "secret": true }, - "mining1000": { "name": "Miner Man", "description": "Acquire 1000 ores.", "secret": true }, - "mining5000": { "name": "Miner Man", "description": "Acquire 5000 ores.", "secret": true }, - "mining10000": { "name": "Miner Man", "description": "Acquire 10000 ores.", "secret": true }, - "fishing50": { "name": "Fisherman", "description": "Catch 50 fishies.", "secret": true }, - "fishing100": { "name": "Fisherman", "description": "Catch 100 fishies.", "secret": true }, - "fishing500": { "name": "Fisherman", "description": "Catch 500 fishies.", "secret": true }, - "fishing1000": { "name": "Fisherman", "description": "Catch 1000 fishies.", "secret": true }, - "fishing5000": { "name": "Fisherman", "description": "Catch 5000 fishies.", "secret": true }, - "fishing10000": { "name": "Fisherman", "description": "Catch 10000 fishies.", "secret": true }, - "gravemystery": { "name": "Grave Mystery", "description": "Discovered a cryptic set of gravestones.", "secret": true }, - "kaetramdungeon": { "name": "Kaetram's Dungeon", "description": "Discovered the secret ladder to enter Kaetram's dungeon!", "secret": true + }, + + "masterofcrafts": { + "name": "Master of Crafts", + "description": "Craft 100 items.", + "secret": true + }, + "gildedhands": { + "name": "Gilded Hands", + "description": "Craft 500 gold items.", + "secret": true + }, + "traveller15": { + "name": "Globe Trotter", + "description": "Travel to 15 different locations.", + "secret": true + }, + "traveller50": { + "name": "Seasoned Explorer", + "description": "Travel to 50 different locations.", + "secret": true + }, + "treasurehunter": { + "name": "Treasure Hunter", + "description": "Find 50 hidden treasures.", + "secret": true + }, + "cultbuster": { + "name": "Cult Buster", + "description": "Disband 5 dark cults.", + "region": "Hellgate Marsh" + }, + "darkruins": { + "name": "Ruins Explorer", + "description": "Discover the ancient ruins of Zanrik.", + "region": "Zanrik Plains" + }, + "arenamaster": { + "name": "Arena Master", + "description": "Win 20 arena battles.", + "secret": true + }, + "potionmaster": { + "name": "Potion Master", + "description": "Craft 1000 potions.", + "secret": true + }, + "bookworm": { + "name": "Bookworm", + "description": "Read 100 books in the world.", + "secret": true + }, + "ancientsecrets": { + "name": "Ancient Secrets", + "description": "Decipher 5 ancient scrolls.", + "region": "Valus Temples", + "hidden": true + }, + "darkhorse": { + "name": "Dark Horse", + "description": "Tame the elusive Shadowmare.", + "region": "Mystic Woods" + }, + "merchantprince": { + "name": "Merchant Prince", + "description": "Trade goods worth 100,000 gold coins.", + "secret": true + }, + "merchantlord": { + "name": "Merchant Lord", + "description": "Trade goods worth 1,000,000 gold coins.", + "secret": true + }, + "craigslist": { + "name": "Craigslist", + "description": "Trade with 10 different players.", + "secret": true + }, + "socialite": { + "name": "Socialite", + "description": "Interact with 500 different players.", + "secret": true + }, + "errandboy": { + "name": "Errand Boy", + "description": "Complete 10 quests.", + "secret": true + }, + "questmaster": { + "name": "Quest Master", + "description": "Complete all quests in Kaetram.", + "secret": true + }, + "dungeoncrawler": { + "name": "Dungeon Crawler", + "description": "Complete 50 different dungeons.", + "secret": true } } diff --git a/packages/server/data/crafting.json b/packages/server/data/crafting.json deleted file mode 100644 index 4b495cfd30..0000000000 --- a/packages/server/data/crafting.json +++ /dev/null @@ -1,1081 +0,0 @@ -{ - "fletching": { - "stick": { - "level": 1, - "experience": 10, - "requirements": [ - { - "key": "logs", - "count": 1 - } - ], - - "result": { - "count": 4 - } - }, - - "bowlsmall": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "stick", - "count": 2 - } - ], - - "result": { - "count": 1 - } - }, - - "bowlmedium": { - "level": 5, - "experience": 30, - "requirements": [ - { - "key": "stick", - "count": 4 - } - ], - - "result": { - "count": 1 - } - }, - - "arrow": { - "level": 1, - "experience": 10, - "requirements": [ - { - "key": "stick", - "count": 10 - }, - { - "key": "feather", - "count": 10 - } - ], - - "result": { - "count": 10 - } - }, - - "woodenbow": { - "level": 5, - "experience": 20, - "requirements": [ - { - "key": "logs", - "count": 1 - }, - { - "key": "string", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "goldenbow": { - "level": 32, - "experience": 650, - "requirements": [ - { - "key": "goldbar", - "count": 15 - }, - { - "key": "string", - "count": 10 - }, - { - "key": "logs", - "count": 2 - } - ], - - "result": { - "count": 1 - } - } - }, - - "cooking": { - "cookedshrimp": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "rawshrimp", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "stew": { - "level": 1, - "experience": 50, - "requirements": [ - { - "key": "bowlmedium", - "count": 1 - }, - { - "key": "mushroom1", - "count": 1 - }, - { - "key": "tomato", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "stew2": { - "level": 1, - "experience": 65, - "requirements": [ - { - "key": "bowlmedium", - "count": 1 - }, - { - "key": "mushroom2", - "count": 1 - }, - { - "key": "corn", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "jellyfishsmoothie": { - "level": 10, - "experience": 45, - "requirements": [ - { - "key": "jellyfish", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "clamchowder": { - "level": 15, - "experience": 85, - "requirements": [ - { - "key": "clamobject", - "count": 1 - }, - - { - "key": "potato", - "count": 1 - }, - - { - "key": "bowlsmall", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "rawsausage": { - "level": 15, - "experience": 100, - "requirements": [ - { - "key": "rawbeef", - "count": 1 - }, - { - "key": "rawchicken", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "cookedchicken": { - "level": 15, - "experience": 100, - "requirements": [ - { - "key": "rawchicken", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "cookedbeef": { - "level": 15, - "experience": 100, - "requirements": [ - { - "key": "rawbeef", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "cookedsausage": { - "level": 15, - "experience": 100, - "requirements": [ - { - "key": "rawsausage", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "tunasushi": { - "level": 20, - "experience": 130, - "requirements": [ - { - "key": "rawtuna", - "count": 1 - }, - { - "key": "kelp", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "hotsauce": { - "level": 25, - "experience": 150, - "requirements": [ - { - "key": "chilli", - "count": 5 - } - ], - - "result": { - "count": 1 - } - } - }, - - "smelting": { - "copperbar": { - "level": 1, - "experience": 20, - "chance": 90, - "requirements": [ - { - "key": "copperore", - "count": 1 - }, - - { - "key": "coal", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "tinbar": { - "level": 1, - "experience": 20, - "chance": 90, - "requirements": [ - { - "key": "tinore", - "count": 1 - }, - - { - "key": "coal", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "bronzebar": { - "level": 5, - "experience": 20, - "chance": 70, - "requirements": [ - { - "key": "copperore", - "count": 1 - }, - { - "key": "tinore", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "ironbar": { - "level": 20, - "experience": 30, - "chance": 60, - "requirements": [ - { - "key": "ironore", - "count": 1 - }, - - { - "key": "coal", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "goldbar": { - "level": 20, - "experience": 50, - "chance": 40, - "requirements": [ - { - "key": "goldore", - "count": 1 - }, - - { - "key": "coal", - "count": 1 - } - ], - - "result": { - "count": 1 - } - } - }, - - "smithing": { - "hilt2": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "tinbar", - "count": 1 - }, - - { - "key": "logs", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "coppersword": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "copperbar", - "count": 2 - }, - - { - "key": "hilt2", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "tinsword": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "tinbar", - "count": 2 - }, - - { - "key": "hilt2", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "bronzesword": { - "level": 5, - "experience": 45, - "requirements": [ - { - "key": "bronzebar", - "count": 5 - }, - - { - "key": "hilt2", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "ironsword": { - "level": 10, - "experience": 80, - "requirements": [ - { - "key": "ironbar", - "count": 5 - }, - - { - "key": "hilt2", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "goldsword": { - "level": 15, - "experience": 120, - "requirements": [ - { - "key": "goldbar", - "count": 15 - }, - - { - "key": "hilt2", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "bronzeaxe": { - "level": 1, - "experience": 35, - "requirements": [ - { - "key": "bronzebar", - "count": 3 - }, - - { - "key": "logs", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "ironaxe": { - "level": 10, - "experience": 80, - "requirements": [ - { - "key": "ironbar", - "count": 4 - }, - - { - "key": "logs", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "goldaxe": { - "level": 20, - "experience": 120, - "requirements": [ - { - "key": "goldbar", - "count": 10 - }, - - { - "key": "logs", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "copperhelmet": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "copperbar", - "count": 2 - } - ], - - "result": { - "count": 1 - } - }, - - "tinhelmet": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "tinbar", - "count": 2 - } - ], - - "result": { - "count": 1 - } - }, - - "bronzehelmet": { - "level": 5, - "experience": 45, - "requirements": [ - { - "key": "bronzebar", - "count": 5 - } - ], - - "result": { - "count": 1 - } - }, - - "ironhelmet": { - "level": 10, - "experience": 80, - "requirements": [ - { - "key": "ironbar", - "count": 5 - } - ], - - "result": { - "count": 1 - } - }, - - "goldhelmet": { - "level": 15, - "experience": 120, - "requirements": [ - { - "key": "goldbar", - "count": 15 - } - ], - - "result": { - "count": 1 - } - }, - - "copperlegs": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "copperbar", - "count": 2 - } - ], - - "result": { - "count": 1 - } - }, - - "tinlegs": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "tinbar", - "count": 2 - } - ], - - "result": { - "count": 1 - } - }, - - "ironlegs": { - "level": 10, - "experience": 80, - "requirements": [ - { - "key": "ironbar", - "count": 5 - } - ], - - "result": { - "count": 1 - } - }, - - "goldbar": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "goldnugget", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "silverring": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "ironbar", - "count": 2 - } - ], - - "result": { - "count": 1 - } - }, - - "goldring": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "goldbar", - "count": 2 - } - ], - - "result": { - "count": 1 - } - }, - - "goldboots": { - "level": 62, - "experience": 350, - "requirements": [ - { - "key": "goldbar", - "count": 15 - } - ], - - "result": { - "count": 1 - } - } - }, - - "crafting": { - "string": { - "level": 1, - "experience": 10, - "requirements": [ - { - "key": "bluelily", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "bucket": { - "level": 10, - "experience": 35, - "requirements": [ - { - "key": "logs", - "count": 5 - } - ], - - "result": { - "count": 1 - } - }, - - "aquastaff": { - "level": 1, - "experience": 20, - "requirements": [ - { - "key": "stick", - "count": 5 - }, - - { - "key": "bead", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "lightningstaff": { - "level": 10, - "experience": 80, - "requirements": [ - { - "key": "staff", - "count": 1 - }, - - { - "key": "lightningbead", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "naturestaff": { - "level": 20, - "experience": 160, - "requirements": [ - { - "key": "staff", - "count": 1 - }, - - { - "key": "naturebead", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "firestaff": { - "level": 35, - "experience": 400, - "requirements": [ - { - "key": "staff", - "count": 1 - }, - - { - "key": "firebead", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "cursestaff": { - "level": 55, - "experience": 600, - "requirements": [ - { - "key": "staff", - "count": 1 - }, - - { - "key": "icebead", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "berylpendant": { - "level": 1, - "experience": 50, - "requirements": [ - { - "key": "beryl", - "count": 1 - }, - { - "key": "string", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "rubypendant": { - "level": 20, - "experience": 145, - "requirements": [ - { - "key": "ruby", - "count": 1 - }, - { - "key": "string", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "emeraldpendant": { - "level": 25, - "experience": 200, - "requirements": [ - { - "key": "emerald", - "count": 1 - }, - { - "key": "string", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "ring1": { - "level": 1, - "experience": 30, - "requirements": [ - { - "key": "emerald", - "count": 1 - }, - { - "key": "silverring", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "nisocring": { - "level": 5, - "experience": 20, - "requirements": [ - { - "key": "nisocore", - "count": 1 - }, - { - "key": "silverring", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "pytharring": { - "level": 5, - "experience": 20, - "requirements": [ - { - "key": "pytharore", - "count": 1 - }, - { - "key": "silverring", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "topazring": { - "level": 5, - "experience": 100, - "requirements": [ - { - "key": "topaz", - "count": 1 - }, - { - "key": "goldring", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "rubyring": { - "level": 20, - "experience": 145, - "requirements": [ - { - "key": "ruby", - "count": 1 - }, - { - "key": "goldring", - "count": 1 - } - ], - - "result": { - "count": 1 - } - }, - - "emeraldring": { - "level": 25, - "experience": 200, - "requirements": [ - { - "key": "emerald", - "count": 1 - }, - { - "key": "goldring", - "count": 1 - } - ], - - "result": { - "count": 1 - } - } - } -} \ No newline at end of file diff --git a/packages/server/data/crafting/alchemy.json b/packages/server/data/crafting/alchemy.json new file mode 100644 index 0000000000..5baebae4ec --- /dev/null +++ b/packages/server/data/crafting/alchemy.json @@ -0,0 +1,181 @@ +{ + "hotsauce": { + "level": 1, + "experience": 15, + "requirements": [ + { + "key": "smallemptyvial", + "count": 1 + }, + { + "key": "chilli", + "count": 3 + } + ], + + "result": { + "count": 1 + } + }, + + "flask": { + "level": 1, + "experience": 15, + "requirements": [ + { + "key": "smallemptyvial", + "count": 1 + }, + { + "key": "bayleaves", + "count": 2 + }, + { + "key": "mushroom2", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "manaflask": { + "level": 3, + "experience": 15, + "requirements": [ + { + "key": "smallemptyvial", + "count": 1 + }, + { + "key": "manaberry", + "count": 2 + }, + { + "key": "mushroom3", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "cure": { + "level": 5, + "experience": 35, + "requirements": [ + { + "key": "bigemptyvial", + "count": 1 + }, + { + "key": "horseradish", + "count": 2 + }, + { + "key": "leaf", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "bigflask": { + "level": 10, + "experience": 55, + "requirements": [ + { + "key": "bigemptyvial", + "count": 1 + }, + { + "key": "bayleaves", + "count": 5 + }, + { + "key": "mushroom2", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "blackpotion": { + "level": 10, + "experience": 135, + "requirements": [ + { + "key": "bigemptyvial", + "count": 1 + }, + { + "key": "nisocore", + "count": 2 + }, + { + "key": "banana", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bigmanaflask": { + "level": 15, + "experience": 55, + "requirements": [ + { + "key": "bigemptyvial", + "count": 1 + }, + { + "key": "galaxylilies", + "count": 5 + }, + { + "key": "mushroom3", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "firepotion": { + "level": 55, + "experience": 125, + "requirements": [ + { + "key": "largeemptyvial", + "count": 1 + }, + { + "key": "seed", + "count": 2 + }, + { + "key": "chilli", + "count": 2 + } + ], + + "result": { + "count": 1 + } + } +} diff --git a/packages/server/data/crafting/chiseling.json b/packages/server/data/crafting/chiseling.json new file mode 100644 index 0000000000..5ff3556f07 --- /dev/null +++ b/packages/server/data/crafting/chiseling.json @@ -0,0 +1,16 @@ +{ + "rubygem": { + "level": 1, + "experience": 10, + "requirements": [ + { + "key": "ruby", + "count": 1 + } + ], + + "result": { + "count": 1 + } + } +} diff --git a/packages/server/data/crafting/cooking.json b/packages/server/data/crafting/cooking.json new file mode 100644 index 0000000000..2326c83ec9 --- /dev/null +++ b/packages/server/data/crafting/cooking.json @@ -0,0 +1,185 @@ +{ + "cookedshrimp": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "rawshrimp", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "stew": { + "level": 1, + "experience": 50, + "requirements": [ + { + "key": "bowlmedium", + "count": 1 + }, + { + "key": "mushroom1", + "count": 1 + }, + { + "key": "tomato", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "stew2": { + "level": 1, + "experience": 65, + "requirements": [ + { + "key": "bowlmedium", + "count": 1 + }, + { + "key": "mushroom2", + "count": 1 + }, + { + "key": "corn", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "jellyfishsmoothie": { + "level": 10, + "experience": 45, + "requirements": [ + { + "key": "jellyfish", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "clamchowder": { + "level": 15, + "experience": 85, + "requirements": [ + { + "key": "clamobject", + "count": 1 + }, + + { + "key": "potato", + "count": 1 + }, + + { + "key": "bowlsmall", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "rawsausage": { + "level": 15, + "experience": 100, + "requirements": [ + { + "key": "rawbeef", + "count": 1 + }, + { + "key": "rawchicken", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "cookedchicken": { + "level": 15, + "experience": 100, + "requirements": [ + { + "key": "rawchicken", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "cookedbeef": { + "level": 15, + "experience": 100, + "requirements": [ + { + "key": "rawbeef", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "cookedsausage": { + "level": 15, + "experience": 100, + "requirements": [ + { + "key": "rawsausage", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "tunasushi": { + "level": 20, + "experience": 130, + "requirements": [ + { + "key": "rawtuna", + "count": 1 + }, + { + "key": "kelp", + "count": 1 + } + ], + + "result": { + "count": 1 + } + } +} diff --git a/packages/server/data/crafting/crafting.json b/packages/server/data/crafting/crafting.json new file mode 100644 index 0000000000..b9876bcab1 --- /dev/null +++ b/packages/server/data/crafting/crafting.json @@ -0,0 +1,340 @@ +{ + "string": { + "level": 1, + "experience": 10, + "requirements": [ + { + "key": "bluelily", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bucket": { + "level": 10, + "experience": 35, + "requirements": [ + { + "key": "logs", + "count": 5 + } + ], + + "result": { + "count": 1 + } + }, + + "aquastaff": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "stick", + "count": 5 + }, + + { + "key": "bead", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "lightningstaff": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "staff", + "count": 1 + }, + + { + "key": "lightningbead", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "naturestaff": { + "level": 20, + "experience": 160, + "requirements": [ + { + "key": "staff", + "count": 1 + }, + + { + "key": "naturebead", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "firestaff": { + "level": 35, + "experience": 400, + "requirements": [ + { + "key": "staff", + "count": 1 + }, + + { + "key": "firebead", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "cursestaff": { + "level": 55, + "experience": 600, + "requirements": [ + { + "key": "staff", + "count": 1 + }, + + { + "key": "icebead", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "berylpendant": { + "level": 1, + "experience": 50, + "requirements": [ + { + "key": "beryl", + "count": 1 + }, + { + "key": "string", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "rubypendant": { + "level": 20, + "experience": 145, + "requirements": [ + { + "key": "ruby", + "count": 1 + }, + { + "key": "string", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "emeraldpendant": { + "level": 25, + "experience": 200, + "requirements": [ + { + "key": "emerald", + "count": 1 + }, + { + "key": "string", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "ring1": { + "level": 1, + "experience": 30, + "requirements": [ + { + "key": "emerald", + "count": 1 + }, + { + "key": "silverring", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "nisocring": { + "level": 5, + "experience": 20, + "requirements": [ + { + "key": "nisocore", + "count": 1 + }, + { + "key": "silverring", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "pytharring": { + "level": 5, + "experience": 20, + "requirements": [ + { + "key": "pytharore", + "count": 1 + }, + { + "key": "silverring", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "topazring": { + "level": 5, + "experience": 100, + "requirements": [ + { + "key": "topaz", + "count": 1 + }, + { + "key": "goldring", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "berylsilverring": { + "level": 10, + "experience": 110, + "requirements": [ + { + "key": "beryl", + "count": 1 + }, + { + "key": "silverring2", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "berylgoldring": { + "level": 20, + "experience": 145, + "requirements": [ + { + "key": "beryl", + "count": 1 + }, + { + "key": "goldring2", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "rubyring": { + "level": 20, + "experience": 145, + "requirements": [ + { + "key": "ruby", + "count": 1 + }, + { + "key": "goldring", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "emeraldring": { + "level": 25, + "experience": 200, + "requirements": [ + { + "key": "emerald", + "count": 1 + }, + { + "key": "goldring", + "count": 1 + } + ], + + "result": { + "count": 1 + } + } +} diff --git a/packages/server/data/crafting/fletching.json b/packages/server/data/crafting/fletching.json new file mode 100644 index 0000000000..23adddbd26 --- /dev/null +++ b/packages/server/data/crafting/fletching.json @@ -0,0 +1,84 @@ +{ + "stick": { + "level": 1, + "experience": 10, + "requirements": [ + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 4 + } + }, + + "arrow": { + "level": 1, + "experience": 10, + "requirements": [ + { + "key": "stick", + "count": 1 + }, + { + "key": "feather", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bowlsmall": { + "level": 3, + "experience": 15, + "requirements": [ + { + "key": "stick", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "bowlmedium": { + "level": 5, + "experience": 30, + "requirements": [ + { + "key": "stick", + "count": 4 + } + ], + + "result": { + "count": 1 + } + }, + + "woodenbow": { + "level": 5, + "experience": 20, + "requirements": [ + { + "key": "logs", + "count": 1 + }, + { + "key": "string", + "count": 1 + } + ], + + "result": { + "count": 1 + } + } +} diff --git a/packages/server/data/crafting/index.ts b/packages/server/data/crafting/index.ts new file mode 100644 index 0000000000..600000d6e7 --- /dev/null +++ b/packages/server/data/crafting/index.ts @@ -0,0 +1,17 @@ +import alchemy from './alchemy.json'; +import chiseling from './chiseling.json'; +import cooking from './cooking.json'; +import crafting from './crafting.json'; +import fletching from './fletching.json'; +import smelting from './smelting.json'; +import smithing from './smithing.json'; + +export default { + alchemy, + chiseling, + cooking, + crafting, + fletching, + smelting, + smithing +}; diff --git a/packages/server/data/crafting/smelting.json b/packages/server/data/crafting/smelting.json new file mode 100644 index 0000000000..991d81b63b --- /dev/null +++ b/packages/server/data/crafting/smelting.json @@ -0,0 +1,105 @@ +{ + "copperbar": { + "level": 1, + "experience": 20, + "chance": 90, + "requirements": [ + { + "key": "copperore", + "count": 1 + }, + + { + "key": "coal", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "tinbar": { + "level": 1, + "experience": 20, + "chance": 90, + "requirements": [ + { + "key": "tinore", + "count": 1 + }, + + { + "key": "coal", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzebar": { + "level": 5, + "experience": 20, + "chance": 70, + "requirements": [ + { + "key": "copperore", + "count": 1 + }, + { + "key": "tinore", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "ironbar": { + "level": 20, + "experience": 30, + "chance": 60, + "requirements": [ + { + "key": "ironore", + "count": 1 + }, + + { + "key": "coal", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "goldbar": { + "level": 20, + "experience": 50, + "chance": 40, + "requirements": [ + { + "key": "goldore", + "count": 1 + }, + + { + "key": "coal", + "count": 1 + } + ], + + "result": { + "count": 1 + } + } +} diff --git a/packages/server/data/crafting/smithing.json b/packages/server/data/crafting/smithing.json new file mode 100644 index 0000000000..2a730d40ca --- /dev/null +++ b/packages/server/data/crafting/smithing.json @@ -0,0 +1,811 @@ +{ + "hilt2": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "tinbar", + "count": 1 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "coppersword": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "copperbar", + "count": 2 + }, + + { + "key": "hilt2", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "tinsword": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "tinbar", + "count": 2 + }, + + { + "key": "hilt2", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzesword": { + "level": 5, + "experience": 45, + "requirements": [ + { + "key": "bronzebar", + "count": 5 + }, + + { + "key": "hilt2", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "ironsword": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 5 + }, + + { + "key": "hilt2", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "goldsword": { + "level": 15, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 15 + }, + + { + "key": "hilt2", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzepickaxe": { + "level": 1, + "experience": 35, + "requirements": [ + { + "key": "bronzebar", + "count": 3 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "ironpickaxe": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 4 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "goldpickaxe": { + "level": 20, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 10 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzeaxe": { + "level": 1, + "experience": 35, + "requirements": [ + { + "key": "bronzebar", + "count": 3 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "ironaxe": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 4 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "goldaxe": { + "level": 20, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 10 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzebattleaxe": { + "level": 1, + "experience": 35, + "requirements": [ + { + "key": "bronzebar", + "count": 3 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "ironbattleaxe": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 4 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "goldbattleaxe": { + "level": 20, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 10 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzespear": { + "level": 1, + "experience": 35, + "requirements": [ + { + "key": "bronzebar", + "count": 3 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "ironspear": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 4 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "goldspear": { + "level": 20, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 10 + }, + + { + "key": "logs", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzescythe": { + "level": 1, + "experience": 35, + "requirements": [ + { + "key": "bronzebar", + "count": 3 + }, + + { + "key": "logs", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "ironscythe": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 4 + }, + + { + "key": "logs", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "goldscythe": { + "level": 20, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 10 + }, + + { + "key": "logs", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "copperhelmet": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "copperbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "tinhelmet": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "tinbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzehelmet": { + "level": 5, + "experience": 45, + "requirements": [ + { + "key": "bronzebar", + "count": 5 + } + ], + + "result": { + "count": 1 + } + }, + + "ironhelmet": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 5 + } + ], + + "result": { + "count": 1 + } + }, + + "goldhelmet": { + "level": 15, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 15 + } + ], + + "result": { + "count": 1 + } + }, + + "copperchestplate": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "copperbar", + "count": 3 + } + ], + + "result": { + "count": 1 + } + }, + + "tinchestplate": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "tinbar", + "count": 3 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzechestplate": { + "level": 5, + "experience": 45, + "requirements": [ + { + "key": "bronzebar", + "count": 7 + } + ], + + "result": { + "count": 1 + } + }, + + "ironchestplate": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 7 + } + ], + + "result": { + "count": 1 + } + }, + + "goldchestplate": { + "level": 15, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 20 + } + ], + + "result": { + "count": 1 + } + }, + + "copperlegplates": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "copperbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "tinlegplates": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "tinbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzelegplates": { + "level": 5, + "experience": 45, + "requirements": [ + { + "key": "bronzebar", + "count": 5 + } + ], + + "result": { + "count": 1 + } + }, + + "ironlegplates": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 5 + } + ], + + "result": { + "count": 1 + } + }, + + "goldlegplates": { + "level": 15, + "experience": 120, + "requirements": [ + { + "key": "goldbar", + "count": 15 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzeboots": { + "level": 5, + "experience": 45, + "requirements": [ + { + "key": "bronzebar", + "count": 5 + } + ], + + "result": { + "count": 1 + } + }, + + "ironboots": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 5 + } + ], + + "result": { + "count": 1 + } + }, + + "goldboots": { + "level": 62, + "experience": 350, + "requirements": [ + { + "key": "goldbar", + "count": 15 + } + ], + + "result": { + "count": 1 + } + }, + + "coppershield": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "copperbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "goldbar": { + "level": 1, + "experience": 20, + "requirements": [ + { + "key": "goldnugget", + "count": 1 + } + ], + + "result": { + "count": 1 + } + }, + + "bronzering": { + "level": 5, + "experience": 60, + "requirements": [ + { + "key": "bronzebar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "ironring": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "silverring": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "silverring2": { + "level": 10, + "experience": 80, + "requirements": [ + { + "key": "ironbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "goldring": { + "level": 20, + "experience": 200, + "requirements": [ + { + "key": "goldbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + }, + + "goldring2": { + "level": 20, + "experience": 200, + "requirements": [ + { + "key": "goldbar", + "count": 2 + } + ], + + "result": { + "count": 1 + } + } +} diff --git a/packages/server/data/effectentities.json b/packages/server/data/effectentities.json new file mode 100644 index 0000000000..d29a8afbc0 --- /dev/null +++ b/packages/server/data/effectentities.json @@ -0,0 +1,5 @@ +{ + "lava": { + "duration": 5000 + } +} diff --git a/packages/server/data/fishing.json b/packages/server/data/fishing.json index 18c6d6ca9f..4fe0822dc7 100644 --- a/packages/server/data/fishing.json +++ b/packages/server/data/fishing.json @@ -1,13 +1,25 @@ { - "shrimp": { + "shrimpspot": { + "name": "Shrimp Fishing Spot", "levelRequirement": 1, "experience": 20, - "difficulty": 15, + "difficulty": 7, "item": "rawshrimp", "achievement": "firstfish" }, - "tuna": { + "tutorialshrimpspot": { + "name": "Shrimp Fishing Spot", + "levelRequirement": 1, + "experience": 15, + "difficulty": 7, + "item": "rawshrimp", + "achievement": "firstfish", + "quest": "tutorial" + }, + + "tunaspot": { + "name": "Tuna Fishing Spot", "levelRequirement": 1, "experience": 20, "difficulty": 15, @@ -15,17 +27,19 @@ "achievement": "firstfish" }, - "jellyfish": { + "jellyfishspot": { + "name": "Jellyfish Fishing Spot", "levelRequirement": 5, "experience": 35, "difficulty": 25, "item": "jellyfish" }, - "clam": { + "clamspot": { + "name": "Clam Fishing Spot", "levelRequirement": 10, "experience": 55, "difficulty": 40, "item": "clamobject" } -} \ No newline at end of file +} diff --git a/packages/server/data/foraging.json b/packages/server/data/foraging.json index acea555d43..8e0921d8f1 100644 --- a/packages/server/data/foraging.json +++ b/packages/server/data/foraging.json @@ -1,36 +1,89 @@ { - "blueberry": { + "blueberrybush": { + "name": "Blueberry Bush", "levelRequirement": 1, "experience": 10, "difficulty": 1, "item": "blueberry" }, - "corn": { + "cornbush": { + "name": "Corn", "levelRequirement": 5, "experience": 15, "difficulty": 1, "item": "corn" }, - "bluelily": { + "bluelilybush": { + "name": "Blue Lily Bush", "levelRequirement": 10, "experience": 20, "difficulty": 1, "item": "bluelily" }, - "tomato": { + "tomatobush": { + "name": "Tomato Plant Thingy", "levelRequirement": 15, "experience": 25, "difficulty": 1, "item": "tomato" }, - "peach": { + "peachbush": { + "name": "Peach Bush", "levelRequirement": 5, "experience": 30, "difficulty": 1, "item": "peach" + }, + + "raspberrybush": { + "name": "Raspberry Bush", + "levelRequirement": 15, + "experience": 35, + "difficulty": 1, + "item": "raspberry" + }, + + "blackberrybush": { + "name": "Blackberry Bush", + "levelRequirement": 20, + "experience": 40, + "difficulty": 1, + "item": "blackberry" + }, + + "mustardbush": { + "name": "Mustard Bush", + "levelRequirement": 20, + "experience": 45, + "difficulty": 1, + "item": "mustardplant" + }, + + "paprikabush": { + "name": "Paprika Bush", + "levelRequirement": 25, + "experience": 50, + "difficulty": 1, + "item": "paprika" + }, + + "cuminbush": { + "name": "Cumin Bush", + "levelRequirement": 25, + "experience": 50, + "difficulty": 1, + "item": "cuminplant" + }, + + "treestump1": { + "name": "Tree Stump", + "levelRequirement": 1, + "experience": 10, + "difficulty": 1, + "item": "dandelion" } -} \ No newline at end of file +} diff --git a/packages/server/data/items.json b/packages/server/data/items.json index fc8e162640..b14e56d02c 100644 --- a/packages/server/data/items.json +++ b/packages/server/data/items.json @@ -1,2733 +1,9510 @@ { - "coppersword": { - "type": "weapon", - "name": "Copper Sword", - "weaponType": "sword", - "attackStats": { - "crush": 1, - "slash": 3, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 2, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "tinsword": { - "type": "weapon", - "name": "Tin Sword", - "weaponType": "sword", - "attackStats": { - "crush": 1, - "slash": 2, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 3, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "bronzesword": { - "type": "weapon", - "name": "Bronze Sword", - "weaponType": "sword", - "skill": "accuracy", - "level": 5, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 3, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "ironsword": { - "type": "weapon", - "name": "Iron Sword", - "weaponType": "sword", - "skill": "accuracy", - "level": 10, - "attackStats": { - "crush": 4, - "slash": 6, - "stab": 4, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 2, - "slash": 3, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "goldsword": { - "type": "weapon", - "name": "Gold Sword", - "weaponType": "sword", - "skill": "accuracy", - "level": 20, - "attackStats": { - "crush": 6, - "slash": 10, - "stab": 7, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 6, - "strength": 3, - "archery": 0, - "magic": 0 - } - }, - - "nisocsword": { - "type": "weapon", - "name": "Nisoc Sword", - "weaponType": "sword", - "skill": "accuracy", - "level": 15, - "attackStats": { - "crush": 8, - "slash": 8, - "stab": 8, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 2, - "slash": 3, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 4, - "strength": 3, - "archery": 0, - "magic": 0 - } - }, - - "cinnabarsword": { - "type": "weapon", - "name": "Cinnabar Sword", - "weaponType": "sword", - "skill": "accuracy", - "level": 20, - "attackStats": { - "crush": 10, - "slash": 10, - "stab": 10, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 3, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "pytharsword": { - "type": "weapon", - "name": "Pythar Sword", - "weaponType": "sword", - "skill": "accuracy", - "level": 25, - "attackStats": { - "crush": 12, - "slash": 12, - "stab": 12, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 4, - "slash": 4, - "stab": 4, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 6, - "strength": 5, - "archery": 0, - "magic": 0 - } - }, - - "ibosword": { - "type": "weapon", - "name": "Ibo Sword", - "weaponType": "sword", - "skill": "accuracy", - "level": 35, - "attackStats": { - "crush": 14, - "slash": 14, - "stab": 14, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 5, - "slash": 5, - "stab": 5, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 7, - "strength": 6, - "archery": 0, - "magic": 0 - } - }, - - "icesword": { - "type": "weapon", - "name": "Ice Sword", - "weaponType": "sword", - "skill": "accuracy", - "level": 7, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 3, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "bronzeaxe": { - "type": "weapon", - "name": "Bronze Axe", - "weaponType": "axe", - "lumberjacking": 1, - "price": 100, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 2, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "ironaxe": { - "type": "weapon", - "name": "Iron Axe", - "weaponType": "axe", - "lumberjacking": 1, - "price": 100, - "skill": "strength", - "level": 10, - "attackStats": { - "crush": 4, - "slash": 6, - "stab": 4, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 2, - "slash": 3, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "cobaltaxe": { - "type": "weapon", - "name": "Cobalt Axe", - "weaponType": "axe", - "skill": "strength", - "level": 15, - "lumberjacking": 2, - "price": 200, - "attackStats": { - "crush": 4, - "slash": 6, - "stab": 4, - "archery": 0, - "magic": 4 - }, - "defenseStats": { - "crush": 2, - "slash": 3, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 0, - "magic": 2 - } - }, - - "goldaxe": { - "type": "weapon", - "name": "Gold Axe", - "weaponType": "axe", - "lumberjacking": 5, - "price": 400, - "skill": "strength", - "level": 20, - "attackStats": { - "crush": 6, - "slash": 8, - "stab": 6, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 4, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 3, - "strength": 3, - "archery": 0, - "magic": 0 - } - }, - - "fishingpole": { - "type": "weapon", - "name": "Fishing Pole", - "fishing": 1, - "price": 100, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "copperhelmet": { - "type": "helmet", - "name": "Copper Helmet", - "price": 100, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 3, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "tinhelmet": { - "type": "helmet", - "name": "Tin Helmet", - "price": 100, - "attackStats": { - "crush": 2, - "slash": 2, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 2, - "slash": 2, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "bronzehelmet": { - "type": "helmet", - "name": "Bronze Helmet", - "price": 100, - "skill": "defense", - "level": 5, - "attackStats": { - "crush": 2, - "slash": 3, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 5, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "ironhelmet": { - "type": "helmet", - "name": "Iron Helmet", - "price": 100, - "skill": "defense", - "level": 10, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 3, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "goldhelmet": { - "type": "helmet", - "name": "Gold Helmet", - "price": 100, - "skill": "defense", - "level": 20, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 5, - "slash": 6, - "stab": 4, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 2, - "strength": 3, - "archery": 0, - "magic": 0 - } - }, - - "cobalthelmet": { - "type": "helmet", - "name": "Cobalt Helmet", - "price": 200, - "skill": "defense", - "level": 15, - "attackStats": { - "crush": 2, - "slash": 2, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 5, - "slash": 5, - "stab": 5, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 3, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "ironchestplate": { - "type": "chestplate", - "name": "Iron Chestplate", - "price": 100, - "skill": "defense", - "level": 10, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 5, - "stab": 4, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "copperlegs": { - "type": "legs", - "name": "Copper Legs", - "price": 100, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 3, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "tinlegs": { - "type": "legs", - "name": "Tin Legs", - "price": 100, - "attackStats": { - "crush": 2, - "slash": 2, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 2, - "slash": 2, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "ironlegs": { - "type": "legs", - "name": "Iron Legs", - "price": 100, - "skill": "defense", - "level": 10, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 3, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "cobaltlegs": { - "type": "legs", - "name": "Cobalt Legs", - "price": 200, - "skill": "defense", - "level": 15, - "attackStats": { - "crush": 2, - "slash": 2, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 5, - "slash": 5, - "stab": 5, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "aquastaff": { - "type": "weaponmagic", - "name": "Aqua Staff", - "weaponType": "staff", - "price": 1500, - "manaCost": 2, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 4, - "archery": 0, - "magic": 21 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 12 - }, - "attackRange": 9, - "projectileName": "purplebolt" - }, - - "lightningstaff": { - "type": "weaponmagic", - "name": "Lightning Staff", - "weaponType": "staff", - "skill": "magic", - "price": 7500, - "manaCost": 4, - "level": 10, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 4, - "archery": 0, - "magic": 28 - }, - "bonuses": { - "accuracy": 5, - "strength": 0, - "archery": 0, - "magic": 19 - }, - "attackRange": 9, - "projectileName": "yellowlightning" - }, - - "naturestaff": { - "type": "weaponmagic", - "name": "Nature Staff", - "weaponType": "staff", - "skill": "magic", - "price": 12500, - "manaCost": 6, - "level": 17, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 4, - "archery": 0, - "magic": 36 - }, - "bonuses": { - "accuracy": 9, - "strength": 0, - "archery": 0, - "magic": 26 - }, - "attackRange": 9, - "projectileName": "greenbolt" - }, - - "firestaff": { - "type": "weaponmagic", - "name": "Fire Staff", - "weaponType": "staff", - "skill": "magic", - "price": 22500, - "manaCost": 7, - "level": 25, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 4, - "archery": 0, - "magic": 44 - }, - "bonuses": { - "accuracy": 10, - "strength": 0, - "archery": 0, - "magic": 38 - }, - "attackRange": 9, - "projectileName": "fireball" - }, - - "cursestaff": { - "type": "weaponmagic", - "name": "Ice Staff", - "weaponType": "staff", - "skill": "magic", - "price": 40000, - "manaCost": 9, - "level": 35, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 4, - "archery": 0, - "magic": 51 - }, - "bonuses": { - "accuracy": 10, - "strength": 0, - "archery": 0, - "magic": 48 - }, - "attackRange": 9, - "projectileName": "terror" - }, - - "danbo": { - "type": "skin", - "name": "Danbo" - }, - - "danboblue": { - "type": "skin", - "name": "Danbo" - }, - - "danbogreen": { - "type": "skin", - "name": "Danbo" - }, - - "danbored": { - "type": "skin", - "name": "Danbo" - }, - - "taekwondo": { - "type": "skin", - "name": "Taekwondo" - }, - - "pendant1": { - "type": "pendant", - "name": "Pendant", - "price": 1650, - "attackStats": { - "crush": 8, - "slash": 8, - "stab": 8, - "archery": 0, - "magic": 6 - }, - "defenseStats": { - "crush": 5, - "slash": 5, - "stab": 5, - "archery": 0, - "magic": 3 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 2, - "magic": 3 - } - }, - - "greenpendant": { - "type": "pendant", - "name": "Jade Pendant", - "price": 2500, - "attackStats": { - "crush": 11, - "slash": 12, - "stab": 10, - "archery": 0, - "magic": 7 - }, - "defenseStats": { - "crush": 10, - "slash": 10, - "stab": 10, - "archery": 0, - "magic": 4 - }, - "bonuses": { - "accuracy": 4, - "strength": 4, - "archery": 3, - "magic": 4 - } - }, - - "pearlpendant": { - "type": "pendant", - "name": "Pearl Pendant", - "price": 4450, - "attackStats": { - "crush": 16, - "slash": 16, - "stab": 16, - "archery": 0, - "magic": 8 - }, - "defenseStats": { - "crush": 15, - "slash": 15, - "stab": 15, - "archery": 0, - "magic": 8 - }, - "bonuses": { - "accuracy": 6, - "strength": 8, - "archery": 4, - "magic": 6 - } - }, - - "berylpendant": { - "type": "pendant", - "name": "Beryl Pendant", - "price": 1200, - "attackStats": { - "crush": 18, - "slash": 28, - "stab": 18, - "archery": 0, - "magic": 12 - }, - "defenseStats": { - "crush": 20, - "slash": 20, - "stab": 20, - "archery": 0, - "magic": 13 - }, - "bonuses": { - "accuracy": 6, - "strength": 12, - "archery": 6, - "magic": 10 - } - }, - - "rubypendant": { - "type": "pendant", - "name": "Ruby Pendant", - "price": 1500, - "attackStats": { - "crush": 3, - "slash": 3, - "stab": 3, - "archery": 0, - "magic": 7 - }, - "defenseStats": { - "crush": 2, - "slash": 2, - "stab": 4, - "archery": 0, - "magic": 14 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 1, - "magic": 4 - } - }, - - "emeraldpendant": { - "type": "pendant", - "name": "Emerald Pendant", - "price": 1800, - "attackStats": { - "crush": 2, - "slash": 3, - "stab": 2, - "archery": 0, - "magic": 4 - }, - "defenseStats": { - "crush": 0, - "slash": 3, - "stab": 7, - "archery": 0, - "magic": 23 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 1, - "magic": 6 - } - }, - - "goldring": { - "type": "ring", - "name": "Gold Ring", - "price": 2250 - }, - - "silverring": { - "type": "ring", - "name": "Silver Ring", - "price": 1250 - }, - - "ring1": { - "type": "ring", - "name": "Emerald Ring", - "price": 1500, - "attackStats": { - "crush": 8, - "slash": 8, - "stab": 8, - "archery": 0, - "magic": 2 - }, - "defenseStats": { - "crush": 5, - "slash": 5, - "stab": 5, - "archery": 0, - "magic": 3 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 2, - "magic": 2 - } - }, - - "sproutring": { - "type": "ring", - "name": "Sprout Ring", - "price": 2350, - "attackStats": { - "crush": 10, - "slash": 10, - "stab": 10, - "archery": 0, - "magic": 3 - }, - "defenseStats": { - "crush": 7, - "slash": 8, - "stab": 7, - "archery": 0, - "magic": 4 - }, - "bonuses": { - "accuracy": 4, - "strength": 8, - "archery": 3, - "magic": 3 - } - }, + "coppersword": { + "type": "weapon", + "name": "Copper Sword", + "weaponType": "sword", + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "tinsword": { + "type": "weapon", + "name": "Tin Sword", + "weaponType": "sword", + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "bronzesword": { + "type": "weapon", + "name": "Bronze Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 5, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "ironsword": { + "type": "weapon", + "name": "Iron Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 10, + "attackStats": { + "crush": 4, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "goldsword": { + "type": "weapon", + "name": "Gold Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 20, + "attackStats": { + "crush": 6, + "slash": 10, + "stab": 7, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 6, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + "nisocsword": { + "type": "weapon", + "name": "Nisoc Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 15, + "attackStats": { + "crush": 8, + "slash": 8, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + "cinnabarsword": { + "type": "weapon", + "name": "Cinnabar Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 20, + "attackStats": { + "crush": 10, + "slash": 10, + "stab": 10, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + "pytharsword": { + "type": "weapon", + "name": "Pythar Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 25, + "attackStats": { + "crush": 12, + "slash": 12, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 4, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 6, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + "ibosword": { + "type": "weapon", + "name": "Ibo Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 35, + "attackStats": { + "crush": 14, + "slash": 14, + "stab": 14, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 7, + "strength": 6, + "archery": 0, + "magic": 0 + } + }, + "icesword": { + "type": "weapon", + "name": "Ice Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 17, + "attackStats": { + "crush": 6, + "slash": 14, + "stab": 7, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 8, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + "nightsword": { + "type": "weapon", + "name": "Night Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 25, + "attackStats": { + "crush": 6, + "slash": 14, + "stab": 10, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 5, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 7, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + "sentinelsword": { + "type": "weapon", + "name": "Sentinel Sword", + "weaponType": "sword", + "skill": "accuracy", + "level": 36, + "attackStats": { + "crush": 17, + "slash": 13, + "stab": 11, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 5, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 5, + "strength": 9, + "archery": 0, + "magic": 0 + } + }, + "hellhoundfang": { + "type": "weapon", + "name": "Hellhound Fang", + "weaponType": "sword", + "skill": "strength", + "level": 40, + "attackStats": { + "crush": 13, + "slash": 26, + "stab": 15, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 8, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 7, + "strength": 15, + "archery": 0, + "magic": 0 + } + }, + "bronzespear": { + "type": "weapon", + "name": "Bronze Spear", + "weaponType": "spear", + "skill": "accuracy", + "level": 5, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "ironspear": { + "type": "weapon", + "name": "Iron Spear", + "weaponType": "spear", + "skill": "accuracy", + "level": 10, + "attackStats": { + "crush": 4, + "slash": 4, + "stab": 7, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, - "pearlring": { - "type": "ring", - "name": "Pearl Ring", - "price": 3600, - "attackStats": { - "crush": 16, - "slash": 16, - "stab": 16, - "archery": 0, - "magic": 6 - }, - "defenseStats": { - "crush": 15, - "slash": 15, - "stab": 15, - "archery": 0, - "magic": 8 - }, - "bonuses": { - "accuracy": 6, - "strength": 8, - "archery": 4, - "magic": 5 - } - }, + "goldspear": { + "type": "weapon", + "name": "Gold Spear", + "weaponType": "spear", + "skill": "accuracy", + "level": 20, + "attackStats": { + "crush": 8, + "slash": 8, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 6, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, - "topazring": { - "type": "ring", - "name": "Topaz Ring", - "price": 9800, - "attackStats": { - "crush": 18, - "slash": 28, - "stab": 18, - "archery": 0, - "magic": 8 - }, - "defenseStats": { - "crush": 20, - "slash": 20, - "stab": 20, - "archery": 0, - "magic": 13 - }, - "bonuses": { - "accuracy": 8, - "strength": 10, - "archery": 6, - "magic": 8 - } - }, + "cobaltspear": { + "type": "weapon", + "name": "Cobalt Spear", + "weaponType": "spear", + "skill": "accuracy", + "level": 15, + "attackStats": { + "crush": 7, + "slash": 6, + "stab": 10, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, - "spiritring": { - "type": "ring", - "name": "Spirit Ring", - "price": 10050, - "attackStats": { - "crush": 12, - "slash": 10, - "stab": 8, - "archery": 0, - "magic": 28 - }, - "defenseStats": { - "crush": 12, - "slash": 10, - "stab": 8, - "archery": 0, - "magic": 28 - }, - "bonuses": { - "accuracy": 6, - "strength": 4, - "archery": 16, - "magic": 12 - } - }, + "bronzescythe": { + "type": "weapon", + "name": "Bronze Scythe", + "weaponType": "scythe", + "skill": "accuracy", + "level": 5, + "attackStats": { + "crush": 2, + "slash": 5, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "ironscythe": { + "type": "weapon", + "name": "Iron Scythe", + "weaponType": "scythe", + "skill": "accuracy", + "level": 10, + "attackStats": { + "crush": 4, + "slash": 7, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 4, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "goldscythe": { + "type": "weapon", + "name": "Gold Scythe", + "weaponType": "scythe", + "skill": "accuracy", + "level": 20, + "attackStats": { + "crush": 8, + "slash": 12, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 6, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 6, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "cobaltscythe": { + "type": "weapon", + "name": "Cobalt Scythe", + "weaponType": "scythe", + "skill": "accuracy", + "level": 15, + "attackStats": { + "crush": 7, + "slash": 10, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 5, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + "bronzepickaxe": { + "type": "weapon", + "name": "Bronze Pickaxe", + "weaponType": "pickaxe", + "mining": 1, + "price": 100, + "attackStats": { + "crush": 1, + "slash": 0, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 0, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "ironpickaxe": { + "type": "weapon", + "name": "Iron Pickaxe", + "weaponType": "pickaxe", + "mining": 10, + "price": 200, + "attackStats": { + "crush": 2, + "slash": 0, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 0, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "goldpickaxe": { + "type": "weapon", + "name": "Gold Pickaxe", + "weaponType": "pickaxe", + "mining": 20, + "price": 400, + "attackStats": { + "crush": 3, + "slash": 0, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 0, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, - "essentialrage": { - "type": "ring", - "name": "Essential Rage", - "price": 15500, - "attackStats": { - "crush": 22, - "slash": 34, - "stab": 18, - "archery": 0, - "magic": 12 - }, - "defenseStats": { - "crush": 20, - "slash": 30, - "stab": 16, - "archery": 0, - "magic": 13 - }, - "bonuses": { - "accuracy": 8, - "strength": 14, - "archery": 12, - "magic": 12 - } - }, + "cobaltpickaxe": { + "type": "weapon", + "name": "Cobalt Pickaxe", + "weaponType": "pickaxe", + "mining": 15, + "price": 800, + "attackStats": { + "crush": 4, + "slash": 0, + "stab": 10, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 0, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, - "rubyring": { - "type": "ring", - "name": "Ruby Ring", - "skill": "magic", - "level": 10, - "price": 12500, - "attackStats": { - "crush": 6, - "slash": 6, - "stab": 6, - "archery": 0, - "magic": 18 - }, - "defenseStats": { - "crush": 4, - "slash": 4, - "stab": 8, - "archery": 0, - "magic": 22 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 1, - "magic": 8 - } - }, + "bonepickaxe": { + "type": "weapon", + "name": "Bone Pickaxe", + "weaponType": "pickaxe", + "mining": 30, + "price": 1600, + "attackStats": { + "crush": 5, + "slash": 0, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 5, + "slash": 0, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 5, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, - "sapphirering": { - "type": "ring", - "name": "Sapphire Ring", - "skill": "magic", - "level": 20, - "price": 8650, - "attackStats": { - "crush": 4, - "slash": 8, - "stab": 4, - "archery": 0, - "magic": 22 - }, - "defenseStats": { - "crush": 1, - "slash": 7, - "stab": 11, - "archery": 0, - "magic": 22 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 2, - "magic": 11 - } - }, + "cursedpickaxe": { + "type": "weapon", + "name": "Cursed Pickaxe", + "weaponType": "pickaxe", + "mining": 40, + "price": 3200, + "attackStats": { + "crush": 6, + "slash": 0, + "stab": 14, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 6, + "slash": 0, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 6, + "strength": 6, + "archery": 0, + "magic": 0 + } + }, - "emeraldring": { - "type": "ring", - "name": "Emerald Ring", - "skill": "magic", - "level": 30, - "price": 2200, - "attackStats": { - "crush": 4, - "slash": 8, - "stab": 4, - "archery": 0, - "magic": 6 - }, - "defenseStats": { - "crush": 1, - "slash": 7, - "stab": 11, - "archery": 0, - "magic": 33 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 2, - "magic": 8 - } - }, + "cursedsapphirepickaxe": { + "type": "weapon", + "name": "Cursed Sapphire Pickaxe", + "weaponType": "pickaxe", + "mining": 55, + "price": 6400, + "attackStats": { + "crush": 7, + "slash": 0, + "stab": 16, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 7, + "slash": 0, + "stab": 7, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 7, + "strength": 7, + "archery": 0, + "magic": 0 + } + }, - "dolring": { - "type": "ring", - "name": "Fragmented Ring", - "skill": "magic", - "level": 40, - "price": 11000, - "attackStats": { - "crush": 4, - "slash": 8, - "stab": 4, - "archery": 0, - "magic": 10 - }, - "defenseStats": { - "crush": 1, - "slash": 7, - "stab": 11, - "archery": 0, - "magic": 10 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 2, - "magic": 18 - } - }, + "heavyberylpickaxe": { + "type": "weapon", + "name": "Heavy Beryl Pickaxe", + "weaponType": "pickaxe", + "mining": 65, + "price": 12800, + "attackStats": { + "crush": 8, + "slash": 0, + "stab": 18, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 8, + "slash": 0, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 8, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + "bronzeaxe": { + "type": "weapon", + "name": "Bronze Axe", + "weaponType": "axe", + "lumberjacking": 1, + "price": 100, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "ironaxe": { + "type": "weapon", + "name": "Iron Axe", + "weaponType": "axe", + "lumberjacking": 1, + "price": 100, + "skill": "strength", + "level": 10, + "attackStats": { + "crush": 4, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "cobaltaxe": { + "type": "weapon", + "name": "Cobalt Axe", + "weaponType": "axe", + "skill": "strength", + "level": 15, + "lumberjacking": 2, + "price": 200, + "attackStats": { + "crush": 4, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 4 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 2 + } + }, + "goldaxe": { + "type": "weapon", + "name": "Gold Axe", + "weaponType": "axe", + "lumberjacking": 5, + "price": 400, + "skill": "strength", + "level": 20, + "attackStats": { + "crush": 6, + "slash": 8, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 4, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, - "diamondring": { - "type": "ring", - "name": "Diamond Ring", - "skill": "magic", - "level": 50, - "price": 16500, - "attackStats": { - "crush": 4, - "slash": 8, - "stab": 4, - "archery": 0, - "magic": 17 - }, - "defenseStats": { - "crush": 1, - "slash": 7, - "stab": 11, - "archery": 0, - "magic": 33 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 2, - "magic": 14 - } - }, + "adamantitesworth": { + "type": "weapon", + "name": "Adamantite's Worth", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "adeptsrapier": { + "type": "weapon", + "name": "Adept's Rapier", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "alchemistalimony": { + "type": "weapon", + "name": "Alchemist's Alimony", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "ancientshovel": { + "type": "weapon", + "name": "Ancient Shovel", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "angelicblade": { + "type": "weapon", + "name": "Angelic Blade", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 60, + "attackStats": { + "crush": 38, + "slash": 40, + "stab": 21, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 30, + "slash": 21, + "stab": 12, + "archery": 0, + "magic": -20 + }, + "bonuses": { + "accuracy": 18, + "strength": 24, + "archery": 0, + "magic": -8 + } + }, + "berserkerssanity": { + "type": "weapon", + "name": "Berserker's Sanity", + "weaponType": "sword", + "price": 5000, + "skill": "accuracy", + "level": 30, + "attackStats": { + "crush": 4, + "slash": 22, + "stab": 14, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 8, + "slash": 9, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 12, + "strength": 6, + "archery": 0, + "magic": 0 + } + }, + "bident": { + "type": "weapon", + "name": "Bident", + "weaponType": "sword", + "price": 5000, + "skill": "accuracy", + "level": 30, + "attackStats": { + "crush": 12, + "slash": 8, + "stab": 19, + "archery": 0, + "magic": 6 + }, + "defenseStats": { + "crush": 4, + "slash": 8, + "stab": 3, + "archery": 0, + "magic": 6 + }, + "bonuses": { + "accuracy": 12, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + "bladeofdarkness": { + "type": "weapon", + "name": "Blade of Darkness", + "weaponType": "sword", + "price": 5000, + "skill": "accuracy", + "level": 55, + "attackStats": { + "crush": 4, + "slash": 38, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 12, + "stab": 10, + "archery": 0, + "magic": -12 + }, + "bonuses": { + "accuracy": 22, + "strength": 6, + "archery": 0, + "magic": -8 + } + }, + "bluelightsaber": { + "type": "weapon", + "name": "Blue Lightsaber", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "bonebonker": { + "type": "weapon", + "name": "Bone Bonker", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "brutishblade": { + "type": "weapon", + "name": "Brutish Blade", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "club": { + "type": "weapon", + "name": "Club", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "dragonscale": { + "type": "weapon", + "name": "Dragon Scale", + "weaponType": "bigsword", + "price": 5000, + "skill": "strength", + "level": 55, + "attackStats": { + "crush": 19, + "slash": 42, + "stab": 21, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 12, + "slash": 14, + "stab": 9, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 13, + "strength": 21, + "archery": 0, + "magic": 0 + } + }, + "etherialblade": { + "type": "weapon", + "name": "Etherial Blade", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 60, + "attackStats": { + "crush": 38, + "slash": 40, + "stab": 21, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 30, + "slash": 21, + "stab": 12, + "archery": 0, + "magic": -20 + }, + "bonuses": { + "accuracy": 18, + "strength": 24, + "archery": 0, + "magic": -8 + } + }, + "executionershammer": { + "type": "weapon", + "name": "Executioner's Squeaky Hammer", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "eyesword": { + "type": "weapon", + "name": "Eye Sword", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "firesword": { + "type": "weapon", + "name": "Firesword", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "golemsmace": { + "type": "weapon", + "name": "Golem's Mace", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 18, + "slash": 4, + "stab": 9, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 6, + "slash": 3, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 7, + "strength": 13, + "archery": 0, + "magic": 0 + } + }, + "goldgolemsmace": { + "type": "weapon", + "name": "Gold Golem's Mace", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 40, + "attackStats": { + "crush": 23, + "slash": 8, + "stab": 14, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 9, + "slash": 7, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 10, + "strength": 18, + "archery": 0, + "magic": 0 + } + }, + "greenlightsaber": { + "type": "weapon", + "name": "Green Lightsaber", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "hellsword": { + "type": "weapon", + "name": "Hell Sword", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "moongreataxe": { + "type": "weapon", + "name": "Moon Greataxe", + "weaponType": "axe", + "price": 5000, + "skill": "strength", + "level": 75, + "attackStats": { + "crush": 44, + "slash": 66, + "stab": 28, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 19, + "slash": 16, + "stab": 14, + "archery": 9, + "magic": -20 + }, + "bonuses": { + "accuracy": 28, + "strength": 44, + "archery": 0, + "magic": 0 + } + }, + "oldonesblade": { + "type": "weapon", + "name": "Old One's Blade", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 55, + "attackStats": { + "crush": 34, + "slash": 38, + "stab": 19, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 24, + "slash": 18, + "stab": 13, + "archery": 0, + "magic": -20 + }, + "bonuses": { + "accuracy": 18, + "strength": 24, + "archery": 0, + "magic": -8 + } + }, + "peddlepounder": { + "type": "weapon", + "name": "Peddle Pounder", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 20, + "attackStats": { + "crush": 24, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 8, + "slash": 14, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 3, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + "pinklightsaber": { + "type": "weapon", + "name": "Pink Lightsaber", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "redlightsaber": { + "type": "weapon", + "name": "Red Lightsaber", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "royalrapier": { + "type": "weapon", + "name": "Royal Rapier", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "scimitar": { + "type": "weapon", + "name": "Scimitar", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "smithshammer": { + "type": "weapon", + "name": "Smith's Hammer", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "sunrisegreataxe": { + "type": "weapon", + "name": "Sunrise Greataxe", + "weaponType": "axe", + "price": 5000, + "skill": "strength", + "level": 50, + "attackStats": { + "crush": 24, + "slash": 36, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 14, + "slash": 10, + "stab": 9, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 14, + "strength": 19, + "archery": 0, + "magic": 0 + } + }, + "swashbuckler": { + "type": "weapon", + "name": "Swash Buckler", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "swordofliberty": { + "type": "weapon", + "name": "Sword of Liberty", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "sycophant": { + "type": "weapon", + "name": "Sycophant", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 6, + "slash": 18, + "stab": 16, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 6, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 12, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + "timelessglaive": { + "type": "weapon", + "name": "Timeless Glaive", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "twilightgreataxe": { + "type": "weapon", + "name": "Twilight Greataxe", + "weaponType": "axe", + "price": 5000, + "skill": "strength", + "level": 50, + "attackStats": { + "crush": 24, + "slash": 36, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 14, + "slash": 10, + "stab": 9, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 14, + "strength": 19, + "archery": 0, + "magic": 0 + } + }, + "zweipiercer": { + "type": "weapon", + "name": "Zwei Piercer", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, - "pytharring": { - "type": "ring", - "name": "Pythar Ring", - "skill": "strength", - "level": 50, - "price": 7500, - "attackStats": { - "crush": 4, - "slash": 8, - "stab": 4, - "archery": 0, - "magic": 4 - }, - "defenseStats": { - "crush": 2, - "slash": 7, - "stab": 5, - "archery": 0, - "magic": 7 - }, - "bonuses": { - "accuracy": 0, - "strength": 16, - "archery": 0, - "magic": 0 - } - }, + "bronzebattleaxe": { + "type": "weapon", + "name": "Bronze Battle Axe", + "weaponType": "axe", + "price": 100, + "skill": "strength", + "level": 1, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 0, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "ironbattleaxe": { + "type": "weapon", + "name": "Iron Battle Axe", + "weaponType": "axe", + "price": 100, + "skill": "strength", + "level": 10, + "attackStats": { + "crush": 4, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "goldbattleaxe": { + "type": "weapon", + "name": "Gold Battle Axe", + "weaponType": "axe", + "price": 400, + "skill": "strength", + "level": 20, + "attackStats": { + "crush": 6, + "slash": 8, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 4, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + "cobaltbattleaxe": { + "type": "weapon", + "name": "Cobalt Battle Axe", + "weaponType": "axe", + "price": 200, + "skill": "strength", + "level": 15, + "attackStats": { + "crush": 4, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 4 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 2 + } + }, + "cursedbattleaxe": { + "type": "weapon", + "name": "Cursed Battle Axe", + "weaponType": "axe", + "price": 200, + "skill": "strength", + "level": 46, + "attackStats": { + "crush": 14, + "slash": 16, + "stab": 14, + "archery": 0, + "magic": 6 + }, + "defenseStats": { + "crush": 8, + "slash": 12, + "stab": 10, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 12, + "strength": 20, + "archery": 0, + "magic": 3 + } + }, + "fishingpole": { + "type": "weapon", + "name": "Fishing Pole", + "fishing": 1, + "price": 100, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "leatherhelmet": { + "type": "helmet", + "name": "Leather Helmet", + "price": 100, + "attackStats": { + "crush": 0, + "slash": 1, + "stab": 1, + "archery": 4, + "magic": 1 + }, + "defenseStats": { + "crush": 1, + "slash": 0, + "stab": 1, + "archery": 3, + "magic": 2 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 1, + "magic": 0 + } + }, + "copperhelmet": { + "type": "helmet", + "name": "Copper Helmet", + "price": 100, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "tinhelmet": { + "type": "helmet", + "name": "Tin Helmet", + "price": 100, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "bronzehelmet": { + "type": "helmet", + "name": "Bronze Helmet", + "price": 100, + "skill": "defense", + "level": 5, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 5, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "ironhelmet": { + "type": "helmet", + "name": "Iron Helmet", + "price": 100, + "skill": "defense", + "level": 10, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "goldhelmet": { + "type": "helmet", + "name": "Gold Helmet", + "price": 100, + "skill": "defense", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 5, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + "cobalthelmet": { + "type": "helmet", + "name": "Cobalt Helmet", + "price": 200, + "skill": "defense", + "level": 15, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 3, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + "nighthelm": { + "type": "helmet", + "name": "Night Helm", + "price": 200, + "skill": "defense", + "level": 25, + "attackStats": { + "crush": 3, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 6, + "slash": 9, + "stab": 7, + "archery": 3, + "magic": -2 + }, + "bonuses": { + "accuracy": 3, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + "moonhelm": { + "type": "helmet", + "name": "Moon Helm", + "price": 200, + "skill": "defense", + "level": 27, + "attackStats": { + "crush": 5, + "slash": 5, + "stab": 4, + "archery": -3, + "magic": -4 + }, + "defenseStats": { + "crush": 7, + "slash": 10, + "stab": 8, + "archery": 4, + "magic": -3 + }, + "bonuses": { + "accuracy": 4, + "strength": 6, + "archery": -3, + "magic": -4 + } + }, + "redmoonhelm": { + "type": "helmet", + "name": "Red Moon Helm", + "price": 200, + "skill": "defense", + "level": 29, + "attackStats": { + "crush": 6, + "slash": 5, + "stab": 5, + "archery": -3, + "magic": -4 + }, + "defenseStats": { + "crush": 8, + "slash": 10, + "stab": 9, + "archery": 4, + "magic": -4 + }, + "bonuses": { + "accuracy": 5, + "strength": 7, + "archery": -3, + "magic": -4 + } + }, + "demonichelm": { + "type": "helmet", + "name": "Demonic Helm", + "price": 200, + "skill": "defense", + "level": 29, + "attackStats": { + "crush": 6, + "slash": 5, + "stab": 5, + "archery": -3, + "magic": -4 + }, + "defenseStats": { + "crush": 8, + "slash": 10, + "stab": 9, + "archery": 4, + "magic": -4 + }, + "bonuses": { + "accuracy": 5, + "strength": 7, + "archery": -3, + "magic": -4 + } + }, + "wolfhelmet": { + "type": "helmet", + "name": "Wolf Helmet", + "price": 200, + "skill": "defense", + "level": 29, + "attackStats": { + "crush": 5, + "slash": 7, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 6, + "slash": 10, + "stab": 7, + "archery": 7, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 6, + "archery": 0, + "magic": 0 + } + }, + "helmofliberty": { + "type": "helmet", + "name": "Helm of Liberty", + "price": 200, + "skill": "defense", + "level": 55, + "attackStats": { + "crush": 8, + "slash": 12, + "stab": 7, + "archery": 4, + "magic": 5 + }, + "defenseStats": { + "crush": 9, + "slash": 14, + "stab": 11, + "archery": 9, + "magic": 5 + }, + "bonuses": { + "accuracy": 5, + "strength": 7, + "archery": 3, + "magic": 4 + } + }, + "helmofhaste": { + "type": "helmet", + "name": "Helm of Haste", + "price": 200, + "skill": "defense", + "level": 30, + "movementModifier": 0.95, + "attackStats": { + "crush": 5, + "slash": 6, + "stab": 7, + "archery": 4, + "magic": 5 + }, + "defenseStats": { + "crush": 9, + "slash": 14, + "stab": 8, + "archery": 5, + "magic": 6 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 3, + "magic": 2 + } + }, + "sapphirehelm": { + "type": "helmet", + "name": "Sapphire Helm", + "price": 200, + "skill": "defense", + "level": 33, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 5, + "magic": 3 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 1, + "archery": 8, + "magic": 5 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 4, + "magic": 3 + } + }, + "amethysthelm": { + "type": "helmet", + "name": "Amethyst Helm", + "price": 200, + "skill": "defense", + "level": 35, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 6, + "magic": 4 + }, + "defenseStats": { + "crush": 3, + "slash": 4, + "stab": 2, + "archery": 10, + "magic": 7 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 5, + "magic": 4 + } + }, + "midnightamethysthelm": { + "type": "helmet", + "name": "Midnight Amethyst Helm", + "price": 200, + "skill": "defense", + "level": 37, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 7, + "magic": 5 + }, + "defenseStats": { + "crush": 4, + "slash": 5, + "stab": 3, + "archery": 12, + "magic": 8 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 6, + "magic": 5 + } + }, + "rubyhelm": { + "type": "helmet", + "name": "Ruby Helm", + "price": 200, + "skill": "defense", + "level": 39, + "attackStats": { + "crush": 4, + "slash": 4, + "stab": 4, + "archery": 8, + "magic": 6 + }, + "defenseStats": { + "crush": 5, + "slash": 6, + "stab": 4, + "archery": 14, + "magic": 9 + }, + "bonuses": { + "accuracy": 4, + "strength": 4, + "archery": 7, + "magic": 6 + } + }, + "magmahelm": { + "type": "helmet", + "name": "Magma Helm", + "price": 200, + "skill": "defense", + "level": 43, + "attackStats": { + "crush": 12, + "slash": 13, + "stab": 11, + "archery": -5, + "magic": -12 + }, + "defenseStats": { + "crush": 12, + "slash": 18, + "stab": 17, + "archery": -12, + "magic": -10 + }, + "bonuses": { + "accuracy": 10, + "strength": 12, + "archery": -8, + "magic": -12 + } + }, + "hellkeeperhelm": { + "type": "helmet", + "name": "Hellkeeper Helm", + "price": 200, + "skill": "defense", + "level": 49, + "attackStats": { + "crush": 8, + "slash": 6, + "stab": 6, + "archery": -4, + "magic": -6 + }, + "defenseStats": { + "crush": 22, + "slash": 19, + "stab": 16, + "archery": -18, + "magic": -16 + }, + "bonuses": { + "accuracy": 8, + "strength": 13, + "archery": -6, + "magic": -9 + } + }, + "sentinelhelm": { + "type": "helmet", + "name": "Sentinel Helm", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 6, + "slash": 4, + "stab": 5, + "archery": -2, + "magic": -3 + }, + "defenseStats": { + "crush": 16, + "slash": 11, + "stab": 11, + "archery": 6, + "magic": -9 + }, + "bonuses": { + "accuracy": 7, + "strength": 11, + "archery": -3, + "magic": -7 + } + }, + "mushroomhat": { + "type": "helmet", + "name": "Mushroom Hat", + "price": 1000, + "skill": "defense", + "level": 35, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 2, + "archery": 6, + "magic": 2 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": 10, + "magic": 8 + }, + "bonuses": { + "accuracy": 2, + "strength": 1, + "archery": 4, + "magic": 3 + } + }, + "wizardhatblue": { + "type": "helmet", + "name": "Blue Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 1 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": -2, + "magic": 3 + }, + "bonuses": { + "accuracy": 1, + "strength": 0, + "archery": 0, + "magic": 1 + } + }, + "wizardhatblack": { + "type": "helmet", + "name": "Black Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatcrimson": { + "type": "helmet", + "name": "Crimson Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatdarkblue": { + "type": "helmet", + "name": "Dark Blue Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatgreen": { + "type": "helmet", + "name": "Green Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatpink": { + "type": "helmet", + "name": "Pink Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatpurple": { + "type": "helmet", + "name": "Purple Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatred": { + "type": "helmet", + "name": "Red Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatturquoise": { + "type": "helmet", + "name": "Turquoise Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatwhite": { + "type": "helmet", + "name": "White Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "wizardhatyellow": { + "type": "helmet", + "name": "Yellow Wizard Hat", + "price": 1000, + "skill": "magic", + "level": 1 + }, + "pilgrimhat": { + "type": "helmet", + "name": "Pilgrim Hat", + "price": 1000, + "skill": "magic", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 5 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 10 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 3 + } + }, + "pilgrimhatpink": { + "type": "helmet", + "name": "Pink Pilgrim Hat", + "price": 1000, + "skill": "magic", + "level": 25, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 6 + }, + "defenseStats": { + "crush": 3, + "slash": 2, + "stab": 2, + "archery": -4, + "magic": 10 + }, + "bonuses": { + "accuracy": 1, + "strength": 2, + "archery": 0, + "magic": 4 + } + }, + "witchhat": { + "type": "helmet", + "name": "Witch Hat", + "price": 1000, + "skill": "magic", + "level": 15, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 4 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": -2, + "magic": 8 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 2 + } + }, + "witchhatblue": { + "type": "helmet", + "name": "Blue Witch Hat", + "price": 1000, + "skill": "magic", + "level": 25, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 6 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": -2, + "magic": 12 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 4 + } + }, + "darkmagehood": { + "type": "helmet", + "name": "Dark Mage Hood", + "price": 1000, + "skill": "magic", + "level": 30, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 8 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 14 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 4 + } + }, + "darkmagehoodblue": { + "type": "helmet", + "name": "Dark Mage Hood", + "price": 1000, + "skill": "magic", + "level": 30, + "attackStats": { + "crush": 3, + "slash": 4, + "stab": 3, + "archery": 0, + "magic": 9 + }, + "defenseStats": { + "crush": 3, + "slash": 5, + "stab": 4, + "archery": -2, + "magic": 14 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 5 + } + }, + "darkmagehoodgreen": { + "type": "helmet", + "name": "Dark Mage Hood", + "price": 1000, + "skill": "magic", + "level": 30, + "attackStats": { + "crush": 3, + "slash": 4, + "stab": 3, + "archery": 0, + "magic": 9 + }, + "defenseStats": { + "crush": 3, + "slash": 5, + "stab": 4, + "archery": -2, + "magic": 14 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 5 + } + }, + "darkmagehoodgold": { + "type": "helmet", + "name": "Dark Mage Hood", + "price": 1000, + "skill": "magic", + "level": 30, + "attackStats": { + "crush": 3, + "slash": 4, + "stab": 3, + "archery": 0, + "magic": 9 + }, + "defenseStats": { + "crush": 3, + "slash": 5, + "stab": 4, + "archery": -2, + "magic": 14 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 5 + } + }, + "crystalhood": { + "type": "helmet", + "name": "Crystal Hood", + "price": 1000, + "skill": "magic", + "level": 30, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 14 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 10 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 6 + } + }, + "demoniccrystalhood": { + "type": "helmet", + "name": "Demonic Crystal Hood", + "price": 1000, + "skill": "magic", + "level": 32, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 16 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 11 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 7 + } + }, + "naturecrystalhood": { + "type": "helmet", + "name": "Nature Crystal Hood", + "price": 1000, + "skill": "magic", + "level": 32, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 16 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 11 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 7 + } + }, + "sunshinecrystalhood": { + "type": "helmet", + "name": "Sunshine Crystal Hood", + "price": 1000, + "skill": "magic", + "level": 32, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 2, + "archery": 0, + "magic": 16 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 11 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 7 + } + }, + "fishbowl": { + "type": "helmet", + "name": "Fishbowl", + "price": 100, + "skill": "defense", + "level": 5, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "froghelm": { + "type": "helmet", + "name": "Frog Helm", + "price": 100, + "skill": "defense", + "level": 5, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "bearhelm": { + "type": "helmet", + "name": "Bear Helm", + "price": 100, + "skill": "defense", + "level": 5, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "skeletonhelm": { + "type": "helmet", + "name": "Dark Skeleton Helm", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "darkskeletonhelm": { + "type": "helmet", + "name": "Dark Skeleton Helm", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "flamehelmet": { + "type": "helmet", + "name": "Flame Helmet", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "flameblackhelmet": { + "type": "helmet", + "name": "Black Flame Helmet", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "flamebluehelmet": { + "type": "helmet", + "name": "Blue Flame Helmet", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "flamecursehelmet": { + "type": "helmet", + "name": "Cursed Flame Helmet", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "jesterhat": { + "type": "helmet", + "name": "Jester Hat", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "refinedsapphirehelmet": { + "type": "helmet", + "name": "Refined Sapphire Helmet", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "scholarshat": { + "type": "helmet", + "name": "Sholar's Hat", + "price": 100, + "skill": "magic", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "scholarshatblack": { + "type": "helmet", + "name": "Black Sholar's Hat", + "price": 100, + "skill": "magic", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "scholarshatgreen": { + "type": "helmet", + "name": "Green Sholar's Hat", + "price": 100, + "skill": "magic", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "scholarshatred": { + "type": "helmet", + "name": "Red Sholar's Hat", + "price": 100, + "skill": "magic", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "scholarshatyellow": { + "type": "helmet", + "name": "Yellow Sholar's Hat", + "price": 100, + "skill": "magic", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "slimehelmet": { + "type": "helmet", + "name": "Slime Helmet", + "price": 100, + "skill": "archery", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "slimekinghelmet": { + "type": "helmet", + "name": "Slime King Helmet", + "price": 100, + "skill": "archery", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "slimekingrarehelmet": { + "type": "helmet", + "name": "Rare Slime King Helmet", + "price": 100, + "skill": "archery", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "slimepurplehelmet": { + "type": "helmet", + "name": "Purple Slime Helmet", + "price": 100, + "skill": "archery", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "slimeredhelmet": { + "type": "helmet", + "name": "Red Slime Helmet", + "price": 100, + "skill": "archery", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "slimetealhelmet": { + "type": "helmet", + "name": "Teal Slime Helmet", + "price": 100, + "skill": "archery", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "knighthelmet": { + "type": "helmet", + "name": "Knight Helmet", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "paladinhelmet": { + "type": "helmet", + "name": "Paladin Helmet", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "samuraihelmet": { + "type": "helmet", + "name": "Samurai Helmet", + "price": 100, + "skill": "defense", + "level": 1, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "conquerorhelmet": { + "type": "helmet", + "name": "Conqueror Helmet", + "price": 100, + "skill": "defense", + "level": 55, + "attackStats": { + "crush": 6, + "slash": 12, + "stab": 8, + "archery": 4, + "magic": -14 + }, + "defenseStats": { + "crush": 16, + "slash": 24, + "stab": 20, + "archery": 10, + "magic": -12 + }, + "bonuses": { + "accuracy": 7, + "strength": 8, + "archery": 3, + "magic": 0 + } + }, + "scarabhelmet": { + "type": "helmet", + "name": "Scarab Helmet", + "price": 100, + "skill": "archery", + "level": 35, + "attackStats": { + "crush": 4, + "slash": 3, + "stab": 5, + "archery": 19, + "magic": 8 + }, + "defenseStats": { + "crush": 2, + "slash": 4, + "stab": 3, + "archery": 10, + "magic": 6 + }, + "bonuses": { + "accuracy": 3, + "strength": 4, + "archery": 10, + "magic": 3 + } + }, + "minitaurshelmet": { + "type": "helmet", + "name": "Minitaur's Helmet", + "price": 100, + "skill": "archery", + "level": 40, + "attackStats": { + "crush": 5, + "slash": 3, + "stab": 6, + "archery": 20, + "magic": 5 + }, + "defenseStats": { + "crush": 1, + "slash": 2, + "stab": 2, + "archery": 18, + "magic": 14 + }, + "bonuses": { + "accuracy": 3, + "strength": 2, + "archery": 8, + "magic": 4 + } + }, + "elfhelmet": { + "type": "helmet", + "name": "Elf Helmet", + "price": 100, + "skill": "archery", + "level": 40, + "attackStats": { + "crush": 6, + "slash": 4, + "stab": 8, + "archery": 24, + "magic": 6 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 2, + "archery": 18, + "magic": 14 + }, + "bonuses": { + "accuracy": 3, + "strength": 2, + "archery": 12, + "magic": 4 + } + }, + "elfhelmetgrown": { + "type": "helmet", + "name": "Grown Elf Helmet", + "price": 100, + "skill": "magic", + "level": 40, + "attackStats": { + "crush": 6, + "slash": 4, + "stab": 8, + "archery": 7, + "magic": 26 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 2, + "archery": 8, + "magic": 22 + }, + "bonuses": { + "accuracy": 3, + "strength": 2, + "archery": 2, + "magic": 14 + } + }, + "oldmanmask": { + "type": "helmet", + "name": "Old Man's Face", + "price": 100 + }, + "artistcrown": { + "type": "helmet", + "name": "Artist Helmet", + "price": 100 + }, + "toyhat": { + "type": "helmet", + "name": "Toy Hat", + "price": 100 + }, + "toyhatprogrammer": { + "type": "helmet", + "name": "Toy Hat Programmer", + "price": 100 + }, + "toyhatwhite": { + "type": "helmet", + "name": "White Toy Hat", + "price": 100 + }, + "leatherchest": { + "type": "chestplate", + "name": "Leather Chestpiece", + "price": 100, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "mysticchest": { + "type": "chestplate", + "name": "Mystic Chestpiece", + "price": 100, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 8 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 6 + }, + "bonuses": { + "accuracy": 0, + "strength": 1, + "archery": 0, + "magic": 4 + } + }, + "bluemysticchest": { + "type": "chestplate", + "name": "Blue Mystic Chestpiece", + "price": 100, + "skill": "magic", + "level": 5, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 11 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 8 + }, + "bonuses": { + "accuracy": 0, + "strength": 1, + "archery": 0, + "magic": 6 + } + }, + "greenmysticchest": { + "type": "chestplate", + "name": "Green Mystic Chestpiece", + "price": 100, + "skill": "magic", + "level": 10, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 13 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": -4, + "magic": 10 + }, + "bonuses": { + "accuracy": 0, + "strength": 1, + "archery": 0, + "magic": 8 + } + }, - "nisocring": { - "type": "ring", - "name": "Nisoc Ring", - "skill": "accuracy", - "level": 41, - "price": 7800, - "attackStats": { - "crush": 4, - "slash": 8, - "stab": 4, - "archery": 0, - "magic": 4 - }, - "defenseStats": { - "crush": 2, - "slash": 7, - "stab": 5, - "archery": 0, - "magic": 7 - }, - "bonuses": { - "accuracy": 16, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, + "copperchestplate": { + "type": "chestplate", + "name": "Copper Chestplate", + "price": 100, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "tinchestplate": { + "type": "chestplate", + "name": "Tin Chestplate", + "price": 100, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "bronzechestplate": { + "type": "chestplate", + "name": "Bronze Chestplate", + "price": 100, + "skill": "defense", + "level": 5, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "ironchestplate": { + "type": "chestplate", + "name": "Iron Chestplate", + "price": 100, + "skill": "defense", + "level": 10, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 5, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "goldchestplate": { + "type": "chestplate", + "name": "Gold Chestplate", + "price": 100, + "skill": "defense", + "level": 20, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 8, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + "cobaltchestplate": { + "type": "chestplate", + "name": "Cobalt Chestplate", + "price": 100, + "skill": "defense", + "level": 15, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 7, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "nightchestplate": { + "type": "chestplate", + "name": "Night Chestplate", + "price": 200, + "skill": "defense", + "level": 25, + "attackStats": { + "crush": 4, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 9, + "slash": 13, + "stab": 7, + "archery": 5, + "magic": -6 + }, + "bonuses": { + "accuracy": 5, + "strength": 3, + "archery": 0, + "magic": -4 + } + }, + "sapphirechestplate": { + "type": "chestplate", + "name": "Sapphire Chestplate", + "price": 200, + "skill": "defense", + "level": 33, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 3, + "archery": 6, + "magic": 4 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 2, + "archery": 8, + "magic": 7 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 6, + "magic": 4 + } + }, - "flask": { - "type": "object", - "name": "Flask", - "description": "A flask used to increment your health from one point to another. How much does it increment it by? +100 HP!", - "storeCount": 10, - "price": 40, - "stackable": true, - "edible": true, - "maxStackSize": 25, - "plugin": "healingitem", - "healAmount": 100 - }, - - "hotsauce": { - "type": "object", - "name": "Hot Sauce", - "description": "It's really weird why random mobs would be carrying this item. Like what could they possibly use this for?", - "price": 150, - "edible": true, - "plugin": "hotsauce" - }, - - "cure": { - "type": "object", - "name": "Antidote", - "description": "Are you poisoned? Have you been involved in a fight with a poisonous snake or venomous spider? Well this is the cure for you!", - "storeCount": 10, - "price": 150, - "stackable": false, - "edible": true, - "plugin": "poisoncure" - }, - - "manaflask": { - "type": "object", - "name": "Mana Flask", - "description": "A refreshing drink for those a little bit low on mana! +35 MP!", - "storeCount": 10, - "price": 200, - "stackable": true, - "edible": true, - "maxStackSize": 30, - "plugin": "healingitem", - "manaAmount": 35 - }, - - "burger": { - "type": "object", - "name": "Burger", - "description": "How did a burger make its way into a fantasy world? Who knows, but it's delicious! +200 HP!", - "storeCount": 10, - "price": 350, - "stackable": true, - "edible": true, - "maxStackSize": 7, - "plugin": "healingitem", - "healAmount": 200 - }, - - "bigflask": { - "type": "object", - "name": "Big Flask", - "description": "It's like the other flask, except it's bigger, so obviously it must heal more! +250 HP!", - "storeCount": 10, - "price": 600, - "stackable": true, - "edible": true, - "maxStackSize": 5, - "plugin": "healingitem", - "healAmount": 250 - }, - - "bigmanaflask": { - "type": "object", - "name": "Big Mana Flask", - "description": "For those seriously thirsty for some mana! +95 MP!", - "storeCount": 10, - "price": 600, - "stackable": true, - "edible": true, - "maxStackSize": 10, - "plugin": "healingitem", - "manaAmount": 95 - }, - - "firepotion": { - "type": "object", - "name": "Fire Potion", - "price": 250, - "maxStackSize": 3, - "description": "Feeling a little hot? Have you been burnt to a crisp and can't seem to shake off that burning sensation? The fire potion is the answer to your ailments!", - "edible": true, - "plugin": "firepotion" - }, - - "book": { - "type": "object", - "name": "Book [Quest]", - "undroppable": true - }, - - "cd": { - "type": "object", - "name": "CD [Quest]", - "description": "A CD received by some dying soldier Private Ryan. Contains his last mixtape. I should probably get this to his Sexy wife or something.", - "undroppable": true - }, - - "snowpotion": { - "type": "object", - "name": "Snow Potion", - "price": 25, - "description": "A magical potion received by some weird monument. It temporarily prevents the player from taking damage from the cold.", - "stackable": true, - "maxStackSize": 3, - "respawnDelay": 120000, - "edible": true, - "plugin": "snowpotion" - }, - - "royalazalea": { - "type": "object", - "name": "Royal Azalea" - }, - - "blackpotion": { - "type": "object", - "name": "Black Potion", - "price": 100, - "description": "This potion is not at all suspicious. Drink up, it's really yummy!", - "plugin": "blackpotion", - "edible": true - }, - - "gold": { - "type": "object", - "name": "Gold", - "stackable": true, - "description": "A very useful shiny metal that for some reason people like to exchange for goods." - }, - - "token": { - "type": "object", - "name": "Token", - "stackable": true, - "description": "A special token that can be exchanged for special stuff at a special store somewhere special." - }, - - "banana": { - "type": "object", - "name": "Banana", - "description": "A banana, a fruit that is yellow and long. It is a good source of potassium and fiber.", - "edible": true, - "plugin": "healingitem", - "healAmount": 700 - }, - - "watermelon": { - "type": "object", - "name": "Watermelon", - "description": "A watermelon, I should probably cut this up before eating it.", - "edible": true, - "plugin": "healingitem", - "healAmount": 800 - }, - - "apple": { - "type": "object", - "name": "Apple", - "description": "An apple, an excellent source of energy!", - "edible": true, - "plugin": "healingitem", - "healAmount": 450 - }, - - "orange": { - "type": "object", - "name": "Orange", - "description": "It's funny, the name of the fruit is the same as the colour and its colour.", - "edible": true, - "plugin": "healingitem", - "healAmount": 750 - }, - - "blueberry": { - "type": "object", - "name": "Blueberry", - "description": "A blueberry, a fruit that is blue and round. It is a good source of antioxidants.", - "edible": true, - "plugin": "healingitem", - "healAmount": 500 - }, - - "shardt1": { - "type": "object", - "price": 1500, - "name": "Shard - Tier 1", - "stackable": true, - "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." - }, - - "shardt2": { - "type": "object", - "price": 3000, - "name": "Shard - Tier 2", - "stackable": true, - "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." - }, - - "shardt3": { - "type": "object", - "price": 4500, - "name": "Shard - Tier 3", - "stackable": true, - "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." - }, - - "shardt4": { - "type": "object", - "price": 6000, - "name": "Shard - Tier 4", - "stackable": true, - "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." - }, - - "shardt5": { - "type": "object", - "price": 7500, - "name": "Shard - Tier 5", - "stackable": true, - "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." - }, - - "knife": { - "type": "object", - "name": "Knife", - "description": "A versatile cutting tool that will primarily be used for fletching and stuff.", - "price": 50, - "interactable": true, - "plugin": "knife" - }, - - "string": { - "type": "object", - "name": "String", - "description": "A piece of string, can probably be used to make things with it.", - "stackable": true, - "price": 50 - }, - - "logs": { - "type": "object", - "name": "Logs", - "description": "Ah yes, the classic logs. Looking at them I can see that they're made out of wood.", - "price": 65 - }, - - "palmlogs": { - "type": "object", - "name": "Palm Logs", - "description": "Funny enough, these logs are made out of palm wood. Which is not the same as the other kinds of wood.", - "price": 75 - }, - - "pinelogs": { - "type": "object", - "name": "Pine Logs", - "description": "I think I found these when I accidentally swung my axe at a tree repeatedly until it fell down.", - "price": 88 - }, - - "icelogs": { - "type": "object", - "name": "Ice Logs", - "price": 65, - "description": "These logs are made out of ice. They're very cold to the touch. No matter what, they will not thaw. I wonder what happens when you put it in fire." - }, - - - "icepalmlogs": { - "type": "object", - "name": "Ice Palm Logs", - "price": 50, - "description": "These logs are made out of ice and palm wood. They're very cold to the touch." - }, - - "icepinelogs": { - "type": "object", - "name": "Ice Pine Logs", - "description": "I think I found these when I accidentally swung my axe at a tree repeatedly until it fell down.", - "price": 85 - }, - - "willowlogs": { - "type": "object", - "name": "Willow Logs", - "price": 350, - "description": "Classic type of wood. It's hard, it's strong, you can use it for a lot of things. But for now I guess I can sell it." - }, - - "bloodwoodlogs": { - "type": "object", - "name": "Bloodwood Logs", - "price": 400, - "description": "It almost looks like they're crying blood." - }, - - "nisocore": { - "type": "object", - "name": "Nisoc Ore", - "description": "An ancient rock forming in volcanic areas. Generally used for crafting pendants and rings, and perhaps other things.", - "price": 250 - }, - - "cinnabarore": { - "type": "object", - "name": "Cinnabar Ore", - "description": "A red ore containing special metals. May be used for crafting of certain weapons.", - "price": 350 - }, - - "pytharore": { - "type": "object", - "name": "Pythar Ore", - "description": "A purple crystal with magical properties.", - "price": 500 - }, - - "goldnugget": { - "type": "object", - "name": "Gold Ore", - "description": "Raw gold ore, will need to be processed before it can be turned into something nice.", - "price": 650 - }, - - "iboore": { - "type": "object", - "name": "Ibo Ore", - "description": "A peculiar ore. Its uses are not well understood, perhaps with further research it can be used for something.", - "price": 800 - }, - - "moonrockore": { - "type": "object", - "name": "Space Rock", - "description": "Part of an Astroid that fell from the sky 172,000 Earthling years ago. Must be special!", - "price": 2400 - }, - - "bead": { - "type": "object", - "name": "Magic Bead", - "price": 10, - "stackable": true, - "maxStackSize": 3, - "description": "A bead that emanates magical properties. Can be used in conjunction with other items to create magical items." - }, - - "lightningbead": { - "type": "object", - "name": "Lightning Bead", - "description": "A magical bead imbued with lightning properties. Can be used to craft magical items." - }, - - "naturebead": { - "type": "object", - "name": "Magic Bead", - "description": "A magical bead imbued with the power of nature. Can be used to craft magical items." - }, - - "firebead": { - "type": "object", - "name": "Magic Bead", - "description": "A magical bead imbued with fire. Can be used to craft magical items." - }, - - "icebead": { - "type": "object", - "name": "Magic Bead", - "description": "A strong magical bead perpetually frozen. Can be used to craft magical items." - }, - - "stick": { - "type": "object", - "name": "Shaft", - "price": 2, - "stackable": true, - "description": "A stick. It's a stick. What else do you want me to say about it? You can probably use it to craft stuff now that it has been added in the game." - }, - - "feather": { - "type": "object", - "name": "Feather", - "stackable": true, - "price": 50, - "description": "A feather, I think it came off of a bird or something. You could make arrows with this thing." - }, - - "candykey": { - "type": "object", - "name": "Candy Key", - "price": 50, - "description": "A key that allows entrance into Santa's secret chamber. Crumbles upon entering." - }, - - "boostpotion": { - "type": "object", - "name": "Boost Potion", - "price": 2500, - "description": "Drinking this will probably speed up your attack rate for a short period of time. I think.", - "edible": true, - "plugin": "boostpotion" - }, - - "accuracypotion": { - "type": "object", - "name": "Accuracy Potion", - "price": 1000, - "description": "If there's one thing I know is that potions in this world are always sketchy and do something else from what their name implies. I hope that's not the case here.", - "edible": true, - "effect": "accuracy", - "duration": 60000, - "plugin": "effectpotion" - }, - - "defensepotion": { - "type": "object", - "name": "Defence Potion", - "price": 1000, - "description": "Drinking this will make give you some serious defense for a short period of time.", - "edible": true, - "effect": "defense", - "duration": 60000, - "plugin": "effectpotion" - }, - - "strengthpotion": { - "type": "object", - "name": "Strength Potion", - "price": 1000, - "description": "Do you wanna partake in maximum damage contests? This potion is probably your best friend.", - "edible": true, - "effect": "strength", - "duration": 60000, - "plugin": "effectpotion" - }, - - "beermug": { - "type": "object", - "name": "Beer", - "price": 1000, - "description": "Nothing is quite as refreshing as a beer, though this may potentially inhibit your accuracy for a wee bit.", - "edible": true, - "plugin": "beermug" - }, - - "clamobject": { - "type": "object", - "name": "Clam", - "price": 100, - "description": "It has a hard outer shell but I bet it's yummy inside." - }, - - "clamchowder": { - "type": "object", - "name": "Clam Chowder", - "price": 1000, - "description": "A delicious soup made from clams. It's a bit salty though.", - "edible": true, - "smallBowl": true, - "plugin": "healingitem", - "healAmount": 750 - }, - - "rawshrimp": { - "type": "object", - "name": "Raw Shrimp", - "price": 100, - "description": "Maybe if I cook this it'll become something actually edible." - }, - - "cookedshrimp": { - "type": "object", - "name": "Cooked Shrimp", - "price": 200, - "description": "A singular cooked shrimp, alone and dead. But still delicious.", - "edible": true, - "plugin": "healingitem", - "healAmount": 450 - }, - - "jellyfish": { - "type": "object", - "name": "Jellyfish", - "price": 100, - "description": "Did you know that jellyfish don't actually have a brain. So don't feel so bad about yourself!" - }, - - "jellyfishsmoothie": { - "type": "object", - "name": "Jellyfish Smoothie", - "price": 1000, - "description": "I can't believe someone would actually think up to create something like this.", - "edible": true, - "plugin": "healingitem", - "healAmount": 750 - }, - - "kelp": { - "type": "object", - "name": "Kelp", - "price": 100, - "description": "Kelp is a type of seaweed that grows in water. It's pretty tasty when combined with other stuff." - }, - - "rawbeef": { - "type": "object", - "name": "Raw Beef", - "price": 100, - "description": "A piece of raw beef. It's probably not the best idea to eat it raw." - }, - - "rawtuna": { - "type": "object", - "name": "Raw Tuna", - "price": 100, - "description": "A fish that is commonly found in water. It's pretty tasty when cooked." - }, - - "tunasushi": { - "type": "object", - "name": "Tuna Sushi", - "price": 1000, - "description": "A delicious sushi made from tuna. Probably the best in-game food at the moment, or not, who knows, I'm just a piece of text.", - "edible": true, - "plugin": "healingitem", - "healAmount": 850 - }, - - "barley": { - "type": "object", - "name": "Barley", - "description": "It's a fruit, no it's a sald, no it's a grain. You can probably use it to make bread or something like that.", - "price": 100 - }, - - "blackberry": { - "type": "object", - "name": "Blackberry", - "description": "A berry that grows on bushes. It's pretty tasty when cooked.", - "price": 100 - }, - - "borth": { - "type": "object", - "name": "Borth", - "description": "A nice yummy warm and nice smelling... I really don't know what it is.", - "price": 100 - }, - - "bronzebar": { - "type": "object", - "name": "Bronze Bar", - "description": "A bar of bronze. It's pretty heavy.", - "price": 250 - }, - - "bronzeore": { - "type": "object", - "name": "Bronze Ore", - "description": "A piece of bronze ore. It's pretty heavy.", - "price": 100 - }, - - "bucket": { - "type": "object", - "name": "Bucket", - "description": "A bucket, you can use it to put a variety of liquids in it.", - "price": 100 - }, - - "cake": { - "type": "object", - "name": "Cake", - "description": "A delicious cake. It's pretty tasty.", - "price": 100 - }, - - "cheese": { - "type": "object", - "name": "Cheese", - "description": "A piece of cheese. I think it came from milk.", - "price": 100 - }, - - "cilantro": { - "type": "object", - "name": "Cilantro", - "description": "A leafy herb that is commonly used in Mexican cuisine. It's pretty tasty when cooked.", - "price": 100 - }, - - "cloudberry": { - "type": "object", - "name": "Cloudberry", - "description": "A berry that grows on bushes. It's pretty tasty when cooked.", - "price": 100 - }, - - "coal": { - "type": "object", - "name": "Coal", - "description": "A piece of coal. You can use it smelt ores.", - "price": 75 - }, - - "rawchicken": { - "type": "object", - "name": "Raw Chicken", - "description": "I think I should cook this before I eat it.", - "price": 100 - }, - - "cookedchicken": { - "type": "object", - "name": "Cooked Chicken", - "description": "A delicious piece of chicken. It's pretty tasty.", - "edible": true, - "plugin": "healingitem", - "healAmount": 400, - "price": 250 - }, - - "cookedbeef": { - "type": "object", - "name": "Cooked Beef", - "description": "A scrumptious piece of beef. You can eat it and it'll heal you.", - "edible": true, - "plugin": "healingitem", - "healAmount": 400, - "price": 250 - }, - - "rawpork": { - "type": "object", - "name": "Raw Pork", - "description": "I think I should cook this before I eat it.", - "price": 250 - }, - - "cookedpork": { - "type": "object", - "name": "Cooked Pork", - "description": "A delicious piece of pork. It's pretty tasty.", - "edible": true, - "plugin": "healingitem", - "healAmount": 400, - "price": 100 - }, - - "rawsausage": { - "type": "object", - "name": "Raw Sausage", - "description": "I think I should cook this before I eat it.", - "price": 100 - }, - - "cookedsausage": { - "type": "object", - "name": "Cooked Sausage", - "description": "A delicious sausage. It's pretty tasty.", - "edible": true, - "plugin": "healingitem", - "healAmount": 650, - "price": 100 - }, - - "copperbar": { - "type": "object", - "name": "Copper Bar", - "description": "A bar of copper. It's pretty heavy.", - "price": 100 - }, - - "copperore": { - "type": "object", - "name": "Copper Ore", - "description": "A piece of copper ore. It's pretty heavy.", - "price": 100 - }, - - "corn": { - "type": "object", - "name": "Corn", - "description": "It's corn, and it's on a cob.", - "price": 100 - }, - - "egg": { - "type": "object", - "name": "Egg", - "description": "A wonderful sorta round egg, it came from a chicken, I think.", - "price": 100 - }, - - "goldore": { - "type": "object", - "name": "Gold Ore", - "description": "A piece of gold ore. It's pretty heavy.", - "price": 100 - }, - - "gooseberry": { - "type": "object", - "name": "Gooseberry", - "description": "A berry that grows on bushes. It's pretty tasty when cooked.", - "price": 100 - }, - - "ironbar": { - "type": "object", - "name": "Iron Bar", - "description": "A bar of iron. It's pretty heavy.", - "price": 100 - }, - - "mango": { - "type": "object", - "name": "Mango", - "description": "A mango, it's a fruit and it's edible", - "price": 100 - }, - - "milkbottle": { - "type": "object", - "name": "Milk Bottle", - "description": "A bottle of milk. It's pretty tasty when cooked.", - "price": 100 - }, - - "mulberry": { - "type": "object", - "name": "Mulberry", - "description": "A berry that grows on or in bushes.", - "price": 100 - }, - - "oat": { - "type": "object", - "name": "Oat", - "description": "A grain that is commonly used in bread.", - "price": 100 - }, - - "peach": { - "type": "object", - "name": "Peach", - "description": "A peach, it's a fruit and it's edible", - "price": 100 - }, - - "pineapple": { - "type": "object", - "name": "Pineapple", - "description": "A pineapple, it's a fruit and it's edible", - "price": 100 - }, - - "plum": { - "type": "object", - "name": "Plum", - "description": "A plum, it's a fruit and it's edible", - "price": 100 - }, - - "quinoa": { - "type": "object", - "name": "Quinoa", - "description": "Hello this is the developer, I really don't know what this is even used in so I can't come up with a witty description.", - "price": 100 - }, - - "raspberry": { - "type": "object", - "name": "Raspberry", - "description": "A berry that grows on or around bushes..", - "price": 100 - }, - - "rice": { - "type": "object", - "name": "Rice", - "description": "You can eat this after you cook it for a bit.", - "price": 100 - }, - - "strawberry": { - "type": "object", - "name": "Strawberry", - "description": "A berry that grows on bushes.", - "price": 100 - }, - - "tinbar": { - "type": "object", - "name": "Tin Bar", - "description": "A bar of tin. It's pretty heavy.", - "price": 100 - }, - - "tinore": { - "type": "object", - "name": "Tin Ore", - "description": "A piece of tin ore.", - "price": 100 - }, - - "ironore": { - "type": "object", - "name": "Iron Ore", - "description": "A piece of iron ore.", - "price": 100 - }, - - "goldbar": { - "type": "object", - "name": "Gold Bar", - "description": "A bar of gold. It's pretty heavy and shiny.", - "price": 1200 - }, - - "tofu": { - "type": "object", - "name": "Tofu", - "description": "A block of tofu. I don't know what to do with this, I'm not vegan.", - "price": 100 - }, - - "tomato": { - "type": "object", - "name": "Tomato", - "description": "A tomato, it's a fruit and it's edible. Yes it's a fruit get over it.", - "edible": true, - "plugin": "healingitem", - "healAmount": 100, - "price": 100 - }, - - "onion": { - "type": "object", - "name": "Onion", - "description": "An onion, it has layers, like an ogre.", - "edible": true, - "plugin": "healingitem", - "healAmount": 100, - "price": 100 - }, - - "potato": { - "type": "object", - "name": "Potato", - "description": "A potato, it's a vegetable and it's edible, though cooking it might be better.", - "edible": true, - "plugin": "healingitem", - "healAmount": 120, - "price": 100 - }, - - "chilli": { - "type": "object", - "name": "Chilli", - "description": "A chilli pepper, it's hot so be careful.", - "edible": true, - "plugin": "healingitem", - "healAmount": 100, - "price": 100 - }, - - "waterbucket": { - "type": "object", - "name": "Water Bucket", - "description": "A bucket of water. You can use it to cook stuff with it.", - "price": 100 - }, - - "bowlsmall": { - "type": "object", - "name": "Small Bowl", - "description": "A small bowl. Can be used to cook stuff in it.", - "price": 100 - }, - - "bowlmedium": { - "type": "object", - "name": "Medium Bowl", - "description": "A medium bowl. Can be used to cook stuff in it.", - "price": 100 - }, - - "topaz": { - "type": "object", - "name": "Topaz", - "description": "A topaz gemstome, it's quite pretty.", - "price": 350 - }, - - "beryl": { - "type": "object", - "name": "Beryl", - "description": "Beryl gemstone, it's quite pretty.", - "price": 650 - }, - - "lapislazuli": { - "type": "object", - "name": "Lapis Lazuli", - "description": "A semi-precious stone, it's quite pretty.", - "price": 800 - }, - - "citrine": { - "type": "object", - "name": "Citrine", - "description": "It's rather shiny and nice to hold.", - "price": 1100 - }, - - "taaffeite": { - "type": "object", - "name": "Taaffeite", - "description": "A nice purple gemstone that is somewhat valuable I guess.", - "price": 1220 - }, - - "ruby": { - "type": "object", - "name": "Ruby", - "description": "A very nice gemstone that can be used to made rings or pendants.", - "price": 1300 - }, - - "peridot": { - "type": "object", - "name": "Peridot", - "description": "A nice green gemstone that is somewhat valuable I guess.", - "price": 1300 - }, - - "opal": { - "type": "object", - "name": "Opal", - "description": "A nice gemstone that is somewhat valuable I guess.", - "price": 1300 - }, - - "emerald": { - "type": "object", - "name": "Emerald", - "description": "A very nice gemstone that can be used to made rings or pendants.", - "price": 1400 - }, - - "amethyst": { - "type": "object", - "name": "Amethyst", - "description": "A nice purple gemstone that is somewhat valuable I guess.", - "price": 1500 - }, - - "bluelily": { - "type": "object", - "name": "Blue Lily", - "description": "A blue lily, a flower that can be used for crafting stuff.", - "price": 100 - }, - - "stew": { - "type": "object", - "name": "Tomato Stew", - "description": "A stew composed of tomato, mushrooms, and a bowl.", - "edible": true, - "mediumBowl": true, - "plugin": "healingitem", - "healAmount": 500, - "price": 600 - }, - - "stew2": { - "type": "object", - "name": "Corn Stew", - "description": "A very filling stew, possibly the best stew currently available.", - "edible": true, - "mediumBowl": true, - "plugin": "healingitem", - "healAmount": 800, - "price": 900 - }, - - "mushroom1": { - "type": "object", - "name": "Shiitake", - "description": "A mushroom that can be used for cooking.", - "price": 250 - }, - - "mushroom2": { - "type": "object", - "name": "Russula", - "description": "A mushroom that can be used for cooking.", - "price": 250 - }, - - "mushroom3": { - "type": "object", - "name": "Kuriositas", - "description": "A mushroom that can be used for cooking.", - "price": 250 - }, - - "mushroom4": { - "type": "object", - "name": "Matsutake", - "description": "A mushroom that can be used for cooking.", - "price": 250 - }, - - "mushroom5": { - "type": "object", - "name": "Cortinarius", - "description": "A mushroom that can be used for cooking.", - "price": 250 - }, - - "mushroom6": { - "type": "object", - "name": "Violet Cort", - "description": "A mushroom that can be used for cooking.", - "price": 250 - }, - - "hilt1": { - "type": "object", - "name": "Hilt", - "description": "May be used with certain metals to produce a sword.", - "price": 1000 - }, - - "hilt2": { - "type": "object", - "name": "Hilt", - "description": "May be used with certain metals to produce a sword.", - "price": 1000 - }, - - "ratpet": { - "type": "pet", - "name": "Rat Pet", - "pet": "rat", - "description": "A little cute rat that follows you around.", - "price": 1000 - }, - - "rathatpet": { - "type": "pet", - "name": "Rat Hat Pet", - "pet": "rathat", - "description": "A little cute rat with a little cute hat that follows you around.", - "price": 1000 - }, - - "leatherboots": { - "type": "boots", - "name": "Leather Boots", - "price": 150, - "attackStats": { - "crush": 1, - "slash": 2, - "stab": 1, - "archery": 0, - "magic": -4 - }, - "defenseStats": { - "crush": 2, - "slash": 3, - "stab": 1, - "archery": 0, - "magic": -4 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 0, - "magic": 0 - } - }, - - "steelboots": { - "type": "boots", - "name": "Steel Boots", - "price": 3500, - "attackStats": { - "crush": 6, - "slash": 7, - "stab": 4, - "archery": 0, - "magic": -6 - }, - "defenseStats": { - "crush": 7, - "slash": 12, - "stab": 6, - "archery": 0, - "magic": -5 - }, - "bonuses": { - "accuracy": 3, - "strength": 5, - "archery": 0, - "magic": 0 - } - }, - - "goldboots": { - "type": "boots", - "name": "Golden Boots", - "price": 4500, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 12 - }, - "defenseStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 8 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 6 - } - }, + "refinedsapphirechestplate": { + "type": "chestplate", + "name": "Refined Sapphire Chestplate", + "price": 200, + "skill": "defense", + "level": 43, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 5, + "archery": 8, + "magic": 5 + }, + "defenseStats": { + "crush": 6, + "slash": 7, + "stab": 4, + "archery": 10, + "magic": 7 + }, + "bonuses": { + "accuracy": 2, + "strength": 1, + "archery": 8, + "magic": 5 + } + }, + "amethystchestplate": { + "type": "chestplate", + "name": "Amethyst Chestplate", + "price": 200, + "skill": "defense", + "level": 35, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 7, + "magic": 5 + }, + "defenseStats": { + "crush": 4, + "slash": 4, + "stab": 3, + "archery": 10, + "magic": 8 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 7, + "magic": 5 + } + }, + "midnightamethystchestplate": { + "type": "chestplate", + "name": "Midnight Amethyst Chestplate", + "price": 200, + "skill": "defense", + "level": 37, + "attackStats": { + "crush": 4, + "slash": 4, + "stab": 4, + "archery": 8, + "magic": 6 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 4, + "archery": 12, + "magic": 9 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 8, + "magic": 6 + } + }, + "rubychestplate": { + "type": "chestplate", + "name": "Ruby Chestplate", + "price": 200, + "skill": "defense", + "level": 39, + "attackStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 9, + "magic": 7 + }, + "defenseStats": { + "crush": 6, + "slash": 6, + "stab": 5, + "archery": 14, + "magic": 10 + }, + "bonuses": { + "accuracy": 4, + "strength": 4, + "archery": 9, + "magic": 7 + } + }, + "hellkeeperchestplate": { + "type": "chestplate", + "name": "Hellkeeper Chestplate", + "price": 100, + "skill": "defense", + "level": 49, + "attackStats": { + "crush": 8, + "slash": 6, + "stab": 6, + "archery": -4, + "magic": -6 + }, + "defenseStats": { + "crush": 26, + "slash": 30, + "stab": 17, + "archery": -27, + "magic": -24 + }, + "bonuses": { + "accuracy": 14, + "strength": 26, + "archery": -12, + "magic": -16 + } + }, + "sentinelchestplate": { + "type": "chestplate", + "name": "Sentinel Chestplate", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 5, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 18, + "slash": 14, + "stab": 15, + "archery": 9, + "magic": -12 + }, + "bonuses": { + "accuracy": 8, + "strength": 10, + "archery": -4, + "magic": -7 + } + }, + "paladinchestplate": { + "type": "chestplate", + "name": "Paladin Chestplate", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 5, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 18, + "slash": 14, + "stab": 15, + "archery": 9, + "magic": -12 + }, + "bonuses": { + "accuracy": 8, + "strength": 10, + "archery": -4, + "magic": -7 + } + }, + "samuraichestplate": { + "type": "chestplate", + "name": "Samurai Chestplate", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 5, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 18, + "slash": 14, + "stab": 15, + "archery": 9, + "magic": -12 + }, + "bonuses": { + "accuracy": 8, + "strength": 10, + "archery": -4, + "magic": -7 + } + }, + "knightchestplate": { + "type": "chestplate", + "name": "Knight Chestplate", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 5, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 18, + "slash": 14, + "stab": 15, + "archery": 9, + "magic": -12 + }, + "bonuses": { + "accuracy": 8, + "strength": 10, + "archery": -4, + "magic": -7 + } + }, + "minitaurschest": { + "type": "chestplate", + "name": "Minitaur's Chest", + "price": 100, + "skill": "archery", + "level": 40, + "attackStats": { + "crush": 6, + "slash": 4, + "stab": 8, + "archery": 24, + "magic": 6 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 2, + "archery": 21, + "magic": 16 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 12, + "magic": 5 + } + }, + "scarabchest": { + "type": "chestplate", + "name": "Scarab's Chest", + "price": 100, + "skill": "archery", + "level": 35, + "attackStats": { + "crush": 4, + "slash": 5, + "stab": 6, + "archery": 21, + "magic": 8 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 3, + "archery": 13, + "magic": 7 + }, + "bonuses": { + "accuracy": 4, + "strength": 4, + "archery": 12, + "magic": 4 + } + }, + "conquerorchestplate": { + "type": "helmet", + "name": "Conqueror Chestplate", + "price": 100, + "skill": "defense", + "level": 55, + "attackStats": { + "crush": 7, + "slash": 13, + "stab": 10, + "archery": 8, + "magic": -18 + }, + "defenseStats": { + "crush": 18, + "slash": 30, + "stab": 22, + "archery": 13, + "magic": -15 + }, + "bonuses": { + "accuracy": 6, + "strength": 12, + "archery": 5, + "magic": 0 + } + }, + "leatherleggings": { + "type": "legplates", + "name": "Leather Leggings", + "price": 100, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "copperlegplates": { + "type": "legplates", + "name": "Copper Legplates", + "price": 100, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "tinlegplates": { + "type": "legplates", + "name": "Tin Legplates", + "price": 100, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": -2 + } + }, + "bronzelegplates": { + "type": "legplates", + "name": "Bronze Legplates", + "price": 100, + "skill": "defense", + "level": 5, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": -3 + } + }, + "ironlegplates": { + "type": "legplates", + "name": "Iron Legplates", + "price": 100, + "skill": "defense", + "level": 10, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": -4 + } + }, + "goldlegplates": { + "type": "legplates", + "name": "Gold Legplates", + "price": 100, + "skill": "defense", + "level": 20, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 6, + "slash": 7, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 3, + "archery": 0, + "magic": -5 + } + }, + "cobaltlegplates": { + "type": "legplates", + "name": "Cobalt Legplates", + "price": 200, + "skill": "defense", + "level": 15, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 0, + "magic": 4 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": -2 + } + }, + "nightlegplates": { + "type": "legplates", + "name": "Night Legplates", + "price": 200, + "skill": "defense", + "level": 25, + "attackStats": { + "crush": 3, + "slash": 6, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 8, + "slash": 11, + "stab": 6, + "archery": 4, + "magic": -4 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 0, + "magic": -3 + } + }, + "sapphirelegplates": { + "type": "legplates", + "name": "Sapphire Legplates", + "price": 200, + "skill": "defense", + "level": 33, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 5, + "magic": 3 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 2, + "archery": 7, + "magic": 6 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 5, + "magic": 3 + } + }, + "amethystlegplates": { + "type": "legplates", + "name": "Amethyst Legplates", + "price": 200, + "skill": "defense", + "level": 35, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 6, + "magic": 4 + }, + "defenseStats": { + "crush": 4, + "slash": 4, + "stab": 3, + "archery": 9, + "magic": 7 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 6, + "magic": 4 + } + }, + "midnightamethystlegplates": { + "type": "legplates", + "name": "Midnight Amethyst Legplates", + "price": 200, + "skill": "defense", + "level": 37, + "attackStats": { + "crush": 4, + "slash": 4, + "stab": 4, + "archery": 7, + "magic": 5 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 4, + "archery": 11, + "magic": 8 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 7, + "magic": 5 + } + }, + "rubylegplates": { + "type": "legplates", + "name": "Ruby Legplates", + "price": 200, + "skill": "defense", + "level": 39, + "attackStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 8, + "magic": 6 + }, + "defenseStats": { + "crush": 6, + "slash": 6, + "stab": 5, + "archery": 13, + "magic": 9 + }, + "bonuses": { + "accuracy": 4, + "strength": 4, + "archery": 8, + "magic": 6 + } + }, + "hellkeeperlegplates": { + "type": "legplates", + "name": "Hellkeeper Legplates", + "price": 200, + "skill": "defense", + "level": 49, + "attackStats": { + "crush": 5, + "slash": 7, + "stab": 8, + "archery": -5, + "magic": -5 + }, + "defenseStats": { + "crush": 18, + "slash": 25, + "stab": 15, + "archery": 0, + "magic": 4 + }, + "bonuses": { + "accuracy": 10, + "strength": 14, + "archery": -10, + "magic": -12 + } + }, + "sentinellegplates": { + "type": "legplates", + "name": "Sentinel Legplates", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 4, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 17, + "slash": 13, + "stab": 12, + "archery": 7, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 12, + "archery": -4, + "magic": -6 + } + }, + "paladinlegplates": { + "type": "legplates", + "name": "Paladin Legplates", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 4, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 17, + "slash": 13, + "stab": 12, + "archery": 7, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 12, + "archery": -4, + "magic": -6 + } + }, + "samurailegplates": { + "type": "legplates", + "name": "Samurai Legplates", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 4, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 17, + "slash": 13, + "stab": 12, + "archery": 7, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 12, + "archery": -4, + "magic": -6 + } + }, + "knightlegplates": { + "type": "legplates", + "name": "Knight Legplates", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 4, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 17, + "slash": 13, + "stab": 12, + "archery": 7, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 12, + "archery": -4, + "magic": -6 + } + }, + "refinedsapphirelegplates": { + "type": "legplates", + "name": "Refined Sapphire Legplates", + "price": 200, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 7, + "slash": 4, + "stab": 6, + "archery": -3, + "magic": -3 + }, + "defenseStats": { + "crush": 17, + "slash": 13, + "stab": 12, + "archery": 7, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 12, + "archery": -4, + "magic": -6 + } + }, + "wings": { + "type": "cape", + "name": "Wings", + "price": 200, + "skill": "defense", + "level": 15, + "attackStats": { + "crush": 3, + "slash": 2, + "stab": 4, + "archery": 2, + "magic": -8 + }, + "defenseStats": { + "crush": 6, + "slash": 4, + "stab": 5, + "archery": 7, + "magic": -10 + }, + "bonuses": { + "accuracy": 2, + "strength": 1, + "archery": 5, + "magic": -4 + } + }, + "wingsdark": { + "type": "cape", + "name": "Dark Wings", + "price": 200, + "skill": "defense", + "level": 45, + "attackStats": { + "crush": 9, + "slash": 12, + "stab": 14, + "archery": 22, + "magic": -18 + }, + "defenseStats": { + "crush": 16, + "slash": 14, + "stab": 15, + "archery": 24, + "magic": -30 + }, + "bonuses": { + "accuracy": 4, + "strength": 4, + "archery": 10, + "magic": -10 + } + }, + "bronzeboots": { + "type": "boots", + "name": "Bronze Boots", + "skill": "defense", + "level": 5, + "price": 100, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": -3 + } + }, + "ironboots": { + "type": "boots", + "name": "Iron Boots", + "skill": "defense", + "level": 10, + "price": 100, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": -5 + } + }, + "goldboots": { + "type": "boots", + "name": "Golden Boots", + "skill": "defense", + "level": 20, + "price": 200, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 8, + "slash": 7, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": -2, + "magic": -4 + } + }, + "leatherboots": { + "type": "boots", + "name": "Leather Boots", + "price": 150, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": -4 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 1, + "archery": 0, + "magic": -4 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "steelboots": { + "type": "boots", + "name": "Steel Boots", + "price": 3500, + "attackStats": { + "crush": 6, + "slash": 7, + "stab": 4, + "archery": 0, + "magic": -6 + }, + "defenseStats": { + "crush": 7, + "slash": 12, + "stab": 6, + "archery": 0, + "magic": -5 + }, + "bonuses": { + "accuracy": 3, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + "swiftboots": { + "type": "boots", + "name": "Swift Boots", + "price": 7500, + "movementModifier": 0.95, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 0, + "magic": 4 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 1, + "archery": 0, + "magic": 4 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 1 + } + }, + "lavaboots": { + "type": "boots", + "name": "Lava Boots", + "price": 2250, + "skill": "defense", + "level": 28, + "attackStats": { + "crush": 9, + "slash": 12, + "stab": 10, + "archery": 0, + "magic": 3 + }, + "defenseStats": { + "crush": 12, + "slash": 12, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 8, + "strength": 4, + "archery": 8, + "magic": 0 + } + }, + "magmaboots": { + "type": "boots", + "name": "Magma Boots", + "price": 2350, + "skill": "defense", + "level": 35, + "attackStats": { + "crush": 13, + "slash": 17, + "stab": 12, + "archery": 5, + "magic": -3 + }, + "defenseStats": { + "crush": 15, + "slash": 12, + "stab": 14, + "archery": 4, + "magic": -5 + }, + "bonuses": { + "accuracy": 10, + "strength": 6, + "archery": 8, + "magic": 0 + } + }, + "nightboots": { + "type": "boots", + "name": "Night Boots", + "price": 1850, + "skill": "defense", + "level": 25, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 7, + "stab": 8, + "archery": 4, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + "sapphireboots": { + "type": "boots", + "name": "Sapphire Boots", + "price": 1850, + "skill": "defense", + "level": 33, + "attackStats": { + "crush": 1, + "slash": 0, + "stab": 1, + "archery": 4, + "magic": 2 + }, + "defenseStats": { + "crush": 1, + "slash": 0, + "stab": 1, + "archery": 6, + "magic": 3 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 2, + "magic": 1 + } + }, + "refinedsapphireboots": { + "type": "boots", + "name": "Refined Sapphire Boots", + "price": 1850, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 1, + "slash": 0, + "stab": 1, + "archery": 4, + "magic": 2 + }, + "defenseStats": { + "crush": 1, + "slash": 0, + "stab": 1, + "archery": 6, + "magic": 3 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 2, + "magic": 1 + } + }, + "amethystboots": { + "type": "boots", + "name": "Amethyst Boots", + "price": 1850, + "skill": "defense", + "level": 35, + "attackStats": { + "crush": 2, + "slash": 1, + "stab": 2, + "archery": 5, + "magic": 3 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 2, + "archery": 8, + "magic": 4 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 3, + "magic": 2 + } + }, + "midnightamethystboots": { + "type": "boots", + "name": "Midnight Amethyst Boots", + "price": 1850, + "skill": "defense", + "level": 37, + "attackStats": { + "crush": 3, + "slash": 2, + "stab": 3, + "archery": 6, + "magic": 4 + }, + "defenseStats": { + "crush": 3, + "slash": 2, + "stab": 3, + "archery": 10, + "magic": 5 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 4, + "magic": 3 + } + }, + "rubyboots": { + "type": "boots", + "name": "Ruby Boots", + "price": 1850, + "skill": "defense", + "level": 39, + "attackStats": { + "crush": 4, + "slash": 3, + "stab": 4, + "archery": 7, + "magic": 5 + }, + "defenseStats": { + "crush": 4, + "slash": 3, + "stab": 4, + "archery": 12, + "magic": 6 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 5, + "magic": 4 + } + }, + "hellkeeperboots": { + "type": "boots", + "name": "Hellkeeper Boots", + "price": 1850, + "skill": "defense", + "level": 45, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": -2, + "magic": -3 + }, + "defenseStats": { + "crush": 9, + "slash": 12, + "stab": 8, + "archery": -12, + "magic": -10 + }, + "bonuses": { + "accuracy": 6, + "strength": 8, + "archery": -8, + "magic": -10 + } + }, + "sentinelboots": { + "type": "boots", + "name": "Sentinel Boots", + "price": 1850, + "skill": "defense", + "level": 36, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": -2, + "magic": -2 + }, + "defenseStats": { + "crush": 12, + "slash": 9, + "stab": 5, + "archery": 4, + "magic": -4 + }, + "bonuses": { + "accuracy": 4, + "strength": 7, + "archery": -5, + "magic": -8 + } + }, + "bronzering": { + "type": "ring", + "name": "Bronze Ring", + "price": 100, + "skill": "defense", + "level": 20, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 1, + "magic": 1 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 1, + "magic": 1 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 1 + } + }, + "ironring": { + "type": "ring", + "name": "Iron Ring", + "price": 100, + "skill": "defense", + "level": 10, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 1, + "magic": 1 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 2, + "magic": 2 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 1 + } + }, + "ringbronzeberyl": { + "type": "ring", + "name": "Beryl Gold Ring", + "price": 1000, + "skill": "accuracy", + "level": 20, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 1, + "magic": 1 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 3, + "magic": 3 + }, + "bonuses": { + "accuracy": 5, + "strength": 3, + "archery": 1, + "magic": 1 + } + }, + "ringbronzeemerald": { + "type": "ring", + "name": "Emerald Bronze Ring", + "price": 1000, + "skill": "archery", + "level": 20, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 4, + "archery": 5, + "magic": 2 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 7, + "archery": 5, + "magic": 0 + }, + "bonuses": { + "accuracy": 4, + "strength": 1, + "archery": 2, + "magic": 2 + } + }, + "ringbronzepythar": { + "type": "ring", + "name": "Pythar Bronze Ring", + "price": 1000, + "skill": "defense", + "level": 20, + "attackStats": { + "crush": 4, + "slash": 3, + "stab": 3, + "archery": 1, + "magic": 1 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 3, + "magic": 3 + }, + "bonuses": { + "accuracy": 1, + "strength": 4, + "archery": 1, + "magic": 1 + } + }, + "ringbronzeruby": { + "type": "ring", + "name": "Ruby Bronze Ring", + "price": 1000, + "skill": "strength", + "level": 20, + "attackStats": { + "crush": 3, + "slash": 4, + "stab": 4, + "archery": 1, + "magic": 1 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 2, + "archery": 2, + "magic": 2 + }, + "bonuses": { + "accuracy": 3, + "strength": 5, + "archery": 1, + "magic": 1 + } + }, + "ringbronzesapphire": { + "type": "ring", + "name": "Sapphire Bronze Ring", + "price": 1000, + "skill": "magic", + "level": 20, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 2, + "archery": 1, + "magic": 5 + }, + "defenseStats": { + "crush": 3, + "slash": 4, + "stab": 2, + "archery": 1, + "magic": 5 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 4 + } + }, + "ringsilverberyl": { + "type": "ring", + "name": "Beryl Silver Ring", + "price": 2500, + "skill": "accuracy", + "level": 30, + "attackStats": { + "crush": 7, + "slash": 6, + "stab": 6, + "archery": 3, + "magic": 3 + }, + "defenseStats": { + "crush": 4, + "slash": 4, + "stab": 6, + "archery": 3, + "magic": 3 + }, + "bonuses": { + "accuracy": 8, + "strength": 3, + "archery": 3, + "magic": 3 + } + }, + "ringsilveremerald": { + "type": "ring", + "name": "Emerald Silver Ring", + "price": 2500, + "skill": "archery", + "level": 40, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 6, + "magic": 2 + }, + "defenseStats": { + "crush": 0, + "slash": 3, + "stab": 7, + "archery": 21, + "magic": 0 + }, + "bonuses": { + "accuracy": 5, + "strength": 1, + "archery": 1, + "magic": 3 + } + }, + "ringsilverpythar": { + "type": "ring", + "name": "Pythar Silver Ring", + "price": 2500, + "skill": "defense", + "level": 30, + "attackStats": { + "crush": 7, + "slash": 5, + "stab": 3, + "archery": 3, + "magic": 3 + }, + "defenseStats": { + "crush": 8, + "slash": 8, + "stab": 8, + "archery": 5, + "magic": 5 + }, + "bonuses": { + "accuracy": 3, + "strength": 7, + "archery": 3, + "magic": 3 + } + }, + "ringsilverruby": { + "type": "ring", + "name": "Ruby Silver Ring", + "price": 2500, + "skill": "strength", + "level": 30, + "attackStats": { + "crush": 7, + "slash": 6, + "stab": 5, + "archery": 3, + "magic": 3 + }, + "defenseStats": { + "crush": 6, + "slash": 6, + "stab": 5, + "archery": 4, + "magic": 3 + }, + "bonuses": { + "accuracy": 5, + "strength": 8, + "archery": 3, + "magic": 3 + } + }, + "ringsilversapphire": { + "type": "ring", + "name": "Sapphire Silver Ring", + "price": 2500, + "skill": "defense", + "level": 30, + "attackStats": { + "crush": 5, + "slash": 4, + "stab": 4, + "archery": 3, + "magic": 8 + }, + "defenseStats": { + "crush": 4, + "slash": 4, + "stab": 4, + "archery": 3, + "magic": 8 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 3, + "magic": 8 + } + }, + "ringgoldberyl": { + "type": "ring", + "name": "Beryl Gold Ring", + "price": 3650, + "skill": "accuracy", + "level": 50, + "attackStats": { + "crush": 9, + "slash": 8, + "stab": 8, + "archery": 6, + "magic": 6 + }, + "defenseStats": { + "crush": 7, + "slash": 10, + "stab": 10, + "archery": 7, + "magic": 7 + }, + "bonuses": { + "accuracy": 12, + "strength": 6, + "archery": 6, + "magic": 6 + } + }, + "ringgoldemerald": { + "type": "ring", + "name": "Emerald Gold Ring", + "price": 3650, + "skill": "archery", + "level": 50, + "attackStats": { + "crush": 6, + "slash": 7, + "stab": 9, + "archery": 12, + "magic": 6 + }, + "defenseStats": { + "crush": 7, + "slash": 8, + "stab": 6, + "archery": 12, + "magic": 6 + }, + "bonuses": { + "accuracy": 8, + "strength": 6, + "archery": 7, + "magic": 6 + } + }, + "ringgoldpythar": { + "type": "ring", + "name": "Pythar Gold Ring", + "price": 3650, + "skill": "defense", + "level": 50, + "attackStats": { + "crush": 11, + "slash": 8, + "stab": 7, + "archery": 6, + "magic": 6 + }, + "defenseStats": { + "crush": 12, + "slash": 12, + "stab": 12, + "archery": 10, + "magic": 9 + }, + "bonuses": { + "accuracy": 6, + "strength": 9, + "archery": 6, + "magic": 6 + } + }, + "ringgoldruby": { + "type": "ring", + "name": "Ruby Gold Ring", + "price": 3650, + "skill": "strength", + "level": 50, + "attackStats": { + "crush": 7, + "slash": 10, + "stab": 9, + "archery": 6, + "magic": 6 + }, + "defenseStats": { + "crush": 8, + "slash": 6, + "stab": 7, + "archery": 6, + "magic": 6 + }, + "bonuses": { + "accuracy": 8, + "strength": 12, + "archery": 6, + "magic": 6 + } + }, + "ringgoldsapphire": { + "type": "ring", + "name": "Sapphire Gold Ring", + "price": 3650, + "skill": "magic", + "level": 50, + "attackStats": { + "crush": 7, + "slash": 9, + "stab": 7, + "archery": 6, + "magic": 12 + }, + "defenseStats": { + "crush": 7, + "slash": 6, + "stab": 8, + "archery": 6, + "magic": 12 + }, + "bonuses": { + "accuracy": 6, + "strength": 6, + "archery": 6, + "magic": 12 + } + }, + "pendantbronzeberyl": { + "type": "pendant", + "name": "Beryl Gold Pendant", + "price": 1500, + "skill": "accuracy", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 1, + "magic": 1 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 4, + "archery": 2, + "magic": 2 + }, + "bonuses": { + "accuracy": 5, + "strength": 1, + "archery": 1, + "magic": 1 + } + }, + "pendantbronzeemerald": { + "type": "pendant", + "name": "Emerald Bronze Pendant", + "price": 1500, + "skill": "archery", + "level": 20, + "attackStats": { + "crush": 0, + "slash": 3, + "stab": 2, + "archery": 5, + "magic": 0 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 5, + "magic": 2 + }, + "bonuses": { + "accuracy": 3, + "strength": 2, + "archery": 4, + "magic": 1 + } + }, + "pendantbronzepythar": { + "type": "pendant", + "name": "Pythar Bronze Pendant", + "price": 1500, + "skill": "defense", + "level": 20, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 3, + "magic": 3 + }, + "bonuses": { + "accuracy": 1, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + "pendantbronzeruby": { + "type": "pendant", + "name": "Ruby Bronze Pendant", + "price": 1500, + "skill": "strength", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 3, + "archery": 1, + "magic": 1 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 2, + "magic": 2 + }, + "bonuses": { + "accuracy": 3, + "strength": 5, + "archery": 1, + "magic": 1 + } + }, + "pendantbronzesapphire": { + "type": "pendant", + "name": "Sapphire Bronze Pendant", + "price": 1500, + "skill": "magic", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 1, + "magic": 5 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 1, + "magic": 5 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 4 + } + }, + "pendantsilverberyl": { + "type": "pendant", + "name": "Beryl Silver Pendant", + "price": 2500, + "skill": "accuracy", + "level": 30, + "attackStats": { + "crush": 6, + "slash": 5, + "stab": 6, + "archery": 2, + "magic": 2 + }, + "defenseStats": { + "crush": 3, + "slash": 4, + "stab": 4, + "archery": 2, + "magic": 1 + }, + "bonuses": { + "accuracy": 8, + "strength": 3, + "archery": 2, + "magic": 2 + } + }, + "pendantsilveremerald": { + "type": "pendant", + "name": "Emerald Silver Pendant", + "price": 2500, + "skill": "archery", + "level": 40, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 4, + "archery": 8, + "magic": 1 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 4, + "archery": 8, + "magic": 2 + }, + "bonuses": { + "accuracy": 4, + "strength": 2, + "archery": 6, + "magic": 2 + } + }, + "pendantsilverpythar": { + "type": "pendant", + "name": "Pythar Silver Pendant", + "price": 2500, + "skill": "defense", + "level": 30, + "attackStats": { + "crush": 5, + "slash": 3, + "stab": 2, + "archery": 3, + "magic": 3 + }, + "defenseStats": { + "crush": 8, + "slash": 8, + "stab": 8, + "archery": 5, + "magic": 5 + }, + "bonuses": { + "accuracy": 3, + "strength": 6, + "archery": 3, + "magic": 3 + } + }, + "pendantsilverruby": { + "type": "pendant", + "name": "Ruby Silver Pendant", + "price": 2500, + "skill": "strength", + "level": 30, + "attackStats": { + "crush": 6, + "slash": 6, + "stab": 6, + "archery": 3, + "magic": 3 + }, + "defenseStats": { + "crush": 6, + "slash": 6, + "stab": 5, + "archery": 4, + "magic": 3 + }, + "bonuses": { + "accuracy": 4, + "strength": 8, + "archery": 3, + "magic": 3 + } + }, + "pendantsilversapphire": { + "type": "pendant", + "name": "Sapphire Silver Pendant", + "price": 2500, + "skill": "defense", + "level": 30, + "attackStats": { + "crush": 4, + "slash": 3, + "stab": 2, + "archery": 3, + "magic": 8 + }, + "defenseStats": { + "crush": 3, + "slash": 4, + "stab": 4, + "archery": 3, + "magic": 8 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 3, + "magic": 8 + } + }, + "pendantgoldberyl": { + "type": "pendant", + "name": "Beryl Gold Pendant", + "price": 3650, + "skill": "accuracy", + "level": 50, + "attackStats": { + "crush": 6, + "slash": 7, + "stab": 9, + "archery": 6, + "magic": 6 + }, + "defenseStats": { + "crush": 4, + "slash": 9, + "stab": 7, + "archery": 6, + "magic": 6 + }, + "bonuses": { + "accuracy": 12, + "strength": 1, + "archery": 2, + "magic": 2 + } + }, + "pendantgoldemerald": { + "type": "pendant", + "name": "Emerald Gold Pendant", + "price": 3650, + "skill": "archery", + "level": 50, + "attackStats": { + "crush": 3, + "slash": 6, + "stab": 6, + "archery": 12, + "magic": 3 + }, + "defenseStats": { + "crush": 5, + "slash": 4, + "stab": 3, + "archery": 12, + "magic": 3 + }, + "bonuses": { + "accuracy": 8, + "strength": 5, + "archery": 7, + "magic": 2 + } + }, + "pendantgoldpythar": { + "type": "pendant", + "name": "Pythar Gold Pendant", + "price": 3650, + "skill": "defense", + "level": 50, + "attackStats": { + "crush": 10, + "slash": 7, + "stab": 6, + "archery": 6, + "magic": 6 + }, + "defenseStats": { + "crush": 12, + "slash": 12, + "stab": 12, + "archery": 8, + "magic": 9 + }, + "bonuses": { + "accuracy": 6, + "strength": 8, + "archery": 6, + "magic": 6 + } + }, + "pendantgoldruby": { + "type": "pendant", + "name": "Ruby Gold Pendant", + "price": 3650, + "skill": "strength", + "level": 50, + "attackStats": { + "crush": 8, + "slash": 8, + "stab": 8, + "archery": 6, + "magic": 6 + }, + "defenseStats": { + "crush": 6, + "slash": 7, + "stab": 7, + "archery": 6, + "magic": 6 + }, + "bonuses": { + "accuracy": 6, + "strength": 12, + "archery": 6, + "magic": 6 + } + }, + "pendantgoldsapphire": { + "type": "pendant", + "name": "Sapphire Gold Pendant", + "price": 3650, + "skill": "magic", + "level": 50, + "attackStats": { + "crush": 6, + "slash": 8, + "stab": 7, + "archery": 6, + "magic": 12 + }, + "defenseStats": { + "crush": 6, + "slash": 6, + "stab": 6, + "archery": 6, + "magic": 12 + }, + "bonuses": { + "accuracy": 6, + "strength": 6, + "archery": 6, + "magic": 12 + } + }, + "braceletbronzeberyl": { + "type": "ring", + "name": "Beryl Bronze Bracelet", + "price": 1000, + "skill": "accuracy", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 2, + "stab": 2, + "archery": 2, + "magic": 2 + }, + "defenseStats": { + "crush": 2, + "slash": 1, + "stab": 3, + "archery": 1, + "magic": 3 + }, + "bonuses": { + "accuracy": 5, + "strength": 1, + "archery": 1, + "magic": 1 + } + }, + "braceletbronzeemerald": { + "type": "ring", + "name": "Emerald Bronze Bracelet", + "price": 1000, + "skill": "archery", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 5, + "magic": 1 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 2, + "archery": 5, + "magic": 0 + }, + "bonuses": { + "accuracy": 3, + "strength": 1, + "archery": 3, + "magic": 2 + } + }, + "braceletbronzepythar": { + "type": "ring", + "name": "Pythar Bronze Bracelet", + "price": 1000, + "skill": "defense", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 1 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 3, + "magic": 3 + }, + "bonuses": { + "accuracy": 1, + "strength": 3, + "archery": 1, + "magic": 2 + } + }, + "braceletbronzeruby": { + "type": "ring", + "name": "Ruby Bronze Bracelet", + "price": 1000, + "skill": "strength", + "level": 20, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 4, + "archery": 1, + "magic": 1 + }, + "bonuses": { + "accuracy": 2, + "strength": 5, + "archery": 1, + "magic": 2 + } + }, + "braceletbronzesapphire": { + "type": "ring", + "name": "Sapphire Bronze Bracelet", + "price": 1000, + "skill": "magic", + "level": 20, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 1, + "archery": 1, + "magic": 5 + }, + "defenseStats": { + "crush": 1, + "slash": 3, + "stab": 1, + "archery": 1, + "magic": 5 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 4 + } + }, + "braceletsilverberyl": { + "type": "ring", + "name": "Beryl Silver Bracelet", + "price": 2500, + "skill": "accuracy", + "level": 30, + "attackStats": { + "crush": 6, + "slash": 5, + "stab": 6, + "archery": 3, + "magic": 3 + }, + "defenseStats": { + "crush": 5, + "slash": 4, + "stab": 3, + "archery": 3, + "magic": 3 + }, + "bonuses": { + "accuracy": 8, + "strength": 3, + "archery": 3, + "magic": 3 + } + }, + "braceletsilveremerald": { + "type": "ring", + "name": "Emerald Silver Bracelet", + "price": 2500, + "skill": "archery", + "level": 30, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 4, + "archery": 8, + "magic": 2 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 8, + "magic": 2 + }, + "bonuses": { + "accuracy": 5, + "strength": 3, + "archery": 6, + "magic": 3 + } + }, + "braceletsilverpythar": { + "type": "ring", + "name": "Pythar Silver Bracelet", + "price": 2500, + "skill": "defense", + "level": 30, + "attackStats": { + "crush": 4, + "slash": 4, + "stab": 3, + "archery": 3, + "magic": 2 + }, + "defenseStats": { + "crush": 8, + "slash": 8, + "stab": 8, + "archery": 4, + "magic": 5 + }, + "bonuses": { + "accuracy": 1, + "strength": 4, + "archery": 1, + "magic": 2 + } + }, + "braceletsilverruby": { + "type": "ring", + "name": "Ruby Silver Bracelet", + "price": 2500, + "skill": "strength", + "level": 30, + "attackStats": { + "crush": 4, + "slash": 6, + "stab": 5, + "archery": 3, + "magic": 3 + }, + "defenseStats": { + "crush": 4, + "slash": 4, + "stab": 4, + "archery": 4, + "magic": 4 + }, + "bonuses": { + "accuracy": 4, + "strength": 8, + "archery": 3, + "magic": 3 + } + }, + "braceletsilversapphire": { + "type": "ring", + "name": "Sapphire Silver Bracelet", + "price": 2500, + "skill": "defense", + "level": 30, + "attackStats": { + "crush": 3, + "slash": 6, + "stab": 3, + "archery": 3, + "magic": 8 + }, + "defenseStats": { + "crush": 3, + "slash": 5, + "stab": 3, + "archery": 3, + "magic": 8 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 1, + "magic": 6 + } + }, + "braceletgoldberyl": { + "type": "ring", + "name": "Beryl Gold Bracelet", + "price": 2500, + "skill": "accuracy", + "level": 50, + "attackStats": { + "crush": 8, + "slash": 6, + "stab": 9, + "archery": 6, + "magic": 6 + }, + "defenseStats": { + "crush": 9, + "slash": 8, + "stab": 9, + "archery": 7, + "magic": 6 + }, + "bonuses": { + "accuracy": 12, + "strength": 6, + "archery": 6, + "magic": 6 + } + }, + "braceletgoldemerald": { + "type": "ring", + "name": "Emerald Gold Bracelet", + "price": 3650, + "skill": "archery", + "level": 50, + "attackStats": { + "crush": 5, + "slash": 4, + "stab": 7, + "archery": 12, + "magic": 3 + }, + "defenseStats": { + "crush": 5, + "slash": 3, + "stab": 2, + "archery": 12, + "magic": 2 + }, + "bonuses": { + "accuracy": 8, + "strength": 6, + "archery": 7, + "magic": 3 + } + }, + "braceletgoldpythar": { + "type": "ring", + "name": "Pythar Gold Bracelet", + "price": 3650, + "skill": "defense", + "level": 50, + "attackStats": { + "crush": 6, + "slash": 6, + "stab": 6, + "archery": 6, + "magic": 6 + }, + "defenseStats": { + "crush": 12, + "slash": 12, + "stab": 12, + "archery": 6, + "magic": 7 + }, + "bonuses": { + "accuracy": 3, + "strength": 5, + "archery": 3, + "magic": 3 + } + }, + "braceletgoldruby": { + "type": "ring", + "name": "Ruby Gold Bracelet", + "price": 3650, + "skill": "strength", + "level": 50, + "attackStats": { + "crush": 7, + "slash": 11, + "stab": 5, + "archery": 4, + "magic": 2 + }, + "defenseStats": { + "crush": 6, + "slash": 6, + "stab": 6, + "archery": 5, + "magic": 5 + }, + "bonuses": { + "accuracy": 6, + "strength": 12, + "archery": 4, + "magic": 5 + } + }, + "braceletgoldsapphire": { + "type": "ring", + "name": "Sapphire Gold Bracelet", + "price": 3650, + "skill": "magic", + "level": 50, + "attackStats": { + "crush": 5, + "slash": 8, + "stab": 7, + "archery": 4, + "magic": 12 + }, + "defenseStats": { + "crush": 3, + "slash": 5, + "stab": 3, + "archery": 3, + "magic": 12 + }, + "bonuses": { + "accuracy": 3, + "strength": 3, + "archery": 1, + "magic": 8 + } + }, + "woodenbow": { + "type": "weaponarcher", + "name": "Wooden Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100, + "attackStats": { + "crush": 1, + "slash": 2, + "stab": 1, + "archery": 2, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 3, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 2, + "magic": -1 + } + }, - "swiftboots": { - "type": "boots", - "name": "Swift Boots", - "price": 7500, - "movementModifier": 0.95, - "attackStats": { - "crush": 1, - "slash": 2, - "stab": 1, - "archery": 0, - "magic": 4 - }, - "defenseStats": { - "crush": 2, - "slash": 3, - "stab": 1, - "archery": 0, - "magic": 4 - }, - "bonuses": { - "accuracy": 1, - "strength": 1, - "archery": 1, - "magic": 1 - } - }, + "bowbamboo": { + "type": "weaponarcher", + "name": "Bamboo Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowdeuteranom": { + "type": "weaponarcher", + "name": "Deuteranom Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "boweggplant": { + "type": "weaponarcher", + "name": "Wooden Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowfleshflinger": { + "type": "weaponarcher", + "name": "Flesh Flinger Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowiceicemaybe": { + "type": "weaponarcher", + "name": "Ice Ice Maybe", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowillmuscal": { + "type": "weaponarcher", + "name": "Ill Muscal Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowkelpysburden": { + "type": "weaponarcher", + "name": "Kelpy's Burden", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowmagiccool": { + "type": "weaponarcher", + "name": "Cool Magic Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowmagichot": { + "type": "weaponarcher", + "name": "Hot Magic Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowmoon": { + "type": "weaponarcher", + "name": "Moon Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowocean": { + "type": "weaponarcher", + "name": "Ocean Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowpine": { + "type": "weaponarcher", + "name": "Pine Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowsky": { + "type": "weaponarcher", + "name": "Sky Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowsun": { + "type": "weaponarcher", + "name": "Sun Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowswineslayer": { + "type": "weaponarcher", + "name": "Swine Slayer Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "bowwillowtwine": { + "type": "weaponarcher", + "name": "Willow Twine Bow", + "weaponType": "bow", + "twoHanded": true, + "price": 100 + }, + "magichamberge": { + "type": "weaponmagic", + "name": "Magic Hamberge", + "skill": "magic", + "level": 20, + "price": 200, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 4, + "archery": 2, + "magic": 8 + }, + "defenseStats": { + "crush": 2, + "slash": 3, + "stab": 1, + "archery": 1, + "magic": 6 + }, + "bonuses": { + "accuracy": 1, + "strength": 2, + "archery": 0, + "magic": 4 + } + }, - "lavaboots": { - "type": "boots", - "name": "Lava Boots", - "price": 21500, - "attackStats": { - "crush": 9, - "slash": 12, - "stab": 10, - "archery": 0, - "magic": 3 - }, - "defenseStats": { - "crush": 12, - "slash": 12, - "stab": 12, - "archery": 0, - "magic": 0 - }, - "bonuses": { - "accuracy": 8, - "strength": 4, - "archery": 8, - "magic": 0 + "aquastaff": { + "type": "weaponmagic", + "name": "Aqua Staff", + "weaponType": "staff", + "price": 1500, + "manaCost": 2, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 4, + "archery": 0, + "magic": 21 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 12 + }, + "attackRange": 9, + "projectileName": "purplebolt" + }, + "lightningstaff": { + "type": "weaponmagic", + "name": "Lightning Staff", + "weaponType": "staff", + "skill": "magic", + "price": 7500, + "manaCost": 4, + "level": 10, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 4, + "archery": 0, + "magic": 28 + }, + "bonuses": { + "accuracy": 5, + "strength": 0, + "archery": 0, + "magic": 19 + }, + "attackRange": 9, + "projectileName": "yellowlightning" + }, + "naturestaff": { + "type": "weaponmagic", + "name": "Nature Staff", + "weaponType": "staff", + "skill": "magic", + "price": 12500, + "manaCost": 6, + "level": 17, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 4, + "archery": 0, + "magic": 36 + }, + "bonuses": { + "accuracy": 9, + "strength": 0, + "archery": 0, + "magic": 26 + }, + "attackRange": 9, + "projectileName": "greenbolt" + }, + "firestaff": { + "type": "weaponmagic", + "name": "Fire Staff", + "weaponType": "staff", + "skill": "magic", + "price": 22500, + "manaCost": 7, + "level": 25, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 4, + "archery": 0, + "magic": 44 + }, + "bonuses": { + "accuracy": 10, + "strength": 0, + "archery": 0, + "magic": 38 + }, + "attackRange": 9, + "projectileName": "fireball" + }, + "cursestaff": { + "type": "weaponmagic", + "name": "Ice Staff", + "weaponType": "staff", + "skill": "magic", + "price": 40000, + "manaCost": 9, + "level": 35, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 4, + "archery": 0, + "magic": 51 + }, + "bonuses": { + "accuracy": 10, + "strength": 0, + "archery": 0, + "magic": 48 + }, + "attackRange": 9, + "projectileName": "terror" + }, + "bluemoonstaff": { + "type": "weapon", + "name": "Bluemoon Staff", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "demonicstaff": { + "type": "weapon", + "name": "Demonic Staff", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "sunshinestaff": { + "type": "weapon", + "name": "Sunshine Staff", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "witchsstaffancient": { + "type": "weapon", + "name": "Ancient Witch's Staff", + "weaponType": "staff", + "price": 5000, + "skill": "magic", + "level": 45, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + }, + "attackRange": 9, + "projectileName": "purplebolt" + }, + "witchsstaffblood": { + "type": "weapon", + "name": "Witch's Staff of Blood", + "weaponType": "staff", + "price": 5000, + "skill": "magic", + "level": 45, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + }, + "attackRange": 9, + "projectileName": "purplebolt" + }, + "witchsstaffdemonic": { + "type": "weapon", + "name": "Demonic Witch's Staff", + "weaponType": "staff", + "price": 5000, + "skill": "magic", + "level": 45, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + }, + "attackRange": 9, + "projectileName": "purplebolt" + }, + "witchsstaffmoon": { + "type": "weapon", + "name": "Witch's Staff of the Moon", + "weaponType": "staff", + "price": 5000, + "skill": "magic", + "level": 45, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + }, + "attackRange": 9, + "projectileName": "purplebolt" + }, + "witchsstaffsunshine": { + "type": "weapon", + "name": "Witch's Staff of Sunshine", + "weaponType": "staff", + "price": 5000, + "skill": "magic", + "level": 45, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + }, + "attackRange": 9, + "projectileName": "purplebolt" + }, + "bloodmoonstaff": { + "type": "weapon", + "name": "Bloodmoon Staff", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "ancientstaff": { + "type": "weapon", + "name": "Ancient Staff", + "weaponType": "sword", + "price": 5000, + "skill": "strength", + "level": 25, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "coppershield": { + "type": "shield", + "name": "Copper Shield", + "price": 100, + "defenseStats": { + "crush": 4, + "slash": 3, + "stab": 5, + "archery": 3, + "magic": 1 + }, + "bonuses": { + "accuracy": 0, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "tinshield": { + "type": "shield", + "name": "Tin Shield", + "price": 100, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 4, + "archery": 2, + "magic": 2 + }, + "bonuses": { + "accuracy": 1, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "woodenshield": { + "type": "shield", + "name": "Wooden Shield", + "price": 420, + "defenseStats": { + "crush": 6, + "slash": 4, + "stab": 7, + "archery": 2, + "magic": 2 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "ironshield": { + "type": "shield", + "name": "Iron Shield", + "price": 420, + "skill": "defense", + "level": 10, + "defenseStats": { + "crush": 7, + "slash": 5, + "stab": 5, + "archery": 4, + "magic": 2 + }, + "bonuses": { + "accuracy": 2, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + "ironroundshield": { + "type": "shield", + "name": "Iron Round Shield", + "price": 420, + "skill": "defense", + "level": 23, + "defenseStats": { + "crush": 7, + "slash": 9, + "stab": 11, + "archery": 6, + "magic": 1 + }, + "bonuses": { + "accuracy": 2, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + "cobaltshield": { + "type": "shield", + "name": "Cobalt Shield", + "price": 420, + "skill": "defense", + "level": 15, + "defenseStats": { + "crush": 5, + "slash": 4, + "stab": 7, + "archery": 3, + "magic": 1 + }, + "bonuses": { + "accuracy": 1, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + "goldshield": { + "type": "shield", + "name": "Gold Shield", + "price": 420, + "skill": "defense", + "level": 20, + "defenseStats": { + "crush": 7, + "slash": 6, + "stab": 8, + "archery": 5, + "magic": -2 + }, + "bonuses": { + "accuracy": 2, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + "shieldofliberty": { + "type": "shield", + "name": "Shield of Liberty", + "price": 420, + "skill": "defense", + "level": 55, + "defenseStats": { + "crush": 17, + "slash": 16, + "stab": 18, + "archery": 9, + "magic": 12 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 3, + "magic": 4 + } + }, + "shieldofglory": { + "type": "shield", + "name": "Shield of Glory", + "price": 420, + "skill": "defense", + "level": 36, + "defenseStats": { + "crush": 14, + "slash": 10, + "stab": 8, + "archery": 9, + "magic": -8 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": -3, + "magic": -5 + } + }, + "lantern": { + "type": "shield", + "name": "Lantern", + "price": 1000, + "light": { + "outer": { + "distance": 180, + "colour": "rgba(204, 204, 0, 0.1)", + "flickerSpeed": 300, + "flickerIntensity": 8 + }, + "inner": { + "distance": 100, + "colour": "rgba(204, 204, 0, 0.2)", + "flickerSpeed": 400, + "flickerIntensity": 4 + } + }, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 1 + }, + "bonuses": { + "accuracy": 1, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "lantern2": { + "type": "shield", + "name": "Lantern 2", + "price": 1000, + "light": { + "outer": { + "distance": 250, + "colour": "rgba(204, 0, 0, 0.1)", + "flickerSpeed": 200, + "flickerIntensity": 2 + }, + "inner": { + "distance": 130, + "colour": "rgba(204, 0, 0, 0.2)", + "flickerSpeed": 400, + "flickerIntensity": 1 + } + }, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 1 + }, + "bonuses": { + "accuracy": 1, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "lanternarcan": { + "type": "shield", + "name": "Arcan Lantern", + "price": 1000, + "light": { + "outer": { + "distance": 250, + "colour": "rgba(204, 0, 0, 0.1)", + "flickerSpeed": 200, + "flickerIntensity": 2 + }, + "inner": { + "distance": 130, + "colour": "rgba(204, 0, 0, 0.2)", + "flickerSpeed": 400, + "flickerIntensity": 1 + } + }, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 1 + }, + "bonuses": { + "accuracy": 1, + "strength": 0, + "archery": 0, + "magic": 3 + } + }, + "cellobello": { + "type": "weaponskin", + "name": "Cello Bello" + }, + "lolipop": { + "type": "weaponskin", + "name": "Lolipop", + "price": 5000 + }, + "spoon": { + "type": "weaponskin", + "name": "Spoon" + }, + "danbo": { + "type": "skin", + "name": "Danbo" + }, + "danboblue": { + "type": "skin", + "name": "Danbo" + }, + "danbogreen": { + "type": "skin", + "name": "Danbo" + }, + "danbored": { + "type": "skin", + "name": "Danbo" + }, + "taekwondo": { + "type": "skin", + "name": "Taekwondo" + }, + "skeletonskin": { + "type": "skin", + "name": "SkellyMcNelly" + }, + "darkskeletonskin": { + "type": "skin", + "name": "SkellyMcSpooky" + }, + "oldmanskin": { + "type": "skin", + "name": "Old Man's Skin" + }, + "balloonblue": { + "type": "weapon", + "name": "Blue Balloon", + "weaponType": "sword" + }, + "balloongreen": { + "type": "weapon", + "name": "Green Balloon", + "weaponType": "sword" + }, + "balloonpink": { + "type": "weapon", + "name": "Pink Balloon", + "weaponType": "sword" + }, + "balloonyellow": { + "type": "weapon", + "name": "Yellow Balloon", + "weaponType": "sword" + }, + "balloonturquoise": { + "type": "weapon", + "name": "Turquoise Balloon", + "weaponType": "sword" + }, + "balloonwhite": { + "type": "weapon", + "name": "White Balloon", + "weaponType": "sword" + }, + "gun": { + "type": "weapon", + "name": "Gun", + "weaponType": "sword" + }, + "pendant1": { + "type": "pendant", + "name": "Pendant", + "price": 1650, + "attackStats": { + "crush": 8, + "slash": 8, + "stab": 8, + "archery": 0, + "magic": 6 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 0, + "magic": 3 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 2, + "magic": 3 + } + }, + "greenpendant": { + "type": "pendant", + "name": "Jade Pendant", + "price": 2500, + "attackStats": { + "crush": 11, + "slash": 12, + "stab": 10, + "archery": 0, + "magic": 7 + }, + "defenseStats": { + "crush": 10, + "slash": 10, + "stab": 10, + "archery": 0, + "magic": 4 + }, + "bonuses": { + "accuracy": 4, + "strength": 4, + "archery": 3, + "magic": 4 + } + }, + "pearlpendant": { + "type": "pendant", + "name": "Pearl Pendant", + "price": 4450, + "attackStats": { + "crush": 16, + "slash": 16, + "stab": 16, + "archery": 0, + "magic": 8 + }, + "defenseStats": { + "crush": 15, + "slash": 15, + "stab": 15, + "archery": 0, + "magic": 8 + }, + "bonuses": { + "accuracy": 6, + "strength": 8, + "archery": 4, + "magic": 6 + } + }, + "berylpendant": { + "type": "pendant", + "name": "Beryl Pendant", + "price": 1200, + "attackStats": { + "crush": 18, + "slash": 28, + "stab": 18, + "archery": 0, + "magic": 12 + }, + "defenseStats": { + "crush": 20, + "slash": 20, + "stab": 20, + "archery": 0, + "magic": 13 + }, + "bonuses": { + "accuracy": 6, + "strength": 12, + "archery": 6, + "magic": 10 + } + }, + "rubypendant": { + "type": "pendant", + "name": "Ruby Pendant", + "price": 1500, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 3, + "archery": 0, + "magic": 7 + }, + "defenseStats": { + "crush": 2, + "slash": 2, + "stab": 4, + "archery": 0, + "magic": 14 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 4 + } + }, + "emeraldpendant": { + "type": "pendant", + "name": "Emerald Pendant", + "price": 1800, + "attackStats": { + "crush": 2, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 4 + }, + "defenseStats": { + "crush": 0, + "slash": 3, + "stab": 7, + "archery": 0, + "magic": 23 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 6 + } + }, + "goldring": { + "type": "ring", + "name": "Gold Ring", + "price": 2250 + }, + "goldring2": { + "type": "ring", + "name": "Slotted Gold Ring", + "price": 2250 + }, + "silverring": { + "type": "ring", + "name": "Silver Ring", + "price": 1250 + }, + "silverring2": { + "type": "ring", + "name": "Slotted Silver Ring", + "price": 1250 + }, + "ring1": { + "type": "ring", + "name": "Emerald Ring", + "price": 1500, + "attackStats": { + "crush": 8, + "slash": 8, + "stab": 8, + "archery": 0, + "magic": 2 + }, + "defenseStats": { + "crush": 5, + "slash": 5, + "stab": 5, + "archery": 0, + "magic": 3 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 2, + "magic": 2 + } + }, + "sproutring": { + "type": "ring", + "name": "Sprout Ring", + "price": 2350, + "attackStats": { + "crush": 10, + "slash": 10, + "stab": 10, + "archery": 0, + "magic": 3 + }, + "defenseStats": { + "crush": 7, + "slash": 8, + "stab": 7, + "archery": 0, + "magic": 4 + }, + "bonuses": { + "accuracy": 4, + "strength": 8, + "archery": 3, + "magic": 3 + } + }, + "pearlring": { + "type": "ring", + "name": "Pearl Ring", + "price": 3600, + "attackStats": { + "crush": 16, + "slash": 16, + "stab": 16, + "archery": 0, + "magic": 6 + }, + "defenseStats": { + "crush": 15, + "slash": 15, + "stab": 15, + "archery": 0, + "magic": 8 + }, + "bonuses": { + "accuracy": 6, + "strength": 8, + "archery": 4, + "magic": 5 + } + }, + "topazring": { + "type": "ring", + "name": "Topaz Ring", + "price": 9800, + "attackStats": { + "crush": 18, + "slash": 28, + "stab": 18, + "archery": 0, + "magic": 8 + }, + "defenseStats": { + "crush": 20, + "slash": 20, + "stab": 20, + "archery": 0, + "magic": 13 + }, + "bonuses": { + "accuracy": 8, + "strength": 10, + "archery": 6, + "magic": 8 + } + }, + "spiritring": { + "type": "ring", + "name": "Spirit Ring", + "price": 10050, + "attackStats": { + "crush": 12, + "slash": 10, + "stab": 8, + "archery": 0, + "magic": 28 + }, + "defenseStats": { + "crush": 12, + "slash": 10, + "stab": 8, + "archery": 0, + "magic": 28 + }, + "bonuses": { + "accuracy": 6, + "strength": 4, + "archery": 16, + "magic": 12 + } + }, + "essentialrage": { + "type": "ring", + "name": "Essential Rage", + "price": 15500, + "attackStats": { + "crush": 22, + "slash": 34, + "stab": 18, + "archery": 0, + "magic": 12 + }, + "defenseStats": { + "crush": 20, + "slash": 30, + "stab": 16, + "archery": 0, + "magic": 13 + }, + "bonuses": { + "accuracy": 8, + "strength": 14, + "archery": 12, + "magic": 12 + } + }, + "rubyring": { + "type": "ring", + "name": "Ruby Ring", + "skill": "magic", + "level": 10, + "price": 12500, + "attackStats": { + "crush": 6, + "slash": 6, + "stab": 6, + "archery": 0, + "magic": 18 + }, + "defenseStats": { + "crush": 4, + "slash": 4, + "stab": 8, + "archery": 0, + "magic": 22 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 1, + "magic": 8 + } + }, + "sapphirering": { + "type": "ring", + "name": "Sapphire Ring", + "skill": "magic", + "level": 20, + "price": 8650, + "attackStats": { + "crush": 4, + "slash": 8, + "stab": 4, + "archery": 0, + "magic": 22 + }, + "defenseStats": { + "crush": 1, + "slash": 7, + "stab": 11, + "archery": 0, + "magic": 22 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 2, + "magic": 11 + } + }, + "emeraldring": { + "type": "ring", + "name": "Emerald Ring", + "skill": "magic", + "level": 30, + "price": 2200, + "attackStats": { + "crush": 4, + "slash": 8, + "stab": 4, + "archery": 0, + "magic": 6 + }, + "defenseStats": { + "crush": 1, + "slash": 7, + "stab": 11, + "archery": 0, + "magic": 33 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 2, + "magic": 8 + } + }, + "dolring": { + "type": "ring", + "name": "Fragmented Ring", + "skill": "magic", + "level": 40, + "price": 11000, + "attackStats": { + "crush": 4, + "slash": 8, + "stab": 4, + "archery": 0, + "magic": 10 + }, + "defenseStats": { + "crush": 1, + "slash": 7, + "stab": 11, + "archery": 0, + "magic": 10 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 2, + "magic": 18 + } + }, + "diamondring": { + "type": "ring", + "name": "Diamond Ring", + "skill": "magic", + "level": 50, + "price": 16500, + "attackStats": { + "crush": 4, + "slash": 8, + "stab": 4, + "archery": 0, + "magic": 17 + }, + "defenseStats": { + "crush": 1, + "slash": 7, + "stab": 11, + "archery": 0, + "magic": 33 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 2, + "magic": 14 + } + }, + "pytharring": { + "type": "ring", + "name": "Pythar Ring", + "skill": "strength", + "level": 50, + "price": 7500, + "attackStats": { + "crush": 4, + "slash": 8, + "stab": 4, + "archery": 0, + "magic": 4 + }, + "defenseStats": { + "crush": 2, + "slash": 7, + "stab": 5, + "archery": 0, + "magic": 7 + }, + "bonuses": { + "accuracy": 0, + "strength": 16, + "archery": 0, + "magic": 0 + } + }, + "nisocring": { + "type": "ring", + "name": "Nisoc Ring", + "skill": "accuracy", + "level": 41, + "price": 7800, + "attackStats": { + "crush": 4, + "slash": 8, + "stab": 4, + "archery": 0, + "magic": 4 + }, + "defenseStats": { + "crush": 2, + "slash": 7, + "stab": 5, + "archery": 0, + "magic": 7 + }, + "bonuses": { + "accuracy": 16, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + "flask": { + "type": "object", + "name": "Flask", + "description": "A flask used to increment your health from one point to another. How much does it increment it by? +100 HP!", + "storeCount": 10, + "price": 40, + "stackable": true, + "edible": true, + "maxStackSize": 25, + "plugin": "healingitem", + "healAmount": 100 + }, + "hotsauce": { + "type": "object", + "name": "Hot Sauce", + "description": "It's really weird why random mobs would be carrying this item. Like what could they possibly use this for?", + "price": 150, + "edible": true, + "plugin": "hotsauce" + }, + "cure": { + "type": "object", + "name": "Antidote", + "description": "Are you poisoned? Have you been involved in a fight with a poisonous snake or venomous spider? Well this is the cure for you!", + "storeCount": 10, + "price": 150, + "stackable": false, + "edible": true, + "plugin": "poisoncure" + }, + "manaflask": { + "type": "object", + "name": "Mana Flask", + "description": "A refreshing drink for those a little bit low on mana! +35 MP!", + "storeCount": 10, + "price": 200, + "stackable": true, + "edible": true, + "maxStackSize": 30, + "plugin": "healingitem", + "manaAmount": 35 + }, + "burger": { + "type": "object", + "name": "Burger", + "description": "How did a burger make its way into a fantasy world? Who knows, but it's delicious! +200 HP!", + "storeCount": 10, + "price": 350, + "stackable": true, + "edible": true, + "maxStackSize": 7, + "plugin": "healingitem", + "healAmount": 200 + }, + "bigflask": { + "type": "object", + "name": "Big Flask", + "description": "It's like the other flask, except it's bigger, so obviously it must heal more! +250 HP!", + "storeCount": 10, + "price": 600, + "stackable": true, + "edible": true, + "maxStackSize": 5, + "plugin": "healingitem", + "healAmount": 250 + }, + "bigmanaflask": { + "type": "object", + "name": "Big Mana Flask", + "description": "For those seriously thirsty for some mana! +95 MP!", + "storeCount": 10, + "price": 600, + "stackable": true, + "edible": true, + "maxStackSize": 10, + "plugin": "healingitem", + "manaAmount": 95 + }, + "firepotion": { + "type": "object", + "name": "Fire Potion", + "price": 250, + "maxStackSize": 3, + "description": "Feeling a little hot? Have you been burnt to a crisp and can't seem to shake off that burning sensation? The fire potion is the answer to your ailments!", + "edible": true, + "plugin": "firepotion" + }, + "smallemptyvial": { + "type": "object", + "name": "Small Empty Vial", + "description": "A relatively small vial used for storing any liquid really. You could probably put water in this and it'll be just fine." + }, + "bigemptyvial": { + "type": "object", + "name": "Big Empty Vial", + "description": "A big vial used for storing any liquid really." + }, + "largeemptyvial": { + "type": "object", + "name": "Large Empty Vial", + "description": "A large vial used for storing any liquid really." + }, + "snowpotion": { + "type": "object", + "name": "Snow Potion", + "price": 25, + "description": "A magical potion received by some weird monument. It temporarily prevents the player from taking damage from the cold.", + "stackable": true, + "maxStackSize": 3, + "respawnDelay": 120000, + "edible": true, + "plugin": "snowpotion" + }, + "royalazalea": { + "type": "object", + "name": "Royal Azalea" + }, + "blackpotion": { + "type": "object", + "name": "Black Potion", + "price": 100, + "description": "This potion is not at all suspicious. Drink up, it's really yummy!", + "plugin": "blackpotion", + "edible": true + }, + "book": { + "type": "object", + "name": "Book", + "undroppable": true + }, + "cd": { + "type": "object", + "name": "CD [Quest]", + "description": "A CD received by some dying soldier. Contains his last mixtape. I should probably get this to his wife or something.", + "undroppable": true + }, + "gold": { + "type": "object", + "name": "Gold", + "stackable": true, + "description": "A very useful shiny metal that for some reason people like to exchange for goods." + }, + "token": { + "type": "object", + "name": "Token", + "stackable": true, + "description": "A special token that can be exchanged for special stuff at a special store somewhere special." + }, + "banana": { + "type": "object", + "name": "Banana", + "description": "A banana, a fruit that is yellow and long. It is a good source of potassium and fiber.", + "edible": true, + "plugin": "healingitem", + "healAmount": 700 + }, + "watermelon": { + "type": "object", + "name": "Watermelon", + "description": "A watermelon, I should probably cut this up before eating it.", + "edible": true, + "plugin": "healingitem", + "healAmount": 800 + }, + "apple": { + "type": "object", + "name": "Apple", + "description": "An apple, an excellent source of energy!", + "edible": true, + "plugin": "healingitem", + "healAmount": 450 + }, + "orange": { + "type": "object", + "name": "Orange", + "description": "It's funny, the name of the fruit is the same as the colour and its colour.", + "edible": true, + "plugin": "healingitem", + "healAmount": 750 + }, + "blueberry": { + "type": "object", + "name": "Blueberry", + "description": "A blueberry, a fruit that is blue and round. It is a good source of antioxidants.", + "edible": true, + "plugin": "healingitem", + "healAmount": 500 + }, + "shardt1": { + "type": "object", + "price": 1500, + "name": "Shard - Tier 1", + "stackable": true, + "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." + }, + "shardt2": { + "type": "object", + "price": 3000, + "name": "Shard - Tier 2", + "stackable": true, + "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." + }, + "shardt3": { + "type": "object", + "price": 4500, + "name": "Shard - Tier 3", + "stackable": true, + "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." + }, + "shardt4": { + "type": "object", + "price": 6000, + "name": "Shard - Tier 4", + "stackable": true, + "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." + }, + "shardt5": { + "type": "object", + "price": 7500, + "name": "Shard - Tier 5", + "stackable": true, + "description": "Shards are items used to enchant equipments. Each tier represents the maximum attainable enchantment level and chance of enchanting succeeding." + }, + "knife": { + "type": "object", + "name": "Knife", + "description": "A versatile cutting tool that will primarily be used for fletching and stuff.", + "price": 50, + "interactable": true, + "plugin": "knife" + }, + "chisel": { + "type": "object", + "name": "Chisel", + "description": "A chisel used for crafting gems and stuff like that.", + "price": 50, + "interactable": true, + "plugin": "chisel" + }, + "hammer": { + "type": "object", + "name": "Hammer", + "description": "This looks like a mystical hammer from some blacksmith or something.", + "price": 5 + }, + "string": { + "type": "object", + "name": "String", + "description": "A piece of string, can probably be used to make things with it.", + "stackable": true, + "price": 50 + }, + "logs": { + "type": "object", + "name": "Logs", + "description": "Ah yes, the classic logs. Looking at them I can see that they're made out of wood.", + "price": 65 + }, + "palmlogs": { + "type": "object", + "name": "Palm Logs", + "description": "Funny enough, these logs are made out of palm wood. Which is not the same as the other kinds of wood.", + "price": 75 + }, + "pinelogs": { + "type": "object", + "name": "Pine Logs", + "description": "I think I found these when I accidentally swung my axe at a tree repeatedly until it fell down.", + "price": 88 + }, + "icelogs": { + "type": "object", + "name": "Ice Logs", + "price": 65, + "description": "These logs are made out of ice. They're very cold to the touch. No matter what, they will not thaw. I wonder what happens when you put it in fire." + }, + "icepalmlogs": { + "type": "object", + "name": "Ice Palm Logs", + "price": 50, + "description": "These logs are made out of ice and palm wood. They're very cold to the touch." + }, + "icepinelogs": { + "type": "object", + "name": "Ice Pine Logs", + "description": "I think I found these when I accidentally swung my axe at a tree repeatedly until it fell down.", + "price": 85 + }, + "aquasilliuslogs": { + "type": "object", + "name": "Aquasillius Logs", + "price": 350, + "description": "Mystical logs found in the forests of Kaetram. Can be used to craft powerful bows, granted that you have the requirements I guess." + }, + "alkythnlogs": { + "type": "object", + "name": "Alkythn Logs", + "price": 350, + "description": "Mystical logs found in the forests of Kaetram. Can be used to craft powerful bows, granted that you have the requirements I guess." + }, + "heliphatitlogs": { + "type": "object", + "name": "Heliphatit Logs", + "price": 350, + "description": "Mystical logs found in the forests of Kaetram. Can be used to craft powerful bows, granted that you have the requirements I guess." + }, + "zoncillogs": { + "type": "object", + "name": "Zoncil Logs", + "price": 350, + "description": "Mystical logs found in the forests of Kaetram. Can be used to craft powerful bows, granted that you have the requirements I guess." + }, + "zondullogs": { + "type": "object", + "name": "Zondul Logs", + "price": 350, + "description": "Mystical logs found in the forests of Kaetram. Can be used to craft powerful bows, granted that you have the requirements I guess." + }, + "bloodwoodlogs": { + "type": "object", + "name": "Bloodwood Logs", + "price": 400, + "description": "It almost looks like they're crying blood." + }, + "nisocore": { + "type": "object", + "name": "Nisoc Ore", + "description": "An ancient rock forming in volcanic areas. Generally used for crafting pendants and rings, and perhaps other things.", + "price": 250 + }, + "cinnabarore": { + "type": "object", + "name": "Cinnabar Ore", + "description": "A red ore containing special metals. May be used for crafting of certain weapons.", + "price": 350 + }, + "pytharore": { + "type": "object", + "name": "Pythar Ore", + "description": "A purple crystal with magical properties.", + "price": 500 + }, + "goldnugget": { + "type": "object", + "name": "Gold Nugget", + "description": "A piece of pure gold. For some reason it still has to be processed before it can be used.", + "price": 650 + }, + "iboore": { + "type": "object", + "name": "Ibo Ore", + "description": "A peculiar ore. Its uses are not well understood, perhaps with further research it can be used for something.", + "price": 800 + }, + "moonrockore": { + "type": "object", + "name": "Space Rock", + "description": "Part of an Astroid that fell from the sky 172,000 Earthling years ago. Must be special!", + "price": 2400 + }, + "bead": { + "type": "object", + "name": "Magic Bead", + "price": 10, + "stackable": true, + "maxStackSize": 3, + "description": "A bead that emanates magical properties. Can be used in conjunction with other items to create magical items." + }, + "lightningbead": { + "type": "object", + "name": "Lightning Bead", + "description": "A magical bead imbued with lightning properties. Can be used to craft magical items." + }, + "naturebead": { + "type": "object", + "name": "Magic Bead", + "description": "A magical bead imbued with the power of nature. Can be used to craft magical items." + }, + "firebead": { + "type": "object", + "name": "Magic Bead", + "description": "A magical bead imbued with fire. Can be used to craft magical items." + }, + "icebead": { + "type": "object", + "name": "Magic Bead", + "description": "A strong magical bead perpetually frozen. Can be used to craft magical items." + }, + "stick": { + "type": "object", + "name": "Shaft", + "price": 2, + "stackable": true, + "description": "A stick. It's a stick. What else do you want me to say about it? You can probably use it to craft stuff now that it has been added in the game." + }, + "feather": { + "type": "object", + "name": "Feather", + "stackable": true, + "price": 50, + "description": "A feather, I think it came off of a bird or something. You could make arrows with this thing." + }, + "candykey": { + "type": "object", + "name": "Candy Key", + "price": 50, + "description": "A key that allows entrance into Santa's secret chamber. Crumbles upon entering." + }, + "speedpotion": { + "type": "object", + "name": "Speed Potion", + "price": 2500, + "description": "Drinking this will probably speed up your attack rate for a short period of time. I think.", + "edible": true, + "plugin": "speedpotion" + }, + "accuracypotion": { + "type": "object", + "name": "Accuracy Potion", + "price": 1000, + "description": "If there's one thing I know is that potions in this world are always sketchy and do something else from what their name implies. I hope that's not the case here.", + "edible": true, + "effect": "accuracy", + "duration": 60000, + "plugin": "effectpotion" + }, + "defensepotion": { + "type": "object", + "name": "Defence Potion", + "price": 1000, + "description": "Drinking this will make give you some serious defense for a short period of time.", + "edible": true, + "effect": "defense", + "duration": 60000, + "plugin": "effectpotion" + }, + "strengthpotion": { + "type": "object", + "name": "Strength Potion", + "price": 1000, + "description": "Do you wanna partake in maximum damage contests? This potion is probably your best friend.", + "edible": true, + "effect": "strength", + "duration": 60000, + "plugin": "effectpotion" + }, + "beermug": { + "type": "object", + "name": "Beer", + "price": 1000, + "description": "Nothing is quite as refreshing as a beer, though this may potentially inhibit your accuracy for a wee bit.", + "edible": true, + "plugin": "beermug" + }, + "clamobject": { + "type": "object", + "name": "Clam", + "price": 100, + "description": "It has a hard outer shell but I bet it's yummy inside." + }, + "clamchowder": { + "type": "object", + "name": "Clam Chowder", + "price": 1000, + "description": "A delicious soup made from clams. It's a bit salty though.", + "edible": true, + "smallBowl": true, + "plugin": "healingitem", + "healAmount": 750 + }, + "rawshrimp": { + "type": "object", + "name": "Raw Shrimp", + "price": 100, + "description": "Maybe if I cook this it'll become something actually edible." + }, + "cookedshrimp": { + "type": "object", + "name": "Cooked Shrimp", + "price": 200, + "description": "A singular cooked shrimp, alone and dead. But still delicious.", + "edible": true, + "plugin": "healingitem", + "healAmount": 450 + }, + "jellyfish": { + "type": "object", + "name": "Jellyfish", + "price": 100, + "description": "Did you know that jellyfish don't actually have a brain. So don't feel so bad about yourself!" + }, + "jellyfishsmoothie": { + "type": "object", + "name": "Jellyfish Smoothie", + "price": 1000, + "description": "I can't believe someone would actually think up to create something like this.", + "edible": true, + "plugin": "healingitem", + "healAmount": 750 + }, + "kelp": { + "type": "object", + "name": "Kelp", + "price": 100, + "description": "Kelp is a type of seaweed that grows in water. It's pretty tasty when combined with other stuff." + }, + "seed": { + "type": "object", + "name": "Seed", + "price": 100, + "description": "A seed that is used to plant things." + }, + "rawbeef": { + "type": "object", + "name": "Raw Beef", + "price": 100, + "description": "A piece of raw beef. It's probably not the best idea to eat it raw." + }, + "rawtuna": { + "type": "object", + "name": "Raw Tuna", + "price": 100, + "description": "A fish that is commonly found in water. It's pretty tasty when cooked." + }, + "tunasushi": { + "type": "object", + "name": "Tuna Sushi", + "price": 1000, + "description": "A delicious sushi made from tuna. Probably the best in-game food at the moment, or not, who knows, I'm just a piece of text.", + "edible": true, + "plugin": "healingitem", + "healAmount": 850 + }, + "seaweedroll": { + "type": "object", + "name": "Seaweed Roll", + "price": 800, + "description": "A tasty seaweed roll filled with a variety of fresh ingredients. A popular choice for sushi lovers.", + "edible": true, + "stackable": true, + "maxStackSize": 10, + "plugin": "healingitem", + "healAmount": 750 + }, + "barley": { + "type": "object", + "name": "Barley", + "description": "It's a fruit, no it's a sald, no it's a grain. You can probably use it to make bread or something like that.", + "price": 100 + }, + "horseradish": { + "type": "object", + "name": "Horseraddish", + "description": "A horse's raddish, I think. I don't know, I'm not a botanist, I'm just a text prompt.", + "price": 100 + }, + "blackberry": { + "type": "object", + "name": "Blackberry", + "description": "A berry that grows on bushes. It's pretty tasty when cooked.", + "edible": true, + "plugin": "healingitem", + "healAmount": 200, + "price": 100 + }, + "borth": { + "type": "object", + "name": "Borth", + "description": "A nice yummy warm and nice smelling... I really don't know what it is.", + "price": 100 + }, + "bronzebar": { + "type": "object", + "name": "Bronze Bar", + "description": "A bar of bronze. It's pretty heavy.", + "price": 250 + }, + "bronzeore": { + "type": "object", + "name": "Bronze Ore", + "description": "A piece of bronze ore. It's pretty heavy.", + "price": 100 + }, + "bucket": { + "type": "object", + "name": "Bucket", + "description": "A bucket, you can use it to put a variety of liquids in it.", + "price": 100 + }, + "cake": { + "type": "object", + "name": "Cake", + "description": "A delicious cake. It's pretty tasty.", + "price": 100 + }, + "cheese": { + "type": "object", + "name": "Cheese", + "description": "A piece of cheese. I think it came from milk.", + "price": 100 + }, + "leaf": { + "type": "object", + "name": "Leaf", + "description": "A piece of cheese. I think it came from milk.", + "price": 100 + }, + "cilantro": { + "type": "object", + "name": "Cilantro", + "description": "A leafy herb that is commonly used in Mexican cuisine. It's pretty tasty when cooked.", + "price": 100 + }, + "cloudberry": { + "type": "object", + "name": "Cloudberry", + "description": "A berry that grows on bushes. It's pretty tasty when cooked.", + "price": 100 + }, + "rawchicken": { + "type": "object", + "name": "Raw Chicken", + "description": "I think I should cook this before I eat it.", + "price": 100 + }, + "cookedchicken": { + "type": "object", + "name": "Cooked Chicken", + "description": "A delicious piece of chicken. It's pretty tasty.", + "edible": true, + "plugin": "healingitem", + "healAmount": 400, + "price": 250 + }, + "cookedbeef": { + "type": "object", + "name": "Cooked Beef", + "description": "A scrumptious piece of beef. You can eat it and it'll heal you.", + "edible": true, + "plugin": "healingitem", + "healAmount": 400, + "price": 250 + }, + "rawpork": { + "type": "object", + "name": "Raw Pork", + "description": "I think I should cook this before I eat it.", + "price": 250 + }, + "cookedpork": { + "type": "object", + "name": "Cooked Pork", + "description": "A delicious piece of pork. It's pretty tasty.", + "edible": true, + "plugin": "healingitem", + "healAmount": 400, + "price": 100 + }, + "rawsausage": { + "type": "object", + "name": "Raw Sausage", + "description": "I think I should cook this before I eat it.", + "price": 100 + }, + "cookedsausage": { + "type": "object", + "name": "Cooked Sausage", + "description": "A delicious sausage. It's pretty tasty.", + "edible": true, + "plugin": "healingitem", + "healAmount": 650, + "price": 100 + }, + "corn": { + "type": "object", + "name": "Corn", + "description": "It's corn, and it's on a cob.", + "price": 100 + }, + "egg": { + "type": "object", + "name": "Egg", + "description": "A wonderful sorta round egg, it came from a chicken, I think.", + "price": 100 + }, + "gooseberry": { + "type": "object", + "name": "Gooseberry", + "description": "A berry that grows on bushes. It's pretty tasty when cooked.", + "price": 100 + }, + "ironbar": { + "type": "object", + "name": "Iron Bar", + "description": "A bar of iron. It's pretty heavy.", + "price": 100 + }, + "mango": { + "type": "object", + "name": "Mango", + "description": "A mango, it's a fruit and it's edible", + "price": 100 + }, + "milkbottle": { + "type": "object", + "name": "Milk Bottle", + "description": "A bottle of milk. It's pretty tasty when cooked.", + "price": 100 + }, + "mulberry": { + "type": "object", + "name": "Mulberry", + "description": "A berry that grows on or in bushes.", + "price": 100 + }, + "oat": { + "type": "object", + "name": "Oat", + "description": "A grain that is commonly used in bread.", + "price": 100 + }, + "peach": { + "type": "object", + "name": "Peach", + "description": "A peach, it's a fruit and it's edible", + "price": 100 + }, + "pineapple": { + "type": "object", + "name": "Pineapple", + "description": "A pineapple, it's a fruit and it's edible", + "price": 100 + }, + "plum": { + "type": "object", + "name": "Plum", + "description": "A plum, it's a fruit and it's edible", + "price": 100 + }, + "quinoa": { + "type": "object", + "name": "Quinoa", + "description": "Hello this is the developer, I really don't know what this is even used in so I can't come up with a witty description.", + "price": 100 + }, + "raspberry": { + "type": "object", + "name": "Raspberry", + "description": "A berry that grows on or around bushes..", + "edible": true, + "plugin": "healingitem", + "healAmount": 150, + "price": 100 + }, + "kiwi": { + "type": "object", + "name": "Kiwi", + "description": "A fruit that grows on or around bushes..", + "edible": true, + "plugin": "healingitem", + "healAmount": 150, + "price": 100 + }, + "rock": { + "type": "object", + "name": "Rock", + "description": "A rock, it's a rock. What more do you want me to say.", + "price": 100 + }, + "rice": { + "type": "object", + "name": "Rice", + "description": "You can eat this after you cook it for a bit.", + "price": 100 + }, + "mustardplant": { + "type": "object", + "name": "Mustard", + "description": "A plant found throughout the kingdom of Kaetram. Might be good for some ingredients.", + "price": 50 + }, + "cuminplant": { + "type": "object", + "name": "Cumin", + "description": "A herb used in certain cooking recipes. Not sure I'm just a description.", + "price": 50 + }, + "paprika": { + "type": "object", + "name": "Paprika", + "description": "A very nice vegetable used in very nice condiments.", + "price": 50 + }, + "dandelion": { + "type": "object", + "name": "Dandelion", + "description": "A cute little yellow plant that grows in the grass. Or on tree stumps.", + "price": 50 + }, + "strawberry": { + "type": "object", + "name": "Strawberry", + "description": "A berry that grows on bushes.", + "price": 100 + }, + "copperbar": { + "type": "object", + "name": "Copper Bar", + "description": "A bar of copper. It's pretty heavy.", + "price": 100 + }, + "tinbar": { + "type": "object", + "name": "Tin Bar", + "description": "A bar of tin. It's pretty heavy.", + "price": 100 + }, + "goldbar": { + "type": "object", + "name": "Gold Bar", + "description": "A bar of gold. It's pretty heavy and shiny.", + "price": 1200 + }, + "tofu": { + "type": "object", + "name": "Tofu", + "description": "A block of tofu. I don't know what to do with this, I'm not vegan.", + "price": 100 + }, + "tomato": { + "type": "object", + "name": "Tomato", + "description": "A tomato, it's a fruit and it's edible. Yes it's a fruit get over it.", + "edible": true, + "plugin": "healingitem", + "healAmount": 100, + "price": 100 + }, + "onion": { + "type": "object", + "name": "Onion", + "description": "An onion, it has layers, like an ogre.", + "edible": true, + "plugin": "healingitem", + "healAmount": 100, + "price": 100 + }, + "potato": { + "type": "object", + "name": "Potato", + "description": "A potato, it's a vegetable and it's edible, though cooking it might be better.", + "edible": true, + "plugin": "healingitem", + "healAmount": 120, + "price": 100 + }, + "chilli": { + "type": "object", + "name": "Chilli", + "description": "A chilli pepper, it's hot so be careful.", + "edible": true, + "plugin": "healingitem", + "healAmount": 100, + "price": 100 + }, + "waterbucket": { + "type": "object", + "name": "Water Bucket", + "description": "A bucket of water. You can use it to cook stuff with it.", + "price": 100 + }, + "bowlsmall": { + "type": "object", + "name": "Small Bowl", + "description": "A small bowl. Can be used to cook stuff in it.", + "price": 100 + }, + "bowlmedium": { + "type": "object", + "name": "Medium Bowl", + "description": "A medium bowl. Can be used to cook stuff in it.", + "price": 100 + }, + "copperore": { + "type": "object", + "name": "Copper Ore", + "description": "A piece of copper ore. It's pretty heavy.", + "price": 100 + }, + "tinore": { + "type": "object", + "name": "Tin Ore", + "description": "A piece of tin ore.", + "price": 100 + }, + "ironore": { + "type": "object", + "name": "Iron Ore", + "description": "A piece of iron ore.", + "price": 100 + }, + "goldore": { + "type": "object", + "name": "Gold Ore", + "description": "A piece of gold ore. It's pretty heavy.", + "price": 100 + }, + "coal": { + "type": "object", + "name": "Coal", + "description": "A piece of coal. You can use it smelt ores.", + "price": 75 + }, + "topaz": { + "type": "object", + "name": "Topaz", + "description": "A topaz gemstome, it's quite pretty.", + "price": 350 + }, + "beryl": { + "type": "object", + "name": "Beryl", + "description": "Beryl gemstone, it's quite pretty.", + "price": 650 + }, + "lapislazuli": { + "type": "object", + "name": "Lapis Lazuli", + "description": "A semi-precious stone, it's quite pretty.", + "price": 800 + }, + "citrine": { + "type": "object", + "name": "Citrine", + "description": "It's rather shiny and nice to hold.", + "price": 1100 + }, + "taaffeite": { + "type": "object", + "name": "Taaffeite", + "description": "A nice purple gemstone that is somewhat valuable I guess.", + "price": 1220 + }, + "ruby": { + "type": "object", + "name": "Ruby", + "description": "A very nice gemstone that can be used to made rings or pendants.", + "price": 1300 + }, + "rubygem": { + "type": "object", + "name": "Ruby Gem", + "description": "A nicely chiseled piece of rock that can actually be used to make fancy things with..", + "price": 1300 + }, + "peridot": { + "type": "object", + "name": "Peridot", + "description": "A nice green gemstone that is somewhat valuable I guess.", + "price": 1300 + }, + "opal": { + "type": "object", + "name": "Opal", + "description": "A nice gemstone that is somewhat valuable I guess.", + "price": 1300 + }, + "emerald": { + "type": "object", + "name": "Emerald", + "description": "A very nice gemstone that can be used to made rings or pendants.", + "price": 1400 + }, + "amethyst": { + "type": "object", + "name": "Amethyst", + "description": "A nice purple gemstone that is somewhat valuable I guess.", + "price": 1500 + }, + "bluelily": { + "type": "object", + "name": "Blue Lily", + "description": "A blue lily, a flower that can be used for crafting stuff.", + "price": 100 + }, + "stew": { + "type": "object", + "name": "Tomato Stew", + "description": "A stew composed of tomato, mushrooms, and a bowl.", + "edible": true, + "mediumBowl": true, + "plugin": "healingitem", + "healAmount": 500, + "price": 600 + }, + "stew2": { + "type": "object", + "name": "Corn Stew", + "description": "A very filling stew, possibly the best stew currently available.", + "edible": true, + "mediumBowl": true, + "plugin": "healingitem", + "healAmount": 800, + "price": 900 + }, + "mushroom1": { + "type": "object", + "name": "Shiitake", + "description": "A mushroom that can be used for cooking.", + "price": 250 + }, + "mushroom2": { + "type": "object", + "name": "Russula", + "description": "A mushroom that can be used for cooking.", + "price": 250 + }, + "mushroom3": { + "type": "object", + "name": "Kuriositas", + "description": "A mushroom that can be used for cooking.", + "price": 250 + }, + "mushroom4": { + "type": "object", + "name": "Matsutake", + "description": "A mushroom that can be used for cooking.", + "price": 250 + }, + "mushroom5": { + "type": "object", + "name": "Cortinarius", + "description": "A mushroom that can be used for cooking.", + "price": 250 + }, + "mushroom6": { + "type": "object", + "name": "Violet Cort", + "description": "A mushroom that can be used for cooking.", + "price": 250 + }, + "hilt1": { + "type": "object", + "name": "Hilt", + "description": "May be used with certain metals to produce a sword.", + "price": 1000 + }, + "hilt2": { + "type": "object", + "name": "Hilt", + "description": "May be used with certain metals to produce a sword.", + "price": 1000 + }, + "ratpet": { + "type": "pet", + "name": "Rat Pet", + "pet": "rat", + "description": "A little cute rat that follows you around.", + "price": 1000 + }, + "rathatpet": { + "type": "pet", + "name": "Rat Hat Pet", + "pet": "rathat", + "description": "A little cute rat with a little cute hat that follows you around.", + "price": 1000 + }, + "ratballoonpet": { + "type": "pet", + "name": "Rat Balloon Pet", + "pet": "ratballoon", + "description": "A cute little rat tied to a balloon... Wait what?", + "price": 1000 + }, + "arcanahypercube": { + "type": "object", + "name": "Arcan Hypercube", + "description": "Yoo why we going so frickin fast?", + "price": 1000 + }, + "ettispinefruit": { + "type": "object", + "name": "Etti Spine Fruit", + "description": "Kinda looks like a tasty noodle... for sociopaths.", + "price": 1000 + }, + "galaxylilies": { + "type": "object", + "name": "Galaxy Lilies", + "description": "They say that galaxies exsist everywhere looks like you found one on the ground, how careless.", + "price": 1000 + }, + "godscroissant": { + "type": "object", + "name": "God's Croissant", + "description": "Said to have the most heavenly taste in nature. Unfortunately it is very poisonous.", + "price": 1000 + }, + "stellarcluster": { + "type": "object", + "name": "Stellar Cluster", + "description": "They say this is formed by an odd mutation from the over exposure to the sun, it's quite impressive", + "price": 1000 + }, + "harmoniccrossband": { + "type": "object", + "name": "Harmonic Crossband", + "description": "They say the only peace that can be found is by throwing everything away... don't do it.", + "price": 1000 + }, + "livinganchorroot": { + "type": "object", + "name": "Living Anchor Root", + "description": "By far the heaviest plant you will ever try to take. It must be asked if it's worth it to carry it around.", + "price": 1000 + }, + "manaberry": { + "type": "object", + "name": "Mana Berry", + "description": "I heard a story about a wizard that killed an entire town just to taste one. Too bad he slipped on his tunic and died before he could eat it.", + "price": 1000 + }, + "nexuscross": { + "type": "object", + "name": "Nexus Cross", + "description": "Legend says that if buried with the dead their souls will ascend to godhood. What a crock", + "price": 1000 + }, + "orchardsbane": { + "type": "object", + "name": "Orchard's Bane", + "description": "If found in one's orchard be warry as either it is your crop's life or the first witness to the cursed weed.", + "price": 1000 + }, + "wartberries": { + "type": "object", + "name": "Wart Berries", + "description": "If observed please seek medical attention as soon as possible. Can never be too careful.", + "price": 1000 + }, + "zephyrsgaleblade": { + "type": "object", + "name": "Zephyr's Gale Blade", + "description": "Much like its name sake, you can never quite control its form, but it's lovely to be in the presence of.", + "price": 1000 + }, + "arrow": { + "type": "arrow", + "name": "Arrow", + "stackable": true, + "maxStackSize": 9999, + "price": 5, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 7, + "magic": 0 + }, + "projectileName": "arrow" + }, + "firearrow": { + "type": "arrow", + "name": "Fire Arrow", + "price": 12, + "stackable": true, + "burning": true, + "maxStackSize": 9999, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 12, + "magic": 0 + }, + "projectileName": "firearrow" + }, + "poisonarrow": { + "type": "arrow", + "name": "Poison Arrow", + "price": 16, + "stackable": true, + "maxStackSize": 9999, + "poisonous": true, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 18, + "magic": 0 + }, + "projectileName": "poisonarrow" + }, + "lightningarrow": { + "type": "arrow", + "name": "Lightning Arrow", + "price": 18, + "stackable": true, + "maxStackSize": 9999, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 20, + "magic": 0 + }, + "projectileName": "lightningarrow" + }, + "icearrow": { + "type": "arrow", + "name": "Ice Arrow", + "price": 20, + "stackable": true, + "freezing": true, + "maxStackSize": 9999, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 24, + "magic": 0 + }, + "projectileName": "icearrow" + }, + "nisocarrow": { + "type": "arrow", + "name": "Nisoc Arrow", + "price": 19, + "stackable": true, + "freezing": true, + "maxStackSize": 9999, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 24, + "magic": 3 + }, + "projectileName": "nisocarrow" + }, + "cinnabararrow": { + "type": "arrow", + "name": "Cinnabar Arrow", + "price": 21, + "stackable": true, + "freezing": true, + "maxStackSize": 9999, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 28, + "magic": 2 + }, + "projectileName": "cinnabararrow" + }, + "pythararrow": { + "type": "arrow", + "name": "Pythar Arrow", + "price": 23, + "stackable": true, + "freezing": true, + "maxStackSize": 9999, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 28, + "magic": 4 + }, + "projectileName": "pythararrow" + }, + "iboarrow": { + "type": "arrow", + "name": "Ibo Arrow", + "price": 25, + "stackable": true, + "freezing": true, + "maxStackSize": 9999, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 28, + "magic": 12 + }, + "projectileName": "iboarrow" } - }, - - "arrow": { - "type": "arrow", - "name": "Arrow", - "stackable": true, - "maxStackSize": 9999, - "price": 5, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 7, - "magic": 0 - }, - "projectileName": "arrow" - }, - - "firearrow": { - "type": "arrow", - "name": "Fire Arrow", - "price": 12, - "stackable": true, - "burning": true, - "maxStackSize": 9999, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 12, - "magic": 0 - }, - "projectileName": "firearrow" - }, - - "poisonarrow": { - "type": "arrow", - "name": "Poison Arrow", - "price": 16, - "stackable": true, - "maxStackSize": 9999, - "poisonous": true, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 18, - "magic": 0 - }, - "projectileName": "poisonarrow" - }, - - "lightningarrow": { - "type": "arrow", - "name": "Lightning Arrow", - "price": 18, - "stackable": true, - "maxStackSize": 9999, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 20, - "magic": 0 - }, - "projectileName": "lightningarrow" - }, - - "icearrow": { - "type": "arrow", - "name": "Ice Arrow", - "price": 20, - "stackable": true, - "freezing": true, - "maxStackSize": 9999, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 24, - "magic": 0 - }, - "projectileName": "icearrow" - }, - - "nisocarrow": { - "type": "arrow", - "name": "Nisoc Arrow", - "price": 19, - "stackable": true, - "freezing": true, - "maxStackSize": 9999, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 24, - "magic": 3 - }, - "projectileName": "nisocarrow" - }, - - "cinnabararrow": { - "type": "arrow", - "name": "Cinnabar Arrow", - "price": 21, - "stackable": true, - "freezing": true, - "maxStackSize": 9999, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 28, - "magic": 2 - }, - "projectileName": "cinnabararrow" - }, - - "pythararrow": { - "type": "arrow", - "name": "Pythar Arrow", - "price": 23, - "stackable": true, - "freezing": true, - "maxStackSize": 9999, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 28, - "magic": 4 - }, - "projectileName": "pythararrow" - }, - - "iboarrow": { - "type": "arrow", - "name": "Ibo Arrow", - "price": 25, - "stackable": true, - "freezing": true, - "maxStackSize": 9999, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 28, - "magic": 12 - }, - "projectileName": "iboarrow" - } } diff --git a/packages/server/data/map/world.json b/packages/server/data/map/world.json index b3b0bdd3a6..ed6e26e6bf 100644 --- a/packages/server/data/map/world.json +++ b/packages/server/data/map/world.json @@ -1 +1 @@ -{"version":1684996698897,"width":1056,"height":768,"tileSize":16,"data":[[461,653],[527,654],[464,655],[525,656],526,528,463,526,463,464,[464,653],[461,654],[525,655],[463,656],463,527,528,526,462,464,527,461,527,462,528,528,463,528,525,528,461,528,525,464,526,461,463,[464,653],[463,654],[462,655],[464,656],527,462,461,464,525,526,463,464,461,526,463,463,525,463,527,[463,653],[527,654],[528,655],[527,656],462,527,[463,3211],[1739,3212],1740,1741,[1741,3219],[525,3220],526,527,526,528,463,525,525,[525,3282],[528,415],[464,416],[525,417],[525,3277],464,462,[526,653],[528,654],[462,655],[464,656],525,525,462,463,462,461,528,464,528,527,525,464,526,527,464,464,463,528,528,525,463,526,464,462,462,526,528,528,[525,653],[526,654],[463,655],[464,656],525,462,463,463,464,462,526,527,461,464,527,[461,653],[464,654],[526,655],[464,656],526,527,526,527,464,463,461,461,528,525,525,528,527,463,463,463,[1735,529],1734,1735,1799,1799,1799,1735,1735,1735,1799,1798,1799,1735,1799,[16,1800],79,80,15,[79,1036],[15,1037],15,16,15,15,[79,1795],1799,1798,1735,1798,1734,1799,1798,1734,1735,1799,1735,[80,1863],[80,1671],80,79,16,[80,1795],1799,1735,1734,1798,1735,1734,1735,1799,1735,[1811,1608],1808,1747,1745,[1744,1036],[1811,1859,1037],1799,1798,1734,1734,1798,1735,1798,[1809,1800],1747,1747,[1746,1605],1734,1734,[1745,1671],1810,[1810,348],[1809,412],413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16658,18255],18260,18261,[16785,18258],[13651,12656],[467,2185,3092,7],9,[462,1286,10],0,0,0,0,0,[1799,3838],3839,[1735,3840],[463,717],[525,718],[526,719],[527,720],463,526,527,464,461,528,[527,717],[527,718],[527,719],[463,720],526,526,462,461,462,464,464,525,527,528,462,[525,3282],[527,3344],[525,3345],[462,890],[464,698],[528,3344],[461,3345],[525,3277],463,528,464,463,[462,717],[525,718],[463,719],[527,720],461,525,462,525,463,525,527,528,528,464,464,463,528,526,461,[462,717],[527,718],[461,719],[464,720],462,463,[526,3275],[1803,3276],[1804,3342],[1805,3343],[1805,3346],[463,3284],528,[527,653],[526,654],[527,655],[526,656],[463,3282],[526,3342],[528,3346,653],[482,654],[480,655],[481,656],[462,3276],[464,3277],461,[525,717],[525,718],[528,719],[525,720],525,528,463,525,464,461,525,461,464,464,464,461,528,463,[462,653],[461,654],[527,655],[464,656],525,461,525,463,464,461,528,527,527,464,[526,717],[526,718],[528,719],[526,720],461,463,462,525,463,526,463,526,526,462,525,[528,717],[464,718],[463,719],[525,720],463,462,464,528,464,464,462,[462,653],[528,654],[464,655],[527,656],525,526,464,527,527,464,[1798,269],[1735,273],1798,1734,1735,1799,1735,1735,1735,1799,1735,1799,1799,1799,[79,1606],80,15,[16,1100],[79,1101],16,16,15,[80,1605],1734,1798,1798,1798,1735,1734,1798,1735,1798,1799,1799,[15,1671,1036],[80,1037],80,15,[16,1539],[80,1540],1735,1734,1734,1799,1735,1798,1798,1735,1799,1799,[1809,1736],1747,1746,1808,[1809,1100],[1746,1101],[1747,1668],1734,1798,1799,1799,[1811,1862],[1809,1863],[1745,1671],1744,[1809,1539],1734,1735,[1809,1800],1747,1808,[1810,221],413,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16786,18319],18324,18325,[16722,18322],12720,[1286,3220,7],9,[1286,10],[526,1289,7],9,[528,1415,10],[13800,8253],[12909,8254],[1798,3902],[1735,3903],[1734,3904],[528,781],[463,782],[526,783],[462,784],525,464,528,528,463,462,[526,781],[461,782],[462,783],[526,784],464,527,[526,3282],[461,3342],[526,3343],[528,3277],527,463,528,463,[528,3282],[462,3283],3408,3409,954,762,3408,3409,[462,3276],[461,3342],[462,3343],[461,3277],525,[463,781],[528,782],[463,783],[461,784],464,526,462,462,461,527,525,462,528,[464,3282,1525],[464,3532,1526],[461,3533,1527],[525,3277],525,528,[462,781],[464,782],[527,783],[462,784],463,464,[526,3339],3340,3406,3407,3410,[527,3348],527,[464,717],[463,718],[525,719],[525,3282,720],[463,3346],3214,[594,3347,717],[461,543,718],[464,544,719],[464,545,720],3340,[462,3341],[464,3277],[525,781],[462,782],[527,783],[528,784],462,528,525,461,463,464,461,462,526,462,527,527,461,527,[528,717],[527,718],[525,719],[527,720],461,528,526,527,461,525,461,463,525,461,[527,781],[462,782],[462,783],[461,784],464,462,525,463,461,528,525,462,462,463,464,[527,781],[527,782],[528,783],[464,784],464,528,526,461,527,462,526,[526,717],[528,718],[527,719],[528,720],462,525,464,527,527,527,525,[1799,337],1735,1799,1735,1734,1734,1799,1734,1798,1734,1798,1735,1734,1734,[79,1607],15,[15,1164],[143,1165],144,[16,1539],[79,1540],1799,1799,1798,1798,1798,1798,1735,1734,1735,1734,1734,[80,1864],[79,1100],[15,1101],15,80,[16,1795],1735,1735,1798,1735,1734,1799,1735,1798,1798,1734,1734,1799,[1810,1607],1747,1811,[1744,1164],[1746,1165],1747,[1808,1669],[1808,1862],[1809,1863],[1744,1864],1809,1810,1811,1746,[1744,1795],1735,1734,[1809,1864],1747,1811,[1744,285],286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,3890,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,410,3883,31,409,343,0,0,0,0,348,408,31,410,1949,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16721,18383],[16657,18388],[16657,18389],[16721,18386],[13649,12784],[1286,3156,7],9,[1286,10],[1414,7],9,[1286,10],[13799,8317],[12973,8318],8073,8074,8075,[463,845],[461,846],[461,847],[463,848],463,[528,3282],[528,3344],[525,3345],[527,3277],463,[527,845],[528,846],[462,847],[528,848],528,[526,3282],[528,3283],3406,3407,[462,3276],[464,3277],461,526,[464,3282,653],[526,3346,654],[3347,655],[1286,3472,656],[1286,3473],[1286,1018],[1286,826],[1286,3472],[1286,3473],[3340,653],[3406,654],[3407,655],[461,3276,656],[464,3277],[463,845],[463,846],[464,847],[526,848],461,464,461,464,528,462,526,526,[526,3282],[527,3283,1589],[3596,1590],[3597,1591],[463,3341,1592],[464,3277],462,[527,845],[464,846],[464,847],[462,848],464,527,528,[525,3404],[461,3470],[462,3471],[463,3474],462,464,[525,781],[527,782],[461,783],[464,3155,784],3410,[596,3470],[531,3474,781],[528,782],[595,783],[461,784],[528,3404],3405,[528,3276],[525,3277,845],[526,846],[463,847],[462,848],527,525,464,462,461,525,528,527,525,526,528,526,525,525,[528,781],[461,782],[528,783],[525,784],526,464,528,525,463,462,526,461,462,525,[525,845],[528,846],[528,847],[462,848],525,461,462,461,525,464,461,527,527,528,526,[462,845],[461,846],[528,847],[525,848],527,461,528,526,526,528,527,[528,781],[528,782],[461,783],[527,784],526,462,461,525,461,526,462,[1799,401],1734,1799,1735,1798,1735,1799,1735,1799,1735,1735,1799,1735,1799,[80,1864],80,79,207,208,[15,1668],1734,1799,1734,1798,1734,1799,1798,1735,1734,1735,1799,[79,1800],16,[16,1164],[80,1165],16,[80,1605],1734,1798,1798,1734,1734,1735,1799,1799,1798,[15,1862],[79,1863],1798,1735,1735,[1809,1541],[1810,1543],[1745,1607],1745,1745,1809,1745,1745,1746,1744,1746,1810,[1745,1605],1734,1799,[1746,1670,1036],[1808,1037],1746,1747,[1811,156],[1810,92],93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,349,3954,473,342,343,348,408,409,410,411,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,3883,409,3890,411,412,474,3947,95,473,342,343,0,0,348,349,472,95,474,2013,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,1402,1403,1404,1403,1404,1405,1406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,730,731,732,731,731,732,733,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1286,3220,7],9,[1286,10],[461,1482,7],9,[527,1351,10],[13800,8381],[12908,8382],[6031,8137],[6031,8138],[6095,8139],[528,909],[463,910],[461,911],[526,912],[463,3282],[527,3283],3408,3409,[461,3276],[528,3277],[462,909],[463,910],[464,911],[526,912],[528,3282],[528,3346],3347,[1798,3470],[1734,3471],3340,[528,3341],[528,3015],[463,3016],[525,3346,717],[1286,3410,718],[1286,3411,719],[2376,720],1286,[1286,646],[1286,647],[1286,648],2310,[1286,3404,717],[1286,3470,718],[1286,3471,719],[3340,720],[527,3276],[461,3277,909],[462,910],[462,911],[525,3282,912],[525,3344],[528,3345],[528,3277],464,527,461,462,[464,3282],[461,3346],[3347,1653],[532,3660,1654],[525,3661,1655],[3405,1656],[525,3276],[463,3342],[525,3343,909],[464,3277,910],[462,3282,911],[464,3342,912],[528,3343],[528,3277],464,462,527,461,464,528,462,[462,845],[462,846],[526,847],[463,3219,848],[525,3220],532,[461,845],[464,846],[464,847],[527,848],594,[595,3469,16700],3340,[464,3276,909],[527,3277,910],[461,911],[527,912],527,528,463,464,462,[464,653],[461,654],[528,655],[464,656],527,527,463,463,526,[463,845],[526,846],[528,847],[464,848],527,526,462,525,[463,653],[463,654],[527,655],[528,656],527,461,[464,909],[527,910],[463,911],[463,912],527,464,[526,653],[461,654],[461,655],[462,656],464,[528,3282],[525,3342],[464,3343],[525,3344],[526,3345,909],[526,3277,910],[463,911],[464,912],525,526,464,525,528,461,463,[463,845],[525,846],[528,847],[464,848],527,464,527,461,462,462,462,[1735,465],1734,1799,1799,1798,1798,1799,1799,1735,1799,1734,1734,1734,[79,1800],11,12,16,80,80,[80,1604],1798,1735,1735,1799,1799,1734,1798,1799,1734,1734,[80,1862],[15,1670],15,16,[79,1604],[16,1540],1799,1734,1734,1734,1734,1799,1734,1798,[15,1860],[16,1670],15,15,[80,1603],1734,1799,1734,1798,[1747,1800],1745,1809,1746,1747,1744,1810,1747,1747,[1810,1604],1798,1798,[1745,1671],[1745,1100],[1747,1101],1745,1808,1810,[1811,156],[1811,157,348],[158,408],409,408,409,410,31,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,31,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,472,473,413,[486,4018,1129],[487,537,1130],406,407,412,472,473,474,475,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,3947,473,3954,475,476,[3777,538],[3777,4011],[3777,159],[3777,537],406,407,408,409,412,413,[486,536],[423,159],[487,538],[423,2077],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13704,13705,[13706,1142],[13707,1143],[13706,1142],[13707,1143],13706,13707,13707,13708,13709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,1466,1467,1468,1467,1468,1469,1470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,794,795,796,795,795,796,797,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[462,3284,7],9,[527,1994,3083,10],0,[13800,5638],[980,3521],[916,3522],[979,3523],1364,[1299,1954],1299,461,[461,974],[528,975],[526,3282],[526,3346],3347,[596,3472],[530,3473],3340,[461,3341],[462,3532],[461,3533,974],[462,3015,975],[463,3016],[463,3346],3410,[1735,3411],1799,1734,[1798,3404],3405,3079,3080,[3410,781],[525,1351,3474,782],[527,1352,783],[528,1353,784],[527,1354,709],[596,1355,710],711,[596,1480,712],[594,1481,713],[528,1482,781],[531,1483,782],[527,1351,783],[525,1352,3404,784],3340,[526,3341],[527,3342,974],[525,3343,975],[464,3346],3408,3409,[528,3341],[527,3015],[525,3016],[463,3017],[464,3018],[464,3346],3410,[525,3411,1717],[596,1718],[525,1719],[532,3469,1720],3340,3406,3407,[527,3341,974],[525,3346,975],3406,3407,[462,3341],[526,3277],525,462,526,527,463,525,[462,909],[461,910],[527,3282,911],[463,3283,912],[596,3284],594,[526,909],[595,910],[525,911],[526,912],525,[463,16764],[528,3404],3340,[463,3341,974],[463,3342,975],[525,3343],[461,3342],[462,3343],[527,3277],526,464,[528,717],[525,718],[463,719],[527,720],525,527,526,464,463,[462,909],[526,910],[464,911],[528,912],526,464,527,462,[462,717],[462,718],[527,719],[527,720],461,464,525,[464,974],[528,975],528,462,528,[463,717],[528,718],[461,719],[462,720],[462,3282],[464,3283,1525],[3406,1526],[3407,1527],3408,3409,[461,3276,974],[463,3277,975],461,461,463,528,464,463,461,525,[528,909],[527,910],[461,911],[462,912],525,461,462,525,463,462,464,527,[1798,336],1799,1735,1734,1734,1799,[1735,3282],[1799,3342],[1735,415],[1735,416],[1734,417],[1735,3277],[79,1671],75,76,15,16,16,[15,1795],1735,1734,1798,1799,1735,1799,1735,1799,1799,[80,1800],80,80,80,[80,1605],1799,1798,1735,1799,1734,[80,1860],[16,1861],[16,1862],[80,1863],[15,1670],79,15,15,16,[79,1731],1799,1799,1735,1734,1735,[1746,1607],1744,1808,1747,1810,1811,1808,[1808,1539],1798,1735,[1808,1800],1746,[1745,1164],[1810,1165],1811,[1810,348],[1810,410],[1744,31],[1746,412],472,473,472,473,474,95,342,343,0,0,0,0,0,0,0,0,0,0,0,348,410,411,412,472,95,407,31,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,472,473,342,343,0,0,0,0,0,0,0,0,0,0,348,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,221,476,[422,536,1133],[486,537,1134],[486,477],[422,1193],[486,1194],[422,470],471,476,[486,536,1129],[487,537,1130],[486,538,1137],[423,539,1138],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[3777,4011],[3777,537],[3777,4018],[3777,419,539],[3777,294,540],3777,661,3777,3777,[3777,470],471,472,473,476,[3777,356,477],421,486,487,486,[487,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13768,13769,[13770,1206],[13771,1207],[13770,1206],[13771,1207],[13770,1437],[13771,1438],[13771,1439],13772,13773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,1530,1531,1532,[1531,3998],[1532,3999],1533,1534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,859,860,859,859,860,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1734,1178],[422,5638],[1740,1178],[980,3585],[915,3586],[980,3587],[1363,2017],[1947,2018],[1364,2019],528,525,527,[526,3155],3410,[594,3411],594,462,[525,3404],3405,3596,3597,3079,3080,3410,[1799,3474],[1735,2021],[1799,2022],[1798,2023],1798,[1798,524,3469],[463,3143],[527,3144],[530,3474,845],[595,846],[532,847],[532,848,772],[461,773],774,775,776,[526,777],[463,845,778],[526,846],[525,847],[526,848],[532,3404],3405,3406,3407,3410,[462,3472,18],[596,3473,19],[3405,20],[3079,653],[3080,654],[3081,655],[3082,656],3410,[461,3411],[463,1781],[532,1782],[527,1783],[463,1784],[595,3404],[461,3470],[526,3471],3405,3410,[527,3470],[462,3471,16830],3405,[462,3276],[462,3342],[463,3343],[463,3015],[527,3016],[528,3017],[526,3018],[463,3344],[528,3345,974],[525,3346,975],3347,[461,3348,16700],594,463,[461,974],[464,975],463,462,462,532,[463,3404],3405,3406,3407,3406,3407,[528,3341],[462,3277],527,[462,781],[526,782],[461,783],[462,784],463,525,527,463,462,464,[526,974],[462,975],464,526,461,528,461,[464,781],[464,782],[463,783],[528,784],464,462,526,528,463,463,525,462,[461,781],[525,782],[463,783],[462,3282,784],[462,3346],[3347,1589],[596,3470,1590],[526,3471,1591],[528,3472,1592],[532,3473],3340,[462,3276],[461,3277],528,463,528,528,528,528,464,528,[526,974],[461,975],527,528,528,463,462,464,463,528,462,462,1734,1799,1798,1735,[1734,3282],[1734,3283],3406,479,480,481,[80,1864,3341],[16,3342],[15,3343],[80,1604,3277],[79,1541],[79,1542],[16,1543],1798,1798,1799,1734,1735,1798,1735,1735,1798,[80,1862],[16,1671],79,[15,1605,3282],[15,1540,3342],[1798,3343],[1798,3277],[80,1861],[15,1862],[16,1863,3282],[16,1671,3343],[11,3344],[12,3345],[16,3342],[79,3343],[79,3277],80,16,80,80,[15,1668],1799,[1735,3282],[1735,3342],[1799,3343],[1799,3277],1735,[1746,1540],[1746,1544],1747,1809,1744,1746,[1744,1669],[1808,1862],[1810,1863],[1811,1671],1746,1744,1744,[1810,348],[1809,349],474,95,476,[423,536],[422,537],[487,536],[422,537],[487,538],[422,159],406,407,343,0,0,0,0,348,408,31,343,0,348,412,474,475,476,[3777,296,536],[3777,159],471,95,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,476,[487,536],[486,537],406,407,3890,31,410,411,408,409,3890,411,410,411,412,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,221,[423,222],[486,1197],[422,1198],487,423,423,487,[423,535],[486,540],[487,1193],[422,1194],[422,1201],[487,1202],[423,470],471,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,730,731,732,731,732,731,732,731,732,733,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,730,731,732,731,732,731,732,731,732,733,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,413,[3777,477],3777,3777,3777,[3777,483],484,[3777,294],[3777,292],[3777,228],[3777,232],3777,[3777,535],[3777,536],[3777,537],[3777,540],597,[3777,483],486,422,486,423,[423,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,[13834,1270],[13835,1271],[13834,1270],[13835,1271],[13834,1501],1502,[13835,1503],13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,1594,1531,1532,[1531,4062],[1532,4063],1597,1598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,3983,3984,[923,3985],3983,3984,[925,3985],926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,480,481,528,461,462,[462,3155],[596,3156],596,530,532,461,[596,3469],[532,3660],[464,3661],[462,3143],[461,3144],[1734,465,3474],1735,[1734,2085],2086,[1798,2087],[1735,2088],[1734,397,1938],[461,1939],594,[595,909],[463,910],[530,911],[461,912,836],837,838,839,840,841,[531,909,842],[525,910,843],[461,911],[525,912],596,[594,3469],[525,3470],[594,3471],[525,3474],[463,82],83,[532,3469,84],[528,3143,717],[527,3144,718],[525,3145,719],[526,3146,720],[532,3474],463,[463,1845],[463,1846],[527,1847],[531,1848],464,[596,1525],[596,1526],[526,3469,1527],[532,3474],532,[596,16894],[462,3469,16895],3340,3406,3407,3079,3080,3081,3082,3408,3409,3410,[527,3411],[595,16764],528,596,462,530,531,594,530,595,464,[594,3469,653],[528,3470,654],[530,3471,655],[528,3470,656],[528,3471],3405,[527,3276],[527,3277],[463,845],[525,846],[525,847],[463,848],527,461,461,463,463,528,462,527,527,461,464,461,463,[525,845],[462,846],[464,847],[463,848],464,463,526,461,527,525,525,528,[464,845],[528,846],[464,847],[464,3155,848],3410,[526,3411,1653],[525,1654],[595,1655],[464,1656],461,[594,3404],3340,[461,3341],[464,3277],[527,653],[461,654],[464,655],[461,656],526,462,528,464,463,461,464,525,461,464,528,528,464,528,[1798,337],1735,1799,1799,[1798,3282],[1799,3346],3347,[1799,3470],[1798,543],[1798,544],[1735,545],3405,3406,3407,[1735,3341],[1799,3277],1798,1734,1734,1735,1799,1735,1734,1734,1735,1798,[80,1608],[79,3282],[80,3344],[79,3345],[80,1669,3346],3406,3407,[15,1670,3341],[16,3342],[15,3343],[15,3346],3214,3408,3409,[3406,1036],[3407,1037],[143,3276],[144,3277],15,80,[15,3282],[79,3342],[15,1669,3343],[1798,3346],3406,3407,[1734,3276],[1798,3277],1798,[1744,1608],1746,1810,1744,1810,1811,1811,1747,1808,[1808,348],[1745,408],[1811,409],[1811,412],413,[3777,538],[3777,159],[3777,291,540],487,423,486,486,423,486,[420,470],471,342,343,0,0,348,349,472,95,407,411,412,476,[423,538],[423,539],[486,540],[3777,360],3777,[3777,535],[3777,159],[421,537],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[486,540],422,422,[3777,424,470],471,3954,95,474,475,472,473,3954,475,474,475,476,[487,536],[486,537],406,407,343,0,0,348,408,409,343,0,0,0,0,285,[550,286],[3777,551],421,420,[3777,549],421,486,[486,1199],[486,1200],487,423,486,423,[486,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,794,795,796,795,796,795,796,795,796,797,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,794,795,796,795,796,795,[796,3900],[795,3901],796,797,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[3777,286],3777,3777,[3777,227],[3777,228],485,487,484,485,487,484,[3777,228],[3777,232,616],[3777,616],[3777,616],[3777,616],[3777,616],[3777,547,616],[3778,550,616],[3778,551,616],[421,616],422,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13898,13899,13898,13899,[13898,1565],[13899,1566],[13899,1567],13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,1594,1595,[1595,1790],[1596,1791],[1595,1792],1597,1598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,4047],[860,4048],[860,4049],[859,4047],[860,4048],[861,4049],862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[525,543],[528,544],[462,545],463,527,461,[526,3219],[530,3220],530,787,788,463,462,464,530,463,[462,1938],[1734,529,1939],1734,[1734,2149],2150,[1799,2151],[1799,2001,2152],[1735,2002],[1799,524,2003],[531,2004],527,[463,974],[530,975],[525,900],901,902,903,904,905,[525,906],[463,974,907],[462,975],463,[595,16830],594,[525,3282],[532,415],[532,416],[528,417,146],147,[532,148],[527,781],[464,782],[525,783],[528,784],531,462,463,463,526,464,527,[528,1589],[596,1590],[530,1591],[530,1592],659,660,525,[596,3404],[528,3470],[594,3471],[461,3143],[530,3144],[525,3145],[462,3146],[527,3472],[528,3473],[462,3474],464,594,528,464,462,[527,653],[462,654],[528,655],[461,656],659,660,[526,717],[596,718],[525,719],[531,720],531,[526,3469],3340,[462,3276],[464,3277,909],[528,910],[525,911],[463,912],461,528,464,[527,3282],[464,3342],[528,3343],[528,3342],[525,3343],[527,3344],[527,3345],[461,3277],526,527,[464,909],[525,910],[462,911],[525,912],462,527,462,527,526,464,463,464,[464,909],[464,910],[528,911],[461,3219,912],[525,3220],[463,1717],[461,1718],[526,1719],[594,1720],463,531,[594,3404],3405,[463,3148],[463,717],[525,718],[463,719],[526,720],461,462,462,526,464,528,527,461,[462,653],[461,654],[527,655],[462,656],464,525,[1735,401],1734,1798,1799,[1735,3155],3410,[1798,3411],1734,1799,[1735,1938],[1734,1939],[1734,3469],[1734,3470],[1735,3471],3405,[1799,3276],[1798,3342],[1798,3343],[1799,3277],1799,1799,1735,1735,1735,1734,1799,[15,1672,3282],[80,3283],3408,3409,3410,[79,3470],[15,3471],3405,3406,3407,3410,[16,3471],[15,3472],[80,3473],[79,3470,1100],[15,3471,1101],3340,[208,3341],[79,3342],[79,3343],[80,3346],3406,3407,3410,[15,1863,3470],[1734,3471],3340,[1734,3341],[1798,3277],[1746,1672],1810,1809,1810,1811,1811,1808,1810,[1746,348],[1808,349],472,473,476,[3777,477],597,3777,[3777,419],487,487,486,423,423,420,[3777,552],[3777,535],406,407,408,31,412,413,[423,536],[486,159],471,280,476,[486,540],422,486,423,[3777,424],3777,597,3777,[3777,356],[421,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,221,[422,222],487,487,422,[3777,488],[3777,535],[3777,4018],[3777,159],[3777,291,538],[422,539],[423,536],[3777,296,537],[3777,4018],[3777,483,539],[486,538],[422,539],[486,540],420,[3777,550],[3777,551,470],471,407,3890,31,412,472,473,342,343,0,0,348,349,[3777,350],3777,[3777,547],[3777,358],3777,[3777,547],421,487,486,487,486,423,487,[422,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,860,859,860,924,860,860,924,923,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,860,859,860,924,860,[860,3964],[924,3965],923,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[3777,158],3777,[3777,483],422,422,422,487,487,486,487,486,680,680,680,680,680,680,680,680,[483,680],423,[423,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13835,13834,13835,13834,13899,13835,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1657,1658,1659,[1532,1854],[1595,1855],[1596,1856],1661,1662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,[859,1242],[923,1243],[923,1244],924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,730,731,732,731,732,731,732,731,732,731,732,731,732,733,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1808,285,616],[423,286,616],[486,616],[3777,424,616],[3777,616],[3777,292,616],[485,616],[487,616],[487,213,616],[1300,214,616],462,525,464,[461,3155],[596,3156],528,851,852,595,531,530,461,[526,2001],[1798,589,2002],[1735,593,2003],[1798,2004],[1735,2213],[1799,2214],[1735,2215],[1735,2065,2216],[1734,2066],[1798,397,2067],[463,2068],526,526,526,[526,964],965,966,967,968,969,[527,970],[594,971],463,595,[464,16894],[464,3282,16895],[464,3346],3406,3407,[525,3214,210],[463,3276,211],[463,3277,212],[461,845],[531,846],[531,847],[526,848],527,527,464,528,462,594,526,[527,1653],[527,1654],[526,1655],[594,1656],723,724,594,596,530,525,527,528,595,526,594,531,462,463,[596,18],[525,19],[526,20],464,[525,717],[596,718],[596,719],[596,720],723,724,[464,781],[596,782],[461,783],[527,784],526,525,[532,3404],3340,[462,3341],[463,3342,974],[528,3343,975],[464,3277],463,464,[462,3282],[461,3283],[3406,653],[3407,654],[3406,655],[3407,656],3408,3409,[464,3341],[463,3342],[464,3343],[527,3342],[464,3343,974],[525,3277,975],528,462,463,527,464,527,461,464,528,463,[463,974],[461,3282,975],[526,3283],[462,3284],[526,1781],[462,1782],[526,1783],[595,1784],527,[461,16830],526,[525,3147],[463,3148],[463,781],[462,782],[525,783],[525,784],526,525,463,464,461,461,528,527,[528,717],[462,718],[462,719],[463,720],527,463,[1798,465],1798,1735,1798,[1734,3219],[1799,3220],1799,[1798,402],[1734,2001],[1799,2002],[1734,2003],[1799,2004],1735,1799,[1745,1736,3469],3340,3406,3407,[1799,3341],[1799,3277],1735,1735,1734,1734,1799,[1735,3282],[80,1736,3346],3347,[11,3472],[12,3473,1036],[80,3474,1037],80,[15,1604],[16,1540,3469],[15,1541,3470],[15,1542,3471],[79,1543,3474],[15,1607],15,16,[80,1164],[79,1165],[79,3404],3405,3406,3407,3410,[15,1544,3470],[79,3471],[80,3474],16,[16,1668],[1734,3404],3405,[1799,3212],[1744,1736],1744,1745,1809,1811,1744,1746,[1808,348],[1808,412],413,[3777,488,536],[3777,537],[3777,540],3777,3777,3777,[3777,547],421,423,422,423,420,[3777,358],3777,3777,[3777,470],471,472,95,476,[3777,291,477],423,423,[420,535],[3777,539],[421,540],486,487,486,487,484,[3777,295],3777,3777,3777,[3777,483],[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,285,[487,286],423,423,420,[3777,552],3777,3777,3777,[3777,419],[487,1387],[487,1387],[3777,360],3777,[3777,547],[3777,548],[3777,549],[3777,550],[3777,359],3777,3777,[3777,535],471,3954,95,476,[486,536],[422,537],406,407,3883,31,412,413,[3777,414],3777,3777,3777,3777,3777,[3777,483],422,422,486,422,422,422,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,860,859,859,923,924,859,860,[859,3261],[923,3262],3263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3069,[860,3070],[860,3071],859,859,923,924,859,860,923,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[3777,222],3777,[3777,291],487,423,422,486,422,422,486,423,744,744,744,744,744,744,744,744,[483,744],422,[423,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13898,13899,13898,[13835,13253],13898,13899,13899,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1721,1722,1723,1918,1919,1920,1725,1726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,986,987,[859,1306],[860,1307],[924,1308],988,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,794,795,796,795,796,795,796,795,796,795,796,795,796,797,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1810,680],680,680,680,680,680,680,680,680,[1300,680],463,462,527,[464,3219,653],[525,3220,654],[532,655],[594,656],527,527,[595,339],461,526,[1798,400,2065],[1734,2066],[1798,2067],[1735,2068],[1735,339],1798,1735,[1734,2129],[1735,2130],[1798,2131],[1799,332,2132],463,461,[527,653],[528,1028,654],[1029,655],[1030,656],1031,[1032,653],[1033,654],[527,1034,655],[462,1035,656],528,527,525,[525,3155],3410,[525,3470],[528,3471],[462,2122,3472],3340,[528,3212],[462,909],[462,910],[527,911],[525,912],[530,132],[463,133],[463,134],[464,135],[461,136],[464,137],[525,138],[594,1717,139],[525,1718],[527,1719],[527,1720],525,525,[532,653],[464,654],[526,655],[525,656],[532,132],[532,133],[527,134],[596,135],[532,136],[461,137],[527,138],[594,139],[527,82],[595,83],[531,84],526,[463,781],[461,782],[594,783],[594,784],527,530,[2054,845],[528,846],[527,847],[594,848],530,525,530,[596,3404],3405,3406,3407,[463,3341],[526,3532],[527,3533],[526,3346],3347,[464,3470,717],[532,3471,718],[596,3470,719],[532,3471,720],[463,3472],[525,3473,653],[3405,654],[3406,655],[3407,656],3406,3407,[461,3341],[462,3277],527,462,526,528,461,526,463,[528,3282],[462,3344],[525,3345],[527,3346],3347,[532,3348,16697],[464,1845],[525,1846],[527,1847],[594,1848],461,[595,16894],[464,16895],[462,3211],[526,3212],[461,845],[527,846],[527,847],[527,848],464,528,462,[462,653],[464,3282,654],[462,3344,655],[461,3345,656],[526,3277],[528,781],[461,782],[528,783],[527,784],528,525,462,1799,1735,[1798,3282],[1798,3283],[1798,3284],1735,1799,[1798,2065],[1799,2066],[1734,2067],[1734,2068],1799,1798,[1747,1800],[1745,3404],[1808,1603,3470],[1735,3471],3405,[1735,3148],1734,1798,1734,1799,[1734,3282],[1734,3346],3410,[16,1607,3411],75,[76,1100],[80,1101],80,[16,1603],1799,1734,1799,1798,1798,[15,1540],[79,1544],80,16,15,[80,3469],[80,1539,3470],[1798,3471],[1799,3474],1799,[80,1606],15,15,15,[16,1669],[1799,3147],[1734,3148],[1811,1608],1746,1808,1808,1744,[1811,1539],[1744,1541],[1808,1543,221],476,[423,477],484,[3777,294],3777,3777,[3777,227],[3777,232],3777,[3777,356],421,423,486,[3777,488],3777,3777,3777,[3777,292],[485,535],[422,536],[3777,488,159],[3777,540],[3777,355],423,486,[3777,488],3777,[3777,356],[3777,548],421,486,486,486,484,[3777,229],[3777,230],[3777,231],485,[422,341],342,343,0,0,0,0,348,408,409,343,0,0,348,349,[422,350],423,487,[3777,488],3777,661,3777,[3777,292],485,422,486,[3777,424],3777,3777,3777,3777,3777,3777,[3777,292],[3777,229,1129],[3777,231,1130],[3777,295,535],[3777,4018],[3777,159],[421,540],[422,5638],422,[487,470],471,3947,95,476,[3777,230,477],[3777,231],[3777,232],3777,3777,3777,[3777,292],485,422,487,420,[3777,549],421,487,[423,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,860,860,924,860,923,860,860,[859,3325],[924,3326],3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3133,[923,3134],[859,3135],860,924,860,923,860,860,859,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[3777,286],3777,[3777,355],486,486,420,[3777,548],[3777,549],421,423,420,[3777,552,808],[3777,808],[3777,808],[3777,808],[3777,808],[3777,808],[3777,808],[3777,292,808],[485,808],487,422,[422,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13960,13961,13962,13963,[13834,13316],[13899,13317],[13834,13318],13963,13963,13964,13965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1370,1371,1372,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,859,[860,3834],[859,3835],860,859,860,859,860,859,[860,3834],[859,3835],860,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1747,744],744,744,744,744,744,744,744,744,[1300,744],461,463,525,[463,3090,717],[462,3026,718],[526,3027,719],[531,720],594,530,464,526,[1735,337],[1799,2129],[1735,2130],[1798,2131],[1735,2132],1799,1798,1735,[1799,2193],[1798,2194],[1799,2195],[1734,396,2196],527,461,[462,717],[461,1092,718],[1093,719],[1094,720],1095,[1096,717],[1097,718],[461,1098,719],[463,1099,720],461,525,[528,339],[527,3219],[526,3220],[466,3028],[462,2374],[462,2186],[1286,3211],[463,3212],464,[525,974],[526,975],527,[527,196],197,198,199,200,201,[461,202],[464,1781,203],[462,1782],[462,1783],[596,1784],595,464,[531,717],[527,718],[595,719],[525,720],[594,196],197,198,199,200,201,[527,202],[531,203],[525,146],[527,147],[527,148],531,[462,845],[463,846],[531,847],[594,848],525,596,[461,909],[530,910],[527,911],[596,912],531,527,461,525,[525,3469],[463,3470,16700],[464,3471],3405,3596,3597,3410,[461,3411],[531,781],[463,782],[463,783],[530,784],462,[596,717],[528,3469,718],[532,3470,719],[527,3471,720],[526,3470],[525,3471],3405,[525,3276],[525,3277],[462,653],[527,654],[463,655],[526,656],525,[525,3282],[526,3283],3408,3409,3410,[527,3411],[596,16761],531,526,594,531,594,528,463,[527,3275],[525,3276],[526,3277,909],[526,910],[461,911],[464,912],461,462,464,[525,3282,717],[528,3283,718],[3408,719],[3409,720],[528,3341],[463,3277,845],[526,846],[527,847],[526,848],463,527,[1798,399],1799,[1799,3282],[1735,3346],[3347,1938],[1798,3348,1939],1735,1799,[1734,2129],[1735,2130],[1735,2131],[1734,2132],1799,[1810,1860],[1808,1864],1745,[1745,1667],1735,[1799,3147],[1798,3148],1799,1799,1799,1735,[1798,3219],3410,[1734,3411],[80,1608],16,[15,1164],[16,1165],15,[15,1731],1735,1799,1798,1799,1798,1734,[79,1608],80,79,80,[79,1605],1735,1798,1735,1798,1798,[16,1540],[79,1544],15,16,[80,1859,3211],[1734,3212],[1810,1672],1811,1745,1809,1745,[1747,1603],1734,[1734,285],[422,286],486,422,484,[3777,294],[3777,292],485,[3777,296],3777,[3777,292],485,487,422,484,[3777,294],3777,[3777,293],485,486,420,[3777,358],3777,[3777,419],420,[3777,548],[3777,358],3777,597,3777,[3777,547],421,486,487,420,421,486,423,423,[420,405],406,407,343,0,0,348,349,472,473,407,410,31,412,413,[423,414],423,420,[3777,358],3777,[3777,227],[3777,228],485,487,487,487,484,[3777,228],[3777,228,1199],[3777,229,1200],[3777,230],[3777,231,1199],[3777,228,1200],485,[486,1193],[486,1194],[3777,296],3777,3777,[3777,357],421,487,486,[3777,296,535],[3777,4011],[3777,159],[3777,419,540],[423,5638],486,484,[3777,229],[3777,230],[3777,231],485,[486,1129],[487,1130],420,[3777,358],3777,[3777,291],422,[423,405],406,407,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,860,860,923,860,[860,1242],[859,1243],[923,1244],[860,3389,20361],[924,3390],3391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3197,[924,3198],[923,3199],860,[924,1242],[923,1243],[859,1244],860,924,924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[3777,222],661,[3777,419],422,420,[3777,359],3777,37,[3777,357],[3777,548],[3777,358],[3777,149],[3777,24],[3777,27],[3777,227,158],[3777,228],[3777,231],[3777,228],485,423,422,422,423,[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14024,14025,14026,14027,13380,13381,13382,14027,14027,14028,14029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,924,923,924,923,924,923,924,923,924,923,924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1745,349,808],[3777,350,808],[3777,808],[3777,808],[3777,808],[597,808],[3777,808],[3777,808],[3777,277,808],[1299,278,808],525,526,461,[526,781],[463,3090,782],[528,3026,783],[462,3027,784],463,596,594,527,[1798,401],[1735,2193],[1735,2194],[1734,2195],[1799,2196,193],[1799,194],[1799,193],[1734,194],1734,[1735,2258],[1735,2259],[1735,460],528,526,[527,781],[526,1156,782],[462,1157,783],[527,1158,784],[461,1159],[525,1160,781],[463,1161,782],[463,1162,783],[462,1163,784],461,527,464,[462,3090],[464,3091],[467,2185,3092],[462,2186],1286,[1286,3211],[659,3212],660,462,463,464,[463,260],261,262,263,264,265,[527,266],[594,1845,267],[525,1846],[464,1847],[1990,1848],531,595,[464,781],[531,782],[464,783],[528,784],[528,260],261,262,263,264,265,[461,266],[532,267],[461,210],[530,211],[532,212],596,[526,909],[462,910],[530,911],[526,912],463,527,464,[785,974],[786,975],527,[525,646],[464,647],[595,648],531,464,[528,16764],595,[530,3469],[528,3660],[462,3661],[525,3474],461,[528,845],[462,846],[532,847],[462,848],462,[595,781],[528,782],[463,783],[463,784],595,532,[531,3469],3340,[463,3148],[525,717],[527,718],[525,719],[462,720],[462,3282],[528,3346],3347,[461,3472],[596,3473],[463,3474,1525],[463,1526],[595,1527],595,595,528,525,532,461,527,[594,3339],3340,[461,3341],[526,3342,974],[462,3343,975],[527,3536],[463,3537],[527,3342],[462,3343],[527,3346,781],[3347,782],[463,3472,783],[464,3473,784],3405,[463,3148,909],[527,910],[528,911],[463,912],[1735,589],[1735,399],1798,1798,[1799,3155],[3410,2001],[1798,3411,2002],[1734,2003],[1798,2004],1734,[1735,2193],[1799,2194],[1734,2195],[1799,2196],[1808,1671],1746,1746,1810,[1808,1731],1799,[1799,3211],[1798,3212],1734,1798,1735,1799,[1734,3219],[1798,3220],1735,[79,1672],15,16,15,[15,1604],1735,1735,1734,[1799,3282],[1798,3342],[1799,3343],[1734,3344],[15,1736,3345],[16,3277],16,80,[15,1795],1734,1735,1735,1798,1799,1798,[15,1800],79,11,[12,3275],[15,1795,3276],[1808,1736,3277],1808,[1747,1036],[1744,1037],1810,[1747,1667],1735,[1735,156],[1798,92],[423,93],423,486,484,485,487,[3777,424],3777,[3777,356],421,487,423,422,484,[3777,228],485,487,422,484,[3777,232],3777,[3777,547],[3777,358],3777,3777,3777,3777,3777,3777,[3777,291],423,420,[3777,358],[3777,547],421,423,420,[3777,552],[3777,470],471,407,408,31,412,413,[486,536],[487,537],471,474,95,476,[3777,549,477],[3777,550],[3777,551],[3777,359],3777,[3777,293],[485,1385],423,420,[3777,548],421,423,487,422,423,487,423,423,486,423,487,487,[3777,360],3777,3777,3777,[3777,483],487,423,[3777,360],3777,3777,[3777,483],422,486,486,486,423,422,423,[422,1193],[486,1194],[3777,488],3777,3777,[3777,355],422,487,[487,470],471,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,986,987,988,987,988,[860,1306],[923,1307],[924,1308],988,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,986,987,988,[859,1306],[859,1307],[924,1308],987,988,988,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[3777,286],3777,[3777,483],422,[3777,488],3777,597,101,3777,3777,[3777,86],87,91,88,92,[423,93],[487,1178],422,422,423,422,422,422,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,859,[860,3897],[859,3898],860,859,860,859,860,859,860,859,860,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,464,526,[527,845],[462,846],[528,3090,847],[528,3091,848],[464,3092],528,526,526,[1798,465],1799,[1735,2258],[1798,2259],[1799,257],[1798,258],[1735,257],[1735,258],1799,1799,1734,[1798,524],525,526,[464,845],[464,846],[526,847],[464,1222,848],[464,1223],[528,1224,845],[461,846],[527,847],[528,848],463,464,526,461,[463,3219],[1286,3220],1286,1286,[1286,3275],[723,3276],[724,3277],526,464,528,[530,324],325,326,327,328,329,[526,330],[530,331],526,526,595,462,594,[526,845],[526,846],[595,847],[531,848],[596,324],325,326,327,328,329,[530,330,653],[595,331,654],[462,655],[595,656],530,527,595,[596,974],[464,975],462,527,595,595,849,850,[531,709],[595,710],711,[525,712],[461,713],531,594,525,461,596,462,527,462,[531,909],[594,910],[532,911],[595,912],596,[532,845],[531,846],[464,847],[532,848],787,788,462,[528,3147],[463,3148],[525,781],[526,782],[462,783],[461,784],[463,3155],3410,[527,3411],525,525,[462,1589],[527,1590],[530,1591],[528,1592],594,530,594,463,526,527,525,[464,3404],3405,3406,3407,3600,3601,3406,3407,[3410,845],[461,3411,846],[531,847],[526,848],[596,3147],[462,3148],[527,974],[527,975],[1735,529],1735,1735,1799,1798,[1735,3219],[1799,3220,2065],[1734,2066],[1735,2067],[1735,2068],1735,1799,[1798,2258],[1798,2259],[1746,1670],1746,1744,1746,[1747,1604],1734,1734,[1735,3275],[1734,3276],[1735,3277],1734,1799,[1735,3282],[1734,3283],[1735,3284],1799,[15,1736],15,79,80,[80,1795],1735,1799,[1734,3282],[1798,3283],3406,3407,3408,3409,[80,3341],[16,3342],[79,1539,1952],[1735,3277],1735,1734,1735,1735,1798,1798,1798,[16,1607],75,[76,3339],3340,[1809,1671,3341],[1744,3277],[1746,1100],[1745,1101],1808,[1744,1731],1735,1734,[1734,156],[1734,157],[487,158],487,486,423,422,484,[3777,294],[3777,227],485,422,487,423,423,422,487,486,422,486,[3777,488],3777,3777,3777,3777,[3777,292],[3777,232],3777,3777,3777,[3777,355],422,484,[3777,294],[3777,227],485,420,[3777,358],[3777,292],[3777,228],[485,535],471,472,95,476,[3777,291,477],486,486,[422,535],[422,538],[3777,296,159],[3777,540],3777,3777,3777,3777,3777,[3777,291],423,420,[3777,358],3777,[3777,291],486,423,420,[3777,548],[3777,549],421,423,423,486,422,423,[3777,424],[3777,293],[3777,228],[3777,294],[3777,356],[3777,548],[421,5638],[3777,424],3777,[3777,227],485,487,487,[487,348],[422,408,3890],[487,409,31],[423,410],[487,411],[420,343],[3777,551],[3777,552],3777,3777,[3777,419],486,486,486,[423,535],[487,536],[486,537],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1052,1051,1052,1370,1371,1372,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1052,1370,1371,1372,1051,1052,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[3777,93],[3777,357],[3777,548],[3777,552],3777,[3777,23],[3777,27],[3777,24],[3777,24],150,151,0,0,156,157,[422,158],423,487,423,487,422,[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,[924,3961],[923,3962],924,923,924,923,924,923,924,923,924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,527,526,[527,909],[461,910],[527,911],[462,3155,912],[595,3156],462,526,526,[1798,399],1799,[1734,193],[1798,194],[1798,3996],[1799,3997],[1799,193],[1734,194],[1798,193],[1734,194],1735,[1734,332],463,527,[526,909],[528,910],[526,911],[464,912],463,[463,909],[461,910],[461,911],[526,912],527,464,466,461,[527,3155],[1286,3156],1478,1286,[1286,3339],3405,[527,3212],464,527,527,[532,388],389,390,391,392,393,[532,394],[461,395],462,594,462,527,461,[527,909],[526,910],[462,911],[462,912],[596,388],389,390,391,392,393,[595,394,717],[462,395,718],[462,719],[463,720],2054,[531,16830],525,596,527,464,525,596,[527,16830],528,[526,772],[531,773],774,775,776,[531,777],[532,778],596,527,532,531,595,528,596,462,[528,974],[525,975],530,595,[532,909],[530,910],[463,911],[595,912],851,852,531,[527,3211],[464,3212],[527,845],[463,846],[525,847],[527,848],[461,3219],[594,3220],531,531,528,[528,1653],[530,1654],[596,1655],[532,1656],463,461,530,532,527,527,526,[530,653],[463,3469,654],[595,3470,655],[1735,337,3471,656],[1734,3664],[1799,3665],[1798,524,3470],[594,3471],[462,3474,909],[461,910],[528,911],[528,912],[464,3211],[527,3212],525,462,[1798,593],1798,[1734,3282],[1798,3342],[1798,3343],[1735,3283],[1798,3284,2129],[1735,2130],[1798,2131],[1798,2132],1735,1734,1735,[1810,1864],1811,1744,1809,[1808,1605],1799,1798,1734,[1735,3339],3340,[1799,3341],[1798,3342],[1798,3343],[1799,3346],3347,[1798,3348],1734,[80,1671],15,79,[80,1539],1734,1734,[1734,3282],[1798,3346],3347,[1799,3470],[1799,3471],[15,1608,3472],[15,3473,1036],[3405,1037],3406,2016,[1798,3341],[1734,3277],1799,1798,1735,1734,1799,1799,1735,[79,1606],16,[15,1605,3404],3405,[1810,3212],[1810,1164],[1808,1165],1747,[1746,1795],1734,1735,[1799,3282],[1799,3342,221],[487,222],487,487,486,420,421,484,485,422,422,422,423,487,487,486,420,[3777,550],[3777,551],[3777,358],3777,3777,[3777,227],[3777,228],485,[3777,296],3777,3777,3777,[3777,419],486,422,484,485,487,[3777,488],3777,[3777,291],486,423,[486,535],[3777,488,536],[3777,159],[3777,540],[3777,355],423,422,486,422,[3777,424],3777,3777,3777,[3777,292],[3777,232],3777,[3777,419],487,[3777,296],3777,3777,[3777,419],486,420,[3777,358],3777,3777,[3777,356],[3777,550],[3777,551],421,486,422,484,485,[487,5638],[3777,488],3777,3777,[3777,357],[3777,552],3777,[3777,483],422,486,[486,348],[423,349],3954,95,474,475,[484,342],[3777,343],3777,3777,[3777,293],485,486,487,423,487,487,[423,1129],[486,470,1130],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[3777,158],3777,3777,[3777,86],87,88,91,88,151,0,0,0,0,221,[422,222],422,423,486,487,[486,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,859,[860,4025],[859,4026],860,859,860,859,860,859,860,859,860,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,461,528,528,[462,974],[462,975],[461,3219],[531,3220],530,532,[1799,400],1799,1799,[1734,257],[1735,258],[1798,4060],[1799,4061],[1798,257],[1734,258],[1734,257],[1799,258],[1799,653],[1799,396,654],[464,655],[528,656],526,[528,974],[464,975],528,462,527,[528,974],[526,975],461,525,462,463,527,[528,3219],[1286,3220],1286,1286,[1286,3020],[527,3021],[528,3085],525,[463,653],[461,654],[532,452,655],[453,656],454,455,456,457,[526,458],[596,459,16830],595,530,464,462,464,462,[595,974],[525,975],526,[595,452],453,454,455,456,457,[464,458,781],[462,459,782],[463,783],[530,784],461,[461,16894],[530,16895],526,[595,653],[462,654],[532,655],[463,656],[527,16894],[596,16895],[595,836],837,838,839,840,841,[526,842],[532,843],464,464,462,[526,653],[527,654],[530,655],[525,656],530,463,526,525,594,[462,974],[528,975,16830],527,596,461,527,[525,3275],[463,3276],[527,3277,909],[526,910],[462,911],[463,3282,912],[464,3283],[531,3284],595,527,595,[527,1717],[595,1718],[596,1719],[525,1720],526,596,532,464,1926,461,461,[462,717],[528,718],[526,719],[1734,401,720],1734,1799,[1735,332],528,526,[659,974],[660,975],526,[462,3275],[463,3276],[525,3277],[1735,400],1798,[1734,3282],[1735,3283],3406,3407,3347,[15,1731,3348,2193],[1799,2194],[1734,2195],[1734,2196],1734,1735,[1744,1670],1744,[1808,1604],[1746,1541],[1811,1543],1799,1735,1734,1735,1799,[1799,3404],3405,3406,3407,3410,[1735,3411],1734,[80,1864],79,80,[79,1605],1734,[1734,1938],[1735,1939],[1735,3155],3410,[1799,3411],1798,1798,[15,1672],[80,1100],[79,3469,1101],[79,1603,3470],[1799,2080],3405,[1798,3148],1799,1734,1799,1735,1735,1798,1798,[16,1670],15,[15,1795],[1747,1608,3275],[1809,3276],[1746,3342],[1810,3343],[1747,1604,3277],1798,1798,[1734,3282],[1799,3283],[3406,285],[422,286],422,486,420,[3777,358],[3777,357],421,487,487,423,[423,23],[486,27],[487,24],[423,28],420,[3777,358],3777,3777,[3777,227],[3777,294],[3777,292],485,486,422,[3777,360],3777,3777,3777,[3777,547],421,486,486,487,420,[3777,358],3777,[3777,419],486,486,420,[3777,358],3777,3777,[3777,419],423,423,422,422,[3777,488],3777,[3777,227],[3777,228,1129],[485,1130],484,[3777,228],485,423,[3777,424],3777,[3777,293],485,423,484,[3777,294],3777,3777,3777,597,3777,[3777,357],421,487,422,487,422,[484,1133],[3777,228,1134],[3777,295],3777,3777,[3777,292],485,486,[422,348],[486,412],413,[3777,536,4018],[3777,537,159],[3777,483,538],[487,539],406,[3777,407],[3777,293,343],[3777,228],[485,1129],[487,1130],420,421,487,423,486,[422,1193],[422,1194],[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[3777,24],[3777,27],150,151,0,0,0,0,0,0,0,0,285,[487,286],486,423,487,486,[486,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,[924,4089],[923,4090],924,923,924,923,924,923,924,923,924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,528,463,463,527,[527,3282],[461,3283],[461,3284],596,[1798,529],1735,1735,1734,1799,1799,1799,1735,1798,[1734,1938],[1799,1939],1798,[1798,717],[1734,460,718],[526,719],[463,720],464,[461,339],528,[526,16830],461,527,462,525,525,527,[528,16830],527,[528,3282],[527,3283],[462,3284],[461,1993],[527,1994,3083],[526,3084],[461,3085,16697],462,526,[462,717],[463,718],[525,516,719],[517,720],735,736,737,521,[532,522],[462,523,16894],[530,16895],596,594,461,464,531,595,462,596,[596,516],517,735,736,737,521,[595,522,845],[526,523,846],[525,847],[462,848],532,464,531,530,[463,717],[530,718],[595,719],[531,720],594,596,[594,900],901,902,903,904,905,[462,906],[532,907],532,532,594,[596,717],[464,718],[461,719],[532,720],464,[596,653],[461,654],[528,655],[530,656],528,[526,16894],[596,16895],462,595,464,[595,3339],3340,[525,3341],[464,3532,974],[527,3533,975],[461,3346],3347,[596,3348],527,528,526,[1926,1781],[596,1782],[595,1783],[595,1784],532,526,531,464,530,461,528,[530,781],[526,782],[531,783],[1734,465,784],1734,[1734,1938],[1735,396,1939],530,464,723,724,528,[461,3282,3339],3340,[1799,529,3341],[1735,3342],[1799,3343],[1734,3346],3347,[1735,3470],[1736,3471],[16,3411],[79,1795],[1734,2258],[1734,2259],1734,1798,1734,[1744,1606,338],1810,[1810,1795,1938],[1799,1939],1798,1734,1798,[1734,404],1799,1799,1798,[1800,3469],[16,3470],[79,3471],[16,1603,3474],1735,1798,[80,1541],[15,1542],[80,1543],1798,[1798,2001],[1735,1954,2002],[1799,2003],[1735,3219,2004],[1799,3220],1734,1799,1798,[15,1736],[15,1164],[79,1165],[16,1667],1799,[1798,3147],[1734,3148],1734,1734,1799,1799,1734,1798,[79,1608],[80,1036],[15,1037],[15,1603],[1810,1672,3339],3340,3406,3407,[1809,1795,3341],[1735,3342],[1798,3343],[1735,3346],3347,[1810,3470,156],[1747,3472,92],[422,158],423,[3777,296],3777,3777,[3777,483],487,422,[487,86],[1299,87],[1364,88,1446],[1299,91,1447],[1364,92,1448],[484,93],[3777,294],3777,3777,[3777,291],484,485,422,422,422,[3777,424],3777,[3777,227],[3777,294],3777,[3777,291],487,422,423,[3777,488],3777,[3777,292],485,423,423,[3777,296],3777,3777,3777,[3777,357],421,487,487,487,[3777,488],3777,[3777,483],[487,1193],[486,1194],423,423,486,486,484,[3777,228],485,422,423,423,484,[3777,231],[3777,228],[3777,295],3777,3777,[3777,292],[485,1129],[423,1130],486,486,487,[422,1197],[423,1198],[3777,296],[3777,227],[3777,228,1129],[485,1130],423,423,[422,285],476,[3777,295,477],3777,3777,[3777,483,1199],[486,1200],[487,470],471,[422,342],[423,343],[487,1193],[423,1194],[3777,488],[3777,356],421,422,423,486,[423,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10419,10420,10421,10422,10421,10422,10421,10422,10421,10422,10421,[10422,12885],10421,10422,10421,[10422,12885],10421,10422,10421,10422,10421,10422,10421,10422,10422,10423,10424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,151,0,0,0,0,0,0,0,0,0,156,92,[422,93],422,487,[423,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,4028],[860,4029],859,860,859,860,859,860,859,860,[859,4028],[860,4029],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[463,653],[525,654],[462,655],[528,656],462,[463,3155],3347,[595,3348],461,[1799,400],1735,1799,1734,1735,1798,[1734,403],1735,[1735,2001],[1798,2002],[1799,2003],[1798,2004],[1798,781],[1734,524,782],[462,783],[528,784],526,659,660,[462,16894],[461,16895],528,463,526,464,527,[464,16894],[528,3282,16895],[525,3346],3347,[463,3732],463,[461,3147],[528,3148],[464,16761],528,464,[527,781],[464,782],[464,580,783],[525,581,784],[1741,799],[1741,800],[1805,801],[463,585,16697],[528,586],596,527,594,525,525,594,595,461,596,530,[594,580],[526,581,16697],[1741,529,799],[1741,800],[1805,524,801],[531,585],[464,586,909],[594,910],[594,911],[530,912],464,528,594,531,[527,781],[531,782],[532,783],[527,784],526,462,[595,964],965,966,967,968,969,[527,970],[526,971],464,527,531,[526,781],[528,782],[526,783],[526,784],530,[461,717],[532,718],[530,719],[532,720,340],595,528,528,526,531,596,596,[530,3404],3405,3596,3597,3410,[463,3411],594,595,531,464,[525,1845],[526,1846],[531,1847],[595,1848],528,532,[532,1525],[525,1526],[595,1527],461,785,[786,845],[595,846],[461,847],[1735,529,848],[1798,2001],[1798,2002],[1798,460,2003],[461,2004],525,[594,16830],462,[462,3282],[596,3346],[3347,3404],3405,3406,3407,3410,[1799,3411],1799,[79,1800],16,[16,1668],1735,1798,1735,1799,1734,1734,[1744,1540,2001],[1799,2002],[1734,2003],[1798,2004],1735,1798,1799,1799,1798,1735,[15,1864],80,80,[15,1731],1735,1798,1734,1734,1735,1735,[1798,2017,2065],[1799,2018,2066],[1798,2019,2067],[1798,3090,2068],[1734,3091],[1799,3092],1799,1799,[15,1800],79,80,[16,1731],1798,[1735,3275],[1734,3276],[1799,3277],1798,1799,1734,1735,1799,[79,1672],[11,1100],[12,1101],[16,1667],[1811,1736],[1809,3404],[1811,3470],[1746,3471],3405,3406,3407,3410,[1744,3411],1810,[1808,221],[423,222],423,[3777,360],3777,3777,[3777,483],422,[423,149],[1364,150],[1364,151],[1299,1510],[1364,1511],[1299,156,1512],[1364,157],[488,27],[3777,27],[3777,158],[3777,355],487,423,486,420,[3777,551],[3777,359],3777,[3777,483],484,[3777,295],[3777,355,86],[423,24],[487,27],[420,158],[3777,358],3777,[3777,483],423,486,423,[3777,360],3777,3777,3777,[3777,292],485,422,422,420,[3777,552],3777,[3777,547],421,487,423,423,487,420,[3777,548],421,487,487,423,423,423,[487,1199],[486,1200],[3777,488],3777,3777,[3777,291],[423,1193],[487,1194],486,423,420,[3777,549],421,[3777,424],[3777,291],[422,1193],[422,1194],423,487,[486,285],[422,286],[484,1131],[3777,228,1132],[3777,295],[3777,357],421,487,[486,535],406,[486,407],[423,343],420,[3777,552],3777,[3777,483],486,486,[487,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10483,10484,10485,10486,10485,10486,10485,10486,10485,10486,10485,[10486,12949],[10485,10542,12950],[10486,10543],[10485,10544],[10486,12949],[10485,12950],10486,10485,10486,10485,10486,10485,10486,10486,10487,10488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[422,158],[423,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,[923,4092],[924,4093],923,924,923,[923,1242],[923,1243],[923,1244],[923,923],924,[923,4092],[924,4093],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[463,717],[525,718],[463,719],[464,720],525,[461,3155],[526,3156],532,[1798,337],1799,1735,1799,[1798,1938],[1735,3897,1939],[1799,3898],1799,1734,[1735,2065],[1734,2066],[1734,2067],[1734,2068],[1735,333,845],[527,846],[525,847],[1990,848],525,723,724,526,[463,402],462,528,[527,1938],[527,1939],526,462,[528,3155],3410,[461,3858],526,525,[462,3211],[462,3212],526,526,462,[525,845],[527,846],[595,847],[525,848],[1803,335],1739,[1741,333],[532,16761],464,594,463,785,786,594,594,463,1990,594,464,595,[463,16761],[1740,593],1741,[1805,524],461,595,[464,974],[463,975],659,660,462,530,528,[527,845],[528,846],[463,847],[596,848],527,464,[461,1028],1029,1030,1031,1032,1033,[525,1034],[532,1035],[527,16697],528,526,[461,845],[463,846],[532,847],[532,848],525,[595,781],[595,782],[528,783],[596,784],530,464,532,527,[594,1525],[595,1526],[528,1527],525,[595,3469],[463,3660],[531,3661],[464,3474],525,[464,14411],[528,14412],464,[461,449],[596,450],[526,451],526,596,526,595,[463,1589],[527,1590],[595,1591],[530,1592],849,[850,909],[531,910],[462,911],[1735,400,912],[1734,2065],[1734,2066],[1799,524,2067],[462,2068],462,[527,16894],[464,16895],[461,3155],3410,[1798,3411],[1798,3469],[1798,3470],[1734,3471],[1735,3474],1735,1799,[80,1864],13,14,[79,1795],1798,1798,1798,1734,1798,[1799,2065],[1798,2066],[1734,2067],[1735,2068],1734,1734,1734,1734,1799,[80,1670],79,16,[80,1604],1734,1798,1799,1798,1799,1735,1735,[1798,2129],[1734,2130],[1798,2131],[1735,2132],[1735,3155],[1799,3156],1798,1734,1735,[16,1606],[80,1604],1799,[1798,1938],[1735,3339,1939],3340,[1734,3341],[1798,3342],[1735,3343],[1799,3277],1798,1798,[80,1736],[75,1164],[76,1165],[15,1731],[1811,1800],1808,1744,1745,[1746,3469],[1745,3470],[1809,1605,3471],[1746,1800,3474],1744,1747,[1808,285],[423,286],486,[3777,424],3777,[3777,292],485,487,[487,213],[1300,214],2012,[1299,1574],[1300,1575],[1300,1576],[1299,156],[1299,91],[1364,88],[1300,92],[3777,419,93],423,423,420,[3777,358],3777,3777,[3777,292],485,487,[484,149],[1300,150],[1363,91],[1299,88],[1300,92],[3777,93],[3777,292],485,422,487,487,[3777,424],3777,661,3777,[3777,291],486,486,422,[3777,488],3777,3777,3777,[3777,356],421,486,487,420,[3777,359],3777,[3777,483],[422,1129],[423,1130],422,422,420,[3777,551],[3777,548],[3777,359],3777,3777,[3777,355],[422,348],[423,408],[486,1949],[486,410],[3777,488,411],[3777,343],[3777,357],[3777,359],[3777,355],422,422,487,[422,348],[486,349],[423,350],[423,1195],[486,1196],[3777,296],3777,[3777,483],422,423,[422,470],406,[3777,550,278],[3777,358],3777,[3777,292],485,423,423,[422,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10547,10548,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10605,13013],[10606,13014],10607,10608,[10609,13013],[10550,10610,13014],10550,10550,10550,10550,10550,10550,10550,10614,10615,10616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,986,987,988,987,988,987,[923,1306],[923,1307],[923,1308],987,988,987,988,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[463,781],[463,782],[461,783],[527,784],461,[528,3219],[463,2185,3220],[530,2185],[1735,401,2121],[1798,2375],1799,[1735,2001],[1735,2002],[1735,3961,2003],[1798,3962,2004],1734,1799,[1734,2129],[1734,2130],[1735,2131],[1734,268,2132],[463,909],[463,910],[528,911],[526,912],527,527,464,525,528,461,[526,2001],[1734,589,2002],[1798,590,2003],[1734,591,2004],525,[526,3219],[461,3220],526,528,461,[463,3275],[463,3276],[528,3277],1926,528,[527,909],[462,910],[461,911],[464,912],[1803,337],1491,[1803,524],463,461,594,528,849,850,595,526,[527,653],[594,654],[525,655],[461,656],596,[1739,529],1740,[1804,334],528,594,464,463,525,723,724,595,527,595,[528,909],[525,910],[464,911],[462,912],525,462,[464,1092],1093,1429,1430,1431,1097,[525,1098],[596,1099],[463,16761],528,461,[526,909],[596,910],[527,911],[594,912],528,[526,845],[595,846],[526,847],[528,848],464,528,595,461,[461,1589],[525,1590],[595,1591],[595,1592],596,596,463,[527,18],[530,19],[530,20,14475],[526,14476],528,[461,513],[531,514],[527,515],526,531,595,595,[530,1653],[596,1654],[525,1655],[527,1656],595,[1735,589],[1798,590,974],[1799,399,975],1798,[1735,2129],[1735,2130],[1798,397,2131],[1799,589,2132],[1735,590],464,525,[531,3155],[1735,3156],1799,1798,1799,1799,1798,1798,1799,[80,1607],77,78,[15,1668],[16,1860],1799,1735,1734,1798,[1799,2129],[1734,2130],[1735,2131],[1798,2132],1735,1734,1798,1798,[79,1670,1036],[11,1037],12,[16,1539],1799,1735,[1735,403],1735,1798,1798,1798,1799,[1799,2193],[1734,2194],[1735,2195],[1798,2196],[1735,3219],[1735,3220],1799,1735,1799,1735,1799,[1798,2001],[1798,2002],[1798,2003],[1734,3404,2004],3405,3406,3407,[1799,3341],[1798,3277],1735,[16,1671],80,79,[16,1795],[1809,1800],1746,1747,1811,[1808,1605],[1809,1540],1735,[1809,1864],1808,1811,[1810,221],[550,222],[3777,551],[3777,552],3777,[3777,547],[3777,550],[3777,551],[549,277],[1300,278],1999,[1299,1638],[1300,1639],[1299,1640],1363,1364,1299,[1364,156],[1299,157],[486,27],[423,27],[3777,296,158],3777,3777,661,[3777,291],422,422,[486,213],[1364,214],1299,1935,[1364,156],[1364,157],[485,158],422,486,422,487,484,[3777,295],3777,3777,[3777,355],422,486,423,484,[3777,294],[3777,293],[3777,294],[3777,292],[485,23],[422,3524],[486,3525],[488,3526],[3777,28],3777,[3777,356],[421,1193],[486,1194],486,486,[3777,488],3777,3777,3777,[3777,348],[3777,408],[3777,419,409],[422,412],472,2013,474,475,[3777,342],[3777,343],3777,[3777,419],[486,348],[422,410],[422,411],[486,412],413,[421,414],422,486,[3777,424],3777,[3777,356],421,486,486,[487,213],[3777,214],3777,3777,[3777,357],421,[486,1131],[487,1132],[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10611,10612,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,10669],10670,10671,10672,[10550,10673],[10550,10674],10550,10550,10550,10550,10550,10550,10550,10614,10615,10616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1052,1051,1052,1051,1370,1371,1372,1051,1052,1051,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[462,845],[463,846],[463,847],[463,848],[464,3282],[526,3283],[1286,3284],2310,1286,[1799,2056],[1798,769],[1799,2065],[1798,2066],[1735,4025,2067],[1735,4026,2068],1735,1798,[1799,2193],[1734,2194],[1734,2195],[1735,397,2196],463,[527,974],[526,975],462,461,526,525,525,528,463,[1798,529,2065],[1734,2066],[1734,2067],[1799,2068],[1799,332],[463,3155],[525,3156],461,463,526,[525,3719],3340,[526,3341],[528,3277],462,526,[463,974],[528,975],532,[1804,401],1805,[1740,332],463,526,595,463,596,595,596,528,[463,717],[525,718],[528,719],[594,720],530,[1803,593],[1805,333],528,530,527,526,594,463,526,461,462,462,530,1990,[525,974],[528,975],463,462,596,[531,1156],[525,1157],[532,1493],1494,[530,1495],[464,1161],[596,1162],[526,1163],787,788,532,528,[462,974],[463,975],461,464,[463,909],[532,910],[531,911],[1926,912],530,527,461,595,[464,1653],[594,1654],[462,1655],[525,1656],464,525,594,[528,82],[531,83],[531,84],461,527,[463,577],[527,578],[532,579],[527,16830],532,463,530,[527,1717],[531,1718],[532,1719],[1798,589,1720],[1734,399],1799,1734,1735,1734,[1799,2193],[1734,2194],[1798,2195],[1734,2196],1798,[1799,588],462,[531,3219],[1735,3220],1735,[1735,1938],[1798,1939],1734,1799,1799,1735,1735,[79,1540],[16,1607],80,16,[15,1669],1735,1799,1735,[1735,2193],[1734,2194],[1734,2195],[1735,2196],1798,1799,1799,[16,1670],[80,1100],[75,1101],76,[15,1603],1798,[1798,1938],[1734,1939],1734,1734,[80,1860],[80,1862],1735,1734,[1799,2258],[1798,2259],[1735,3282],[1798,3283],[1734,3284],1735,1734,1734,1735,1735,[1798,2065],[1798,2066],[1798,2067],[1735,2068],[1735,3469],[1735,3470],[1799,3471],3405,[1798,3148],[1744,1800],[79,1556],80,[80,1616],[79,1552,1603],1735,[1747,1606],1744,[1810,1605],1798,1734,[1745,1671],1808,1811,1745,[1747,285],[3777,286],3777,3777,3777,3777,3777,3777,[3777,213],[1300,214],1300,[1300,1702],[1299,1703],1364,2012,1364,1363,1364,[1300,156],[1299,91],[1299,88],[1300,92],[3777,93],3777,3777,[3777,355],422,[487,86],[1364,87],[1363,151],[1364,1446],[1363,1447],[1300,1448],[1363,221],[423,222],487,487,487,487,420,[3777,358],3777,3777,[3777,419],422,423,487,422,484,485,484,[485,149],[422,87],[423,3588],[484,3589],[228,3590],[3777,294,92],[3777,158],3777,[3777,547],[3777,550],421,[423,348],[3777,488,408],[3777,409,676],[3777,223],[3777,411,678],[3777,412],472,473,476,[486,536],[486,2077],[423,538,1129],[422,539,1130],406,[3777,407],[3777,408],[3777,483,409],[422,412],474,475,476,[3777,477],[3777,547],421,487,484,[3777,294],3777,[3777,483],486,487,[423,277],[3777,278],3777,3777,3777,[3777,357],[421,1195],[423,1196],[486,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10547,10548,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,10733],10734,10735,10736,[10550,10737],10550,10550,10550,10550,10550,10550,10550,10550,10614,10551,10552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[463,909],[528,910],[527,911],[461,3282,912],[461,3283],3347,[1286,3348],1286,1286,[1798,2056],[1734,833],[1798,2129],[1734,2130],[1734,4089,2131],[1799,4090,2132],1799,1798,1735,[1798,2258],[1735,2259],1735,[1735,524],463,462,526,463,463,[461,1938],[525,1939],[1798,399],[1798,398],[1798,593,2129],[1735,2130],[1798,2131],[1734,2132],[1734,396],[464,3219],[462,3220],525,464,527,526,[464,3849],3405,[527,3148],525,463,464,594,525,[1739,465],1428,[1804,396],527,[464,18],[525,19],[596,20],531,530,525,596,[461,781],[528,782],[462,783],[595,784],[1805,400],1741,[1741,397],531,464,464,595,[531,653],[461,654],[594,655],[464,656],463,464,464,463,595,531,596,[1741,589],[1741,590],[1804,591],[1739,592],[1805,400,1222],[1805,1223],[1740,588,1224],461,527,527,851,852,464,525,531,464,530,462,[1741,589],[531,974],[464,975],462,464,596,527,528,[527,1717],[462,1718],[594,1719],[530,1720],464,594,462,[531,146],[464,147],[525,148],595,527,[595,641],[461,642],595,[530,16894],[525,16895],464,462,[461,1781],[526,1782],[1734,529,1783],[1734,1784],1735,1799,[1799,653],[1735,654],[1734,268,655],[1798,336,656],[1799,2258],[1798,2259],1734,1735,1734,[1735,397,3282],[531,3283],[1799,3284],[1735,2001],[1734,2002],[1798,2003],[1734,2004],1734,1734,1798,1734,1798,1734,[80,1606],80,[16,1938],[15,1795,1939],1798,[1799,403],1735,[1735,2258],[1798,2259],1734,1734,[1735,403],[80,1670],79,[79,1164],[16,1165],16,[80,1667],[1798,2001],[1799,2002],[1734,2003],[1734,2004],[79,1670],[79,1036],[79,1037],[16,1668],[15,1860],[80,1861],[15,1862,3282],[1863,3346],3347,[1734,3348],1798,1798,[1798,348],[1799,408],[1799,409],[1798,343,2129],[1735,2130],[1735,2131],[1799,2132],1798,1734,1798,[1798,3147],[1799,3148],1798,[1809,1607],[80,1552],1744,[1744,1731],1798,1735,[1808,1540],[1810,1671],[1744,1669],[1809,1864],1747,1745,1746,[1745,348],[1745,349],[3777,350],3777,3777,3777,597,3777,3777,[3777,277],[1299,278],1363,1300,2011,1364,1299,1363,1363,2011,1364,1299,1363,[1300,156],[1300,157],[3777,27],[3777,24],[3777,419,27],[486,149],[1364,150],[1363,151],1364,[1300,1510],[1300,1511],[1300,1512],[1299,156],[1300,92],[422,93],422,486,422,[3777,296],3777,3777,[3777,292],485,423,422,486,423,486,422,487,[486,213],[423,214],486,487,486,[488,221],[3777,222],3777,597,3777,[3777,356,348],[423,349],472,473,287,475,476,[423,536,1129],[423,537,1130],[423,540],486,422,[422,1193],[422,1194],[423,470],471,472,473,476,[486,538],[422,539,1129],[484,540,1130],[3777,294],3777,[3777,356],421,487,484,[3777,228],485,[487,1137],[423,1138],[486,213],[3777,229,214],[3777,230],[3777,231],[3777,295],3777,[3777,547],[3777,548],[3777,549,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10611,10612,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,10797],[10550,10798],10799,[10550,10800],[10550,10801],10550,10550,10550,10550,10550,10550,10550,10550,10614,10615,10616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,730,[731,1144],[732,1145],731,732,[731,1434],[732,1435],[731,1436],[732,1437],[731,1438],[732,1439],[731,1142],[732,1143],733,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,[464,974],[525,3282,975],[527,3346],3347,[463,3348],[595,1993],[528,1994],1286,[1799,2120],1735,[1734,2193],[1799,2194],[1799,2195],[1798,2196],1799,[1798,404],1735,1798,[1735,268],[1799,269],463,[462,653],[461,654],[462,655],[463,656],[462,2001],[461,2002],[1734,399,2003],[1735,2004],1798,[1799,2193],[1734,2194],[1798,2195],[1799,2196],[1798,460],[464,3090],[464,3091],[464,3092],659,660,527,461,[462,3211],[461,3212],528,464,462,[528,653],[461,654],[1741,529,655],[1491,656],[1805,460],525,[594,82],[462,83],[528,84],595,530,596,1990,[531,845],[595,846],[527,847],[528,848],[1739,336],1427,1804,[1741,588],525,461,531,[525,717],[461,718],[528,719],[463,720],528,526,462,461,527,464,[1741,400],1739,1803,1740,1803,1805,1428,1740,[1805,397],595,532,[1803,589],[1803,589],[1803,590],[1805,591],[1741,592],594,462,[1739,400],1803,[1741,397],594,462,461,528,594,530,[463,1781],[528,1782],[526,1783],[528,1784],[596,338],594,531,[532,210],[594,211],[531,212],596,463,463,464,528,[463,1938],[532,1939],525,464,[1735,591,1845],[1735,592,1846],[1798,593,1847],[1735,1848],1799,1798,[1735,334,717],[1799,269,718],[528,719],[527,720],[1799,269],[1799,269],[1799,270],[1799,271],[1798,272,3282],[1734,269,3346],3347,[1799,3348],[1735,2065],[1735,2066],[1735,2067],[1734,2068],1798,1734,1735,1799,1798,1798,[15,1800],[79,2001],[15,1604,2002],[1735,2003],[1735,2004],1799,1735,1734,1735,1734,1734,1798,[80,1606],80,[16,1605],[15,1606],16,[80,1731],[1735,2065],[1735,2066],[1734,2067],[80,1608,2068],141,[142,1100],[16,1101],16,80,[16,338],[79,3155],3410,[15,1669,3411],[80,1860],1734,[1799,348],[1799,412],472,473,[1799,407,2193],[1734,343,2194],[1799,2195],[1799,2196],1798,1735,1735,[1810,1860,3211],[1809,1861,3212],[1809,1862],[1808,1864],1811,[1744,1604],1799,[1745,1860],[1810,1861],[1810,1864],1747,[1747,1036],[1744,1037],1744,1746,[1808,348],[1809,412],413,[3777,294,414],[3777,293],[3777,294],3777,3777,[3777,292],[3777,228],[485,341],[1299,342],[1364,343],1299,1363,1363,1364,1935,1300,1363,1300,1300,1364,1300,[1299,156],[1300,88],[1363,91],[1364,88],[1363,91],[1364,151],1299,1364,[1300,1574],[1363,1575],[1300,1576],1299,[1299,156],[1300,157],[422,27],[487,24],[486,27],[3777,360,158],3777,3777,[3777,483],423,423,423,422,422,422,422,423,[487,277],[423,278],423,487,[422,348],[484,349],[228,350],[3777,294],3777,[3777,348],[3777,412],413,[3777,488,536],[2684358337,537],[2684358337,351],[2684358337,539],[2684358337,291,540],[486,1193],[486,1194],486,423,423,423,486,487,[422,535],[486,536],[422,537],[487,540],422,[487,1193],[423,1194],[3777,488],3777,3777,[3777,483],486,422,423,487,[487,1201],[487,1202],[423,277],[487,278],423,422,484,[3777,294],3777,3777,3777,[3777,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10547,10548,10550,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,10862],[10550,10863],[10550,10864],10550,10550,10550,10550,10550,10550,10550,10550,10550,10614,10551,10552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,794,[795,1208],[796,1209],795,796,[795,1498],[796,1499],[795,1500],[796,1501],1502,[796,1503],[795,1206],[796,1207],797,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,462,[526,3155],3410,[526,3411],595,525,[527,2058],1286,[1798,2184],[1734,2121],[1798,2375],[1798,2258],[1798,2259],1798,1798,1735,1735,1798,[1799,588],461,526,[526,717],[526,718],[527,719],[528,720],[526,2065],[1798,529,2066],[1798,2067],[1798,2068],1734,1734,[1734,2258],[1798,2259],1798,[1734,397],527,[464,3155],[525,3156],723,724,525,462,[528,3147],[464,3148],464,464,1926,[527,717],[527,718],[1804,529,719],[1491,720],[1804,524],464,[596,146],[461,147,16830],[464,148],596,461,530,461,[461,909],[461,910],[461,911],[463,912],594,[1741,269],[1804,336],1491,[1805,332],532,527,[461,781],[595,782],[528,783],[464,784],594,462,531,595,[1804,589],[1804,400],1741,1428,1741,[1739,333],[1740,270],[1805,271],[1741,272],[1804,335],1803,[1803,524],[1803,529],1740,1740,1427,1427,1803,[1739,397],[1740,593],1741,1492,[1804,653],[1741,588,654],[1739,589,655],[530,656],463,[594,16830],594,[526,1845],[462,1846],[461,1847],[462,1848],530,596,596,462,531,531,532,528,463,525,[596,2001],[530,2002],[461,2003],[526,2004],[1735,529],1735,1799,1734,1734,1734,[1735,333],[530,781],[531,782],[525,783],[463,784],596,464,462,532,[595,3155],3410,[1799,3411],1798,[1734,2129],[1799,2130],[1734,2131],[1798,2132],1734,1798,1798,1735,1799,1734,1734,[16,1540,2065],[1735,2066],[1798,2067],[1735,2068],1799,1799,1734,1798,1735,1798,1734,1735,[79,1540],1799,[15,1864],80,[15,1795],[1799,2129],[1799,2130],[1735,2131],[16,1672,2132],205,[206,1164],[16,1165],15,80,15,[80,3155],[80,3156],[80,1036],[16,1037],[80,1603],[1798,285],476,[3777,536],[3777,537],471,[1799,342,2258],[1798,343,2259],1734,1798,[1744,1861],[1747,1670,3020],[1809,3021],[1811,3085],[1746,1036],[1810,1037],1746,[1744,1859],[1745,1671],1811,1745,1745,1811,[1808,1100],[1810,1101],1811,1810,[1747,221],476,[423,477],484,485,484,[3777,232],3777,[3777,356],421,[422,405],406,[1299,407],[1299,410],[1299,411],[1364,408],[1364,409],[1300,343],1300,1363,1299,1364,1300,1363,1363,1300,1299,1300,1300,1364,1364,1948,[1363,1638],[1363,1639],[1300,1640],1300,1299,[1299,156],[1363,88],[1364,91],[1363,88],[1300,92],[3777,27],[3777,27],[547,24],[423,27],[422,24],[486,27],[487,24],[486,28],423,422,487,[422,341],[420,407],[550,410],[551,411],[421,412],413,[422,414],484,[3777,228],[3777,229,221],413,[422,477],[3777,488],2684358337,101,2684358337,[2684358337,419],486,487,420,[2684358337,548],421,422,487,423,487,423,487,486,486,423,486,484,[3777,229],[3777,231],485,487,487,487,420,[3777,548],421,[486,341],[486,342],[486,343],486,487,484,[3777,228],[3777,228],[3777,229],[3777,230],[231,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10611,10612,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14091],[10550,14092],[10550,14092],[10550,14092],[10550,14093],10550,10550,10550,10550,10550,10550,10550,10550,10614,10615,10616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,1272],[860,1273],859,860,[859,1562],[860,1563],859,[860,1565],[859,1566],[860,1567],[859,1270],[860,1271],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,528,[463,3155],[461,3156],[596,653],[532,654],[526,655],[528,2122,656],1286,1286,1286,[1735,2056],1734,1735,1798,1799,1735,1799,1798,1798,[1735,524],526,[462,781],[461,782],[461,783],[462,784],[462,2129],[1799,593,2130],[1735,2131],[1799,2132],1799,[1734,449],[1735,450],[1798,451],[1735,339],1799,[1798,524],[527,3219],[461,3220],462,464,461,[462,1525],[461,3211,1526],[526,3212,1527],463,461,464,[594,781],[525,782],[1804,529,783],[1427,784],[1739,397],595,[526,210],[528,211,16894],[461,212,16895],531,527,461,464,462,[595,974],[528,975],[531,1525],[531,1526],[528,1527],[1739,337],1739,[1805,396],530,461,[526,845],[531,846],[525,847],[531,848],531,464,594,[1804,529],1741,1804,1803,[1803,268],[1804,269,1525],[463,1526],[462,1527],526,594,596,[1739,336],[1741,588],[1805,400],[1740,333],[1805,269],[1741,270],[1740,271],[1739,272],[1803,335],[1805,334],[1803,269],[1739,273],[1804,717],[1428,718],[1805,719],[1739,524,720],530,[532,16894],[595,16895],530,527,463,462,525,532,532,[463,653],[596,654],[596,655],[528,656],525,1926,532,[527,2065],[464,2066],[1798,399,2067],[1799,398,2068],[1735,593],1798,1735,1735,[1734,333],[1798,269],462,[463,845],[463,846],[2054,847],[527,848],594,785,786,596,[527,3155],[1798,3156],1735,1735,[1735,2193],[1798,2194],[1799,2195],[1734,2196],1735,1734,1799,1798,1799,1735,1734,[1799,2129],[1798,2130],[1799,2131],[1735,2132],1735,1799,1799,1798,1735,[1798,149],[1799,24],[1734,27],[1799,24],[80,1670,28],79,80,[15,1795],[1798,2193],[1799,2194],[1735,2195],[80,1736,2196],80,16,16,16,79,80,[16,3219],[79,3220],[80,1100],[15,1101],[79,1667,348],[1735,412],[3777,350],3777,597,[3777,535],471,[1734,214],1735,[1744,1670,338],[1746,3020],[1809,3084],[1747,3085],1811,[1745,1100],[1745,1101],1744,1808,1808,1808,1744,1811,1746,[1745,1164],[1808,1165],1744,1811,[1747,221],[486,350],422,422,487,487,484,[3777,294],[3777,293],485,486,[486,470],471,474,475,472,473,[1363,342],[1300,343],1300,1299,1300,1300,1364,1363,1299,2012,1363,1299,1364,1300,1299,[1299,1702],[1364,1703],1364,1300,1363,1299,1363,1363,1363,[1300,156],[1300,88],[1363,88],[1363,91],[1299,88],[1299,91],[1364,88],[1299,91],[1364,92],[486,93],422,422,[420,405],471,474,475,476,[487,477],486,487,486,[422,221],[422,222],[423,1131],[484,1132],[2684358337,232],2684358337,2684358337,[2684358337,356],421,423,[2684358337,488],2684358337,[2684358337,356],[2684358337,548],421,423,487,422,420,[2684358337,548],421,486,486,422,422,422,487,487,423,423,[3777,296],3777,[3777,483],[486,405],406,[486,407],[487,343],423,422,422,486,486,422,[422,341],407,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10547,10548,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14155],14156,14156,14156,[10550,14157],10550,10550,10550,10550,10550,10550,10550,10550,10614,10551,10552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,924,923,924,923,924,923,924,923,924,923,924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,464,[528,3219],[528,3220],[464,717],[525,718],[594,719],[464,720],[526,1994],1286,1286,[1735,2120],1735,1798,1798,1799,1735,1799,1735,1735,[1735,397],525,[528,845],[463,846],[464,847],[464,848],[1735,337,2193],[1799,2194],[1734,2195],[1799,2196],1799,[1735,513],[1798,514],[1799,515],1798,[1799,333],464,[464,3155],[461,3156],461,463,527,[464,3020,1589],[461,3021,1590],[526,3085,1591],[462,1592],525,461,[464,845],[596,846],[528,847],[1428,273,848],1804,[1740,524],595,596,530,463,596,463,525,594,531,532,[594,1589],[463,1590],[526,1591],[1804,401,1592],1804,[1741,460],527,531,[525,909],[461,910],[531,911],[528,912],526,[1740,591],[1741,590],[1741,400],1739,1491,1739,[1804,524],[464,1589],[528,1590],[463,1591],[526,1592],595,531,527,[1804,335],1805,[1804,524],527,464,595,530,596,462,525,531,[1803,269,781],[1805,336,782],[1803,783],[1741,588,784],[1805,589],525,596,[464,653],[530,654],[462,655],[463,656],532,526,527,[528,717],[594,718],[594,719],[463,720],594,596,528,[462,2129],[1735,400,2130],[1735,2131],[1735,2132],[1799,334],[1798,270],[1798,271,653],[1799,272,654],[596,655],[532,656],595,[527,909],[594,910],[463,911],[527,912],595,849,850,463,[527,3219],[1734,3220],1734,1799,1799,[1799,2258],[1735,2259],1799,1734,1735,1799,1735,1735,1798,1734,[1798,2193],[1798,2194],[1799,2195],[1734,2196],1735,1799,1734,1799,[1735,86],[1735,87],[1799,91],[1735,88],[1734,91,1938],[15,1606,92,1939],[16,93],[16,1539],1798,1798,[1734,2258],[1735,2259],[15,1800],16,15,80,16,143,[144,3282],[79,3283],[79,3284],[80,1164],[79,1165],[15,1731,285],413,[3777,414],3777,3777,3777,[3777,213],[1799,214],[1810,1864],1811,[1811,3147],[1747,3148],1811,1746,[1746,1164],[1746,1165],1746,1810,1747,1744,1747,1747,1809,1744,1746,1810,1811,[1744,285],[423,286],487,423,423,422,422,484,485,486,422,422,[486,535],[423,538],[487,539],[422,536],[3777,488,537],406,[1300,407],[1364,343],1299,1300,1947,1299,1299,1364,2011,1364,1363,1363,1363,1364,1363,[1364,1442],[1299,1377],[1364,1443],[1364,1376],[1363,1377],[2012,1444],1300,1363,1299,[1300,152],1299,1364,1364,1300,1299,1300,[1363,156],[1364,157],[422,158],423,[2684358337,296],[2684358337,535],[597,538],[2684358337,539],[2684358337,355,540],486,487,422,487,[487,285],[487,286],[422,1195],[422,1196],[2684358337,488],2684358337,2684358337,[2684358337,292],485,486,484,[2684358337,294],2684358337,2684358337,[2684358337,483],423,422,420,[2684358337,358],2684358337,[2684358337,356],[421,348],[486,1950],[486,1624],[486,1625],[487,1626],[486,408],[422,343],423,487,[3777,424],597,[3777,357],[3777,548],[3777,549,470],406,[423,214],486,486,422,487,422,420,[3777,548,405],471,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10611,10612,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14155],14156,14156,14156,[10550,14157],10550,10550,10550,10550,10550,10550,10550,10550,10614,10615,10616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,859,860,859,860,859,860,859,860,859,860,859,860,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,463,[461,3155],[525,3156],[461,781],[525,782],[526,783],[594,2374,784],[461,2186],1286,1286,[1735,269,2184],[1799,270,2375],[1799,271],[1798,272],[1735,269],[1798,336],1799,1735,1734,1798,[1799,332],[462,909],[461,910],[527,911],[464,912],[1798,465],[1798,2258],[1734,2259],1798,1798,[1735,577],[1734,578],[1798,579],[1735,268],526,462,[464,3219],[526,3220],464,527,[461,3083],[527,3084,1653],[464,3085,1654],[2054,1655],[527,1656],461,528,[461,909],[595,910],[530,911],[1805,529,912],1428,[1741,397],462,464,[530,653],[596,654],[1990,655],[596,656],462,461,787,788,[528,1653],[531,1654],[594,1655],[1739,465,1656],1739,[1741,524],595,525,461,[596,974],[594,975],525,[1804,529],1805,[1805,653],[1804,268,654],[1740,335,655],[1805,656],[1804,333],463,[530,1653],[528,1654],[461,1655],[595,1656],461,596,[525,16830],528,[1741,269,132],[525,133],[463,134],[462,135],[526,136],[532,137],[462,138],[462,139],532,464,[464,845],[596,846],[1739,336,847],[1803,848],1740,[1805,397],[1804,589],[528,717],[595,718],[528,719],[526,720],462,525,463,[595,781],[531,782],[532,783],[527,784],595,532,531,[1799,337,2193],[1735,2194],[1799,2195],[1735,334,2196],464,462,[530,717],[462,718],[532,719],[527,720],526,596,[527,974],[595,975],527,594,461,530,[531,3282],[528,3283],[1798,3284],1799,1799,1735,1734,1735,1798,1798,1735,1799,1798,1799,1735,1735,1798,[1798,2258],[1734,2259],1735,[1734,23],[1799,27],[1798,27],[1735,24],[1735,150],[1735,151],1735,[1735,2001],[1735,2002],[1799,156,2003],[16,1540,157,2004],[1735,158],1799,[1735,149],[1734,24],[1735,28],1734,[80,1606],16,80,80,[207,3282],[208,3346],3347,[16,3348],[79,1921],[16,1539,1922],[1798,156,1923],[1799,92],[3777,93],661,3777,[3777,86],[1735,87],[1808,1670,151],1808,1811,[1808,3211],[1811,3212],1746,1808,1810,1746,1744,1745,1808,1809,1810,1808,1808,1808,1810,1745,1811,[1811,156],[1810,92],[422,93],487,423,487,486,487,487,486,487,487,487,423,422,420,[3777,552],[3777,470],406,[1363,214],1300,1364,1364,1300,1300,1363,1299,1363,1299,1364,2012,[1364,1442,89],[1299,1377],1570,1571,1634,1570,1572,[1300,1445],1299,1300,1363,1300,1300,[1299,1446],[1364,1447],[1299,1448],1363,[1948,1954],1299,[1299,156],[1364,157],[486,158],[2684358337,424],2684358337,[2684358337,293],[2684358337,294],[2684358337,419],422,486,487,487,[423,156],[487,92],[486,93],486,484,[2684358337,231],[2684358337,228],485,422,486,487,[2684358337,488],2684358337,597,[2684358337,547],[2684358337,548],[2684358337,549],[2684358337,552,348],[2684358337,409],[2684358337,410],[2684358337,31],[2684358337,356,412],2014,1688,1689,1690,280,[487,342],[487,343],423,484,[3777,294],3777,3777,3777,[3777,213],[423,214],423,422,422,422,420,[3777,358],3777,[3777,535],[3777,291,536],[423,537],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10547,10548,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14155],14156,14156,14156,[10550,14157],10550,10550,10550,10550,10550,10550,10550,10550,10614,10551,10552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,924,923,924,923,924,923,924,923,924,923,924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,463,[461,3219],[463,3220],[462,845],[527,846],[532,847],[464,2058,848],1286,1286,2246,1286,[461,2056],527,525,[527,403],464,[1734,273],1799,1735,1735,[1799,396],527,[462,974],[526,975],528,[1735,400],1735,1735,1799,1798,[1799,641],[1734,642],1735,[1799,524],461,[526,3282],[463,3283],[526,3284],528,528,[463,3147],[462,3148,1717],[463,1718],[461,1719],[528,1720],785,786,527,[463,974],[462,975],[1741,529],1741,1427,[1805,524],462,[461,717],[525,718],[526,719],[594,720],526,463,851,852,[525,1717],[531,1718],[463,1719],[1805,400,1720],1805,[1805,332],526,594,596,595,531,464,463,[1805,335],[1741,717],[1804,524,718],[595,719],[1739,269,720],527,595,[463,1717],[527,1718],[532,1719],[525,1720],464,527,[463,16894],[595,16895],[461,196],197,198,199,200,201,[461,202],[532,203],595,463,[530,909],[526,910],[525,911],[1805,335,912],1739,1803,1739,[1803,588,781],[532,782],[532,783],[527,784],596,532,527,[462,845],[525,846],[596,847],[526,848],527,596,528,[1735,401],[1798,2258],[1735,2259],[1734,332],464,594,[461,781],[596,782],[532,783],[594,784],530,596,596,531,526,462,530,[594,3282],[528,3346],3347,[1798,3348],1799,1734,1799,1799,1798,1799,1734,1799,1734,1799,1735,1799,1798,1734,1798,1735,[1734,86],[1734,87],[1798,88],[1734,88],[1799,91],[1734,151],1734,1734,[1798,2065],[1734,2066],[1734,2067],[1799,156,2068],[1799,157],[1734,24],[1735,87],[1799,91],[1798,92],[1735,93],[16,1608],16,15,16,[80,3155],3410,[80,3411],[15,1604],[79,1540,1985],1986,[1799,1987],[1734,156,1988],[1798,157],[3777,24],[3777,27],[1734,150],[1745,1670,151],1810,1745,1746,[1746,3147],[1811,3148],1811,1811,1745,1811,1811,1810,1811,1809,1811,1809,1808,1747,1811,1744,1811,1746,[1744,156],[1808,157],[423,158],487,487,420,421,487,422,486,422,423,423,422,[3777,296],3777,3777,[3777,422,277],[1363,278],1363,1363,1299,1300,1364,1363,1364,1364,1300,1999,[1299,348],[1636,153],1571,1572,1635,1571,1635,1635,[1364,1509],1299,1299,1935,1948,1363,[1364,1510],[1300,1511],[1364,1512],[1299,2017],[1299,2018],[1300,2019],1364,[1363,221],[422,222],484,[2684358337,228],485,484,485,486,422,487,423,486,[423,156],[423,157],[486,158],422,423,422,487,423,423,423,484,[2684358337,295],2684358337,2684358337,2684358337,[2684358337,348],[3777,349],280,474,95,476,[422,2078],[486,1752],[422,1753],[422,1754],[422,536],406,[423,407],[423,343],486,484,[3777,294],3777,3777,[3777,277],[487,278],486,422,423,486,[3777,488],3777,3777,3777,[3777,419],486,[423,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10611,10612,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14155],14156,14156,14156,[10550,14157],10550,10550,10550,10550,10550,10550,10550,10550,10614,10615,10616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,859,860,859,860,859,860,859,860,859,860,859,860,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12746,12747,12681,0,0,0,0,0,0,0,0,12686,12748,12749,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,526,[526,3090],[463,3026],[595,3027,909],[528,910],[594,911],[527,2122,912],1286,1286,1286,1286,[461,2120],[464,16830],525,461,464,463,[1799,336],1734,1799,[1734,460],461,[528,16830],526,[1799,400,402],1798,1798,1799,1798,[1734,769],1735,1799,[1735,333],528,[462,3282],[464,3346],3347,[463,3732],461,525,[526,3211],[462,3212,1781],[461,1782],[525,1783],[525,1784],849,850,527,464,464,595,[1805,336],1428,[1804,588],595,[594,781],[525,782],[527,783],[463,784],526,595,526,594,[461,1781],[595,1782],[1739,529,1783],[1803,1784],1491,[1805,396],463,[595,653],[527,654],[596,655],[532,656],464,[1740,589],[1741,399],[1740,268,781],[526,782],[532,783],[461,784],530,[530,16697],[464,1781],[527,1782],[525,1783],[595,1784],527,525,526,594,[531,260],261,262,263,264,265,[464,266],[596,267],528,463,528,[531,974],[595,975],[1803,529],1427,1491,1427,[1805,333,845],[531,846],[530,847],[594,848],594,787,788,[525,909],[461,910],[594,911],[594,912],462,595,463,[1735,465],1798,1735,[1734,396],528,461,[463,845],[528,846],[532,847],[530,848],531,532,1926,595,525,594,[1799,399],[1798,397,3155],3410,[1735,3411],1735,1799,1734,1798,1798,1798,1735,1734,1798,1734,[1734,340],1735,1734,1735,[80,1861,1036],[79,1862,1037],[1735,149],[1735,150],[1799,151],1734,1734,1735,1798,1734,1798,[1799,2129],[1735,2130],[1735,2131],[1799,2132],[1735,156],[1799,91],[1735,151],1735,[1735,156],[1734,157],[16,1672,158],79,79,16,[79,3155],[1539,3156],[79,1540],1798,[1799,2049],2050,[1735,2051],1734,[1799,156],[1734,91],[1734,88],[1810,1800,151],1747,1811,1811,[1747,3020],[1808,3021],[1745,3085],1809,[1808,1605],[1744,1541],[1747,1542],[1746,1543],[1810,1544],1747,1809,1809,1747,1747,1811,1747,1744,1745,1747,1811,[1744,221],[423,222],487,420,[3777,358],[3777,547],421,486,422,422,423,422,486,[3777,424],3777,3777,[3777,213],[1300,214],1363,1364,1363,1364,1364,1299,2012,1300,1363,[2012,348],[1947,349],[3777,356,1507,217],[421,1506],1635,1571,1636,[1636,90],1636,[2011,1573],1299,1300,1300,1300,1299,[1364,1574],[1364,1575],[1299,1576],1300,1299,1364,1364,[1299,285],[486,286],487,422,487,423,423,423,422,487,423,422,422,[486,221],[548,222],[2684358337,549],[2684358337,548],421,486,422,422,487,487,[2684358337,488,348],[2684358337,410,676],[2684358337,223],[3777,411,678],[3777,412],413,[420,537],[3777,538],[3777,159],[3777,483,540],486,423,422,486,487,[487,470],406,[486,278],487,486,484,[3777,228],[3777,229],[230,341],[486,342],[422,343],420,[3777,548],[3777,549],[3777,359],3777,3777,[3777,292],485,487,487,[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10547,10548,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14155],14156,14156,14156,[10550,14157],10550,10550,10550,10550,10550,10550,10550,10550,10614,10551,10552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,924,923,924,923,924,923,924,923,924,923,924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12810,12811,12680,12681,0,0,0,0,0,0,12686,12687,12812,12813,12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,461,462,[464,3090],[462,3091],[596,3092,974],[525,975],785,[786,1994],1286,1286,[527,1992],525,[528,16894],[527,16895],526,528,463,[1734,529],1798,1735,[1799,588],[1798,589],[1799,590,16894],[1735,399,16895],1734,1799,1734,1735,1735,[1735,833],1799,1798,[1799,524],464,[527,3155],3410,[526,3732],463,525,461,[461,3275],[527,3276,1845],[527,3277,1846],[526,1847],[525,1848],463,527,526,[463,653],[527,654],[532,655],[1741,529,656],1428,1427,[1739,397],[596,845],[464,846],[526,847],[595,848],464,595,532,594,[1804,589,1845],[1805,590,1846],[1803,399,1847],[1804,1848],1740,[1740,460],595,[462,717],[461,718],[463,719],[464,720],[1805,399],1741,1804,[1805,524,845],[526,846],[532,847],[462,848],464,[461,16761],[595,1845],[1803,589,1846],[525,1847],[528,1848],[463,653],[462,654],[527,655],[528,656],[463,324],325,326,327,328,329,[526,330],[464,331],531,787,788,462,530,596,[1741,336],[1740,333],[1804,269],[463,909],[526,910],[461,911],[526,912],525,851,852,463,[527,974],[464,975],532,464,596,531,[1735,529],1798,1798,[1799,460,16830],528,595,[462,909],[527,910],[526,911],[527,912],528,[532,16697],463,[464,1938],[1735,589,1939],[1799,399],1735,[1735,3155],[1735,3156],1735,1735,1735,[1798,1938],[1798,1939],1735,1734,1798,1799,1735,1735,1735,[16,1864],[15,1668],[15,1670],[79,1100],[79,1101],[16,1603,213],[1799,214],1735,[1734,1938],[1734,1939],1799,1734,1799,1799,[1735,2193],[1798,2194],[1734,2195],[1798,2196],1734,1798,1734,1798,[1798,403],[1798,285],[16,1736,286],79,15,79,[79,3219],[1603,3220],1734,1734,[1798,2113],[1735,2114],[1734,2115],[1734,2116],1734,1799,[1746,1862],[1810,1671,2957],[1811,2958],[1809,2961],[1808,2958],[1747,3084],[1811,3085],[1746,1604],[1811,1540],1799,1798,1799,1735,1798,[1810,1540],[1745,1544],1745,1747,1810,1809,1808,1808,1744,1745,1809,[1810,285],[422,286],486,[3777,488],3777,3777,[3777,356],421,487,486,422,423,420,[3777,359],3777,3777,[3777,277],[1364,278],1299,1363,1300,1363,1299,1364,1364,1363,[1947,348],[2012,349],413,[3777,227,281],485,[422,1696],[422,1699],[423,1700],[486,1701,154],[1635,343],[2011,1701],1300,1363,1300,1299,1364,[1300,1638],[1299,1639],[1364,1640],1363,1364,1300,1300,[1363,156],[1299,92],[486,93],486,487,486,420,[2684358337,549],421,487,487,422,487,[422,285],[2684358337,286],2684358337,2684358337,[2684358337,356],421,423,487,423,[486,348],[487,349],474,287,475,476,[487,477,1129],[484,1130],[3777,232],3777,[3777,547],[3777,548],[3777,549],[3777,548],421,487,422,[423,277],[487,278],423,486,487,423,423,[486,405],406,[422,407],[3777,488,343],3777,3777,3777,3777,[3777,227],485,422,422,486,[423,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10611,10612,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14155],14156,14156,14156,[10550,14157],10550,10550,10550,10550,10550,10550,10550,10550,10614,10615,10616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,859,860,859,860,859,860,859,860,859,860,859,860,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3344,3345,3342,3343,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12748,12749,12750,12751,[13584,12874],[13584,12875],12744,12745,12748,12749,12746,12747,12746,12747,12750,12751,[13584,12876],[13584,12877],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,528,464,528,[462,3155],[596,3156],526,849,[850,2122],1286,1286,[526,2056],462,462,463,528,528,462,463,[1734,336],1734,1798,1798,1798,1734,1798,1799,1798,1798,1735,1734,[1735,268],[1734,269],526,528,[526,3219],[462,3220],527,2054,464,466,[463,3849],3340,[464,3341],[526,3277],526,528,526,468,[464,717],[527,718],[595,719],[532,720],[1740,273],1741,1740,[1741,588,909],[596,910],[595,911],[461,912],462,532,527,[1805,399],1741,1741,1741,1491,1805,[1741,524],595,[464,781],[532,782],[530,783],[1740,337,784],1804,[1739,333],[1805,269],[1741,589,909],[1739,590,910],[463,911],[595,912],[1805,589],[1803,590],[1805,399],1805,[1804,524],530,[464,717],[461,718],[525,719],[464,720],[461,388],389,390,391,392,393,[595,394],[462,1525,395],[464,1526],[851,1527],852,531,531,595,528,530,596,526,[528,974],[464,975],464,1926,[461,16697],527,527,525,526,532,531,[527,653],[525,654],[1735,337,655],[1798,656],1735,[1735,524,16894],[527,16895],463,530,[594,974],[463,975],461,596,[530,16761],[1735,589,2001],[1799,593,2002],[1799,2003],[1735,2004],1799,[1735,3219],[1799,3220],1798,1734,[1734,2001],[1735,2002],[1734,2003],[1799,2004],1798,1735,1735,1735,1799,[16,1608],16,80,11,[12,1164],[80,1165],[15,1667,277],[1735,278],[1734,2001],[1799,2002],[1798,2003],[1799,2004],1799,1799,1798,1799,[1734,2258],[1734,2259],1798,1735,1799,1799,1798,[1735,348],[80,1862,412],[15,1670,350],15,16,80,[16,3090,1938],[16,1667,3026,1939],[1798,3027],1798,[1734,13444],1734,1799,1799,1734,[1811,1608],[1809,3083],[1808,3084],[1744,3022,1036],[1747,3025,1037],[1746,3022],[1744,3085],1809,[1808,1795],1798,1798,1734,1798,1734,1798,1735,1734,[1811,1607],1746,1809,1811,1745,1810,1745,1744,1809,[1811,221],[486,222],487,484,[3777,294],3777,3777,[3777,483],486,423,486,423,[3777,488],3777,3777,[3777,86],[1300,87],[1299,151],1947,1364,1300,1364,[1364,1446],[1299,1447],[1300,1448],[1363,348],[1300,349],413,[3777,477],[3777,483],422,422,486,420,[3777,358,218],[1947,1637,342],[2011,343],1299,1299,1300,2012,1364,[1300,1702],[1299,1703],1364,1364,1364,2127,2128,1364,[1364,156],[1364,157],[420,158],[2684358337,550],[2684358337,551],[2684358337,552],2684358337,[2684358337,547],[2684358337,550],[2684358337,551],421,[487,348],[423,349],[2684358337,350],2684358337,597,2684358337,[2684358337,483],486,486,[423,348],[423,412],413,[3777,538],[3777,351],[3777,356,539],[3777,548,540],[421,1193],[422,1194],484,[3777,294],3777,597,3777,3777,[3777,483],423,[423,149],[420,150],[3777,548,151],[3777,550],421,423,487,423,[423,1131],[423,470,1132],406,[3777,552,278],597,3777,3777,3777,[3777,547],421,423,422,423,[422,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10547,10548,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14155],14156,14156,14156,[10550,14157],10550,10550,10550,10550,10550,10550,10550,10550,10614,10551,10552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,924,923,924,923,[860,1242],[859,1243],[923,1244],923,924,923,924,925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3346,3408,[3409,2549],[3406,2550],[3407,2551],3406,3407,3408,3409,3341,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12812,12813,12814,[13651,12815,13133],[13585,13134],[13649,13135],[13584,12808],12809,12812,12813,12810,12811,12810,12811,12814,[13584,12815,13133],[13649,13134],[13585,13135],[13587,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,463,461,528,[526,3090],[527,3026],[531,2185,3027],[462,2185],[526,2186],1286,1286,[527,2120,658],528,464,528,464,463,461,464,[1735,529,13444],1734,1799,1734,1735,[1735,338],1734,1734,1735,1799,1799,1734,[1735,332],[525,339],[527,3282],[526,3342],[463,3346],[528,3284],463,527,528,461,464,[462,3784],3405,[461,3148],[464,16697],528,526,527,[462,781],[528,782],[532,783],[527,784],595,[1804,335],1804,1805,[1741,397,974],[1805,589,975],[1805,590],[1739,591],[1740,592],[1804,593],1803,1492,[1740,334,16830],[1740,273],1739,[1741,333],528,461,[531,845],[526,846],[594,847],[1804,401,848],1739,[1740,397],[1741,399],1491,[1739,974],[1740,397,975],[1739,399],1805,[1805,653],[1805,654],[1804,333,655],[462,656],464,[525,781],[532,782],[596,783],[532,784],[464,452],453,454,455,456,457,[596,458],[528,1589,459],[531,1590],[532,1591],[461,1592],525,594,461,[461,653],[531,654],[531,655],[531,656],526,532,462,532,[595,16761],462,528,461,530,463,595,[531,717],[527,718],[1798,401,719],[463,1732,720],1733,[1735,398],461,787,788,531,525,463,463,[1734,400],[1798,2065],[1735,2066],[1734,2067],[1735,268,2068],[1735,269],[1799,270,3155],[1799,3156],1734,1799,[1799,2065],[1734,2066],[1734,2067],[1735,2068],1798,1799,1798,1734,1734,[15,1736],79,80,75,76,[80,86],[16,1731,87],[1799,151],[1734,2065],[1735,2066],[1734,2067],[1799,2068],1735,1735,[1734,404],1734,1735,1798,1799,1799,1734,1799,1735,[15,1608,221],413,[16,414],80,[79,1604],[79,1544,2001],[15,2002],[16,1731,3090,2003],[1735,3091,2004],[1799,3092],1799,1798,1735,1735,1799,[1744,1672],[1809,3211],[1811,3212],[1810,1100],[1810,1101],1810,1809,[1747,1605],1799,1735,1799,1734,1799,1735,1735,1734,1734,1735,[1745,1606],1746,[1811,2945],[1809,2946],[1811,2947],[1809,2948],[1811,2949],1811,[1810,285],[487,286],423,423,484,[3777,294],[3777,227],485,487,487,486,486,[3777,488,23],[3777,27],[3777,24],[1363,150],[1363,151],1299,1299,1300,1363,1299,[1299,1510],[1364,1511],[1300,348,1512],[1300,412],413,[3777,477],[3777,292],485,423,423,486,484,[3777,294,282],406,[2012,278],1299,1363,1299,1300,1300,1363,1363,1363,1948,1299,2191,2192,1948,1299,[1364,221],[2684358337,222],2684358337,2684358337,2684358337,2684358337,597,2684358337,2684358337,[2684358337,357,348],[487,412],413,[2684358337,230,414],[2684358337,231],[2684358337,294],[2684358337,292],485,487,487,[486,221],413,[3777,294,477],3777,101,3777,3777,[3777,356],421,486,484,[3777,228,1129],[3777,232,1130],3777,3777,[3777,357],421,[487,213],[3777,358,214],3777,3777,[3777,356],421,487,422,[423,1195],[487,1196],[486,213],[3777,214],3777,[3777,292],[3777,294],3777,3777,[3777,356],[3777,548],421,423,486,[422,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10611,10612,10550,10550,10550,10550,10550,10550,10550,10550,10550,[10550,14219],[10550,14220],[10550,14220],[10550,14220],[10550,14221],10550,10550,10550,10550,10550,10550,10550,10550,10614,10615,10616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,986,987,988,987,988,987,[924,1306],[859,1307],[860,1308],987,988,987,988,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,[3407,2389],[3410,2390],[2424,3472,2391],[2421,3473,2613],[2421,3470,2614],[2359,3471,2615],[2424,3470,2616],[2423,3471],[2360,3472,2549],[2423,3473,2550],[3405,2551],3406,3407,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13649,12876],[13650,12877],[13587,12878],[13650,13197],[13584,13198],[13650,13199],13586,[13648,12873],[13648,12876],[13587,12877],[13648,12874],[13584,12875],[13650,12874],[13651,12875],[13584,12878],[13586,13197],[13584,13198],[13648,13199],13651,[13585,12551],12616,0,0,0,0,0,0,0,12686,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,[526,653],[464,654],[526,655],[526,656],[461,3090],[461,3026],[1286,3027],1286,2376,[461,1992],527,[463,653],[526,654],[525,655],[527,656],527,462,[463,536871697],[461,536871761],[1735,336],1735,1735,1734,1799,1798,1735,1799,1735,1798,1735,[1734,396],[463,3282],[462,3283],3214,3410,[527,3795],[462,403],463,463,526,463,462,[463,3211],[461,3212],[525,16761],461,464,532,[526,845],[596,846],[530,847],[463,848],531,[1741,400],[1739,268],[1741,335],1739,1739,1805,1491,1740,1491,1740,[1803,333],[525,16894],[462,16895],[1739,269],532,595,531,[525,909],[461,910],[527,911],[1740,465,912],1740,1738,1803,1803,1740,[1804,334],[1804,335],1803,[1803,717],[1491,718],[1741,524,719],[527,720],594,[531,845],[525,846],[461,847],[530,848],[463,516],517,518,519,520,521,[461,522],[461,1653,523],[462,1654],[526,1655],[462,1656],596,463,461,[526,717],[530,718],[525,719],[461,720],462,464,531,532,462,464,532,596,526,462,532,[594,781],[528,782],[1798,465,783],[527,1796,784],1797,1798,[1798,524],851,852,530,[1798,589],[1734,590],[1799,593],1734,[1735,2129],[1735,2130],[1734,2131],[1734,332,2132],461,[532,3219],[1734,3220],1799,1735,[1798,2129],[1735,2130],[1798,2131],[1799,2132],1798,1735,1799,1734,[80,1860],[79,1671],16,80,16,[79,149],[16,1605,150],[1735,151],1799,[1735,2129],[1735,2130],[1735,2131],[1799,2132],1734,1735,1735,1735,1734,1798,1734,1734,1734,1734,1799,[80,1672,221],[79,222],79,16,[16,1795],[1734,2065],[16,1540,2066],[1799,2067],[1734,3155,2068],[1799,3156],1799,1735,1735,1798,1799,[1745,1736,536873932],[1809,536873996],[1809,536873997],[1810,1164],[1745,1165],[1746,1539],[1746,1540],1735,1735,1798,1798,1798,1798,1799,1798,1799,1735,1799,[1811,1608],1745,1811,[1809,3010],3011,[1746,3012],1811,[1811,348],[1746,349],[423,350],487,487,486,484,485,423,486,423,486,[486,86],[1363,87,1446],[1300,88,1447],[1363,91,1448],[1300,151],1364,1300,1300,1299,1300,1364,[1363,1574],[1300,1575],[1299,221,1576],476,[3777,477],3777,[3777,483],423,422,422,423,423,484,[228,213],[1947,214],1299,1363,1363,1363,1363,1300,1300,1363,1300,1299,1300,1364,1299,1300,[1364,285],[2684358337,286],2684358337,[2684358337,227],[2684358337,228],[2684358337,229],[2684358337,230],[2684358337,231],[2684358337,232],[2684358337,221],413,[422,477,1129],[422,1130],423,484,485,486,422,486,[487,221],[486,222],484,[3777,229],[3777,230],[3777,231],[3777,232],3777,[3777,483],423,486,[486,1193],[484,1194],[3777,228],[3777,294],[3777,292],485,[423,277],[3777,278],3777,3777,3777,[3777,483],423,420,[3777,548],421,[423,277],[3777,230,278],[3777,231],485,484,[3777,228],[3777,232],3777,3777,[3777,483],422,423,423,[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10675,10676,10677,10678,10677,10678,10677,10678,10677,10678,10677,10678,[10550,10425],[10550,10426],[10550,10427],10678,10677,10678,10677,10678,10677,10678,10677,10678,10678,10679,10680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1052,1051,1052,1051,1370,1371,1372,1051,1052,1051,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2360,3470],[2358,3471,2453],[3474,2454],[2421,2455],[2422,2677,2456],[2422,2678],[2358,2679],[2358,2680],2359,[2522,2613],[2360,2614],[2421,3469,2615],[2357,3470,2616],[2357,3471],[2359,3472],[2424,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13643,13711,12815],13586,13584,13587,[13587,13261],[13651,13262],[13649,13263],13648,13586,13586,13650,13586,13584,[13648,13510],[13585,13511],13587,[13650,13261],[13587,13262],[13584,13263],13651,[13649,12615],12616,0,0,0,0,0,0,12686,12687,12810,12811,12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,[463,717],[525,718],[461,719],[463,720],526,[464,3090],[525,3091],[526,1992,3092],[463,1993],461,461,[464,717],[525,718],[464,719],[463,720],526,462,[461,536871698],[526,536871762],[1799,337],1734,1798,1798,1734,1799,1798,1798,[1735,1938],[1798,1939],1798,[1735,460,3282],[463,3346],3347,[527,3470],[526,3795],526,461,463,464,528,525,[527,3020],[527,3021],[463,3085],461,526,525,462,[531,909],[594,910],[596,911],[462,912],[1803,593],1741,[1740,524],[526,16830],[1803,269],[1739,270],[1803,271],[1740,272,653],[1739,335,654],[1805,655],[1739,334,656],461,594,525,[462,653],[532,654],[462,655],[594,656],530,[596,974],[1739,589,975],[1805,399],1739,1802,1427,[1804,268],[1805,269],532,527,[1803,269],[1805,335,781],[1804,333,782],[530,783],[525,784],463,[462,909],[532,910],[595,911],[530,912],[526,580],[464,581],[527,582],[526,583],[595,584],[462,585],[527,586],[530,1717],[595,1718],[595,1719],[596,1720],526,526,596,[463,781],[528,782],[594,783],[526,784],527,530,596,596,[527,653],[526,654],[525,655],[527,656],531,594,464,[2054,845],[461,846],[1799,529,847],[1798,848],1798,1734,[1734,332],595,462,[1798,400],1734,1734,1734,1734,[1734,2193],[1734,2194],[1798,2195],[1735,460,2196],531,[595,3090],[463,3026],[1735,3027],1734,[1799,2193],[1735,2194],[1798,2195],[1734,2196],1734,1799,1799,1799,[80,1607],15,[15,1604],[16,1541],[15,1542],[15,1543,277],[1799,278],1735,1798,[1798,2193],[1735,2194],[1798,2195],[1734,2196],1798,1734,1735,1799,[1798,1938],[1799,1939],1798,1735,1735,1735,1735,[79,1736,285],[16,286],[15,1539],[16,1540],1799,[1734,2129],[1735,2130],[1735,2131],[1798,3219,2132],[1798,3220],1734,1798,1735,[1735,2957],[1863,2958],[1808,536873933],[1810,536873997],1747,1810,1746,[1810,1859],1798,1799,1798,1735,[1799,86],[1735,24],[1735,27],[1799,24],[1798,27],[1735,24],[1798,28],1735,[1747,1672],1746,1745,[1809,3074],[1809,3075],[1746,3076],[1745,348],[1809,412],413,[422,414],487,487,487,486,487,422,422,422,[487,149],[1300,150],[1299,151,1510],[1299,1511],[1364,1512],1299,1948,1364,1300,1299,1300,1299,[1364,1638],[1363,1639],[1300,285,1640],[3777,286],597,[3777,227],485,487,487,422,486,486,420,[548,341],[1948,342],[1300,343],1948,1299,1364,1299,1300,1300,1363,1300,1300,1364,1363,1363,[1300,348],[1299,349],[2684358337,350],2684358337,[2684358337,547],[2684358337,548],[2684358337,549],[2684358337,548],421,484,[2684358337,294,221],[487,222],[422,1193],[422,1194],423,486,487,487,487,422,[487,285],[422,286],[422,1199],[487,1200],487,423,484,[3777,228],485,486,422,486,486,487,484,485,487,[422,341],[3777,342],[3777,343],3777,[3777,292],485,423,[3777,488],3777,[3777,357],[421,213],[423,214],423,486,487,486,[3777,488],3777,3777,[3777,547],[3777,548],421,[422,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10739,10740,10741,10742,10741,10742,10741,10742,10741,10742,10741,10742,10489,10490,10491,10742,10741,10742,10741,10742,10741,10742,10741,10742,10742,10743,10744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[2360,3411],[2423,1901],[2422,2517],2518,[2359,2519],[2423,2741,2520],[2358,2742],[2424,2743],[2422,2744],2360,[2357,2677],[2358,2678],[2358,2679],[2360,2680],[2421,1610615059],2357,2423,[2357,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13643,12560],13643,[13643,13520],[13643,13712],[13643,13713],[13648,13325],[13649,13326],[13649,13327],13584,[13584,13569],13570,13571,13572,13573,13574,[13585,13575],13586,[13650,13325],[13650,13326],[13584,13327],13649,[13585,12679],12680,12681,0,0,12686,12748,12749,12750,12751,[13648,12874],[13651,12875],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,[463,781],[462,782],[526,783],[461,784],463,528,[528,3155],[530,3156],464,464,461,[464,781],[527,782],[527,783],[463,784],528,525,525,[528,1938],[1734,401,1939],1735,1735,1799,1799,1735,1798,[1734,2001],[1799,2002],[1735,2003],[1735,2004],[1734,524,3155],3410,[461,3411],463,464,463,464,462,461,[464,2957],[461,2958],[463,3084],[525,3085],1990,528,526,528,596,596,[461,974],[531,975],[1805,400],1803,[1741,333],526,[527,16894],[462,16895],526,461,[464,717],[525,718],[1804,269,719],[594,720],532,526,596,[527,717],[1926,718],[461,719],[531,720],[1739,589],[1805,399],1739,[1739,334],[1803,335],1805,1739,[1803,397],[1804,589],[1739,590],530,526,[527,845],[525,846],[526,847],[527,848,403],594,528,[461,974],[596,975],461,462,528,532,528,594,532,532,[595,1781],[527,1782],[464,1783],[528,1784],463,464,464,[461,845],[594,846],[463,847],[531,848],462,526,526,464,[596,717],[463,718],[531,719],[595,720],462,[594,403],528,[527,909],[464,910],[532,911],[1735,273,912],1799,1799,[1799,396],532,[1799,399],1735,1799,[1799,333],[1798,269],[1734,336],1798,[1734,2258],[1799,333,2259],463,462,526,[526,3090],[532,3091],[1799,3092],1735,[1734,2258],[1798,2259],1798,1798,1734,1734,1799,[79,1671,1036],[16,1037],[80,1795],1799,1799,[1735,341],[1734,407],[1734,408],[1798,409],[1798,343],[1734,2258],[1735,2259],1735,1735,1735,1734,[1735,2001],[1799,2002],[1734,2003],[1798,2004],1734,1735,1798,[16,1862],[15,1671,285],[15,286],[15,1603],1799,1798,[1798,2193],[1798,2194],[1798,2195],[1798,3090,2196],[1735,3026],[1799,3027],1735,[1735,3020],[1808,3021],[1808,3022],[1808,536873997],1744,[1811,1539],[1810,1544],1808,1810,[1808,1795],1799,[1734,23],[1735,24],[79,150],[16,1603,88],[1798,91],[1734,88],[16,1800,91],[79,88],[79,1603,92],[1735,93],[1809,1736],1810,1808,[1744,3138],[1744,3139],[1744,3140],[1746,221],476,[486,477],487,486,422,486,420,421,486,487,423,[423,213],[1363,214],[1364,1574],[1363,1575],[1364,1576],1300,1364,1363,1299,1364,1364,1363,[1300,1702],[1299,1703],[1299,156],[1300,92],[3777,93],[3777,483],487,487,486,486,423,486,[3777,488],[3777,405],406,[1300,214],1363,1364,1363,1364,1300,1300,1300,1300,1364,1299,1300,[1300,348],[1363,412],413,[2684358337,294,414],661,2684358337,2684358337,2684358337,2684358337,[2684358337,483],487,[486,285],[487,286],486,423,486,486,420,[2684358337,548],421,422,[486,156],[486,92],[422,93],423,486,423,486,486,420,[3777,548],[3777,549],421,422,[487,1954],422,486,422,[420,405],406,[3777,228,407],[3777,228,409],[485,343],487,423,[3777,488],661,3777,[3777,277],[486,278],487,486,423,486,484,[3777,294],3777,3777,3777,[3777,357,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2421,3156],2424,[2358,1965],[2359,2581],2582,[2422,2583],[2359,2805,2584],[2422,2806],[2359,2807],[2357,2808],2359,[2359,2741],[2421,2742],[2358,2743],[2358,2744],[2422,1610615058],2359,2424,2358,[2422,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13643,12624],13643,13643,[13643,13189],13643,[13643,13520],13584,13584,13586,[13650,13633],13634,13635,13636,13637,13638,[13648,13639],13650,13648,13586,13585,13651,[13584,12743],12744,12745,12746,12747,12750,12812,12813,12814,[13649,12815,13133],[13586,13134],[13584,13135],[13586,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,[464,845],[525,846],[464,847],[526,848],461,527,[526,3219],[595,3220],532,464,464,[463,845],[464,846],[528,847],[525,848],[462,340],528,[527,2001],[463,2002],[1734,465,2003],[1734,2004],1735,1735,1799,1735,1734,[1734,2065],[1735,2066],[1735,2067],[1735,333,2068],[461,3219],[526,3220],463,787,788,461,462,464,[525,3020],[464,3021],[525,3022,16830],[527,3085],463,526,464,[525,653],[526,654],[462,655],[528,656],595,[1741,400],1741,1427,[1804,397],595,463,595,461,462,[526,781],[595,782],[525,783],[528,784],528,528,528,[527,781],[595,782],[594,783],[1803,337,784],1805,1428,1739,[1804,524],461,[1804,269],[1741,272],[1739,335],1740,1804,[1739,524],527,[596,909],[596,910],[532,911],[525,912],532,526,463,595,[530,653],[594,654],[461,655],[531,656],462,464,596,595,[532,1845],[1990,1846],[463,1847],[464,1848],596,596,594,[461,909],[461,910],[461,911],[532,912],532,462,531,530,[527,781],[595,782],[525,783],[595,784],463,461,464,526,[463,974],[525,975],[1735,529],[1734,1938],[1798,1939],[1799,460],[1798,529],1734,1798,1735,[1799,524],531,464,[1735,269],[1735,269,16830],594,595,[527,1938],[594,1939],463,[532,3155],[1735,3156],1799,1734,1799,1734,1735,1734,1798,[80,1608],[79,1100],[80,1101],[16,1668],1734,1734,[1735,405],471,472,473,[1734,342],[1734,343],1735,1734,1734,1734,1798,[1798,2065],[1734,2066],[1734,2067],[1735,2068],1734,1799,[16,1608],11,[12,285],[16,286],[80,1667],1735,1734,1799,[1735,2258],[1799,2259],1735,[1799,3090],[1734,3091],[1863,2958],[1745,1671,3084,1036],[1808,3085,1037],1744,1745,1811,[1745,1795],1734,[1811,1607],1744,[1810,1669],[1735,86],[1735,87],[15,1608,88],[79,151],[15,1731],1735,1734,[80,1671,1954],15,[79,1667,156],[1734,157],[1734,158],[1747,1606],1808,1809,1745,1746,[1808,221],[487,222],423,486,487,420,[3777,549],[3777,358],[3777,356],421,486,422,[423,277],[1299,278],[1300,1638],[1364,1639],[1300,1640],1363,1300,1364,1363,1364,1363,1300,1364,1299,1299,[1299,156],[1947,157],[485,158],423,423,422,423,422,420,[3777,552],3777,[3777,277],[1300,278],1300,1364,1300,1364,1300,1363,1299,1363,1300,1300,1299,[1300,221],413,[422,477],484,[2684358337,229],[2684358337,231],[2684358337,232],2684358337,2684358337,[2684358337,356],[2684358337,548],[2684358337,358,156],[2684358337,92],[422,93],487,486,420,[2684358337,358],2684358337,[2684358337,356],421,487,[422,156],[486,157],[422,24],[487,24],[487,27],[3777,548,158],[3777,549],[3777,358],3777,3777,[3777,483],[486,2017],[422,2018],[422,2019],423,420,[3777,358],[3777,470],471,280,[487,342],[423,343],423,484,[3777,294],3777,[3777,341],[423,342],[487,343],423,423,423,423,484,[3777,229],[3777,230],[3777,231],[486,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2358,3220],2421,2458,[2421,2645],[2360,2646],[2423,2647],[2359,2869],[2424,2870],[2522,2871],[2422,2872],2359,[2424,2805],[2422,2806],[2422,2807],[2422,2808],[2357,1610615057],2423,2358,2423,[2423,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13587,12688],[13643,13395],[13643,13396],13643,13643,13643,[13643,13455],[13587,12361],[13651,12362],[13586,12365,13697],13698,13699,13700,13701,13702,[13648,12365,13703],[13650,12362],[13585,12431],13586,13584,13648,13648,[13585,12808],12809,12810,12811,12814,[13585,12876],[13586,12877],[13649,12878],[13650,13197],[13586,13198],[13587,13199],13584,[13586,12551],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,[527,909],[525,910],[528,911],[462,912],462,464,[462,3155],[531,3156],527,462,1926,[462,909],[526,910],[526,911],[461,912],461,464,[527,2065],[525,2066],[1799,400,2067],[1799,2068],1735,1734,1799,1734,1734,[1799,2129],[1799,2130],[1799,2131],[1734,332,2132],[526,3155],[461,3156],526,851,852,526,526,[464,3083],[462,3084],[461,3085],[463,16894],[464,16895],528,526,462,[527,717],[461,718],[525,719],[461,720],531,[1804,336],1741,[1804,653],[1805,333,654],[463,655],[461,656],530,531,462,[525,845],[528,846],[531,847],[531,848],526,659,660,[531,845],[594,846],[530,847],[1805,401,848],1427,1739,[1740,333],530,528,531,526,[462,1525],[1739,269,1526],[1803,335,1527],[1805,397],[1740,589],[1739,590],[1741,591,974],[1739,400,975],[1740,398],462,528,464,531,[595,717],[463,718],[594,719],[532,720],531,596,594,530,528,461,464,594,525,528,527,532,[525,974],[595,975],531,596,526,530,531,[596,845],[596,846],[528,847],[530,848],528,530,527,464,463,525,[1799,529,2001],[1799,2002],[1799,2003],[1734,588,2004],[1799,593],1798,1799,[1798,653],[1734,524,654],[462,655],[531,656],461,[595,16894],[532,16895],[528,2001],[528,2002],[595,2003],[594,2004],[525,3219],[1735,3220],1735,1799,1735,1798,1799,1798,1799,[15,1672],[15,1164],[15,1165],15,[15,1859],1799,1734,[1799,535],[1735,536],[1799,537],406,[1735,407],[1798,408],[1734,409],[1798,343],1799,1798,[1735,2129],[1798,2130],[1734,2131],[1734,2132],1734,1734,[79,1736],[75,348],[76,349],[79,350],[16,1731],1735,1798,1799,1734,1734,1734,1798,[1747,1608,3090],[1811,3022],[1744,3085,1100],[1746,1101],1747,1808,[1744,1605],1798,[1734,23],[1800,24],[1811,24],[1746,27],[1734,150],[1798,151],[79,1672],15,[16,1859],[79,1860],[16,1671,2017],[79,2018],[80,2019],[79,1731],[1799,156],[1735,157],[1809,1800,158],1747,1809,1809,1744,[1747,285],[422,286],486,420,[3777,551],[3777,358],3777,3777,3777,[3777,547],421,422,[423,341],[1363,342],[1300,343,1702],[1364,1703],1300,1299,1364,1300,1363,1299,[1299,1441],[1363,1444],1300,1363,1364,2012,[2012,221],[423,222],422,[486,17285],[487,17286],[487,17287],420,[3777,358],661,[3777,86],[2011,87],[1363,151],1364,1300,1300,1364,1300,1363,1300,1299,1363,1300,2011,[1364,285],[422,286],423,423,422,487,484,[2684358337,294],2684358337,2684358337,2684358337,2684358337,[2684358337,293,156],[486,92],[486,93],423,[2684358337,296],2684358337,2684358337,2684358337,[2684358337,483],487,486,[420,156],[2684358337,548,88],[2684358337,552,91],[2684358337,291,88],[422,92],[3777,93],3777,3777,[3777,227],485,486,487,420,[3777,548],[3777,552],3777,3777,[3777,291,535],[423,537],406,[487,407],[486,343],422,484,[3777,228],[485,405],406,[487,407],[422,343],423,422,420,[3777,551],[3777,548],[3777,549],[3777,550],[3777,551,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2359,3156],[2424,5638],2358,2359,2421,2359,2423,[2421,2665],2359,2357,2422,[2423,2869],[2360,2870],[2423,2871],[2360,2872],[2357,1610615058],2357,2458,2357,[2359,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13586,12752,13133],[13651,13134],[13643,13460,13135],13643,13643,13643,[13643,13519,12424],[13651,12425],[13650,12426],[13651,12429,13761],13762,13763,13764,13765,13766,[13648,12429,13767],[13651,12426],[13586,12495],[13648,12496],13587,13649,13648,13648,[13584,12873],[13648,12874],[13649,12875],[13649,12878],13648,13651,13585,[13587,13261],[13586,13262],[13587,13263],13585,[13584,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,463,[525,974],[463,975],527,463,525,[528,3219],[463,3220],463,[526,340],525,528,[462,974],[462,975],526,463,462,[526,2129],[1798,399,2130],[1735,2131],[1735,2132],1734,[1734,268],[1798,270],[1735,271],[1734,272],[1735,335,2193],[1735,2194],[1734,2195],[1799,396,2196],[525,3219],[464,3220],526,461,461,528,527,[463,3147],[462,3148],463,463,464,461,525,527,[464,781],[1926,782],[462,783],[596,784],526,[1740,529],1427,[1803,268,717],[532,718],[464,719],[525,720],525,462,464,[526,909],[596,910],[531,911],[526,912],595,723,724,[532,909],[525,910],[463,911],[1805,465,912],1740,[1739,268],525,532,595,461,463,[461,1589],[527,1590],[531,1591],[1741,269,1592],[1741,335],1741,1805,1492,[1739,334],595,596,463,527,[530,781],[532,782],[530,783],[526,784],463,[594,16697],595,[531,3282],[527,3342],[527,3343],[526,3342],[464,3343],[463,3277],526,525,[530,3282],[594,3342],[532,3343],[596,3344],[525,3345],[596,3277],525,462,[464,909],[463,910],[595,911],[596,912],596,464,527,461,596,532,[1799,593,2065],[1735,2066],[1734,2067],[1798,2068],[1799,333],[1799,270],[1798,271],[1799,272,717],[595,718],[461,719],[525,720],461,532,461,[464,2065],[527,2066],[532,2067],[527,3282,2068],[461,3283],[1734,3284],1734,1735,1734,1734,1735,[1734,1938],[1798,1939],[15,1736],13,14,15,15,[16,1669],1734,1799,1799,1734,[1734,470],471,472,473,[1735,407],[1735,408],[1734,409],[1799,343,2193],[1799,2194],[1735,2195],[1799,2196],1799,[16,1862],[80,1864,348],[80,412],413,[79,1539,414],1798,[1734,1938],[1735,1939],1734,1735,1735,[1798,402],1734,[1746,1672],1745,[1810,1164],[1809,1165],[1808,1605],[1747,1540],1798,[1799,149],[1735,150],[1735,88],[1799,88],[1735,91],[1798,151],1798,[79,1736],143,144,80,[80,1604],[80,1607],[15,1604],1734,1734,[1734,221],[1810,222],1810,1747,1810,1811,[1811,156],[1744,92],[423,93],[3777,488],3777,661,3777,[3777,292],[3777,232],3777,[3777,356],421,[422,405],406,[1363,407],[1300,343],1935,2012,1300,1299,1300,[1299,1442],1570,[1363,1637],1363,1363,1299,1364,[1300,285],[547,286],[3777,550],[3777,551],421,486,[3777,488],[3777,23],[3777,24],[2011,150],[2012,151],1364,1364,1947,1364,1363,1364,1300,1299,1364,1363,1300,1364,[1364,156],[1363,92],[422,93],486,422,487,422,[2684358337,296],[2684358337,293],[2684358337,230],[2684358337,231],[2684358337,228],485,[422,156],[423,157],[423,158],[2684358337,424,27],[2684358337,24],[2684358337,28],[2684358337,292],485,423,420,[2684358337,358],661,2684358337,[2684358337,419,1129],[423,156,1130],[422,157],[3777,293,158],[3777,228],485,487,423,420,[3777,358],3777,[3777,227],[3777,294],3777,[3777,419],423,[423,470],406,[420,214],[3777,548],421,487,422,[423,470],406,[487,214],420,[3777,549],[3777,358],3777,3777,3777,3777,[3777,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2424,3220],2421,2522,[2421,2549],[2357,2550],[2421,2551],2424,[2357,2729],2423,2424,2357,2424,2422,2422,2359,[2360,1610615059],2357,2358,2421,[2423,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13649,12815],[13648,13197],[13650,13198],[13643,13524,13199],13643,[13643,13391],[13643,13392,12487],[13650,12488],[13649,12489,12998],[13648,12998],[13648,13825],13826,13827,13828,[13829,12329],[13830,12330],[13649,13831,12331],[13585,12332],[13650,12623,12333],[13585,12624],13586,[13649,12943],[13649,12944],13585,13585,13585,13649,13650,13584,13649,13585,[13648,13325],[13586,13326],[13648,13327],13649,[13650,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,464,528,526,526,463,[525,3282,653],[463,3283,654],[463,3284,655],[595,656],527,528,[527,16830],527,464,461,528,527,[1735,400,2193],[1799,2194],[1734,2195],[1734,2196],1734,[1734,332],463,526,526,461,[1734,269,2258],[1734,335,3282,2259],[1799,460,3342],[526,3346],[526,3284],527,528,464,526,527,[526,3211],[463,3212],461,462,787,788,463,525,[462,845],[527,846],[527,847],[525,848],525,[1739,399],[1741,333],[526,781],[528,782],[531,783],[1990,784],525,526,462,525,[464,974],[596,975],462,462,462,461,[1741,399],[1803,398,974],[1805,592,975],[1804,593],[1740,333],[463,653],[532,654],[531,655],[528,656],528,596,[527,1653],[530,1654],[526,1655],[461,1656],528,[1739,269],[1805,335],[1739,333],530,527,461,462,525,[462,845],[595,846],[532,847],[525,848],526,[463,16761],[531,3282],[530,3283],3406,3407,3406,3407,[463,3341,7],8,9,[462,3346,10],3406,3407,3408,3409,[527,3276],[532,3277],531,530,[461,974],[594,975],532,532,526,531,462,594,[1799,529],[1735,2129],[1735,2130],[1799,2131],[1734,2132],[1798,332],462,464,[530,781],[595,782],[462,783],[461,784],464,462,526,[525,2129],[464,2130],[462,2131],[464,3155,2132],3347,[1735,3348],1735,1734,1735,1734,[1798,2001],[1798,2002],[1734,2003],[16,1800,2004],77,78,79,15,[15,1604],1735,1798,1799,1734,1798,[1799,535],[1799,536],[1799,537],471,472,473,[1798,407],[1735,343,2258],[1735,2259],1734,[80,1608],16,[80,285],413,[15,1539,477],1734,[1735,2001],[1799,2002],[1798,2003],[1799,2004],1798,1799,1734,1799,[1809,1736,2511],1808,1811,1810,[1810,1669],1735,1798,[1798,3914],[1734,3915],1734,1798,1799,1799,1735,[15,1800],207,208,15,[15,1795],1798,1798,1735,1799,[1734,285],[1744,286],1809,1747,1808,1810,1809,[1747,156],[1747,157],[3777,358,158],3777,3777,3777,[3777,547],[3777,552],3777,3777,[3777,547],[3777,550],[3777,551,470],471,[1300,278],1364,1299,1299,1300,1364,[1300,1632],1572,[1299,1508],1363,1364,[1299,1376],[1363,1443],[1299,156],[1299,92],[3777,93],3777,[3777,547,23],[487,27],[296,24],[1947,87],[1364,88],[1300,151],1363,2063,1363,1300,1299,1299,1364,1364,1363,[1363,1446],[1300,1447],[1300,1448],1300,1300,[1364,156],[1300,157],[423,158],423,423,423,[2684358337,424],[2684358337,483,17285],[486,17286],[486,17287],486,487,423,[2684358337,296,156],[2684358337,91],[2684358337,291,88],[423,91],[422,92],[485,93],422,423,[2684358337,296],2684358337,2684358337,[2684358337,292],[485,1193],[486,1194],[487,221],[423,222],422,486,423,422,484,[3777,294],597,[3777,483],484,[3777,228],485,[487,1131],[486,1132],[486,277],[3777,358,278],3777,[3777,483],423,486,487,[487,277],[420,278],[3777,358],3777,3777,[3777,292],[3777,228],[3777,229],[3777,230],[3777,231,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2360,3027],2421,[2421,2613],[2360,2614],[2423,2615],[2357,2616],2359,2422,2359,2424,2422,2422,2422,2423,[2422,1610615058],2422,2421,2421,[2359,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13585,12560],13587,[13586,13261],[13586,13262],[13643,13588,13263],13643,[13643,13647],12551,[13586,12552],[13584,13062,12998,12329],[13584,13062,12998,12330],[13584,13889,12331],[13890,12332],[13891,12333],13892,[13893,12393],[13894,12394],[13650,13895,12395],[13651,12396],[13648,12623,12397],[13649,12624],13585,[13586,13007],[13650,13008],13651,13650,13584,13584,13651,13648,13585,13650,13587,13648,13648,13648,[13650,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,461,464,[463,3282],[526,3344],[462,3345],[526,3346,717],[3347,718],[526,3348,719],[527,720],527,528,[461,16894],[461,16895],464,[1799,589,3897],[1799,590,3898],[1798,593],1799,[1799,2258],[1734,2259],1734,1798,[1734,460],[461,402],464,463,526,[462,3282],[525,3283],3214,3410,[528,3732],[464,402],527,525,463,[464,3020],[462,3021],[526,3085],461,526,851,852,525,527,[463,909],[462,910],[527,911],[528,912],[1805,337],1740,[1803,332],[595,845],[462,846],[532,847],[461,848],461,[1741,399],[1805,588],[1804,589],[1739,590],[1804,591],595,462,530,[1741,400],1805,1741,1803,1804,[1804,332],[461,717],[532,718],[528,719],[594,720],527,461,[595,1717],[464,1718],[464,1719],[461,1720],463,462,[595,3282],[461,3342],[595,3343],[595,3344],[464,3345],[525,3277],596,[530,909],[595,910],[528,911],[530,912],532,[527,3282],[527,3346],3347,[1286,3470],[1286,3471],[1286,3470],[1286,3471],[3405,7],8,9,[3410,10],[1286,3470],[1286,3471],[1286,3472],[1286,3473],3340,[528,3341],[461,3342],[531,3343],[461,3277],528,461,531,596,596,531,463,526,[1734,336,2193],[1798,2194],[1799,2195],[1734,2196],[1735,460],527,526,[530,845],[530,846],[531,847],[531,848],[1798,589],[1799,400],[1799,398],[1799,590,2193],[1734,591,2194],[1734,592,2195],[1798,400,3155,2196],[1798,3156],1735,1735,1734,1734,1798,[1735,2065],[1735,2066],[1798,2067],[15,1608,2068],80,79,16,79,[16,1603],1734,1734,1798,1799,1734,1798,1799,1735,[1798,535],[16,1860,536],[80,1861,537],471,[79,1863,342],[1798,408],[1799,409],[15,1672,410],[80,411],[16,412],[16,350],[80,1795],1735,[1735,2065],[1798,2066],[1735,2067],[1735,2068],1734,1799,1798,[1735,2574],[1809,1864,2575],[1745,2576],1747,1810,[1809,1604],1799,1799,[1799,3978],[1734,3979],1735,1799,1798,[1798,1036],[80,1863,1037],[80,1671],79,16,[16,1604],1799,1735,1798,1798,[1799,348],[1735,349],[1811,350],1747,1808,1745,1747,1809,1808,[1744,221],[3777,222],[3777,292],[3777,228],[3777,232],3777,3777,[3777,292],[3777,228],[3777,232],3777,[3777,86],[1572,87],[1300,1444,151],1363,1300,1299,1364,[1363,1441],1571,[1363,1508],1363,1299,[1299,1442],1635,1636,[1300,1377],[1364,1380,156],[1363,1443,157],[3777,27],[2011,87],[1948,91],[2011,88],[1299,151],1363,1299,1363,1299,1300,1364,1364,1364,1363,1300,1364,[1363,1510],[1300,1511],[1364,1512],1300,1364,1948,[1363,221],[422,222],422,420,[3777,551],[3777,552],[3777,356],[3777,549],421,423,487,423,[2684358337,360],2684358337,[2684358337,355],486,[423,156],[487,157],[486,158],423,[2684358337,360],2684358337,[2684358337,292],485,486,422,[422,285],[422,286],487,420,[3777,548],421,422,484,[3777,228],485,422,487,486,[422,1195],[423,1196],[486,213],[3777,214],[3777,292],485,486,486,423,[422,213],[3777,552,214],3777,3777,597,[3777,356],[3777,548],[3777,549],421,[423,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2359,3092],[2421,2677],[2357,2678],[2360,2679],[2359,2680],2357,2424,2358,2357,2360,2359,2522,2421,[2423,1610615057],2421,2424,2360,2421,[2421,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13650,12624],13584,[13651,13325],[13587,13326],[13643,13652,13327],13643,[13643,13711],[13712,12615],[13585,12616],[13648,13062,12393],[13648,13062,12394],[13585,13953,12395],[13954,12396],[13955,12397],13956,[13957,12457],[13958,12458],[13587,13959,12459],[13584,12460],[13585,12494,12461],[13651,12430],[13587,12431],13584,13585,[13649,12361],[13649,12362,14209],[13650,12365,14210],[13584,12366,14211],13584,13585,13649,13650,13649,13651,13585,[13585,12424],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,527,[526,3282],[528,3283],3408,3409,[3410,781],[532,3411,782],[464,783],[526,784],[461,340],464,525,461,[1735,400],[1798,3961],[1734,3962],1734,1799,1735,1798,1735,[1734,333],464,528,462,525,[461,3282],[527,3346],3347,[462,3470],[526,3858],461,527,462,[526,2957],[463,2958],[463,3084],[464,3085],463,461,526,461,525,462,527,528,[528,974],[526,975],526,[1741,401],1805,[1804,396],[530,909],[462,910],[531,911],[596,912],[1804,529],1804,1741,1741,1805,1803,[1803,397],[1804,590],[1740,400],1740,1804,1491,[1803,334],[1739,335],[1804,460],[594,781],[595,782],[595,783],[530,784],596,528,[595,1781],[595,1782],[596,1783],[526,1784],594,[531,3282],[462,3283],3406,3407,3408,3409,[527,3341],[595,3015],[462,3016],[463,3017,974],[531,3018,975],[528,3342],[528,3343],[532,3346],3410,[1286,3411],1286,1286,1286,1286,[1286,3469,7],8,9,[1286,3474,10],1286,1286,1286,1286,[1286,3404],3405,3406,3407,[527,3341],[531,3015],[526,3016],[596,3277],464,1926,[463,16830],527,594,[1798,529],[1799,2258],[1798,2259],[1798,268],528,464,526,[595,909],[527,910],[461,911],[1734,593,912],1734,1799,1798,1799,[1734,2258],[1799,2259],[1799,3219],[1734,3220],1735,1735,1734,1734,1734,[1735,2129],[1799,2130],[1734,2131],[15,1672,2132],16,16,79,80,[15,1667],1799,1735,1798,1798,1735,[16,1670],[80,1859],[79,1863],[79,1671],15,16,[16,535],406,472,473,474,475,476,[16,1604,414],1735,1735,[1799,2129],[1799,2130],[1799,2131],[1734,2132],1735,1735,1799,[1747,1608,2638],[1811,2639],[1811,2640],[1810,1605],[1745,1540],1799,1798,1734,[1799,4042],[1734,4043],1734,1799,[80,1862],[79,1670,1100],[15,1101],16,15,[15,1604],1799,1734,[1798,348],[1735,408],[1798,409],[1799,412],413,[1808,1736,414],1811,1745,1808,1747,1745,1747,[1746,285],[484,286],485,486,484,[3777,229],[3777,231],485,487,484,[3777,228,149],[1570,150],[1636,151],1570,[1364,1377],[1299,1378],[1299,1379],[1363,1380],1634,1571,[1363,1443],[1364,1441],[1363,1377],1633,[1300,1697],1569,1635,1570,[1299,1637,156],[1363,91],[1299,151],1300,1363,[1300,1545],[1300,1546],[1364,1612],1364,1299,1363,1363,1299,1299,2127,2128,1364,[1363,1574],[1363,1575],[1299,1576],1300,1364,1299,[1363,285],[422,286],420,[3777,358],2684358337,2684358337,2684358337,[3777,293],485,486,423,422,[2684358337,424],2684358337,[2684358337,419],422,423,[423,221],[487,222],423,[2684358337,424],2684358337,[2684358337,483],422,423,[423,348],[487,349],[422,350],423,[3777,296],3777,[3777,291],487,422,486,423,423,422,486,423,422,[486,277],[3777,292,278],485,487,423,487,422,[486,277],[3777,278],3777,[3777,293],[3777,232],3777,3777,3777,[3777,357],[421,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2424,3156],[2424,2741],[2360,2742],[2360,2743],[2360,2744],2423,[2359,2957],[2424,2958],[2357,2961],[2360,2399,2962],[2424,2400],[2424,2400],[2357,2401,3083],[2357,2958],[2359,2961],[2357,2962],2424,2360,2423,[2423,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13651,12431],[13643,13712],[13643,13713],[13643,13716],13643,[13643,13456],[13585,12679],[13650,12680],[13586,12681,12457],[13649,12458],[13651,14017,12459],[13584,14018,12460],[13585,14019,12461],14020,[13587,14021,12521],[13648,14022,12522],[13648,14023,12523],[13587,12524],[13587,12525],[13643,13716,12494],[13643,13391,12495,12329],[13650,12365,12330],[13584,12362,12331],[13587,12425,12332],[13650,12426,12333,14273],[12429,14274],[13585,12430,14275],[13651,12431],13584,13650,13651,13651,13587,[13585,12487],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,[525,3282],[526,3346],3347,[595,3472],[525,3473],[525,3474,845],[525,846],[527,847],[462,848],525,461,[464,1938],[1735,529,1939],1734,[1734,4025],[1734,4026],1734,1734,1799,1734,[1798,268],528,527,461,528,527,[527,3219],3410,[525,1287,3411],[462,1288],[526,1289],[462,1290],[528,1415],[462,1416,3020],[463,3021],[463,3022],[525,3085],526,525,526,461,527,461,528,528,462,461,527,462,[1803,465],1805,[1739,460],461,[596,974],[1739,589,975],[1739,590],[1803,399],1740,1492,1740,1741,1739,1491,1803,1805,1804,1740,1741,[1805,524],526,464,[531,845],[528,846],[527,847],[526,848],528,526,[463,1845],[594,1846],[532,3282,1847],[594,3342,1848],[531,3343],[596,3346],3347,[1286,3470],[1286,3471],[1286,3472],[1286,3473],3405,3079,3080,3081,3082,3406,3407,3410,[1286,3474],1286,1286,2246,1286,1286,[1286,7],8,9,[1286,10],1286,1286,1286,1286,1286,[1286,3469],[1286,3470],[1286,3471],3405,3079,3080,[596,3276],[461,3277],595,[463,16894],[464,16895],530,532,[1799,335],[1734,334],531,594,530,526,528,[463,974],[1798,529,975],1799,1734,[1735,268],[1799,269],[1734,269],[1798,335],1798,[1798,3155],[1735,3156],1734,1799,1735,1799,1735,[1799,2193],[1798,2194],[1799,2195],[16,1736,2196],79,79,16,80,[15,1731],1734,1799,1735,[15,1863],[15,1864],15,15,79,15,15,79,11,[12,470],[16,1669,536,1036],[16,1862,537,1037],[80,1864,538],[79,539],[79,1539,540],1798,1799,1734,[1734,2193],[1734,2194],[1734,2195],[1799,2196],1734,1799,1799,[1747,1672,2702],[1810,2703],[1808,2704],[1747,1795],1799,1734,1798,1735,[1734,341],[1734,342],[1799,343],[15,1670],80,[13,1164],[14,1165],16,79,[15,1795],1735,[1734,348],[1799,349],472,473,476,[1799,477],[1746,1800],1746,1808,1808,1744,1810,[1810,348],[1811,349],[420,350],421,486,423,423,422,487,486,422,[423,213],[1636,214],1569,1571,1636,1635,1570,1569,1569,1572,1634,1572,1570,[1300,1507],1299,[1364,1505],[1300,1697],[1300,1698],[1300,1701],1363,1364,1363,1300,[1300,1801],1804,1803,[1364,1612],1364,1300,1300,1364,1364,2191,2192,1299,[1364,1638],[1300,1639],[1364,1640],1300,1300,1299,[1363,221],[547,222],[3777,552],2684358337,[3777,227],[3777,229],[3777,231],485,423,422,423,420,[2684358337,358],2684358337,[2684358337,356],421,423,[487,221],[487,222],423,484,[2684358337,228],485,487,[486,348],[422,412],413,[486,414],422,[3777,360],3777,[3777,419],486,423,423,486,487,423,423,422,[422,86],[423,87],[422,151],487,487,487,423,[422,86],[422,87],[3777,228,151],[3777,231],485,[3777,488],3777,[3777,293],[3777,294],[3777,293],485,[487,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2358,3220],[2357,2805],[2357,2806],[2424,2807],[2360,2808],[2359,3020],3021,3022,3025,3026,[3182,3027],[3182,3020],3021,3022,3025,3026,[2424,3027],2359,[2422,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13643,13392,12496],[13643,13393],[13643,13394],[13643,13395],13649,[13585,12743],12744,[13586,12745,12521],[13585,12681,12522],[13585,12523],[13586,12524],[13648,14083,12525],[13585,14084],[13515,14085,12585],[13648,12586],[13651,12587],[13584,13126,12588],[13643,13652,13127,12589],13643,[13643,13455,12494,12393],[13584,12429,12394],[13649,12426,12395],[13585,12489,12396],[13584,12397,14337],14338,[13587,12494,14339],[13648,12495],[13649,12496],13587,13649,13586,13651,[13649,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,[528,3155],3410,[464,3411],527,531,[595,909],[527,910],[532,911],[526,912],463,[525,2001],[464,2002],[1734,400,2003],[1799,2004],[1735,4089],[1735,4090],[1798,1938],[1734,1939],1734,[1735,333],461,461,463,[463,3282],[526,3342],[464,3343,339],[526,3346],[1286,3284],1286,1286,1414,1286,1286,[462,3147],[525,3148],[462,132],[526,133],[528,134],[528,135],[528,136],[525,137],[462,138],[464,139],525,527,526,525,530,530,[1803,529],1491,[1805,588,1525],[1739,589,1526],[1803,399,1527],1741,1428,1741,[1740,1166],[1741,1167,897],[1804,1168,898],[1805,1169],1739,1739,1427,1741,[1739,333],[1740,335],[1740,333,1525],[531,1526],[594,1527],596,[526,909],[527,910],[530,911],[462,912],596,461,532,[530,3282],[463,3283],3406,3407,3410,[1286,3411],1286,2246,1286,1286,[1286,3469],[1286,3143],[1286,3144],[1286,3145],[1286,3146],[1286,3470],[1286,3471],[1286,3474],1286,1286,1286,1286,1286,1286,[1286,7],8,9,[1286,10],1286,1286,1286,[1414,1525],[1286,1526],[1286,1527],1286,1286,[1286,3469],[1286,3143],[1286,3144],3340,[530,3341],[525,3277],527,464,659,660,532,532,526,461,462,461,464,462,[1799,400],1734,1798,[1798,332,3208],530,526,595,[1734,269],[1735,335,3219],[1735,3220],1735,[1735,1938],[1798,1939],1798,1735,1735,[1734,2258],[1735,2259],[79,1800],80,80,[80,1604],[16,1540],1799,1799,1798,[80,1800],15,16,79,79,[16,1604],[80,1540],[16,1544],15,75,76,[79,1100],[80,1101],16,16,[79,1795],1798,1798,1798,1799,[1798,2258],[1734,2259],1735,1734,1735,1735,[1744,1736,2766],[1744,2767],[1811,2768],[1810,1795],1799,1735,1798,1799,[1798,405],406,[79,1670,407],[16,343],15,77,78,[79,1604],[79,1540],1799,[1799,348],[1799,412],413,[1734,536],[1798,537],[1735,540],[1747,1860],[1746,1864],1811,1810,1746,1811,[1810,348],[1810,412],413,[3777,414],[3777,547],421,487,487,487,487,486,487,[422,277],[1569,278],1635,1634,1570,1636,1633,[1363,1698],[1364,1699],1571,1571,1634,[1300,1637],1299,1363,1364,1299,1299,1363,1300,1364,1300,1300,[1364,1674],1805,1803,1739,[1363,1546],[1363,1547],[1300,1548],[1364,1549],[1364,1612],1300,1300,1299,[1363,1702],[1364,1703],1363,[1299,1610],[1299,1547],[1299,1548],[1300,1549,285],[3777,286],2684358337,2684358337,[3777,483],486,423,422,487,423,487,484,[2684358337,294],2684358337,[2684358337,293],485,423,[423,285],[487,286],422,422,487,486,486,[487,221],413,[422,477],423,422,[3777,424],3777,[3777,356],421,423,487,[422,23],[423,27],[486,24],[487,27],[422,24],[486,150],[487,151],422,422,423,[423,23],[422,24],[422,150],[423,151],486,486,486,[3777,488],3777,[3777,483],484,485,487,422,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2424,3027,2869],[2359,2870],[2357,2871],[2357,3020,2872],3084,3085,0,0,3090,3091,3084,3085,0,0,3090,3091,[2360,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13584,12560],13649,13649,[13649,13133],[13587,13134],[13648,13135],[13651,12808],[12809,12585],[13649,12552,12586],[13584,12587],[13587,12588],[13585,12589],13651,13586,[13648,12650],[13649,12651],[13586,13190,12652],[13649,13191],[13643,13459],[13643,13519,12457],[13651,12458],[13648,12459],[13586,12460],[13584,12461,14401],[13584,14402],[13585,14403],[13587,12559],[13651,12560],13584,13587,13586,13648,[13587,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,[525,3155],[594,3156],526,461,787,788,[594,974],[463,975],531,463,[525,2065],[1734,399,2066],[1734,2067],[1799,2068],[1735,769],[1734,2001],[1734,2002],[1735,2003],[1798,268,2004],462,463,527,[461,3282],[526,3346],3406,3407,[3410,3689],[527,1479,3348,3690],[461,1480],[464,1481],[461,1482],[461,1483],[527,1351],[464,3211],[528,3212],[464,196],197,198,199,200,201,[464,202],[526,1525,203],[463,1526],[464,1527],525,527,526,528,[1804,529],1803,[1805,1589],[1741,1590],[1741,1591],[1803,1592],1491,1739,[1739,1230],[1231,961],[1232,962],[1803,1233],[1804,1234],1741,1741,1804,[1805,397],[1739,589],[596,1589],[595,1590],[594,1591],[528,1592],464,[527,974],[527,975],462,461,[525,16830],[464,3282],[531,3346],3347,[1286,3470],[1286,3471],[1286,3474],1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,2310,1286,1286,1286,1286,[1286,2957],[1286,2958,7],8,9,[1286,2961,10],[1286,2962],1286,1286,[1286,1589],[1286,1590],[1286,1591],[1286,1592],1286,1286,1286,1286,[1286,3404],3405,[463,3341],[530,3277],461,723,724,594,594,532,527,462,463,532,[1735,593],1798,1798,[1799,333,16700],[526,3272],[463,3277],532,594,[464,3282],[596,3283],[1798,3284],[1734,2001],[1735,2002],[1735,2003],[1799,2004],1798,1735,1734,1735,[79,1671],80,80,[15,1795],1735,1734,1735,[16,1863],[15,1671],16,79,[79,1539],[80,1540],1799,1799,1734,[79,1606],79,16,[80,1164],[16,1165],13,14,[79,1668],1799,1798,1799,1798,1734,1798,1798,1734,1734,[1735,2511],[1810,1800],[1811,2831],1745,[1809,1859],1735,1799,1799,1734,1734,[1799,470],471,[80,1540,214],[16,1541],[15,1542],[15,1543],1799,1798,1735,[1735,221],476,[1798,477],[1808,1670],[1811,1859],[1808,1671],1810,1747,1808,1744,1746,1811,[1744,221],476,[3777,296,477],3777,3777,[3777,357],421,486,423,420,[3777,549],[3777,550],[3777,551,341],[1635,342],[1570,343],1634,[1363,1697],[1363,1698],[1299,1701,1446],[1364,1447],[1363,1448],[1364,1505],[1299,1699],[1300,1700],[1300,1507],1300,1364,1364,1300,1299,1364,1299,1364,2011,1300,1364,[1363,1801],1739,[422,1866],[486,1867],[422,1868],[487,1869],1739,1741,[1299,1546],[1300,1613],1299,1299,[1299,1545],[1299,1546],1805,1739,[1805,348],[1803,349],[3777,350],2684358337,[3777,292],485,423,486,422,422,423,486,486,[2684358337,488],2684358337,[2684358337,483],487,[422,348],[486,349],[487,350],486,423,487,422,423,[423,285],[486,286],[422,1129],[423,1130],486,484,[3777,294],3777,[3777,483],486,[422,86],[486,87],[422,88],[3777,488,91],[3777,88],[3777,483,91],[422,151],423,422,487,[486,86],[423,87],[486,88],[422,151],487,420,[3777,549],421,484,[3777,228],485,486,422,487,[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2422,2958],[2422,2961],3084,3085,0,0,0,0,3090,3085,0,0,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13648,12624],13585,13649,[13650,13197],[13650,13198],[13651,13199],13649,[13651,12551],[13650,12616,12650],[13648,12651],[13584,12652],13649,13649,[13648,769],13586,13651,13585,13586,[13643,13523],[13643,13583,12521],[13586,12522],[13587,12523],[13650,12524],[13649,12525],13651,13585,[13587,12623],[13585,12624],13649,13650,13584,13584,[13584,12679],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,[528,3219],[531,3220],531,594,851,852,596,463,528,464,[1799,593,2129],[1798,2130],[1798,2131],[1798,2132],[1798,833],[1799,2065],[1734,2066],[1799,2067],[1799,332,2068],526,462,[462,3282],[527,3283],3410,[463,3470],[525,3471],[528,3732,3753],[527,3754],[526,403],463,526,463,[525,3020],[527,3021],[464,3085],[461,260],261,262,263,264,265,[525,266],[463,1589,267],[526,1590],[462,1591],[528,1592],462,464,463,[1803,593],1739,[1803,1653],[1804,334,1654],[1805,269,1655],[1739,336,1656],1740,[1739,1293],[1805,1294],[1295,1025],[1296,1026],[1297,1027],[1805,1298],[1739,334],[1805,335],1739,1740,1740,[1741,332,1653],[464,1654],[596,1655],[596,1656],526,594,530,532,461,[528,16894],[594,3155,16895],3410,[1286,3411],1286,1286,1286,1286,2376,1286,1286,1286,1286,1286,1286,1286,2123,2124,1286,[1286,653],[1286,654],[1286,655],[1286,656],1286,[1286,3020],[461,3021],[462,3022,7],8,9,[463,3025,10],[596,3026],[1286,3027],1286,[1286,2957,1653],[1286,2958,1654],[1286,2961,1655],[1286,2962,1656],1286,1286,1286,1286,1286,[1286,3404],3405,[531,3148],596,594,527,527,531,[1798,589],[1798,590],596,532,[1799,400],1798,1734,[1735,268],[528,16764],[462,3336],[531,3341],[526,3344],[596,3345],[464,3346],3347,[1798,3348],[1735,2065],[1735,2066],[1799,2067],[1798,2068],1798,1799,1735,[80,1608],141,142,80,[79,1859],[80,1862,1938],[15,1863,1939],[80,1670],80,16,79,[80,1604],1799,1799,1734,1799,1798,1734,[15,1607],79,16,16,77,78,79,[79,1668],1735,1734,1735,1799,1735,1735,1799,[1798,2574],[1735,2575],[1746,1864,2576],1745,1811,1747,[1746,1668],1799,[1798,1938],[1735,1939],1735,1735,[1798,277],[1799,278],1798,1734,1799,1734,1798,1734,[1734,285],[1734,286],1798,[1745,1607],1747,1811,1811,1747,1811,1745,1744,1744,[1746,221],[423,222],[3777,424],[3777,292],[3777,228],[3777,294],[3777,547],[3777,549],[3777,551],[3777,358],3777,3777,[3777,405],406,[1570,407],[1363,1508,343],1299,1299,[1299,1510],[1300,1511],[1300,1512],1300,1300,1299,1364,1364,1363,1299,1948,1363,1364,1363,[1364,1446],[1300,1447],[1300,1448],1299,[1364,1609],[487,1676],422,487,420,[3777,548],[421,1865],1741,1740,1803,[1299,1612],[1363,1611],1804,1739,[1364,1866],[1300,1866,348],[1804,412],413,[3777,295,414],2684358337,[3777,547],[3777,550],[3777,551],421,487,486,486,486,422,484,[2684358337,294,348],[2684358337,356,410],[423,411],[486,412],413,[423,414],487,423,487,487,[422,1131],[422,285,1132],[423,286],[486,1193],[423,1194],422,423,[3777,296],597,[3777,547],[3777,551,149],[422,150],[422,151],420,[3777,359],3777,[3777,483],422,422,422,[486,149],[487,150],[486,151],423,487,420,[3777,358],3777,[3777,357],[3777,550],[3777,551],421,[486,86],[487,24],[423,27],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13648,12688],13651,13650,[13586,13261],[13650,13262],[13587,13263],[13587,12424],[13587,12425],[13587,12489],[13585,13126],[13649,13127],13651,13586,[13651,833],13651,13586,13584,[13643,13522],13643,[13643,13647,12585],[13585,12586],[13651,12587],[13650,12588],[13649,12589],13650,13585,[13649,12559],[13649,12560],13586,[13648,13133],[13587,13134],[13650,13135],[13650,12743],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[464,653],[461,3090,654],[528,3026,655],[527,3027,656],530,461,463,463,532,528,[1798,529],[1735,2193],[1798,2194],[1798,2195],[1798,2196],1799,[1798,2129],[1734,2130],[1798,2131],[1799,396,2132],526,[463,3282],[528,3346],3347,[526,3858],787,788,464,466,462,[463,2957],[461,2958],[528,2958],[463,3084],[527,3085,16830],525,[527,324],325,326,327,328,329,[527,330],[461,1653,331],[525,1654],[462,1655],[462,1656],[1804,591],[1803,592],[1804,593],1740,[1805,334],[1740,269,1717],[527,1718],[461,1719],[1803,593,1720],1803,[1804,1357],[1805,1358],[1359,1089],[1360,1090],[1361,1091],[1805,1362],[1741,332],461,[1739,269],[1803,336],1805,[1739,396,1717],[463,1718],[594,1719],[463,1720,404],525,528,461,466,526,525,[527,3219],[1286,3220],1286,1286,1286,1286,1286,1286,1286,1286,[1286,3020],[1286,2958],[1286,2961],[1286,2962],1286,2187,2188,1286,[1286,2957,717],[1286,2961,718],[1286,2958,719],[1286,2961,720],[1286,2958],[531,3084],[462,3085],463,532,595,462,[462,3090],[525,3091],[1286,2958],[594,3021,1717],[526,3022,1718],[530,3025,1719],[531,3026,1720],[1286,3027],1286,1286,1286,1286,1286,[1286,3211],[530,3212],[594,653],[526,654],[530,655],[526,656],[1734,529],1732,1733,[1798,398],[1735,399],[1798,1938],[1798,1939],[1734,334],595,594,[525,3400],3405,3408,3409,3410,[1734,3411],1734,[1734,2129],[1798,2130],[1734,2131],[1734,2132],1799,1735,1735,[80,1672],205,206,16,[79,2001],[79,2002],[80,2003],[79,2004],15,[80,1605],[15,1540],1798,1734,1734,1735,1799,1798,1798,1798,[16,1541],[80,1543],[80,1544],141,142,80,15,[79,1859],1798,1734,1798,1735,1735,1734,[1735,2638],[1809,1670,2639],[1811,2640],1744,1746,1808,1745,[1746,1603,2001],[1735,2002],[1798,2003],[1799,2004],1799,[1735,341],[1799,342],[1799,343],1799,1735,1735,1734,[1734,348],[1799,349],[1735,350],1798,1734,[1747,1606],1811,1744,1745,1744,1747,1744,1747,[1745,285],[487,286],484,485,423,[3777,488],3777,3777,3777,3777,3777,3777,[3777,292],[485,470],471,[1364,214],1299,1299,[1299,1574],[1300,1575],[1300,1576],1299,1947,1300,1299,1299,1947,1364,1364,2063,1363,1300,[1364,1510],[1299,1511],[1300,1512],1300,[1300,1673],[423,1613],423,420,[3777,358],3777,[3777,356],[421,1674],1740,1804,1740,1803,1740,[1300,1676],1300,[1300,221],413,[422,477],484,[3777,228],[3777,295],2684358337,2684358337,[3777,291],423,487,486,486,422,[487,348],[487,349],474,475,476,[423,477],423,423,487,422,486,[487,1195],[423,156,1196],[487,92],[487,93],486,486,487,[3777,424],3777,3777,[3777,213],[487,214],423,[3777,296],3777,[3777,292],485,422,423,422,[487,213],[486,214],422,486,420,[3777,552],3777,3777,3777,3777,3777,[3777,483,86],87,88,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13587,12752],13585,13651,[13648,13325],[13648,13326],[13587,12487,13327],[13585,12488],[13586,12489],13651,[13650,13190],[13584,13191],13650,13585,13651,13587,13585,[13643,13652],13643,[13643,13457],13586,[13586,12650],[13585,12651],[13585,12652],13651,13584,13585,[13585,12623],[13586,12624],13584,[13587,13197],[13651,13198],[13651,13199],13649,[13586,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[461,717],[526,718],[526,3090,719],[463,3026,720],[532,3027],595,525,[594,653],[595,654],[528,655],[526,656],[1735,335],[1734,2258],[1799,268,2259],[1734,335],1734,[1734,2193],[1734,2194],[1735,2195],[1798,460,2196],528,[463,3155],3410,[528,3858],[528,340],851,852,527,525,[525,3083],[526,3021],[461,3022],[527,3022],[461,3085],[461,16894],[462,16895],[528,388],389,390,391,392,393,[463,394],[462,1717,395],[527,1718],[527,1719],[1803,400,1720],1491,1805,1803,1805,[1803,397],[1739,589,1781],[464,1782],[1739,529,1783],[1740,1784],1805,1739,[1739,1422],[1741,1423,1153],[1424,1154],[1741,1425,1155],[1805,1426],[1740,396],462,463,[1803,337],1740,[1741,460,1781],[461,1782],[595,1783],[595,1784],527,526,[531,653],[595,654],[463,655],[528,3282,656],[595,3346],[1286,3284],1286,1286,1286,[1286,2957],[1286,2958,653],[1286,2961,654],[1286,2958,655],[1286,2961,656],[528,3084],[531,3022],[461,3025],[528,3026],[1286,3027],1286,1286,[1286,3020],[525,3021,781],[527,3025,782],[532,3022,783],[525,3025,784],[528,3022],[532,3085],463,596,594,594,530,525,[596,3090],[528,3022],[461,3085,1781],[461,1782],[468,1783],[467,3090,1784],[461,3091],[1286,3092],1286,2246,1286,1286,[1286,3147],[532,3148],[596,717],[463,718],[464,719],[528,720],[1799,529],1796,1797,1734,[1735,2001],[1735,2002],[1735,2003],[1798,524,2004],461,530,527,[528,3469],[1799,401,3472],[1735,3473],[1735,3474],[1798,3561],[1798,3562],[1734,2193],[1798,2194],[1735,2195],[1734,2196],1799,1798,1734,[79,1736],79,15,80,[79,2065],[15,1604,2066],[79,1541,2067],[80,1542,2068],[16,1543],1735,1799,[1735,1938],[1734,1939],1734,1799,1798,1798,1799,1798,1799,1798,[15,1800],205,206,15,15,80,[79,1668],1798,1735,1799,[1798,338],1734,[1809,1608,2702],[1746,2703],[1746,2704],1809,1808,1747,1747,[1810,1667,2065],[1798,2066],[1734,2067],[1799,2068],1734,[1798,405],406,[1798,407],[1799,408],[1734,409],[1734,410],[1735,411],[1799,412],413,[1734,414],1798,[1811,1860],[1810,1864],1747,1809,[1747,1938],[1811,1939],1808,1744,1810,[1809,156],[1744,92],[423,93],423,423,[3777,296],3777,[3777,293],[3777,228],[3777,229],[3777,230],[3777,231],485,487,[487,277],[1299,278],2012,1299,[1300,1638],[1364,1639],[1364,1640],1299,1363,1299,1363,1363,1364,1363,1363,1364,1300,1363,[1299,1574],[1363,1575],[1300,1576],1300,[1363,1737],1741,[487,1550],[3777,296],3777,3777,3777,[3777,483],[422,1609],1804,1805,1741,[1364,1806],1299,1364,[1363,285],[423,286],487,423,423,484,[3777,232],2684358337,[3777,355],423,423,487,486,[422,348],[422,412],413,[486,538],[422,539],[487,540],487,422,486,487,486,487,420,[2684358337,549],[421,156],[486,92],[486,93],486,487,484,[3777,294],[3777,86],[487,87],[487,151],487,[3777,360],3777,[3777,547],421,486,487,487,[422,213],[3777,548,214],421,420,[3777,358],3777,3777,[3777,293],[3777,295],[3777,23],[3777,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13584,12815],[13586,13133],[13585,13134],[13649,13135],13586,13651,[13648,12551],[13587,12552],13650,13586,13586,[13585,12329],[13584,12330],[13587,12331],[13587,12332],[13649,12333],13584,[13643,13522],[13643,13456],13649,13585,13587,13650,13587,13585,13584,13587,[13585,12559],[13587,12560],13585,[13585,13261],[13649,13262],[13649,13263],13651,13587,[13650,12551],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[462,781],[463,782],[462,783],[526,3090,784],[525,3091],[464,3092],527,[531,717],[528,718],[596,719],[463,720],528,[1798,269],528,596,[1798,269],[1799,270],[1798,271,2258],[1735,272,2259],594,526,[464,3219],[594,3220],531,594,527,525,531,462,[530,3147],[464,3148],1990,596,596,526,530,[595,452],453,454,455,456,457,[532,458],[463,1781,459],[463,1782],[1803,529,1783],[1803,1784],1741,1804,1491,1741,1803,[1805,1845],[1740,398,1846],[464,1847],[1804,335,1848],1804,1491,1741,[1739,1487],[1741,1488],[1739,1489],1805,[1803,460],526,596,[1739,401],1741,[1741,524,1845],[461,1846],[464,1847],[461,1848],531,464,[528,717],[525,718],[468,719],[525,3155,720],3410,[1286,3348],1286,1286,[1286,3020],[527,3021],[464,3022,717],[528,3025,718],[595,3022,719],[461,3025,720],[532,3085],466,467,[464,3090],[594,3091],[1286,2961],[1286,2958],[525,3084],[596,3085,845],[527,846],[530,847],[462,848],462,463,595,461,525,464,526,527,464,464,[468,1845],[528,1846],[464,1847],[594,1848],[461,3090],[528,3091],[1286,3092],1286,1286,1286,[1286,3211],[531,3212],[526,781],[531,782],[596,783],[594,784],532,[1798,336],1799,1798,[1799,2065],[1734,2066],[1799,334,2067],[596,2068],530,464,531,462,[1798,465],1734,1734,[1799,3625],[1799,3626],1734,[1798,2258],[1799,2259],1798,1735,1735,1799,1798,[80,1606],15,16,[80,1539,2129],[1735,2130],[1735,2131],[1799,2132],1734,1734,[1799,2001],[1734,2002],[1798,2003],[1798,2004],1734,1798,1798,1798,[1734,3020],[1798,2961],[1734,2958],[80,1864,2961],[79,2962],80,15,80,15,80,[16,1859],1799,1799,1735,1798,[1747,1672,2766],[1744,2767],[1746,2768],1811,1809,1746,1808,[1745,1731,2129],[1798,2130],[1735,2131],[1798,2132],1798,1734,[1798,470],471,472,473,474,475,476,[1798,477],1734,[1810,1670],1746,1747,[1744,1604],[1744,1541,2001],[1808,1542,2002],[1744,1543,2003],[1744,1607,2004],1809,1744,1747,[1746,156],[1809,157],[486,27],[423,24],[3777,360,28],3777,[3777,483],422,423,423,486,487,487,[487,341],[1363,342],[1300,343],1364,[1364,1702],[1300,1703],1363,1363,1363,1363,1364,1299,1299,1299,1363,1300,1363,1364,[1300,1638],[1363,1639],[1300,1640],1300,[1363,1674],1805,[423,1806],[3777,424],3777,661,3777,[3777,291],[422,1673],1804,1740,[1299,1866],[1299,1870],1363,1364,[1299,156],[1299,92],[486,93],423,423,487,[3777,296],2684358337,[3777,419],486,487,423,423,[487,221],413,[487,477,1129],[423,1130],422,420,[2684358337,548],421,422,486,422,423,[2684358337,488],2684358337,[2684358337,357],[2684358337,548,156],[2684358337,549,157],[423,3524],[422,3525],[423,3526],[484,24],[2684358337,150],[2684358337,291,151],487,487,[3777,424],3777,3777,[3777,483],487,487,[423,149],[3777,150],[3777,151],[3777,547],[3777,552],3777,[3777,293],[3777,228],485,[3777,488,86],87,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13585,12560],13584,[13649,13197],[13650,13198],[13649,13199],13651,13587,[13650,12615],[13649,12616],13587,13587,13648,[13585,12393],[13587,12394],[13587,12395],[13586,12396],[13586,12397],[13643,13523],13643,[13643,13647],13648,13585,[13585,12329],[13651,12330],[13651,12331],[13651,12332],[13585,12333],13648,[13648,12623],[13585,12624],13651,[13643,13712,13325],[13586,13326],[13586,13327],13648,13586,[13585,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[526,845],[528,846],[463,847],[463,848],[526,3155],[527,3156],462,[531,781],[527,782],[596,783],[532,784],464,464,595,[527,16830],526,532,525,[462,3282],[462,3342],[461,3343],[528,3346],[462,3284],528,528,526,461,532,530,[462,3275],[526,3276],[525,3342],[528,3343,653],[464,3342,654],[532,3277,655],[464,656],[525,516],517,518,519,520,521,[532,522],[594,1845,523],[1804,592,1846],[1741,593,1847],[1804,1848],[1741,333],[1805,269],[1740,270],[1739,272],[1805,336],1805,[1803,334],463,530,[1741,269],[1804,270],[1803,271],[1740,272],[1741,269],[1805,335],[1741,333],[532,18],[525,19],[532,20],[1739,465],1804,[1803,588],526,595,526,528,462,[463,781],[532,782],[532,783],[462,3219,784],[1286,3220],1286,1286,[1286,3083],[595,3084],[464,3085],[595,781],[463,782],[462,783],[525,784],527,527,596,462,[595,3090],[594,3025],[595,3022],[527,3085],[530,909],[525,910],[461,911],[596,912],462,461,594,530,526,526,526,532,526,596,[461,653],[596,654],[464,655],[528,656],532,[527,3155],[1286,3156],1286,1286,1286,[1286,3275],[595,3276],[462,3277,845],[461,846],[528,847],[463,848],530,528,[1735,269],[1799,273],[1798,2129],[1798,2130],[1734,588,2131],[1735,589,2132],[1735,590],596,464,596,[1734,400],1735,1735,1799,1798,1735,1734,1735,1798,1735,1798,1734,1798,[80,1671],16,16,[79,1603,2193],[1735,2194],[1798,2195],[1734,2196],1798,1799,[1798,2065],[1734,2066],[1799,2067],[1799,2068],1798,[1798,2957],[1735,2958],[1798,2961],[1798,3084],[1734,3025],[16,1670,3022],[80,3025],[80,1604,3026],[15,1540,3027],[15,1544],79,143,144,15,[15,1859],1735,1734,1798,[1810,1736],[1808,2831],1747,[1744,1036],[1808,1037],1811,[1744,1539],[1735,2193],[1734,2194],[1798,2195],[1799,2196],1799,1734,1735,[1798,535],[1800,536],[1744,537],[1809,538],[1746,539],[1747,1795,540],1798,[1747,1608],1808,1809,1808,[1745,1795],[1798,2065],[1735,2066],[1734,2067],[1746,1608,2068],1808,1746,1809,1808,[1744,156],[1746,91],[1744,88],[1747,92],[3777,292,93],485,487,486,422,422,487,420,[3777,358,405],406,[1364,407],[1300,408],[1363,409],[1363,410],[1299,411,31],[1364,343],1300,1299,1363,1947,1364,[1299,348],[1363,408],[1363,409],[1299,410],[1300,411],[1299,343,1702],[1300,1703],1299,1363,1300,[1300,1801],[487,1806],[3777,488,348],[3777,408,676],223,[3777,410,678],[3777,355,411],[423,1737,343],1805,[1299,1677],1363,1363,1364,1300,1363,[1300,156],[1364,157],[420,158],421,422,[3777,424],2684358337,[3777,356],421,487,487,420,[3777,359,221],[423,222],[487,1193],[422,1194],486,[2684358337,488],2684358337,[2684358337,356],421,487,422,420,[2684358337,358],2684358337,2684358337,2684358337,[2684358337,156],[2684358337,483,3588],[486,3589],[422,3590],[2684358337,232,88],[2684358337,151],[2684358337,355],422,486,484,[3777,228],[3777,229],485,423,487,[422,213],[3777,228,214],[3777,294],3777,3777,597,[3777,547],[3777,549],[3777,548,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,730,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,731,732,733,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13651,12624],13651,[13650,13261],[13586,13262],[13650,13263],13648,13587,[13585,12679],[13649,12680],[13586,12681],13585,13649,[13586,12457],[13650,12458],[13651,12459],[13650,12460],[13643,13652,12461],13643,13643,[13643,13455],13587,13584,[13584,12393],[13584,12394],[13584,12395],[13648,12396],[13587,12397],[13585,12686],[13584,12687],[13648,12688],[13643,13522],13643,[13643,13520],13585,13650,[13584,12424],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[461,909],[462,910],[463,911],[461,912],[527,3219],[461,3220],526,[596,845],[525,846],[526,847],[462,848],531,[461,658],463,[463,16894],[525,16895],596,[527,3282],[461,3283],3406,3407,3410,[462,3732],596,594,525,596,596,463,[525,3719],3340,3406,[3407,717],[3214,718],[525,3341,719],[526,3277,720],[527,580],[530,581],[1741,529,582],[1739,583],[1803,524,584],[530,585],[464,586],[1804,400],1740,1741,[1803,334],461,461,595,528,[1805,399],1804,[1803,332],525,596,528,463,461,528,526,596,532,[526,82],[528,83],[530,84],[1741,529],1428,1803,[1803,397],526,527,526,526,[594,845],[462,846],[463,847],[596,3155,848],[1286,3156],1286,1286,[1286,3147],[463,3148],466,[461,845],[596,846],[525,847],[461,848],530,530,787,788,528,594,462,[463,339],594,[528,974],[525,975],461,[525,7515],7516,7517,7518,7519,7520,[596,7521],594,528,594,[464,717],[463,718],[526,719],[464,720],525,[531,3219],[1286,3220],1286,1286,1286,[1286,3339],3340,[461,3341,909],[594,3277,910],[461,911],[532,912],531,532,530,[1735,337],[1798,2193],[1798,2194],[1735,2195],[1799,2196],1799,[1799,588],[1799,591],[1735,593],[15,1671],[79,1669],[80,1860],[15,1861],[15,1862],[16,1863],1799,1798,1734,1798,1798,[1734,339],[16,1670],16,80,16,[80,1731],[1798,2258],[1735,2259],1798,1798,1735,[1734,2129],[1734,2130],[1799,2131],[1798,2132],[1798,3083],[1799,3084],[1799,3022],[1734,3025],[15,1862,3085],[15,1864],[80,1604],[80,1540],[1734,3090],[1799,3091,1938],[1799,2961,1939],[16,1606,2962],207,208,80,[80,1036],[80,1668,1037],1799,1735,[1808,1800],1809,1746,[1746,1100],[1746,1101],1811,[1747,1668],1734,[1798,2258],[1799,2259],1798,1799,1798,1734,1735,[1809,1608],1746,1746,[1747,1605],1734,1734,[1809,1672],1811,1745,1745,[1747,1603],[1799,2129],[1734,2130],[1798,2131],[1746,1672,2132],1744,1746,1746,1747,1808,1747,1809,[1744,156],[1808,157],[486,158],423,486,423,487,486,[3777,488],3777,[3777,470],471,472,473,474,95,[1364,342],[1364,343],1364,1364,[1364,348],[1300,408],[1299,412],472,473,474,475,[1300,342],[1299,343],1364,1300,[1300,348],[1300,1801,408],[487,1806,409],[422,412],472,287,474,475,[1739,342],[1364,1870,343],1300,1364,1363,1364,1936,1947,1300,[1300,221],[3777,222],[3777,357],[3777,551],[3777,552],2684358337,2684358337,[3777,357],[3777,548],[3777,549],[3777,358],[2684358337,285],[423,286],423,487,420,[2684358337,552],2684358337,[2684358337,292],485,487,422,[2684358337,488],2684358337,[2684358337,292,1129],[2684358337,229,1130],[2684358337,230],[2684358337,231],485,[487,1129],[423,1130],[2684358337,296],2684358337,[2684358337,419],486,422,422,487,423,486,423,486,[422,277],[487,278],484,[3777,232],3777,3777,3777,3777,[3777,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,794,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,795,796,797,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13650,12431],[13651,13325],[13587,13326],[13585,13327],13649,13648,[13586,12743],12744,[13584,12745],[13650,12681],13586,[13587,12521],[13587,12522],[13584,12523],[13650,12524],[13585,12525],[13643,13458],13643,[13643,13583],13585,13587,[13649,12457],[13584,12458],[13587,12459],[13584,12460],[13650,12686,12461],[13648,12750],12751,[13643,12752],13643,13643,[13643,13456],[13584,12361],[13586,12362],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,[464,974],[462,975],525,[527,3090],[464,3026],[531,3027],[532,909],[461,910],[595,911],[531,912],461,532,526,[525,3282],[594,3342],[595,3343],[532,3346,653],[3347,654],[595,3856,655],[596,3857,656],[463,3795],462,528,[525,3020],[595,2958],[531,2961],[525,2962],462,527,[595,3849],[464,3854],[528,3855,781],[530,3856,782],[3405,783],[462,3276,784],[528,3277],532,594,[1803,336],[1741,588],463,[1740,529],1805,[1739,334],[1805,269],530,526,526,461,[1741,337],1741,1491,[1805,396],463,659,660,461,[596,653],[595,654],[532,655],[525,656],527,[463,146],[594,147],[595,148],462,[1739,336],1803,1739,[1427,332],525,526,[526,16700],[595,909],[462,910],[532,911],[463,3219,912],[1286,3220],1286,1286,[1286,3211],[527,3212],596,[532,909],[594,910],[526,911],[461,912],532,594,851,852,461,532,464,595,532,530,531,526,[525,7579],7580,7581,7582,7583,7584,[462,7585],525,530,527,[526,781],[526,782],[461,783],[532,784],[527,3282],[464,3283],[1286,3284],1286,1286,1286,1286,[1286,3404],3405,[532,3341,974],[528,3277,975],527,526,525,464,[1798,401],1799,[1734,2258],[1735,2259],1735,1734,1798,1734,1798,[16,1606],79,16,15,11,12,[15,1795],1734,1735,1798,1798,[16,1864],16,80,[80,1539],[79,1607],[16,1669],[79,1861],1798,1799,1799,1734,[1799,2193],[1734,2194],[1799,2195],[1799,2196],[1799,3147],[1734,3148],[80,1862],[79,1671],79,16,[79,1795],1799,[1798,2001],[1734,3090,2002],[1799,3025,2003],[1735,3026,2004],[16,1540,3027],[80,1544],15,[79,1100],[16,1101],[79,1859],1799,1734,[1810,1606],1809,[1747,1164],[1810,1165],1809,1746,[1810,1859],[1746,1670],[1811,1603],1735,1734,1735,1799,1798,[1809,1672],1746,1746,[1808,1859],1799,1734,[1811,1736],1810,1808,1809,[1810,1667],[1799,2193],[1799,2194],[1799,2195],[1744,1736,2196],1745,1810,1809,[1809,1036],[1808,1037],1744,1811,1744,[1747,221],[487,222],487,487,486,420,[3777,548],[3777,358],3777,[3777,292],[485,535],[422,536],[487,537],[486,538],[3777,488,539,159],406,[1299,407],[1299,408],[1299,409],[1299,412],280,413,[423,536],[422,537],[423,538],[422,539],406,[1299,407],[1300,408,3890],[1300,409,31],[1300,412],472,473,476,[3777,296,536],[3777,351],[3777,538],[421,539],406,[1299,407],[1300,343],1299,1300,1300,1300,1299,1299,[1300,285],[2684358337,286],2684358337,2684358337,2684358337,2684358337,2684358337,2684358337,2684358337,2684358337,2684358337,[2684358337,293,156],[422,92],[423,93],420,[2684358337,358],597,2684358337,[2684358337,483],486,423,487,484,[2684358337,228],[485,1193],[487,1194],423,423,422,[423,1193],[487,1194],[2684358337,424],2684358337,[2684358337,291],487,423,420,[2684358337,548],[2684358337,549],[2684358337,550],421,[423,86],[487,87],[487,151],487,484,[3777,228],[3777,229],[3777,230],[3777,231],[228,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,2629],[860,2630],[859,2630],[860,2630],[859,2630],[860,2630],[859,2630],[860,2630],[859,2630],[860,2630],[859,2630],[860,2630],[859,2630],[860,2630],[859,2630],[860,2631],859,[860,1245],[859,1246],[860,1246],[859,1246],[860,1246],[859,1246],[860,1246],[859,1246],[860,1246],[859,1246],[860,1246],[859,1246],[860,1246],[859,1246],[860,1246],[859,1247],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13651,12496],13585,13587,13586,13650,13651,[13584,12808],12809,[13650,12552],13649,[13651,12585],[13585,12586],[13650,12587],[13650,12588],[13648,12589],13650,[13643,13392],13648,13586,13586,[13586,12521],[13587,12522],[13651,12523],[13585,12524],[13648,12559,12525],12814,[13643,13459,12815],13643,13643,[13643,13456],[13651,12424],12425,12426,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[526,2962],462,464,461,462,[463,3090],[462,3091],[594,3092],[463,974],[461,975],596,528,594,[464,3282],[461,3283],3406,3407,[3410,717],[525,3732,718],[531,719],[785,720],786,595,[528,3083],[594,3084],[461,3022,16830],[525,3025],[526,3026],[659,3027],660,528,527,[530,845],[526,846],[532,3469,847],[3340,848],[464,3341],[596,3277],594,[1741,400],1741,[1740,398],[1740,400],1739,[1803,524],463,527,530,464,525,[1803,401],1805,1739,[1739,460],532,723,724,528,[525,717],[532,718],[526,719],[531,720],527,[463,210],[525,211],[463,212],462,[1803,400],1803,1741,[1427,396],528,466,[532,16764],[525,3282],[464,3342,974],[526,3343,975],[461,3346],[1286,3284],1286,1286,[1286,3147],[464,3148],530,595,[531,974],[527,975],526,463,464,595,531,595,531,1926,527,596,528,594,595,[462,7643],7644,7645,7646,7647,7648,[531,7649],596,463,596,[530,845],[527,846],[464,847],[463,3282,848],[531,3346],3347,[1286,3348],1286,1414,1286,1286,1286,[1286,3404],3405,[525,3148],525,525,596,461,[1799,465],1798,1735,1734,1798,[1735,333],[1734,269],[1798,270],[1799,271],[1735,336],[80,1540],[79,1540],[79,1607],75,76,[79,1668],[15,1862],1734,1735,[16,1608],79,79,[15,1605],1734,[79,1671],15,79,[15,1603],1735,1799,1799,1735,[1798,2258],[1799,2259],[1735,3020],[1799,3021],[80,1671,3085],16,15,[16,1539],[15,1540],1798,1798,[1735,2065],[1799,2066],[1735,2067],[1735,3090,2068],[1799,3091],[16,1800,3092],79,[80,1164],[79,1165],[80,1605],1798,1799,[1747,1670],1808,1811,1810,1745,1745,1746,1747,[1811,1667],1799,1734,1735,[1735,340],1798,[1811,1736],1808,1809,1809,[1747,1669],[1809,1861],[1747,1670],1809,1746,1811,[1811,1731],1799,[1798,2258],[1735,2259],1799,[1811,1607],1747,1810,[1808,1100],[1810,1101],1745,1810,1811,[1809,285],[549,286],[3777,548],[3777,549],[3777,550],[3777,552],3777,[3777,227],[3777,228],485,487,422,423,423,[3777,296],[3777,470],471,472,473,476,[423,536],[487,540],422,423,422,487,[486,470],471,3954,95,476,[422,536],[487,537],[422,540],[3777,360],101,[3777,292],485,[486,470],471,[1300,342],[1299,343],1363,1364,1363,1300,[1364,348],[1299,349],[2684358337,350],2684358337,2684358337,2684358337,2684358337,[2684358337,227],[2684358337,228],[2684358337,229],[2684358337,230],[2684358337,231],485,[486,156],[487,92],[2684358337,488,93],2684358337,2684358337,[2684358337,292],485,422,422,486,486,487,422,423,423,487,487,487,420,[2684358337,358],661,[2684358337,355],486,422,[2684358337,488],2684358337,2684358337,2684358337,[2684358337,291,149],[3777,548,150],[421,151],487,487,420,[3777,548],[3777,549],[3777,550],421,[422,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,[923,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[924,2695],923,[924,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[923,1311],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13586,12560],13651,[13650,13133],[13585,13134],[13587,13135],13586,13586,[13584,12551],[13650,12680],[13586,12746],[13650,12747],[13584,12748,12650],[13586,12749,12651],[13587,12746,12652],[13651,12747],[13584,12681],13648,13648,13648,[13585,1954],[13584,12585],[13584,12586],[13585,12587],[13650,12588],[13584,12623,12589],[13584,12624],[13643,13652],13643,[13643,13391],[13584,12487],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[528,3026],[525,3027],528,526,527,527,[526,3155],[462,3156],595,531,461,531,[595,3282],[532,3346],3347,[528,3856],[526,3857],[594,3732,781],[530,782],[530,783],[849,784],850,532,[463,3147],[468,3148],[528,16894],[531,16895],[530,3090],[723,3091],[724,3027],594,1990,[526,909],[526,910],[531,911],[464,3404,912],3405,[461,3148],[1740,399,653],[1803,654],[1803,655],[1428,656],1740,[1740,268],596,464,594,461,527,464,[1803,465],1741,1803,[1804,524],595,525,531,464,[594,781],[528,782],[464,783],[532,784],531,528,528,[461,653],[1804,529,654],[1740,655],[1492,656],1740,[1427,460],[596,16830],464,[532,3282],[530,3283],3406,3407,3410,[1286,3348],1286,1286,[1286,3211],[530,3212],531,[526,338],527,525,530,526,[532,653],[463,654],[595,655],[596,656],463,596,461,530,527,528,526,[462,7707],7708,7709,7710,7711,7712,[462,7713],526,528,532,[531,909],[594,910],[528,911],[462,3155,912],3410,[1286,3411],1286,1286,1286,1286,1286,1286,[1286,3083],[463,3084],[464,3085],[530,16830],528,530,531,530,[1735,273],1799,1799,[1735,334],595,595,462,462,[1799,337],1799,1734,1734,[15,1541],[16,1542],[16,1543],[15,1544],[79,1795],1735,[80,1736],80,[80,1605],1735,[80,1800],15,16,79,[79,1731],[1735,402],1734,1798,1799,[1799,2957,2511],[1799,2958],[1735,3084],[79,1671,3085],15,79,16,[15,1795],1798,1799,1798,[1798,2129],[1798,2130],[1734,2131],[1735,2132],[1798,3155],[1799,3156],[16,1540],[79,1606],80,[79,1795],1735,1798,[1745,1607],1809,1809,1746,1744,[1747,1604],[1745,1607],1747,[1811,1731],1799,1734,1734,1734,1735,1734,[1809,1606],1810,1809,1809,1745,1745,1810,1808,1811,[1745,1859],[1810,1670],[1810,1669],[1811,1860],[1809,1861],[1744,1864],1811,1746,[1747,1164],[1744,1165],1747,1808,[1745,348],[1746,349],[3777,350],3777,3777,3777,597,3777,[3777,483],422,486,422,422,487,487,[3777,360],3777,[3777,535],[3777,355,536],[486,537],[487,540],486,423,487,423,486,486,486,[486,535],[3777,296,536,4018],[3777,537,159],[3777,547,540],[3777,549],421,487,[3777,424],3777,[3777,483],422,423,[487,535],406,[1299,407],[1299,408,3883],[1363,409],[1363,410,3883],[1299,411],[1364,412],413,[2684358337,294,414],2684358337,2684358337,2684358337,[2684358337,293],485,422,487,487,423,422,420,[3777,359,156],[3777,157],[2684358337,158],[2684358337,227],485,423,486,486,423,422,487,486,487,422,422,422,486,[2684358337,488],2684358337,2684358337,[2684358337,419],487,487,484,[2684358337,294],2684358337,[2684358337,86],[3777,360,87],[3777,151],[3777,357],421,422,[3777,488],3777,3777,3777,[3777,483],[487,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[860,2695],859,[860,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[859,1311],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13585,12624],13586,[13651,13197],[13585,13198],[13586,13199],13584,13651,[13584,12743],12744,12810,12811,12812,12813,12810,12811,[13585,12745],[13585,12746],[13648,12747],[13586,12681,2017],[13585,2018],[13587,2019],[13586,12650],[13584,12651],[13648,12686,12652],[13584,12687],[13584,12688],[13643,13523],13643,[13643,13647],[13585,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[464,3090],[464,3091],[526,3092],464,461,[463,653],[461,3219,654],[532,3220,655],[464,656],785,786,528,[532,3155],3410,[596,3795],461,461,[464,845],[595,846],[595,847],[526,848],532,464,[532,3211],[464,3212],596,[462,653],[461,654],[528,3090,655],[594,3026,656],[462,3027],462,525,[594,974],[530,975],594,[531,3147],[463,3148],[1739,335,717],[1492,718],[1805,719],[1741,720],[1741,333],[464,16830],595,[530,653],[525,654],[526,655],[525,656],462,525,[1740,273],1805,[1803,397],595,527,595,530,[463,845],[594,846],[527,847],[461,848],525,595,531,[462,717],[594,718],[1803,336,719],[1804,720],[1805,333],461,[594,16894],[463,3282,16895],[528,3346],3347,[1286,3470],[1286,3471],[1286,3474],1286,1286,[1286,3020],[530,3021],[527,3085],531,528,530,594,531,463,[461,717],[525,718],[527,719],[532,720],528,526,463,594,461,527,461,[463,7771],7772,7773,7902,7775,7776,[594,7777],526,528,464,594,[595,974],[532,975],[528,3539],[1286,3540],1286,1286,1286,1286,1286,1286,1286,[1286,3147],[464,3148],462,[531,16894],[526,16895],461,463,525,463,[1734,335],[1734,333],526,462,594,526,[594,3023],[1798,465],1734,1799,1735,1799,1735,1798,[15,1671],[79,1669],[15,1862],[79,1671],15,[80,1795],1734,1735,[80,1606],15,[16,1605,2957],[1798,2958],[1798,2962],1798,1734,[1799,3020,2574],[1734,3021,2575],[1798,3022,2576],[15,1671,3085],16,80,15,[16,1605],1735,1734,1798,1735,[1735,2193],[1735,2194],[1798,2195],[1798,2196],[1798,3219],[1735,3220],1798,1734,[80,1540],1734,1734,1734,[1811,1608],1745,1746,1810,1745,[1746,1603],1798,[1808,1540],1798,1798,[1798,1938],[1799,1939],1799,1798,1734,1798,[1810,1540],[1808,1544],1744,1747,1808,1745,[1808,2497],1746,[1809,2499],[1808,2500],1808,1745,1811,1810,1746,1747,1810,1810,1811,[1810,348],[1745,412],413,[228,414],[3777,294],[3777,292],[3777,231],[3777,232],3777,[3777,356],421,423,486,423,420,421,[3777,424],3777,3777,[3777,419],486,486,422,422,422,423,422,423,487,422,[3777,424],3777,3777,3777,[3777,357],[3777,550],[3777,359],3777,[3777,483],423,486,423,[423,470],471,3947,473,3947,475,476,[422,477],484,[2684358337,229],[2684358337,230],[2684358337,231],485,422,487,487,486,423,423,[3777,488],3777,[3777,221],[484,222],[485,1129],[486,1130],487,420,[2684358337,548],421,487,422,422,486,[422,1129],[487,1130],487,422,484,[2684358337,294],2684358337,[2684358337,483],487,422,[487,1129],[484,1130],[2684358337,228,149],[487,150],[3777,424,151],3777,3777,[3777,483],423,484,[3777,294],3777,661,[3777,547],421,[423,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14305,14306,14308,14307,14308,14307,14308,14307,[14308,12885],14307,14308,14307,[14308,12885],14307,14308,14307,14308,14307,14309,14310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,[923,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[924,2695],923,[924,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[923,1311],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13649,12560],13587,[13648,13261],[13649,13262],[13586,13263],13587,13651,13649,[13584,12808],[13584,12874],[13650,12875],[13585,12876],[13584,12877],[13587,12874],[13643,12875],12809,12810,12811,[13649,12745],[13584,12746],[13651,12747],[13585,12748],[13651,12749],[13651,12750],12751,[13643,12752],13643,13643,[13643,13647],[13650,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,[464,3155],[525,3156],462,526,[461,717],[527,3090,718],[463,3026,719],[527,3027,720],849,850,528,[462,3219],[526,3220],525,526,531,[595,909],[463,910],[462,911],[531,912],527,463,[594,3275],[464,3276],[594,3277],[531,717],[464,718],[530,719],[596,3090,720],[594,3091],[532,3092],530,463,525,461,[526,3211],[594,3212],[527,781],[1805,270,782],[1740,271,783],[1740,272,784],596,[527,16894],[525,16895],[530,717],[464,718],[596,719],[595,720],461,530,[1739,337],1803,[1805,334],528,594,532,531,[596,909],[464,910],[530,911],[531,912],595,463,530,[464,781],[596,782],[528,783],[1741,269,784],596,461,[525,3282],[462,3346],3410,[1286,3411],1286,1286,1286,1286,[1286,3083],[462,3084],[526,3085],463,528,531,1926,463,462,526,[528,781],[594,782],[526,783],[596,784],526,525,532,525,594,[525,1525],[596,1526],[525,1527],[1739,589],[1492,593,7837],[1804,7838],[1740,334,7839],[1740,269],531,526,463,463,463,462,532,[532,3603],[1286,3604],1286,2123,2124,1286,1286,1286,1286,[1286,3211],[525,3212],530,461,526,463,595,463,532,531,526,531,[594,16697],464,[595,3282],[530,3087],[1798,400],1799,1798,[1735,1938],[1799,1939],1798,[79,1608],16,15,16,79,[79,1539],1734,1735,1798,[15,1671],[79,3020],[79,1859,3021],[1799,3022],[1734,3026],[1799,2958],[1798,2961],[1798,3084,2638],[79,1862,3085,2639],[16,1670,2640],15,16,[16,1539],[15,1540],1735,1734,1734,1799,1799,1799,[1799,2258],[1799,2259],[1734,3282],[1799,3283],[1798,3284],1799,1799,1798,1798,1735,1735,[1808,1672],1744,1747,1811,1810,[1810,1667],1799,1734,1799,[1734,2001],[1734,2002],[1799,2003],[1798,2004],1735,1735,1734,1798,1798,[1746,1607],1808,1809,1808,[1810,2561],[1811,2562],[1747,2563],[1810,2564],1808,1744,1745,1747,1810,1810,1744,1745,1746,[1747,221],476,[423,477],486,484,485,422,[3777,488],3777,3777,[3777,483],423,487,423,[3777,488],[3777,357],[3777,359],3777,[3777,292],485,423,423,486,422,486,422,422,486,423,422,484,[3777,228],[3777,295],3777,3777,3777,[3777,293],[3777,228],485,487,422,486,420,[3777,548,535],[3777,536,4011],[3777,537],[3777,538,4011],[3777,291,539],[486,540],422,487,486,422,487,423,422,487,487,420,[3777,550],[3777,551],[3777,358],3777,[3777,285],[422,286],[486,1193],[423,1194],422,[2684358337,488],2684358337,[2684358337,356],[2684358337,548],421,487,423,[422,1193],[422,1194],486,423,423,484,[2684358337,228],485,487,422,[423,1193],[423,1194],[486,213],[423,214],484,[3777,295],3777,[3777,356],[3777,548],421,484,[3777,228],[3777,232],3777,[3777,356],421,[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14369,14370,14372,14371,14372,14371,14372,14371,[14372,12949],[14371,14819,12950],[14372,14820],[14371,14821],[14372,12949],[14371,12950],14372,14371,14372,14371,14373,14374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[860,2695],859,[860,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[859,1311],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13584,12624],13650,[13649,13325],[13649,13326],[13584,13327],13648,[13584,12943],[13649,12944],13649,13584,[13648,13133],[13585,13134],[13651,13135],[13643,13652],13643,[13643,12873],[13650,12874],[13584,12875],12809,12810,12811,12812,12813,12814,[13643,12815],13643,13643,[13643,13456],13587,[13650,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,[528,3219],[528,3220],461,461,[526,781],[461,782],[525,3090,783],[462,3091,784],[526,2961],[530,2962],526,[528,3219],[532,3220],525,528,526,530,[528,974],[530,975],2054,462,[1805,589],[1803,590,3719],3340,[594,3341],[532,3277,781],[532,782],[594,783],[461,784],[594,3155],[526,3156],527,532,464,595,[532,3147],[525,3148],[464,845],[527,846],[526,847],[594,848],461,464,596,[596,781],[527,782],[525,783],[464,784],464,532,[1805,465],1428,[1740,397],528,462,461,528,526,[596,974],[530,975],531,530,526,525,[530,845],[528,846],[530,847],[464,848],527,[526,3282],[527,3346],3410,[1286,3411],1286,1286,2310,1286,1286,[1286,3147],[532,3148],462,595,526,595,595,463,527,528,[532,845],[463,846],[463,847],[526,848],462,462,462,595,532,[463,1589],[532,1590],[463,1591],[1739,336,1592],1739,[1740,333],463,463,531,594,464,[531,402],464,[530,274],[527,275],[463,3219],[1286,3220],1286,2187,2188,1286,1286,1286,[1286,3020],[595,3021],[532,3085],[525,653],[531,654],[595,655],[530,656],462,596,461,461,531,462,[596,16761],[532,3282],[463,3283],[1735,400,3151],1735,1798,[1734,2001],[1799,2002],[1735,2003],[1798,2004],[79,1672],80,143,144,[16,1605],1798,1734,1734,[15,1670],[15,3083],[15,3084],[80,3085],[79,1668],[15,1861,3090],[1735,3022],[1799,3025],[79,1671,3085,2702],[80,2703],[79,2704],80,15,[15,1603],1734,1799,1798,1798,[1798,3282],[1799,3342,1938],[1799,3343,1939],[1798,3536],[1735,3537],[1799,3346],3347,[1799,3348],1734,1734,1799,1735,1799,1798,[1747,1736],[1745,1938],[1811,1939],1811,1809,[1745,1731],1734,1799,1798,[1734,2065],[1735,2066],[1735,2067],[1799,2068],1798,1799,1799,1734,[1745,1861],[1808,1671],1809,1745,1745,[1744,2625],[1745,2626],[1808,2627],[1747,2628],1811,1810,[1808,403],1810,1747,1808,1810,1745,1809,[1746,221],[423,222],423,423,486,487,422,484,[3777,232],3777,[3777,547],[3777,548],[3777,549],[3777,550],[3777,359],3777,3777,[3777,227],485,486,487,486,487,423,486,422,422,423,423,420,[3777,550],[3777,551],[3777,358],3777,3777,[3777,292],485,487,423,422,423,420,[3777,358],3777,3777,3777,3777,[3777,355],487,486,422,486,423,422,422,422,420,[3777,548],[3777,552],3777,3777,[3777,292],[3777,228],[3777,232,221],[422,222],487,487,423,484,[2684358337,294],2684358337,2684358337,[2684358337,291],[423,348],[487,408],[487,343],486,[487,1131],[486,1132],487,487,422,487,420,421,422,422,[422,277],[487,278],487,484,[3777,228],[3777,294],3777,[3777,483],423,487,[3777,488],3777,3777,[3777,483,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14433,14434,14435,14436,14435,14436,14435,[14436,14881],[14435,14882,13013],[14436,14883,13014],14884,14885,[14435,14886,13013],[14436,14887,13014],14435,14436,14435,14436,[14436,14503],14504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,[923,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[924,2695],923,[924,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[923,1311],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13586,12431],13649,13651,13585,13649,[13651,13007],[13585,13008],13585,13650,[13648,13197],[13587,13198],[13649,13199],[13643,13522],13643,13643,[13643,13520],13585,[13584,12873],[13648,12874],[13586,12875],[13648,12876],[13651,12877],[13650,12878],[13643,13459],13643,[13643,13391],13648,13651,[13586,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,[461,3090],[462,3026],[525,3027],527,[463,845],[462,846],[461,847],[527,3090,848],[462,3025],[528,3026],[532,3027],[527,3090],[532,3091,18],[526,2958,19],[462,2961,20],[530,3027],531,461,528,531,[1741,399],1805,1805,[1739,524,3719],3405,[461,3148,845],[461,846],[596,847],[595,3282,848],[527,3283],[531,3284],594,525,596,[530,339],[463,3275],[527,3276],[462,3277,909],[532,910],[463,911],[462,912],595,526,531,[595,845],[594,846],[464,847],[526,848],526,463,528,[1805,336],1805,[1740,398],464,530,463,463,463,461,528,532,527,527,[464,909],[462,910],[532,911],[596,912],525,[595,3155],3410,[1286,3411],1286,1286,1286,1286,1286,[1286,3020],[526,3021],[467,3085],527,526,461,461,595,528,462,525,[532,909],[530,910],[595,911],[594,912],461,659,660,594,464,[596,1653],[532,1654],[463,1655],[531,1656],[1741,273],[1428,397],463,462,[532,653],[531,654],[528,655],[525,656],530,463,528,[531,3090],[532,3026],[1286,3027],1286,1286,1286,1286,[1286,3083],[526,3084],[461,3085],464,[463,717],[528,718],[527,719],[532,720],532,596,595,531,[532,3282],[596,3342],[464,3343],[531,3346],3347,[1735,3215],1798,1798,[1799,2065],[1735,2066],[1798,2067],[1735,2068],[79,1736],15,207,208,[16,1603],1734,1798,1734,[15,1606],[11,3147],[12,3148],80,80,80,[80,1669],[79,1864],[80,2766],[15,2767],[79,2768],79,15,[15,1667],1798,1798,1799,[1735,3282],[1799,3283,2001],[3406,2002],[3407,2003],[3600,2004],3601,3410,[1798,3411],1734,1734,1735,1798,1799,1799,1735,[1798,2001],[1745,1606,2002],[1811,2003],[1808,2004],1747,[1747,1668],[1811,1862],[1809,1863],1735,[1798,2129],[1734,2130],[1735,2131],[1798,2132],1734,1735,1798,[1808,1864],1746,1746,1747,1745,1747,[1811,2689],[1744,2690],[1744,2691],[1744,2692],1747,1744,1747,1810,1809,1809,1808,1808,1747,[1745,285],[486,286],487,423,487,423,422,420,[3777,552],3777,3777,3777,3777,[3777,292],[3777,228],[3777,294],3777,[3777,356],421,487,487,486,487,486,422,487,423,486,487,[3777,488],3777,3777,3777,[3777,292],[3777,228],485,422,486,486,423,486,[3777,296],3777,3777,3777,661,3777,[3777,419],487,486,420,[3777,548],[3777,549],421,487,420,[3777,358],3777,3777,[3777,292],[3777,228],485,423,[422,285],[422,286],486,423,487,487,484,[2684358337,294,348],[2684358337,410],[2684358337,419,411],[486,412],280,[487,407],[423,343],[423,1195],[422,1196],487,420,[2684358337,548],[2684358337,551],[2684358337,358],[2684358337,547],421,486,[422,341],[487,342],[486,343],487,422,484,[3777,228],485,422,423,484,[3777,295],[3777,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14497,14498,14499,14500,14499,14500,14499,14500,[14499,14946],14947,14948,14949,[14499,14950],[14500,14951],14499,14500,14499,14500,[14436,14567],14568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12501,12502,12503,12504,12503,12504,12503,12504,12503,[12504,12885],12503,12504,12503,[12504,12885],12503,12504,12503,12503,12503,12504,12505,12506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[860,2695],859,[860,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[859,1311],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13587,12362],[13586,12365],[13585,12365],[13649,12366],13649,13650,13648,13648,[13587,13261],[13651,13262],[13643,13460,13263],13643,[13643,13456],[13643,13458],13643,[13643,13711],13585,13585,13585,13651,13585,13585,13649,[13643,13392],13587,13586,13651,[13587,12679],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1741,590],[1739,591],[1741,400,3090],[1741,3026],[464,3027],[461,909],[526,910],[527,911],[464,912],525,[527,3090],[526,3091,1525],[595,3092,1526],[463,82,1527],83,[660,3025,84],[596,3091],[531,2961,16697],[462,2958],[1803,590,2961],[1805,400,2958],[1805,2962],[1805,268],[1741,269],525,[596,3211],[464,3212,909],[464,910],[464,911],[530,3155,912],3347,[463,3858],464,785,786,532,[596,3719],3340,[525,3276],[463,3277,974],[596,975],530,594,595,461,[594,909],[525,910],[526,911],[532,912],528,[531,16697],531,526,[1803,273],1739,[1805,332],463,525,532,[525,1525],[526,1526],[659,1527],660,532,525,464,[525,974],[595,975],530,[594,16700],[530,3219],[1286,3220],1286,2246,1286,1286,[1286,2957],[1286,2958],[595,3084],[530,3085],532,462,530,463,531,464,595,[530,340],525,463,[527,974],[462,975],525,532,723,724,594,461,[532,1717],[595,1718],[461,1719],[464,1720],[1805,337],1491,[1803,332],463,[461,717],[525,718],[464,719],[530,720],595,594,461,463,[530,3090],[528,3091],[1286,3092],1286,1286,2246,[1286,3147],[461,3148],787,788,[530,781],[461,782],[531,783],[527,784],464,463,526,[528,3282],[525,3283],3406,3407,3410,[1734,3411],1735,1734,1735,[1735,2129],[1798,2130],[1798,2131],[1735,2132],1798,[16,1606],80,15,[80,1667],1798,1798,1799,[15,1864],[75,3211],[76,3212],16,80,16,80,15,79,[15,2831],[16,1604],[80,1540],[15,1606],[79,1731],1798,1798,[1799,3282],[1735,3346],[3347,2065],[1799,3470,2066],[1734,3471,2067],[1798,3664,2068],[1798,3665],[1734,3474],1735,1798,1798,1798,1798,1735,1735,1734,[1734,2065],[1735,2066],[1808,1540,2067],[1811,1540,2068],[1811,1544],1747,1808,1810,[1745,1795],[1735,2193],[1735,2194],[1735,2195],[1799,2196],[1808,1862],[1808,1863],[1809,1671],1809,1810,1810,1746,1744,1811,[1746,2753],[1808,2754],[1808,2755],[1747,2756],1745,1746,1808,1810,1746,1809,1747,1811,1808,[1810,156],[1809,92],[486,93],486,486,423,487,[3777,488],3777,[3777,292],[3777,231],[3777,228],[3777,229],485,423,[484,23],[3777,27],[3777,158],[3777,483],487,422,422,487,486,422,487,[422,149],[422,24],[486,27],[3777,552,158],3777,597,3777,[3777,483],487,423,[487,149],[486,24],[486,93],422,422,[3777,360],3777,3777,3777,3777,3777,[3777,483],422,487,[3777,296],3777,3777,[3777,291],487,[3777,488],3777,[3777,227],[3777,228],485,487,423,[423,348],[422,349],[422,350],487,423,486,423,[423,348],[422,349],474,475,476,[2684358337,536],471,[487,407],[487,1624],[486,1625],[420,1626],[2684358337,358,343],2684358337,2684358337,2684358337,2684358337,[2684358337,483],486,[486,405],406,[487,407],[422,343],487,487,420,[3777,548],[3777,549],421,422,484,[485,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14433,14434,14435,14436,14435,14436,14435,14436,[14435,15010],15011,15012,15013,[14435,15014],14436,14435,14436,14435,14436,[14436,14631],14632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12565,12566,12567,12568,12567,12568,12567,12568,12567,[12568,12949],[12567,13015,12950],[12568,13016],[12567,13017],[12568,12949],[12567,12950],12568,12567,12567,12567,12568,12569,12570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,[923,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[924,2695],923,[924,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[923,1311],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12429,12430,[13586,12431],13648,13584,13651,[13649,13325],[13584,13326],[13643,13588,13327],[13643,13391],13650,13586,[13643,13459],[13643,13189],[13643,13647],13584,13651,13585,13585,13585,[13651,12943],[13648,12944],13585,[13586,13133],[13651,13134],[13649,12743,13135],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1740,1740,1804,[1803,334,3090],[528,3091],[527,3092],[461,974],[463,975],527,527,[528,3282],[462,3283,1589],[464,3156,1590],[594,146,1591],[147,1592],[724,148],[531,3090],[527,3025,16761],[1739,337,3022],[1804,3025],[1428,3022],[1740,334,3026],[525,3027],528,[531,3020],[525,3021],[594,3085],[526,974],[595,975],[532,3155],[595,3156],527,528,849,850,[595,653],[462,654],[526,3784,655],[3340,656],[530,3341],[462,3342],[527,3343],[463,3342],[531,3343],[596,3277],463,[532,974],[527,3282,975],[528,3342],[464,3277],[525,16761],531,525,[1803,529,653],[1740,654],[1741,396,655],[596,656],596,527,[531,1589],[463,1590],[723,1591],[724,1592],463,526,466,596,530,466,[528,16764],[596,3539],[1286,3540],1286,1286,1286,[1286,3020],[594,3021],[594,3022],[463,3085],595,596,594,528,[532,7510],7511,7512,7513,[463,7514],596,[525,1525],[532,1526],[531,1527],463,462,594,464,532,462,[525,1781],[525,1782],[530,1783],[527,1784],[1741,465],1739,[1803,396],595,[464,781],[464,782],[532,783],[527,784],531,463,466,527,595,[595,3155],[1286,3156],1286,1286,1286,[1286,3211],[528,3212],851,852,[462,845],[463,846],[464,847],[461,848],528,532,[462,3282],[594,3346],3347,[1735,3470],[1798,3471],[1734,3474],1734,1799,1798,1734,[1799,2193],[1735,2194],[1799,2195],[1735,2196],1799,[16,1800],79,80,[80,1731],1735,1798,[16,1670],80,[15,3275],[15,3276],[80,3277],15,79,15,15,15,[79,1605],1799,1735,1799,1735,1734,1734,[1735,3155],3410,[1735,3411,2129],[1799,2130],[1799,2131],[1735,2132],1798,1798,1735,1799,[1734,1036],[80,1862,1037],1798,1734,1798,1799,[1735,2129],[1735,2130],[1799,2131],[1798,2132],1799,[1811,1606],1810,[1745,1036],[1745,1668,1037],[1809,1862],[1734,2258],[1734,2259],[1810,1671],1747,1746,1810,1810,1745,1746,1745,1745,[1745,1605],[1747,1544,2817],[1811,2818],[1744,2819],1809,1811,1811,1746,1809,1746,1746,1745,1745,1745,1809,[1809,156],[1747,157],[3777,548,158],[3777,549],[3777,550],[3777,551],[3777,358],3777,[3777,291],422,487,487,487,[423,86],[1299,87],[1299,88],[1300,92],[3777,483,93],422,486,423,423,487,486,[423,86],[1364,87],[1364,91],[1363,88],[1364,92],[3777,231,93],[3777,232],3777,[3777,547],421,[423,86],[1300,87],[1299,91,1446],[1363,157,1447],[422,24,1448],[486,27],[3777,424,28],3777,3777,3777,3777,[3777,292],485,486,486,[3777,360],597,3777,[3777,355],487,[3777,296],3777,[3777,483],487,423,422,[423,348],[422,349],413,[2684358337,548,414],421,422,423,[487,348],[422,412],413,[422,538,1129],[486,539,1130],[2684358337,296,540],597,[2684358337,535],471,1560,1689,1690,[2684358337,342],[2684358337,343],2684358337,2684358337,[2684358337,292],485,487,486,[423,470],406,[423,214],420,[3777,550],[3777,358],3777,3777,[3777,483],486,487,[486,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14497,14498,14499,14500,14499,14500,14499,14500,[14499,15074],[14500,15075],[14499,15076],[14500,15077],[14499,15078],14500,14499,14500,14499,14500,14501,14502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12479,[12632,12480],12632,12632,12632,12632,12632,12632,12632,[12632,13078,13013],[12632,13079,13014],13080,13081,[12632,13082,13013],[12632,13083,13014],12632,12632,12632,12632,12632,12633,12634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[860,2695],859,[860,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[859,1311],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13585,12365],[13585,12366],13584,13650,13586,[13643,13652],[13643,13647,12361],[13586,12362],[13648,12365],[13643,13652,12366],[13643,13456],13586,[13584,13133],[13648,13134],[13650,13135],13584,13584,[13650,13007],[13649,13008],13586,[13650,13197],[13584,13198],[13648,13199],[13651,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1739,270],[1805,271],[1805,272],527,[525,3539],[464,3540],525,463,461,[528,3282],[525,3346],[3347,1653],[525,3348,1654],[528,210,1655],[525,211,1656],[525,212],532,525,[1741,401],1804,[1740,333],[531,3090],[462,3091],[594,2958],[530,3084],[526,3085,16830],462,531,595,[525,3219],[595,3220],464,595,525,528,[462,717],[463,718],[526,719],[594,3849,720],3405,3406,3407,3406,3407,[532,3341],[527,3342],[464,3343],[461,3346],3214,[463,3276],[530,3277],463,595,[1803,400,717],[1804,718],[1739,460,719],[463,720],595,528,[462,1653],[528,1654],[463,1655],[596,1656],526,530,531,595,594,594,527,[595,3603],[1286,3604],1286,1286,[1286,3083],[527,3084],[464,3085],528,530,595,464,532,531,[595,7574],7575,7576,7577,[527,7578],526,[528,1589],[468,1590],[462,1591],[525,1592],[1740,589],[1803,590],463,595,[1741,589],[1740,590,1845],[1805,591,1846],[1739,592,1847],[1740,591,1848],[1492,400],1804,[1803,460],596,[525,845],[531,846],[594,847],[461,848],596,595,461,530,461,[594,3219],[1286,3220],1286,1286,1286,[1286,3275],[594,3276],[528,3277],596,[525,909],[596,910],[531,911],[463,912],594,462,[525,3155],3410,[1734,3411],1734,1799,1734,1798,1734,1798,1798,1798,[1798,2258],[1799,2259],1735,[15,1862],[16,1671],79,80,[16,1795],1798,1735,[16,1606],80,[16,3339],3340,[79,1605,3341],[79,1540,3277],[80,1540],[16,1541],[15,1542],[80,1543],1735,1799,1735,1798,1735,1735,1799,[1735,3219],[1798,3220],[1735,2193],[1734,2194],[1798,2195],[1798,2196],1799,1798,1799,1735,[15,1670,1100],[16,1101],[79,1795],1799,1799,1798,[1735,2193],[1798,2194],[1734,2195],[1735,2196],1735,[1746,1608],1747,[1746,1100],[1746,1101],1747,[1810,1795],[1811,1800],1744,1810,1810,1744,[1744,1539],[1745,1540],[1746,1606],1810,[1747,1604],1798,1735,[1809,1606,2882],[1809,2883],[1808,1036],[1809,1037],1744,[1744,1605],[1808,1606],1811,1811,1811,1746,1745,1808,1808,[1744,221],[3777,222],3777,3777,3777,3777,3777,[3777,419],487,423,423,[487,149],[1364,150],[1299,151,1446],[1363,1447],[1300,156,1448],[1300,1632,157],[422,27],[422,24],[422,27],[486,24],[486,27],[423,27],[1299,150],[1364,151],1364,1364,[1363,156],[1299,157],[296,24],[3777,27],[3777,24],[485,27],[1299,150],[1300,151],[1363,1510],[1364,156,1511],[1300,88,1512],[1299,91],[1299,92],[3777,93],[3777,293],[3777,229],[3777,230],485,487,486,487,[3777,424],3777,3777,[3777,419],422,[3777,360],3777,[3777,356],421,423,[487,348],[423,412],413,[2684358337,477],2684358337,[2684358337,483],423,486,[487,221],406,[423,477],[486,1193],[422,1194],[2684358337,424],2684358337,2684358337,[2684358337,419,535],[423,1752],[487,1753],[422,1754],471,[2684358337,229,278],[2684358337,230],[2684358337,231],485,486,423,487,487,[486,277],[420,278],[3777,359],3777,3777,[3777,227],[3777,231],485,422,423,[487,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14433,14434,14435,14436,14435,14436,14435,14436,14435,[14436,15139],[14435,15140],[14436,15141],14435,14436,14435,14436,14435,14436,14437,14438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12543,[12632,12544],12632,12632,12632,12632,12632,12632,12632,[12632,13142],13143,13144,13145,[12632,13146],[12632,13147],12632,12632,12632,12632,12632,12697,12698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,[923,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[924,2695],923,[924,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[923,1311],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12429,12430,[13651,12431],13651,13648,[13650,12424],12425,12426,12429,12430,[13587,12496],13586,[13587,13197],[13649,13198],[13584,13199],13585,13651,13649,13648,13651,[13649,13261],[13585,13262],[13585,13263],13649,[13584,12551],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1805,397],528,526,526,[527,3603],[464,3604],464,528,463,[463,3155],3410,[462,3411,1717],[463,1718],[525,1719],[596,1720],525,[1804,589],526,[1741,465],1803,[1739,524],[595,18],[525,3090,19],[596,3022,20],[532,3085],[462,16894],[595,16895],463,462,[594,3090],[595,3026],[530,3027],596,530,530,[596,781],[595,782],[596,783],[463,784],[462,3719],[462,3854],[595,3855,16697],[530,3856],[530,3857],3405,3406,[3407,653],[3410,654],[528,3470,655],[3340,656],[594,3341],[526,3277],[1739,529],[1741,781],[1740,333,782],[596,783],[531,784],595,530,[530,1717],[464,1718],[594,1719],[596,1720],530,526,528,527,526,594,[528,3282,616],[528,3346,616],[1286,3284,616],[1286,616],[1286,616],[1286,3527,616],[596,3528,616],464,527,532,[462,274],[531,275],527,530,[596,7638],7639,7640,7641,[596,7642],463,[461,1653],[464,1654],[462,1655],[1803,399,1656],1491,1739,[1739,588],[1804,399],1739,1804,1740,1739,1740,1739,1741,[1741,524],595,[595,909],[464,910],[526,911],[530,912],532,596,594,594,[464,3282],[527,3283],[1286,3284],1286,1286,1286,[1286,3339],3340,[463,3212],461,531,[525,974],[594,975],462,526,595,[596,3155],[1735,3156],1735,1735,1798,1798,1799,1734,[1798,339],1798,1734,1735,1799,[79,1800],15,80,15,15,[80,1603],1799,1734,[80,1671],79,16,[80,3404],3405,[1735,3341],[1734,3277],1798,1734,1735,1798,1732,1733,1735,[1734,3282],[1734,3342],[1735,3343],[1735,3283],[1735,3284],1734,[1798,2258],[1734,2259],1799,1798,1798,1799,[80,1670],[79,1164],[79,1604,1165],1735,1735,1798,[1799,2957],[1799,2958],[1734,2962,2258],[1735,2259],1735,1734,[1808,1672],1810,[1810,1164],[1745,1165],1808,[1811,1669],[1744,1864],1746,1745,1808,[1808,1605],1734,1798,1799,[1747,1540],1799,1732,1733,[1744,1608],1808,[1808,1100],[1747,1101],[1747,1605],1798,1799,[1810,1544],1810,1745,1808,1811,1809,1744,[1747,285],[228,286],[3777,229],[3777,230],[3777,231],[3777,294],[3777,292],485,487,423,423,[487,213],[1363,214],[1299,1510],[1364,1511],[1363,1512],[1363,1505,156],[1569,88],[1572,91],[1633,88],[1636,91],[1569,88],[1569,91],[1300,1444,151],1299,2011,1299,1300,[1300,1442,156],[1570,91],[1300,1573,88],[1363,91],[1363,88],[1299,151],1300,[1364,1574],[1300,1575],[1299,1576],[1299,1954],[1364,156],[1300,157],[485,158],422,422,422,422,423,422,484,[3777,294],[3777,293],485,423,[3777,424],3777,3777,[3777,483],[422,348],[423,349],476,[484,477],[2684358337,294],2684358337,[2684358337,356],[2684358337,548],421,[486,3916],[487,3917],486,422,487,484,[2684358337,229],[2684358337,231],485,423,487,422,[422,3914],[422,3915],486,422,422,487,422,423,486,[487,213],[3777,488,214],3777,3777,[3777,293],485,420,[3777,548],421,423,486,[422,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14497,14498,14499,14500,14499,14500,14499,[14500,2629],[14499,2630],[14500,2630],[14499,2630],[14500,2630],[14499,2630],[14500,2631],14499,14500,14499,14500,14501,14502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12607,[12632,12608],12632,12632,12632,12632,12632,12632,12632,[12632,13206],13207,13208,13209,[12632,13210],12632,12632,12632,12632,12632,12632,12633,12634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[860,2695],859,[860,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[859,1311],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13650,12362],[13649,12365],12488,12489,0,0,12559,[13650,12560],13649,[13649,13261],[13587,13262],[13585,13263],13585,13648,13585,13651,13651,[13651,13325],[13586,13326],[13584,13327],13649,[13584,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,[1803,524],462,462,[527,3539],[527,3540],462,526,526,[464,3219],[528,3220],[528,1781],[525,1782],[462,1783],[527,1784],[1805,400],1803,[1740,397],[1739,593],[1739,334],531,[594,82],[596,83],[528,84],525,463,526,527,530,1926,[464,3090,16700],[528,3091],[525,3092],525,463,[464,845],[526,846],[525,847],[461,848],528,528,[462,16761],787,788,[532,3784],[464,3850],[463,3851,717],[461,3474,718],[525,719],[531,3719,720],3405,[1740,592,3148],[1739,400],[1739,333,845],[527,846],[462,847],[1926,848],463,531,[463,1781],[528,1782],[594,1783],[530,1784],525,532,463,527,532,596,[526,680],680,680,680,680,680,[463,680],528,532,463,531,596,595,596,[528,7702],7703,7902,7705,[525,7706],461,[595,1717],[531,1718],[463,1719],[1805,273,1720],1739,1427,[1805,333],[1803,270],[1803,272],[1739,273],1428,1741,1428,[1804,333],[1805,269],461,526,462,[463,974],[525,975],596,464,526,595,[462,3282],[530,3346],3347,[1286,3348],1286,1286,1286,1286,[1286,3147],[526,3148],461,462,527,528,532,462,530,[530,3090],[526,3026],[1798,3027],1799,1735,1798,1798,1734,1735,1734,1798,1798,1734,[15,1864],80,79,80,80,[79,1667],1798,[16,1800],15,16,15,79,[79,1667,3404],3405,[1798,3148],1735,1734,1734,1798,1796,1797,[1734,3282],[1734,3283],[3406,1938],[3407,1939],3347,[1734,3348],1735,1799,1735,1799,1734,1799,[79,1608],80,16,[79,1603],1799,1798,[1799,3020],[1798,3021],[1734,3022],[1799,3026],[1798,2958],[1735,2962],1798,[1745,1736],1747,1808,1746,1809,1808,1811,1808,1746,[1809,1604],1735,1799,1799,[1799,1938],[1735,1939],1734,1796,1797,[1809,1672],1747,[1810,1164],[1746,1165],[1745,1859],1734,1734,[1809,1608],1744,1809,1747,[1744,348],[1809,408],[1744,1949],[1809,349],[422,350],487,422,422,484,485,486,420,[3777,548],421,[487,213],[1364,214],[1364,1574],[1300,1575],[1364,1576],1300,[1364,1696],[1363,1699],[1300,1700],1635,1634,1572,[1299,1445],1300,1299,1364,1363,[1363,1440],1633,1569,[1364,1443],1364,1300,1363,[1363,1638],[1300,1639],[1300,1640,2017],[1300,2018],[1299,2019],[1299,221],[423,222],486,422,486,487,486,487,486,484,485,487,423,484,[3777,294],3777,[3777,357,348],[486,412],413,[423,540],422,484,[2684358337,295],2684358337,2684358337,[2684358337,291],[423,3980],[487,3981],486,422,487,422,486,422,423,487,422,422,[487,3978],[487,3979],420,[2684358337,548],[2684358337,549],421,487,486,422,[423,277],[3777,358,278],3777,[3777,227],485,487,[3777,488],3777,[3777,356],[3777,548],421,420,[421,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14433,14434,14435,14436,14435,14436,14435,[14436,2693],2694,2694,2694,2694,2694,[14436,2695],14435,14436,14435,14436,14437,14438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12693,12694,12632,12632,12632,12632,12632,12632,12632,[12632,13270],[12632,13271],13272,[12632,13273],[12632,13274],12632,12632,12632,12632,12632,12632,12697,12698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,[923,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[924,2695],923,[924,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[923,1311],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12489,0,0,0,12623,[13586,12624],13650,[13586,13325],[13586,13326],[13585,13327],13651,13648,13584,13587,13585,13585,13650,13651,[13587,12424],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1804,[1740,397],[1740,589],[1741,590],[1739,593,3603],[525,3604],526,528,464,[527,3912],[1740,591,3913],[1740,589,1845],[1741,590,1846],[1741,591,1847],[1741,593,1848],1741,1492,[1803,334],[1803,269],595,595,[462,146],[527,147],[594,148],527,595,532,596,528,596,[526,16764],[525,3155],[594,3156],530,531,[530,909],[525,910],[596,911],[461,912],532,463,527,851,852,595,595,[595,781],[464,782],[526,783],[526,784],[1805,400,3147],[1740,3148],1741,[1805,524,909],[525,910],[528,911],[525,912],525,528,[463,1845],[526,1846],[594,1847],[464,1848],596,527,528,[462,16830],528,463,[530,744],744,744,744,744,744,[526,744],530,461,530,595,531,525,464,[1804,337],[1492,7767],[1741,7768],[1805,332,7769],462,525,[462,1781],[595,1782],[464,1783],[1805,593,1784],1803,[1803,268],530,532,[531,18],[532,19],[1741,270,20],[1804,271],[1741,272],462,525,464,462,594,526,528,595,531,532,595,[525,3155,616],[3410,616],[1286,3411,616],[1286,616],[1286,616],[1286,616],[1286,616],[1286,616],[1286,3527,616],[527,3528,616],596,531,463,531,525,525,1990,464,[595,3090],[596,3091],[1735,3092],1799,1734,1799,1798,1732,1733,1734,1735,[16,1608],13,[14,1036],[79,1037],79,79,[15,1731],1735,1799,[15,1606],80,15,15,[15,1731],[1798,3211],[1735,3212],1798,1799,[1799,402],1735,1735,[1734,3282],[1798,3346],[3347,2001],[1799,3470,2002],[1734,3471,2003],[1734,3411,2004],1798,1798,1735,1734,1734,1798,[1735,340],[16,1672],13,14,[16,1667],1735,[1735,3083],[1799,3084],[1734,3085],1734,[1734,3090],[1734,3022],[1798,3026],[1798,3027],1734,[1744,1606],1808,1744,1811,[1808,2957],[1747,2961],[1744,1539,2962],[1747,1540],1799,1798,1799,[1735,2001],[1735,2002],[1735,2003],[1798,2004],1798,1798,[1746,1736],1811,1809,1746,1809,[1809,1795],1735,[1811,1672],1811,1746,[1746,348],[1746,412],472,2013,413,[423,414],422,422,486,487,422,486,[3777,488],3777,[3777,291],[423,277],[1363,278],[1364,1638],[1363,1639],[1364,1640],2012,1300,1300,1363,[1300,1440],1636,1569,[1364,1509],1363,1364,1948,1299,[1363,1504],1634,1569,1571,[1299,1381],2127,2128,[1363,1702],[1300,1703],1299,1300,1300,[1300,285],[423,286],486,486,486,422,422,422,423,487,422,423,422,487,484,[3777,228],[3777,295,221],413,[486,477],486,487,486,[2684358337,296],2684358337,2684358337,[2684358337,355],[423,4044],[487,4045],486,422,420,[2684358337,548],[2684358337,549],[2684358337,550],[2684358337,551],421,423,486,[486,4042],[487,342],[2684358337,359,343],2684358337,661,[2684358337,357],421,487,[487,86],[3777,87],[3777,151],3777,[3777,483],423,422,484,[3777,295],3777,3777,[3777,357],[3777,359],[3777,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14497,14498,14499,14500,14499,14500,14499,[14500,2693],2694,2694,2694,2694,2694,[14500,2695],14499,14500,14499,14500,14501,14502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12629,12630,12632,12632,12632,12632,12632,12632,12632,12632,[12632,13335],[12632,13336],[12632,13337],12632,12632,12632,12632,12632,12632,12632,12633,12634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,[859,2693],2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,2694,[860,2695],859,[860,1309],1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,1310,[859,1311],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13650,12431],13651,13585,[13586,12424],[13585,12362],[13584,12365],[13585,12362],[13651,12365],[13584,12362],[13648,12365],[13649,12365],[13651,12362],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1803,1803,1741,1805,[1803,3090],[1741,3026],[464,3027],461,464,[463,3976],[1739,3977],1739,1804,1428,1805,1741,1740,[1803,524],461,462,530,[461,210],[462,211],[528,212],525,2054,525,464,532,461,594,[531,3219],[462,3220],526,464,525,[527,974],[530,975],532,461,594,525,[1803,589],[1803,590],464,531,[594,845],[464,846],[594,847],[1739,337,848],[1805,3211],[1492,3212],1805,[1804,398],[596,974],[464,975],463,527,526,528,785,786,461,531,595,461,[526,16894],[527,16895],[525,3282],[464,3283,808],[1286,3284,808],[1286,808],[1286,808],[1286,808],[1286,3211,808],[526,3212,808],525,[530,653],[463,654],[461,655],[461,656],461,525,[1804,401],1427,1740,[1739,460],532,527,[525,1845],[461,1846],[1805,399,1847],[1803,1848],1428,[1741,588],[1739,589],595,[461,82],[595,83],[528,84],526,659,660,531,527,464,[528,340],464,[594,653],[530,654],[531,655],[528,656],595,[528,680],680,680,680,680,680,680,680,680,[530,680],528,532,532,532,525,532,525,525,462,[461,3090],[462,3091],[1798,3092],1799,1798,1798,1796,1797,1734,1799,[79,1672],77,[78,1100],[16,1101],80,[79,1604],1735,1734,1798,1798,[15,1544],16,[16,1605],1734,[1799,3211],[1798,3212],1798,1798,1734,1734,1734,[1798,3155],3410,[1799,3411,2065],[1799,2066],[1798,2067],[1798,2068],1798,1734,1799,1798,1735,1734,1735,[80,1736],77,78,[15,1731],1798,[1735,3147],[1798,3148],[1799,2242],1798,1799,1798,[1799,3090,2241],[1734,3091],[1799,2961],[1744,1608,2961],[1744,2958],[1744,2961],[1747,2958],[1744,3021],[1744,3025],[1744,1795,3026],[1799,3027],1799,1798,1734,[1799,2065],[1798,2066],[1798,2067],[1734,2068],1735,1798,[1810,1608],1744,1811,[1811,1539],[1746,1540],1799,1799,[1810,1736],1746,1808,[1810,221],476,[487,536],[423,2077],[487,477],423,486,423,487,487,420,[3777,550],[3777,552],3777,[3777,355],[487,277],[1300,278],[1363,1702],[1300,1703],1299,1300,1363,1364,1363,[1364,1568],1635,1635,[1364,1573],1300,1299,1363,1299,[1300,1568],1636,1634,1571,[1300,1507],2191,2192,1948,1299,1300,1299,[1300,348],[1363,349],[486,350],422,423,487,486,487,420,[3777,549],[3777,550],421,487,422,423,423,422,[422,221],[487,222],422,486,486,486,[2684358337,360],2684358337,2684358337,[2684358337,419,348],[422,349],[422,350],486,420,[2684358337,552],2684358337,2684358337,[2684358337,293],[2684358337,295],[2684358337,357],421,422,[2684358337,424,405],406,[2684358337,407],[2684358337,343],2684358337,[2684358337,292],485,[487,149],[486,150],[3777,229,151],[3777,230],[3777,231],485,487,423,423,484,[3777,294],3777,3777,3777,[3777,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14433,14434,14435,14436,14435,14436,14435,[14436,2757],[14435,2758],[14436,2758],[14435,2758],[14436,2758],[14435,2758],[14436,2759],14435,14436,14435,14436,14437,14438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12693,12694,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12697,12698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,[923,2757],[924,2758],[923,2758],[924,2758],[923,2758],[924,2758],[923,2758],[924,2758],[923,2758],[924,2758],[923,2758],[924,2758],[923,2758],[924,2758],[923,2758],[924,1242,2759],[924,1243],[924,1244,1373],[923,1374],[924,1374],[923,1374],[924,1374],[923,1374],[924,1374],[923,1374],[924,1374],[923,1374],[924,1374],[923,1374],[924,1374],[923,1374],[924,1374],[923,1375],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13587,12362],[13586,12365],12488,12426,12429,12426,12429,12426,12429,12429,12426,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1740,1803,1804,1804,1739,[1805,3539],[528,3540],463,464,[462,4040],[1803,4041],1741,1803,1804,1804,[1739,333],[1805,335],[1803,397],530,595,466,531,462,532,530,594,530,527,461,462,530,[461,3155],[532,3156],463,461,527,596,461,[1803,589],[1740,589],[1803,590],[1740,400],1804,1805,[1805,397],[1740,589],[1804,590,909],[461,910],[527,911],[1741,401,912],[1740,3275],[1740,3276],[1741,3277],1804,[1804,398],461,[525,16830],463,464,525,849,[850,1525],[525,1526],[462,1527],525,[464,3282],[527,3342],[463,3343],[528,3346],3347,[1286,3348],2376,1286,1286,[1286,3275],[595,3276],[531,3277],[525,717],[594,718],[526,719],[528,720],528,525,[1739,465],1804,[1741,333],596,594,595,[1740,590],[1739,400],1805,1740,1805,1428,1741,[1740,524],[595,146],[526,147],[461,148],530,723,724,532,527,525,468,462,[594,717],[596,718],[526,719],[526,720],525,[463,744],744,744,744,744,744,744,744,744,[532,744],461,525,596,595,525,526,527,531,461,464,[528,3155],[1798,3156],1734,1734,1734,1799,1734,1799,1735,[79,1736],16,[15,1164],[15,1165],80,[16,1795],1734,1734,1799,1735,[80,1671],16,[16,1603],[1735,3020],[1735,3021],[1799,3085],1735,1734,1798,1735,1735,[1798,3219],[1798,3220],[1799,2129],[1735,2130],[1734,2131],[1799,2132],1799,1798,1798,1735,1734,1799,1734,[1735,2957],[15,1606,2958],[79,1604,2961],[1798,2962],1798,[1735,3211],[1735,3212],2306,[1799,2309],[1798,2181],1799,2305,[1798,3090,2309],[1798,3025,2181],[1810,1672,3025],[1744,3022],[1808,3025],[1745,3022],[1746,1604,3085],[1746,1540],[1735,3090],[1799,3091],[1735,2961],[1734,2962],1799,[1799,2129],[1798,2130],[1799,2131],[1734,2132],1735,1798,[1744,1672],1811,1809,[1747,1603],1734,1734,1734,[1747,1800],1744,1746,[1811,221],[487,222],422,487,487,487,487,487,422,420,[3777,359],3777,3777,3777,[3777,419,86],[1299,87],[1300,151],1948,1363,1363,1300,1299,1299,1299,[1300,1506],1636,1569,1570,[1363,1444],1364,1299,1363,[1364,1506],1570,1636,[1364,1445],1299,1299,1364,[1364,1442],[1300,1378],[1364,1379],[1364,1380,348],[1364,1443,412],413,[3777,356,414],421,422,486,423,420,[3777,358],3777,3777,[3777,357],421,423,487,422,486,[487,285],[487,286],487,487,423,487,[2684358337,424],2684358337,[2684358337,348],[2684358337,483,412],413,[486,414],423,[2684358337,296],2684358337,2684358337,[2684358337,227],485,[2684358337,296],2684358337,[2684358337,291],486,[2684358337,488],[2684358337,470],406,[2684358337,230,214],[2684358337,231],485,423,[422,213],[422,214],487,422,487,486,487,486,422,423,484,[3777,229],[3777,230],[3777,231,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14497,14498,14499,14500,14499,14500,14499,14500,14499,14500,14499,14500,14499,14500,14499,14500,14499,14500,14501,14502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12629,12630,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12633,12634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,986,987,988,987,988,988,987,988,987,988,987,988,987,988,987,[924,988],[924,1306],[924,1307],[924,1308],988,987,988,987,988,987,988,987,988,987,988,987,988,987,988,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1803,1739,1805,1803,1803,[1804,3603],[526,3604],525,464,[464,3090],[463,3026],[1803,269,3027],[1740,270],[1805,271],[1804,272],461,[1739,529],1739,[1739,397],[1739,589],526,527,594,596,531,596,[1803,590],[1804,591],[1803,592],594,530,[527,3219],[464,3220],463,527,462,[596,2957],[1739,399,2958],[1805,2961],[1740,2958],[1741,2961],[1741,3027],1492,1804,1740,1739,1805,[1739,397,974],[462,975],[1741,465],[1741,3719],3340,[1804,269,3341],[1804,336,3342],[1740,3343],[1739,398,3277],[1741,590,16894],[525,16895],526,528,464,[531,1589],[526,1590],[464,1591],[594,3282,1592],[531,3346],3406,3407,3410,[1286,3411],1286,1286,1286,1286,[1286,3339],3340,[532,3341],[596,3277,781],[596,782],[463,783],[596,784],462,532,531,[1805,336],[1805,397],[1803,399],[1805,398],[1740,400],1803,1741,1428,1740,[1803,334],[1804,273],1739,[1741,397],[527,210],[532,211],[596,212],[463,653],[595,654],[530,655],[464,656],595,526,463,532,[461,781],[463,782],[527,783],[463,784],527,[527,3219,808],[1286,3220,808],[1286,808],[1286,808],[1286,808],[1286,808],[1286,808],[1286,3083,808],[596,3084,808],[464,3085,808],463,463,463,596,1926,461,528,463,785,786,[462,3219],[1798,3220],1734,[1734,1938],[1735,1939],1734,1799,1799,1735,1734,[79,1606],16,15,79,[16,1603],1798,1735,1735,[80,1670],79,[16,2957],[79,1667,2958],[1798,3084],[1735,3085],1735,1799,1799,1798,[1810,1863],1735,[1799,3219],[1734,3220],[1735,2193],[1735,2194],[1735,2195],[1799,2196],1799,1735,1798,1799,1798,1799,[1799,3083],[1735,3084],[1799,3022],[1734,3025],[1735,3026],[1734,2958],[1735,3084],[1799,3085],2370,[1734,2373],[1799,2245],1735,2369,[1799,2373],[1799,2245],[1747,1736],1809,1809,1811,[1747,1603],1735,[1735,1938],[1799,3090,1939],[1799,3025],[1798,3026],[1798,3027],[1798,2193],[1734,2194],[1798,2195],[1799,2196],1735,1799,[1746,1736],1810,1809,[1747,1667],1734,[1746,1862],[1809,1863],[1745,1671],1810,1746,[1809,285],[487,286],422,422,422,423,423,422,423,484,[3777,294],3777,3777,[3777,149],[1299,150],[1300,151],1363,1300,2127,2128,2011,1364,1364,1300,1299,[1299,1505],1634,1571,[1634,1446],[1364,1377,1447],[1363,1381,1448],1363,1300,[1363,1696],1636,[1364,1509],1299,[1363,1376],[1363,1377],1569,1634,[1363,1697],[1363,1698,221],476,[3777,477],3777,[3777,291],487,423,423,[3777,296],3777,3777,3777,[3777,292],485,486,487,486,[486,348],[423,349],[487,350],487,487,487,486,484,[2684358337,228,348],[2684358337,294,349],476,[421,477],[423,1199],[422,1200],[2684358337,424],2684358337,[2684358337,292],485,423,[2684358337,424],2684358337,[2684358337,355],423,484,[2684358337,294],[2684358337,277],[422,278],422,486,486,[486,277],[422,278],423,486,422,486,423,487,420,[3777,548],[3777,549],[3777,550],[3777,551,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14561,14562,14563,14564,14563,14564,14563,14564,14563,[14436,14691],[14435,14692],[14436,14693],14563,14564,14563,14564,14563,14564,14565,14566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12693,12694,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,12697,12698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1052,1051,1052,1052,1051,1052,1051,1052,1051,1052,1051,1052,1051,1052,1370,1371,1372,1052,1051,1052,1051,1052,1051,1052,1051,1052,1051,1052,1051,1052,1051,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,1739,1739,1741,[1803,3282],[1741,3283],[463,3284],525,463,462,[462,3090],[464,3091],[525,3092],525,525,461,596,[1740,336],1739,1804,[1805,524,1525],[594,1526],[531,1527],463,528,[1805,529,653],[1739,654],[1741,655],[1739,656],[1803,397],[1803,593,3282],[1741,588,3283],[594,3284],463,594,[525,3020],[1803,400,3021],[1803,3022],[1739,3025],[1804,334,3022],[1740,269,3025],[1804,336,3091],[1804,3092],[1741,333],[1805,270],[1805,271],[1805,336],1804,[1804,588],[1739,400],1741,[1805,524,3719],3405,3406,3407,[1740,3341],[1804,3342],[1803,524,3277],525,531,463,[531,1653],[464,1654],[594,1655],[462,3155,1656],3410,[1286,3470],[1286,3471],[1286,3474],1286,1286,1286,1286,1286,1286,[1286,3404],3405,[464,3148,845],[528,846],[527,847],[526,848],526,785,786,527,[1740,335],1804,1804,1492,[1804,334,653],[1804,270,654],[1804,271,655],[1805,272,656],530,[1805,529],1803,1803,[1805,332],463,526,[528,717],[464,718],[532,719],[525,720],596,528,594,595,[526,845],[462,846],[528,847],[528,848],[531,3282],[532,3283],[1286,3284],1286,1286,1286,2310,1286,[1286,3147],[532,3148],461,530,461,594,526,595,531,525,526,849,850,[461,3155],[1799,3156],[1734,2001],[1799,2002],[1734,2003],[1799,2004],1734,1799,1734,1799,1735,[79,1607],15,16,[16,1667],1734,1735,[79,1608],80,[79,3020],[80,3021],[80,1731,3022],[1734,3085],1735,1798,1734,1735,[1810,1608],1808,[1747,1795],[1735,3090],[1735,3026],[1734,3027],[1798,2258],[1798,2259],1798,1735,1799,1734,1735,1734,[1799,3020,1938],[1734,3021,1939],[1798,3085],1798,1799,[1799,3090],[1799,3022,2241],[1734,3085],1735,[1798,2434],[1798,2437],1734,1734,[1734,2433],[1799,2437],1735,[1811,1800,2242],1808,1747,1809,[1809,1667],[1734,2001],[1735,2002],[1735,2003],[1735,2004],[1735,3090],[1734,3091],[1735,3092],[1798,2258],[1735,2259],1799,1735,[1745,1863],[1808,1671],1744,1744,[1746,1731],[1811,1800],1746,1744,1809,1808,1744,[1809,156],[1810,157],[423,158],422,486,487,487,486,422,423,484,[3777,232],[3777,149],[1364,150],[1300,151],1364,1364,1299,2191,2192,1363,1364,1299,1364,1299,1363,[1300,1632],1636,[1633,1510],[1363,1700,1511],[1363,1508,1512],1300,1299,1363,[1363,1440],[1299,1573],1364,[1363,1440],1572,1572,[1364,1507,1446],[1299,1447],[1300,285,1448],[3777,286],3777,3777,[3777,355],487,486,422,[3777,360],3777,3777,3777,[3777,483],487,423,487,[486,348],[423,412],413,[486,414],422,422,423,486,[422,348],[422,412],413,[2684358337,540],[2684358337,356],421,423,[2684358337,488],2684358337,[2684358337,356],[2684358337,548],[2684358337,549],[2684358337,358],2684358337,[2684358337,419],423,487,[2684358337,488,149],[422,150],[422,151],423,422,487,[422,341],[422,342],[487,343],487,422,486,486,423,[3777,296],3777,3777,3777,[3777,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14625,14626,14627,14628,14627,14628,14627,14628,14627,14755,14756,14757,14627,14628,14627,14628,14627,14628,14629,14630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12757,12758,12759,12760,12759,12760,12759,12760,12759,12760,[12632,12887],[12632,12888],[12632,12889],12760,12759,12760,12759,12760,12759,12760,12761,12762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1740,1741,1741,[1739,3282],[1741,3346],3347,[461,3348],[525,653],[464,654],[526,655],[462,656],[527,3155],[464,3156],525,527,530,595,[1804,529],1805,1739,[1803,398,1589],[1739,589,1590],[1739,590,1591],[1740,591,1592],[1740,592],[1805,399,717],[1805,333,718],[1805,269,719],[1739,336,720],[1805,3282],[1741,3346],3347,[1739,397,3858],[1741,590],[1803,591,3083],[1740,593,3084],[1740,3085],[1803,333,653],[1803,269,654],[462,655],[527,656],[1804,529,3539],[1740,3540],[1739,397],526,595,530,[1739,335],1740,1740,[1741,334],594,[595,3719],[595,3850],[1740,273,3851],3405,3406,[1740,398,3276],[1805,589,3277],532,467,[595,1717],[526,1718],[594,1719],[594,3539,1720],[1286,3156],1286,1286,1286,1286,1286,1286,1286,1478,1286,1286,[1286,3211],[462,3212,909],[463,910],[532,911],[531,912],596,849,850,527,[1803,529],1739,[1741,268],[1803,269],[531,717],[464,718],[528,719],[595,720],463,530,[1803,336],1491,[1741,396],525,596,[526,781],[594,782],[463,783],[532,784],463,530,594,463,[463,909],[464,910],[527,911],[596,3282,912],[527,3346],3347,[1286,3348],1286,1286,1286,1286,1286,[1286,3211],[525,3212,653],[531,654],[526,655],[525,656],596,464,531,461,596,594,[464,16830],461,[596,3219],[1798,3220],[1735,2065],[1799,2066],[1799,2067],[1735,2068],1734,1799,1735,1798,1735,[16,1864],15,79,[79,1731],1735,1799,[79,1672],[15,3083],[141,3084],[142,3085,1036],[16,1668,1037],1799,1735,1735,1734,1799,[1810,1736],1811,[1744,1668],[1809,1862],[1798,3090],[1735,3091],[1799,3092],1734,1735,1734,1799,1735,[1798,2957],[1734,2958,2001],[1735,3084,2002],[1735,3085,2003],[1735,2004],1798,1798,1735,2305,[1798,2309],[1799,2181],1799,1734,1735,1798,1799,1799,1799,2306,[1810,1607,2309],[1745,2181],1808,[1808,1731],[1735,2065],[1799,2066],[1735,2067],[1798,2068],1735,[1799,3155],[1735,3156],1735,1799,1735,[1808,1800],1811,1810,1745,1744,[1809,1859],[1809,1670],1747,1747,1809,1747,1809,1808,[1811,221],[423,222],422,423,487,422,486,422,487,486,[3777,296,149],[1364,150],[1364,151],1300,1364,1363,1300,1364,1299,1300,1300,1363,1299,1364,[1363,1441],1572,1571,[1363,1508,1574],[1300,1575],[1300,1576],1363,1947,1363,[1364,1504],1634,[1364,1443],[1299,1568],1571,[1299,1445],[1363,1510],[1363,1511],[1300,156,1512],[1299,92],[3777,93],3777,[3777,419],423,422,487,[3777,424],3777,3777,[3777,293],485,423,486,486,[486,221],413,[487,477],[486,1137],[487,1138],422,422,423,[423,221],413,[484,477],[2684358337,294],2684358337,[2684358337,483],423,484,[2684358337,294],2684358337,2684358337,2684358337,661,2684358337,[2684358337,483],422,423,[423,213],[423,214],423,486,422,487,[487,405],406,[423,407],[3777,548,343],421,422,487,422,[3777,424],3777,[3777,293],[3777,228],[229,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12821,12822,12823,12824,12823,12824,12823,12824,12823,12824,12951,12952,12953,12824,12823,12824,12823,12824,12823,12824,12825,12826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,1739,1804,[1805,3155],3410,[526,3411],528,[525,717],[528,718],[463,719],[527,720],[461,3219],[528,3220],594,462,[462,653],[463,654],[526,655],[1739,336,656],1739,[1491,1653],[1805,1654],[1741,1655],[1803,1656],1805,[1427,781],[1803,524,782],[530,783],[461,784],[1739,269,3155],3410,[1740,3732],1741,1803,[1740,3591],[1740,333,3592],[1803,269],[528,717],[461,718],[532,719],[596,720],[596,3090],[1803,336,3026],[1804,3027],[1740,524],464,532,530,[1740,270],[1803,272],595,526,463,461,462,[1740,336,3469],[1804,3470,16697],3340,[1739,3341],[1739,332,3277],532,[463,1781],[526,1782],[531,1783],[595,3603,1784],[1286,3220],1286,1286,1286,3201,3265,1286,1286,1286,1286,1286,[1286,3147],[596,3148],[528,974],[526,975],464,526,532,532,[1741,591],[1805,400],1492,[1803,398],528,[527,781],[530,782],[461,783],[595,784],526,526,[1740,400],1803,[1739,460],527,525,[526,845],[527,846],[461,847],[595,848],526,530,596,525,531,[595,974],[530,3282,975],[462,3346],3410,[1286,3411],1286,1286,1286,1286,1286,[1286,3020],[464,3021],[594,3085,717],[530,718],[527,719],[526,720],532,525,594,[1735,399],[1735,398],596,[462,16894],[528,3282,16895],[531,3283],[1735,3284],[1735,2129],[1799,2130],[1734,2131],[1734,2132],1735,1734,1798,1798,[79,1800],80,15,[15,1604],1799,1734,1798,[16,1736],[15,3147],[11,3148],[12,1100],[16,1101],[15,1603],1799,1798,1734,1735,1735,[1811,1607],1746,1810,[1746,1795],[1734,3155],[1798,3156],1735,1798,1798,1798,[1734,3083],[1734,3084],[1798,3022,2065],[1798,2066],[1734,2067],[1734,2068],1799,1734,1735,2369,[1798,2373],[1734,2245],1734,1798,1799,1798,1735,1735,1799,2370,[1809,1608,2373],[1808,2245],1745,[1810,1795],[1799,2129],[1798,2130],[1798,2131],[1799,2132],1798,[1799,3090],[1734,3026],[1811,1861,3027],[1808,1862],[1744,1863],[1744,1671],1809,1809,1745,1811,1745,1747,1809,1808,1747,1747,1746,1746,[1746,285],[549,286],[3777,550],421,486,422,423,487,422,423,[486,213],[1299,214],2012,1364,1363,1363,2011,1364,1300,1363,1363,1363,[1364,1376],[1363,1377],1572,1633,[1364,1637],[1299,1638],[1363,1639],[1299,1640],1299,1364,1300,[1300,1568],1569,1572,1633,1571,[1363,1509],[1363,1574],[1300,1575],[1364,1576],[1364,156],[1363,157],[3777,158],[3777,483],422,486,420,[3777,552],3777,[3777,227],485,487,423,423,487,[423,221],[420,222],421,[486,1201],[487,1202],487,486,487,[423,221],[422,222],422,[2684358337,296],2684358337,[2684358337,356],421,[423,1129],[484,1130],[2684358337,294],2684358337,2684358337,2684358337,[2684358337,292],485,422,487,[422,277],[422,278],487,422,422,420,[2684358337,548],[421,470],406,[3777,214],[3777,547],[3777,549],[3777,550],[3777,551],[3777,552],3777,[3777,291],423,[486,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1803,1803,[1740,333],[1804,269,3539],[463,3540],463,526,[525,781],[463,782],[527,783],[525,784],[461,3155],[462,3156],595,464,[528,717],[530,718],[595,719],[526,720],[1741,269],[1740,270,1717],[1803,271,1718],[1804,272,1719],[1805,269,1720],[1804,273],[1741,333,845],[463,846],[461,847],[462,848],[594,3155],[526,3156],[1804,269],[1805,270],[1740,271],[1741,272,3655],[532,3656],[462,3657],[595,781],[525,782],[526,783],[463,784],528,[1803,337,3090],[1740,3091],[1740,397,3092],526,659,660,462,527,461,464,462,463,530,530,[1740,269,16761],[1740,336,3404],3405,[1740,396,3148],531,[532,1845],[528,1846],[464,1847],[595,3219,1848],[1286,3220],1286,1350,1286,3329,3393,1286,1286,1286,1286,1286,[1286,3211],[532,3212],461,530,596,463,[1740,591],[1740,399],1741,1428,1804,[1804,333],462,[532,845],[595,846],[528,847],[462,848],527,[1740,337],[1803,653],[1739,654],[1805,524,655],[594,656],461,[530,909],[463,910],[526,911],[528,912],462,594,[596,403],462,463,594,[594,3155],3410,[1286,3411],1286,1286,2246,1286,1286,[1286,3083],[532,3084],[525,3085],[526,781],[528,782],[464,783],[525,784],596,[1734,589],[1799,400],1798,1799,[1798,332],[463,3282],[463,3346],3347,[1798,3348],[1798,2193],[1735,2194],[1799,2195],[1734,2196],1799,1799,[1735,340],1799,[16,1671],16,16,[80,1795],1799,1798,1735,[15,1671],[15,3211],[75,3212],[76,1164],[79,1165],[80,1667],1799,1735,1735,[1798,3282],[1799,3342],[1811,1864,3343],[1747,3277],1808,[1744,1859],[1809,1860,3219],[1735,3220],1735,1735,1735,1734,[1798,3147],[1798,3148],[1735,2129],[1799,2130],[1798,2131],[1735,2132],1798,1798,1734,[1798,2433],[1734,2437],1798,1799,1734,1799,1799,1734,1798,1798,[1735,2434],[1745,1672,2437],1747,1744,[1747,1795],[1735,2193],[1735,2194],[1798,2195],[1798,2196],1734,[1745,1862],[1808,1670,3090],[1810,3091],[1811,3092],1809,1808,1808,1747,1747,1810,1808,1746,1744,1808,1811,1811,1810,[1810,348],[1811,412],[3777,350],3777,[3777,547],[3777,548],[3777,549],421,423,422,422,[487,277],[1299,278],1364,1364,1363,1364,1364,1364,1300,2011,1364,1299,[1364,1506],1636,1634,1572,1571,[1364,1444,1702],[1299,1703],1300,1363,1363,[1300,1442],1635,1634,1636,1634,1571,[1364,1573],[1300,1638],[1364,1639],[1363,1640],1363,[1363,221],[484,222],485,422,422,[3777,488],3777,[3777,293],485,487,486,422,422,422,[422,285],[2684358337,286],[2684358337,357],421,487,423,423,486,[486,285],[486,286],423,[2684358337,424],2684358337,2684358337,[2684358337,483],[422,1193],[423,1194],484,[2684358337,229],[2684358337,230],[2684358337,231],485,487,423,[422,86],[423,87],[486,151],422,422,487,[2684358337,488],2684358337,[2684358337,291],[486,277],[3777,278],3777,3777,3777,3777,3777,3777,[3777,419],486,[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1804,268],[1805,269],463,[461,3603],[461,3604],527,463,[462,845],[527,846],[462,847],[461,848],[462,3219],[528,3220],531,532,[530,781],[463,782],[525,783],[462,784],594,[594,1781],[531,1782],[532,1783],[531,1784],464,[531,909],[531,910],[462,911],[525,912],[594,3219],[463,3220],462,530,464,[595,3719],3720,[525,3721],[595,3657,845],[526,846],[532,847],[530,848],594,[1804,465],[1739,3603],[1805,3604],[1803,332],723,724,461,461,[525,653],[528,654],[531,655],[528,656],527,787,788,[1803,337],[1741,3147],[1739,460,3148],525,596,463,[594,3282],[528,3283],[1286,3284],1286,1286,1286,1286,1286,1286,1286,1286,1286,[1286,3020],[527,3021],[463,3085],463,531,[1804,592],[1740,399],1805,[1427,334],[1804,270],[1804,271],[1805,272],528,527,[525,909],[526,910],[461,911],[525,912],526,[1803,401],[1740,268,717],[1741,269,718],[595,719],[461,720],594,525,[461,974],[528,975],528,527,594,464,528,463,531,[595,3219],[1286,3220],2310,1286,1286,1286,1286,1286,[1286,3147],[462,3148],527,[525,845],[525,846],[526,847],[530,848],[1799,593],1798,1798,1798,1735,[1734,396],[462,3155],3410,[1799,3411],1799,1734,[1734,2258],[1734,2259],1735,1735,1799,1798,[15,1800],79,79,[15,1604],1734,1799,1799,[15,1670],80,[15,3275],[79,3276],[80,3277],16,[79,1731],1735,1798,[1734,3282],[1734,3283,1938],[3406,1939],3407,[1746,3341,7],8,9,[1746,3283,10],[1810,1668,3284],1735,1799,1735,1734,[1799,3211],[1799,3212],[1798,2193],[1799,2194],[1746,1860,2195],[1799,2196],1734,1799,1799,1735,1799,1798,[1735,2243],1799,1735,1798,[1798,2244],1735,1798,1799,[1747,1736],1744,[1808,1036],[1811,1669,1037],1735,[1799,2258],[1734,2259],1734,[1809,1671],1808,1746,[1810,3155],[1745,3156],1808,1811,1809,1811,[1810,1539],[1809,1543],[1810,1544],1746,1745,1811,1808,1808,1810,[1744,221],476,[3777,488,477],3777,3777,597,3777,[3777,357],421,422,423,[423,341],[1299,342],[1363,343],1364,1299,1364,1363,1299,1300,1364,1363,1300,1300,[1363,1632],1633,1633,1571,[1364,1445],1363,1300,[1299,1376],[1363,1377],1570,1634,1571,1569,1633,1633,[1299,1637],[1363,1702],[1300,1703],1364,1363,[1363,285],[423,286],423,422,420,[3777,358],3777,[3777,483],423,487,422,487,422,[487,348],[486,349],[2684358337,350],2684358337,[2684358337,483],423,486,422,486,[423,221],[423,222],422,484,[2684358337,228],[2684358337,294],[2684358337,357],[2684358337,548],421,423,423,423,423,486,422,[486,149],[423,150],[487,151],487,423,486,422,[2684358337,488],2684358337,[2684358337,355],[487,213],[3777,229,214],[3777,230],[3777,231],[3777,294],3777,597,[3777,292],485,420,[359,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1741,332],527,464,[527,3090],[461,3026],[462,3027],461,[525,909],[462,910],[527,911],[462,3282,912],[526,3283],[461,3284],595,464,[595,845],[594,846],[528,847],[594,848],531,[464,1845],[526,1846],[463,1847],[461,1848],595,530,[596,974],[527,975],464,[530,3155],[461,3156],464,526,532,594,[531,3784],3785,[530,3592,909],[525,910],[527,911],[464,912],464,[532,3666],[1740,273,3667],[1741,3668],[1740,396],463,596,462,463,[532,717],[530,718],[532,719],[525,720],527,851,852,[1739,401],[1739,3147],[1741,524,3148],468,467,[530,3282],[530,3346],3347,[1286,3348],1286,1286,1286,1286,2123,2124,1286,[1286,2957],[1286,2958],[462,3084],[530,3085],594,[461,402],[1803,400],1805,[1805,268],[1803,269,1525],[532,1526],[464,1527],463,528,525,462,531,[594,974],[463,975],464,464,[1739,465],[1739,397,781],[531,782],[525,783],[596,784],595,530,596,595,[531,1166],[526,1167,19526],[596,1168,19527],[530,1168],[462,1169],528,462,[464,3155],[1286,3156],1286,1286,1286,1286,1286,1286,[1286,3211],[464,3212],461,[461,909],[528,910],[530,911],[1798,337,912],1735,1799,1798,[1734,334],[1735,273],[1799,460],[596,3219],[1734,3220],1799,1735,1735,1734,1734,1798,1799,1798,1734,[15,1671],15,[16,1605],1799,1735,1798,[80,1800],16,80,[80,1605,3339],3340,[80,3341],[79,1605,3277],1798,1799,[1734,3282],[1799,3346,2001],[3347,2002],[1798,2058,3470,2003],[1286,3471,2004],[3405,7],8,9,[3347,10],[1809,2120,3348],[1745,1603],1799,1798,1798,[1734,3275],[1799,3276],[1798,3277],[1808,1800,2258],[1747,2259],[1744,1603],1734,1799,1734,1798,1798,1734,2307,[1735,2309],[1735,2181],1734,2308,[1798,2309],[1799,2181],1734,[1745,1670],1745,[1810,1100],[1745,1101],[1810,1795],1735,1799,[1810,1670],1747,1747,1744,[1808,1539,3219],[1744,1541,3220],[1745,1542],[1744,1543,1938],[1747,1607,1939],1747,[1811,1669],1734,[1809,1800],1811,1745,1746,1746,1747,1745,[1744,221],[423,222],484,[3777,294],3777,3777,3777,3777,[3777,547],421,486,[420,405],406,[1364,407],[1299,343],1947,1363,1299,1300,1300,1363,1299,1299,[1363,1441],1636,1570,1636,1569,[1300,1573],1300,1300,[1299,1440],1569,1571,1635,1635,1571,[1363,1697],[1299,1698],[1300,1507],1299,1363,1300,[1364,348],[1364,349],[422,350],423,487,484,[3777,294],[3777,292],485,423,487,487,422,[487,348],[423,412],413,[2684358337,294,414],2684358337,[2684358337,547],[2684358337,548],421,486,487,[487,285],[422,286],487,487,422,[2684358337,488],[2684358337,23],[2684358337,27],[485,24],[486,27],[423,158],486,423,486,422,[423,277],[423,278],423,487,487,486,420,[2684358337,358],2684358337,[2684358337,419],[423,277],[3777,548,278],[3777,549],[3777,550],[3777,359],3777,3777,[3777,483],486,[3777,296],[3777,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1741,396],463,526,464,[463,3090],[461,3091],[461,3092],528,[462,974],[461,3282,975],[526,3346],3347,[462,3348,16830],525,464,[464,909],[530,910],[596,911],[526,912],525,532,526,595,531,530,463,530,464,[525,16830],[525,3219],[596,3220],532,594,462,463,530,[462,3655],[596,3721],[462,3722,974],[461,3966,975],[463,3967],[530,3968],[461,3730],3731,[1803,3732],[1805,460],526,530,594,462,[461,781],[532,782],[526,783],[525,784],594,526,530,[1803,465],[1739,3211],[1805,332,3212],461,594,[596,3155],3410,[1286,3411],1286,1286,1286,[1286,653],[1286,654],[2187,655],[2188,656],[1286,3020],[530,3021],[462,3022],[594,3085],532,526,[1741,337],1804,1492,[1804,397],[596,1589],[596,1590],[596,1591],[531,1592],595,528,526,531,461,461,530,[1805,592],[1740,593],[1741,845],[1741,524,846],[527,847],[2054,848],464,526,595,596,[530,1230,19589],[1231,19590],[1232,19591],[1296,19592],[594,1233],[525,1234],1990,[531,3219],[1286,3220],1286,1286,1286,1286,1286,1286,[1286,3275],[531,3276],[531,3277],461,[531,974],[461,975],[1798,401],1734,1798,[1798,268],461,595,[461,3282],[525,3283],[1735,3284],1799,1798,1798,1734,1735,1799,1735,[80,1862],[16,1670],79,16,[16,1795],1799,[79,1862],[79,1863],[16,1670],80,[16,1604],1735,[1734,3404],3405,[1798,3341],[1798,3342],[1798,3343],[1799,3346],[3410,2065],[1799,3411,2066],[1798,2122,2067],[1286,2068],[1286,3469,7],8,9,[1286,3411,10],[1746,2184],[1810,1667,2185],[1735,2375],1734,1734,[1734,3339],3340,[1735,3341],[1811,1670,3342],[1810,3343],[1810,1667,3277],1735,1734,[1745,1861],[1747,1862],[1809,1863],1799,2371,[1734,2373],[1734,2245],1799,2372,[1799,2373],[1799,2245],1799,[1809,1607],1808,[1808,1164],[1744,1165],[1744,1668],[1811,1862],[1811,1670],1746,1809,1746,[1810,3282],[1811,1795,3283],[1734,3284],[1799,2001],[1798,2002],[1798,2003],[1811,1544,2004],[1747,1605],1735,1799,[1808,1607],[1746,1605],[1810,1544],1745,1810,1745,[1747,285],[486,286],486,484,[3777,229],[3777,230],[3777,231],[3777,294],3777,[3777,483],422,[3777,296],[3777,470],471,[1299,214],1299,1299,1299,[1300,1446],[1300,1447],[1300,1448],1300,[1300,1376],1636,1569,1569,1635,[1299,1699],[1363,1701],1363,1364,[1363,1568],1633,1571,[1634,1446],[1570,1447],[1299,1507,1448],1299,1299,1300,[1300,348],[1300,408],[1364,409,31],[1364,412],413,[486,414],422,423,487,484,485,423,420,[3777,548],[3777,549],[3777,550],[3777,551,221],413,[487,477],484,[2684358337,295],2684358337,2684358337,[2684358337,483],487,486,[423,156],[422,92],[422,93],486,486,[2684358337,488,86],[487,87],[486,88,1131],[486,91,1132],[422,88],[486,92],[487,93],487,[423,5638],[423,86],[486,87],[486,151],420,421,486,422,[2684358337,488],2684358337,2684358337,[2684358337,483,86],[3777,87],[3777,151],3777,3777,3777,3777,3777,[3777,483],486,[3777,424],3777,[3777,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1804,460],463,526,462,462,[461,3155],[463,3156],525,527,[526,3155],3410,[531,3411],[528,16894],[530,16895],525,464,[526,974],[530,975],463,528,461,528,594,464,527,463,528,596,[464,16894],[526,3155,16895],[462,3156],526,595,464,528,528,[463,3719],3785,3786,4030,4031,4032,3794,[1803,400,3795],1741,[1803,588],527,462,461,464,[463,845],[463,846],[594,847],[526,848],463,464,528,[1805,529,3020],[1803,3021],[1804,396,3085],528,527,[461,3219],[1286,3220],1286,2246,1286,1286,[1286,2957,717],[1286,2958,718],[1286,2961,719],[1286,2958,720],[531,3084],[461,3085],532,532,527,526,[1804,465],1741,1740,[1740,333],[525,1653],[463,1654],[461,1655],[594,1656],659,[660,653],[595,654],[532,655],[526,656],526,[1741,400],1741,1491,[1805,333,909],[527,910],[527,911],[595,912],526,531,530,[464,1293],[461,1294,19653],[1295,19654],[1296,19655],[1297,19656,19593],[1296,19594],[461,1298,19595],531,[532,3090],[462,3026],[1286,3027],1286,1286,1286,1414,1286,[1286,3339],3340,[596,3341],[594,3277],595,462,[1735,465],1735,[1798,334],461,[526,3282],[530,3342],[594,3346],3347,[1798,3348],1735,1799,1798,1734,1798,1734,[80,1800],80,16,16,16,[79,1859],[15,1670],[80,1036],[15,1037],80,[15,1605],1735,1799,1799,[1734,3469],3405,3406,3407,3410,[1734,3411,2129],[1734,2130],[1734,2131],[1734,1994,2132],[1286,7],8,9,[1286,10],2246,1286,[1734,2056],1799,1799,1734,[1735,3404],3405,3406,3407,[1746,1731,3276],[1799,3277],[1811,1671],[1747,1036],[1810,1037],1747,[1747,1603],[1798,2435],[1735,2437],1734,1798,[1798,2436],[1798,2437],1799,1798,1799,[1809,1606],1747,1808,1808,[1744,3282],[1745,3342],[1746,3343],[1810,3344],[1747,3345],[1808,1605,3346],3347,[1734,3348],[1735,2065],[1798,2066],[1798,2067],[1735,2068],1799,[1744,1862],[1744,1863],1734,1735,[1808,1608],1810,1810,1810,[1809,156],[1810,92],[422,93],486,423,423,423,484,[3777,228],485,423,[3777,360],3777,[3777,277],[1300,278],1300,1300,1300,[1299,1510],[1363,1511],[1364,1512],1364,[1299,1440],1634,1570,1635,[1299,1508],1363,1363,1299,1364,[1300,1505],[1300,1697],[1300,1698],[1636,1510],[1300,1637,1511],[1300,1512],1300,1948,[1299,348],[1363,349],472,95,476,[3777,548,477],421,486,487,486,486,420,[3777,549],[3777,358],3777,3777,3777,[3777,221],[487,222],423,422,[2684358337,488],2684358337,2684358337,[2684358337,356],421,486,486,[420,156],[2684358337,548,157],[422,24],[423,27],[423,150],[422,151],[486,1195],[423,1196],486,[486,156],[487,157],[486,24],[487,27],[2684358337,150],[2684358337,357,151],[2684358337,548],[2684358337,358],[2684358337,483],487,420,[2684358337,359],2684358337,[2684358337,149],[3777,150],[3777,151],[3777,227],[3777,294],3777,3777,3777,[3777,292],485,420,[3777,358],3777,3777,[3777,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[4483,3042],[4484,3043],[4488,3044],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1804,524],463,528,464,[463,3666],[461,3667],[526,3284],527,525,[526,3155],[464,3156],595,461,464,787,788,461,530,[530,653],[531,654],[463,655],[532,656],531,527,464,463,528,528,595,[1990,3219],[530,3220],463,596,532,463,464,461,[525,3849],[525,3850],[595,4094],[526,4095],[461,4096],[530,3858],[1741,335],1804,1427,[1739,332],530,464,462,[594,909],[594,910],[596,911],[531,912],525,464,[595,3020],[1739,399,3021],[1741,3085],[1804,460],464,[526,3282],[528,3283],[1286,3284],1286,1286,1286,[1286,3020],[461,3021,781],[596,3022,782],[527,3025,783],[594,3022,784],[595,3085],1990,528,527,461,[1804,591],[1741,400],[1740,333],[1803,269],525,[461,1717],[462,1718],[464,1719],[532,1720],723,[724,717],[531,718],[525,719],[532,720],595,[1741,336],1491,1741,[1805,397],[1804,589,974],[1741,590,975],[1740,591],[1740,592],[1739,589],594,[526,1357],[532,1358,19717],[1359,19718],[1360,19719],[1361,19720,19657],[1296,19658],[530,1362,1525,19659],[530,1526],[463,1527],[461,3090],[462,3091],[1286,3092],1286,1286,1286,1286,1286,[1286,3404],3405,[528,3148],528,525,594,[1735,269],464,[526,3282],[532,3283],3214,3410,[1734,3411,1938],[1798,1939],1734,1735,1734,1799,1798,1735,1734,[79,1607],16,79,80,79,80,[16,1100],[79,1101],15,[79,1603],1799,[1799,1938],[1734,1939],1798,[1734,3469],[1798,3470],[1735,3471],[1735,3474],[1799,2193],[1734,2194],[1798,2195],[1798,2122,2196],[1286,7],8,9,[1286,2957,10],[1286,2958],[1286,2961,1938],[1798,2120,2958,1939],[1734,2962],1798,1799,[1808,1671],[1811,3469],[1810,3470],[1809,3471],3340,[1744,1670,3341],[1746,3277],[1809,1100],[1745,1101],1811,[1808,1667],1799,1798,1799,1798,1734,1735,1735,1799,1735,[1745,1800],1809,1747,[1745,3282],[1808,3283],3406,3407,3408,3409,3410,[1734,3411],1735,[1799,2129],[1799,2130],[1735,2131],[1798,2132],[1810,1671],1810,1809,[1746,1669],1734,[1809,1672],1746,[1810,1036],[1811,1037],1809,[1746,156],[1744,157],[423,158],423,486,486,423,422,423,422,[3777,424],3777,[3777,341],[1364,342],[1299,343],1299,1364,[1299,1574],[1300,1575],[1299,1576],1363,[1299,1568],1635,1572,[1363,1445],1364,1299,1300,1300,1364,1363,1364,1364,[1299,1505,1574],[1364,1701,1575],[1300,1576],1363,[1363,348],[1299,412],413,[420,536],[3777,537,159],[3777,540],3777,[3777,356],421,486,423,423,[3777,296],3777,[3777,292],[3777,228],[3777,229],[3777,231],[3777,232,285],[487,286],[487,1129],[486,1130],484,[2684358337,228],[2684358337,229],[2684358337,231],485,487,420,[2684358337,358],[2684358337,156],[2684358337,293,91],[422,88],[487,151],423,487,423,487,423,[422,156],[486,91],[486,88],[2684358337,294,151],2684358337,2684358337,2684358337,[2684358337,483],422,[484,23],[2684358337,27],[2684358337,24],[486,150],[3777,294,151],[3777,292],485,484,[3777,229],[3777,230],[3777,231],485,423,[3777,296],3777,3777,3777,[3777,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[4883,4547,3106],[4946,4548,3107],[4947,4552,3108],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1805,397],528,528,[463,3282],[461,3730],3731,[463,3732],528,462,[525,3219],[462,3220,1525],[594,1526],[525,1527],461,851,852,525,527,[532,717],[462,718],[532,719],[464,720],[531,404],461,463,531,[531,653],[596,654],[527,655],[464,3090,656],[525,3026],[530,3027],464,464,[530,653],[530,654],[462,655],[594,656],463,462,531,525,530,596,[1740,273],1741,[1741,396],596,528,532,594,[461,974],[596,975],527,528,[596,3083],[1804,337,3084],[1739,3085],1804,[1740,524],[530,3282],[594,3346],3347,[1286,3348],1286,1286,[1286,3083],[461,3084],[463,3085,845],[531,846],[463,847],[530,848],595,595,531,463,[1804,337],1804,1805,[1491,332],531,594,[594,1781],[596,1782],[531,1783],[527,1784],525,[527,781],[525,782],[528,783],[595,784],527,463,[1741,269],[1740,273],1739,1740,1741,1739,1739,1803,[1804,524],462,[1805,591,1422],[1803,1423],1424,[463,1425],[463,1488],[463,1426,1589],[462,1590],[525,1591],[594,1592],[464,3155],[1286,3156],1286,1286,1286,1286,1286,1286,[1286,3211],[530,3212],527,594,531,[462,1938],[525,3282,1939],[464,3346],3347,[1798,3470],[1734,3474,2001],[1798,2002],[1799,2003],[1734,2004],1735,1799,1734,1798,1798,[79,1862],[15,1864],16,15,79,79,80,[79,1164],[79,1165],80,[80,1731],[1799,2001],[1735,2002],[1799,2003],[1798,2004],1798,1734,1735,1798,1799,[1735,2258],[1734,2259],[1798,2058],[1286,7],8,9,[1798,3021,10],[1798,3022,2001],[1799,3025,2002],[1735,3022,2003],[1735,3026,2004],[1735,3027],[1808,1670],1810,1809,1744,1811,[1745,3404],3405,[1747,3148],[1810,1164],[1745,1165],1746,[1811,1731],1734,1734,1799,1734,1799,1798,1735,1798,[1744,1861],[1810,1864],1810,[1746,1539,3282],[1746,1606,3346],3347,[1746,1541,3470],[1808,1542,3471],[1808,1543,3472,1938],[1798,3473,1939],[1734,3474],1798,1734,[1735,2193],[1734,2194],[1734,2195],[1798,2196],[1811,1540,2945],[1746,1544,2946],[1811,2947],[1810,2948],[1808,1603,2949],[1744,1736],1746,[1810,1100],[1745,1101],1811,1746,[1746,221],[487,222],423,487,422,487,486,420,[3777,550],[3777,358],3777,[3777,227,405],406,[1364,407],[1364,343],1300,[1363,1638],[1364,1639],[1300,1640],[1364,1441],1570,1572,1571,[1299,1573],1364,1299,1300,2011,1363,1300,1299,1363,[1364,1638],[1363,1639],[1300,1640],1300,[1299,221],476,[422,477],484,[3777,294],3777,3777,3777,[3777,291],487,423,423,[3777,360],3777,[3777,483],486,423,487,[423,221],[423,222],[487,1193],[486,1194],487,486,422,422,487,422,484,[2684358337,295],597,[2684358337,483],487,423,487,487,486,487,420,421,422,423,484,[2684358337,229],[2684358337,230],[2684358337,231],485,[423,86],[422,87],[487,88],[423,91],[423,151],484,485,423,423,486,422,423,423,423,[3777,424],3777,3777,[3777,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4609,[4882,4610],[4947,4611,3170],[4946,3171],[4882,4616,3172],[4883,4617],4484,4487,4484,4487,4488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1740,[1805,398],[527,3282],[461,3346],3794,[463,3795],528,528,[463,3282],[464,3283],[464,3284,1589],[463,1590],[526,1591],[532,1592],532,463,531,595,[464,781],[530,782],[463,783],[596,784],528,532,532,527,[526,717],[462,718],[525,719],[595,720],[595,3090],[527,3091],[526,3092],528,[461,717],[461,718],[462,719],[525,720],462,532,526,596,464,530,[1739,593,2957],[1805,2958],[1739,460,2962],463,659,660,596,527,462,461,462,[526,3147],[1803,465,3148],[1805,16830],[1803,333],596,[464,3155],3410,[1286,3411],1286,1286,1286,[1286,3147],[596,3148],[596,909],[527,910],[596,911],[530,912],525,[1741,591,653],[1740,592,654],[594,655],[1803,465,656],1805,[1805,274],[1804,396,275],531,594,[528,1845],[532,1846],[596,1847],[530,1848],595,[461,845],[595,846],[461,847],[1990,848],463,596,462,525,[1740,269],[1741,335],1805,1427,1803,1804,[1805,588],[1741,593],1803,[1803,268,1487],[1805,269,1488],[462,1489],527,[594,1653],[595,1654],[464,1655],[532,1656],[528,3219],[1286,3220],1286,1286,1286,1286,1286,2246,[1286,3147],[526,3148],464,594,[596,2001],[527,2002],[528,3155,2003],[3410,2004],[1799,3411],1735,[1735,2065],[1799,2066],[1734,2067],[1799,2068],1734,1735,1799,1799,[15,1670],15,80,80,15,15,16,[16,1605],[79,1540],[80,1541],[79,1542],1735,[1799,2065],[1798,2066],[1734,2067],[1798,2068],1734,1734,1734,1735,1799,[1798,2957],[1734,2958],[1734,2122,2962],[1286,7],8,9,[1735,3085,10],[1798,2065],[1735,2066],[1735,2067],[1735,3090,2068],[1799,3091],[1810,1606,3092],1808,[1745,1036],[1809,1037],1809,1744,[1744,3211],[1745,3212],1747,1809,[1810,1605],1799,1734,1799,1734,1735,1734,1799,1735,[1746,1608],1809,1744,1745,[1745,1603,3155],3410,[1799,3411],1734,[1799,2001],[1798,2002],[1735,2003],[1798,2004],1735,1798,1734,[1734,2258],[1798,2259],1799,1734,[1744,1608,3010],3011,[1747,3012],[1809,1667],1799,[1808,1544],[1811,1164],[1746,1165],1744,1811,[1745,285],[486,286],486,422,423,423,420,[3777,358],3777,661,3777,[3777,483],[487,470],471,[1299,214],1299,[1363,1702],[1364,1703],1300,[1363,1506],[1363,1698],[1364,1699],[1364,1700],[1364,1701],[1364,348],[1363,408],[1363,409],[1363,343],1299,1299,1364,1300,[1364,1702],[1363,1703],1364,1364,[1300,285],[548,286],[3777,549],[3777,550],[3777,552],3777,3777,3777,[3777,419],422,423,487,[3777,424],3777,[3777,547],[3777,548],421,486,[487,285],[487,286],423,486,423,422,486,487,486,422,423,484,[2684358337,228],485,486,422,423,487,486,420,[2684358337,359],[2684358337,547],[2684358337,548],[2684358337,549],421,486,487,422,[422,149],[486,150],[486,151],423,486,486,486,420,[3777,548],[3777,549],[3777,548],[3777,549],[3777,550],[3777,551],421,484,[3777,228],[3777,229,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4483,4484,4487,4488,0,0,0,0,0,4673,[4883,4674],[4947,3234],[4883,3235],[4947,3236],[4946,4616],[4946,4548],[4947,4551],[4882,4548],[4946,4551],[4946,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1804,1739,[1740,524,3155],3410,[528,3858],464,525,[527,3282],[528,3346],3347,[461,3348,1653],[463,1654],[596,1655],[531,1656],463,461,530,2054,[595,845],[530,846],[464,847],[525,848],594,530,596,595,[527,781],[461,782],[532,783],[464,784],594,[531,3155],[525,3156],461,[594,781],[594,782],[528,783],[463,784],595,462,525,596,525,[1804,400,3020],[1805,3021],[1739,3022],[1739,524,3026],[525,3027],723,724,595,527,530,528,527,[1804,591,3211],[1741,400,3212],[1741,16894],[1741,524,16895],594,[531,3539],[1286,3540],1286,2310,1286,1286,[1286,3211],[595,3212],463,[525,974],[595,975],[1741,591],[1740,399],[1739,717],[1803,718],[1739,398,719],[1740,400,720],1741,1491,[1739,460],525,594,527,526,530,463,526,[527,909],[594,910],[530,911],[530,912],464,462,595,526,596,594,[1741,269],[1805,273],1804,[1739,653],[1739,654],[1805,655],[1805,656],[1804,588],596,464,532,[525,1717],[462,1718],[530,1719],[596,1720],[525,3155],[1286,3156],1286,1286,1286,1286,1286,1286,[1286,3211],[528,3212],532,468,[595,2065],[1734,589,2066],[1734,590,3090,2067],[1735,591,3026,2068],[1799,3027],1734,[1735,2129],[1799,2130],[1799,2131],[1735,2132],1798,1799,[16,1862,1036],[79,1671,1037],15,16,[79,1604],[16,1544],80,80,80,[16,1795],1799,1799,1798,1799,[1735,2129],[1735,2130],[1735,2131],[1798,2132],1734,1798,1734,1798,[1734,3083],[1798,3021],[1735,3022],[1798,3026],[1286,2961,7],8,9,[1798,10],[1734,2129],[1798,2130],[1799,2131],[1734,2132],[1734,3155],[1808,1608,3156],1744,[1746,1100],[1809,1101],1811,1746,[1747,3147],[1811,3148],1810,1746,[1809,1795],[1734,1938],[1734,1939],1734,1734,1798,1799,1799,1735,[1744,1672],1747,1809,1808,[1809,1667,3219],[1735,3220],1735,1735,[1799,2065],[1799,2066],[1735,2067],[1799,2068],1735,1732,1733,1735,1798,1735,1798,[1745,1736,3074],[1746,3075],[1746,3076],[1745,1731],1798,[1810,1608],1747,1744,1746,[1745,348],[1746,349],[550,350],[3777,551],421,487,423,[3777,296],3777,3777,3777,[3777,293],[485,1954],422,[423,277],[1364,278],1300,1300,1363,1299,1300,1299,[1364,348],[1363,410],[1300,411],[1299,412],472,473,[1363,407],[1299,408,3890],[1364,409],[1363,410],[1299,411],[1364,343],1948,1363,[1300,348],[1363,349],[3777,350],3777,3777,3777,3777,[3777,227],[3777,228],485,487,423,423,484,[3777,294],3777,3777,[3777,357],[3777,549],[3777,550,156],[3777,551,92],[423,93],487,486,423,487,420,[2684358337,548],421,422,423,487,487,486,[486,23],[486,27],[486,24],[422,27],[2684358337,296,158],2684358337,2684358337,2684358337,[2684358337,293],485,422,423,486,[487,277],[486,278],422,486,422,422,423,[3777,488],3777,3777,3777,3777,3777,3777,[3777,357],421,487,[422,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[4882,4547],[4882,4548],[4883,4551],[4947,4552],4553,0,0,0,4546,[4353,4547],[4353,4943,4611],4947,[4883,3299],4947,4947,4946,4883,4882,4883,[4946,4616],[4883,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1804,[1739,333],[461,3155],[463,3156],528,525,527,[527,3155],3410,[530,3411],[462,1717],[525,1718],[532,1719],[527,1720],528,595,531,594,[594,909],[532,910],[461,911],[595,912],525,528,528,527,[461,845],[464,846],[464,847],[595,848],526,[531,3219],[528,3220],527,[594,845],[525,846],[532,847],[530,848],463,527,464,[526,2957],[1740,337,2958],[1803,3084],[1492,3085],1803,[1740,397,3090],[1803,589,3026],[1805,590,3027],596,527,[1741,590],[1803,591],[1739,592],[1805,400],[1805,3275],[1741,3276],[1740,268,3277],527,527,[595,3603],[1286,3604],1286,1286,1286,[1286,3020],[528,3021],[528,3085],525,530,[1740,399],1805,1740,[1427,781],[1803,334,782],[1804,273,783],[1741,784],1427,1739,[1739,524,1525],[463,1526],[596,1527],463,596,527,595,594,595,[461,3282,974],[531,3722,975],[461,3723],[596,3724],[532,3725],[463,3277],531,531,595,527,526,[1805,336],[1803,334,717],[1803,269,718],[1739,273,719],[1491,720],1739,[1740,524],463,530,[526,1781],[525,1782],[461,1783],[532,1784],[463,3219],[1286,3220],1286,1286,1286,1286,1286,[1286,3020],[530,3021],[525,3085],595,464,[1798,337,2129],[1735,2130],[1798,2131],[1799,3090,2132],[1735,3091],[1798,3092],[1799,2193],[1734,2194],[1799,2195],[1798,2196],1735,[79,1608],[16,1100],[15,1101],15,79,[80,1795],[15,1800],79,80,[15,1604],1799,1735,1735,1799,1798,[1798,2193],[1735,2194],[1799,2195],[1799,2196],1735,1735,1798,1735,[1799,3211,1938],[1735,3212,1939],1799,[1798,3090],[1810,1796,3025,7],8,9,[1798,10],[1799,2193],[1798,2194],[1735,2195],[1799,2196],[1799,3219],[1810,1672,3220],1744,[1810,1164],[1746,1165],1746,1744,[1810,3211],[1810,3212],1746,[1810,1539],[1735,2001],[1735,2002],[1734,2003],[1735,2004],1798,1734,1735,1798,1735,[1747,1736],1747,1747,1808,[1744,1731,3090],[1735,3026],[1799,3027],1735,[1799,2129],[1799,2130],[1735,2131],[1734,2132],1799,1796,1797,1799,1799,1799,1798,[1734,3138],[1811,1606,3139],[1745,1539,3140],1799,1734,[1744,1672],1810,1747,[1810,348],[1811,412],413,[3777,414],3777,[3777,356],421,422,[3777,424],3777,[3777,293],[3777,228],[485,2017],[422,2018],[486,2019],[486,341],[1364,342],[1299,343],2011,1300,[1300,348],[1364,408],[1300,409,31],[1364,412],474,475,476,[423,536],[420,537],471,3954,473,474,475,[1363,407],[1363,408,3890],[1364,409],[1300,412],413,[3777,414],3777,3777,3777,[3777,293],485,487,422,422,422,486,422,484,[3777,232],597,3777,3777,3777,[3777,156],[3777,157],[423,158],422,423,420,[2684358337,358],2684358337,[2684358337,483],422,486,[486,1199],[486,1200],[487,86],[486,87],[487,88],[486,91],[423,88],[423,92],[2684358337,93],[2684358337,292],[2684358337,228],[485,1131],[422,1132],486,422,[423,86],[487,87],[487,151],422,423,422,486,420,[3777,358],3777,3777,[3777,293],[3777,228],[3777,294],3777,[3777,293],485,422,[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4609,[4947,4610],[4946,4611],4947,4946,[4946,4616],[4947,4617],4484,4487,4484,[4880,4610],[4353,4611],[4353,4816],[4353,5008],[4353,5009],4881,4880,[4353,5008],4881,4947,4947,4882,[4946,4616],[4882,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1805,268],526,[461,3219],[461,3220],528,528,463,[525,3155],[527,3156],525,[530,1781],[462,1782],[461,1783],[531,1784],525,527,532,595,595,[530,974],[532,975],594,531,464,527,594,[530,909],[595,910],[594,911],[594,912],[462,3282],[532,3283],[526,3284],525,[528,909],[526,910],[528,911],[462,912],527,532,[525,3020],[461,3021],[1740,465,3022],[1739,3085,653],[1804,654],[1741,655],[1739,656],[1741,3090],[1739,3091],[1804,398,3092],[1740,399],1805,1805,1805,1803,[1804,3339],3340,[463,3148],526,[527,3282],[462,3283],[1286,3284],1286,1286,[1286,3083],[463,3084],[530,3085],525,525,525,[1741,336],1804,1492,[1804,268,845],[528,846],[464,847],[1804,270,848],[1741,271],[1739,272],[596,1589],[461,1590],[596,1591],[596,1592],528,463,[528,3282],[531,3342],[594,3343],[464,3346],3786,3787,3788,3789,[595,3276],[531,3277],463,527,463,461,595,[594,781],[528,782],[462,783],[1741,336,784],[1804,334],594,526,461,[532,1845],[596,1846],[462,1847],[528,3282,1848],[462,3283],[1286,3284],1286,1286,1286,1286,[1286,3083],[596,3084,653],[531,3085,654],[464,655],[461,656],526,[1735,401,2193],[1734,2194],[1734,2195],[1735,2196],[1734,3155],[1735,3156],1799,[1735,2258],[1798,2259],1734,1735,[80,1672],[15,1164],[80,1165],15,[80,1605],1799,[15,1608],16,16,[15,1603],1798,1799,1798,1799,1798,1799,[1799,2258],[1734,2259],1799,1798,1798,1799,[1798,2001],[1734,3275,2002],[1734,3276,2003],[1734,3277,2004],1735,1735,1798,1734,1798,1735,[1735,2258],[1734,2259],[1799,3282],[1799,3283],[1810,1736,3284],1808,[1747,1954],1808,1810,1810,[1809,3275],[1811,3276],[1745,3277],[1746,1795],[1734,2065],[1734,2066],[1799,2067],[1799,2068],1798,1735,1734,1799,1798,[1747,1800],1746,1809,1744,[1808,1668],[1744,1860,3090],[1798,3091],[1735,3027],[1798,2193],[1734,2194],[1798,2195],[1799,2196],1798,1735,1799,1798,1734,1799,1799,1799,1735,1735,1735,1735,[1808,1736],1746,1808,[1811,221],476,[484,477],[3777,229],[3777,231],[3777,232],[3777,547],421,484,[3777,228],485,486,487,423,420,[3777,550,405],406,[1364,407],[1299,410],[1364,411],[1364,412],472,95,476,[423,538],[422,539],[423,540],487,[3777,296],[3777,535],[3777,536,4018],[421,537],[422,538],[423,539],471,3954,473,476,[3777,296,477],3777,3777,[3777,227],[3777,228],485,486,486,423,423,423,422,422,486,[3777,488],3777,[3777,227],[3777,229],[3777,231],[3777,294],[3777,221],[423,222],487,487,[2684358337,488],2684358337,[2684358337,293],485,[422,23],[486,27],[487,24],[423,24],[3777,548,150],[421,151],487,486,422,[422,156],[422,92],[485,93],486,[486,1195],[487,1196],486,[423,149],[3777,150],[3777,357,151],421,487,486,487,420,[3777,552],3777,[3777,227],[3777,228],485,422,[3777,296],3777,[3777,291],422,422,[487,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4483,4484,4488,0,0,0,0,4483,4484,4487,4484,4488,0,0,0,4483,4484,4488,0,0,0,0,4673,[4946,4674],4946,4947,4946,4946,[4883,4616],[4947,4548],[4946,4551],[4883,4548],[4944,4611],[4353,4754],4353,5121,4353,[4353,5007],[4353,4818],4353,[4353,4943],4883,4882,4883,4883,[4947,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1803,397],[462,3666],[461,3667],[463,3284],462,525,527,[525,3219],[526,3220],461,[461,1845],[531,1846],[1926,1847],[532,1848],526,464,531,531,464,463,532,[527,653],[531,654],[525,655],[461,656],532,531,[528,974],[525,975],[532,3282],[527,3346],3347,[594,3732],525,463,[595,974],[526,975],464,530,[461,3083],[463,3084],[525,3085,16830],[1805,400],[1805,268,717],[1739,269,718],[1741,270,719],[1803,271,720],[1739,272],[1803,336,3155],[1740,3156],1741,1803,[1804,333],[1805,269],[1739,273],[1741,334],[463,3147],[526,3148],596,[595,3155],3347,[1286,3348],1286,1286,[1286,3147],[525,3148],527,595,462,596,[1741,529],1805,[1741,333],[526,909],[531,910],[527,911],[527,912],526,528,[527,1653],[530,1654],[530,1655],[527,1656,338],526,[525,3282],[531,3283],3406,3407,3410,[1286,3850],[1286,3851],[1286,3852],[1286,3853],3340,[594,3341],[526,3342,7],8,9,[528,3016,10],[594,3277],[596,845],[527,846],[464,847],[530,848],[532,3282],[464,3015],[526,3016],[462,3277],594,530,[532,3282],[461,3346],3347,[1286,3348],1286,1286,2246,1286,[1286,3147],[463,3148,717],[461,718],[595,719],[463,720],525,[1734,465],[1798,2258],[1798,2259],1799,[1798,3219],[1734,3220],1798,1734,1734,1735,1798,[80,1736],80,15,80,[80,1603],1798,[80,1672],16,16,[79,1667],1734,1799,1735,1798,1798,1798,1735,1734,1735,1798,1735,1735,[1799,2065],[1734,3339,2066],[3340,2067],[1799,3341,2068],[1798,3277],1734,1735,1798,1798,1799,1799,[1734,3282],[1734,3346],3347,[1734,3348],[1747,1606,2017],[1744,2018],[1808,2019],1811,1745,[1745,3339],3340,[1809,3341],[1744,1603,3277],[1798,2129],[1798,2130],[1799,2131],[1798,2132],1735,1798,1799,1735,1798,1735,[1746,1607],1744,1745,1745,1746,[1808,1795,3090],[1799,3091],[1734,3092],[1799,2258],[1799,2259],1798,1798,1799,1798,1734,[1744,1864],[1808,1669],1798,1734,1734,1799,1799,[1811,1862],[1744,1671],1811,1809,[1747,221],[423,222],487,486,486,[3777,488],3777,[3777,483],486,486,423,422,420,[3777,548],[3777,358],3777,[3777,470],471,474,475,476,[3777,536],[3777,537,159],[421,540],423,420,[3777,548],421,[3777,424],3777,[3777,292],485,423,486,[3777,488,535],[3777,536,4018],[3777,291,537],[422,540],[3777,424],3777,3777,[3777,483],487,486,423,423,422,486,486,423,423,420,[3777,359],3777,[3777,356],421,486,[3777,296],[3777,156],[3777,483,92],[487,93],420,[2684358337,358],2684358337,[2684358337,291],[423,86],[3777,87],[421,88],[423,91],[3777,296,88],[3777,151],[3777,356],421,487,487,420,[3777,359,156],[3777,157],[486,24],[422,24],[422,27],[486,24],[486,150],[3777,294,151],3777,[3777,291],423,486,422,[3777,488],3777,3777,[3777,483],487,422,486,[3777,424],3777,[3777,355],423,423,[487,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[4882,4547],[4946,4548],[4947,4552],4553,0,0,4546,[4353,4547],[4353,4548],[4353,4551],[4353,4548],[4353,4552],4553,0,4546,[4883,4547],[4883,4548],[4883,4552],4553,0,0,4546,[4882,4547],[4883,4611],4882,4883,4883,4883,4946,4947,4947,4946,4883,4944,[4353,4688],[4353,4755],4353,4353,4353,[4353,4752],4945,4883,4946,4946,4947,[4882,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1740,269,3729],[461,3730],3731,[462,3348],462,[525,653],[526,654],[464,3155,655],[530,3156,656],532,464,464,462,462,464,525,528,464,527,532,526,[527,717],[464,718],[464,719],[530,720],461,463,463,526,[526,3155],3410,[527,3858],595,532,595,594,526,531,532,[528,3147],[1805,589,3148],[1740,399,16894],[1805,333,16895],[527,781],[526,782],[596,783],[530,784],462,[464,3219],[1803,270,3220],[1739,271],[1805,272],[528,653],[596,654],[595,655],[596,656],[531,3211],[531,3212],525,[526,3219],[1286,3220],1286,1286,1286,[1286,3211],[532,3212],527,787,788,530,528,[1805,269],594,531,[532,974],[528,975],596,462,2054,[594,1717],[530,1718],[530,1719],[531,1720],[464,3282],[528,3346],3347,[1286,3470],[1286,3471],[1286,3474],1286,1286,1286,1286,[1286,3404],3405,[3406,7],8,9,[3080,10],[463,3276],[526,3277,909],[595,910],[531,911],[532,3282,912],[531,3283],3079,3080,[594,3341],[528,3342],[525,3343],[464,3346],3410,[1286,3411],1286,1286,1286,1286,1286,[1286,3211],[463,3212,781],[462,782],[526,783],[596,784],526,461,[1799,269],[1798,336],1735,[1799,3090],[1798,524,3026],[1799,3027],1799,1798,1798,1735,[79,1800],80,79,80,[16,1667],1799,[15,1736],79,16,[15,1731],1799,1735,1735,1798,1735,1735,1735,1735,1735,1734,1734,1798,[1735,2129],[1734,2130],[1799,3404,2131],[3405,2132],[1799,3148],1735,1798,1798,1798,1734,1799,[1799,3219],3410,[1799,3411],1734,[1808,1800],1810,1746,1810,1745,1745,[1810,3404],3405,[1809,1667,3148],[1798,2193],[1798,2194],[1799,2195],[1734,2196],1798,1734,1734,1735,1799,1799,[1799,1954],[1745,1540],[1809,1607],1811,1745,[1808,1668],[1799,3155],[1798,3156],1799,1734,1798,1798,1799,1798,[1811,1800],1811,1809,[1746,1795],1735,1734,1734,[1746,1671],1811,1747,1808,1745,[1744,285],[486,286],423,487,487,[3777,296],3777,[3777,291],422,486,486,423,[3777,296],3777,3777,3777,3777,[3777,292,535],[486,538],[3777,294,539],[3777,540],3777,3777,[3777,547],[3777,548],[3777,359],3777,[3777,357],[3777,359],3777,[3777,483],486,422,420,[3777,359],3777,[3777,355],420,[3777,552],3777,[3777,292],485,422,422,422,423,486,486,423,423,487,[3777,296],3777,3777,3777,[3777,291],486,[3777,424],[3777,293],[485,156],[423,157],[484,27],[2684358337,24],[2684358337,27],[2684358337,355,27],[3777,150],[3777,151],[3777,291],486,[3777,360],3777,3777,[3777,483],422,487,[3777,488],3777,[3777,156],[3777,88],[3777,293,91],[3777,294,88],[3777,91],[3777,355,151],[3777,488],3777,[3777,419],487,487,423,484,[3777,232],3777,[3777,547],[3777,549],[3777,550],[3777,551],[3777,358],3777,[3777,419],422,423,486,[487,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4609,[4883,4610],[4947,4611],4882,[4882,4616],[4947,4617],4484,4487,[4353,4610],[4353,4611],4353,4353,4353,[4353,4616],[4353,4617],4484,[4946,4610],[4946,4611],4883,[4946,4616],[4947,4617],4487,4484,[4946,4610],[4946,4611],4883,4882,4883,4883,4947,4946,4947,4883,4883,4883,4883,4882,4944,[4353,4689],[4353,4690],[4353,4691],4945,4947,4946,4947,4883,4882,[4946,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3793,3794,[463,3795],526,461,[526,717],[528,718],[464,3219,719],[596,3220,720],527,[527,16700],596,596,531,461,527,527,464,461,528,530,[527,781],[525,782],[596,783],[461,784],463,596,596,[461,16700],[1990,3155],[464,3156],462,464,527,532,528,463,461,[1804,590],[1805,399,3211,403],[1739,3212],[1805,268],463,[527,845],[532,846],[596,847],[463,848],[530,3282],[461,3283],[528,3284],596,596,[594,717],[464,718],[461,719],[531,720],[596,3147],[526,3148],596,[525,3155],[1286,3156],1286,1286,1286,[1286,3211],[595,3212],595,851,852,527,526,594,528,461,527,531,531,595,530,[595,1781],[525,1782],[531,1783],[463,3282,1784],[594,3283],3410,[1286,3411],1286,1286,1286,1286,1286,2246,1286,1286,[1286,3469],[1286,3470,7],8,9,[1286,3144,10],3340,[527,3341],[461,3342,974],[531,3343,975],[527,3346],3347,[1286,3143],[1286,3144],3405,3406,3407,3410,[1286,3474],1286,1286,1286,1286,1286,[1286,3020],[527,3021],[595,3085,845],[530,846],[528,847],[525,848],462,462,595,[1734,400],1799,[1798,334,16830],[594,3090],[531,3091],[1799,3092],1734,1798,1735,[15,1608],16,16,16,[15,1731],1735,[16,1864],80,15,[79,1795],1799,1798,1734,1734,1798,1734,1735,1799,1799,1798,1799,1735,[1798,2193],[1799,2194],[1799,2195],[1798,3211,2196],[1735,3212],1734,1798,1734,1735,1734,1798,[1798,3219,616,2511],[1734,1287,3220,616],[1734,1288,616],[1809,1862,1289,616],[1810,1864,1290,616],[1809,1291,616],[1747,1415,616],[1808,1416,616],[1810,1417,616],[1811,1418,616],[1808,1419,3083,616],[1747,3084,616],[1744,1731,3085],1735,[1799,2258],[1734,2259],1799,1734,1798,1734,1735,1735,[1735,2017],[1799,2018],[1735,2019],[1747,1608],1746,[1808,1036],[1746,1037],[1746,1859,3219],[1798,3220],1799,1798,1734,1734,1799,[1810,1862],[1808,1671],1747,1811,[1747,1668],[1809,1861],1734,[1808,1800],1809,1745,1745,1810,1746,[1744,221],[422,222],423,423,422,[3777,360],597,[3777,355],423,423,423,487,[3777,360],3777,[3777,292],[3777,228],[3777,231],485,487,[3777,488],3777,3777,3777,3777,3777,3777,3777,3777,3777,[3777,293],485,423,420,[3777,552],3777,3777,[3777,419],484,[3777,228],[3777,231],485,422,487,487,420,[3777,548],[3777,549],421,486,487,423,[3777,424],3777,3777,3777,[3777,355],422,[484,1446],[485,1447],[486,1448],[422,156],[486,88],[487,91],[487,88],[3777,488,91],[3777,151],597,[3777,355],486,[3777,424],3777,3777,[3777,547],[3777,549],[3777,550],[3777,358],3777,[3777,293],[3777,228],485,[3777,296],3777,[3777,419],[3777,488],3777,[3777,547],421,423,422,487,[3777,488],3777,3777,3777,3777,3777,3777,[3777,292],485,487,420,[3777,549],[3777,550],[551,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[4882,4674],4947,4882,4883,[4883,4616],[4947,4548],[4946,4551],[4353,4688,4611],[4353,4689],[4353,4690],[4353,4691],[4353,4692],4353,[4353,4616],[4353,4752,4548],[4882,4611],4882,4947,4883,[4353,4756,4616],[4353,4551],[4353,4751,4548],[4882,4611],4882,4883,4946,4947,4947,4947,4947,4947,4883,4882,4947,4882,4946,4947,4947,4883,4883,4947,4883,4883,4882,4883,4946,[4883,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[463,3857],[464,3858],463,528,526,[464,781],[464,782],[462,3090,783],[463,3026,784],[462,3027],[531,16764],532,525,530,532,528,463,525,461,530,530,[594,845],[525,846],[595,847],[527,848],526,528,595,[530,16764],[528,3219],[596,3220],531,528,463,530,532,[1740,591],[1804,400],[1741,3020],[1740,3021],[1804,268,3085],595,526,[527,909],[462,910],[526,911],[463,3282,912],[525,3346],3347,[530,3348],531,461,[461,781],[531,782],[527,783],[532,784],[526,3211],[464,3212],594,[530,3219],[1286,3220],1286,1414,1286,[1286,3275],[531,3276],[525,3277],596,461,525,596,[595,3282],[525,3342],[532,3343],[532,3277],595,527,[528,3282],[464,3342],[461,3343,1845],[462,3015,1846],[596,3016,1847],[463,3346,1848],3347,[1286,3474],1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,[1286,7],8,9,[1286,10],[1286,3404],3405,3406,3407,3410,[1286,3411],1286,1286,[1286,3469],[1286,3470],[1286,3471],[1286,3474],1286,1286,1286,1286,1286,[1286,3083],[596,3084],[462,3085],[461,909],[525,910],[596,911],[464,912],526,530,[1799,593],1799,[1734,334],[596,16894],[464,16895],[595,3090],[463,3091],[1798,3092],1734,1734,[80,1672],16,80,16,[15,1668],[79,1670],79,[79,1938],[79,1939],[79,1859],1735,1734,1734,1799,1735,1798,1798,1734,1734,1734,1798,1799,1798,[1735,2258],[1734,2259],[1798,3147],[1734,3148],1799,1734,1735,1799,1734,[1734,2574],[680,2575],[680,2576],680,680,680,680,680,680,680,680,680,680,1798,1798,1799,1734,1798,1799,1798,1799,1798,1734,1735,1799,1734,[1810,1672],1811,[1745,1100],[1809,1101],[1745,3090],[1745,1668,3026],[1735,3027],1734,1799,1799,[1808,1670],1747,1810,1744,[1809,1036],[1744,1037],1744,[1811,1669],[1809,1864],1744,1747,1744,1808,1808,[1808,221],[486,286],423,422,422,[3777,424],3777,[3777,419],487,487,486,487,[3777,424],3777,[3777,291],423,486,487,423,[3777,296],3777,3777,3777,3777,3777,3777,3777,[3777,227],[3777,228],485,487,487,[3777,296],3777,3777,[3777,292],485,486,486,486,487,487,422,420,[3777,359],3777,3777,[3777,291],423,486,422,484,[3777,294],3777,3777,[3777,419],[423,86],[487,27,1510],[486,24,1511],[486,28,1512],422,422,487,420,[3777,359],3777,3777,[3777,419],422,484,[3777,295],3777,3777,3777,3777,3777,[3777,292],485,486,487,[3777,424],3777,[3777,483],484,[3777,295],3777,[3777,483],487,422,486,484,[3777,294],3777,661,3777,[3777,227],[3777,228],485,420,[3777,548],[3777,358],3777,[3777,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0,0,0,0,0,0,0,0,0,0,4483,4484,4488,0,0,4546,[4882,4547],[4883,4611],4946,4883,4947,4947,4883,4883,4946,4883,4883,4880,[4353,4819],[4353,4752],[4353,4688],4945,4947,4882,4946,4946,[4353,4820],4353,[4353,4879],4946,4947,4883,4947,4882,4882,4947,4882,4882,4882,4883,4946,4946,4882,4946,4880,[4353,5010],[4353,5011],4881,4946,4883,4883,4883,[4946,4808],[4947,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,525,526,461,528,[528,845],[527,846],[463,847],[461,3090,848],[526,3091],[464,3092],463,531,[532,41],42,43,44,45,46,[461,47],461,[532,909],[527,910],[463,911],[527,912],527,531,464,[526,3282],[525,3283],[594,3284],594,532,[1803,591],[1739,592],[1805,400,2957],[1804,2958],[1740,2961],[1740,3084],[1803,334,3085],596,594,464,595,[531,974],[594,975],[595,3155],3410,[596,3411,16697],595,527,461,[594,845],[527,846],[527,847],[530,848],[461,3147],[464,3148],525,[525,3090],[532,3091],[1286,3092],1286,1286,[1286,3339],3340,[596,3341],[527,3015],[528,3016],[526,3724],[525,3725],[462,3346],3406,3407,[595,3341],[532,3342],[464,3343],[527,3346],3406,3407,3079,3080,3410,[1286,3411],1286,1286,2246,1286,1286,1286,1286,1286,1286,1286,1286,[1286,7],8,9,[1286,10],1286,[1286,3469],[1286,3470],[1286,3471],[1286,3474],1286,1286,1286,1286,1286,1286,1286,1286,1286,1414,1286,1286,[1286,3147],[525,3148],526,462,[595,974],[530,975],462,531,[1735,400],1734,[1799,333],463,659,660,594,[461,3155],[1799,3156],1799,1735,[15,1736],15,143,144,79,16,[16,2001],[15,2002],[16,2003],[16,2004],[79,1669],[15,1862],[80,1863],1734,1799,1799,1799,1799,[1735,338],1735,[79,1670],[15,1669],1798,1799,1799,[1734,3211],[1734,3212],[1799,1938],[1734,1939],1799,1734,1799,[1798,2638],[744,2639],[744,2640],744,744,744,744,744,744,744,744,744,744,[1735,2511],1734,1798,1799,1734,1798,1734,1734,1798,1735,1735,[1735,1938],[1735,1939],[1746,1736],1745,[1808,1164],[1810,1165],1808,[1808,1604,3090],[1735,3091],[1734,3092],1798,1798,[1745,1606],1747,1744,1746,[1744,1100],[1744,1101],1810,1744,1744,1809,1808,1810,1747,1808,[1810,3282,156],[3283,92],[423,93],420,[3777,548],[3777,358],[3777,292],485,423,420,[3777,549],[3777,550],[3777,359],3777,[3777,355],423,487,422,486,[3777,424],3777,3777,597,3777,3777,3777,[3777,292],485,423,423,422,487,[3777,424],3777,3777,[3777,291],423,423,423,422,423,423,420,[3777,552],3777,661,3777,[3777,419],486,422,422,423,[3777,296],3777,[3777,292],[485,149],[1569,150],[1633,88,1574],[1635,91,1575],[1569,92,1576],[423,93],487,487,[3777,296],3777,3777,[3777,292],485,422,487,484,[3777,228],[3777,294],3777,3777,[3777,227],485,487,487,422,484,[3777,294],[3777,547],421,484,[3777,228],485,487,422,422,486,484,[3777,229],[3777,230],[3777,231],485,422,487,[3777,488],3777,3777,[3777,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[4483,3042],[4484,3043],[4487,3044],4488,0,0,0,0,0,0,0,0,0,0,4546,[4882,4547],[4946,4548],[4947,4552],4484,4487,[4353,4884,4610],[4353,4816,4611],[4353,5008],4881,4947,4946,4883,4947,4883,4946,4882,4882,[4353,4756],4353,[4353,4816],4881,4947,4946,4947,4883,4947,[4353,4884],5121,[4353,4816],4881,4882,4882,4882,4946,4883,4882,4946,4946,4882,4883,4946,4882,4946,4882,[4353,4756],4353,4353,[4353,4816],4881,4882,4880,[4353,5009,4808],[4882,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,526,463,527,461,[525,909],[528,910],[526,911],[464,912],[527,3155],[461,3156],595,532,[525,105],106,107,108,109,110,[532,111],594,594,[530,974],[461,975],595,463,526,[525,3282],[463,3346],3347,[1804,399,3732],[1739,398],[1741,399],1741,[1739,3020],[1740,3021],[1740,334,3022],[1739,269,3025],[1739,269,3085],532,463,527,464,461,596,532,[595,3155],[595,3156],[526,16761],594,525,527,[464,909],[527,910],[531,911],[530,912],[526,3211],[594,3212],531,532,[595,3155],[1286,3156],1286,1286,1286,[1286,3404],3405,3079,3080,3788,3789,3410,[1286,3470],[1286,3471],3405,3406,3407,3410,[1286,3470],[1286,3471],[1286,3143],[1286,3144],[1286,3474],1286,1286,1286,1286,1286,1286,[1286,653],[1286,2957,654],[1286,2958,655],[1286,2962,656],1286,2376,[1286,7],8,9,[1286,10],1286,1286,1286,1286,1286,1286,2123,2124,1286,1286,1286,1286,1286,[1286,653],[1286,654],[1286,655],[1286,3020,656],[527,3021],[526,3085,16697],595,462,462,596,596,[1734,529],1734,[1799,334,653],[530,654],[461,655],[723,656],724,595,[528,3219],[1799,3220],1798,1734,[15,1800],16,207,208,16,[80,1605],[80,1541,2065],[15,1542,2066],[79,1543,2067],[15,1544,2068],16,15,79,[79,1795],1734,1735,1734,1735,1799,[16,1671],15,80,[80,1603],1734,[1798,3020],[1734,3021],[1799,3085,2001],[1734,2002],[1734,2003],[1799,2004],1734,1735,[1799,2702],[1734,808,2703],[1734,3155,808,2704],[1286,3156,808],[1286,808],[1286,808],[1286,808],[2310,808],[1286,808],[1286,808],[1286,3083,808],[1808,3084,808],[1809,1667,3085,808,2574],[1735,2575],[1798,2576],1798,1799,1799,1799,1735,1799,1799,1798,[1734,2001],[1734,2002],[1734,2003],[1799,2004],[1808,1544],1747,1745,[1811,1539],1798,[1798,3219],[1734,3220],1734,1799,[1811,1864],1809,1808,1744,[1744,1164],[1747,1165],1809,1810,1808,1744,1811,1747,1811,[1745,3282],[1747,3346],[3347,156],[3411,157],[484,27],[3777,24],[3777,28],[3777,483],420,[3777,548],[3777,358],3777,3777,3777,3777,[3777,419],422,422,422,487,484,[3777,232],3777,3777,3777,3777,[3777,227],485,486,422,420,[3777,548],421,[3777,488],3777,3777,[3777,419],487,487,423,486,423,420,[3777,359],3777,3777,3777,[3777,292],485,422,423,487,423,[3777,360],3777,[3777,547],[548,213],[1571,214],[1572,1638],[1633,1639],[1635,156,1640],[1570,157],[423,24],[487,27],[3777,360,24],[3777,28],[3777,292],485,487,486,420,421,487,484,[3777,295],3777,[3777,547],421,422,487,487,486,[3777,296],3777,[3777,357],421,486,487,423,420,[3777,548],[3777,549],[3777,550],[3777,551],421,422,420,[3777,550],[3777,551],[3777,358],[3777,293],[3777,228],[229,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[4946,4547,3106],[4883,4548,3107],[4947,4551,3108],[4883,4552],4553,0,0,0,0,0,0,0,0,4609,[4946,4610],[4882,4611],4882,[4946,4616],[4882,4548],[4947,4551],[4353,4948,4611],4353,4353,[4353,4816],4881,4946,4947,4882,4882,4882,4946,4946,[4353,4820],4353,4353,[4353,4943],4883,4947,4883,4883,4882,4944,[4353,4754],4353,[4353,4943],4947,4946,4883,4946,4882,4883,4946,4882,4880,[4353,5008],4881,4946,4946,4882,[4353,4820],4353,4353,4353,[4353,5007],[4353,5008],[4353,4818],[4353,4745],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,463,461,526,464,527,[527,974],[463,975],463,[464,3219],[525,3220],[596,1525],[463,1526],[531,169,1527],170,171,172,173,174,[596,175],595,596,464,462,461,461,461,[596,3155],3410,[1803,593,3732],1739,1805,1803,[1739,3083],[1739,333,3084],[1739,269,3085],525,595,596,463,525,463,461,[531,16830],596,527,[594,3219],[596,3220],594,[527,338],596,526,527,[464,974],[461,975],[530,3083],[527,3084],[530,3085],461,530,[530,3219],[1286,3220,1525],[1286,1526],[1286,1527],1286,1286,[1286,3469],[1286,3143],[1286,3144],[1286,3852],[1286,3853],[1286,3474],1286,1286,[1286,3469],[1286,3470],[1286,3471],[1286,3474],1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,[1286,3020,717],[594,3021,718],[464,3022,2082,719],[530,3026,720],[1286,3027],1286,[1286,7],8,9,[1286,10],1286,1286,1286,1286,2246,1286,2187,2188,1286,1286,[1286,2957],[1286,2958],[1286,2962],[1286,717],[1286,718],[1286,3020,719],[461,3084,720],[596,3085],[528,16761],595,527,527,463,596,532,[1798,269],[1799,531,717],[464,718],[532,719],[594,720],464,[594,3282],[527,3283],[1735,3284],1735,1735,1735,[79,1607],79,15,[15,1604],1798,[1798,2129],[1798,2130],[1799,2131],[1798,2132],[15,1606],141,142,[15,1669],[79,1860],[80,1862],1799,1734,[15,1800],79,16,15,[80,1667],[1734,3083],[1735,3084],[1798,3085],[1734,2065],[1798,2066],[1735,2067],[1734,2068],1735,1798,[1735,2766],[1735,2767],[1734,3090,2768],[1745,1800,3091],[1811,1993,3092],[1746,1994],[1808,1479],[1809,1480],[1810,1481],[1745,1482],[1746,1483,3147],[1811,3148],[1808,1731,2638],[1735,2639],[1734,2640],1734,1735,1735,1798,1799,1734,1735,1799,[1734,2065],[1799,2066],[1799,2067],[1799,2068],[1808,1800],1744,1811,[1746,1668],[1746,1860,3282],[1809,1861,3283],[1745,1862,3284],[1808,1863],[1746,1864],1811,1808,1744,1808,1808,1811,1747,1747,[1747,1938],[1808,1605,1939],[1744,1540],[1811,1541],[1744,1542],[1810,1543,3155],3410,3411,156,91,88,92,[3777,483,93],[3777,488],3777,3777,[3777,293],[3777,232],661,3777,[3777,547],421,487,486,486,420,[3777,552],3777,3777,3777,3777,[3777,483],487,487,486,[3777,296],3777,[3777,547],[3777,552],3777,3777,[3777,547],421,422,486,486,423,[3777,296],3777,3777,[3777,227],[3777,228],485,423,422,423,423,486,[3777,424],3777,[3777,149],[1571,150],[1571,151],[1572,1702],[1569,1703],1636,[1635,156],[1634,91],[1571,88],[1634,91],[1570,92],[485,93],423,423,420,[3777,552],[3777,357],421,487,[3777,488],3777,3777,[3777,291],423,422,486,422,[3777,360],3777,3777,[3777,291],420,[3777,548],421,484,[3777,294],3777,3777,3777,[3777,357],[421,23],[358,24],[3777,27],[3777,28],3777,[3777,483],423,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4483,4484,4487,4484,4487,4488,0,4483,4484,4487,4484,4487,4484,4487,4484,4487,4488,0,0,0,0,0,0,0,0,4609,[4946,4610],[4947,4611,3170],[4882,3171],[4883,3172],[4947,4616],[4882,4617],4484,4488,0,0,0,0,0,0,4673,[4946,4674],4946,4947,4947,4883,4883,4944,[4353,4692],4353,5121,[4353,4943],4883,4882,4946,4882,4946,4947,4946,[4353,4884],5057,[4353,4752],4945,4882,4882,4883,4946,4882,4882,[4353,4948],4353,[4353,5007],4881,4882,4946,4883,4882,4946,4946,4883,[4353,4756],4353,[4353,4816],4881,4947,4946,[4353,4884],4353,4353,4353,4353,4353,4353,[4353,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,525,463,527,526,526,464,528,463,[525,3155],[463,3156],[462,1589],[532,1590],[594,233,1591],[595,234,1592],235,236,237,238,[526,239],530,528,594,526,596,461,464,[527,3155],[1803,400,3156],[1741,334],[1739,269],[1805,270],[1741,271],[1803,272,3147],[528,3148],530,595,525,526,464,528,1926,596,[525,16894],[527,16895],[463,3282],[525,3283],[530,3284],531,463,527,463,596,594,531,[594,3147],[462,3148],[531,404],461,530,[594,3090],[462,3091,1589],[1286,2962,1590],[1286,1591],[1286,1592],1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,[1286,3083],[464,3084,781],[595,3085,2145,782],[463,2146,783],[526,3090,2147,784],[461,3091],[1286,2958],[1286,2961,7],8,9,[1286,2958,10],[1286,2961,1525],[1286,2962,1526],[1286,1527],1286,1286,1286,1286,1286,1286,[1286,3020],[531,3021],[461,3022],[463,3026],[1286,2961,781],[1286,2958,782],[464,3084,783],[462,3085,784],462,464,531,463,528,532,787,788,532,[461,781],[594,782],[462,783],[528,784],[463,3282],[594,3346],3347,[1799,3348],1734,1799,1734,[79,1608],79,79,[15,1859],[16,1862],[80,1863,2193],[1798,2194],[1735,2195],[1735,2196],[15,1670],205,206,16,16,16,[16,1795],1735,[79,1864],80,15,16,[80,1731],[1798,3211],[1735,3212],1734,[1734,2129],[1734,2130],[1798,2131],[1799,2132],1735,1734,1734,[1735,2831],1735,[1798,3155],[1810,1544,3156],1746,1810,1745,1747,1746,[1811,3211],[1747,3212],[1810,1795,2702],[1735,2703],[1798,2704],1798,1734,1734,1735,1799,1798,1735,1799,[1798,2129],[1799,2130],[1798,2131],[1799,2132],1734,[1811,1606],1810,[1811,3282],[1746,3346],3347,[1811,3348],1746,1744,1744,1811,1744,1746,1745,[1811,1604],[1810,1541],[1811,1542,2001],[1810,1543,2002],[1798,2003],[1734,2004],1798,1798,[1799,3219],3156,0,0,0,0,156,157,[3777,358,158],[3777,292],[3777,228],485,484,[3777,294],3777,3777,[3777,291],422,422,420,[3777,359],3777,3777,[3777,227],[3777,294],[3777,292],485,423,487,487,[3777,360],3777,3777,3777,3777,3777,3777,[3777,483],423,423,423,486,[3777,360],[3777,23],[3777,24],[291,27],[486,28],486,422,423,487,487,420,[3777,552],3777,[3777,213],[1570,214],1635,1571,1570,1636,1570,1635,1571,1572,[1572,221],[423,222],422,423,[3777,296],3777,3777,[3777,483],422,484,[3777,295],[3777,23],[3777,355,24],[487,27],[487,28],487,422,[3777,424],3777,3777,[3777,355],[3777,296],3777,[3777,483],422,484,[3777,229],[3777,231],[3777,295],[3777,86],87,88,91,92,[3777,293,93],485,[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4483,4484,4488,0,0,4546,[4882,4547],[4946,4548],[4882,4551],[4947,4548],[4883,4551],[4883,4552],[4484,2979],[4882,4547],[4947,4548],[4882,4551],[4947,4548],[4882,4551],[4947,4548],[4882,4551],[4946,4548],[4946,4551],[4883,4552],4553,0,0,0,0,0,0,0,4737,[4946,4738],[4882,3234],[4882,3235],[4882,3236],4882,[4882,4616],[4882,4548],[4882,4552],4553,0,0,0,0,4546,[4946,4547],[4883,4611],4883,4883,4882,4883,4882,4947,[4353,4948],4353,4353,[4353,4816],[4353,5008],4881,4947,4882,4946,4947,4883,4944,[4353,4688],4945,4882,4882,4947,4947,4946,4946,4947,[4353,4948],4353,4353,[4353,4816],4881,4883,4946,4883,4947,4883,4947,[4353,4884],4353,4353,[4353,5007],4881,4883,[4353,4948],4353,5121,4353,4353,4353,4353,[4353,4616],[4353,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[527,653],[527,654],[527,655],[464,656],462,526,525,525,462,[464,3219],[596,3220],[461,1653],[463,1654],[532,1655],[527,1656],[1739,400,299],1804,[1740,396,301],596,594,526,526,596,596,[1803,589],[1804,590],[1741,591],[1741,399,3219],[1741,3220],[1803,397],462,[525,16697],464,[531,3211],[526,3212],594,[462,2385],[528,2386],[527,2387],526,531,530,[526,3282],[525,3344],[528,3345],[528,3346],3347,[594,3348],525,461,463,530,595,596,594,[463,3211],[596,3212],527,594,464,464,[463,3090,1653],[531,3026,1654],[1286,2961,1655],[1286,2962,1656],1286,1286,2376,1286,1286,1286,1286,1286,2246,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,[1286,1525],[1286,1526],[2310,1527],1286,[1286,3147],[596,3148,845],[527,846],[527,847],[595,848],[532,3090],[596,3022],[594,3025,7],8,9,[596,3022,10],[595,3025,1589],[464,3026,1590],[1286,3027,1591],[1286,1592],1286,1286,[1286,3020],[1286,2958],[1286,2961],[462,3084],[463,3085],532,[462,3090],[532,3025,845],[530,3022,846],[526,3085,847],[527,848],594,532,464,531,468,595,851,852,462,[525,845],[463,846],[530,847],[531,848],[531,3155],3410,[1799,3411],1798,1734,1799,1799,[15,1736],15,16,15,16,16,[79,1603,2258],[1735,2259],[16,1608],79,15,80,15,15,79,[80,1669],[15,1671],15,79,[79,1539],[79,1540],1799,[1735,3275],[1798,3276],[1799,3277],[1798,2193],[1735,2194],[1735,2195],[1798,2196],1799,1734,1734,1735,1735,[1734,3219],[1747,1671,3220],1810,[1808,1036],[1808,1037],1810,1747,[1809,3275],[1810,1539,3276],[1798,3277,2766],[1734,2767],[1734,2768],1734,1735,1799,1799,1799,1734,1734,1734,[1735,2193],[1734,2194],[1735,2195],[1734,2196],1799,1798,[1745,1541],[1811,1542,3219],3410,[1746,3411],1747,1811,1745,1746,1746,1747,1744,1810,[1745,1795],1798,[1735,2065],[1734,2066],[1734,2067],[1799,2068],1734,1735,[1799,3219],3220,0,0,0,0,0,221,[484,222],485,486,423,423,[3777,296],3777,3777,[3777,355],487,422,[3777,296],3777,3777,3777,[3777,483],484,485,486,486,487,[423,23],[3777,424,24],[3777,28],[3777,293],[3777,229],[3777,230],[3777,294],[3777,292],485,487,486,487,487,[3777,424,86],87,88,91,92,[423,93],422,487,423,420,[3777,359],3777,3777,[3777,277],[1570,278],1570,1634,1634,1572,1571,[1635,348],[1636,410],[1569,411],[1634,349],[420,350],421,486,[3777,424],3777,3777,[3777,547],[3777,550],421,[484,86],87,88,91,92,[423,27],[487,24],[484,28],[3777,295],3777,[3777,419],[3777,360],3777,[3777,357],421,422,423,423,[484,149],150,151,0,0,156,157,[486,27],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[4946,4547],[4946,4548],[4947,4552],4484,4487,[4947,4610],[4946,4611],4946,4946,4883,4883,[4882,4616,3042],[4947,4548,3043],[4946,4611,3044],4947,4882,4882,4947,4883,4947,4947,4947,[4882,4616],[4946,4617],4487,4488,0,0,0,0,4546,[4353,4547],[4353,4751,4611],4946,[4883,3299],4946,4946,4947,4883,[4947,4616],[4946,4617],4484,4487,4484,4487,[4882,4610],[4882,4611],4947,4946,4882,4883,4883,4883,4946,4944,[4353,4755],4353,4353,4353,[4353,5007],4881,4883,4947,4947,4946,4946,4883,4947,4947,4882,4882,4946,4947,4947,4882,4944,[4353,4754],4353,4353,[4353,5007],4881,4882,4882,4947,4883,4946,4944,[4353,4692],4353,4353,[4353,4817],[4353,5011],[4353,5012],4353,4353,4353,[4353,4752],[4353,4692],4353,4353,[4353,4616],[4353,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[528,717],[463,718],[527,719],[464,720],462,527,461,462,[463,3282],[461,3283],[464,3284],[596,1717],[596,1718],[462,1719],[1803,337,1720],1739,1428,[1741,460],530,463,463,528,530,[1804,593],1805,1804,1804,[1804,3090],[1428,3026],[1740,3027],[1741,524],[528,16761],[525,3020],[531,3021],[595,3085],463,[596,2449],2450,[463,2451],461,461,[594,3282],[596,3283],3408,3409,3410,[596,3411],532,527,461,594,530,461,525,[596,3083],[461,3084],[528,3085],464,462,596,461,[464,1717],[596,3090,1718],[528,3025,1719],[527,3026,1720],[1286,3027],1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,[1286,2957],[1286,2961],[1286,2958],[1286,2961],[1286,3027],[1286,1589],[1286,1590],[1286,1591],[1286,3020,1592],[532,3021],[531,3085,909],[527,910],[526,911],[532,912],463,530,462,526,596,596,[527,1653],[462,3090,1654],[463,3091,1655],[1286,2958,1656],[1286,2961],[1286,2958],[461,3084],[595,3022,16830],[527,3025],[528,3085],785,786,595,[461,909],[462,910],[463,911],[595,912],594,596,525,528,461,525,464,528,528,[531,909],[525,910],[464,911],[532,912],[530,3219],[1734,3220],1735,1798,1735,1798,[80,1863],[79,1671],15,79,79,79,80,[15,1667],1799,[79,1672],80,79,80,[16,1604],[79,1544],16,15,80,[143,1036],[144,1037],[16,1603],1798,1798,[1735,3339],3340,[1798,3341],[1799,3277],[1735,2258],[1798,2259],1734,1734,1735,1734,1799,[1735,3282],[1799,3283],[1746,1606,3284],1745,[1809,1100],[1744,1101],1811,1811,[1746,3339],3340,[1799,3341],[1734,3277,2831],1798,1734,1735,1799,1798,1798,1799,1735,1798,1734,[1735,2258],[1799,2259],1799,1799,1735,[1798,3282],[1735,3283],[1734,3284],[1810,1541],[1745,1542],[1745,1543],[1744,1606],1745,1808,1809,1811,[1811,1604],1735,1798,[1734,2129],[1734,2130],[1735,2131],[1734,2132],1735,[1799,3282],[1799,3283],3284,0,0,0,0,0,285,[486,286],422,423,486,422,[3777,424,22],[3777,23],[3777,24],[3777,419,28],423,422,[3777,424],3777,3777,3777,[3777,547],421,487,422,486,[423,23],87,88,92,[485,93],423,486,484,485,486,487,486,423,[423,149],150,151,0,0,156,157,[423,27],[422,24],[420,28],[3777,358],3777,[3777,227],[3777,228],[229,341],[1572,342],[1572,343],1571,1635,1634,[1572,348],[1570,412],474,475,413,[3777,414],[3777,356],421,484,[3777,295],3777,3777,3777,[3777,357,149],150,151,0,0,156,91,88,92,[3777,552,93],3777,[3777,483],[3777,424],3777,3777,[3777,483],487,486,487,[423,213],214,0,0,0,0,156,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4609,[4946,4610],[4883,4611],4882,[4946,4616],[4882,4548],[4883,4551],[4947,4611],4946,4947,4947,4946,4882,[4947,3106],[4947,3107],[4882,3108],4947,4883,4947,4947,4883,4947,4947,4947,4947,[4946,4616],[4947,4551],[4946,4552],4553,4483,4484,4487,[4353,4610],[4353,4611],[4353,4815],4946,4947,4946,4882,4947,4883,4947,[4947,4616],[4946,4548],[4946,4551],[4946,4548],[4883,4551],[4947,4611],4946,4883,4946,4946,4946,4883,4883,4883,4882,4944,[4353,4688],[4353,4754],4353,4353,[4353,4817],[4353,5008],4881,4946,4883,4947,4883,4883,4883,4882,4882,4947,4883,4882,4946,4947,4944,[4353,4692],4353,4353,[4353,4943],4947,4883,4882,4946,4947,4882,4944,[4353,4754],4353,4353,4353,4353,4353,4353,4353,[4353,4943],[4353,4948],4353,4353,[4353,4753],[4353,4688,4616],[4947,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[462,781],[528,782],[527,783],[525,784],464,464,528,[464,3282],[464,3346],3347,[530,3348],[532,1781],[596,1782],[463,1783],[1741,401,1784],1491,[1804,333],461,531,[462,16830],527,[1803,590],[1803,400],1491,1804,1741,[1804,333],[1741,270],[1804,271,3090],[1741,272,3091],[463,2958,653],[595,2961,654],[463,3084,655],[530,3085,656],530,596,[531,2513],2514,[531,2515],527,[596,3282],[595,3346],3347,[461,3472,1525],[532,3473,1526],[464,3474,1527],527,463,785,786,532,530,527,461,[532,3147],[461,3148],[527,16697],530,532,[461,3207],528,[595,1781],[461,1782],[595,1783],[526,3090,1784],[528,3091],[1286,3027],1286,1286,1286,1286,[1286,2957],[1286,2958],[1286,3027],1286,1286,[1286,653],[1286,654],[1286,3020,655],[531,3021,656],[461,3025],[596,3022],[528,3025],[527,3091],[1286,2958,1653],[1286,2961,1654],[1286,2958,1655],[525,3084,1656],[527,3085],527,[532,974],[530,975],463,463,532,596,527,464,596,[467,1717],[530,1718],[596,3090,1719],[527,3022,1720],[525,3025],[525,3022],[595,3085],[525,16894],[462,16895],530,849,850,596,531,[530,974],[531,975],526,528,595,532,594,528,527,461,531,525,530,[526,974],[594,975],[595,3282],[461,3283],[1735,3284],1798,1734,1799,[80,1608],79,79,80,[11,1036],[12,1037],80,80,[80,1731],1734,[15,1736],80,16,[15,1539,1938],[1735,1939],[16,1800],80,16,15,[207,1100],[208,1101],[15,1731],1734,1734,1798,[1735,3404],3405,[1734,3212],1734,1798,1799,1734,[1735,3282],[1798,3536],[1735,3537],[1735,3346],3347,[1745,1800,3348],1809,[1745,1164],[1808,1165],1809,1808,1808,[1744,3404],3405,[1735,3341],[1734,3344],[1735,3345],[1799,3342],[1734,3343],[1734,3277],1734,1798,[1799,3282],[1734,3342],[1799,3343],[1799,3277],1735,1798,1798,[1734,3282],[1735,3346],3347,[1798,3348],1735,1798,1734,1735,[1747,1540],[1744,1606],[1744,1605],[1744,1540,1938],[1798,1939],1799,1734,[1799,2193],[1799,2194],[1799,2195],[1798,2196],[1734,3282],[1798,3346],3347,3348,0,0,0,0,0,156,92,[423,93],423,486,487,[484,86],87,88,92,[3777,550,93],[3777,551],[3777,552],3777,3777,3777,3777,[3777,483],422,422,[487,86],87,151,0,156,157,[487,24],[487,27],[487,24],[423,27],[422,28],487,486,422,[423,213],214,0,0,0,0,156,91,88,92,[3777,93],3777,[3777,483],486,[487,405],406,[1633,407],[1570,408,3890],[1634,409,31],[1633,410],[1636,349],476,[487,538],[487,539],[3777,296,477],3777,3777,[3777,291],486,484,[3777,228],[3777,231],[3777,295],[3777,213],214,0,0,0,0,0,0,156,157,[3777,292,158],485,484,[3777,232],3777,[3777,356],421,422,423,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3812,3813,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3810,3811,3812,3813,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[4947,4674],4946,4883,4947,4946,4946,4883,4947,4883,4883,4947,4882,[4947,3170],[4882,3171],[4883,3172],4946,4883,4947,4947,4946,4882,4946,4883,4883,4883,4882,[4946,4616],[4946,4617,4546],[4883,4547],[4946,4548],[4883,4551],[4353,4692,4611],4353,[4353,4879],4946,4946,4882,4882,4882,4882,4946,4947,4946,4946,4946,4947,4947,4883,4947,4946,4882,4882,4946,4882,4882,4946,4947,4882,4944,[4353,4688],[4353,4692],4353,4353,[4353,4751],4883,4882,4946,4946,4882,4947,4880,[4353,5008],4881,4946,4947,4947,4946,4883,[4353,4948],4353,[4353,4753],4945,4946,4883,4882,4882,4883,4883,4947,4944,[4353,4688],[4353,4754],4353,4353,4353,4353,[4353,4752],4945,4944,[4353,4689],[4353,4690],4945,4947,[4882,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[464,845],[461,846],[462,847],[463,848],462,525,462,[463,3155],3410,[596,3411],463,[526,1845],[462,1846],[527,1847],[1740,465,1848],1803,[1741,524],530,526,[596,16894],[1805,529,16895],1805,[1739,653],[1741,654],[1804,268,655],[1739,269,656],531,595,528,[530,3090],[464,3022,717],[595,3025,718],[525,3085,719],[463,720],464,530,[532,2577],[463,2578],[531,2579],595,[528,3155],3410,[463,3411],[526,1589],[527,1590],[532,1591],[461,1592],461,849,850,462,[461,653],[531,654],[466,655],[527,3211,656],[530,3212],[463,16761],462,[464,3282],[528,3271],464,[526,1845],[532,1846],[464,1847],[527,1848],[594,3090],[463,3091],[1286,2958],[1286,2961],[1286,2958],[1286,2961],[531,3021],[595,3022],[594,3091],[1286,2961],[1286,2958],[1286,2961,717],[1286,2958,718],[462,3084,719],[526,3085,720],530,785,786,[462,3090],[463,3022,1717],[530,3025,1718],[595,3022,1719],[594,3085,1720],464,[464,16830],525,595,526,462,532,467,527,528,527,[532,1781],[596,1782],[595,1783],[531,1784],462,595,594,594,526,530,461,528,527,462,462,531,595,[528,653],[531,654],[527,655],[463,656],531,532,462,463,467,[525,1938],[462,1939],[528,3282],[531,3346],3347,[1799,3348],1735,1799,1734,[15,1672],16,15,15,[75,1100],[76,1101],80,[15,1604],1734,1734,1798,[79,1606],[16,1605,2001],[1735,2002],[1799,2003],[1735,2004],[16,1540],[80,1606],15,[80,1164],[16,1165],[16,1795],1799,[1799,1938],[1798,1939],1798,[1734,3275],[1799,3341],[1798,3534],[1798,3535],[1799,3536],[1799,3537],[1798,3346],3600,3601,3410,[1798,3411],1799,[1744,1606],1811,1745,1810,1809,1747,1809,[1810,1859,3469],3405,3408,3409,3406,3407,[1799,3341],[1734,3344],[1798,3345],[1734,3346],3406,3407,[1734,3276],[1798,3277],1734,1798,[1735,3219],3410,[1734,3411],1734,[1799,1938],[1734,1939],1798,1735,1734,1799,[1798,2001],[1735,2002],[1798,2003],[1799,2004],1798,1798,[1799,2258],[1734,2259],1734,[1798,3155],3410,3411,0,0,0,0,0,0,0,156,157,[423,27],[486,24],[486,27],150,151,0,156,157,[3777,158],3777,[3777,227],[3777,229],[3777,231],[3777,232],[3777,356],[3777,550],[3777,551,149],150,151,0,0,0,156,88,91,88,91,92,[423,93],487,486,[423,277],278,0,0,0,0,0,0,0,156,157,[3777,293,158],485,422,420,[3777,359,470],471,3954,95,280,413,[487,540],486,486,[3777,360,23],[3777,24],[3777,27],[3777,355,28],487,422,422,422,484,[485,277],278,0,0,0,0,0,0,0,221,[422,222],487,487,484,[3777,294],3777,[3777,483],422,[422,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3812,3813,3812,3813,3810,3811,3812,3813,3814,3876,3877,3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3812,3813,3745,0,0,0,0,0,0,0,0,0,3750,3751,3874,3875,3876,3877,3809,3810,3811,3745,0,0,0,0,3750,3810,3811,3745,0,4546,[4946,4547],[4947,4611],4882,4882,4947,4947,4947,4947,4883,4882,4946,4946,4946,[4882,3234],[4947,3235],[4946,3236],4882,4883,[4882,4483],[4947,4484],[4883,4487],[4946,4488],4882,4946,4947,4883,[4947,4483],[4883,4484],[4882,4610],[4883,4611],4947,4883,[4353,4756],4353,[4353,4817],4881,4882,4883,4883,4946,4883,4946,4946,4946,4883,4947,4883,4947,4947,4882,4882,4946,4883,4946,4947,4882,4882,4883,4946,4882,4946,4944,[4353,4754],4353,[4353,4879],4883,4882,4946,4883,4883,4880,[4353,5012],4353,[4353,4751],4882,4883,4882,4947,4946,4944,[4353,4688],4945,4882,4882,4883,4947,4882,4883,4883,4883,4947,4883,4944,[4353,4688],[4353,4689],[4353,4690],[4353,4691],4945,4882,4882,4882,4946,4946,4947,[4882,4616],[4882,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[525,909],[464,910],[528,911],[464,912],528,528,525,[461,3155],[528,3156],596,527,594,461,461,[1804,529],1739,[1740,588],[1740,590],[1805,591],[1740,592],[1739,593],1740,[1491,717],[1805,718],[1741,524,719],[527,720],527,527,595,530,[528,781],[526,782],[596,783],[525,784],531,531,[532,3208],532,461,531,[528,3155],[525,3156],530,[532,1653],[531,1654],[525,1655],[530,1656],526,594,528,530,[527,717],[528,718],[532,719],[531,3275,720],[596,3276],[528,3344],[594,3345],[463,3346],[532,3335],463,527,528,532,461,[596,16830],[525,3090],[464,3022],[594,3025],[464,3022,653],[594,3025,654],[526,3085,655],[527,656],[530,3090],[531,3025],[532,3022],[532,3025,781],[595,3022,782],[462,3085,783],[596,784],532,849,850,464,[595,1781],[528,1782],[594,1783],[527,1784],532,[594,16894],[526,16895],463,530,527,528,464,596,595,464,[532,1845],[596,1846],[532,1847],[595,1848],531,463,525,464,526,[596,653],[530,654],[525,655],[525,656],532,526,463,595,[464,717],[595,718],[525,719],[532,720],462,532,530,525,[596,2001],[528,2002],[461,2003],[531,3155,2004],3410,[1735,3411],1798,1734,[1735,1921],[1799,1922],[80,1736,1923],15,[15,1605],[15,1606],[16,1164],[16,1165],15,[79,1795],1735,1734,1735,1798,[1798,2065],[1735,2066],[1799,2067],[1735,2068],1798,1798,[16,1541],[80,1542],[79,1543],1734,[1798,2001],[1735,2002],[1798,2003],[1799,2004],[1799,3339],3405,3598,3599,3600,3601,3410,[1734,3664],[1798,3665,1938],[1734,3474,1939],1734,1799,1734,[1810,1541],[1811,1542],[1745,1543],[1810,1544],1809,1746,1746,[1810,3469],[1808,1795,3472],[1735,3473],[1735,3470],[1735,3471],3405,3408,[3409,1036],[3410,1037],[1810,1861,3470],[1809,1862,3471],3340,[1799,3341],[1799,3342],[1798,3343],[1799,3283],[1734,3284],1799,[1798,2001],[1735,2002],[1798,2003],[1735,2004],1735,1798,1735,[1734,2065],[1734,2066],[1799,2067],[1799,2068],1735,1734,1734,1734,1735,[1734,221],222,0,0,0,0,0,0,0,0,0,156,91,88,91,151,0,0,0,221,[3777,222],[3777,292],485,422,420,[3777,359],3777,3777,[3777,213],214,0,0,0,0,0,0,0,0,0,156,157,[422,27],[486,24],150,151,0,0,0,0,0,0,0,0,221,[486,222],423,487,[3777,488],3777,[3777,535],[3777,291,536,4018],[3777,424,537,159],[3777,538],[3777,357,477],[3777,549],[3777,550],[421,86],87,88,91,92,[423,93],486,422,486,[423,86],87,151,0,0,0,0,0,0,0,285,[487,286],423,423,423,[3777,488],[3777,23],[483,24],[423,27],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3751,3876,3877,3876,3877,3874,3875,3876,3877,[3878,5906],[3699,3940,5907],[3635,3941,5908],3808,3809,3810,3811,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3810,3811,3745,0,0,0,0,0,0,0,0,0,0,3750,[3751,5906],[3876,5907],[3877,5908],3809,3745,0,0,0,0,0,0,0,3750,3814,3815,[3700,3938],[3637,3939],[3635,3940],[3700,3941],3873,3874,3875,3809,3810,3811,3812,3813,3814,3874,3875,3809,[4546,3745],[4882,4610],[4882,4611],4947,4883,4947,[4883,2979],4882,4947,4882,4882,4883,4882,4947,4947,4946,[4883,3299],4883,4947,[4946,4546],[4946,4547],[4946,4548],[4946,4551],[4882,4552],[4946,4553],4946,4947,[4947,4546],[4946,4547],[4883,4548],[4946,4611],4947,4883,4947,[4353,4884],4353,4353,[4353,5007],4881,4883,4883,4946,4882,4882,4883,4947,4947,4946,4883,4880,[4353,5008],4881,4883,4883,4947,4883,4947,4947,4883,4946,4882,4882,4883,4947,4944,[4353,4688],4945,4947,4946,4946,4883,4880,[4353,4819],5121,4353,[4353,4879],4947,4882,4947,4882,4883,4883,4947,4883,4883,4946,4947,4947,4946,4882,4883,4882,4946,4947,4882,4946,4883,4883,4946,4946,4882,4946,4883,4947,4882,4882,4882,[4947,4616],[4947,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,[526,974],[464,975],462,527,462,464,[464,3219],[530,3220],[530,16830],596,462,463,532,530,[1739,336],1741,1741,1428,1804,[1740,333],[1739,269],[1740,335,781],[1803,334,782],[526,783],[464,784],530,525,462,596,[596,845],[461,846],[525,847],[596,848],594,531,[527,3272],[462,3277],528,532,[594,3219],[528,3220],596,[530,1717],[530,1718],[525,1719],[531,1720],594,530,461,525,[595,781],[526,782],[530,783],[464,3339,784],3340,3408,3409,3410,[461,3399],526,530,526,594,464,[462,16894],[595,16895],527,595,[526,717],[594,718],[531,719],[532,720],532,[526,16830],530,[532,845],[595,846],[594,847],[527,848],463,527,525,527,[532,1845],[596,1846],[461,1847],[530,1848],532,596,461,594,464,[532,653],[463,654],[463,655],[531,656],532,463,596,464,462,532,528,528,659,660,461,[525,717],[462,718],[462,719],[594,720],532,461,466,527,[532,781],[462,782],[594,783],[596,784],595,464,461,464,[461,2065],[1799,399,2066],[1799,397,2067],[596,3219,2068],[1798,3220],1734,1799,1735,[1798,1985],1986,[1734,1987],[15,1540,1988],1799,1734,[15,1541],[16,1542],[15,1543],1734,1798,1799,1798,1734,[1799,2129],[1799,2130],[1799,2131],[1734,2132],1734,1798,1734,1798,1734,1735,[1798,2065],[1798,2066],[1735,2067],[1799,2068],1798,[1734,3469],[1798,3662],[1799,3663],[1734,3664],[1799,3665],[1798,3474],[1798,2001],[1798,2002],[1799,2003],[1798,2004],1734,1799,1735,1734,1734,[1810,1608],1745,1745,1744,1744,[1808,1668],[1811,1860],[1810,1861],[1747,1862],[1809,1863,3469],[1747,1670,3472],[1745,3473,1100],[1810,3474,1101],1808,1811,[1808,1669,3404],3405,3406,3407,3347,[1799,3348],1735,[1734,2065],[1734,2066],[1798,2067],[1799,2068],1734,1735,1734,[1798,2129],[1734,2130],[1798,2131],[1734,2132],1798,1799,1735,1798,1735,[1798,285],286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[484,286],485,423,[423,22],[484,23],[3777,24],[3777,28],3777,[3777,277],278,0,0,0,0,0,0,0,0,0,0,156,91,88,151,0,0,0,0,0,0,0,0,0,285,[422,286],487,420,[3777,552],597,3777,[3777,419],[3777,488],3777,3777,3777,[3777,149],150,151,0,0,156,157,[423,24],[486,27],[486,24],150,151,0,0,0,0,0,0,0,0,156,92,[423,93],422,423,[484,86],87,88,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3814,3815,[3635,3940,5906],[3635,3941,5907],[3636,3940,5908],[3636,3941],[3701,3938],[3635,3939],[3636,3940],[3636,3941],[3700,3942,5970],[3636,5971],[3699,5972],[3701,3872],3873,3874,3875,3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3751,[3874,5906],[3875,5907],[3744,5908],3745,0,0,0,0,0,0,0,0,3750,3814,[3815,5970],[3701,3940,5971],[3700,3941,5972],3873,3616,0,0,0,0,0,0,0,3623,3878,[3701,3879],3700,3636,3701,3637,[3699,3937],[3637,3938],[3701,3939],3873,3874,3875,3876,3877,3878,[3636,3938],[3636,3939],3873,[4882,4610,3744],[4947,4611,3745],4883,4883,4882,[4882,3042],[4883,3043],[4882,3044],4946,4882,4946,4883,4947,4883,4947,4947,4946,4946,[4946,4609],[4883,4610],[4946,4611],4946,4882,[4947,4616],[4946,4617],[4946,4484],[4883,4487],[4946,4610],[4947,4611],4883,4883,4947,4882,4883,4944,[4353,4754],4353,5057,[4353,4816],4881,4883,4883,4882,4947,4946,4946,4882,4882,4882,[4353,4756],4353,[4353,4817],4881,4883,4947,4946,4882,4946,4946,4882,4883,4882,4947,4883,4883,4883,4947,4883,4947,4946,4947,[4353,4948],4353,4353,[4353,4752],4945,4883,4883,4883,4882,4946,4883,4883,4946,4946,4883,4883,4946,4947,4882,4882,4882,4946,4947,4883,4946,4947,4882,4947,4946,4946,4946,4947,4883,4882,4947,4882,4946,[4882,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,525,463,528,526,464,464,[527,3155],[528,3156],[595,16894],[530,16895],530,528,787,788,594,[1804,269],[1804,270],[1741,271],[1741,272],594,462,[526,845],[596,846],[461,847],[596,848],526,461,532,526,[532,909],[464,910],[461,911],[526,912],464,532,[526,3336],[530,3341],[532,3342],[596,3343],[530,3283],[462,3284],594,[530,1781],[461,1782],[463,1783],[530,1784],595,596,461,527,[530,845],[594,846],[464,847],[461,848],[595,3404],[594,3472],[531,3473],[595,3474],594,463,594,594,464,595,530,526,462,525,[532,781],[532,782],[530,783],[528,784],526,[461,16894],[530,16895],[461,909],[462,910],[594,911],[595,912],527,462,595,526,595,464,526,468,594,530,528,463,526,[464,717],[526,718],[532,719],[464,720],462,530,527,531,527,531,530,531,723,724,461,[526,781],[527,782],[527,783],[525,784],463,528,462,464,[594,845],[525,846],[526,847],[525,848],594,528,527,595,[1735,337,2129],[1798,2130],[1799,2131],[1798,524,3090,2132],[595,3091],[1799,3092],1735,1798,[1799,2049],2050,[1734,2051],[1798,2052],1735,[1799,1938],[1735,1939],1735,1798,1798,1734,1799,1735,1734,[1734,2193],[1735,2194],[1798,2195],[1799,2196],1735,1735,1734,1798,1798,1734,[1735,2129],[1735,2130],[1735,2131],[1799,2132],1734,1799,1735,1735,1734,1798,1734,[1798,2065],[1734,2066],[1735,2067],[1798,2068],1734,1799,1799,1734,1735,[1811,1672],1810,1811,1745,1744,1744,1809,1747,1811,1747,1808,[1809,1164],[1809,1165],1811,1746,[1810,1605],[1799,3469],[1799,3470],[1798,3471],[1734,3411],1799,1799,[1734,2129],[1734,2130],[1734,2131],[1734,2132],1798,1799,1734,[1799,2193],[1735,2194],[1734,2195],[1799,2196],1735,1799,1734,1798,1734,[1735,156],[1798,92],93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[422,93],487,[487,86],87,88,92,[3777,24],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[422,93],[3777,296],3777,3777,[3777,293],485,484,[3777,229],[3777,230],[3777,295],[3777,213],214,0,0,0,0,156,88,91,88,151,0,0,0,0,0,0,0,0,0,0,156,157,[422,27],[422,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3814,3878,[3635,3879],[3699,5970],[3701,5971],[3635,5972],3700,3636,3324,3701,3636,[3637,6034],[3701,6035],[3637,6036],3701,[3636,3937],[3700,3938],[3699,3939],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,3750,3810,3811,3814,3815,[3699,3938,5970],[3636,3939,5971],[3808,5972],3809,3810,3811,3812,3813,3810,3811,3812,3813,3814,3878,[3700,3879,6034],[3636,6035],[3637,6036],[3700,3615],3616,0,0,0,0,0,0,0,3687,[3701,3688],3700,3701,3635,3635,3636,3699,3700,[3699,5906],[3635,3937,5907],[3699,3938,5908],[3635,3939],[3700,3940],[3635,3941],[3635,3942],3700,3637,[3701,3937],3808,[4947,3809],[4946,3745],4883,4882,[4947,3106],[4882,3107],[4883,3108],4883,4946,4883,4947,4946,4883,4883,4946,4883,4947,[4947,4737],[4946,4738],4946,4946,4882,4883,[4883,4616],[4947,4548],[4947,4551],[4883,4611],4882,4883,4883,4947,4946,4946,4883,4944,[4353,4692],4353,4353,[4353,4817],4881,4882,4947,4946,4882,4883,4883,4883,4883,[4353,4884],4353,5057,[4353,5007],[4353,5011],4881,4883,4883,4882,4947,4946,4883,4947,4947,4883,4947,4883,4883,4883,4947,4883,4880,[4353,5012],4353,[4353,4687],4945,4882,4883,4946,4946,4883,4946,4882,4883,4947,4883,4882,4882,4882,4947,4947,4947,4880,[4353,5008],4881,4883,4883,4883,4883,4883,4883,4947,4883,4880,[4353,5008],[4353,5009],[4353,5010],4881,4946,[4882,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,463,528,462,526,525,528,[528,3219],[531,3220],594,531,463,464,851,852,530,461,596,531,[531,18],[526,19],[531,20],[532,909],[530,910],[528,911],[461,912],594,527,463,464,595,[530,974],[532,975],525,461,594,[464,3400],3405,3406,3407,3347,[526,3348],461,[461,1845],[531,1846],[462,1847],[525,1848],531,461,530,464,[526,909],[461,910],[530,911],[527,912],466,532,525,595,532,464,525,595,528,532,596,[461,340],530,528,[463,845],[462,846],[526,847],[528,848],526,594,461,532,[526,974],[526,975],525,526,464,595,596,527,530,532,464,464,464,530,595,596,[531,781],[530,782],[594,783],[463,784],528,462,463,596,530,596,528,461,464,463,526,[532,845],[461,846],[531,847],[530,848],463,532,531,464,[527,909],[596,910],[596,911],[530,912],528,532,595,595,[1799,401,2193],[1798,2194],[1734,2195],[1799,332,2196],[595,3155],[1734,3156],1799,1734,[1735,2113],[1798,2114],[1735,2115],[1735,2116],[1734,2001],[1799,2002],[1734,2003],[1734,2004],1799,1798,1734,1799,1799,1734,1798,[1734,2258],[1799,2259],1799,1734,[1734,340],1735,1798,1799,1798,[1735,2193],[1735,2194],[1734,2195],[1798,2196],1734,1798,1735,1734,1799,1798,1734,[1799,2129],[1798,2130],[1734,2131],[1798,2132],1799,1799,1799,1734,1799,[1747,1736],1745,[1745,1539],[1746,1540],[1809,1541],[1808,1542],[1747,1543],[1747,1606],1810,1809,1811,[1810,1605],[1744,1541],[1811,1542],[1809,1543],1734,1735,1798,1798,1799,1798,1734,[1798,2193],[1798,2194],[1734,2195],[1735,2196],1734,1799,1799,1734,[1734,2258],[1734,2259],1798,1735,1735,1734,1735,1735,1798,[1734,156],[1798,157],158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,27],150,151,0,156,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[3777,424,27],[3777,24],[3777,28],[3777,291],423,486,486,487,484,[485,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,3878,[3699,3879],3699,[3699,6034],[3636,6035],[3700,6036],3635,3637,[3699,2217],[3700,2218],3700,[3701,6098],[3699,6099],[3636,6100],3701,3700,3635,3700,[3701,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,3750,3751,3874,3875,3878,[3635,3879],[3699,6034],[3637,6035],[3700,3872,6036],3873,3874,3875,3876,3877,3874,3875,3876,3877,3878,[3700,3942],[3637,6098],[3637,6099],[3701,6100],[3635,3679],3680,0,0,0,0,0,0,3750,3751,[3636,3752],3701,3388,3637,[3641,3764],3700,3700,3701,[3701,5970],[3637,5971],[3636,5972],3636,3637,3700,3699,3635,3636,3701,[3700,3872],3873,[4946,3616],4882,4946,[4946,3170],[4947,3171],[4947,3172],4947,4882,4946,4883,4882,4947,4883,4947,4946,[4882,4546],[4883,4547],[4883,4611],4946,4883,4883,4946,4882,4882,4882,4946,4883,4883,4882,4947,4882,4883,4947,4882,4944,[4353,4755],4353,4353,[4353,4943],4883,4946,4882,4883,4946,4883,4883,4883,4944,[4353,4754],4353,4353,4353,[4353,4817],4881,4882,4883,4882,4882,4947,4947,4946,4883,4946,4946,4947,4880,[4353,5008],[4353,5009],[4353,4818],4353,4353,[4353,4943],4946,4947,4883,4947,4882,4947,4947,4946,4883,4947,4883,4883,4946,4880,[4353,5009],[4353,5010],[4353,5011],[4353,4818],4353,[4353,4751],4882,4883,4947,4883,4883,4883,4883,4880,[4353,4818],4353,4353,4353,[4353,4817],[4353,5009,4808],[4882,4872],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,527,462,525,464,461,[527,653],[464,3090,654],[464,3026,655],[461,3027,656],531,[528,339],461,462,525,594,526,595,526,[527,82],[528,83],[596,84],596,[464,974],[463,975],526,595,461,[463,338],594,461,527,463,527,531,462,526,[530,3469],[528,3470],[528,3471],[530,3411],596,596,462,464,528,595,594,595,532,527,1990,[530,974],[526,975],528,462,531,461,595,525,462,[525,653],[596,654],[527,655],[532,656],461,531,528,596,[461,909],[464,910],[594,911],[464,912],464,530,461,596,467,526,528,464,[463,16697],462,530,595,595,596,464,531,659,660,461,532,[463,845],[527,846],[594,847],[530,848],594,531,[527,653],[464,654],[596,655],[462,656],525,532,527,462,528,[461,909],[530,910],[461,911],[594,912],528,594,594,463,461,[532,974],[464,975],463,527,463,530,527,[1735,465],[1735,2258],[1798,2259],[1799,396],[595,3219],[1734,3220],1798,1798,1799,1798,1799,1734,[1735,2065],[1735,2066],[1799,2067],[1799,2068],1735,[1799,1665],[1799,1666],[1798,1793],[1734,1794],[1799,1665],[1735,1666],[1735,1665],[1734,1666],1798,1799,1734,1735,1735,1734,1734,1799,[1735,2258],[1734,2259],1799,1798,1734,1799,1735,1734,1735,1735,[1734,2193],[1798,2194],[1734,2195],[1734,2196],1799,[1798,2497],1798,[1735,2499],[1735,2500],[1744,1800],1746,[1747,1795],1735,1734,1798,1799,1798,[1745,1541],[1808,1542,2511],[1809,1543],1798,1735,1799,1735,1734,1798,1735,1734,1735,1798,1799,1734,[1734,2258],[1799,2259],1798,[1798,348],[1734,408],[1798,409],[1735,343],1734,1798,1798,1734,1734,1798,1799,1799,1798,1799,[1735,221],222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,92,[3777,355,93],423,487,486,486,[486,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,12686,12748,12749,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3687,[3635,3688],3637,3699,[3700,6098],[3700,6099],[3701,6100],3636,3701,[3635,2281],[3700,2282],3701,[3635,6162],[3635,6163],3637,3699,3387,3701,3699,3699,[3700,3615],3616,0,0,0,0,0,3750,3810,3811,3812,3813,3814,3815,[3701,3938],[3635,3939],[3635,3942],3700,[3636,6098],[3635,6099],[3636,6100],[3636,3937],[3700,3938],[3699,3939],[3635,3940],[3699,3941],[3699,3938],[3635,3939],[3636,3940,5906],[3635,3941,5907],[3701,3942,5908],3635,[3637,6162],[3636,6163],3637,[3635,3743],3744,3745,0,0,3750,3810,3811,3814,3815,[3701,3816],3635,3700,[3642,3702],3705,[3707,3570],3635,3636,[3635,6034],[3701,6035],[3635,6036],3700,3635,3701,3700,3701,3636,3637,[3699,3936],[3635,3615],[4882,3616],4883,4882,[4947,3234],[4882,3235],[4882,3236],4946,4882,4883,4882,4882,4883,4883,4947,[4946,4609],[4883,4610],[4883,4611],4882,4947,4883,4882,4883,4882,4883,4947,4946,4947,4946,4882,4946,4883,4882,4882,4883,4882,4944,[4353,4754],4353,[4353,4751],4947,4883,4883,4882,4946,4882,4947,4883,4883,4944,[4353,4691],[4353,4692],4353,4353,[4353,4751],4882,4947,4883,4883,4883,4882,4946,4947,4883,4946,4946,[4353,4948],4353,4353,4353,4353,[4353,4752],4945,4947,4883,4883,4883,4947,4883,4883,4946,4947,4947,4947,4883,4880,[4353,4818],4353,4353,4353,5121,4353,[4353,4815],4947,4947,4882,4882,4883,4947,4947,[4353,4756],4353,[4353,4752],[4353,4689],[4353,4691],[4353,4755],[4353,4681],4936,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,526,463,461,528,461,[462,717],[526,718],[462,3090,719],[461,3091,720],[528,3092],525,531,530,[462,653],[462,654],[464,655],[594,656],530,[526,146],[525,147],[463,148],594,531,531,530,532,[595,1525],[463,1526],[525,1527],594,532,463,528,464,528,463,527,531,1926,531,528,528,462,525,463,659,660,531,525,530,596,532,461,526,595,464,525,528,461,531,[528,717],[594,718],[463,719],[527,720],596,461,531,527,463,[462,974],[595,975],527,594,531,532,[461,1525],[461,1526],[461,1527],467,526,[527,16761],463,[530,653],[594,654],[595,655],[525,656],463,525,723,724,530,596,[463,909],[532,910],[531,911],[596,912],594,594,[530,717],[530,718],[464,719],[525,720],595,463,461,461,461,527,[594,974],[594,975],462,461,464,530,[527,16830],464,532,594,594,531,528,594,532,531,[1798,16830],1735,[1735,460,3282],[531,3283],[1798,3284],1734,1734,1798,1798,1734,1798,[1734,2129],[1798,2130],[1735,2131],[1798,2132],1798,[1798,1729],[1735,1730],[1799,1857],[1798,1858],[1735,1729],[1798,1730],[1798,1729],[1741,1863,1730],1735,1734,1734,1798,1799,1798,1799,1798,1799,1734,[1745,1670],[1810,1669],1798,1799,1799,1735,1799,1734,1798,[1734,2258],[1799,2259],1799,1734,[1735,2561],[1798,2562],[1735,2563],[1798,2564],1798,[1745,1540],1799,1798,1734,1734,1798,1798,[1798,2574],[1798,2575],[1798,2576],1734,1799,1799,1799,1799,[1798,90],1735,1799,1735,1735,1798,1798,[1735,348],[1734,408],[1799,409],[1735,412],472,473,[1798,342],[1798,343],1799,1799,1735,1798,1798,1734,1799,1735,1735,[1799,285],286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[422,27],[423,24],[487,27],[423,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12810,12811,12745,12746,12747,12748,12749,12681,0,0,12686,12748,12749,12750,12812,12813,12745,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,12686,12746,12747,12748,12749,12748,12749,12746,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12810,12811,12745,12746,12747,12681,0,0,0,0,12686,12746,12747,12681,0,0,0,0,0,0,0,0,12686,12746,12747,12681,0,0,3558,3494,[3635,3495],3699,[3699,6162],[3699,6163],3637,3637,3637,3699,3635,[3642,3764],[3704,3765],3635,3635,3636,3637,3700,3700,3388,[3700,3679],3680,0,0,0,0,3750,3751,3874,3875,3876,3877,3878,[3635,3879],3701,3388,3635,3636,[3636,6162],[3701,6163],3635,3699,3699,3699,3635,3637,3699,3701,[3635,5970],[3701,5971],[3636,5972],3699,3700,3636,3636,[3637,3807],3808,3809,3810,3811,3814,3874,3875,3878,[3636,3879],3699,3700,3635,3701,[3705,3508],3707,[3643,3761],3701,[3635,6098],[3700,6099],[3701,6100],3699,3637,3700,3635,3637,3700,3699,3701,[3701,3679],[4947,3680],4947,4883,4882,[4883,3299],4947,4882,4883,4946,4882,4946,4883,4883,4882,[4882,4673],[4947,4674],4883,4882,4947,4883,4947,4882,4882,4946,4946,4946,4883,4946,4882,4883,4883,4946,4946,4883,4947,4946,[4353,4756],4353,[4353,4815],4882,4883,4883,4946,4947,4883,4882,4947,4883,4882,4883,4944,[4353,4754],4353,[4353,4879],4947,4882,4882,4947,4882,4882,4946,4883,4883,4946,4882,4944,[4353,4755],5057,[4353,4752],[4353,4688],4945,4947,4882,4883,4947,4882,4883,4882,4947,4946,4883,4946,4880,[4353,5010],[4353,5012],4353,4353,4353,4353,4353,4353,[4353,4879],4882,4946,4883,4946,4947,4947,4947,[4353,4820],4353,[4353,5007],4881,4883,4944,[4353,4688,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,462,462,464,463,528,[528,781],[463,782],[461,783],[464,3155,784],[463,3156],527,528,596,[594,717],[462,718],[463,719],[531,720],462,[596,210],[595,211],[525,212],527,596,463,530,528,[595,1589],[532,1590],[526,1591],[596,1592],463,526,531,595,787,788,531,594,[980,589],[915,590],525,526,461,464,464,723,724,594,525,526,526,527,[526,2684357960],[532,2684357896],[528,2684357832],[595,2684357768],528,463,526,594,[528,781],[530,782],[461,783],[528,784],528,528,531,526,532,596,525,531,528,463,594,[526,1589],[527,1590],[530,1591],[461,1592],530,461,464,[462,717],[463,718],[527,719],[595,720],464,594,461,530,464,525,531,[462,974],[594,975],530,530,463,[526,781],[596,782],[463,783],[528,784],596,530,594,596,526,530,596,[525,2957],[526,2958],[461,2961],[531,2962],532,[527,16894],[596,16895],461,526,525,462,526,526,461,[1799,337],[1734,16894],[1798,3282,16895],[1735,332,3346],3347,[1734,3348],1799,1798,1799,1734,1734,[1799,1665],[1735,2193,1666],[1799,2194],[1798,2195],[1735,2196],1798,[1734,1665],[1798,1666],[1798,1665],[1739,1608,1666],[1741,1668,1793],[1804,1860,1794],[1741,1671,1793],[1740,1794],[1803,1859],1798,1735,1798,1734,1799,1799,1798,1735,[1747,1800],1811,1809,[1808,1795],1735,1735,1735,1799,1799,1735,1734,1798,1799,1798,[1798,2625,1938],[1735,2626,1939],[1798,2627],[1799,2628],1734,1799,1735,1798,1734,1734,1799,1734,[1734,2638],[1799,2639],[1735,2640],1799,1799,1734,1798,1734,[1799,154],[1734,343],1798,1734,[1798,348],[1799,408],[1798,409],[1798,412],472,473,476,[1810,1670,536],[1810,1669,537],406,[1799,342],[1735,343],1734,1735,1734,1735,1798,1799,1734,1735,[1734,221],222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,91,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12746,12747,12748,12749,12746,12747,12681,0,0,0,0,12686,12750,12751,[13649,12874],[13585,12875],12809,12810,12811,12812,12813,12745,12746,12747,12750,12812,12813,12814,[13585,12876],[13587,12877],12809,12810,12811,12745,12746,12747,12748,12749,12681,0,0,0,0,12686,12687,12810,12811,12812,12813,12812,12813,12810,12680,12681,0,0,0,0,12686,12748,12749,12746,12747,12681,0,0,12686,12746,12747,12681,0,0,0,0,0,0,0,0,12686,12750,12751,[13586,12874],[13586,12875],12809,12810,12811,12680,12681,0,0,12686,12750,12810,12811,12680,12681,0,0,0,0,12686,12748,12749,12750,12810,12811,12745,12746,12747,12681,3558,3559,[3637,3429],[3700,3430],3699,3324,3699,3637,3701,[3707,3702],3641,3705,[3640,3697],3635,3637,[3701,2089],[3700,2090],3699,3700,[3700,3743],3744,3745,0,0,3750,3814,3815,[3635,3938],[3635,3939,5906],[3701,3940,5907],[3699,3941,5908],[3636,3942],3635,3700,3635,3700,3701,3699,3635,3700,3699,3699,3701,3635,3700,3701,3637,[3700,6034],[3636,6035],[3635,6036],3635,3635,3699,3700,3699,[3637,3872],3873,3874,3875,3878,[3701,3938],[3636,3939],[3636,3942],3635,3701,3635,3699,3636,[3705,3702],3704,3640,[3640,3570],[3637,6162],[3701,6163],3701,3701,3388,3700,3699,3637,3635,3637,3636,[3635,3743],[4947,3744],[4883,3745],4883,4947,4882,4883,4883,4946,4947,4883,4946,4882,[4882,2979],4946,[4883,4737],[4882,4738],4882,4946,4883,4946,4947,4947,4883,4947,4883,4880,[4353,5010],[4353,5011],4881,4882,4947,4883,4946,4883,4882,4882,[4353,4820],4353,[4353,4879],4882,4883,4883,4882,4946,4947,4883,4883,4947,4882,4946,4947,[4353,4948],4353,[4353,4816],4881,4882,4947,4946,4946,4946,4882,4883,[4882,4482],[4947,4483],[4946,4484],[4883,4487],[4353,4948,4488],4353,[4353,4751],4883,4946,4882,4883,4883,4882,4883,4883,4947,4947,4947,4880,[4353,5008],[4353,4818],4353,4353,4353,[4353,4752],[4353,4688],[4353,4689],[4353,4690],[4353,4691],4945,4883,4947,4946,4947,4946,4882,4947,[4353,4884],4353,5121,[4353,4817],4881,4883,[4882,4616],[4883,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,527,461,464,526,461,[525,845],[463,846],[463,847],[527,3219,848],[525,3220],530,528,525,[528,781],[531,782],[530,783],[463,784],594,462,528,532,528,532,532,532,596,[1990,1653],[462,1654],[464,1655],[463,1656],594,463,528,464,851,852,596,[980,593],1103,1039,[1103,524],532,596,[1039,590],[979,591],463,532,596,526,531,531,[596,3020],[464,3021],[525,3022],[461,3085],526,464,594,531,464,[464,845],[594,846],[596,847],[463,848],530,525,461,530,525,463,461,595,527,532,525,[464,1653],[530,1654],[530,1655],[596,1656],532,528,530,[528,781],[527,782],[530,783],[526,784],528,461,532,463,596,526,531,528,[532,18],[525,19],[526,20],464,[531,845],[532,846],[526,847],[527,848],461,596,527,528,[461,16697],464,[463,3020,653],[526,3021,654],[464,3022,655],[461,3025,656],[528,3026],[464,3027],594,526,461,532,[526,274],[530,275],462,595,[527,16700],[1798,401],1735,[1735,3155],3410,[1798,3411],1798,1799,1734,1798,1798,1799,[1798,1729],[1735,1730],[1735,2258],[1799,2259],1735,1798,[1799,1729],[1803,1860,1730],[1798,1729],[1805,1736,1730],[1805,1857],[1803,1858],[1739,1857],[1805,1858],1740,[1739,1603],1799,[1734,1938],[1735,1939],1734,1735,1735,[1747,1862],[1808,1670],1811,[1746,1604],1734,1799,1798,1735,1799,1799,1735,1798,1734,1798,[1798,2001],[1735,2689,2002],[1799,2690,2003],[1734,2691,2004],[1734,2692],1799,1799,1735,1798,1734,1735,1735,1735,[1735,2702],[1734,2703],[1798,2704],1799,1799,1735,1734,1735,[1799,218],[1735,407],[1735,408],[1798,409],[1798,412],472,473,476,[1798,536],[1811,1670,537],[1744,540,1036],[1810,1037],[1811,1605],[1735,470],406,[1734,342],[1799,343],1735,1735,1734,[1798,1938],[1799,1939],1735,1798,[1798,285],286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12810,12811,12812,12813,12810,12811,12680,12746,12747,12748,12749,12750,12814,[13586,12815],13587,13584,[13648,12873],[13648,12874],[13584,12875],[13650,12876],[13650,12877],12809,12810,12811,12814,[13648,12876],[13587,12877],[13584,12878],13585,13587,[13584,12873],[13651,12874],[13651,12875],12809,12810,12811,12812,12813,12745,12746,12747,12748,12749,12750,12751,[13651,12874],[13651,12875],[13650,12876],[13649,12877],[13651,12876],[13649,12877],[13648,12874],12744,12745,12746,12747,12748,12749,12750,12812,12813,12810,12811,12745,12748,12749,12750,12810,12811,12745,12746,12747,12748,12749,12746,12747,12748,12749,12750,12814,[13651,12815],13584,13651,[13585,12873],[13650,12874],[13586,12875],12744,12745,12748,12749,12687,12814,[13649,12874],[13585,12875],12744,12745,12746,12747,12748,12749,12750,12812,12813,12814,[13650,12874],[13649,12875],12809,12810,12811,12680,12681,3558,3493,3494,[3701,3495],3700,3701,3636,3387,3699,[3706,3508],3641,[3705,3570],3637,3387,[3636,2153],[3700,2154],3636,3699,[3636,3807],3808,3809,3810,3811,3814,3878,[3700,3879],3699,[3700,5970],[3700,5971],[3699,5972],3699,3636,3636,3700,[3705,3765],3701,3637,3700,3700,3636,3701,3637,3701,3699,3388,3700,[3700,6098],[3635,6099],[3637,6100],3701,3637,3388,3635,3699,3637,[3699,3937],[3636,3938],[3636,3939],[3637,3942,5906],[3699,5907],[3637,5908],3699,3701,3637,3700,[3699,5906],[3635,5907],[3701,5908],[3706,3508],3642,3641,[3642,3505],3635,3699,3637,3635,3701,3636,[3643,3763],3701,3701,3699,[3700,3807],3808,[4882,3809],[4882,3810],[4883,3811],[4946,3745],4882,4883,4882,4882,4947,4946,[4946,3042],[4947,3043],[4947,3044],[4883,4801],[4946,4802],[4947,4803],4946,4946,4946,4947,4946,4882,4946,4880,[4353,4819],4353,4353,[4353,4943],4946,4883,4946,4946,4947,4882,4947,[4353,4884],5121,[4353,4943],4883,4946,4882,4883,4880,[4353,5008],[4353,5009],4881,4882,4947,4946,4880,[4353,4819],4353,4353,[4353,4751],4947,4947,4882,4947,4882,4883,4946,[4880,4546],[4353,5008,4547],[4881,4548],[4947,4551],[4946,4552],[4353,4553],[4353,4815],4946,4883,4946,4946,4947,[4882,4483],[4883,4484],[4883,4484],[4946,4487],[4946,4484],[4946,4487],[4353,4948,4488],4353,5121,[4353,4687],[4353,4689],[4353,4690],4945,4882,4947,4947,4946,4946,4882,4947,4947,4947,4883,4882,4882,[4353,4948],4353,4353,4353,[4353,5007],4881,4946,[4947,4616],[4882,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,464,464,528,461,464,[463,909],[526,910],[528,911],[463,3155,912],[461,3156],596,531,463,[464,845],[462,846],[461,847],[530,848],461,462,461,531,461,461,595,[916,589],528,[528,1717],[462,1718],[594,1719],[530,1720],596,530,528,531,[594,1610615943],[525,1610616007],[915,399,1610616071],[1043,1610616135],1044,1103,[979,588],[1103,589],[916,399],1043,1044,[915,397],526,528,462,525,[461,3083],[526,3084],[530,3085,653],[532,654],[463,655],[531,656],525,594,1926,461,[595,909],[528,910],[532,911],[528,912],463,526,531,532,527,596,463,531,787,788,595,[596,1717],[461,1718],[525,1719],[464,1720],464,526,463,[596,845],[530,846],[530,847],[595,848],527,463,461,530,594,530,462,595,[463,82],[596,83],[532,84],527,[532,909],[532,910],[527,911],[596,912],532,463,461,595,[530,16761],[530,3020],[462,3021,717],[526,3085,718],[463,719],[527,720],[526,3090],[461,3091],[461,2958],[464,2961],[596,2962],532,463,594,461,464,[527,16764],[1798,465],1798,[1734,3219],[1798,3220],1798,1798,1798,1798,1734,1735,1799,1799,1798,[1798,1665],[1798,1666],[1734,1793],[1734,1794],[1741,1671,1665],[1740,1666],[1740,1859,1793],[1739,1671,1794],[1805,1665],[1803,1666],[1804,1793],[1804,1794],1804,[1740,1731],[1798,2001],[1799,2002],[1799,2003],[1734,2004],1799,[1744,1608],1809,1744,1745,[1744,1603],1735,1798,[1799,338],1734,1734,1799,1735,1798,1735,1798,[1734,2065],[1735,2753,2066],[1799,2754,2067],[1799,2755,2068],[1734,2756],1734,1798,1735,1799,1735,1799,1734,1799,[1799,2766],[1735,2767],[1799,2768],1735,1734,1798,1734,1798,[1799,282],471,472,473,476,[1800,536],[1745,537],[1811,1603,540],[1808,1608],1809,[1745,1100],[1747,1101],[1809,1795],1798,[1746,1736,470],406,[1799,407],[1798,343],1799,[1798,2001],[1798,2002],[1798,2003],[1798,2004],1734,[1798,156],[1798,92],93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13587,12874],[13585,12875],[13587,12876],[13651,12877],[13651,12874],[13650,12875],[12744,13128],[12810,13129],[12811,13130],[12812,13131],[12813,13132],12814,[13648,12878],13585,13585,13587,13651,13649,13649,13585,13586,[13651,12873],[13587,12874],[13585,12875],[13650,12878],13587,13650,13587,13649,13584,13586,13586,13650,[13584,12873],[13650,12874],[13651,12875],[13585,12876],[13585,12877],12809,12810,12811,12812,12813,12814,[13587,12815],13584,13650,13584,13585,13585,13586,13587,[13587,12808],12809,12810,12811,12812,12813,12814,[13648,12876],[13586,12877],[13650,12874],[13651,12875],12809,12812,12813,12814,[13585,12874],[13649,12875],12809,12810,12811,12812,12813,12810,12811,12812,12813,12814,[13651,12878],13650,13587,13584,13649,13651,13586,[13648,12808],12809,12812,12813,12751,[13587,12878],13585,13651,[13651,12808],12809,12810,12811,12812,12813,12814,[13651,12876],[13584,12877],[13649,12878],13586,13584,[13586,12873],[13650,12874],[13648,12875],12744,12745,12746,12747,[12748,3558],[12749,3559],[3636,3560],3699,3636,3635,3637,3699,[3707,3446],3704,[3640,3697],3701,3635,3701,3700,[3635,5906],[3699,5907],[3701,3872,5908],3873,3874,3875,3878,[3701,3942],3700,3700,[3636,6034],[3700,6035],[3700,6036],3699,3699,3636,[3640,3572],3706,[3707,3697],3700,3636,3636,3324,3636,3699,3700,3637,3699,3637,[3635,6162],[3635,6163],3700,3701,3699,3700,3700,3701,3701,3701,2684357947,3699,[3701,5970],[3635,5971],[3701,5972],3637,3701,3635,2684357884,[3699,5970],[3635,5971],[3636,5972],3635,[3640,3446],3642,[3706,3633],3700,3701,3701,3700,3701,[3640,3572],3643,[3706,3505,5906],[3699,5907],[3699,5908],3699,[3699,3872],3873,3874,3875,[4946,3744],[4883,3745],4947,4947,4947,4883,4946,[4946,3106],[4947,3107],[4882,3108],[4946,4865],4866,[4882,4867],[4946,4803],4880,[4353,5009],[4353,5010],[4353,5011],4881,4880,[4353,5012],4353,4353,[4353,4687],4945,4883,4947,4882,4882,4946,4946,4946,[4353,4948],4353,[4353,4943],4947,4882,4947,4883,[4353,4756],4353,4353,[4353,4943],4882,4882,4947,[4353,4756],[4353,4483],[4353,4484],[4353,4487],[4353,4815,4488],4946,4946,4883,4883,4883,4947,[4880,4483],[4353,5012,4610],[4353,5075,4611],[4353,4943],4947,[4946,4616],[4946,4617],[4353,4879,4484],[4883,4488],4946,4947,4946,[4947,4546],[4883,4547],[4947,4548],[4946,4548],[4947,4551],[4883,4548],[4946,4551],[4883,4552],[4353,4553],4353,[4353,4751],4946,4882,4947,4883,4946,4883,4883,4947,4946,4882,4947,4946,4946,4946,4947,4944,[4353,4689],[4353,4690],[4353,4754],4353,[4353,4817],4881,4882,[4883,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,[526,653],[462,654],[461,655],[526,656],525,462,[463,974],[461,975],[526,3219],[532,3220],531,[525,16830],461,[530,909],[596,910],[461,911],[532,912],462,461,595,464,530,532,[915,399],979,[979,397],[526,1781],[527,1782],[461,1783],[528,1784],528,[915,589],528,525,594,[915,529,3090],[915,3022],[1107,3026],[1108,3027],1039,1043,[1044,2010],1039,1107,1108,979,[1039,524],596,528,528,[531,3211],[594,3212],[595,717],[526,718],[531,719],[463,720],463,463,531,525,528,[979,589,974],[528,975],463,528,464,462,463,594,462,528,595,851,852,462,[594,1781],[461,1782],[595,1783],[528,1784],532,462,595,[462,909],[596,910],[528,911],[596,912],464,532,532,594,525,1926,532,464,[596,146],[525,147],[532,148],462,527,[525,974],[527,975],532,464,528,528,[528,2957],[464,2958],[464,3084],[526,3085,781],[462,782],[527,783],[528,784],528,[525,3090],[464,3022],[462,3025],[528,3026],[528,3027],530,[526,3020],[461,2958],[462,2961],[462,2962],[1735,529],[1734,3282],[1734,3283],[1735,3284],1734,1798,1798,[1798,1938],[1735,1939],1798,1798,1735,1798,[1735,1729],[1799,1730],[1799,1857],[1804,1800,1858],[1805,1729],[1739,1730],[1805,1857],[1740,1858],[1805,1729],[1740,1730],[1803,1857],[1741,1858],[1804,1605],1798,[1735,2065],[1799,2066],[1798,2067],[1799,2068],1734,[1747,1672],1745,[1810,1036],[1745,1037],[1808,1667],1798,1798,1799,1798,1734,1734,1735,1735,1799,1799,[1735,2129],[1799,2817,2130],[1734,2818,2131],[1798,2819,2132],1799,1799,1734,1799,1798,1734,1734,1798,1799,1734,[1735,2831],1798,1735,[15,1860],[80,1861],[79,1862],[15,1863],1798,[1734,535],[1798,536],[1798,537],[1745,1860,540],[1810,1864],1745,[1810,1667],[1808,1672],1747,[1746,1164],[1810,1165],[1745,1668],1798,[1809,1800],[1811,470],406,[1798,278],1735,[1799,2065],[1799,2066],[1735,2067],[1735,2068],1735,1735,[1734,156],[1799,157],158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12814,[13649,12815],13587,13648,13650,13649,13651,13585,[13586,12808,13192],[13584,12874,13193],[13649,12875,13194],[13584,12876,13195],[13585,12877,13196],[13648,12878],13650,13584,13586,13650,[13648,13133],[13651,13134],[13584,13135],13587,13585,13587,13587,13584,13648,13584,13586,13585,13586,13651,13650,[13650,13128],[13651,13129],[13650,13130],[13587,13131],[13584,13132],13585,13587,[13586,12873],[13586,12874],[13650,12875],[13585,12876],[13648,12877],[13585,12878],13648,13651,13648,13648,13649,13651,13586,13651,13585,[13648,12873],[13648,12874],[13584,12875],[13649,12876],[13649,12877],[13651,12878],13650,13650,13587,13585,[13648,12873],[13584,12876],[13649,12877],[13651,12878],13649,13584,[13586,12873],[13584,12874],[13585,12875],[13586,12876],[13648,12877],[13586,12874],[13584,12875],[13584,12876],[13651,12877],[13650,12878],13651,13651,13584,13648,13585,13649,13587,13587,[13649,12873],[13651,12876],[13587,12877],[13585,12815],13649,13585,13650,13587,[13648,12873],[13587,12874],[13651,12875],[13650,12876],[13586,12877],[13650,12878],13586,13584,13648,13651,13584,13587,13585,13650,[13585,12808],12809,12810,12811,12812,[12813,3623],[3636,3624],3636,3636,3635,3635,3635,[3706,3510],3641,[3642,3570],3701,3699,3635,3636,[3699,5970],[3701,5971],[3701,5972],[3637,3937],[3637,3938],[3700,3939],[3635,3942],3635,3387,3636,[3701,6098],[3701,6099],[3636,6100],3699,3636,[3707,3510],3643,[3706,3506,5906],[3635,5907],[3635,5908],3636,3637,3635,3636,[3635,5906],[3700,5907],[3701,5908],3635,3636,3699,3699,3699,3701,[3701,5906],[3635,5907],[3635,5908],3636,3635,3637,3701,3636,[3635,6034],[3699,6035],[3637,6036],3636,3699,3699,3637,[3699,6034],[3701,6035],[3635,6036],3637,3700,[3642,3509],[3704,3570],[3705,3763],3637,3699,3699,[3643,3510],3641,3643,[3641,3633,5970],[3635,5971],[3636,5972],3635,3700,[3637,3937],[3637,3938],[3637,3939],3808,[4946,3809],[4882,3745],4947,4883,4947,4946,[4946,3170],[4883,3171],[4947,3172],4883,[4882,4930],4931,[4880,4674],[4353,4818],4353,4353,[4353,5006],[4353,5007],[4353,4818],5057,4353,[4353,4752],4945,4883,4882,4947,4883,4883,4946,4882,4946,4944,[4353,4688],4945,4882,4882,4946,4947,[4353,4820],4353,[4353,4752],4945,4947,4947,4947,[4353,4820,4546],[4946,4547],[4883,4548],[4882,4551],[4883,4552],[4946,4553],4883,4882,4946,4946,[4880,4546],[4353,4819,4547],[4353,5075,4611],[5057,5074],[4353,4943],4883,4946,[4882,4616],[4882,4548],[4947,4552],[4882,4487],[4883,4484],[4946,4487],[4946,4610],[4882,4611],4883,4882,4946,4947,4946,[4946,4616],[4882,4617],[4353,4618],[4353,4879],4882,4946,4947,4883,4882,4947,4947,4883,4947,4883,4883,4883,4947,4947,4946,4946,4947,4883,[4353,4948],4353,4353,[4353,4943],4946,[4946,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,[527,717],[525,718],[525,719],[528,720],528,463,527,527,[527,3090],[528,3026],[461,3027],[595,16894],[528,16895],532,[527,974],[596,975],462,596,464,532,462,527,[979,529],916,1043,1044,[1039,398,1845],[979,590,1846],[980,591,1847],[979,592,1848],[915,399],1039,[1039,332],530,[531,653],[531,654],[916,336,655],[1171,3090,656],[1172,3091],[1103,3092],1107,1108,915,1171,1172,1039,[915,588],530,594,[525,3020],[530,3021,16697],[595,3085],[464,781],[527,782],[528,783],[530,784],462,532,595,595,[916,399],915,[915,524],596,596,462,528,596,464,527,462,525,461,[532,16830],596,[596,1845],[526,1846],[531,1847,338],[464,1848],461,464,462,596,[595,974],[528,975],594,530,596,594,[532,3897],[526,3898],527,531,463,[526,210],[462,211],[463,212],464,527,527,461,527,531,462,[527,3020],[528,3021],[527,3022],[462,3085],[526,845],[526,846],[528,847],[527,848],463,463,463,[464,653],[464,3090,654],[464,3091,655],[532,2958,656],[463,3084],[528,3022],[526,3025],[461,3026],[1798,529,3282,3027],[1799,3346],3347,[1735,3348],1798,1799,[1734,2001],[1798,2002],[1798,2003],[1735,2004],1799,1734,1735,1798,1799,1734,[1803,1800],[1740,1665],[1741,1666],1740,1803,[1740,1665],[1804,1666],1739,[1739,1665],[1740,1603,1666],1798,[1799,2129],[1799,2130],[1734,2131],[1734,2132],1734,[1744,1736],1808,[1746,1100],[1744,1101],[1744,1731],1734,1799,1799,1799,1734,1734,1799,1735,1734,1734,[1798,2193],[1735,2194],[1799,2882,2195],[1799,2883,2196],1735,1799,1734,1798,1734,1735,[15,1861],[15,1862],[79,1863],1734,1798,1798,[16,1670],15,79,79,16,[80,1669],1734,1798,[1746,1671],1811,1745,1811,[1744,1731],[1746,1736],1811,1747,1810,[1809,1604],1735,[1810,1671,1938],[1808,1939],[1746,277],[1735,278],1798,[1798,2129],[1799,2130],[1735,2131],[1798,2132],1799,1799,1734,[1798,221],222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13651,12878],13648,13585,13648,13651,13650,13584,13648,[13586,12872,13256],[13584,13257],[13649,13258],[13649,13259],[13586,13260],13587,13650,13586,13587,13585,[13650,13197],[13585,13198],[13587,13199],13649,13586,13650,13585,13650,13651,13587,13648,13649,13587,13585,13650,[13587,13192],[13648,13193],[13649,13194],[13584,13195],[13649,13196],13649,13585,13584,13649,13586,13585,13650,13585,13651,13648,13584,13649,13586,13586,13587,13651,13587,13648,13587,13648,13650,13648,[13584,13133],[13587,13134],[13650,13135],13651,13651,13587,13584,13585,13586,13584,13587,13650,13586,13586,13584,13585,13587,13587,13587,13587,13649,13649,13587,13648,13585,13650,13651,13650,13650,13584,13650,13651,13650,13651,13650,13648,13584,13648,13650,13586,13649,13650,13651,13649,13650,13648,13584,13651,13648,13649,13651,13648,[13587,12873],[13585,12874],[13649,12875],[13587,12876],[13585,12877,3687],[3699,3688],3637,3637,3635,3700,3637,[3640,3638],3706,3705,[3704,3505],3701,3699,3699,[3635,6034],[3636,6035],[3636,6036],3635,3699,3637,3637,3700,3699,3636,[3636,6162],[3636,6163],3699,3637,3636,[3707,3638],3640,[3640,3697,5970],[3700,5971],[3699,5972],3700,3635,[3707,3764],3636,[3635,5970],[3700,5971],[3635,5972],3636,3636,3635,[3636,2089],[3699,2090],3700,[3701,5970],[3635,5971],[3699,5972],3701,3699,3700,3699,3637,[3700,6098],[3635,6099],[3636,6100],3637,3636,3701,3699,[3700,6098],[3701,6099],[3635,6100],3635,3701,3699,[3641,3508],3706,[3640,3505,5906],[3700,5907],[3701,5908],[3643,3638],3707,[3706,3506],[3636,6034],[3637,6035],[3699,6036],3636,3388,3700,3636,3636,[3637,3872],3873,[4947,3680],4946,4947,4883,4946,[4883,3234],[4883,3235],[4882,3236],4882,4882,[4946,4737],[4353,5012,4738],4353,[4353,4687],[4353,4754],4353,4353,4353,[4353,4752],[4353,4688],4945,4882,4946,4946,4882,4947,4882,4880,[4353,5008],4881,4946,4947,4883,4883,4883,4882,4947,[4353,4884],4353,[4353,4751],4882,4883,4882,[4946,4609],[4946,4610],[4947,4611],4946,4882,[4947,4616],[4946,4617],[4882,4487],[4882,4484],[4880,4487],[5008,4484],[4353,4818,4610],[4353,5074,4611],[4353,4752],[4353,4688],4945,4946,4947,4946,4947,[4946,4616],[4882,4551],[4946,4548],[4947,4551],[4883,4611],4882,4882,4882,4947,4946,4946,4947,[4882,4681],[4944,4682],4945,4946,4882,4882,4946,4947,4883,4947,4946,4882,4880,[4353,5009],4881,4882,4882,4883,4947,4882,4883,4944,[4353,4754],4353,[4353,4816],[4353,5008,4808],[4882,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,[525,781],[525,782],[528,783],[461,784],462,527,464,528,526,[526,3090],[526,3091],[463,3092],531,525,463,526,528,463,528,525,532,462,[979,399],980,1107,1108,980,1039,[915,1946],980,1039,980,[1039,396],531,[462,717],[464,718],[463,719],[979,270,720],[916,271,3219],[979,272,3220],[1171,335],1172,979,[980,340],1103,915,1039,[916,332],[532,3083],[527,3084],[525,3085,16761],464,[528,845],[461,846],[595,847],[531,848],530,464,530,[980,529],979,1039,[1039,398],594,463,527,594,526,[532,653],[461,654],[461,655],[462,656],525,[463,16894],[525,16895],464,594,464,528,526,462,526,528,461,528,462,525,526,528,[463,3961],[463,3962],527,464,463,594,461,531,525,526,531,527,526,596,[462,3083],[525,3084],[461,3085],528,526,[528,909],[525,910],[464,911],[527,912],464,464,527,[525,717],[526,718],[527,3090,719],[462,3022,720],[526,3085],528,461,[464,1605,3090],[1798,3091],[3410,3092],[1734,3411],1798,1799,1798,[1734,2065],[1798,2066],[1798,2067],[1734,2068],1799,1798,1735,1799,1734,1734,1798,[1803,1544,1729],[1805,1730],1741,1803,[1804,1729],[1739,1730],1805,[1805,1729],[1803,1731,1730],1735,[1799,2193],[1735,2194],[1735,2195],[1735,2196],1735,[1808,1671],1810,[1744,1164],[1811,1165],[1811,1795],1735,1798,1734,1799,[1734,1938],[1799,1939],1799,1735,1735,1735,1798,[1799,2258],[1798,2259],1735,1734,1734,1735,1799,1735,[16,1800],15,15,16,[80,1669],1734,[16,1671],143,[144,1036],[16,1037],15,16,[79,1605],1735,[1745,1800],1810,1809,1744,[1744,1605],1735,[1811,1800],1746,1811,1747,[1745,1668],[1744,1864,2001],[1745,2002],[1746,2003],[1811,341,2004],[1798,342],[1798,343],[1734,2193],[1798,2194],[1735,2195],[1799,2196],1798,1798,1734,[1798,285],286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,12878,13651,13651,13648,13586,13650,13586,13584,13648,[13648,13320],[13585,13321],[13587,13322],[13648,13323],[13585,13324],13650,13586,13648,13651,13648,[13648,13261],[13584,13262],[13586,13263],13648,13585,13651,13586,13587,13586,13648,13587,13586,13585,13650,13650,[13587,13256],[13586,13257],[13650,13258],[13650,13259],[13649,13260],13584,13584,13584,13651,13586,13587,13585,13586,13651,13649,13651,13586,13649,13586,13584,13648,13649,13650,13649,13585,13586,13584,[13651,13197],[13648,13198],[13587,13199],13648,13648,13649,13650,13584,13587,13587,13587,13649,13648,[13585,13128],[13587,13129],[13651,13130],[13650,13131],[13587,13132],13651,13648,13648,13587,13584,13585,13650,13584,13587,13587,13650,13648,13651,13650,13584,13585,13651,13586,13651,[13649,13133],[13585,13134],[13584,13135],13649,13650,13650,13651,13584,13587,13586,13650,13584,13649,[13584,13128],[13584,13129],[13650,13130],[13586,13131],[13649,13132],13585,[13651,3558],[13585,3494],[3635,3495],3635,3636,[3637,5906],[3700,5907],[3699,5908],[3705,3509],3641,[3642,3633],3635,3388,3699,[3701,6098],[3636,6099],[3701,6100],3637,3636,3637,3637,[3699,2089],[3700,2090],3636,3637,3701,3637,3388,3701,[3641,3766],[3643,3506],[3701,6034],[3637,6035],[3699,6036],3636,[3640,3572],3706,[3706,3505],[3700,6034],[3637,6035],[3700,6036],3701,3635,3700,[3323,2153],[3637,2154],3635,[3637,6034],[3700,6035],[3699,6036],3701,3701,3324,3636,3700,[3699,6162],[3643,3764,6163],[3706,3765],3699,3635,3635,3636,[3637,6162],[3700,6163],3636,3637,3701,3700,[3640,3510],3706,[3641,3569,5970],[3637,5971],[3636,5972],[3643,3573],3642,[3641,3505],[3701,6098],[3637,6099],[3700,6100],3700,3637,3635,3636,3700,3699,[3701,3615],[4882,3616],4947,4882,4946,4947,4883,[4883,3299],4883,4880,[4353,5010],[5011,4673],[4353,4674],4353,[4353,4943],4944,[4353,4689],[4353,4690],[4353,4691],4945,4883,4882,4882,4882,4883,4880,[4353,5008],[4353,5009],[4353,4818],4353,[4353,4751],4883,4882,4946,4882,4882,4946,4947,[4353,4948],5057,[4353,4815],4882,4882,4947,[4947,4673],[4946,4674],4882,4882,4882,4883,[4883,4616],[4880,4551],[4353,5008,4548],[4353,4819,4551],[4353,5075,4548],[4353,5075,4611],[4353,4687],4945,4883,4883,4883,4946,4883,4883,4946,4883,4882,4947,[4947,2431],4946,4946,4882,4947,4946,4946,4947,[4947,4616],[4947,4552],[4882,4553],4883,4882,4883,4946,4946,4883,4880,[4353,5008],[4353,5009],[4353,4818],4353,[4353,4817],4881,4883,4946,4882,4947,4946,4946,4944,[4353,4691],[4353,4692,4808],[4353,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,[527,845],[463,846],[526,847],[528,848],464,526,464,464,461,461,[525,3155],[531,3156],462,463,526,528,595,532,1926,463,462,[915,529],1039,916,1171,1172,[980,338],979,916,916,1039,1039,[915,460],594,[531,781],[528,782],[526,783],[532,784],[532,3155],[595,3156],530,[1103,269],[916,335],915,979,916,916,[916,396],[464,3147],[462,3148],525,596,[596,909],[596,910],[595,911],[525,912],596,525,[1039,589],[980,593],915,[980,2010],980,[915,524],596,526,526,530,[461,717],[462,718],[596,719],[461,720],596,525,594,530,528,462,525,526,525,596,463,461,[462,653],[464,654],[595,655],[528,656],594,[462,4025],[530,4026],528,1926,594,595,[464,16697],[525,402],525,531,528,531,525,[526,653],[461,3147,654],[462,3148,655],[527,656],463,462,461,[526,974],[461,975],463,525,464,462,[461,781],[464,782],[528,783],[526,784],526,464,[461,1604],1798,[1734,3155],[1798,3474,3156],1735,1798,1734,1799,[1735,2129],[1734,2130],[1798,2131],[1734,2132],1734,1735,1799,[1734,1665],[1734,1938,1666],[1798,1939],1798,[1803,1800],1741,[1805,1665],[1803,1666],1804,1803,1741,[1805,1604],1735,1799,1735,[1799,2258],[1734,2259],1798,1799,[1810,1544],1747,1745,1811,[1809,1795],1798,1734,1798,[1799,2001],[1735,2002],[1734,2003],[1798,2004],1735,1799,1734,1735,1735,1735,1799,1735,1735,1799,1735,1735,1798,[79,1540],[79,1607],79,80,[15,1795],[16,1606],207,[208,1100],[15,1101],[80,1604],[79,1540],1734,1734,1799,[1746,1606],1809,[1811,1604],1734,1735,1799,[1745,1607],1745,1746,1808,[1745,2065],[1809,2066],[1744,1604,2067],[1799,405,2068],406,[1798,407],[1798,343],[1735,2258],[1799,2259],1734,1735,1735,[1799,348],[1798,349],350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13649,12431],13584,13649,13648,13586,13587,13648,13649,[13650,13384],[13587,13385],[13651,13386],[13651,13387],[13585,13388],13649,13648,13649,13650,13650,[13586,13325],[13649,13326],[13651,13327],13649,13587,13650,13651,13650,13649,13650,13648,13586,13651,13651,13648,[13649,13320],[13585,13321],[13649,13322],[13650,13323],[13651,13324],13649,13584,13584,13651,13650,13587,13651,13587,13587,13649,13648,13585,[13648,13128],[13648,13129],[13649,13130],[13651,13131],[13585,13132],13586,13587,13648,[13643,13712],13584,[13584,13261],[13584,13262],[13649,13263],13585,13651,13651,13584,13648,13648,13584,13586,13585,13650,[13586,13192],[13650,13193],[13651,13194],[13587,13195],[13586,13196],13587,13651,13650,13649,13587,13584,13584,13650,13587,13587,13651,13651,13649,13584,13648,13650,13585,13586,13648,[13651,13197],[13648,13198],[13586,13199],13584,13651,13585,13585,13651,13651,13587,13649,13584,13587,[13586,13192],[13585,13193],[13586,13194],[13587,13195],[13584,13196],13649,13651,[13649,3558],[13584,3559],[3635,3560],3700,[3637,5970],[3700,5971],[3699,5972],[3640,3510],3704,[3706,3570],3699,3699,3636,[3700,6162],[3699,6163],3637,[3705,3764],[3707,3765],3636,3701,[3635,2153],[3388,2154],3635,3635,3637,3700,3701,[3707,3510],3705,[3641,3505],[3701,6098],[3637,6099],[3699,6100],[3705,3510],3643,3640,[3704,3633],[3637,6098],[3636,6099],[3700,6100],3635,3701,3387,3701,3637,3700,[3700,6098],[3701,6099],[3699,6100],3636,3637,3700,3699,3700,[3642,3573],3642,3704,[3641,3505],3637,3701,3701,3635,3699,3699,3700,3636,3700,[3642,3574],3641,[3643,3633,6034],[3637,6035],[3705,3702,6036],3707,3642,[3641,3569],[3635,6162],[3636,6163],3636,3699,3636,3636,3635,3636,3635,[3635,3679],[4883,3680],4882,4883,4947,4883,4880,[4353,5010],[4353,5011],[4353,4818],4353,[4353,4737],[4353,4690,4738],[4353,4691],4945,4883,4946,4946,4882,4882,4882,4946,4947,4882,4883,[4353,4756],4353,4353,5057,4353,[4353,4879],4882,4882,4882,4947,4947,4883,4882,[4353,4756],4353,[4353,4879],4882,4883,4947,[4883,4737],[4946,4738],4882,4946,4947,4947,4947,[4353,4948],[4353,5074],[4353,5075],[5121,5074],[4353,4753],4945,4946,4946,4947,4946,4946,4946,4883,4882,4946,4946,4882,[4947,2495],[4882,2309],[4882,2181],4946,4883,4883,4946,4883,4947,[4882,4616],[4947,4617],[4947,4484],[4947,4487],[4883,4484],[4882,4487],[4353,5011,4488],[4353,5010],[4353,4818],4353,4353,4353,4353,4353,[4353,4943],4946,4947,4883,4883,4882,4947,4883,4883,[4947,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,[528,909],[461,910],[525,911],[528,912],464,464,464,463,525,462,[461,3219],[530,3220],[528,16700],461,527,531,[527,1525],[462,1526],[530,1527],527,531,526,[1039,335],980,915,916,979,980,979,980,916,[980,334],461,461,[463,845],[596,846],[532,847],[595,848],[531,3219],[531,3220],527,530,464,[980,273],[979,2010],915,915,[980,460],[596,3211],[596,3212],531,463,464,[525,974],[527,975],594,530,[916,400],1039,915,979,1039,980,[979,524],462,461,463,525,[531,781],[528,782],[462,783],[528,784],526,594,527,525,531,659,660,596,594,464,462,527,[596,717],[596,718],[526,719],[525,720],[528,769],[462,4089],[530,4090],462,531,526,527,[530,16761],530,461,594,463,461,530,[526,717],[461,3211,718],[462,3212,719],[461,720],527,525,461,463,525,527,527,1926,526,[462,845],[526,846],[464,847],[528,848],525,[464,1605],1734,[1799,2511],[1734,3219],[1735,3220],1799,1799,1798,1735,[1735,2193],[1798,2194],[1734,2195],[1735,2196],1798,1799,1734,[1798,2001,1729],[1735,2002,1730],[1734,2003],[1799,2004],1799,[1803,1607],[1739,1729],[1740,1730],1805,1739,[1805,1539],1734,1735,1734,1799,1798,1734,1735,1735,1799,[1745,1607],1746,1746,[1746,1668],1734,1734,1799,[1734,2065],[1799,2066],[1799,2067],[1798,2068],1735,1798,1735,1798,[14098,1862],[14096,1863],1798,1734,1735,1735,1799,1734,1798,1798,1798,[79,1544],79,[15,1669],[15,1670],80,[80,1164],[15,1165],[15,1795],1798,[1798,3221225753],[1734,24],[1735,27],[1800,24],[1747,28],[1746,1859],1734,1734,1735,[1811,1864],[1810,1539],[1811,1607],1744,[1744,2129],[1811,1539,2130],[1798,2131],[1798,2132],[1798,470],406,[1799,214],1799,1799,1798,1734,[1735,348],[1735,349],413,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13586,12496],13648,13648,13586,13651,13651,13587,13585,[13584,13449],[13651,13450],[13585,13451],13648,13586,13587,13649,13651,13586,13649,13650,13587,13650,13587,13650,13650,13648,13651,13650,13651,13649,13648,13584,13584,[13586,13384],[13585,13385],[13584,13386],[13587,13387],[13649,13388],13586,13587,13586,13587,13584,13651,13585,13586,13584,13586,13587,13584,[13587,13192],[13586,13193],[13649,13194],[13587,13195],[13586,13196],13585,13651,[13643,13522],13643,[13643,13455],[13586,13325],[13651,13326],[13585,13327],13586,13587,13586,13648,13648,13585,13584,13585,13650,13584,[13587,13256],[13586,13257],[13586,13258],[13649,13259],[13587,13260],13584,13649,13586,13586,13587,13651,13587,13649,[13650,13128],[13649,13129],[13585,13130],[13584,13131],[13584,13132],13585,13649,[13643,13715],13587,13650,13648,[13586,13261],[13587,13262],[13651,13263],13585,13587,13650,13650,13649,13649,13586,13650,13585,13586,[13585,13256],[13650,13257],[13651,13258],[13650,13259],[13584,13260],13586,13586,13651,[13587,3623],[3701,3624],3701,[3637,6034],[3699,6035],[3635,6036],[3641,3638],3643,3706,[3642,3697],3701,3701,[3642,3764],[3640,3765],[3642,3572],3643,3706,[3705,3697],3700,3700,3636,3635,3699,3700,3636,3637,[3640,3574],3704,[3704,3569],[3635,6162],[3635,6163],3636,[3707,3638],3707,3640,[3640,3761],[3700,6162],[3637,6163],3700,[3707,3763],[3704,3764],[3707,3765],3637,3701,3636,[3701,6162],[3700,6163],3636,3701,3635,3636,3636,[3707,3510],3640,3707,3640,[3643,3633],3637,3699,3387,3701,3635,3700,3636,3636,3636,[3706,3638],3640,[3641,3697,6098],[3699,6099],[3635,6100],[3705,3509],3642,[3642,3633],3699,3635,3635,[3640,3763],[3704,3764],[3706,3765],3636,3700,3701,[3637,3743],[4947,3744],[4883,3745],4880,[4353,5008],[4353,5009],[4353,4818],4353,4353,4353,4353,[4353,4801],[4882,4802],[4946,4803],4946,4946,4946,4947,4883,4947,4883,4947,4883,4947,4883,[4353,4820],4353,4353,4353,[4353,4753],4945,4883,4947,4882,4947,4947,4947,4947,[4353,4820],4353,[4353,5007],4881,4947,[4882,4546],[4883,4547],[4946,4611],4946,4883,4883,4882,4947,4944,[4353,4689],[4353,4690],[4353,4691],4945,4946,[4883,2429],4946,4947,4947,4946,4880,[4353,5008],4881,4947,4882,4883,[4946,2559],[4946,2373],[4947,2245],4946,4882,4882,4947,4946,4947,4947,[4883,4616],[4947,4548],[4882,4551],[4882,4548],[4882,4551],[4947,4552],[4353,4553],4353,4353,4353,4353,4353,[4353,4753],4945,4883,4947,4883,4946,4946,4947,4946,4883,[4947,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,527,[464,974],[461,975],461,462,464,525,464,462,[527,3282],[528,3283],[525,3284],[594,16764],531,466,596,[461,1589],[594,1590],[527,1591],[525,1592],530,595,530,[979,270],[916,335,3282],[1039,3342],[979,415],[980,416],[916,417],[915,334,3277],[915,269],[462,16830],526,462,[463,909],[461,910],[464,911],[531,912],[530,3090],[525,3091],[528,3092],528,531,[1039,529],915,915,[980,334],[525,3020],[464,3021],[525,3085],596,531,462,462,526,525,[1039,337],916,1043,1044,915,979,[915,334],530,526,596,596,527,[527,845],[594,846],[528,847],[463,848],462,463,594,526,[596,653],[723,654],[724,655],[530,656],526,594,527,526,[531,781],[527,782],[594,783],[461,784],[531,833],526,464,594,594,532,526,531,595,528,526,595,532,531,[526,3020,781],[528,3021,782],[463,3085,783],[463,784],526,462,462,[528,653],[526,654],[525,655],[525,656],462,527,[462,909],[525,910],[461,911],[464,912],[463,1605],1735,[1798,2574],[1798,2575],[1734,3090,2576],[1734,3026],[1734,3027],1798,1734,1799,1735,[1734,2258],[1799,2259],1799,1799,1798,1734,[1798,2065],[1799,2066],[1735,2067],[1798,2068],[1798,1665],[1799,1666],[1740,1540],[1740,1541],[1740,1542],[1739,1543,1665],[1798,1666],1799,[1734,1665],[1735,1666],1734,1735,1799,1798,1798,1735,1798,[1811,1606],1811,[1809,1605],1735,1799,1799,[1734,2129],[1798,2130],[1734,2131],[1798,2132],1734,1734,1734,[14096,1608],14739,14675,[14032,1668],1734,1734,1799,1734,1799,1735,1798,1734,[15,1800],15,13,14,15,15,80,[80,1668],1798,[1798,3221225689],[1734,87],[1734,88],[1799,91],[1735,92],[1747,27],[1735,24],[1798,28],[1809,1671],1747,[1808,1603],[1798,149],[1808,24],[1810,1604,28,2193],[1735,2194],[1734,2195],[1734,2196],1735,[1798,277],[1799,278],1735,1798,1799,[1735,348],[1799,412],413,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13586,12560],13648,13651,13584,13587,13651,13585,13649,13586,13649,13585,13587,13587,13648,13587,13585,13586,13649,13584,13587,13587,[13651,13189],13649,13649,13584,13587,13651,13651,13649,13586,13587,13648,13649,[13584,13449],[13586,13450],[13650,13451],13649,13585,13587,13585,13649,13650,13651,[13648,12686],[13584,12746],[13585,12749],[13585,12681],13584,13650,[13584,13256],[13585,13257],[13649,13258],[13584,13259],[13649,13260],13650,[13643,13716],13643,13643,[13643,13583],13584,13584,13649,13650,[13648,13128],[13648,13129],[13585,13130],[13586,13131],[13649,13132],13585,13648,13649,13586,[13587,13320],[13584,13321],[13584,13322],[13585,13323],[13650,13324],13650,13650,13648,13586,13586,13585,13584,13651,[13584,13192],[13650,13193],[13649,13194],[13584,13195],[13650,13196],13649,[13643,13460],13643,[13643,13455],13585,13585,[13586,13325],[13651,13326],[13584,13327],13585,13650,13586,13649,13651,13587,13648,13586,13648,13650,[13651,13320],[13651,13321],[13650,13322],[13651,13323],[13584,13324],13649,13651,13584,[13650,3687],[3701,3688],3699,[3700,6098],[3700,6099],[3701,6100],3635,[3707,3508],3704,[3706,3505],3635,[3641,3573],3642,3642,3641,[3642,3506,5906],[3705,3442,5907],[3700,5908],3637,3699,3700,3700,[3700,5906],[3636,5907],[3636,5908],3701,[3707,3638],3704,[3641,3633],3635,3699,3637,3700,[3642,3508],3705,3642,[3707,3570],[3705,3764],[3707,3572],3705,3640,3643,[3706,3570],[3707,3764],[3640,3765],3701,3700,3699,3701,3637,3636,3701,[3643,3638],3704,[3705,3441],[3705,3442],3637,3636,3636,3635,3700,3636,3637,[3699,5906],[3637,5907],[3699,5908],[3704,3573],3641,[3640,3570,6162],[3640,3762,6163],[3704,3763],[3643,3766],3704,[3707,3570],[3704,3763],[3641,3764],[3707,3572],3642,3642,3642,[3643,3505],3701,3637,[3699,3807],3808,[4882,3809],[4353,4818,3745],4353,4353,4353,4353,[4353,4753],[4353,4754],[4353,4753],[4945,4865],4866,[4946,4867],[4946,4803],4882,4882,4882,4946,4947,4947,4883,4947,4883,4882,[4353,4884],5121,4353,[4353,4687],4945,4883,4882,4946,4946,4882,4946,4882,4883,[4353,4884],4353,4353,[4353,4817,4483],[4883,4484],[4947,4610],[4883,4611],4946,4946,4883,4946,4946,4883,4882,4882,4883,4883,4882,4947,[4947,2493],[4946,2309],[4883,2181],4883,4947,4944,[4353,4755],[4353,4817],4881,4946,4947,[4947,2623],[4946,2437],4946,4947,4882,4883,4882,4883,4947,4882,4946,4883,4946,4882,4883,[4946,4616],[4947,4617],[4353,4618],4353,4353,[4353,4687],[4353,4688],4945,4946,4947,4947,4882,4882,4882,4946,4883,[4947,4808],[4947,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,461,525,526,528,525,526,462,528,[463,3282],[526,3346],3347,[916,589,3348],[979,590],[916,591],[1039,592],464,[532,1653],[528,1654],[595,1655],[462,1656],531,[595,16700],466,[594,3282],[595,3283],3406,479,480,481,[595,3341],[531,3277],[594,16894],[464,16895],462,463,[464,974],[531,975],525,596,[596,3155],[528,3156],594,2054,[915,399],[979,334],[980,269],[530,3083],[527,3084],[527,3085],596,595,531,2054,462,595,461,[915,401],916,1107,1108,[1039,268],[1039,269],464,596,525,528,462,532,[527,909],[527,910],[463,911],[530,912],596,461,464,531,[596,717],[528,718],[464,719],[532,720],463,595,464,594,[594,845],[530,846],[596,847],[596,848],532,528,526,461,461,528,462,463,594,463,787,788,531,[531,3083],[525,3084,845],[463,3085,846],[528,847],[461,848],461,464,527,[526,717],[462,718],[461,719],[527,720],461,528,527,[526,974],[527,975],[525,1605],1798,1735,[1798,2638],[1735,2639],[1799,2640],[1798,3090],[1735,3091],[1798,2961],[1798,2958],[1735,2962],1734,1735,1799,1735,1798,1735,1799,[1798,2129],[1799,2130],[1735,2131],[1735,2132],[1798,1729],[1798,1730],1734,1799,1798,[1734,1729],[1734,1730],1735,[1799,1729],[1734,1730],1799,1735,1735,1799,1799,1798,[1734,1938],[1734,1939],[1744,1540],1798,1735,1735,1735,[1734,2193],[1799,2194],[1735,2195],[1735,2196],1735,1735,1734,[14098,1672],14099,14739,14098,[14097,1603],1798,1735,1735,1798,1799,1799,1734,[80,1671],79,77,78,[79,1604,1938],[79,1541,1939],[16,1542],[79,1543],1734,[1734,3221225625],[1734,151],1798,1735,[1799,156],[1799,88,1938],[1734,91,1939],[1799,92],[1745,93],1809,[1747,1667,86],[1798,87],[14097,1861,91],[14032,1862,92],[14035,1863,93,2258],[1799,2259],1735,[1798,86],[1798,87],[1798,151],[1799,402],1735,1798,[1734,221],222,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13585,12624],13587,13586,13586,13651,13649,13586,13648,13584,13650,13649,[13584,12686],[13586,12746],[13648,12747],[13650,12748],[13586,12749],[13651,12681],13651,13650,13585,13584,13649,13649,[13584,12686],[13584,12746],[13650,12747],[13648,12681],13651,13587,13649,13587,13586,13651,13587,13648,13649,13587,13648,13587,13587,[13649,12686],[13585,12746],[13586,12747],[13586,12687],12810,12813,[13648,12680],[13648,12681],13651,[13587,13320],[13648,13321],[13584,13322],[13587,13323],[13650,13324],[13643,13523],13643,13643,[13643,13456],13587,13649,13587,13648,13649,[13651,13192],[13585,13193],[13586,13194],[13586,13195],[13587,13196],13648,13586,13587,13585,[13586,13384],[13587,13385],[13650,13386],[13649,13387],[13649,13388],13586,13586,13584,13650,13585,13587,13651,13651,[13585,13256],[13587,13257],[13650,13258],[13584,13259],[13651,13260],13587,[13643,13524],13643,[13643,13583],13586,13584,13648,13586,13649,13584,13650,13648,13584,13585,[13643,13714],[13643,13715],13648,13650,13651,[13584,13384],[13586,13385],[13643,13715,13386],[13586,13387],[13650,13388],13586,13586,13587,[13650,3558],[13584,3494],[3637,3495],[3635,6162],[3700,6163],3701,3387,3635,[3641,3446],[3705,3633],[3640,3702],3705,3707,[3706,3506],[3705,3442],[3635,5970],[3636,5971],[3700,5972],3699,3637,3637,3700,[3699,5970],[3637,5971],[3637,5972],3635,[3707,3702],3641,[3704,3570],3636,3387,3636,[3636,5906],[3636,5907],[3643,3442,5908],[3705,3446],3707,3641,3706,3707,[3704,3506],[3705,3508],3704,3642,3640,[3704,3570],3700,3701,2684357948,3701,3635,[3640,3765],[3704,3766],[3640,3506,5906],[3700,5907],[3636,5908],3701,3636,3637,3636,3635,3637,3635,[3701,5970],[3699,5971],[3643,3510,5972],3704,3640,3704,3705,3641,3706,3641,3643,3704,3707,3642,[3706,3441,5906],[3642,3508,5907],[3704,5908],[3641,3633],3636,3700,3635,[3637,3872],3873,[4353,4754,3616],4353,4353,[4353,4753],[4353,4688],4945,4944,4945,4946,[4882,4930],4931,[4883,4738],4883,4946,4947,4947,4947,4947,4880,[4353,5010],[4353,5011],4881,4944,[4353,4689],[4353,4690],4945,4947,4883,4882,4947,4882,4883,4882,4883,4882,4944,[4353,4754],[4353,4609],[4946,4610],[4883,4548],[4883,4611],4946,4883,4946,4946,4947,4882,4946,4946,4946,4883,4882,4947,4946,[4883,2557],[4882,2373],[4882,2245],4883,4947,4883,4944,[4353,4692],[4353,5007],4881,4882,4883,4947,4883,4883,4947,4882,4946,4947,4882,4947,4946,4882,4946,4883,4946,4882,[4882,4616],[4883,4552],[4353,4553],4353,[4353,4816],4881,4882,4946,4883,4880,[4353,5008],4881,4947,4883,[4882,4808],[4946,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,527,527,525,525,463,[526,653],[528,654],[464,655],[464,3155,656],3410,[979,3411],1043,1044,980,980,[915,397],[464,1717],[531,1718],[525,1719],[530,1720],532,[464,16764],[462,3282],[532,3346],3347,[916,3470],[916,543],[915,544],[979,545],3405,[526,3276],[525,3277],[595,1525],[530,1526],[532,1527],526,464,530,594,[525,3219],[530,3220],461,[915,593],1103,[1103,588],526,[595,3147],[530,3148],530,[527,16830],530,596,532,596,594,531,[980,465],1039,1171,1172,[915,524],462,596,526,532,532,528,528,595,[461,974],[526,975],[461,16830],528,525,525,527,[526,781],[531,782],[464,783],[464,784],528,530,525,594,[525,909],[531,910],[527,911],[595,912],532,532,527,596,530,527,530,461,526,594,851,852,595,[526,3147],[527,3148,909],[462,910],[527,911],[461,466,912],526,527,464,[462,781],[463,782],[528,783],[462,784],463,464,464,526,[525,1604],1798,1798,1735,[1734,2702],[1798,2703],[1798,2704],1734,[1798,3090],[1798,3025],[1798,3022],[1798,3026],[1799,3027],1734,1799,1799,1798,1798,1799,[1734,2193],[1735,2194],[1799,2195],[1735,2196],1798,[14034,1862],1799,1799,1798,1799,1735,1735,1735,1799,1734,1734,1799,1798,1799,[1734,2001],[1734,2002],[1734,2003],[1735,2004],1798,1798,1799,1735,1798,[1799,2258],[1735,2259],1799,1799,1799,1799,[14033,1736],14739,14099,14737,[14035,1667],1735,1734,1799,1799,1799,1798,[15,1670],15,[15,1539],[15,1606],[16,1605,2001],[1798,2002],[1799,2003],[1735,2004],1734,1799,[1799,3221225561],1798,1798,1735,[1798,2001],[1734,2002],[1735,2003],[1734,156,2004],[1734,157],[1810,27],[1798,150],[14034,1608,151],14033,[14033,156],[14034,157],[14099,1795,24],[1735,27],[1798,150],[1798,151],1798,1799,1734,1734,[1735,221],222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13586,12624],13584,13587,13651,[13649,13133],[13586,13134],[13651,13135],13649,[13586,12686],[13585,12748],[13648,12749],[13650,12750],12810,12811,12812,12813,[13585,12680],[13648,12681],13648,13587,[13648,12686],[13587,12746],[13585,12747],[13651,12687],12810,12811,[13650,12680],[13650,12681],13650,13649,13584,13649,13586,13650,[13585,13133],[13651,13134],[13586,13135],13585,13586,[13586,12686],[13585,12687],12810,12811,12751,[13651,12874],[13648,12877],12744,[13587,12680],[13651,12681],[13585,13384],[13649,13385],[13585,13386],[13587,13387],[13643,13460,13388],13643,13643,[13643,13391],13648,13650,13650,13648,13648,13648,[13651,13256],[13585,13257],[13587,13258],[13585,13259],[13585,13260],13585,13649,13649,13648,13648,[13587,13449],[13649,13450],[13584,13451],13584,13584,13649,13648,13587,13651,13651,13586,13585,[13651,13320],[13648,13321],[13586,13322],[13584,13323],[13648,13324],13650,[13643,13588],13643,[13643,13520],13651,13585,13587,13651,13651,13584,13649,13649,13586,[13643,13652],13643,13643,[13643,13647],13650,13587,13649,[13643,13460,13449],[13643,13450],[13643,13520,13451],13587,13649,13648,13587,13648,[13585,3558],[13587,3559],[3635,3560],3699,3637,3701,3635,[3707,3572],[3643,3761],[3707,3766],3642,[3643,3441],3701,3636,[3637,6034],[3635,6035],[3637,6036],3636,3388,3701,3700,[3637,6034],[3700,6035],[3635,6036],3636,3701,[3707,3508],3704,[3641,3505],3637,3637,[3635,5970],[3701,5971],[3699,5972],3637,[3707,3443],[3642,3444],[3704,3445],[3640,3509],[3642,3505],2684357947,[3704,3442],[3642,3446],3704,3643,[3643,3571],[3706,3764],[3704,3765],3699,[3641,3702],3643,3641,[3706,3505,5970],[3701,5971],[3699,5972],3637,3701,3701,3700,3700,3700,3699,[3701,6034],[3701,6035],[3706,3574,6036],3707,3705,[3641,3506],[3643,3443],[3641,3444,5906],[3705,3445,5907],[3705,3446,5908],3706,3643,[3707,3441],[3706,3442],[3701,5970],[3637,5971],[3704,3442,5972],3636,3637,3637,3636,3635,[3637,3615],[4944,3616],[4353,4689,2979],[4353,4690],4945,4882,4883,4882,4947,4882,[4946,4546],[4883,4547],[4883,4611],4883,4882,4947,4883,4880,[4353,5010],[4353,5012],4353,4353,[4353,4943],4883,4883,4883,4947,4946,4883,4880,[4353,5008],4881,4946,4946,4882,4882,4947,4944,[4688,4673],[4946,4674],4883,4946,4882,4883,4882,4946,4946,4947,4946,4946,4946,4882,4883,4947,4883,[4946,2621],[4883,2437],4946,4882,4946,4947,4882,4944,[4353,4688],4945,4946,4882,4883,4947,4882,4947,4883,4883,4947,4947,4946,4882,4882,4947,4947,4882,4882,4946,[4947,4616],[4883,4617],[4353,4618],[4353,4752],4945,4882,4947,4880,[4353,4818],4353,[4353,5007],[4353,5008],[4353,5009],[4881,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[980,397],463,526,461,461,463,[461,717],[464,718],[461,719],[463,3155,720],[916,3156],980,1107,1108,[979,3282],[916,3342],[915,3343],[980,524,3277,1781],[527,1782],[462,1783],[594,3282,1784],[531,3342],[594,3343],[595,3346],3410,[916,3411],915,916,916,979,[979,3469],3340,[464,3148],[463,1589],[530,1590],[527,1591],[462,1592],525,594,[596,16700],[463,3155],[526,3540],[916,399],916,1039,980,[980,398],[530,3527],[464,3148],531,[532,16894],[532,16895],463,532,[530,16697],531,[525,3207],[1039,529],915,980,915,[1039,588],527,463,[531,3208],595,531,463,531,464,530,596,[531,16894],[462,16895],530,596,464,[525,845],[531,846],[531,847],[530,848],530,1926,527,464,594,[532,974],[525,975],528,596,464,532,525,463,595,532,525,461,462,532,464,[594,16700],[532,3211],[525,3212],[461,974],[462,975],464,462,462,463,[462,845],[464,846],[462,847],[462,848],525,528,525,[461,1605],1799,1799,1799,1734,[1799,2766],[1735,2767],[1734,2768],1735,1735,1798,1734,[1734,3090],[1735,3091],[1734,3092],1799,1798,1798,1735,1734,1734,[1799,2258],[1734,2259],1799,[14032,1670],14035,[14097,1668],1734,1799,1735,1798,1734,1799,1735,1799,1735,1798,1735,1734,[1798,2065],[1798,2066],[1735,2067],[1734,2068],1798,1735,1798,1734,1799,1735,[1734,1109],[1735,1110],[1735,1111],1734,1798,[14033,1864],14032,14737,14033,[14033,1731],1799,[1799,1938],[1798,1939],1798,1798,1734,[80,1606],[79,1604],1798,1735,[1734,2065],[1798,2066],[1799,2067],[1735,2068],1799,1798,1799,1799,1799,1734,[1734,2065],[1735,2066],[1798,2067],[1734,2068],[1798,156],[1799,88],[1798,151],[14035,1736],14034,14098,[14035,156],[14033,1669,88],[14032,1863,91],[1799,151],1735,1734,1799,1799,1735,[1798,285],286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13586,12688],13648,13586,13586,[13649,13197],[13584,13198],[13649,13199],[13650,12686],[13648,12687],12812,12813,12814,[13648,12874],[13648,12875],[13650,12876],[13648,12877],12744,[13586,12745],[13650,12746],[13649,12747],[13585,12750],12810,12811,12751,[13585,12874],[13584,12875],12744,[13649,12680],[13584,12681],13649,13586,13584,13585,13650,[13649,13197],[13648,13198],[13651,13199],13649,[13649,12686],[13586,12750],12751,[13585,12874],[13651,12875],[13586,12815],13586,13649,[13648,12808],12744,[13650,12745],[13650,12681],[13648,13449],[13584,13450],[13648,13451],[13643,13588],13643,13643,[13643,13647],13651,13648,13648,13649,13649,13585,[13650,13320],[13649,13321],[13650,13322],[13650,13323],[13649,13324],13585,13584,13584,13651,13584,13649,13650,13650,13648,13648,13651,13586,13649,[13643,13522],[13643,13647],13649,13650,[13651,13384],[13650,13385],[13587,13386],[13651,13387],[13584,13388],13585,13648,[13643,13459],13643,[13643,13711],[13643,13712],13586,13584,13651,13650,13650,13585,13648,[13643,13522],13643,[13643,13456],13648,13585,13648,13584,[13643,13588],13643,13643,[13643,13711],[13643,13712],13585,13587,13586,13649,[13586,3558],[13648,3559],[3636,3560],3700,[3701,2089],[3642,3702,2090],3641,3706,3704,3643,[3706,3761],3388,3701,[3699,6098],[3700,6099],[3635,6100],3636,3636,3636,3699,[3699,6098],[3636,6099],[3701,6100],3699,3637,[3706,3510],3705,[3643,3569],3637,3700,[3636,6034],[3637,6035],[3701,6036],3637,3636,3700,[3706,3765],[3640,3573],[3706,3569],3636,3700,3701,[3707,3508],3640,3706,3705,3706,[3704,3761],[3642,3573],3704,3641,[3643,3633,6034],[3637,6035],[3699,6036],3636,3699,3700,3635,3701,3635,3700,[3701,6098],[3700,6099],[3707,3638,6100],3707,3643,[3643,3697],3699,[3636,5970],[3700,5971],[3700,5972],[3642,3508],3706,[3641,3570],3635,[3701,6034],[3699,6035],[3635,6036],3699,3700,3635,3636,3637,[3635,3679],[4882,3680,3042],[4882,3043],[4947,3044],4947,4883,4883,4947,4882,[4882,4609],[4882,4610],[4882,4611],4947,4946,4946,4947,4882,[4353,4948],4353,4353,4353,[4353,4752],4945,4946,4947,4882,4880,[4353,5010],[4353,5011],[4353,4818],4353,[4353,4817],[4353,5008],[4353,5009],4881,4947,4883,[4946,4609],[4882,4610],[4883,4611],4883,4883,4947,4882,4883,4946,4882,4946,4882,4883,4883,4883,4947,4946,4882,4947,4883,4947,4883,4882,4947,4946,4883,4883,4946,4947,4947,4946,4882,4882,4883,4946,4882,4882,4947,4883,4946,4882,4946,4883,4882,4947,4947,4883,[4883,4681],[4944,4682],4945,4882,4883,4947,[4353,4948],4353,5121,4353,4353,4353,[4353,4816,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,[1039,524],461,527,527,464,[463,781],[528,782],[461,783],[462,3219,784],[979,3220],[915,2010],1171,[1172,3282],[1039,3283],3406,3407,[525,3341,1845],[596,3342,1846],[462,3343,1847],[594,3346,1848],3406,3407,3410,[916,3474],916,979,979,915,979,979,[916,3147],[462,3148],[525,1653],[594,1654],[462,1655],[462,1656],462,463,[461,16764],[526,3219],[916,399,3604],1103,915,980,1103,1039,[1103,397,3591],[527,3212],525,462,528,595,595,[526,16761],[594,3282],[530,3271],[916,400],916,915,980,915,[915,397],531,[594,3272],[595,3277],532,[525,16697],528,462,528,595,461,528,530,530,464,[530,909],[462,910],[530,911],[461,912],530,463,464,532,531,464,595,462,531,527,527,594,532,[461,3282],[596,3342],[526,3343],[531,3342],[527,3343],[461,3277],464,[530,16764],[530,3282,3147],[527,3148],526,461,525,463,461,527,[528,909],[462,910],[461,911],[462,912],526,[525,1605,273],[462,1540],1734,1734,1734,1734,1798,1735,[1799,2831],1798,1735,1799,1735,1734,1735,[1799,3155],[1798,3156],1735,1735,1734,1798,1735,1735,1798,1734,[14032,1670],14035,14034,14096,[14097,1859],1735,1735,1734,1798,[14032,1861],[14098,1862],[14032,1863],1799,1799,1735,1734,[1734,2129],[1799,2130],[1799,2131],[1735,2132],1799,1798,1798,1734,1799,1735,[1734,1173],1174,[1799,1175],[14097,1862,1176],[14034,1670],14675,14097,14673,[14035,1604],1799,[1735,2001],[1799,2002],[1735,2003],[1798,2004],1734,1735,1799,1734,1798,1798,[1799,2129],[1734,2130],[1799,2131],[1734,2132],1734,1734,1798,1734,1799,1799,[1798,2129],[1735,2130],[1735,2131],[1734,2132],1734,1798,1735,[14098,1670],14099,14035,[14099,338],14098,14033,[14034,1795],1735,1734,1799,1735,1735,[1734,221],222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,12751,[13649,12752],13648,13585,13651,[13650,13261],[13649,13262],[13648,12686,13263],[13585,12750],12751,[13650,12876],[13650,12877,13128],[13584,12878,13129],[13648,13130],[13651,13131],[13649,13132],13648,[13587,12808],12809,12810,12811,12814,[13584,12874],[13585,12875],[13648,12815],13587,13650,[13649,12808],12744,[13586,12745],[13586,12681],13649,13649,13648,13586,[13649,13261],[13650,13262],[13651,13263],13585,[13587,12559],12814,[13585,12815],[13587,13128],[13648,13129],[13650,13130],[13586,13131],[13650,13132],13584,[13585,12808],12809,[13584,12680],[13587,12681],13650,13648,13586,[13643,13458],13643,[13643,13520],13586,13586,13650,13651,13651,13585,[13648,13384],[13586,13385],[13584,13386],[13650,13387],[13585,13388],13650,13648,13649,13650,13585,13585,13650,13586,[13643,13715],13650,13587,13584,[13643,13460],13643,[13643,13520],13587,13651,13585,[13651,13449],[13650,13450],[13651,13451],13648,13586,13585,[13643,13652],13643,13643,13643,[13643,13455],13585,13651,13586,13585,13650,[13643,13460],13643,13643,[13643,13647],13587,[13585,13133],[13649,13134],[13587,13135],13585,[13643,13392],[13643,13396],13643,13643,[13643,13520],13585,13585,13586,13651,[13584,3623],[3637,3624],3699,[3701,2153],[3635,2154],[3704,3442],[3705,3446],3704,3704,3640,[3642,3570],3699,[3701,6162],[3636,6163],3636,3637,3637,3635,3700,[3701,6162],[3637,6163],3637,3324,3637,[3643,3574],3642,[3706,3633],3637,3637,[3636,6098],[3636,6099],[3700,6100],3701,3388,[3706,3510],3706,3706,[3640,3633],3700,[3699,5906],[3701,5907],[3636,5908],[3705,3443],[3641,3444],[3640,3445],[3642,3508],3641,3642,3705,[3704,3506],[3635,6098],[3635,6099],[3701,6100],3701,3635,[3699,5906],[3636,5907],[3635,5908],3635,3636,[3700,6162],[3643,3765,6163],[3704,3766],3704,[3641,3506],3635,3701,[3637,6034],[3699,6035],[3637,6036],3699,[3643,3446],3704,[3641,3505],[3700,6098],[3635,6099],[3637,6100],3637,3637,3636,3701,[3636,3488],[4947,3489],[4882,3553,3106],[4946,3107],[4947,3108],4883,4946,4883,4883,4882,[4883,4673],[4947,4674],4883,4947,4883,4883,4883,4880,[4353,4819],4353,[4353,4687],[4353,4688],4945,4883,4946,4946,4880,[4353,5012],4353,4353,4353,4353,4353,4353,4353,[4353,4943],4882,4946,[4883,4673],[4946,4674],4947,4882,4946,4882,4882,4947,4883,4882,4882,4947,4882,4883,4882,4882,4883,4946,4882,4882,4947,4882,4946,4947,4882,4882,4882,4883,4883,4946,4947,4882,4947,4947,4882,4882,4947,4882,4882,4882,4882,4947,4947,4882,4946,4882,4882,[4882,4745],[4946,4746],4882,4946,4946,4947,4944,[4353,4688],[4353,4689],[4353,4690],[4353,4754],4353,[4353,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,[916,397],[915,589],[980,399],[1039,397],463,[463,845],[461,846],[528,847],[528,3090,848],[337,3026],[979,3027],[915,3282],[916,3346],3347,[915,3470],[915,3471],3405,3406,3407,3410,[980,3470],[979,3471],[916,3474],916,916,[916,1941],[980,1942],[916,1943],979,916,[980,3211],[532,3212],[528,1717],[464,1718],[462,1719],[532,1720],531,595,[528,3282],[525,3283],[915,3668],916,916,916,[979,2010],915,[980,3655],[464,3276],[462,3277],527,461,[528,3282],[594,3342],[463,3343],[461,3346],[980,3335],915,980,916,979,915,1039,[1039,524],[463,3336],[461,3276],[525,3277],[462,16761],526,[531,3282],[528,3342],[526,3343],[464,3277],596,528,527,466,528,[596,974],[464,975],461,528,530,594,[530,1525],[530,1526],[528,1527],525,464,526,785,786,532,[525,3282],[527,3283],3406,3407,3406,3407,[531,3276],[528,3342],[530,3343],[3346,3211],[916,588,3212],[1104,590],[980,591],[1104,592],464,462,462,525,[525,974],[461,975],528,462,[1734,529],1798,1735,1798,1734,1735,1734,1799,1734,1799,1734,1734,1799,1799,1798,[1735,3219],[1735,3220],1735,1735,1735,1734,[1734,2957],[1734,2958],[1799,2961],[14032,1800,8250],14033,14035,14099,14033,14032,[14098,1603],1735,1735,[14032,1670],14096,14032,[14099,8570],[14033,1795,8824],[1799,8825],[1735,8565],1798,[1799,2193],[1798,2194],[1798,2195],[1798,2196],1798,1735,1799,1735,1799,1799,[1799,1237],1238,[14032,1864,1239],[14097,14098,1240],[14099,14738,1241],14098,[14034,1539],[14032,1540],1798,1735,[1734,2065],[1735,2066],[1734,2067],[1734,2068],1798,1734,1735,1734,1735,1799,[1735,2193],[1798,2194],[1799,2195],[1735,2196],1734,1799,1734,1799,1734,1734,[1798,2193],[1799,2194],[1734,2195],[1734,2196],1799,1799,[14099,1800],14033,14032,14098,14033,14097,[14032,1605],1735,1734,1735,[1735,1938],[1799,1939],1798,[1734,285],286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13651,12624],13586,13649,13587,13584,[13585,13325],[13651,13326],[13648,12559,13327],12814,[13585,12815],13651,[13587,13192],[13584,13193],[13651,13194],[13649,13195],[13649,13196],13587,13585,[13643,13460,12873],[13643,12874],[13643,13455,12875],[13585,12878],13649,13648,[13585,13133],[13587,13134],[13584,13135],13584,[13650,12808],12809,[13587,12552],13650,13651,13586,13585,[13585,13325],[13648,13326],[13587,13327],13585,[13648,12623],[13650,12560],13648,[13586,13192],[13651,13193],[13585,13194],[13651,13195],[13587,13196],13584,13587,[13648,12873],12744,[13650,12745],[13648,12746],[13649,12747],[13651,12748],[13643,13652,12749],[13643,12746],[13643,12747],[13643,13647,12748],[13648,12749],[13584,12681],13651,13650,13649,13587,[13648,12686,13449],[13650,12746,13450],[13584,12747,13451],[13585,12748],[13584,12749],[13649,12681],13651,13584,13586,13648,13584,[13643,13460],13643,[13643,13455],13584,13586,[13643,13524],13643,13643,[13643,13455],13650,13651,13650,13649,13650,13648,13586,13649,13651,[13643,13392,15820],[13643,13458,15821],[13643,12361,15822],[13643,13583,12362,15823],[13650,12365],[13584,12431],13651,13650,13649,[13643,13588],13643,[13643,13391],13584,13587,[13651,13197],[13649,13198],[13585,13199],13649,13648,[13643,13652],13643,13643,13643,[13643,13711],13650,13651,13586,[13584,3687],[3701,3688],3637,3700,3701,3636,3636,[3642,3443,5906],[3641,3445,5907],[3642,3508,5908],3706,[3707,3761],[3707,3763],[3642,3764],[3643,3765],3637,3699,3635,3701,3699,3699,3700,3637,3635,[3642,3638],3704,[3706,3697],3635,3700,[3635,6162],[3637,6163],3699,3701,3636,[3707,3638],3706,3643,[3704,3697],3636,[3700,5970],[3637,5971],[3635,5972],3701,3636,3637,3635,[3707,3446],3704,3706,[3643,3761],[3704,3762,6162],[3636,6163],3701,3701,3699,[3635,5970],[3701,5971],[3635,5972],3636,3701,[3704,3573],3704,3640,[3706,3441],3700,3699,3637,[3699,6098],[3637,6099],[3635,6100],3637,[3640,3510],3640,[3642,3569],[3699,6162],[3701,6163],3700,3637,3700,3699,[3635,3551],[4946,3552],[4947,3553],[4947,3170],[4946,3171],[4947,3172],4946,4882,4883,4882,4947,[4882,4737],[4882,4738],4946,4946,4946,4882,4882,[4353,4756],4353,[4353,4752],4945,4883,4946,4882,4946,4880,[4353,4818],5121,4353,[4353,4752],[4353,4689],[4353,4690],[4353,4691],[4353,4754],4353,[4353,5007],[4353,5008],[4353,5009],[5010,4737],[4882,4738],4882,4947,4883,4946,4947,4883,4883,4947,4946,4882,4883,4947,4882,4947,4880,[4353,5008],4881,4880,4881,4946,4946,4882,4946,4883,4947,4947,4882,4883,4882,4947,4946,4882,4947,4883,4947,4882,4883,4946,4883,4947,4946,4946,4946,4947,4947,[4947,4681],[4946,4682],4883,4882,4947,4946,4882,4947,4946,4882,4944,[4353,4688],[4353,4755,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,980,980,915,[979,524],[528,909],[527,910],[461,911],[461,912],[1039,401,3090],[916,3091],[1039,3346,3092],3410,[916,3411],[915,1941],[916,1942],[979,3469,1943],[915,3470],[980,3471],[980,3474],915,979,915,979,916,[916,2005],[979,2006],[980,2007],980,979,[916,3275],[595,3276],[526,3277,1781],[596,1782],[596,1783],[462,1784],525,[526,3282],[461,3346],3347,[916,3732],980,979,979,915,916,[980,3719],3340,[461,3341],[528,3342],[461,3343],[526,3346],3406,3407,3410,[979,3399],979,915,915,916,979,915,[1039,398],[531,3400],3340,[526,3341],[596,3342],[462,3343],[464,3346],3406,3407,[462,3276],[461,3277],527,461,[462,3282],[531,3342],[462,3343],[462,3277],532,[594,16830],525,527,[526,1589],[463,1590],[528,1591],[461,1592],461,594,849,850,[461,3282],[594,3346],3347,[979,3470],[979,3471],[979,3470],[979,3471],3340,3406,3407,[3410,3275],[979,3276],[1103,3277],1104,979,[915,588],464,528,[463,1941],[915,589,1942],[915,590,1943],[916,591],[1104,592],[979,593],[1040,1603],1734,1799,1799,1735,1735,1799,1798,1799,1734,1798,1798,1799,1798,[1735,3090],[1734,3026,2511],[1734,3027],1734,1735,[1798,3020],[1734,3021],[14035,1672,3022],[14099,3025],[14033,8314],[14034,8315],14096,14032,14033,14035,[14098,1667],1799,[14032,1671],[14033,8570],[14033,8630],[14032,8631],[14096,8634],8888,8889,[1735,8629],[1734,8820],[1799,8821],[1798,8565,2258],[1798,2259],1798,1734,1734,1798,1798,1735,[1735,8763],[1799,1301],1302,[14033,14738,1303],[14033,14035,1304],14097,14739,[14098,1668,1109],[1799,1110],[1734,1111],1799,[1735,2129],[1735,2130],[1734,2131],[1799,2132],1799,1734,1734,1735,1734,1735,1735,[1734,2258],[1799,2259],1799,1798,1734,1734,1799,1735,1735,1798,[1734,2258],[1735,2259],1734,1735,[14033,1863],[14033,1864],14097,14035,14098,14032,14033,[14097,1795],1735,1799,[1735,2001],[1734,2002],[1734,2003],[1735,2004],[1734,156],[1734,92],93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13921,13922,13923,13924,12623,12624,13587,[13587,13921],[13586,13922],[13648,13923],[13584,13924],13650,[13651,12623],[13650,12560],13585,13584,[13650,13256],[13651,13257],[13651,13258],[13587,13259],[13650,13260],13651,13650,[13643,13524],13643,[13643,13519],[13650,12943],[13651,12944],13584,[13651,13197],[13586,13198],[13587,13199],13587,13649,[13651,12615],[13650,12552],13651,13584,13585,13586,13586,13586,13585,[13650,12686],[13651,12687],[13648,12688],13650,[13587,13256],[13587,13257],[13585,13258],[13651,13259],[13586,13260],13648,13650,13587,[13651,12808],12809,12810,12811,12812,12813,12810,12811,12812,12813,[13586,12680],[13584,12681],13649,13650,[13587,12686],[13584,12687],12810,12811,12812,12813,[13648,12680],[13586,12681],13648,13584,13586,13587,[13643,13588],13643,[13643,13519],[13584,13133],[13586,13134],[13643,13588,13135],13643,13643,[13643,13583],13586,[13648,13128],[13648,12361,13129],[13649,12362,13130],[13651,12366,13131],[13586,13132],13584,[13586,15882],[13586,15883],[13650,15884],[13643,13652,12424,15885],[13586,12425,15886],[13584,12426,15887],[13651,12429],[13649,12495],[13650,12362],[13586,12365],[13649,12366],[13643,13522],13643,[13643,13647],13648,13584,[13650,13261],[13651,13262],[13649,13263],13586,13651,13584,[13643,13392],[13643,13459],13643,13643,[13643,13455,3750],[13650,3810],[13648,3811],[13649,3814],[3699,3752],3637,3700,3324,3699,3699,[3699,5970],[3636,5971],[3635,5972],[3642,3508],3704,3642,3641,3704,[3707,3697],3636,3636,3387,3637,3637,[3636,5906],[3637,5907],[3701,5908],[3707,3702],3640,[3707,3505],3699,[3701,2089],[3701,2090],3637,3636,3637,3636,[3641,3573],[3705,3441],[3705,3442],3637,3700,[3636,6034],[3699,6035],[3701,6036],3636,3387,3701,3637,[3699,5906],[3705,3442,5907],[3705,3509,5908],3704,3705,[3640,3761],3635,3635,3637,[3701,6034],[3699,6035],[3635,6036],3635,3701,[3642,3446],3706,3641,[3704,3697],3637,3699,3700,[3635,6162],[3636,6163],3635,3700,[3705,3638],3705,[3643,3633],3635,3635,3636,3387,3636,3699,[3637,3615],[4946,3616],4947,[4882,3234],[4882,3235],[4883,3236],4946,4946,4882,4947,4883,[4947,4801],[4947,4802],[4946,4803],4883,4883,4882,4883,[4353,4820],4353,[4353,4751],4946,4883,4883,4947,4947,[4353,4948],4353,4353,[4353,4687],4945,4947,4946,4883,[4353,4948],4353,4353,5057,4353,[4353,4673],[4947,4674],4947,4947,4947,4883,4947,4947,4882,4883,4882,4947,4882,4946,4880,[4353,5008],[4353,4819],[5121,5075],[4353,4816],[4353,4818],[4353,4943],4883,4946,4883,4883,4883,4883,4947,4946,4947,4946,4946,4882,4882,4947,4947,4947,4883,4883,4882,4882,4946,4946,4883,4946,4882,4883,[4883,4745],[4883,4746],[4947,2979],4882,4946,4883,4882,4947,4882,4882,4947,4882,[4946,4616],[4946,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,979,915,1039,1039,[916,588],[979,589],[1039,590,974],[1039,591,975],464,[980,465],[916,3155],[3410,3156],[915,3474],979,[915,2005],[916,2006],[979,2007],915,980,916,980,[916,972],[915,973],1104,[916,1946],[915,2069],[980,2070],[980,2071],[916,2072],[915,2020],[979,3339],3340,[596,3341,1845],[596,3342,1846],[595,3343,1847],[594,3344,1848],[462,3345],[528,3346],3410,[979,3411],916,916,916,1103,980,980,980,[916,3404],3405,3406,3407,3410,[916,3470],[916,3471],[916,3474],916,915,916,979,979,980,916,980,980,[979,3404],3405,3406,3407,3410,[980,3470],[916,3471],3340,[527,3341],[530,3342],[595,3343],[596,3346],3406,3407,[462,3276],[595,3277],[462,16894],[461,16895],596,[463,1653],[528,1654],[461,1655],[594,1656],1990,526,462,[530,16700],[527,3155],3410,[979,3411],1043,1044,916,979,[915,3404],[916,3470],[979,3471],[916,3474,3339],3340,[1039,3341],[1103,3277],916,1103,[915,397],[980,589],[1040,400,2005],[1103,2006],[1040,2007],980,916,916,[1040,1667],1735,1734,1799,1799,1799,1735,1798,1735,1734,1799,1735,1735,1734,[1798,2574],[1798,3090,2575],[1798,3091,2576],[1734,2961],[1735,2958],[1799,3084],[1799,3085],[14096,1736],14098,[14097,8378],[14096,8379],[14033,8380],14097,14098,14098,[14096,1731],[14032,1800],[14032,8570],[14099,8634],8694,8695,8698,[14098,8952],[14099,8953],8693,8884,8885,[1799,8629],[1799,8565],1734,1798,1734,1799,1735,[1734,8570],[1799,8827],[14034,1800,1365],[14096,14032,1366],[14096,14673,1367],14738,14098,14033,[14099,14096,1173],1174,[1735,1175],[1799,1176],[1799,2193],[1799,2194],[1799,2195],[1799,2196],[14033,1862],[14035,1670],[14032,1669],[14033,1860],[1798,8570],[1735,8630],[1798,8631],[1798,8632],[1734,8633],[1734,8565],1799,1735,1735,1734,1734,1798,1798,1734,1799,1735,[14096,1800],14097,14099,14033,14098,14032,[14097,1604],[14096,1540],1798,1798,1798,[1734,2065],[1734,2066],[1798,2067],[1799,2068],[14097,1863],[14032,1864,156],[14096,157],158,27,24,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[8245,13985],[8246,13986],[8249,13987],[8250,13988],12494,12430,[13584,12431],[13587,8245,13985],[13584,8246,13986],[13584,8249,13987],[13650,8250,13988],[13650,12686],[13651,12687],[13650,12688],13587,13587,[13649,13320],[13585,13321],[13649,13322],[13650,13323],[13585,13324],13584,13587,[13643,13588],13643,[13643,13583],[13584,13007],[13584,13008],13584,[13649,13261],[13651,13262],[13584,13263],13648,13649,[13650,12615],[13650,12616],13648,13585,13587,13586,13587,13587,[13649,12686],[13648,12750],12751,[13584,12752],13649,[13585,13320],[13651,13321],[13584,13322],[13651,13323],[13649,13324],13648,13585,13648,13648,[13648,12873],[13584,12874],[13650,12875],[13587,12876],[13585,12877],[13649,12874],[13648,12875],[13649,12876],[13585,12877],12744,[13587,12745],[13586,12748],[13586,12749],[13584,12750],12751,[13649,12874,13128],[13584,12875,13129],[13650,12876,13130],[13586,12877,13131],[12744,13132],[13585,12745],[13649,12681],13586,13584,[13643,13715],[13643,13716],13643,[13643,13583],[13584,13197],[13648,13198],[13643,13652,13199],13643,13643,[13643,13520],13587,[13650,12424,13192],[13586,12425,13193],[13651,12426,13194],[13584,12430,13195],[13648,12431,13196],13584,[13648,15946],[13587,15947],[13649,12487,15948],[13587,12488,15949],[13648,12489,15950],[13651,15951],13584,[13587,12494],[13648,12426],[13648,12429],[13651,12430],[13643,12431],[13643,13456],13648,13584,13587,[13651,13325],[13651,13326],[13584,13327],13650,13648,13650,13587,13649,[13643,13392],[13643,13458,3750],[13643,3814],3874,3875,3878,[3635,3816],3636,3701,3700,3701,3637,[3699,6034],[3701,6035],[3701,6036],3635,[3705,3443],[3706,3444],[3706,3445],[3704,3509],[3641,3570],[3707,3762],3699,3637,3701,3636,[3636,5970],[3700,5971],[3635,5972],[3707,3510],3704,[3705,3569],3635,[3323,2153],[3700,2154],3701,3700,3635,[3707,3766],3706,[3641,3697],3636,2684357884,3699,[3699,6098],[3701,6099],[3635,6100],3700,3699,3701,3636,[3636,5970],[3637,5971],[3700,5972],[3641,3442],[3641,3508],3640,[3641,3571],3637,3701,[3701,6098],[3700,6099],[3635,6100],3637,[3706,3765],[3704,3766],[3705,3506],[3707,3442],3637,3700,3701,3700,3701,3700,3388,3699,3700,[3640,3509],[3640,3570],3699,3635,3700,3637,3636,3635,[3701,3679],[4947,3680],4947,4883,[4946,3299],4946,4882,4882,4947,4946,4946,[4947,4865],4866,[4882,4867],[4883,4868],[4947,4491],[4882,4803],4947,[4353,4884],4353,[4353,4815],4882,4882,4882,4947,4883,4944,[4353,4754],4353,[4353,4943],4883,4882,4947,4947,4944,[4353,4688],[4353,4754],4353,4353,[4353,4737],[4946,4738],4882,4947,4947,4882,4882,4882,4946,4883,4882,4882,4946,4880,[4353,5012],[4353,4753],[4353,4689],[4353,4689],[4353,4690],[4353,4691],4945,4946,4882,4947,4882,4882,4946,4883,4946,4946,4946,[4882,2432],4947,4947,4882,4947,4883,4946,4947,4947,4882,4883,4946,4882,4883,4946,[4947,4808],[4883,4809],[4946,4810,3042],[4882,3043],[4946,3044],4883,4947,4883,4947,4882,4883,4946,4946,4947,[4353,4884,4616],[4353,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,1040,1040,979,1040,979,980,980,1104,[980,588],[1039,399],[980,3219],[979,3474,3220],979,915,[915,2069],[915,2070],[916,2071],[979,2072],[915,2020],916,915,916,916,980,980,[915,2133],[916,2134],[916,2135],[915,2136],[915,2084],915,[916,3404],3405,3406,3407,3408,3409,3410,[915,3474],915,979,915,979,916,979,916,980,916,[980,3469],[915,3470],[979,3471],[979,3474],915,915,979,915,980,980,980,915,980,916,979,[979,2010],980,[915,3469],[916,3470],[979,3471],[980,3474],980,916,[980,3404],3405,3406,3407,3410,[980,3470],[980,3471],3340,[525,3341],[531,3277],464,594,[532,1717],[531,1718],[527,1719],[525,1720],530,528,532,[530,16764],[525,3219],[979,3220],915,1107,[1108,1941],[916,1942],[915,1943],979,979,979,915,[915,3404],3405,[915,3148],980,980,1104,1039,[916,2069],[915,2070],[1103,2071],[1039,2072],[1104,2020],915,[1039,1731],1735,1735,1799,1799,1799,[1735,2511],1798,1734,1734,1734,1799,1735,1798,[1735,2638],[1799,2639],[1735,3090,2640],[1734,3025],[1734,3022],[1799,3085],1735,[14096,1800],14098,14096,[14033,8443],[14035,8444],14099,14097,14034,[14035,1669],[14097,1670],[14099,8507],8698,[14098,8758,16697],[14033,8759],[14096,8762],14099,14096,[14096,8757,16697],[14034,8948],[14098,14544,8949],8693,[1799,8564],[1734,8565],1734,1735,[1798,8570],[1735,8630],[1798,8634],[14099,1862,8891],[14032,1864],14035,14738,14098,14034,14034,[14097,1604,1237],1238,[1735,1239],[1734,1240],[1798,1241],[1734,2258],[1798,2259],[14033,1800],14099,14096,14032,[14034,8570],[14096,1603,8571],8694,8695,8696,8697,[1735,8629],[1799,8630],[1799,8631],[1798,8565],1735,1798,[1799,8570],[1798,8630],[1798,8631],[1799,8565],[14034,1861],[14033,1670],14099,14098,14032,14032,14032,[14098,1603],1734,1734,1799,1734,[1799,2129],[1735,2130],[1798,2131],[14032,1670,2132],14035,14096,[14096,156],[14097,91],[14097,88],[14099,91],[14034,92],93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8371,[12972,8372,14049],[12909,8310,14050],[12973,8313,14051],[12973,8314,14052],8315,12494,[12495,8308],[12908,8309,14049],[12973,8310,14050],[12972,8313,14051],[12909,8379,14052],[13650,12750,8380],12751,[13650,12752],13586,13584,[13648,13384],[13649,13385],[13648,13386],[13585,13387],[13585,13388],13651,13585,[13643,13652],13643,[13643,13711],13585,13587,13648,[13648,13325],[13586,13326],[13585,13327],13651,13649,[13586,12679],[13587,12680],[13584,12681],13651,13649,[13650,12686],[13585,12746],[13587,12747],[13587,12687],12814,[13585,12815],13648,13587,[13585,13384],[13585,13385],[13586,13386],[13651,13387],[13587,13388],13651,13648,13585,13584,13651,13649,13585,13650,13648,13584,13648,13650,13587,[13586,12808],12809,12812,12813,12814,[13586,12815],[13587,13192],[13651,13193],[13585,5638,13194],[13648,13195],[13586,12808,13196],12809,[13651,12552],13649,[13643,13523],13643,13643,[13643,13456],13585,[13584,13261],[13585,13262],[13648,13263],[13643,13392],[13643,13396],13643,[13643,13647,12487],[13650,12488,13256],[13649,12489,13257],[13584,13258],[13649,12494,13259],[13584,12495,13260],[13586,12362],[13651,12365,16010],[13648,12362,16011],[13584,12488,16012],[13649,12489,16013],[13648,16014],[13585,16015],[13587,13133],[13586,13134],[13650,13135],13584,[13584,12494],[13649,12495],[13643,13647,12496],13649,13585,13585,13650,13584,13648,13586,13586,13648,13651,13585,[13649,3750],[13649,3751],3878,[3637,3938],[3637,3939,5906],[3699,3942,5907],[3635,5908],3637,3700,[3707,3765],3636,3699,[3637,6098],[3637,6099],[3701,6100],3699,3635,3636,3636,[3705,3702],3704,3643,[3706,3761],3701,3637,3699,[3636,6034],[3637,6035],[3700,6036],[3641,3638],3705,[3706,3633],3701,3637,3699,[3700,5906],[3701,5907],[3642,3702,5908],3707,[3706,3506],3699,3636,3699,3701,[3636,6162],[3701,6163],3700,3699,3323,3701,3637,[3636,6034],[3701,6035],[3637,6036],3701,[3704,3702],3704,3705,[3642,3697],3635,[3635,6162],[3701,6163],3700,[3641,3702],3642,3640,[3706,3697,5906],[3700,5907],[3701,5908],3636,3636,3699,3701,3699,3699,3636,3700,[3640,3510],3640,[3706,3505],3701,3701,3699,[3700,5906],[3700,5907],[3701,3743,5908],[4882,3744],[4883,3745],4882,4882,4882,4946,4946,4947,4946,4946,4946,[4883,4930],4931,4932,4555,[4882,4802],[4880,4803],[4353,4819],5121,[4353,4879],4946,4882,4946,4883,4883,4946,4944,[4353,4688],4945,4882,4947,4882,4947,4883,4947,4944,[4353,4689],[4353,4690],[4691,4801],[4883,4802],[4882,4803],4883,4882,4946,4882,4883,4882,4946,4946,4882,4946,[4353,4948],[4353,4752],4945,4947,4947,[4947,2430],4883,4946,4883,4947,4947,4947,4947,4883,4882,4882,4882,4883,[4883,2496],[4883,2309],[4947,2181],4947,4883,4947,4883,4946,4882,4947,4947,4947,4947,4882,[4882,4808],[4882,4872],4873,[4946,4874,3106],[4883,3107],[4947,3108],4882,4880,[4353,5010],[4353,5011],4881,4882,4947,4946,4947,[4353,4756],[4353,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,915,1039,1039,1104,1103,[979,1941],[1040,1942],[1104,1943],1040,[915,3282],[1103,3283],[980,3284],979,979,[979,2133],[980,2134],[980,2135],[980,2136],[915,2084],916,916,916,916,980,979,980,[979,2198],[915,2199],979,980,980,915,[915,3469],[980,3470],[916,3471],[980,3472],[980,3473],[979,3474],[915,972],[916,973],979,915,915,915,979,915,980,[916,1941],[979,1942],[979,1943],980,915,915,979,916,979,916,[916,1941],[979,1942],[915,1943],915,915,980,916,916,979,979,916,979,915,[915,1944],[979,1945],[980,3469],[980,3470],[915,3471],[916,3474],979,979,[980,3404],3405,[527,3276],[464,3277],595,[528,1781],[525,1782],[525,1783],[528,1784],527,525,464,[463,3282],[461,3283],[980,3284],915,1171,[1172,2005],[915,2006],[915,2007],979,915,916,916,980,[916,3147],[1040,3148],915,[1039,2010],1039,980,[1104,2133],[915,2134],[979,2135],[1039,2136],[1040,2084],1104,[1104,1795],1799,1798,1735,1799,[1735,2574],[1799,2575],[1799,2576],1799,1798,1735,1735,1734,1799,[1798,2702],[1735,2703],[1734,2704],1734,1798,1735,1799,[14097,1864],14097,14096,[14099,8507],[14098,8508],14097,14033,14098,14035,[14033,8570],[14096,8571],[14032,8572],[14032,16761],[14099,9842],[14096,9843],[14738,9844],14739,[14739,14292,16761],[14035,14479],[14035,14608],[12300,8757],8628,[1735,8629],[1735,8630],[1798,8631],[1799,8634],8502,8698,[14099,8955],14099,14034,14738,14738,14097,14738,[14033,1795,1301],1302,[1799,8764,1303],[1735,1304],1798,1734,1734,[14034,1670],14096,14035,[14097,8570],[14034,8634],8635,[14097,8758],[14096,8759],[14097,8760],[14099,8761],8693,8694,8695,[1734,8629],[1798,8632],[1798,8633],[1799,8634],8694,8695,[14034,1608,8564],[14035,8565],14032,14099,14096,14035,14098,14033,[14033,1667],[1799,8570],[1735,8630],[1799,8631],[1799,8565],[1799,2193],[1798,2194],[1799,2195],[14034,1544,2196],14033,14033,14099,14097,14033,14033,[14098,156],[14099,157],158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[12973,8436,14113],[12909,14114],[12908,14115],[12908,8378,14116],[12908,8379],8246,[12973,8372],[12908,8373,14113],[12972,14114],[12909,14115],[12908,8443,14116],[12814,8444],[13648,12815],13650,13649,13584,13586,[13584,13449],[13586,13450],[13586,13451],13649,13649,13587,13651,[13643,13458],13643,[13643,13711],[13643,13712],[13643,13713],13650,13584,13585,13649,13648,[13586,12743],12744,[13585,12745],[13585,12746],[13587,12747],[13584,12687],12810,12811,12751,[13585,12878],13584,13650,13587,13584,[13649,13449],[13648,13450],[13649,13451],13651,13651,13584,13650,13585,[13643,13714],[13643,13715],[13643,13712],13651,13648,13584,13584,13648,13586,13651,[13585,12873],[13650,12876],[13649,12877],[13650,12878],13649,[13584,13256],[13651,13257],[13650,13258],[13587,13259],[13585,13260],[13650,12615],[13648,12616],[13643,13652],13643,13643,13643,[13643,13647],13648,[13651,13325],[13648,13326],[13649,13327],13650,13586,[13643,13458],[13643,12551],[13585,12552,13320],[13585,13321],[13648,13322],[13651,13323],[13584,12494,13324],[13585,12426],[13648,12429,16074],[13584,12426,16075],[13586,12489,16076],[13650,16077],[13649,16078],[13651,16079],[13585,13197],[13585,13198],[13649,13199],13586,13584,[13651,12494],[13585,12430],[13586,12431],13587,[13643,13712],[13643,13713],[13643,13714],[13643,13715],[13643,13714],[13643,13715],13650,13650,13587,[13648,3623],3815,[3700,3942],3701,[3636,5970],[3699,5971],[3636,5972],3637,[3640,3510],3707,[3706,3570],3701,[3700,6162],[3636,6163],3635,3701,[3700,2217],[3637,2218],3700,3637,[3707,3446],3706,3707,[3707,3570],[3707,3764],3635,[3699,6098],[3637,6099],[3637,6100],[3704,3766],3641,[3640,3697],3699,3387,3699,[3636,5970],[3701,5971],[3700,5972],[3707,3442],3636,3699,[3635,5906],[3700,5907],[3700,5908],3699,3699,3699,3635,3637,3699,3637,[3701,6098],[3637,6099],[3701,6100],[3636,2217],[3636,2218],[3642,3509],3704,[3706,3570],[3706,3764],[3707,3765],3699,3635,[3640,3572],3641,[3641,3441],[3635,5970],[3699,5971],[3635,5972],3636,3636,3699,3636,[3637,5906],[3635,5907],[3701,5908],3636,[3641,3574],3706,[3706,3633],3636,3637,3699,[3699,5970],[3699,5971],[3636,3807,5972],3808,[4882,3809],[4946,3810],[4946,3811],[4883,3745],4882,4882,4882,4947,4883,4946,[4880,2979],[4353,4818,4995],[4353,4996],[4353,4619],4866,[4353,4948,4867],[4353,4752,4803],[4353,4688],4945,4883,4947,4946,4883,4882,4883,4947,4883,4947,4946,4946,4883,4947,4883,4883,4946,4882,4883,[4946,4865],4866,[4947,4867],[4883,2147488139],[4947,4869],[4883,4870],[4947,4871],[4947,4803],4947,4882,4883,4882,4880,[4353,5012],[4353,4817],4881,4883,4947,[4883,2494],[4882,2309],[4947,2181],4880,[4353,5008],[4353,5008],4881,4947,4946,4883,4883,4882,4882,[4882,2560],[4883,2373],[4883,2245],4947,4946,4947,4946,4946,4882,4946,4882,4882,4883,4946,[4883,4681],4936,[4882,4937],[4947,3170],[4946,3171],[4880,3172],[4353,5008],[4353,4818],5121,4353,[4353,4943],4882,4946,4946,4882,[4353,4820],[4353,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,915,[980,2010],915,1039,916,[1040,2005],[1103,2006],[980,2007],[1104,3282],[1104,3346],3347,[980,3348],[980,972],[980,973],980,[980,2198],[979,2199],915,979,980,979,916,916,1104,1103,1039,1104,979,980,916,980,916,980,979,979,979,980,916,979,979,915,979,915,916,915,980,916,[916,2005],[915,2006],[915,2007],979,979,915,980,980,916,915,[916,2005],[980,2006],[980,2007],915,979,916,915,980,979,916,915,980,915,[980,2008],[979,2009],979,979,916,979,980,980,915,[980,3469],3340,[464,3341],[527,3342],[527,3343,1845],[594,3342,1846],[528,3343,1847],[531,3277,1848],526,462,[528,3282],[594,3346],3347,[916,3348],916,980,[980,2069],[916,2070],[915,2071],[979,2072],[915,2020],916,915,915,[979,3211,1941],[980,3212,1942],[1040,1943],1040,1103,915,1039,[1103,2198],[916,2199],915,979,1104,[1039,1668],[1104,1860],1798,1735,1735,[1735,2638],[1735,2639],[1735,2640],1734,1734,1735,1735,1798,1735,[1734,2766],[1735,2767],[1735,2768],1799,1798,1798,[14033,1670],14033,14035,[14097,8570],[14098,8571],[8629,8572],[14034,8818],[14098,8819],[14098,8820],[14033,8821],[14035,8634],8635,[14099,8636],14033,[14675,9906],[14097,9907],[14033,9908],14097,[14032,14480],12300,12300,[14096,14414,16693],[14097,14415,8692,16694],8693,8694,8695,8698,[14035,8758],[14097,8762],14098,[14033,14283],[14098,14284],14097,14035,14034,14032,[14034,1859,1365],[14096,1860,1366],[14096,1861,8828,1367],[1799,8565],1735,1798,[14034,1608],14098,14096,14035,[14033,8507],8698,[14032,8699],14032,14033,14098,14099,[14098,8757],[14096,8758],[14034,8759],8693,8696,8697,8698,[14096,8758],[14098,8759],8628,[14035,8629],[14033,8565],14096,[14032,8570],[14096,8818],[14033,8819],[14098,8820],[14034,1731,8821],[1799,8634],8694,8695,[1735,8564],[1799,8565],[1734,2258],[1798,2259],1799,[14032,1607],14034,14034,14033,14097,14099,14033,[14099,221],222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[8245,13921],[8246,13922],[8249,13923],[8250,13924],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8499,[12972,8500,14177],[12909,14178],[12909,14179],[12908,14180],[12908,8378],[12973,8499,8310],[12909,8500,8373],[12908,14177],[12973,14178],[12973,14179],[12972,8507,14180],[13648,12878,8508],13648,13584,13584,13650,13650,13651,13649,13648,13649,13648,13584,13586,13587,[13643,13458],13643,13643,13643,[13643,13455],13649,13648,13648,13649,13587,[13651,12808],12809,12810,12811,12751,[13584,12874],[13584,12875],[13587,12815],13587,13587,13587,13651,[13643,13712],13649,13584,13648,13649,13650,13586,13650,[13643,13652],13643,13643,13643,[13643,13520],[13643,13712],13585,13649,13649,13651,[13650,13133],[13650,13134],[13651,13135],13586,13650,13648,[13649,13320],[13584,13321],[13648,13322],[13587,13323],[13586,13324],[13649,12679],[13585,12680],[13643,13522,12681],13643,[13643,13391],[13643,13392],13586,13650,13586,13648,13587,13650,13651,13587,[13648,12615],[13648,12616,13384],[13648,13385],[13649,13386],[13585,13387],[13584,13388],13586,[13649,16138],[13585,16139],[13586,16140],[13585,16141],[13586,16142],[13650,16143],[13586,13261],[13584,13262],[13648,13263],13650,13586,13586,[13586,12494],[13650,12495],[13643,13522,12496],13643,13643,13643,13643,13643,13643,[13643,13521],13586,13587,[13651,3623],[3700,3624],3701,3635,[3636,6034],[3700,6035],[3699,6036],3700,[3643,3638],3642,3706,[3705,3761],3637,3700,3699,3701,[3700,2281],[3387,2282],3701,3700,[3643,3573],3643,[3704,5906],[3705,5907],[3704,5908],[3705,3570],[3699,6162],[3699,6163],[3643,3573],3705,[3643,3506],3637,3701,3699,3637,[3699,6034],[3636,6035],[3635,6036],3637,3701,3635,[3700,5970],[3636,5971],[3636,5972],3635,3637,3636,3701,3387,3700,3700,[3700,6162],[3636,6163],3701,[3635,2281],[3701,2282],3635,[3707,3446],3706,3642,3707,[3705,3697],[3640,3702],3705,3705,[3707,3697],[3700,6034],[3699,6035],[3700,6036],3700,3701,3700,3700,[3635,5970],[3636,5971],[3700,5972],3699,[3640,3638],3707,[3641,3761],3700,3701,3637,[3637,6034],[3636,6035],[3636,6036],[3636,3872],3873,3874,3875,[4882,3744],[4882,3745],4882,4882,4947,4946,[4946,3042],[4353,4948,3043],[4353,3044],4353,4353,[4353,4930],4931,[4947,4674],4946,4882,4882,4946,4882,4882,4947,4946,4882,4947,4947,4882,4947,4880,[4353,5009],[4353,5008],4881,4883,4882,4947,4883,[4882,4930],4931,2147488203,4933,4934,4935,[4947,4802],[4946,4803],4946,4946,4947,[4353,4948],[4353,5074],[4353,5074],[4353,4943],4946,4947,[4882,2558],[4946,2373],[4883,2245],[4353,4756],[4353,5075],[4353,5074],[4353,4943],4883,4946,4946,4946,4946,4947,[4883,2624],[4946,2437],4947,4882,4947,4883,4946,4882,4947,4883,4946,4883,4947,4946,[4882,4745],[4882,4746],4947,[4947,3234],[4947,3235],[4353,4948,3236],4353,5057,4353,[4353,4687],4945,4882,4882,4883,4947,[4353,4884,4808],[4353,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,1039,980,1040,1104,916,[1104,2069],[1104,2070],[979,2071],[915,3155,2072],[3410,2020],[916,3411],979,915,980,980,915,916,979,1103,1040,915,916,1103,1039,1104,1039,979,980,1043,1044,980,915,916,916,980,916,915,980,916,980,915,979,980,916,916,915,980,[979,2069],[915,2070],[979,2071],[979,2072],[916,2020],979,916,979,916,979,[915,2069],[980,2070],[916,2071],[915,2072],[916,2020],980,[915,972],[1043,973],1044,980,916,916,980,915,915,916,[915,1941],[980,1942],[915,1943],980,980,915,916,[915,3404],3405,3406,3407,3406,3407,[461,3341],[463,3342],[526,3343],[595,3346],3410,[1043,3411],1044,916,916,[1039,2133],[915,2134],[1040,2135],[979,2136],[979,2084],980,915,[979,3020],[915,3021,2005],[1040,3085,2006],[980,2007],915,1104,1040,1104,915,1103,980,1103,1103,1040,1103,[1103,1668],1799,1798,[1734,2702],[1798,2703],[1798,2704],1735,1735,1799,1799,1799,1734,1734,[1735,2831],1799,1734,1735,[14097,1864],14033,14097,[14097,8570],[14099,8634],8635,[8693,8636],8882,8883,8884,8885,8698,[14033,8699],14738,14033,14674,14738,14737,14737,[14035,14544,16697],12301,12300,[14097,14478,16757],[14034,16758],[14096,8757],[14097,8758],[14035,8759],[14032,8762],14097,14035,14035,[14032,14347],[14033,14348],14738,14673,14033,14097,14099,14097,[14034,8892],[1798,8564],[1799,8565],1798,[14034,1672],14033,14096,[14098,8570],[14097,8571],[14034,8572],14097,[14096,14292],[14099,14479],[14033,14223],[14099,14224],[14098,14293],14098,14032,[14098,8757],[14099,8760],[14034,8761],[14035,8762],14035,14096,[14099,8692],8693,[14096,8629],[14098,8631],[14097,8634],8882,8883,8884,8885,8698,[14097,8758],[14035,8759],8628,[1798,8629],[1735,8565],1799,1798,1734,[14034,1606],14099,14032,14033,14032,14035,[14034,285],286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8308,[12908,8309,13985],[12973,8310,13986],[12972,8313,13987],[12972,8314,13988],8315,0,0,0,0,0,0,0,0,0,0,0,8245,8246,8250,0,0,0,0,0,0,8308,[12909,8309],[12973,8373,14241],[12972,14242],[12973,14243],[12909,14244],12908,[12973,8563],[12908,8564],[12909,8565,14241],[12973,14242],[12972,14243],[12908,8378,14244],[12909,8314],[13586,8315],13650,13650,13649,13585,13585,[13643,13713],[13643,13714],[13643,13715],13584,13649,13648,13649,13584,[13643,13396],13643,13643,[13643,13583],13648,13587,13587,13586,13650,13585,[13585,12873],[13649,12874],[13586,12875],[13585,12815],13650,13587,13586,13584,13587,[13643,13712],[13643,13522],13643,[13643,13520],13648,13650,13586,13587,13584,13585,13586,[13643,13392],[13643,13395],[13643,13396],13643,13643,[13643,13711],[13643,13712],13649,13587,[13586,13197],[13649,13198],[13585,13199],13587,13585,13648,[13651,13384],[13651,13385],[13586,13386],[13584,13387],[13650,13388],[13651,12743],12744,[13643,12745],[13643,13456,12681],13586,13651,13648,13585,13584,13651,13651,13650,13648,13649,[13650,12679],[13649,12680],[13587,12681,13449],[13586,13450],[13649,13451],13649,13586,[13587,16202],[13584,16203],[13584,16204],[13585,16205],[13587,16206],[13586,16207],[13586,13325],[13586,13326],[13585,13327],13587,13651,13648,13651,[13648,12559],[13643,12560],[13643,13457],[13643,13393],[13643,13394],[13643,13395],[13643,13396],13643,13643,[13643,13520],13586,[13586,3687],[3700,3688],3636,3388,[3699,6098],[3637,6099],[3637,6100],3699,3699,[3642,3442],[3642,3508],3704,[3641,3571],[3704,3765],3637,3635,3700,3635,3701,[3704,3702],3705,3705,[3643,3441,5970],[3642,3508,5971],[3707,5972],3707,[3705,3761],[3643,3766],3640,3704,[3705,3697],3637,3637,3324,3700,[3701,6098],[3636,6099],[3700,6100],3635,3699,3701,[3699,6034],[3701,6035],[3699,6036],3701,3700,3699,3636,3635,[3640,3762],[3706,3763],[3642,3764],[3704,3765],[3705,3762],[3643,3763],[3642,3764],[3640,3765],3637,[3643,3443],[3640,3444],[3641,3509],[3640,3571],[3706,3766],3643,[3707,3506],3699,[3637,6098],[3699,6099],[3701,6100],3700,3701,3637,3700,[3699,6034],[3700,6035],[3700,6036],3636,3701,[3707,3508],3641,[3641,3697],3636,3637,[3636,6098],[3700,6099],[3637,6100],3701,[3699,3937],[3701,3938],[3701,3939],3808,[4946,3809],[4946,3745],4947,4946,4883,[4946,3106],[4944,3107],[4353,4754,3108],4353,4353,[4353,4687],[4688,4737],[4947,4738],4882,4946,4946,4882,4880,[4353,5010],[4353,5011],4881,4946,4882,4946,4882,4946,[4353,4948],4353,4353,[4353,5007],[4353,5010],[4353,5009],4881,4880,[4353,5009],[4353,4818,4995],[4353,2147488267],[4353,4943,4997],[4882,4998],[4946,4999],4866,[4883,4867],[4946,4803],4883,4882,[4353,4756],[5057,5075],[4353,4753],4945,4946,4883,[4882,2622],[4882,2437],4883,[4353,4820],[5057,5075],[4353,5075],[4353,4943],4882,4946,4883,4946,4883,4882,4946,4946,4882,4883,4946,4882,4882,4883,4947,4882,4882,4883,4946,4947,[4883,4616],[4882,4552],[4947,4553],4947,[4882,3299],[4353,4948],4353,4353,[4353,4753],4945,4946,4882,4883,4883,[4946,4808],[4948,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,979,979,915,1043,1044,[1040,2133],[1104,2134],[916,2135],[916,3155,2136],[915,3156,2084],916,915,[915,1944],[915,1945],916,980,979,1043,1044,1039,915,1040,1039,915,915,1039,915,1039,1107,1108,916,916,980,[980,1941],[979,1942],[980,1943],979,980,916,1039,1103,1104,1043,1044,916,916,915,[916,2133],[916,2134],[979,2135],[980,2136],[980,2084],916,916,1039,979,916,[1040,2133],[915,2134],[980,2135],[980,2136],[980,2084],916,979,1107,1108,979,980,916,980,915,979,980,[980,2005],[915,2006],[979,2007],979,915,979,915,980,[916,3469],[980,3470],[980,3471],[915,3470],[916,3471],3405,3406,3407,3410,[979,3474],1107,1108,980,[915,1946],915,[980,2198],[1103,2199],1040,916,980,[980,3083],[979,3084],[1040,3085,2069],[980,2070],[1040,2071],[1104,2072],[915,2020],1103,1104,1039,1039,1039,1104,1040,1040,1039,916,[915,1795],1735,[1734,2766],[1735,2767],[1799,2768],1735,1799,1799,1735,1799,1799,1798,1798,1735,1798,[14033,1670],14032,14034,14097,[14035,8507],8698,[14098,8699],[14096,8757],[14098,8946],[14097,8947,16697],[14098,8948],[14099,8949,13538],[14097,8762,13539],[14035,13540],[14098,13541],14675,14032,14675,14673,14739,[14097,14480,16761],12300,12300,[14737,14478],14675,14032,14098,[14032,13538],[14098,13539],[14098,13540],[14035,13541],14032,14099,14032,14097,14097,14098,14098,[14738,13534],[14032,13535],[14032,8956,13536],8628,[1799,8629],[1735,8822],[14033,1736,8823],[14098,8824],[14034,8825],[14096,8634],8635,[14035,14542,8636],14674,[14035,14544],[12300,13538],[14097,14414,13539],[14098,14416,13540],[14739,14606,13541],[14675,14223],[14033,14224],[14033,14293],14097,14034,14035,14034,[14096,14292],[14098,14479],[14033,14223,8757],8693,8502,8698,[14034,8946],[14099,8947],[14097,8948],[14097,8949],[14097,8762],14099,14034,[14032,8692],8693,[1799,8500],1734,1734,1798,1798,[14034,1544],14098,14035,14098,[14097,8570],[14032,8571,8378],[8572,8314],8315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8245,8249,8250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8245,8246,8249,8250,0,8308,[12908,8372],[12973,8373,14049],[12909,14050],[12908,14051],[12973,8378,14052],[12908,8379],8380,0,0,0,0,0,0,0,0,0,8371,[12973,8372,16693],[12973,8310,16694],[12909,8314],8315,0,0,0,0,8308,[12973,8372],[12972,8373,16693],[12973,16694],12972,12908,12909,12908,[12909,8627,16693],[8628,16694],[12973,8629],[12908,8565],12973,12973,[12909,8378],[12972,8379],[13587,8380],13584,13584,13585,[13643,13652],13643,13643,13643,[13643,13520],13649,13587,13648,[13643,13715],[13643,13716],13643,[13643,13457],13585,13586,13587,13584,13585,13587,13587,13648,13649,13648,13584,13586,13585,13586,13649,[13643,13652],13643,13643,[13643,13456],[13643,13392],13586,13648,13650,13584,13651,13584,13649,13648,13651,[13643,13523],13643,13643,13643,13643,[13643,13455],13584,[13587,13261],[13587,13262],[13585,13263],13650,13586,13648,13587,[13584,13449],[13651,13450],[13651,13451],13584,13586,[13651,12808],12809,[13587,12552],13651,13586,13649,13649,13584,13649,13649,13651,13649,13585,[13587,12743],12744,[13584,12745],[13587,12681],13584,13584,13584,[13584,16266],[13649,16267],[13649,16268],[13585,16269],[13584,16270],[13587,16271],13650,13650,13587,13649,13651,13651,13651,[13651,12623],[13586,12624],13586,13585,13587,13648,13587,[13643,13459],13643,13643,[13643,13711,3750],[13650,3751],[3701,3752],3701,3637,[3635,6162],[3700,6163],3700,3700,3701,3700,[3705,3702],[3705,5906],[3704,5907],[3642,5908],[3643,3761],3636,3635,3635,3701,[3640,3766],3704,[3643,3507],[3635,6034],[3700,6035],[3704,3442,6036],[3640,3508],3640,3706,3706,3706,[3706,3761],[3642,3764],[3642,3765],3637,3636,[3699,6162],[3637,6163],3635,3699,3635,3700,[3701,6098],[3637,6099],[3637,6100],[3641,3763],[3705,3764],[3641,3765],[3706,3763],[3640,3572],3707,3641,3642,[3704,5906],[3642,5907],[3707,5908],3641,3704,[3704,3571],[3704,3764],[3643,3765],[3705,3766],3706,3641,3704,[3707,3761],[3706,3762],[3700,6162],[3637,6163],3635,3701,[3699,2217],[3701,2218],3637,[3637,6098],[3637,6099],[3701,6100],3635,3637,3635,[3641,3442],3636,3637,3636,[3637,6162],[3700,6163],3701,3637,3636,3635,3699,[3637,3872],3873,[4946,3616],4946,4883,4947,[4882,3170],[4946,3171],[4353,4948,3172],4353,[4353,4752],[4945,4609],[4946,4610],[4883,4611],4883,4883,4880,[4353,5008],[4353,4819],4353,4353,[4353,4943],4947,4882,4946,4946,4883,4944,[4353,4754],[4353,4753],[4353,4692],4353,4353,[4353,5007],[4353,4818],4353,4353,[4353,4752],4945,4947,4946,[4883,4930],4931,[4946,4674],4946,4882,[4353,4820],[4353,5074],[4353,5007],4881,4883,4882,4946,4946,4882,[4353,4884],[4353,5074],[4353,5075],[4353,4816],[4353,5009],[4353,5009],[4353,5010],[4353,5011],4881,4883,4946,4883,4946,4883,4883,4882,4883,4947,4880,[4353,5009],[4353,5010],[4353,5011],4881,4947,4882,[4946,4616],[4947,4617],[4353,5010,4618],[4353,5011],[4353,5012],4353,[4353,4752],4945,4882,4882,4882,4946,4883,[4947,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,1104,1103,1104,1107,1108,1104,[1103,2198],[915,2199],[916,3219],[916,3220],916,980,[916,2008],[916,2009],979,980,980,1107,1108,1040,916,1103,916,915,1040,915,916,980,1171,1172,979,980,916,[980,2005],[915,2006],[980,2007],979,915,980,980,1040,979,1107,1108,1040,915,980,1040,[979,2198],[915,2199],916,980,915,1040,1104,915,980,916,[980,2198],[916,2199],980,979,979,916,1171,1172,1043,1044,915,915,915,1040,1040,[1040,2069],[980,2070],[979,2071],[915,2072],[916,2020],980,979,980,979,980,916,916,915,[980,3469],[915,3470],[980,3471],[915,3474],979,1171,1172,979,980,1040,1039,[1104,62],[1104,972],[979,973],980,[915,3147],[1039,3148],[915,2133],[1039,2134],[1103,2135],[979,2136],[1040,2084],1040,1039,980,1103,1103,980,1040,915,979,[980,1539],1734,1798,1798,[1798,2831],1799,1734,1735,1799,1735,1799,1735,1735,1734,1799,[14035,1800],14032,14675,14096,14034,[14034,8443],[14099,8444],[14033,16697],14098,14097,[14098,16761],14033,[14034,13602],[14099,13603],[14034,13604],[14032,13605],[14096,13606],[14032,16697],14674,14033,[14675,14865],[14033,14544,8245],[12300,8246],[12300,8249],[14032,14542,8250],14035,14098,14097,[14096,13602],[14096,13603],[14034,13604],[14096,13605],[14098,13606],14096,14035,[13800,14160],14098,14033,[14097,13597],[14675,13598],[14738,13599],[14034,13600],[14034,8692,13601],8693,8886,8887,8888,8889,8698,[12300,8699],[14097,14222],[14034,14223],[14034,14608],[12300,13602],[14098,14542,13603],[14737,13604],[14032,14415,13605],[14034,14415,13606],[14099,14416],[14737,14606],[14673,14607],[14675,14543],[14032,14293],[14096,14865],[14034,14544],12300,12300,[12300,8757],[14033,14478,8759],[14035,8762],14033,14033,14099,14098,14096,14096,14035,14098,[14033,8563],[1798,8564],[1735,8565],1734,1734,1799,1735,[14098,1607,8570],[14034,8630],[14098,8631],[14096,8634],8635,[14034,8636,8378],[14099,8379],8380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8245,8246,8249,8250,0,8308,[14097,8309],[14033,8313,16697],[14032,8314],8315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8308,[12908,8309],[12909,8310],[12973,8313],[12973,8314],8246,[12908,8372],[12973,8373],[12972,14113],[12908,14114],[12973,14115],[12973,14116],[12908,8443],8444,0,0,0,0,0,0,0,0,0,8435,[12972,8436,16757],[12908,16758],[12973,8378,13921],[12972,8379,13922],[8246,13923],[8249,13924],8246,8249,[12972,8372],[12908,8373],[12908,16757],[12909,16758],12973,12972,12973,12972,[12972,16757],[12972,8692,16758],8693,[12973,8436],12972,12973,12972,[12972,8443],[13648,8444],13649,13649,13648,[13643,13523],13643,[13643,13391],[13643,13458],13643,[13643,13647],13649,[13643,13522],13643,13643,13643,[13643,13647],13649,13587,13649,13651,13648,13650,13585,13584,13587,13585,13649,13649,13584,13649,13648,[13643,13716],13643,13643,[13643,13647],13585,13584,13649,13648,13586,13587,13587,13586,13651,[13643,13522],13643,13643,[13643,13456],[13643,13396],13643,[13643,13583],13650,[13651,13325],[13648,13326],[13648,13327],13650,13585,13585,13586,13586,13584,13651,13651,13650,13585,[13587,12615],[13648,12616],13587,13586,13585,13648,13587,13584,13587,13649,13648,13587,13649,[13587,12808],12809,[13643,13520,12552],13650,13649,13650,[13584,16330],[13584,16331],[13650,16332],[13649,16333],[13650,16334],13585,13649,13585,13584,13650,13585,13648,[13649,12686],[13649,12687],[13587,12688],13648,13587,13584,13586,13650,13585,[13643,13392],[13643,13396,3750],[13643,3751],3815,[3635,3816],3701,3701,3700,3699,3700,3387,3701,3700,3700,[3707,3443,5970],[3707,3445,5971],[3641,3442,5972],[3643,3446],[3706,3570],[3640,3764],[3643,3765],[3705,3572],3704,[3642,3506],3701,[3636,6098],[3637,6099],[3637,6100],3701,[3643,3443],[3705,3445],[3704,3508],3707,3641,3640,3640,[3704,3761],[3641,3763],3636,3635,3636,3637,3324,3699,[3636,6162],[3636,6163],[3641,3572],3705,3643,[3706,5906],[3640,5907],[3640,3506,5908],[3640,3443],[3707,3444],[3643,3445],[3705,3442,5970],[3707,3443,5971],[3705,3444,5972],[3704,3445],[3641,3508],3643,3643,3704,3640,3643,3643,3707,3643,3704,[3641,3571],[3707,3762],[3641,3762],3637,[3635,2281],[3701,2282],3636,[3636,6162],[3637,6163],3699,3637,3636,3637,[3636,5906],[3701,5907],[3636,5908],3635,3700,3636,3699,3635,3635,3636,3635,3699,[3635,3615],[4882,3616],4947,4882,4883,[4882,3234],[4883,3235],[4944,3236],[4353,4688],4945,[4883,4673],[4883,4674],4947,4880,[4353,5008],[4353,4818],4353,4353,4353,[4353,4753],4945,4882,4882,4946,4947,4883,4883,4944,4945,4944,[4353,4688],[4353,4754],4353,4353,5121,[4353,4753],4945,4947,4947,4883,4946,[4883,4737],[4946,4738],4883,4946,[4353,4884],[4353,5075],[4353,5074],[4353,4816],[4353,5008],4881,4883,4882,4880,[4353,4818],[4353,5074],[4353,4753],[4353,4688],[4353,4688],[4353,4754],[5057,5074],[4353,4687],4945,4947,4947,4947,4947,4882,4882,4883,4946,4880,[4353,4818],4353,4353,4353,[4353,4816],4881,4882,4946,[4947,4681],[4353,4682],4353,4353,[4353,4687],4945,4883,4882,4883,4946,4883,4882,[4882,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1103,1941],[979,1942],[1040,1943],979,1171,1172,915,916,1039,[979,3090],[915,3026],[916,3027],916,915,916,916,916,916,1171,1172,980,1103,1104,1039,916,915,1040,915,916,916,916,980,916,915,[915,2069],[980,2070],[979,2071],[915,2072],[915,2020],979,980,1103,979,1171,1172,915,915,1104,979,916,916,980,1104,[1040,972],[916,973],915,1040,916,979,980,1040,1103,1040,979,915,1107,1108,1107,1108,1040,979,1103,1103,1039,[980,2133],[980,2134],[915,2135],[979,2136],[915,2084],979,980,979,916,915,979,[980,1941],[915,1942],[915,1943],915,980,916,916,979,979,915,915,980,[979,125],[980,126],[915,127],915,980,[916,3211],[979,3212],1103,[916,2198],[979,2199],916,1039,1043,1044,1043,1044,980,980,915,1104,980,[1040,1795],1799,1734,1799,1734,1734,1734,1735,1735,1799,[1734,13534],[1798,13535],[14032,1608,13536],[14033,1668],[14098,1860],[14098,1864],14035,14738,14673,14033,[14034,8507],[14034,8508],[14099,16761],14096,14097,14738,14739,[14673,13666],[14674,13667],[14674,13668],[14096,13669],[14033,13670],[14738,16761],[14673,8245],[14034,8249],[14739,8246],[14098,8309],[14099,8310],[14673,8313],[14099,8314],[14035,8315],14739,14738,[14739,13666],[14738,13667],[14674,13668],[14673,13669],[14035,13670],14097,[13799,13970],13799,[13799,13969],14035,[14032,13661],[14032,13662],[14673,13663],[14675,13664],[14096,13665],[14096,8757],[14035,8950],[14032,8951],[14033,8952],[14099,8953],[14034,14415,8762],[14099,14416],12301,12300,12302,[14035,14414,13666],[14675,13667],[14738,13668],[14675,13669],[14032,13670],14098,[14096,14415],[14675,14415],[14675,14416],[14035,14606],[14033,14607],[14032,14608],12300,12301,[14033,14414],14097,14033,14098,14099,14738,14674,14098,14675,14098,14035,[14097,8627],8628,[1799,8629],[1799,8822],[1799,8823],[1734,8824],[1734,8825],[1799,8634],8694,8695,8698,[14099,8699],14099,[14035,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8308,[14032,8309],[14099,8310,16697],[14099,8313],[14032,8314],8246,[14033,8372],[14097,8373],[14096,16761],[14035,8378],[14099,8379],8380,0,0,0,0,0,0,0,0,0,0,0,0,8371,[12908,8372],[12908,8373],12973,12973,[12908,8378],[12973,8310],[12909,8373,16693],[12973,16694],[12908,14177],[12909,14178],[12972,14179],[12973,14180],[12973,8507],8508,0,0,0,0,0,0,0,0,0,8499,[12973,8500],12973,[12908,13985],[12972,8378,13986],[12909,8310,13987],[12972,8313,13988],[12909,8310],[12909,8313],[12908,8373],12973,12908,12909,12972,12972,12908,12909,12973,12972,[12972,8499],[12909,8500],[12972,13921],[12972,13922],[12973,13923],[12972,8507,13924],[13585,8508],13585,13587,[13643,13652],13643,[13643,13456],13650,[13643,13652],13643,[13643,13711],[13643,13716],13643,13643,13643,[13643,13456],13650,13584,13648,13649,13586,13587,13648,13649,13584,13584,13586,13650,13648,13649,13648,[13643,13460],13643,13643,[13643,13457],13584,13584,13586,13586,[13650,12996],13585,13650,13648,13585,[13643,13652],13643,[13643,13456],[13643,13392],13649,13587,[13643,13392],13648,13651,13651,13584,13650,13585,13586,13584,13586,13651,13585,13648,13651,13585,13650,[13648,12679],[13586,12680],[13584,12681],13587,13651,13585,13584,13648,[13643,13713],[13643,13712],[13643,13713],[13643,13714],[13643,13715],13649,[13648,12551],[13643,12616],[13643,13455],13651,13584,13649,13587,13648,13651,13649,13585,13649,13651,[13651,4731],13649,13585,[13649,12686],[13648,12750],12751,[13584,12752],13585,13650,13648,13587,13586,13649,[13651,3750],[13648,3814],[3815,5906],[3700,3879,5907],[3635,5908],3699,3701,[3701,2217],[3701,2218],3636,3700,3701,3699,3699,[3701,6034],[3699,6035],[3635,6036],[3641,3510],3705,3640,3706,3640,[3640,3507],3699,3700,[3636,6162],[3637,6163],3699,3636,3701,3700,3637,[3705,3442],[3707,3442],[3705,3508],3704,3643,3705,[3643,3570],[3641,3763],[3641,3764],[3707,3765],3635,3635,[3706,3765],[3705,3573],3704,3707,3642,[3706,5970],[3707,5971],[3642,3697,5972],3635,3636,3637,[3701,6034],[3700,6035],[3701,6036],2684357948,3700,[3706,3443],[3705,3444],[3643,3445],[3705,3446],3706,[3707,3506,5906],[3643,3446,5907],[3642,5908],3640,3643,3706,3640,[3704,3570],[3641,3762],[3641,3763],3636,3701,3701,3699,3388,3699,3635,[3637,5970],[3635,5971],[3637,5972],3636,3699,3699,3700,3700,3635,3635,3637,3636,[3700,3679],[4883,3680],4882,4947,4947,4947,[4946,3299],4882,4883,4946,[4883,4737],[4883,4738],4880,[4353,4818],4353,4353,4353,4353,[4353,4687],4945,4947,4947,4946,4882,4947,4947,4883,4882,4947,4883,4947,4944,[4353,4689],[4353,4690],[4353,4691],4945,4947,4883,4947,4882,4947,[4883,4801],[4883,4802],[4946,4803],4882,4944,[4353,4755],[4353,5075],[4353,5074],[4353,5075],[4353,4816],[4353,5008],[4353,5008],[4353,4818],[4353,5075],[4353,4753],4945,4946,4882,4944,[4353,4688],4945,4947,4946,4883,4883,4947,4947,4882,4947,4880,[4353,5012],4353,4353,4353,4353,4353,[4353,5007],[4353,5008],4881,[4946,4745],[4353,4746],4353,[4353,4753],4945,4883,4883,4947,4946,4947,4883,[4883,4808],[4883,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[979,2005],[980,2006],[1103,2007],1104,980,916,1040,1104,1039,1040,[1104,3090],[1104,3091],[915,3092],979,915,979,980,915,916,916,1104,1039,916,979,1104,1040,979,1103,915,1103,915,915,980,915,[915,2133],[979,2134],[979,2135],[979,2136],[915,2084],916,979,916,916,1104,980,1039,916,915,1039,1104,1039,916,1103,915,1103,979,915,1104,1039,916,915,1039,1040,1040,915,1171,1172,1171,1172,1103,1040,916,1040,1040,979,[915,2198],[915,2199],980,980,980,1043,1044,980,916,979,[915,2005],[916,2006],[915,2007],915,980,915,915,915,979,1039,1039,1103,[1039,189],190,[980,191],979,915,[980,3275],[979,3276],[979,3277],1043,1044,1039,980,1107,1108,1107,1108,1103,916,915,979,915,[916,1668],[915,1860],1798,1735,1798,1735,1799,1735,1734,[1798,13597],[1799,13598],[1798,13599],[14033,1736,13600],[14032,13601],14099,14035,14032,[14674,13538],[14033,13539],[14034,13540],[14033,8378,13541],[14035,8314],[14099,8315],14032,14032,14675,14674,[14099,13730],[14096,13731],[14737,13732],[14737,13733],[14032,13734],[14033,8308],[14738,8309],[14738,8313],[14097,8310],[14033,8373,15309],[14034,15310],[14738,15311],[14099,8378],[14098,8379],[14033,8380],14032,[14097,13730],[14675,13731],[14739,13732],[14737,13733],[14737,13734],[13799,13908],13799,13800,13800,[13799,13903],[14099,13725],[14739,13726],[14673,13727],[14099,13728],[14097,13729],14098,[14099,15309],[14032,15310],[14032,15311],14096,14035,14032,[14096,14415],[14032,14415],[14737,14415],[14739,13730],[14098,13731],[14032,13732],[14737,13733],[14739,13734],14034,14674,14738,[14737,14480],12300,[14097,14414],[14673,14415],[14674,14415],[14097,14415],14097,14096,14739,14674,14032,14674,14097,14035,14034,14674,14674,14096,[14099,8692],8693,8886,8887,8888,8889,8698,[14098,8758],[14097,8759],[14033,8762],14035,14675,[14034,8507],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8245,8246,[14034,8372],[14032,8373],[14034,16761],14099,[14097,8378],[14099,8310],[14032,8373],14034,14034,14098,[14034,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,8435,[12973,8436],12909,12909,12908,12908,12973,[12972,16757],[12909,16758],[12909,14241],[12908,14242],[12973,14243],[12909,14244],[12972,8378],[12908,8314],8315,0,8245,8246,8249,8250,0,0,8308,[12973,8309],[12972,8373],12973,[12908,14049],[12909,14050],[12908,14051],[12973,14052],12972,12908,12908,12972,12973,12972,12908,[12972,13921],[12909,13922],[12972,13923],[12908,13924],12972,[12972,8435],[12972,8436],[12909,13985],[12973,13986],[12909,13987],[12908,8378,13988],[12909,8314],[13587,8315],13587,13648,[13643,13392],13648,13650,13648,[13643,13392],[13643,13396],13643,13643,[13643,13391],[13643,13392],13586,13587,13586,13584,13585,13648,13584,[13651,13128],[13584,13129],[13649,13130],[13649,13131],[13585,13132],13650,13651,13585,13651,[13643,13524],13643,[13643,13391],13585,13585,13584,13650,13584,[13585,13060],13587,13586,13650,13649,[13651,12361],[13643,12362],[13584,12366],13648,13587,13584,13650,13586,13587,13585,13584,13584,13586,13587,13648,13651,13586,13650,13586,13586,13585,13651,[13584,12743],12744,[13649,12745],[13586,12681],13651,13584,[13643,13715],[13643,13522],13643,13643,13643,13643,13643,[13643,13521,12424],[13643,13460,12425],[13643,12489],[13643,13583],13587,13585,13649,13586,13587,13586,13587,13585,13650,13587,[13586,4795],13648,13651,[13585,12559],12814,[13650,12815],13585,13586,13586,13649,13650,13648,13648,[13584,3623],3878,[3637,3879,5970],[3701,5971],[3700,5972],3637,3699,[3701,2281],[3701,2282],3636,3701,3637,3637,3636,[3637,6098],[3700,6099],[3635,6100],[3707,3574],3640,3706,3706,[3643,3507],3635,3635,3388,3700,3637,3636,3636,3701,3636,3636,3635,3635,3637,[3642,3443],[3707,3445,5906],[3704,3508,5907],[3642,5908],3640,3641,3642,[3642,3761],[3706,3766],3642,3643,3643,3704,3642,[3641,3441,6034],[3706,3442,6035],[3701,6036],3699,3636,3636,[3636,6098],[3636,6099],[3699,6100],3699,3636,3635,3700,3700,[3705,3573],3641,[3706,3697,5970],[3637,5971],[3705,3443,5972],[3643,3444],[3704,3445],[3706,3508],3704,3707,3706,3643,[3640,3570],[3704,3765],3701,3701,3637,3636,3636,[3701,6034],[3636,6035],[3637,6036],3636,3701,3636,3637,3699,3324,3701,3700,3636,[3700,3615],[4882,3616],4883,4883,4882,4946,4946,4947,4882,4882,[4946,4737],[4946,4738],[4353,4756],4353,4353,[4353,4687],[4353,4689],[4353,4690],4945,4947,4946,4883,4882,4883,4883,4947,4947,4947,4946,4946,4883,4883,4882,4946,4882,4883,4947,4883,4946,4882,4880,[4353,4819,4865],4866,[4882,4867],[4946,4803],4946,4944,[4353,4688],[4353,4755],[4353,5074],[4353,5075],[4353,5075],[4353,5074],[4353,4753],[4353,4755],[4353,4943],4947,4883,[4946,4808],[4947,4868],[4946,4869],[4947,4803],4882,4883,4882,4882,4883,4946,4947,4880,[4353,4819],4353,4353,5121,4353,4353,4353,4353,4353,[4353,4816,4808],[4883,4809],[4691,4810],[4353,4688],4945,4947,4882,4947,4946,4882,4946,[4883,4808],[4946,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1040,2069],[916,2070],[1040,2071],[1040,2072],[1040,2020],1039,915,1040,1103,1104,1104,[979,3155],[916,3156],979,915,979,915,979,979,[1103,1941],[979,1942],[915,1943],1040,1103,1039,979,979,1104,915,916,979,915,915,979,979,[980,2198],[916,2199],915,980,916,1040,1104,1040,979,979,1103,915,980,1104,1104,1039,915,1039,1103,980,915,1040,1104,1040,916,1040,915,1104,980,915,1103,1104,1103,1103,915,979,1103,1103,916,1040,915,1104,916,1103,979,1107,1108,915,916,915,[980,2069],[915,2070],[1040,2071],[979,2072],[916,2020],980,980,980,1043,1044,1039,1103,[916,253],[979,254],[980,255],980,915,[916,3339],3340,[980,3148],1107,1108,1039,1103,1171,1172,1171,1172,1103,916,979,1040,979,980,980,[915,1668],1799,1735,1798,1734,1735,1799,[14738,1860,13661],[14096,1863,13662],[14035,1861,13663],[14099,1864,13664],[14033,13665],14097,14099,14737,[14099,13602],[14738,13603],[14675,13604],[14675,13605],[14034,8378,13606],[14033,8379],[14033,8380],14097,14674,14033,[14035,13794],[14739,13795],[14738,13796],[14739,13797],[14035,8371],[14033,8372],[14098,8373],14032,14032,[14675,15373],15374,[14738,15375],14097,[14032,8443],[14737,8444],14673,[14674,13794],[14032,13795],[14675,13796],[14739,13797],14675,[13799,13972],13736,13735,13800,[13800,13967],[14035,13789],[14034,13790],[14738,13791],[14098,13792],[14673,13793],14035,[14098,15373],15374,[14035,15375],14034,14032,14099,14097,14096,14098,[14035,13794],[14098,13795],[14098,13796],[14032,13797],14738,14097,14737,14096,14674,[14032,14415],14738,14673,14673,14033,14675,14739,14032,14737,14032,14097,14098,14097,14097,14032,14032,[14096,13538],[14097,13539],[14096,8757,13540],[14033,8950,13541],[14099,8951],[14098,8952],[14034,8953],[14033,8762],14674,14099,14097,14034,14674,[14035,8378],[14097,8314],8315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8308,[14097,8309],[14035,8310],[14035,8373],14737,14675,14739,14098,14098,14801,14099,14096,14097,[14096,8507],8508,0,0,0,0,0,0,0,0,0,0,0,0,8499,[12972,8500],[12909,13921],[12908,13922],[12908,13923],[12973,13924],12909,12973,12972,12973,[13799,13034],12909,12972,12909,[12973,8378],[12908,8379],8246,[12908,8309],[12973,8310],[12973,8313],[12973,8314],8246,8249,[12909,8372],[12973,8373],12973,12972,[12909,14113],[12973,14114],[12973,14115],[12909,14116],12909,12972,12909,12973,12908,12973,12909,[12973,13985],[12973,13986],[12908,13987],[12909,13988],12972,[12973,8499],[12909,8500],[12909,14049],[12909,14050],[12908,14051],[12972,14052],[12909,8378],[12908,8379],[13648,8380],13650,13650,13651,13650,13586,13648,[13643,13460],13643,13643,[13643,13711],[13643,13712],13649,13585,13649,13585,13650,13650,13585,[13649,13192],[13650,13193],[13584,13194],[13649,13195],[13651,13196],13585,13651,13587,13649,[13643,13588],13643,[13643,13647],13648,13648,13648,13584,13648,13587,13586,13585,13650,[13651,12424],[13643,12425],[13643,12426],[13643,12430],[13651,12431],13587,13649,13584,13584,13586,13585,13585,13649,13585,13650,13587,13650,13587,13650,13650,13649,13648,13587,13584,[13649,12808],12809,[13585,12552],13586,[13643,13652],13643,13643,[13643,13391],[13643,13392],[13643,13458],13643,[13643,12487],[13587,12488],[13643,13524,12489],13643,[13643,13711],[13643,13712],13648,13586,13586,[13586,13128],[13584,13129],[13585,13130],[13587,13131],[13648,13132],13649,13584,13584,13649,[13584,12559],[13650,12560],13648,13651,13648,13648,13651,13587,13584,13648,[13584,3623],[3701,3624],[3700,6034],[3637,6035],[3699,6036],3637,3388,3636,3699,[3641,3762],[3705,3763],[3706,3764],[3642,3765],3699,[3635,6162],[3637,6163],3635,[3706,3638],3705,[3706,3441],[3642,3442],[3637,5906],[3635,5907],[3700,5908],3699,3635,3636,3636,3699,3700,3636,3701,3701,3388,3637,3701,[3637,5970],[3701,5971],[3641,3443,5972],[3643,3444],[3643,3445],[3706,3446],3705,3640,[3707,3506],[3641,3442],[3704,3443],[3640,3444],[3706,3445],[3699,6098],[3636,6099],[3636,6100],3636,3324,3699,[3635,6162],[3699,6163],3699,3635,3699,3388,3701,[3642,3510],3706,[3640,3441],[3635,6034],[3635,6035],[3700,6036],3635,3700,3699,[3704,3443,5906],[3704,3444,5907],[3704,3445,5908],[3641,3508],3643,3641,[3704,3570],[3707,3762],[3707,3763],3635,3700,[3636,6098],[3699,6099],[3637,6100],3700,3701,3636,3700,3636,3635,3635,3700,3635,[3699,3679],[4883,3680],4946,4946,4946,4883,4946,4946,4947,4946,[4947,4801],[4883,4802],[4353,4884,4803],4353,[4353,4752],4945,4946,4946,4882,4883,4883,4883,4947,4947,4882,4883,4882,4883,4882,4882,4882,4882,4947,4946,4883,4946,4946,4947,4883,4946,[4353,4756],5057,[4353,4930],4931,[4946,4674],4946,4882,4882,4944,[4353,4688],[4353,4755],[5121,5074],[4353,4687],4945,4944,4945,4947,[4947,4808],[4946,4809],4932,4933,[4882,4802],[4946,4803],4883,4882,[4882,4808],[4947,4868],[4883,4869],[4883,4803],[4353,4948],4353,4353,4353,4353,4353,4353,[4353,4753],[4353,4754],[4353,4808],[4353,4872],4873,[4947,4874],4947,4946,4883,4946,4880,[4353,5008],4881,4882,[4947,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[915,2133],[916,2134],[1040,2135],[1104,2136],[1039,2084],915,1043,1044,1104,1039,1039,[916,3219],[916,3220],916,916,980,916,979,916,[915,2005],[1104,2006],[916,2007],916,1104,980,1039,915,1104,1040,980,1104,979,980,980,980,915,980,979,980,915,980,915,915,1104,915,915,979,979,980,[1103,1944],[1103,1945],979,1103,915,915,980,916,1043,1044,980,1039,915,1040,979,916,980,915,915,979,1103,1040,916,1040,1040,1039,1104,1103,979,1043,1044,1171,1172,1104,1039,915,[915,2133],[979,2134],[915,2135],[979,2136],[916,2084],916,980,1043,1107,1108,1103,1039,979,916,915,979,916,980,[979,3147],[1043,3148],1044,1172,1040,1040,1039,1040,980,1104,[980,1946],980,979,1040,1040,916,979,979,[979,1859],[979,1860],[979,1861],[915,1862],[14032,1863],[14099,1671],[14034,13725],[14096,13726],[14033,13727],[14098,14737,13728],[14032,13729],14673,14034,14098,[14034,13666],[14673,13667],[14035,13668],[14097,13669],[14099,13670],[14032,8443],[14034,8444],14096,14738,14033,[14675,13858],[14097,13859],[14738,13860],[14673,13861],[14096,8435],[14673,8436],14032,14674,14098,[14099,15437],15438,[14739,15439],14098,[14034,8443],[14097,8508],14737,[14096,13858],[14739,13859],[14097,13860],[14097,8371,13861],[14738,8250],[13735,14036],13800,13799,13799,[13800,14031],[14032,16697],[14034,13854],[14674,13855],[14673,13856],14675,14096,[14675,15437],15438,[14675,15439],14096,14096,[14738,14865],14097,14034,14673,[14099,13858,15746],[14099,13859,15747],[14034,13860],[14675,13861],14098,14035,14099,[14099,13538],[14032,13539],[14675,13540],[14673,13541],14033,14097,14033,14674,[14098,13534],[14034,13535],[14034,13536],14032,14800,14098,14033,14035,14738,14098,[14035,13602],[14738,13603],[14738,13604],[14096,13605],[14098,13606],14739,14675,14737,14674,14738,14035,14737,14674,14674,[14034,8378],[14096,8379],8249,8246,8250,0,0,0,0,0,0,0,0,0,0,0,0,0,8371,[14035,8372],[14099,8373,13538],[14034,13539],[14034,13540],[14035,13541],14034,14737,14673,14032,14035,14032,14096,14035,[14034,8378],[14033,8314],8315,0,8308,8246,8250,0,0,0,0,0,0,8308,[12972,8309],[12908,8373],[12908,13985],[12973,13986],[12909,13987],[12908,13988],12972,12973,12973,[13800,12844],13799,[13800,12777],12973,12908,12972,[12909,8378],[12909,8310],[12908,8373],12908,[12908,16693],[12908,8378,16694],[12972,8310],[12909,8313],[12908,8373],12973,12909,12908,[12972,14177],[12972,14178],[12972,14179],[12973,14180],12909,12972,12972,12908,12973,12972,12908,[12973,14049],[12973,14050],[12973,14051],[12908,14052],[12972,8371],[12909,8372],[12908,8373],[12909,14113],[12972,14114],[12973,14115],[12973,14116],12973,[12908,8443],[13584,8444],13587,13587,[13587,13133],[13649,13134],[13584,13135],13648,[13643,13588],13643,13643,13643,13643,[13643,13647],13585,13651,13649,13586,13586,13649,[13585,13256],[13650,13257],[13648,13258],[13587,13259],[13587,13260],13586,13585,13648,13648,13587,[13643,13392],13650,13650,[13650,13128],[13584,13129],[13587,13130],[13649,13131],[13584,13132],13651,13586,[13586,12487],[13651,12488],[13643,13524,12489],13643,[13643,13583,12494],[13649,12495],[13651,12365],[13649,12362],[13649,12366],13648,13648,13586,13648,[13584,12361],[13649,12362],[13587,12366],13651,13586,13651,13586,13649,13585,13649,13584,13651,13585,[13586,12615],[13584,12616],13651,[13643,13523],13643,[13643,13456],13651,13648,13587,[13643,13392],[13458,12551],[13651,12552],[13643,13588],13643,13643,13643,[13643,13521],[13643,13714],[13643,13715],[13649,13192],[13648,13193],[13649,13194],[13585,13195],[13651,13196],13648,13650,13584,13586,[13586,12623],[13586,12624],13585,13587,13650,13587,13648,13587,13651,13648,[13643,13712,3687],[3699,3688],[3637,6098],[3701,6099],[3637,6100],3635,3700,3700,[3640,3702],3643,3704,3641,3704,[3642,3570],[3704,3763],[3640,3764],[3643,3765],[3642,3573],3707,[3704,3505],3635,[3637,5970],[3635,5971],[3700,5972],3701,3699,3701,3635,3388,[3701,5906],[3636,5907],[3635,5908],3700,3701,3700,3635,[3637,6034],[3636,6035],[3635,6036],3699,3701,[3706,3573],3643,3643,[3641,3697],2684357948,3636,3635,3701,[3637,6162],[3700,6163],3636,3636,3700,3635,3700,3636,3637,3637,3700,[3636,2089],[3700,2090],[3643,3574],3705,[3705,3505],[3701,6098],[3699,6099],[3701,6100],3699,3636,3637,[3699,5970],[3637,5971],[3700,5972],3699,[3706,3442],[3705,3446],3642,3641,3642,[3643,3570],3637,[3701,6162],[3635,6163],3635,3700,3701,3701,[3699,5906],[3701,5907],[3637,5908],3635,3701,3637,[3701,3743],[4946,3744],[4947,3745],4882,4946,4883,4883,4946,4882,4882,[4883,4865],4866,[4353,4948,4867],[4353,4803],[4353,4751],4946,4883,4883,4882,4883,4883,4947,4880,[4353,5010],4881,4947,4946,4946,4946,4880,[4353,5010],[4353,5011],4881,4883,4882,4946,4882,4882,4947,4882,[4353,4884],4353,[4353,4687],[4688,4737],[4883,4738],4947,4883,4882,4946,4883,[4353,4948],[4353,5075],[4353,4943],4880,[4353,5008],4881,[4883,4808],[4947,4872],4873,[4882,4996],[4947,4997],4866,[4946,4867],[4946,4868],[4883,4491],[4882,4872],4932,4933,[4883,4867],[4353,4819,4803],4353,4353,4353,4353,4353,4353,[4353,4943],[4353,4948],[4353,4681],4936,[4947,4937],4947,4946,4946,4882,4882,[4353,4756],4353,[4353,4943],4882,[4883,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,[979,2198],[979,2199],1104,916,1103,1107,1108,915,1040,1104,[1039,3155],[980,3156],915,980,979,915,980,916,[916,2069],[1103,2070],[1104,2071],[916,2072],[1039,2020],916,980,1043,1044,916,1103,1040,916,1039,979,916,1040,915,915,[1103,1946],980,1040,1043,1044,1040,1040,979,1104,915,1039,[980,2008],[915,2009],915,1040,980,916,980,916,1107,1108,979,980,1040,915,[916,1941],[980,1942],[979,1943],1039,980,915,916,1039,980,980,979,979,980,980,916,1107,1108,980,915,1039,915,1103,916,[915,2198],[1104,2199],980,915,979,1043,1044,1171,1172,1040,1040,915,980,980,980,915,980,[915,3211],[1107,3212],1108,1103,1104,979,1039,1103,980,980,1104,1039,1104,1040,980,916,1104,1039,1104,1040,979,[980,13904],14097,14033,[14739,13789],[14033,13790],[14096,13791],[14096,14034,13792],[14035,13793],14673,14098,14098,[14096,13730],[14674,13731],[14097,13732],[14099,13733],[14035,13734],[14096,8507],[14033,8508],14098,14099,14032,14034,14035,14098,14674,[14099,8499],[14099,8500],14034,14035,14674,[14738,15501],[14099,15502],[14099,15503],14035,[14032,8378],[14737,8314],[14099,8315],14737,14739,[14032,8245],[14032,8309],[14033,8314],[13800,14100,8380],13800,13799,13799,[13799,14095],[14098,16761],14738,[14035,8245],[14099,8246],[14738,8250],14034,[14099,15501],[14034,15502],[14675,15503],14738,14674,14675,14096,14738,14673,[14096,15810],[14099,15811],14097,14096,14674,14032,14673,[14737,13602],[14099,13603],[14737,13604],[14674,13605],[14739,13606],14098,14737,[14097,13597],[14738,13598],[14738,13599],[14675,13600],[14673,13601],14099,14739,14035,14739,14033,14096,[14096,13666],[14034,13667],[14099,13668],[14033,13669],[14035,13670],14097,14739,14675,[14097,13534],[14737,13535],[14097,13536],14675,14035,14739,14096,[14033,8378],[14032,8313],[14034,8310],[14099,8314],8315,0,0,0,0,0,0,0,0,0,0,0,0,8435,[14098,8436],[14097,13602],[14739,13603],[14035,13604],[14035,13605],[14674,13606],14674,14737,14033,14035,14673,14035,14674,[14099,13534],[14097,8378,13535],[14033,8379,13536],8249,[14035,8372],[14032,8310],[14034,8314],8315,0,0,0,0,8308,[12972,8372],[12972,8373],12972,[12908,14049],[12908,14050],[12972,14051],[12909,14052],12972,12909,[13799,12974],13800,13736,[13800,12841],12908,12972,12972,12972,[12908,8570],[12908,8630],[12973,8631],[12973,8565,16757],[12973,16758],12972,12973,12909,12909,12973,12909,[12973,14241],[12909,14242],[13736,13035,14243],[13799,13036,14244],[13799,13037],12972,12972,12972,12972,12908,12908,[12909,14113],[12909,14114],[12908,14115],[12973,14116],[12973,8435],[12972,8436],12909,[12908,14177],[12973,14178],[12909,14179],[12908,14180],12908,[12972,8507],[13584,8508],13648,13648,[13586,13197],[13650,13198],[13586,13199],13586,13648,[13643,13392],[13643,13395],[13643,13396],13643,[13643,13520],[13643,13712],[13712,12361],[13586,12362],[13649,12365],[13650,12366],13648,[13587,13320],[13587,13321],[13649,13322],[13586,13323],[13586,13324],13585,13648,13650,13587,13649,13586,13586,13584,[13651,13192],[13649,13193],[13584,13194],[13584,13195],[13648,13196],13651,13584,[13585,12551],[13586,12552],[13643,13588],13643,[13643,13520],[13648,12494],[13651,12429],[13586,12426],[13650,12430],[13584,12431],13650,13584,[13649,12424],[13584,12425],[13651,12426],[13648,12430],[13587,12366],13649,13649,13586,13585,[13643,13714],[13643,13715],13585,13584,13586,[13650,12679],[13586,12680],[13643,13522,12681],13643,13643,[13643,13647],13649,13587,13585,13584,[13584,12615],[13649,12616],13587,[13643,13392],[13643,13393],[13643,13394],[13643,13458],13643,13643,[13643,13647,13256],[13649,13257],[13584,13258],[13650,13259],[13586,13260],13586,13651,13585,[13649,12686],[13651,12687],[13651,12688],13648,13587,13651,13650,13586,13586,[13643,13715],[13643,13522],[13643,3558],[13643,3494],[3636,3495,6162],[3636,6163],3636,3700,3635,3699,3635,[3642,3443],[3705,3444],[3707,3445],[3642,3508],3641,3705,3641,3706,3706,3706,[3707,3569],3700,[3701,6034],[3636,6035],[3700,6036],3635,3635,3700,3700,3699,[3699,5970],[3635,5971],[3700,5972],3635,3636,3700,3637,[3635,6098],[3699,6099],[3635,6100],3699,[3705,3766],3704,3641,[3641,3441],3700,3701,3701,3636,3701,3635,3700,3637,3701,3636,3637,3636,3700,2684357884,3699,3636,[3701,2153],[2684357884,2154],[3642,3638],3704,[3642,3569],[3700,6162],[3635,6163],3700,3636,3637,3637,[3701,6034],[3701,6035],[3701,6036],3636,3635,[3641,3572],3643,[3706,3441,5906],[3641,3509,5907],[3707,5908],[3643,3571],3701,3700,3701,3636,3635,3636,[3699,5970],[3636,5971],[3635,5972],3636,3701,3636,[3700,3807],3808,[4947,3809],[4946,3745],4882,4947,4947,4946,4883,4947,4883,[4883,4930],4931,[4353,4674],[4353,4879],4883,4947,4947,4882,4947,4883,4883,[4353,4948],4353,[4353,4816],[4353,5008],[4353,5009],4881,4882,[4353,4948],4353,4353,[4353,4943],4882,4947,4882,4946,4883,4880,[4353,5009],[4353,5012],[4353,4752],4945,[4882,4801],[4883,4867],[4883,4868],[4883,4491],[4947,4803],4882,4882,4944,[4353,4754],[4353,4817],[4353,4819],[4353,4753],[4945,4808],[4946,4809],4936,[4353,4943,4937],4883,4882,[4882,4930],4931,4932,4555,4936,[4353,4879,4996],[4947,4997],4931,[4353,4802],[4353,4868],[4353,4869],[4353,2147488139,5136],4683,[4353,4803,5138],[4353,4752],4945,[4353,4948],[4353,4745],[4882,4746],4946,4946,4882,4946,4882,4946,[4353,4820],4353,[4353,4816],4881,[4883,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,1039,916,979,1040,1104,1043,1044,1103,1040,916,[1040,3219],[915,3220],979,916,980,916,980,1039,[980,2133],[979,2134],[1039,2135],[1040,2136],[980,2084],1104,1104,1107,1108,916,980,979,980,1039,980,980,916,979,1103,916,979,979,1107,1108,1039,916,915,916,979,916,1103,1040,980,1039,1104,980,916,980,1171,1172,980,979,979,916,[979,2005],[916,2006],[980,2007],1039,915,979,915,915,979,915,916,979,916,915,1103,1171,1172,915,1104,916,1040,979,980,1104,1104,1104,1043,1044,1107,1108,1172,1043,1044,915,[980,1941],[979,1942],[916,1943],980,979,[915,3020],[1103,3021],[1171,3085],1172,[915,1941],[1039,1942],[1104,1943],1103,915,1103,979,1104,916,915,1104,980,1103,980,980,1039,979,[979,13839],14033,14034,14675,14033,[14097,13854],[14098,13855],[14096,14739,13856],14098,14738,14033,14035,[14675,13794],[14737,13795],[14033,13796],[14097,13797],[14675,8570],[14098,8571],[14032,8572],14033,14097,14033,14738,14739,14099,[14737,8308],[14738,8309],[14033,8373],14673,[14032,13534],[14097,13535],[14033,13536],14097,14674,14098,14738,[14674,8378],[14738,8379],[14674,8315],14099,[14675,8499],[14099,8436],[14739,8378],[14034,8379],[13799,13906,8380],13800,13799,[13799,13969],14099,[14610,8371],[14098,8372],[14035,8310],[14035,8314],[14739,8249],[14674,8250],14034,14097,14099,[14675,13534],[14674,13535],[14033,13536],14033,[14097,15873],[14098,15874],[14034,15875],[14098,15876],[14673,15877],[14032,15878],[14034,15879],[14034,15880],[14738,13666],[14737,13667],[14033,13668],[14673,13669],[14098,13670],14096,14033,[14034,13661],[14097,13662],[14673,13663],[14033,13664],[14675,13665],14096,14738,14802,14803,14035,14673,[14032,13730],[14099,13731],[14738,13732],[14032,13733],[14737,13734],14099,14033,[14097,13597],[14099,13598],[14098,13599],[14033,13600],[14033,13601],14739,14033,14737,14099,14609,14738,[14035,8378],[14099,8379],8380,0,0,0,0,0,0,0,0,0,0,0,8499,[14098,8500],[14098,13666],[14096,13667],[14096,13668],[14675,13669],[14035,13670],14673,14737,[14673,14283],[14739,14284],14739,14737,[14032,13597],[14737,13598],[14034,13599],[14033,8378,13600],[14032,8313,13601],[14099,8373],14097,[14099,8378],[14098,8379],8249,8246,8249,8246,[12909,8372],[12909,8373],12972,12972,[12908,14113],[12909,14114],[12973,14115],[12908,14116],12972,12973,12908,[13799,12781],13799,[13799,12905],12973,[12909,16693],[12909,16694],[12972,8570],[12972,8571],8694,8695,[12908,8629],[12908,8565],12909,12908,12972,12973,[13799,13036],[12908,8570],[12973,8630],[13799,12782,8631],[13800,8630],[13799,8565],13736,[13800,12842],[13800,13034],[13799,13035],12973,12908,12908,[12909,14177],[12973,14178],[12972,14179],[12908,14180],[12908,8499],[12972,8500],12973,[12908,14241],[12908,14242],[12908,14243],[12908,14244],[12908,8570],[12908,8571],[13585,8572],13650,13584,[13586,13261],[13586,13262],[13585,13263],13586,[13584,12996],13651,13649,[13643,13652],13643,13643,[13643,12424],[13649,12425],[13651,12426],[13648,12429],[13585,12430],[13649,12366],[13585,13384],[13651,13385],[13587,13386],[13585,13387],[13648,13388],[13585,12361],[13650,12362],[13585,12365],[13584,12366],13649,13650,13649,[13651,12361],[13651,12362,13256],[13586,12365,13257],[13586,12362,13258],[13586,12365,13259],[13586,12366,13260],13586,13585,[13587,12615],[13584,12616],13585,[13643,13458],13643,[13643,13520],13651,13649,[13650,12494],[13586,12495],[13649,12362],[13649,12365],[13585,12488],[13587,12489],[13650,13189],[13584,12494],[13648,12430],[13713,12431],[13643,13714],[13643,13715,13128],[13643,13716,13129],[13643,13130],[13643,13131],[13643,13521,13132],[13643,13712],13650,[13585,12743],12744,[13643,12745],[13643,12681],[13643,13391],13585,[13584,12943],[13651,12944],13648,13649,[13648,12551],[13584,12552],13587,13585,13584,13648,[13643,13652],13643,[13643,13456],[13585,13320],[13585,13321],[13586,13322],[13648,13323],[13585,13324],13585,13650,[13651,12686],[13650,12750],12751,[13643,12752],[13643,13711],[13643,13712],[13643,13713],[13643,13714],[13643,13715],[13643,13716],13643,13643,13643,[13643,13456,3558],[13584,3494],[3637,3495],3635,3699,3636,3635,3324,3635,3701,[3700,5906],[3699,5907],[3642,3442,5908],[3640,3443],[3707,3444],[3642,3445],[3640,3446],3707,[3705,3633],3635,[3701,6098],[3700,6099],[3700,6100],3636,3637,[3637,2089],[3637,2090],3636,[3699,6034],[3699,6035],[3701,6036],3636,3635,3636,3700,[3700,6162],[3700,6163],3637,[3642,3572],3642,3705,[3640,3506],3700,3700,3636,3699,3636,3636,3701,3637,3701,3637,3636,[3640,3762],[3642,3763],[3706,3764],[3643,3765],[3705,3764],[3705,3765],3700,3701,[3641,3702],3707,[3705,3633],3635,3700,3637,3388,3700,3700,[3701,6098],[3701,6099],[3699,6100],3699,[3705,3766],3707,3640,[3705,3697,5970],[3706,3702,5971],[3707,5972],3704,[3707,3761],3635,3700,3701,3388,3699,[3635,6034],[3635,6035],[3700,6036],3635,3635,3700,3699,[3701,3872],3873,[4883,3616],4946,4947,4882,4883,4946,4947,4882,4946,[4947,4737],[4353,4688,4738],4945,4947,4947,4947,4883,4947,4947,4882,4944,[4353,4755],4353,4353,4353,[4353,4943],4880,[4353,4818],4353,[4353,4752],4945,4946,4947,4883,4946,4946,[4353,4756],4353,4353,[4353,4943],4946,[4883,4865],4931,4932,4555,[4882,4802],[4883,4803],4947,4882,4944,[4353,4688],[4353,4688],[4945,4808],[4882,4872],4873,[4353,5000],[4353,4816],4881,4882,4947,[4946,4995],[4882,4996],[4353,4756,4619],[4353,5000],[4353,4943],4946,[4883,4995],4866,4932,4933,2147488203,4747,[4944,4802],[4945,4803],4880,[4353,4819,4808],[4353,4809],[4882,4810],4947,4883,4947,4882,4946,4946,[4353,4884],4353,4353,[4353,5007],[4353,5008,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,979,1039,1103,916,979,1107,1108,979,916,[916,3282],[1040,3283],[980,3284],915,915,916,916,915,979,980,[980,2198],[1103,2199],916,916,916,1040,1171,1172,980,1040,1103,915,915,915,915,980,916,1040,980,1039,1103,1171,1172,915,1039,1040,916,1040,980,980,980,916,915,1039,979,980,915,979,916,916,979,979,915,[915,2069],[915,2070],[915,2071],[980,2072],[916,2020],916,916,915,916,915,980,915,915,979,915,915,[915,972],[916,973],1103,1040,1103,979,979,980,1104,1103,1107,1108,1171,1172,1104,1107,1108,1040,[979,2005],[980,2006],[915,2007],979,979,[916,3147],[1043,3148],1044,979,[915,2005],[1040,2006],[979,2007],1104,1104,1040,1040,1039,1040,1104,979,1040,1103,1039,980,1040,915,[915,13968],14611,14034,14610,14099,14035,14034,14034,14033,14097,14098,14033,[14097,13858],[14096,13859],[14035,13860],[14738,13861],[14096,8507],8635,[14098,8636],14096,14096,14673,14033,14801,[14738,8371],[14674,8372],[14739,8373],14035,[14032,13597],[14673,13598],[14675,13599],[14032,13600],[14097,13601],14098,14098,14097,14034,[14673,8378],[14034,8314],[14611,8246],[14034,8372],[14675,8373],14097,[14035,8507],[13800,13908,8444],13800,13799,13799,[13799,13903],[14098,8435],[14034,8436],14033,[14673,8378],[14096,8313],[14739,8314],[14674,8315],14096,[14738,13597],[14098,13598],[14033,13599],[14096,13600],[14032,13601],[14674,15937],15938,15939,15940,15941,15942,15943,[14737,15944],[14034,13730],[14098,13731],[14098,13732],[14737,13733],[14674,13734],14674,14096,[14096,13725],[14738,13726],[14675,13727],[14033,13728],[14675,13729],14096,14034,14866,14867,14099,14098,[14674,13794],[14096,13795],[14098,13796],[14674,13797],14032,14674,14032,[14032,13661],[14033,13662],[14098,13663],[14098,13664],[14675,13665],14032,14673,14099,14674,14032,14674,14675,[14099,8443],8444,0,0,0,0,0,0,0,0,0,8245,8246,[14098,8372],[14034,8373],[14739,13730],[14034,13731],[14096,13732],[14097,13733],[14674,13734],14737,14033,[14035,14347],[14097,14348],14737,14674,[14099,13661],[14034,13662],[14098,13663],[14034,13664],[14097,13665],14737,14673,14032,[14099,8308,8378],[12972,8309,8313],[12909,8310],[12972,8313],[12908,8310],[12908,8373],12972,12908,12908,[12972,14177],[12972,14178],[12972,14179],[12973,14180],12908,12908,12909,[13736,12782],13799,[13800,12842],[13800,13034],[12972,16757],[12973,8570,16758],[12909,8634],8635,[12972,8758],[12909,8759],8693,[12909,8436,13921],[12908,13922],[12909,13923],[12973,13924],[13800,12782],[13799,8570],[13735,12842,8571],8694,8695,8502,[13799,12713,8564],[13799,12780,8565],[13800,16693],[13799,16694],13800,[13799,12842],12972,12909,12973,[12973,14242],[12972,14243],[12972,14244],[12908,8563],[12909,8564],[12908,8565],12909,12973,12972,[12972,8570],[12908,8634],8635,[13651,8636],13587,13584,[13649,13325],[13585,13326],[13648,13327],13587,[13585,13060],13650,13648,13648,[13643,13458],[13643,12487],[13586,12488],[13586,12489],13649,13650,[13587,12494],[13585,12430],[13650,12431],[13585,13449],[13651,13450],[13648,13451],[13650,12424],[13587,12425],[13649,12426],[13651,12429],[13649,12430],[13649,12431],13584,[13648,12424],[13586,12425],[13649,12426,13320],[13649,12429,13321],[13651,12426,13322],[13586,12429,13323],[13587,12430,13324],[13587,12431],[13585,12424],[13650,12425],[13584,12489],13648,13649,[13643,13458],13643,[13643,13455],13649,13587,[13650,12494,13133],[13587,12426,13134],[13650,12429,13135],[13587,12489],13650,13651,13587,[13650,12494],[13587,12495],[13643,12496],[13643,13192],[13643,13193],[13643,13391,13194],[13643,13458,13195],[13643,13196],13643,[13643,13520],13648,[13587,12808],12809,[13643,12552],[13643,13647],13651,[13650,13007],[13649,13008],13587,13651,[13587,12615],[13587,12616],13587,13649,13648,13584,13584,[13643,13392],13649,[13584,13384],[13651,13385],[13585,13386],[13651,13387],[13585,13388],13584,13649,[13585,12559],12814,[13643,12815],13643,13643,13643,13643,13643,13643,13643,[13643,13456],[13643,13393],[13643,13395],13649,[13650,3558],[13649,3559],[3636,3429],[3636,3426],[3700,3430],3637,3699,3636,3636,[3637,5970],[3701,5971],[3637,5972],3699,3387,3699,[3706,3510],3641,[3641,3697],3700,[3699,6162],[3699,6163],3637,3388,3636,[3701,2153],[3635,2154],3637,[3699,6098],[3637,6099],[3637,6100],3635,3635,3701,3637,3635,3700,[3640,3702],3706,3706,3707,[3643,3697],3636,3699,3636,3635,[3701,5906],[3699,5907],[3700,5908],3635,3700,3635,[3705,3572],3643,3642,3707,3704,3640,3642,[3643,3570],[3707,3765],[3704,3766],3640,[3643,3697],3635,3700,3637,3700,3636,3635,[3701,6162],[3699,6163],3700,[3707,3702],3706,3705,[3707,3506],[3636,6034],[3701,6035],[3704,3508,6036],3705,3640,[3643,3571],[3643,3764],3636,3637,3700,[3699,6098],[3636,6099],[3635,6100],3636,3701,3387,3635,3700,[3636,3615],[4946,3616],4883,4947,4882,4946,4883,4883,4883,[4946,4609],[4882,4610],[4946,4611],4882,4947,4883,4883,4882,4883,4882,4947,4882,4944,[4353,4688],[4353,4692],4353,[4353,4816],[4353,5012],4353,4353,[4353,4943],4882,4883,4882,4882,4947,4947,[4353,4820],4353,[4353,4752],4945,4947,4883,[4947,4995],[4946,4996],[4353,4756,4619],4866,[4883,4867],[4947,4803],4882,4882,4946,4947,[4946,4681],4936,[4688,4937],[4353,4754],4353,[4353,5007],4881,4882,4883,4946,[4353,4820],4353,[4353,4816],4881,4947,[4947,4930],[4883,4996],[4353,4884,4997],[4353,2147488267],[4353,4811],4866,[4947,4867],[4353,4818,4870],[4353,4872],4873,[4881,4874],4946,4883,4883,4882,4883,4946,4944,[4353,4755],4353,4353,[4353,4616],[4353,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,979,[916,2010],979,[1103,1941],[916,1942],[1171,1943],1172,1040,[1104,3282],[1040,3346],3347,[980,3348],915,979,979,916,916,980,980,980,916,915,979,915,915,1039,915,1040,980,915,979,916,916,979,916,980,[979,1941],[1039,1942],[1040,1943],980,1040,1039,980,916,980,1103,916,916,1103,1104,916,979,979,1040,1104,915,979,915,916,915,915,916,[916,2133],[980,2134],[916,2135],[979,2136],[916,2084],[980,3020],[916,2961],[979,2958],[980,2961],[916,2958],[979,2961],[915,3027],979,916,915,915,980,[1040,1946],915,980,980,1103,915,915,915,1043,1044,1172,979,916,1039,1171,1172,1039,[915,2069],[980,2070],[979,2071],[916,2072],[916,2020],[979,3211],[1107,3212],1108,980,[1040,2069],[915,2070],[915,2071],[1104,2072],[915,2020],979,1040,1103,1103,916,1104,1103,915,916,980,1103,979,1039,[1040,14095],14033,14097,14737,14673,14674,14675,14033,14739,14032,14033,14098,14737,14097,14099,[14034,8443],[14034,8444],[14099,16697],14097,14673,14032,14098,14032,[14098,8435],[14738,8436],14099,14034,[14033,13661],[14098,13662],[14739,13663],[14738,13664],[14096,13665],14034,14737,14097,14096,14609,[14737,8378],[14096,8310],[14033,8373],14032,14739,[14032,8443],[13736,14036,8508],13799,13799,13799,[13799,13967],[14034,8499],[14674,8500],14032,14801,14098,[14033,8378],[14675,8379],[14097,8380],[14032,13661],[14737,13662],[14033,13663],[14675,13664],[14674,13665],[14673,16001],16002,16003,16004,16005,16006,16007,[14096,16008],[14675,13794],[14097,13795],[14032,13796],[14096,13797],14675,14739,14737,[14098,13789],[14675,13790],[14032,13791],[14098,13792],[14737,13793],14738,14098,14098,14739,14739,14738,[14675,13858],[14035,13859],[14099,13860],[14035,13861],14033,14034,14035,[14098,13725],[14035,13726],[14035,13727],[14034,13728],[14098,13729],14673,14033,14097,14801,14098,14737,14675,[14034,8507],8508,0,0,0,8245,8246,8249,8250,0,8308,[14032,8309],[14032,8310],[14096,8373],14033,[14032,13794],[14739,13795],[14738,13796],[14739,13797],14675,14096,14098,14675,14739,14034,14737,[14034,13725],[14097,13726],[14099,13727],[14035,13728],[14099,13729],14738,14674,[14034,8371],[12973,8372],[12973,8373,16693],[12972,16694],12909,12908,12908,12973,12972,12908,12972,[12909,14242],[12908,14243],[12973,14244],12973,12909,12909,[13799,12910],13800,13799,13799,[13736,12842],[13799,13034,8507],8698,[12908,8699],12909,12972,[12909,8435],[12908,8436,13985],[12909,13986],[12909,13987],[12973,13988],[13800,12910,8570],[13800,8634],8635,[13799,13033,8758],[13799,12844,8759],[13799,8758],8628,[12909,8629],[13800,12714,8565,16757],[13799,12780,16758],13800,13800,[13799,13033],[13799,13036],[13799,13037],12973,12908,12973,[12972,8627],8628,[12909,8629],[12973,8565],12972,12909,[12908,8443],8698,[13648,8699],13585,13584,13585,13650,13649,13649,13585,13649,13584,13649,13586,13651,[13584,12551],[13651,12552],13650,[13586,13133],[13585,13134],[13587,13135],[13648,12494],[13649,12495],[13651,12362],[13650,12365],[13587,12362],[13648,12488],[13586,12489],13586,13586,[13586,12494],[13587,12495],[13649,12362],[13584,12488],[13585,12489],[13585,13384],[13585,13385],[13651,13386],[13650,13387],[13586,12494,13388],[13648,12495],[13649,12488],[13587,12489],13650,13648,13651,[13643,13522],13643,[13643,13519],13586,13585,[13649,13197],[13586,13198],[13586,13199],13650,13651,13648,13650,13651,[13650,12559],[13393,12560],[13643,13394,13256],[13643,13395,13257],[13650,13258],[13584,13259],[13643,13459,13260],13643,13643,[13643,13455],13587,[13587,12615],[13643,13392,12616],13586,13651,13649,[13585,13128],[13650,13129],[13649,13130],[13586,12679,13131],[13650,12680,13132],[13585,12681],13650,13586,13586,13650,13587,13587,13650,[13585,13449],[13585,13450],[13586,13451],13651,13584,13650,[13586,12623],[13643,12624],13643,13643,13643,[13643,13457],[13643,13392],[13643,13393],[13643,13394],[13643,13395],13649,13648,13585,13649,13585,[13649,3558],[13648,3493],[13585,3490],[13650,3494],[3699,3495],3636,3635,3700,[3637,6034],[3700,6035],[3701,6036],3699,3700,3636,[3704,3638],3643,[3705,3570],3636,3699,3635,3637,3699,3701,3635,3635,3699,[3701,6162],[3701,6163],3699,3635,3700,3701,3699,3636,3637,[3642,3572],3707,[3642,3441],[3640,3442],3637,3636,3637,3637,3637,[3636,5970],[3637,5971],[3699,5972],3701,3701,3699,[3706,3509],[3704,3506],[3640,3443],[3707,3444],[3642,3445,5906],[3707,3508,5907],[3706,5908],3642,3641,3643,3643,[3642,3505],3636,3637,3699,[3637,5906],[3699,5907],[3701,5908],3700,3701,3635,[3705,3572],3640,[3704,3507],3636,[3701,6098],[3701,6099],[3635,6100],[3641,3443],[3706,3444],[3643,3445],[3705,3446],[3643,3570],[3640,3762],3701,[3635,6162],[3700,6163],3699,3637,3635,3699,3699,3637,[3636,3679],[4882,3680],4883,4882,4883,4947,4947,4947,4883,[4947,4673],[4947,4674],4946,4883,4883,4882,4883,4947,4882,4946,4883,4947,4946,4947,[4353,4756],4353,5057,4353,4353,[4353,4753],4945,4947,4947,4883,4882,4883,4882,[4353,4884],4353,[4353,5007],4881,4946,4883,4947,4946,[4353,4820],[4353,4930],4931,[4947,4738],4946,4883,4947,4883,[4947,4681],[4947,4682],4946,[4353,4948,2979],5057,4353,[4353,4816],4881,4882,4883,[4353,4884],4353,4353,[4353,5007],[4353,5010],4881,4882,[4353,4948],4353,4561,[4353,4930],4931,4740,4936,[4353,4937],[4353,4816],4881,4883,4947,4947,4882,4947,4946,4944,[4353,4688],[4353,4689],[4353,4690],[4353,4691,4616],[4947,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,1040,916,1104,[1103,2005],[915,2006],[1104,2007],[915,1946],1104,[916,3155],3410,[916,3411],916,[980,972],[916,973],916,916,916,916,1103,1039,1103,980,916,979,916,[915,1941],[915,1942],[979,1943],979,979,1103,1104,916,916,980,980,[916,2005],[1039,2006],[980,2007],916,980,980,1039,980,1103,979,1103,1039,1040,[1104,1941],[979,1942],[1040,1943],915,979,979,980,915,979,916,916,915,980,915,[916,2198],[916,2199],915,[980,3020],[980,3021],[916,3025],[980,3022],[980,3025],[915,3022],[980,3025],[980,3026],[916,3027],979,979,980,979,979,979,915,1104,1039,915,1103,916,1107,1108,980,[979,972],[1039,973],1103,916,1040,916,[915,2133],[980,2134],[915,2135],[979,2136],[916,2084],[979,3147],[1171,3148],1172,916,[1104,2133],[1103,2134],[916,2135],[916,2136],[1040,2084],915,915,1103,1040,1104,979,980,1039,1039,1039,980,[979,13534],[980,13904,13535],[14035,13536],14098,14739,14737,14673,14033,14739,14033,14098,14032,14097,14739,14098,14097,14098,[14099,8443],[14097,8444],[14099,16761],14032,14096,14032,14675,14032,[14674,8499],[14738,8436],14035,14035,[14099,13725],[14099,13726],[14034,13727],[14032,13728],[14034,13729],14739,14099,14097,14738,14096,14035,14738,14739,14737,14033,[14034,8507],[14032,8572],[13800,13907],13800,13799,[13799,14031],[14096,8499],[14035,8500],14097,14675,14099,14096,[14675,8443],[14674,8444],[14739,13725],[14096,13726],[14098,13727],[14032,13728],[14739,13729],16065,16066,16067,16068,16069,16070,16071,[14099,16072],[14739,13858],[14675,13859],[14674,13860],[14034,13861],14033,14737,14738,14032,[14674,13854],[14737,13855],[14674,13856],14674,14033,[14034,13534],[14096,13535],[14035,13536],14674,14099,14098,14675,14738,14032,14098,14033,14035,[14675,13789],[14674,13790],[14674,13791],[14035,13792],[14033,13793],14739,14675,14674,14673,14098,14739,14034,[14033,8378],[14035,8314],8315,0,8308,[14096,8309],[14035,8310],[14096,8313,12321],[14096,8314,12322],[8246,12323],[14097,8372,12324],[14097,8373],14675,14098,14738,[14096,13858],[14675,13859],[14737,13860],[14738,13861],14675,14674,14033,14097,14739,14099,14674,[14097,13789],[14099,13790],[14033,13791],[14032,13792],[14096,13793],14737,14096,[14097,8435],[12972,8436],[12973,16757],[12972,16758],12908,12908,12908,12909,12908,12973,12973,12972,12908,12909,12909,12909,12909,12973,[13799,12714],[13799,12781],13800,13799,[13735,8378],[13800,12842,8379],[12909,8380],12972,12973,[12909,8435],[12909,8436,14049],[12972,14050],[12972,14051],[12973,14052],[12972,8443],8698,[13799,8699],13800,13800,[13799,12713],[12908,8692],8693,[13799,13034,8436],[13800,12844],13799,13799,13800,13800,13799,[13800,12969],12909,12972,[12908,16693],[12908,8692,16694],8693,[12972,8436],12973,12973,[12909,8443],[13587,8444],13585,13648,13650,13587,13585,13649,13651,13584,13648,13584,13585,13584,13584,[13649,12615],[13585,12616],13651,[13584,13197],[13648,13198],[13651,13199],13649,[13584,12494],[13650,12426],[13587,12429],[13648,12426],[13648,12489],13587,13650,13587,13585,[13586,12494],[13650,12426],[13650,12489],13585,13587,[13587,13449],[13587,13450],[13651,13451],13651,[13586,12494],[13585,12489],13584,13587,13648,[13643,13716],13643,13643,[13643,13583],13649,13648,[13584,13261],[13585,13262],[13648,13263],13648,13648,13651,13650,13649,[13586,12623],[13586,12624],[13584,13320],[13648,13321],[13586,13322],[13585,13323],[13585,13324],[13643,13396],13643,[13643,13519],13584,[13651,12615],[13584,12616],13585,13650,13586,[13587,13192],[13648,13193],[13587,13194],[13651,12743,13195],[12744,13196],[13651,12745],[13585,12681],13650,13651,13649,13587,13584,13651,13648,13587,13586,13648,13585,13650,[13650,12559],[13651,12560],[13643,13458],13643,13643,[13643,13647],13585,13587,13649,13649,13586,13651,13651,13586,13651,13584,13650,13584,[13587,3558],[13586,3559],[3635,3560],3699,3637,[3700,6098],[3637,6099],[3700,6100],3637,3700,3387,3636,[3706,3508],3640,[3707,3697],3636,[3643,3763],[3707,3764],[3642,3765],3701,3637,3637,3635,3636,3700,3701,3635,3701,3700,3635,3637,[3641,3510],3705,3641,[3705,3697,5906],[3699,5907],[3637,5908],3699,3700,3635,3700,[3699,6034],[3637,6035],[3636,6036],3637,3701,3636,3635,3700,2684357947,3636,[3636,5970],[3636,5971],[3642,3443,5972],[3641,3445],[3707,3446],3704,3642,[3641,3569],3699,3636,3635,[3635,5970],[3637,5971],[3636,5972],3699,3635,[3640,3766],3642,3641,[3643,3697],3635,[3699,6162],[3636,6163],3701,3701,3700,3700,[3643,3702,5906],[3643,5907],[3643,5908],[3641,3570],3635,3699,3701,3699,3637,3635,3637,[3700,3488],[4946,3489],[4882,3553],4882,4882,4882,4947,4946,4883,4882,[4947,4737],[4947,4738],4946,4946,4947,4947,4947,4883,4946,4946,4883,4883,4947,4946,[4353,4884],4353,4353,[4353,4752],[4353,4688],4945,4946,4883,4947,4883,4882,4882,4880,[4353,4818],4353,4353,[4353,4816],4881,4947,4882,4883,[4353,4884],5121,[4353,4737],[4882,4738],4947,4946,4947,4882,[4946,4745],[4946,4746],[4947,3042],[4944,3043],[4353,4688,3044],[4353,4692],4353,[4353,4816],4881,4882,4944,[4353,4692],4353,5057,4353,[4353,4751],4882,4944,[4353,4754],4353,4353,[4353,4752,4995],[4883,4998],[4353,4754,5000],4353,4353,[4353,5007],4881,4946,4883,4882,4946,4883,4946,4882,4883,4946,4947,[4882,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,915,1103,979,[1104,2069],[979,2070],[915,2071],[980,2072],[980,2020],[979,3155],[980,3156],916,980,980,916,979,916,915,[980,2010],1104,979,916,1040,1039,979,1039,[980,2005],[1103,2006],[1104,2007],1103,915,915,915,979,915,916,980,[980,2069],[915,2070],[1103,2071],[1104,2072],[980,2020],1103,915,980,1043,1044,915,1039,916,[1039,2005],[915,2006],[980,2007],916,916,980,979,915,980,980,980,979,979,916,980,916,[915,3020],[915,3084],[915,3085],915,915,979,915,980,[915,3090],[915,3091],[980,2958],[915,2962],916,916,916,916,980,915,1039,916,1104,915,1171,1172,980,979,1104,1040,915,979,915,1039,[1104,2198],[1103,2199],979,979,[915,3211],[1104,3212],1103,1104,915,[1103,2198],[915,2199],979,979,979,980,915,980,1104,915,915,915,980,1104,[1104,13839,13597],[980,13840,13598],[14097,13599],[14096,13600],[14032,13601],14096,14032,14675,14673,14096,14032,[14737,13534],[14737,13535],[14739,13536],14673,14033,14034,14098,[14033,8507],[14032,8508],14096,14032,14737,14035,14034,14738,[14034,8563],[14673,8500],14802,14803,[14673,13789],[14739,13790],[14032,13791],[14739,13792],[14675,13793],14737,14096,14738,14097,14737,14739,14673,14675,14737,[14675,8570],[14098,8634],[13800,14163,8636],[13800,14164],13800,13800,[13800,13903],[14034,8563],[14034,8629],[14737,8565],14097,14739,14096,[14738,8507],[14099,8508],[14737,13789],[14032,13790],[14099,13791],[14099,13792],[14675,13793],[14675,16129],16130,16131,16132,16133,16134,16135,[14032,16136],14033,14675,14034,14097,14033,14738,14739,14034,14097,14033,14032,14099,[14097,13597],[14032,13598],[14097,13599],[14032,13600],[14033,13601],14096,14097,14739,14034,14096,14098,14033,14098,14032,[14737,13854],[14097,13855],[14097,13856],14033,14032,14673,14673,14738,14032,14674,14033,14737,[14097,8378,12379],[14099,8379,12380],[8249,12381],[14096,8372,12382],[14097,8373,12383],[14674,12384],[14675,12385],[14097,8378,12386],[14098,8310,12387],[14098,8373,12388],[14096,12389],[14097,12390],[14035,12391],14738,14674,14099,14035,14674,14097,14673,14675,14098,14098,14096,14033,14737,[14096,13854],[14096,13855],[14033,13856],14096,14673,14034,[14096,8499],[12908,8500],12973,12972,12972,12908,12972,12908,12908,[12973,16693],[12972,16694],12972,12973,12909,12908,12908,12972,12973,12973,12972,[13800,12714],[13800,12780],13735,[13800,8443],[13799,12843,8444],12908,12908,[12908,8499],[12973,8500,14113],[12909,14114],[12909,14115],[12973,14116],[12908,8507],[12908,8508],[13800,12715],[13800,12716],[13800,12717],12908,12972,[13799,12844,8499],[13799,8500],[13800,12778],[13800,12714],[13799,12715],[13800,12716],[13799,12717,16693],[13800,12781,16694],[13799,12842],[13800,13034],12909,[12908,16757],[12972,16758],[12973,8499],[12908,8500],12909,12973,[12909,8507],[13585,8508],13651,13584,13651,13585,13587,13648,13584,13648,[13643,13713],[13643,13714],[13643,13715],13587,13649,[13650,12551],[13586,12552],13649,[13585,13261],[13584,13262],[13649,13263],13585,13650,13587,13584,13650,13650,13648,13587,13650,13650,13586,13651,13649,13650,13584,13648,13587,13587,13587,13651,13649,13648,13587,[13643,13460],13643,13643,[13643,13457],13649,13586,13650,[13651,13325],[13648,13326],[13585,13327],13651,13584,13648,13585,[13650,12686],[13649,12687],[13651,12688],[13649,13384],[13585,13385],[13584,13386],[13651,13387],[13587,13388],[13643,13460],13643,[13643,13583],13584,[13648,12679],[13586,12680],[13585,12681],13650,13587,[13651,13256],[13651,13257],[13648,13258],[13585,13259],[13584,12808,13260],12809,[13587,12552],13648,[13650,13133],[13587,13134],[13587,13135],13649,13584,13587,13584,13587,[13648,1954],13587,13648,[13586,12623],[13585,12624],13587,[13643,13393],[13643,13395],13586,13584,13584,13649,13650,13651,13585,13586,13585,13648,13585,13650,13587,13584,[13587,3623],[3636,3624],3636,3699,[3700,6162],[3701,6163],3637,3635,3699,3635,3700,[3704,3766],3707,[3641,3761],[3705,3572],3641,3705,3640,[3706,3570],3699,3324,3635,3637,[3637,5906],[3637,5907],[3699,5908],3636,3388,3635,3637,[3643,3574],3706,[3705,3506],[3700,5970],[3637,5971],[3636,5972],3635,3701,3387,3635,[3700,6098],[3636,6099],[3699,6100],3637,3701,3701,3701,3636,3636,3636,[3635,6034],[3701,6035],[3635,6036],3700,3637,[3643,3509],3642,[3642,3633],3387,3700,3700,[3701,6034],[3699,6035],[3699,6036],3701,[3705,3572],3640,[3706,3441],[3643,3442],3635,3701,3701,3637,3636,3637,3636,3635,[3700,5970],[3707,3508,5971],[3704,5972],3704,[3641,3697],3635,3701,3700,3699,3699,[3699,3551],[4946,3552],[4947,3553],4946,4883,4946,4883,4947,4947,4947,4946,[4946,4801],[4883,4802],[4883,4803],4946,4882,4946,4946,[4946,4808],[4883,4868],[4882,4869],[4883,4803],4882,4882,4946,4944,[4353,4754],4353,[4353,4943],4882,4883,4946,4883,4880,[4353,5008],4881,4882,4944,[4353,4692],[4353,4753],[4353,4754],4353,[4353,4943],4880,[4353,5010],[4353,5011],[4353,4818],4353,[4353,4801],[4882,4802],[4882,4803],4883,4883,[4882,4808],[4883,4809],[4946,4810],[4946,3106],[4882,3107],[4882,3108],4944,[4353,4754],4353,[4353,4943],4946,4946,[4353,4756],4353,4353,4353,[4353,4879],4882,4883,4944,[4353,4691],[4353,4688],4945,4946,4944,[4353,4688],[4353,4755],4353,[4353,4817],[4353,5008],4881,4947,4883,4947,4882,4946,4882,4947,4946,[4883,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,1103,1040,1104,[1039,2133],[1039,2134],[979,2135],[916,2136],[916,2084],[1040,3219],[980,3220],980,915,915,915,916,916,980,979,980,915,1040,979,916,916,916,[915,2069],[979,2070],[915,2071],[979,2072],[980,2020],915,915,1043,1044,980,916,[979,2133],[915,2134],[915,2135],[916,2136],[979,2084],979,916,979,1107,1108,916,979,979,[916,2069],[916,2070],[915,2071],[916,2072],[979,2020],980,1043,1044,916,980,980,915,916,979,980,[979,2957],[916,3084],[979,3085],915,916,[980,1941],[979,1942],[916,1943],979,979,[980,3090],[980,3022],[979,3026],[915,3027],916,916,979,979,980,1039,1040,979,1103,979,1039,1103,979,1103,1039,980,1039,980,915,916,980,915,916,[916,3275],[979,3276],[979,3277],1039,916,1040,979,1104,1104,1039,980,980,1040,979,980,1039,980,1040,[1039,13905],[14097,13661],[14099,13662],[14098,13663],[14096,13664],[14033,13665],14097,14035,14032,14737,14033,[14098,13597],[14032,13598],[14739,13599],[14674,13600],[14674,13601],14737,14033,[14033,8570],[14098,8571],[14097,8572],14097,14674,14035,[14739,14865],14674,14032,[14099,8627],[14673,8629],[14866,8630],[14867,8631],[14739,8565],[14096,13854],[14097,13855],[14033,13856],14098,14098,14098,14032,14034,14097,14675,14739,14033,14673,[14034,8443],[13800,13908,8444],13799,13800,13799,13800,[13735,13967],[14033,8627],8693,[14737,8436],14738,14737,14739,[14097,8378],[14674,8314],[14739,8315],[14032,13854],[14737,13855],[14737,13856],14097,[14674,16193],16194,16195,16196,16197,16198,16199,[14099,16200],14098,14739,14033,14674,14739,14032,14739,[14034,7510],7511,7512,7513,[14035,7514],[14738,13661],[14096,13662],[14737,13663],[14033,13664],[14738,13665],14737,14737,14034,[14033,15309],[14674,15310],[14032,15311],14674,14097,14035,14739,14675,14035,14097,14097,[14739,13538],[14032,13539],[14673,13540],[14737,13541],14673,14675,14096,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,14675,14032,14673,14673,14032,14034,14738,14098,[13799,14162],[14034,13538],[14099,13539],[14097,13540],[14673,13541],14098,14034,14096,14675,14673,14097,[14097,8563],[12909,8564],[12908,8565],12908,12972,12908,12973,12973,12908,[12972,16757],[12972,16758],12909,12972,12909,12908,12908,12972,12909,12909,12909,12908,12972,[13800,12781],[13800,8443],[13800,8444],[13800,12777],12972,[12909,8563],[12908,8564,14177],[12909,8565,14178],[12908,14179],[12908,14180],[12972,8507],[12973,8508],12908,12908,12908,12909,[13735,12845,8308],[13799,8309],[13799,8373],[13799,12969],12972,12909,12908,[12973,16757],[13800,12974,16758],13800,13799,[13799,13033],12909,[12973,8371],[12973,8372],[12909,8373],12973,12973,[12972,8378],[12972,8379],[13587,8380],13648,13585,13587,13649,13649,[13643,13715],[13643,13716],13643,13643,13643,[13643,13520],13649,[13650,12615],[13587,12616],13585,[13586,13325],[13585,13326],[13586,13327],13586,13584,13651,13586,13584,13584,13587,13586,13587,13586,13648,13648,13585,13587,13586,13587,13586,13587,13586,13585,13587,13586,13650,[13643,13524],13643,[13643,13456],13585,13651,13585,13586,13651,13650,13587,13650,13650,13651,[13587,12686],[13648,12750],12751,[13584,12752],13650,[13649,13449],[13648,13450],[13585,13451],13649,[13643,13524],13643,[13643,13711],[13643,13522],[13643,12743],12744,[13651,12745],[13648,12681],13651,[13586,13320],[13585,13321],[13584,13322],[13650,13323],[13650,13324],[13649,12551],[13584,12616],13651,[13649,13197],[13649,13198],[13585,13199],13585,13587,13586,13586,[13584,2017],[13585,2018],[13587,2019],13648,[13651,12494],[13649,12430],[13648,12431],13649,13584,13584,13648,13650,[13649,13133],[13585,13134],[13587,13135],13650,13585,13651,13648,13587,13585,13585,13651,[13586,3687],[3636,3688],3636,3701,3635,3699,3699,3700,3699,3635,[3643,3702],3641,3642,3706,[3707,3441],[3707,3443,5906],[3707,3445,5907],[3641,3509,5908],3642,[3640,3761],3636,3700,3699,[3699,5970],[3637,5971],[3635,5972],3636,3699,3700,3635,[3707,3638],3642,[3641,3697],[3637,6034],[3636,6035],[3637,6036],3637,3699,3699,3635,[3635,6162],[3635,6163],3699,3699,3701,3699,3701,3637,3701,3701,[3635,6098],[3701,6099],[3701,6100],3637,[3705,3765],[3704,3766],3705,[3642,3697],3699,3635,3637,[3637,6098],[3636,6099],[3636,6100],[3707,3510],3704,3704,[3642,3697],3637,3700,3636,3700,3699,3635,3635,3636,3636,[3635,6034],[3636,6035],[3707,3442,6036],[3640,3508],[3707,3761],3701,3637,3636,3637,3701,[3699,3615],[4882,3616],4946,4883,4946,[4946,2979],4883,4947,4947,4883,4883,[4882,4865],4866,[4882,4867],[4946,2147488139],[4947,4869],[4882,4870],[4883,4491],[4883,4872],4932,4933,[4882,4802],[4946,4803],4946,4883,4947,[4353,4948],4353,[4353,4751],4946,4947,4947,4946,[4353,4756],4353,[4353,4817],4881,4882,4944,4945,[4353,4948],4353,[4353,5007],[4353,4818],4353,4353,4353,4353,[4353,4865],4866,[4946,4867],[4947,4870],[4883,4491],[4946,4872],4873,[4883,4874],[4882,3170],[4883,3171],[4946,3172],4882,4944,[4353,4688],4945,4946,4946,[4353,4884],4353,4353,4353,[4353,4943],4947,4947,4947,4882,4883,4882,4947,4882,4946,4944,[4353,4692],5057,4353,[4353,4816],[4353,5008],4881,4947,4882,4946,4882,4947,4883,[4882,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,1039,1104,1040,916,[1039,2198],[1040,2199],980,1039,[1103,3090],[979,3026],[915,3027],916,915,979,980,915,915,916,915,1040,915,915,915,980,980,[979,2133],[916,2134],[915,2135],[979,2136],[916,2084],915,980,1107,1108,915,915,915,[980,2198],[980,2199],915,979,915,916,915,1043,1044,979,980,916,[979,2133],[979,2134],[916,2135],[979,2136],[980,2084],980,1107,1108,915,980,980,979,916,980,[916,3020],[915,3021],[979,3085],916,915,916,[979,2005],[979,2006],[979,2007],980,979,916,979,[915,3090],[916,3091],[915,3092],979,915,979,979,916,979,1040,1040,979,916,1040,1103,916,915,[1040,1944],[980,1945],979,980,979,980,915,915,[979,3339],3340,[1103,3341],[1039,3277],916,915,980,1103,1039,1039,979,1040,980,1039,1104,979,1040,916,[1039,13903],[14034,13725],[14096,13726],[14034,13727],[14033,13728],[14096,13729],14674,14674,14034,14675,14674,[14098,13661],[14098,13662],[14673,13663],[14739,13664],[14035,13665],14673,14674,[14033,8507],8635,[14096,8636],14033,14034,14033,14096,14738,14099,14673,[14737,8757],[14739,8758],[14035,8759],[14737,8629],[14096,8630],[14032,8631],[14096,8632],[14737,8633],[14675,8565],14737,14739,[14032,14865],14032,14099,14035,14610,14673,[14035,8507],[13800,13972,8508],13800,13800,13735,13800,[13800,14031],14035,[14035,8499],[14033,8500],14098,14739,14673,14739,[14097,8378],[14739,8379],[14738,8380],14096,14096,14738,[14738,16257],16258,16259,16260,16261,16262,16263,[14033,16264],14034,14032,14097,14034,14033,14096,14739,[14099,7574],7575,7576,7577,[14739,7578],[14034,13725],[14033,13726],[14035,13727],[14097,13728],[14674,13729],14674,14800,14739,[14738,15373],15374,[14738,15375],14738,14097,14738,14099,14673,14673,14674,14674,[14098,13602],[14675,13603],[14096,13604],[14739,13605],[14032,13606],14098,14099,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,14673,14035,14674,14033,14097,14675,[13799,14163],[13799,13971],13799,[13799,13903,13602],[14034,13603],[14674,13604],[14034,13605],[14673,13606],14674,14098,14035,14674,14034,[14097,8627],8628,[12972,8629],[12909,8565],12909,12973,12972,12909,12908,12972,12972,12909,12973,12973,12908,12909,12973,12909,12972,12972,12973,12908,12908,[13799,12780,8507],[13799,8508],[13800,12905],12972,[12908,8627],8628,[12972,8629,14242],[12972,8630,14243],[12909,8631,14244],[12909,8634],[12972,8572],12972,12973,12972,[13800,12782,8371],[13799,8372],[13800,8373],[13736,12713],12973,12909,12972,12973,12972,12909,[13799,12780],13736,13735,[13735,12842],[12909,8499],[12973,8500],12908,[12973,13921],[12973,13922],[12909,13923],[12973,8443,13924],[13587,8444],13651,13648,13587,13587,[13643,13460],13643,13643,[13643,13456],[13643,13392],[13643,13458],13643,[13643,13647,12424],[13650,12425],[13587,12489],13648,13651,13584,13648,13584,13648,13650,13587,[13587,13128],[13650,13129],[13650,13130],[13585,13131],[13648,13132],13651,13585,13650,13584,13584,13586,13650,13650,13587,13651,13587,13651,13587,13651,[13643,13588],13643,[13643,13711],13584,13584,13648,13650,13587,13651,13585,13649,13648,13585,[13587,12559],12814,[13586,12815],13650,13649,13585,13586,13586,13584,[13643,13588],13643,13643,13643,[13643,13456],[13649,12808],12809,[13648,12552],13651,[13651,13384],[13649,13385],[13587,13386],[13584,13387],[13584,13388],[13651,12551],[13584,12552],13586,[13585,13261],[13649,13262],[13650,13263],13649,13584,13586,13649,13650,13587,13584,13649,13587,[13586,12494],[13651,12495],[13585,12496],13648,13584,13586,13650,[13650,13197],[13649,13198],[13584,13199],13651,13649,13651,13585,[13643,13714],[13643,13715],13650,[13649,3750],[13651,3751],[3636,3752],3701,3700,3636,3636,3701,3699,3699,[3704,3762],[3704,3573],3640,[3640,3506],[3640,3442],3701,[3635,5970],[3635,5971],[3641,3702,5972],3707,3706,[3640,3697],3700,3699,[3701,6034],[3701,6035],[3701,6036],3637,3637,3637,3635,3699,[3640,3442],3635,[3637,6098],[3699,6099],[3636,6100],3636,3635,3700,3699,3699,3701,3701,3635,3700,3324,3635,3700,2684357884,3699,[3637,6162],[3635,6163],3701,[3707,3702],3704,3707,[3707,3506],3636,[3637,2089],[3701,2090],3701,[3637,6162],[3701,6163],3700,[3706,3574],3704,[3640,3506],3700,3637,3635,3636,3699,3699,3701,3636,3701,3701,[3635,6098],[3701,6099],[3635,6100],3635,[3707,3442],3637,3701,3701,3636,3635,[3700,3679],[4947,3680],4882,4947,[4946,3042],[4947,3043],[4883,3044],4883,4946,4947,4947,4883,[4883,4930],4931,2147488203,4933,4934,4555,4936,[4883,4996],[4946,4997],4866,[4946,4867],[4946,4803],4946,4880,[4353,4819],4353,[4353,4815],4883,4946,4883,4883,[4353,4820],5057,4353,[4353,4943],4882,4946,4947,4944,[4353,4754],4353,4353,4353,[4353,4687],[4353,4688],[4353,4689],[4353,4690],[4353,4691,4930],4931,4934,4555,4936,[4353,4751,4937],4946,[4947,3234],[4882,3235],[4882,3236],4882,4946,4882,4947,4947,4947,4944,[4353,4754],4353,[4353,4752],4945,4883,4947,4883,4946,4947,4882,4946,4947,4947,4947,4944,[4353,4755],4353,4353,4353,[4353,4751],4883,4946,4882,4947,4947,4880,[4353,4819,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,980,915,916,915,1039,916,916,1103,980,[1040,3090],[1040,3091],[915,3092],915,915,916,979,1043,1044,1043,1044,1043,1044,980,916,916,915,[979,2198],[980,2199],916,916,980,915,1171,1172,1044,980,980,915,916,980,980,980,980,915,1107,1108,915,916,915,916,[915,2198],[916,2199],915,1043,1044,1171,1172,979,980,[916,2957],[980,2958],[915,2961],[916,2958],[980,3084],[979,3085],979,916,979,980,[979,2069],[979,2070],[1040,2071],[980,2072],[916,2020],915,916,915,[979,3155],[980,3156],916,915,916,916,979,[980,1941],[1103,1942],[979,1943],915,1104,979,1039,916,1039,[916,2008],[916,2009],916,980,979,916,916,915,979,[980,3404],3405,[1039,3148],1040,979,915,1040,1040,980,1039,915,979,915,1039,979,1104,1040,[1104,13967],[14032,13789],[14099,13790],[14096,13791],[14099,13792],[14035,13793],14096,14035,14099,14035,14673,[14097,13725],[14739,13726],[14673,13727],[14738,13728],[14611,13729],14032,14675,[14098,8443],[14035,8444],[14035,16697],14097,14035,14738,14034,14032,14673,14737,14032,14737,14033,[14096,8757],[14032,8758],[14675,8759,16697],[14737,8760],[14096,8761],[14033,8629],[14097,8630],[14738,8631],[14035,8632],[14673,8565],14739,14098,14099,[14673,8570],[14098,8571],[13735,14036,8762],13800,13735,13799,[13800,13905],14097,[14033,8308],[14739,8309],[14674,8373],14033,[14675,13534],[14674,13535],[14739,13536],14034,[14097,8443],[13800,14160,8444],[13735,14160],[13800,14161],[13800,14162],[13799,14163,16321],[13736,13970,16322],[13799,16323],[13800,16324],[13799,13969,16325],14737,14675,14675,14032,[14096,13534],[14032,13535],[14738,13536],14096,14673,14098,[14674,7638],7639,7640,7641,[14096,7642],[14737,13789],[14034,13790],[14096,13791],[14097,13792],[14738,13793],14674,14675,14035,[14034,15437],15438,[14739,15439],14033,14099,14033,14033,14096,14675,14098,14033,[14099,13666],[14096,13667],[14739,13668],[14739,13669],[14035,13670],14099,14673,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,14674,14739,14096,[14737,14865],14032,[13800,14100],13800,13735,13800,[13736,14031,13666],[14673,13667],[14097,13668],[14096,13669],[14033,13670],14097,14096,14674,14802,14803,14096,[14032,8692,16697],8693,[12972,8500],12973,12908,12973,12973,12973,12973,12909,[12972,13921],[12973,13922],[12972,13923],[12973,13924],12973,12909,12909,12972,[12973,13921],[12909,13922],[12972,13923],[12972,13924],[13800,12974,8378],[13800,8314],[13799,12842,8315],[13800,13034],12972,[12909,8692],8693,8694,8695,8698,[12908,8636],12973,12973,12908,[13800,12846,8499],[13799,8500],[13800,12778],[12908,13921],[12908,13922],[12908,13923],[12908,13924],12972,12973,12972,[13800,12974],13800,13799,13799,[13800,12969,8563],[12973,8564],[12973,8565],[12972,13985],[12972,13986],[12973,13987],[12909,8378,13988],[12973,8314],[13648,8315],13584,13587,13651,[13643,13524],13643,13643,[13643,13647],13648,[13643,13652],[13643,12487],[13651,12488],[13648,12489],13585,13585,13587,13587,13649,13648,13648,13650,13651,[13648,13192],[13585,13193],[13585,13194],[13584,13195],[13648,13196],13650,13586,13587,13585,13650,13651,13587,13586,13651,13584,13584,13651,13586,13648,[13643,13652],13643,13643,[13643,13521],13586,13587,13584,13586,13586,[13585,12996],13587,13650,13648,[13650,12559],[13650,12560],13648,13587,13587,13650,13648,[13643,13714],[13643,13715],[13643,13523],[13643,13391],[13643,13393],[13643,13395],13584,13649,[13649,12615],[13587,12616],13648,13648,[13586,13449],[13651,13450],[13586,13451],13651,[13648,12615],[13648,12616],13586,[13649,13325],[13587,13326],[13584,13327],13586,13584,13586,13587,13649,13586,13649,13585,13585,13585,[13649,12559],[13584,12560],13649,13585,13584,13587,[13648,13261],[13649,13262],[13651,13263],13584,13648,13650,[13643,13522],13643,13643,[13643,13520,3750],[13586,3814],3815,[3700,3816],3636,3637,3635,3635,3699,3636,[3705,3573],3641,[3642,3506],[3642,3442],3636,3387,3701,[3637,6034],[3700,6035],[3637,6036],[3706,3509],3641,[3641,3761],[3642,3762],[3705,3763],[3700,6098],[3637,6099],[3699,6100],3701,[3699,5906],[3636,5907],[3699,5908],3635,3700,3701,[3699,6162],[3636,6163],3701,3700,[3699,3492],3699,3636,3324,3636,3701,3635,3701,3699,3699,3701,3635,3635,[3641,3763],[3643,3764],[3642,3765],[3642,3766],[3641,3506],[3641,3442],3700,3636,[3635,2153],[3700,2154],3636,3700,3701,3699,[3705,3638],3706,[3641,3697],3701,3699,3700,3701,3700,3699,3699,3635,3701,3637,[3637,6162],[3637,6163],3700,3700,3637,3635,3636,3701,3636,3637,[3700,3743],[4946,3744],[4946,3745],4883,[4882,3106],[4883,3107],[4883,3108],4882,4883,4883,4882,4883,4880,[4353,4819,4995],[4353,2147488267],[4943,4997],[4353,4948,4998],[4353,4619],[4353,4815,5000],4947,4946,[4882,4930],4931,[4947,4674],4946,[4353,4756],4353,5121,[4353,4879],[4883,4808],[4947,4868],[4946,4869],[4883,4803],[4353,4884],4353,[4353,4752],4945,4882,4882,4946,4882,4944,[4353,4689],[4353,4690],[4353,4691],4945,4946,4883,4946,4882,[4946,4995],[4883,4998],[4353,4820,4619],[4353,5000],[4353,4879],4946,4947,[4882,3299],4882,4883,4882,4947,4946,4947,4882,4883,4944,[4353,4688],4945,4946,4947,4947,4947,4946,4883,4946,4947,4946,4882,4883,4947,4944,[4353,4688],[4353,4754],4353,[4353,4879],4947,4946,4946,4947,4947,[4353,4948],[4353,4616],[4353,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,1040,1103,1039,1043,1044,1043,1044,916,979,980,[979,3155],[916,3156],980,1043,1044,979,1043,1044,1043,1043,1044,1108,916,915,979,915,980,916,980,915,916,915,915,1107,1108,916,980,980,916,980,979,916,1043,1044,1171,1172,979,979,980,916,980,979,916,1107,1108,915,980,915,[979,3020],[915,3021],[915,3022],[980,3025],[915,3022],[980,3085],915,916,915,980,1040,[916,2133],[916,2134],[980,2135],[916,2136],[980,2084],916,979,916,[980,3090],[916,3026],[979,3027],979,916,915,915,[915,2005],[979,2006],[1104,2007],979,980,1040,916,1104,1040,915,916,[980,1941],[979,1942],[916,1943],979,979,916,979,979,[979,3147],[1040,3148],980,1043,1044,[915,1941],[1039,1942],[1039,1943],980,980,979,916,1039,979,1039,1104,[1104,14031],14099,[14096,13854],[14033,13855],[14099,13856],14097,14034,14034,14673,14673,14738,[14034,13789],[14032,13790],[14033,13791],[14737,13792],[14096,13793],14674,14032,[14099,8507],[14035,8508],[14035,16761],14034,14034,14737,14096,14675,[14099,13538],[14034,13539],[14739,13540],[14034,13541],14032,14033,14034,[14096,16761],14097,14097,[13799,14160,8692],[14739,8758],[14035,8759],[14032,8760],[14098,8629],[14674,8630],[14674,8631],[14035,8633],[14673,8634],[13800,14163,8508],[13800,13970],13735,13800,[13799,13904],14035,[14032,8371],[14097,8372],[14674,8373],14739,[14738,13597],[14738,13598],[14034,13599],[14034,13600],[14099,13601],[13799,13970,8443],[13800,8444],13799,13799,13800,13799,13799,13800,13800,[13799,13904],14737,14675,14738,[14675,13597],[14675,13598],[14099,13599],[14737,13600],[14739,13601],14034,14737,[14096,7702],7703,7902,7705,[13800,14163,7706],14096,[14673,13854],[14035,13855],[14673,13856],14739,14737,14035,14098,[14673,15501],[14737,15502],[14738,15503],14034,[14674,13534],[14096,13535],[14801,13536],14032,14096,14032,14098,[14673,13730],[14034,13731],[14674,13732],[14034,13733],[14032,13734],14739,14675,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,14674,14099,14739,14097,14673,[13800,13971],13800,13799,[13800,13839],[14033,13730],[14739,13731],[14097,13732],[14675,13733],[14738,13734],14035,14034,14675,14866,14867,14098,[14097,16761],[14096,8499],[12972,8500,13921],[12973,13922],[12972,13923],[12908,13924],12972,12972,12972,12909,[12972,13985],[12908,13986],[12909,13987],[12908,13988],12972,12908,12973,12909,[12972,13985],[12972,13986],[12909,13987],[12908,13988],12909,[13799,12780,8378],[13735,8379],[13800,8380],[13799,12969],12909,[12908,8757],[12973,8758],[12973,8759],[12908,8762],12908,12908,12908,12972,[13799,12910,8563],[13799,8564],[13735,12969,8565],[12973,13985],[12909,13986],[12908,13987],[12909,13988],12909,12973,12972,[12909,2431],[13800,12714],[13799,12780],13800,[13799,12843,8627,2429],8628,[13799,12843,8629],[12973,8565,14049],[12908,14050],[12972,14051],[12908,14052],[12908,8378],[12908,8379],[13584,8380],13587,13586,[13643,13588],13643,[13643,13456],13651,13585,13586,[13458,12551],[13587,12552],13585,13649,13586,13649,13648,13584,13587,13649,13649,13585,[13587,13256],[13584,13257],[13585,13258],[13649,13259],[13651,13260],13586,13585,13651,13648,13585,[13586,12361],[13650,12365],[13585,12362],[13650,12365],[13651,12366],13584,13586,13651,13651,[13586,12361],[13643,12365],[13643,12362],[13643,12365],[13651,12366],13649,13585,13584,13648,[13648,13060],13586,13587,13649,[13586,12623],[13584,12624],13649,13584,[13643,13714],[13643,13715],[13643,13523],13643,13643,13643,[13643,13647],13649,13587,13586,[13585,12424],[13643,12425],[13643,13520,12489],13649,13585,13648,13651,13650,[13643,13714],[13715,12679],[13649,12680],[13648,12681],13584,13651,13587,13650,13648,13585,13584,13650,[13643,13714],13587,13587,13586,13651,[13585,12623],[13585,12624],13648,13587,13585,13651,[13651,13325],[13587,13326],[13586,13327],13648,13587,[13643,13716],13643,13643,[13643,13456],[13643,13392,3623],3878,[3699,3879,5906],[3635,5907],[3635,5908],3324,3700,3637,3388,[3641,3702],3642,3642,[3640,3697],3637,3636,3635,3699,[3699,6098],[3636,6099],[3700,6100],3699,[3704,3442],[3640,3508],3642,3641,[3641,3697,6162],[3637,6163],3700,3635,[3701,5970],[3699,5971],[3701,5972],3699,3387,3635,3701,3636,3701,3635,[3701,3556],[3636,3745],3700,3701,3699,3635,3637,3635,3700,3636,3637,3699,[3706,3510],3643,3704,3640,3642,[3641,3697],3699,3636,3699,3637,3637,3699,3699,3637,3635,3635,[3642,3442],3635,3636,[3700,5906],[3701,5907],[3700,5908],3700,3636,3701,3637,3699,3636,3635,3636,3635,3636,3635,3387,3700,3637,3700,3699,[3699,3807],3808,[4946,3616],4882,[4883,3170],[4947,3171],[4882,3172],4882,4947,4883,4946,4883,[4353,4948],4353,4353,[4353,5007],[4353,4818],4353,[4353,4879],4882,4882,4882,[4882,4737],[4882,4738],4946,[4353,4884],[4353,4808],[4353,2147488139],[4353,4943,4869],[4883,4872],4932,4933,[4946,4802],[4353,5012,4803],4353,[4353,4751],4946,4947,4883,4883,4883,4947,4883,4883,4883,4946,4947,4946,4947,4882,4947,4946,[4353,4884],4353,[4353,4816],[4353,5008],[4353,5009],4881,4947,4947,4947,4882,4947,4883,4946,4947,4883,4883,4883,4882,4882,4882,4947,4883,4947,4946,4947,4947,4946,4947,4946,4882,4947,4944,[4353,4688],4945,4947,4883,4946,4883,4880,[4353,4818],4353,[4353,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,1103,1040,1107,1108,1044,1108,1040,1039,1039,[915,3219],[916,3220],916,1107,1108,916,1107,1108,1107,1107,1108,1172,979,915,979,[979,1537],[915,1538],979,915,916,979,915,915,1171,1172,980,980,916,915,980,916,980,1107,1108,980,916,915,980,979,979,916,915,979,1171,1172,915,916,[915,3083],[980,3084],[980,3085],915,916,[980,1941],[916,1942],[916,1943],979,916,1039,979,916,[915,2198],[915,2199],916,1039,915,979,915,915,[915,3090],[915,3091],[979,3092],979,980,916,[979,2069],[916,2070],[979,2071],[980,2072],[1040,2020],916,1103,1104,1103,916,979,[979,2005],[916,2006],[979,2007],979,979,979,915,915,[916,3211],[915,3212],1039,1107,1108,[915,2005],[1040,2006],[916,2007],980,1104,1040,979,1104,915,979,915,[1039,13968],14033,14035,14800,14099,14099,14035,14099,14674,14098,14032,14097,[14096,13854],[14099,13855],[14098,13856],14098,14800,14673,[14035,8378],[14098,8314],[14099,8315],14033,14738,14032,14096,14099,[14738,13602],[14099,13603],[14737,13604],[14673,13605],[14098,13606],14737,14673,14738,14033,[13799,13908],13800,[13799,13968],14097,14673,[14674,8627],[14675,8758],[14096,8759],[13799,14160,8760],[13799,13970,8761],[13736,8636],13799,13800,[13800,13538],[13800,14095,13539],[14097,13540],[14098,8435,13541],[14098,8436],14033,14032,[14738,13661],[14737,13662],[14738,13663],[14034,13664],[13799,14100,13665],[13800,8507],[13800,8508],13800,13800,13800,13736,13800,[13800,13904],[13736,13840],14737,14673,14739,14099,[14097,13661],[14035,13662],[14035,13663],[14674,13664],[14098,13665],14674,14032,[13736,14100],[13799,7767],[13800,7768],[13800,7769],13799,[13799,14095],14035,14674,14738,14673,14096,14738,14674,14097,14738,14096,[14674,13597],[14033,13598],[14096,13599],[14035,13600],[14739,13601],14737,14032,14737,[14675,13794],[14737,13795],[14034,13796],[14033,13797],14673,14739,14098,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,14738,14738,14738,14032,[13800,13908],13800,[13800,13904],[13799,13840],14035,[14097,13794],[14098,13795],[14673,13796],[14099,13797],14033,14034,14737,14739,14032,14034,14099,[14098,8308],[12909,8309],[12973,8373,13985],[12909,13986],[12909,13987],[12909,13988],12973,12908,12908,12908,[12973,14049],[12973,14050],[12909,14051],[12908,14052],12972,12908,12908,12908,[12972,14049],[12908,14050],[12909,14051],[12908,14052],12972,12973,[13800,12715,8507],[13800,12717,8444],12909,12972,12972,12973,[12973,13921],[12972,13922],[12909,13923],[12908,13924],12908,12909,[12972,8627],8628,[12909,8629],[12973,8565,14049],[12908,14050],[12972,14051],[12973,14052],12972,12909,12909,[12973,2495],12973,12973,[13800,12781],[13800,2493],[13800,8692],8693,[13800,12969,8436,14113],[12973,14114],[12909,14115],[12909,14116],12972,[12972,8443],[13586,8444],13648,13648,[13643,13652],13643,[13643,13455],13585,13585,13648,[13649,12615],[13649,12616],13585,13648,13649,13651,13649,[13643,13713],[13643,13714],[13643,13715],13586,13650,[13651,13320],[13649,13321],[13586,13322],[13649,13323],[13650,13324],13648,13585,13587,13648,[13584,12424],[13649,12425],[13649,12429],[13649,12426],[13650,12429],[13587,12430],[13648,12431],[13587,12417],[13586,12418],[13584,12424,12419],[13584,12425,12420],[13584,12429,12421],[13649,12426,12422],[13587,12429],[13650,12430],[13648,12431],13649,13651,13650,13587,13584,13585,[13643,13712],[13643,13713,12494],[13643,13712,12430],[13651,12431],[13643,13523],13643,13643,13643,13643,[13643,13456],[13643,13392],13586,13649,13649,[13650,12487],[13643,13458,12488],[13643,12489],13643,[13643,13711],13587,13648,13650,[13643,13460],13643,[13643,12743],12744,[13649,12745],[13586,12681],13587,13651,13648,13648,13585,13584,[13643,13716],[13643,13456],13649,13651,13650,[13584,12686],[13587,12687],[13585,12688],[13643,13714],[13643,13715],13585,13587,13650,[13643,13713],[13643,13714],[13643,13715],[13643,13522],13643,13643,[13643,13457],13648,[13587,3623],[3637,3624],[3636,5970],[3701,5971],[3637,5972],3636,3635,3636,[3641,3762],[3640,3572],[3706,3507],[3642,3442],3699,3635,3637,3635,3635,[3700,6162],[3637,6163],3700,3699,3636,3637,[3704,3443],[3705,3445],3701,3635,3637,3636,[3637,6034],[3700,6035],[3637,6036],3636,3637,3324,3635,3699,3635,[3636,2229],[3701,2231,3620],[3635,3744],[3699,3745],3699,[3699,3750],[3699,3810],[3635,3811],[3636,3745],3701,3700,[3637,5906],[3699,5907],[3705,3574,5908],3705,[3704,3506],[3642,3443],[3706,3445],3699,3700,3701,3700,[3637,5906],[3700,5907],[3636,5908],3701,3636,3699,3700,2684357884,3635,3699,[3635,5970],[3637,5971],[3700,5972],3635,3701,3387,3636,3701,3701,3637,3701,3636,3699,3699,[3635,5906],[3700,5907],[3636,5908],3637,3636,3637,[3701,3679],[4947,3680],4946,[4882,3234],[4946,3235],[4882,3236],4947,4947,4947,4946,4880,[4353,5012],4353,4353,4353,4353,4353,[4353,4816],4881,4946,4882,[4883,4801],[4883,4867],[4883,4870],[4353,4948,4871],[4353,4872],2147488203,4933,4936,[4947,4996],[4946,4997],4866,[4353,4867],[4353,4803],[4353,4815],4947,4946,4882,4947,4882,4883,4947,4882,4946,4946,4947,4947,4882,4883,4946,4882,4944,[4353,4755],4353,4353,4353,[4353,4816],4881,4947,4946,4947,4882,4883,4946,4880,[4353,5008],4881,4946,4946,4882,4882,4947,4882,4947,4946,4883,4882,4947,4947,4947,4883,4946,4947,4947,4883,4946,4883,4882,4947,[4353,4948],4353,4353,[4353,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,979,916,1043,1171,1172,1108,1172,916,1103,[1039,3282],[980,3283],[979,3284],916,1171,1172,916,1171,1172,1171,1171,1172,915,916,915,916,[915,1601],[980,1602],980,980,979,916,915,915,980,979,979,979,980,915,979,979,915,1171,1172,916,916,916,915,915,915,915,916,979,979,915,916,[979,3083],[979,3084],[916,3085],916,[915,1954],979,[979,2005],[980,2006],[980,2007],980,1043,1044,916,980,915,1103,979,916,916,915,915,916,915,[979,3155],[916,3156],916,979,915,[915,2133],[916,2134],[915,2135],[915,2136],[916,2084],980,1104,1103,979,979,915,[916,2069],[916,2070],[980,2071],[915,2072],[915,2020],916,980,[980,3020],[915,3021],[1104,3085],1043,1171,1172,[979,2069],[1040,2070],[980,2071],[1103,2072],[980,2020],915,1039,1104,915,1104,1039,1040,[1039,13969],14099,14034,14098,14033,14034,14096,14033,14737,14033,14098,14033,14033,14673,14739,14099,14035,14096,[14035,8378],[14097,8314],[14098,8315],14738,14032,14033,14099,[14097,13666],[14097,13667],[14674,13668],[14738,13669],[14737,13670],14034,14611,14737,14034,[13800,13972],13800,13800,[13799,14095],[14097,13534],[14674,13535],[14035,13536],[13800,14100],13800,13799,13800,13799,[13735,13839],[13736,13840,13602],[14035,13603],[14098,13604],[14097,8499,13605],[14034,8500,13606],14738,14611,[14674,13725],[14738,13726],[14674,13727],[14739,13728],[13799,13970,13729],[13800,8378],[13799,8314],[13800,13905,8315],[13799,13840],[13800,13841],[13800,13842],[13799,13843],14099,14738,14674,14739,14097,14099,[14099,13725],[14675,13726],[14096,13727],[14035,13728],[14738,13729],14099,[13799,14160],[13799,13970],[13800,13904],[13799,13841],[13800,13842,13538],[13735,13843,13539],[14032,13540],[14737,13541],14675,14738,14033,14096,14096,14673,14098,14673,14738,[14611,13661],[14033,13662],[14099,13663],[14033,13664],[14034,13665],14035,14739,14097,[14032,13858],[14097,13859],[14673,13860],[14033,13861],14032,14673,14096,12763,12764,12765,[12766,1109],[12767,1110],[12768,1111],12769,[12770,1109],[12771,1110],[12772,1111],12773,12774,12775,14099,14739,14737,14096,[13800,13972],13799,[13799,13903],14738,14033,[14674,13858],[14033,13859],[14673,13860],[14032,13861],14737,14033,14737,14035,14033,14032,[14034,8371],[12973,8372],[12973,8373],[12909,14049],[12909,14050],[12909,14051],[12908,14052],12973,[13800,13034],12908,12909,[12909,14113],[12972,14114],[12908,14115],[12908,14116],12972,12908,12909,12908,[12909,14113],[12973,14114],[12909,14115],[12909,14116],12909,12909,[12908,8378,16693],[12908,8314,16694],[12972,8315],[13799,13036],[13799,13037],12973,[12973,13985],[12973,13986],[12973,13987],[12908,13988],12973,12973,12973,[12972,8692],8693,[12908,8436,14113],[12908,14114],[12973,14115],[12909,14116],12908,12973,12972,[12973,2559],12972,12908,12973,[13799,12715,2557],[13800,12716],[13800,12717,8499],[12908,8500,14177],[12908,14178],[12908,14179],[12972,14180],12973,[12908,8507],[13648,8508],13650,13587,[13643,13716],13643,[13643,13583],13648,13584,13587,[13584,12679],[13585,12680],[13584,12681],13650,13585,13649,[13643,13460],13643,13643,13643,[13643,13520],13650,[13650,13384],[13649,13385],[13650,13386],[13587,13387],[13650,13388],13584,[13586,12361],[13584,12362],[13585,12365],[13650,12488],[13584,12489],13587,13584,13585,[13649,12494],[13585,12495],[13650,12362,12481],[13649,12365,12482],[13586,12488,12483],[13585,12489,12484],[13651,12485],[13587,12486],13651,[13584,12494],[13585,12495],[13648,12496],13649,13649,13586,13584,[13643,13522],13643,13643,[13643,12494],[13643,12495],[13643,12496],[13643,13391],[13643,13393],[13643,13394],[13643,13395],[13651,12996],13585,13587,13584,13585,[13648,12551],[13650,12552],[13643,13459],13643,13643,[13643,13647],13585,13587,[13643,13588],13643,[13643,13456],[13584,12808],12809,[13649,12552],13585,13584,13648,13651,13649,[13643,13522],13643,[13643,13455],13585,13585,[13587,12686],[13584,12750],12751,[13643,12752],13643,13643,[13643,13647],13584,[13643,13522],13643,13643,13643,13643,[13643,13391],[13643,13392],13649,13651,[13651,3687],[3701,3688],[3699,6034],[3699,6035],[3635,6036],3635,3636,[3706,3702],3642,3706,[3707,3697],3635,3635,3699,3388,3636,3699,3636,3636,3637,3635,3636,3635,3700,3635,3701,3699,3635,3700,[3699,6098],[3700,6099],[3700,6100],3636,3700,3635,3700,[3635,2230],[3699,2165],2359,[2357,3684],3808,[3700,3809],[3637,3810],[3637,3814],3874,3875,[3701,3744],[3636,3745],3636,[3701,5970],[3699,5971],[3707,3638,5972],3704,[3704,3697],3700,3701,3699,3701,3699,3636,[3637,5970],[3635,5971],[3635,5972],3699,3637,3700,3637,3635,3701,3699,[3699,6034],[3635,6035],[3699,6036],3700,3700,3635,3636,3700,3699,3700,3700,3635,3700,3636,[3701,5970],[3635,5971],[3699,5972],3700,3637,[3700,3551],[4946,3552],[4947,3553],4946,4882,[4882,3299],4882,4882,4880,[4353,5010],[4353,5011],[4353,4819],4353,[4353,4752],[4353,4689],[4353,4690],[4353,4691],[4353,4755],4353,[4353,4943],4946,4946,[4946,4865],4931,4934,4935,4936,[4946,2147488267],[4946,4997],[4946,5000],4882,4946,[4882,4930],4931,[4353,4674],[4353,4879],4882,4947,4946,4946,4947,4947,4947,4947,4880,[4353,5008],4881,4883,4947,4883,4947,4947,4882,[4353,4948],4353,4353,4353,4353,[4353,5007],4881,4883,4947,4947,4882,4946,[4353,4948],4353,[4353,5007],[4353,5008],4881,4946,4883,4882,4882,4883,4883,4882,4947,4947,4946,4947,4947,4883,4882,4883,4883,4882,4946,4947,4947,4944,[4353,4755],[4353,4808],[4353,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1103,1941],[1039,1942],[979,1943],1107,1107,1171,1172,1103,980,[1104,3282],[1103,3346],3347,[980,3348],916,979,916,916,979,915,980,980,980,916,915,980,915,915,916,979,916,979,915,979,916,979,915,916,980,979,980,916,980,916,979,980,915,916,980,916,916,915,916,916,980,916,980,915,3147,[915,3148],915,[980,2017],[979,2018],[979,2019],[979,2069],[1104,2070],[1039,2071],[1104,2072],[1107,2020],1108,1043,1044,915,980,980,979,1040,915,[979,1946],915,915,[915,3219],[915,3220],916,916,915,916,[915,2198],[980,2199],980,1039,1039,1039,915,916,915,915,[979,2133],[979,2134],[916,2135],[979,2136],[916,2084],979,[915,3020],[980,3021],[1040,3085],1039,1107,1108,1039,[980,2133],[915,2134],[1104,2135],[916,2136],[916,2084],916,1039,980,980,1040,1104,1039,915,[1103,14095],14032,14097,14034,14675,14032,14034,14098,14737,14035,14673,14738,14738,14099,14033,14739,14096,14099,[14098,8378],[14099,8379],[14032,8246],[14099,8249],[14098,8250],14097,[14097,13730],[14673,13731],[14097,13732],[14098,13733],[14099,13734],14032,14675,14035,14738,[13799,14036],13799,[13799,13839],[14674,13597],[14032,13598],[14739,13599],[14098,13600],[13736,13908,13601],13799,13800,13799,[13800,13904],14097,[14096,13666],[14738,13667],[14099,13668],[14098,8563,13669],[14738,8564,13670],[14032,8565],14739,[14099,13789],[14098,13790],[14096,13791],[13799,14100,13792],[13799,13793],13799,[13735,8378],[13735,14095,8379],[14034,8380],14674,14739,14033,14738,14035,14033,14673,14096,14097,[14099,13789],[14674,13790],[14673,13791],[14737,13792],[14737,13793],[13799,14100],13799,13799,[13799,14095],14738,[14097,13602],[14097,13603],[14033,13604],[14033,13605],[14034,13606],14034,14033,14033,14097,14098,14739,14737,14674,[14096,13725],[14033,13726],[14032,13727],[14739,13728],[14737,13729],14034,14674,14098,14096,14738,14096,14033,14034,14739,14674,12827,12828,12829,[12830,1173],1174,[12832,1175],[12833,1176],[12834,1173],1174,[12836,1175],[12837,1176],12838,12839,14096,14032,14737,14738,[13800,14036],13799,[13800,13967],14034,14675,14801,14738,14032,14033,14096,14034,14099,14032,14673,14099,[14097,8435],[12973,8436],12973,[12973,14113],[12972,14114],[12909,14115],[12973,14116],[13800,12782],13800,[13799,13033],12908,[12908,14177],[12908,14178],[12973,14179],[12908,14180],12909,12972,12972,12972,[12973,14177],[12908,14178],[12973,14179],[12972,14180],12972,12973,[12908,16757],[12973,8378,16758],[13800,12844,8379],[13799,8380],13800,[13735,12969],[12909,14049],[12972,14050],[12909,14051],[12909,14052],12908,12972,12908,12908,[12908,8499],[12908,8500,14177],[12973,14178],[12908,14179],[12973,14180],12972,12973,12908,[12972,2623],12972,12908,12909,[12909,2621,16693],[12908,16694],[12909,8435],[12908,8436,14241],[12909,14242],[12909,14243],[12973,14244],12909,[12909,8378],[12972,8314],[13651,8315],[13643,13522],13643,[13643,13391],13584,13650,13648,13587,[13585,12743],12744,[13650,12745],[13586,12681],13585,13649,[13643,13524],13643,13643,13643,13643,[13643,13455],13586,[13648,13449],[13587,13450],[13648,13451],13651,[13585,12424],[13649,12425],[13649,12426],[13585,12429],[13584,12489],13648,13651,13651,13649,13586,[13650,12494],[13587,12426,12545],12546,12547,12548,[13585,12549],[13586,12550],13649,13587,[13587,12559],[13585,12560],13584,13584,[13643,13715],[13643,13716],13643,[13643,13391],[13643,13396],13643,[13643,12559],[13643,12560],[13643,13647],13648,13649,13648,[13649,13060],13584,13584,13649,13649,[13651,12615],[13649,12616],[13643,13652],13643,13643,[13643,13520],[13643,13712],[13643,13713],[13643,13523],13643,[13643,13647],13648,[13649,12551],[13586,12616],13586,13651,13585,13587,[13643,13460],13643,13643,[13643,13519],13585,13649,[13585,12559],12814,[13650,12815],[13643,13458],13643,13643,[13643,13521],[13643,13716],13643,[13643,13456],[13643,13392],[13643,13458],13643,[13643,13520],13584,13648,[13648,3750],[13650,3751],[3636,3752],[3701,6098],[3700,6099],[3637,6100],3636,3637,3701,[3704,3443],[3706,3445],3637,3701,3701,3637,3699,3700,3701,3636,3637,3637,3637,3637,[3701,5906],[3701,5907],[3635,5908],3637,3637,3636,3701,[3635,6162],[3636,6163],3701,[3636,3491],3635,[3700,2164],[3637,2165],2359,2359,2358,2422,[2421,3872],3873,3682,3878,[2424,3938],[2360,3939],3808,[3699,3809],[3699,3745],[3700,6034],[3637,6035],[3636,6036],[3642,3442],3635,3700,3699,3635,3635,3636,3387,[3637,6034],[3700,6035],[3635,6036],3635,3635,3699,3636,3636,3701,3636,[3700,6098],[3637,6099],[3637,6100],3635,3699,3699,3636,3700,3636,3700,3700,3637,3637,3636,[3699,6034],[3701,6035],[3636,6036],3637,3700,[3637,3615],[4946,3616],4947,4883,4882,4946,4883,4880,[4353,4818],4353,4353,4353,[4353,4687],[4945,2979],4882,4883,4946,[4353,4948],4353,[4353,4943],4883,4947,4882,[4947,4995],[4882,4998],[4882,4999],[4883,5000],4883,4882,4946,[4947,2979],4946,4947,[4882,4737],[4353,4753,4738],4945,4883,4882,4882,4946,4882,4946,4883,4947,[4353,4756],4353,[4353,4817],4881,4883,4947,4882,4947,4883,4944,[4353,4688],[4353,4754],4353,4353,4353,[4353,4943],4883,4882,4883,4882,4882,4944,[4353,4754],4353,4353,[4353,5007],[4353,5009],[4353,5010],[4353,5011],4881,4882,4947,4882,4947,4883,4947,4946,4947,4883,4947,4880,[4353,5010],[4353,5011],4881,4883,4947,4947,[4353,4948,4808],[4353,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1103,2005],[1040,2006],[1039,2007],1171,1171,1172,1039,1040,[1039,3282],[979,3283],3410,[1813,3411],1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,[1813,3211],[979,3212],915,980,979,979,[979,2133],[1039,2134],[1104,2135],[1104,2136],[1171,2084],1172,1107,1108,1104,1104,980,915,915,916,916,916,[916,3282],[916,3283],[980,3284],979,980,980,916,915,979,916,916,980,980,916,[980,2010],916,916,980,[916,2198],[916,2199],[980,2957],[979,2961],[980,2958],[980,3084],[1040,3085],1039,1039,1171,1172,916,1103,[916,2198],[1103,2199],1104,915,915,1103,979,980,916,916,979,915,[1104,14159],[980,14160],[1039,14161],14096,14034,14801,14033,14097,[14032,14675,13538],[14034,13539],[14098,13540],[14033,13541],14739,14032,14099,14739,14032,14034,14034,[14098,8378],[14097,8310],[14099,8313],[14099,8314],[14033,8315],[14032,13794],[14738,13795],[14099,13796],[14098,13797],14096,14034,14035,14738,14035,[13736,13908],13799,[13799,13903],[14035,13661],[14034,13662],[14673,13663],[14737,13664],[13799,14036,13665],13800,[13800,13905],[13800,13840],14034,14035,[14099,13730],[14674,13731],[14099,13732],[14032,8627,13733],[14098,8628,13734],[14738,8436],14739,14033,[14675,13854],[14739,13855],[13799,13971,13856],13799,13800,[13799,13904],[14098,8443],[14737,8444],14097,14674,14098,14739,[14035,8245],[14098,8246],[14034,8249],[14739,8250],14801,14737,[14033,13854],[14035,13855],[14035,13856],14098,[13800,14164],13800,[13800,13904],14096,14097,[14032,13666],[14034,13667],[14675,13668],[14032,13669],[14096,13670],14739,14096,14034,14675,14675,14738,14033,14675,[14673,13789],[14099,13790],[14034,13791],[14032,13792],[14098,13793],14032,14738,14033,14801,14673,14035,14675,14802,14803,14738,[14033,12891],[14673,12892],[14035,12893],[14033,12894,1237],1238,[14737,12896,1239],[14737,12897,1240],[14737,12898,1237,1241],1238,[14096,12900,1239],[14674,12901,1240],[14675,12902,1241],[14738,12903],14675,14674,14739,14673,[13736,14100],13799,[13800,14031],14737,14097,14032,14673,14032,14098,14675,14097,14673,14739,14738,14738,[14035,8499],[12972,8500],12909,[12909,14177],[12973,14178],[12973,14179],[12908,14180],[13799,12910],13799,13800,[13800,12843],[13799,13036,14241],[13799,13037,14242],[12909,14243],[12972,14244],12909,12909,12909,12973,12972,[12973,14242],[12972,14243],[12908,14244],12909,12909,12973,[13799,12782],[13736,8443],[13735,12778,8444],[13799,12714],12908,[12909,14113],[12909,14114],[12909,14115],[12973,14116],12972,12972,12908,[12973,8371],[12973,8372],[12973,8373],[12908,14242],[12972,14243],[12972,14244],12972,12972,12908,[12972,2431],12972,[12972,5638],12972,[12973,16757,2430],[12908,16758],[12973,8499],[12908,8500],12972,12908,12909,12909,12973,[12909,8378],[12973,8379],[13643,8380],13643,[13643,13647],13587,13585,13587,13585,13587,[13586,12808],12809,[13585,12680],[13585,12681],13649,[13643,13588],13643,13643,13643,13643,[13643,13583],13648,13586,13649,13585,[13651,12487],[13587,12488],[13649,12489],13584,13585,13649,[13512,13715],13649,13651,13649,13585,13649,[13650,12609],12610,12611,12612,[13584,12613],[13585,12614],13584,13584,[13587,12623],[13649,12624],13584,[13643,13460],13643,13643,13643,[13643,13647],13648,[13643,13458],[13643,13457,12623],[13456,12624],13587,13586,13650,13649,13648,13648,13651,13586,13650,[13584,12551],[13648,12552],13585,[13643,13392],[13643,13459],13643,13643,13643,13643,[13643,13391],13649,[13649,12424],[13584,12425],[13648,12489],13650,13587,13587,13584,[13643,13524],13643,13643,[13643,13583],13587,13648,[13649,12623],[13586,12624],13585,13584,[13643,13459],13643,13643,13643,13643,[13643,13647],13585,[13643,13652],13643,13643,[13643,13455],13585,[13585,3623],3815,[3637,3816],[3636,6162],[3637,6163],3701,3636,[3636,2089],[3700,2090],3636,3701,3637,[3699,5906],[3637,5907],[3637,5908],3635,3637,3699,3701,3636,3387,3636,3324,[3635,5970],[3636,5971],[3637,5972],3699,3387,3699,3636,3637,3699,[3636,3750],[3700,2229,3555],[3637,2165],2359,2358,2360,2422,2358,2424,2424,[2359,3937],[2359,3938],[2357,3942],2358,2421,[2359,3872],3873,[3700,3680],[3700,6098],[3637,6099],[3699,6100],2684357948,3699,3636,3635,3701,3636,3637,3636,[3699,6098],[3700,6099],[3636,6100],3700,3700,3324,3701,3701,3637,3635,[3699,6162],[3701,6163],[3701,3750],[3699,3810],[3699,3811],[3701,3745],3636,3637,3701,3637,3699,3637,3637,3635,[3635,6098],[3701,6099],[3701,6100],3637,3635,[3700,3679],[4883,3680],4946,4946,4883,4947,4883,[4353,4756],4353,4353,[4353,4687],[4353,4688],[4945,3042],[4946,3043],[4946,3044],4946,4947,[4353,4948],4353,[4353,4816],4881,4947,4883,4946,4947,4883,4946,4946,4946,[4946,3042],[4883,3043],[4882,3044],4883,[4946,4801],[4946,4802],[4882,4803],4883,4946,4882,4883,4883,4947,4882,4883,[4353,4884],5121,4353,[4353,4943],4882,4883,4947,4946,4882,4947,4882,4944,[4353,4688],[4353,4692],4353,[4353,4816],4881,4883,4947,4947,4947,4946,4944,[4353,4688],[4353,4755],4353,4353,4353,4353,[4353,4816],[4353,5008],[4353,5009],4881,4883,4882,4947,4883,4882,4883,4947,[4353,4948],4353,4353,[4353,4751],4947,4947,4883,[4882,4745],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[915,2069],[915,2070],[980,2071],[1104,2072],[1107,2020],1108,1104,[1039,3282],[979,3346],3347,[1877,3474],1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,[1877,3275],[979,3276],[979,3277],915,979,915,916,[915,2198],[979,2199],916,916,916,1171,1172,915,915,980,916,979,980,979,[980,3282],[980,3346],3347,[979,3348],916,979,980,979,980,979,916,916,915,979,915,980,916,980,979,979,[979,3020],[915,3021],[1103,3025],[1039,3022],[1040,3085],980,980,1039,979,1040,979,1103,916,916,979,980,1103,979,916,979,1040,1103,980,1039,915,1103,[980,13904],14096,14099,14675,14099,14032,[14033,14674,13602],[14035,13603],[14098,13604],[14097,13605],[14099,13606],14738,14738,14099,14099,14034,14097,14611,14035,14098,[14097,8378],[14099,8379],[14098,8380,13858],[14737,13859],[14035,13860],[14097,13861],14098,14738,14099,14739,14098,[13799,13972],13800,[13735,14031],[14098,13725],[14033,13726],[14098,13727],[14737,13728],[14035,13729],[13799,13840],14097,[14032,8245],[14098,8246],[14097,8250],[14033,13794],[14097,13795],[14032,13796],[14096,13797],[14097,8499],[14737,8500],14034,14035,14739,[13800,14100],13800,[13800,13839],[13800,13840],14099,[14738,8378],[14737,8314],[14675,8315],14033,[14035,14865],[14675,8308],[14097,8309],[14738,8310],[14099,8313],[14099,8314],[14674,8315],14035,14675,14674,14035,[13799,14100],13800,13736,[13799,13903],14035,14675,[14099,13730],[14674,13731],[14099,13732],[14034,13733],[14034,13734],14035,14738,14099,14034,14737,14096,14034,14673,14097,[14738,13854],[14032,13855],[14800,13856],14738,[14674,8570],[14673,8630],[14673,8814],[14675,8815],[14033,8816],[14034,8565],14099,14866,14867,14097,14098,[14675,14411],[14098,14412],[14032,1301],1302,[14737,12960,1303],[13800,14163,12961,1304],[14096,12962,1301],1302,[14096,1303],[14674,1304],14033,14098,14738,14034,14034,14098,[13799,13908],13800,[13799,14159],14033,14099,14674,14738,14739,14611,14032,14032,14738,14034,14099,14035,[14097,8563],[12973,8564],[12909,8565],12973,[12908,14242],[12909,14243],[12972,14244],12972,[13800,12714],[13799,12780],13800,13799,13799,[13799,12969],12972,12972,12972,12908,12909,12973,12972,12973,12973,12908,12972,12972,[13800,12910],[13800,8507],[13800,12777,8508],12972,12972,[12909,14177],[12909,14178],[12973,14179],[12972,14180],12909,12973,12972,[12972,8435],[12908,8436],12909,12909,12908,12973,12973,12908,12908,[12973,2495],12909,12973,12909,[13799,13037,2494],12908,[12972,8435],[12972,8436],12972,12972,12908,12909,12972,12972,[12972,8443],[13643,8444],[13643,13457],13648,13651,13650,13649,13648,13650,13649,[13585,12873],12744,[13649,12745],[13650,12681],13649,[13643,13396],13643,[13643,13391],[13643,13392],13584,13587,13586,13648,13649,[13648,12551],[13651,12552],13584,13651,13587,[13512,13523],13641,[13641,13455],13648,13651,13648,13586,[13584,12673],12674,12675,12676,[13587,12677],[13586,12678],13584,13584,[13650,12559],[13648,12560],13651,[13643,13524],13643,[13643,13391],[13643,13392],13584,13648,[13648,12686],[13587,12687],[13649,12688],13584,13651,13585,13586,13648,13586,13650,13649,13586,[13651,12615],[13650,12616],13585,13585,13586,[13643,13458],13643,13643,13643,[13643,13455],[13585,12487],[13584,12488],[13586,12489],13584,13649,13648,13584,13585,[13643,13588],13643,13643,[13643,13647],13585,13584,[13586,12559],[13651,12560],13586,13584,13649,[13643,13393],[13643,13394],[13643,13395],[13643,13458],[13643,13520],13584,13587,[13643,13459],13643,[13643,13519],13584,[13585,3623],[3637,3624],3636,3636,3387,3637,3699,[3636,2153],[3700,2154],3699,3700,3700,[3636,5970],[3636,5971],[3700,5972],3700,3636,3636,3700,3637,3700,3699,3700,[3637,6034],[3700,6035],[3636,6036],3699,3701,3635,3635,3635,[3700,3750],[3701,3751],[2423,3619],2424,2360,2358,2421,[3636,2487],[3637,2488],2359,2423,2423,2358,2357,[2424,2549],[2421,2550],[2360,2551],[2359,3743],[3700,3744],[3700,3745,6162],[3700,6163],3636,[3699,3750],[3700,3810],[3701,3811],[3637,3812],[3636,3813],[3635,3745],3700,3636,[3637,6162],[3699,6163],3699,3699,3701,3700,3699,3636,3700,[3700,3750],[3699,3810],[3699,3811],[3701,3814],3874,3875,[3637,3744],[3637,3745],3636,3700,3699,3635,[3701,3750],[3635,3810],[3636,3745],[3699,6162],[3636,6163],3701,3635,[3701,3750],[3635,3751,3743],[4883,3744],[4946,3745],4947,4883,4883,4947,[4353,4820],4353,4353,[4353,4943],4946,[4946,3106],[4946,3107],[4947,3108],4880,[4353,5010],[4353,4818],4353,4353,[4353,4943],4883,4947,4946,4883,4883,4947,4883,4947,[4883,3106],[4947,3107],[4883,3108],4946,[4946,4865],4866,[4883,4867],[4882,4803],4882,4946,4882,4947,4883,4946,4883,4944,[4353,4692],4353,[4353,5007],4881,4882,4946,4883,4946,4947,4882,4946,4947,4944,[4353,4754],4353,[4353,4943],4883,4882,4882,4947,4882,4946,4947,4944,[4353,4689],[4353,4690],[4353,4691],[4353,4692],4353,4353,4353,[4353,4943],4947,4947,4947,4946,4882,4946,4947,[4353,4756],4353,4353,[4353,4879],4883,4947,4883,[4883,4745],[4746,2979],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[980,2133],[980,2134],[916,2135],[915,2136],[1171,2084],1172,915,[1104,3155],3410,[1832,3411],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3339],3340,[980,3341],[980,3342],[980,3343],[915,3277],979,916,979,915,979,1040,1040,980,916,915,916,916,915,979,980,[915,3155],3410,[915,3411],916,915,[980,972],[916,973],915,916,979,980,915,979,980,979,916,916,980,979,[915,3083],[916,3084],[915,3085],1103,1039,1103,[1104,1941],[1040,1942],[979,1943],979,916,979,915,1103,979,915,1039,916,980,1104,980,1104,916,980,980,1103,1040,[1103,14095],14099,14097,14034,14096,14739,[14099,14033,13666],[14032,13667],[14674,13668],[14675,13669],[14675,13670],14737,14098,14032,14035,[14033,13534],[14097,13535],[14034,13536],14034,14098,14099,[14035,8443],[14099,8444],14673,14675,[14738,14353],[14738,14354],[14097,14354],[14096,14355],14098,14673,[13800,14036],13735,[13799,13968],[13799,14160,13789],[14035,13790],[14098,13791],[14739,13792],[14034,13793],14097,[14033,8371],[14097,8309],[14033,8310],[14034,8314],[14096,8315,13858],[14674,13859],[14739,13860],[14097,8308,13861],[14097,8309],[14033,8373],14739,14034,[13800,14163],[13799,14164],13800,[13736,13903],14096,14674,14611,[14099,8378],[14034,8379],[14097,8249],[14675,8246],[14098,8372],[14738,8373],14099,14673,[14032,8378],[14673,8379],[14738,8249],[14738,8246],[14673,8249],[14034,8250],[13800,14100],13735,13799,[13800,13967],14737,14035,[14096,13794],[14035,13795],[14034,13796],[14737,13797],14096,[14800,13398],[14032,13399],14034,14738,14033,14738,14674,14096,14034,14801,14034,14675,[14674,8570],[14098,8634],8694,8878,8879,8880,[14738,8629],[14099,8630],[14738,8631],[14675,8565],14738,14097,[14673,14475],[14674,14476],[14675,1365],[14737,1366],[13800,13908,13024,1367],[13800,13025],[13800,13903,13026,1365],[14098,1366],[14034,1367],14098,14033,14098,14611,14035,14675,14674,[13800,14036],13799,13799,[13800,13969],14737,14098,14097,14096,14739,[14099,13534],[14674,13535],[14611,13536],14097,14033,14675,[14096,8627],8628,[12909,8564],[12972,8565],12972,12973,12973,12908,12909,12909,[13799,12715],[13736,12717],[13800,12780],[13799,12843],[13800,13036],[13799,13037],12973,12908,12909,[12973,16693],[12972,16694],12908,12909,12972,12909,12973,[13800,12844],[13799,8378],[13799,12841,8314],[12909,8315],12973,[12973,14241],[12973,14242],[12973,14243],[12973,14244],[12909,2842],[12973,2843],12973,[12973,8499],[12908,8500],12972,12972,12972,12972,12973,12973,12909,[12909,2559],12972,12972,[13799,12844],[13800,2558],[13799,12969],[12908,8499],[12908,8500],12909,12973,12909,12973,12909,12908,[12973,8507],[13584,8508],13650,13649,13585,13649,13586,13648,13585,13587,13649,[13650,12808],12809,[13651,12552],13586,[13643,13460],13643,[13643,13521],13650,13650,13650,13650,13587,13584,[13650,12615],[13651,12616],13650,13651,[13641,13716],13512,13640,[13641,13583],13584,13648,13584,13584,[13585,12737],12738,12739,12740,[13585,12741],[13649,12742],13586,13648,[13648,12623],[13651,12624],13650,[13643,13588],13643,[13643,13455],13587,13587,[13587,12686],[13585,12687],[12751,13128],[13584,12752,13129],[13587,13130],[13649,13131],[13586,13132],13585,13584,13648,13649,13585,13584,[13648,12551],[13651,12552],13586,13651,13648,13649,[13643,13392],[13643,13396],13643,[13643,13583],[13648,12551],[13586,12552],13649,13586,13648,13586,13587,13648,[13643,13716],13643,[13643,13391],13586,13584,13649,[13648,12623],[13650,12624],13587,13584,13585,13648,13648,13587,[13643,13460],13643,[13643,13711],[13643,13712],[13643,13522],13643,[13643,13583],13649,[13650,3687],[3699,3688],3635,3699,3635,3636,3700,3635,3699,3635,3700,3701,[3635,6034],[3636,6035],[3636,6036],3635,[3635,3750],[3635,3810],[3699,3811],[3700,3812],[3700,3813],[3700,3745],3701,[3637,6098],[3701,6099],[3700,6100],[3699,3750],[3699,3810],[3636,3811],[3635,3812],[3700,3813],[3699,3814],3815,[2421,3683],2423,2423,[2357,2549],[3700,2295,2550],[3700,2551],3635,[3700,2420],2424,2424,2360,2363,[2423,2613],[2423,2614],[2422,2615],[2357,3807,2616],3808,[3637,3809],[3701,3812],[3637,3813],[3635,3814],3874,3875,3876,3877,[3637,3744],[3635,3745],3700,3636,2684357884,3636,3636,3701,3636,3701,3701,[3637,3750],[3635,3751],3874,3875,3878,[2423,3938],[2360,3939],3808,[3635,3809],[3635,3745],3701,3700,[3700,3750],[3635,3751],3682,[3635,3809],[3637,3810],[3636,3811],[3699,3812],[3636,3813],[3699,3814],[3815,3807],3808,[4946,3809],[4946,3810],[4882,3811],[4947,3812],[4947,3813],[4353,4884,3745],4353,[4353,4752],4945,4946,[4946,3170],[4883,3171],[4880,3172],[4353,4818],4353,4353,4353,[4353,4753],4945,4947,4882,4883,4946,4946,4883,4946,4946,[4947,3170],[4947,3171],[4883,3172],4883,4883,[4882,4930],4931,[4946,4674],4946,4882,4946,4882,4882,4946,4882,4946,4944,[4353,4754],4353,[4353,4751],4882,4883,4883,4947,4947,4946,4883,4947,4947,4944,[4353,4688],4945,4883,4882,4947,4946,4882,4883,4946,4882,4882,4882,4880,[4353,4819],[4353,4752],[4353,4688],[4353,4754],[4353,4816],4881,4882,4947,4882,4882,4947,4883,[4353,4820],4353,[4353,4752],4945,4882,4946,4882,[4883,4616,3042],[4883,4552,3043],[4553,3044],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,[1103,2198],[1039,2199],1104,1039,1104,1103,[980,3155],[1832,3156],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3404],3405,3406,3407,[916,3276],[915,3277],915,980,915,915,979,915,980,916,916,980,915,980,980,915,[915,3219],[1813,3220],1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,1813,[1813,3147],[1039,3148],1104,1040,1040,916,[1039,2005],[1039,2006],[916,2007],980,979,915,1040,980,980,915,1039,915,1040,1104,915,1103,1039,1039,980,1040,[915,13904],14033,14035,14675,14032,14032,14035,[14032,14033,13730],[14097,13731],[14099,13732],[14033,13733],[14098,13734],14032,14032,14099,[14035,13597],[14099,13598],[14032,13599],[14096,13600],[14098,13601],14034,14035,[14035,8507],[14034,8508],14738,14096,[14675,14417],12300,12302,[14032,14419],14034,[14099,14865],[13799,14100],13799,13799,13800,[13800,14159,13854],[13799,14160,13855],[13800,14161,13856],[13800,14162],[13800,14163],[14737,8435],[14032,8436],14673,[14033,8378],[14097,8379],[13800,14160,8249],[13736,14161,8246],[13799,14162,8372],[13799,14163,8373],14675,[14098,14865],[13800,13908],13800,13799,13799,[13800,14031],14097,14675,14737,14675,[14034,8378],[14035,8313],[14739,8310],[14739,8373],14034,[14099,13538],[14673,13539],[14097,13540],[14738,8378,13541],[14801,8313],[14034,8310],[14739,8313],[14737,8314],[13800,13971,8380],13799,13799,[13799,14031],14610,14097,[14738,13858],[14033,13859],[14099,13860],[14738,13861],14675,[14096,13462],[14096,13463],[14738,13464],[14739,13465],[14096,13466],[14674,13467],[14096,13468],14738,14674,14674,14738,[14032,8570],[14097,8571],8698,[14738,8758],[14610,8942],[14097,8943,13538],[14737,8944,13539],[8693,13540],[8694,13541],8695,[14673,8564],[14032,8565],14739,14737,14673,14098,14096,[13800,13972],13736,[13799,13967],14675,14033,14673,14032,14609,14739,14096,14035,14674,14035,[13735,13906],13800,13800,[13800,13968],[13799,14162],14098,14097,[14098,13597],[14097,13598],[14739,13599],[14034,13600],[14738,13601],14035,14737,14035,[14035,8692],8628,[12908,8629],[12908,8565],12973,12973,12972,12909,12972,12908,12908,[13800,12974],[13799,13921],[13800,13922],[13799,13923],[13799,13033,13924],12909,12973,[12972,16757],[12973,16758],12909,12973,12908,12909,[13800,13038],13799,13799,[13800,12905,8378],[12972,8379],[12972,8380],12909,[12908,2842],[12909,2525],[13800,13036,2653],[12973,2654],[12972,2524],[12973,8371],[12972,8372],[12973,8373],12909,12973,12973,12908,12908,12908,12973,[12973,2623],12908,[13800,12782],13800,[13800,2622],[13800,12969,8308],[12973,8309,13921],[12973,8373,13922],[12973,13923],[12973,13924],12973,12972,12908,[12909,8570],[12909,8571],[13587,8572],13587,13584,13587,[13648,13128],[13587,13129],[13649,13130],[13651,13131],[13585,13132],13586,13650,[13648,12551],[13649,12616],13584,[13643,13588],13643,13643,[13643,13520],13587,13585,13586,13649,[13586,12424],[13585,12425],[13651,12489],13649,[13640,13460],13641,13513,[13512,13456],13585,13649,13587,13650,13584,[13587,12801],12802,12803,12804,[13649,12805],[13587,12806],[13640,13712],13648,[13648,12494],[13648,12430],[13651,12431],[13643,13522],13643,[13643,13583],13649,[13651,12686],[13648,12750],12751,[13585,12815,13192],[13585,13193],[13651,13194],[13587,13195],[13584,13196],13584,13587,13584,13648,13586,13649,[13648,12615],[13649,12616,13133],[13650,13134],[13584,13135],13649,13648,13584,[13643,13460],13643,[13643,13711],[13712,12551],[13649,12552],13584,13648,13584,13584,13648,[13643,13460],13643,13643,[13643,13647],13584,13586,13587,[13651,12494],[13587,12430],[13649,12431],13584,13585,13586,13586,13584,[13643,13588],13643,13643,13643,13643,[13643,13457],13648,13651,[13585,3558],[13648,3494],[3701,3495],3635,3635,[3700,5906],[3700,5907],[3636,5908],3637,3636,3636,3700,[3636,6098],[3701,6099],[3699,6100],[3699,3750],[3701,3751],[3874,2549],[3875,2550],[3876,2551],3877,[3635,3744],[3637,3745],[3635,6162],[3636,6163],[3700,3750],[3700,3814],3874,3875,3876,3877,3878,[2421,3745,3879],2358,2357,2357,[3324,2425,2613],[3699,2614],[3323,2615],[3324,2616],[3699,2293],2358,2357,2358,2421,[2357,2677],[2424,2678],[2421,2679],[2423,2680],[2360,3872],3873,3876,3877,3878,[3700,3938],[3636,3939],[3701,3940],[3635,2356,3941],3808,[3636,3809],[3701,3745],3637,3700,[3635,3750],[3699,3810],[3637,3745],3699,3635,[3699,3750],[3637,3751],3815,[2358,3938],[2359,3939],[2421,3942,2549],[2422,2550],[2360,2551],[2421,3872],3873,[3701,3809],[3635,3810],[3701,3811],[3700,3814],3815,[2424,3938],3873,3874,3875,3876,3877,3878,[2422,3879],[2358,3872],3873,3874,3875,3876,3877,[4944,3744],[4353,4688,3745],4945,4883,4882,[4883,3234],[4882,3235],[4353,4756,3236],4353,4353,[4353,4687],[4353,4688],4945,4947,4946,4883,4883,4946,4947,4883,4883,4883,[4883,3234],[4882,3235],[4947,3236],4947,4946,[4946,4609],[4946,4610],[4882,4611],4946,4882,4882,4883,4946,4883,4946,4882,4946,[4353,4948],4353,[4353,4815],4946,4946,4946,4883,4947,4882,4883,4882,4882,4883,4947,4882,4946,4882,4883,4882,4882,4882,4882,4883,4882,4947,[4353,4756],4353,[4353,4751],4947,[4353,4948],4353,[4353,4943],4882,4883,4883,4882,4882,4882,[4353,4884],4353,[4353,4943],4883,4947,4947,4947,[4882,3106],[4883,4616,3107],[4946,4617,3108],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,916,1039,[915,2010],916,1104,979,[915,3219],[1832,3220],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3469],[1832,3470],[1832,3471],3340,[915,3341],[915,3277],980,916,979,980,[916,3282],[980,3342],[979,3343],[979,3277],980,915,915,915,[979,3282],[979,3283],[1877,3284],1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,1877,[1877,3211],[916,3212],979,916,[979,1946],1040,[1103,2069],[1040,2070],[916,2071],[979,2072],[979,2020],1039,916,1104,979,979,915,980,1103,979,1104,916,916,1103,[1039,13839],[980,13840],14099,14099,14034,14099,14097,14032,14738,[14033,14096,13794],[14099,13795],[14035,13796],[14674,13797],14096,14096,14097,14034,[14097,13661],[14099,13662],[14096,13663],[14097,13664],[14032,13665],14032,14033,[14032,8443],[14035,8444],14801,14034,[14674,14481],[14098,14482],[14673,14482],[14675,14483],14099,14035,14739,[13800,13840],[13800,13906],13800,13800,13800,13735,13800,13800,[13800,13968,8563],[13800,14162,8564],[13799,14163,8565],14099,[13736,14100,8378],[13799,8313],[13800,8310],[13799,8373],13800,[13800,13969],14738,[13799,14036],13735,13799,13800,[13800,13968],[13799,14160,8570],[13799,14161,8630],[14096,8631],[14737,8565],14099,14096,14737,14739,14673,[14099,13602],[14035,13603],[14098,13604],[14035,13605],[14096,13606],[14674,8374],14737,[13800,13908,8443],[13799,8508],13799,13800,[13800,13968],14737,14674,14739,14738,14099,14673,[14674,13525],13526,13527,13528,13529,13530,13531,[14032,13532],14737,14097,14096,14738,[14739,8443],8635,[14035,8762],14096,14609,[14674,13602],[14099,13603],[14034,8757,13604],[14674,8758,13605],[14096,8759,13606],8628,[14097,8629],[14674,8565],14738,[14674,13534],[14675,13535],[14032,13536],[13799,14036],13800,[13735,14031],14035,14035,14096,14033,14675,14675,14738,14097,[14739,8245,13538],[14673,8246,13539],[14098,8249,13540],[13799,13906,8250,13541],13800,13800,13800,[13799,13968],14739,[14033,13661],[14033,13662],[14096,13663],[14673,13664],[14033,13665],14098,14099,14032,14673,[14034,8692,16697],8693,[12972,8436],12909,12973,12908,12909,12909,12908,12909,12909,[13799,12714,13985],[13799,12780,13986],[13799,13987],[13799,13988],[13799,12842],[13800,13036],[13800,13037],12973,12908,12973,12972,[13800,12782],13799,[13800,12778],[13800,12714],12972,[12908,8443],[12972,8444],12909,[12972,2526],3669,3733,3182,[12972,2588],[12908,8435],[12973,8436],[12973,16693],[12909,16694],12909,12972,12909,12909,12908,12973,12973,12972,[13800,12846],13799,[13799,12778,8371],[12972,8372],[12973,8373,13985],[12909,13986],[12909,13987],[12973,13988],12908,12973,[12909,8570],[12908,8634],8635,[13587,8636],13584,13586,13649,[13585,13192],[13586,13193],[13584,13194],[13586,13195],[13650,13196],13649,[13650,12424],[13648,12425],[13585,12489],13584,13586,[13643,13392],[13643,13396],13643,[13643,13521],13650,[13650,12361],[13651,12362],[13587,12488],[13648,12489],13586,13587,[13577,13588],13512,13640,[13641,13647],13585,13584,13651,13651,13648,[13586,12865],12866,12867,12868,[13584,12869],[13641,13523,12870],13641,[13641,13647],13650,[13649,12494],[13586,12495],[13643,12366],[13643,13456],13648,13584,[13587,12559],12814,[13584,12815],[13587,13256],[13585,13257],[13585,13258],[13585,13259],[13648,13260],13585,13587,13584,13649,13649,[13649,12424],[13648,12425],[13649,12489,13197],[13584,13198],[13584,13199],13587,13586,13587,[13643,13588],13643,13643,[13643,12615],[13649,12616],13648,[13650,13128],[13651,13129],[13651,13130],[13648,13131],[13643,13588,13132],13643,[13643,13456],13649,13651,13587,13585,13586,[13584,12494],[13651,12495],[13586,12362],[13651,12365],[13648,12366],13586,13587,13650,[13643,13392],[13643,13393],[13643,13394],[13643,13395],13584,13651,13587,13586,[13587,3558],[13587,3559],[3637,3560],3636,[3637,5970],[3701,5971],[3637,5972],3637,3699,3324,3635,[3635,6162],[3637,6163],[3637,3750],[3699,3814],3815,[2359,3938,2613],[2424,3939,2614],[2424,3940,2615],[2424,3941,2616],3808,[3700,3809],[3700,3810],[3701,3811],[3701,3814],3878,[2422,3938],[2423,3939],[2423,3940],[2421,3941],[2423,3808,3942],[2422,3809],[2421,3745],2424,2423,[2358,2677],[3700,2166,2678],[3699,2168,2679],[3699,2169,2680],3700,[3701,2484],2358,2358,2360,[2358,2741],[2424,2742],[2359,2743],[2422,2744],2423,[2357,3937],[2424,3615,3940],[2359,3616,3941],[2359,3942],[3699,2232],3323,3388,[3700,2293],[2422,3872],3873,[3636,3809],[3637,3810],[3700,3811],[3701,3814],3682,[3636,3809],[3701,3810],[3699,3811],[3635,3814],3815,[2358,3879],2358,2357,[2423,2613],[2360,2614],[2358,2615],[2424,2616],[2422,3937],3873,3874,3875,3878,[2421,3879],2358,[2357,3937],[2423,3938],[2422,3939],[2421,3940],[2358,3941],[2422,3942],[2359,3943],2360,[2422,3937],[2421,3938],[2423,3939],[2358,3940],[2421,3941],3808,[4946,3809],[4946,3745],4946,4946,4882,[4947,3299],[4353,4820],4353,4353,[4353,4817],4881,4946,4947,4882,4947,4946,4882,4946,4883,4947,4946,4947,[4947,3299],4947,4947,4883,[4882,4673],[4882,4674],4947,4882,4946,4882,4947,4947,4882,4946,4946,4880,[4353,5012],4353,[4353,4879],4946,4947,4947,4946,4883,4947,4947,4947,4947,4883,4883,4946,4946,4882,4882,4883,4946,4883,4946,4947,4883,4883,[4353,4884],4353,[4353,4879],4883,4944,[4353,4688],4945,4947,4946,4883,4946,4947,4946,[4353,4948],4353,[4353,4816],[4353,5010],[4353,5011],4881,4883,[4882,3170],[4883,3171],[4947,4681,3172],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,1040,1039,1104,1039,916,979,[916,3090],[1040,3026],[1832,3027],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3404],3405,[916,3341],[979,3342],[915,3343],[915,3344],[979,3345],[980,3346],3406,3407,[916,3341],[979,3342],[915,3343],[979,3344],[915,3345],[980,3346],3347,[1832,3348],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3275],[915,3276],[1103,3277],1103,980,979,[916,2133],[1104,2134],[980,2135],[1103,2136],[916,2084],915,980,1040,915,979,1103,979,916,1040,1039,[979,13904],[1103,13841],[1104,13843],14098,[14033,13534],[14033,13535],[14034,13536],14099,14675,14034,14032,14739,[14099,14034,13858],[14033,13859],[14098,13860],[14738,13861],14034,14675,14674,14097,[14096,13725],[14035,13726],[14610,13727],[14097,13728],[14034,13729],14035,14096,[14099,8507],[14098,8508],14097,14033,14673,14096,14034,14096,14674,14097,14739,14033,14033,[13800,13840],[13800,13840],[13799,13841],[13800,13842],[13800,13843],[13800,13906],[13799,8627],8628,[13800,8629],[13800,13968,8565],[13800,14160],[13736,13841],[13800,13842],[13799,13843],[13799,13844],13800,[13800,14159],[13799,13971],13799,[13799,13839],[13800,13840],[13799,13844,8570],[13799,8571],8694,8695,[14739,8564],[14097,8565],14099,14739,14737,14096,[14674,13666],[14032,13667],[14737,13668],[14099,13669],[14674,13670],14096,[14099,8570],[13799,13972,8571],[13799,8572],13735,13800,13800,[13799,14095],14096,14739,14097,14033,14737,[14035,13589],13590,13591,13592,13593,13594,13595,[14737,13596],14737,14098,14739,14675,[14096,8443],[14674,8444],14801,14738,14033,[14675,13666],[14097,13667],[14098,13668],[14097,13669],[14675,8691,13670],[14098,8692],8693,[14099,8436],[14098,13597],[14099,13598],[14739,13599],[14033,13600],[13800,14100,13601],13800,[13735,13968],14099,14034,14739,[14675,14283],[14033,14284],14099,14097,[14034,8371],[14033,8309,13602],[14674,8310,13603],[14737,8313,13604],[14099,8314,13605],[13799,13844,8246,13606],[13800,8246],[13736,8249],[13799,8250],[13799,13903],[14673,13725],[14738,13726],[14737,13727],[14097,13728],[14675,13729],14098,14035,14098,14035,[14032,16761],[14098,8435],[12972,8436],12908,[12972,13921],[12909,13922],[12972,13923],[12973,13924],12972,12973,12972,[12909,14049],[12973,14050],[13799,12909,14051],[13800,12718,14052],13799,13800,13800,[13800,12969],12908,12973,12909,[13735,12910],13799,[13800,12777],12908,12908,[12973,8507],[12973,8508],12909,[12973,2590],3797,3861,[13800,12905,2460],12973,[12909,8499],[12972,8500],[12973,16757],[12909,16758],12973,12908,12908,12908,12908,12972,12909,12909,[13799,12910],13799,[13800,12777,8435],[12973,8436],[12909,14049],[12909,14050],[12972,14051],[12973,14052],12973,12908,[12973,8443],8698,[13585,8699],13648,13650,13648,13651,[13586,13256],[13649,13257],[13586,13258],[13651,13259],[13587,13260],[13584,12487],[13586,12488],[13649,12489],13585,13650,13586,13648,13585,[13643,13458],13643,[13643,13521,12424,13128],[13587,12425,13129],[13651,12426,13130],[13586,12489,13131],[13587,13132],13584,13587,13650,[13512,13396],13512,[13512,13711],[13640,13715],13587,13585,13587,13649,[13648,12929],[13641,13715,12930],[13641,13712,12931],[13512,13714,12932],[13577,13716,12933],[13641,12934],[13641,13456],13584,13587,13585,[13585,12494],[13586,12495],[13586,12496],13649,13648,[13586,12559],[13651,12560],13649,[13587,13320],[13586,13321],[13651,13322],[13651,13323],[13584,13324],13585,13651,13587,13587,[13585,12487],[13649,12488],[13584,12489],[13586,13261],[13649,13262],[13585,13263],13651,13584,13586,13648,[13643,13458],13643,[13643,12679],[13651,12680],[13650,12681],[13586,13192],[13585,13193],[13649,13194],[13586,13195],[13584,13196],[13643,13392],13585,13648,13650,13648,13649,13650,13648,[13585,12494],[13651,12426],[13650,12429],[13587,12430],[13650,12431],13587,13649,13584,13587,13586,13649,13648,13585,13648,13587,13648,[13651,3623],[3637,3624],3637,[3699,6034],[3635,6035],[3635,6036],3700,3637,3700,3637,3701,3635,[3636,3687],3878,[2357,3879],[2421,2677],[2358,2678],[2357,2679],[2422,2680],[2422,3872],3873,3874,3875,3878,[2360,3942],2358,2422,2357,2421,[2421,3872],3873,[2423,3616],2423,2358,[2424,2741],[2358,2742],[2422,2743],[3699,2233,2744],3324,3699,[3323,2420],2424,2422,[2360,2805],[2359,2806],[2357,2807],[2423,2808],2421,2358,[2423,3679],[2357,3680],2357,[3323,2233],3700,3701,3324,[3700,2420],[2358,3937],3873,3874,3875,3878,[2421,3938],3873,3874,3875,3878,[2424,3879],2358,2360,2358,[2358,2677],[2358,2678],[2421,2679],[2360,2680],2358,[2422,3937],[2357,3938],[2424,3939],[2359,3942],[2423,2549],[2360,2550],[2357,2551],2423,2424,2422,2360,2359,2423,2423,2360,2359,2357,2357,2358,[2421,3872],3873,[4946,3809],[4946,3745],4882,4883,4882,[4353,4884],4353,4353,4353,[4353,4943],4882,4882,4947,4946,4882,4883,4947,4946,4946,4882,4946,4947,4882,4947,4882,[4946,4737],[4946,4738],4946,4946,4883,4946,4882,4946,4946,4882,4946,[4353,4756],5057,4353,[4353,4943],4882,4947,4946,4946,4947,4882,4883,4947,4882,4946,4883,4882,4946,4947,4883,4946,4946,4883,4882,4883,4882,4880,[4353,5012],4353,[4353,4816],4881,4946,4883,4882,4946,4883,4883,4947,4946,4883,4944,[4353,4692],4353,4353,4353,[4353,4816],4881,[4883,3234],[4883,3235],[4882,4745,3236],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,979,1040,1104,1104,1039,980,980,[1104,3090],[915,3091],[1832,2961,1941],[1832,2958,1942],[1832,2962,1943],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3469],3405,3406,3407,3408,3409,3410,[1832,3470],[1832,3471],3405,3406,3407,3408,3409,3410,[1832,3411],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3339],3340,[1104,3341],[980,3277],1040,1103,1103,[980,2198],[1039,2199],980,1103,1103,1104,915,979,1040,915,979,1103,1103,[980,13839],14032,14801,14097,[14099,13597],[14033,13598],[14035,13599],[14096,13600],[14097,13601],14032,14097,14097,14737,14738,14098,14033,14675,14096,14096,14033,14673,[14097,13789],[14098,13790],[14035,13791],[14096,13792],[14099,13793],14033,[14034,8570],[14034,8571],[14035,8572],14032,14675,14673,[14674,13534],[14098,13535],[14674,13536],14673,14673,14096,[14096,15309],[14674,15310],[14097,15311],14098,[14033,13538],[14738,13539],[14099,13540],[14098,13541],[13799,13841],[13800,13843,8692,16697],8693,[13735,8436],13800,[13800,14095],14099,14738,[13800,13970],13799,13799,13799,[13799,13904],14099,[14099,8570],[14738,8634],8635,[12300,8758],[14034,14542,8759],8628,[13800,14160,8629],[14099,8565],14033,14737,14738,[14096,13730],[14096,13731],[14098,13732],[14034,13733],[14098,13734],[14739,8570],[14033,8634],8635,[13799,8636],13799,13800,[13800,13904,13538],[14675,13539],[14096,13540],[14032,13541],14737,14098,14035,[14097,13653],13654,13655,13656,13657,13658,13659,[14675,13660],14098,14032,14099,14097,[14099,8507],[14737,8508],14738,14098,14674,[14098,13730],[14034,13731],[14035,13732],[14739,13733],[14737,13734],14674,[14035,8499],[14673,8500],[14034,13661],[14738,13662],[14738,13663],[14096,13664],[14737,13665],[13800,13906],13800,[13799,14095],14097,14097,[14034,14347],[14098,14348],14673,14098,[14739,8435],[14737,8436,13666],[14035,13667],[14099,13668],[14739,8378,13669],[14032,8310,13670],[13799,13906,8310],[13800,8313],[13799,8314],[13799,13967,8249],[14098,8250,13789],[14099,13790],[14737,13791],[14737,13792],[14674,13793],14097,14096,14096,14739,14035,[14099,8435],[12909,8436],12909,[12908,13985],[12908,13986],[12909,13987],[12972,13988],12909,12972,12972,[12973,14113],[12908,14114],[12973,14115],[12973,14116],[13799,12718],13800,13800,[13799,13033],[13800,13034],12908,12908,[13799,12844],13800,[13799,12841],[12909,13921],[12908,13922],[12973,8378,13923],[12972,8314,13924],[12973,2653,8315],[12909,2654],[13799,12910,2460],[13800,2461],[13735,12842],12973,[12972,8435],[12972,8436],12909,12973,12909,12972,12973,12972,12908,12908,12909,12908,[13800,13038],13799,[13799,12841,8499],[12909,8500],[12972,14113],[12909,14114],[12909,14115],[12972,14116],12973,12909,[12972,8443],[13651,8444],13649,13651,13648,13651,13584,[13586,13320],[13651,13321],[13651,13322],[13585,13323],[13650,13324],[13651,12551],[13648,12552],13586,13584,13585,13649,13586,13586,13648,[13643,13392,12487],[13584,12488,13192],[13585,12489,13193],[13586,13194],[13584,13195],[13587,13196],13586,13587,13649,[13640,13460],13512,13640,13640,[13641,13520],[13641,13712],13649,13649,[13640,13522],13513,13640,13576,13512,13640,[13641,13711],13648,13650,13650,13650,[13587,12559],[13648,12560],13650,13584,[13651,12623],[13648,12624],13586,[13586,13384],[13650,13385],[13649,13386],[13649,13387],[13650,13388],13585,13586,13584,13585,[13587,12615],[13584,12616],13649,[13650,13325],[13649,13326],[13585,13327],13651,13586,13649,13649,13587,[13643,13393],[13643,13394,12743],12744,[13584,12745],[13584,12681,13256],[13585,13257],[13649,13258],[13587,13259],[13651,13260],13651,13587,13587,13651,13650,13587,[13584,13133],[13648,13134],[13651,13135],13650,13648,[13649,12494],[13584,12495],[13586,12496],13649,13587,13584,13587,13585,13585,13586,13584,13648,13584,[13585,3687],[3701,3688],3637,[3701,6098],[3699,6099],[3700,6100],[3700,3750],[3636,3812],[3700,3813],[3636,3745],3637,[3701,3750],[3635,3751],[2359,3752],2422,[2360,2741],[2357,2742],[2421,2743],[2421,2744],2358,[2422,3937],[2423,3938],[2357,3939],[2424,3942],2421,2422,2421,2359,2359,2421,[2357,3615],[2360,3616],2359,2358,[2422,2805],[2422,2806],[2360,2807],[3701,2361,2808],3699,[3701,2229],2357,2360,2360,[2360,2869],[2357,2870],[2359,2871],[2422,2872],2424,2359,[2422,3615],[2422,3616],2421,[3700,2361],3635,3637,3635,[3635,2228],2421,[2359,3937],[2423,3938],[2359,3939],[2358,3942],2423,[2424,3937],[2422,3938],[2359,3939],[2358,3942],2424,2362,2422,2357,[2422,2741],[2423,2742],[2357,2743],[2422,2744],2422,2422,2424,2358,2360,[2359,2613],[2359,2614],[2359,2615],[2424,2616],2423,2424,2423,2422,2359,2422,2358,2357,2360,2360,2422,2423,[2360,3872],3873,[4883,3616],4947,4947,4946,4944,[4353,4754],4353,4353,[4353,5007],[4353,5008],[4353,5009],4881,4947,4946,4883,4947,4947,4946,4883,4946,4947,4882,4883,4947,[4883,4801],[4882,4802],[4882,4803],4947,4946,4946,4883,4947,4946,4946,4946,[4353,4884,4808],[4353,4868],[4353,4752,4869],[4945,4803],4946,4882,4882,4947,4947,4882,4946,4946,4946,4946,4946,4946,4946,4882,4882,4946,4880,[4353,5009],4881,4883,4947,[4353,4948],4353,4353,4353,[4353,4943],4947,4947,4946,4882,4883,4883,4883,4947,4882,4946,4944,[4353,4689],[4353,4690],[4353,4754],4353,[4353,4943],4882,[4883,4808,3299],[4947,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,1104,915,1103,980,1104,979,979,1104,[1104,3090],[980,3025,2005],[1040,3022,2006],[915,3026,2007],[1832,3027],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3469],[1832,3470],[1832,3471],[1832,3472],[1832,3473],[1832,3474],1832,1832,[1832,3469],[1832,3470],[1832,3471],[1832,3472],[1832,3473],[1832,3474],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3404],3405,[1103,3276],[915,3277],1103,1103,1104,1104,915,1040,916,1043,1044,1043,1044,1104,1104,1039,916,[979,14095],14034,14099,14034,[14099,13661],[14097,13662],[14032,13663],[14096,13664],[14098,13665],14097,14097,14099,14035,14096,14096,14035,14673,14035,14675,14033,14098,14033,[14035,13854],[14096,13855],[14099,13856],14035,[14098,8570],[14096,8571],8635,[14099,8636],14097,14097,[14737,13597],[14097,13598],[14737,13599],[14675,13600],[14034,13601],14035,14098,[14035,15373],15374,[14097,15375],14032,[14034,13602],[14096,13603],[14675,13604],[14675,13605],[14675,13606],[14099,16761],[13799,14100,8435],[13800,8436],13736,[13799,13968],14739,[13799,14100],13799,13799,13799,13799,[13799,14095],14675,[14097,8443],8698,[12300,8699],12300,[14034,14606],[14034,14543,8692],8693,[13799,14159,8436],14032,14096,14737,[14096,13794],[14034,13795],[14033,13796],[14738,13797],14673,[14033,8443],8698,[14674,8699],[13799,13907],13800,[13800,13839],[14033,13602],[14098,13603],[14096,13604],[14674,13605],[14097,13606],14034,14673,[14673,13717],13718,13719,13720,13721,13722,13723,[14097,13724],14673,14096,14096,[14673,8570],[14737,8571],[14675,8572],14674,14098,14738,[14099,13794],[14739,13795],[14673,13796],[14033,13797],14737,14098,[14033,8499],[14035,8500],[14034,13725],[14034,13726],[14097,13727],[14033,13728],[14737,13729],[13736,14100],13800,[13799,14159],[13800,14162],[13799,14163],14675,14035,14098,14098,[14738,8499],[14034,8500,13730],[14674,13731],[14097,13732],[14034,13733],[14034,13734],[13799,13908],13800,[13800,8378],[13800,14031,8313,16693],[14099,8314,16694],[14673,8315,13854],[14739,13855],[14675,13856],14032,14033,14739,14035,14739,14097,[14099,8499],[12908,8500],12972,[12908,14049],[12909,14050],[12908,14051],[12909,14052],12972,12973,12973,[12973,14177],[12972,14178],[12973,14179],[12909,14180],12908,[13799,12714],[13800,12780],13799,13800,[13800,12843],[13800,13038],13800,13800,[13799,12905],[12973,13985],[12972,13986],[12908,13987],[12909,8378,13988],[12908,8379],[12909,2460,8380],[13800,12974],13800,13799,[13800,12969],[12908,8499],[12972,8500],12908,12908,12909,[12909,13921],[12972,13922],[12908,13923],[12908,13924],12973,12973,[13800,12782],13799,13800,[13799,12905,8563],[12908,8564],[12908,8565,14177],[12972,14178],[12972,14179],[12909,14180],12973,12973,[12973,8507],[13584,8508],13651,13584,13651,13584,13586,[13650,13384],[13586,13385],[13651,13386],[13584,13387],[13651,13388],[13587,12615],[13649,12616],13584,13585,13648,13651,13587,13585,[13584,12487],[13584,12488],[13648,12489,13256],[13585,13257],[13585,13258],[13585,13259],[13649,13260],13648,13649,13648,[13641,13588],13512,[13512,13456,13133],[13512,13392,13134],[13640,13396,13135],13640,[13641,13711],[13641,13522],13512,[13641,13391],[13640,13392],[13512,13392],[13640,13393],[13641,13394],[13640,13395],13650,13584,13651,13586,[13651,12623],[13651,12624],13586,13586,[13584,12494],[13651,12430],[13585,12431],13649,[13651,13449],[13648,13450],[13650,13451],13651,13650,13648,13649,13586,[13649,12679],[13651,12680],[13585,12681],13586,13587,13586,13585,13648,13648,13651,[13585,2147496641],[13587,12993],13584,[13648,12808],12809,[13587,12552,13320],[13584,13321],[13651,13322],[13651,13323],[13585,13324],13585,13585,13586,13586,13584,13587,[13649,13197],[13587,13198],[13586,13199],13650,13584,13651,[13651,12559],[13649,12560],[13643,13713],[13643,13714],[13643,13715],13650,13651,13649,13651,13585,13650,[13585,3750],[13584,3751],[3744,3752],[3701,3745],[3700,6162],[3700,6163],[3637,3750],[3635,3751],3876,3877,[3636,3809],[3701,3813],[3636,3814],3815,[2358,3816],2360,[2358,2805],[2424,2806],[2360,2807],[2359,2808],2424,2358,2357,2358,2357,2422,2358,2358,2423,2421,2358,[2360,3679],[2555,3680],2556,2421,[2421,2869],[2423,2870],[3387,2488,2871],[3700,2489,2872],3700,[3387,2228],2422,2424,2357,2421,2360,2458,2358,2421,2421,[2423,3679],[2423,3680],[3324,2488],[3323,2489],3323,[3324,2549],[3700,2550],[3701,2292,2551],2360,2424,2421,2423,2423,2360,2359,2357,2360,2359,2360,2359,2421,2359,[2422,2805],[2360,2806],[2360,2807],[2359,2808],2421,2357,2423,2424,2424,[2357,2677],[2421,2678],[2422,2679],[2421,2680],2357,2358,2357,[2359,2549],[2357,2550],[2357,2551],2421,2422,2358,2360,2357,2358,2359,[2360,3679],[4947,3680],4883,4947,4883,4947,4944,[4353,4688],[4353,4689],[4353,4690],[4353,4754],4353,[4353,4816],[4881,2979],4882,4883,4883,4947,4946,4947,4882,4947,4883,4947,4880,[4353,4818,4865],4866,[4946,4867],[4946,2147488139],[4882,4869],[4882,4870],[4882,4871],[4946,4868],[4946,4491],[4947,4870],[4883,4871],[4946,4872],4932,4933,[4946,4867],[4883,4868],[4882,4869],[4882,4870],[4883,4871],[4946,4803],4882,4883,4947,4947,4947,4882,4882,4880,[4353,5009],[4353,5010],[4353,5011],[4353,4818],4353,[4353,4943],4883,4880,[4353,4818],4353,[4353,4687],[4353,4754],[4353,4817],[4353,5008],4881,4882,4882,4883,4882,4947,4947,4883,4883,4883,4883,4883,[4353,4948],4353,[4353,4943],[4882,4808],[4946,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,979,979,915,980,980,1103,1104,915,980,[1040,2069],[1103,2070],[1039,3090,2071],[1039,3091,2072],[1832,3092,2020],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3339],3340,[980,3341],[980,3277],1104,980,916,1039,1040,915,1107,1108,1107,1108,1040,915,916,1039,[1103,13968],14609,14033,14034,[14035,13725],[14035,13726],[14099,13727],[14035,13728],[14099,13729],14737,14097,14033,14096,[14098,14673,13538],[14033,13539],[14035,13540],[14098,13541],14034,14034,14674,14674,14097,14035,14098,14032,14033,[14034,8507],8635,[14033,8699],14034,14675,14739,[14032,13661],[14099,13662],[14035,13663],[14098,13664],[14098,13665],14738,14674,[14096,15437],15438,[14035,15439],14739,[14738,13666],[14737,13667],[14035,13668],[14098,13669],[14097,13670],14034,[14609,8499],[13800,13844,8500],13799,13799,[13800,14095],[13736,14100],13799,13799,13800,13800,[13799,14159],14673,[14097,8443],[12300,8444],12302,12300,12300,12300,[12300,8435],[13799,8436],[13800,13903],14675,14098,[14673,13858],[14674,13859],[14035,13860],[14034,13861],14099,[14033,8443],[14099,8444],[14033,14865],[13799,13908],13799,[13799,13903],[14098,13666],[14738,13667],[14032,13668],[14098,13669],[14739,13670],14673,14737,[14096,13781],13782,13783,13784,13785,13786,13787,[14035,13788],14737,14097,14098,[14674,8443],8635,[14737,8636],14098,14034,14674,[14033,13858],[14673,13859],[14097,13860],[14674,13861],14675,14674,[14033,8563],[14034,8564],[14096,8565,13789],[14737,13790],[14674,13791],[14739,13792],[14096,13793],14097,[13799,13906],13800,13800,13735,[13800,14095],14035,14739,14675,[14738,8499],[14737,8500,13794],[14099,13795],[14739,13796],[14096,13797],14096,[13800,13972],13800,[13799,13904],[14098,16757],[14737,8378,16758],[14032,8379],[14738,8380],14737,14674,14033,14098,14738,14738,[14032,8308],[12972,8309,16693],[12972,8373,16694],12909,[12973,14113],[12972,14114],[12908,14115],[12973,14116],12909,12972,12972,[12909,14241],[12973,14242],[12908,14243],[12908,14244],12973,12909,12909,[13799,12781],13799,13799,13799,13735,[13800,12778],12973,[12972,14049],[12973,14050],[12973,14051],[12908,14052],[12973,8443],[12972,8444],12973,[13735,12781],13800,[13799,13033],[12908,8563],[12973,8564],[12909,8565],12973,12973,[12909,13985],[12909,13986],[12972,13987],[12908,13988],12973,12973,[13735,12910],13799,[13800,12778],[12909,8627],8628,[12973,8629],[12973,8565,14242],[12972,14243],[12972,14244],12909,12972,[12908,8378],[12972,8314],[13648,8315],13649,13584,13650,13649,13650,[13649,13449],[13648,13450],[13650,13451],13649,[13584,12679],[13584,12680],[13587,12681],13649,13585,13649,13648,13585,[13587,12551],[13584,12552],[13651,13320],[13650,13321],[13586,13322],[13587,13323],[13585,13324],13649,13584,13587,13650,[13640,13392],[13649,13197],[13649,13198],[13512,13460,13199],13513,13512,13641,[13513,13457],13649,13651,13650,13515,13586,13649,13586,13650,13651,[13648,12686],[13650,12750],[13586,12688],13587,13586,13649,[13585,12494],[13650,12495],[13648,12496],13584,13584,13649,13650,13585,13586,13651,13586,[13586,12743],12744,[13587,12745],[13651,12746],[13649,12747],[13585,12681],13649,13648,13587,[13643,13712,2147496706],[13586,2147496705],[13648,13057],[13648,13058],13586,[13585,12551],[13649,12616,13384],[13651,13385],[13649,13386],[13585,13387],[13648,13388],13649,13587,13585,13649,13648,13650,[13586,13261],[13651,13262],[13585,13263],13587,13648,13648,[13584,12623],[13643,12624],13643,13643,13643,[13643,13711],[13643,13712],13584,13650,[13643,13714],[13715,3750],[13587,3814],3815,[3808,3816],[3699,3809],[3636,3810],[3701,3811],[3699,3814],3815,[2359,3940],[2359,3941],3873,3682,3878,[2359,3879],2423,2423,[2421,2869],[2423,2870],[2358,2871],[2421,2872],2358,2360,2421,2421,2424,2422,[2359,2549],[2423,2550],[2422,2551],2360,[2422,3488],[2358,3489],[2619,3553],2620,2424,2357,[3700,2296],3701,3637,3701,[3636,2292],2358,2423,2357,2424,2358,2424,2359,2423,[2423,3488],[2421,3489],[3636,2233,3553],3387,3700,[3637,2164],[3699,2231,2613],[3323,2614],[3701,2356,2615],[2358,2616],2357,2359,2422,2357,2423,[2358,4483],[2422,4484],[2360,4487],[2358,4484],[2358,4487],[2424,4488],2423,2421,[2421,2869],[2357,2870],[2423,2871],[2423,2872],2357,2424,2424,2422,2358,[2423,2741],[2421,2742],[2358,2743],[2423,2744],2360,2357,2423,[2421,2613],[2360,2614],[2357,2615],[2422,2616],2424,2360,2422,2423,2421,2357,[2357,3743],[4882,3744],[4946,3745],4947,4947,[4946,3750],[4882,3810],[4946,3811],[4882,3745],4883,[4353,4948],4353,[4353,3042],[4353,4943,3043],[4882,3044],4946,4882,4946,4883,4947,4883,4882,4947,4946,[4353,4948],4353,[4353,4930],4931,2147488203,4933,4934,4935,4932,4555,4934,4935,4936,[4947,4996],[4947,4997],4931,4932,4933,4934,4935,[4883,4802],[4947,4803],4947,4882,4882,4947,4880,[4353,5008],[4353,4818],4353,4353,4353,4353,[4353,4753],4945,4947,[4353,4948],4353,4353,[4353,4751],[4353,4948],4353,4353,[4353,5007],[4353,5008],4881,4946,4883,4947,4946,4883,4882,4947,4947,4947,4944,[4353,4754],[4353,4817],[4881,4745],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,980,916,979,1040,915,979,1039,1040,979,[1104,2133],[1039,2134],[980,2135],[979,3155,2136],[1832,3156,2084],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3404],3405,[1039,3212],979,1103,980,916,915,1040,1171,1172,1171,1172,1104,1103,980,1103,1040,[1104,13903],14034,14096,[14096,13789],[14096,13790],[14097,13791],[14034,13792],[14034,13793],14675,14098,14099,14033,[14099,14096,13602],[14097,13603],[14098,13604],[14033,13605],[14739,13606],14033,14739,14097,14035,14033,14033,14098,14097,[14033,8443],[14097,8444],[14096,14283],[14033,14284],14737,14097,[14098,13725],[14739,13726],[14737,13727],[14675,13728],[14096,13729],14032,14035,[14674,15501],[14739,15502],[13799,14160,15503],14035,[14032,13730],[14032,13731],[14737,13732],[14035,13733],[14096,13734],14096,[14097,8563],[14673,8564],[13800,13907,8565],13799,[13800,14159],[13800,14164],13799,13800,13799,[13800,13904],[13800,13844],[13799,13968],[14673,8507],[14035,8508],[14099,14415],[14097,14416],12301,12300,[12300,8563],[13800,8564],[13800,13967,8630],[14099,8565],14800,14032,[14034,15309],[14033,15310],[14674,15311],14674,[14739,8507],[14097,8444],14097,[13799,13972],13799,[13800,13967],[14099,13730],[14035,13731],[14034,13732],[14675,13733],[14035,13734],14737,14738,[14097,13845],13846,13847,13848,13849,13850,13851,[14737,13852],14034,14738,14739,[14673,8443],[14098,8444],14739,14737,14737,14035,14737,14033,14032,14098,14097,14098,[14673,8627],8628,[14674,8629],[14738,8565,13854],[14096,13855],[14098,13856],14099,14097,[13800,14100],13736,13799,13800,[13800,14159],[13800,13970],[13799,13968],[13800,14160],[14099,8563],[14035,8564,13858],[14034,8565,13859],[14737,13860],[14032,13861],14096,[13799,14036],13799,[13800,13903],14674,14675,[14800,8443],[14737,8444],14738,14739,14738,14033,14032,[14099,8371],[12972,8372],[12972,8373,16757],[12909,16758],12973,[12909,14177],[12972,14178],[12909,14179],[12972,14180],12972,12972,12909,12972,12973,12972,12908,12909,12909,12908,12972,[13799,12718],13799,[13736,12713],[13799,12714],12972,12972,[12972,14113],[12972,14114],[12908,14115],[12972,14116],[12908,8507],[12909,8508],12909,[13800,12974],13799,13799,[13799,12843,8627],8628,[12909,8629],[12908,8565],12973,[12909,14049],[12909,14050],[12908,14051],[12972,14052],12909,12973,[13735,12844],13736,[13800,12969],12972,[12973,8692],8693,[12972,8436],12909,12972,12909,12972,12909,[12972,8378],[12972,8379],[13584,8380],13648,13648,13650,13648,13650,13649,13649,13587,[13650,12743],12744,[13650,12745],[13586,12681],13648,13585,13584,13651,[13650,12615],[13586,12616],[13584,13384],[13586,13385],[13651,13386],[13651,13387],[13587,13388],13586,13651,13648,13651,13650,[13648,13261],[13587,13262],[13641,13524,13263],13641,13512,[13640,13457],13584,13651,13649,13584,13585,13651,13651,13586,13650,13648,[13648,12559],12814,[13649,12752],13650,13648,13587,13587,[13584,12559],[13586,12560],13650,13650,13585,13584,13587,13584,13584,13587,[13643,13522],[13643,12808],12809,12810,12811,[13586,12680],[13649,12681],13648,[13643,13523,2147496771],[13643,2147496770],[13643,13455,2147496769],[13586,13121],[13648,13122],[13651,13123],[13649,12551],[13649,12552],[13651,13449],[13587,13450],[13587,13451],13649,13650,13650,13650,13585,13585,13651,[13651,13325],[13649,13326],[13586,13327],13587,13649,[13587,12686],[13585,12687],[13650,12688],[13643,13392],[13643,13458],13643,13643,13643,[13643,13520],[13643,13716],13643,[13643,3623],3878,[2358,3879],[2360,3872],3873,3874,3875,3878,[2424,3879],2359,2360,[2423,3937],[2423,3941],[2424,3942],2423,2359,2357,2360,2357,2458,2359,2424,2359,2359,2422,2422,2424,[2423,2613],[2423,2614],[2423,2615],[2360,3551,2616],[2359,3552],[2359,3553],2422,2424,2421,[3700,2233],3700,3637,3700,3700,[3388,2356],2359,2422,2357,2357,2357,2358,2359,[2357,3551],[2359,3552],[2358,3553],[3637,2297],3324,3387,[3387,2228],[2423,2677],[3636,2165,2678],[2358,2679],[2423,2680],2422,2422,2683,2684,[2358,4546],[2423,4547],[2358,4548],[2422,4551],[2422,4548],[2423,4551],[2359,4552],[2359,4553],2422,[2421,4483],[2359,4487],[2423,4484],[2424,4488],2423,2421,2422,2421,2357,[2359,2805],[2360,2806],[2421,2807],[2360,2808],2424,2423,2360,[2358,2677],[2421,2678],[2421,2679],[2358,2680],2424,2422,2358,2423,2357,2422,[2360,3807],3808,[4883,3809],[4883,3810],[4882,3811],[4883,3814],3874,3875,[4946,3744],[4947,3745],4944,[4353,4754],[4353,4752,3106],[4945,3107],[4947,3108],4946,4883,4947,4947,4882,4883,4946,4883,4880,[4353,4819],4353,4353,[4353,4995],[4353,2147488267],[4353,4751,4997],[4882,4998],[4946,4999],[4353,4756,4996],[4353,4619],[4353,4815,4998],[4947,4999],[4947,5000],4882,4946,[4946,4995],[4947,4996],[4882,4997],[4883,4998],[4882,4999],4866,[4947,4867],[4946,4868],[4946,4869],[4947,4803],4880,[4353,4818],4353,4353,[4353,4752],[4353,4688],[4353,4689],[4353,4690],4945,4946,4947,4944,[4353,4755],4353,[4353,4815],4944,[4353,4755],4353,4353,4353,[4353,4943],4883,4882,4946,4946,4883,4947,4880,[4353,5008],[4353,5009],4881,[4353,4948],[4353,4808],[4353,4816,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3810,3811,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,1104,979,980,1043,1044,979,1040,916,1103,1103,[1039,2198],[1039,2199],[1040,3219],[1832,3220],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3211],[1040,3212],1040,1039,915,1039,915,979,980,1104,1039,916,916,980,1040,916,1103,[1104,14031],14035,14096,14098,[14035,13854],[14099,13855],[14098,13856],14035,14097,14097,14099,14035,[14096,14035,13666],[14035,13667],[14035,13668],[14032,13669],[14674,13670],14099,14673,14675,14098,14035,14099,14096,14034,[14033,8507],[14096,8508],[14034,14347],[14032,14348],14739,14033,[14033,13789],[14674,13790],[14099,13791],[14674,13792],[14034,13793],14032,14099,14096,[13799,13908],13799,[13800,13968],[14033,13794],[14675,13795],[14738,13796],[14034,13797],14097,14673,[14098,8627],8628,[13736,13908,8629],[13799,8565],13735,13799,13800,[13799,13904],[13800,13840],14675,[13799,14100],[13799,8570],[13799,14095,8571],[14739,8572],14034,14034,[14098,14415],[14096,14415],[13800,13908,8627],8628,8502,[14674,8629],[14035,8565],14099,[14032,15373],15374,[14033,15375],14097,[14096,8378],[14035,8314],[14738,8315],[13735,14036],13799,[13799,14031],[14673,13794],[14675,13795],[14098,13796],[14098,13797],14737,14035,14033,[14738,13909],13910,13911,[14032,13912],[13799,14162,13913],[14096,13914],[14035,13915],[14738,13916],14739,14097,14674,[14739,8507],[14674,8508],14611,14097,14032,14099,[14099,13534],[14096,13535],[14034,13536],14738,14675,14033,14035,[14673,8692],8693,[14674,8436],14739,14673,14738,14033,14098,[13799,13840],[13799,13841],[13799,13843],[13799,13844],13800,13800,13799,[13799,13968,8627],8628,[13799,14162,8629],[13800,14163,8565],14034,14737,[13800,14164],13735,[13800,13967],14738,14675,[14096,8507],[14097,8508],14097,14098,14738,14099,14033,[14034,8435],[12909,8436],12909,12908,12972,[12972,14241],[12973,14242],[12909,14243],[12973,14244],12908,12972,12973,12909,12908,[12909,13921],[12909,13922],[12908,13923],[12909,13924],12973,12909,[13799,12974],13800,[13799,12842],[12909,16693],[12972,16694],12972,[12973,14177],[12972,14178],[12973,14179],[12972,8570,14180],[12909,8571],[12973,8572],12972,12972,[13799,12781],13799,13800,[13800,12969,8692],8693,[12909,8436],12972,[12972,14113],[12973,14114],[12973,14115],[12972,14116],12908,[13799,12845],13800,[13800,12713],[12909,2842],[12909,2525],[12909,2653],[2653,8499],[12973,8500],12972,12908,12972,12908,12973,12973,[12908,8443],[13587,8444],13586,13584,13584,13651,13650,13584,13649,13586,13651,[13585,12808],12809,[13648,12552],13651,13649,13650,13584,[13648,12679],[13650,12680],[13648,12681],[13648,13449],[13585,13450],[13648,13451],13587,13585,13585,[13584,12996],13586,13587,[13648,13325],[13649,13326],[13512,13588,13327],[13512,13391],[13640,13392],13587,13649,13586,13585,13649,13585,13650,13584,13584,13587,13650,[13651,12623],[13648,12624],13649,13648,13648,13650,13651,[13586,12623],[13585,12624],13649,13648,13651,13648,13585,13650,13586,[13643,13460],13643,[13643,13391],[13650,12873],[13586,12874],[13585,12875],12744,[13649,12745],[13643,13652,12681],[13643,2147496835],[13643,2147496834],[13643,13583,2147496833],[13586,13185],[13586,13186],[13649,13187],[13584,12615],[13586,12616],13587,13649,13648,13650,13587,13651,13584,13649,13586,13584,13648,13649,13585,13649,[13587,12686],[13586,12750],12751,[13648,12752],13586,13651,[13643,13392,13128],[13643,13396,13129],[13643,13130],[13643,13131],[13643,13132],13643,[13643,13457,3623],[2357,3624],2422,2359,[2360,3937],[2424,3938],[2421,3939],[2422,3942],2359,2358,2360,2421,2359,2358,2358,2424,2423,2421,2360,2422,2422,2422,2359,2421,2423,2358,2422,[2359,2677],[2359,2678],[2360,2679],[2360,3615,2680],[2360,3616],2359,2421,2424,2358,[3699,2297],3635,3699,3323,3387,[3387,2420],2359,2424,2423,2359,2423,2357,2421,[2360,3615],[2423,3616],2360,[3635,2361],3700,3636,[3323,2356],[2422,2741],[2423,2742],[2421,2743],[2357,2744],2423,2360,2747,2748,[2360,4673],[2359,4674],2421,2424,2360,2360,[2360,4616],[2423,4617],[2423,4487],[2358,4547,2549],[2358,4551,2550],[2424,4548,2551],[2360,4552],[2423,4487],[2424,4488],2423,2422,2424,[2424,2869],[2422,2870],[2424,2871],[2359,2872],2359,2424,2358,[2424,2741],[2360,2742],[2421,2743],[2422,2744],2423,2423,2358,2358,[2360,2549],[2421,2550],[2424,2551],[2360,3872],3873,3874,3875,3878,[2422,3938],[2359,3939],3808,[4946,3809],[4947,3745],4944,[4945,3170],[4946,3171],[4882,3172],4946,4946,4882,4882,4882,4882,4883,4883,[4353,4756],4353,4353,4353,4353,4353,[4353,4815],4947,4946,[4353,4820],4353,[4353,4879],4882,4947,4946,4882,4946,[4947,2979],4947,4946,4947,[4946,4930],4931,4932,4933,[4882,4802],[4353,5012,4803],4353,[4353,4752],[4353,4688],4945,4882,4883,4946,4883,4882,4946,4947,[4353,4756],4353,[4353,4879],4883,4944,[4353,4688],[4353,4754],4353,[4353,4816],[4353,5008],[4353,5009],4881,4883,4883,4880,[4353,4818],4353,[4353,4808],[4945,4868],[4353,4948,4869],[4353,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3751,3874,3875,3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,1103,980,1040,1107,1108,1039,1103,1103,1040,1104,1039,980,[980,3155],[1832,3156],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3020],[916,3021],[916,3085],1040,916,979,1040,1103,1104,1040,915,1103,1103,1103,1039,980,980,1104,[916,14159],[1040,14160],14033,14098,14097,14099,14034,14098,14673,14673,14098,14032,[14034,14034,13730],[14097,13731],[14098,13732],[14099,13733],[14097,13734],14099,14032,14739,[14035,13534],[14099,13535],[14096,13536],14099,[14098,8570],[14032,8571],[14032,8572],14099,14673,14737,14674,14097,[14097,13854],[14099,13855],[14097,13856],14675,14737,14033,14096,[13800,14036],13800,13799,[13799,14095,13858],[14032,13859],[14035,13860],[14032,13861],14034,14738,[14096,14865],[14032,8692],8693,[13799,8436],13800,[13800,13905],[13800,13840],[14034,13538],[14739,13539],[14034,13540],[14033,8570,13541],[13799,13840,8634],8635,[14737,8636],14738,14675,14096,14099,[13799,14036],[13799,8757],[13799,14159,8758,16697],8693,[14098,8436],14739,[14032,15437],15438,[14032,15439],14033,14611,[14033,8378],[14673,8379],[13800,14100,8380],13800,[13799,14159],[13736,14160,13858],[13800,14161,13859],[13799,14162,13860],[13736,14163,13861],14034,14097,14033,[14034,13973],[14674,13974],[14099,13975],[13800,13971,13976],13800,[13800,14095],14800,14738,14674,14096,14034,[14033,8443],[14097,8444],14097,14033,14099,[14033,13597],[14673,13598],[14032,13599],[14033,13600],[14673,13601],14673,14609,14675,14738,[14035,8499],[14674,8500],14032,14739,14035,14738,14098,14737,14096,14098,14099,[13800,13840],[13800,13841],[13800,13843],[13799,13844],[13800,8692],8693,[13800,8500],[13800,14159],[13799,13971],13800,13799,[13799,14031],14098,[14096,8570],[14674,8571],[14035,8572],14738,14739,[14673,14865],14098,14032,[14097,8499],[12973,8500],12972,12908,12973,12972,12909,12972,12909,12908,12909,12973,12972,12972,[12908,13985],[12973,13986],[12908,13987],[12908,13988],12973,12908,12973,[13800,12781],13736,[13800,12969,16757],[12973,8570,16758],[12908,8630],[12972,8631],[12973,8632,14242],[12972,8633,14243],[12908,8634,14244],8635,[12908,8636],12908,12972,12973,[13735,12714],[13800,12781],[13800,12842],[13735,13036,8435],[13800,13037,8436],12972,[12972,14177],[12973,14178],[12972,14179],[12972,14180],[13799,12782],13799,13800,[13800,12969],[12909,2590],3182,3182,[3182,8563],[13800,12777,8564],[12909,8565],12972,12973,12909,12973,12972,[12973,8507],[13585,8508],13648,13648,13651,13649,13651,13648,13648,13648,13651,13586,[13649,12551],[13586,12616],13651,13587,13650,13587,[13648,12743],12744,[13650,12745],[13648,12746],[13649,12749],[13587,12681],13648,13585,13651,[13587,13060],13587,13587,13584,13649,[13640,13522],[13512,13520],13586,13648,13649,13587,13587,13650,13651,13587,13585,13584,13585,13587,[13585,12494],[13585,12430],[13648,12431],13650,13651,13650,13586,[13586,12559],[13651,12560],13648,13649,13651,13649,13587,13585,13649,[13643,13588],13643,[13643,13455],13649,13651,13586,[13649,12808],12809,[13643,13522,12552],[13643,2147496899],[13643,13456,2147496898],[13650,2147496897],[13648,13249],[13584,13250],[13651,13251],[13585,12679],[13648,12680],[13650,12681],13586,13650,13648,13586,13586,13584,13586,13650,13649,13648,13649,13651,13651,[13586,12559],12814,[13650,12815],[13584,12816],13650,13649,[13649,13192],[13648,13193],[13643,13392,13194],[13643,13393,13195],[13643,13394,13196],[13643,13395],[13651,3687],[2421,3688],2357,2424,2360,2421,2358,2359,2421,[2360,2549],[2357,2550],[2360,2551],2360,2421,2360,2359,2421,2423,2358,2357,2358,2422,2357,2424,2421,2358,2422,[2357,2741],[2358,2742],[2422,2743],[2358,3743,2744],[2359,3744],[2358,3745],2423,2358,2423,[3637,2361],3323,3637,3323,3636,[3701,2294],2357,2357,2359,[2359,1914],[2423,1915],[2424,1916],2360,[2421,3679],[3636,2487,3680],[3635,2488],[3323,2295],3636,[3699,2229],2357,[2359,2805],[2424,2806],[2422,2807],[2359,2808],2358,2357,2359,[2421,4546],[2359,4547],[2421,4611],2360,2423,2424,2358,2360,[2422,4616],[2424,4551],[2358,4611,2613],[2357,2614],[2357,2615],[2424,4616,2616],[2357,4551],[2423,4552],[2360,4553],2357,2555,2556,2422,2357,2357,2357,2360,2357,[2424,2805],[2422,2806],[2424,2807],[2423,2808],2357,2423,2358,2358,[2423,2613],[2424,2614],[2360,2615],[2358,2616],[3701,2233,3937],[3699,3938],[3699,3939],[3387,2228,3942],2423,2360,[2423,3872],3873,[4883,3616],4883,[4882,3234],[4882,3235],[4946,3236],4946,4946,4946,4883,4947,4882,4882,4946,[4353,4820],4353,[4353,2979],4353,4353,4353,[4353,4879],4883,4882,[4353,4884],4353,[4353,4943],4946,4882,4946,4883,[4883,3042],[4882,3043],[4883,3044],4947,4947,4946,[4947,4995],[4882,4996],[4946,4997],4866,[4353,4802],[4353,4868],[4353,4943,4869],[4882,4803],4882,4946,4947,4947,4883,4947,4946,4946,[4353,4820],4353,[4353,4816],4881,4883,4947,4944,[4353,4692],4353,4353,4353,[4353,4943],4946,4946,[4353,4756,4808],[4353,4868],[4353,4869],[4353,4872],4932,4933,4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3814,3815,[2424,3938],[2359,3939],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,1039,915,915,1171,1172,916,916,980,979,979,979,[979,2010],[1104,3219],[1832,3220],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3083],[915,3084],[1104,3085],1039,915,1039,915,915,916,1103,1104,1104,1104,1040,1104,1104,1104,980,1103,1103,1103,[916,13968],[1039,14161],[1039,14162],[1103,14163],14033,14035,14737,14098,14033,14098,[14034,14034,13794],[14034,13795],[14675,13796],[14673,13797],14737,14096,14097,[14737,13597],[14032,13598],[14035,13599],[14034,13600],[14033,8570,13601],[14033,8634],8635,[14035,8636],[14033,13538],[14096,13539],[14099,13540],[14738,13541],14673,14098,14097,14032,14609,14035,14098,14737,14096,[13800,13907],13800,[13799,14159],[13799,14160],14033,14034,[13735,14160],[13736,14161,13538],[14675,13539],[14098,13540],[13800,14036,8435,13541],[13800,8436],[13799,13904],14674,14739,[14737,13602],[14034,13603],[14737,13604],[14675,8443,13605],[8698,13606],[14034,8699,16697],14737,14739,14033,14097,14099,14096,[13736,13906],[13799,16761],[13800,8435],[13799,13968,8436],14035,[14739,15501],[14034,15502],[14098,15503],[14035,8570],[14673,8630],[13799,14160,8631],[13799,14163,8634],[13735,14164,8572],13735,13799,13800,13799,13800,13800,[13799,13968],[13799,14160],14034,[14035,14865],14096,[13799,14100],13799,[13799,13904],14098,14034,14098,14098,14674,14738,[14035,8507],[14098,8508],14033,14674,14096,[14033,13661],[14035,13662],[14098,13663],[14098,13664],[14033,13665],14675,14674,14034,[14738,8371],[14034,8372],[14032,8373],14099,14674,14800,14096,14737,14739,14032,14673,14096,14099,14737,14739,[13799,14100],[13799,8308],[13736,8309],[13800,8373],13800,13800,13800,13800,[13800,14095],[14738,8570],[14035,8634],8635,[14737,8636],14673,14097,14096,14674,[14033,8371],[12909,8372],[12972,8373],12908,12909,12908,12908,12972,12973,12973,[12973,16693],[12973,16694],12973,12972,12973,[12908,14049],[12909,14050],[12909,14051],[12908,14052],12973,12908,12973,[13799,12782],13799,[13800,12842,8570],[12973,8571],8694,8695,8696,8697,8698,[12909,8699],12909,12909,12972,12972,12909,[13800,12974],13799,[13800,8499],[13799,8500],[13800,12969],[12973,14241],[12908,14242],[12909,14243],[12972,14244],[13799,12910],[13799,2842],[13800,2525],[13800,12777,2653],[12973,2654],3182,3182,[13800,2460,8627],8628,[12908,8629],[12909,8565],12973,12909,12909,12972,[12908,8443],[13585,8444],13587,13648,13650,13650,13586,13650,13586,13587,13651,[13648,12424],[13651,12425],[13649,12489],13584,13651,13651,13650,13587,[13587,12808],12809,12810,12813,[13650,12680],[13650,12681],13586,13586,13648,13585,13650,13650,[13512,13460],13512,13512,[13641,13455],13650,13584,[13585,13128],[13586,13129],[13650,13130],[13649,13131],[13650,13132],13649,13648,[13576,13714],[13512,13712],13585,[13650,12494],[13584,12495],[13584,12496],13648,13650,[13643,13714],[13643,13715,12559],[13649,12560],[13643,13712],[13643,13713],[13643,13714],[13643,13715],[13643,13715],13587,13649,[13643,13716],13643,[13643,13583],13650,13651,13650,13585,[13648,12615],[13643,12616],[13643,2147496963],[13643,13647,2147496962],[13648,2147496961],[13648,13313],[13587,13314],[13584,13315],[13586,12743],12744,[13651,12745],[13651,12681],[13643,13713],[13643,13714],[13643,13715],13650,13649,13651,13586,13586,13585,13585,13585,13648,[13584,12623],[13650,12624],13650,13584,13584,13651,[13648,13256],[13587,13257],[13585,13258],[13584,13259],[13648,13260],13586,[13649,3558],[13586,3494],[2421,3495],2358,2357,2421,2360,2357,2422,[2421,2613],[2424,2614],[2423,2615],[2358,2616],2357,2357,2423,2423,2423,2359,2421,2424,2359,2360,2359,2423,2422,2359,[2423,2805],[2357,2806],[2423,2807],[2358,3807,2808],3808,[2359,3809],[2360,3745],2423,2423,2358,[3323,2231],3636,3324,3636,3700,[3637,2420],2357,2359,[2423,1978],[2360,1979],[2424,1980],2422,[3636,2233,3615],[3635,3616],3701,3635,[3699,2164],2360,2423,[2421,2869],[2358,2870],[2422,2871],[2359,2872],2422,2421,[2423,4609],[2423,4610],[2360,4611],2423,2358,2421,2424,2421,2421,2424,2357,[2421,2677],[2422,2678],[2423,2679],[2421,2680],2424,[2424,4616],[2421,4617],[2359,4618],2619,2620,2359,2359,2422,2422,2359,2359,[2357,2869],[2422,2870],[2357,2871],[2422,2872],2358,2358,2360,2522,[2424,2677],[2424,2678],[2424,2679],[2421,2680],[3323,2297],3387,3323,[3636,2292],2423,2423,2422,[2360,3679],[4946,3680],4883,4882,[4883,3299],4947,4946,4947,4947,4883,4882,4947,4883,4882,[4353,4884],[4353,3042],[4353,3043],[4353,3044],4353,[4353,4752],4945,4883,4880,[4353,4818],[4353,4752],4945,4882,4883,4946,4882,[4882,3106],[4947,3107],[4883,3108],4883,4882,4882,4883,4882,4947,[4946,4930],4866,4932,4933,[4946,4802],[4883,4803],4946,4947,4883,4947,4947,4882,4947,[4353,4884],4353,4353,[4353,4943],4946,4947,4947,4944,[4353,4688],[4353,4689],[4353,4690],4945,4883,[4947,4808],[4884,4809],4932,4933,4936,[2422,4996],[3679,4997],[3680,5000],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3687,3878,[2423,3879],2424,2357,[2423,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,916,916,1104,980,1040,979,1103,1040,1039,979,1039,1104,[980,3155],[1832,3156],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3147],[979,3148],915,1103,979,1104,1104,1040,916,980,915,980,1103,1040,979,1104,915,915,1040,979,1104,1104,916,915,980,[1040,13969],14033,14033,14096,14097,14673,[14096,14096,13858],[14098,13859],[14032,13860],[14739,13861],14033,14737,14034,[14098,13661],[14096,13662],[14098,13663],[14096,13664],[14034,8507,13665],8698,[14099,8699,16697],14096,[14032,13602],[14033,13603],[14099,13604],[14098,13605],[14674,13606],14675,14098,[14096,8245],[14035,8246],[14737,8315,13534],[14099,13535],[14032,13536],14674,14675,[13800,13906],13800,13735,[13800,14159],[13800,13970],13800,[13799,13602],[13736,13968,13603],[13799,14162,13604],[13735,13971,8499,13605],[13799,8500,13606],[13799,14095],14035,14738,[14035,13666],[14675,13667],[14739,13668],[14099,8443,13669],[14673,8444,13670],[14098,16761],14032,14098,14098,14737,14738,14033,[13800,14100],13799,[13799,8499],[13799,8500],[13800,13969],[13800,14160],[13799,14161],[13799,14162,8570],[13799,14163,8634,13534],[8694,13535],[8695,13536],8698,[13800,8636],13800,13799,13800,13799,13799,13799,13800,13799,[13799,14095],14738,14739,[13799,13971],13800,[13799,13903],[14032,14411],[14673,14412],14034,14674,[14032,13534],[14673,13535],[14737,8378,13536],[14096,8314],[14034,8315],14675,14032,[14673,13725],[14098,13726],[14097,13727],[14035,13728],[14738,13729],14035,14674,14737,[14034,8435],[14096,8436],[14032,14539],14034,14738,14035,[14035,13538],[14097,13539],[14033,13540],[14096,13541],14673,14034,14097,14099,[14096,8245],[14739,8246],[13799,13840,8372],[13799,13841,8373],[13800,13843],[13800,13844],13799,13800,13799,[13735,13968],[13800,14160,8443],8698,[13800,14162,8699],[13799,14163],14034,14097,14096,14675,[14097,8435],[12908,8436,13921],[12973,13922],[12909,13923],[12973,13924],12909,12972,12909,12973,12973,[12972,16757],[12908,16758],12973,12908,12973,[12908,14113],[12973,14114],[12973,14115],[12908,14116],12972,12973,[12909,8570],[13799,12910,8632],[13799,8633],[13800,8634],8635,[12973,8758,16693],[12908,8759,16694],[12908,8760],[12973,8761],[12972,8762],12909,12973,12972,12972,12972,12909,12908,[13800,12780],[13800,8563],[13799,8564],[13800,12842,8565],[13799,13037],[13800,13035,2842],[12973,2525],[12973,2653],[13800,12782,2653],[13800,2654],3182,3182,[13800,2460,13921],[13799,2461,13922],[13799,2461,13923],[13800,12778,13924],[12973,8692],8693,[12908,8436],12908,12909,12972,12973,[12909,8507],[13584,8508],13587,13584,13586,13584,13585,13584,13586,13585,[13586,12487],[13651,12488],[13585,12489,13128],[13585,13129],[13584,13130],[13584,13131],[13648,13132],13650,13650,13585,[13584,12873],[13586,12874],[13587,12877],12744,[13587,12745],[13585,12681],13648,13584,13648,13649,13648,[13640,13524],13640,13513,[13640,13583],13650,13649,[13585,13192],[13586,13193],[13648,13194],[13587,13195],[13649,13196],13651,[13576,13652],13640,13512,[13641,13647],13649,[13585,12559],[13586,12560],13649,[13643,13460],13643,[13643,12623],[13643,12624],13643,13643,13643,13643,13643,[13643,13711],[13643,13522],13643,[13643,13391],13584,13585,13585,13587,13587,[13586,12551],[13643,13394,12552],[13643,13395,2147497027],[13584,2147497026],[13587,2147497025],[13648,13377],[13584,13378],[13649,13379],13650,[13651,12808],12809,[13643,13522,12552],13643,13643,13643,[13643,13647],13649,13649,13586,13585,13587,13650,13587,13585,[13584,12494],[13586,12430],[13587,12431],13649,13649,13650,[13649,13320],[13651,13321],[13587,13322],[13651,13323],[13649,13324],13585,13584,[13586,3558],[13649,3494],[2421,3495],2423,2424,2423,2357,2421,[2424,2677],[2360,2678],[2421,2679],[2424,2680],2421,2358,2423,2360,2357,2424,2424,[2424,2549],[2422,2550],[2358,2551],2423,2424,2360,2358,[2360,2869],[2360,2870],[2359,2871],[2423,2872],[2357,3872],3873,[2357,3616],2358,2421,2360,2424,[3635,2165],[3701,2168],[3701,2169],3635,[3637,2293],2357,2422,[2423,2042],[2422,2043],[2360,2044],2424,[3635,2297,3679],[3388,3680],3637,3700,[3699,2420],2358,2358,2359,2423,2423,2424,2360,2422,[2422,4801],[2423,4867],[2360,4868],[2358,4869],[2360,4803],2360,2421,2359,2357,2421,2360,[2360,2741],[2421,2742],[2357,2743],[2422,2744],2359,2421,[2421,4745],[2360,4746],2424,2424,2421,2424,2359,2424,2359,2360,2424,2359,2422,2421,2359,2424,2424,2423,[2357,2741],[2357,2742],[2357,2743],[2424,2744],[3636,2361],3636,3699,[3699,2356],2357,2357,2360,[2423,3743],[4883,3744],[4947,3745],4946,4946,4883,4946,[4882,3750],[4946,3810],[4947,3811],[4882,3745],4946,4882,4883,4944,[4353,4688,3106],[4353,4689,3107],[4353,4690,3108],[4353,4691],4945,4947,4946,[4353,4948,3750],[4353,3810],[4353,4943,3811],[4947,3812],[4883,3813],[4882,3745],4882,4947,[4946,3170],[4883,3171],[4883,3172],4883,4947,4883,4882,4882,4947,4883,[4946,4930],[4883,4996],[4882,4997],4866,[4947,4867],[4947,4803],4883,4882,4946,4882,4883,4946,4944,[4353,4755],4353,[4353,4816],4881,4883,4946,4882,4947,4946,4946,4882,[4947,4808],[4882,4872],4873,[2360,4996],[2421,4997],[2358,5000],2491,[2421,3743],3744,3745,0,0,0,0,0,0,0,0,3750,3810,3811,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,3751,[2421,3752],2359,2491,2428,2359,[2358,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1832,3220],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,980,915,916,1039,1104,916,1039,979,916,[915,13905],14033,14739,14035,14099,14098,14035,14033,14738,14675,14034,14098,14034,[14738,13725],[14097,13726],[14099,13727],[14097,13728],[14099,8443,13729],[14096,8444],[14033,16761],14032,[14035,13666],[14096,13667],[14035,13668],[14033,13669],[14034,13670],14098,[14674,8245],[14033,8309],[14739,8310,13597],[14739,8314,13598],[14096,8315,13599],[14034,13600],[14035,8245,13601],[14098,8249],[14737,8246],[13799,13907,8246],[13799,8250],13799,13799,13800,[13800,13666],[13800,13667],[13799,13668],[13799,8563,13669],[13800,8564,13670],[13800,14159,8565],14099,14032,[14035,13730],[14097,13731],[14675,13732],[14737,8378,13733],[14034,8314,13734],[14032,8315],14673,14609,14096,14737,[14032,13534],[14739,13535],[14097,13536],[13799,13906],[13735,8563],[13799,8564],[13799,8565],13799,13799,[13799,8507,13597],[8698,13598],[13735,8758,13599],[13800,8759,13600],[13800,8762,13601],[13799,13905],[13736,13844],13799,13800,13800,13799,13800,13799,13800,[13799,13968],14738,[13799,14100],13800,13800,[13800,13967],[14739,14475],[14738,14476],14739,[14034,13597],[14098,13598],[14097,13599],[14032,13600],[14739,8378,13601],[14675,8314],[14097,8315],14737,[14738,13789],[14032,13790],[14096,13791],[14738,13792],[14034,13793],14034,14032,14738,[14739,8499],[14033,8500],14674,14737,14739,14034,[14035,13602],[14033,13603],[14035,13604],[14738,13605],[14673,13606],14675,14675,[14098,8308],[14738,8309],[14674,8310],[14739,8373],14098,14739,[14033,13538],[13799,13906,13539],[13800,13540],[13800,13541],13736,[13799,8507],[13736,8508],13799,13799,[13736,14095],14098,14097,14673,[14035,8499],[12973,8500,13985],[12973,13986],[12973,13987],[12909,13988],12908,12972,12909,12973,12909,12972,12908,12972,12908,12973,[12973,14177],[12973,14178],[12909,14179],[12973,14180],12973,[12972,8570],[12973,8571],8696,8697,8698,[13799,12905,8699],[12909,16757],[12973,16758],12973,12908,12973,12909,12908,12909,12909,[12908,2082],12972,12973,12972,[13799,12718,8627],8628,[13800,2653,8629],[13800,2653,8565],[13800,2654],3182,3182,[13800,2460],[13800,2461],[13799,2461],[13800,2461],[13799,13985],[13800,12779,13986],[13799,12714,13987],[12909,13988],[12973,8371],[12908,8372],[12908,8373],12972,12973,12972,[12972,8570],[12909,8571],[13714,8572],[13643,13715],13648,13584,13650,13649,13587,13587,[13643,13715],[13587,12551],[13651,12552],[13650,13192],[13651,13193],[13586,13194],[13586,13195],[13587,13196],13649,13649,13650,13648,13649,13587,[13651,12808],12809,[13650,12552],13585,13651,13586,13586,13585,[13512,13588],13640,[13576,13391],13587,13586,13648,[13648,13256],[13651,13257],[13649,13258],[13651,13259],[13587,13260],13587,[13512,13523],13640,[13512,13456],13650,13649,[13584,12623],[13649,12624],13650,[13643,13524],13643,[13643,13457,12494],[13650,12495],[13643,13456,12496],[13643,13393],[13643,13394],[13643,13395],[13643,13458],13643,13643,13643,[13643,13647],13585,13586,13649,13650,13587,[13648,12615],[13650,12616],13584,13651,[13584,2147497089],[13643,13715,13441],13586,13648,13650,13585,[13586,12551],[13643,12616],13643,[13643,13456],[13643,13392],13584,13587,13651,13587,13648,13649,13648,13651,13650,13584,[13586,12494],[13584,12495],[13586,12496],13587,13649,[13587,13384],[13649,13385],[13643,13712,13386],[13643,13713,13387],[13643,13714,13388],[13643,13715],13585,13587,[13650,3558],[13587,3559],[2359,3560],2421,2421,2421,2423,[2424,2741],[2424,2742],[2424,2743],[2359,2744],2359,2423,2424,2357,2422,2423,2424,[2359,2613],[2424,2614],[2423,2615],[2360,2616],2421,2357,2359,2360,2357,2423,2423,2421,[2422,3615],[2422,3616],2359,2421,2422,2360,2424,2359,[3701,2233],3700,3637,[3324,2420],2423,[2358,2106],[2357,2107],[2422,2108],[2424,3488],[3636,2361,3489],[3637,3553],3701,[3636,2229],2360,2359,2357,2360,2422,2358,2359,2424,2424,[2421,4865],4931,4932,4933,[2424,4802],[2359,4803],2422,2360,2359,2360,2359,[2359,2805],[2358,2806],[2359,2807],[2422,2808],2424,[2358,4808],[2358,4809],[2357,4810],2422,2422,2358,2424,2423,2359,2424,2359,2421,2358,2422,2424,2357,2421,2360,2358,[2360,2805],[2422,2806],[2359,2807],[3324,2488,2808],[3637,2489],[3636,2164],[3699,2165],2358,2424,2359,2423,[2358,3807],3808,[4883,3809],[4882,3810],[4883,3811],[4947,3812],[4946,3813],[4883,3814],3874,3875,[4946,3744],[4946,3745],4882,4882,4882,[4946,3170],[4883,3171],[4882,3172],4883,4882,4882,[4947,3750],[4882,3751],3874,3875,3876,3877,[4883,3744],[4946,3745],4883,[4946,3234],[4947,3235],[4883,3236],4947,4946,4882,4882,4946,4947,4882,4947,4947,4882,[4882,4930],4931,[4882,4674],4883,4882,4946,4946,4883,4882,4946,[4353,4756],4353,4353,[4353,4751],4883,4946,4946,4947,4882,4946,4883,[4883,4681],4936,[2421,4937],2359,2426,2422,2426,[2357,3807],3808,3809,3810,3811,3745,0,0,0,0,3750,3751,3874,3875,3744,3745,0,0,0,0,0,0,0,0,0,0,3750,3812,3813,3814,3815,[2358,3816],2491,2423,2358,2427,[2358,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1832,3027],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,2957],[1832,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,979,979,1039,915,979,916,979,980,[1103,13839],[1040,13840],14034,14032,14738,14099,14097,14098,14097,14098,14737,14739,14096,14032,14739,[14097,13789],[14035,13790],[14096,13791],[14098,13792],[14034,8507,13793],[14035,8508],14035,14098,[14098,13730],[14096,13731],[14096,13732],[14032,13733],[14675,13734],14738,[14675,8435],[14096,8436],[14097,13661],[14674,8378,13662],[14675,8379,13663],[14673,8249,13664],[14738,8309,13665],[14673,8313],[14033,8310],[14097,8310],[13799,13906,8314],[13799,8315],[13800,13905],[13800,13840],[13799,13841,13730],[13800,13842,13731],[13799,13843,13732],[13800,13907,8627,13733],[13799,8628,13734],[13800,8436],[13799,13969],14675,[14033,13794],[14033,13795],[14099,13796],[14034,13797],[14099,8378],[14034,8379],[14611,8380],14098,14739,[14099,13597],[14035,13598],[14737,13599],[14034,13600],[14099,13601],[13800,13841,8627],8628,[13800,13843,8629],[13800,13844,8630],[13800,8631],[13800,8571,13661],[13799,13839,8572,13662],[13800,13841,13663],[13800,13842,13664],[13799,13843,13665],14035,14034,[13800,13907],13800,13800,[13800,13904],[13799,13840],[13735,13844],13799,13800,[13800,14159],[13799,14164],[13800,8245],[13799,8246],[13799,14031,8249],[14099,8315],14033,14674,[14738,13661],[14675,13662],[14032,13663],[14674,13664],[14096,13665],[14099,8378],[14096,8379],[14737,8380],14097,[14033,13854],[14035,13855],[14675,13856],14674,14035,14674,14673,[14096,8563],[14032,8564],[14675,8565],14675,14738,14097,[14097,13666],[14097,13667],[14099,13668],[14675,13669],[14098,13670],[14098,8245],[14098,8246],[14097,8372],[14673,8373],[14096,14865],14674,14033,14096,[14673,13602],[14738,13603],[13800,13840,13604],[13799,13841,13605],[13799,13842,13606],[13735,13843,8507],[13800,13907,8508],13799,13736,[13799,13969],[13800,14161],[13800,14162],[14163,8371],[12909,8372],[12908,8373,14049],[12909,14050],[12908,14051],[12908,14052],12973,12973,12972,12908,12972,12908,12973,12973,12909,12972,12973,[12973,14242],[12972,14243],[12909,14244],[12972,8570],[12908,8634],8635,[3182,8760],[13735,12782,2460,8761],[13799,8762],[13799,13033],[13799,13034],12908,12972,12972,12973,12972,12909,12909,[12973,2145],[12972,2146],[12973,2147],12909,12973,12973,[13800,12714,8692],8693,[3182,8436],3182,3182,[13735,2460],13800,13800,13800,[13800,12778],[13800,12714,14049],[12908,14050],[12972,14051],[12972,14052],[12909,8499],[12973,8500],12908,12972,12908,[12909,8570],[12973,8634],8635,[13643,8636],13643,[13643,13647],13650,13651,13648,13651,[13643,13522],13643,[13643,12615],[13648,12616],[13585,13256],[13650,13257],[13586,13258],[13649,13259],[13649,13260],13587,13650,13648,13648,13586,13651,13651,[13649,12551],[13651,12616],13651,13584,13649,13651,13648,[13512,13652],13641,[13640,13455],13648,13585,13649,[13587,13320],[13584,13321],[13649,13322],[13650,13323],[13649,13324],[13640,13460],13641,[13641,13391],13585,13585,[13585,12686],[13587,12687],[13584,12688],13587,[13643,13588],13643,[13643,13455],[13649,12559],[13651,12560],13585,13648,[13648,13133],[13651,13134],[13643,13392,13135],[13643,13396],13643,[13643,13711],13650,13584,13649,13585,[13585,12424],[13648,12425],[13650,12489],13650,13650,[13643,13460],13643,[13643,13521],13649,13585,[13648,12424],[13586,12425],[13643,13394,12489],[13643,13395],13586,13586,13584,13584,13585,13649,[13651,12943],[13651,12944],13648,13584,13650,13586,13587,[13587,12559],[13584,12560],13650,13584,13651,[13643,13716,13449],[13643,13450],[13643,13451],13643,13643,[13643,13520],[13643,13712],[13643,13713],[13643,13714,3623],[2359,3624],2424,2357,2423,2424,[2360,2805],[2359,2806],[2360,2807],[2424,2808],2360,2358,2423,2360,2681,2682,2358,[2358,2677],[2424,2678],[2358,2679],[2424,2680],2423,2360,2359,2424,2357,2357,2358,2421,[2423,3679],[2423,3680],2358,2358,2360,2360,2423,2422,[3700,2361],3701,3388,[3323,2293],2421,2424,2358,[2358,3551],[3701,2488,3552],[3635,2489,3553],[3699,2549],[3701,2550],[3388,2420,2551],2421,2357,2421,2424,2358,2358,2359,2424,2359,2421,[2424,4995],[2423,4996],[2357,4997],4866,[2424,4867],[2421,4803],[2360,1914],[2422,1915],[2360,1916],2424,[2357,2869],[2424,2870],[2360,2871],[2422,2872],[2421,4808],[2357,4872],[2424,4873,2549],[2522,4874,2550],[2359,2551],2357,2421,2357,2358,2424,2423,2423,2421,2357,2360,2357,2360,2421,2422,2359,[2422,2869],[2424,2870],[3636,2425,2871],[3637,2872],3636,[3636,2420],2423,2358,2358,2423,2360,2360,[2421,3872],3873,3874,3875,3876,3877,3878,[2360,3938],[2357,3939],3808,[4883,3809],[4883,3745],4946,4946,[4947,3234],[4947,3235],[4883,3236],4947,4947,[4883,3750],[4883,3814],3815,[2421,3938],[2360,3939],[2421,3940],[2424,3941],3808,[4883,3809],[4882,3745],4947,[4883,3299],4946,4947,4947,4947,4882,4947,4882,4947,4882,4882,4946,4946,[4947,4673],[4947,4674],4946,4882,4946,4947,4883,4883,4882,[4353,4820],4353,4353,[4353,4815],4883,4882,4946,4947,4883,4946,4946,[4947,4745],[2423,4746],2427,2357,2360,2357,2422,2427,[2358,3872],3873,3874,3875,3809,3810,3811,3812,3813,3814,3815,[2359,3938],[2359,3939],3808,3809,3810,3811,3812,3813,3745,0,0,0,0,3750,3751,3876,3877,3878,[2357,3879],2362,2426,2422,2421,2362,[2358,3743],3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1832,3092],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,1103,915,1039,1039,915,1040,[980,13904],14032,14097,14034,14035,14099,14738,14032,14737,14673,14097,14098,14675,14674,14801,14032,14098,[14098,13854],[14033,13855],[14033,13856],[14033,8378],[14099,8314],[14035,8315],14096,[14033,13794],[14738,13795],[14098,13796],[14675,13797],14099,14099,[14738,8499],[14673,8500],[14739,13725],[14739,13726],[14675,8378,13727],[14098,8313,13728],[14738,8373,13729],14801,14737,14098,[14675,8378],[13799,13840,8379],[14034,8246],[14096,8249],[14097,8315,13794],[14097,13795],[14674,13796],[14674,13797],[13800,13840,8435],[13800,13907,8436],13799,[13799,14095],[14033,13858],[14096,13859],[14673,13860],[14739,13861],14033,[14675,8443],[14096,8444],14737,14035,[14738,13661],[14032,13662],[14675,13663],[14738,13664],[14035,13665],14096,[14097,8692],8693,8694,8695,[8635,13725],[14675,8636,13726],[14738,13727],[14096,13728],[14739,13729],14098,14674,14032,[13799,13841],[13736,13843],14675,14098,14097,[13799,13907],13799,13800,[13735,8245],[13800,8309],[13800,13904,8310],[14738,8313],[14033,8379],[14096,8380],14033,[14738,13725],[14034,13726],[14032,13727],[14099,13728],[14096,13729],14738,[14674,8443],[14675,8444],14739,14035,14032,14675,14739,14034,14737,14675,[14673,8627],8628,[14097,8629],[14032,8565],14737,14099,[14032,13730],[14737,13731],[14035,13732],[14673,13733],[14098,8371,13734],[14096,8372],[14098,8310,16693],[14096,8373,16694],14098,14673,14033,14033,14096,[14099,13666],[14674,13667],[14035,13668],[14033,13669],[14096,8570,13670],[14033,8571],[14098,8572],[13799,13840],[13799,13844],13799,13800,13800,[13800,8435],[12909,8436],[12908,14113],[12908,14114],[12973,14115],[12909,14116],12973,12973,12973,12909,12909,12973,12909,12909,12908,12908,12972,12973,12908,[12908,16693],[12972,8443,16694],8698,[3182,8699],[3182,13921],[13799,12910,2524,13922],[13800,13923],[13800,13924],13799,[13800,12843],12909,12972,12973,12909,12908,[12972,13921],[12973,13922],[12909,13923],[12909,13924],12972,12909,12973,12972,[13799,12782,8435],[13799,2461,8436],[13799,13033,2461],[13800,12844,2461],13735,[13735,12778],[13800,12715],[13800,12716],12909,[12908,14113],[12909,14114],[12908,14115],[12908,14116],[12909,8563],[12973,8564],[12973,8565],12973,12972,[12909,8443],8698,[13643,13393,8699],[13643,13395],[13643,13459],[13643,13520],[13643,13712],13585,13648,[13643,13523],13643,13643,[13643,12551],[13651,12552],[13587,13320],[13651,13321],[13587,13322],[13651,13323],[13587,13324],13586,13649,13649,13584,13585,13587,13585,[13585,12551],[13584,12552],13586,13651,13587,13587,13587,[13512,13460],13512,[13641,13583],13586,13585,13584,[13584,13384],[13584,13385],[13649,13386],[13587,13387],[13648,13388],[13640,13524],13640,[13640,13455],13651,[13587,12686],[13651,12750],12751,[13584,12752],[13643,13715],[13643,13716],13643,[13643,13519],[13651,12623],[13648,12624],13586,13651,[13649,13197],[13649,13198],[13650,13199],[13643,13652],13643,13643,[13643,13521],13584,13587,[13651,12424],[13586,12488],[13648,12489],13585,13585,13586,[13643,13588],13643,13643,[13643,13647],[13648,12487],[13586,12488],[13587,12489],13651,13587,13587,13650,13650,13648,13584,13650,[13649,13007],[13651,13008],13584,13650,13585,13586,13650,[13585,12623],[13586,12624],13586,13649,[13643,13522],13643,13643,[13643,13456],[13643,13392],[13643,13459],13643,13643,13643,[13643,3687],[2421,3688],2424,2359,2424,2423,[2358,2869],[2421,2870],[2421,2871],[2359,2872],2423,2360,2357,2357,2745,2746,2360,[2357,2741],[2423,2742],[2422,2743],[2359,2744],2359,2424,2357,2360,2357,2357,2424,[2421,3488],[2359,3489,2549],[2421,3553,2550],[2421,2551],2421,2422,2424,2358,2421,2360,[3701,2231],3323,3323,[3699,2484],[3699,2487],[3701,2488],[3700,2296,3679],[3636,3680],3323,[3387,2613],[3699,2164,2614],[2358,2615],[2360,2616],2359,2360,2360,2358,2424,2359,2357,2422,2358,2421,2394,2424,[2421,4930],4931,[2360,4674],[2423,1978],[2421,1979],[2358,1980],2421,2360,2358,2359,2357,[2421,4681],4936,[2360,4937,2613],[2423,2614],[2421,2615],[2421,2616],2360,2422,2359,2422,2424,[2422,2549],[2357,2550],[2357,2551],2357,2360,2359,2359,2358,2359,2358,[3323,2488],[3323,2489],3701,[3701,2229],2360,2357,2360,2360,2364,2360,2423,2423,[2357,3937],[2421,3938],[2358,3939],[2358,3940],[2422,3941],[2422,3942],2423,2421,[2359,3872],3873,[4882,3680],4882,4882,4882,[4947,3299],4947,4882,4883,[4947,3687],3878,[2423,3879],2422,2358,2422,2359,[2421,3872],3873,[4947,3616],4883,4883,4883,4947,4946,4882,4946,4947,4946,4946,[4883,2979],4882,4882,4947,[4946,4801],[4946,4802],[4883,4803],4882,4946,4883,4946,4882,4883,[4353,4884],4353,[4353,4808],[4353,4879,4868],[4882,4491],[4883,4803],4882,4947,4947,4883,[4882,4808],[4947,4809],[2360,4810],2423,2360,2422,2360,2423,2422,2360,[2358,3937],[2422,3938],[2421,3939],3873,3874,3875,3876,3877,3878,[2359,3879],2423,2490,[2358,3872],3873,3874,3875,3876,3877,3809,3810,3811,3812,3813,3814,3815,[2422,3940],[2423,3941],[2421,3942],2360,2423,2426,2359,2491,2362,[2357,3807],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1832,3156],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,980,1040,1039,979,[1104,13904],[979,13840],14097,14098,14033,14099,14034,14675,14099,14096,14033,14034,14097,14739,14098,14099,14737,14675,14738,14034,14098,14098,14032,[14035,8378],[14096,8379],[14096,8250],[14032,13858],[14738,13859],[14674,13860],[14739,13861],14675,14096,[14738,8563],[14737,8564],[14098,8565,13789],[14099,13790],[14033,13791],[14032,13792],[14035,13793],[14032,14294],[14675,14295],14675,14032,[14098,8378,14298],[14033,8310,14299],[14034,8313],[14033,8314,13858],[14738,8315,13859,14302],[14096,13860],[14800,8308,13861],[14035,8309],[13799,14100,8373],13736,[13799,13968],14033,14674,14739,14032,14099,[14034,8378],[14096,8314],[14674,8315],14674,[14737,13725],[14739,13726],[14097,13727],[14098,13728],[14673,13729],14673,14674,[14737,8692],[13799,13972,8758],[13799,8759],[13735,13903,8699,13789],[14035,13790],[14099,13791],[13735,14161,13792],[13799,14162,13793],[13735,14163],[13800,14160],[13799,14161],[13800,14162],[13799,14163],14099,[14032,14865],[14099,8245],[14738,8246],[13799,13844,8250],13799,[13800,13839,8499],[13800,13840,8500],14800,14675,[14032,8443],[14096,8444],14737,[14096,13789],[14674,13790],[14099,13791],[14737,13792],[14739,13793],14739,[14096,8507],[14097,8508],14673,14737,14035,14675,14035,14737,14035,14033,14033,[14739,8692],8693,[14738,8436],14096,14033,[14097,13794],[14035,13795],[14673,13796],[14033,13797],[14032,8435],[14034,8436],[14674,16757],[14737,16758],14739,14737,14673,14675,14738,[14098,13730],[14737,13731],[14035,13732],[14098,8570,13733],[14033,8634,13734],8635,[14099,8636],14096,[13800,13908],13800,13799,13800,[13799,8499],[12973,8500],[12972,14177],[12973,14178],[12972,14179],[12909,14180],12908,12972,[12909,13921],[12908,13922],[12972,13923],[12909,13924],12908,12972,[13800,13035],[13799,13036],[13800,13037],12908,12908,[12973,16757],[12973,8443,16758],[3182,8444],3182,[3182,13985],[12908,2588,13986],[13799,12780,13987],[13800,13988],13799,13800,[13800,12777],12908,12908,12908,12973,[12973,13985],[12972,13986],[12909,13987],[12973,13988],12972,12909,12972,12972,[13799,12910,8563],[13735,8564],[13800,8565],13800,13800,[13800,12969,8570],[12908,8630],[12909,8631],[12909,8565],[12909,14177],[12908,14178],[12973,14179],[12908,14180],[12972,8627],8628,[12973,8629],[12972,8565],12908,[12973,8443],[13585,8444],13651,13586,[13643,13652],13643,13643,[13643,13711],[13643,13716],13643,[13643,13456],[13643,13392],[13587,12615],[13651,12616],[13651,13384],[13648,13385],[13649,13386],[13650,13387],[13584,13388],13584,13585,13650,13586,13587,13585,13587,[13586,12615],[13585,12616],13651,13584,13649,[13586,13128],[13651,13129],[13641,13588,13130],[13576,13131],[13641,13520,13132],[13640,13712],13649,13650,13651,[13651,13449],[13648,13450],[13649,13451],13586,[13512,13588],13640,[13512,13519],13649,[13586,12559],12814,[13586,12815],[13643,13522],13643,13643,13643,[13643,13583],[13584,12559],[13648,12560],13648,13649,[13650,13261],[13648,13262],[13648,13263],13587,[13643,13458],13643,13643,[13643,13647,12361],[13649,12362],[13585,12488],[13651,12489],13649,13648,13650,13585,13648,[13643,13458],13643,[13643,13521],[13648,12551],[13586,12552],13649,13585,13584,13651,13586,13587,13648,13649,13584,13587,13651,13648,13651,13584,[13643,13714],13586,[13651,12494],[13587,12430],[13584,12431],[13643,13523],13643,13643,[13643,13457],13586,13648,13648,[13643,13396],13643,[13643,13456],[13643,13392,3623],[2360,3624],2421,2358,2360,2359,2359,2358,2424,2358,2359,2422,2360,2422,2360,2423,2421,[2422,2805],[2358,2806],[2423,2807],[2360,2808],2357,2421,2424,2423,2359,[2360,3488],[2423,3426],[2358,3552],[2359,3553,2613],[2421,2614],[2358,2615],[2357,2616],2421,2357,2522,2359,2423,2423,[3323,2165],[3635,2165],[3636,2231],3323,3637,[3701,3743],[3387,2229,3744],[3635,2166,3745],[3635,2168,2677],[2421,2678],[2357,2679],[2359,2680],2360,2422,2357,2360,2359,2423,2422,2359,2358,2357,2421,2423,2358,[2357,4737],[2359,4738],[2423,2042],[2422,2043],[2424,2044],2424,2422,2422,2357,2421,[2421,4745],[2358,4746],[2423,2677],[2360,2678],[2357,2679],[2358,2680],2421,2424,2423,2423,2358,[2357,2613],[2359,2614],[2360,2615],[2422,2616],2360,2358,2359,2360,2422,[3388,2233],3323,3636,[3701,2164],2422,2357,[2424,2549],[2357,2550],[2421,2551],2422,2421,2423,2360,2423,2360,2359,2359,2423,2359,2358,2357,2424,[2423,3743],[4883,3744],[4883,3745],4946,4947,4882,4882,4946,4882,[4947,3687],[2422,3688],2357,2421,2422,2424,2422,2360,[2359,3679],[4883,3680],4883,[4882,3750],[4947,3810],[4947,3811],[4882,3745],4882,4947,4882,4883,[4882,3042],[4883,3043],[4882,3044],4883,4882,[4882,4865],4866,[4947,4867],[4883,4868],[4946,4869],[4946,4870],[4947,4871],[4883,2147488139],[4947,4869],[4353,4948,4870],[4353,4871],[4353,4872],4932,4555,[4882,4867],[4946,4868],[4883,4869],[4882,4870],[4883,4491],[4883,4872],4873,[2424,4874],2428,2359,2428,2362,2492,2428,2421,2422,2421,2423,[2423,3937],[2359,3938],[2358,3939],[2424,3940],[2357,3941],[2423,3942],2424,2357,2426,2491,[2424,3937],[2360,3938],[2360,3939],[2422,3940],[2421,3941],3873,3874,3875,3876,3877,3878,[2360,3879],2491,2427,2427,2360,2490,2359,2491,2490,2358,2427,[2357,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1832,3220],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,1040,979,980,980,[979,13903],14034,14033,14096,14099,14098,14099,14737,14032,14738,14097,14096,14032,14739,14673,14675,14673,14739,14673,14035,14096,14035,14610,14099,[14033,8378],[14098,8314],[14032,8246],[14035,8249],[14034,8246],[14097,8249],[14097,8250],14099,[14096,8627],8628,[14674,8564],[14032,8565,13854],[14674,13855],[14099,13856],14099,[14675,14358],[14098,14359],14737,[14738,14361],[14674,14362],[14098,14363],[14098,14364],[14096,8378,14365],[14097,8379,14366],[14033,8249,14367],[14738,8372],[14738,8373],14034,[13800,13844],13800,[13800,14159],14097,14096,14097,14098,14099,[14097,8378],[14738,8379],[14032,8380],[14034,13789],[14738,13790],[14674,13791],[14674,13792],[14099,13793],14034,14099,14033,[13736,14036],13800,[13800,14031],[14675,13854],[13799,13970,13855],[13799,13856],13799,13799,[13800,13538],[13799,13539],[13799,13540],[13800,13541],[13800,13969],[13735,14161,8308],[13800,14162,8309],[13800,14163,8310],[13800,14164,8314],[13799,8249],[13799,14095,8372],[14032,8373],14739,[14739,16693],[14673,8443,16694],[14096,8444],14737,14739,[14673,13854],[14674,13855],[14097,13856],14035,[14032,8570],[14032,8571],[14032,8572],14033,14097,14674,14739,14675,14739,14738,14096,14096,14675,[14674,8499],[14098,8500],14609,14674,[14673,13858],[14739,13859],[14675,13860],[14035,13861],[14739,8499],[14673,8500],14610,14673,14739,14035,14739,14738,14673,[14738,13794],[14033,13795],[14034,13796],[14096,8443,13797],8698,[14099,8699],14674,14801,[13800,14036],13800,13735,13800,[13800,8499],[12908,8500],[12908,14241],[12973,14242],[12973,14243],[12909,14244],12973,12972,[12972,13985],[12908,13986],[12909,13987],[12973,13988],12909,[13800,12974],13799,13799,13800,[13800,12842],[13799,13035],[13799,13036],[13735,13037,8507],[3182,8508],3182,[3182,14049],[12909,2524,14050],[12908,14051],[13799,12718,14052],13800,13799,[13800,12905],12909,12908,12973,12973,[12909,14049],[12972,14050],[12973,14051],[12908,14052],12973,12973,12908,12972,[12909,8627],8628,[13799,8629],[13800,8630],[13800,12713,8631],[12908,8634],[8694,16693],[8695,16694],[12908,8629],[12908,8565,14241],[12973,14242],[12909,14243],[12972,14244],12973,[12909,8692],8693,[12972,8500],[12909,13921],[12973,8507,13922],[13649,8508,13923],[13651,13924],13586,13649,[13643,13392],[13643,13396],13643,13643,13643,[13643,13647],13651,[13586,12679],[13649,12680],[13586,12681],[13651,13449],[13648,13450],[13650,13451],13587,13650,13649,13650,13648,13648,13650,[13586,12424],[13585,12425],[13586,12489],13585,13650,13650,[13650,13192],[13651,13193],[13651,13194],[13577,13458,13195],[13512,13196],13640,[13512,13711],13584,13649,13586,13649,13584,13586,[13512,13652],13641,[13641,13583],13650,[13586,12623],[13586,12624],[13643,13460],13643,13643,[13643,13457],[13643,13392],13648,[13586,12623],[13587,12624],13649,13586,[13587,13325],[13648,13326],[13587,13327],13649,13585,[13643,13396],[13643,12487],[13586,12488],[13587,12426],[13648,12489],13585,13651,13584,13649,13651,13587,[13643,13652],13643,13643,[13643,12615],[13651,12616],13584,13586,13651,13649,13585,13587,13587,13648,13650,13650,13650,[13586,13128],[13649,13129],[13643,13460,13130],[13643,13131],[13643,13711,13132],13648,[13585,12494],[13650,12495],[13643,12496],[13643,13456],[13643,13392],13651,13648,13586,13650,[13643,13523],13643,[13643,13647],[13587,3687],[2422,3688],2360,2421,[2360,2549],[2360,2550],[2357,2551],2424,2421,2422,2358,2358,2422,2422,2359,2358,2423,[2423,2869],[2422,2870],[2422,2871],[2360,2872],2423,2358,2359,2424,[2422,3551],[2421,3552],[2360,3490],[2422,3553],[2421,2677],[2359,2678],[2423,2679],[2357,2680],2360,2359,2360,2424,2360,2359,2422,2423,[3637,2233],3635,[3637,2164],[3323,2165,3807],3808,[2359,3809],[2422,3745,2741],[2359,2742],[2358,2743],[2423,2744],2424,2359,2421,2424,2421,2421,2421,2422,2359,2423,2358,2421,2358,[2358,4801],[2424,4802],[2424,4803,2106],[2359,2107],[2422,2108],[2422,4808],[2360,4868],[2357,8009],[2423,8010],[2357,8011],[2423,4809],[2358,4810],[2422,2741],[2422,2742],[2357,2743],[2422,2744],2421,2360,2360,2359,2357,[2423,2677],[2359,2678],[2358,2679],[2421,2680],2358,2424,2422,2358,[2358,2549],[3699,2361,2550],[3700,2551],3323,[3637,2484],2359,2360,[2422,2613],[2360,2614],[2424,2615],[2360,2616],2422,2357,2423,2359,2422,[2359,2549],[2421,2550],[2424,2551],2424,2358,2424,2422,[2357,3807],3808,[4946,3809],[4883,3810],[4947,3811],[4946,3745],4947,4883,[4946,3750],[4882,3751],[2358,3752],2424,2421,2358,2357,2360,2360,[2424,3743],[4883,3809],[4883,3812],[4883,3814],3874,3875,[4947,3744],[4882,3745],4947,4946,4882,[4883,3106],[4882,3107],[4947,3108],4882,4947,4883,[4882,4930],4931,4932,4933,4934,4935,2147488203,4933,4934,4935,4936,[4353,4996],[4353,4619],4931,4932,4933,4934,4555,4936,[2424,3560,4937],2358,2427,2426,2357,2492,2426,2492,2360,2360,2422,2491,2421,2427,2426,2426,2427,2426,2426,2357,2358,2492,2426,2426,2422,2491,2492,[2360,3937],[2359,3938],[2357,3939],[2359,3940],[2358,3941],[2423,3942],2423,2359,2428,2424,2359,2357,2424,2427,2426,2426,2357,2358,[2360,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1832,3027],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,2957],[1832,2958],[1832,2961],[1832,2962],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,1040,915,1104,915,[916,13967],14034,14032,14098,14097,14096,14032,14800,14738,14096,14035,14033,14032,14099,14674,14674,[14674,13538],[14097,13539],[14098,13540],[14097,13541],14611,14035,14097,14032,14033,[14033,8378],[14098,8310],[14034,8313,13534],[14035,8310,13535],[14097,8313,13536],[14035,8314],[14097,8315],14099,[14099,8692,13538],[8628,13539],[14096,8564,13540],[14099,8565,13541],14673,[14035,14421],[14739,14422],[14097,14423],[14035,14424],[14097,14425],14426,[14098,14427],[14035,14428],[14673,14429],14430,[14099,8313,14431],[14675,8373],14033,[14096,13534],[13799,14100,13535],[13799,13536],13799,[13800,13968],14673,14675,[14674,14865],14738,14035,[14096,8443],[14033,8444],14674,[14034,13854],[14674,13855],[14034,13856],14032,14034,14738,14097,[13800,14100],13800,[13800,14159],[13736,14164],13800,[13799,13839],[13735,13840],[13800,13841],[13800,13842,13602],[13800,13843,13603],[13799,13907,13604],[13800,13605],[13799,8371,13606],[13799,8372],[13800,8373],13800,[13799,8378],[13800,13904,8313],[14738,8373],14098,14673,[14097,16757],[14737,8378,16758],[14035,8314],[14032,8315],14675,14675,14099,14096,[14674,8570],[14032,8634],8635,[14673,14542,8636],14801,14738,14675,14739,14035,14032,14033,14609,14033,[14739,8371],[14738,8372],[14674,8373],14096,14739,14035,14737,14098,14096,[14033,8563],[14033,8564],[14033,8565],14096,14673,14673,14034,14099,14096,[14739,13858],[14033,13859],[14098,13860],[14098,8507,13861],[14097,8508],14034,14097,[13800,14160],[13800,14164],13799,13800,[13800,13904],[14097,8563],[12908,8564],[12909,8630],[12909,8565],12909,12909,12909,12908,[12972,14049],[12972,14050],[12972,14051],[12908,14052],12972,12909,[13800,12715],[13799,12717],[13799,12718],13800,13799,[13799,8570],[13800,8571],[3182,8572],2778,[3182,14113],[12972,2588,14114],[12972,14115],[12909,14116],[13799,12780],13800,[13800,12843],12909,12909,12972,12972,[12909,14113],[12973,14114],[12908,14115],[12972,14116],12908,12908,12972,12973,12908,[13799,13038,8692],8693,8694,8695,8698,[12973,8758,16757],[12972,8759,16758],8693,[12973,8564],[12972,8630],[12973,8631],[12973,8565],12973,[12972,8371],[12909,8372],[12972,8373],[12973,13985],[12908,8378,13986],[12908,8314,13987],[13584,8315,13988],13648,13585,[13586,13133],[13584,13134],[13643,13393,13135],[13643,13394],[13643,13395],13648,13650,[13650,12743],12744,[13586,12745],[13586,12681],13586,13587,13586,13587,[13643,13712],[13643,13713],[13643,13714],[13643,13715],[13643,13712,12487,13133],[13650,12488,13134],[13586,12489,13135],13648,13586,13585,13584,[13585,13256],[13586,13257],[13650,13258],[13640,13652,13259],[13512,13260],13576,13512,[13640,13520],13651,13650,13651,13585,13585,[13512,13716],13577,[13641,13647],13650,[13650,12559],[13587,12560],[13643,13524],13643,[13643,13391],13650,13651,[13587,12686],[13648,12687],[13584,12688],13585,13648,13585,13649,13650,13648,13585,13650,[13650,12551,13128],[13650,12552,13129],[13586,13130],[13586,13131],[13587,13132],13651,13585,13649,13651,13649,13587,[13643,13458],13643,[13643,12551],[13584,12552],13650,13587,13586,13585,13651,13649,13585,13585,13648,13587,13648,[13648,13192],[13651,13193],[13643,13588,13194],[13643,13195],[13643,13196],[13643,13521],13587,[13584,12559],[13651,12560],13587,13650,13650,13650,13651,[13643,13652],13643,[13643,13456,13133],[13648,13134],[13585,3558,13135],[13584,3494],[2422,3495],2359,[2358,2613],[2359,2614],[2422,2615],[2360,2616],2360,2421,2423,2422,2359,2359,2360,2423,2358,2360,2357,2357,2424,2423,2422,2358,2364,[2360,3615],[2358,3616],2360,[2424,2234],[2424,2741],[2359,2742],[2360,2743],[2424,2744],2421,2423,2357,2357,2357,2357,2357,2422,[3701,2297],3700,[3700,2484],[3323,2487],[2358,3872],3873,[2422,3616,2805],[2424,2806],[2422,2807],[2424,2808],2360,2423,2424,2423,[2421,2549],[2359,2550],[2360,2551],2421,2357,2357,2357,2357,2359,[2360,4865],4866,[2357,4867],[2424,4870],[2360,4871],[2422,4872],[2422,8076],[2357,8073],[2422,8074],[2422,8075],4873,[2421,4874],[2421,2805],[2357,2806],[2357,2807],[2421,2808],2360,[2357,2345],[2360,2346],[2358,2347],2359,[2424,2741],[2359,2742],[2422,2743],[2424,2744],2422,2359,2358,[2359,2234],[2357,2613],[2422,2614],[3701,2231,2615],[3700,2616],3701,[3323,2484],2424,[2423,2677],[2359,2678],[2421,2679],[2358,2680],2359,2357,2421,2359,2423,[2358,2613],[2421,2614],[2359,2615],[2422,2616],2358,2421,2358,2424,[2360,3872],3873,3874,3875,[4882,3809],[4883,3812],[4947,3813],[4882,3814],3815,[2357,3816],2358,2358,2359,2421,2359,2360,[2358,3807],3873,3682,3878,[2360,3938],[2360,3939],3808,[4946,3809],[4883,3745],4883,4882,[4882,3170],[4947,3171],[4947,3172],4946,4946,4947,4947,[4947,4995],[4946,4996],[4883,4997],[4883,4998],[4353,4884,4999],[4353,2147488267],[4353,4751,4997],[4946,4998],[4883,4999],[4353,4754,5000],4353,[4353,2979],[4353,4995],[4353,4996],[4353,4997],[4353,4998],[4353,4616,4619],[4353,3623,5000],[2423,3624],2357,2424,2427,2358,2491,2360,2423,2426,2427,2428,2359,2427,2490,2428,2424,2423,2359,2424,2359,2422,2428,2428,2422,2427,2427,2422,2424,2360,2426,2421,2428,2423,2492,2357,2358,2358,2421,2428,2490,2426,2421,2490,2424,2357,[2359,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1832,3092],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3020],3021,3022,3025,3026,[1832,3027],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,916,1040,979,1104,[1104,14031],14098,14097,14098,14096,14034,14032,14738,14673,14097,14032,14099,14098,14673,14674,14096,[14674,13602],[14673,13603],[14099,13604],[14035,13605],[14035,13606],14032,14032,14034,14099,14035,[14034,13597],[14032,13598],[14097,13599],[14099,13600],[14099,8378,13601],[14098,8379],[14097,8380],[14033,13602],[14737,8692,13603],[8628,13604],[14096,8629,13605],[14097,8565,13606],[14739,14485],14486,14487,14488,14489,14490,14491,14492,14493,14494,[14674,14495],14098,[14032,13597],[14739,13598],[14739,13599],[13736,13844,13600],[13800,13601],13800,[13800,13903],14034,14097,14673,14738,[14032,8507],[14098,8508],14675,14033,14674,14097,14035,14739,14033,14098,[13799,13908],13799,13799,13735,13799,[13800,14095],14099,14675,[14737,13666],[14034,13667],[14098,13668],[13799,13841,13669],[13799,13842,8435,13670],[13800,13843,8436],[13799,13906,16693],[13800,16694],13799,[13799,13903],14096,14737,14032,14739,14673,[14098,8378],[14738,8379],[14096,8249],[14035,8315],14674,14674,[14034,8443],8698,[12300,8699],[14099,14606],[14737,14607],[14739,14543],[14099,14293],[14099,14865],14097,14674,14099,14099,14099,[14034,8499],[14098,8500],14098,14097,14097,14673,14033,14739,14737,[14609,8627],8628,[14032,8629],[14098,8565],14096,14673,14099,14035,14673,14033,[13800,14160],[13800,14161],[13799,14162,8378],[13800,14163,8314],[13799,14163,8315],[13800,13970],13799,13735,[13799,13904],[13800,13840],14096,[14034,8627],8628,8502,[12909,8564],[12973,8565],12973,12972,12973,[12973,14113],[12973,14114],[12972,14115],[12908,14116],12908,12908,12972,12973,12908,[13800,12715],[13799,12716,8570],[13800,12717,8634],8635,[3182,8636],3182,[12972,2460,14177],[12972,14178],[12909,14179],[12973,14180],12972,[13800,12781],13799,[13800,13033],12972,12973,12908,[12909,14177],[12972,14178],[12972,14179],[12972,14180],12909,12973,12973,12908,[13799,12845],13800,[13800,8692],[13800,12969,8758],[12972,8759],[12908,8762],12973,12973,[12973,8757],8628,8694,8695,[12973,8629],[12909,8565],[12973,8499],[12973,8500],12908,[12973,14049],[12908,14050],[12972,8378,14051],[12973,8379,14052],[13650,8380],13648,[13585,13197],[13586,13198],[13585,13199],13585,13650,13585,13648,13585,[13649,12808],12809,[13585,12552],13587,[13643,13714],[13643,13715],[13643,13522],13643,13643,13643,[13643,12487],[13584,12488,13197],[13585,12489,13198],[13650,13199],13650,[13513,13713],13586,13648,[13587,13320],[13648,13321],[13649,13322],[13587,13323],[13640,13392,13324],[13641,13396],13512,13641,[13512,13647],13587,13649,13648,[13641,13522],13641,[13512,13456],13651,13650,[13651,12623],[13584,12624],[13643,13588],13643,[13643,13455],13587,[13584,12686],[13585,12750],12751,[13651,12752],13651,13587,13585,13586,13650,13650,13649,13651,[13585,12615,13192],[13651,12616,13193],[13648,13194],[13584,13195],[13651,13196],13650,13649,13651,13649,13650,13584,13584,[13643,13392],[13393,12615],[13650,12616],13651,13648,13651,13648,13648,13648,13648,13584,13651,13651,13651,[13650,13256],[13584,13257],[13586,13258],[13643,13458,13259],[13643,13260],13643,[13643,13455],[13650,12623],[13587,12624],13648,13648,13648,13651,13650,[13643,13716],13643,[13643,13455,13197],[13586,13198],[13648,13199],[13586,3558],[13651,3559],[2357,3560],[2423,2677],[2421,2678],[2358,2679],[2423,2680],2360,2360,2358,2422,2358,[2357,1914],[2360,1915],[2423,1916],2422,2358,2423,2357,2424,2421,2358,2357,2358,[2421,3679],[2357,3680],2422,2360,[2424,2805],[2360,2806],[2421,2807],[2357,2808],2359,2423,2357,[2358,2300],2423,2360,2357,2421,[3323,2361],3636,3324,3701,[3323,2293],[3701,2487,3679],[3637,2488,3680,2869],[2423,2870],[2423,2871],[2358,2872],2421,2357,2424,2424,[2423,2613],[2357,2614],[2359,2615],[2358,2616],2358,2423,2358,2422,2421,2422,[2358,4930],4931,[2359,4934,2549],[2423,4935,2550],[2424,4936,2551],[2359,8140],[2357,8137],[2359,8138],[2421,8139],[2422,4937],2421,[2358,2869],[2423,2870],[2358,2871],[2422,2872],2423,[2357,2409],[2359,2410],[2421,2411],2424,[2422,2805],[2357,2806],[2357,2807],[2424,2808],2360,2422,2424,2422,[2357,2677],[2360,2678],[2421,2679],[3636,2169,2680],3637,3323,[3324,2420],[2357,2741],[2422,2742],[2422,2743],[2360,2744],2422,2423,2424,2357,2360,[2359,2677],[2360,2678],[2424,2679],[2423,2680],2359,2358,2360,2359,2421,[2359,3937],[2360,3938],[2422,3939],3873,3876,3877,3878,[2423,3879],2424,2359,2357,2360,2360,2424,2360,2422,[2423,3937],[2360,3940],[2421,3942],2421,2358,[2421,3872],3873,[4883,3616],4882,4882,[4946,3234],[4883,3235],[4946,3236],4947,4947,4883,4946,4946,4882,4883,4946,[4353,4948],4353,[4353,4815],4946,4883,4944,[4353,4688,3042],[4353,4754,3043],[4353,3044],4353,4353,[4353,4753],[4353,4754],[4353,3687],[2422,3688],2427,2426,2422,2357,2491,2423,2424,2426,2492,2359,2423,2423,2359,2424,2357,2424,2421,2421,2394,2359,2492,2358,2358,2358,2358,2426,2423,2491,2490,2358,2427,2492,2490,2357,2359,2490,2359,2423,2491,2428,2360,2358,2426,[2424,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1832,3156],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,2957],[1832,2958],[1832,2961],[1832,2958],[1832,2961],[1832,2962],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3083],3084,3085,0,0,3090,3091,[1832,2958],[1832,2961],[1832,2958],[1832,2962],1832,1832,1832,[1832,2957],[1832,2958],[1832,2961],[1832,2958],[1832,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,1104,1040,979,[1103,13904],14034,14096,14096,14034,14099,14097,14035,14035,14675,14675,14096,14673,14032,14098,14097,14099,[14739,13666],[14098,13667],[14673,13668],[14099,13669],[14032,13670],14033,14096,14032,14033,14096,[14034,13661],[14033,13662],[14035,13663],[14033,13664],[14099,13665],[14097,8443],[14034,8444],[14034,13666],[14099,13667],[14738,8692,13668],[8693,13669],[14097,8436,13670],[14737,14549],14550,14551,14552,14553,14554,14555,14556,14557,14558,[14738,14559],[14097,14560],[14099,13661],[14673,13662],[14738,13663],[14674,13664],[13799,13907,13665],13799,[13799,13967],14675,14675,14035,[14673,8570],[14611,8571],[14675,8572],14096,14737,14098,14674,14737,[14673,9842],[14674,9843],[14099,9844],[13800,13972],13800,[13736,13839],[13799,13841],[13800,13843],14674,14739,14098,[14096,13730],[14673,13731],[14035,13732],[14673,13733],[14032,8499,13734],[13800,14162,8500],[14096,16757],[13800,13844,16758],13799,[13800,14031],14098,14033,14034,14673,14801,14033,[14739,8378,13534],[14098,8313,13535],[14737,8379,13536],[14674,8380],14032,[14096,8507],[12300,8508],12302,12300,[12300,13159],12300,[14096,14606],[14035,14607],[14033,14607],[14097,14607],[14675,14607],[14674,14543],[14033,14293,8308],[14673,8309],[14675,8373],14675,14674,14738,14099,14739,14032,14033,14675,[14673,8692,16697],8693,[14097,8436],14738,14034,14096,14739,14033,[13799,14164],13800,13799,13736,[13800,8378],[13799,8379],[13800,8380],[13800,13904],[13735,13840],14032,14098,14739,14737,[14035,8692],[14098,8758],8628,[12973,8629],[12973,8565],12972,12972,[12972,14177],[12973,14178],[12973,14179],[12972,14180],12972,12909,12908,12909,12972,12972,[12973,8443],8698,[3182,8699],[13800,2460],[13799,2461],[13799,12842,14241],[13800,13035,14242],[13800,13036,14243],[13800,13037,14244],12972,[13799,12974],13799,13735,[13800,12842],12909,12972,12972,[12909,14242],[12973,2842,14243],[12909,2653,14244],[12973,2653],[12909,2653],[12973,2589],[13799,12974,2843],13799,[13735,12778],[13799,12714],12973,12973,12908,[12909,13921],[12909,13922],[12973,13923],[12909,8692,13924],[12972,8758],[12908,8759],8693,[12973,8436],[12973,8435],[12908,8436],12908,[12909,14113],[12908,14114],[12973,14115],[12972,8443,14116],[13648,8444],13651,[13650,13261],[13651,13262],[13649,13263],13648,13649,13648,13587,13587,13584,[13650,12551],[13651,12616],[13643,13522],13643,13643,[13643,13457],[13643,13392],[13643,13393],[13643,13394],[13395,12551],[13651,12552,13261],[13651,13262],[13587,13263],[13640,13460],13640,[13576,13711],13584,[13651,13384],[13585,13385],[13648,13386],[13649,13387],[13585,13388],[13641,13716],13641,13640,[13512,13711],[13512,13712],[13640,13715],[13512,13716],13640,13641,[13640,13647],13649,13587,[13586,12494],[13586,12430],[13643,13652,12431],13643,[13643,13519],13585,[13649,12559],12814,[13649,12815],13584,13584,13650,13584,13587,13649,13651,13649,[13650,12424],[13650,12425,13256],[13584,12489,13257],[13585,13258],[13584,13259],[13651,13260],13587,13585,13649,13648,13584,13651,13650,13651,[13648,12679],[13587,12680],[13651,12681],13648,13584,13586,13651,13587,13585,13586,13651,13648,13585,[13586,13320],[13587,13321],[13584,13322],[13587,13323],[13643,13396,13324],13643,[13643,13583],[13584,12559],[13651,12560],13585,13648,13585,13585,[13643,13460],13643,13643,[13643,13519,13261],[13651,13262],[13651,13263],13651,[13648,3623],[2422,3624],[2423,2741],[2360,2742],[2423,2743],[2359,2744],2364,2421,2424,2358,2357,[2422,1978],[2424,1979],[2359,1980],2358,2422,2360,2360,2360,2360,2360,2359,2424,[2358,3615],[2422,3616],2358,2422,[2360,2869],[2421,2870],[2423,2871],[2421,2872],2358,2424,2357,2359,2424,2359,2422,2423,2422,[3387,2166,2549],[3637,2167,2550],[3637,2168,2551],[3635,2231],[3636,3743],[3323,3744],[3636,2420,3745],2360,2422,2424,2421,2358,2421,[2360,2677],[2358,2678],[2424,2679],[2360,2680],2421,2424,2422,2360,2357,2424,2421,[2357,4995],[2359,4998,2613],[2358,4999,2614],[2357,5000,2615],[2681,2616],2682,2423,2358,2360,2423,2357,2421,2421,2423,2360,[3636,2488,2473],[2357,2474],[2358,2475],2357,[2421,2869],[2423,2870],[2422,2871],[2358,2872],2422,2359,2359,2359,[2423,2741],[2357,2742],[2423,2743],[3637,2233,2744],3635,[3699,2229],2360,[2357,2805],[2359,2806],[2358,2807],[2359,2808],2359,2357,2358,2358,2359,[2424,2741],[2424,2742],[2358,2743],[2360,2744],2359,2424,2359,2357,2358,2423,2357,2422,[2424,3937],[2423,3940],[2360,3941],[2358,3942],2360,2358,[2360,2549],[2424,2550],[2357,2551],2423,2424,2421,2422,2358,2358,2360,2360,2359,2360,[2359,3679],[4947,3680],4947,4946,4883,[4882,3299],4883,4946,4946,4946,4947,4946,4880,[4353,5008],[4353,5009],[4353,4818],4353,[4353,4879],4946,4883,4946,[4946,3106],[4944,3107],[4353,4689,3108],[4353,4690],[4353,4691],4945,4944,[4353,4688,3623],[2360,3624],2359,2428,2424,2428,2428,2427,2358,2357,2423,2358,2421,2492,2360,2424,2490,2359,2357,2357,2359,2357,2421,2426,2428,2423,2423,2421,2427,2421,2423,2424,2426,2422,2422,2358,2421,2426,2426,2360,2491,2427,2492,2492,[2421,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1832,3220],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3020],3021,3022,3025,3022,3025,3026,[1832,3092],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,2957],[1832,2958],[1832,2961],[1832,2962],1832,1832,1832,1832,1832,1832,1832,[1832,3147],3148,0,0,0,0,3090,3022,3025,3022,3026,[1832,3027],1832,[1832,3020],3021,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,1103,1040,[980,13903],14097,14033,14032,14099,14034,14098,14098,14674,14096,[14035,13534],[14675,13535],[14034,14033,13536],14097,14035,14738,14032,[14097,13730],[14033,13731],[14675,13732],[14099,13733],[14033,13734],14098,14032,14033,14035,14096,[14099,13725],[14034,13726],[14033,13727],[14035,13728],[14097,13729],[14033,8507],[14035,8508],[14098,13730],[14099,13731],[14032,13732],[14673,8499,13733],[14737,8500,13734],[14033,14613],14614,14615,14616,14617,14618,14619,14620,14621,14622,[14675,14623],[14738,14624],[14034,13725],[14674,13726],[14673,13727],[14739,13728],[13800,13908,13729],13800,[13799,14031],14675,14098,[14739,8570],[14096,8571],8635,[14097,8636],14096,14033,14099,14674,14674,[14034,9906],[14099,9907],[14097,9908],[13800,14036],13800,[13736,14159],14674,14674,14033,14675,14675,[14034,13794],[14738,13795],[14099,13796],[14098,13797],[13799,14164,8563],[13799,8564],[13800,13969,8630],[13799,13971,8631],[13799,8565],[13800,14159],[13799,14160],14034,14098,14674,14739,[14674,13597],[14674,13598],[14737,13599],[14099,8443,13600],[14098,8444,13601],14097,[14099,8378],[14097,8314],[12300,8315],12300,12300,12300,12300,12300,12300,12300,12301,[12300,8371],[14099,8372],[14099,8373,16697],14034,[14098,13534],[14739,13535],[14675,13536],14098,14737,14033,14737,14739,[14675,16761],[14739,8499],[14034,8500],14675,14033,14033,14035,[13800,13970],13799,13800,[13800,13839],[13800,13840,16693],[13799,13841,16694],[13800,13842,8507],[13800,13843,8508],14673,14673,14738,14737,14738,14096,14035,14098,[14098,8692,16697],8693,[12973,8436],12973,12973,[12908,14241],[12972,14242],[12973,14243],[12972,14244],12908,12973,12909,12909,12972,12909,[12909,8443],[3182,8444],2714,[13799,12780,2524],13736,13800,13799,13800,13800,[13800,12969],12972,[13799,12780],13800,13736,[13800,12969],[12909,2842],[12908,2525],[12908,2653],[12909,2654],3182,[12973,2460],[12972,2462,8245],[3182,8246],[13799,13038,8249],[13800,8250],[13735,12969],12908,12973,12909,12908,[12973,13985],[12972,13986],[12909,13987],[12973,13988],12973,12908,[12908,8435],[12909,8436],[12973,8499],[12908,8500],12973,[12908,14177],[12972,14178],[12973,14179],[12909,8507,14180],[13650,8508],13587,[13651,13325],[13586,13326],[13650,13327],13587,13586,13651,13586,13587,13651,[13649,12679],[13643,13460,12680],[13643,12681],13643,[13643,13456],13584,13587,13648,13587,[13587,12615],[13649,12616,13325],[13587,13326],[13648,13327],[13641,13588],13512,13640,[13640,13520],[13640,13712],[13512,13713,13449],[13576,13714,13450],[13640,13715,13451],[13640,13522],13640,13577,13577,13576,13640,13640,13641,[13640,13391],[13512,13392],13648,13587,[13649,13133],[13587,13134],[13651,12494,13135],[13649,12495],[13643,12496],[13643,13583],13650,[13585,12623],[13650,12624],13649,13586,13584,13585,13650,13648,13586,13585,[13649,12487],[13585,12488],[13586,12489,13320],[13651,13321],[13651,13322],[13586,13323],[13650,13324],13648,13650,13651,13587,13648,13586,13584,13585,[13585,12743],12744,[13587,12745],[13584,12681],[13643,13713],[13643,13714],[13643,13715],[13643,13522],[13643,13455],13651,13586,13586,13651,[13649,13384],[13587,13385],[13651,13386],[13651,13387],[13643,13652,13388],13643,[13643,13520],[13651,12623],[13584,12624],13650,13585,13651,13586,[13643,13588],13643,13643,[13643,13583,13325],[13585,13326],[13651,13327],13650,[13651,3687],[2359,3688],[2424,2805],[2357,2806],[2424,2807],[2421,2808],2358,2360,2422,2360,2359,[2360,2042],[2357,2043],[2423,2044],2423,2357,2421,2421,2422,2422,2358,2358,2422,[2358,3679],[2422,3680],2423,2357,2424,2421,2424,2359,2421,2424,2422,2424,2423,2424,2421,2423,2358,[2358,2613],[2359,2614],[2422,2615],[2424,2842,2616],[2525,3807],3808,[3635,2420,3809],[2358,3745],2359,2359,2359,2422,2360,[2424,2741],[2424,2742],[2423,2743],[2421,2744],2421,2421,2359,2357,2421,2357,2423,2359,[2422,2677],[2422,2678],[2360,2679],[2745,2680],2746,2357,2360,2424,2422,2424,2422,2423,[2359,2665],[3388,2233],[3323,2537],[3699,2293,2538],2359,2424,2422,2422,2360,2358,2423,2424,2358,2358,[2423,2805],[2357,2806],[2358,2807],[3699,2361,2808],3637,[3637,2420],2358,[2424,2869],[2359,2870],[2358,2871],[2357,2872],2357,2358,2357,2423,2358,[2357,2805],[2423,2806],[2360,2807],[2422,2808],2421,2358,2357,2422,2357,2423,2358,2358,2422,2360,2423,2421,2357,2422,[2359,2613],[2422,2614],[2423,2615],[2360,2616],2424,2424,2358,2422,2359,2421,2424,2421,2422,[2358,3743],[4882,3744],[4947,3745],4946,4883,[4947,3750],[4882,3810],[4882,3811],[4946,3745],4880,[4353,5008],[4353,5009],[4353,4818],4353,4353,4353,[4353,4753],4945,4946,4947,4883,[4883,3170],[4883,3171],[4947,3172],4947,4947,4883,4947,[4882,3687],[2423,3688],2428,2421,2357,2492,2424,2491,2492,2357,2423,2491,2363,2359,2428,2360,2427,2492,2426,2358,2423,2357,2422,2358,2422,2491,2492,2492,2422,2426,2492,2426,2490,2357,2360,2491,2490,2428,2423,2421,2490,2428,2490,2359,[2422,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1832,3156],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,2957],[1832,2958],[1832,2961],[1832,2962],1832,1832,1832,1832,1832,1832,1832,[1832,3083],3084,3085,0,0,0,0,3155,[1832,3156],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3020],3021,3022,3025,3026,[1832,3027],1832,1832,1832,1832,1832,1832,[1832,3211],3212,0,0,0,0,0,0,0,0,3090,3091,[1832,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,980,1103,915,[979,13967],14035,14098,14097,14099,14096,14033,14098,14096,[14739,13597],[14034,13598],[14673,13599],[14098,14032,13600],[14098,13601],14800,14738,14738,[14099,13794],[14033,13795],[14675,13796],[14096,13797],14033,14096,14098,14032,14099,14032,[14035,13789],[14035,13790],[14034,13791],[14099,13792],[14035,13793],[14034,8443],[14034,8444],[14675,13794],[14035,13795],[14674,13796],[14801,8435,13797],[14737,8436],[14034,14677],14678,14679,14680,14681,14682,14683,14684,14685,14686,[14033,14687],[14737,14688],[14737,13789],[14673,13790],[14034,13791],[14035,13792],[13799,13972,13793],13799,[13799,14159],14032,[14035,8570],[14097,8634],8635,[14674,8699],14035,14098,14033,14034,14033,[14674,8245],[14737,8246],[14739,8249],[14034,8250],[13800,14100],13800,13800,[13799,13969],14673,14739,14097,14098,[14673,13858],[14099,13859],[13799,14162,13860],[13799,13970,13861],[13799,8627],8628,8694,8695,[13799,8564],[13799,8565],13800,[13799,13968],[13800,14160],14675,14097,[14098,13661],[14675,13662],[14098,13663],[14096,8507,13664],[14034,8508,13665],14674,14098,[14032,8378],[14035,8379],[12300,8249],[12300,8250],12301,[14032,14414],[14675,14415],[14739,14415],[14675,14415],[14032,14415],[14099,8435],[14675,8436],[14034,16761],[14674,13597],[14738,13598],[14032,13599],[14035,13600],[14675,13601],14033,14737,14098,14035,[14739,8308],[14674,8309],[14097,8373],14674,14674,14035,[13799,13908],13735,13800,13736,[13800,13969],[14099,16757],[14675,8570,16758],[14097,8571],[14097,8572],14034,14674,14673,14737,14098,14738,14099,14033,[14034,16761],[14033,8499],[12973,8500],12973,12909,12972,12909,12973,12972,12972,12973,12973,12972,12972,12909,[12909,8507],[3182,8508],3182,[12908,2588],[13735,12714],[13799,12780],13800,[13800,12713],[13800,12780],[13800,13033],12908,12908,[13800,12718],13799,[13800,12842],[13800,13035,2526],3182,3182,[12973,2460],[13800,13036,2461],[13799,13037,8371],[13799,12845,8372],[13799,8310],[13800,8313],[13799,12713,8314],[12972,8315],12973,12909,12909,12973,[12909,14049],[12909,14050],[12973,14051],[12908,14052],12908,12973,[12973,8499],[12909,8500],[12972,8435],[12909,8436],12973,[12972,14241],[12972,14242],[12973,8570,14243],[12972,8571,14244],[13648,8572],13650,13650,13587,13650,13584,13587,13648,13651,13649,13586,[13650,12743],12744,[13643,12745],[13643,13392,12681],13586,13587,13585,13648,13585,[13649,12679],[13585,12680],[13585,12681],13587,13649,[13640,13458],13640,13513,13640,13640,13640,13641,13512,13640,13512,13641,13641,13641,13641,13640,[13512,13455],13651,13584,13585,[13586,13197],[13586,13198],[13650,13199],[13584,12559],[13586,12560],13650,13648,[13651,12559],[13587,12560],13651,13648,13649,13648,13650,13650,13584,[13643,13715],[13650,12551],[13648,12552],[13585,13384],[13584,13385],[13587,13386],[13584,13387],[13587,13388],13585,13584,13648,[13643,13712],[13643,13713],[13643,13714],[13643,13715],13649,13584,[13651,12808],12809,[13643,13522,12552],13643,13643,13643,13643,[13643,13583],13587,13585,13648,13648,13651,[13651,13449],[13586,13450],[13651,13451],13648,[13643,13458],[13643,12686],[13643,13647,12687],[13587,12688],13648,13651,13584,13586,13650,[13643,13396],13643,[13643,13647],13584,13587,[13650,3750],[13585,3751],[2359,3752],[2360,2869],[2359,2870],[2422,2871],[2359,2872],2424,2424,2421,2423,2357,[2424,2106],[2424,2107],[2422,2108],2424,2424,2422,2358,2421,2360,2360,2424,[2359,3488],[2360,3489],[2358,3553,2549],[2357,2550],[2421,2551],2422,2424,2423,2357,2422,[2422,2549],[2358,2550],[2360,2551],2424,2424,2357,2358,2359,[2360,2677],[2422,2678],[2424,2679],[2360,2526,2680],3182,[3182,3872],3873,[2424,3616],2358,2421,2424,2360,2423,[2422,2805],[2357,2806],[2358,2807],[2359,2808],2423,2422,2424,2421,2422,2360,2422,2362,[2359,2741],[2421,2742],[2422,2743],[2422,2744],2358,2424,2421,2357,2359,2422,2421,2359,[2360,2729],[3636,2361],3636,3699,[3699,2228],2360,2424,2421,2357,2357,2359,2423,2423,2357,[2357,2869],[2423,2870],[3636,2488,2871],[3701,2489,2872],[3637,2164],2358,2424,2422,2422,2422,2421,2424,2357,2423,2424,2359,[2424,2869],[2360,2870],[2421,2871],[2357,2872],2422,2359,2422,2358,2357,2357,2424,2358,2423,2358,2360,2424,2357,2421,[2421,2677],[2357,2678],[2421,2679],[2358,2680],2423,2423,2359,2360,2424,2421,2359,2357,2359,[2359,3807],3808,[4947,3809],[4883,3812],[4947,3813],[4883,3814],3874,3875,[4947,3744],[4353,4818,3745],4353,4353,4353,4353,[4353,4753],[4353,4688],4945,4882,4946,4946,4883,[4883,3234],[4947,3235],[4882,3236],4883,4882,4947,4946,[4883,3558],[4882,3559],[2357,3560],2422,2424,2357,2428,2422,2362,2360,2424,2492,2426,2359,2422,2426,2360,2359,2428,2423,2424,2359,2358,2492,2423,2427,2492,2360,2360,2424,2427,2423,2492,2423,2357,2492,2357,2426,2492,2426,2360,2360,2364,2427,[2424,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1832,3220],1832,1832,1832,1832,1832,1832,[1832,2957],[1832,2958],[1832,2961],[1832,2962],1832,[1832,3020],3021,3022,3025,3026,[1832,3092],1832,1832,1832,1832,1832,1832,[1832,3147],3148,0,0,0,0,0,3219,[1832,3220],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3083],3084,3085,0,0,3090,3091,[1832,2958],[1832,2961],[1832,2962],1832,1832,[1832,3020],3021,3085,0,0,0,0,0,0,0,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,1103,1103,1104,[1039,14031],14099,14034,14034,14096,14035,14035,14096,14035,[14096,13661],[14033,13662],[14738,13663],[14034,14674,13664],[14035,13665],14035,14673,14097,[14033,13858],[14675,13859],[14034,13860],[14034,13861],14034,14097,14099,14034,14034,14096,14034,[14032,13854],[14096,13855],[14034,13856],14033,[14034,8507],[14032,8508],[14032,13858],[14097,13859],[14674,8308,13860],[14099,8309,13861],[14032,8373],[14034,14741],14742,14743,14744,14745,14746,14747,14748,14749,14750,[14674,14751],[14674,14752],14034,[14673,13854],[14673,13855],[14737,13856],[13799,14036],13799,13799,[13799,14095],[14034,8443],8698,[14097,8699],14033,14675,14096,14097,14800,[14609,8371],[14032,8372],[14096,8310],[14032,8313],[14675,8314],[14033,8246],[13800,13844,8249],[13800,8246],[13800,8249],[13800,13968,8380],14738,14674,14032,14033,[13800,13970],13799,13799,[13735,13904],[13799,13841,8692,16697],[13799,13843,8758],[13800,13844,8759],8628,[13800,8629],[13799,8565,16693],[13800,16694],13799,[13800,14159],[13800,14162],[14097,13725],[14097,13726],[14739,13727],[14033,8378,13728],[14032,8314,13729],[14675,8315],[13800,14160],14739,[14675,8378],[13800,14099,8313],[14739,8314],[14032,14414,8315],14098,[14738,9842],[14674,9843],[14674,9844],14034,[14035,8499],[14737,8500],14739,[14738,13661],[14099,13662],[14097,13663],[14033,13664],[14096,13665],14097,[14099,8245],[14098,8246],[14609,8249],[14096,8372],[14032,8373],14737,14738,14739,14096,[13800,13972],13799,13799,[13799,8570],[13799,13904,8630],[14097,8631],[14032,8634],8635,[14674,8636],14096,14096,14801,14034,14099,14674,14034,14097,[14096,8371],[12908,8372],[12908,8373],12909,12972,12909,12973,12973,12908,12909,12972,12908,12908,12972,12972,[12909,8378],[12972,8314],[3182,8315],[12908,2524],12973,12972,[13799,12714],12909,[13736,12974],13800,[13799,12843],[13799,13037],[13799,13038],13799,13799,[13800,2590],2778,3182,[13800,12844,2588],13799,[13799,8435],[13799,8436],13799,[13799,12778,16693],[12909,8378,16694],[12973,8379],[12973,8380],12909,12972,12909,[12973,14113],[12973,14114],[12973,14115],[12972,14116],12909,[12908,8308],[12972,8309],[12972,8373],[12908,8499],[12909,8500],12908,12972,[12908,8570],[12973,8634],8635,[13584,8636],13651,13586,13584,13584,13585,13650,13586,13586,13586,13648,13648,[13650,12808],12809,[13649,12552],13586,13651,13651,13649,13587,[13586,12743],12744,[13651,12745],[13586,12681],13586,13586,[13641,13392],[13512,13393],[13641,13394],[13512,13395],[13641,13458],13640,13512,13512,13640,13641,13577,13641,13641,13512,[13640,13583],13584,13587,13649,[13584,13261],[13650,13262],[13585,13263],[13587,12623],[13587,12624],13650,13651,[13585,12623],[13585,12624],13651,13650,13649,13584,13587,13649,[13643,13652],13643,[13643,12615],[13584,12616],13587,[13584,13449],[13587,13450],[13649,13451],13584,13650,13585,[13643,13652],13643,13643,13643,13643,[13643,13521],13587,13648,[13585,12551],[13643,12616],[13643,13456],[13643,13393],[13643,13394],[13643,13395],13650,13587,13587,13585,13587,13650,13587,13586,[13587,12686],[13650,12746],[13643,13652,12747],[13643,12750],12751,[13643,13715,12752],13651,13585,13651,13650,13650,[13643,13652],13643,[13643,13520,3750],[13649,3812],[13586,3813],[13587,3814],3815,[2360,3816],2423,2358,2421,2424,2421,2421,2357,2359,[2424,4808],[2357,4868],[2359,4869],[2358,4803],2423,2423,2424,2683,2684,2358,2359,[2423,3551],[2422,3552],[2423,3553],[2358,2613],[2424,2614],[2360,2615],[2422,2616],2357,2357,2358,2359,[2358,2613],[2423,2614],[2423,2615],[2358,2616],2357,2423,2357,2357,[2358,2741],[2360,2742],[2359,2743],[2424,2590,2744],2778,3182,[3182,3679],[3324,2420,3680],2359,2358,2422,2360,2424,[2421,2869],[2357,2870],[2422,2871],[2423,2872],2360,2421,2360,2423,2360,2422,2423,2424,[2358,2805],[2423,2806],[2423,2807],[2422,2808],2423,2360,[2359,2549],[2359,2550],[2421,2551],2357,2357,2360,2422,2360,[3388,2169],3637,[3701,2292],[2359,2665],2421,2357,2360,2359,2359,2424,2360,2360,2421,[3323,2233],3701,3636,[3324,2228],2357,2423,2424,2423,2421,2681,2682,2360,2423,2359,2422,2359,2424,2359,2421,2358,2359,2422,2423,2421,2359,2423,2358,2357,2357,2357,2423,2357,2423,[2421,2741],[2357,2742],[2421,2743],[2422,2744],2358,2422,2360,2681,2682,2422,2421,2422,2358,2422,[2358,3872],3873,3876,3877,3878,[2358,3938],[2360,3939],3808,[4353,4753,3809],[4353,4688,3745],[4353,4689],[4353,4690],[4353,4691],4945,[4883,2979],4882,4883,4947,4947,4947,4882,[4947,3299],4947,4882,4946,4947,4882,4947,[4946,3623],[2424,3624],2491,2426,2426,2426,2426,2490,2491,2423,2427,2357,2423,2357,2394,2424,2360,2426,2426,2358,2424,2358,2427,2359,2421,2492,2362,2357,2421,2424,2426,2428,2423,2427,2427,2491,2424,2491,2423,2360,2422,2358,2426,[2422,3743],3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1832,3027],1832,1832,1832,1832,[1832,3020],3021,3022,3025,3026,[1832,2958],3084,3085,0,0,3155,[1832,3156],1832,1832,1832,1832,1832,1832,[1832,3211],3212,0,0,0,0,0,3090,3026,[1832,3027],1832,1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3147],3148,0,0,0,0,3090,3022,3025,3026,[1832,2958],[1832,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,980,915,916,[916,14095],14035,14032,14096,14098,14097,14098,14097,14033,[14035,13725],[14034,13726],[14034,13727],[14098,14737,13728],[14035,13729],14098,14675,14096,14675,14737,14739,14098,14032,14033,14034,14800,14099,14099,14801,14096,14034,14098,[14032,8570],[14035,8571],[14098,8572],14097,14737,[14099,8435],[14096,8436],14032,[14609,14805],[14034,14806],14807,14808,14809,14810,14811,14812,14813,14814,[14032,14815],[14674,14816],14033,14035,14739,14737,[13799,14100],13800,[13800,13904],14034,[14096,8443],[14099,8444],[14096,15309],[14099,15310],[14675,15311],14739,14096,14035,[14035,8499],[14674,8500],14738,14034,[14034,8378,13538],[14034,8310,13539],[14032,8313,13540],[13800,13906,8310,13541],[13799,8313],[13800,8379],[13800,14095,8380],14033,[13800,14163],[13800,14164],13800,[13800,13839],[13800,13840],14737,[14035,16761],[14673,14292],[14033,14479],[13800,13907,14223,8692],8693,[13800,13840,8436,16757],[13800,13844,16758],13800,13800,13799,[13799,13968,13789],[14099,13790],[14032,13791],[14032,13792],[14801,8378,13793],[13799,13970,8379],[13799,8380],[13800,14095],14675,14035,[14738,8378],[14035,8379],[14034,8250],[14738,9906],[14032,9907],[14739,9908],[14737,8308],[14097,8309],[14035,8373],14675,[14033,13725],[14035,13726],[14739,13727],[14033,13728],[14098,13729],[14033,8371],[14032,8372,16693],[14674,8310,16694],[14674,8313],[14739,8373],14099,14738,14737,14098,14673,[13799,14036],13799,[13800,13904,8570],[13799,13840,8571],8694,8695,8698,[14737,8699],14739,14032,14033,14099,14099,14097,14035,14673,14673,[14098,8435],[12909,8436],12973,12973,12973,12973,12909,12973,12908,12909,[12908,13921],[12973,13922],[12908,13923],[12908,13924],12908,[12972,16693],[12973,8378,16694],[12973,8379],[12972,2588,8380],12909,12972,12972,12909,12973,[13799,12780,8245],[13800,8246],[13800,8249],[13800,8246],[13799,12713,8249],[13800,12780,2653,8250],[13800,2654],3182,[13799,2460],13800,[13800,12778],[13799,12714,8499],[13799,12715,8500],[13799,12717],[12909,16757],[12973,16758],[12972,8443],[12909,8444],12908,12973,12908,[12973,14177],[12973,14178],[12908,14179],[12973,14180],[12909,8308],[12908,8309],[12972,8373],[12908,8308],[12972,8309],[12972,8373],12908,12908,[12973,8443],8698,[13586,8699],13651,13650,13649,13649,13651,13585,13584,13650,13584,13651,13651,13648,13650,[13586,12551],[13648,12616],13584,13651,13585,13586,13650,13584,[13649,12808],12809,[13587,12552],13585,13651,13650,13651,13650,13648,13650,[13641,13392],[13641,13393],[13640,13395],[13576,13458],13641,13512,13640,13640,13640,[13576,13647],13650,13649,13585,[13587,13325],[13584,13326],[13648,12686,13327],[13587,12687],[13587,12688],13648,13650,[13586,12494],[13585,12430],[13649,12431],13584,[13643,13712],[13643,13713],[13643,13714],[13643,13715],[13643,13522],13643,[13643,12679],[13650,12680],[13585,12681],13649,13587,13651,13651,13584,13651,13587,[13643,13393],[13643,13394],[13643,13395],[13643,13458],13643,[13643,13647],13650,[13650,12551],[13643,13392,12552],13651,13586,13587,13650,13651,13650,13650,13651,13586,13585,13651,[13585,12686],[13584,12687],12810,12811,12814,[13643,12815],13643,[13643,13455],13651,13585,13648,13587,13651,[13643,13459,3750],[13643,3751],3876,3877,3878,[2357,3879],2357,2360,2357,2358,2358,2424,2360,2358,[2357,4808],[2423,4809],4932,4933,[2424,4867],[2421,4868],[2359,4869],[2357,4803],2747,2748,2424,2422,[2360,3615],[2360,3616],2357,[2357,2677],[2357,2678],[2360,2679],[2358,2680],2424,2358,2359,2358,[2421,2677],[2424,2678],[2424,2679],[2424,2680],2422,2423,2360,2357,[2421,2805],[2424,2806],[2421,2807],[2421,2526,2808],3182,[3182,3488],[3700,3489],[3387,2293,3553],2359,2422,2422,2424,2424,2359,2424,2357,2357,2424,2424,2421,2424,2357,2424,2357,2360,[2359,2869],[2358,2870],[2357,2871],[2358,2872],2422,2424,[2357,2613],[2357,2614],[2357,2615],[2424,2616],2360,2360,2357,2421,[3700,2295],[3636,2549],[3323,2356,2550],[2424,2551,2729],2360,2421,2421,2421,2424,2423,2358,2357,2360,[3700,2297],3701,3323,[3701,2292],2423,2421,2359,2421,2357,2745,2746,2360,2423,2357,2422,2359,2360,2360,2357,2357,2360,2423,2360,2424,2357,2357,2422,2421,2423,2358,2359,2421,2359,[2421,2805],[2422,2806],[2358,2807],[2359,2808],2424,2360,2423,2745,2746,2360,2424,2358,2421,2421,2423,[2424,3937],[2360,3940],[2424,3941],[2421,3942],2360,2357,[2357,3872],3873,[4946,3616],4947,4947,4883,[4947,3042],[4883,3043],[4882,3044],4947,4947,4882,4883,4882,4883,4946,4946,4883,4882,4947,4882,[4883,3687],[2357,3688],2421,2426,2491,2359,2359,2358,2358,2423,2428,2423,2426,2422,2360,2362,2490,2357,2491,2490,2424,2357,2492,2490,2359,2421,2428,2359,2424,2359,2357,2421,2492,2421,2357,2492,2426,2357,2427,2424,2427,2357,2357,[2360,3807],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1832,2958],[1832,2961],[1832,2958],[1832,2961],3084,3085,0,0,3090,3022,3085,0,0,0,3219,[1832,3220],1832,1832,1832,1832,1832,[1832,3020],3021,3085,0,0,0,0,0,0,3090,3026,[1832,3027],1832,1832,1832,1832,1832,1832,1832,1832,1832,[1832,3211],3212,0,0,0,0,0,0,0,3090,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,979,1103,1040,[1104,14159],14032,14099,14099,14099,14096,14035,14034,14099,[14737,13789],[14737,13790],[14032,13791],[14035,14033,13792],[14035,13793],14674,14033,14032,14099,[14674,13534],[14675,13535],[14032,13536],14099,14099,14035,14034,14034,14035,14034,14034,14033,14098,[14032,8507],8635,[14035,8636,16697],14674,14673,[14032,8563],[14673,8564],[14034,8565],14098,[14099,14870],[14035,14871],[14675,14872],[14096,14873],14874,[13800,14161,14875],[14032,14876],[14675,14877],14878,[14098,14879],[14034,14880],14673,14675,[14098,14283],[14674,14284],[13800,13908],13799,[13799,13968],14800,[14097,8507],[14097,8508],[14675,15373],15374,[14096,15375],14099,14033,[14097,8308],[14737,8309],[14097,8373],14739,14097,[14675,13602],[14035,13603],[14033,13604],[14097,13605],[13735,13844,13606],[13799,8443],[13800,14159,8444],[13800,13970],13799,13800,13800,[13800,14095],14675,14099,14032,[14098,14544],12301,12300,[12300,8499],[14096,8500],14675,[13799,13840],[13799,13906],13800,13800,[13799,14159,13854],[13800,14164,13855],[13800,13969,13856],[13800,13970],[13799,8443],[13735,8444],[13799,13968],[13736,14160],14739,14738,[14674,8378],[14674,8314],[14673,8249],[14673,8246],[14097,8249],[14098,8372],[14739,8373],14675,14097,[14034,13789],[14034,13790],[14739,13791],[14737,13792],[14674,13793],[14097,8435],[14673,8436,16757],[14097,16758],14099,14033,14032,14097,14674,[13800,14160],[13800,14161],[13800,14164],[13799,8570],[13800,14095,8634],[8635,13534],[14032,8758,13535],[14033,8759,13536],[14033,8762],14675,14097,14739,14033,14738,14739,14097,14033,14739,14098,[14099,8499],[12908,8500],12909,[12908,13921],[12973,13922],[12972,13923],[12908,13924],12973,12972,12973,[12972,13985],[12909,13986],[12973,13987],[12909,13988],12908,[12908,16757],[12972,16758],[12973,8443],[12908,8444],12972,12909,12909,12908,[13799,13037,8308],[13800,13038,8309],[13800,12778,8310,16693],[13735,12718,8313,16694],[13799,8310],[13799,12777,8313],[12973,8314],[13800,12781,2460,8315],[13800,2461],13799,13799,[13800,13033,8308],[12972,8309],[12909,8373],12972,12972,12973,[12973,8507],[12972,8508],12908,12972,12908,12973,[12908,8245,14242],[12972,8246,14243],[12909,8249,14244],[12908,8372],[12908,8373],[12973,8371],[12909,8372],[12973,8373,13921],[12972,13922],[12972,13923],[12909,13924],[12908,8443],[13587,8444],13585,13586,13585,13586,13650,13585,13649,[13643,13712],[13643,13713],[13643,13714],[13643,13715],[13643,13714],[13643,13715],[13649,12424],[13585,12425],[13649,12489],13585,13649,13584,13587,13586,13586,13584,[13648,12551],[13650,12616],13584,13587,13585,13584,13587,13587,13585,13585,13648,13651,13651,[13641,13392],[13577,13396],13577,[13641,13391],[13641,13392],13586,13586,13649,13651,13585,[13650,12686],[13650,12750],12751,[13650,12752],13651,13585,13585,[13643,13652,12494],[13643,12495],[13643,13523,12496],13643,13643,13643,13643,13643,[13643,13456],[13392,12743],12744,[13585,12745],[13585,12681],13585,13650,13585,13651,13585,13587,13649,13648,13585,[13643,13652],13643,[13643,13711],13587,[13650,12615],[13587,12616,13133],[13650,13134],[13649,13135],13649,13651,13584,13586,13587,13585,13585,13650,[13650,12686],[13585,12750],12751,[13587,12874],[13587,12875],[13643,13395,12878],[13643,13396],13643,[13643,13583],13584,13649,13648,13648,[13586,3750],[13648,3814],3815,[3324,3940],[3388,3941],[3636,2293,3942],2421,2422,2555,2556,2357,2358,2422,2424,[2423,4808],[2422,4809],4873,[2359,4996],[2360,4997],4931,4932,4933,[2421,4802],[2358,4803],2422,2421,2422,[2359,3743],[2424,3744],[2359,3745],[2357,2741],[2358,2742],[2359,2743],[2359,2744],[2359,3750],[2359,3810],[2359,3811],[2358,3745],[2422,2741],[2358,2742],[2421,2743],[2357,2744],2421,2357,2358,2422,[2423,2869],[2357,2870],[2359,2871],[2423,2872],[2423,2462,3551],[3701,2361,3552],[3636,3553],3636,[3388,2228],2423,2358,2423,2421,2423,2421,2422,2357,2357,2358,2357,[2423,2549],[2359,2550],[2359,2551],[2360,2298],2357,2422,2422,2360,2357,2357,2358,[2358,2677],[2359,2678],[2423,2679],[2357,2680],2358,2422,2424,[3635,2233],3700,[3324,2613],[3388,2420,2614],[2424,2615],[2357,2616],2422,2423,2358,2422,2360,2359,2358,2360,[3323,2361],3637,3700,[3636,2356],2358,2360,2422,2421,2357,[2421,2549],[2358,2550],[2360,2551],2424,2421,2359,2422,2424,2423,2357,2423,2357,2555,2556,[2358,2549],[2424,2550],[2360,2551],2359,2423,2358,2359,2357,2423,2360,[2424,2869],[2358,2870],[2424,2871],[2423,2872],2357,2360,2422,2360,[2421,3113],[2421,3114],[2424,3115],2360,2358,2360,2358,2357,2421,2421,2360,2423,2359,2422,[2357,3679],[4882,3680],4947,4946,4947,[4883,3106],[4946,3107],[4882,3108],4883,4883,4946,4883,4882,4946,4882,4883,4947,[4882,3750],[4947,3810],[4947,3811],[4882,3751],[2357,3752],2422,2492,2357,2422,2424,2422,2423,2426,2360,2426,2357,2426,2423,2490,2427,2426,2427,2357,2358,2424,2490,2421,2426,2428,2358,2422,2357,2492,2360,2364,2491,2359,2491,2491,2358,2428,2492,2357,2426,2422,2428,2423,[2357,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,3090,3026,[1832,3027],1832,1832,[1832,3020],[1832,2958],3084,3085,0,0,0,0,0,0,0,0,3090,3026,[1832,3027],1832,1832,[1832,3020],[1832,2958],[1832,2961],[1832,2962],1832,[1832,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,979,915,915,1040,[1103,13968],14033,14033,14035,14034,14099,14034,14096,14673,[14098,13854],[14032,13855],[14099,14035,13856],14033,14032,14099,14034,[14097,13597],[14097,13598],[14034,13599],[14099,13600],[14035,13601],14097,14096,14034,14099,14032,14032,14096,14034,14610,[14032,8443],[14098,8444],[14033,16761],14099,14034,[14097,8627],8628,[14097,8629],[14098,8630],[14032,8631],[14033,8565],14737,[13799,14100,14937],[13799,14938],[13799,14939],[13736,13968],[13799,14160,14941],[14674,14942],[14034,14943],14738,[13800,14162],[13800,14163],[14099,14347],[14675,14348],[13800,14036],13800,[13799,13904],14675,[14032,8443],[14675,8444],[14096,15437],15438,[14033,15439],[14739,8245],[14096,8246],[14739,8372],[14033,8373],14738,14673,14800,[14032,13666],[14737,13667],[14096,13668],[14033,13669],[14034,13670],[13736,13906,8507],[13800,8508],13800,13800,13799,13800,[13799,13968],[13799,14160],14674,14097,[14034,14480],12300,[12300,8308],[14737,8309],[14673,8373],14097,14675,[13736,13908],13800,13800,13799,13800,13735,13800,[13799,8507],[13799,8508],13800,13799,[13800,13968],[13800,14163],14673,[14033,8378],[14737,8313],[14737,8310],[14675,8313],[14738,8373,13538],[14098,13539],[14098,13540],[14097,13541],14098,[14673,13854],[14099,13855],[14673,13856],14096,[14098,8499],[14739,8500],14032,14097,14096,14675,14673,[13799,14100],13800,13799,[13799,13839],[13735,13840,8443],[8698,13597],[14673,8699,13598],[14674,13599],[14034,13600],[14097,13601],14035,14096,14673,14673,[14737,13538],[14033,13539],[14034,13540],[14033,13541],14099,14098,[14099,8563],[12908,8564],[12972,8565],[12908,13985],[12908,13986],[12908,13987],[12909,13988],12908,12972,12908,[12908,14049],[12908,14050],[12908,14051],[12909,14052],12972,12973,12909,[12973,8507],[12909,8508],12908,12908,12909,[13800,12844,8371],[13800,8372],[13799,8373],[13800,12969,16757],[13799,12782,16758],13799,[13799,12841],[12909,8378],[13800,12974,8379],[13800,8246],[13799,8249],[13800,8246],[13799,8372],[13799,12842,8373],12973,12908,12973,12909,[12909,8378],[12972,8314],[12909,8315],12908,12908,[12972,8308],[12908,8309],[12908,8310],[12909,8313],[12908,8373],[12908,8371],[12909,8372],[12972,8373],[12908,13985],[12972,13986],[12973,13987],[12972,13988],[12972,8507],[13584,8508],13586,13586,13587,13585,13648,13586,[13643,13652],13643,13643,13643,13643,13643,[13643,12487],[13585,12488],[13650,12489],13585,13651,13587,13584,13584,13648,13649,13586,[13585,12679],[13650,12680],[13585,12681],13651,13587,13649,13649,13587,13587,13649,13650,[13648,12427],13585,13650,[13641,13652],13641,[13577,13455],13586,13649,13585,13648,13586,13587,[13650,12559],12814,[13586,12815],13648,[13643,13712],[13643,13713],[13643,13714],[13643,13716],[13643,12559],[13643,12560],13643,[13643,13391],[13643,13393],[13643,13394,13128],[13643,13395,13129],[13587,13130],[13586,13131],[13585,12808,13132],12809,[13587,12552],13587,13587,13650,13584,13651,13648,13648,13584,13586,[13643,13523],13643,13643,[13643,13521,12424],[13587,12425],[13650,12489,13197],[13587,13198],[13586,13199],13585,13587,13648,13584,13648,13587,13650,13650,[13585,12559],12814,[13585,12815],13650,13586,13584,[13643,13652],13643,[13643,13520],13585,13651,13587,13587,[13651,3623],3878,[2359,3879],[3635,2231],3323,3636,[3637,2228],2423,2619,[2620,4808],[2357,4868],[2358,4869],[2421,4870],[2422,4871],[2422,4872],4873,[2421,4937],[2422,2549],[2360,2550],[2422,4995,2551],[2357,4996],[2357,4997],4866,[2421,4867],[2422,4803],2421,2421,[2358,3807],3808,[2422,3744],[2359,3745,2805],[2422,2806],[2421,2807],[2423,3750,2808],[2422,3751],3874,3875,[2423,3744],[2422,3745,2805],[2359,2806],[2422,2807],[2422,2808],2421,2423,2357,2422,2358,2359,2422,2423,[2358,3615],[2360,3616],[3701,2169],3700,[3323,2292],2423,2424,[2358,3750],[2424,3810],[2421,3811],[2358,3812],[2422,3813],[2423,3745],2421,2357,2359,[2358,2613],[2424,2614],[2421,2615],[2423,2616],2360,2424,2423,2422,2421,2422,2357,[2358,2741],[2360,2742],[2423,2743],[2421,2744],2360,2357,2360,[3387,2297],3636,[3636,2164,2677],[2424,2678],[2358,2679],[2423,2680,2299],2360,2424,2423,2422,2359,2424,2358,2423,[3637,2425],3700,3636,[3323,2420],2423,2424,2424,2360,2421,[2423,2613],[2421,2614],[2360,2615],[2357,2616],2421,2357,2357,2358,2422,2424,2358,2358,2619,2620,[2424,2613],[2359,2614],[2359,2615],[2422,2616],[2422,2299],2422,2359,2421,2359,2360,2359,2424,2358,2424,2422,2357,2422,2358,[2359,3177],3178,[2358,3179],2359,2422,2421,2424,2360,2424,2421,2423,2359,2360,2359,[2424,3743],[4883,3744],[4883,3745],4882,4882,[4883,3170],[4882,3171],[4883,3172],4882,4946,4883,4947,4946,4882,4882,4882,[4947,3750],[4883,3751],3874,3875,3815,[2359,3816],2357,2427,2426,2422,2358,2428,2490,2426,2422,2491,2426,2490,2490,2359,2428,2358,2422,2421,2428,2426,2357,2359,2359,2360,2428,2428,2357,2424,2491,2492,2426,2427,2358,2492,2492,2428,2359,2358,2491,2492,2422,2428,2424,[2357,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1832,2961],[1832,2958],3084,3022,3085,0,0,0,0,0,0,0,0,0,0,3090,3091,[1832,2958],[1832,2961],3084,3022,3025,3026,[1832,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,1103,916,1040,916,1039,[980,13903],14098,14035,14033,14034,14098,14099,14737,14096,14674,14035,14096,14034,14675,14098,[14099,13661],[14034,13662],[14674,13663],[14034,13664],[14033,13665],14098,14099,14032,14096,14032,14034,14096,14033,14035,[14099,8507],[14034,8508],14033,14032,14097,14096,[14033,8692],8693,8694,8695,[14099,8564],[14099,8565],14097,[13800,13906],13800,13800,13800,[13735,13968],[13736,14160],[13799,13970],13800,13799,[13799,13969],[13799,14163],[13800,13971],13800,[13800,14095],14738,[14098,8378],[14034,8314],[14033,8315,15501],[14034,15502],[14034,8308,15503],[14098,8309],[14032,8310],[14800,8373],14737,14035,14673,14737,[14035,13730],[14674,13731],[14738,13732],[14096,13733],[13799,14162,8570,13734],[13800,13971,8571],[13800,8572],[13800,13839],[13799,13840],[13799,13906],13799,13736,13800,[13800,13968],[13799,14162],[14673,14544,8245],[12300,8246,13534],[14673,8372,13535],[14097,8373,13536],14675,14739,14097,[13735,13972,8245],[13799,8246],[13800,8249],[13799,13839,8246],[13800,13841,8249],[13735,13843,8380],[13799,13907],[13799,8378],[13736,13905,8314],[13800,13840,8315],[13800,13844],13800,13800,[13800,14095],14097,14098,14099,14098,[14097,13602],[14096,13603],[14099,13604],[14099,13605],[14674,13606],14099,14032,14675,[14673,8308],[14739,8309],[14035,8373],14098,14032,14033,14097,14675,[13799,14100],13799,13736,[13800,14095],[14033,8507],[14098,8508,13661],[14674,13662],[14035,13663],[14033,13664],[14033,13665],14738,14099,14674,14033,[14097,13602],[14739,13603],[14739,13604],[14034,13605],[14097,13606],14739,[14096,8627],8628,[12909,8629],[12909,8565,14049],[12972,14050],[12973,14051],[12972,14052],12973,12973,12908,[12972,14113],[12909,14114],[12908,14115],[12972,14116],12909,12972,[12908,8570],[12909,8571],[12909,8572],12909,12972,[13799,12845],[13799,8435],[13799,8436],[13800,12778],12973,[13800,12910],13799,[13800,12905],12972,[12972,8378],[13799,12781,8310],[13800,8313],[13799,8310],[13736,8373],13800,[13799,12969],12909,12972,12909,12909,[12972,8378],[12973,8379],[12908,8246],[12909,8249],[12973,8372],[12972,8373],12973,12908,12908,[12973,8499],[12908,8500],12908,[12908,14049],[12972,14050],[12909,14051],[12908,14052],[12909,8443],[13650,8444],13650,13585,13648,13651,13648,13585,[13643,13523],13643,[13643,13391],[13643,13392],[13643,13458],13643,[13643,12551],[13650,12552],13650,13650,13585,13585,13585,13586,13651,13584,13586,[13586,12743],12744,[13651,12745],[13648,12681],13585,13584,13584,13585,13650,13587,[13584,12686],[13649,12491],13586,13585,[13512,13523],13640,[13512,13519],13585,13587,13649,13587,13585,13586,[13648,12623],[13584,12624],13587,[13643,13460],13643,13643,13643,13643,[13643,12623],[13643,12624],13643,[13643,13647],13584,[13585,13192],[13648,13193],[13584,13194],[13649,13195],[13649,13196],[13587,12615],[13587,12616],13650,13648,13650,13648,13648,[13651,13133],[13650,13134],[13586,13135],[13643,13652],13643,13643,[13643,12487],[13586,12488],[13585,12489],[13584,13261],[13650,13262],[13586,13263],13649,13651,13587,13587,13584,13650,13587,13651,[13649,12623],[13585,12624],13587,13585,13648,13649,13584,[13643,13458],13643,[13643,13455],13584,13649,13585,[13651,3623],[2358,3624],2359,[3636,2233],3637,3699,[3636,2292],2360,[2357,4808],[2421,4809],4932,4933,4934,4935,4936,[2423,4937],2359,[2423,2613],[2359,2614],[2358,2615],[2357,2616],2359,[2423,4930],4866,[2358,4674],2424,2360,2357,[2424,3872],3808,[2358,3809,2869],[2359,3810,2870],[2359,3811,2871],[2424,3814,2872],3815,[2424,3938,5199],[2357,3939,5200],3808,[2421,3744,2869],[2423,3745,2870],[2422,2871],[2422,2872],2424,2360,2422,[2421,2549],[2360,2550],[2357,2551],2423,2360,[2358,3679],[2360,3680],[3636,2425],3701,[3388,2356],2360,[2423,3750],[2360,3062,3751],3874,[3064,3875,19526],[3065,3876,19527],3877,[2423,3744],[2424,3745],2360,2359,[2359,2677],[2421,2678],[2422,2679],[2421,2680],2421,2359,2423,2422,2424,2424,2360,[2423,2805],[2423,2806],[2359,2807],[2359,2808],2360,2360,2421,[3323,2361],3635,[3323,2420,2741],[2422,2742],[2357,2743],[2423,2744],2360,2357,2422,2421,2458,2357,2423,2359,2357,[3636,2232],3701,[3699,2484],2422,2424,2421,2424,2359,[2422,2677],[2424,2678],[2421,2679],[2358,2680],2422,2357,2357,2359,2423,2423,2359,2360,2359,2423,[2421,2677],[2359,2678],[2424,2679],[2424,2680],2423,2424,2360,2357,2424,2357,2421,2360,2357,2360,2424,2421,2358,2422,[2421,3241],3242,[2423,3243],2423,2421,2358,2357,2360,2421,2422,2423,2359,2424,2422,[2360,3807],3808,[4947,3809],[4946,3745],4946,[4946,3234],[4882,3235],[4883,3236],4883,4883,4883,4883,4883,[4947,3750],[4882,3812],[4883,3813],[4946,3814],3815,[2357,3938],[2360,3939],[2421,3879],2423,2364,2357,2357,2491,2428,2362,2357,2358,2428,2357,2424,2360,2491,2426,2492,2426,2424,2423,2490,2427,2357,2364,2490,2428,2424,2427,2490,2359,2360,2359,2359,2422,2422,2423,2492,2357,2422,2360,2522,2427,2359,2492,2422,[2360,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3085,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,979,1040,1040,1104,1103,[980,14031],14098,14032,14032,14033,14033,14096,14674,14673,14098,14096,14673,14032,14098,14738,[14032,13725],[14034,13726],[14096,13727],[14097,13728],[14034,13729],14035,14034,14097,14032,14098,14096,14096,14099,14035,[14034,8378],[14099,8314],[14098,8315],14739,14035,14675,14673,[14033,8757],[14673,8758],[14035,8759],8628,[14035,8629],[14033,8565],14737,[13799,13840],[13799,13906],13800,13799,13799,13799,13800,13799,13799,13800,13800,[13800,13839],14098,14032,14739,[14096,8378,13534],[14033,8379,13535],[14097,8246,13536],[14035,8372],[14099,8373],14738,14738,14034,14673,14674,14737,[14096,13794],[14674,13795],[14674,13796],[13800,14100,8570,13797],[13800,8634],8635,[13799,8636],[13736,14095],14801,14675,[13800,13840],[13800,13844],13800,13800,[13800,8371],[13799,14095,8372,13597],[14675,8310,13598],[14096,8373,13599],[14035,13600],[14032,13601],14738,[14097,8371],[13800,14036,8309],[13736,8310],[13735,13904,8313],[14035,8310],[14739,8313],[14032,8314],[14675,8315],[13800,13840],[14035,8378],[14035,8379],[14034,8249],[13799,13907,8250],13799,[13800,14159,8245],[13800,14161,8246],[13799,14162,8249],[13799,14163,8250],14673,[14737,13666],[14097,13667],[14033,13668],[14738,13669],[14738,13670],[14097,8245],[14739,8246],[14033,8249],[14737,8372],[14098,8373],14099,14738,14802,14803,14673,14737,[13800,14164],13799,13799,[13800,13968],[14034,8507],[14739,8508,13725],[14097,13726],[14674,13727],[14034,13728],[14097,13729],14738,14034,14032,14739,[14737,13666],[14737,13667],[14738,13668],[14739,13669],[14097,13670],14097,14033,[14035,8692],8693,[12973,8436,14113],[12972,14114],[12972,14115],[12973,14116],12908,12973,12909,[12909,14177],[12909,14178],[12973,14179],[12908,14180],12972,[12909,8570],[12973,8571],8635,[12972,8636],12973,[13799,12974],13799,[13799,8499],[13800,12713,8500],12909,12909,12908,[13799,12714],12908,12973,12908,12909,[13799,12715],[13736,12716],[13799,12717],[13799,12718],[13735,12842],[13799,13036],[13799,13037],12909,12909,12909,[12973,8378],[12909,8310],[12908,8313],[12909,8373],12909,12909,12908,12972,[12973,8563],[12908,8564],[12908,8565],[12973,14113],[12908,14114],[12909,14115],[12972,14116],[12973,8507],[13586,8508],13648,13586,13649,13587,13584,[13643,13652],13643,[13643,13456],13651,13650,13651,[13643,13392],[13585,12615],[13587,12616],13587,13584,13648,13650,13586,13584,[13584,12996],13650,13649,13648,[13648,12808],12809,[13587,12680],[13585,12681],13649,13586,13587,13586,[13651,12686],[13650,12687],[13584,12555],13651,[13640,13652],13640,13641,[13641,13583],13585,13587,13650,13650,13651,[13584,12686],[13651,12687],[13586,12688],13649,[13643,13524],13643,[13643,13457],[13643,13392],[13643,13393,12686],[13643,12687],[13584,12688],[13643,13392],13585,13584,[13586,13256],[13649,13257],[13651,13258],[13650,13259],[13587,13260],[13586,12551],[13650,12552],13650,13584,13650,[13643,13714],13586,[13648,13197],[13651,13198],[13648,13199],13584,[13643,13392],[13643,13393],[13394,12551],[13649,12552],13651,[13648,13325],[13584,13326],[13586,13327],13587,13648,13649,13584,13648,13648,13584,[13585,12686],[13586,12687],[13587,12688],[13643,13715],13586,13649,13648,13648,[13643,13652],13643,[13643,13519],13648,13650,13584,[13649,3687],[2359,3688],2359,[3323,2297],3635,3636,[3388,2356],[2424,4808],[2421,4872],[4873,3113],[4996,3114],[2360,4997,3115],[2423,4998],[2359,4999],[2359,5000],2358,2421,[2422,2677],[2360,2678],[2421,2679],[2360,2680],2360,2422,[2358,4737],[2423,4738],2421,2357,2358,2359,[2359,3872],3873,3874,3875,3878,[2358,3879,5262],[2360,5263],[2359,5264],[2423,3872,5265],3808,[2422,3809],[2359,3745],2423,2422,2422,2422,[2422,2613],[2357,2614],[2424,2615],[2359,2616],2423,[2421,3743],[2422,3744],[3636,2296,3745],3635,[3701,2420],[2358,3750],[2423,3751],3815,[3127,3938,19589],[3128,3939,19590],[3129,3940,19591],[3257,3941,19592],3808,[2424,3809],[2423,3745],2357,[2421,2741],[2357,2742],[2422,2743],[2357,2744],2357,2423,2360,2360,2359,2358,2421,[2422,2869],[2360,2870],[2357,2871],[2422,2872],2423,2423,2423,[3637,2489],[3699,2229],[2422,2805],[2360,2806],[2360,2807],[2357,2808],2424,2421,2359,2360,2359,2357,2422,2359,2424,[3636,2425],3637,3636,[3700,2420],2358,2357,2359,2421,[2357,2741],[2422,2742],[2358,2743],[2360,2744],2423,2359,2422,2422,2357,2422,2424,2359,2359,2358,[2359,2741],[2421,2742],[2357,2743],[2360,2744],2358,2358,2359,2357,2422,[3637,2485],[3635,2486],[3323,2487],[3635,2488],[3701,2485],[3700,2486],[3637,2487],[3388,2488],2357,[2423,3305],3306,[2360,3307],2422,2424,2424,2424,2423,2423,2359,2358,2358,2424,2360,2422,[2357,3872],3873,[4946,3809],[4883,3745],4946,[4946,3299],4882,4947,4883,4947,4946,[4947,3750],[4882,3751],3876,3877,3878,[2424,3879],2357,2357,2490,2360,2359,2428,2422,2490,2358,2427,2357,2491,2424,2424,2427,2360,2360,2423,2424,2490,2491,2424,2492,2492,2424,2359,2360,2490,2492,2491,2428,2490,2491,2357,2357,2360,2423,2426,2360,2421,2362,2423,2491,2427,2490,2492,[2423,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,979,1104,916,1039,1039,[1104,14159],[980,14160],[1103,14161],[980,14162],[979,14163],14099,14096,14738,14096,14033,14098,14737,14675,14033,14674,[14097,13789],[14034,13790],[14099,13791],[14099,13792],[14035,13793],14035,14098,14032,14802,14803,14098,14033,14610,14035,14034,[14032,8378],[14099,8379],[14099,8380],14035,14099,[14035,13534],[14099,13535],[14675,13536],14097,[14098,8692,16697],8693,[14035,8436],14674,14609,14098,[13800,13841],[13800,13843],[13799,13906],13800,[13799,13904],[13736,13841],[13799,13843],[13800,13844],13800,[13799,13968],14033,14673,[14096,13597],[14739,13598],[14738,8378,13599],[14675,8310,13600],[14032,8373,13601],14098,14673,14098,14099,14737,14738,14097,[14738,13858],[14035,13859],[13799,14163,13860],[13800,13971,8507,13861],8698,[13799,8699],[13800,13839],14035,14739,14032,14675,14035,[13799,13907],13799,[13799,8435],[13799,13903,8436,13661],[14738,13662],[14097,13663],[14033,13664],[14035,13665],14737,[14035,8499],[13799,13971,8500],13799,[13800,14095],14674,14673,[14097,8378],[14739,8379],[14098,8380],14674,[14096,8378],[14674,8313],[13736,13908,8314],[13799,8246],[13800,8372],[13799,8310],[13799,8313],[13800,8314],[13799,13903,8380],[14096,13730],[14035,13731],[14675,13732],[14737,13733],[14034,8371,13734],[14098,8372],[14675,8310],[14097,8313],[14097,8373],14675,14739,14737,14866,14867,14674,[13800,14100],13799,13800,13799,[13800,8570],[13800,14095,8634],[14098,8572,13789],[14096,13790],[14675,13791],[14097,13792],[14034,13793],14098,14673,14739,14096,[14032,13730],[14033,13731],[14737,13732],[14096,13733],[14033,13734],14674,14033,14099,[14033,8499],[12972,8500,14177],[12972,14178],[12908,14179],[12973,14180],12972,12973,12972,12973,[12973,14242],[12972,14243],[12972,14244],[12973,8570],[12973,8634],8635,[12973,8699],12973,[13736,13037],[13800,13038],13800,[13799,12779,8563],[12973,8564],[12973,8565],12973,12909,12973,12973,12909,12908,[12973,13921],[12909,13922],[12909,13923],[12972,13924],[13800,12974],13800,13800,13800,[13799,12842],12972,12972,12909,12908,12909,12909,12908,12972,12973,12909,[12973,8627],8628,[12972,8629],[12973,8565,14177],[12909,14178],[12909,14179],[12972,14180],[12973,8378],[12908,8314],[13649,8315],13586,13585,13650,[13643,13715],[13643,13716],13643,[13643,13455],13586,13651,13650,[13649,12424],[13648,12425],[13586,12489],13584,13649,13585,13650,13586,13651,[13584,13060],13585,13586,13585,13587,[13650,12873],12744,[13586,12745],[13650,12746],[13649,12747],[13649,12748],[13649,12749],[13587,12750],12751,[13650,12619],13585,[13640,13522],13641,13640,[13576,13647],13648,[13512,13712],[13640,13522],[13640,13647],[13584,12686],[13587,12750],12751,[13650,12752],13587,[13643,13588],13643,[13643,13455],[13585,12686],[13649,12750],12751,[13586,12752],13650,13649,13587,[13586,13320],[13650,13321],[13586,13322],[13587,13323],[13651,13324],[13586,12615],[13649,12616],13650,13586,[13643,13652],13643,[13643,13455],[13651,13261],[13586,13262],[13586,13263],13584,13651,13585,[13585,12615],[13587,12616],13649,13584,13585,13586,13648,13649,13587,13585,13648,13651,[13648,12686],[13585,12750],12751,[13643,13458,12752],13643,[13643,13711],13584,13587,13584,[13643,13522],13643,[13643,13583],13648,13648,13586,[13649,3623],[2357,3624],2360,[3700,2361],3636,[3699,2229],2424,[2422,4681],4936,[2357,4937,3177],3178,[2424,3179],[2360,3180],2360,2360,2424,2358,[2357,2741],[2358,2742],[2358,2743],[2359,2744],2424,[2422,4546],[2360,4547],[2421,4611],2359,2421,2423,2360,2357,[2421,3937],[2357,3938],[2421,3939],[2422,3942,5325],[2357,5326],5327,5328,[2421,5329],[2360,3872,5330],3873,[2422,3616],2423,2358,2360,2421,[2424,2677],[2423,2678],[2359,2679],[2424,2680],2360,[2421,3807],3808,[3635,3809],[3635,3812],[3635,2293,3813],[2357,3814],[2422,3189,3815,19593],[3190,3879,19594],[3191,19653,19595],[3192,19654],[3193,19655],[3128,19656],[3255,3872],3873,[2423,3616],2683,[2684,2805],[2358,2806],[2358,2807],[2424,2808],2424,2423,[2421,2549],[2357,2550],[2423,2551],2357,2357,2358,2358,2360,2359,2421,2357,[3635,2425],3699,[3701,2228],[2424,2869],[2421,2870],[2357,2871],[2423,2872],2423,2360,2422,2422,2358,2359,2421,2359,2421,2360,[3636,2165],[3701,2169],[3699,2294],2359,2358,2421,2358,[2424,2805],[2423,2806],[2360,2807],[2421,2808],2360,2422,2424,2422,2421,2360,2421,2423,2358,2423,[2422,2805],[2357,2806],[2357,2807],[2359,2808],2424,2359,[3699,2487],[3699,2488],[3700,2296],3699,3699,3700,3701,3700,3699,3637,3637,[3324,2294],[3701,2296,3369],[3388,3370],[3323,2294,3371],2359,2358,2422,2424,2422,2358,2358,2359,2359,2357,2423,2357,2423,[2358,3872],3873,[4947,3616],4946,4946,4883,4947,[4947,3750],[4883,3810],[4883,3811],[4882,3814],3815,[2360,3940],[2359,3941],[2357,3942],2422,2492,2423,2426,2492,2492,2358,2428,2360,2424,2428,2422,2492,2421,2360,2490,2422,2421,2426,2492,2490,2423,2492,2360,2492,2491,2492,2491,2421,2427,2422,2427,2358,2424,2490,2358,2490,2421,2423,2490,2426,2491,2491,2421,2491,2421,[2359,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14097,14738,14096,14097,14035,14739,14673,14032,14739,14738,14035,[14738,13854],[14737,13855],[14098,13856],14035,14097,14033,14096,14866,14867,14096,14099,14035,14099,14096,14035,[14097,8443],[14098,8444],14035,[14033,13597],[14674,13598],[14034,13599],[14098,13600],[14673,13601],[14096,16761],[14097,8435],[14739,8436],14738,14738,14097,14739,14739,14675,[13799,13840],[14098,13534],[14738,13535],[14097,13536],14035,[13800,13907],13736,[13799,14095],14738,[14032,13661],[14033,13662],[14032,13663],[14033,13664],[14737,13665],14739,14034,14802,14803,14739,[14099,8570],[14099,8630],[14675,8631],[13800,13908,8824],[13800,8825],[13800,8634],[13735,8572],[13800,13905],14099,14675,14738,14673,14098,14032,[13799,14100],13735,[13799,8499],[13799,13967,8500,13725],[14673,13726],[14033,13727],[14737,13728],[14096,13729],14739,[13800,14100,8563],[13799,8564],[13799,13904,8630],[14034,8565],14738,14098,14673,[14673,8507],[14035,8508],14096,14097,14096,[13799,14036,8378],[13799,8310],[13799,8373],13800,13799,[13799,8443],[13735,13967,8444],[14739,13794],[14035,13795],[14033,13796],[14032,13797],[14675,8499],[14099,8500],14097,14609,14098,14035,14675,14737,14739,14032,14096,[13735,13971],13799,[13800,16693],[13799,13904,16694],[13799,13840,8443],8698,[14739,8636,16697],[14033,13854],[14033,13855],[14098,13856],14099,14097,14034,14096,14099,[14737,13794],[14099,13795],[14096,13796],[14674,13797],14098,14097,14675,[14097,8308],[12973,8309],[12972,8373,14241],[12973,14242],[12909,14243],[12972,14244],12972,12909,12908,12908,12909,12973,12908,[12908,8443],8698,[12973,8699],12908,[13800,12974],13800,13799,[13800,12778],[12972,8627],8628,[12972,8629],[12973,8565],12908,12973,12972,12909,12973,[12908,13985],[12908,13986],[12973,13987],[12909,13988],[13799,12974],13800,13799,13799,13799,[13800,13033],[13799,13035],12973,12973,12972,12908,12973,12972,12909,12973,[12973,16693],[12909,8692,16694],8693,[12972,8436,14241],[12972,14242],[12973,14243],[12908,14244],12972,[12972,8378],[12972,8379],[13650,8380],13587,[13643,13460],13643,13643,13643,[13643,13583],13586,13584,[13650,12487],[13651,12488],[13651,12489,13133],[13648,13134],[13586,13135],13648,13587,13649,13587,13649,13651,13648,13584,[13649,13128],[13586,13129],[13650,13130],[13649,12808,13131],[12809,13132],12810,12811,12812,12813,12814,[13651,12815],13651,[13512,13523],13640,13641,[13641,13456],13587,[13640,13716,12428],13577,13512,[13640,13647],[13649,12559],12814,[13584,12815],[13643,13714],[13643,13715],[13643,13716],13643,[13643,13519],[13584,12559],12814,[13587,12815],13651,13650,13651,13650,[13648,13384],[13651,13385],[13648,13386],[13651,13387],[13648,12424,13388],[13643,12425],[13643,13520,12489],13651,13649,[13643,13522],13643,[13643,13519],[13586,13325],[13651,13326],[13651,13327],13651,13648,13651,[13586,12679],[13649,12680],[13651,12681],13584,13649,13651,13648,13648,13648,13648,13649,13651,[13586,12559],12814,[13585,12815],[13643,13716],13643,13643,[13643,13521],[13643,13714],[13643,13716],13643,13643,[13643,13647],13585,13586,13587,[13648,3687],[2421,3688],2358,[3699,2425],3635,[3323,2484],[3699,2485],[2358,4745],[2424,4746],[2358,3241],3242,[2359,3243],[2357,3244],2424,2357,2424,2359,[2360,2805],[2424,2806],[2423,2807],[2357,2808],[2424,4609],[2359,4610],[2423,4611],2555,2556,2424,2422,2358,2422,2423,2358,[2424,5388],[2357,5389],5390,5391,5392,5393,[2357,5394],[2357,3615,5395],[2360,3616],2360,2458,2422,2421,[2424,2741],[2358,2742],[2422,2743],[2360,2744],2358,2424,[2421,3872],3873,3876,[3636,3877,2549],[3701,2228,3878,2550],[2422,3253,3879,2551,19657],[2357,3254,19658],[3255,19717,19659],[3256,19718],[3257,19719],[3128,2549,19720],[3128,2550],[3256,3679,2551],[2357,3680],2747,[2748,2869],[2358,2870],[2421,2871],[2357,2872],2360,2358,[2422,2613],[2423,2614],[2358,2615],[2423,2616],2422,2422,2359,2422,2421,2358,2358,[3636,2296],3701,[3699,2292],2358,2423,2359,2422,2359,2421,2423,2360,2424,2422,2358,2358,2423,2358,2359,[3636,2295],3323,[3637,2484],2423,2423,2360,[2424,2869],[2358,2870],[2357,2871],[2359,2872],2357,2359,2358,2422,2422,2357,2522,2422,2424,2358,[2421,2869],[2357,2870],[2359,2871],[2358,2872],[3701,2487],[3699,2295],3323,3323,3637,3323,[3700,2164],[3323,2165],[3637,2166],[3699,2167],[3635,2168],[3701,2165],[3388,2166],[3701,2167],[3699,2231],3388,[3636,2229],2423,2423,2357,2359,2423,2357,2421,2421,2424,2424,2423,2424,2423,2424,[2423,3743],[4947,3744],[4882,3810],[4883,3811],[4882,3812],[4947,3813],[4946,3814],3874,3875,3878,[2423,3879],2423,2522,2427,2423,2359,2358,2421,2422,2491,2359,2423,2424,2492,2421,2492,2492,2492,2427,2427,2427,2359,2490,2426,2428,2358,2426,2428,2492,2427,2423,2424,2422,2491,2421,2360,2491,2426,2426,2491,2490,2423,2424,2358,2424,2357,2427,2490,2357,2359,[2423,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14096,14096,14738,14675,14674,14098,[14738,13534],[14099,13535],[14673,13536],14035,14033,14033,14674,14034,14032,14800,14035,14099,14033,14098,14098,14035,14097,14033,14097,14033,[14098,8507],[14034,8508],14099,[14098,13661],[14674,13662],[14032,13663],[14097,13664],[14674,13665],14097,[14099,8499],[14034,8500],14099,14098,14099,14737,14674,[14096,14865],[14739,13597],[14034,13598],[14098,13599],[14032,13600],[14096,13601],[13800,13908],13799,[13799,13968],14674,[14034,13725],[14675,13726],[14675,13727],[14673,13728],[14674,13729],14675,14674,14866,14867,[14098,8570],[14096,8571],[8694,16693],[8695,16694],8888,8889,8698,[13799,13904,8636],14739,14737,14033,14033,14032,14099,14033,14097,[13800,13907],[13799,8499],[13799,14031,8500,13789],[14738,13790],[14738,13791],[14097,13792],[14035,13793],14675,[14097,8627],[8628,16693],[8502,16694],[14034,8629],[14801,8814],[14034,8815],[14673,8816],[14034,8634],[14738,8572],14099,14674,14034,14096,[13800,13841],[13800,13842],[13800,13843],[13800,13844],[13800,8378],[13800,14031,8314],[14739,8315,13858],[14098,13859],[13799,14162,13860],[14675,8308,13861],[14033,8309],[14674,8373],14673,14035,14034,14673,14675,14739,14674,[13736,14160],[13800,13971],13799,13735,[13800,13904,16757],[14675,16758],[14034,8507],[14099,8508],[14675,16761],14032,14035,14675,14034,14032,14675,14035,14035,[14673,13858],[14096,13859],[14035,13860],[14738,13861],14675,14098,[14097,8371],[12908,8372],[12908,8373,16693],[12972,16694],12909,12973,12909,12908,12909,12909,12973,12908,[12909,16693],[12909,16694],[12908,8443],[12972,8444],12908,12908,[13736,12845],13799,[13799,12713],12973,12908,[12972,8692],8693,[12909,8436],12972,12909,12909,12972,12972,[12908,14049],[12973,14050],[12909,14051],[12972,14052],12973,[13800,12714],[13799,12780],13799,13799,13800,13736,[13800,12842],12909,12972,12972,12973,12973,12909,12909,[12973,16757],[12972,16758],[12908,8499],[12972,8500],12973,12908,12908,12908,12972,[12973,8443],[13587,8444],13585,[13643,13588],13643,[13643,13391],[13643,13392],13650,13650,13649,[13649,12551],[13585,12552],[13586,13197],[13587,13198],[13587,13199],13649,13649,13649,13584,13587,13586,13650,13648,[13584,13192],[13584,13193],[13648,13194],[13586,13195],[13650,12873,13196],[13648,12874],[13584,12875],[13648,12876],[13585,12877],[13584,12878],13584,[13640,13716],13640,13512,13641,[13640,13711],[13641,13523],[13577,12492],[13640,13393,12681],[13640,13395],13651,[13648,12623],[13649,12624],[13643,13522],13643,13643,13643,13643,[13643,13583],[13586,12623],[13584,12624],13650,13586,13585,13585,13584,13587,[13586,13449],[13585,13450],[13585,12361,13451],[13643,13652,12488],[13643,12489],13643,[13643,13521],[13643,13716],13643,13643,[13643,13583],13587,13650,13586,13650,13649,13648,[13586,12743],12744,[13650,12745],[13648,12681],13587,13651,13587,13587,13586,13650,13587,13586,[13586,12623],[13584,12624],[13643,13522],13643,[13643,13457],[13643,13392],[13643,13458],13643,13643,13643,[13643,13391],13587,13587,13649,[13584,3750],[13587,3751],[2360,3752],2360,[2422,2549],[3700,2231,2550],[3700,2551],3323,[3323,2293,4681],[3635,2485,4682],[3700,2486,3305],3306,[2423,3307],[2421,3308],2359,2421,2360,2358,[2421,2869],[2360,2870],[2422,2871],[2358,2872],[2360,4737],[2421,4738],2424,2619,2620,2360,2421,2360,[2421,1914],[2359,1915],[2422,1916],[2424,5452],5453,5454,5455,5456,5457,5458,[2421,3743,5459],[2424,3744],[2358,3745],2423,2422,2421,[2360,2805],[2358,2806],[2357,2807],[2421,2808],2424,2360,2421,[2423,3937],[3700,2425,3940],[3699,3941,2613],[3701,2292,3942,2614],[2421,2615],[2421,3318,2616],[3634,2361,3319],3320,3192,[3257,2613],[3191,2614],[3255,3743,2615],[2424,3744,2616],[2360,3745],2360,2358,2359,2421,2357,2421,[2421,2677],[2423,2678],[2359,2679],[2359,2680],2424,2360,2423,2358,2421,2423,[3700,2425],3323,3701,[3635,2356],2422,2422,2360,2360,2360,2359,2421,[2423,2549],[2360,2550],[2424,2551],2421,2360,2359,2422,[3637,2425],3701,3323,3388,[3637,2484],2424,2424,2424,2424,2357,2423,2424,[2424,2549],[2423,2550],[2421,2551],2357,2421,2424,2421,2422,2357,2359,2360,2421,[3700,2425],3635,3635,[3637,2164],[3323,2166],[3636,2167],[3700,2168],2360,2358,2424,2359,2424,2422,2357,2357,2357,[3324,2165],2421,2422,2360,2359,2359,2555,2556,2358,2357,2359,2422,2360,2423,2423,2421,[2359,3807],3873,3874,3875,3876,3877,3878,[2423,3938],[2357,3939],[2359,3942],2491,2426,2428,2357,2427,2358,2360,2423,2492,2427,2492,2428,2423,2428,2428,2428,2426,2421,2358,2423,2428,2427,2423,2424,2424,2424,2428,2363,2490,2427,2490,2421,2492,2421,2360,2490,2359,2490,2358,2359,2428,2426,2359,2358,2422,2358,2491,2491,2427,2490,[2421,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14035,14674,14739,14738,14096,[14032,14032,13597],[14099,13598],[14673,13599],[14675,13600],[14098,13601],14034,14737,14673,14034,14098,14033,14098,14097,14096,14034,14035,14096,14096,14611,14035,[14096,8570],[14096,8571],[14162,8572],14032,[14098,13725],[14034,13726],[14034,13727],[14739,13728],[14098,13729],[14035,8308],[13582,14160,8309],[14096,8373],14739,14739,14032,14098,14673,14675,[14739,13661],[14097,13662],[14099,13663],[14673,13664],[14673,13665],[13736,13972],13799,13799,[13800,14095],[14673,13789],[14033,13790],[14673,13791],[14673,13792],[14673,13793],14098,14737,14099,[14673,8570],[14739,8634],8635,[14675,8758,16757],[14097,8759,16758],[13799,14036,8952],[13800,8953],[13799,8762],[13800,14095],14737,14098,[14032,13534],[14032,13535],[14675,13536],14675,14034,14033,14032,[13800,13844,8563],[13800,13968,8564],[13736,14160,8565,13854],[14099,13855],[14674,13856],14035,14099,14675,[14738,8692,16757],[14096,8758,16758],8693,8502,8879,8880,8698,[14738,8636],14673,14675,14673,14099,14035,14096,14675,[13800,13908],13800,[13799,14159,8378],[13799,14160,8379],[13799,13970,8246],[13800,8249],[13800,13969,8372],[14032,8373],14097,14096,14737,14099,14035,14033,14673,[13799,14100],13800,[13799,8570],[13800,13839,8630],[13800,13840,8631],[14096,8632],[14033,8633],[14034,8634],[14675,8572],14098,14738,14098,14035,14034,14097,14032,14674,14097,14739,14097,14739,14098,14096,14033,[14035,8435],[12909,8436],[12972,16757],[12973,16758],12973,12908,12908,12908,12973,12973,12972,12909,[12972,16757],[12908,16758],[12909,8507],[12908,8508],12909,[13800,12844],13736,[13800,12778],12972,12909,12973,12909,[12973,8499],[12973,8500],12908,12972,12973,12973,12909,[12909,14113],[12972,14114],[12973,14115],[12973,14116],12972,12908,12973,[13799,12715],[13799,12716],[13799,12781],13799,13799,[13800,12969],12908,12908,12973,[13799,13035],12909,12908,12908,12972,[12908,8563],[12909,8629],[12973,8565],12909,12973,12972,12972,[12909,8507],[13643,13714,8508],[13643,13715],[13643,13523],13643,[13643,13647],13587,13650,13649,13648,[13585,12615],[13649,12616],[13584,13261],[13648,13262],[13587,13263],13648,13586,13649,[13640,13714],13585,13584,13585,13648,[13651,13256],[13585,13257],[13586,13258],[13650,13259],[13585,13260],13587,13649,13587,13587,13650,[13640,13460],13513,13512,13512,[13576,13128],[13640,13129],[13640,13130],[13640,13456,12556,13131],[13651,12745,13132],[13584,12746],[13586,12747],[13584,12687],[13643,12688],13643,13643,[13643,13456],[13643,13393],[13643,13395],13587,[13651,12494],[13587,12430],[13584,12431],13650,13585,13587,13587,13648,13649,13650,[13584,12551],[13648,12552],[13643,13458],13643,13643,13643,13643,[13643,13391],13586,13650,13584,13649,13648,13586,13584,13584,[13584,12808],12809,[13648,12552],13651,13648,13650,13586,13586,13586,13650,13650,[13587,12494],[13652,12430],[13643,12431],13643,[13643,13647],13649,13650,[13643,13396],13643,13643,[13643,13520],13650,13586,[13650,3750],[13648,3814],3815,[2423,3816],2422,[2358,2613],[2422,2614],[3637,2168,2615],[3637,2169,2616],[3388,4745],[3636,4746],[3637,3369],[3323,2293,3370],[2423,3371],2421,2421,2358,2424,2357,2357,2358,2421,2357,[2357,4801],[2422,4802],[2359,4803],2424,2357,2422,2358,2360,[2357,1978],[2360,1979],[2422,1980],[2423,5516],5517,5518,5519,5520,5521,5522,[2421,3807,5523],3808,[2360,3809],[2424,3745],2359,2421,[2421,2869],[2424,2870],[2421,2871],[2360,2872],2358,2360,2357,2421,[3700,2489],[3699,2677],[3323,2356,2678],[2360,2679],[2357,2680],[2359,3383],[3323,2169,3254],3191,[3256,2677],[3256,2678],[3255,3807,2679],[2358,3808,2680],[2422,3809],[2359,3745],2360,2359,2422,2360,2360,[2422,2741],[2423,2742],[2358,2743],[2360,2744],2357,2424,2422,2423,2424,2421,[3699,2489],3323,[3637,2230],2360,[2359,2549],[2357,2550],[2421,2551],2358,2424,2358,2424,[2423,2613],[2422,2614],[2421,2615],[2423,2616],2360,2423,2422,2357,[3636,2166],[3323,2168],[3636,2169],3323,[3637,2294],2358,2424,2358,2423,2422,2357,[2360,2613],[2358,2614],[2357,2615],[2424,2616],2423,2422,2357,2422,2424,2359,2422,2357,[3701,2489],3635,[3388,2229],2421,2422,2360,2358,2359,2422,2358,2357,2357,2422,2357,2359,2358,2360,2424,2423,2424,2424,2359,2619,2620,2424,2360,2423,2358,2424,2357,2360,2424,2421,[2357,3937],[2358,3938],[2360,3939],[2424,3940],[2423,3941],[2357,3942],2491,2490,2492,2357,2359,2360,2491,2490,2490,2428,2427,2426,2492,2360,2421,2492,2357,2360,2423,2427,2490,2422,2360,2358,2426,2492,2492,2359,2427,2357,2522,2363,2426,2490,2490,2394,2427,2424,2359,2421,2360,2359,2427,2359,2421,2357,2428,2421,2360,2422,2422,2492,2427,[2421,3743],3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14097,14097,14737,14673,14034,[14098,14097,13661],[14675,13662],[14673,13663],[14035,13664],[14674,13665],14032,14739,14737,14033,14035,14097,14032,14033,14033,14097,14096,14099,14098,14032,[14035,8570],[14035,8634],8635,[13646,8636],[13645,13968],[14097,13789],[14032,13790],[14032,13791],[14096,13792],[14739,8371,13793],[13646,13971,8372],[13581,8373],[13517,14095],14033,14096,14673,14674,14097,14096,[14739,13725],[14034,13726],[14097,13727],[14032,13728],[14673,13729],[13800,14036],13800,13800,[13800,13968],14032,[14674,13854],[14739,13855],[14737,13856],14034,14675,14033,14098,[14673,8507],8698,[14738,8699],14737,[13800,14163],[13799,13971],[13800,13904],[13800,13840],14097,14033,[14033,13597],[14673,13598],[14737,13599],[14737,13600],[14035,13601],14739,14033,14739,[13799,13908,8627],8628,[13800,8629],[13799,13968,8632],[14096,8633],[14035,8630],[14675,8631],[14099,8565],14035,14675,[14739,8757],[14739,8942],[14738,8943],[14035,8944],[14099,8762],14674,14096,14097,14098,14674,14034,14675,14097,[13799,14036],13800,13800,[13799,8378],[13799,8310],[13800,8313],[13736,8373],[13799,14159],[13800,14160],[13800,14161],[13736,14162],[13799,14163],[13799,14160],[13799,14161],[13736,14162],[13799,13970],[13799,8570],[13799,8571],8694,8695,8696,8697,8698,[14034,8636],[14099,15309],[14098,15310],[14097,15311],14737,14675,14097,14738,14035,14737,14737,14035,14737,14674,14099,14032,[14033,8499],[12972,8500],12973,12909,12908,12909,12972,12972,12908,12909,12973,12908,12908,[12973,8570],[12909,8571],[12909,8572],[13799,13038],13800,13800,[13799,12777],12908,12908,12973,[12909,8371],[12972,8372],[12908,8373],12909,12972,12909,12909,12973,[12909,14177],[12908,14178],[12973,14179],[12909,14180],12973,12908,12973,12973,12909,[13799,12974],13800,13800,[13800,13033],[13800,13036],[13735,13037],[13799,12844],13799,[13736,13033],12908,12909,12973,[12908,8627],8693,[12973,8564],[12972,8565],12909,12909,[12973,8570],[12909,8571],[13643,8572],13643,13643,[13643,13456],13651,13586,13586,13649,13649,[13585,12551],[13651,12552],[13651,13325],[13648,13326],[13587,13327],13648,13649,[13640,13460],13640,[13512,13521],[13640,13714],[13512,13715],13648,[13585,13320],[13648,13321],[13586,13322],[13650,13323],[13651,13324],13587,13649,13651,13651,13586,[13512,13524],13641,13640,13512,[13640,13192],[13512,13391,13193],[13512,13392,13194],[13650,12620,13195],[12809,13196],12810,12811,12751,[13643,13458,12752],13643,[13643,13391],13586,13587,13585,13648,13584,[13584,12494],[13586,12495],[13648,12496],13650,13587,13587,13587,13584,13651,[13585,12615],[13651,12616],13585,[13643,13392],[13643,13396],13643,13643,[13643,13520],13650,13648,[13648,13189],13648,13585,13586,13649,13587,13587,[13587,12551],[13651,12616,13128],[13649,13129],[13650,13130],[13651,13131],[13587,13132],13586,13585,13648,[13643,13714],[13643,13715],[13643,13716,12494],[13643,13583,12495],[13643,13392,12496],13587,13585,13651,13587,[13643,13458],13643,13643,[13643,13711],[13643,13714],[13643,13715,3623],3878,[2422,3879],2421,2358,[2360,2677],[2357,2678],[2358,2679],[3636,2233,2680],[3635,4616],[3635,4552],[3323,4553],3699,[3637,2420],2359,2421,2422,2357,2423,2359,2423,2358,2358,[2358,4865],4866,[2360,4674],2422,2424,2359,2359,2423,[2360,2042],[2424,2043],[2359,2044],[2357,5580],5581,5582,5583,5584,5585,5586,[2359,5587],[2360,3872],3873,[2360,3616],2423,2424,2357,2424,2423,2360,2422,2424,2422,[3635,2295],3636,[3701,2741],[3635,2420,2742],[2357,2743],[2422,2744],2359,[3700,2296,3318],[3699,3319],[3255,2741],[3320,2742],[2422,3321,2743],[2421,3872,2744],3873,[2424,3809],[2359,3745],2423,2360,2421,2357,[2358,2805],[2422,2806],[2359,2807],[2358,2808],2359,2359,2359,2423,2360,[3635,2425],3637,3701,[3637,2420],2421,[2357,2613],[2421,2614],[2358,2615],[2421,2616],2424,2421,2357,[2422,2677],[2423,2678],[2422,2679],[2358,2680],2360,2360,2358,2421,2422,2424,[3635,2425],3700,3699,[3636,2293],2421,2357,2360,2358,2423,[2359,2677],[2360,2678],[2358,2679],[2359,2680],2424,2358,2423,2424,2358,2358,[3324,2488],[3701,2295],3635,3701,[3701,2420],2357,2424,2424,2358,2422,[2421,2549],[2358,2550],[2359,2551],2358,2359,2359,2360,2358,2358,2421,2423,2422,2421,2359,2360,2359,2424,2358,2360,2423,2357,2422,[3637,2488],[3510,2489],2357,2359,2357,2427,2492,2360,2360,2491,2359,2424,2491,2522,2426,2422,2490,2492,2492,2422,2492,2490,2421,2421,2357,2364,2490,2491,2423,2357,2424,2426,2357,2422,2428,2423,2360,2428,2364,2428,2490,2421,2423,2491,2424,2428,2357,2359,2428,2357,2491,2358,2423,2492,2360,2359,2421,2421,2358,2360,2427,2426,[2360,3807],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14032,14034,14035,14099,14673,[14099,14673,13725],[14097,13726],[14738,13727],[14675,13728],[14098,13729],14096,14035,14097,14033,14032,14033,14032,14098,[14033,13538],[14035,13539],[14096,13540],[14098,13541],14035,14035,[14097,8443],8698,[13645,8699],13646,13581,[13581,13968],[14097,13854],[14035,13855],[14096,13856],[13517,14100,8435],[13581,8436],13517,[13581,14095],14097,14099,14800,14097,14096,14675,[14737,13789],[14035,13790],[14738,13791],[14034,13792],[14098,13793],14675,[13799,13906],13800,13799,[13799,13968],14674,14675,[14098,8570],[14035,8630],[14034,8631],[14673,8632],[14099,8633],[14674,8634],[14098,8572],14099,[13800,13908],13800,13800,[13800,13903],14737,14673,14674,[14737,13661],[14675,13662],[14098,13663],[14032,13664],[14675,13665],14739,14096,14737,[13799,13972],[13799,8692],8693,8696,8697,8694,8695,[14099,8564],[14096,8565],14034,14032,14737,14096,14099,14739,14034,14610,14096,14673,14097,[14032,14539],14097,14737,14096,[13800,13907],13799,13799,[13735,13839],[13800,13840],[13799,13907],13799,13799,13799,13735,13799,13800,13799,13799,[13800,8570],[13799,13905,8634],8635,[14739,8758,13534],[14098,8759,13535],[14098,8760,13536],[14098,8761],[14099,8762],14033,[14097,15373],15374,[14674,15375],14033,14098,14099,14035,14673,14800,14098,14674,14099,14033,14097,14096,[14099,8563],[12909,8564],[12908,8565],12973,12909,12972,12909,12972,12908,12908,12972,12973,[12908,8570],[12909,8634],8635,[13799,12844,8636],13735,13800,13800,[13799,12905],12973,12973,12908,[12908,8435],[12972,8436],12908,12973,12908,12908,12908,[12973,16693],[12908,14241,16694],[12972,14242],[12972,14243],[12973,14244],12909,12909,12973,12908,12973,12909,[13800,12780],13799,[13799,12779,16693],[13799,12718,16694],13799,13799,13800,13800,[13799,12969],12908,12972,12908,[12909,8757],8628,[12909,8629],[12909,8632],[12908,8633],[12972,8634],8635,[13643,13393,8636],[13643,13394],[13643,13395],13586,13584,[13586,13133],[13586,13134],[13651,13135],13585,[13649,12615],[13586,12616],13651,13584,13648,13650,13587,[13512,13588],13640,13577,13640,13640,[13512,13647],[13586,13384],[13585,13385],[13586,13386],[13651,13387],[13587,13388],13649,13650,13585,13651,13586,[13641,13588],13512,13512,13512,[13576,13456,13256],[13586,13257],[13586,13258],[13585,13259],[13584,12873,13260],[13649,12874],[13587,12875],[13584,12815],13585,[13643,13392],13649,13586,13651,13584,13586,13585,13587,[13586,12559],[13587,12560],13651,13650,13587,13584,13651,13651,[13651,12679],[13587,12680],[13587,12681],13649,13651,[13643,13392],[13643,13458],13643,[13643,13455],13587,13648,13585,13586,13587,13586,13587,[13584,12424],[13587,12425],[13649,12489,13192],[13648,13193],[13586,13194],[13649,13195],[13584,13196],13587,13587,[13643,13460],13643,13643,13643,[13643,13647,12559],[13712,12560],[13643,13713],[13643,13714],[13643,13715],13587,13586,[13643,13392],[13643,13458],13643,13643,[13643,3623],[2423,3624],2358,2358,2424,[2424,2741],[2358,2742],[2424,2743],[3636,2297,2744],3700,[3636,4616],[3636,4617],[3701,4618],[3701,2484],[3637,2485],2358,2360,2359,2360,2424,2424,2424,2421,2360,[2360,4673],[2421,4674],2358,2423,2359,2358,2422,[2358,2106],[2360,2107],[2360,2108],2424,5645,5646,5647,5648,5649,5650,[2358,5651],2424,[2422,3615],[2359,3616],2360,2359,2360,2421,2360,2424,2360,2422,[3637,2425],3701,[3636,2229],[3699,2165,2805],[2358,2806],[2421,2807],[2422,2808],[3635,2425],3636,[3637,2229,3383],[2422,3384,2805],[2360,3384,2806],[2360,3385,2807],[2360,2808],[2357,3872],3873,[2424,3680],2359,2421,2360,2360,[2422,2869],[2421,2870],[2358,2871],[2357,2872],2357,2358,2423,2360,2424,[3636,2295],3700,[3387,2164],2357,2357,[2424,2677],[2359,2678],[2422,2679],[2358,2680],2421,2358,2357,[2360,2741],[2358,2742],[2360,2743],[2422,2744],2424,2421,2360,2360,2358,[2421,2549],[2421,2550],[3699,2165,2551],[3700,2232],3699,[3635,2293],2422,2423,2359,2421,[2357,2741],[2358,2742],[2422,2743],[2421,2744],2423,2421,2358,2421,2423,[3635,2233],3700,3637,3637,[3323,2164],2357,2360,2360,2358,2421,2424,[2357,2613],[2422,2614],[2360,2615],[2421,2616],2357,2359,2424,2358,2360,[2424,2235],2360,2422,2359,2424,2423,2360,2422,2424,2359,[3324,2485],[3637,2488],[3324,2296],3701,3574,2360,2428,2490,2428,2360,2359,2427,2357,2427,2358,2422,2360,2357,2421,2357,2357,2423,2424,2491,2421,2428,2358,2490,2427,2426,2421,2491,2421,2357,2358,2426,2428,2360,2423,2424,2421,2492,2423,2490,2428,2357,2427,2426,2360,2458,2360,2424,2421,2421,2360,2424,2491,2421,2427,2359,2422,2358,2424,2492,2360,2427,[2423,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14035,14096,14098,14099,14035,[14032,14738,13789],[14737,13790],[14673,13791],[14739,13792],[14673,13793],14034,14739,14738,14032,14035,14034,14035,14033,[14097,13602],[14099,13603],[14033,13604],[14098,13605],[14098,13606],14097,[14035,8443],[14035,8444],[13582,13840],[13645,13906],13646,13646,[13582,14095],14097,14096,[13582,13971,8563],[13517,8564],[13581,13904,8822],[14034,8823],[14096,8824],[14098,8825],[14099,8565],14098,14673,14673,14098,[14034,13854],[14096,13855],[14737,13856],14032,14097,14096,[13799,13840],[13736,13907],13799,[13799,13903],[14738,8570],[14033,8571],8694,8695,8696,8697,8698,[14675,8636],14035,[13800,14036],13800,13800,[13800,13967],14098,14737,14675,[14034,13725],[14035,13726],[14033,13727],[14674,13728],[14097,13729],14032,14673,14675,[13735,14036],13800,[13799,8757],[13799,13904,8760,13538],[14032,8761,13539],[14033,8758,13540],[14673,8759,13541],8628,[14034,8629],[14738,8565],14737,14099,14034,14611,14033,[14098,8570],[14739,8630],[14098,8631],[14673,8565],14034,14098,14096,14739,14675,[13736,14100],13799,[13735,13904],14099,14738,14096,[13800,13841],[13800,13842],[13735,13843],[13736,13844],13799,13799,13799,[13800,13904],[13799,13840,8507],8698,[14097,8699,13597],[14675,13598],[14739,13599],[14738,13600],[14738,13601],14674,14032,[14097,15437],15438,[14673,15439],14099,14034,14034,14673,14099,14034,14098,14035,14673,14033,14035,14035,[14032,8627],8628,[12909,8629],[12909,8565],[12909,13921],[12909,13922],[12909,13923],[12973,13924],12908,12972,12972,12909,[12973,8443],8698,[13799,12782,8699],13800,[13799,12713],[13800,12714],[13800,12714],12972,12972,12973,12909,[12972,8499],[12909,8500],[12908,13921],[12972,13922],[12973,13923],[12909,13924],12973,[12909,16757],[12909,16758],12973,12973,12972,12909,12973,12973,12909,12973,12908,12909,[13799,12714],[12973,16757],[13799,12974,16758],13800,13799,13799,13735,[13799,12842],12972,12972,12973,12973,[12973,8692],8693,8696,8697,8698,[13584,8699],13650,13649,13584,13586,13585,[13585,13197],[13586,13198],[13585,13199],13651,[13649,12679],[13651,12680],[13651,12681],13650,13649,13585,13649,13648,[13512,13393],[13641,13394],[13640,13395],[13640,13458],[13641,13711],[13641,13712],[13651,13449],[13584,13450],[13650,13451],13649,13651,13648,13650,13649,[13641,13715],[13512,13523],13640,13641,[13641,13391],[13648,13320],[13651,13321],[13584,13322],[13651,13323],[13650,13324],13650,[13584,13133],[13649,13134],[13587,13135],13649,13650,13651,13586,[13650,13133],[13587,13134],[13650,13135],13651,[13649,12623],[13586,12624],13650,13649,13587,13584,13648,13587,[13587,12743],12744,[13585,12745],[13650,12681],13586,13586,[13643,13460],13643,[13643,13583],13650,13584,13651,13648,13584,13586,[13584,12487],[13648,12488],[13585,12489],[13586,13256],[13584,13257],[13651,13258],[13585,13259],[13650,13260],13649,13648,[13643,13588],13643,13643,[13643,13391],[13585,12623],[13643,12624],13643,13643,13643,[13643,13520],[13643,13712],13585,13649,13585,[13643,13458],[13643,3687],[2423,3688],2360,2359,2422,[2359,2805],[2358,2806],[2357,2807],[3635,2361,2808],3323,[3701,2229],[3699,2169,4616],[3699,4617],[3699,4618],3701,[3324,2293],[3700,2486],[3323,2487],[3637,2488],2357,2358,2357,2360,[2359,4546],[2357,4547],[2421,4611],2423,[2360,2549],[3635,2486,2550],[3387,2487,2551],[3388,2488],2423,2422,2359,2423,5709,5710,5711,5712,5713,5714,[2360,5715],2424,[2357,3679],[2360,3680],2359,2423,2358,2424,2360,2359,[3323,2487],[3636,2488],[3700,2489],3699,[3699,2484],[3636,2485,2869],[3636,2486,2870],[3699,2487,2871],[3635,2488,2872],[3635,2489],3636,[3637,2293],[3388,2488,2869],[2358,2870],[2424,2871],[2424,2872],2421,[2359,3743],[2422,3744],[2358,3745],2363,2424,2357,2421,2360,2424,2422,2424,2423,2360,2360,[3635,2233],3635,3388,[3701,2420],2360,2422,[2358,2741],[2422,2742],[2423,2743],[2421,2744],2422,2423,2422,[2358,2805],[2421,2806],[2357,2807],[2424,2808],2357,2359,2423,2424,2424,[2357,2613],[2360,2614],[2360,2615],[3700,2425,2616],3323,3635,[3637,2293],2424,2423,2357,[2358,2805],[2422,2806],[2359,2807],[2422,2808],2360,[3701,2486],[3635,2487],[3699,2488],2424,[3388,2361],3700,3323,[3635,2229],2422,2358,2424,2357,2421,2423,2358,[2359,2677],[2421,2678],[2422,2679],[2359,2680],2357,2358,2357,2358,2359,2423,2421,2359,2357,2424,2358,2359,2424,[3637,2488],[3323,2489],3635,3387,3700,3636,3638,2357,2490,2422,2422,2360,2358,2423,2490,2491,2359,2492,2360,2357,2427,2422,2428,2358,2492,2427,2428,2423,2492,2428,2357,2423,2491,2490,2424,2424,2422,2427,2422,2358,2357,2423,2422,2428,2357,2492,2426,2490,2357,2427,2358,2359,2428,2491,2358,2422,2359,2490,2363,2424,2360,2422,2458,2491,2359,2490,2424,2357,2358,[2357,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14099,14737,14675,14673,14737,14098,[14034,13854],[14032,13855],[14035,13856],14099,14675,14673,14035,14034,14034,14098,14096,14099,[14032,13666],[14096,13667],[14097,13668],[14098,13669],[14099,13670],14032,[14034,8507],[14096,8508],14033,[13646,13908],13645,13646,[13646,14159],14034,[13645,14100],[13582,8627],8628,8886,8887,8888,8889,[14737,8629],[14674,8565],14738,14033,14099,14096,14096,14099,14096,14096,14033,14738,[13799,13908],13800,[13800,13967,8570],[14099,8634],8635,[14032,8758,16693],[14611,14480,8759,16694],[12300,8760],[12300,8761],[14032,14542,8762],14034,14609,14034,[13799,13907],13800,[13800,14031],14675,14097,14674,[14098,13789],[14034,13790],[14673,13791],[14675,13792],[14034,13793],14737,14099,14035,[13799,13971],13799,[13800,13839],[14096,13602],[14098,13603],[14098,13604],[14673,13605],[14034,8692,13606],8693,[14034,8436],14096,14737,14034,14097,[14035,8570],[14098,8571,13538],[8694,13539],[8695,13540],[14099,8629,13541],[14097,8630],[14032,8631],[14033,8565],14673,14739,[13800,13908],13800,[13799,13903],14099,14033,[14099,13538],[14099,13539],[14033,13540],[14033,13541],14674,[13799,13841],[13800,13842,8570],[13799,13843,8511],[14099,8633],[14096,8634],[14097,8572],[14097,13661],[14034,13662],[14035,13663],[14033,13664],[14675,13665],14673,14032,[14673,15501],[14674,15502],[14673,15503],14739,14034,14099,14034,14675,14738,14673,14032,14096,14097,14096,14674,14097,[14035,8692],8693,[12973,8436],[12908,13985],[12908,13986],[12908,13987],[12973,13988],12973,12973,12973,12973,[12909,8443],[12908,8444],[13799,12846],13736,[13799,12777],12909,12973,12908,12973,12909,[12908,8308],[12909,8309],[12909,8373],[12972,13985],[12909,13986],[12972,13987],[12973,13988],12909,12908,[12973,8245],[12972,8249],[12908,8246],[12908,8250],12973,12972,12972,12908,12972,12972,12973,12908,12972,12909,[13735,12781],13799,13799,13800,13799,[13799,12842],12909,12973,12909,12973,[13800,12974,8757],[13799,13391,8760],[13585,8761],[13584,8762],13586,13651,13586,13649,13651,13584,[13650,13261],[13648,13262],[13649,13263],13650,[13586,12743],12744,[13649,12745],[13650,12681],13587,13651,13648,13585,13585,13651,13651,[13640,13652],13640,13641,[13576,13711],[13576,13715],13651,13584,13648,[13640,13714],[13512,13715],[13513,13716],13641,13640,13641,13512,[13576,13711],[13512,13712,13384],[13650,13385],[13586,13386],[13584,13387],[13586,13388],13649,[13585,13197],[13648,13198],[13648,13199],13649,13650,13584,13648,[13650,13197],[13587,13198],[13584,13199],13587,[13650,12559],[13585,12560],13584,13649,13585,13586,13648,[13586,12943],[13648,12944],[13587,12808],12809,[13585,12552],13650,13584,[13643,13588],13643,[13643,13711],[13643,13712],13651,13648,13649,13650,13586,[13586,12551],[13649,12552],13648,[13650,13320],[13585,13321],[13649,13322],[13650,13323],[13586,13324],[13643,13714],[13643,13715],[13643,13523],13643,13643,[13643,13521,12686],[13651,12687],[13393,12688],[13643,13394],[13643,13395,13128],[13643,13396,13129],[13643,13130],[13643,13131],[13643,13521,13132],13648,13650,13651,[13643,13392,3623],[2359,3624],2358,2357,2360,[2359,2869],[2360,2870],[2360,2871],[2358,2872],[3635,2165],2422,2359,[3699,2165,4745],[3636,2165,4746],[3388,2231],3636,3699,3635,3700,[3388,2293],2358,[2358,4483],[2423,4487],[2358,4610],[2357,4611],2360,2424,[3636,2296,2613],[3635,2614],[3699,2615],[3388,2616],[3699,2294],[3699,2485],[3324,2486],[3636,2487],[3700,2488,5773],[3701,2295,5774],[3323,5775],[3635,2293,5776],[2360,5777],[2359,5778],[2421,5779],2423,[2357,3743],[2421,3744],[2357,3745],2359,2423,[3701,2487],[3387,2488,2549],[3635,2295,2550],[3635,2551],3701,3388,3699,3636,3387,3637,3636,3701,3323,3699,3701,3323,[3637,2293],[3635,2487],[3701,2488],[3636,2485],[3701,2486,3807],3808,[2421,3809],[2360,3812],[2359,3813],[2360,3810],[2359,3811],[2357,3745],2424,2422,2422,2424,2360,2421,[3323,2297],3701,[3701,2229],2360,2358,2360,[2421,2805],[2421,2806],[2423,2807],[2422,2808],2360,2421,[2359,3491],[2421,2869],[2422,2870],[2424,2871],[2422,2872],2358,2421,2424,2358,2358,[2421,2677],[2423,2678],[2423,2679],[3323,2425,2680],3699,3635,3637,[3699,2294],2422,2424,[2358,2869],[2421,2870],[2357,2871],[3699,2487,2872],[3701,2295],3701,[3701,2549],[3323,2550],[3699,2484,2551],[3387,2296],3323,[3323,2164],2359,2423,2360,2422,2359,2357,2358,2422,[2421,2741],[2423,2742],[2359,2743],[2423,2744],2421,2423,2422,2357,2358,2360,2423,2423,2358,2358,[3636,2488],[3636,2487],[3388,2296],3323,3701,3387,3635,3636,3637,3702,2421,2360,2360,2424,2426,2359,2421,2360,2426,2424,2358,2359,2428,2357,2359,2491,2490,2358,2358,2357,2490,2492,2422,2362,2428,2428,2358,2490,2424,2357,2427,2491,2424,2427,2421,2492,2359,2426,2421,2424,2428,2426,2360,2423,2522,2491,2424,2358,2358,2492,2490,2427,2423,2492,2357,2491,2490,2358,2358,2491,2492,2421,[2421,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14099,14674,14738,14737,14611,14674,14098,14099,14098,14035,14096,14098,14098,14035,14099,14034,14034,14032,[14034,13730],[14033,13731],[14033,13732],[14034,13733],[14098,13734],14033,[14096,8378],[14096,8314],[14098,8315],[13582,13972],13646,13581,13646,[13582,13968],[13646,14164],13582,[13646,13904,8757],[14035,8950],[14034,8951,13538],[14098,8952,13539],[14096,8953,13540],[8693,13541],[14032,8564],[14673,8565],14097,[14098,14865],14035,14033,14034,14033,14737,14033,14097,[13800,13972],13800,[13799,14031,8443],8698,[14738,8699],[14096,16757],[14097,14544,16758],12300,12300,[14096,14606],[14098,14607],[14737,14223],[14739,14224],[13736,14100,14543],[13799,14293],[13800,14095],14034,14675,14738,14675,[14032,13854],[14673,13855],[14674,13856],14099,14098,14098,[13799,14164],13799,13800,[13800,14095],[14033,13666],[14098,13667],[14035,13668],[14738,13669],[14032,13670],[14099,8435],[14675,8436],14096,14034,14098,[14738,8570],[14034,8634],[8635,13602],[14739,8758,13603],[14673,8759,13604],[8693,13605],[8694,13606],8695,[14673,8629],[14034,8565],14096,[13799,13972],13799,[13800,13967],14674,14099,[14096,13602],[14674,13603],[14673,13604],[14096,13605],[14673,13606],[14096,8570],[14034,8571],8575,8697,8698,[14099,8636],[14034,13725],[14033,13726],[14035,13727],[14738,13728],[14099,13729],14032,14673,14034,14675,14673,14032,14096,14800,14673,14675,[14674,13534],[14675,13535],[14674,13536],14675,14739,14035,14673,14033,14097,[14097,8499],[12973,8500],[12972,14049],[12973,14050],[12909,14051],[12973,14052],12972,12909,12909,12973,[12972,8507],[12973,8508],[13800,12910],13800,[13799,12841],12972,12973,12909,[12973,8245],[12972,8246],[12909,8372],[12909,8373],12972,[12909,14049],[12972,14050],[12972,14051],[12909,14052],12972,[12972,8308],[12972,8309],[12909,8313],[12972,8310],[12973,8314],[12972,8315],12973,[12909,13921],[12973,13922],[12973,13923],[12909,13924],12973,12909,12908,12908,12973,[13800,12714],[13800,12718],13799,13799,13800,[13799,13033],[13800,13034],12909,12973,[13800,13038],[13800,13711],13650,13585,13650,13650,13586,13584,13587,13648,[13587,13325],[13650,13326],[13648,13327],13651,13648,[13651,12808],12809,[13587,12552],13648,13649,13584,13584,13651,[13649,12427],13585,13651,[13577,13392],[13641,13458],13512,13513,[13641,13647],13650,[13641,13522],13512,13512,13640,13513,13640,[13513,13391],[13640,13458],13640,13576,[13641,13520,13449],[13512,13713,13450],[13641,13714,13451],[13641,13522],[13576,13711],[13587,13261],[13649,13262],[13651,13263],13585,13585,13585,13585,[13651,13261],[13649,13262],[13649,13263],13586,[13651,12623],[13585,12624],13587,13648,13649,13587,13650,[13586,13007],[13649,13008],13587,[13648,12615],[13586,12616],13650,13649,13587,[13643,13458],13643,13643,[13643,13647],13648,13584,13585,13650,[13649,12615],[13586,12616],13587,[13650,13384],[13586,13385],[13650,13386],[13585,13387],[13643,13652,13388],13643,13643,13643,[13643,13457],[13643,13392,12686],[13643,13459,12750],12751,[13648,12752],13584,[13586,13192],[13649,13193],[13643,13458,13194],[13643,13195],[13643,13196],[13643,13455],13650,13586,[13651,3687],[2358,3688],2423,2422,2360,2424,2359,2423,2358,2358,2422,2424,[2422,4616],[2358,4552],[2423,4553],[3636,2166],[3388,2167],[3636,2168],[3636,2169],3387,[3637,2420,4546,2549],[2358,4547,2550],[2360,4551,2551],[3635,2485,4611],[3700,2486],[3635,2487],[3699,2489],[3387,2677],[3637,2164,2678],[3324,2165,2679],[3323,2232,2680],3324,3324,3636,3699,3701,3323,3387,3700,[3701,2420],2423,2422,2358,[2421,3807],3808,[2421,3809],[2424,3745],[3323,2425],3636,[3699,2613],[3636,2614],[3701,2229,2615],[3699,2169,2616],3700,3323,3323,3324,3323,[3700,2230],[3699,2165],[3635,2166],[3636,2167],[3388,2168],[3388,2231],3323,3636,3701,3324,3700,[3701,2293,3872],3873,3876,3877,3874,3875,[2358,3809],[2360,3810],[2359,3811],[2357,3745],2359,2359,[2358,2170],[3635,2361],3635,[3635,2420],[2424,3750],[2422,3810],[2424,3811],[2424,3745,2869],[2422,2870],[2359,2871],[2358,2872],2359,[2421,3750],[2423,3555],2421,2423,2360,2360,[2357,3492],2424,2424,2423,2424,[2422,2741],[2422,2742],[2422,2743],[2422,2744],[3699,2165],[3636,2169],3701,3323,[3699,2484],[3323,2486],[3388,2487],[3637,2488],[3700,2295],3637,3636,3324,[3323,2164,2613],[3701,2231,2614],[3699,2615],[3324,2616],3700,[3700,2293],[3699,2486],2360,2422,2424,2357,2421,2357,2358,[2358,2805],[2424,2806],[2423,2807],[2358,2808],2357,2360,2421,2359,2423,2357,2358,2421,2358,[3323,2295],3388,3636,3637,3699,3388,3323,[3699,2230],[3700,2165],[3388,2168],[3766,2169],2358,2490,2426,2490,2357,2359,2358,2358,2423,2422,2422,2421,2358,2492,2359,2357,2422,2490,2424,2421,2358,2427,2427,2428,2357,2491,2421,2426,2491,2426,2492,2358,2364,2358,2428,2421,2358,2424,2357,2422,2422,2428,2424,2357,2490,2426,2428,2423,2490,2360,2492,2359,2357,2491,2424,2357,2359,2358,2490,2426,2359,2426,[2422,3743],3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14097,14675,14098,14096,14033,14032,14035,14033,14800,14738,14098,14098,14035,14098,14096,14096,14097,14096,[14034,13794],[14035,13795],[14035,13796],[14097,13797],14096,14097,14096,[14032,8378],[14098,8379],[13517,14036,8380],13646,13581,13646,13645,13582,13645,[13646,13903],14097,[14098,13602],[14034,13603],[14034,13604],[14738,8757,13605],[8628,13606],[14097,8436],14097,14099,14034,14033,[14674,13538],[14673,13539],[14032,13540],[14098,13541],14737,[13799,14036],13800,[13799,14095,8507],[14096,8508],14034,14033,14674,[14032,14416],12300,12302,12300,12300,12300,12300,[13799,13840,14606],[14674,14607],[14098,14543],[14099,14293],14737,14738,14033,14737,14737,14739,14097,[13735,13908],13800,13800,[13800,13904],14032,[14099,13730],[14034,13731],[14097,13732],[14034,13733],[14673,13734],[14096,8499],[14674,8500],14099,14737,[14675,16693],[14739,8443,16694],8698,[14675,8699,13666],[14035,13667],[14737,13668],[14675,8757,13669],[14675,8758,13670],[14737,8759],8693,[14097,8436],14739,[13799,14036],13735,[13799,14031],14739,14675,[14096,13666],[14097,13667],[14096,13668],[14097,13669],[14033,8570,13670],[14035,8634],8635,[14032,14480,8639],[12300,8761],[14675,14606,8762],[14737,14543],[14034,14293,13789],[14099,13790],[14737,13791],[14675,13792],[14035,13793],14032,14737,14674,14673,14098,14099,14738,14033,14032,[14673,13597],[14035,13598],[14739,13599],[14673,13600],[14098,13601],14098,14098,14034,14739,[14034,8308],[12909,8309],[12972,8373],[12909,14113],[12909,14114],[12909,14115],[12908,14116],12908,12973,12908,12972,[13799,13036,8378],[13799,13037,8314],[13800,13038,8315],13799,[13800,12905],12972,12973,[12909,8308],[12973,8309,16693],[12908,8310,16694],[12908,8373],12973,12909,[12908,14113],[12908,14114],[12973,14115],[12973,14116],[12973,8371],[12908,8372],[12972,8373],12909,12973,[12909,8378],[12909,8379],[12908,8380],[12908,13985],[12973,13986],[12973,13987],[12972,13988],12972,12908,12908,12908,12909,12909,[13800,12974],13800,13799,13799,13735,13800,[13799,12843],[13800,12845],13799,13800,[13800,13455],13651,13649,13651,13587,13586,13586,13651,13586,13586,13648,13587,13650,13585,[13651,12551],[13648,12616],13585,[13584,12943],[13651,12944],13649,[13648,12686],[13585,12491],13649,13587,13585,13587,[13512,13396],13512,[13640,13520],[13640,13716],13640,13640,[13640,13457],[13512,13392],[13641,13396],13640,[13577,13520],[13512,13712],[13512,13392],[13641,13396],13512,13577,13512,13512,13512,[13512,13647,13325],[13584,13326],[13650,13327],13650,13584,13586,13584,[13587,13325],[13586,13326],[13648,13327],[13649,12686],[13650,12687],[13586,12688],13649,13650,13649,13587,13648,13650,13648,[13650,12424],[13585,12425],[13648,12489],13651,13648,13651,[13643,13652],13643,13643,[13643,13520],[13643,13712],13587,13650,13585,[13587,12679],[13651,12680],[13584,12681],13649,[13584,13449],[13643,13714,13450],[13643,13715,13451],[13643,13716],13643,[13643,13391],[13643,13392],13587,[13648,12559],12814,[13649,12815],13587,13651,[13648,13256],[13649,13257],[13651,13258],[13643,13459,13259],[13643,13260],[13643,13519],13586,13651,[13586,3558],[13648,3494],[2424,3495],2358,2360,2357,2522,2421,2424,2423,2358,2359,2683,[2684,4616],[2358,4617],[2357,3221230214],2421,2359,[3700,2425],[3636,3221230213],[3636,2484,4610,2613],[3323,2485,4611,2614],[3699,2296,2615],[3324,2616],3323,3636,3637,[3324,2230,2741],[2357,2742],[2359,2743],[2423,2744],[3637,2165],[3637,2166],[3635,2167],[3700,2168],[3700,2232],3700,3387,3699,[3701,2484],[3635,2485],2357,2359,2359,[2360,3872],3873,[3635,2488,3616],[3637,2489],3387,[3637,2164,2677],[3324,2165,2678],[2421,2679],[3699,2425,2680],3699,3699,3700,3699,[3635,2164],2421,2359,2358,2358,2422,2421,[3637,2166],[3387,2167],[3637,2169],3635,3700,3700,[3699,2420,3937],[2358,3940],[2422,3941],[2424,3938],[2424,3939],3873,3874,3875,[2359,3744],[2357,3745],2424,[3699,2488],[3388,2489],3699,[3699,2484,3750],[3701,2487,3751],3874,3875,[2424,3809],[3323,2485,3810],[3324,2486,3811],[3701,2487,3812],[3387,2488,3813],[2360,3751],[2421,3619],2423,2421,2421,2421,[2360,3556],[2357,3745],[2360,2235],2422,2422,[2360,2805],[2360,2806],[2422,2807],[2422,2808],2357,2422,[3701,2165],[3636,2232],3699,3637,3635,3387,[3699,2230],[3635,2166],[3324,2167],[3323,2168],[2424,2677],[2421,2678],[3700,2166,2679],[3701,2167,2680],[3700,2168],[3635,2169],3636,[3388,2293],[3700,2485],2424,2359,2522,2360,2424,[2422,2869],[2424,2870],[2358,2871],[2360,2872],2423,2357,2421,2422,2423,2422,2421,2358,[3323,2489],3637,3635,[3635,2230],[3637,2165],[3636,2232],3700,[3635,2229],2358,2357,2422,2360,2424,2423,2424,2424,2360,2360,2423,2421,2491,2426,2422,2426,2359,2424,2357,2421,2423,2359,2360,2427,2422,2427,2427,2427,2424,2424,2424,2360,2428,2426,2492,2427,2490,2427,2360,2360,2491,2364,2422,2422,2426,2357,2428,2421,2424,2358,2424,2422,2358,2427,2492,2426,2426,2424,2357,2360,2424,2423,2426,2426,2424,2427,[2360,3807],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14099,14097,[14675,13534],[14099,13535],[14099,13536],14675,14673,14674,14097,14033,14674,14609,[14737,13534],[14097,13535],[14032,13536],14032,14610,14099,[14096,13858],[14033,13859],[14033,13860],[14034,13861],14033,14096,14097,14099,[14032,8443],[14096,8444],[13581,13907],13645,13517,13645,13517,13645,[13582,14031],14097,[14096,13666],[14097,13667],[14034,13668],[14675,13669],[14096,8435,13670],[14096,8436],14738,14034,14097,14673,[14738,13602],[14032,13603],[14739,13604],[14032,13605],[14739,13606],14739,[13800,13840,8570],[14738,8571],[14738,8572],14096,14673,14674,14737,[14738,14415],[14097,14415],[14034,14415],[14738,14415],[14034,14416],12300,12301,12300,[14738,14414],14674,14673,14673,14032,14098,14096,14674,14096,[13799,13972],13800,[13735,13839],14035,14673,[14675,13794],[14674,13795],[14035,13796],[14032,13797],14032,[14096,8563],[14032,8564],[14674,8565],14800,[14675,16757],[14096,8507,16758],[14739,8508],[14035,13730],[14097,13731],[14035,13732],[14738,13733],[14737,13734],14033,[14673,8435],[14096,8436],[13800,14163],[13800,13971],13799,[13800,14095],14737,14098,[14673,13730],[14674,13731],[14033,13732],[14033,13733],[14675,8507,13734],8698,[14034,8699,16697],[14096,14480],12300,12300,12302,[14097,14478],[14737,13854],[14739,13855],[14098,13856],14739,14033,14035,14098,14032,14098,14737,14034,14035,14675,[14096,13661],[14035,13662],[14098,13663],[14034,13664],[14737,13665],14738,14033,14098,[14032,8371],[12908,8372,16693],[12973,8373,16694],12973,[12972,14177],[12908,14178],[12973,14179],[12972,14180],12972,12909,12909,[13800,12844],13799,[13799,8378],[13799,8379],[13799,12779,8249],[12972,8249],[12908,8249],[12908,8249],[12973,8372],[12908,8373,16757],[12973,16758],12972,12909,12909,[12972,14177],[12908,14178],[12909,14179],[12909,14180],[12908,8499],[12973,8500],12972,12972,12972,12909,[12972,8443],[12909,8444],[12972,14049],[12972,14050],[12909,14051],[12973,14052],12908,12972,12908,12972,12908,12909,12972,[13800,12780],13800,13799,13799,13800,13800,13800,13800,13800,[13800,13519],13651,13651,13586,13649,13584,13650,13585,13586,13649,13651,13650,13587,13587,[13650,12679],[13584,12680],[13648,12681],[13648,13007],[13651,13008],[13650,12686],[13648,12687],[13587,12555],13587,13649,13649,13586,[13641,13652],13512,13640,[13512,13391],[13640,13458],[13512,13456],13650,13650,13649,[13640,13458],13512,13640,[13576,13647],13650,[13640,13458],13641,13640,13512,[13641,13456],13648,13648,13585,13585,13649,13648,13584,13584,13650,[13651,12686],[13585,12750],12751,[13587,12752],13648,13648,13586,13650,13649,13585,[13650,12361],[13587,12488,13128],[13584,12489,13129],[13651,13130],[13650,13131],[13586,13132],13648,13585,[13643,13392],[13643,13396],13643,13643,[13643,13455],13649,13586,[13586,12743],12744,[13584,12745],[13643,13715,12681],[13643,13522],13643,13643,13643,[13643,13457],13648,13584,13651,[13648,12623],[13584,12624],13650,13585,13649,[13587,13320],[13651,13321],[13649,13322],[13643,13652,13323],[13643,13324],[13643,13583],13648,13587,13586,[13650,3558],[13586,3559],[2358,3560],2424,2360,2422,2360,2423,2421,2357,[2424,2549],[2747,2550],[2748,2551],[2360,4681],[2360,3221230150],2358,2357,[3636,2233],[3324,3221230149],[3636,4674,2677],[3699,2678],[3635,2230,2679],[3701,2165,2680],[3699,2166],[3388,2167],[3701,2168],[2358,2805],[2422,2806],[2422,2807],[2358,2808],2359,2421,2422,2358,2360,[3701,2165],[3637,2231,2549],[3637,2550],[3635,2551],3700,[3699,2484],[3699,2486],2357,[3636,2425],[3323,3615],[3637,3616],3700,[3635,2229],[2358,2741],[2423,2742],[2421,2743],[2358,2744],[3323,2165],[3324,2166],[3636,2167],[3699,2168],2422,2359,2360,2357,2359,2358,2424,2358,2358,2421,[3699,2231,5199],[3637,5200],3700,[3324,2484],[3323,2487],[3636,2488],2358,2423,[2423,3937],[2359,3938],[2422,3939],3808,[3701,2488,3809],[3636,2295,3810],[3636,3811],[3636,3812],[3700,3813],[3636,3814],3815,[3701,3938,2549],[3324,2484,3939,2550],[3636,2295,3873,2551],3874,3875,3876,3877,3815,[3635,2487,3683],[3701,2488],2422,2360,2359,[2360,3620],[2422,3809],[2359,3810],[2422,3811],[2424,3810],[2422,3811,2869],[2357,3745,2870],[2421,2871],[2423,2872],2422,2424,2423,[3701,2296],3635,3637,[3323,2164],[3323,2165],2358,2359,2423,2358,[2358,2741],[2360,2742],[2424,2743],[2421,2744],2424,[3635,2425],3388,3636,3387,[3637,2228],2423,2358,2359,2359,2422,2357,2423,2357,2360,2424,2357,2359,2359,2360,2423,[3323,2233],3700,[3637,2164],[3701,2165],2359,2423,2360,[3701,2165],2423,2359,2422,2422,2422,2424,2359,2359,2423,2490,2357,2491,2491,2421,2421,2424,2423,2357,2490,2426,2428,2357,2357,2426,2358,2428,2423,2360,2424,2490,2360,2422,2422,2427,2522,2358,2428,2491,2421,2360,2427,2357,2490,2426,2358,2490,2427,2426,2358,2428,2427,2423,2422,2360,2428,2491,2428,2421,2359,2422,2427,2423,2359,2426,2359,2422,2421,2492,[2421,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14099,[14737,13597],[14098,13598],[14098,13599],[14737,13600],[14099,13601],14675,14096,14738,14739,14034,[14737,13597],[14098,13598],[14033,13599],[14033,13600],[14034,13601],14099,14034,14033,14035,14099,14096,14099,14096,14034,14033,[14097,8507],[14034,8508],14033,[13645,13840],[13645,13844],13517,13582,13645,[13645,14159],14033,[14098,13730],[14035,13731],[14097,13732],[14675,13733],[14099,8563,13734],[14098,8564],[14739,8565],14032,14737,14738,[14032,13666],[14675,13667],[14097,13668],[14673,13669],[14739,13670],[14674,8570],[14096,8634],8635,[14099,8636,13534],[14674,13535],[14674,13536],14098,14032,14096,14737,14096,14673,14610,[14674,14415],[14674,14415],[14035,14415],14739,14098,14099,14034,14035,14739,14035,14737,14034,[13799,14036],13800,[13799,14159],[13800,14162],14034,[14096,13858],[14737,13859],[14673,13860],[14097,13861],14674,[14738,8627],8628,[14737,8629],[14034,8630],[14739,8631],[14737,8571],[14099,8572],[14096,13794],[14675,13795],[14099,13796],[14033,13797],14097,14032,[14034,8499],[13800,13908,8500],13800,13799,[13799,13839],14737,14033,14738,[14034,13794],[14674,13795],[14096,13796],[14739,8570,13797],[14033,8571],[14674,8572],[14035,16761],[14034,14544],12300,12300,12300,[14032,14542],14032,14739,14737,14096,14096,14097,14098,14034,14737,14674,14035,14739,14035,[14035,13725],[14032,13726],[14099,13727],[14033,13728],[14099,13729],14673,14035,14737,[14097,8435],[12973,8436,16757],[12909,16758],12973,[12909,14241],[12909,14242],[12973,14243],[12973,14244],12973,12909,[13799,12974],13800,[13800,12778],[13799,12715],[13800,12717,8378],[12908,8313],[12973,8313],[12973,8313],[12973,8313],[12973,8373],12973,12973,12972,12908,12908,12972,[12973,14242],[12909,14243],[12908,8308,14244],[12973,8309],[12908,8373],12973,12908,12909,12908,[12908,8443],[12909,8444],[12908,14113],[12909,14114],[12908,14115],[12973,14116],12909,12972,12972,12909,12973,12908,12972,12909,[13800,12714],[13799,12781],13800,13799,13799,13800,13799,13736,[13800,13583],13585,13584,13586,13586,13587,13584,13586,13586,13651,13586,13649,[13651,12996],13650,[13586,12743],12744,[13648,12745],[13587,12746],[13648,12747],[13651,12750],12751,[13586,12619],13585,13585,13648,[13640,13715],[13640,13716],13512,13512,[13512,13647],13587,13586,13650,13584,13648,13649,[13640,13396],13640,[13641,13520],13649,13584,[13640,13393],[13512,13394],[13512,13395],13649,13648,13649,13584,13587,13648,13585,13584,13648,13586,[13651,12559],12814,[13648,12815],13584,13651,13584,13648,13587,13584,[13585,12487],[13585,12488],[13651,12489,13192],[13651,13193],[13586,13194],[13584,13195],[13585,13196],13650,13651,13650,[13643,13652],13643,13643,[13643,13583],13651,13648,13650,[13586,12808],12809,[13643,12552],13643,13643,[13643,13456],[13643,13392],13585,13648,13648,[13651,12686],[13649,12687],[13586,12688],13649,13586,13650,[13584,13384],[13587,13385],[13586,13386],[13643,13716,13387],[13643,13388],[13643,13647],13648,13584,13587,13584,[13585,3623],[2357,3624],2359,2360,2421,2422,2421,2360,2423,[2422,2613],[2359,2614],[2360,2615],[2422,4616,2616],[2359,3221230086],2422,2360,[3700,2297],[3636,3221230085],[3700,2229,4611,2741],[3701,2165,2742],[2423,2743],[2359,2744],2360,2424,2422,[2424,2869],[2421,2870],[2357,2871],[2360,2872],2422,2421,2421,2423,2358,2357,[3323,2425,2613],[3324,2614],[3323,2615],[3700,2616],3635,3699,[3701,2293],[3637,2489],[3323,3679],[3700,2229,3680],[3635,2165],2358,[2360,2805],[2421,2806],[2359,2807],[2423,2808],2424,2358,2424,2424,2360,2424,2360,2424,2358,2422,2424,2360,2422,[2357,5262],[2360,5263],[3324,2165,5264],[3636,2232,5265],3700,3636,3699,[3323,2293],2360,[3700,2489],[3387,2294],[3701,2295],[3700,3872],3873,3874,3875,3876,3877,3878,[3636,3879],[3635,2164,2613],[3637,2165,2614],[3637,2166,3937,2615],[3323,2167,3938,2616],[3636,2168,3939],[3637,2231,3940],[3699,3941],[3700,3879],3323,3323,[3388,2484],[3700,2488],[3636,2487],[3637,2487,3684],3873,3874,3875,3874,3875,[2423,3744],[3699,2485,3745],[3636,2486],[3635,2487],[3635,2488],[3701,2489],[3700,3750],[3700,3810],[3636,2229,3811],[2357,3745],2423,2421,2421,2362,2424,[2357,2805],[2422,2806],[2423,2807],[2358,2808],2359,2423,[3637,2231],3636,3701,[3387,2292],2360,2421,2421,2360,2423,2424,2422,2421,2681,2682,2422,2358,2359,2360,2422,[3636,2297],3388,[3323,2228],2422,2359,2421,2424,2360,2421,2424,2423,2357,2358,2421,2423,2358,2428,2491,2359,2359,2359,2360,2422,2427,2427,2423,2426,2492,2423,2490,2426,2427,2423,2423,2423,2490,2491,2424,2492,2359,2360,2458,2490,2359,2424,2492,2427,2427,2359,2358,2360,2426,2427,2490,2427,2357,2358,2363,2424,2359,2424,2358,2360,2428,2358,2357,2423,2492,2360,2458,2423,2422,2360,2490,2427,2427,2359,[2422,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14034,[14096,13661],[14033,13662],[14035,13663],[14739,13664],[14738,13665],14096,14097,14675,14099,14675,[14673,13661],[14098,13662],[14099,13663],[14098,13664],[14033,13665],14097,14099,14033,14097,14034,14034,14032,14096,14033,[14035,8570],[14096,8571],[14035,8572],14096,[13645,14163],[13582,14164],[13582,13904],[13582,13906],13581,13646,[13645,14095],[14033,13794],[14098,13795],[14099,13796],[14096,13797],[14675,8627],8628,[14739,8629],[14035,8630],[14801,8631],[14034,8565],[14674,13730],[14737,13731],[14675,13732],[14034,13733],[14032,13734],[14739,8443],8698,[14738,8699,13597],[14096,13598],[14739,13599],[14034,13600],[14739,13601],14097,14673,14675,14034,14737,14096,14099,14034,14099,14035,14035,14739,14034,[14097,14283],[14097,14284],14673,14034,14675,14675,[13799,13906],13799,13800,[13799,13968],[13799,14162],14098,14033,14034,14674,14096,[14099,8692],8693,8694,8695,8635,[14738,8636],[14033,13858],[14097,13859],[14673,13860],[14096,13861],14035,14098,[14738,8563],[13800,14036,8564],[13736,8565],[13799,13904],14097,14738,14097,14675,[14099,8570,13858],[14738,8630,13859],[14097,8631,13860],[14673,8634,13861],8635,[14097,8636],14674,14738,[14739,14416,14666],[12300,14667],12300,[14675,14606],[14099,14607],[14737,14607],[14032,14543],[14033,14293],14099,14032,14737,14033,14674,14032,14098,14099,14097,[14035,13789],[14033,13790],[14098,13791],[14035,13792],[14032,13793],14739,14034,14673,[14034,8499],[12909,8500],12909,12972,12908,12972,12973,12909,12972,12972,12972,[13800,12714],12973,12908,12973,12908,12973,12973,12973,12908,12908,12908,12973,12973,12909,12909,[12909,8245],[12972,8246],[12909,8372],[12972,8373],12909,12972,12972,12973,12973,[12909,8507],[12973,8508],[12973,14177],[12908,14178],[12909,14179],[12908,14180],12909,12908,12973,12972,[12908,8312],12909,12909,12909,12972,[13800,12974],13799,13799,13736,13799,13799,[13799,13456],13648,13584,13584,13584,13649,13650,13648,13648,13587,13650,13587,13649,[13648,13060],13585,13585,[13648,12808],12809,12810,12813,12814,[13585,12815],13586,13586,[13576,13715],[13641,13716],13512,13640,13512,[13512,13456],13649,13585,13584,13586,13650,13649,13651,[13513,13460],13512,13641,[13640,13521],13648,13650,13584,13586,13650,13648,13651,13651,13585,13585,13584,13587,13650,13585,[13585,12623],[13584,12624],13648,13586,13650,13585,13651,13587,13587,[13585,12551],[13648,12552],[13649,13256],[13587,13257],[13587,13258],[13586,13259],[13648,13260],13650,13586,13648,13585,[13643,13459],13643,[13643,13520],[13643,13713],13651,13584,13649,[13587,12551],[13643,13392,12616],[13643,13393],[13643,13394],13585,13651,13649,13586,[13584,12686],[13587,12750],12751,[13651,12752],13585,13648,13651,13586,[13585,13449],[13643,13523,13450],[13643,13451],[13643,13456],13648,13649,13648,13586,13648,[13587,3687],[2359,3688],2358,2358,2423,2421,2358,2360,2424,[2359,2677],[2424,2678],[2423,2679],[2360,2680],[2359,3221230022],2424,2360,[3387,2361],[3637,3221230021],[3637,2228,2805],[2424,2806],[2359,2807],[2359,2808],2359,2360,2358,2422,2421,2357,2357,2358,2357,2360,2422,2421,2424,[2424,2677],[3387,2165,2678],[3701,2169,2679],[3700,2230,2680],[3635,2169],3388,3636,[3699,2164,3488],[3323,2165,3489],[2423,3553],2424,2360,[2357,2869],[2422,2870],[2364,2871],[2360,2872],2358,2423,2357,2360,2421,2359,2423,2424,2357,2423,2360,2422,[2423,5325],[2358,5326],5327,5328,[2424,5329],[3637,2231,5330],3701,3323,3323,[3700,2420],[3637,2231],3700,3387,3324,[3637,3937],[3636,2420,3938],[2422,3939],[2359,3940],[2422,3941],[2359,3942],[3636,2165],[2357,2677],[2359,2678],[2358,2679],[2421,2680],2421,2360,[3323,2165],[3701,2231],3636,[3387,2549],[3635,2550],[3324,2551],3700,3700,[3387,2293,3937],[3635,2485,3938],[3636,2486,3939],[3323,2487,3938],[3388,2488,3939],3808,[3701,3809],[3635,3810],[3636,3811],[3637,3812],[3324,3813],[3635,3814],3874,3875,[2358,3809],[2359,3745],2358,2421,2360,2421,[2423,2869],[2359,2870],[2421,2871],[2360,2872],2360,2421,2360,[3637,2232],3637,[3636,2356],2358,2357,2422,2421,2359,2358,2359,2357,2745,2746,2357,2357,2424,2358,2360,[3637,2361],3699,[3701,2292],2360,2357,2421,2421,2424,2555,2556,2360,2357,2359,2359,2360,2423,2360,2421,2424,2426,2360,2491,2422,2492,2490,2359,2422,2421,2358,2360,2424,2421,2422,2426,2358,2359,2423,2423,2428,2359,2423,2522,2421,2360,2360,2357,2491,2421,2358,2491,2426,2426,2492,2427,2490,2427,2491,2424,2421,2427,2423,2490,2458,2422,2427,2423,2427,2490,2358,2427,2358,2426,2426,2490,2426,2422,2422,[2359,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14096,[14738,13725],[14738,13726],[14737,13727],[14738,13728],[14099,13729],14675,14673,14035,14675,14674,[14096,13725],[14096,13726],[14096,13727],[14032,13728],[14097,13729],14034,14611,14034,14099,14096,14099,14098,14096,[14099,8570],[14035,8634],8635,[13517,14162,8636],[13581,13971],13646,13581,[13646,14095],14032,[13645,13844],13581,[13646,13968],[14035,13858],[14098,13859],[14034,13860],[14737,13861],14033,[14675,8692],8693,8694,8695,[14034,8629],[14032,8565,13794],[14099,13795],[14739,13796],[14675,13797],14739,[14032,8507],[14099,8508],[14673,13661],[14675,13662],[14099,13663],[14099,13664],[14675,13665],14097,14098,[14096,9842],[14035,9843],[14032,9844],14034,14035,14098,[14033,8570],[14097,8630],[14035,8631],[14035,8565],14098,[14099,14347],[14099,14348],14033,[14032,8311],14034,14035,14097,[13800,13906],13800,13736,13799,[13800,13968],14033,14611,14097,14099,14032,[14738,8757],[14098,8758],[14099,8759],[14033,8699],14032,14738,14737,14674,14099,14035,14675,[14098,8627],8628,[13800,13840,8629],[14033,8565],14034,14033,14739,[14033,8570],[14032,8571],8694,8695,8698,[14097,8699],14737,14673,14675,[14737,14730],[14034,14415,14731],[14737,14416,14732],12300,12300,12301,12300,[14096,14478],[14738,14865],14673,14737,14035,14033,14032,14096,14675,14737,14097,[14099,13854],[14674,13855],[14097,13856],14099,14035,14737,14032,[14034,8563],[12908,8564],[12972,8565],12909,12973,12972,12973,12972,12972,12908,12908,12972,12908,12973,12909,12972,12972,[12973,16693],[12973,16694],12973,[12909,13921],[12973,13922],[12908,13923],[12908,13924],12972,[12973,8371],[12908,8372],[12973,8310],[12908,8373],12908,12908,12973,[12908,8570],[12909,8630],[12908,8565],[12972,8378],[12909,8314],[12909,8315],[12972,14242],[12908,14243],[12972,14244],12909,12908,12908,12972,[12972,8376],[12972,8565],12909,12972,12909,12972,[13799,12718],13800,13800,13800,13799,[13800,13647],13586,13648,13649,13648,13649,13585,[13577,13714],[13512,13715],13649,13651,13587,13648,13586,13584,13586,13651,[13649,12873],[13651,12874],[13587,12877],[13584,12878],13587,13585,[13512,13460],13641,13641,[13512,13391],[13512,13393],[13640,13395],[13584,13128],[13650,13129],[13650,13130],[13649,13131],[13586,13132],13586,13651,13587,[13577,13588],13640,13640,13512,[13512,13647],13649,13650,13586,13586,[13640,13715],13650,13651,13586,13651,13651,13651,13650,[13648,12686],[13651,12687],[13587,12688],13649,13584,13648,13584,13649,13586,13585,[13585,12615],[13584,12616],[13651,13320],[13651,13321],[13650,13322],[13584,13323],[13649,13324],13648,13648,13586,13587,13587,[13643,13458],13643,13643,[13643,13647],13648,[13649,12424],[13586,12425],[13584,12489],13648,13649,13651,13651,13586,13651,[13651,12559],12814,[13587,12815],13649,13650,13650,[13643,13714],[13643,13715],[13643,13522],13643,13643,[13643,13647],13586,13585,13649,13586,13651,[13648,3558],[13584,3494],[2357,3495],2359,2423,2422,2360,2357,2422,[2423,2741],[2422,2742],[2423,2743],[2422,2744],2358,2423,2357,[3636,2425],3323,[3388,2292,2869],[2360,2870],[2422,2871],[2358,2872],2357,2359,2422,2357,2358,2357,2358,2421,2358,2360,2421,2421,2424,[2423,2741],[2424,2742],[2421,2743],[2422,2744],[3323,2233],3700,[3637,3425],[3636,2420,3552],[2358,3553],2424,2359,2423,2357,2360,2357,2424,2359,2359,2357,2359,2359,2458,2358,2359,2421,2360,2360,[2421,5388],[2360,5389],5390,5391,5392,5393,[2422,5394],[3324,2166,5395],[3636,2168],[3699,2169],[3635,2484],[3635,2489,2549],[3388,2229,2550],[3636,2166,2551],[3701,2168],[3637,2232],[3701,2293],2424,2422,2424,2422,2421,[2422,2741],[2359,2742],[2423,2743],[2422,2744],2424,2360,2360,[3699,2489],3387,[3637,2613],[3701,2614],[3637,2615],[3700,2616],3323,3323,3323,3701,3387,[3637,2298],[3387,3872],3873,3874,3875,3876,3877,3878,[3637,3938],[3701,2292,3939],3873,[2358,3809],[2360,3810],[2423,3811],[2357,3745],2357,2358,2359,2422,2357,2360,2357,2424,[3637,2425],3637,[3636,2484],2422,2360,2424,2424,2359,2424,2360,2360,2360,2358,2358,2424,2360,2358,2358,[3635,2425],3324,[3636,2356],2423,2421,2357,2360,2424,2619,2620,2421,2357,2357,2491,2424,2359,2490,2492,2492,2428,2424,2423,2357,2492,2426,2423,2424,2359,2426,2422,2364,2492,2491,2422,2426,2428,2422,2426,2422,2428,2360,2491,2423,2426,2424,2360,2422,2422,2491,2426,2358,2422,2428,2491,2490,2360,2426,2358,2491,2490,2492,2360,2359,2424,2359,2421,2492,2491,2427,2424,2363,2427,2421,2491,2490,2359,[2357,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14033,[14739,13789],[14096,13790],[14099,13791],[14099,13792],[14032,13793],14032,14739,14098,14034,14673,[14673,13789],[14097,13790],[14034,13791],[14033,13792],[14098,13793],14099,14098,14034,14099,14099,14034,14035,14098,[14035,8443],8698,[13582,13970,8699],13645,13645,13646,[13581,13904],14099,[14097,14865],14033,[13581,13906],13582,[13581,13968],14033,14096,14097,14737,14035,[14098,8757],[14096,8758],[14674,8759],8693,[14033,8564,13858],[14738,8824,13859],[14674,8825,13860],[14738,8820,13861],[14096,8821],[14096,8634],[14099,8572],[14034,13725],[14096,13726],[14737,13727],[14738,13728],[14738,13729],14096,14674,[14034,9906],[14739,9907],[14033,9908],14097,14034,[14035,8570],[14033,8571],8694,8695,[14032,8564],[14098,8565],14034,14033,[14096,8570],[14035,8375],14096,14099,14035,14674,[13800,13840],[13736,13844],13736,13800,[13799,13903],14675,14099,14739,14610,14032,14675,14737,14034,14035,14099,14739,14099,14675,14675,14738,14099,[14739,8692],8693,[14034,8436],14096,14034,[14737,8570],[14673,8634],8635,[14610,8758,16697],[14739,8759],[14035,8762],14033,14096,14097,14675,[14097,14794],14795,[14673,14796],[14674,14415],[14673,14415],[14098,14415],[14034,14415],14673,14035,14099,14674,14737,14035,14097,14035,14675,14801,14096,14673,14674,14675,[14675,13538],[14739,13539],[14675,13540],[14739,13541],[14098,8627],8628,[12972,8629],[12908,8565],12909,12909,12909,12909,12972,12973,12908,[12973,13921],[12908,13922],[12909,13923],[12972,13924],12908,12909,[12909,16757],[12909,16758],12908,[12909,13985],[12909,13986],[12973,13987],[12908,13988],12908,[12909,8499],[12973,8500],12973,12909,12909,[13800,13035],[12909,8570],[12973,8571],[12973,8502],[12972,8564],[12908,8565],[12909,8378],[12909,8379],[12909,8315],12972,12973,12909,12972,12909,12908,[12973,8440],[12972,8564],[12973,8565],12908,12973,12908,12973,[13799,12714],[13736,12781],13800,[13799,13391],13585,13587,13587,13587,13585,13585,[13513,13460],13576,13513,[13640,13520],[13641,13712],13651,13648,13651,13650,13651,13648,13649,13584,13648,13651,13587,13651,[13512,13588],13577,13640,[13512,13455],13586,13587,[13649,13192],[13585,13193],[13651,13194],[13586,13195],[13651,13196],13585,13650,13584,13584,[13512,13459],13512,13641,[13641,13711],[13641,13712],13586,13584,[13512,13652],13641,[13512,13455],13648,13648,13648,13585,13584,[13585,12686],[13585,12750],12751,[13651,12752],13586,13584,13649,13586,13648,13651,13585,[13586,12679],[13585,12680],[13651,12681,13384],[13584,13385],[13648,13386],[13648,13387],[13587,13388],13584,13651,13649,13586,13586,13585,[13643,13393],[13643,13395],13584,[13585,12487],[13651,12488],[13649,12489],13585,13651,13584,13649,13650,13584,13587,[13586,12623],[13648,12624],13586,13586,[13643,13715],[13643,13716],13643,13643,13643,13643,13643,[13643,13520],13649,13651,13587,13648,13584,13585,[13649,3558],[13587,3494],[2358,3495],2422,2424,2357,2358,2424,[2421,2805],[2423,2806],[2423,2807],[2421,2808],2423,2424,2360,[3323,2233],3700,[3701,2356],2424,2359,2357,2421,2422,2364,2357,2357,2422,2357,2422,2424,2358,2360,2357,2423,[2359,2805],[2360,2806],[2423,2807],[2360,2808],[3699,2361],3636,[3323,3615],[3323,2228,3616],2360,2357,2424,2421,2357,2421,2423,2422,2358,2359,2357,2357,[2423,2549],[2359,2550],[2358,2551],2423,2421,2358,2359,[2359,5452],5453,5454,5455,5456,5457,5458,[2423,5459],2422,[3324,2489],3637,[3636,2164,2613],[2424,2614],[2358,2615],[2358,2616],[3701,2233],3699,[3635,2420],2421,2424,2424,2358,[2423,2805],[2358,2806],[2359,2807],[2357,2808],2358,2357,[3635,2425],3635,3699,[3636,2164,2677],[3635,2165,2678],[3323,2166,2679],[3324,2167,2680],[3700,2165],[3700,2166],[3636,2167],[3699,2168],[3387,2165],[3637,2166],[3701,2167],[3701,2168,3937,2549],[2358,3938,2550],[2421,3939,2551],[2422,3940],[3699,2232,3941],[3701,3942],3699,[3700,2356],[2421,3937],3873,3874,3875,[2423,3744],[2359,3745],2357,2358,2358,2358,2422,2357,2424,2360,[3700,2231],3701,[3635,2294],[3701,2488],2360,[2422,2549],[2359,2550],[2422,2551],2359,2423,2424,2359,2423,2360,2423,2359,2422,[3636,2233],3637,[3701,2484],2422,2424,2421,2360,2357,2421,2357,2422,2422,2423,2421,2492,2492,2427,2492,2492,2362,2421,2428,2427,2426,2490,2358,2491,2428,2426,2492,2360,2359,2424,2423,2423,2426,2394,2491,2421,2490,2422,2492,2492,2359,2424,2423,2427,2362,2423,2492,2491,2427,2491,2357,2359,2490,2492,2421,2360,2490,2427,2422,2428,2490,2357,2424,2491,2426,2358,2360,2358,2492,2422,2424,2492,[2423,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14032,14035,[14097,13854],[14033,13855],[14099,13856],14739,14034,14032,14099,14737,14674,14034,[14673,13854],[14035,13855],[14035,13856],14034,14033,14034,14035,14032,14097,14032,14098,14097,[14097,8443],[13646,14164,8444],13517,13645,[13645,13839],[13517,13840],14096,14098,14034,14096,[13517,13908],13581,13581,[13645,14095],14096,14032,14738,14033,[14033,14283],[14673,14284],14097,[14034,8757],8628,8888,8889,8884,8885,8698,[14034,8636],[14673,13789],[14675,13790],[14099,13791],[14096,13792],[14737,13793],14033,14737,14739,14673,14099,14097,[14099,8570],[14096,8634],8635,[12300,8758],[12300,8759],8628,[14033,8629],[14099,8630],[14032,8631],[14033,8634],[14675,8439],14673,14675,14098,14097,14097,[13800,14100],13799,13800,[13800,13967],14097,14099,14738,14675,14675,14032,14097,14033,14097,14096,14739,14032,14738,14034,14738,14096,14096,[14033,8435],[14099,8436],14739,14739,[14099,8443],8698,[14097,8699],[14035,16761],14738,14034,14674,14032,14675,14032,[14099,14858],[14738,14859],[14737,14860],14034,14738,14096,14035,14737,14674,14099,14034,14675,14097,14097,14609,14739,14737,14609,14097,14675,14673,[14098,13602],[14675,13603],[14032,13604],[14739,13605],[14034,13606],[14096,8692],8693,[12909,8436],12909,12973,12973,12909,12972,12973,12972,[12972,13985],[12909,13986],[12908,13987],[12908,13988],12908,12973,12908,12908,12972,[12973,14049],[12972,14050],[12909,14051],[12908,14052],12973,[12909,8563],[12973,8564],[12972,8565],12973,[13800,12974],[13799,8570],[13800,12842,8634],8635,[13800,13037,8758],8628,[12973,8629],[12973,8565],[12908,8378],[12909,8379],[12972,8249],[12908,8250],12973,12908,12909,12973,[12972,8504],8628,[12908,8629],[12909,8630],[12972,8631],[12908,8632],[12973,8633],[12973,8565],[13799,12974],13800,[13800,13455],13648,13585,13650,13586,13586,13649,[13641,13588],13641,[13641,13457],[13641,13396],13576,[13641,13647],13587,13585,13651,13650,13650,13585,13585,13648,13587,13648,13651,[13576,13716],13640,13641,[13640,13583],13586,13584,[13586,13256],[13584,13257],[13586,13258],[13585,13259],[13649,13260],13648,13587,13649,13651,[13512,13652],13641,13512,13640,13640,[13576,13521],[13640,13714],[13512,13522],13512,[13641,13583,13133],[13650,13134],[13651,13135],13586,13650,13651,[13586,12559],12814,[13587,12815],13584,13650,13586,[13643,13714],13648,13648,13649,13584,[13648,12743],12744,[13651,12745],[13648,12746,13449],[13586,12747,13450],[13648,12681,13451],13648,13649,[13643,13522],[13643,13455],13586,13585,13648,13584,13651,13650,[13648,12551],[13648,12552],13650,13650,13649,13585,13648,13650,13585,13650,[13587,12494],[13649,12430],[13584,12431],[13643,13523],13643,13643,[13643,13456],[13643,13393],[13643,13394],[13643,13395],[13643,13396],13643,[13643,13711],13586,13648,13650,13650,13584,13649,[13648,3558],[13585,3559],[2421,3560],2423,2424,2358,2358,[2358,2869],[2357,2870],[2424,2871],[2424,2872],2423,2358,2360,[3701,2297],3637,[3323,2420],2421,2421,2357,[2359,2549],[2422,2550],[2424,2551],2358,2360,2423,2360,2422,2357,2359,2359,2358,2422,[2357,2869],[2359,2870],[2423,2871],[2360,2872],2424,[3701,2232],[3324,3679],[3388,2292,3680],2357,2423,2359,2357,2421,2360,2424,2360,2424,2358,2423,2422,[2358,2613],[2423,2614],[2359,2615],[2357,2616],2423,2358,2358,[2364,5516],5517,5518,5519,5520,5521,5522,[2424,5523],[3635,2296],3637,[3699,2229],[2423,2677],[2359,2678],[2422,2679],[2360,2680],[3701,2361],3323,[3701,2484],[3635,2485],2421,2424,2421,[2423,2869],[2421,2870],[2421,2871],[2360,2872],2424,2421,[3637,2296],3324,[3388,2229],[2360,2741],[2359,2742],[2357,2743],[2421,2744],2357,2423,2360,2357,2360,2357,2360,[2357,2613],[2360,2614],[2358,2615],[2424,2616],2421,[3635,2169],3700,[3387,2420],2423,[2424,3937],[2423,3938],[2359,3939],3808,[2422,3809],[2360,3810],[2359,3811],[2423,3745],2421,2357,[2423,1914],[2423,1915],[2359,1916],2359,[3699,2165],[3637,2232],3388,[3635,2228],[2359,2613],[2421,2614],[2421,2615],[2423,2616],2359,2358,2423,2360,2422,2359,2424,2358,[3323,2361],3635,3636,[3701,2228],2359,2421,2422,2421,2423,2358,2358,2359,2357,2490,2424,2357,2358,2490,2492,2422,2357,2427,2428,2357,2424,2360,2490,2491,2427,2422,2492,2424,2490,2426,2359,2422,2427,2424,2360,2490,2491,2424,2360,2358,2424,2427,2458,2491,2491,2427,2422,2490,2422,2358,2421,2428,2421,2359,2360,2427,2492,2491,2422,2357,2421,2428,2359,2491,2426,2424,2357,2421,2423,2360,2423,[2422,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14033,14035,14034,14097,14098,14675,14674,14097,14737,14033,14099,14099,14099,14098,14035,14097,14099,14032,14098,14032,14033,14034,14097,14034,[14033,8507],[13646,13906,8508],13645,[13581,13904,13534],[14097,13535],[14033,13536],14034,14032,14096,14033,[13582,13972],13582,13582,[13645,14095],14035,14739,14099,14033,[14738,14347],[14097,14348],14738,14033,[14096,8692],[14738,8952],[14739,8953],[14675,8948,16697],[14035,8949],[14035,8762],14032,14096,[14096,13854],[14738,13855],[14097,13856],14738,14033,14099,14098,14675,14099,14033,[14034,8507],8698,[12300,8699],12300,12300,[12300,8692],8693,8694,8695,8698,[14738,14222,8503],[14738,14607],[14739,14545],[14675,14546],14674,14738,14673,[13800,13906],13800,[13800,14031],14098,14096,14097,14738,14739,14099,14035,[14674,13534],[14097,13535],[14098,13536],14099,14098,14097,14098,[14673,14865],14033,14033,[14098,8499],[14096,8500],14674,14035,[14674,8507],[14097,8508],14738,14673,[14097,13534],[14034,13535],[14096,13536],14033,14032,14032,14739,14035,14099,14099,14739,14673,14096,14737,14738,14099,14032,14097,14035,14739,14099,14801,14673,14739,14034,14032,14097,[14099,13666],[14673,13667],[14097,13668],[14099,13669],[14097,13670],14099,[14032,8435],[12973,8436],12973,12973,12909,12908,12972,12908,12972,[12973,14049],[12909,14050],[12973,14051],[12909,14052],12972,12909,12972,12973,12909,[12973,14113],[12908,14114],[12973,14115],[12908,14116],12972,[12908,8627],8628,[12972,8629],[12909,8565],12909,[13800,12780,8443],8698,[13799,8699],13799,[13800,12969,8692],8693,[12908,8436],12908,[12973,8378],[12909,8313],[12908,8314],[12973,8315],12973,12973,12973,12908,[12908,8692],8693,8694,8695,8696,8697,[12909,8564],[13800,12845,8565],13799,[13800,13583],13587,13586,[13585,13128],[13651,13129],[13648,13130],[13585,13131],[13650,13132],[13512,13392],13650,[13641,13652],13641,[13641,13711],[13640,13712],13649,13649,13650,13649,13587,[13641,13715],13585,13584,13584,[13576,13522],13512,[13640,13456],[13576,13392],13648,13650,13651,[13650,13320],[13584,13321],[13584,13322],[13651,13323],[13650,13324],13587,13649,13650,13584,[13640,13523],13640,13641,[13641,13391],[13513,13458],13641,13512,13512,[13640,13456],[13584,13197],[13648,13198],[13586,13199],13585,13648,13648,[13648,12623],[13650,12624],13649,13651,13650,[13643,13460],13643,[13643,13711],13587,13584,13650,13586,[13586,12808],12809,12810,12811,[13649,12680],[13643,13715,12681],[13643,13522],13643,[13643,13583],13585,13584,13650,13585,13649,13585,[13649,12615],[13650,12616],13650,13585,13650,13650,13586,[13651,13133],[13651,13134],[13651,13135],13650,[13587,12494],[13587,12495],[13643,12496],13643,[13643,13457],13648,13648,13584,13584,[13643,13652],13643,13643,[13643,13647],13584,13584,13651,13586,13648,13650,[13584,3623],[2358,3624,2549],[2422,2550],[2357,2551],2357,2421,2423,[2424,2236],2422,2423,2357,2358,2360,[3701,2361],3636,[3637,2293],2357,2357,2423,[2357,2613],[2423,2614],[2358,2615],[2424,2616],2357,2422,2423,2424,2359,2422,2423,2357,2360,2423,2522,2359,2358,2424,[3700,2425,3488],[3636,3489],[3387,2356,3553],2360,2422,2359,2360,2422,[2357,2549],[2423,2550],[2421,2551],2423,2357,2359,2360,[2360,2677],[2421,2678],[2423,2679],[2424,2680],2423,2357,2360,[2357,5580],5581,5582,5583,5584,5585,5586,[3324,2425,5587],3635,3701,[3387,2228],[2358,2741],[2423,2742],[2359,2743],[2424,2744],2424,[3699,2231],3637,3637,[3323,2293],[3700,2485],[3637,2486],2359,2423,2360,2421,2424,[3700,2489],3701,3699,[3323,2420],[2421,2805],[2359,2806],[2358,2807],[2359,2808],2359,2394,2358,2421,2423,2424,2424,[2358,2677],[2422,2678],[2422,2679],[2423,2680],2424,[3635,2233],3700,[3387,2484],[3635,2485],2422,2424,2422,[2424,3872],[2422,3873,2549],[2357,3874,2550],[2423,3875,2551],[2423,3744],[2360,3745],2358,[2422,1978],[2359,1979],[2359,1980],2357,2422,[3388,2233],3636,[3701,2292],[2423,2677],[2424,2678],[2358,2679],[2357,2680],2359,2421,2359,2423,2360,2359,2357,2424,2360,[3700,2169],3701,[3635,2292],2360,2423,2357,2357,2357,2357,2359,2421,2360,2427,2424,2358,2422,2421,2426,2428,2358,2423,2428,2422,2360,2427,2490,2359,2427,2492,2423,2364,2428,2458,2426,2422,2490,2360,2421,2359,2426,2359,2427,2490,2427,2490,2491,2423,2360,2358,2428,2427,2360,2428,2360,2428,2423,2359,2426,2359,2423,2359,2428,2423,2428,2492,2491,2492,2426,2359,2364,2426,2358,2422,2428,[2358,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14097,14738,14034,14673,14099,14099,14674,14738,14035,14739,14675,14098,14096,14034,14611,14098,14034,14097,14096,14034,14035,14034,14099,14032,[14032,8443],[14034,8444],[13582,13840,13597],[14098,13598],[14034,13599],[14099,13600],[14099,13601],14098,14097,14032,[13581,14036],13646,13582,[13517,14159],14096,14674,14099,14033,14096,14739,14098,14800,14096,14035,14034,[14097,16761],14035,14099,14739,14674,14032,14032,14097,14097,14099,14675,14738,14096,[14034,8570],[14034,8630],[14098,8571],[12300,8572],12300,12300,12300,[12300,14102],[12300,8757,14103],[12300,8758,14104],[12300,8759,14105],[12300,8762,14106],[12300,14107],12302,12300,[14673,14478],[14674,15312],[14737,15313],14737,14737,[13799,13840],14673,14739,14034,14675,14098,14099,14739,[14737,13597],[14033,13598],[14738,13599],[14034,13600],[14034,13601],14035,14099,14673,14096,14032,14673,[14674,8563],[14098,8564],[14033,8565],[14032,8570],[14802,8571],[14803,8572],14098,[14098,13597],[14033,13598],[14673,13599],[14097,13600],[14738,13601],14738,14674,14737,14673,14032,14097,14032,14034,[14032,13538],[14032,13539],[14033,13540],[14035,13541],14098,14099,14739,14097,14097,14098,14673,[14097,14865],14099,14675,14096,[14032,13730],[14097,13731],[14033,13732],[14032,13733],[14674,13734],14032,[14099,8499],[12973,8500],12909,12973,12908,12972,12973,12973,12973,[12972,14113],[12909,14114],[12909,14115],[12908,14116],12973,12909,12909,12973,12909,[12909,14177],[12972,14178],[12909,14179],[12909,14180],12908,[12973,16693],[12908,8692,16694],8693,[12908,8436],12909,[12909,8507],[13735,12718,8508],13800,13799,[13799,13033],[12973,8435],[12908,8436],12908,12909,12909,[12908,8378],[12909,8379],[12909,8380],12908,12972,12972,12909,[12973,8757],[12972,8758],[12972,8759],[12908,8760,16693],[12909,8761,16694],8628,[13735,8629],[13800,13456,8565],13649,13650,13650,[13650,13192],[13584,13193],[13584,13194],[13648,13195],[13587,13196],13648,13584,13648,[13641,13458],13640,13513,[13512,13647],13649,13584,13586,[13512,13652],13512,[13641,13521],[13513,13714],[13640,13522],13640,[13641,13391],13585,13585,13651,13649,13585,[13648,13384],[13648,13385],[13648,13386],[13584,13387],[13587,13388],13587,13587,13650,[13512,13716],13641,13512,13640,[13512,13455],13584,[13641,13392],[13640,13393],[13513,13395],13587,[13584,13261],[13648,13262],[13649,13263],13584,13650,[13650,12686],[13585,12687],[13586,12688],13587,13585,13649,[13643,13588],13643,13643,[13643,13455],13649,13584,13584,[13643,13714],[13643,13715,12873],[13643,12874],[13643,13455,12875],12744,[13643,12745],[13643,12681],[13643,13391],13651,13587,13649,13587,13651,13648,[13650,12424,13128],[13587,12425,13129],[13584,12489,13130],[13651,13131],[13650,13132],13650,13584,13648,[13585,13197],[13587,13198],[13650,13199],13648,13650,[13584,12559],[13392,12560],[13643,13392],13587,13649,13586,13586,13651,13587,[13643,13459],13643,[13643,13521],13586,13651,13586,13648,13585,13586,[13649,3687],[2421,3688,2613],[2360,2614],[2422,2615],[2358,2616],2421,2359,2360,2423,2424,2359,2423,2358,[3699,2425],3635,3701,[3700,2228],2424,[2424,2299],[2424,2677],[2422,2678],[2421,2679],[2422,2680],2421,2421,2683,2684,2422,[2421,2549],[2422,2550],[2422,2551],2360,2424,2359,2357,[2357,3425],[3323,2488,3426],[3700,2489,3552],[3636,3553],[3387,2420],2424,2359,2422,2357,2357,[2422,2613],[2423,2614],[2357,2615],[2421,2616],2423,2423,2359,[2360,2741],[2359,2742],[2422,2743],[2422,2744],2360,2424,2421,2422,5645,5646,5647,5648,5649,5650,[3637,2296,5651],3701,3324,[3637,2292],[2358,2805],[2359,2806],[2424,2807],[2424,2808],2359,2360,[3637,2169],3701,3700,3700,3635,[3637,2293],2357,2358,2421,2359,[3323,2232],[3700,2229],[3701,2165],2357,[2423,2869],[2422,2870],[2360,2871],[2360,2872],2358,2424,2421,2423,2422,2358,2422,[2422,2741],[2422,2742],[2423,2743],[2421,2744],2357,[3324,2361],3701,3636,3700,[3701,2420],2424,2424,2422,[2359,3937,2613],[2357,3938,2614],[2357,3939,2615],[2424,3808,2616],[2360,3809],[2424,3745],[2360,2042],[2422,2043],[2359,2044],2424,2359,[3701,2297],3637,[3636,2356,3492],[2360,2741],[2358,2742],[2422,2743],[2357,2744],2423,2424,[2421,2300],2423,2421,2424,2358,2357,2421,[3636,2425],3635,[3699,2356],[2423,2549],[2358,2550],[2358,2551],2358,2423,2357,2359,2424,2422,2358,2423,2490,2427,2423,2424,2423,2491,2421,2357,2426,2492,2424,2426,2491,2423,2424,2428,2360,2492,2359,2359,2424,2491,2422,2491,2421,2357,2428,2491,2491,2422,2357,2357,2359,2427,2358,2424,2421,2491,2358,2421,2427,2426,2423,2424,2490,2492,2427,2357,2423,2357,2490,2424,2359,2360,2422,2490,2428,2424,2426,[2422,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,4868,4869,4870,4871,4872,[4934,7621],4935,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14098,14739,14034,14034,14673,14096,[14674,13538],[14739,13539],[14032,13540],[14738,13541],14737,14035,14099,14097,14033,14098,14034,14097,14097,14096,14032,14033,14098,[14097,8570],[14034,8571],[14096,8508],[14097,13661],[14098,13662],[14034,13663],[14034,13664],[14034,13665],14034,14033,14098,14035,[13581,13906],13582,13645,[13582,13968],14099,14096,[14098,13534],[14098,13535],[14097,13536],14098,14099,14675,14097,14098,14673,14032,14033,14739,14099,14675,14099,14737,[14738,14865],14675,14033,14675,[14032,8570],[14032,8571],8502,8635,[12300,8636],12300,12300,12300,[12300,14166],[12300,14167],[12300,14168],[12300,14169],[12300,14170],[12300,14171],12300,12300,[14675,14542],[14737,15376],[14739,15377],14674,14099,14035,[14099,8312],14673,[14738,14283],[14737,14284],14737,14035,14035,[14035,13661],[14673,13662],[14097,13663],[14097,13664],[14737,13665],14739,14674,14739,14609,[14099,14292],[14099,14479],[14098,14607,8627],8628,[14675,8629],[14673,8634],8635,[14867,8636],14675,[14097,13661],[14739,13662],[14033,13663],[14033,13664],[14738,13665],14737,14673,14034,[14098,14283],[14737,14284],14739,14674,14675,[14098,13602],[14737,13603],[14035,13604],[14096,13605],[14035,13606],14737,14098,[14098,14292],[14096,14479],[14035,14543],[14673,14293],14737,14098,14674,14739,[14099,13794],[14035,13795],[14035,13796],[14673,13797],14737,14096,[14034,8435],[12909,8436,13921],[12972,13922],[12909,13923],[12973,13924],12909,12973,12973,12909,[12973,14177],[12973,14178],[12909,14179],[12909,14180],12973,12908,12972,12908,12973,[12972,14241],[12908,14242],[12908,14243],[12973,14244],12972,[12972,16757],[12908,16758],[12973,8499],[12972,8500],12972,[12973,8443],[13799,12974,8444],13799,13735,13735,[13800,12842,8563],[12909,8564],[12908,8565],12908,12908,12972,[12909,8507],[12908,8508],12909,12973,12908,12973,12972,12972,12972,[12973,16757],[12973,16758],[12973,8692],8693,[13585,8436],13586,13584,13648,[13586,13256],[13585,13257],[13650,13258],[13584,13259],[13651,13260],13584,13587,13648,13649,[13641,13396],13512,[13641,13520],13649,13651,13587,[13641,13716],13512,13512,13513,13641,13640,[13640,13647],13650,13651,13651,13648,13584,13584,[13649,13449],[13587,13450],[13586,13451],13648,13587,13648,[13641,13460],13641,13512,13512,13576,[13576,13583],13584,13649,13585,13585,13648,[13585,13325],[13586,13326],[13585,13327],13649,[13651,12686],[13651,12750],12751,[13650,12752],13585,13586,13587,13650,[13643,13458],13643,[13643,13583],13586,13651,[13643,13652],13643,13643,13643,[13643,13583],[13650,12808],12809,[13643,13457,12552],13586,13586,13584,13651,13586,13587,[13650,12487],[13584,12488,13192],[13585,12489,13193],[13586,13194],[13587,13195],[13586,13196],13584,13587,13587,[13584,13261],[13585,13262],[13649,13263],13587,13587,[13648,12623],[13649,12624],13586,13648,13651,13648,13649,13585,13651,[13643,13652],13643,13643,[13643,13711],[13643,13712],[13643,13713],[13643,13714],[13643,13715],[13648,3750],[13651,3751],[2359,3752,2677],[2359,2678],[2360,2679],[2421,2680],2360,2421,2422,2357,2423,2357,2421,2421,2424,[3636,2232],3701,[3388,2356],2421,2422,[2422,2741],[2424,2742],[2422,2743],[2423,2744],2421,2360,2747,2748,2360,[2424,2613],[2422,2614],[2421,2615],[2357,2616],2422,2423,[2423,3488],[3635,2233,3489],[3636,3490],[3388,3553],[3700,2229],2360,2422,2423,2421,2357,2358,[2422,2677],[2360,2678],[2421,2679],[2358,2680,2236],2360,2424,2424,[2422,2805],[2360,2806],[2360,2807],[2357,2808],2358,2358,[2422,2549],[2421,2550],[5709,2551],5710,5711,5712,5713,5714,[3637,5715],3700,3323,[3700,2356],[2357,2869],[2423,2870],[2359,2871],[2424,2872],2422,2359,2357,[3637,2165],[3387,2231],3637,3323,3323,[3701,2294],[3699,2486],[3635,2487],[3700,2488],[3637,2489],[3635,2420],2360,2358,2421,2555,2556,2357,2360,2422,2422,2357,2423,2364,2358,[2424,2805],[2359,2806],[2422,2807],[2358,2808],2424,2359,[3323,2232],3635,3323,[3388,2484],[3699,2487],[3701,2488],2424,[2357,2677],[2422,2678],[2422,2679],[2360,3872,2680],3873,[2359,3680],[2360,2106],[2357,2107],[2423,2108],2359,[2422,3491],[3324,2361],3637,[3701,2293,3556],[2357,3745,2805],[2360,2806],[2357,2807],[2359,2808],2360,2423,2359,2424,2359,2421,[2357,3750],[2357,3810],[2359,3811],[3700,2296,3745],3635,[3701,2420],[2422,2613],[2360,2614],[2359,2615],[2422,2616],2424,2421,2360,2359,2423,2422,2357,[2424,3425],[2357,3426],[2357,3429],[2358,3430],2422,2427,2421,2458,2358,2428,2357,2427,2424,2357,2421,2358,2492,2492,2358,2491,2423,2359,2358,2427,2360,2491,2421,2359,2421,2421,2423,2358,2427,2490,2427,2421,2360,2421,2423,2426,2492,2490,2458,2492,2492,2424,2360,2426,2421,2358,2426,2358,2422,2360,2421,2490,2492,2428,[2423,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,[4809,7621],[4932,3125],4933,4934,4935,4936,[3636,4998,7685],[3700,4999],[4866,3188],4867,4868,4869,4870,4871,4803,0,0,0,0,4808,4868,4869,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14034,14032,14098,14032,14096,14099,[14035,13602],[14673,13603],[14099,13604],[14674,13605],[14035,13606],14674,14034,14035,14098,14098,14032,14035,14032,14033,14033,14035,[14099,8570],[14035,8634],8635,[14097,8636],[14099,13725],[14034,13726],[14033,13727],[14035,13728],[14098,13729],14097,14035,14099,14034,[13517,13908],13646,13645,13581,[13517,13903],[14035,13597],[14096,13598],[14035,13599],[14032,13600],[14800,13601],14035,14097,14609,14035,14739,14738,14738,14032,14673,14673,14675,14034,14738,14034,14675,[14096,8570],[14033,8634],8635,[12300,8758],[12300,8699],12300,12300,12300,12302,12300,12300,12300,12300,12301,12300,12300,12300,[14738,14606],[14673,14293],14673,14739,14737,14738,[14673,8376],[14032,8565],[14739,14347],[14034,14348],14737,14032,14033,[14096,13725],[14099,13726],[14098,13727],[14738,13728],[14737,13729],14675,[14034,14292],[14099,14479],[14738,14607],[14032,14608],[14032,14414],[14098,14415],[14738,14415,8692],8693,8698,[14034,8699],14033,14673,[14673,13725],[14096,13726],[14099,13727],[14098,13728],[14098,13729],14097,14738,14033,[14673,14347],[14034,14348],14738,14034,14674,[14674,13666],[14035,13667],[14032,13668],[14099,13669],[14737,13670],14673,14035,[14098,14480],12300,12300,[14737,14542],14035,14739,14035,14099,[14033,13858],[14034,13859],[14675,13860],[14738,13861],14099,14096,[14099,8499],[12973,8500,13985],[12909,13986],[12908,13987],[12973,13988],12909,12908,[12972,16693],[12972,16694],12972,[12908,14242],[12909,14243],[12972,14244],12908,12972,12972,12908,12972,12973,12908,12973,12909,12909,12908,12909,[12908,8435],[12908,8436],12909,[12972,8507],[12909,8508],[13799,12714],[13800,12780],13799,[13799,8627],8628,[12908,8436],12973,12909,12908,[12908,8378],[12973,8314],[12908,8315],12973,12972,12973,12909,12908,12908,12909,12909,12973,[12908,8499],[13650,8500],13585,13650,13648,[13584,13320],[13650,13321],[13651,13322],[13585,13323],[13648,13324],13649,13649,13648,13648,[13640,13652],13641,13512,[13641,13711],[13640,13714],[13577,13522],13512,13640,13512,13641,[13512,13456],[13641,13392],13651,13586,[13651,12428],13651,13651,13586,13586,13586,13648,13648,13586,13649,13650,[13641,13588],13641,13640,13512,[13640,13456],13584,13648,13585,13586,13587,13585,13649,13648,13648,13584,[13584,12559],12814,[13648,12815],13650,13586,13587,13649,13648,[13643,13652],13643,[13643,13711],13649,13585,[13643,13522],13643,13643,[13643,13456],13584,13587,[13651,12615],[13648,12616],13649,13651,13649,13584,13585,13587,[13648,12551],[13651,12552,13256],[13587,13257],[13584,13258],[13648,13259],[13585,13260],13649,13648,13650,[13650,13325],[13649,13326],[13648,13327],13650,[13586,12686],[13586,12687],[13584,12688],13587,13587,13649,13586,13584,13650,13648,13651,[13643,13392],[13643,13458],13643,13643,13643,13643,[13643,3750],[13643,13520,3814],3815,[2424,3816,2741],[2357,2742],[2423,2743],[2359,2744],2421,2359,2360,2421,2360,2423,2360,2422,2424,2358,[3700,2169],[3636,2484],[3636,2485],2357,[2422,2805],[2424,2806],[2357,2807],[2358,2808],2422,2422,2422,2359,2423,[2424,2677],[2422,2678],[2423,2679],[2358,2680],2424,[2357,3551],[2424,3552],[3700,2361,3553],3636,3635,[3700,2420,2549],[2422,2550],[2424,2551],2359,2421,2360,2423,[2357,2741],[2421,2742],[2358,2743],[2424,2744],2422,2421,2359,[2421,2869],[2359,2870],[2423,2871,16647],[2357,2872,16648],[2357,16649],2422,[2358,2613],[2357,2614],[2359,5773,2615],[2358,5774,2616],[3387,2425,5775],[3387,5776],[3701,5777],[3701,2549,5778],[3636,2550,5779],[3637,2229,2551],[3635,2165],2360,2422,2421,2358,2360,2422,2359,[2423,2549],[2421,2550],[2421,2551],[3700,2165],[3701,2165],[3699,2231],3387,3323,3701,3637,3701,[3635,2420],2422,2357,2360,2619,2620,2357,2358,2421,2422,2360,2424,2360,2422,[2422,2869],[2421,2870],[2359,2871],[2357,2872],2357,2358,2424,[3637,2231],3699,3635,3636,3324,[3388,2293],[2357,2741],[2359,2742],[2423,2743],[2423,2744],[2421,3743],[2423,3744],[2359,3745],2357,2358,[2359,3750],[2424,3555],2360,[3699,2232],[3323,3620],[3700,2228,3809,2869],[2421,3813,2870],[2360,3745,2871],[2423,2872],2357,[2360,3750],[2522,3810],[2357,3811],[2358,3812],[2359,3813],[2357,3814],3874,3875,[3637,3744],[3324,2229,3745],2421,[2424,2677],[2359,2678],[2358,2679],[2357,2680],2421,2424,2360,2423,2360,2360,[2424,3488],[2421,3489],[2357,3490],[2424,3493],[2359,3494],[2421,3426],[2359,3430],2491,2358,2357,2360,2491,2360,2358,2423,2422,2357,2426,2357,2491,2492,2357,2491,2428,2491,2491,2363,2492,2357,2360,2357,2357,2359,2422,2364,2426,2360,2491,2364,2360,2427,2362,2360,2421,2492,2428,2422,2490,2421,2363,2358,2423,2422,2357,2490,2427,2428,2424,2357,[2421,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,[4873,7685],[3700,4996],[3637,4997],[3700,4998],[3699,4999],[3636,5000,7693],[3700,7749],3637,[3635,4930],4931,4932,4933,4934,4935,4802,4803,0,0,4808,4809,[4932,7621],4933,4934,4935,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14097,14673,14673,14035,14737,14674,[14737,13666],[14739,13667],[14738,13668],[14033,13669],[14675,13670],14674,14737,14099,14035,14096,14034,14098,14098,[14097,13538],[14098,13539],[14032,13540],[14098,8443,13541],8698,[14035,8699],14097,[14097,13789],[14099,13790],[14099,13791],[14034,13792],[14098,13793],14032,14098,14033,14034,[13582,13972],13645,13645,13645,[13517,13967],[14033,13661],[14033,13662],[14099,13663],[14097,13664],[14098,13665],14098,14098,14035,14035,[14738,13538],[14738,13539],[14737,13540],[14096,13541],14032,14098,14099,14674,14675,14097,14098,[14034,8507],8698,[12300,8699],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13354],[12300,13355],[14099,14478],14097,14035,[14098,14292],[14097,14607],[14096,14543,8440],[14032,8564],[14098,8565],14098,14096,14035,14097,[14035,13789],[14035,13790],[14098,13791],[14098,13792],[14674,13793],14673,14738,[14098,14415],[14674,14415],[14098,14415],14033,14096,14096,[14035,8627],[14675,8636],14034,14033,14098,[14737,13789],[14098,13790],[14737,13791],[14096,13792],[14739,13793],14738,14035,14099,14097,14675,14099,14033,14674,[14098,13730],[14099,13731],[14098,13732],[14096,13733],[14096,13734],14673,14097,14737,[14032,14416],12300,[14737,14606],[14739,14225],[14738,14226],[14096,14227],[14737,14543],[14033,14293],14034,14096,14738,14675,[14098,8308],[12909,8309],[12973,8373,14049],[12909,14050],[12909,14051],[12972,14052],12908,12908,[12972,16757],[12909,16758],12973,12973,12972,12908,12972,12908,12973,12908,12972,12908,12973,12909,12908,12972,12909,12909,[12909,8499],[12973,8500],12972,[12973,8378],[12973,8314],[12972,8315],12972,[13800,12718],13799,[13799,13033,8435],[12972,8436],12972,12909,12908,12972,[13736,13036,8378],[13800,13037,8379],[12908,8380],12908,12908,12972,12972,12972,12908,12909,12973,[12973,8563],[13586,8564],[13649,8565],13648,13586,[13586,13384],[13650,13385],[13648,13386],[13586,13387],[13586,13388],13584,13650,13585,13584,13650,[13577,13458],13512,13640,13640,13512,13513,[13641,13456],[13640,13396],[13640,13391],13651,13586,13650,13650,[13585,12492],[13648,12681],13584,13586,13650,13587,13587,13649,13587,13586,13649,[13512,13522],13512,13641,13576,[13641,13711],13651,13586,13587,13586,13649,13650,13648,13650,13649,13648,[13650,12623],[13585,12624],13584,13649,13587,13651,13649,13650,13649,[13643,13396],13643,[13643,13520],[13643,13716],13643,13643,[13643,13391],13650,13585,13587,[13651,12679],[13584,12680],[13584,12681],13649,[13643,13714],[13643,13715],[13643,13522],[13643,13521],[13712,12615],[13584,12616,13320],[13651,13321],[13584,13322],[13587,13323],[13649,13324],13651,13651,13587,13649,13650,13651,[13643,13715,12686],[13585,12750],12751,[13650,12752],13587,13586,13587,13586,13585,13650,13585,13649,13649,13585,[13643,13393],[13643,13394],[13643,13395],[13643,13458],[13643,3623],3878,[2357,3879],[2424,2805],[2424,2806],[2358,2807],[2357,2808],2359,2358,2424,2424,[2357,2549],[2360,2550],[2362,2551],2357,2423,2360,[3700,2489],3700,3637,[3700,2293],[3636,2485,2869],[2357,2870],[2422,2871],[2360,2872],2423,2357,2423,2357,2424,[2360,2741],[2359,2742],[2423,2743],[2357,2744],2424,[2421,3615],[3699,2488,3616],[3387,2489],3388,[3636,2230],[2424,2613],[2423,2614],[2360,2615],[2424,2616],2357,2423,2359,[2359,2805],[2357,2806],[2421,2807],[2422,2808],2360,2422,2357,2422,[2424,16710],[2357,16711],16712,[2360,16713],[2422,16714],[2357,2677],[2421,2678],[2423,2679],[2357,2680],2358,[3635,2231],3323,[3636,2229,2613],[3701,2165,2614],[2357,2615],[2423,2616],2423,2423,2359,2424,2357,2422,2359,[2360,2613],[2421,2614],[2360,2615],[2424,2616],2424,2422,[3323,2166],[3700,2167],[3637,2169],3637,[3701,2164],2357,2422,2360,[2358,2298],2421,2424,2360,2359,2422,2421,2357,2357,2421,2423,2421,2424,2421,2423,2359,2424,2357,2423,[3700,2166,2549],[3635,2167,2550],[3700,2232,2551],3637,3699,[3637,2420,2805],[2424,2806],[2359,2807],[2423,2808],[2360,3807],3808,[2421,3809],[2357,3812],[2424,3813],[2357,3751],[2423,3619],2423,[3636,2425],[3699,3684],3873,3877,[2424,3809],[2358,3812],[2421,3813],[2421,3814],3874,3875,3876,3877,3878,[3701,2488,3938],[3699,2489,3939],3808,[3700,2228,3809],[2357,3745],[2421,2741],[2360,2742],[2360,2743],[2360,2744],2357,2357,2421,2421,2360,[2424,3551],[2357,3552],[2359,3553],2423,2357,[2424,3558],[2423,3490],[2424,3494],[2358,3495],2394,2427,2427,2421,2492,2428,2428,2421,2360,2424,2360,2359,2421,2428,2423,2426,2424,2491,2427,2424,2358,2492,2364,2422,2427,2428,2357,2427,2492,2422,2422,2490,2424,2360,2428,2492,2360,2491,2423,2426,2421,2423,2360,2358,2424,2427,2357,2360,2492,2359,2423,[2421,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3700,4937,7749],3636,3701,3699,3636,[3699,7757],[3635,7813],3637,3700,[3635,4995],[3636,4996],[3700,4997,2709],[3699,4998],[3701,4999],4866,4867,4868,4869,4872,4873,[3700,4996,7685],[3636,4997],[3701,4998],[3700,4999],4931,4802,4868,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4803,0,4808,[4868,7621],4869,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14096,14035,14099,14035,14738,14674,[14032,13730],[14674,13731],[14096,13732],[14033,13733],[14096,13734],14099,14096,14035,14035,14096,14098,14096,14033,[14033,13602],[14097,13603],[14097,13604],[14033,8507,13605],[14099,8508,13606],14035,14033,14098,[14099,13854],[14098,13855],[14098,13856],14099,14032,14099,14096,14034,[13645,14036],13582,13646,13646,[13517,14031],[14098,13725],[14675,13726],[14674,13727],[14097,13728],[14033,13729],14099,14098,14097,14737,[14738,13602],[14034,13603],[14033,13604],[14034,13605],[14032,13606],14034,14739,14675,14739,14099,[14099,8570],[14096,8571],[12300,8572],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8623],[12300,8624],[12300,8623,8625],[12300,8624],[12300,8625],[14034,14606,12296],12297,12298,[14096,14608,12299],12300,[12300,8504],8628,[14099,8629],[14035,8630],[14099,8631],[14097,8565],14739,14674,[14098,13854],[14098,13855],[14098,13856],14096,14033,14032,14034,14034,14737,14034,14739,14098,14099,14096,14034,14738,14096,14738,[14096,13854],[14738,13855],[14674,13856],14035,14035,14096,14032,14034,14738,14098,14098,14739,[14035,13794],[14099,13795],[14738,13796],[14096,13797],14035,14675,14738,14673,[14033,14480],12302,12300,12300,12300,12300,12301,[14099,14542],[14096,8245],[14099,8246],[14098,8249],[14099,8246],[12908,8372,8250],[12972,8373],[12973,14113],[12908,14114],[12973,14115],[12909,14116],12908,12908,12973,12972,12908,12973,12908,12908,12972,12972,12972,12973,12973,12972,12973,12909,12908,[12909,13921],[12908,13922],[12908,13923],[12909,8563,13924],[12972,8564],[12972,8565],12973,[12972,8443],[12972,8444],12908,[13799,12974],13800,[13800,8435],[13799,12842,8436],12909,12972,[13799,13036],[13800,12844],13735,[13800,8507],[13800,12842,8508],[13799,13036],12973,12972,12972,12973,12909,[12973,8570],[12972,8565],[12909,8627],8628,[13649,8629],[13586,8565],13650,13649,[13649,13449],[13651,13450],[13651,13451],13585,13651,13648,13650,13649,13649,13587,[13641,13459],13512,13641,[13640,13391],[13577,13392],13586,[13512,13652],[13641,13520],[13640,13712],13648,13587,13648,[13648,12556],[13650,12680],[13648,12681],13586,13586,13587,13648,13587,13587,13584,[13640,13716],13512,13576,13513,13512,13640,[13640,13455],13650,13587,13587,13585,13648,13584,13584,13584,[13585,12686],[13584,12687],[13651,12688],13586,13587,13585,13586,13651,13584,13585,[13643,13523,13128],[13643,13129],[13643,13130],[13643,13131],[13643,13132],[13643,13456],13651,13648,13649,13651,[13586,12743],12744,[13648,12745],[13643,13523,12681],13643,13643,13643,13643,[13643,12551],[13650,12552,13384],[13584,13385],[13651,13386],[13649,13387],[13586,13388],13587,13584,13648,13651,[13643,13714],[13643,13716],[13643,12559],12814,[13587,12815],13650,13648,13650,13651,13650,13648,13584,13650,13586,[13649,13133],[13587,13134],[13650,13135],13649,13587,13587,[13643,13392,3623],[2360,3624],2359,[2360,2869],[2424,2870],[2421,2871],[2422,2872],2359,2358,2423,2360,[2423,2613],[2357,2614],[2422,2615],[2423,2616],2424,[3701,2295],3699,3323,3636,3700,3388,[3635,2293],[3324,2487],2421,2422,2359,2359,2424,2424,[2360,2805],[2424,2806],[2359,2807],[2421,2808],2360,[3323,2296,3679],[3701,3680],[3324,2164],[3700,2165],2424,[2423,2677],[2423,2678],[2422,2679],[2422,2680],2423,2423,2422,[2360,2869],[2424,2870],[2421,2871],[2358,2872],2359,2423,2359,[2423,16773],[2423,16774],16775,16776,16777,[2422,16778],[2360,16779,2741],[2421,2742],[2423,2743],[2422,2744],2422,[3699,2295],3388,[3635,2420,2677],[2422,2678],[2421,2679],[2423,2680],2422,2424,2422,2359,2424,2359,2358,[2421,2677],[2358,2678],[2422,2679],[2360,2680],2359,2422,2357,2424,[3635,2425],3699,[3636,2228],2357,2424,2360,2359,2359,2423,2422,2423,2421,2422,2360,2423,2421,2358,2424,2358,2424,2357,2359,2424,2423,2357,[2359,2613],[2358,2614],[3637,2425,2615],[3636,2616],3700,[3323,2293,2869],[2357,2870],[2360,2871],[2424,2872],2357,[2422,3872],3873,3876,3877,3815,[2424,3683],2424,[3387,2489],3635,[3323,2356,3937],[2358,3941],3873,3876,3877,3878,[2423,3938],[2423,3939],[2360,3940],[2358,3941],[3700,2233,3942],3637,3699,[3700,3872],3873,[2360,3680],[2358,2805],[2421,2806],[2424,2807],[2357,2808],2358,2359,2360,2357,2358,[2359,3679],[2423,3680],2492,2364,2360,2423,2423,[2490,3558],[2357,3559],[2357,3560],2492,2360,2428,2491,2422,2427,2428,2426,2491,2357,2360,2358,2359,2428,2357,2360,2423,2424,2491,2423,2357,2492,2421,2360,2424,2427,2490,2359,2490,2427,2426,2423,2428,2421,2424,2492,2360,2427,2427,2359,2421,2427,2492,2423,2428,2357,2358,2426,2357,2426,[2358,3743],3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3700,4746],[3635,7813],3700,3635,3324,3701,3700,3323,3323,3637,3635,3701,[3635,2773],3635,3635,[3637,4930],4931,[4932,3125],4933,4936,[3636,4937],[3635,7749],3635,3635,3635,[3699,4995],4866,4740,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4872,4932,4933,4867,4868,4872,[4932,7685],4933,4934,4935,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14096,14098,14098,14099,14673,14739,[14673,13794],[14034,13795],[14674,13796],[14099,13797],14675,14096,14739,14097,14098,14099,14034,14096,14097,[14032,13666],[14033,13667],[14096,13668],[14032,8378,13669],[14032,8379,13670],[14034,8380],14033,14099,14035,14035,14034,14033,14097,[14096,13534],[14099,13535],[14034,13536],[13582,14100],13517,13582,13582,[13645,14095],[14096,13789],[14737,13790],[14099,13791],[14034,13792],[14738,13793],14097,14034,14673,14032,[14673,13666],[14675,13667],[14673,13668],[14674,13669],[14096,13670],14032,14675,[14032,8570],[14034,8824],[14097,8825],[14032,8634],8635,[12300,8636],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8687],[12300,8688],[12300,8687,8689],[12300,8688],[12300,8689],[12300,12296],12297,12298,[12300,12299],12300,[12300,13160],[12300,8692],8693,8694,8695,[14035,8629],[14034,8565],14737,14034,[14097,8570],[14099,8630],[14099,8631],[14099,8565],14035,14674,14673,14034,14099,14034,14034,14739,14096,14033,14099,14096,14097,14675,14097,14099,14035,14675,14098,14674,14674,14098,14673,14096,14096,[14673,13858],[14099,13859],[14034,13860],[14097,13861],14097,14737,14739,14096,14098,[14096,14415],[14099,14415],[14096,14415],[14032,14416],12300,12300,[14099,14606,8308],8309,8310,8313,8310,8314,[12973,8250],[12973,14177],[12909,14178],[12908,14179],[12972,14180],12909,12973,12908,12973,[12972,13921],[12909,13922],[12908,13923],[12973,13924],12909,12972,12972,12973,12908,12972,12909,12973,12973,[12909,13985],[12972,13986],[12973,13987],[12908,8627,13988],8628,[12908,8629],[12908,8565],[12908,8507],[12909,8508],[13800,13037],[13800,13038],13800,[13800,8499],[13800,8500],[13800,13033],[13800,12844],13800,13799,[13799,8570],[13736,8571],[13800,8572],13799,[13800,12842],[13735,13035],12972,12973,[12973,8570],[12909,8571],[12909,8629],[12973,8565],[12908,8692],8693,[13586,8564],[13586,8565],13651,13650,13585,13585,13649,13651,13585,13650,13584,13650,13650,[13512,13652],13512,13641,[13512,13711],13649,13586,[13641,13652],13641,13513,[13577,13711],[13577,13712],13648,[13587,12620],12744,[13650,12745],[13650,12746],[13648,12747],[13584,12681],13651,13585,13650,[13512,13460],13512,13512,13641,13640,13512,13512,[13641,13519],13648,13586,13650,13586,13584,[13584,12686],[13649,12748],[13587,12749],[13587,12750],12751,[13587,12752],13648,13585,13585,13584,13585,13650,[13643,13652],[13643,13192],[13643,13193],[13643,13456,13194],[13643,13459,13195],[13643,13196],[13643,13647],13648,13649,13585,13586,13587,[13650,12808],12809,[13643,12552],13643,[13643,13457],[13643,13393],[13643,13394],[13395,12615],[13587,12616],[13584,13449],[13587,13450],[13651,13451],13587,13649,[13643,13714],[13643,13715],[13643,13522],13643,13643,[13643,12623],[13586,12624],13586,13585,13586,13649,13587,13584,13584,13648,13586,13648,[13585,13197],[13648,13198],[13650,13199],13586,13587,13586,[13648,3687],[2358,3688],2358,2421,2360,2359,2424,2357,2360,2423,2357,[2424,2677],[2423,2678],[2423,2679],[2422,2680],[3699,2425],3637,[3637,2229],[3636,2165],[3635,2166],[3636,2168],[3635,2232],3323,3701,[3324,2484],2422,2358,2357,2423,2421,[2360,2869],[2424,2870],[2358,2871],[3636,2488,2872],[3637,2296],[3637,3615],[3388,3616],[3699,2420],2359,2421,[2421,2741],[2423,2742],[2358,2743],[2422,2744],2358,2421,2359,2358,2359,2422,2424,2357,2421,2423,[2422,16837],16838,16839,16840,16841,16842,[2357,16843,2805],[2421,2806],[2421,2807],[2421,2808],[3637,2233],3636,[3700,2229],[2357,2741],[2358,2742],[2423,2743],[2363,2744],2360,2424,2359,2421,2421,2360,2359,[2424,2741],[2421,2742],[2423,2743],[2358,2744],2422,2358,2357,2422,[3637,2233],3700,[3635,2292],2357,2357,[2422,2549],[2422,2550],[2423,2551],2424,2357,2357,2360,2359,2357,2357,2360,2357,2424,2683,2684,2358,2421,2423,2421,2422,[2421,2677],[2357,2678],[2358,2679],[3388,2165,2680],[3637,2169],3635,[3637,2228],2360,2424,2360,2424,[2357,3937],[2421,3940],[2362,3941],[2358,3879],2423,[3635,2233],3388,3635,[3637,2484],[3323,2485],[3387,2487,3937],[3636,2488,3940],[2423,3941],[2357,3942],2423,2357,2421,2423,[3701,2361],[3635,2549],[3701,2550],[3324,2229,2551],[2423,3743],[2358,3744],[2421,3745,2869],[2424,2870],[2359,2871],[2423,2872],2424,2357,2424,2421,[2357,3488],[2359,3489],[2362,3553],2422,2428,2359,2428,2421,2424,[2358,3623],[2423,3624],2427,2492,2423,2424,2492,2490,2359,2357,2492,2357,2360,2360,2490,2428,2492,2422,2491,2358,2422,2357,2421,2421,2421,2358,2360,2422,2424,2357,2490,2428,2359,2492,2491,2458,2423,2357,2423,2426,2490,2421,2363,2357,2357,2426,2422,2492,2360,2426,2491,2428,[2359,3807],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3701,4682],3636,3701,3699,3388,[3323,7241],[3636,7242],3636,3323,3699,3324,3387,[3637,2837],3635,3388,3700,[3699,4995],[3635,4996],[3636,4997],[3636,5000],3635,[3699,7813],3701,3637,3700,3701,[3699,4930],[3701,4996,3188],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[4932,3125],[4933,7621],4936,[3701,4996],[3637,4997,7693],4931,[4740,3124],4936,[3701,4996,7749],[3635,4997],[3636,4998,3188],[3700,4999],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[14034,8631],[14099,8565],14610,14675,14033,14739,[14099,13858],[14098,13859],[14674,13860],[14674,13861],14098,14674,14673,14096,[14033,13534],[14032,13535],[14098,13536],14099,14096,[14034,13730],[14097,13731],[14099,13732],[14034,13733],[14033,8443,13734],[14033,8444],14099,14097,14033,14098,14034,14033,[14032,13597],[14097,13598],[14099,13599],[14099,13600],[13517,13908,13601],13645,13517,13646,[13645,13903],14033,[14096,13854],[14675,13855],[14034,13856],14097,14033,14098,14674,14034,[14737,13730],[14032,13731],[14675,13732],[14035,13733],[14096,13734],14034,[14099,8570],[14034,8571],8888,8889,8698,[12300,8699],12300,12300,12300,12300,12300,12300,12300,12300,[12300,13413],[12300,13414],12300,12300,[12300,8751],[12300,8752],[12300,8751,8753],[12300,8752],[12300,8753],[12302,12296],12297,12298,[12300,12299],12300,12300,12300,[12300,8757],[12300,8758],[12300,8759],8693,[14096,8564],[14034,8824],[14034,8825],[14098,8634],8694,8695,[14034,8564],[14032,8565],14034,14035,14033,14674,14097,14035,14032,14800,14673,14739,14737,14097,14097,14737,14034,14674,14032,14096,14738,14098,14035,14033,14033,14034,14034,14737,14673,14098,14035,14096,14738,14035,14035,14033,14035,14033,14737,[14033,14415],[14097,14416,8371],8372,8373,0,0,0,8378,8314,[12908,8315,14241],[12972,14242],[12908,14243],[12973,14244],12908,12972,12973,12973,[12973,13985],[12909,13986],[12908,13987],[12972,13988],12909,12908,12909,12909,12972,12908,[12909,16693],[12973,16694],12972,[12973,14049],[12909,14050],[12973,14051],[12909,14052],[12973,8692],8693,[12908,8436],[12973,8378],[13736,12844,8314],[13800,8315],13800,[13799,12779],[13799,12714,8563],[13799,12718,8564],[13799,8565],[13800,8570],[13736,8630],[13800,12779,8631],[13800,12714,8634],8635,[13799,12781,8636],13800,13800,13800,[13799,12777],[12908,8570],[12909,8634],8635,8693,[12973,8500],12909,[12972,8627],8628,[13585,8629],[13584,8565],13649,13651,13648,13587,13584,13648,13587,13651,13584,13648,13585,[13640,13392],[13640,13396],13640,[13513,13455],13584,13586,[13640,13392],[13576,13396],13641,13641,[13640,13455],13650,[13586,12808],12809,12810,12811,[13586,12680],[13584,12681],13587,13585,[13640,13588,12686],[13513,12748],[13512,12749],[13512,12746],[13640,12747],[13512,12681],13512,[13512,13583],13648,13650,13585,13649,[13584,12686],[13649,12687,13128],[12810,13129],[12813,13130],[12814,13131],[13587,12815,13132],13649,13586,13651,13587,13648,[13643,13714],[13643,13715],[13643,13523],[13643,13256],[13643,13391,13257],[13587,13258],[13643,13652,13259],[13643,13260],[13643,13711],13585,13648,13586,13649,13648,13584,[13649,12615],[13643,13394,12616],[13643,13395],13651,13584,13649,[13585,12679],[13587,12680],[13585,12681],13651,13648,13648,[13643,13522],13643,13643,13643,13643,[13643,13457],[13643,13392,12559],[13650,12560],13584,13649,13649,13585,13649,13587,13584,13651,13648,13584,[13651,13261],[13587,13262],[13649,13263],13648,13584,13585,[13585,3558],[13585,3494],[2422,3495],2359,[3637,2485],[3324,2486],2360,2422,2358,2357,2422,[2360,2741],[2422,2742],[2357,2743],[2359,2744],[3701,2425],3637,[3387,2228],2424,2358,2359,2358,[3388,2169],3700,3323,[3699,2293],2360,2422,2422,2359,[3701,2485],[3635,2486],[3324,2296],3637,3637,[3700,3743],[3388,2229,3744],[2359,3745],2359,2421,[2357,2805],[2421,2806],[2360,2807],[2421,2808],2359,2423,2422,2424,2422,2362,2421,2358,2422,2358,[2422,16901],16902,16903,16904,16905,16906,[2422,16907,2869],[2421,2870],[2359,2871],[2421,2872],[3388,2361],3323,[3635,2228],[2422,2805],[2357,2806],[2358,2807],[2357,2808],2357,2424,2423,2357,2522,2423,2359,[2357,2805],[2357,2806],[2421,2807],[2360,2808],2357,2358,2421,2423,[3701,2297],3637,[3701,2356],2360,2424,[2422,2613],[2358,2614],[2424,2615],[2422,2616],2359,2357,2424,[2359,2549],[2422,2550],[2423,2551],2424,2423,2360,2747,2748,2424,2359,2358,2424,2422,[2421,2741],[2359,2742],[2360,2743],[2358,2744],[3701,2233],3388,[3636,2292],2423,2358,2421,2422,2360,2422,2360,2358,2421,[3387,2361],3388,3701,3636,3635,3635,3699,[3635,2294],[3635,2485],[3636,2486],[3701,2487],[3701,2488],[3699,2487],[3324,2489],[3700,2613],[3635,2164,2614],[2424,2615],[2421,3807,2616],3808,[2358,3809],[2359,3810],[2359,3811],[2424,3745],2424,2423,2359,[2422,3551],[2421,3552],[2424,3553],2492,2422,2491,2492,2360,2358,2360,[2491,3558],[2421,3494],[2422,3495],2394,2491,2491,2428,2359,2358,2490,2359,2358,2357,2359,2359,2428,2426,2422,2358,2360,2359,2492,2357,2357,2359,2426,2423,2491,2359,2490,2423,2422,2421,2426,2358,2424,2423,2428,2359,2421,2423,2492,2358,2428,2490,2360,2360,2428,2421,2422,2421,2358,2491,[2421,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3635,4746],3636,3388,3700,3636,[3701,7305],[3637,7306],3636,3700,3388,3323,3637,[3387,2901],3699,3701,3636,3699,3699,3635,3700,3635,3636,3636,3701,3701,3701,3637,3635,[3700,4930],[4931,3125],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3635,4996],[3699,4997,7685],[3635,5000],3635,[3701,7757],[3699,4995],[3701,4996],[3636,5000],[3700,7813],3700,3701,3635,[3701,4930],4931,4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8695,[14096,8564],[14099,8565],14097,14034,14034,14099,14097,14674,14739,14098,14035,14032,[14035,13597],[14098,13598],[14034,13599],[14097,13600],[14099,13601],14097,[14032,13794],[14032,13795],[14098,13796],[14035,13797],[14096,8507],[14099,8508],14033,14032,[14032,14865],14096,14034,14099,[14032,13661],[14096,13662],[14032,13663],[14032,13664],[13645,13972,13665],13517,13646,13581,[13517,13967],14673,14099,14739,14099,14675,14033,14098,14738,14737,[14099,13794],[14737,13795],[14097,13796],[14675,13797],14033,[14099,8570],[14032,8634],8635,[12300,8952],[12300,8953],[12300,8762],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13477],[12300,13478],12302,12300,[12300,8623],[12300,8624],[12300,8625,8623],[12300,8624],[12300,8625],[12300,12296],12297,12298,[12300,12299],12300,12301,12300,12300,12300,12300,[12300,8757],8628,8888,8889,8698,[12300,8758],[12300,8759],8628,[14097,8629],[14034,8565],[14035,13538],[14033,13539],[14739,13540],[14673,13541],14035,14674,14675,14098,14674,14035,14032,14738,14098,14738,14034,14032,[14098,13534],[14096,13535],[14675,13536],14035,14097,14675,14098,14034,14098,14097,14673,14035,14096,14033,14035,14033,14673,14033,14035,14098,14674,[14097,8435],8436,0,0,0,0,0,8378,8379,[12972,8249],[12973,8246],[12972,8250],12908,12972,12909,12973,[12972,14049],[12908,14050],[12973,14051],[12972,14052],12909,12972,12908,12909,12972,12909,[12908,16757],[12973,16758],12972,[12909,14113],[12908,14114],[12972,14115],[12972,14116],12908,[12972,8499],[12908,8500],[13800,12782],[13799,8378],[13799,8379],[13800,12713,8380],12908,[12909,8627],8628,[13736,12715,8629],[13799,12716,8571],8694,8695,8698,[12908,8699],12973,[13799,12714],[13799,12781],13799,[13800,12905],[12973,8443],8698,[13799,8699],[13799,8435],[12909,8436],12908,12972,[12908,8692],8693,[13585,8436],13648,13648,13651,13585,13648,13648,13649,13586,13585,13584,13650,13651,[13512,13652],13512,[13641,13519],13649,13587,13587,13649,[13576,13458],13512,[13512,13519],13585,13650,[13648,12873],[13584,12874],[13585,12875],12744,[13586,12745],[13648,12748],[13587,12749],[13587,12750],12812,12813,12810,12811,[13640,13394,12745],[13640,13395,12681],13649,13650,13586,13651,[13586,12686],[13585,12750],[12751,13192],[13585,12874,13193],[13649,12877,13194],[13585,12878,13195],[13586,13196],13585,13587,13586,13649,[13643,13652],13643,13643,13643,[13643,13457,13320],[13585,13321],[13584,13322],[13649,13323],[13643,13396,13324],13643,[13643,13647],13585,13649,13650,13584,13586,[13648,12551],[13587,12552],13649,13584,13586,13584,[13648,12743],12744,[13585,12745],[13651,12681],13651,[13643,13652],13643,[13643,13391],[13643,13392],[13643,13393],[13643,13394],13586,[13649,12623],[13648,12624],13650,13585,13651,13585,[13643,13712],[13643,13713],[13643,13714],[13643,13715],13585,13651,[13584,13325],[13648,13326],[13648,13327],13651,13649,13587,13648,[13586,3558],[13649,3559],[3323,2295,3560],3324,3699,[3635,2293],2422,2423,2424,[3701,2425],[3701,2293,2805],[2423,2806],[3636,2425,2807],[3636,2294,2808],[3701,2489],3635,[3323,2356],2424,2421,2421,2422,2423,[3636,2169],3701,3700,[3701,2484],[3637,2485],2422,[3636,2425],3637,3636,3324,3637,[3388,2164],[3323,2165,3807],3808,[2422,3744],[2359,3745],2422,[2357,2869],[2422,2870],[2360,2871],[2358,2872],2360,[2357,3491],2360,2360,2423,2424,2421,2358,2424,2424,[2421,16965],16966,16967,16968,16969,16970,[2394,16971],2422,2422,2421,[3636,2296],3324,[3637,2356],[2358,2869],[2357,2870],[2421,2871],[2422,2872],2422,2360,2358,2422,2421,2357,2423,[2422,2869],[2360,2870],[2424,2871],[2358,2872],2359,2422,2424,2422,[3636,2361],3635,[3637,2293],2358,2359,[2424,2677],[2422,2678],[2422,2679],[2424,2680],2360,2423,2360,[2360,2613],[2359,2614],[2360,2615],[2358,2616],2360,2358,2360,2359,2358,2360,2360,2358,2424,[2422,2805],[2358,2806],[2421,2807],[2358,2808],[3701,2297],3637,[3700,2356],2421,2358,2357,2357,2423,2422,2423,[3635,2487],[3635,2488],[3699,2296,2549],[3701,2550],[3324,2551],[3636,2230],[3636,2165],[3323,2231],3637,3699,3323,3636,3701,3636,3635,[3635,2164],[3699,2165,2677],[2358,2678],[2421,2679],[2359,2680],[2424,3872],3873,3874,3875,[2357,3809],[2359,3745],2422,[2423,3551],[2422,3552],[2422,3553],2357,2357,2428,2421,2422,2421,2490,2491,2362,[2360,3558],[2358,3559],[2424,3429],[2360,3426],[2359,3430],2423,2492,2492,2522,2421,2421,2426,2427,2426,2426,2422,2491,2357,2491,2492,2426,2428,2421,2423,2490,2424,2427,2421,2490,2490,2427,2428,2358,2424,2427,2424,2421,2426,2423,2363,2423,2358,2424,2491,2357,2358,2421,2424,2421,2360,2358,2364,2423,[2423,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3635,4810],3699,3636,3324,3699,3699,3637,3323,3388,3324,3635,3323,3323,3699,3699,3700,3701,[3635,1178],3699,3700,3636,3700,3637,3637,3637,3699,3699,3635,3701,[3635,4995],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3700,4937],3700,[3701,7749],3635,3324,3637,3635,3636,3635,3387,3699,3700,3635,3701,[3700,4737],4738,0,4808,4868,4803,0,0,0,0,4808,4868,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8759,8628,[14032,8629],[14800,8565],14737,14674,14610,14034,14098,14739,14032,14033,14737,[14035,13661],[14096,13662],[14033,13663],[14099,13664],[14098,13665],14098,[14035,13858],[14099,13859],[14097,13860],[14033,8570,13861],[14097,8571],[14099,8572],14097,[14035,16697],14097,14034,14099,14098,[14098,13725],[14097,13726],[14033,13727],[14033,13728],[13645,14036,13729],13645,13582,13517,[13581,14031],14035,14033,14099,[14099,8570],[14097,8630],[14035,8631],[14096,8565],14032,14802,[14803,13858],[14737,13859],[14099,13860],[14096,13861],14033,[14096,8443],8698,[12300,8699],12300,12300,12300,12300,12300,12300,12300,[12300,13160],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8687],[12300,8688],[12300,8689,8687],[12300,8688],[12300,8689],[12300,12296],12297,12298,[12300,12299],[12300,13354],[12300,13355],12300,[12300,13287],[12300,13288],12300,12300,[12300,8692],[12300,8952],[12300,8953],[12300,8762],12300,12300,[12300,8692],8693,[14099,8436],[14675,13602],[14099,13603],[14739,13604],[14096,13605],[14099,13606],14032,14035,14675,14096,14673,14033,14673,14739,14099,14032,[14096,13597],[14737,13598],[14737,13599],[14738,13600],[14738,13601],14096,14033,14738,14098,14675,14674,14738,14034,14674,14033,14737,[14674,14865],14737,14097,14675,14099,14738,[14034,8499],8500,0,0,0,0,0,0,8378,8313,8310,8314,[12973,8315],12972,12973,12973,[12908,14113],[12908,14114],[12972,14115],[12973,14116],12972,12973,12908,12908,12973,12973,12973,12908,12973,[12973,14177],[12972,14178],[12973,14179],[12909,14180],[12909,8308],[12972,8309],[12909,8373],[13800,12910],13799,[13799,12779,8443],[12973,8444],12908,12909,[12908,8692],8693,8635,[12972,8758],[12909,8759],[12972,8762],12973,12972,12972,12973,[13800,12714],12908,[12908,8443],[13800,8444],13799,[13799,8499],[12972,8500],12909,12972,12973,[12973,8499],[13651,8500],13648,13648,13651,13651,13648,13587,13587,13651,13587,13587,13648,13650,[13641,13523],13512,[13512,13583],[13585,13133],[13651,13134],[13649,13135],13651,[13640,13460],13640,[13641,13583],13650,13648,13650,13649,13587,[13587,12808],12809,12812,12813,12814,[13648,12876],[13585,12877],[13649,12874],[13650,12875],12809,[13650,12680],[13585,12681],13649,13585,[13585,12686],[13650,12687],12814,[13584,12815,13256],[13648,13257],[13651,13258],[13650,13259],[13584,13260],13586,13648,13587,13650,[13643,13523],13643,[13643,13391],[13643,13392],[13584,13384],[13651,13385],[13587,13386],[13648,13387],[13643,13652,13388],13643,[13643,13520],13649,13586,13586,13584,13651,[13586,12615],[13584,12616],13650,13584,[13585,13133],[13587,13134],[13650,13135],[13648,12808],12809,[13643,13714,12552],[13643,13715],[13643,13522],13643,[13643,13455],13648,13586,13650,13587,[13585,12494],[13649,12430],[13648,12431],13586,13649,[13643,13523],13643,13643,13643,13643,[13643,13647],13651,13587,13650,13651,13648,13585,13651,13586,13650,[13649,3623],[3324,3624],3701,3637,3700,[3637,2484],[3636,2486],2357,[3637,2425],[3635,2869],[3700,2484,2870],[3700,2489,2871],[3699,2872],[3387,2229],[3637,2165],2357,[2424,2549],[2358,2550],[2421,2551],2422,2360,2359,[3636,2232],3700,3637,3701,[3388,2293],[3387,2489],3387,[3387,2229],[3635,2166],[3700,2168],2358,2421,[2421,3872],3808,[2421,3809],[2357,3810],[2360,3811],[2359,3745],2359,2357,[2424,3750],[2423,3555],2422,2357,2357,2422,2422,2357,2421,2360,[2423,17029],17030,17031,17032,17033,17034,[2423,17035],2359,2424,[3323,2425],3323,[3388,2164],2423,2424,2358,2360,2360,2360,2421,2357,2421,2359,2422,2357,2421,2421,2357,2424,2360,2359,2360,2357,[3700,2425],3701,3699,[3388,2420],2357,[2357,2741],[2359,2742],[2421,2743],[2424,2744],2421,2357,2358,[2422,2677],[2424,2678],[2422,2679],[2358,2680],2360,2424,2359,2422,2423,2357,2424,2423,2358,[2358,2869],[2360,2870],[2358,2871],[2423,2872],[3701,2361],3699,[3635,2294],2421,2422,2358,2423,2360,2358,[3323,2425],3699,3635,[3700,2613],[3323,2164,2614],[3701,2165,2615],[2360,2616],2358,2422,[3636,2166],[3701,2167],[3324,2168],[3388,2169],3699,3700,3637,[3700,2228],[2424,2741],[2423,2742],[2422,2743],[2357,2744],2358,[2422,3937],[2360,3938],[2360,3939],3873,[2359,3809],[2422,3812],[2424,3813,3615],[2358,3616],2422,2358,2424,2490,2491,2359,2364,2428,2359,2360,2424,[2428,3558],[2423,3493],[2422,3490],[2357,3494],[2422,3495],2424,2426,2423,2428,2492,2424,2490,2424,2427,2423,2492,2428,2423,2357,2427,2422,2364,2426,2427,2491,2357,2427,2426,2428,2492,2426,2364,2426,2358,2358,2424,2428,2423,2490,2359,2428,2357,2492,2358,2358,2426,2491,2490,2426,2422,2423,2492,[2358,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3750,4868,4869,4870,4871,4872,4873,[3637,4874,2932],[3635,2933],3388,3635,3700,3323,3387,3324,3699,3637,3635,3635,3635,3700,3699,3323,3388,3699,3635,3637,3701,3387,3636,3699,3636,3635,3701,3635,3323,3700,[3699,4930],[4931,3125],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3637,4746],3700,3323,[3324,7813],3637,3636,3701,3701,3699,3700,3637,3636,3700,3323,3387,[3701,4801],4802,4868,4872,[4740,7621],4802,4803,0,0,4808,4809,4740,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8692,8693,[14034,8564],[14675,8565],14673,14673,14675,14801,14033,14099,14032,14099,[14099,13725],[14033,13726],[14035,13727],[14096,13728],[14097,13729],14033,14097,14033,[14032,8570],[14098,8634],8635,[14034,8636],14099,[14033,16761],[14035,8570],[14097,8630],[14096,8565],14035,[14033,13789],[14032,13790],[14032,13791],[14096,13792],[13582,14100,13793],[13645,8570],[13581,8824],[13581,8825],[13581,14095,8565],14034,14099,[14098,8570],[14098,8571],8694,8695,[14098,8564],[14097,8565],14866,14867,14033,14097,14674,14034,[14034,8507],[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8751],[12300,8752],[12300,8753,8751],[12300,8752],[12300,8753],[12300,12296],12297,12298,[12300,12299],12300,12300,12300,[12300,13351],[12300,13352],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8435],[14098,8436],[14673,13666],[14096,13667],[14034,13668],[14674,13669],[14034,13670],14032,14673,14035,14096,14035,14096,14738,14033,14096,14032,[14674,13661],[14035,13662],[14035,13663],[14098,13664],[14099,13665],14738,14099,14097,14738,14096,14035,14098,14739,14098,14034,14673,14739,14099,14096,14675,14739,14096,[14034,8563],8564,8565,0,0,0,0,0,0,0,0,8378,8379,[12973,8380],12973,12909,[12972,14177],[12973,14178],[12972,14179],[12972,14180],12972,12973,[12908,13921],[12909,13922],[12908,13923],[12909,13924],12909,12909,12972,12972,[12908,14242],[12973,14243],[12909,8245,14244],[12973,8372],[12909,8373],[13799,13034],[13799,12844],13800,[13800,12969,8507],[12973,8508],12908,12973,12909,[12909,8757],[12973,8762,13921],[12908,13922],[12909,13923],[12973,13924],12908,12972,12973,12908,12908,12973,[12909,8507],[13800,8508],13799,[13800,8563],[12908,8564],[12972,8565],12973,12972,[12972,8627],[13585,8564],[13648,8565],13649,13648,13650,13650,13584,13650,13649,13587,13584,13586,[13577,13652],13641,[13512,13456],13584,[13650,13197],[13651,13198],[13651,13199],13648,[13640,13588],13640,[13640,13520],13651,13648,13586,13586,13648,13586,[13650,12873],[13584,12876],[13586,12877],[13651,12878],13584,13650,13651,13650,[13586,12873],12744,[13649,12745],[13586,12746],[13649,12749],[13584,12750],12751,[13643,13647,12878],[13650,13320],[13587,13321],[13585,13322],[13587,13323],[13649,13324],13648,13650,13584,13584,[13643,13459],13643,[13643,13455],13587,13651,[13585,13449],[13584,13450],[13650,13451],13648,[13643,13396],13643,[13643,13455],13586,13651,13648,[13584,12424],[13585,12425],[13587,12489],13649,13651,[13585,13197],[13651,13198],[13649,13199],13651,[13648,12551],[13643,12616],13643,13643,13643,[13643,13519],13648,13651,13587,13586,13585,[13651,12494],[13585,12495],[13643,13715,12496],[13643,13716],13643,13643,[13643,13457],[13643,13393],[13643,13395],13651,13649,13584,13650,13586,13585,13584,13649,13650,13649,[13587,3687],[3635,3688],3700,3323,3323,[3388,2549],[3387,2550],[3699,2293,2551],[3323,2489],3699,3635,3636,3637,[3635,2420],2357,2359,[2360,2613],[2424,2614],[2424,2615],[2359,2616],2423,2423,2360,[3323,2165],[3636,2232],3635,3635,3637,3637,[3699,2420],2358,2360,2360,2421,2359,[2358,3872],3873,3874,3875,[2423,3744],[2357,3812],[2357,3813],[2358,3814],[2358,3619],2360,2422,2360,2424,[2360,2549],[2359,2550],[2423,2551],2358,[2421,17093],17094,16652,16653,16654,17098,[2357,17099],2424,2424,[3388,2425],3387,[3637,2228],2421,2360,2424,2358,2421,2359,2359,2360,2424,2421,2394,2357,2422,2423,2357,2360,2423,2358,2357,[2359,2549],[2359,2550],[3387,2169,2551],3388,[3323,2484],2359,[2424,2805],[2359,2806],[2424,2807],[2421,2808],2421,2421,2358,[2359,2741],[2359,2742],[2421,2743],[2358,2744],2424,2358,2421,2358,2357,2423,2359,2358,2358,2357,2358,2421,2358,2423,[3637,2232],3701,[3701,2420],2360,[3636,2485],[3701,2486],[3637,2487],[3635,2488],[3699,2295],3700,3635,[3388,2229,2677],[2424,2678],[2421,2679],[2423,2680],2358,2422,2359,2424,2421,2357,[3636,2232],3323,3635,[3323,2356],[2423,2805],[2424,2806],[2360,2807],[2422,2808,16647],[2422,16648],[2357,16649],2423,2358,[2360,3937],3873,3876,[2359,3877,3679],[2423,3680],2358,2422,2360,2428,2358,2424,2422,2491,2422,2422,2394,2360,2357,2490,[2423,3558],[2422,3559],[2358,3560],2358,2424,2424,2422,2421,2357,2357,2359,2428,2422,2357,2359,2423,2426,2428,2491,2423,2428,2424,2424,2358,2490,2428,2421,2359,2428,2422,2427,2422,2423,2360,2358,2359,2362,2428,2423,2492,2492,2428,2427,2424,2428,2424,2358,2490,[2421,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4934,4935,4936,[3700,4937],[3635,2996],[3699,2997],3636,3699,3700,3636,3700,3387,3636,3388,3388,3701,3701,3324,3323,3323,3701,3699,3701,3636,3701,3635,3700,3636,3701,3701,3700,3636,3699,3387,3636,[3701,4995,7621],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3635,4810],3701,3637,3699,3636,3388,3699,3699,3699,3637,[3701,2710],3388,3635,3637,3700,[3699,4865],4866,[4740,3124],4936,[3637,4996,7685],4866,4867,4868,4869,4872,4873,[3637,4996],4866,4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8628,[14096,8629],[14096,8565],14099,14096,14033,14096,14096,14673,14099,[14097,13789],[14097,13790],[14035,13791],[14098,13792],[14035,13793],14097,14032,14035,[14034,8443],8698,[14035,8699],[14096,8570],[14098,8630],[14034,8631],[14098,8634],8502,[14098,8564],[14034,8565],14097,[14035,13854],[14035,13855],[14035,13856],[14032,8570],[13581,13840,8571],8888,8889,[14032,8629],[14032,8630],[14033,8631],[14099,8634],8635,[12300,8758],[12300,8759],8628,[14096,8564],[14099,8565],14034,14737,14097,14034,[14099,8570],[14098,8571],[12300,8572],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8623],[12300,8624],[12300,8623,8625],[12300,8624],[12300,8625],[12300,12296],12297,12298,[12300,12299],12300,[12300,13159],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],[14033,8500],[14738,13730],[14034,13731],[14034,13732],[14035,13733],[14096,13734],14673,14738,14098,14032,[14096,14539],14034,14032,14674,14098,14098,[14673,13725],[14097,13726],[14098,13727],[14675,13728],[14032,13729],14674,14032,14035,14032,14738,14034,14673,14674,14035,14738,14034,[14035,13538],[14096,13539],[14673,13540],[14032,13541],14097,14737,[14097,8627],8628,8629,8565,0,0,0,0,0,0,0,0,8443,[12972,8444],12972,12972,[12908,14241],[12909,14242],[12909,14243],[12972,14244],12909,12972,[12973,13985],[12973,13986],[12908,13987],[12909,13988],12973,12972,12909,12973,12909,[12972,8308],[12972,8309],[12908,8373],[13736,12782],13800,[13799,12778],[13800,12714],[12973,8443],[12973,8444],12908,12908,12909,12973,[12908,13985],[12972,13986],[12908,13987],[12909,13988],12973,12973,12908,[12909,16693],[12973,16694],[12973,8570],[12973,8571],[13799,8572],13799,[13800,8627],8628,[12908,8436],12972,[12972,12361],[12972,12365],[13648,8628,12362],[13586,8500,12365],[13651,12366],13650,13650,13651,13649,13587,13585,13585,13584,13650,[13513,13716],13641,[13641,13647],13648,[13650,13261],[13587,13262],[13651,13263],13585,13648,[13641,13396],13512,[13512,13647],13650,13648,13650,13584,13650,13586,13650,13651,13649,13651,13651,13649,13651,13584,[13648,12808],12809,12810,12813,12814,[13643,12815],[13643,13520],[13584,13384],[13648,13385],[13586,13386],[13650,13387],[13587,13388],13585,13651,13650,13651,[13643,13652],13643,[13643,13583],13650,13584,13648,13585,13651,13584,[13643,13522],13643,[13643,13519],13586,13584,[13648,12361],[13649,12488],[13649,12489],13648,13650,13586,[13584,13261],[13586,13262],[13586,13263],13585,[13648,12551],[13643,13394,12552],[13643,13395],[13643,13459],13643,[13643,13583],13584,13648,13584,13650,13585,13650,[13651,12559],[13643,12560],13643,13643,[13643,13391],13586,13585,13586,13649,13586,13648,13649,13650,13650,13586,13649,13584,[13648,3750],[13587,3751],[3699,3752],3637,3700,[3700,2230],[3701,2165,2613],[3636,2231,2614],[3323,2615],[3635,2616],3701,3699,3701,3635,[3636,2484],2360,2424,[2358,2677],[2360,2678],[2360,2679],[2360,2680],2421,2423,2421,2358,2357,[3636,2165],[3636,2169,16647],[3700,16648],[3700,16649],[3324,2484,2300],2359,2424,2424,2421,2421,[2421,2549],[2358,3937,2550],[2421,3938,2551],[2359,3939],3808,3876,3877,3878,[2358,3683],2681,2682,2424,2359,[2423,2613],[2359,2614],[2357,2615],[2421,2616],[2357,17157],[2421,17158],[3636,2485,16716],[3701,2486,16717],[3699,2487,16718],[3635,2488,17162],[2359,17163],2358,2358,[3323,2296],[3701,2549],[3636,2292,2550],[2421,2551],2360,2421,2423,2423,2357,2423,2360,2421,2360,2357,2359,2358,2422,2422,2359,2358,2424,2359,[2357,2613],[2422,2614],[3636,2425,2615],[3323,2616],3636,[3701,2420],[2357,2869],[2359,2870],[2357,2871],[2357,2872],2421,2424,2421,[2360,2805],[2360,2806],[2358,2807],[2357,2808],2360,2358,2358,2421,2360,2360,2421,2421,2394,2422,2360,2359,[2358,2298],2360,[3635,2425],3699,[3701,2484],[3700,2295],3637,3635,3700,3323,3699,3635,[3635,2164],[2360,2741],[2360,2742],[2358,2743],[2359,2744],2422,2423,2421,2357,2422,2358,2360,[3635,2231],3700,[3637,2293],[3701,2485,2869],[2421,2870],[2421,2871,16710],[2422,2872,16711],16712,[2357,16713],[2360,16714],2357,2421,[2424,3937],[2421,3940],[2422,3941,3743],[2359,3809],[2422,3745],2490,2424,2422,2490,2427,2421,2492,2358,2421,2364,2423,2357,2492,2491,[2359,3623],[2360,3624],2428,2359,2359,2422,2427,2421,2428,2427,2423,2427,2357,2492,2357,2491,2492,2491,2359,2426,2360,2423,2491,2423,2421,2424,2426,2423,2421,2427,2423,2423,2357,2427,2357,2421,2426,2359,2426,2428,2360,2491,2360,2422,2423,2421,[2360,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3699,4996],[3635,4997,3124],[3636,4998],[3699,4999],[3636,5000],3699,[3701,3060],[3699,3061],3323,3699,3700,3700,3635,3635,3701,3637,3700,3637,3324,3324,3387,3700,3637,3636,3323,3701,3701,3701,3700,3637,3635,3636,3699,3635,3323,3635,3701,[3637,7685],[3700,4930],4931,4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,[4869,7621],4872,4873,[3699,4874],3700,3635,3700,3323,[3635,2932],[3637,2933],3635,3324,3701,[3701,2774],3323,3637,3323,3699,3700,[3700,4930],[3635,4996],[3701,5000],[3699,7749],[3700,4930],4931,[4932,3125],4933,4936,[3637,4937],[3701,2710],[3636,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8692,8693,[14097,8629],[14033,8630],[14096,8631],[14097,8630],[14032,8631],[14096,8565],[14034,8570],[14098,8630],[14032,8631],[14032,8565,13854],[14033,13855],[14098,13856],14096,14096,14097,14033,[14032,8507],[14032,8508],[14033,8570],[14099,8571],8694,8695,8698,[12300,8758],8628,[14099,8629],[14034,8630],[14035,8631],[14096,8632],[14099,8633],[14034,8634],8635,[12300,8952],[12300,8953],8693,8694,8695,8698,[12300,8699],12300,12300,[12300,8692],8628,[14097,8629],[14097,8630],[14035,8631],[14032,8632],[14034,8633],[14033,8634],8635,[12300,8636],12300,[12300,13413],[12300,13414],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8687],[12300,8688],[12300,8687,8689],[12300,8688],[12300,8689],[12302,12296],12297,12298,[12300,12299],12300,12300,12300,12300,12300,12300,12300,12300,12301,12300,12300,12300,12300,12300,[12300,8435],[14034,8436],[14032,13794],[14034,13795],[14033,13796],[14739,13797],14033,14035,14800,14035,14035,14675,14737,14032,14097,14737,14673,[14035,13789],[14737,13790],[14099,13791],[14673,13792],[14096,13793],14096,14739,[14098,8570],[14034,8630],[14032,8631],[14096,8565],14737,14035,14098,14032,14032,[14738,13602],[14032,13603],[14097,6414,13604],[14739,13605],[14739,13606],14033,14033,[14097,8692],8693,8436,0,0,0,0,0,0,0,0,8507,[12973,8508],12909,12973,12909,12909,12908,12972,12908,12908,[12909,14049],[12972,14050],[12908,14051],[12973,14052],12973,12972,12909,12972,[12909,8371],[12973,8372],[12908,8373],12973,[13800,12910],13799,[13799,12777],12908,[12908,8507],[12909,8508],12972,12973,12972,12908,[12908,14049],[12973,14050],[12973,14051],[12972,14052],12908,12908,12972,[12909,16757],[12909,16758],[12909,8443],8635,[13799,8636],13800,13799,[13799,8499],[12908,8500],[12909,12487],[13651,12425],[13651,12429],[13651,12426],[13648,12429],[13585,12430],[13649,12431],13650,13651,13649,13651,13586,13649,13650,[13513,13460],13640,[13641,13456],13648,13649,[13586,13325],[13648,13326],[13586,13327],13584,13649,[13512,13523],[13513,13391],13649,13587,13650,13587,13587,13587,13587,13587,13648,13648,13587,13650,13587,13648,13650,13650,[13585,12873],[13651,12874],[13648,12877],[13643,13459,12878],13643,13643,[13643,13521],[13651,13449],[13648,13450],[13648,13451],13651,13651,13648,13587,13586,13586,[13643,13392],13584,13587,13651,13584,13584,13650,[13643,13652],13643,13643,[13643,13583],[13585,12361],[13651,12362],[13651,12488],[13587,12489],13587,13585,13586,13651,[13648,13325],[13649,13326],[13587,13327],13649,[13649,12615],[13651,12616],13585,[13643,13460],13643,[13643,13647],13650,13650,13648,13649,13650,13651,[13649,12623],[13643,12624],[13643,13456],[13643,13392],13651,13650,13650,13649,13584,13584,13649,13649,13586,13648,13587,13651,[13651,3750],[13649,3814],3815,[3700,2166,3816],[3324,2167],[3635,2168],2422,[2422,2677],[2358,2678],[3635,2166,2679],[3387,2167,2680],[3324,2168],[3323,2232],3635,3387,3635,[3387,2228],2421,[2357,2741],[2424,2742],[2421,2743],[2360,2744],2423,2357,2360,2360,2423,[2359,16710],[2357,16711],16712,[3637,16713],[3323,16714],[3701,2293],[3387,2485],2357,2358,2360,[2421,2613],[2422,2614],[2357,2615],[2360,2616],[2360,3872],[2360,3940],[2424,3941],[2358,3942],2423,2745,2746,2360,2421,[2357,2677],[2421,2678],[2422,2679],[2423,2680],2423,[3701,2425],3637,3699,3701,3323,[3701,2293],2424,[3636,2425],3699,[3701,2613],[3700,2356,2614],[2422,2615],[2358,2616],2357,2358,2423,2359,2358,2359,2421,2357,2360,2422,2681,2682,2422,2424,2422,2358,2358,[2424,2677],[2422,2678],[2424,2679],[3635,2169,2680],3636,[3636,2484],2424,2424,2423,2358,2424,2421,2422,[2357,2869],[2424,2870],[2422,2871],[2423,2872],2359,2359,2421,2360,2422,2360,2360,2423,2360,2424,2422,2423,[3699,2486],[3635,2487],[3636,2489,2549],[3700,2550],[3636,2551],3699,[3636,2229],[3323,2165],[3637,2165],[3635,2166],[3637,2167],[3700,2168],2422,[2357,2805],[2424,2806],[2424,2807],[2359,2808],2421,2422,2358,[2424,2549],[2359,2550],[2421,2551],2421,2359,[3323,2165],[3388,2169],3701,[3700,2228,16773],[2423,16774],16775,16776,16777,[2422,16778],[2360,16779],2359,2358,2358,[2357,3807],3873,[2423,3616],2424,2490,2491,2421,2491,2423,2423,2357,2423,2421,2423,2360,2491,2421,[2491,3558],[2422,3494],[2423,3495],2427,2363,2522,2426,2360,2423,2424,2424,2491,2491,2423,2423,2490,2360,2491,2423,2427,2360,2492,2357,2359,2424,2421,2360,2492,2358,2426,2428,2427,2491,2358,2421,2423,2490,2423,2492,2423,2428,2357,2427,2427,2491,2423,[2424,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,4936,[3701,4937],3701,3701,3636,3635,3635,3699,3635,3635,3636,3637,3635,3635,3635,3636,3388,3323,3387,3323,3701,3323,3699,3700,3699,[3699,2170],[3699,2171],3700,3701,3699,3324,3324,3323,3323,3700,3323,3637,3700,3637,[3324,7749],3699,[3636,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,[4933,7685],4936,[3637,4937],3699,3636,3637,3324,3324,[3701,2996],[3323,2997],3636,3635,3700,[3701,2838],3388,3636,3637,3636,3637,3701,[3636,7693],3701,[3699,7813],3637,[3637,4995],[3699,4996],[3635,4997],[3701,5000],3636,[3636,2774],[3701,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8693,8694,8695,8694,8695,[14098,8629],[14099,8634],8694,8695,[14033,8629],[14032,8630],[14099,8631],[14035,8565],14098,14097,[14099,8570],[14096,8571,8378],[14097,8572,8379],[14034,8634,8380],8635,[12300,8758],[12300,8759],[12300,8762],12300,[12300,8692],8693,8694,8695,8696,8697,8698,[12300,8699],12300,12300,[12300,8757],[12300,8758],[12300,8759],[12300,8762],12300,12300,12300,12300,[12300,8692],8693,8694,8695,8696,8697,8698,[12300,8699],12300,12300,[12300,14925,13477],[12300,14926,13478],[12300,14927],[12300,14928],[12300,13287],[12300,13288],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8751],[12300,8752],[12300,8751,8753],[12300,8752],[12300,8753],[12300,12296],12297,12298,[12300,12299],12300,[12300,14925],[12300,14926],[12300,14927],[12300,14928],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],[14097,8500],[14098,13858],[14673,13859],[14096,13860],[14035,13861],14035,14035,14737,14738,14674,14097,14674,14032,14739,14098,14674,14675,[14097,13854],[14675,13855],[14737,13856],14737,14737,[14032,8570],[14097,8571],8694,8695,[14034,8629],[14097,8630],[14032,8631],[14098,8565],14098,14673,[14098,13666],[14099,6477,13667],[14673,6478,13668],[14032,6479,13669],[14098,13670],14033,14032,14033,[14098,8499],8500,0,0,0,0,0,0,0,0,8443,[12909,8444],12909,12908,12972,12972,[12973,16693],[12909,16694],12909,12909,[12908,14113],[12973,14114],[12909,14115],[12909,14116],12909,12973,12909,12908,[12908,8435],[12909,8436],12909,12909,[13800,13038],13799,[13799,12905],[12973,8570],[12973,8634],[12909,8572],[12909,16693],[12972,16694],12972,12973,[12909,14113],[12908,14114],[12973,14115],[12972,14116],12908,12908,12972,12973,12972,[12908,8378],[12973,8314],[13799,8315],13799,[13799,8308],[12973,8309],[12973,8373],[12908,12551],[13585,12552],13585,13586,13648,[13648,12494],[13648,12495],[13648,12496],13586,13650,13587,13650,13651,13651,[13640,13524],13512,[13512,13455],13648,13649,13586,13586,13587,13587,[13640,13652],13641,[13641,13455],13650,13650,13587,13584,13587,13651,13586,13649,[13651,13128],[13651,13129],[13586,13130],[13649,13131],[13585,13132],13651,13651,13587,13651,13585,13585,13586,[13643,13396],13643,13643,[13643,13711],13586,13650,13586,13585,13651,13584,13648,13584,13587,13585,13587,13648,13651,13650,13650,[13643,13523],13643,[13643,13456],[13651,12424],[13643,12425],[13643,12426],[13643,13521,12489],13648,13585,13584,13651,13585,13586,13587,13585,[13587,12424],[13648,12425],[13650,12489],13586,[13643,13588],13643,[13643,13520],[13643,13712],13650,13586,13585,13584,[13587,12686],[13648,12687],[13643,12688],[13643,13520],13584,13584,13587,13649,13584,13650,13586,13651,13650,13648,13586,13651,[13648,3750],[13649,3751],3878,[2421,3879],2358,2421,2360,2423,[2421,2741],[2424,2742],[2423,2743],[2422,2744],2424,2424,[3699,2169],3701,3700,[3388,2356],2359,[2358,2805],[2358,2806],[2424,2807],[2423,2808],2358,2423,2358,2359,[2358,16773],[2360,16774],16775,16776,16777,[3323,16778],[3635,16779],3700,[3699,2484],[3388,2487],[3387,2488],[2424,2677],[2357,2678],[2359,2679],[2421,2680],2424,2423,2360,2359,2422,2424,2358,2423,2422,[2422,2741],[2423,2742],[2358,2743],[2422,2744],2357,[3700,2489],3323,3323,3635,3701,3388,[3636,2484],[3387,2489],3700,[3635,2164,2677],[2359,2678],[2422,2679],[2358,2680],2357,2357,2423,2421,[2424,2549],[2358,2550],[2359,2551],2423,2357,2423,2745,2746,2424,2423,2358,2421,2360,[2360,2741],[2359,2742],[2423,2743],[3637,2425,2744],3701,3700,[3388,2420],2360,2423,2359,2394,2421,2360,2360,2421,2421,[3701,2485],2423,[2422,2549],[2357,2550],[2359,2551],2359,2422,2424,2423,2357,2421,2423,[3637,2233],3635,3701,[3699,2613],[3636,2230,2614],[3324,2166,2615],[3699,2168,2616],2360,2357,2357,2422,2424,2359,2358,[2360,2869],[2357,2870],[2421,2871],[2359,2872],2358,2424,2423,[2423,2613],[2423,2614],[2421,2615],[2421,2616],2421,2360,[3701,2233],3324,[3637,2356,16837],16838,16839,16840,16841,16842,[2360,16843],2422,2424,2424,2360,[2423,3679],[2423,3680],2421,2427,2360,2491,2426,2426,2492,2490,2427,2428,2358,2357,2357,2358,2421,[2491,3558],[2359,3559],[2357,3560],2426,2424,2491,2424,2421,2492,2358,2491,2421,2492,2423,2491,2424,2427,2490,2421,2358,2492,2428,2490,2491,2422,2357,2360,2424,2422,2363,2422,2358,2358,2422,2428,2491,2490,2360,2360,2359,2426,2428,2491,2359,2360,[2422,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3635,4682],3700,3700,3637,3700,[3324,2710],3701,3636,3323,3701,3324,3700,3636,3637,3635,3636,3323,3637,3700,3700,3637,3699,3636,3387,3388,3636,3636,3700,3635,3635,3635,3636,3701,[3699,2709],3636,3637,3636,3635,3637,[3700,7813],3635,[3701,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,[4873,3125],[3701,4996],[3636,4997,7749],[3700,5000],3637,3701,3637,3636,3701,3388,[3699,3060],[3636,3061],3637,3701,3701,[3635,2902],3636,3388,3700,3701,3637,3637,[3388,7757],3635,3700,3700,3324,3699,3636,3387,3636,[3700,2838],[3636,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8759,8758,8759,8693,8698,8758,8759,8693,8694,8695,[14099,8629],[14096,8632],[14099,8633],[14099,8634],8635,[8636,8443],[8698,8444],[12300,8699],12300,12300,12300,12300,12300,[12300,8757],[12300,8758],[12300,8759],[12300,8760],[12300,8761],[12300,8762],12300,[12300,13287],[12300,13288],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8757],[12300,8758],[12300,8759],[12300,8760],[12300,8761],[12300,8762],12300,12300,12300,[12300,14989],[12300,14990],[12300,14991],[12300,14992],[12300,13351],[12300,13352],12300,12300,12300,12300,[12300,13287],[12300,13288],[12300,14925],[12300,14926],[12300,14927],[12300,14928],12300,12300,12300,[8556,14414,16689],[8557,14415,16690],[8554,14415,12296],12297,12298,[8556,14415,12299],[8557,14415],[8490,14416,14989],[12300,14990],[12300,14991],[12300,14992],12300,12300,12300,12300,12300,12300,[12300,13159],12300,12300,[12300,8563],[14035,8564],[14099,8565],14033,14096,[14098,8570],[14035,8630],[14098,8565],14675,14034,14097,14096,14674,14675,[14098,8570],[14096,8632],[14098,8633],[14033,8565],14099,14737,14737,14673,[14032,8570],[14098,8634],8635,[12300,8758],[12300,8759],8693,8694,8695,[14035,8564],[14096,8565],14099,[14032,13730],[14674,13731],[14737,13732],[14675,13733],[14098,13734],14098,14675,14099,[14032,8435],8436,0,0,0,0,0,0,0,0,8507,[12909,8508],12908,12972,12972,12909,[12909,16757],[12909,16758],12908,12909,[12908,14177],[12908,14178],[12909,14179],[12972,14180],12973,12909,12973,12972,[12973,8563],[12908,8564],[12909,8565],[13735,12974],13736,[13736,12778],12909,[12908,8507],8698,[12909,8636],[12972,16757],[12973,16758],12973,12972,[12973,14177],[12973,14178],[12972,14179],[12908,14180],12973,12972,12909,12909,12908,12972,[12972,8378],[12973,8379],[13800,8246],[12909,8372],[12908,8373],12909,[12680,12615],[13649,12681,12616],13586,13585,13586,13651,[13587,12623],[13651,12624],13649,13649,13649,13648,[13584,12361],[13584,12362],[13640,13588,12365],[13640,12366],[13512,13519],13648,13649,13648,13585,13585,13651,[13512,13716],13640,[13641,13583],13586,13587,13585,13587,13648,13651,13584,13586,[13587,13192],[13586,13193],[13587,13194],[13585,13195],[13585,13196],13584,13587,13650,13650,13587,13587,13586,13648,[13643,13458],13643,13643,[13643,13647],13651,13586,13649,13649,13586,13587,13587,13586,13584,13648,13648,13585,[13584,12361],[13651,12362],[13643,12365],[13643,12362],[13651,12365],[13587,12488],[13643,13588,12489],13643,13643,[13643,13647],13651,13650,13584,13650,13650,[13587,12361],[13649,12362],[13586,12488],[13585,12489],13587,13651,13587,[13643,13392],[13643,13459],13643,[13643,13455],13650,13650,[13649,12686],[13586,12750],12751,[13643,12752],13643,[13643,13647],13651,13651,13584,13648,13648,13587,13587,13649,13586,13586,[13584,3750],[13587,3751],3815,[2422,3942,2549],[2360,2550],[2422,2551],2359,2424,2421,[2360,2805],[2424,2806],[2360,2807],[2422,2808],2421,[3700,2488],[3700,2296],3636,[3387,2229],2359,2421,[2424,2869],[2421,2870],[2358,2871],[2423,2872],2359,2424,2423,2424,[2359,16837],16838,16839,16840,16841,16842,[3635,2232,16843],3700,3701,3637,3701,[3636,2420,2741],[2359,2742],[2358,2743],[2357,2744],2423,2423,2359,2358,2421,2359,2359,2423,2360,[2421,2805],[2359,2806],[2358,2807],[2421,2808],[3636,2425],3323,3700,3324,[3637,2793],[3699,2794],3701,3701,3388,3388,[3324,2420,2741],[2360,2742],[2424,2743],[2424,2744],2522,2422,2424,2357,[2423,2613],[2424,2614],[2359,2615],[2423,2616],2424,2360,2359,2423,2421,2357,2359,2421,2358,[2357,2805],[2359,2806],[2358,2807],[2359,2808],[3635,2169],3699,[3699,2293],2360,2360,2422,2358,2360,2423,2423,2358,[3323,2233],3637,[3324,2228],[2421,2613],[2360,2614],[2422,2615],[2422,2616],2421,2358,2421,2357,2359,2359,[3388,2361],3636,[3700,2164],[3636,2165,2677],[2359,2678],[2357,2679],[2358,2680],2360,2424,2421,2357,2424,2357,2358,2422,2423,2357,2357,2357,2358,2424,[2360,2677],[2421,2678],[2424,2679],[2422,2680],2357,2360,[3699,2297],3700,[3699,2484,16901],16902,16903,16904,16905,16906,[2358,16907],2357,2359,2359,2357,[2422,3743],[2360,3744],[2490,3745],2426,2426,2362,2421,2427,2358,2424,2362,2394,2491,2423,2357,2358,2490,2424,[2357,3623],[2357,3624],2421,2360,2428,2423,2359,2492,2422,2421,2358,2492,2424,2490,2357,2490,2423,2427,2426,2358,2427,2423,2426,2428,2364,2422,2357,2422,2426,2360,2423,2426,2428,2492,2426,2357,2359,2427,2421,2423,2491,2424,2422,2426,[2359,3743],3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3700,4746],3635,3637,3700,3701,[3701,2774],3637,3635,3701,3636,3388,3635,3635,3636,3635,3635,3388,3635,3636,3387,3636,3636,3700,3701,3636,3323,3700,3637,3701,3637,3700,3324,3699,[3701,2773],3701,3635,3387,3324,3701,3324,3388,[3700,4673],4674,0,0,0,0,0,0,4808,4868,4869,4803,0,0,0,0,0,0,4745,4936,[3700,4937],3701,[3323,7813],3635,3387,3701,3323,3701,3637,3636,3700,3701,3323,3635,3388,3637,3699,3324,3637,3701,3636,3635,3323,3700,3637,3701,3700,3700,3637,3323,3387,[3636,2902],[3701,4865],4866,4867,4868,[4869,7621],4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8762,0,0,8757,8758,8759,8693,8696,8697,8698,8699,8507,[12300,8762,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13351],[12300,13352],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,15053],[12300,15054],[12300,15055],[12300,15056],12300,12300,12300,12300,12300,12300,[12300,13351],[12300,13352],[12300,14989],[12300,14990],[12300,14991],[12300,14992],12300,12300,12300,[8554,14478,16753],[8432,16754],[8810,8429],8939,8939,[8875,8617],8431,[8490,15053],[8490,14415,15054],[8555,14416,15055],[12300,15056],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8627],8628,[14097,8629],[14099,8630],[14097,8631],[14032,8634],8502,[14099,8564],[14032,8565],14032,14738,14674,14738,[14098,8570],[14034,8571],8696,8697,[14033,8629],[14035,8630],[14096,8631],[14034,8632],[14098,8633],[14034,8634],8698,[12300,8699],12300,12300,[12300,8757],[12300,8758],[12300,8759],8628,[14032,8564],[14098,8565],[14673,13794],[14674,13795],[14035,13796],[14097,13797],14034,14034,14738,14035,[14035,8499],8500,0,0,0,0,0,0,0,8570,8571,[12909,8572],12973,12973,12909,12909,12972,12973,12909,12973,[12972,14241],[12973,14242],[12972,14243],[12908,14244],12909,12973,12973,12909,[12908,8627],8628,[12972,8629],[12972,8818],[13799,12714,8819],[12909,8820],[12908,8821],[12908,8634],[12908,8572],12972,12973,12973,12972,12972,12973,[12909,14242],[12973,14243],[12909,14244],12909,12909,12972,12972,12973,12973,[12972,13921],[12908,8378,13922],[12973,8310,13923],[12909,8373,13924],12972,12973,[12908,12744,12679],[13650,12680,12680],[13584,12681,12681],13587,13584,13651,[13586,12494],[13586,12430],[13648,12431],13585,13648,[13651,12424],[13650,12425],[13649,12426],[13587,12429],[13650,12430],[13640,13583,12431],13586,13649,13648,13587,13587,[13640,13460],13641,[13512,13456],13651,13651,13585,13649,13651,13651,13586,13586,13649,[13585,13256],[13585,13257],[13649,13258],[13584,13259],[13651,13260],13587,13649,13650,13648,13585,13584,13649,13587,[13643,13652],13643,13643,[13643,13521],13587,[13649,13128],[13648,13129],[13649,13130],[13585,13131],[13650,13132],13651,13584,13586,13651,13648,[13585,12361],[13649,12425],[13651,12426],[13584,12429],[13649,12426],[13649,12429],[13650,12489],13651,[13643,13458],13643,[13643,13711],13584,13587,13584,13587,[13649,12424],[13584,12425],[13586,12426],[13585,12489],13587,13651,13648,13585,13651,[13643,13460],13643,[13643,13583],13651,13586,[13649,12559],12814,[13649,12815],[13643,13392],[13643,13395],13651,13651,13585,13649,13584,13587,13586,13584,13648,13587,[13651,3750],[13648,3814],3815,[2358,3879],[2359,2613],[2358,2614],[2358,2615],[2421,2616],2422,2424,[2421,2869],[2357,2870],[2358,2871],[2423,2872],[3701,2425],3636,3699,3701,[3699,2420],2423,2424,2359,2360,2357,2421,2422,2357,2423,2422,[2423,16901],16902,16903,16904,16905,16906,[2358,16907],[3700,2165],[3323,2169],3635,3636,[3635,2293,2805],[2421,2806],[2421,2807],[2423,2808],2422,2424,2422,2357,2424,2360,2423,2458,2357,[2358,2869],[2422,2870],[2359,2871],[2424,2872],[3323,2425],3636,3699,3701,[3324,2857],[3635,2858],3635,3323,3701,[3323,2229],[2421,2805],[2421,2806],[2357,2807],[2360,2808],2360,2359,2357,2423,[2359,2677],[2422,2678],[2424,2679],[2360,2680],2423,2424,2357,2424,2423,2359,2422,2359,2357,[2424,2869],[2421,2870],[2423,2871],[2360,2872],2359,[3701,2232],3323,[3388,2420],2421,[2359,3675],2421,2359,2357,[2422,3676],2358,[3699,2297],3699,[3699,2292],[2360,2677],[2358,2678],[2358,2679],[2360,2680],2359,2359,2422,2360,[3324,2487],[3323,2488],[3701,2296],3637,[3699,2420],[2358,2741],[2359,2742],[2357,2743],[2357,2744],2421,2359,2423,2423,2423,2360,2424,2357,2357,2424,2360,2357,2422,2360,[2421,2741],[2422,2742],[2421,2743],[2422,2744],2424,2424,[3637,2361],3701,[3387,16965],16966,16967,16968,16969,16970,[2358,16971],2359,2360,2423,2358,[2424,3807],3808,[2357,3809],[2359,3745],2491,2490,2359,2360,2360,2423,2491,2492,2357,2427,2357,2421,2359,2490,[2421,3687],[2421,3688],2490,2421,2359,2421,2424,2359,2426,2422,2427,2424,2421,2491,2491,2422,2423,2421,2360,2427,2423,2360,2360,2428,2426,2357,2358,2357,2490,2427,2427,2421,2421,2424,2458,2360,2492,2492,2426,2492,2424,2422,2491,2491,[2422,3807],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3635,4682],3700,3699,3700,3635,[3700,2838],3700,3324,3635,3323,3388,3636,3637,3635,3701,3323,3323,3388,3700,3323,3700,3637,3388,3699,3700,3323,3637,3636,3323,3388,3700,3699,3324,[3701,2837],3699,3701,3636,3388,3636,3701,3701,[3701,4801],4802,4803,0,0,4808,4870,4871,4872,[4932,7621],4933,4867,4803,0,0,0,0,4808,4809,[3636,4810],3701,3700,3387,3636,3699,3388,3635,3387,3324,3637,3324,3323,3701,3637,3635,3323,3635,3637,3387,3635,3699,3636,3700,3635,3637,3701,3324,3388,3636,3323,3700,3699,3324,[3324,4930],4931,4932,[4933,7685],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8760,8761,8762,8570,8571,[12300,8572],12300,12300,[12300,13159],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13157],[12300,13158],12300,12300,[12300,14929],[12300,14930],[12300,14931],[12300,14932],12300,12300,12300,12300,[12300,13159],12300,[8369,14414,15117],[8367,14415,15118],[8432,14415,15119],[8368,14415,15120],[8368,14416,16689],[12300,16690],12302,12300,12300,12300,12300,12300,[12300,15053],[8433,14414,15054],[8557,14415,15055],[8492,14416,15056],12300,12302,[8554,14414],8554,[8874,8558],8939,8939,8810,[8810,8363],8557,[8493,15117],[8433,15118],[8432,15119],[8493,14416,15120],12300,12302,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8692],8693,8694,8695,8698,[12300,8758],8628,[14034,8629],[14098,8818],[14097,8819],[14032,8820],[14035,8821],[14032,8634],8635,[12300,8760],[12300,8761],8693,8694,8695,8696,8697,8698,[12300,8762],12300,12300,12300,12300,12300,12300,[12300,8692],8628,[14097,8629],[14097,8630,13858],[14032,8631,13859],[14097,8565,13860],[14096,13861],14032,14035,14034,[14034,8308],8309,8373,0,0,0,0,0,0,8570,8634,8635,[12972,8636],12908,12908,12909,12908,12909,12908,12909,12909,12908,12972,12908,12972,12908,12909,12973,12973,12972,[12908,8692],8693,[8882,16693],[8883,16694],8884,8885,8698,[12908,8636],12973,12972,12908,12973,12908,12908,12973,12973,12972,12973,12973,12909,12909,12972,12908,[12908,13985],[12909,13986],[12909,13987],[12973,13988],12972,12909,[12909,12808,12743],12744,[13650,12745,12745],[13584,12746],[13584,12747],[13650,12681],13651,[13649,12494],[13651,12495],[13651,12362],[13649,12365],[13650,12488],[13649,12489],13584,13586,[13587,12494],[13587,12495],[13650,12496],13650,13585,13651,13648,[13512,13524],13512,[13641,13711],[13587,13133],[13648,13134],[13648,13135],13586,13648,13586,13584,13586,13649,[13648,13320],[13587,13321],[13584,13322],[13586,13323],[13586,13324],13651,13587,13587,13651,13584,13584,13650,13586,13585,[13643,13392],[13643,13458],13643,[13643,13647],[13651,13192],[13585,13193],[13648,13194],[13648,13195],[13649,13196],13585,13584,13651,13649,[13584,12424],[13643,13714,12425],[13643,13714,12489],13649,13649,13649,13584,13585,13651,13584,[13643,13396],13643,[13643,13520],[13643,13713],[13643,13714],[13643,13715,12487],[13650,12488],[13585,12489,2345],[13585,2346],[13650,2347],13648,13648,13650,13650,13586,[13643,13524],13643,[13643,13520],13649,13650,[13648,12623],[13584,12624],13585,13649,13584,13650,13648,13651,13649,13587,13650,13650,13585,13650,13648,[13650,3623],3878,[2358,3879],2357,[2359,2677],[2357,2678],[2359,2679],[2360,2680],2358,2683,2684,2421,2360,2424,2357,[3323,2231],3323,3635,[3700,2484],[3701,2485],2423,2423,2359,2422,2359,2424,2421,2357,2422,[2424,16965],16966,16967,16968,16969,16970,[2423,16971],2423,[3323,2295],3636,3700,[3323,2869],[3700,2420,2870],[2422,2871],[2422,2872],2423,2357,2359,2422,2357,2421,2359,2360,2358,2422,2424,2423,2421,[3701,2296],3700,3636,3323,[3323,2921],[3323,2922],[3635,2923],3701,3388,[3635,2420],[2423,2869],[2358,2870],[2359,2871],[2421,2872],2360,2424,2358,2422,[2357,2741],[2421,2742],[2359,2743],[2358,2744],2360,2423,2358,2423,2423,2423,2421,2423,2421,2360,[3701,2485],[3635,2485],[3636,2486],[3699,2487],[3324,2296],3700,[3701,2484],[3701,2485,3750],[3636,2485,3739],[3637,2486],[3636,2487],[3700,2488],[3699,2485,3740],[2423,3745],[3636,2361],3323,[3636,2356],[2421,2741],[2359,2742],[2358,2743],[2360,2744],2421,2422,2422,[3700,2425],3636,3699,[3699,2164],[3323,2165],2421,[2359,2805],[2421,2806],[2424,2807],[2422,2808],2422,2359,2421,2357,2358,2360,2458,2360,2423,2424,2421,2423,2358,2358,[2424,2805],[2424,2806],[2359,2807],[2422,2808],2358,2421,2424,[3701,2232],[3323,17029],17030,17031,17032,17033,17034,[2423,17035],2357,2358,2421,2423,2359,[2422,3872],3873,[2358,3809],[2421,3745],2424,2360,2492,2423,2492,2491,2428,2427,2490,2360,2360,2428,[2428,3750],[2423,3751],[2421,3752],2357,2359,2362,2423,2363,2358,2427,2422,2359,2428,2422,2357,2428,2422,2427,2491,2428,2427,2424,2428,2422,2359,2426,2427,2358,2424,2423,2427,2359,2357,2424,2357,2423,2357,2359,2358,2426,2491,2427,2358,2490,2422,2357,[2423,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3636,4746],3637,3635,3700,3636,[3387,2902],3324,3637,3699,3636,3388,3635,3323,3388,3637,3635,3636,3637,3635,3323,3701,[3636,2932],[3700,2933],3636,3637,3636,3636,3387,3637,3637,3700,3699,3637,[3387,2901],3701,3636,3701,3637,[3323,7693],3323,3699,[3701,4865],4866,4867,4868,4869,4872,4934,4935,4936,[3701,4996,7685],[3636,4997],4931,4802,4803,0,0,4808,4872,4873,[3635,4874],3637,3636,3323,3635,3637,3635,3637,3636,3637,3700,3323,3700,3635,3636,3635,3635,3635,3323,3635,3323,3635,3637,3637,3388,3636,3637,3699,3699,3636,3635,3635,3700,3700,3636,[3700,4995],[3635,4996],[3701,4997,7749],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8636],12300,[12300,14929],[12300,14930],[12300,14931],[12300,14932],12300,12300,[12300,13354],[12300,13355],12300,12300,12300,[12300,13159],12300,12300,12300,12300,12300,12300,[12300,13221],[12300,13222],12300,12300,[12300,14993],[12300,14994],[12300,14995],[12300,14996],[12300,16689],[12300,16690],12300,12300,12300,12300,[8556,14478,15181],[8556,15182],[8810,8621,15183],[8369,15184],[8555,16753],[8557,14415,16754],[8493,14416],12300,[12300,13354],[12300,13355],12300,12300,[12300,15117],[8369,14478,15118],[8368,15119],[8557,15120],[8492,14415],[8556,14415],8492,8492,8555,[8810,8365],8874,8874,[8939,8553],8368,[8368,15181],[8367,15182],[8433,15183],[8432,15184],[8491,13904,14415],[14034,14415],[14032,14416],[12300,13157],[12300,13158],12300,12300,12300,12300,12300,12300,[12300,8757],[12300,8758],[12300,8759],[12300,8762],12300,[12300,8692],8693,8882,8883,8884,8885,8698,[12300,8699],12300,12300,[12300,8757],[12300,8758],[12300,8759],[12300,8760],[12300,8761],[12300,8762],12300,12300,12300,12300,[12300,13160],12300,12300,12300,[12300,8692],8693,8694,8695,[14032,8629],[14096,8565],[14098,8245],[14035,8246],[14033,8249],8372,8373,0,0,0,0,0,0,0,8443,8698,[12973,8699],[12909,16693],[12909,16694],12973,12973,12972,12908,12909,12972,12908,12908,12973,12972,12908,12908,12908,12973,12972,12972,12908,[12909,8757],[12909,8946,16757],[12908,8947,16758],[12972,8948],[12973,8949],[12973,8762],12908,12909,12973,12908,12908,12909,12972,12973,12972,[12908,13921],[12908,13922],[12972,13923],[12972,13924],12972,12973,12909,[12908,14049],[12972,14050],[12908,14051],[12972,14052],12909,12973,12909,[12973,12808,12808],12809,12810,12811,[13586,12745],[13586,12681],13650,[13585,12494],[13643,13523,12426],[13643,12429],[13643,13455,12489],13649,13651,13648,13648,[13649,12559],[13586,12560],13651,13650,13650,13648,[13512,13588],13640,13512,[13641,13455,13197],[13648,13198],[13587,13199],13650,13648,13649,13584,13584,13585,[13649,13384],[13651,13385],[13586,13386],[13586,13387],[13650,13388],13584,13649,13587,13648,13586,13586,13585,13587,13650,13587,13587,[13643,13392],13586,[13586,13256],[13586,13257],[13651,13258],[13650,13259],[13648,13260],13651,13585,13585,[13650,12487],[13586,12488],[13643,13459,12489],13643,[13643,13455],13585,13651,13587,13650,13586,13587,[13643,13652],13643,13643,13643,13643,[13643,12551],[13587,12552],[13586,2409],[13584,2410],[13584,2411],13587,13649,13584,13651,13587,[13643,13588],13643,13643,[13643,13647],[13651,12686],[13587,12750],[13650,12688],13587,13585,13651,13586,13648,13586,13587,13586,13649,13648,13586,13584,13585,[13651,3623],[2424,3624],2358,2424,[2358,2741],[2358,2742],[2359,2743],[2360,2744],2421,2747,2748,2359,2423,2357,2359,[3636,2233],3636,3701,3636,3700,[3636,2293],[3700,2487],[3323,2488],[3637,2485],[3700,2486],[3699,2487],[3323,2488],2357,2424,[2360,17029],17030,17031,17032,17033,17034,[2422,17035],[3700,2425],[3699,2235],3635,3635,3701,[3324,2294],[3700,2487],2421,2421,2358,2357,2359,2424,[2423,2549],[2359,2550],[2359,2551],2359,2360,2357,2424,[3700,2233],3701,3700,[3324,2234],3701,[3701,2985],[3700,2986],[3323,2987],3636,[3636,3750],[3637,2484,3810],[2421,3811],[2422,3745],2421,2359,2360,2424,2423,2360,[2423,2805],[2359,2806],[2421,2807],[2423,2808],2423,2357,2421,2423,2422,2423,2422,2358,2358,2357,[3701,2232],3323,3635,3323,3636,3388,[3635,3750],[3699,3751],[2876,3761,3803],3701,3388,3635,[3700,3804],[2358,3809],[3323,2489,3745],3387,[3701,2420],[2421,2805],[2357,2806],[2360,2807],[2421,2808],2424,2421,2421,[3323,2295],3636,3387,[3637,2420],2421,2424,[2424,2869],[2422,2870],[2360,2871],[3637,2486,2872],2357,2359,2422,[3388,2488],2424,2423,2421,2421,2422,2421,2423,2421,2357,2423,[2421,2869],[2421,2870],[2357,2871],[2423,2872],2423,2358,2423,[3699,2425],[3636,17093],17094,17095,17096,17097,17098,[2422,17099],2421,2424,2424,2359,2357,2421,[2421,3872],3873,[2422,3809],[2424,3745],2359,2491,2424,2358,[2428,3676],2490,2423,2427,2492,2422,[2358,3750],[2421,3814],3815,[2358,3816],2424,2492,2424,2423,2492,2492,2423,2427,2491,2491,2424,2428,2426,2428,2490,2422,2423,2357,2491,2357,2359,2360,2360,2421,2360,2492,2423,2422,2491,2359,2426,2421,2426,2421,2424,2424,2427,2359,2491,2359,2360,2423,2490,2428,[2359,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3636,4553],3636,3701,3699,3635,3699,3324,3701,3323,3635,3636,3637,3699,3637,[3635,7693],3323,3388,3699,3635,3701,[3636,2996],[3323,2997],3636,3323,3700,3700,3324,[3324,7241],[3635,7242],3324,3635,3387,3699,3387,3323,3700,3637,[3635,7757],3637,3701,3701,[3700,4930],4931,[4932,3124],[4933,3125],4936,[3637,4998],[3700,4999],[3700,5000],[3637,7749],3699,[3699,4995],4866,4867,4868,4869,4872,4936,[3636,4937],3700,3323,3636,3699,3699,3323,3323,3637,3324,3637,3699,3700,3387,3701,3699,3700,3388,3701,3635,3636,3324,3323,3636,3700,3636,3635,3701,3700,3637,3701,3323,3323,3388,3700,3636,3699,3323,[3637,7813],[3637,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12300,8699],12300,12300,[12300,14993],[12300,14994],[12300,14995],[12300,14996],12300,[8433,14414],[8493,14415],[8368,14416,14925],[12300,14926],[12300,14927],[12300,14928],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8433,14414,15057],[8490,14415,15058],[8433,14416,15059],[12300,15060],[8431,14414,16753],[8432,14415,16754],[8367,14416],12300,12302,[8432,14414],[8369,15245],[8810,8558,15246],[8939,15247],[8938,8553,15248],8367,8554,[8368,14480],12300,12300,12300,12300,12300,[12300,15181],[8492,14542,15182],[8433,15183],[8490,15184],8555,8433,8496,8497,8556,8432,[8875,8364],[8875,8363],8492,8555,8496,[8497,15246],[8493,15247],[8368,13534],[8369,14095,13535],[14033,13536],[14035,14480],[12300,13221],[12300,13222],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8757],[12300,8946],[12300,8947],[12300,8948],[12300,8949],[12300,8762],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8757],[12300,8758],[12300,8759],8693,[14096,8629,8308],8309,8310,8313,8373,0,0,0,0,0,0,0,0,8443,[12973,8444],12909,[12972,16757],[12909,16758],12973,12909,12973,12909,12972,12908,12909,12973,[12909,13921],[12973,13922],[12908,13923],[12972,13924],12908,12908,12908,12908,12973,12973,12908,12973,12909,12973,12908,12908,12972,12909,12909,12972,12909,12909,12909,12972,[12908,13985],[12973,13986],[12972,13987],[12908,13988],12908,12973,12908,[12908,14113],[12972,14114],[12973,14115],[12908,14116],12973,12972,12909,12972,[12908,12873],[12973,12874],[12909,12875],12809,[13648,12616],13585,[13643,13652],13643,13643,[13643,13583],13648,13648,13585,13587,[13648,12623],[13586,12624],13651,13586,13651,13586,13649,[13512,13459],13640,[13640,13583,13261],[13649,13262],[13587,13263],13650,13586,13651,13585,13650,13587,13587,[13584,13449],[13586,13450],[13648,13451],13585,13650,13586,13584,13651,13650,13584,13585,13648,13584,13587,13650,13648,13584,[13649,13320],[13649,13321],[13651,13322],[13585,13323],[13584,13324],13585,13586,13649,[13587,12551],[13586,12552],[13643,13652],13643,[13643,13519],13586,[13643,13714],[13643,13715],13648,13648,13650,13585,[13643,13458],13643,13643,13643,[13643,12615],[13586,12616],[13650,2473],[13649,2474],[13585,2475],13584,13584,[13586,13128],[13586,13129],[13586,13130],[13649,13131],[13643,13396,13132],13643,[13643,13520,12686],[13649,12687],12814,[13585,12752],13586,13587,13585,13584,13650,13585,13585,13648,13651,13648,13584,13649,13584,[13648,3687],[2357,3688],2360,2424,[2424,2805],[2421,2806],[2424,2807],[2359,2808],2360,2357,2424,[2357,2549],[2422,2550],[2422,2551],2360,[3637,2361],3323,3699,[3637,2230],[3699,2169],3701,3388,3635,3700,3637,[3637,2549],[3699,2550],[3700,2294,2551],[3637,2487],[3637,2489,17093],17094,16652,16653,16654,17098,[3323,2488,17099],[3323,2295],[3637,2549],[3637,2230,2550],[3635,2166,2551],[3701,2167],[3637,2232],3635,[3636,2420,3425],[2358,3426],[2357,3429],[2360,3430],2358,2359,[2424,2613],[2357,2614],[2424,2615],[2421,2616],2421,2360,2421,[3699,2297],3324,3636,3699,3636,[3637,3049],[3700,3050],3636,[3701,3750],[3699,3751],3874,3875,[3699,2486,3809],[2360,3810],[2423,3811],[2358,3745],2358,2423,2421,[2424,2869],[2424,2870],[2424,2871],[2424,2872],2358,2422,[2423,3750,2299],[2424,3810],[2422,3811],[2357,3745],2358,2424,[3699,2487],[3388,2488],[3699,2489],3324,3635,[3388,2230],[3701,2165],[3701,2169],[3323,3623],3815,[3000,3867],[2811,3570],[2812,3762],3636,[3701,3868],3873,[3323,3680],3323,[3637,2484],[3388,2485,2869],[2424,2870],[2421,2871],[2424,3750,2872],[2357,3810],[2423,3811],[3637,2425,3745],3699,3637,[3700,2164],2359,2422,2423,[3700,2485],[3636,2486],[3323,2295],3701,[3323,2484],[3637,2485],[3388,2295],3387,[3700,2294],[3637,2485],[3700,2486],[3701,2487],[3699,2488],[3387,2487],2421,2424,2360,2424,2360,2358,2359,2359,2359,2360,2357,[3323,2295],[3636,17157],[3387,17158],[3323,2164,17159],[2357,17160],[2358,17161],[2424,17162],[2424,17163],2357,2424,2421,2424,2357,2423,2423,[2357,3872],3873,[2421,3616],2522,2427,2423,2522,[2421,3740],[2426,3745],2360,2424,2491,2492,[2360,3623],3878,[2423,3879],2424,2492,2360,2421,2428,2360,2491,2358,2359,2423,2358,2427,2358,2359,2427,2424,2426,2363,2394,2394,2359,2423,2358,2421,2427,2421,2357,2422,2427,2360,2360,2359,2491,2423,2491,2427,2422,2426,2359,2421,2423,2394,2423,2428,2359,[2424,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3637,4553],3701,3636,3636,3323,3635,3700,3700,3324,3323,3635,3637,3323,[3700,7757],3701,3323,3636,3700,3637,[3699,3060],[3323,3061],3701,3323,3637,3701,3635,[3701,7305],[3636,7306],3636,3388,3701,3635,3387,3635,3699,3637,3323,3700,3701,3699,3701,[3701,4995],[3635,4681,4996],[4682,4997],[3701,5000],3701,3637,3636,[3635,7813],3701,3636,[3637,4930],4931,[4932,3124],4933,4936,[3636,5000],3699,3701,3701,3700,3323,3699,3637,3636,3635,3635,3700,[3636,2170],[3324,2171],3636,3699,3701,3636,3635,3637,3700,3699,3637,3699,3636,3701,3699,3701,[3637,4808],[3636,4868],[3700,4869,7621],[3637,4803],3637,3700,3637,3701,3635,3699,3387,[3636,7693],3635,[3699,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,[8491,14414,15057],[8491,14416,15058],[12300,15059],[12300,15060],12300,[8556,14478],8492,[8556,14989],[8433,14415,14990],[8367,14416,14991],[12300,14992],12300,12300,12300,12300,12300,12300,[12300,13354],[12300,13355],12300,12300,12300,[8557,14478,15121],[8554,15122],[8369,15123],[8554,14415,15124],8433,8556,8557,[8490,14415],[8490,14415],[8554,14929],[8491,14930],[8875,8429,14931],[8874,8363,14932],8555,[8939,8621],8368,8557,[8556,14416],[12300,14929],[8432,14414,14930],[8491,14416,14931],[12300,14932],[8368,14414,15245],[8556,15246],[8555,15247],[8555,15248],8369,8493,8560,8561,8368,8431,8491,[8492,14925],[8492,14926],[8554,14927],[8560,14928],8561,[8433,13597],[8556,13904,13598],[14034,13599],[14098,13600],[14098,14544,13601],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12301,12300,12300,12300,12300,12300,[12300,16689],[12300,16690],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13921],[12300,13922],[12300,13923],[12300,13924],12300,12300,12300,12300,12300,[12300,8757,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,8507,[12973,8508],12972,12908,12909,12973,12909,12973,12909,12909,12972,12972,12973,[12973,13985],[12973,13986],[12909,13987],[12973,13988],12908,12973,12908,12973,12973,12909,12972,[12909,13921],[12908,13922],[12909,13923],[12909,13924],12972,12908,12972,12909,12909,12908,12973,12908,12908,[12973,14049],[12973,14050],[12973,14051],[12972,14052],12908,12908,12973,[12909,14177],[12909,14178],[12973,14179],[12973,14180],12909,12908,[12909,16693],[12908,16694],12908,12973,12972,[12909,12551],[13649,12552],13651,[13643,13522],13643,[13643,13456],13584,[13643,13712],13586,13585,13586,[13648,12559],[13586,12560],13648,13650,13649,13584,13649,13587,[13512,13392],[13587,13325],[13651,13326],[13649,13327],13649,13587,13651,13587,13586,13649,13584,13587,13650,13650,13587,13586,13587,13585,13650,13650,13587,13587,13587,13585,13648,13584,13649,13587,[13586,13384],[13584,13385],[13649,13386],[13650,13387],[13586,13388],13587,13651,13586,[13651,12551],[13643,13715,12552],[13643,13522],13643,[13643,13583],[13643,13652],13643,13643,[13643,13520],13649,13649,13587,[13643,13460],13643,13643,[13643,12424],[13650,12425],[13648,12489],[13585,2537],[13650,2538],13649,13586,13650,[13648,13192],[13649,13193],[13584,13194],[13586,13195],[13643,13460,13196],[13643,12686],[13643,12750],12751,[13584,12878],13648,13585,13585,13651,13585,13650,13650,13585,13587,13587,13648,13587,13587,[13586,3750],[13587,3751],[2359,3752],2422,2358,[2364,2869],[2422,2870],[2358,2871],[2358,2872],2359,2422,2358,[2424,2613],[2358,2614],[2358,2615],[2360,2616],2360,[3323,2231],3636,[3387,2228],2360,[3324,2165],[3699,2166],[3636,2167],[3699,2168],[3637,2169],[3699,2613],[3636,2614],[3323,2615],[3636,2616],[3636,17157],[3637,2420,17158],[3637,2425,16716],[3324,16717],[3637,2293,16718],[3636,2489,17162],[3388,17163],3701,[3323,2613],[3699,2420,2614],[2359,2615],[2422,2616],[3323,2233],[3635,3488],[3700,2484,3489],[2423,3490],[2360,3493],[2360,3494],[2360,3495],2360,[2360,2677],[2360,2678],[2357,2679],[2358,2680],2424,2423,2422,[3700,2361],3699,3636,3637,[3699,17285],[3701,17286],[3635,17287],[3637,3750],[3635,3814],3815,[3131,3938],[2876,3939],3873,3874,3875,[2422,3809],[2422,3745],2424,2359,[2358,3750],[2424,3810],[2357,3745],2422,2424,[2359,3750],[2359,3751],3874,3875,[2360,3744],[2424,3745],2359,[3701,2231],[3637,2229,3750],[3635,2165,3810],[3635,2231,3811],[3701,2230,3745],2421,2360,[2357,3750],[2422,3814],[2876,3688],3131,2876,2876,[2999,3761],[2935,3762],[3763,3679],[3323,3680],3324,3323,[3387,3750],[3323,2293,3810],[2358,3811],[2358,3814],3874,3875,[3323,3809],[3323,3810],[3700,3811],[3700,2293,3745],[3699,2485],[3700,2486],[3635,2489],3637,3637,3699,3635,[3700,3750],[3635,3810],[3635,3811],[3388,3745],3699,3636,3323,3637,[3699,3750],[3388,3810],[3701,2228,3745],2359,2357,2423,2360,2424,[2360,2549],[2359,2550],[2422,2551],2360,[3635,2233],3323,3323,3699,[3323,2228],2358,2360,2359,2357,2424,2423,2360,2360,2358,2423,2357,2359,[2357,3615],[2421,3616],2421,2490,2491,2490,[2357,3804],[2421,3744],[2428,3745],2491,2358,[2358,3750],[2359,3751],[2422,3752],2490,2522,2490,2422,2490,2360,2427,2492,2490,2428,2357,2428,2360,2427,2359,2424,2491,2359,2357,2427,2421,2428,2421,2426,2423,2358,2426,2360,2492,2362,2491,2424,2422,2421,2358,2427,2421,2492,2423,2357,2458,2492,2423,2359,2422,[2359,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3700,4618],3700,3701,3324,3700,3701,3635,3701,3635,3701,3701,3700,3323,3701,3699,3324,3636,3635,3700,3701,3324,3637,3323,3636,3388,3637,3387,3637,3700,3699,3700,3635,3637,3700,3324,3637,3701,3323,3699,3701,3700,[3635,4681],[3637,4682],3637,3700,3700,3699,3699,3700,3636,3699,[3636,4995],[3637,4996],[3636,4997],[3701,5000],3701,3700,3637,3700,3701,3635,3324,3700,3636,3323,3700,3635,3324,3635,3637,3637,3700,3699,3636,[3701,4808],[3637,4868],[3635,4869],[3700,4870],[3637,4871],[3700,4803],3701,3701,[3635,4808],[3636,4809],4932,[4933,7685],[3699,4802],[3699,4803],3636,3637,3635,3388,3637,3701,[3635,7757],3323,[3636,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,[8490,14478,15121],[8368,15122],[8557,14416,15123],[12300,15124],[8554,14414],8556,8492,[8874,8620,15053],[8875,8428,15054],[8810,8553,15055],[8554,14416,15056],12300,[8555,14414],[8367,14415],[8431,14416],12300,[8368,14414],[8433,14415],[8431,14415],[8367,14416],12308,[8369,14414],[8369,15185],[8492,15186],[8492,15187],[8554,15188],8369,8556,8491,8368,8554,[8490,14993],[8554,14994],[8875,8364,14995],[8939,8426,14996],[8810,8622],8939,[8810,8553],8493,[8810,8620],[8875,8621,14415,14993],[8491,14994],[8556,14995],[8490,14415,14996],8305,8555,8493,8490,[8492,14929],[8554,14930],[8432,14931],[8369,14932],8431,8367,[8938,8621],[8554,14989],[8367,14990],[8368,14991],[8492,14992],[8431,13904],[8433,13840,13661],[14032,13662],[14099,13663],[14098,13664],[14033,14480,13665],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13413],[12300,13414],12300,[8367,14414],[8431,14415,16753],[8367,14416,16754],12300,12300,[12300,14925],[12300,14926],[12300,14927],[12300,14928],12300,12300,12301,12300,12300,12300,[13342,14414],[13280,14415],[13342,14416,13985],[12300,13986],[12300,13987],[13279,14414,13988],[13341,14415],[13280,14416],12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12908,8315],12973,12908,12909,[12972,13921],[12972,13922],[12973,13923],[12908,13924],12908,12972,12973,[12908,14049],[12972,14050],[12909,14051],[12908,14052],12973,12972,12909,12972,12908,12909,12973,[12973,13985],[12972,13986],[12908,13987],[12973,13988],12972,12972,12972,12972,12973,12973,[12909,16693],[12909,16694],12908,[12908,14113],[12972,14114],[12908,14115],[12973,14116],12973,12908,12908,[12908,14241],[12908,14242],[12909,14243],[12909,14244],12908,12973,[12973,16757],[12972,16758],12973,12909,[12973,12487],[13586,12488],[13586,12489],[13643,13460],13643,13643,[13643,13711],[13643,13522],13643,[13643,13520],13584,13586,[13586,12623],[13650,12624],13587,13648,13651,13587,13648,13585,13587,13515,13651,13586,13586,13650,13650,13650,13648,13584,13650,13648,13587,13586,13586,13649,13649,13650,13648,[13643,13714],13649,13584,13650,13648,13586,13587,13587,13587,13651,[13649,13449],[13584,13450],[13585,13451],13648,13650,13650,13649,[13587,12615],[13643,12616],13643,[13643,13456],13587,13648,[13643,13458],13643,13643,[13643,13521],13649,13587,[13643,13524,12361],[13643,12362],[13643,12365],[13643,12488],[13643,13521,12489],13648,13586,13650,13649,13648,13584,[13648,13256],[13651,13257],[13649,13258],[13587,13259],[13643,13588,13260],[13643,12623],12814,[13585,12815],13651,13585,13586,13585,13650,13585,13587,13651,13587,13649,13649,[13585,3750],[13651,3810],[13586,3811],[13648,3814],3815,[2424,3816],2422,2359,2424,2423,2422,2357,2424,2421,2423,[2424,2677],[2422,2678],[2423,2679],[2422,2680],2424,2423,[3635,2169],[3699,2292],2358,2421,2358,2358,2358,2359,[3701,2231,2677],[3637,2678],[3636,2164,2679],[3699,2231,2680],3636,[3699,2484],[3700,2295],3699,3388,3637,[3636,2229],[3700,2166],[3700,2168,2677],[2424,2678],[2424,2679],[2421,2680],[3637,2297,3551],[3324,3552],[3637,3553],[3636,2294],2358,[2424,3558],[2423,3559],[2359,1073745507],[2422,2741],[2357,2742],[2360,2743],[2421,2744],2421,2422,2359,[3637,2296],3323,3635,3700,3636,3387,3637,[3636,3687],3878,[2875,3879],[2935,6401],[2936,6402],[2812,3937,6403],[2999,3938],[2812,3939],3873,[2360,3744],[2358,3810],[2357,3811],[2422,3814],3682,[2360,3809],[2424,3810],[2423,3811],[2423,3814],3815,[3131,3938],[3131,3939],3808,[2422,3809],[2357,3810],[2423,3811],[2357,3814],3874,3875,[2422,3809],[2358,3810],[2359,3811],[2422,3814],3815,[3000,3816],2999,2939,2940,2936,2935,[2935,3743],[3388,3809],[3323,3810],[3323,3811],[3323,3814],3874,3875,3878,[2999,3938],[2999,3939],3873,3874,3875,[3323,3809],[3636,3810],[3636,3745],3323,3700,[3701,3750],[3700,3810],[3699,3811],[3700,3814],3874,3875,[3699,3809],[3636,3810],[3637,3811],[3637,3812],[3701,3813],[3637,3814],3682,[2423,3809],[2357,3745],2360,2357,2423,2358,[2358,2613],[2424,2614],[2357,2615],[2360,2616],[3387,2361],3636,3700,3637,[3635,2292],2424,2357,[2359,2549],[2359,2550],[2360,2551],2423,2421,2359,2359,2357,2424,2423,[2421,3679],[2358,3680],2492,2490,2426,2423,[2422,3868],3808,[2358,3809],[2421,3812],[2357,3813],[2422,3814],3815,[2359,3816],2422,2426,2491,2359,2491,2357,2491,2426,2424,2427,2424,2421,2423,2427,2426,2424,2357,2357,2423,2492,2357,2360,2359,2424,2423,2424,2357,2360,2491,2490,2358,2422,2428,2394,2491,2423,2492,2421,2424,2522,2491,2491,2422,[2423,3425],[2359,3426],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3637,4682],3700,3701,3700,3700,3323,3387,3701,3387,3700,3700,3637,3637,3635,3701,3636,3635,3636,3636,3701,3699,3635,3637,3635,3637,3700,3323,3635,3636,3323,3635,3635,3387,3636,3637,3699,3636,3699,3700,3700,3701,[3701,4745],[3700,4746],3701,3701,3701,3699,3699,[3701,2710],3324,3635,3636,3323,3701,3636,3635,3699,3636,3323,3636,3324,3387,3637,3323,3699,3701,3700,3323,3636,3635,3636,[3636,4808],[3701,4870],[3637,4871],[3700,4872],[4932,7621],4933,4934,4935,[3699,4867],[3700,4868],[3701,4869],[3699,4872,7621],4873,[3637,4996],[3699,4997,7749],4866,[3701,4802],[3699,4803],3635,3699,3700,3700,3387,3635,3388,[3637,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,[8431,14542,15185],[8938,8618,15186],[8874,8619,15187],[8557,14415,15188],8431,8493,[8874,8428],[8938,8362,15117],[8810,8298,15118],[8431,15119],[8554,15120],[8554,14415],8433,8554,8367,[8492,14415],8367,[8432,16689],[8304,16690],8367,[8492,14415],8432,8432,[8556,15250],[8557,15067,15251],[8554,15254],[8490,14999],[8431,15000],[8555,15001],[8555,15002],[8368,15318],[8556,15068,15057],[8493,15058],[8874,8558,15059],[8874,15060],8810,8874,[8874,8617],[8874,8428],8810,[8939,15057],[8874,8553,15058],[8557,15059],[8491,15060],8369,8368,8432,8554,[8369,14993],[8367,14994],[8554,14995],[8367,14996],[8875,8618],[8938,8428],8875,[8939,8427,15053],[8554,15054],[8431,15055],[8369,15056],[8433,14095],[14034,13725],[14034,13726],[14097,13727],[14097,13728],[14032,14544,13729],12300,12300,12300,12300,12300,12300,[12300,13160],12300,12300,12300,[12300,13159],12300,[12300,13477],[12300,13478],12300,[8432,14478],8492,8491,[8368,14415],[8433,14415],[8433,14416,14989],[12300,14990],[12300,14991],[12300,14992],[8557,14414],[8433,14416],12300,[12300,13287],[12300,13288],12300,[13279,14478],13280,[13278,14049],[13343,14415,14050],[13278,14415,14051],[13280,14052],13344,[13277,14480],12300,[12300,13159],12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12909,8380],12973,12909,[12909,13985],[12972,13986],[12909,13987],[12973,13988],12909,12909,12908,[12973,14113],[12973,14114],[12908,14115],[12972,14116],12972,12909,12908,12973,12972,12973,12908,[12909,14049],[12972,14050],[12908,14051],[12909,14052],12908,12909,12909,12909,12908,12972,[12908,16757],[12973,16758],12908,[12972,14177],[12973,14178],[12909,14179],[12909,14180],12909,12973,12973,12909,12908,12972,12909,12909,12908,12973,12972,[12972,12361],[12909,12362],[13649,12425],[13585,12489],13585,[13643,13524],13643,13643,13643,[13643,2147496641],[13643,12993],13643,[13643,13711],[13643,13712,12686],[13585,12687],[13587,12688],13584,13651,13584,13584,13650,13587,13584,13649,13651,13584,13584,13651,13650,13584,13651,13586,13650,13649,13648,13650,13587,13648,13587,13586,[13643,13460],13643,[13643,13647],13648,13650,13585,13584,13648,13651,13586,13587,13585,13650,13584,13650,13650,13651,[13648,12424],[13648,12425],[13643,13394,12489],[13643,13395],[13586,13133],[13584,13134],[13587,13135],13587,[13643,13392],[13643,13459],13643,[13643,13521],[13650,12424],[13586,12425],[13650,12426],[13651,12429],[13643,13458,12489],13643,[13643,13647],13586,13585,13586,13586,13648,[13584,13320],[13650,13321],[13649,13322],[13584,13323],[13651,13324],[13643,13392,12559],[13650,12560],13651,13586,13587,13586,13585,13586,13648,13648,13649,13651,13584,[13649,3750],[13649,3751,2549],[3874,2550],[3875,2551],3878,[2357,3879],2360,2421,2423,2422,2422,2423,2422,2421,2360,2424,[2360,2741],[2423,2742],[2360,2743],[2360,2744],[3636,2487],[3387,2488],[3323,2489],[3635,2356],2424,2423,2423,2424,2359,2358,[2422,2741],[3637,2165,2742],[2357,2743],[3700,2233,2744],3635,3323,[3635,2229],[3387,2231],[3323,2164],[3700,2165],[2359,2665],2360,[2360,2741],[2423,2742],[2360,2743],[2357,2744],[3700,2361,3615],[3637,3616],3637,3323,[3637,2294],2421,[2422,3623],[2424,1073745443],[2359,2805],[2360,2806],[2360,2807],[2421,2808],2359,2421,[3636,2295],3635,[3636,2229],[3387,2165],[3323,2169],3635,3700,[3635,3750],[3636,3751],[3131,3752],2811,[2875,6465],[2936,6466],[2935,6467],2812,2876,[2935,3937],3808,3874,3875,3878,[2935,3938],3873,[3874,6401],[3875,6402],[3878,6403],[2936,3879],2811,3000,[2935,3872],3873,3874,3875,3878,[2812,3938],[2812,3939],3873,[3874,6401],[3875,6402],[3878,6403],[2811,3879],2811,2935,[3003,6404],[3004,6405],2936,2876,[2999,3807],3873,3874,3875,3878,[2935,3938],[2935,3939],[3131,3942],2999,2875,[2812,3937],[3131,3938],[2876,3939],3873,3682,[3323,3809],[3701,3810],[3637,3811],[3700,3814],3874,3875,3878,[2875,3938],[3000,3939],3873,3874,3875,3876,3877,3878,[2936,3938],3873,[2360,3744],[2358,3745],2359,2357,2359,[2358,2677],[2421,2678],[2423,2679],[2357,2680],[3637,2489],3700,3701,3700,[3635,2356],2424,2423,[2424,2613],[2421,2614],[2422,2615],[2422,2616],2360,2357,2357,2358,2421,[2421,3551],[2423,3552],[2490,3553],2423,2421,2424,2422,2357,[2421,3872],3873,3876,3877,3878,[2423,3879],2423,2423,2490,2427,2422,2428,2358,2491,2491,2491,2427,2424,2421,2421,2427,2426,2424,2422,2421,2491,2359,2491,2359,2357,2358,2360,2424,2423,2357,2359,2427,2428,2490,2359,2424,2492,2492,2357,2358,2359,2357,2424,2492,[2357,3488],3489,3490,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3636,4746],3637,[3701,7115],[3636,7116],3323,3700,3636,3699,3324,3323,3323,3637,3699,3388,3635,3323,3637,3635,3701,3700,3323,3701,3324,3700,3636,3637,3635,3323,3699,3701,3323,3701,3323,3324,3699,3637,3388,3701,3637,3637,[3700,4808],[3637,4809],[3699,4810],3637,3635,3323,3387,3699,[3700,2774],3636,3323,3701,3323,3700,3699,3699,3700,3635,3636,3699,3700,3699,[3323,2710],3388,3635,3387,3701,3388,3699,3637,[3699,4808],[3635,4809],4934,4935,4936,[3636,4996,7685],[3700,4997],[3637,4998],[3701,4999],4931,[4932,3188],4933,[4936,7685],[3635,4937],3635,[3637,7813],[3701,4930],4866,[3635,4867],[3700,4803],3699,3323,3636,3387,3700,3635,[3701,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],[12300,13287],[12300,13288],12300,[8492,14478],[8875,8364,17285,15250],[8938,17286,15251],[8875,8617,17287],[8938,8621],[8810,8622],8874,[8810,8553,15181],[8490,15182],[8492,15183],[8433,15322,15184],[8490,15323],[8433,14999,9004],[8493,15000,9005],[8369,15001],[8492,15002],[8557,15320],[8368,15321,16753],[8490,16754],[8367,15322],[8367,15323],[8367,15001],[8556,15002],[8491,15382],[8368,15383],14182,[14182,9018],14182,14182,14184,14182,[8491,15253,15121],[8492,15122],[8367,15123],[8875,8364,15124],8939,[8939,8363],[8810,8365],8939,[8939,8362],[8938,8298,15121],[8557,15122],[8555,15123],[8433,15124],8367,8432,8495,8554,[8555,15057],[8493,15058],[8490,15059],[8939,8366,15060],8874,8810,8875,[8874,15117],[8939,8553,15118],[8368,15119],[8431,15120],[8492,13968],[14098,13789],[14032,13790],[14097,13791,9833],9834,9835,9836,9837,9838,9839,9840,[12300,9841],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8555,14542],8367,8432,[8555,14539],8556,[8368,15053],[8369,14415,15054],[8554,14415,15055],[8493,14415,15056],8305,[8368,14480],12300,[12300,13351],[12300,13352],[12300,16689],[13341,14542,16690],13343,[13277,14113],[13278,14114],[13278,14115],[13342,14116],13278,[13342,14544],12300,12300,12300,[12300,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12973,8444],12972,12973,[12972,14049],[12908,14050],[12909,14051],[12908,14052],12972,12972,12908,[12972,14177],[12973,14178],[12908,14179],[12909,14180],12973,12972,12908,12973,12972,12909,12909,[12908,14113],[12972,14114],[12908,14115],[12972,14116],12909,12972,12908,12973,12909,12908,12973,12909,12909,[12908,14241],[12908,14242],[12973,14243],[12909,14244],12908,12908,[12908,13921],[12972,13922],[12972,13923],[12972,13924],12909,[12972,16693],[12972,16694],12909,[12973,12424],[13584,12425],[13651,12426],[13648,12489],13649,13587,[13643,13588],13643,[13643,13391],[13643,13392,2147496706],[13643,13393,2147496705],[13643,13394,13057],[13643,13459,13058],[13643,12686],[13643,12750],12751,[13584,12752],13651,13651,13586,13649,13650,13648,13651,13586,13651,13515,13651,13651,13649,[13651,13133],[13649,13134],[13649,13135],13651,13584,13650,13587,13584,13651,13585,13586,[13643,13524],13643,[13643,13711],13650,13648,13584,13650,13648,13648,13584,13585,13651,13649,13649,13648,13586,[13584,12487],[13649,12488],[13587,12489],13651,13651,[13584,13197],[13584,13198],[13651,13199],13648,13648,[13643,13460],13643,[13643,12487],[13649,12488],[13586,12489],13649,13586,[13643,13652],13643,[13643,13711],[13643,13714],13587,13585,13648,13586,[13648,13384],[13648,13385],[13586,13386],[13586,13387],[13648,13388],[13651,12623],[13650,12624],13648,13648,13648,13648,13586,13648,13585,13650,13648,13587,[13651,3750],[13584,3751],[3815,2613],[2421,3938,2614],[2424,3939,2615],[2359,3942,2616],2360,2360,2360,2421,2422,2424,2423,2424,2359,2422,2422,[2358,2805],[2357,2806],[2422,2807],[3699,2425,2808],3636,3700,[3701,2229],2422,2421,[2422,2549],[2423,2550],[2421,2551],2421,2360,[2360,2805],[2358,2806],[2357,2807],[3635,2297,2808],3637,3635,[3701,2420],[2358,2549],[2357,2550],[2424,2551],[2424,2729],2421,[2360,2805],[2424,2806],[2423,2807],[2424,2808],[2360,3615],[3700,2165,3616],[3323,2169],3701,3324,[3635,2420],[2424,3558],[2358,1073745379],[2424,2869],[2359,2870],[2424,2871],[2423,2872],2360,[3700,2425],3324,3635,[3700,2420],2357,[3700,2425],3388,3387,[3636,3623],3815,[2875,3816],3131,[2876,6529],[2936,6530],[3131,6531],[2811,6532],[2875,6533],2935,[2812,3872],[2812,3938],[3131,3939],[2999,3942],2935,[2935,3937],[2875,3938,6465],[2875,3939,6466],[2811,3942,6467],2876,3000,2935,[2875,3936],[2875,3937],[3000,3938],[2811,3939],[3000,3942],2875,2876,[2875,3937],[2936,3938,6465],[2811,3939,6466],[3131,3942,6467],2999,2935,3131,[3067,6468],[3068,6469],2936,2936,3000,[2935,3937],[2811,3938],[2875,3939],[2812,3942,6401],[2812,6402],[2876,6403],2935,3131,2811,2935,[2812,6401],[2812,6402],[2999,3937,6403],[2876,3938],3873,3874,3875,3878,[2999,3938],[2936,3939],[3000,3942],2812,3000,[2875,3937],[2939,3938],[2940,3939],[2811,3940],[2811,3941,6401],[3131,3942,6402],[2812,6403],[2811,3937],3808,[2421,3809],[2421,3745],2360,2421,[2359,2741],[2359,2742],[2423,2743],[3388,2233,2744],3637,3635,3636,[3324,2230],2422,2421,2422,[2360,2677],[2423,2678],[2359,2679],[2360,2680],2359,2422,[2357,2842],[2358,2653],[2422,2653],[2424,2653,3615],[2359,3616],2427,2357,2423,2491,2423,2421,2427,[2357,3937],[2359,3940],[2357,3941],[2422,3942],2359,2357,2426,2490,2359,2423,2421,2360,2358,2491,2359,2357,2357,2490,2427,2360,2490,2428,2423,2492,2423,2427,2358,2358,2426,2426,2428,2426,2424,2360,2360,2490,2490,2362,2421,2427,2490,2423,2427,2360,2423,2357,2490,[2360,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3635,4802,4810],[3635,4803],[3636,7179],[3701,7180],3700,3636,[3699,4808],[3699,4868],[3636,4803],3699,3636,3323,3324,3387,3637,3388,3637,3700,3637,3636,3635,3388,3636,3699,3699,3635,3323,3323,3323,3700,3323,3636,3701,3324,3701,3700,3323,3700,3700,[3636,4808],[3699,4872],4873,[3635,4874],3699,3699,3701,3323,3700,[3637,2838],3323,[3701,2170],[3701,2171],3701,3699,[3637,7621],3701,3635,3635,3636,3324,3635,3323,[3701,2774],3323,3700,3635,3699,3324,3324,[3636,4808],[3701,4872],4873,[3637,4998],[3699,4999,3124],[3700,5000],[3637,7749],3700,3700,3637,[3700,4995],[3637,4996],[3637,4997],[3699,5000,7749],3636,3636,3701,3636,[3635,4930],4931,[3635,4674],3637,3701,3635,3324,3699,3637,[3387,4865],4866,4867,4868,[4869,7621],4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12300,8572],[12300,13351],[12300,13352],12300,[8369,14542],8556,[8874,8364],8939,8810,[8938,8363],[8939,8298],[8432,15067,15245],[8433,15254,15246],[8432,15002,15247],[8555,15003,15248],[14182,9067],[14182,9068],[8369,15189,9069],[8431,15190,9070],[8557,15191,9071],14182,[8493,15381],[8367,15382],[8367,15383],14182,14182,[8369,15189],[8492,15191],[14182,9080],[14183,9081],[8557,15189,9082],[8368,13968,15190,9083],[14098,15190,9084],[14032,15191],14182,[8555,15317,15185],[8493,15186],[8368,15187],[8431,15188],[8810,8302],[8874,8361],[8874,8558],8938,[8875,8553],[8433,15185],[8368,15186],[8369,15187],[8303,15188],8368,8557,8557,[8939,8621],[8556,15121],[8433,15122],[8490,15123],[8938,8430,15124],8810,8874,[8938,8297],[8810,8298,15181],[8369,15182],[8492,15183],[8496,15184],8497,[8367,13903],[14096,13854],[14097,13855,9897],9898,9899,9900,9901,9902,9903,9904,[8490,14415,9905],[8556,14416],[12300,16689],[12300,16690],12300,[12300,16689],[12300,16690],12300,[12300,13534],[13343,14414,13535],[8492,13152,13536],8490,8557,8557,8367,[8367,15117],[8431,15118],[8431,15119],[8367,15120],8554,8490,[8431,14416],12300,12300,[8433,14414,16753],[8493,13213,16754],13341,[13342,14177],[13278,14178],[13279,14179],[13279,14292,14180],[13277,14479],[13279,14608],12300,12300,12301,[12300,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12909,8508],12973,12909,[12909,14113],[12909,14114],[12908,14115],[12908,14116],12972,12973,12909,[12972,14241],[12909,14242],[12972,14243],[12908,14244],12972,12972,12973,12909,12909,12972,12973,[12908,14177],[12972,14178],[12973,14179],[12909,14180],12973,12909,12908,12908,12972,12909,12973,12908,12973,12908,12908,12908,12973,12972,12972,[12908,13985],[12972,13986],[12973,13987],[12908,13988],12973,[12972,16757],[12909,16758],[12972,12361],[13585,12488],[13586,12489],13650,13584,13651,13648,13585,[13643,13458],[13643,13647,2147496771],[13585,2147496770],[13650,2147496769],[13648,13121],[13586,13122],[13643,13392,12559,13123],12814,[13650,12815],13649,13650,13585,13587,13649,13649,13650,13587,13586,13587,13586,13585,13586,13584,[13648,13197],[13650,13198],[13649,13199],13650,13586,13586,13586,13586,13649,13650,13587,[13643,13588],13643,13643,[13643,13647],13650,13649,13651,13587,13584,13649,13649,13585,13585,13648,13648,13584,[13587,12551],[13643,13714,12552],[13643,13715],13649,13649,[13585,13261],[13648,13262],[13648,13263],13650,13651,[13643,13524],[13643,12424],[13586,12425],[13650,12489],[13650,12943],[13586,12944],13587,13648,[13643,13459],13643,13643,[13643,13520],13587,13648,13651,13587,[13649,13449],[13649,13450],[13586,13451],[13586,12686],[13585,12687],[12680,12688],[13648,12681],13649,13586,13650,13586,13651,13587,[13649,3750],[13585,3812],[13648,3813],[13585,3814],3815,[2358,3879,2677],[2359,2678],[2423,2679],[2421,2680],2359,2359,2357,2424,2360,[2358,2549],[2423,2550],[2424,2551],2422,2358,2358,[2422,2869],[2423,2870],[2358,2871],[3388,2295,2872],3699,[3324,2164],2359,2421,2357,[2357,2613],[2421,2614],[2357,2615],[2421,2616],2422,[2421,2869],[2422,2870],[2424,2871],[3635,2361,2872],3699,3635,[3635,2420],[2357,2613],[2359,2614],[2357,2615],[2423,2616],2360,[2422,2869],[2358,2870],[2358,2871],[2358,2872],[2357,3679],[2360,3680],2421,[3699,2232],3635,[3637,2294],2423,[2360,1073745315],2421,2357,2421,[3323,2487],[3636,2488],[3635,2489],[3699,2164],[3388,2165],2421,2424,2358,[3635,2165],[3387,2231],[3388,3687],[3131,3688],3131,2935,[2999,6593],[2936,6594],[2935,6595],[2999,6596],[2876,6597],[3000,6406],2936,2999,2999,2935,3000,2811,[2999,6529],[2812,6530],[2811,6531],[2936,6532],[2875,6533],3131,3131,2811,2812,3000,2999,2936,2811,2876,[2935,6529],[2875,6530],[2811,6531],[2936,6532],[2935,6533],2811,3131,3132,2876,2876,2811,2812,2876,3000,[2876,6465],[2876,6466],[2935,6467],2811,2811,2999,2936,[2811,6465],[2811,6466],[3000,6467],3131,[3131,3937],[2812,3938],[2999,3939],[2876,3942],3131,2999,2876,2812,2876,2999,3003,3004,3131,[2875,6465],[2935,6466],[2936,6467],2936,[3000,3872],3873,[2424,3616],2421,2422,[2359,2805],[2359,2806],[2359,2807],[3387,2297,2808],3636,3323,[3700,2164],2422,2423,2360,2424,[2357,2741],[2357,2742],[2357,2743],[2424,2744],2421,2359,[2421,2590],2778,[3182,3551],[2422,3552],[2422,3553],2423,2424,2357,2358,2363,2426,2492,2422,2357,2359,2428,2424,2492,2427,2492,2359,2522,2428,2428,2359,2427,2422,2359,2424,2427,2423,2364,2423,2490,2490,2490,2359,2490,2491,2428,2491,2428,2421,2422,2357,2427,2359,2364,2422,2491,2394,2358,2358,2490,2492,2426,2357,2426,2424,[2358,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[4866,4874],[3635,4867],[3701,4868],[3636,4869],[3699,4870],[3699,4871],[3637,4872],[4740,3125],[3699,4802],[3699,4803],3700,3701,3700,3387,3636,3323,3323,3701,3323,3635,3388,3637,3699,3699,3700,3637,3324,3636,3635,3635,3387,3635,3701,3700,3388,3635,3637,3635,[3700,4808],[3635,4872],4936,[3637,4937],3637,3637,3699,3388,3388,3637,[3699,2902],3700,3323,3699,3635,3636,[3323,7685],3701,3323,3635,3699,3701,3323,3637,[3701,2838],3323,3701,3324,3636,3387,3637,[3635,4745],4936,[3699,4937],3387,3635,3635,[3700,7813],3701,3636,3636,3323,3323,3324,[3387,7813],3388,3637,3637,3323,3637,[3699,4673],[3701,4674],[3701,2710],3699,3636,3636,3323,3635,3637,[3323,4930],4931,4932,[4933,7685],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8636],12300,12300,12300,[8433,14606],[8492,14543,14925],[8490,14293,14926],[8939,8298,14927],[8939,8364,14928],[8875,8361],[8305,16689],[8492,15255,16690],14183,14182,[8491,15189,9130],[8367,15190,9131],[8492,15190,9132],[8368,9133],[8369,9134],[8368,15386,9135],[8431,15190],[8555,15191],[14182,9138],[14182,9139],[8367,15189,9140],[8493,15190],[8432,15385],[8433,15386,9143],[8433,15190,9144],[8555,15190,9145],[8432,9146],[8432,9147],[8555,14095,9148],[14098,15255],14183,[8432,15381],[8554,15318,15250],[8557,15068,15251],[8874,8621],[8875,8429],[8939,8489],8556,[8874,8365],[8810,8427],[8810,8621],[8939,8621,15250],[8369,15251],8367,8369,8555,[8810,8428],8875,[8810,8361,15185],[8491,15186],[8493,15187],[8938,8494,15188],8938,8810,[8875,8361],[8431,15206,15245],[8557,15207,15246],[8554,15208,15247],[8560,15248],8561,[8492,13967],14035,[14032,9961],9962,9963,9964,9965,9966,9967,9968,[8433,9969],8368,[8492,14415,16753],[8491,14415,16754],[8556,14415],[8556,14415,16753],[8492,13276,14415,16754],[13279,14415,13597],[13343,14415,13598],[13343,13599],[13344,13600],[8491,13152,13601],8493,8491,8554,[8492,15181],[8490,15182],[8432,15183],[8490,15184],8432,8431,8557,[8557,14415],[8368,14415],8555,8367,[8367,13340],[13343,14241],[13342,14242],[13341,14243],[13280,14480,14244],12307,12300,12300,[12300,13287],[12300,13288],12300,[12300,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12973,8315],12908,[12972,14177],[12972,14178],[12972,14179],[12972,14180],12908,12909,12909,12909,12909,12973,12973,12973,12973,12909,12973,12972,12909,12909,[12908,14241],[12908,14242],[12972,14243],[12972,14244],12972,12909,12972,12972,12909,12909,[12908,13921],[12909,13922],[12973,13923],[12972,13924],12909,12973,12973,12908,12908,[12909,14049],[12972,14050],[12972,14051],[12973,14052],12908,12972,[12972,12424],[13585,12425],[13584,12489],13584,13586,13650,13585,13586,13651,[13643,13460],[13643,13520,2147496835],[13585,2147496834],[13587,2147496833],[13584,13185],[13648,13186],[13584,12623,13187],[13649,12624],13585,13584,13585,13648,13585,13649,13650,13586,13585,13585,13650,13649,13587,13649,13585,[13584,13261],[13587,13262],[13587,13263],13649,13650,13651,13650,13651,13651,13586,13650,13651,[13643,13458],13643,[13643,13711],[13643,13714],[13643,13715],13585,13648,13650,13649,13584,13649,13649,13650,13584,13584,[13651,12615],[13643,12616],13643,[13643,13521],[13643,13714],[13584,13325],[13587,13326],[13649,13327],13587,13584,[13643,13588,12487],[13586,12488],[13585,12489],13649,[13651,13007],[13586,13008],13587,13586,[13643,13652],13643,13643,13643,[13643,13647],13584,[13648,12686],[13584,12746],[13651,12747],[13584,12748],[13650,12749],[13587,12750],12751,[12744,12752],[13650,12680],[13585,12681],13585,13584,13649,13587,[13649,3750],[13650,3751],3876,3877,3878,[2359,3879],[2360,2741],[2360,2742],[2422,2743],[2424,2744],2359,2359,2421,2357,2422,[2357,2613],[2357,2614],[2359,2615],[2357,2616],2359,2360,2424,[3387,2488],[3635,2489],3635,3323,[3699,2420],2421,2421,2357,[2423,2677],[2424,2678],[2421,2679],[2421,2680],2357,2359,2424,2422,2424,[3635,2165],[3323,2232],[3699,2293],[2357,2677],[2357,2678],[2358,2679],[2422,2680],2421,2423,2421,2422,[2423,3488],[2360,3489],[2358,3553],2359,[3387,2425],3635,3699,[3636,2293],2357,2424,2422,[3699,2425],3699,3700,3635,[3700,2420],2359,2358,2421,2421,2421,2422,[3324,2168,3687],[2811,3688],3131,3131,2936,[2811,6658],[2812,6659],2876,2999,2812,2939,2939,2939,2940,2935,3131,[2876,6593],[2936,6594],[3000,6595],[3131,6596],[2876,6597],2875,2876,[2939,6470],2939,2940,3131,2876,2999,2811,[3000,6593],[2875,6594],[3000,6595],[2935,6596],[2812,6597],2936,2999,2876,2936,3000,[2875,6406],3131,2812,2999,[2876,6529],[3131,6530],[3000,6531],[2812,6532],[2812,6533],2876,2812,[2936,6529],[2812,6530],[2936,6531],[2875,6532],[2936,6533],2939,2940,2811,2812,[2936,6401],[3131,6402],[2812,6403],2811,2935,3067,3068,2811,[2936,6529],[2999,6530],[2875,6531],[2935,6532],[2875,6533],[2935,3615],[2422,3616],2422,2423,[2359,2869],[2424,2870],[2360,2871],[3323,2361,2872],3637,3388,[3700,2228],2359,2421,2421,2423,[2360,2805],[2359,2806],[2421,2807],[2357,2842,2808],[2357,2525],[2421,2653],[2358,2654],3182,[3182,3615],[2358,3616],2426,2426,2421,2492,2428,2490,2364,2490,2490,2358,2490,2492,2458,2423,2491,2492,2423,2359,2358,2360,2360,2491,2428,2358,2358,2394,2357,2358,2426,2421,2491,2491,2426,2490,2357,2427,2427,2490,2424,2423,2360,2423,2491,2422,2492,2364,2360,2357,2358,2458,2492,2491,2491,2492,2428,[2360,3743],3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,4936,[3700,4937],[3701,4930],4931,[4932,2868],4933,4934,4935,4936,[3700,4996],[4866,2868],[3701,4867],[3635,4803],3388,3323,[3387,1914],[3636,1915],[3701,1916],3700,3636,3636,3637,3636,3323,3635,3637,[3701,4550],3635,3635,3701,3387,3323,3324,3635,3323,3387,3323,[3637,2932],[3637,2933],3637,[3637,4681],4936,[3636,4937],3700,3637,3636,3699,3387,3699,3701,3387,3324,3637,3701,3701,3388,[3700,7749],3323,3701,3699,3701,3387,3636,3324,[3700,2902],3699,3635,3637,[3636,4808],[3636,4868],[3635,4869],[3636,4872],[3700,4810],3635,3387,3701,3699,3324,3700,3637,3699,3637,3701,3699,3635,[3636,2932],[3700,2933],3388,3699,3388,[3701,4737],[3635,4738],[3635,2774],3635,3699,[3636,7241],[3699,7242],3388,3636,3699,[3701,4995],[3701,4996],[3636,4997,7749],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12300,8699],12300,12300,12300,12300,12300,[12300,14989],[8367,14478,14990],[8493,14991],[8875,8429,14992],[8874,8425],[8433,16753],[8556,15319,16754],14182,14182,[8557,15253,9194],9195,9196,9197,[8369,9198],8432,8369,[8368,9201],[8554,15190,9202],[8490,15190,9203],[8491,9204],[8493,9205],8367,[8554,9207],[8432,9208],9209,9210,[8556,9211],[8555,13968,9212],[14033,15319],14182,14182,14182,[8875,8558,15253],8938,[8874,8362],8368,8557,8431,[8874,8364],8938,8810,[8874,8427],[8938,8620],[8874,8621],[8939,8622],8875,8874,[8938,8489],[8432,15250],[8431,15251],[8939,8558],8939,8810,[8938,8425],[8492,15270],[8555,15271],[8491,15272],8368,8368,[8556,14031],14097,[14035,10025],10026,10027,10028,10029,10030,10031,10032,[8492,10033],8433,8303,8554,8368,8304,[8490,13340],[13280,13661],[13277,13662],[13341,13663],[13342,13664],[13341,13665],[8367,13085],[8431,13089],8554,[8554,15245],[8432,15246,14467],14468,14469,14470,14471,14472,[8431,14473],8496,8497,8557,[8492,13404],13279,13342,13343,[8556,13406,16689],[8368,13409,14416,16690],12300,12300,[12300,13351],[12300,13352],12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12909,8380],[12972,14241],[12972,14242],[12973,14243],[12908,14244],12973,12909,12909,12973,12972,12972,[12972,16693],[12973,16694],12973,12908,12973,12973,12973,12972,12973,12908,12908,12908,12972,12909,12909,12909,12973,12909,[12908,13985],[12909,13986],[12908,13987],[12908,13988],12908,12973,12908,12972,12973,[12909,14113],[12973,14114],[12908,14115],[12973,14116],12909,[12908,12487],[13648,12488],[13650,12489],13585,[13586,12943],[13587,12944],13650,13649,13585,13651,[13643,13524],[13643,2147496899],[13643,13455,2147496898],[13651,2147496897],[13586,13249],[13648,13250],[13651,12494,13251],[13651,12430],[13586,12431],13586,13585,13587,13651,13650,13587,13648,13649,13585,13579,13584,13584,13585,13651,[13648,13325],[13584,13326],[13650,13327],13649,13650,13648,13649,13584,[13649,12996],13648,13650,13585,13650,[13643,13459],13643,13643,13643,[13643,13520],13650,13648,13649,13586,13648,13585,13649,13651,13650,[13651,12551],[13643,13392,12552],[13643,13458],13643,13643,[13643,13521],[13643,13714],[13643,13715],13650,13649,[13586,12551],[13587,12552],13584,13651,13651,13586,13586,13584,13651,[13643,13392],[13643,13458],13643,[13643,13520],[13585,12686],[13586,12687],12810,12811,12812,12813,12814,[13643,12815],[13643,13711,12808],12744,[13651,12745],[13649,12681],13648,13587,[13586,3750],[13586,3814],3815,[2360,3940],[2357,3941],[2423,3942],2358,[2358,2805],[2422,2806],[2423,2807],[2423,2808],2422,2424,2360,2357,2359,[2423,2677],[2421,2678],[2423,2679],[2359,2680],2360,2423,[3700,2296],3701,3323,3635,[3699,2229],2423,2421,2422,2424,[2423,2741],[2423,2742],[2359,2743],[2421,2744],2422,2357,2423,2424,2422,2360,[3635,2233],3700,[3701,2228,2741],[2422,2742],[2421,2743],[2364,2744],2422,2359,[2360,3425],[2422,3426],[2422,3552],[2360,3553],[2423,2549],[2422,2550],[2358,2551],[3701,2169],3636,3700,[3635,2228],2422,2359,[3635,2295],3323,3700,[3635,2164],2421,[2424,2549],[2421,2550],[2422,2551],2421,2421,2423,[2424,3558],[2423,3559],[2936,3560],2875,3000,2935,2936,2939,2940,[2999,6401],[3003,6402],[3003,6403],2939,2939,2940,2935,2875,[2935,6658],[2812,6659],2935,2876,3131,2811,3003,2939,2940,2935,2999,3131,3000,2935,[2812,6658],[3131,6659],2935,2999,2999,2812,2936,2875,2812,3000,2935,2935,2876,[2876,6593],[2812,6594],[3131,6595],[3131,6596],[3000,6597],2935,2876,[2936,6593],[3000,6594],[2811,6595],[2811,6596],[2875,6597],3003,3004,2999,2876,[2936,6465],[2876,6466],[3000,6467],2936,2936,3131,3132,2875,[2876,6593],[2876,6594],[2812,6595],[2936,6596],[2876,6597],[3000,3679],[2359,3680],2423,2357,2423,2423,2424,2424,[3636,2231,7138],[3637,7139],[3323,2356,7140],[2422,7141],2357,2357,2357,[2421,2869],[2358,2870],[2421,2871],[2360,2590,2872],3182,3182,3182,3182,[3182,3679],[2359,3680],2490,2364,2359,2422,2360,2357,2359,2490,2423,2359,2422,2422,2364,2359,2428,2490,2492,2358,2490,2357,2357,2492,2424,2357,2428,2491,2423,2428,2491,2491,2421,2492,2358,2428,2492,2358,2424,2358,2422,2426,2491,2360,2360,2422,2394,2359,2490,2360,2490,2358,2358,2424,2492,2522,2364,[2357,3807],3808,3809,3810,3811,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3700,4682],3637,3701,[3636,4995],[3636,4996],[3637,4997],[3700,4998,3124],[3700,4999],[3635,5000],3700,[3699,4930],4931,[3700,4674],3635,3701,[3701,1978],[3637,1979],[3701,1980],3636,3636,3700,[3637,4549],3636,3323,3323,3701,[3700,4614],[3637,4803],3700,3699,3636,3637,3701,3636,3637,3635,3699,[3701,2996],[3635,2997],3323,[3637,4745],[3635,4746],3701,3701,3635,3637,3700,3636,3324,3387,3700,3388,3701,3323,3387,3637,[3635,7813],3701,3700,3637,3701,3636,3324,3635,3699,3636,3323,[3637,4808],[3637,4809],[4932,3125],[4933,7621],4936,[3635,4874],3636,3636,3700,3637,3636,3701,3699,3635,[3388,2710],3700,3701,3637,[3323,2996],[3699,2997],3701,3323,3701,[3635,4673],[3635,4674],[3636,2838],3323,3636,[3324,7305],[3700,7306],3701,3636,3323,3700,3637,[3701,7813],[3637,4930],4931,4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,[12300,13354],[12300,13355],[8491,14414,15053],[8492,15054],[8875,8366,15055],[8875,15056],[8875,8489,15067],[8491,15254],[8490,15383],14183,14184,[8555,15317,9258],9259,9260,9261,[8556,9262],[8490,9263],[8491,9264],[8556,9265],9266,9267,9268,[8490,9269],[8431,9270],[8433,9271],[8491,9272],9273,9274,9275,[8367,9276],[8491,14159,15386],[14034,15191],14182,[14184,14929],[8554,15253,14930],[8939,8298,14931],[8556,14932],8554,8556,8492,8491,[8810,8364],8875,8874,8938,8874,[8938,8297],[8939,8298],[8938,8298],8554,8555,8557,[8939,8366],8810,8875,[8938,8489],[8493,15334],[8432,15335],[8368,15336],[8431,14925],[8431,14926],[8490,13968,14927],[8368,14160,14928],[14098,10089],10090,10091,10092,10093,[10094,14925],[10095,14926],[10096,14927],[8554,10097,14928],8367,[8433,14929],[8493,14930],[8493,14931],[8492,13149,14932],13277,[13279,13725],[13277,13726],[13278,13727],[13342,13728],[13341,13729],13341,13280,[8432,13151],8367,[8557,14531],14532,14533,14534,14535,14536,[8368,14537],8560,8561,8491,8556,[8555,13340],13278,[8369,13216],[8369,16753],[8431,14480,16754],12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12973,8444],12908,12972,12972,12909,12909,12909,12908,12909,12908,12973,[12972,16757],[12909,16758],12909,12908,12972,12908,12972,12908,12972,12972,12908,12973,12973,12909,12909,12972,12973,12973,[12973,14049],[12973,14050],[12972,14051],[12908,14052],12909,12972,12973,12909,12973,[12908,14177],[12972,14178],[12909,14179],[12908,14180],12972,[12909,12551],[13651,12552],13585,13584,[13649,13007],[13651,13008],13586,13587,13586,13587,[13643,13588],[13643,2147496963],[13643,13519,2147496962],[13648,2147496961],[13585,13313],[13586,13314],[13587,13315],[13651,12494],[13651,12495],[13586,12496],13651,13648,13650,13584,13586,13585,13584,13586,13649,13648,13648,13650,13586,13587,13650,13650,13648,13650,13585,13649,13584,[13649,13060],13648,13584,13586,13649,13584,[13643,13396],13643,13643,13643,[13643,13647],13649,13587,13650,13586,13587,13651,13586,13584,[13651,12615],[13585,12616],13585,[13643,13396],13643,13643,13643,13643,[13643,13647],13648,[13585,12615],[13651,12616],13584,[13650,5638],13650,13648,13650,13584,13586,13587,13649,[13643,13396],[13643,12686],[13643,13647,12750],12751,[13648,12874],[13649,12875],[13586,12876],[13584,12877],[13586,12878],[13643,13458],13643,[13643,13647,12808],12809,[13586,12552],13586,13585,[13587,3623],3878,[2357,3879,2549],[2360,2550],[2360,2551],2423,2422,[2421,2869],[2357,2870],[2358,2871],[2421,2872],2423,2359,2424,2421,2421,[2360,2741],[2422,2742],[2421,2743],[2360,2744],2424,[3701,2425],3636,[3388,2164],[3699,2165],[3700,2168],2359,2360,2424,2357,2424,[2358,2805],[2359,2806],[2359,2807],[2421,2808],2424,2422,2422,2421,2423,2421,[3387,2297],3635,[3636,2292,2805],[2359,2806],[2359,2807],[2357,2808],2359,[2358,3488],[2422,3489],[2424,3490],[2359,3553],2359,[2359,2613],[2362,2614],[2358,2615],[2359,2616],[3324,2231],3637,[3699,2356],2359,[3700,2296],3387,[3700,2229],[3700,2165],2360,2359,[2358,2613],[2359,2614],[2423,2615],[2422,2616],2424,2359,2422,[2357,3623],[2935,3624],2876,2812,2999,2811,3003,3004,[3000,6465],[3067,6466],[3067,6467],3003,3003,3004,3131,2939,2939,2939,2939,2940,3000,2812,[3067,6401],[3003,6402],[3004,6403],2999,2875,2876,2812,2875,2936,3131,3131,3000,2811,[2876,6401],[2935,6402],[3131,6403],3131,2875,2935,2876,3000,2935,[2999,6658],[2811,6659],3131,2811,2875,2935,2999,[3000,6658],[2875,6659],3000,2936,3067,3068,2876,2876,[3131,6529],[2876,6530],[2936,6531],[2935,6532],[2999,6533],2811,2939,2940,2999,[2936,6658],[2812,6659],2811,2876,[2876,3743],[2421,3744],[2360,2653,3745],[2423,3183],[2359,3184],[2423,3185],[2357,3186],[2421,3187],[3323,2425,3311,7202],[3636,3312,7203],[3701,2484,3313,7204],[2358,3314,7205],[2357,3315],[2421,3184],[2423,2653],[2360,2653],[2358,2653],[2421,2653],[3635,2487,2654],3182,3182,3182,3182,[3182,3743],[2359,3744],[2421,3745],2423,2358,2423,2492,2359,2426,2424,2422,2358,2421,2423,2458,2490,2424,2360,2492,2492,2490,2427,2423,2421,2358,2427,2423,2360,2428,2357,2358,2358,2421,2358,2422,2428,2422,2490,2421,2424,2491,2423,2491,2360,2423,2424,2490,2492,2357,2426,2358,2357,2422,2492,2490,2424,2491,2424,[2357,3872],3873,3874,3875,3744,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3637,4746],3637,3635,3637,3700,3387,3700,3636,[3700,7621],3701,3701,[3635,4673],[3700,4674],3635,3323,[3324,2042],[3323,2043],[3387,2044],3700,3700,[3637,4808],[3700,4613],3700,3700,3637,3388,[3637,4678],[3635,4802],[3699,4803],3700,3635,3636,3699,3699,3700,3700,3700,[3635,3060],[3700,3061],[3700,4808],[3635,4809],[3636,4810],3637,3323,3701,3323,3700,3700,3637,3701,3699,3324,3699,3635,3635,3636,3636,3701,3637,3635,3636,3636,[3701,4808],[3635,4868],[3635,4869],[3701,4870],[3637,4871],[3699,4872],4873,[3636,4996],[3700,4997,7685],[3636,5000],3637,3323,3701,3636,3635,3323,3700,3635,3388,[3636,2774],3388,3700,3324,[3636,3060],[3637,3061],3637,3324,3699,[3636,4737],[3635,4738],[3699,2902],3635,3388,3635,3699,3387,3701,3324,3637,3637,3387,3701,[3701,4801],[4802,7621],4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,[8433,14478,15117],[8492,15118],[8875,8430,15119],[8874,15120],[8938,8361,15255],14183,14182,[14182,9909],[8556,15189],[8490,15385,9322],9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,[8556,9340],8432,[8432,13903,15255],14182,[14182,14993],[8492,15317,14994],[8369,14995],[8431,14996],8369,8369,8557,8367,8368,[8810,8298],[8810,8302],8874,8875,[8938,8426],[8367,14929],[8369,14930],[8490,14931],[8431,14932],8492,[8874,8494],8938,8939,[8874,8427],8431,8557,8490,[8369,14989],[8491,14990],[8367,14991],[8368,14992],[8433,13968,10153],[8369,10154],[8491,10155],10156,10157,[10158,14989],[8433,10159,14990],[8432,10160,14991],[8431,10161,14992],8369,[8493,14993],[8367,14994],[8554,14995],[8557,13404,14996],[8368,13405],[13280,13789],[13343,13790],[13278,13791],[13344,13792],[13280,13793],13343,13280,[8433,13345],8557,[8432,14595],14596,14597,14598,14599,14600,[8432,14601],8555,8433,8557,[8491,13149],13342,[8556,13345],[8554,14292],[8369,14479],[8557,14608],12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12973,8508],12909,[12973,16693],[12908,16694],12973,12909,12909,12908,12973,12908,12909,12973,12973,12908,12909,12908,[12908,13921],[12909,13922],[12908,13923],[12908,13924],12973,12973,12972,12972,12973,12909,12973,12908,12908,[12908,14113],[12972,14114],[12972,14115],[12972,14116],12972,12908,12908,12973,12973,[12908,14241],[12909,14242],[12908,14243],[12973,14244],[12973,12424],[13651,12425],[13651,12489],13587,13651,13584,13584,13650,13587,13587,[13643,13715],[13643,13522],[13643,2147497027],[13643,13583,2147497026],[13650,2147497025],[13587,13377],[13586,13378],[13584,13379],[13584,12686],[13584,12687],[13587,12688],13585,13650,13648,13584,13585,[13651,13128],[13586,13129],[13585,13130],[13649,13131],[13587,13132],13587,13585,13649,13586,13649,13648,13584,[13643,13714],13584,13649,13650,13587,13584,13649,13649,[13643,13714],[13643,13715,13128],[13643,13716,13129],[13643,13391,13130],[13643,13459,13131],[13643,13132],[13643,13711],13586,13585,13651,13585,13586,13587,13650,13648,[13587,12679],[13650,12680],[13584,12681],[13643,13716],13643,13643,[13643,13391],[13643,13392],13650,13585,[13586,12679],[13651,12680],[13648,12681],13584,13586,13648,13649,13648,13649,13650,13651,[13643,13652,12686],[13643,12687],12814,[13650,12815],13586,13649,13587,13651,13584,[13643,13460],13643,[13643,13520],[13643,13712,12615],[13650,12552],13648,13586,[13650,3623],[2424,3624],[2422,2613],[2422,2614],[2424,2615],[2423,2616],2359,2422,2423,2358,2423,2422,2360,2424,2359,2360,[2421,2805],[2358,2806],[2424,2807],[2360,2808],2423,[3636,2295],3636,[3699,2228],2422,2360,2358,2358,2359,2423,2421,[2360,2869],[2358,2870],[2358,2871],[2424,2872],2421,2424,2359,2423,2360,2424,[3323,2361],3387,[3323,2356,2869],[2424,3425,2870],[2358,3426,2871],[2359,3429,2872],[2421,3426],[2424,3552],[2359,3553],2424,2424,2360,[2357,2677],[2360,2678],[2421,2679],[2424,2680],2421,[3635,2232],[3387,2293],[3699,2489,2549],[3637,2550],[3701,2230,2551],2422,2421,2422,2359,[2423,2677],[2423,2678],[2423,2679],[2360,2680],2358,2360,2357,[2358,3558],[2358,3559],[2999,3560],2876,2876,2812,3067,3068,[3000,6529],[3131,6530],[3131,6531],[3067,6532],[3067,6533],3068,3000,3003,2939,2940,3003,3004,2812,2812,[3131,6465],[3067,6466],[3068,6467],3000,3131,2936,2876,3000,2876,2811,2875,3000,2875,[2939,6465],[2940,6466],[2940,6467],2935,3131,2939,2940,2876,2812,2999,3131,3131,2876,2875,2876,2999,2999,2812,2875,2935,3131,3132,3000,3000,[2875,6593],[2936,6594],[2812,6595],[3000,6596],[2999,6597],2999,3003,3004,3000,2999,2812,2936,2811,[2812,3807],3808,[2422,3247,3809],[6807,3248,3745],[6742,3249],[6621,6746,3250],[6623,3251],[6622,6806,3375],[6742,3376,7266],[6742,3377,7267],[6621,6808,3378,7268],[6558,3379,7269],[6622,3247],[6558,3248],[6623,3249],[6558,6741,3250,7138],[6623,6808,3251,7139],[3182,7140],[2714,7141],3182,3182,2844,3182,[3182,3807],3808,[2423,3809],[2359,3745],2491,2424,2424,2426,2426,2491,2360,2421,2492,2358,2424,2422,2421,2359,2491,2358,2357,2423,2359,2359,2363,2492,2422,2423,2358,2427,2421,2421,2424,2359,2358,2421,2492,2358,2359,2428,2422,2491,2491,2491,2426,2491,2491,2428,2427,2422,2357,2357,2422,2491,2428,2492,2490,2428,2426,[2421,3937],[2423,3938],[2421,3939],3808,3809,3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3637,4553],3700,3701,3700,3699,3700,3636,[3701,7685],3324,3701,[3701,4737],[3635,4738],3700,3635,[3388,2106],[3323,2107],[3700,2108],3637,[3701,4808],[3637,4809],[3636,4677],3324,3323,3700,3699,[3637,4742],4866,[3701,4867],[3699,4868],[3700,4869],[3700,4803],3700,3699,3701,3701,[3700,4808],[3700,4868],[3636,4869],[3699,4872],4873,[3637,4874],3701,3635,3636,3323,3635,3699,3388,3636,3699,3700,3635,3388,3637,3636,3700,3636,3637,3701,3637,[3637,4808],[3636,4809],[4932,3124],4933,4934,4935,4936,[3636,4937],3701,[3701,7749],3700,3637,3635,3636,3700,3701,3636,3387,3637,3701,[3323,2838],3635,3700,3700,3700,3699,3636,3637,3701,[3636,4801],[3636,4802],[3636,4803],3636,3699,3636,3701,3636,3637,3700,3636,3323,3699,3700,[3637,4865],[4866,7685],4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,[8557,14542,15181],[8490,15182],[8875,8494,15183],[8810,15184],[8874,8425,15319],14184,[14096,15189,9972],[14096,15190,9973],[8491,13907,15385,9974],[8431,9386],9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,[8431,9404],8431,[8493,14031,15319],14182,[8495,15189,15057],[8431,15385,15058],[8433,15059],[8554,15060],8433,8492,8303,8492,[8939,8620],[8874,8621],[8938,8428],8939,8938,8939,[8939,8617,14993],[8875,8618,14994],[8939,8619,14995],[8874,8620,14996],[8810,8621],[8874,8428],8810,8810,8939,[8810,8426],8493,8556,[8492,15053],[8556,15054],[8432,15055],[8491,15056],8493,8491,[8557,10219],10220,10221,[10222,15053],[8432,10223,15054],[8490,15055],[8433,15056],8492,[8492,15057],[8432,15058],[8432,15059],[8493,15060],8369,[8368,13213],[13279,13854],[13344,13855],[13277,13856],13342,[8368,13408],[8433,13407],[8493,13216,14657],[8557,14658],[8493,14659],14660,14661,14662,14663,14664,[8557,14665,14929],[8367,14930],[8556,13084,14931],[8367,13085,14932],13341,[8555,13405],[8369,13409],[8554,14480],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12909,8572],12908,[12973,16757],[12909,16758],12908,12908,12973,12909,[12972,13921],[12972,13922],[12909,13923],[12908,13924],12909,12908,12972,12908,[12972,13985],[12909,13986],[12908,13987],[12908,13988],12908,12908,12973,12972,12973,12908,12973,12908,12908,[12973,14177],[12973,14178],[12908,14179],[12972,14180],12973,12908,12908,12973,12972,[12972,12361],[12909,12362],[12909,12365],[12973,12362],[13651,12488],[13584,12489],13585,13651,13584,13586,13651,13649,13587,[13643,13460],13643,13643,[13643,13456],13651,[13648,2147497089],[13587,13441],13586,[13650,12686],[13584,12750],12751,[13649,12752],13650,13585,13586,13651,13587,[13586,13192],[13584,13193],[13650,13194],[13649,13195],[13586,13196],13651,13586,13650,13584,13584,13584,[13643,13460],13643,[13643,13455],13584,13649,13651,13586,13587,[13643,13522],13643,[13643,13192],[13643,13193],[13643,13647,13194],[13585,13195],[13643,13396,13196],13643,[13643,13455],13650,13649,13649,13650,13584,13649,13650,[13586,12743],12744,[13643,13523,12745],[13643,12681],13643,[13643,13456],13587,13586,13587,13586,[13650,12743],12744,[13586,12745],[13586,12746],[13584,12747],[13584,12748],[13585,12749],[13649,12746],[13586,12747],[13584,12748],[13650,12749],[13586,12750],12751,[13585,12878],13587,13586,13651,13585,13649,13648,[13643,13588],13643,13643,[13643,12615],[13643,13520,12616],13648,13650,[13648,3687],[2360,3688],[2421,2677],[2424,2678],[2423,2679],[2360,2680],2683,2684,2423,2357,2358,2358,2423,2359,2357,2421,[2422,2869],[2359,2870],[2423,2871],[2359,2872],[3701,2233],3637,[3701,2549],[3637,2356,2550],[2422,2551],2422,2358,2424,2423,2357,2424,2424,2360,2360,2358,2360,2422,2421,2422,2421,2424,[3324,2425],3699,[3636,2420,3488],[2357,3489],[2360,3490],[2422,3493],[2357,3490],[2423,3553],2424,2357,2358,2359,[2424,2741],[2421,2742],[2423,2743],[2422,2744],2357,[3635,2425],3701,[3635,2613],[3324,2164,2614],[2357,2615],[2360,2616],2357,2424,2423,[2424,2741],[2358,2742],[2360,2743],[2359,2744],2422,2522,2357,2360,[2360,3687],[3131,3688],2811,2875,2935,3131,3132,[2812,6593],[2811,6594],[3000,6595],[3131,6596],[3131,6597],3132,3000,3067,2939,[2939,6404],[2940,6405],3068,3131,2876,[2875,6529],[3131,6530],[3132,6531],[2999,6532],[2935,6533],2936,2812,2999,2812,3000,3131,2811,2939,[2940,6529],[2940,6530],[3004,6531],[2936,6532],[2936,6533],3003,3004,2940,2935,2936,2812,3000,2876,2875,3000,2999,2812,2935,2876,3000,2999,2812,2875,2875,2935,[3000,6658],[3000,6659],2812,2875,2876,3067,3068,2939,2940,2812,2876,2935,2875,[2875,3872],3873,[6997,3616,7126],[6936,7127],[6621,7002,7128],[6558,7129],[6557,6997],[6936,7330],[6941,7331],[6935,7332],[6621,6746,7333],6558,6558,6559,[6621,6997,7202],[6935,7203],[6559,6809,2461,7204],[6623,2462,7205],3182,3182,3182,3182,3182,[3182,3872],3873,[2424,3616],2421,2357,2422,2359,2491,2423,2357,2424,2491,2492,2359,2357,2423,2423,2364,2358,2423,2492,2359,2428,2421,2490,2427,2490,2364,2422,2360,2522,2492,2490,2422,2423,2492,2359,2423,2358,2421,2490,2424,2357,2360,2428,2421,2428,2427,2423,2421,2492,2359,2428,2360,2428,2362,2492,2357,2360,2358,2491,[2423,3872],3873,3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3699,4618],3323,3635,3700,3637,3323,[3701,7749],3323,3635,[3701,4801],[3701,4802],[3636,4803],3323,3700,3699,3635,[3701,4808],[3699,4872],4873,[3699,4741],3700,3323,3323,3700,3636,[3700,4930],4931,4932,4933,[3637,4867],[3635,4868],[3701,4869],[3637,4870],[3637,4871],[3700,4872],4932,[4933,3124],4936,[3636,4937],3635,3701,3324,3388,3635,3701,3700,3699,3635,3387,3637,3701,3700,3323,3700,3701,3636,[3637,7115],[3635,7116],[3636,4808],[3637,4872],4873,[3637,4996],[3637,4997],[3636,4998],[3699,4999],[3636,5000],3637,3637,[3700,7813],3324,3699,3699,3637,3699,3699,3635,3699,3701,3636,[3701,2902],3635,3323,3699,3635,3636,3635,3635,3636,[3699,4865],[4866,3125],[3700,4867],[3701,4868],[3635,4869],[3637,4803],3699,3635,3635,3701,3636,3700,3323,3637,3635,[3635,4930,7749],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,[12300,13157],[12300,13158],12300,12300,[8432,14606,15245],[8369,14543,15246],[8810,8558,14293,15247],[8810,15248],[8875,8489,15255],14184,[14097,15253,10036],[14097,10037],[8369,13908,10038],[8557,9450],9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,[8432,15067,9468],[8557,15254],[8369,14095,15383],14182,[8555,15253,15121],[8493,15122],[8491,15123],[8369,15124],8304,[8875,8619],[8939,8621],[8875,8428,14925],[8938,14926],[8938,14927],[8938,8297,14928],[8874,8299],[8874,8301],[8875,8364],[8938,15057],[8939,15058],[8938,15059],[8874,15060],8810,8875,[8874,8363],[8938,8302],8875,8939,[8810,8361],8431,[8368,15117],[8433,15118],[8433,15119],[8556,15120],8554,8493,[8491,10283],[8556,10284],[8556,10285],[8368,10286,15117],[8554,10287,15118],[8368,15119],[8433,15120],8304,[8368,15121],[8431,15122],[8493,15123],[8431,15124],8432,8303,[8555,13148],[13344,14925],[13277,14926],[8368,13216,14927],[8369,14928],8433,[8431,14721],14722,14723,14724,14725,14726,14727,14728,[8369,14729,14993],[8367,14994],[8431,13340,14995],[13280,14996],[8431,13216],[8557,14292],[8555,14479],[8556,14608,14925],[12300,14926],[12300,14927],[12300,14928],12300,12300,12300,12300,12300,[12300,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12908,8636],12909,12908,12972,12909,12909,12908,12972,[12909,13985],[12908,13986],[12909,13987],[12908,13988],12973,12973,12972,12972,[12908,14049],[12973,14050],[12908,14051],[12909,14052],12973,12973,12908,12972,12972,12908,12909,12908,12973,[12908,14241],[12908,14242],[12909,14243],[12908,14244],12909,12909,12908,12973,[12909,12424],[13585,12425],[13649,12426],[13648,12429],[13648,12426],[13587,12489],13651,13585,13584,13587,13587,13650,13586,13650,[13643,13588],13643,13643,[13643,13455],13649,13586,13587,13586,[13584,12559],12814,[13585,12815],13650,13650,[13640,13714],[13512,13715],13650,13579,[13651,13256],[13587,13257],[13650,13258],[13586,13259],[13650,13260],13651,13586,13648,13649,13584,13649,[13643,13524],13643,[13643,13519],13648,13650,13650,[13643,13715],[13643,13716],13643,13643,[13643,13391,13256],[13643,13392,13257],[13649,13258],[13648,13259],[13643,13460,13260],13643,[13643,13519],13650,13585,13587,13650,13586,13651,13649,13586,[13586,12808],12809,[13643,13393,12552],[13643,13395],13648,13648,13648,13649,13649,13584,[13586,12808],12809,12810,12811,12812,12813,12810,12811,12812,12813,12814,[13643,13455,12560,12815],13650,13649,13651,13584,13650,13650,13651,13648,[13643,13392],[13643,13396,12424],[13643,12425],[13643,12489],[13643,13455],13649,[13587,3623],[2358,3624],[2422,2741],[2360,2742],[2358,2743],[2423,2744],2747,2748,2359,2422,2360,2360,2358,2357,2421,2423,2423,2359,2424,2421,[3700,2361],3636,[3637,2164,2613],[2357,2614],[2423,2615],[2358,2616],2358,2360,2358,2357,2423,[3699,2487],[3700,2485],[3323,2486],[3636,2487],[3636,2488],2424,2421,[2358,2549],[2360,2550],[2422,2551],[3323,2233],[3637,3551],[3635,2228,3552],[2424,3553],[2421,2549],[2359,2550],[2422,2551],2357,2358,2423,2359,2423,[2423,2805],[2357,2806],[2424,2807],[2424,2808],2421,[3323,2489],3699,[3636,2677],[3637,2420,2678],[2359,2679],[2360,2680],2357,2424,2422,[2423,2805],[2357,2806],[2422,2807],[2358,2808],2360,2358,2424,[2357,3750],[2423,3751],[3131,3752],3131,2935,2811,3131,3132,2811,[2939,6658],[2940,6659],2936,2936,2876,2935,3131,3003,[2939,6468],[2939,6469],2940,2811,2935,[3000,6593],[2812,6594],[2999,6595],[2936,6596],[2999,6597],2812,2876,3000,[2939,6470],2940,2940,2936,3003,[3004,6593],[3004,6594],[3068,6595],[2939,6596],[2940,6597],3067,3068,3004,2811,2812,2935,2935,2811,2939,2940,2939,2940,2811,[2935,6401],[2812,6402],[2875,6403],2811,2811,2936,3131,2935,2936,2811,2936,[2999,6406],3131,3132,3003,3004,[3000,6401],[2875,6402],[3131,6403],2876,2876,[2811,3615],[6997,3616,7190],[7068,7191],[6622,7002,7192],[6558,7193],[6559,6871],[6998,7394],[7001,7395],[6936,7396],[6935,7397],[6622,6742],[6623,6746],6621,[6559,6871,7266],[6998,7267],[6557,7002,7268],[6621,2526,7269],3182,3182,3182,3182,3182,3182,[3182,3615],[2423,3616],2522,2421,2426,2357,2359,2358,2358,2423,2427,2359,2424,2364,2424,2490,2492,2358,2424,2357,2458,2358,2490,2427,2427,2423,2491,2427,2491,2422,2458,2357,2491,2360,2492,2357,2490,2427,2492,2428,2358,2359,2421,2492,2362,2357,2357,2421,2492,2424,2422,2421,2428,2427,2357,2426,2458,2423,2427,2360,2522,[2423,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3701,4682],3635,3636,3701,3701,3323,[3635,7813],3637,3323,[3699,4865],4866,[3700,4867],[3636,4870],[3701,4871],[3637,4870],[3700,4871],[3636,4872],4936,[3636,4937],3699,3635,3700,3701,3701,3635,3701,[3699,4995],[3699,4996],[3701,4997],4931,4932,[4933,3125],4934,[4935,3188],4936,[3699,4996],[3637,4997],[3701,5000],3636,3701,3635,[3635,7621],3323,3636,3700,3701,3637,3699,3323,3324,3700,3324,3635,3387,3635,3637,[3636,7179],[3637,7180],[3699,4681],4936,[3699,4937],3701,3700,3637,3699,3701,3635,3700,3637,3323,3699,3635,3387,3635,3636,3636,3323,3388,3637,3701,3701,3637,3635,3637,3635,3388,3635,3699,3699,[3637,4930],4931,4932,4933,[3701,4867],[3699,4803],3636,3637,3636,3700,3388,3635,3635,3699,[3699,7813],[3699,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12300,8572],12300,12300,[12300,13221],[12300,13222],12300,12300,12302,12300,[8875,8428,14478],8810,[8810,8553,15319],14182,[14098,15317,10100],[14033,10101],[8491,13972,10102],[8369,9514],9515,[8369,9516,13538],[8368,9517,13539],[8490,9518,13540],[8369,9519,13541],9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,[8431,15255,9532],[14182,13287],[14182,13288],14182,[8493,15317,15185],[8492,15186],[8367,15187],[8554,15188],[8939,8558],8874,8939,[8938,14989],[8939,8362,14990],[8938,8298,14991],[8431,14992],8433,8492,8433,[8939,8299,15121],[8874,8300,15122],[8875,8301,15123],[8939,8298,15124],[8939,8301],[8938,8302],[8939,8553],8367,[8874,8365],8875,[8939,8489],8431,[8555,15181],[8369,15182],[8433,15183],[8493,15184],8491,8367,8490,[8874,8558,10348],[8874,10349],[8939,8426,10350,15181],[8875,8620,15182],[8938,8621,15183],[8492,15184],8432,[8432,15185],[8493,15186],[8557,15187],[8490,15188],8556,8555,[8431,13276],[13343,14989],[8492,13345,14990],[8554,14991],[8431,14992],8431,[8490,14785],14786,14787,14788,14789,14790,14791,14792,[8557,14793,15057],[8491,15058],[8490,13214,15059],[8493,13409,15060],8490,[8369,14480],[12300,13159],[12300,14989],[12300,14990],[12300,14991],[12300,14992],12300,12300,12300,12300,12300,12300,[12300,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,8443,8698,[12973,8699],12972,[12908,13921],[12909,13922],[12908,13923],[12908,13924],12909,12908,12909,[12973,14049],[12973,14050],[12908,14051],[12972,14052],12909,12908,12908,12972,[12973,14113],[12973,14114],[12909,14115],[12909,14116],12909,12972,12972,12909,[12973,13921],[12908,13922],[12972,13923],[12973,13924],12908,[12973,16693],[12909,16694],12973,12909,12973,[12909,12361],[12908,12365],[12909,12362],[13651,12488],[13649,12489],13649,13648,13648,13650,13585,13648,13651,13587,13651,13649,13586,13651,13587,[13643,13458],13643,[13643,13519],13584,13587,13587,[13584,13189],[13651,12623],[13585,12624],13587,13651,[13512,13523],13641,13640,[13641,13647],13584,[13585,13320],[13584,13321],[13586,13322],[13584,13323],[13587,13324],13584,13648,13585,13584,13586,13650,[13643,13588],13643,[13643,13583],13585,13648,[13643,13522],13643,13643,13643,[13643,13457],[13648,13320],[13584,13321],[13651,13322],[13649,13323],[13643,13588,13324],13643,[13643,13583],13586,13587,13584,13651,13650,13651,13586,13587,13586,[13585,12615],[13586,12616],13648,13585,13587,13650,13587,[13643,13715],13585,13584,[13587,12873],[13643,13524,12874],[13643,12875],[13643,13455,12876],[13586,12877],[13586,12874],[13586,12875],[13587,12876],[13643,13460,12877],[13643,12623,12878],[13643,13519,12624],13650,13584,13584,13585,[13585,13133],[13585,13134],[13584,1954,13135],13648,[13649,12487],[13587,12488],[13643,13458,12489],13643,[13643,13583],13651,[13586,3687],[2422,3688],[2358,2805],[2359,2806],[2359,2807],[2358,2808],2358,2424,2358,2359,2359,2357,[3323,2486],[3324,2487],[3699,2488],2358,2422,2424,2358,2358,[3699,2296],3323,[3701,2420,2677],[2359,2678],[2424,2679],[2421,2680,2300],2360,2421,2359,2421,[3636,2425],3637,3388,3636,3635,3323,[3701,2293],2360,[2423,2613],[2357,2614],[2357,2615],[3636,2297,2616],[3700,3615],[3323,2292,3616],2421,[2423,2613],[2360,2614],[2422,2615],[2358,2616],2358,2360,2358,2424,[2360,2869],[2358,2870],[2360,2871],[2422,2872],[3635,2296],3635,[3636,2230],[3637,2165,2741],[2360,2742],[2422,2743],[2424,2744],2423,2423,2422,[2424,2869],[2422,2870],[2358,2871],[2423,2872],2359,2421,[2358,3750],[2360,3814],3815,[3131,3816],[2936,6401],[2999,6402],[2875,6403],2811,3000,2939,2940,2940,2999,2875,2935,2875,3131,3067,3003,3003,3004,2812,2875,2936,[2876,6658],[2935,6659],2811,2939,2940,2940,3131,3003,3004,3004,2939,3067,3068,[3068,6658],[3132,6659],2939,2939,3131,3132,[3068,6401],[2876,6402],[2999,6403],2935,2811,2876,3003,3004,3003,3004,2812,[3131,6465],[2935,6466],[2876,6467],2811,2812,3000,2999,2812,2936,2876,2936,2812,2939,2940,3067,3068,[3000,6465],[2935,6466],[3131,6467],2812,3000,[6806,3679],[6934,3680,7254],[7005,7255],[6622,7002,7256],[6558,7257],6622,[6623,7061],[6998,7459],[6937,7460],[7003,7461],6936,6935,[6559,6746],[6623,7330],[6558,6997,7331],[6558,7002,7332],[6622,2590,7333],3182,2844,3182,3182,3182,3182,[3182,3679],[2360,3680],2359,2422,2423,2357,2427,2422,2421,2428,2423,2426,2492,2423,2423,2426,2421,2492,2423,2428,2428,2426,2360,2426,2421,2428,2363,2428,2357,2490,2426,2362,2427,2359,2427,2422,2426,2492,2424,2427,2490,2423,2359,2360,2428,2422,2423,2492,2357,2491,2427,2426,2428,2492,2492,2491,2394,2490,2427,2421,2360,[2358,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3701,4746],3700,3637,[3637,2932],[3323,2933],3637,3700,3699,3699,3636,[3635,4930],[4931,3124],4934,4935,[4934,3124],4935,4936,[3635,5000],3700,3701,3700,3701,3635,3323,3699,3699,3635,3699,3635,[3699,4995],[3701,4996,3188],[3637,4997],[3636,4998],[3637,4999,3124],[3701,5000],3700,3636,3637,3701,3635,3701,[3636,7685],3388,3637,3637,3701,3700,3324,3700,3700,[3323,2709],3635,3700,3388,3388,3699,3701,3700,[3699,4681],[3637,4682],3637,3324,3636,3700,3700,3323,3324,3700,3637,3637,3701,3701,3635,3636,3387,3637,3324,3388,3635,3324,3701,3636,3635,3701,3388,3636,3636,3701,3637,3636,[3699,4995],[3700,4996],[3700,4997],4931,[3700,4674],3636,3323,3699,[3701,2709],3699,3637,3636,3387,[3635,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8636],12300,12300,12300,12300,12300,12300,[12300,14929],[8939,8558,14414,14930],[8810,8297,14931],[8939,8298,14932],[8369,15255],14182,[14034,15381],[14098,15318],[8431,14036,15068],[8368,9578],9579,[8554,9580,13602],[8491,9581,13603],[8431,9582,13604],[8556,9583,13605],[8555,9584,13606],9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,[8555,15319,9596],[14182,13351],[14182,13352],14184,[8369,15381],[8369,15320,15250],[8433,15321,15251,16689],[8367,16690],8492,[8874,8299],[8875,8300],[8874,8301,15053],[8491,15054],[8491,15055],[8432,15056],8432,8490,8555,[8490,15185],[8555,15186],[8431,15187],[8433,15188],[8810,8621],[8938,8429],[8874,8361],8367,[8939,8558],8810,[8939,8617],[8875,8618],[8490,15245],[8492,15246],[8557,15247],[8490,15248],[8874,8618],[8875,8619],[8875,8620],[8874,8428],8938,[8938,15245],[8810,15246],[8875,15247],[8939,8426,15248],[8810,8619],[8938,8620],[8875,8621,15250],[8555,15251],8491,8369,8490,[8369,13404],[8555,13408,15053],[8367,13409,15054],[8490,15055],[8369,15056],8491,[8555,14849,14538],[14850,14538],[14851,14538],14852,14853,14854,14855,14856,[8433,14857,15121],[8303,15122],[8431,15123],[8556,15124],8493,8303,[8431,14416],[8367,14414,15053],[8432,14415,15054],[8369,14416,15055],[12300,15056],12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,8443,[12972,8444],12908,12908,[12908,13985],[12972,13986],[12909,13987],[12908,13988],12973,12972,12909,[12909,14113],[12908,14114],[12972,14115],[12908,14116],12909,12972,12973,12972,[12909,14177],[12972,14178],[12909,14179],[12909,14180],12908,12909,12973,12908,[12972,13985],[12972,13986],[12908,13987],[12909,13988],12908,[12973,16757],[12973,16758],12908,12908,[12909,12424],[13650,12425],[13586,12429],[13649,12426],[13585,12489],13584,13651,13651,13585,13586,13586,13587,13584,13650,13585,13586,13651,[13584,12686],[13584,12746],[13643,13652,12749],[13643,12681],[13643,13583],13586,13648,13649,[13587,12686],[13650,12687],[13648,12688],13584,[13512,13460],13640,[13640,13391],[13641,13392],13648,13649,[13585,13384],[13648,13385],[13651,13386],[13585,13387],[13586,13388],13584,13648,13650,13584,13649,13651,13587,[13643,13459],[13643,13711],[13643,13714],[13643,13522],13643,13643,[13643,13391],[13643,13392],13586,[13584,13384],[13650,13385],[13649,13386],[13649,13387],[13650,13388],[13643,13392],13651,13650,13587,13650,13650,13649,13584,13651,13586,13650,[13585,12551],[13651,12552],13650,13584,13586,13651,[13643,13460],13643,[13643,13455],13651,13649,[13643,13588],13643,[13643,13519],13584,13584,13584,13648,[13643,13524],[13643,12494],[13643,13583,12430],[13651,12431],13587,13585,13648,[13649,13197],[13650,2017,13198],[13649,2018,13199],[13648,2019],[13649,12551],[13650,12552],13585,[13643,13392],13648,13586,[13586,3558],[13585,3494],[2358,3495,2869],[2423,2870],[2359,2871],[2423,2872],2424,2359,2424,[3700,2487],[3635,2488],[3323,2295],[3324,2164],[3636,2232],3635,[3323,2293],2360,2360,2358,[3700,2233],3323,[3635,2229],[2422,2741],[2423,2742],[2422,2743],[2424,2744],2423,2421,2424,[3635,2485],[3636,2295],3324,3701,3637,[3701,2230],[3388,2231],3324,[3635,2228],[2422,2677],[2421,2678],[2359,2679],[3635,2361,2680],[3635,3679],[3635,2356,3680],2423,[2360,2677],[2421,2678],[2358,2679],[2358,2680],2424,2359,2359,2358,2360,2358,[3636,2485],[3699,2295],3323,[3637,2229],2423,[2421,2805],[2360,2806],[2359,2807],[2421,2808],2421,2424,2424,2424,2357,2357,2358,2422,2359,[2424,3623],3878,[2935,3879],2876,[2935,6465],[3000,6466],[2935,6467],2812,2999,3003,3004,3004,2999,2939,2940,[2936,6401],[2939,6402],[3131,6403],3067,3067,3068,2999,2812,3131,2876,2936,2939,2940,2940,3004,[2875,6401],[3067,6402],[3068,6403],3068,3003,3131,3132,3132,2940,3003,2939,3131,3131,[3132,6465],[2999,6466],[2936,6467],2936,2812,3000,3067,3068,3067,3068,2936,[2811,6529],[2999,6530],[2875,6531],[2811,6532],[2875,6533],2935,2812,2935,2812,2811,3000,2936,3003,3004,3131,3132,[2875,6529],[2935,6530],[3131,6531],[2999,6532],[2811,3551,6533],[6997,3552],[6940,3553,7318],[7004,7319],[6559,7002,7320],[6559,7321],6558,6558,[6623,6870],[6557,7065],6998,6937,7005,[6621,7002],[6559,7394],[6622,6997,7395],[6935,7396],[6622,6742,7397],[6622,6809,2462,7134],[3182,7135],[3182,7136],[3182,7137],[6621,2460],[6623,2462,3551],[2359,3552],[2428,3553],2421,2426,2422,2359,2492,2421,2422,2359,2490,2358,2423,2363,2492,2427,2357,2490,2359,2422,2360,2423,2422,2427,2427,2421,2358,2492,2426,2421,2427,2358,2421,2492,2490,2522,2490,2359,2422,2490,2427,2357,2422,2490,2358,2491,2357,2424,2522,2421,2426,2421,2428,2360,2428,2358,2422,2360,2492,2491,[2357,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3699,4810],3636,3635,[3635,2996],[3387,2997],3637,3637,3635,3637,3701,3635,[3700,4995],[3699,4998,3125],[3635,4999,3188],[3636,4998],[3637,4999,3124],[3699,5000],3636,3700,3637,3635,3387,3700,3635,3635,3635,3701,3700,3635,3701,3636,3701,3637,3635,3635,3701,3636,3637,3699,3637,3637,[3324,7749],3323,3387,3635,3637,3387,3701,3699,3637,[3636,2773],3700,3636,3387,3387,3323,3637,3635,[3701,4745],[3637,4746],3701,3387,3635,3637,3323,3387,3700,3637,3700,3388,3323,3323,3700,3637,3635,[3323,1914],[3699,1915],[3700,1916],3699,3699,3323,3636,3637,3636,3700,3700,3699,3700,3699,3636,3323,3700,3637,[3701,4673],[3637,4674],3635,3324,3701,[3701,2773],3635,3636,3388,3387,[3700,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12300,8699],12300,12300,12300,12300,12300,12300,[8554,14414],[8492,14415,14993],[8938,8622,14994],[8939,8617,14995],[8369,14996],[8367,15319],[14182,16689],[14182,16690],14182,[8432,14164,15253],[8368,9642],[8432,9643],[8367,9644,13666],[8433,9645,13667],[14035,9646,13668],[14033,9647,13669],[14099,9648,14865,13670],[14034,9649],9650,9651,9652,[14098,9653],[14739,9654,14865],[14099,9655],[14033,9656],9657,9658,[8492,9659],[8493,15386,9660],[8557,15191],14182,14182,14182,14182,[8493,15253,16753],[8492,16754],8369,8555,8554,[8493,15117],[8555,15118],[8367,15119],[8493,15120],8367,8367,8555,[8810,8619],[8874,8620,15250],[8874,8621,15251],[8939,8428],8875,8874,[8939,8425],[8556,14929],[8556,14930],[8874,8364,14931],[8875,14932],8875,[8875,8426],[8875,8619],[8939,8620],[8939,8429],8874,8874,8939,8939,[8939,8297],[8874,8298],[8939,8364],8938,8939,8939,8875,8874,[8810,8617],[8938,8618],[8938,8619],8491,8493,[8556,15117],[8554,15118],[8554,15119],[8368,15120],8554,[8493,14602],[8555,14602],[8939,8620,14915,14602],[8810,8621,14916],[8938,8429,14917],[8938,14918],[8874,8553,14919],[8556,14920],[8491,14921,15185],[8493,15186],[8554,15187],[8555,15188],8433,8368,8431,[8431,15117],[8490,15118],[8432,15119],[8369,14416,15120],12300,12300,[12300,13160],12300,12300,12300,[12300,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,8507,[12909,8508],12908,12908,[12972,14049],[12973,14050],[12972,14051],[12908,14052],12972,12909,12908,[12909,14177],[12909,14178],[12973,14179],[12973,14180],12908,12972,12973,12973,[12909,14241],[12908,14242],[12973,14243],[12972,14244],12972,12908,12909,12972,[12909,14049],[12972,14050],[12909,14051],[12973,14052],12908,12909,12908,[12973,12361],[12972,12362],[13649,12488],[13585,12489],13649,13650,13587,13649,13651,13649,13585,13584,[13587,13133],[13586,13134],[13586,13135],13648,13585,13587,[13648,12686],[13649,12687],12810,12813,[13643,12745],[13643,13647,12746],[13585,12747],[13586,12748],[13584,12749],[13585,12750],12751,[13649,12752],13586,[13641,13524],13512,[13512,13455],13649,13585,13651,13586,[13651,13449],[13586,13450],[13584,13451],13586,13584,13649,13587,13650,13649,13648,13586,13651,[13643,13396],13643,13643,13643,13643,[13643,13647],13650,13648,13650,[13584,13449],[13586,13450],[13584,13451],13651,13649,13649,13587,13585,13587,13585,13586,13587,13585,13584,13584,[13651,12615],[13584,12616],13649,13585,13648,13585,[13643,13588],13643,[13643,13519],13586,13650,[13643,13716],13643,[13643,13583],13649,13584,13586,13651,[13643,13588],13643,[13643,13647,12494],[13651,12495],[13587,12365],[13587,12366],13586,[13651,13261],[13586,13262],[13649,13263],13585,[13648,12615],[13648,12616],13648,13584,13587,13587,13649,[13585,3558],[13651,3559],[2423,3560],2360,2423,2360,2358,[3701,2296],3700,3637,3323,[3699,2420],2358,[3636,2232],3700,[3635,2484],2424,2421,[3636,2297],3701,[3637,2228],[2422,2805],[2359,2806],[2359,2807],[3636,2485,2808],[3699,2486],[3635,2487],[3324,2489],3700,3701,[3700,2230,2549],[3636,2165,2550],[3388,2165,2551],2360,[3637,2233],3635,[3635,2356],[2421,2741],[2358,2742],[2423,2743],[3324,2425,2744],[3699,3615],[3635,2420,3616],2424,[2424,2741],[2424,2742],[2424,2743],[2360,2744],2421,2421,2357,2360,2422,[3699,2425],3701,3701,3323,[3700,2484],[3636,2487],[3637,2486,2869],[3636,2487,2870],[3323,2488,2871],[3324,2487,2872],[3388,2488],2421,2357,2422,2424,2423,2357,2424,2358,[2423,3623],[2812,3624],2999,2936,[3131,6529],[2811,6530],[2999,6531],[2999,6532],[2876,6533],3067,3068,3068,2939,2939,2939,[2939,6465],[2939,6466],[2940,6467],2940,2939,2940,2999,2876,3131,2812,2811,2939,2940,3004,3068,[2875,6465],[3131,6466],[3132,6467],3132,3067,3068,2940,3003,3004,3067,2939,2939,2940,[3000,6529],[2875,6530],[2812,6531],[3131,6532],[2811,6533],2939,2940,3132,3131,3132,3131,[2936,6593],[2811,6594],[2999,6595],[2875,6596],[2939,6597],2940,3000,2812,[2939,6401],[2940,6402],[2875,6403],2935,3067,3068,3000,2811,[2812,6593],[2875,6594],[3000,6595],[2811,6596],[3000,3743,6597],[6997,3744],[6940,3745,7382],[7000,7383],[6935,7384],[6558,6808,7385],6622,[6623,6807],[6557,6742],[6622,6808],[6559,7061],6998,7069,[6621,7002],6623,[6622,6870,7459],[6557,7062,7460],6998,[6623,7002,7198],[6621,2461,7199],[6623,2461,7200],[6559,2461,7201],6621,[6621,3615],[2357,3616],2491,2357,2421,2490,2358,2422,2428,2359,2428,2422,2427,2492,2428,2491,2359,2357,2364,2492,2426,2360,2358,2358,2423,2424,2427,2491,2426,2357,2360,2424,2422,2490,2427,2394,2427,2491,2427,2491,2428,2426,2424,2360,2490,2359,2424,2426,2492,2360,2423,2422,2427,2428,2423,2358,2359,2359,2427,2427,[2360,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3635,4874],3323,3701,[3388,3060],[3637,3061],3388,3635,3323,3700,3637,3700,3699,3699,3700,3388,3699,3701,3699,3700,3635,3699,3635,3388,3699,3635,3637,3699,3699,3637,3324,3636,3700,3635,3635,3636,3323,3323,3700,3700,3699,3388,[3701,7813],3635,3323,3636,3699,3635,3637,3636,3700,[3700,2837],3388,3323,3387,3323,3323,3637,[3637,4808],[3701,4809],[3637,4810],3388,[3635,2932],[3637,2933],3324,3323,3635,3636,3701,3637,3636,3635,3636,3637,3700,3635,[3323,1978],[3699,1979],[3323,1980],3636,3699,3323,3699,3637,3699,3323,3701,[3635,2170],[3636,2171],3701,3323,3636,3701,3701,[3699,4737],[3635,4738],3700,3387,3636,[3636,2837],3699,3700,3387,3635,[3637,4673,2868],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,[8367,14478],[8938,8429,15057],[8874,8362,15058],[8875,8364,15059],[8810,8427,15060],[8367,15386],[8493,15190,16753],[8432,15191,16754],14182,[8555,15317],8492,[8555,9707],[8369,9708,13730],[8555,14095,9709,13731],[14674,13732],[14609,13733],[14032,13734],[14033,9713],[14673,9714],9715,[14675,9716],[14675,9717],14611,14098,[8490,14160],[8491,14161,9721],[8367,14164,9722],[8433,9723],8367,[8555,15255],[14182,13354],[14182,13355],14182,14183,[8875,8619,15253],8490,8367,8305,8555,[8369,15181],[8369,15182],[8490,15183],[8490,15184],8555,8369,[8810,8558],8810,8810,8874,8810,[8938,8362,16693],[8938,8302,16694],[8938,8489],[8432,14993],[8556,14994],[8557,14995],[8939,8302,14996],8938,8939,8938,8875,8939,8810,[8810,8362],[8938,8299,14925],[8938,8301,14926],[8432,14927],[8493,14928],8555,[8939,8299],[8875,8300],[8874,8301,14929],[8875,8364,14930],[8938,14931],[8939,14932],8938,8938,[8939,8427],[8874,8618],[8874,8618,15181],[8939,8619,15182],[8874,8620,15183],[8875,8621,15184],8556,8555,[8874,8429],8874,8810,8810,[8938,8363],8554,8557,8431,[8556,15250],[8555,15251],8367,8432,8493,8431,[8555,15181],[8557,15182],[8369,15183],[8368,14480,15184],12301,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12908,8315],12909,[12908,14113],[12909,14114],[12973,14115],[12908,14116],12908,12909,12972,[12908,14241],[12973,14242],[12972,14243],[12908,14244],12908,12973,12973,12909,12909,12908,12909,12973,12973,12973,12908,12973,[12973,14113],[12908,14114],[12909,14115],[12908,14116],12973,12972,[12972,12424],[13584,12425],[13586,12426],[13651,12489],13651,13585,13650,13585,13587,13587,13587,13650,13650,[13584,13197],[13651,13198],[13648,13199],13648,13648,[13649,12686],[13650,12750],12751,[13648,12874],[13587,12877],12809,12810,12811,12812,12813,12814,[13585,12815],13585,13650,[13512,13588],13512,[13640,13583],13587,13651,13587,13586,13587,13584,13649,13587,13584,13587,13648,13587,13651,13649,13587,13587,13650,[13643,13392],[13643,13458],13643,[13643,13456],13648,13585,13650,13648,13651,13584,13585,13586,13650,13649,13648,13584,13651,13587,13648,13650,13587,13648,13585,[13586,12679],[13649,12680],[13586,12681],[13643,13713],[13643,13714],[13643,13715],[13643,13522],[13643,2147496641],[13643,13583,12993],13648,[13643,13460],13643,[13643,13456],13648,13648,13649,13651,13585,[13643,13652],13643,[13643,13455],[13651,12494],[13650,12429],[13650,12430],[13586,12431],[13648,13325],[13587,13326],[13648,13327],13587,[13651,12551],[13586,12552],13584,13585,13650,13648,13648,13648,[13649,3623],[2424,3624],2423,2359,2359,[3387,2425],3635,[3699,2164],[3324,2166],[3636,2168],2360,2421,[3635,2233],3699,3388,[3701,2420],2358,[3387,2361],3700,[3636,2292],[2358,2869],[2423,2870],[3701,2425,2871],[3700,2872],3700,3323,3323,[3700,2229],[3323,2165],[2422,2613],[2423,2614],[2423,2615],[2358,2616],[3700,2297],3387,[3700,2293],[3324,2486,2805],[2357,2806],[2360,2807],[3700,2296,2808],[3636,2229,3679],[2421,3680],2424,[2424,2805],[2358,2806],[2422,2807],[2358,2808],2422,2422,2424,[3700,2487],[3701,2488],[3323,2489],3324,3699,3323,3700,3699,3387,3635,3635,3700,3324,[3636,2293,2549],[3323,2485,2550],[3701,2486,2551],[3701,2487],[3323,2488],2423,2359,2422,[2358,3687],[2999,3688],2876,2876,[2935,6593],[2811,6594],[2939,6595],[2940,6596],[3131,6597],3131,3132,3132,3003,3003,3003,[3003,6529],[3003,6530],[3004,6531],[3004,6532],[2939,6533],2939,2940,2935,2876,2876,2939,2940,3004,[3068,2158],3132,[3000,6529,2160],[2875,6530],[3000,6531],[3131,6532],[3131,6533],3132,3004,3067,3068,2939,2940,3003,3004,[3131,6593],[2876,6594],[3000,6595],[3000,6596],[2999,6597],3003,3004,2876,2875,2811,2811,3000,[3000,6658],[2876,6659],2935,3003,3004,2939,2940,[3003,6465],[3004,6466],[3131,6467],2812,3131,3132,2939,2940,2811,[3000,6658],[2875,6659],2875,[2936,3807],3808,[6998,3809],[6936,3745,7447],[7067,7448],6935,[6621,6742],6934,7069,6935,[6558,6808],[6621,6871],6998,[6558,7002],6623,6622,6622,[6558,6997],[6935,7262],[6559,6746,7263],[6559,7264],[6559,7265],6621,[6559,3679],[2422,3680],2491,2428,2423,2491,2421,2421,2359,2428,2492,2358,2427,2422,2423,2360,2492,2492,2359,2364,2421,2522,2357,2424,2421,2427,2428,2357,2490,2427,2358,2362,2358,2422,2421,2490,2522,2427,2490,2362,2421,2422,2423,2490,2358,2490,2360,2426,2490,2423,2360,2424,2358,2359,2423,2427,2491,2427,2458,2491,[2424,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3637,4937],3635,3635,3637,3323,3701,3700,3324,3700,3323,3700,3700,3637,3387,3700,3699,3700,3324,3700,3324,3387,3388,3701,3701,3387,3635,3701,3635,3701,3636,3700,3700,3700,3700,3637,3637,3323,3635,3636,3637,3636,3700,3637,3323,3636,3323,3701,3699,3387,3635,3699,[3701,2901],3636,3701,3636,3635,3700,[3700,4808],[3637,4872],4873,[3636,4874],3635,[3635,2996],[3636,2997],3636,3637,3637,3635,3700,3323,3701,3323,3637,3636,3636,3699,[3699,2042],[3700,2043],[3701,2044],3637,3323,3636,3700,3637,3323,3699,3700,3699,3700,3700,3637,3635,3636,3699,[3636,4673],[3701,4674],3387,3699,3701,[3699,2901],3323,3637,3637,3635,[3701,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,[12300,13413],[12300,13414],12300,12300,12300,[8810,8558,14478],[8938,15121],[8810,8553,15122],[8492,15123],[8939,8364,15124],[8874,8553],8368,[8557,15255],14182,[8432,15381],[8556,15382],[8492,15318],[8557,13904,15068,13794],[14675,13795],[14674,13796],[14673,13797],14674,14035,[14096,9778],[14034,9779],[14032,9780],14674,14739,[8491,13971],8431,8556,8557,8554,8554,[8303,15319],14182,14182,[8557,15189,16689],[8938,8430,15190,16690],[8939,15385],[8875,8553],8557,8491,[8938,8618],[8810,8619,15245],[8938,8620,15246],[8810,8621,15247],[8874,8619,15248],[8939,8620],[8939,8621],[8875,8428],8939,[8939,8297],[8938,8298],[8810,8301],[8557,16757],[8556,16758],8557,[8432,15057],[8555,15058],[8491,15059],[8810,8558,15060],8810,8810,8939,8810,[8874,8297],[8875,8298],8432,[8305,14989],[8367,14990],[8432,14991],[8555,14992],8557,8557,8433,[8557,14993],[8368,14994],[8939,8298,14995],[8810,8302,14996],8939,8810,8938,8810,8874,[8810,15246],[8810,15247],[8938,15248],[8938,8426],[8938,8622],8874,8810,[8874,8363],[8874,8298],8368,8367,[8557,14539],8556,8493,8557,8492,8433,8493,8554,[8367,15245],[8490,15246],[8492,15247],[8554,14544,15248],12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12908,8380],[12909,14177],[12973,14178],[12909,14179],[12973,14180],12908,12908,12909,12973,12908,12972,12973,12908,12909,12909,12909,12909,12908,12972,12908,12908,12908,12973,12908,[12973,14177],[12909,14178],[12973,14179],[12972,14180],12909,[12908,12487],[13586,12488],[13586,12489],13587,13587,13585,13649,13651,13648,13650,13649,13586,13649,13585,[13584,13261],[13651,13262],[13650,13263],13586,13649,[13650,12559],12814,[13649,12815],13584,13650,[13649,12873],[13584,12874],[13649,12875],[13650,12876],[13586,12877],[13585,12878],13584,13584,13585,[13512,13522],13512,[13512,13520],13651,13648,13650,13649,13649,13650,13648,13584,13585,13650,13584,13651,13648,13649,13651,13587,13586,13649,13586,[13643,13392],13586,13585,13586,13585,13587,13650,13586,[13650,12943],[13585,12944],13649,13587,13587,13587,13649,13584,13649,13651,13649,13648,13585,[13648,12743],12744,[13643,13652,12745],[13643,12681],13643,13643,[13643,2147496706],[13643,13391,2147496705],[13651,13057],[13651,13058],[13643,13588],13643,[13643,13647],13586,13586,13648,13586,13586,[13643,13460],13643,[13643,13519],13587,13585,[13586,12494],[13650,12495],[13586,12431],13587,13648,[13584,12424],[13587,12425],[13587,12489],13586,13648,13651,13650,13584,13587,[13649,3687],[2423,3688],2359,2360,2422,[3323,2295],3324,[3701,2420],2423,2422,2360,2360,[3636,2361],3637,3635,[3323,2484],2423,[3324,2425],3635,[3635,2356],2358,[3388,2488],[3701,2296],3635,3699,[3701,2164],[3323,2165],2360,2359,[2357,2677],[2359,2678],[2357,2679],[2359,2680],[3701,2361],3699,3635,[3323,2869],[3701,2293,2870],[3388,2489,2871],[3323,3488,2872],[3323,2228,3489],[2421,3553],2421,[2421,2869],[2357,2870],[2358,2871],[2422,2872],2421,2357,[3700,2296],3637,3699,3635,[3323,2164],[3700,2166],[3323,2168],[3700,2231],3388,3700,[3700,2230],[3637,2165],[3388,2231],3699,[3700,2613],[3637,2614],[3637,2615],[3636,2616],3701,[3636,2484],2424,2421,[3700,2233,3558],[3699,3559],[2812,3560],2999,3131,[2999,6658],[2939,6659],2940,2999,[2812,6406],3000,2935,3067,3067,3067,[3067,6593],[3067,6594],[3068,6595],[2940,6596],[3003,6597],3003,3004,2940,2936,2811,2939,2940,[3068,2221],[3132,2222],[2936,2223],[3131,6593,2224],[3131,6594,2225],[2812,6595],[3131,6596],[2999,6597],3067,3068,3131,3132,3003,3004,3067,3068,2876,[2875,6658],[3000,6659],3131,2935,3067,3068,3131,2811,3000,2875,2812,2812,2935,2876,3067,3068,3003,3004,[3067,6529],[3068,6530],[2936,6531],[2939,6532],[2940,6533],3000,3003,3004,3000,2999,2936,2875,2936,[2936,3872],3873,[6558,7065,3616],6998,7069,6937,6941,7068,6999,[6623,6873],6559,[6557,6997],[6558,7002],6621,6623,6621,[6557,6997],[7003,7326],[6935,7327],[6622,6742,7328],[6558,6808,7329],6622,[6623,3615],[2422,3616],2428,2428,2426,2426,2423,2422,2424,2358,2357,2357,2358,2426,2360,2360,2424,2421,2491,2427,2428,2428,2490,2490,2490,2426,2363,2421,2357,2359,2421,2427,2492,2360,2358,2364,2421,2423,2427,2491,2492,2424,2422,2427,2424,2424,2428,2428,2427,2421,2492,2490,2491,2360,2424,2357,2491,2360,2491,2360,[2421,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3699,4682],3700,3636,3699,3699,3635,3701,3635,3387,3637,3636,3387,3635,3388,3701,3388,3635,3388,3323,3324,3701,3699,3637,3637,3637,3636,3637,3700,3700,3701,3701,3635,3323,3635,3636,3635,3637,3637,3636,3323,3324,3636,3637,3699,3700,3700,3635,3700,3637,3701,3701,3635,3637,3699,3700,3387,3323,3637,[3635,4681],4936,[3701,4937],3635,3636,[3699,3060],[3324,3061],3388,3635,3635,3637,3700,3323,3635,3388,3699,3637,3636,3637,[3635,2106],[3636,2107],[3636,2108],3323,3388,3636,3635,3323,3387,3324,3635,3637,3700,3323,3699,3637,3635,3699,[3636,4737],[3637,4738],3701,[3701,7621],3701,3700,3635,3700,3635,3699,[3699,4801],4802,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,[12300,13477],[12300,13478],12300,12300,12300,[8490,14542],[8938,8298,15185],[8557,15186],[8431,15187],[8938,8366,15188],[8810,8617],8492,[8492,15319],14182,14182,[14182,13159],14182,[8490,14159,15253,13858],[8493,14160,13859],[8369,14161,13860],[8433,14162,13861],14674,14033,14674,14034,14035,14737,[8493,14100],8555,[8433,15067],[8556,15254],[8554,15000],[8368,15001,14929],[8493,15002,14930],[8555,15383,14931],[14182,14932],14182,[8492,15253,16753],[8874,8494,16754],8939,[8939,8617],[8938,8620],[8874,8429],[8875,8362],[8875,8302],8874,8939,8939,8875,8874,8939,[8810,8362,14929],[8554,14930],[8369,14931],[8367,14932],8368,8431,8431,[8491,15121],[8491,15122],[8491,15123],[8369,15124],[8938,8298],[8939,8364],8810,8875,[8939,8426],8368,8369,[8432,15053],[8369,15054],[8431,15055],[8557,15056],8432,8555,8556,[8490,15057],[8555,15058],[8433,15059],[8875,8492,15060],[8939,8298],[8938,8299],[8875,8300],[8939,8301],[8938,8365],8810,8939,[8810,8362,14925],[8938,8302,14926],[8810,14927],[8810,14928],8938,[8938,8617],8492,8556,8369,8491,8368,8554,8492,8367,8432,8369,[8555,16689],[8368,14292,16690],[8493,14479],[8490,14607],[8431,14608],12300,12300,12300,12300,12300,[12300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12972,8444],[12973,14241],[12909,14242],[12908,14243],[12908,14244],12973,12973,12972,12909,12909,12909,12908,[12909,13921],[12973,13922],[12909,13923],[12972,13924],12972,12908,12909,12908,12972,[12908,16693],[12972,16694],12973,[12909,14241],[12973,14242],[12972,14243],[12973,14244],12973,[12972,12551],[13587,12552],13587,13648,13651,13649,13649,13584,13586,13584,13585,13587,13585,13587,[13585,13325],[13649,13326],[13649,13327],13649,13584,[13584,12623],[13586,12624],13648,13648,13649,13649,13587,13648,13584,[13587,13126],[13648,13127],13586,13650,[13640,13652],13513,13640,13640,[13641,13647],13587,13584,13651,13587,13585,13587,13586,13649,13651,13587,13586,13651,13584,13649,13585,13650,13648,13650,13651,13584,13648,13649,13586,13584,13584,13587,[13586,13007],[13648,13008],13586,13586,13584,13584,[13648,13128],[13585,13129],[13650,13130],[13587,13131],[13586,13132],13650,13650,13585,[13586,12808],12809,[13643,13456,12552],[13643,13393],[13643,13394,2147496771],[13643,13395,2147496770],[13649,2147496769],[13648,13121],[13651,13122],[13651,13123],[13643,13392],13586,13651,13650,13648,13649,13586,[13643,13588],13643,[13643,13583],13586,13584,13650,[13651,12494],[13584,12495],[13651,12365],[13651,12362],[13650,12488],[13648,12489],13650,13584,13651,13586,13649,13651,[13650,3750],[13650,3751,2549],[2421,3752,2550],[2422,2551],2424,[3635,2233],3699,[3637,2229],[2421,2549],[2422,2550],[2424,2551],2358,2358,2421,[3388,2165,2345],[3701,2169,2346],[3635,2347],[3701,2293],[3388,2489],3701,[3635,2484],[3701,2295],3701,3324,3637,[3636,2229],2555,2556,2358,2423,[2358,2741],[2422,2742],[2358,2743],[2421,2744],2360,[3635,2165],[3699,2232,3425],[3635,3429],[3323,3426],[3636,3429],[3636,3552],[3387,2356,3553],2357,2423,2422,[3637,2487],2358,2357,2360,[3387,2489],3387,3635,[3323,2164],[3699,2165],2422,2424,2359,2421,[3700,2165],[3323,2165],2421,2359,2423,[3636,2165],[3700,2166,2677,2298],[3636,2167,2678],[3700,2168,2679],[3323,2169,2680],3323,3323,[3699,2294],2360,[3635,2297],[3637,3623],[2876,3624],3000,2936,3131,2939,2940,3131,2999,2999,2999,3131,3131,3131,3131,[3131,6658],[3132,6659],3004,3067,3067,3068,3004,2999,2999,3003,3004,[3132,2285],[2875,2286],[2875,2287],[2875,2288],[3131,6658,2289],[2999,6659,2290],[3131,2291],3000,3131,3132,2936,3131,3067,3068,3131,3132,2939,2940,2999,2875,2936,3131,3132,2875,2876,2876,3131,2935,2999,2875,2811,3131,3132,3067,3068,[3131,6593],[3132,6594],[2875,6595],[3003,6596],[3004,6597],2936,3067,3068,2999,2875,2875,2936,3131,2812,[2812,3615],[6621,3616],[6622,6871],6998,7001,6999,6998,[6559,7002],6623,6622,[6558,6997,7138],[6935,7139],[6622,6809,7140],[6558,7141],[6622,6741],6934,[7068,7390],[7005,7391],[7068,7392],[6559,7002,7393],[6621,3551],[2421,3552],[2423,3553],2428,2357,2422,2492,2426,2359,2522,2422,2360,2492,2490,2421,2424,2357,2491,2492,2424,2424,2359,2360,2422,2422,2426,2421,2490,2492,2360,2426,2492,2458,2421,2422,2360,2423,2358,2426,2423,2427,2426,2491,2491,2357,2423,2424,2428,2490,2426,2491,2358,2427,2360,2423,2424,2422,2357,2422,2490,[2357,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3636,4746],3635,3635,3700,3323,3700,3701,3636,3637,3635,3636,[3699,2709],3701,3635,3323,3635,3701,3388,3635,3635,3636,3636,3323,3701,3700,3637,3388,3635,3637,3387,3635,3637,3699,3637,3637,3699,3637,3636,3637,3635,3635,3700,3700,3323,3387,3635,3700,3700,3699,3323,3701,3323,3388,3699,3387,3636,3323,3636,[3635,4681],[3635,4682,3188],3636,3637,3700,3387,3699,3700,3701,3636,3324,3324,3636,3636,3324,3387,3700,3699,3635,3323,3699,3701,3635,3387,3699,3635,3637,3637,3699,3700,3637,3700,3699,3635,3323,3699,[3635,4609],[3699,4610],[3637,4611],3636,[3701,7685],3700,3637,3387,3635,3635,3699,[3700,4865],4866,4932,4933,[4802,7621],4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8380],12300,12300,12300,12300,12300,[8367,14606],[8432,14224],[8490,14225,15250],[8492,14543,15251],[8938,8430,14293],8874,[8810,8427],[8491,15386],[8492,15190,16689],[8554,15191,16690],14182,14182,[8433,15317],8492,8431,8493,[8556,13968],[8557,14160,15067],[8554,14161,15254,12303],12304,[8556,14160,15320,12306],[8493,14161,15321,14929],[8556,13970,14930],[8492,14931],[8433,15319,14932],[14182,13159],14182,[14182,14993],[14182,14994],[14182,14995],[14182,14996],14182,[8433,15317],8557,[8874,8298],[8938,8298],[8938,8365],8939,[8939,8361],8491,[8939,8298],[8874,8299],[8874,8300],[8875,8301],[8938,8299],[8874,8301],[8368,14993],[8432,14994],[8556,14995],[8369,14996],8432,8433,8433,[8369,15185],[8368,15186],[8557,15187],[8555,15188],[8874,8621],[8874,8428],8810,8875,8810,[8938,8361],8555,[8369,15117],[8493,15118],[8432,15119],[8433,15120],[8490,15203],[8555,15204],[8491,15205],[8492,15121],[8556,15122],[8492,15123],[8554,15124],8432,8490,8303,8493,8492,[8875,8302],8875,[8874,8361,14989],[8433,14990],[8874,8299,14991],[8875,8301,14992],[8875,8364],8938,[8875,8426],[8875,8618],8556,[8555,14925],[8556,14926],[8557,14927],[8556,14928],8433,8304,8432,[8432,16753],[8431,14480,16754],12300,12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12909,8315],12972,12909,12909,12908,12909,12972,12972,12909,12909,12908,[12909,13985],[12973,13986],[12908,13987],[12973,13988],12972,12973,12909,12909,12972,[12909,16757],[12973,16758],12973,12972,12973,12909,12909,[12909,12424],[13649,12425],[13651,12489],13586,13650,13586,13649,13648,13649,13651,13584,13651,13586,13650,13650,13649,13584,13586,13587,[13585,12686],[13586,12687],[13648,12688],13584,13649,[13649,13133],[13651,13134],[13649,13135],13650,13586,[13587,13190],[13586,13191],13650,13586,13649,[13640,13459],13512,[13641,13456],13584,13649,13648,[13640,13712],[13640,13713],[13641,13714],[13640,13715],[13641,13714],[13640,13715],13587,13650,13648,13586,13585,13585,13650,13584,13587,13649,13586,13586,13651,13648,13586,13586,13587,13587,13651,13586,13587,13648,13584,13584,[13648,13192],[13651,13193],[13649,13194],[13648,13195],[13649,13196],13649,13584,13648,13651,[13648,12615],[13584,12616],13650,[13648,2147496835],[13586,2147496834],[13584,2147496833],[13587,13185],[13651,13186],[13648,13187],13650,13649,13585,13586,13650,13648,13650,[13643,13716],13643,[13643,13520],13651,13587,13585,13585,[13585,12494],[13650,12429],[13643,13712,12426],[13643,13713,12489],13651,13651,13587,13651,13651,13584,[13586,3750],[13584,3814],[3815,2613],[2421,3816,2614],[2424,2615],[2421,2616],[3387,2297],3635,[3635,2228],[2421,2613],[2358,2614],[2357,2615],[2422,2616],2423,2358,[2360,2409],[2424,2410],[3701,2232,2411],3387,3388,3700,3637,3700,[3700,2229],[3636,2166],[3701,2168],2358,2619,2620,2424,2422,[2424,2805],[2358,2806],[2358,2807],[2357,2808],2360,[2422,3488],[3387,2296,3489],[3637,3493],[3699,3490],[3388,3493],[3699,3553],[3699,2293],[3388,2485],[3635,2486],[3699,2489],3701,[3635,2294],[3701,2487],[3324,2296],3701,3700,[3323,2229],2421,2422,2422,2360,2424,2360,2357,2422,2424,2422,2358,2360,[2360,2741],[2424,2742],[2357,2743],[2421,2744],[3388,2165],[3636,2231],3699,[3699,2420],[3701,2361],[3701,3687],[2876,3688],3131,3000,2935,3003,3004,2935,[3131,6401],[2811,6402],[2876,6403],3131,3132,3132,3068,3131,3132,3068,3131,3131,3132,[3068,6401],[2811,6402],[2939,6403],2940,3068,[2875,2349],[2999,2350],[2811,2351],[2876,2352],[2936,2353],2354,[2935,2355],3000,2935,2935,[2875,6401],[3000,6402],[3131,6403],3132,3131,3132,3003,3004,2812,2875,3000,2999,2812,2876,2936,2811,2936,2811,2875,2812,2875,2935,2875,3131,3132,2876,[2999,6658],[2812,6659],3067,3068,2936,[3131,6470],3132,2999,3131,2876,3000,2811,2876,[2811,3679],[6558,3680],6621,[6623,6997],7004,6935,6934,6935,[6622,6808],6558,[6559,6871,7202],[6998,7203],[6935,7204],[6622,6742,7205],6934,7000,7069,[7069,7455],[7001,7456],[6559,7002,7457],[6621,3615],[2360,3616],2357,2359,2490,2357,2357,2357,2422,2360,2358,2357,2421,2423,2492,2426,2422,2427,2428,2359,2358,2426,2357,2490,2364,2362,2422,2492,2427,2427,2423,2422,2490,2423,2358,2423,2428,2490,2359,2394,2360,2426,2424,2490,2427,2426,2364,2427,2357,2422,2421,2490,2426,2428,2427,2490,2363,2360,[2357,3488],[2421,3426],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3701,4682],3635,3699,3636,3387,3700,3635,3701,3635,3701,3388,[3323,2773],3699,3635,[3637,2170],[3636,2171],3636,3323,3699,3323,3387,3323,3635,3701,[3637,7243],[3635,7244],3636,3635,3323,3636,3636,3635,3324,3637,[3636,2712],3700,3323,3699,3637,3701,3700,3637,3635,3388,3636,3637,3635,3701,3700,3637,3699,3699,3637,3323,3699,3700,3635,3701,[3701,4745],[3699,4746],3699,3636,3636,3700,3701,3635,[3699,4483],[3635,4484],[3700,4487,2710],[3699,4488],3700,3635,3637,3636,3700,3324,3636,3699,3323,3701,3323,3701,3635,3636,3387,3701,3637,3699,3636,3637,3637,3324,3637,3699,[3635,4673],[3700,4674],3635,3636,[3700,7749],3387,3635,3635,3387,3388,3701,3701,[3701,4930],[3637,4996],[3699,4997],[4866,7685],4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12308,[8874,8494,14478],8874,8939,[8875,8617],[8874,8618,16753],[8490,15255,16754],14182,14182,[8557,14997],[8433,14999],[8367,15000],[8493,15001],[8557,15002],[8369,15003],[14182,12303],12304,[14182,12306],[8367,15381,14993],[8431,15382,14994,10298],[8554,15382,14995],[8367,15383,14996],14182,14182,[8431,15189,15057],[8557,15190,15058],[8433,15191,15059],[14182,15060],[8431,15189],[8367,15385],8492,8433,8556,[8939,8622],8874,[8938,8425],8492,8557,8496,8497,8554,8493,8432,[8556,15057],[8490,15058],[8555,15059],[8554,15060],8433,8490,[8874,8618],[8938,8619],[8874,8620,15250],[8875,8621,15251],[8939,8428],8875,8810,[8938,8363],[8938,8365],8938,[8938,8489],8556,[8556,15181],[8368,15182],[8491,15183],[8555,15184],15267,15268,[8432,15269],[8433,15185],[8369,15186],[8557,15187],[8433,15188],8367,8433,[8491,9842],[8433,9843],[8490,9844],[8874,8428],8810,[8875,8425,15053],[8492,15054],[8557,15055],[8369,15056],[8938,8366],[8874,8362],[8874,8302],8939,[8938,8426],[8491,14989],[8493,14990],[8490,14991],[8554,14992],8556,8556,8368,8493,[8555,14544],12300,[12300,13413],[12300,13414],12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12972,8246],[12908,8249],[12909,8246],[12909,8250],12908,12973,12909,12973,12909,12973,[12972,14049],[12908,14050],[12909,14051],[12908,14052],12972,12973,12908,12973,12973,12909,12909,12972,[12972,12361],[12908,12362],[12909,12365],[12908,12362],[13584,12488],[13585,12489],13584,13586,13584,13650,13586,13584,13651,13651,13586,13649,13650,13587,[13586,12686],[13585,12746],[13650,12747],[13650,12748],[13587,12749],[13584,12750],12751,[13587,12752],13584,13650,[13650,13197],[13586,13198],[13651,13199],13586,13651,13587,13586,13650,13587,13649,[13512,13460],13640,[13512,13711],[13641,13712],[13640,13714],[13512,13716],13512,13512,13640,13512,13512,13512,[13641,13711],[13640,13714],[13640,13715],13586,13651,13585,13649,13585,13584,13650,[13651,13133],[13585,13134],[13584,13135],13650,13585,13587,13648,13584,13649,13650,13650,13650,13651,13585,[13584,13256],[13651,13257],[13651,13258],[13584,13259],[13651,13260],13584,13649,13586,13584,[13651,12679],[13649,12680],[13584,12681],[13650,2147496899],[13650,2147496898],[13584,2147496897],[13650,13249],[13586,13250],[13651,13251],13650,13650,13648,[13648,13133],[13587,13134],[13649,13135],[13643,13460],13643,13643,13643,[13643,13647],13587,13587,13584,13584,[13643,13652],13643,13643,[13643,13520],[13643,13714],13648,13650,13585,[13643,13714],[13643,13715,3623],3878,[2357,3879,2677],[2359,2678],[2360,2679],[2422,2680],[3637,2361],3323,[3700,2292],[2424,2677],[2359,2678],[2358,2679],[2424,2680],2423,2359,[2358,2473],[2424,2474],[2423,2475],[3699,2165],[3635,2169],3324,[3699,2164,2549],[3323,2165,2550],[2357,2551],2423,2358,2421,2359,2422,2423,2359,[2421,2869],[2423,2870],[2357,2871],[3637,2487,2872],[3701,2488,3551],[3387,2295,3552],[3323,3553],3323,[3387,2230],[3637,2165],[3635,2232],3700,3635,3635,3700,3701,3637,3700,3700,[3637,2164],[3636,2165],2360,2421,2359,2458,2358,2360,2360,2424,2359,2360,2360,2422,2358,[2421,2805],[2359,2806],[2421,2807],[2421,2808],2421,[3701,2425],3635,[3635,2484],2422,[3635,2232,3558],[3324,3494],[2875,3495],2875,2811,3067,3068,2811,[2936,6465],[2935,6466],[3000,6467],2811,3131,3132,3132,3131,3132,3132,3131,3132,3132,[3132,6465],[3131,6466],[3003,6467],3004,[3132,2412],[2935,2413],2414,[2875,2415],[2999,2416],2417,[2811,2418],[3131,2419],[2999,16595],2999,3000,[2812,6465],[2935,6466],[3131,6467],2999,2811,2876,3067,3068,2936,2935,2999,3000,3131,2875,[2999,6401],[2876,6402],[3131,6403],2936,2876,2936,2999,2936,3000,2936,3131,2811,3000,2876,3131,3132,2811,2811,2936,2935,2812,2935,2876,3000,2876,[2936,3743],[6557,3744],[6623,3745],[6621,6997,7134],[6936,7135],[6941,7136],[6936,7137],7001,6935,[6621,6808],[6621,7266],[6559,6871,7267],[6998,7268],[6936,7269],7005,6941,7001,6999,6998,[6557,7002],[6558,3679],[2421,3680],2492,2363,2423,2357,2491,2491,2357,2424,2394,2490,2357,2422,2358,2491,2358,2427,2428,2422,2491,2427,2492,2358,2422,2490,2424,2490,2357,2359,2492,2422,2428,2421,2427,2492,2423,2357,2426,2426,2491,2492,2362,2490,2492,2426,2424,2358,2359,2426,2359,2423,2359,2424,2426,2422,2490,[2424,3551],3552,3490,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3700,4746],3637,3700,3636,3635,3636,3701,3324,3388,3635,3636,[3700,2837],3701,3699,3699,3635,3323,3635,3635,3636,3700,3699,3635,3636,[3323,7307],[3637,7308],3635,3387,3635,3636,3387,3636,3699,3635,[3635,2776],3700,3323,3636,3323,3637,3323,3323,3701,3323,3636,[3701,2932],[3324,2933],3323,3323,3701,3635,3699,3699,3324,3699,3701,3636,3324,[3635,4616],[3700,4552],[3635,4553],3700,3637,3701,3699,[3636,4546],[3637,4547],[3699,4548],[3637,4551,2774],[3636,4552],[3701,4553],3701,3701,3635,3701,3388,3699,3323,3636,3388,3635,3699,3324,3636,3636,3323,3701,3323,3323,3323,3636,3635,3635,[3635,4546],[3701,4547],[3699,4611],3699,3388,[3637,7813],3699,3388,3699,3700,3699,[3699,2710],3700,3701,[3700,7621],[3701,7693],[3636,4930,7749],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8367,14478],[8810,8364],8939,8938,8875,[8874,8426,15386],[8433,15191],14182,14183,14182,14182,14182,14182,14182,[14182,12303],12304,[14182,12306],[14182,15057],[14182,15058],[14183,15059],[14183,15060],14182,[8368,15189],[8433,15385,15121],[8556,15122],[8490,15386,15123],[8554,15190,15124],[8496,15385],8497,8495,8557,[8874,8558],8875,8874,[8875,8489,14929],[8556,14930],[8557,14931],[8560,14932],8561,8490,[8874,8620],[8874,8621],[8493,15121],[8557,15122],[8556,15123],[8491,15124],8493,[8939,8429],8938,8939,[8938,8297],[8874,8298],[8810,8365],[8938,8297],[8810,8298],8491,[8875,8366],8939,[8938,8617],[8939,8620],[8939,8621,15245],[8492,15246],[8492,15247,9911],[8492,15248,9912],[8369,15331],[8432,15332],[8554,15333],8555,[8875,8618,15250],[8432,15251],8367,8369,8555,[8557,9906],[8556,9907],[8874,8558,9908],8939,8874,[8810,8489,15117],[8367,15118],[8557,15119],[8490,15120],[8874,8430],[8874,8553],8433,[8874,8298],[8939,8364],[8875,8553,15053],[8554,15054],[8431,15055],[8433,15056],8367,8555,8369,[8493,16689],[8432,14480,16690],12301,[12300,13477],[12300,13478],12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8314,[12908,8315],12973,[12908,16693],[12909,16694],12908,12908,[12908,14113],[12972,14114],[12973,14115],[12908,14116],12909,12973,12909,12909,12908,12909,12973,[12908,12487],[13585,12425],[13585,12426],[13587,12429],[13651,12426],[13587,12489],13584,13584,13650,13586,13648,13650,13649,13649,13585,13651,13585,13651,[13648,12686],[13584,12687],12810,12811,12812,12813,12814,[13648,12815],13587,13587,13584,[13585,13261],[13584,13262],[13584,13263],13585,13585,13649,13650,13648,13585,13587,[13641,13524],13640,13512,13641,13640,13577,[13640,13456],[13640,13393],[13576,13394],[13641,13395],[13641,13458],13641,13640,13512,13640,[13641,13647],13584,13649,13649,13649,13650,13586,[13649,13197],[13587,13198],[13650,13199],13587,13650,13584,13587,13650,13650,13585,13584,13649,13648,13584,[13649,13320],[13651,13321],[13651,13322],[13585,13323],[13650,13324],13651,13649,13585,13651,[13585,12743],12744,[13649,12745],[13649,12681,2147496963],[13651,2147496962],[13650,2147496961],[13586,13313],[13650,13314],[13586,13315],13585,13648,13586,[13586,13197],[13585,13198],[13651,13199],[13643,13588],13643,13643,13643,[13643,13520],[13643,13522],[13643,13647],13649,13587,13585,[13643,13458],13643,13643,13643,[13643,13521],[13643,13715],[13643,13522],13643,[13643,3623],[2423,3624],[2422,2741],[2421,2742],[2424,2743],[2423,2744],[3635,2295],3324,[3636,2356],[2423,2741],[2360,2742],[2424,2743],[2424,2744],2360,[2421,2665],[2422,2537],[2359,2538],2358,2423,[3324,2233],3700,[3323,2228,2613],[2423,2614],[2421,2615],[2424,2616],2360,2422,2423,2358,2422,2424,2359,[3637,2487],[3635,2295],3635,[3637,3615],[3323,3616],[3387,2229],[3637,2165],[2423,2549],[2424,2550],[2358,2551],[3388,2165],[3323,2166],[3637,2167],[3637,2231],[3699,2230],[3700,2166],[3636,2167],[3323,2168],2360,2357,2357,2358,2358,2422,2360,2422,[2421,2549],[2422,2550],[2357,2551],2421,2360,2421,2423,[2421,2869],[2423,2870],[2422,2871],[2359,2872],2422,[3699,2425],3636,3635,[3701,2293],[3701,2489],[3323,3558],[3701,3559],[3000,3429],[2936,3430],3131,3132,2876,[2936,6529],[2876,6530],[2936,6531],[2876,6532],[2936,6533],2999,2999,2999,3131,3132,2999,2875,3131,[3132,6529],[2935,6530],[3067,6531],[3068,6532],[2999,6533,2476],2477,2478,2479,2480,2481,[2812,2482],[2876,2483],2811,2875,2936,[3000,6529],[3000,6530],[2999,6531],[2935,6532],[2876,6533],3131,3131,[3132,6470],2999,2935,3131,2812,3131,3131,[2812,6465],[2811,6466],[2936,6467],2999,2935,2999,[2936,6406],2876,2999,2875,2999,2875,2876,3131,2935,2999,2876,2812,2936,[2812,6401],[3000,6402],[2812,6403],2875,2935,2876,[2875,3807],3808,[6559,3809],[6558,6997,3745,7198],[7000,7199],[7005,7200],[6999,7201],[6558,7062],6998,[6559,7002],[6622,7330],[6558,6806,7331],[6934,7332],[6936,7333],6936,7001,7000,6935,6934,[6557,7002,3551],[2359,3552],[2427,3553],2359,2492,2428,2360,2490,2422,2424,2423,2427,2426,2424,2490,2422,2424,2422,2424,2360,2357,2492,2421,2422,2422,2359,2422,2358,2427,2426,2357,2490,2422,2357,2426,2358,2357,2358,2358,2492,2358,2422,2422,2363,2426,2428,2423,2359,2424,2424,2357,2358,2358,2359,2359,2424,2428,2421,[2360,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3700,4553],3635,3637,3636,3699,3699,3323,3323,3388,3637,[3700,2901],3387,3637,3699,3700,3701,3635,3636,3635,3637,3700,3324,3637,3700,3701,3635,3387,3636,3637,3700,3635,3701,3637,[3637,2840],3635,3699,3388,3323,3637,3699,3324,3323,3324,3635,[3637,2996],[3701,2997],3637,3324,3635,3701,3636,3637,3635,3635,3637,3701,3637,3700,[3699,4616],[3636,4617],[3701,4484],[3635,4487],[3636,4484],[3699,4487],[3700,4610],[3636,4611],3636,[3636,2838],[3700,4616],[3637,4617],[3635,4487],[3635,4488],3635,3700,3637,3700,3637,3635,3637,3699,3635,3637,3701,3699,3700,[3636,4483],[3636,4484],[3636,4487],[3699,4553],3700,3699,[3700,4546],[3701,4547],[3636,4611],3700,3701,3323,3699,3637,3637,3636,3323,3635,[3699,2774],3637,3700,[3699,7685],[3636,7757],[3700,7813],[3636,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12300,8572],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8431,14542],8367,[8875,8299],[8874,8300],[8810,8364],8939,[8939,8553,15386],[8492,15190],[8554,15190],[8875,8621,15190],[8432,15190],[8432,15190],[8490,15191],14182,[14182,12303],12304,[14183,12306],[8555,15189,15121],[8369,15190,15122],[8556,15190,15123],[8557,15190,15124],[8554,15190],[8875,8618,15385],[8810,8619,15185],[8554,15186],[8490,15187],[8369,15188],8560,8561,8368,8554,[8810,8428],8939,[8810,8362],[8367,14993],[8367,14994],[8369,14995],[8492,14996],8490,[8875,8428],8875,8875,[8938,8553,15185],[8555,15186],[8433,15187],[8875,8621,15188],[8875,8428],[8810,8297],[8938,8364],[8938,8363],8433,8554,[8810,8622],[8810,8361],8493,[8369,14925],[8875,8558,14926],[8938,14927],[8875,14928],8938,8939,[8938,8427],[8555,9975],[8431,9976],8492,8492,8491,[8938,8558],8874,[8938,8553],8554,[8556,14929],[8490,14930],[8492,14931],[8490,14932],[8875,8429],8938,[8875,8363],[8433,15181],[8490,15182],[8493,15183],[8433,15184],[8810,8494],[8939,8427],8431,8554,[8939,8429],[8875,8426,15117],[8369,15118],[8432,15119],[8369,15120],8431,8433,8491,[8367,16753],[8554,14544,16754],12300,12300,12300,12300,12300,12300,12300,[12300,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12908,8380],[12908,16757],[12909,16758],12972,12972,[12908,14177],[12908,14178],[12908,14179],[12972,14180],12909,12908,12909,12972,12972,12972,12909,[12973,12551],[13649,12552],13584,13651,13586,13651,[13584,13133],[13587,13134],[13650,13135],13650,13648,13651,13648,13585,13649,13651,13584,[13648,12686],[13648,12687],12751,[13649,12874],[13586,12875],[13586,12876],[13648,12877],[13651,12878],13585,13648,13651,13651,[13587,13325],[13648,13326],[13649,13327],13649,13648,13650,13651,13649,13586,13585,[13640,13588],13512,13512,[13512,13391],[13640,13393],[13640,13395],[13584,13126],[13587,13127],13587,13648,[13512,13652],13512,[13641,13456],[13641,13393],[13512,13395],13586,13587,13585,13584,13587,13585,13585,[13586,13261],[13649,13262],[13585,13263],13587,13650,13650,13584,13649,13585,[13640,13714],13651,13651,13584,13587,[13585,13384],[13587,13385],[13649,13386],[13585,13387],[13649,13388],13586,13584,13586,13650,13649,[13586,12808],12809,[13585,12552,2147497027],[13651,2147497026],[13587,2147497025],[13649,13377],[13586,13378],[13643,13714,13379],13650,13648,13584,[13587,13261],[13650,13262],[13650,13263],13585,[13643,13458],13643,13643,13643,[13643,13456],13648,13650,13584,13649,13649,[13643,13392],[13643,13396],13643,13643,13643,13643,[13643,13456],[13643,13392,3687],[2359,3688],[2421,2805],[2358,2806],[2424,2807],[3637,2425,2808],3700,3699,[3636,2420],[2359,2805],[2357,2806],[2424,2807],[2357,2808],2358,[2359,2729],2359,2421,2421,2360,[3701,2297],3701,[3635,2292,2677],[2357,2678],[2357,2679],[2358,2680],2359,2422,2360,2358,2423,[3323,2485],[3324,2295],[3324,2299],3701,3636,[3637,2164,3679],[3700,2165,3680],2358,2422,[2359,2613],[2423,2614],[2424,2615],[2424,2616],2422,2424,[3323,2233],[3637,2484],2421,2424,2357,2359,2359,2422,2359,[3699,2486],[3635,2487],[3636,2488],2423,[2357,2613],[2359,2614],[2423,2615],[2360,2616],2357,2357,2421,2359,2360,2360,2358,[2424,2549],[2422,2550],[3636,2165,2551],[3700,2169],3701,3635,3700,[3323,3558],[3701,3493],[3701,3559],[2936,3560],2812,2936,[3131,6593],[2811,6594],[2936,6595],[3131,6596],[2936,6597],2935,2935,3131,3000,[2812,6406],2812,3000,2812,[2875,6593],[2935,6594],[3131,6595],[3132,6596],[2875,6597,2540],2541,2542,[2935,2543],[3131,2544],2545,[2875,2546],[2811,2547],3131,3131,2812,[3000,6593],[2999,6594],[2935,6595],[3131,6596],[2999,6597],2936,2875,3131,2876,3000,2936,3000,2875,3131,[3000,6529],[3131,6530],[2935,6531],[2876,6532],[3000,6533],3131,3131,2876,[2875,6401],[2935,6402],[2999,6403],3131,2875,2812,2936,2811,2999,2935,2935,[2876,6465],[2935,6466],[2935,6467],2936,2935,3000,3000,[2935,3872],3873,[6997,3616,7262],[7001,7263],[7068,7264],[6623,7002,7265],6623,[6557,6997],6935,[6622,6742,7394],[6934,7395],[7005,7396],[6999,7397],6998,6939,7067,7001,6999,[6873,3743],[2422,3744],[2492,3745],2428,2491,2492,2491,2428,2491,2426,2359,2421,2424,2490,2421,2360,2358,2422,2357,2492,2490,2491,2428,2428,2422,2359,2358,2422,2424,2427,2491,2357,2359,2360,2490,2357,2358,2424,2422,2421,2427,2428,2427,2421,2360,2359,2359,2458,2357,2426,2426,2360,2358,2359,2427,2424,2358,2423,[2360,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3701,4618],3387,3699,[3637,7621],3323,3388,3323,3699,3699,3699,3635,3701,3637,[3323,2932],[3700,2933],3700,3637,3701,3701,3637,3324,3324,3323,3699,3701,3699,3637,3324,3699,3387,3637,3699,[3700,2904],3637,3700,[3324,7621],3637,3699,3637,3635,3323,3701,3701,[3323,3060],[3323,3061],3636,3636,3636,3699,3701,3636,3701,3699,[3699,2709],3323,3636,3699,3636,[3701,4616],[3635,4548],[3699,4551],[3699,4548],[3635,4551],[3636,4611],3699,3637,[3637,2902],3699,[3636,4616],[3699,4551],[3637,4552],[3699,4553],3635,3701,3637,3699,[3701,4546],[3636,4487],[3700,4488],3700,3637,[3636,4483],[3701,4487],[3637,4484],[3635,4547],[3701,4548],[3699,4551],[3637,4617],[3699,4487],[3699,4484],[3701,4610],[3637,4611],3635,3699,3700,3699,3699,3699,3699,3387,3635,3636,[3700,2838],3699,3636,[3700,7749],3635,[3636,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8636],12300,12300,12300,12300,12300,12300,12300,[12300,13160],12300,[8368,14606],[8432,14543],[8432,14293],8303,[8939,8558],8874,[8810,8427],[8810,8621],[8874,8622,14929],[8938,14930],[8875,8553,14931],[8369,14932],[8491,15386],[8490,1166,15190],[8433,1167,15190,12303],12304,[8491,1167,15190,12306],[8556,1167,15385,15185],[8433,1168,15186],[8367,1169,15187],[8367,15188],[8810,8558],8939,8875,[8874,8426,15250],[8492,15251],8556,8431,8305,[8939,8621],[8875,8622],8875,8874,[8810,8553],[8490,15057],[8554,15058],[8369,15059],[8368,15060],[8875,8366],8810,8939,[8810,8362],8493,[8367,15250],[8939,8366,15251],8938,8938,[8810,8553],8492,8557,8493,[8874,8428],8875,[8875,8425],8304,[8491,14989],[8432,14990],[8939,8298,14991],[8938,8298,14992],[8939,8302],8938,8938,[8875,8617],8431,8493,[8367,14539],8556,8557,[8939,8364],[8938,8427],8491,[8369,14993],[8555,14994],[8490,14995],[8939,8558,14996],8810,8939,[8939,8427],[8369,15245],[8557,15246,10039],[8433,15247,10040],[8367,15248,10041],8557,[8875,8365],[8939,8426],[8810,8558],8874,[8938,15181],[8810,8553,15182],[8554,15183],[8555,15184],8369,8369,[8432,9842],[8432,9843],[8557,9844],[8492,14416],[12300,13354],[12300,13355],12300,12300,12300,12300,[12300,8627],8628,8629,8631,8632,8633,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12972,8444],12908,12909,12908,12909,[12972,14241],[12973,14242],[12973,14243],[12909,14244],12909,12908,[12908,13921],[12909,13922],[12973,13923],[12909,13924],12909,[12909,12679],[13587,12680],[13648,12681],13649,13587,13650,[13587,13197],[13650,13198],[13585,13199],13586,13586,13584,13584,13650,13586,13587,[13649,12686],[13587,12750],12751,[13648,12815],13586,13649,13587,13648,13585,13584,13587,13584,13584,13587,13584,13651,13586,13650,13648,13649,13651,13586,13584,[13641,13523],13640,[13640,13510],[13512,13647,13511],13648,13648,[13584,13190],[13584,13191],13584,13584,13648,[13513,13392],13584,13584,13584,13649,13586,13586,13584,13649,13650,13648,[13586,13325],[13586,13326],[13586,13327],13651,13585,13585,13649,13648,[13640,13523],13577,[13641,13647],13586,13648,13586,13651,[13587,13449],[13584,13450],[13651,13451],13649,13585,13584,13650,13651,13584,13650,[13650,12615],[13648,12616],13650,[13649,2147497089],[13648,13441],[13643,13460],13643,[13643,13455],13587,13584,[13585,13325],[13587,13326],[13648,13327],13650,13585,[13643,13392],[13643,13393],[13643,13395],13584,13586,13648,13650,[13643,13712],13584,13651,[13643,13652],13643,[13643,13457],[13643,13393],[13643,13395],13587,[13650,3558],[13586,3494],[2360,3495,2869],[2423,2870],[2423,2871],[2422,2872],[3699,2169],3636,[3637,2293],[2359,2869],[2359,2870],[2357,2871],[2358,2872],2422,[2422,2549],[2360,2550],[2360,2551],2423,2424,[3636,2361],3388,[3700,2356,2741],[2358,2742],[2421,2743],[2421,2744],2360,2357,[2423,2549],[2360,2550],[3701,2295,2551],3387,3387,3635,3323,[3699,2229,3488],[2360,3489],[2359,3553],2422,2422,[2360,2677],[2360,2678],[2357,2679],[2359,2680],2358,2357,[3635,2361],3636,[3635,2228],2424,2358,2423,2358,2360,[3699,2233],3700,3699,3637,[3324,2293],[2360,2677],[2423,2678],[2423,2679],[2357,2680],2424,2359,2357,2358,2357,2359,2358,[2357,2613],[2359,2614],[2359,2615],[3636,2425,2616],3323,3323,3700,3388,3636,[3699,3687],[2999,3688],3131,3131,2812,[2812,6658],[2935,6659],2936,2811,2936,2935,2936,2936,2936,2811,2935,3131,2876,[2936,6658],[3131,6659],3132,[2811,2604],[2812,2605],[2875,2606],[3000,2607],[2811,2608],[2999,2609],[2811,2610],[2935,2611],2876,2935,2936,3131,[2811,6658],[2812,6659],2999,3131,2811,2935,2876,3131,3000,3000,2935,3000,2811,[2935,6593],[2875,6594],[2936,6595],[3000,6596],[2935,6597],2875,2812,2875,[3131,6465],[2936,6466],[2999,6467],2876,2875,2999,2812,3131,2811,2812,2876,[2936,6529],[2875,6530],[2876,6531],[2936,6532],[2935,6533],3000,[2935,6406],2936,[2812,3615],[6997,3616,7326],[6999,7327],[6998,7328],[6935,7329],[6622,6809],[6558,7061],6998,7000,[6999,7459],[6623,7062,7460],[6623,7066],[6621,6997],6940,6939,6999,[6622,7066],[6557,3807],3808,[2424,3809],[2421,3745],2426,2423,2358,2360,2421,2424,2428,2423,2421,2357,2492,2360,2427,2492,2427,2492,2428,2426,2360,2357,2428,2422,2491,2427,2357,2492,2426,2359,2492,2421,2359,2360,2424,2423,2358,2426,2424,2357,2491,2424,2421,2491,2423,2423,2492,2421,2360,2359,2358,2428,2359,2422,2491,[2423,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3700,4682],3701,3701,[3387,7685],3324,3699,3323,3635,3388,3323,3637,3701,3636,[3323,2996],[3699,2997],3699,3637,3635,3700,3637,3323,3700,3323,3324,3636,3701,3700,3700,3636,3700,3636,3701,[3637,7693],3700,3323,[3323,7685],3388,3700,3324,3700,3388,3636,3388,3636,3700,3700,3323,3323,3636,3635,3637,3323,3635,[3635,2773],3323,3635,3700,3637,3699,3699,3700,3701,3699,3700,3636,3637,3636,3700,3701,3635,[3636,4616],[3699,4617],[3636,4487],[3637,4484],[3636,4487],[3699,4484],[3635,4610],[3637,4551],[3699,4552],[3636,4484],[3701,4487],[3699,4547],[3699,4551],[3637,4548],[3699,4611],3636,3699,[3637,4616],[3636,4551],[3635,4548],[3701,4611,2709],3635,3699,3700,3701,3635,3637,3636,3323,3635,3636,3636,[3637,2902],3635,3635,[3635,7813],[3637,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12300,8699],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,14929],[12300,14930],[8555,14606,14931],[8491,14543,14932],[8369,14293],[8874,8298],[8810,8365],8810,[8810,14993],[8939,8362,14994],[8368,14995],[8490,14996],8554,[8557,1230],1231,1232,1296,1359,[1232,15250],[8557,1233,15251],[8492,1234],8367,[8875,8365],8874,8874,[8938,8617],[8810,8618],[8874,8619],[8938,8428],8810,8939,8875,[8874,8363],8556,[8432,15121],[8493,15122],[8367,15123],[8491,15124],[8939,8430],8810,[8875,8297],8492,8432,8433,[8939,8430],8874,8938,[8938,8426],[8874,8620],[8874,8621],[8939,8428],8810,8938,[8938,8489],8367,[8490,15053],[8556,15054],[8557,15055],[8491,15056],8367,[8810,8365],8810,8875,[8875,8361],8555,8367,8490,8367,8432,[8810,8364],[8939,8361],[8557,15057],[8490,15058],[8556,15059],[8369,15060],[8875,8298],[8938,8364],8939,[8874,8553],[8555,10103],[8554,10104],[8490,10105],[8938,8621],[8810,8622],[8939,8362],8368,[8875,8365],[8875,8363],[8557,15246],[8492,15247],8557,8491,8555,[8493,9906],[8491,9907],[8555,9908],[8492,14480],12300,12300,12300,12300,12301,12300,12300,[12300,8692],8693,8502,8696,8697,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12909,8508],12908,12908,12908,12973,12909,12908,12909,12908,12908,12973,[12909,13985],[12973,13986],[12909,13987],[12909,13988],12908,[12973,12743],12744,[13585,12616],13585,13587,13585,[13651,13261],[13650,13262],[13649,13263],13586,13584,13584,13585,13584,13651,13585,[13651,12623],12814,[13586,12815],13586,13651,13651,13651,13585,13584,13587,13651,13649,13586,13650,13651,13584,13585,13651,13651,13649,[13586,13569],13570,13571,13572,13573,13574,[13641,13647,13575],13651,13586,13651,13649,13587,13586,13651,13648,13648,13651,13584,13585,13587,13649,13587,13649,13587,13587,13585,13651,13650,13586,13585,13586,13585,[13641,13652],13641,[13640,13456],13651,13649,13587,13585,13651,13648,13648,13651,13585,13587,13587,13649,13649,13587,13584,[13651,12551],[13585,12552],13650,13649,13649,[13643,13524],13643,[13643,13583],13585,13649,13649,13650,13584,13584,13649,13651,13584,13584,13651,13587,13585,[13643,13716],13643,[13643,13455],13648,13649,[13643,13392],13584,13586,13587,13649,13584,[13585,3558],[13587,3559],[2423,3560],2423,2357,2422,[3701,2232],3323,[3700,2228],2423,2360,2357,2360,[2424,2613],[2358,2614],[2422,2615],[2421,2616],2359,[3637,2489],3635,[3701,2420,2805],[2424,2806],[2423,2807],[2358,2808],2358,[3388,2487],[3699,2488,2613],[3388,2295,2614],[3636,2615],[3636,2616],[3701,2230],[3636,2166],[3701,2168,3551],[2422,3552],[2357,3553],2423,2423,2359,[2360,2741],[2424,2742],[2360,2743],[2422,2744],2423,2363,[3700,2489],3387,[3701,2292],[2421,2549],[2421,2550],[2423,2551],2358,2360,[3635,2361],3387,3635,3700,[3699,2230],[2424,2741],[2358,2742],[2423,2743],[2360,2744],2423,2360,2358,2359,2422,2357,2421,[2359,2677],[2358,2678],[2423,2679],[2357,2680],[3323,2232],3700,3701,3699,[3637,3750],[3324,3751],[3000,3752],3131,2876,2876,2875,2876,2876,2812,2935,2811,2876,3131,2811,2935,2812,3000,2875,2811,2936,3131,2811,3000,3000,2876,3000,2935,2812,2875,2812,2812,2876,2936,2811,2876,3000,2999,2936,2811,2936,[2812,3425],[2936,3426],[2812,3430],3000,2875,3000,2876,[2811,6658],[2999,6659],2935,3131,2811,2811,2936,[2875,6529],[2812,6530],[2812,6531],[2875,6532],[2936,6533],2875,2935,[3131,1537],[3131,1538],2876,2876,[2935,6593],[2935,6594],[2936,6595],[2936,6596],[2935,6597],2935,3131,2812,[3131,3679],[6997,3680,7390],[6935,7391],[6934,7392],[6936,7393],[6622,7002],6557,[6623,6997],7067,[6622,7002],6557,6557,[6623,6997],7069,6937,[6935,7126],[6621,6808,7127],[6557,7128],[6559,3872,7129],3873,[2360,3616],2492,2491,2421,2522,2426,2423,2458,2422,2492,2428,2491,2357,2492,2426,2360,2426,2426,2491,2428,2426,2428,2359,2357,2491,2364,2364,2359,2427,2359,2358,2426,2357,2492,2426,2492,2357,2423,2428,2490,2490,2359,2422,2357,2426,2359,2428,2422,2360,2492,2424,2357,2360,[2424,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3699,4746],3388,3700,[3699,7749],3699,3701,3699,3323,3637,3324,3323,3388,3324,[3701,3060],[3635,3061],3636,3636,3635,3635,3636,3701,3699,3323,3637,3323,3700,[3699,2932],[3700,2933],3387,3635,3699,3700,[3700,7757],3636,3323,[3636,7749],3323,3699,3324,3699,3323,3637,3701,3701,3323,3324,3700,3699,3636,3699,3700,3637,3323,[3700,2837],3701,3324,3637,3636,3636,3701,3636,3637,3636,3699,3701,3635,3635,3637,3700,3635,3700,[3701,4616],[3701,4551],[3699,4548],[3701,4551],[3637,4548],[3636,4611],3701,[3636,4616],[3700,4548],[3701,4551],[3637,4611],3637,3636,3637,3699,3636,3637,3700,3637,[3637,2773],3635,3701,3636,3636,3635,3699,3324,3635,3324,3323,3637,3636,3699,3700,3635,[3635,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,[12300,13287],[12300,13288],12300,12300,12300,12300,12300,[12300,14993],[12300,14994],[12300,14995],[12300,14996],[8493,14478],8556,[8810,8622],[8939,8297],[8939,8298,15057],[8490,15058],[8367,15059],[8368,15060],[8367,1293],[8492,1294,15005],[1360,15006],[1361,15007],[1360,15008],1295,1296,1297,[8433,1298],8367,[8556,14925],[8938,8298,14926],[8810,8364,14927],[8938,14928],8810,8938,[8810,8297],[8874,8364],[8938,8362],[8939,8298],8556,8431,[8368,15185],[8432,15186],[8556,15187],[8490,15188],[8810,8494],8938,[8810,8426],[8810,8620,14925],[8938,8621,14926],[8369,14927],[8874,8494,14928],8874,8874,8874,8875,[8939,8362],[8875,8298],[8939,8364],[8938,8363,16689],[8555,16690],8554,[8431,15117],[8492,15118],[8493,15119],[8492,15120],[8556,16689],[8557,16690],[8938,8364,17285],[8875,17286],[8874,8489,17287],8556,8367,8493,8304,8490,[8874,8366],[8938,8425],[8555,15121],[8490,15122],[8490,15123],[8433,15124],8490,[8875,8428],8938,[8938,8426],[8367,10167],[8557,10168],[8810,8429,10169],[8810,8363],[8939,8298],8556,8303,8432,8368,8554,8303,8369,8492,8368,8491,8431,8490,8433,[8490,14415],[8368,14416],12300,12300,12300,12300,12300,12300,[12300,8757],[12300,8759],[12300,8760],[12300,8761],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12909,8572],[12972,13921],[12908,13922],[12908,13923],[12908,13924],12972,12909,12972,12972,12973,12908,[12908,14049],[12909,14050],[12908,14051],[12909,14052],12909,12908,[12909,12615],[13587,12552],13584,13650,13585,[13584,13325],[13650,13326],[13585,13327],13649,13585,13584,13587,13650,13651,13651,[13648,12623],[13587,12624],13649,13587,13587,13648,13587,13586,13586,13651,13584,13587,13648,13649,[13641,13712],[13641,13713],[13641,13714],[13513,13715],[13641,13712],[13640,13713],[13512,13714,13633],13634,13635,13636,13637,13638,[13586,13639],13585,13586,13651,13648,13584,13586,13651,13587,13649,13649,13649,13649,13585,13584,13586,13650,13584,13584,13651,13650,13651,13651,13651,[13640,13712],[13640,13713],[13512,13523],13641,[13641,13647],13650,13649,13587,13648,13650,13586,13587,13649,13584,13584,13586,13586,13586,13587,13650,[13586,12615],[13584,12616],13587,13648,13651,[13643,13588],13643,[13643,13520],13651,13587,13587,13584,13586,13649,13586,13585,13651,13648,13585,13586,[13643,13522],13643,13643,[13643,13583],13584,13585,[13586,13133],[13587,13134],[13650,13135],13585,13651,13585,13586,[13648,3623],[2359,3624],2360,2360,2357,[3388,2233],3324,[3636,2292],2423,2423,2360,2359,[2357,2677],[2421,2678],[2422,2679],[2358,2680],[3323,2296],3323,[3323,2164],[2358,2869],[2359,2870],[2422,2871],[2360,2872],[3388,2425],3700,[3635,2677],[3323,2678],[3636,2229,2679],[3701,2165,2680],2424,2422,[2421,3615],[2421,3616],2422,2359,2357,2424,[2421,2805],[2360,2806],[2359,2807],[2423,2808],2357,[3635,2233],3636,3323,[3323,2356],[2360,2613],[2422,2614],[2423,2615],[2421,2616],2357,2358,[3637,2169],3635,[3323,2164],2424,[2421,2805],[2360,2806],[2359,2807],[2358,2808],2422,2359,2359,2424,2358,2364,2358,[2422,2741],[2421,2742],[2424,2743],[2358,2744],[3701,2233],3701,3323,[3636,3750],[3323,3814],3815,[6273,3816],6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,[6273,3551],[2811,3552],[2936,3490],[2875,3494],[2875,3426],[2812,3429],[2935,3495],2812,3131,2876,2876,2812,2812,3131,2812,[2999,6593],[2875,6594],[2812,6595],[2936,6596],[2875,6597],3000,2811,[3131,1601],[3131,1602],2812,2935,2811,[3131,6658],[2999,6659],2935,2875,2876,2876,[2999,3488],[6806,3489],[6934,3553],[7069,7455],[6999,7456],[6622,7062,7457],[6621,6872],6557,[6623,6997],7000,6935,[6623,6809],6558,[6622,7061],6998,6999,[6557,7065,7190],[6623,6873,7191],[6558,7192],[6559,7193],[6621,3615],[2358,3616],2424,2357,2357,2423,2428,2427,2357,2422,2424,2492,2491,2360,2360,2492,2422,2421,2359,2360,2421,2490,2360,2422,2428,2424,2360,2421,2490,2422,2427,2421,2424,2424,2357,2426,2357,2421,2426,2360,2364,2357,2358,2424,2424,2491,2421,2357,2359,2422,2428,2360,2426,2357,[2357,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3637,4682],3323,3324,[3700,7813],3701,3388,3699,3636,3635,3637,3636,3700,3637,3700,3700,3636,3387,3637,3700,3700,3387,3323,3699,3701,3700,3699,[3701,2996],[3700,2997],3387,3323,3323,3635,3701,3637,3635,[3323,7813],3701,3324,[3700,7621],3637,3636,3700,3323,3387,3324,3637,3637,3637,3699,3636,3701,3388,3701,[3387,2901],3635,3324,3699,3635,3636,3637,3323,3701,3701,3701,3636,3701,3701,[3700,2932],[3701,2933],3637,3637,3636,3699,3635,3636,3699,3323,3324,3635,3324,3700,3635,3699,3701,3636,3388,3324,3323,3387,3636,[3637,2837],3637,3635,3324,3637,[3637,2932],[3323,2933],3700,3700,3635,3700,3635,3637,3324,3636,[3636,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,[12300,13351],[12300,13352],12300,12300,12300,12300,12300,[8492,14414,15057],[8492,14416,15058],[12300,15059],[8432,14414,15060],8431,[8938,8366],8939,[8938,8427],[8554,15121],[8490,15122],[8431,15123],[8493,15124],[8433,1230],[1232,15069],15070,15071,[1296,15072],[1359,15073],1360,1361,[8368,1362],8367,[8432,14989],[8493,14990],[8555,14991],[8874,8302,14992],8875,8874,[8938,8361],8556,8556,8557,8496,8497,8492,[8555,15250],[8810,8620,15251],[8874,8621],[8810,8622],8810,8874,[8938,14989],[8874,14990],[8938,8617,14991],[8939,8428,14992],8875,[8875,8362],[8875,8298],[8810,8301],[8493,14292],[8493,14479],[8556,14545],[8554,14546,16753],[8492,16754],8490,[8432,15181],[8556,15182],[8556,15183],[8432,15184],[8554,16753],[8555,16754],8554,[8938,8298],8557,8490,[8874,8428],[8938,8427],8367,8432,[8875,8494],[8875,8489],[8557,15185],[8875,8620,15186],[8938,8621,15187],[8810,8621,15188],[8938,8429],8810,8938,[8875,8363],[8367,13149,10231],[8432,13088,10232],[8810,8298,13152,10233],8492,8556,8369,8432,8554,8492,8556,8492,8369,8557,8433,8554,8369,8556,8431,[8304,16689],[8433,14480,16690],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12973,8636],[12908,13985],[12908,13986],[12909,13987],[12972,13988],12908,12972,12972,12973,12972,12973,[12909,14113],[12972,14114],[12973,14115],[12972,14116],12972,12909,[12973,12615],[13650,12616],13650,13651,13650,13649,13649,13587,13651,13585,13587,13650,13651,13651,[13586,12686],[13648,12687],[13586,12688],13584,13650,13651,13648,13648,13587,13587,13585,13649,13649,13585,[13641,13716],13640,13641,13641,13641,13576,13513,[13576,13697],13698,13699,13700,13701,13702,[13651,13703],13586,13648,13584,[13587,13133],[13584,13134],[13584,13135],13650,13651,13650,13651,13586,13649,13585,13648,13587,13649,13587,13650,13651,13649,13585,13586,[13641,13652],13641,13641,[13641,13391],[13640,13392],13651,13651,13648,13584,13651,13585,13587,13651,13650,13648,13584,13650,13586,13650,13586,[13585,12424],[13586,12425],[13649,12489],13587,13648,13585,13586,[13643,13396],13643,[13643,13647],13650,13585,13649,13649,13587,13584,13586,13651,13649,13648,[13643,13652],13643,13643,[13643,13391],13649,13648,13650,[13584,13197],[13650,13198],[13584,13199],13648,13651,13586,13585,[13649,3687],[2423,3688],2358,2357,2421,[3388,2297],3701,[3637,2356],2359,2424,2357,2359,[2359,2741],[2424,2742],[2423,2743],[3636,2425,2744],3637,3637,[3699,2420],2357,2423,2359,2422,[3635,2425],3637,[3636,2164,2741],[3636,2165,2742],[2422,2743],[2422,2744],2421,2424,[2358,3615],[2359,3616],2357,2422,2357,2358,[2359,2869],[2360,2870],[2421,2871],[2360,2872],2422,[3323,2361],3635,[3699,2164],2422,[2421,2677],[2424,2678],[2358,2679],[2424,2680],2422,2360,2424,[3323,2232],[3387,2484],2358,[2421,2869],[2360,2870],[2358,2871],[2357,2872],2423,2423,2358,2422,2358,2357,2358,[2359,2805],[2423,2806],[2422,2807],[2359,2808],[3387,2297],3701,3700,[3700,3687],3878,[6337,3879],6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,[6337,3615],[2936,3616],2875,[2812,3558],[2876,3490],[2876,3493],[2812,3559],[2811,3429],[2811,3426],[2875,3430],2936,2875,2999,3131,2811,2876,[2812,6658],[2935,6659],3131,2875,3000,2875,2875,2811,[2876,4028],[2936,4029],2936,3131,2812,3000,2875,3000,[2811,3551],[6622,3552],[6558,6871,3553],6998,7001,[6559,7002],6557,[6622,6806],[6557,6742],6934,6999,6998,6935,[6621,6809],[6559,6741],6934,[6557,7002],[6623,7254],[6621,7255],[6558,7256],[6623,7257],[6559,3615],[2357,3616],2357,2422,2357,2427,2421,2424,2422,2428,2490,2358,2424,2421,2358,2428,2424,2427,2362,2427,2424,2428,2422,2427,2428,2428,[2422,3425],[2357,3429],[2423,3426],[2357,3430],2357,2422,2491,2426,2491,2491,2357,2422,2522,2423,2490,2427,2427,2427,2358,2492,[2422,3425],[2359,3426],[2359,3429],[2358,3430],2490,2423,2360,2422,[2421,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3637,4746],3324,3636,3701,3699,3699,3701,3701,3701,3635,3636,3387,3700,3635,3699,3700,3388,3700,3637,3635,3637,3323,3701,3636,3635,3701,[3700,3060],[3637,3061],3699,3324,3637,[3699,7621],3636,3635,[3635,7621],3700,3700,3700,[3637,7685],3635,3635,3701,3635,3388,3699,3324,3635,3700,[3635,7693],3323,3637,3636,3636,3701,3636,3637,3637,3701,3387,3635,3636,3637,3387,3701,3637,3637,3388,[3636,2996],[3699,2997],3701,3636,3700,3324,3699,3700,3699,3699,3636,3323,3323,3387,3701,3636,3635,3701,3636,3324,3699,3635,3387,[3387,2901],3635,3701,3699,3636,[3637,2996],[3637,2997],3699,3700,3388,3637,3701,3636,3701,[3637,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,12300,12300,12300,12300,[12300,13354],[12300,13355],12307,[8492,14478,15121],[8432,15122],[8555,14415,15123],[8493,15124],8492,[8810,8494],8810,[8875,8362],[8431,15185],[8493,15186],[8555,15187],[8491,1230,15188],1231,[1232,15133],15134,15135,15136,[1295,15137],1361,[8556,1425],8367,8367,[8490,15053],[8432,15054],[8556,15055],[8493,15056],[8810,8365],8939,[8939,8425],8493,8556,8555,8560,8561,8554,[8939,8428],8938,8874,8938,[8938,8362],[8875,8298],[8939,8365,15053],[8938,15054],[8938,15055],[8939,15056],[8938,16689],[8810,8553,16690],8492,8556,[8556,14480],12308,12300,[8492,14606],[8493,14607],[8555,14223],[8557,14224,15245],[8556,14225,15246],[8554,14226,15247],[8493,14227,15248],[8493,14223],[8492,14224],[8557,14225],[8491,14226],[8491,14227],[8939,8558,14293],8810,8875,[8810,8617],[8938,8620],[8810,8429],[8875,8617],[8939,8428,15249],[8938,15250],[8810,15251],[8938,8363,15252],[8875,8364],8874,[8938,8362],[8431,13149],[8492,13342,13921],[8492,13344,13922],[8490,13345,13923],[8431,13924],8555,8433,[8490,14929],[8368,14930],[8555,14931],[8369,14932],8556,8433,[8555,14539],8367,8554,8432,8555,8367,[8492,16753],[8432,14544,16754],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12909,8699],12909,[12909,14049],[12973,14050],[12908,14051],[12972,14052],12973,12908,12972,12908,12908,12909,[12909,14177],[12973,14178],[12909,14179],[12973,14180],12909,[12908,12424],[13586,12425],[13584,12489],13649,13584,13587,13650,13649,13584,13586,13649,13649,13586,13585,[13648,12686],[13586,12750],12751,[13585,12752],13648,13587,13586,13584,[13584,12943],[13587,12944],13585,13648,13648,13585,[13640,13522],13512,[13640,13391],[13641,13392,13126],[13641,13393,13127],[13576,13394],[13641,13395],[13512,13392],[13512,13393,13761],13762,13763,13764,13765,13766,[13649,13767],13650,13584,13587,[13651,13197],[13648,13198],[13587,13199],13649,13648,13650,13650,13586,13586,13650,13585,13650,13586,13649,13587,13648,13586,13650,13585,[13641,13523],13512,13512,[13512,13647],13587,13587,13651,13586,13650,13586,13650,13587,13648,13648,13586,13585,13585,13584,[13587,12361],[13587,12362],[13649,12488],[13651,12489],13648,13648,13650,13586,13649,[13643,13460],13643,[13643,13711],[13643,13714],[13643,13715],13586,13586,13586,13586,13651,13585,13585,13587,[13643,13523],13643,[13643,13456],13649,13586,13650,13587,[13584,13261],[13650,13262],[13586,13263],13587,13648,13584,13650,[13586,3687],[2359,3688],2359,2423,2357,[3637,2361],3323,[3635,2484],2359,2357,2422,2424,[2421,2805],[2357,2806],[2421,2807],[3700,2425,2808],3700,[3323,2229],2359,2421,2358,2360,2360,[3323,2295],3637,[3323,2420,2805],[2360,2806],[2424,2807],[2421,2808],2424,2421,[2357,3743],[2421,3744],[2421,3810],[2421,3811],[2358,3812],[2359,3813],[2357,3745],2422,2424,2358,[3637,2488],[3324,2489],3637,[3387,2420],2360,[2360,2741],[2357,2742],[2424,2743],[2423,2744],2357,2422,2423,[3323,2296],3699,[3637,2420],2359,2421,2421,2360,2357,2421,2359,2421,2359,2423,2424,[2359,2869],[2358,2870],[2359,2871],[2421,2872],[3636,2361],3324,[3388,3750],[3699,3751],[6292,3752],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3679],[2999,3680],[2935,6401],[2999,6402],[2811,6403],2876,[2812,3558],[2875,3493],[2812,3490],[2935,3494],[2875,3495],2876,2936,3000,3000,3131,2811,3000,2812,2812,3131,2811,2811,2811,[2875,4092],[2876,4093],3131,2812,2935,2936,2876,2811,[2999,3615],[6559,3616],6559,[6623,6870],6998,6935,[6557,6742],6934,6999,[6557,7063],[6557,6872],[6623,6870],6998,6935,6934,6999,[6622,6873],[6559,7318],[6621,6807,7319],[6558,6742,7320],[6558,6746,7321],[6622,3679],[2360,3680],2424,2359,2424,2360,2427,2428,2422,2360,2358,2422,2357,2364,2427,2492,2428,2359,2491,2421,2421,2360,2362,2490,[2424,3425],[2357,3426],3489,3493,3490,3494,[2358,3495],2360,2421,2421,2490,[2423,3425],[2424,3426],[2421,3429],[2424,3430],2423,2426,2424,2492,[2422,3425],[2422,3429],[2422,3426],3489,3490,3493,3494,[2422,3495],2427,2490,[2358,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3388,4553],3323,3323,3636,3700,3324,3699,3635,3635,3636,3699,3323,3323,3323,3637,3637,3635,3323,3323,[3635,2709],3699,3637,3323,3635,3387,3324,3388,3699,3701,3701,[3637,7685],3636,3637,[3699,7685],3387,[3701,7693],3699,[3701,7749],3323,3701,3700,3637,3324,3699,3636,3323,3701,[3635,7757],3637,3637,3323,3637,3635,3636,3636,3388,3637,3388,3637,3699,3388,3636,3701,3323,3323,3700,[3700,3060],[3323,3061],3324,3387,3636,3635,3636,3636,3323,3637,3388,3700,3700,3701,3701,3387,[3636,2711],3636,3323,3323,3323,3700,3635,3637,3701,3323,3323,3636,[3323,3060],[3324,3061],3636,3636,3635,3700,3699,[3636,2709],3637,[3635,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8315],12300,12300,12300,12300,12300,12300,12300,12300,[8432,14414],[8938,8619,15185],[8490,15186],[8433,15187],[8368,15188],[8939,8621],[8810,8622],8874,[8874,8553],8433,[8555,15250],[8557,1293,15251],[8493,1294],1231,[1295,15197],15198,15199,15200,[1296,15201],1297,[8556,1298],8433,[8938,8620],[8368,15117],[8368,15118],[8490,15119],[8554,15120],[8939,8429],8875,[8939,8489],8431,8431,8491,8555,8431,[8810,8622],[8939,8362],[8939,8299],[8875,8300],[8938,8301],8556,8556,[8495,15117],[8810,8298,15118],[8810,8299,15119],[8810,8300,15120],[8939,8301,16753],[8490,14292,16754],[8369,14607],[8557,14227],[8491,14608],12300,12300,12300,12300,12300,12300,12300,[12300,13354],[12300,13355],12300,12300,[12300,13160],12300,12307,[8432,14542,15206],[8874,8298,15207],[8939,8364,15208],8874,8810,8875,8875,[8938,8362],[8875,8299],[8939,8301],8557,[8874,8558],8938,[8875,8361],[8493,13148],[8492,13280,13985],[8492,13342,13986],[8492,13280,13987],[8554,13152,13988],8556,8490,[8555,14993],[8367,14994],[8555,14995],[8492,14996],8493,8556,8557,[8554,14925],[8556,14926],[8492,14927],[8492,14928],8431,[8493,14292],[8432,14608],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12972,8444],12909,12972,[12908,14113],[12908,14114],[12972,14115],[12972,14116],12909,12973,12908,12909,12973,12909,[12908,14241],[12909,14242],[12909,14243],[12972,14244],[12972,12424],[13650,12488],[13648,12489],13587,13649,13586,13650,13586,13651,13587,13584,13585,13584,13648,13651,[13587,12559],12814,[13586,12815],13587,13648,13651,13585,13651,[13587,13007],[13586,13008],13585,13649,13650,[13640,13652],13640,13640,[13512,13455],[13586,13190],[13650,13191],13587,13651,13651,[13586,13825],13826,13827,13828,13829,13830,[13649,13831],13586,13585,13649,[13651,13261],[13649,13262],[13587,13263],13650,13586,13586,13587,13650,13585,13586,13587,13585,13649,13651,13587,[13641,13713],[13640,13714],[13512,13715],[13576,13522],13512,13641,[13641,13456],13648,13651,13650,13651,13648,13651,13585,13650,13586,13650,13651,13651,13651,13584,[13648,12424],[13651,12425,13128],[13587,12426,13129],[13648,12489,13130],[13585,13131],[13649,13132],13650,13650,13585,13650,[13643,13588],13643,13643,13643,13643,[13643,13455],13587,13650,13649,13586,13648,13648,[13643,13652],13643,13643,[13643,13647],13586,13585,13649,13649,[13587,13325],[13585,13326],[13587,13327],13585,13651,13586,[13650,3750],[13586,3751],[2357,3752],2359,2422,2357,[3699,2425],3637,3699,[3323,2293],[3699,2485],[3388,2486],[3636,2487],[3387,2488,2869],[3637,2486,2870],[3323,2487,2871],[3323,2296,2872],3323,[3636,2420],2423,2424,2421,2357,[3636,2233],3323,[3637,2229],[2421,2869],[2421,2870],[2424,2871],[2357,2872],2555,2556,[2357,3807],3808,3874,[2359,3875,2549],[2360,3876,2550],[2422,3877,2551],[2357,3809],[2422,3745],2424,[3637,2296],3323,3636,3701,[3636,2484],2358,[2360,2805],[2422,2806],[2421,2807],[2422,2808],2423,2360,[3635,2489],3699,3635,[3635,2293],[3699,2486],[3637,2487],[3636,2488],2423,2421,2423,2358,2683,2684,2422,2359,2360,2359,2360,2359,2423,[3699,2232,3750],[3636,3814],3815,[6292,3816],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3425],[6292,3426],[6292,3429],[6292,3495],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3679],[2936,3680],[2876,6465],[2999,6466],[2935,6467],2939,2940,2876,2935,[2811,3558],[2936,3559],[6273,3560],6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,6273,[6273,3679],[6559,3680],6621,6623,[6559,6997],6939,6939,6999,[6623,6872],6559,6557,[6558,7138],[6621,7061,7139],[6998,7140],[7069,7141],[6621,7002],6623,[6621,6806,7382],[6934,7383],[7001,7384],[7002,3551,7385],[2422,3552],[2424,3553],2424,2357,2428,2358,2358,2427,2358,2357,2423,2357,2359,2426,2424,2426,2421,2490,2458,2358,2359,2357,2358,[2358,3488],3489,3490,3553,0,0,3558,3559,[2423,3495],2357,2423,[2423,3488],3489,3490,3493,3494,[2357,3495],2421,2490,[2358,3488],3489,3493,3490,3553,0,0,3558,3559,[2358,3429],[2421,3426],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3635,4487],[3637,4487],[3637,4488],3636,3700,3700,3701,3699,3701,3637,3387,3700,3700,3701,3637,3324,3323,3701,[3701,2773],3323,3636,3637,3700,3635,3637,3699,3635,3699,3323,[3699,7749],3699,3323,[3637,7749],3635,[3323,7757],3636,[3637,7813],3700,3700,3700,3700,3701,3700,3700,3699,3700,3700,3635,3700,3635,3701,3388,3635,3636,3701,3701,3635,3699,3388,3636,3637,3700,3701,3323,3700,3701,3387,3700,3699,3635,3637,3323,3701,3701,3701,3635,3700,3699,3700,3324,3635,[3388,2775],3701,3701,3324,3699,3388,3637,3637,3387,3636,3324,3323,3636,3701,3700,3636,3701,3701,3636,[3701,2773],3636,[3637,4737,3124],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,[8433,14414,8623],[8555,14415,8624],[8556,14415,8625],[8939,8558],8810,[8938,8426,15250],[8938,8620,15251],[8938,8428],8810,8810,8875,[8938,8617],8432,8492,[8433,1357],[8557,1358],1295,[1296,15261],15262,15263,15264,[1296,15265],1361,[8369,1362],[8939,8558],8875,[8939,8426,15181],[8939,8620,15182],[8810,8621,15183],[8938,8428,15184],8939,8939,[8939,8617],[8810,8618],8369,8495,8554,[8938,8428],[8939,14925],[8939,8361,14926],[8431,14927],[8493,14928],8554,8433,8554,[8491,15181],[8431,15182],[8557,15183],[8555,14292,15184],[8433,14479],[8554,14608],12302,12300,12300,12300,12300,12300,12300,[12300,13413],[12300,13414],12300,12300,12300,12300,12300,12300,12300,12300,[8556,14478,15270],[8490,15271],[8368,15272],[8939,8298],[8938,8299],[8810,8301],[8810,8298],[8557,14925],[8556,14926],[8367,14927],[8491,14928],[8874,8428],8939,[8874,8425],[8490,13212],[8492,13341,14049],[8492,13279,14050],[8492,13344,14051],[8492,13278,14052],[8556,13085],[8556,13089],[8368,15057],[8368,15058],[8369,15059],[8433,15060],8557,8491,8493,[8432,14989],[8557,14990],[8367,14991],[8556,14992],8556,[8554,14480],12301,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,8507,[12973,8508],12973,12972,[12908,14177],[12973,14178],[12972,14179],[12972,14180],12973,12908,12909,12973,12909,12973,[12972,16693],[12909,16694],12908,12908,[12972,12551],[13649,12552],13584,13651,13586,13650,13586,13586,13587,13584,13585,13648,13649,13586,13650,[13586,12623],[13649,12624],13585,13585,13651,13584,13587,13648,13651,13585,13650,13651,13586,[13641,13716],13640,13513,[13640,13583],13651,[13512,13713],[13513,13714],[13641,13715],13586,[13650,13889],13890,13891,13892,13893,13894,[13585,13895],13585,13651,13650,[13651,13325],[13648,13326],[13587,13327],13584,13587,13587,13586,13650,13650,13585,13585,13585,13649,13586,[13512,13652],13513,13641,13641,13512,13640,13641,[13513,13711],[13512,13712],13585,13586,13584,13648,13651,13585,13584,13650,13651,13586,13585,13651,[13586,12487],[13651,12488],[13586,12489,13192],[13584,13193],[13651,13194],[13587,13195],[13648,13196],13585,13586,13651,[13651,12943],[13649,12944],[13643,13393],[13643,13394],[13643,13459],13643,[13643,13583],13650,13585,13585,13587,[13643,13714],[13643,13715],[13643,13716],13643,[13643,13457],13651,13651,13584,13584,13587,13587,13648,13585,13649,13651,[13650,3750],[13650,3814],3815,[2422,3816],2423,2357,[2357,2549],[2357,2550],[3635,2165,2551],[3323,2231],3388,3323,3636,3635,3323,3637,3323,3387,[3699,2229],2357,[2359,2549],[2357,2550],[2424,2551],2357,[3700,2361],3323,[3635,2228],2357,2359,2357,2424,2619,2620,2423,[2358,3872],[2357,3938],[2359,3939,2613],[2421,3940,2614],[2424,3941,2615],[2357,3873,2616],[2359,3744],[3636,2425,3745],3636,3635,3701,3701,3635,[3324,2293],[2424,2869],[2357,2870],[2421,2871],[2360,2872],[3635,2485],[3635,2295],3699,3636,3388,3324,3323,3699,3636,[3387,2484],[3701,2486],2358,2360,2747,2748,2358,2422,2423,2360,2359,2357,2357,[2360,3687],3878,[6292,3879],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,6401],[6292,6402],[6292,3488,6403],[3000,3489],[2876,3490],[2936,3493],[3000,3559],[6292,3429],[6292,3430],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3488],[2935,3489],[2999,3553],[3000,6529],[2811,6530],[2999,6531],[3003,6532],[3004,6533],2936,2812,2999,[2999,3623],[6337,3624],6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,6337,[6337,3488],[6622,3489,7134],[6621,3553,7135],[6622,7136],[6557,6806,7137],6934,6999,[6559,7064],[6559,6872],6623,6559,6622,[6558,7202],[6621,7203],[6622,6997,7204],[6936,7205],6935,[6623,6742],6934,[6999,7447],[6558,7065,7448],[6873,3679],[2360,3680],2357,2426,2492,2426,2491,2358,2490,2421,2491,2492,2491,2490,2357,2491,2357,2359,2424,2421,2427,2492,2357,[2358,3551],3552,3553,0,0,0,0,0,3558,3559,[2360,3426],[2424,3429],3552,3553,0,0,3558,3559,[2423,3429],[2360,3426],3552,3553,0,0,0,0,0,0,3558,3493,3490,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4551,4552,[3701,4553],3636,3699,3700,3635,3635,3637,3699,3637,3323,3324,3324,3699,3635,3699,[3700,2837],3387,3635,3324,3387,3323,3635,3636,3699,3323,3635,[3699,7813],3637,3699,[3636,7813],3700,3387,3701,3388,3637,3700,3637,3701,3388,3635,3636,3637,3700,3635,3699,3635,3699,3701,3700,3701,3323,3699,3701,3699,3387,3324,3700,3323,3635,3636,3699,3636,3699,3635,3635,3323,[3699,2709],3387,3637,3699,3700,3701,3388,3700,3324,3635,3637,3700,[3701,2839],3699,3637,3700,3637,3387,3699,3324,3701,3323,3388,3701,3637,3635,3701,3323,3637,3388,3635,[3636,2837],3637,[3637,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,[8367,14478,8687],[8493,8688],[8369,8689],8490,[8938,8298],[8810,8364],8875,[8939,8363],[8810,8299],[8874,8301],[8874,8365],8874,[8938,8361],8303,8493,[8557,1422],[8557,1423],[1232,15325],[1296,15326],[1232,15327],[1297,15328],1296,[8557,1425],[8433,1426],[8874,8558],8875,[8938,15245],[8874,15246],[8938,15247],[8874,15248],[8810,8363],[8939,8364,14925],[8938,14926],[8939,14927],[8938,8427,14928],[8939,8621],[8874,8622],8875,[8939,14989],[8875,8489,14990],[8367,14991],[8367,14992],8493,8304,8368,[8491,15245],[8493,15246],[8367,15247],[8554,14544,15248],[12300,13354],[12300,13355],12300,[12300,13157],[12300,13158],12300,12300,12300,12300,[12300,13477],[12300,13478],12300,12300,12300,12300,12300,12300,12300,12300,[8555,14542,15334],[8556,15335],[8369,15336],[8555,14292],[8433,14479],[8491,14543],[8554,14293],[8556,14989],[8369,14990],[8432,14991],[8810,8558,14992],8874,8875,[8875,8489],[8367,13276],[8492,13342,14113],[8492,13343,14114],[8492,13280,14115],[8492,13344,14116],13342,[8369,13215],[8490,15121],[8492,15122],[8431,15123],[8555,15124],8431,8368,8367,[8368,15053],[8490,15054],[8492,15055],[8557,15056],8556,8368,[8432,14416],12300,12300,12300,12300,[12300,13159],12300,12300,12300,12300,12300,12300,12300,[12300,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12909,8315],12909,[12908,14241],[12972,14242],[12973,14243],[12972,14244],12908,12909,12972,12909,12908,12972,[12972,16757],[12909,16758],12909,12909,[12972,12615],[13584,12616],13587,13586,13586,13648,13649,13584,13649,13650,13650,13651,13650,13648,13648,[13649,12494],[13585,12430],[13651,12431],13585,13648,13651,13648,13585,13587,13586,13584,13648,[13577,13460],13641,13512,13512,[13640,13711],[13512,13716],13640,13641,13640,[13512,13520],[13640,13714,13953],13954,13955,13956,13957,13958,[13650,13959],13586,13649,13648,13587,13585,13587,13587,13584,13650,13584,13649,13651,13584,13587,13585,13587,13651,[13640,13522],13576,13640,13512,[13640,13391],[13641,13392],[13640,13396],13640,13512,[13513,13711],13584,13650,13585,13587,13584,13584,13651,13587,13650,13586,13587,[13649,12551],[13585,12552],[13584,13256],[13651,13257],[13584,13258],[13650,13259],[13586,13260],13584,13650,13585,[13587,13007],[13585,13008],13586,13587,13649,[13643,13392],13587,13649,13585,13584,[13643,13460],13643,13643,13643,13643,[13643,13647],13651,13651,13585,13584,13585,13651,13651,13649,13649,13650,[13650,3623],3878,[2357,3879],2422,2421,2358,[2357,2613],[2421,2614],[2357,2615],[2357,2616],[3701,2165],[3637,2166],[3635,2167],[3637,2168],[3699,2165],[3637,2166],[3701,2167],[3699,2168],2423,2358,[2359,2613],[2422,2614],[2360,2615],[2423,2616],[3700,2233],3636,[3635,2292],2359,2358,2359,2360,2423,2423,2358,2360,2357,[2357,2677],[2421,2678],[2360,2679],[2422,3937,2680],3808,[3323,2295,3616],3635,3699,3323,3699,3323,3700,[3635,2484],2360,2421,[3387,2296],3701,3636,3636,3699,[3699,2164],[3701,2166],[3387,2167],[3637,2168],[3323,2231],3701,[3635,2229],2422,2421,2360,2422,2359,2360,2360,2358,2423,[3637,2487],[3323,2488],[3637,2489,3623],[6292,3624],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3425,6465],[6292,3426,6466],[3000,3552,6467],[2875,3553],3000,2936,[2936,3558],[2999,3493],[2936,3494],[6292,3495],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3425],[6292,3426],[2875,3552],[2875,3553],2876,[2999,6593],[2875,6594],[2812,6595],[3067,6596],[3068,6597],2935,2999,2999,[2876,3687],[6292,3688],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3425],[6292,3426],[6623,3552],[6559,3553,7198],[6622,7199],[6622,7200],[6623,6997,7201],6999,[6622,6872],6558,6623,6557,6623,6558,[6623,7266],[6621,6807,7267],[6934,7268],[6999,7269],[6623,7063],6998,6999,[6557,7066,7138],[6559,7139],[6559,3743,7140],[2358,3744,7141],[2424,3745],2491,2491,2424,2358,2458,2357,2359,2427,2357,2423,2491,2491,2426,2421,2358,2426,2491,2357,2423,2428,[2423,3615],3616,0,0,0,0,0,0,0,3558,3490,3493,3553,0,0,0,0,3558,3493,3490,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3701,4618],3700,3637,3636,3323,3699,3636,3636,3636,3388,3636,3700,3387,3700,[3635,2901],3637,3635,3699,3323,3700,3387,3636,3636,3701,3701,3636,3699,[3636,7621],3699,3637,3701,[3636,7621],3701,3323,3700,3637,3701,3635,3637,3635,3323,3701,3637,3636,3636,3699,3637,3700,3636,3635,3699,3635,3699,3699,[3323,2709],3636,3699,3324,3699,3699,3635,3323,3635,3700,3636,[3699,2773],3635,3701,3635,3636,3387,3701,3699,3324,3323,3388,3324,[3323,2903],3637,3636,3635,3323,3323,3635,3323,3635,3700,3636,3635,3387,3700,3635,3637,3701,3700,3636,[3323,2901],3636,[3701,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12300,8572],12300,12300,12300,12300,12300,[8367,14478,8751],[8367,8752],[8556,8753],8432,8431,[8875,8366],8875,[8874,8361],8495,[8556,1109],[8874,8558,1110],[8875,1111],[8939,8489],8490,8490,8491,[8491,1487],[8367,1488],[8432,1488],[8555,1488],[8367,1488],[8493,1488],[8939,8620,1489],[8939,8621],[8874,8429],[8810,8363],[8874,8298],[8874,8299,1109],[8810,8300,1110],[8810,8301,1111],8431,[8492,14989],[8938,8299,14990],[8938,8300,14991],[8939,8365,14992],8939,8875,8939,[8874,8363,15053],[8432,15054],[8368,15055],[8493,15056],8432,8492,8554,8556,8492,[8431,14292],[8554,14608],12300,12300,12300,[12300,13221],[12300,13222],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8556,14606],[8368,14607],[8557,14607],[8369,14608],12301,12307,[8490,14542],[8490,15053],[8556,15054],[8554,15055],[8493,15056],[8938,8364],[8810,8363],8433,[8554,13404],[8492,13279,14177],[8492,13277,14178],[8492,13280,14179],[8492,13341,14180],13278,[8491,13152],[8490,15185],[8555,15186],[8557,15187],[8431,15188],8367,8431,8556,[8431,15117],[8557,15118],[8493,15119],[8304,15120],8492,[8303,1109],[8555,14480,1110],[12300,1111],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12908,8249],[12972,8246],[12909,8250],12908,12973,12909,12972,12973,12908,12908,12973,12972,12908,12908,12973,[12973,12679],[13586,12680],[13648,12681],13587,13584,13586,13587,13586,13586,13587,13584,13650,13650,13651,13648,13649,[13585,12494],[13649,12495],[13585,12496],13649,13651,13587,13587,13585,13649,13650,13650,[13641,13524],13640,[13512,13391],[13640,13392],[13641,13393],[13512,13394],[13512,13395],[13576,13459],13641,13641,[13512,14017],[13512,13647,14018],[13586,14019],14020,[13648,14021],[13651,14022],[13587,14023],13586,13651,13648,13648,13648,13650,13586,13649,13650,13648,[13586,12996],13648,13586,13584,13585,13584,[13641,13652],13640,[13512,13391],[13512,13459],13641,[13641,13647],13649,[13641,13652],13640,13641,13512,[13512,13455],13586,13650,13587,13651,13649,13585,13587,13651,13585,13585,[13648,12615],[13648,12616],[13586,13320],[13648,13321],[13584,13322],[13584,13323],[13651,13324],13650,13651,13584,13650,13651,13648,13648,13648,13651,13586,13650,13586,13587,[13643,13588],13643,[13643,13456],[13643,13393],[13643,13395],13648,13648,13587,13649,13649,13586,13650,13651,13585,13651,13651,[13650,3623],[2357,3624],2421,2359,2421,2424,[2424,2677],[2422,2678],[2359,2679],[2423,2680],2357,2422,2424,2422,2360,2424,2359,2424,2358,2359,[2358,2677],[2423,2678],[2358,2679],[2423,2680],[3637,2297],3323,[3324,2356],2357,[2421,2549],[2358,2550],[2357,2551],2358,2421,2421,2357,2360,[2423,2741],[2421,2742],[2359,2743],[2359,2744],[3700,2489,3615],[3636,3616],[3635,2164],[3324,2166],[3635,2167],[3700,2168],[3636,2232],3701,3700,[3635,2293],[3637,2489],3635,3700,3637,3387,3636,[3637,2420],2358,2422,[2422,2235],2358,[3388,2165],2360,2423,2358,2421,2360,2424,2423,2421,2360,[3701,2425],3700,3636,[3637,3558],[3699,3559],[6292,3560],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3488],[2876,3489,6529],[3000,3490,6530],[2875,3553,6531],[2939,6532],[2940,6533],3000,2811,2811,[2936,3558],[2935,3559,5076],[6292,3560,5076],[6292,5076],[6292,5076],[6292,5076],[6292,5076],[6292,5076],[6292,5076],[6292,5076],[6292,5076],[6292,3551,5076],[2935,3552,5076],[2875,3490],[2936,3553],2936,2935,2876,[3000,6658],[2875,6659],3131,3132,2876,2999,[2935,3750],[3000,3751],[6292,3752],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3551],[6621,3489],[6558,3490],[6621,3553],[6558,7262],[6623,7263],[6622,6741,7264],[6934,7265],[6621,7002],6622,6558,6621,6558,6623,[6557,6807],[6558,6742,7330],[6934,7331],[6999,7332],[6621,7066,7333],6621,[6622,6997],6935,[6623,6809,7202],[6558,7203],[6623,6807,3807,7204],[6746,3808,7205],[2358,3809],[2492,3745],2522,2426,2491,2428,2490,2426,2359,2358,2422,2357,2357,2358,2426,[2422,3425],[2359,3426],[2357,3430],2427,2423,2490,[2421,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3637,4682],3635,3636,3699,3387,3323,3701,3388,3323,3637,3635,3701,3700,3635,3636,3701,3387,3699,3700,3701,3635,3635,3700,3701,3388,3701,3701,[3636,7685],3635,3701,3637,[3636,7685],3635,3387,3323,3701,3699,[3636,2709],3635,3636,3388,3323,3699,3701,3699,3700,3323,3701,3388,3701,3635,3701,3699,3635,[3637,2773],3637,3700,3323,3324,3701,3701,3700,3636,3323,3699,[3323,2837],3388,3388,3323,3387,3636,3388,3636,3699,3701,3701,3323,3635,3323,3323,3700,3701,3699,3324,3701,3637,3387,3387,3701,3324,3700,3636,3701,3700,3635,3699,3636,3700,[3636,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8635,[12300,8636],12300,12300,12300,[12300,16689],[12300,16690],[8556,14542],[8432,14929],[8431,14930],[8490,14931],[8368,14932],[8939,8430],8939,[8810,8425],8493,[8491,1173],1174,[8875,8302,1175],[8874,8426,1176],[8938,8618,14929],[8938,8618,14930],[8493,14931],[8492,14932],8554,[8939,8619],[8875,8620],[8810,8621],[8875,8622],[8874,14929],[8938,14930],[8939,14931],[8810,8553,14932],8433,[8555,1173],1174,[8490,1175],[8368,1176],[8491,15053],[8490,15054],[8493,15055],[8874,8558,15056],8875,8874,[8939,8297],[8367,15117],[8554,15118],[8491,15119],[8369,15120],8368,8368,[8555,14925],[8431,14926],[8433,14927],[8490,14480,14928],12308,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13160],12300,12300,12300,12300,12300,12300,12300,12300,[8431,14414],8432,[8432,15117],[8369,15118],[8490,15119],[8491,15120],8432,8367,8555,8369,[8367,13340,14241],[8492,13279,14242],[8492,13277,14243],[8492,13279,14244],13155,[8431,13345],[8493,15249],[8556,15250],[8554,15251],[8369,15252],8490,8554,8490,[8493,15181],[8369,15182],[8556,15183],[8432,15184],8555,[8493,1173],1174,[12301,1175],[12300,1176],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8314,[12908,8315],12973,12909,12972,12909,[12909,13921],[12909,13922],[12908,13923],[12972,13924],12909,12973,12908,[12973,12743],12744,[13587,12745],[13649,12681],13650,13587,13587,13649,13648,13584,[13586,13133],[13648,13134],[13650,13135],13649,13584,13650,13585,[13587,12494],[13648,12495],[13586,12496],13587,13584,13587,13587,13648,13585,13587,[13512,13588],13640,[13640,13647],13651,13649,13586,13651,13651,[13512,13396],13641,13641,[13641,13711],[13512,13522,14083],[13641,14084],[13640,13711,14085],[13641,13712],[13512,13713],[13513,13714],[13512,13715],13585,13648,13585,13587,13584,13587,13584,13587,[13584,13060],13587,13587,13586,13648,13586,13585,[13640,13392],13584,13649,[13640,13396],[13640,13711],13649,13651,[13577,13392],[13512,13459],13513,[13641,13583],13649,13585,13586,13585,13651,13651,13649,[13584,12361],[13585,12362],12365,[13643,12488],[13643,13455,12489],[13586,13384],[13584,13385],[13587,13386],[13649,13387],[13649,13388],13649,13648,13584,13587,13584,13584,13648,13651,13584,13648,13584,13584,13584,13584,[13643,13392],13585,13651,13587,13651,13587,13587,13650,13584,13586,13648,13651,13585,13648,13650,[13586,3687],[2421,3688],2358,2357,2422,2421,[2422,2741],[2359,2742],[2424,2743],[2422,2744],2423,2359,2421,2360,2422,2359,2423,2421,2360,2357,[2357,2741],[2357,2742],[2357,2743],[2424,2744],[3636,2361],3324,[3388,2420],2422,[2422,2613],[2424,2614],[2421,2615],[2423,2616],2359,2360,2360,2360,[2357,2805],[2359,2806],[2421,2807],[3637,2233,2808],[3699,3679],[3323,3680],[3637,2420],2423,2358,2360,2423,[3324,2165],[3700,2232],3636,3635,3701,[3701,2164],[3701,2165],[3699,2232],3699,[3699,2484],2358,2422,2422,2421,2359,2421,2358,2357,2423,2421,2423,2421,2424,[3323,2485],[3636,2295],3323,[3387,2164],[3324,2232],[3700,3687],[6292,3688],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3425],[6292,3426],[6292,3429],[2876,3552],[2999,3553,6593],[3000,6594],[2936,6595],[3003,6596],[3004,6597],3000,2939,2940,2875,[2876,5140],5140,5140,5140,5140,5140,5140,5140,5140,5140,5140,[2875,5140],2876,2876,2936,2875,2939,2940,2876,2811,2936,2999,[2936,3750],[2875,3814],3815,[6292,3816],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3615],[6621,3616],6621,6557,[6621,6741,7326],[6622,6742,7327],[6934,7328],[6939,7329],6935,[6558,6746],6557,6558,6621,[6557,6807],6934,[7000,7394],[6941,7395],[6623,7002,7396],[6558,7397],6559,[6623,7061],6998,[6935,7266],[6558,6742,7267],[6934,7268],[6558,7002,3872,7269],3873,[2424,3680],2358,2428,2359,2522,2422,2359,2423,[2424,3425],[2422,3426],[2424,3429],[2360,3430],2359,[2357,3488],3489,3490,3494,[2358,3495],2357,[2424,3488],3489,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3635,4746],3701,3637,3701,3635,3637,3635,3635,3636,3635,3700,3636,3699,3637,3699,3637,3637,3636,3701,3699,3699,3700,3701,3701,3701,3699,3636,[3635,7749],3700,3323,3636,[3636,7749],3635,3387,3636,3324,3701,[3701,2773],3324,3701,3699,3700,3637,3701,3637,3701,3699,3324,3388,3323,3699,3701,3699,3635,[3637,2837],3635,3388,3700,3636,3323,3388,3701,3699,3700,3700,[3701,2901],3699,3324,3323,3699,[3637,7243],[3636,7244],3387,3635,3387,3637,3636,3699,3701,3324,3701,3323,3701,[3635,2710],3636,3701,3637,3635,3635,[3701,4808],[3636,4868],[3636,4869],[3699,4803],3699,3701,3637,3699,[3635,4808],[3637,4809,4865,7621],4866,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,[12300,13413],[12300,13414],12300,[8492,14414,16753],[8492,14415,16754],8431,[8433,14993],[8555,14994],[8369,14995],[8556,14996],[8875,8494],8875,[8939,8489],8368,[8493,1237],1238,[8557,13907,1239],[8875,8364,1240],[8939,14993,1241],[8875,14994],[8874,8427,14995],[8939,8618,14996],[8874,8622],8938,8875,8874,8810,[8810,8363,14993],[8810,8299,14994],[8875,8301,14995],[8555,14996],8490,[8305,13904,1237],1238,[8557,13844,1239],[8555,1240],[8557,15117,1241],[8369,15118],[8433,15119],[8490,15120],[8939,8364],8810,[8874,8426],[8939,8618,15181],[8368,15182],[8367,15183],[8433,15184],8432,8369,[8490,14989],[8431,14990],[8433,14991],[8431,14480,14992],12300,[12300,13287],[12300,13288],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8555,14478],8304,[8556,15181],[8490,15182],[8368,15183],[8368,15184],8492,8433,[8493,13084],[8490,13085],13277,13279,13342,13341,13342,[8492,13409],8492,8493,8496,8497,8491,8490,8556,[8490,15245],[8554,15246],[8368,15247],[8491,15248],8557,[8367,1237],1238,[8492,14416,1239],[12300,1240],[12300,1241],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12972,8380],12972,12973,12972,[12972,13985],[12909,13986],[12972,13987],[12972,13988],12908,12909,12909,12908,[12908,12808],12809,[13586,12552],13584,13648,13650,13587,13585,13586,[13651,13197],[13650,13198],[13651,13199],13648,13585,13651,13585,13648,[13650,12559],[13584,12560],13649,13587,13648,13584,13649,13586,13587,13648,[13576,13392],13650,13648,13648,13648,13648,13586,13586,[13641,13392],[13512,13458],13641,13641,13512,13641,13640,13513,13577,13512,[13641,13521],13648,13650,13649,13584,13587,13650,13586,13585,13651,13585,13649,13584,13585,13586,13584,13584,13586,[13512,13716],13641,[13641,13455],13586,13586,[13641,13652],13512,[13576,13711],13651,13586,13584,13586,13649,13651,[13648,12424],[13648,12425],[13643,13588,12426],[13643,12429],[13643,12489],[13643,13583],13587,[13651,13449],[13648,13450],[13650,13451],13649,13648,13585,13587,13648,13584,13648,13584,13585,13585,13651,13650,13651,13648,13585,13650,13587,[13587,12686],[13584,12748],[13649,12749],[13585,12748],[13651,12749],[13587,12746],[13586,12747],[13584,12681],13587,13648,13649,13648,[13584,12686],[13585,12687,3558],[12688,3494,7138],[2422,3495,7139],[2422,7140],[2422,7141],2422,[2358,2805],[2421,2806],[2360,2807],[2422,2808],[2359,7126],[2422,7127],[2360,7128],[2421,7129],2360,2458,2357,2423,2422,2360,[2358,2805],[2422,2806],[2359,2807],[2422,2808],[3324,2425],3636,[3701,2484],2359,[2357,2677],[2359,2678],[2360,2679],[2423,2680],2422,2360,2358,2360,[2358,2869],[2421,2870],[2358,2871],[3388,2361,2872],[3323,3615],[3635,2229,3616],2423,2357,2681,2682,2358,2359,2422,[3388,2169],3699,[3636,2229],[2360,2549],[2360,2550],[3700,2425,2551],3701,3699,[3701,2293],2423,2424,2358,2421,2357,2358,2360,2424,2424,2359,2423,[3700,2295],3635,3636,[3700,2229],2359,[3637,2233,3750],[3699,3751],[6292,3752],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3551],[2812,3552],[2875,3490],[2875,3493,6414],[2812,3553],2936,[2811,6658],[2876,6659],3067,3068,2935,3003,3004,2935,[2876,5204],5204,5204,5204,5204,5204,5204,5204,5204,5204,5204,[3000,5204],2811,2936,2936,2875,3003,3004,2876,2999,2812,2812,[2812,3687],3878,[6292,3879],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3615],[6559,3616],6557,[6621,6806],[6934,7390],[7004,7391],[6999,7392],[6998,7393],7069,6935,[6557,6742],[6559,6808],[6623,6806],6934,7001,7067,[7000,7459],[6559,7002,7460],6623,6622,6559,[6559,6871],[6998,7330],[7004,7331],[6999,7332],[6558,6872,7333],[6623,3615],[2360,3616],2424,2423,[2357,3425],[2359,3426],[2424,3430],2428,[2358,3488],3489,3490,3493,3494,[2358,3426],3552,3553,0,3558,3559,[2421,3426],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3699,4746],3701,[3637,7113],[3699,7114],3699,3701,3636,[3699,4808],[3701,4870],[3637,4871],[3701,4803],3636,3700,[3700,4808],[3635,4868],[3637,4869],[3700,4870],[3700,4871],[3637,4803],3636,3701,3636,3323,3387,[3323,2932],[3324,2933],3699,[3636,7813],3637,3323,3636,[3700,7813],3699,3324,3323,3635,3323,[3700,2837],3700,3636,3699,3636,3700,3699,3636,3700,3637,3323,3699,3701,3323,3699,3324,3387,[3701,2901],3700,3388,3388,3387,3701,3701,3636,3637,3635,3324,3324,3323,3701,3699,3700,[3636,7307],[3323,7308],3635,3637,3387,3635,3636,3388,3387,[3701,2170],[3637,2171],3701,3323,[3637,2774],3699,3700,3701,3699,[3635,4808],[3699,4809],[4932,2868],4933,[3700,4867],[3637,4868],[3637,4869],[3637,4870],[3636,4871,7621],[3700,4872],[4873,7685],[3700,4874,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12300,8572],12300,[12300,13477],[12300,13478],12300,[8492,14478],8496,8497,[8367,15057],[8432,15058],[8555,15059],[8939,8618,15060],[8874,8428],8938,[8938,8553],8555,[8554,13904,1301],1302,[8431,14100,1303],[8433,1304],[8810,8298,15057],[8938,8302,15058],[8939,8363,15059],[8938,8298,15060],[8874,8364],[8810,8363],[8938,8299],[8810,8300],[8939,8301],[8490,15057],[8493,15058],[8555,15059],[8304,15060],8490,[8432,14095,1301],1302,[14033,1303],[8431,13907,1304],[8556,15181],[8493,15182],[8556,15183],[8433,15184],8556,[8810,8298],[8938,8364],[8874,15245],[8874,8553,15246],[8369,15247],[8432,15248],8303,8492,[8431,15053],[8303,15054],[8555,15055],[8368,14480,15056],12300,[12300,13351],[12300,13352],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13160],12300,[8367,14542],8554,8433,[8369,15246],[8369,15247],8369,8491,8492,[8492,13213],13341,13218,13220,13278,13277,[8492,13345],[8492,14929],[8492,14930],[8491,14931],[8560,14932],8561,8492,8304,8368,8369,8555,8432,8368,[8431,13904],[8431,13840,1301],1302,[8492,13907,14480,1303],[12300,1304],[12300,13413],[12300,13414],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12908,8444],12973,12908,12972,[12973,14049],[12908,14050],[12972,14051],[12908,14052],12909,12973,12908,12972,12973,[12973,12615],[13648,12616],13648,13649,13648,13651,13648,13585,[13587,13261],[13648,13262],[13648,13263],13587,13649,13587,13648,13585,[13650,12623],[13585,12624],13651,13649,13650,13648,13584,13587,[13648,13128],[13650,13129],[13585,13130],[13648,13131],[13650,13132],13648,13586,13648,13584,13585,13585,13584,[13641,13392],[13576,13393],[13640,13394],[13512,13395],[13512,13393],[13576,13394],[13640,13395],[13641,13396],[13640,12998],[13641,13711,12998],[13641,13715,12998],13648,13651,13587,13584,13586,13585,13649,13586,13587,13649,13585,13651,13648,[13640,13715],[13512,13522],13576,13641,[13512,13583],13585,13587,13585,[13641,13459],13640,[13641,13647],13587,13650,13587,13648,[13648,12424],[13587,12488],[13650,12489],[13643,13652],13643,13643,[13643,13520],13648,13651,13585,13649,13651,13648,13651,13586,13584,13651,13584,13586,13648,13648,13586,13649,13585,13648,13648,13587,[13586,12686],[13648,12750],[13586,12812,7134],[13585,12813,7135],[13584,12812,7136],[13651,12813,7137],12810,12811,[13651,12745],[13651,12746],[13651,12747],[13587,12748],[13651,12749],[13585,12750],12751,[6617,12752,3558,7202],[6552,3559,7203],[2422,3426,7204],[2421,3429,7205],[2421,3430],[2360,2869],[2423,2870],[2421,2871],[2359,2872],[2422,3425,7190],[2424,3426,7191],[2422,3429,7192],[2422,3430,7193],2359,2423,2424,2360,2421,2421,[2422,2869],[2360,2870],[2359,2871],[2360,2872],2357,[3635,2231],3700,[3323,2420],[2422,2741],[2424,2742],[2422,2743],[2360,2744],2421,2360,2422,2421,2422,2358,[3387,2488],[3699,2489],[3635,3679],[3635,2420,3680],2421,2359,[2745,2549],[2746,2550],[2360,2551],2424,2358,[3324,2425],3388,[3637,2228],[2360,2613],[2423,2614],[2358,2615],[3635,2232,2616],3636,3636,[3635,2420],2359,2359,2421,2422,2421,2360,2423,2421,2423,[3635,2233],3635,[3388,2164],[3701,2165],2360,[2358,3750],[2297,3814],3815,[6292,3816],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3679],[2811,3680],[2876,6477],[2812,6478],[2812,6479],2811,2936,2875,3131,3132,2812,3067,3068,[3000,3750],[2812,3814,5268],[6292,3816,5268],[6292,5268],[6292,5268],[6292,5268],[6292,5268],[6292,5268],[6292,5268],[6292,5268],[6292,3488,5268],[2935,3489,5268],[2939,3553,5268],2940,2936,2936,2811,3067,3068,2811,[2999,3750],[3000,3810],[2935,3811],[3000,3814],[6292,3752],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3679],[6622,3680],6559,[6623,6871],[6557,7065],[6998,7455],[6935,7456],[6934,7457],7003,7003,7069,6935,6934,[7068,7138],[6999,7139],[6559,7065,7140],[6998,7141],[6621,7002],6558,6621,[6622,6806],[6557,6742],[6934,7394],[7069,7395],[6558,7002,7396],[6559,7397],[6558,3679],[2358,3430,3680],2357,[2422,3488],3489,3490,3494,[2357,3426],3552,3553,0,0,3558,3490,3553,0,0,0,3558,3490,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3635,4802,4810,7621],[3636,4803],[3700,7177],[3700,7178],[3636,4808],[3636,4868],[3699,4869],[3699,4872,7621],4934,4935,[3636,4867],[3636,4868],[3700,4869],[3701,4872],4932,[4933,3125],4934,4935,[3636,4802],[3699,4803],3635,3636,3635,3699,[3700,2996],[3637,2997],3635,3635,3701,3636,3637,3701,3324,3701,3635,3637,3323,[3636,2901],3388,3636,3323,[3700,2170],[3636,2171],3637,3699,3635,3701,3635,3701,3701,3323,3701,3388,3387,3635,3635,3701,3324,3636,3699,3699,3636,3700,3388,3637,3699,3636,3636,3387,3700,3323,3637,3636,3699,3387,3637,[3635,2932],[3700,2933],3635,3701,3323,3699,3324,[3636,2838],3635,[3636,4808],[3637,4870],[3701,4871],[3700,4872],4873,[3635,4996],[3701,4997],4931,[4932,2868],4933,4934,[4935,7685],4936,[3699,4937,7749],[3636,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8636],12300,12300,12300,12300,[8492,14542],8560,8561,[8493,15121],[8431,15122],[8432,15123],[8810,8364,15124],8874,[8810,8363],8369,8555,[8368,13903,1365],[8432,14737,1366],[8431,14100,1367],8490,[8491,15121],[8433,15122],[8554,15123],[8556,15124],8433,8555,8433,8368,8557,[8490,15121],[8490,15122],[8554,15123],[8557,15124],8367,[8433,14095,1365],[14097,1366],[14096,1367],[8495,14100],[8493,15245],[8368,15246],[8493,15247],[8369,15248],8303,8367,8432,[8874,8298],8431,8557,8433,8369,8493,[8554,15117],[8369,15118],[8367,15119],[8491,14544,15120],12300,12300,12300,12300,12300,12300,[12300,13413],[12300,13414],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8368,14606],[8432,14607],[8368,14543],[8492,14293],8492,8303,8490,8492,[8492,13149],13277,13219,13155,13219,13218,[8492,13345],[8492,14993],[8492,14994],[8492,14995],[8492,14996],8492,8492,8492,8491,8492,[8368,14929],[8556,14930],[8369,14931],[8555,14095,14932],[14097,1365],[8492,14161,1366],[8492,13970,14544,1367],12300,[12300,13477],[12300,13478],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12909,8508],12973,12973,12973,[12972,14113],[12908,14114],[12973,14115],[12909,14116],12908,12972,12972,12908,12972,[12972,12551],[13648,12552],13648,13587,13585,13648,13586,13586,[13586,13325],[13651,13326],[13587,13327],13648,13586,13584,13650,13648,[13648,12623],[13649,12624],13586,13648,13649,13648,13584,13586,[13651,13192],[13649,13193],[13586,13194],[13587,13195],[13587,13196],13584,13649,13648,13584,13650,13586,13648,13650,13586,13651,13584,13586,13649,13651,[13512,13652],[13641,13062,12998],[13512,13062,12998],[13641,13062,12998],[13512,13647],13648,13651,13585,13651,13650,13587,13650,13651,13587,13651,13584,[13512,13652],13641,13640,13512,[13640,13456],13648,13649,13650,13648,13585,[13513,13392],13587,13649,[13648,12361],[13648,12362],[13586,12365],[13649,12488],[13585,12489],13584,13651,[13643,13392],[13643,13458],13643,[13643,13521],13585,13650,13584,13651,13648,13650,13650,13650,13649,13585,13584,13650,13650,13648,13584,13650,13648,13585,13584,[13651,12559],12814,[6617,12876,7198],[6553,12877,7199],[6552,12876,7200],[6552,12877,7201],[6616,12874],[6616,12875],12809,12810,12811,12812,12813,12814,[6617,12815],[7851,7266],[6616,3558,7267],[6552,3490,7268],[6553,3493,7269],[6616,3494],[2421,3495],2422,2358,[2421,3488],[6617,3489,7254],[6617,3490,7255],[6552,3493,7256],[6616,3494,7257],[2360,3426],[2359,3429],[2424,3430],2424,2422,2421,2424,2358,2359,2424,2422,2422,[3387,2165],2360,[2422,2805],[2360,2806],[2359,2807],[2360,2808],2357,2358,2421,2421,2421,[3700,2233],3323,3323,[3323,2164,3743],[2423,3744],[2359,3745],2359,[2421,2613],[2421,2614],[2422,2615],[2359,2616],2359,[3636,2489],3635,[3699,2292],[2360,2677],[2423,2678],[2360,2679],[2358,2680],[3323,2169],3699,[3699,2484],[3636,2486],2359,2423,2422,2422,[2421,2549],[2423,2550],[2421,2551],2358,[3635,2297],3636,[3636,2228],2357,2421,[2359,3623],3878,[6292,3879],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3807],[2935,3744],[2875,3745],2876,2936,[2936,3750],[2936,3810],[2935,3811],[2876,3745],2936,2811,3131,3132,[2936,3687],[6292,3688],6292,6292,6292,6292,6292,6292,6292,[6292,3551],[3000,3552],[2876,3553],3003,3004,2876,2811,2812,[3131,3750],[3132,3812],[2935,3813],[2999,3814],3874,3875,3878,[6292,3816],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3743],[6557,3809],[6557,3811],[6622,3745],6621,[6559,7061],6998,7067,7068,6941,6937,6940,6999,[6998,7202],[6623,7002,7203],[6623,6741,7204],[6934,7205],6935,[6623,6746],[6623,6806],6934,6999,[6558,7063],[6558,7064,3425,7459],[6872,3429,7460],[6622,3426],3552,[3494,3553],[2423,3426],3552,3553,0,3558,3490,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[4801,4874,7685],[3636,4802],[3701,4868],[3635,4869],[3700,4872],[4932,7621],[4933,3188],[4936,7685],[3700,4998],[3635,4999],[4931,3124],4932,4933,4936,[3635,4996],[3636,4997],[3637,4998],[3636,4999],[4866,2868],[3637,4867],[3636,4868],[3636,4869],[3701,4803],3636,[3636,3060],[3637,3061],3701,[3699,4808],[3637,4868],[3636,4869],[3637,4803],3636,3701,3699,3637,3701,3701,3637,3700,3701,3635,3323,3699,3636,3701,3700,3636,[3635,4549],3701,3637,3637,3637,3388,3323,3637,3637,3635,[3700,4550],3700,3701,3635,3699,3700,[3637,7621],3700,3701,3636,3700,3701,3701,3699,3700,3636,3637,3636,3637,[3699,2996],[3701,2997],3699,3636,3637,3635,3637,[3700,2902],[3635,4808],[3700,4809],[4934,3124],4935,4936,[3701,4937],3635,3701,[3699,4995],[3701,4996],[3701,4997,7621],[3701,4998],[3636,4999,7749],[3701,5000,7621],[3701,7813],[3701,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12300,8699],12300,12300,12300,12300,12300,[8492,14606],[8492,14543],[8492,14293],[8433,15185],[8555,15186],[8492,15187],[8554,15188],[8938,8298],8368,8492,8554,[8557,13903],14097,[8368,13970],8490,[8369,15185],[8490,15186],[8368,15187],[8556,15188],8492,8492,8557,8303,8554,[8431,15185],[8556,15186],[8367,15187],[8369,15188],8557,[8492,14159],[8556,14164],[8368,14095],[8557,14100],8557,8492,8492,8490,8431,[8556,13904],[8492,13840],[8554,13840],[8432,13844],8368,8492,8555,8493,[8555,15181],[8491,15182],[8368,15183],[8554,15184],[8492,14416],12301,12300,12300,12300,12300,[12300,13477],[12300,13478],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13157],[12300,13158],12300,12300,12300,12300,12302,12307,[8492,14478],8492,8492,[8492,14925],[8492,14926],[8492,13213,14927],[8492,13407,14928],[8492,13406],[8492,13406],[8492,13405],[8492,13408],[8492,13216],[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,8492,8492,8492,[8492,14993],[8492,14994],[8492,14995],[8492,14095,14996],14801,[8492,13844],[8492,16689],[8492,14416,16690],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8627],8628,8629,8630,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12909,8315],12972,12973,[12908,14177],[12973,14178],[12972,14179],[12908,14180],12908,12908,[12972,8245],[12908,8246],[12972,8250],[12909,12615],[13587,12616],13586,13584,13587,13586,13584,13648,13585,13587,13651,13585,13586,13587,13649,13649,[13648,12494],[13586,12430],[13584,12431],13587,13586,13648,13584,13650,[13649,13256],[13651,13257],[13648,13258],[13584,13259],[13650,13260],13586,13650,13648,13649,13651,13587,13585,13650,13584,13650,13585,13651,13650,13586,13648,[13640,13392,13062],[13640,13458,13062],[13640,13456,13062],13649,13585,13584,13585,13585,13584,13587,13650,13651,13587,13587,13649,13649,[13577,13393],[13640,13394],[13640,13395],13651,13584,13587,13649,13585,13648,13585,13650,[13586,12424],[13649,12425],[13587,12426,13133],[13586,12429,13134],[13651,12489,13135],13651,13587,13651,13587,[13643,13652],13643,13643,[13643,13711],13649,13587,13587,13648,13648,13649,13650,13649,13651,13649,13585,13585,13651,13587,13651,13649,13587,13651,[13650,12559],[6617,12624],[6615,7262],[7850,7263],[6614,7264],[6614,7265],7916,7851,[6617,12873],[6616,12874],[6552,12875],[6616,12876],[6553,12877],[6616,12878],6617,[6616,7330],[7916,7331],[7915,7332],[6552,7333],[6551,3558],[6616,3559],[2360,3429],[2424,3426],[6552,3552],[6617,3553,7318],[6614,7319],[6616,7320],[6616,3558,7321],[6552,3490],[6617,3493],[6616,3494],[2423,3495],2422,2359,2422,2423,2358,2359,2424,2359,2358,2360,[2359,2869],[2358,2870],[2421,2871],[2359,2872],2360,2424,2359,2358,2423,[3636,2361],3637,[3387,2229],[2422,3807],3808,[2357,3744],[2359,3745],[2421,2677],[2424,2678],[2422,2679],[2424,2680],[3700,2296],3700,3700,[3635,2356],[2360,2741],[2357,2742],[2358,2743],[2424,2744],[3637,2425],3636,3636,3324,[3699,2484],2360,2394,2359,[2423,2613],[2360,2614],[2421,2615],[2424,2616],[3701,2361],3324,[3324,2292],2359,2422,[2424,3687],[6292,3688],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3872],[2999,3809],[2936,3810],[2935,3811],[2936,3814],[6292,3938],[6292,3939],[2935,3744],[2936,3745],2811,3000,2876,[2876,3623],[6292,3752],6292,6292,6292,6292,6292,6292,6292,[6292,3743],[2811,3744],[2936,3745],3067,3068,2875,2936,[2811,3750],[2935,3751],3876,3877,3878,[6292,3938],[6292,3939],[6292,3942],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3807],3873,3875,[6622,3744],[6621,3745],6622,[6623,7061],6998,6939,6999,6998,7003,6935,[6934,7266],[6935,7267],[6934,7268],[7004,7269],6940,6935,6934,6999,[6623,7066],[6622,3488],3489,3493,3490,3553,3558,3490,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3701,4937],[3699,4865,7749],4866,[4932,7621],4933,4936,[3700,4996,7685],[3701,4997],[3636,5000,7749],3701,3637,[3700,4995],[3700,4996],[3700,4997,3125],[3699,5000],3699,3700,3636,3637,[3700,4930],4931,[4932,3188],4933,[3701,4802],[3637,4803],3637,3700,[3635,4808],[3636,4809],[4932,2868],4933,[3636,4802],[3699,4803],3324,3323,3323,3387,3636,3635,[3636,7115],[3324,7116],3699,3323,3324,3388,3636,3323,[3636,4808],[3636,4613],3637,3635,3323,3699,3637,3323,3701,3699,3699,[3700,4614],[3701,4803],3699,3700,3636,3700,[3635,7685],3637,3636,3699,3635,3700,3699,3701,3637,3637,3699,3635,3700,[3635,3060],[3635,3061],3636,3700,3700,[3635,4808],[3700,4868],[3701,4869],[3701,4872],4873,[3637,4998],[3635,4999],[3635,5000],3699,3701,3635,3637,3635,[3635,7685],[3699,7693],[3701,7813],[3701,7685],[3637,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,[8492,14478],8556,[8557,15250],[8557,15251],8554,8367,8492,8367,8305,[8492,13967],[8492,14100],8432,8492,8493,[8493,15250],[8492,15251],8432,8492,8492,8492,8492,8492,8491,[8431,15250],[8369,15251],8555,8492,[8492,14929],[8492,14930],[8492,14095,14931],[8492,14033,14932],[8492,13907],8492,[8492,13839],[8432,13840],[8369,13840],14032,14034,14609,14033,[8492,13840],[8492,13907],8431,8432,[8554,15245],[8491,15246],[8493,15247],[8490,15248],8492,[8492,14415],[8492,14416],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13221],[12300,13222],12300,12300,12300,12300,[12300,13354],[12300,13355],[8492,14478],8492,8492,[8492,14989],[8492,14990],[8492,14991],[8492,14992],8492,8492,8492,8492,8492,[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,8492,8495,8492,8492,[8492,15057],[8492,15058],[8492,15059],[8492,13969,15060],14096,[8492,13908],[8492,16753],[8492,14480,16754],12301,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8692],8693,8502,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12973,8249],[12973,8246],[12908,8250,14241],[12973,14242],[12909,14243],[12909,14244],12909,[12973,8308],8309,8310,[8314,12424],[13651,12425],[13650,12489],13586,13585,13587,13650,13586,13587,13650,13650,13587,13650,13651,13650,13585,13649,13651,[13587,12494],[13587,12495],[13648,12496],13586,13584,13650,13649,[13586,13320],[13648,13321],[13586,13322],[13585,13323],[13651,13324],13649,13586,13650,13586,13585,13649,13648,13651,13584,13648,[13586,13126],[13650,13127],13585,13584,13649,13648,13585,13585,13586,13584,13650,13649,13585,13584,13587,13648,13650,13586,13585,13650,13651,13585,13587,13649,13649,13587,13650,13585,13584,13587,13584,[13585,12487],[13650,12488],[13650,12489],[13649,13197],[13650,13198],[13650,13199],13586,13585,13586,13651,13585,[13643,13396],13643,13643,[13643,13455],13586,13650,13584,13587,13585,13649,13651,13648,13650,13648,[13649,13128],[13584,13129],[13584,13130],[13585,13131],[13649,13132],13649,13587,[13650,12623],[6552,12624],[6614,7326],[7850,7327],[6552,7328],[6552,7329],7916,6551,6616,6617,7916,[7851,7126],[7916,7127],[7916,7128],[6553,7129],[6616,7394],[6551,7395],[6553,7396],[6615,7397],6616,[7916,3558],[6617,3493],[6616,3490],[6551,3553],[6550,7382],[7915,7383],[6615,7384],[6552,7385],6614,6551,[6550,3558],[6616,3559],[2421,3426],[2359,3429],[2424,3426],[2359,3430],2421,2421,2360,2421,2423,2358,2359,2359,[2422,1914],[2360,1915],[2421,1916],2360,2360,2358,2357,2360,[3637,2165],2358,2358,[2360,3872],3808,[2358,3809],[2359,3745,2741],[2421,2742],[2423,2743],[3700,2233,2744],3637,3637,[3701,2229],2358,[2423,2805],[2421,2806],[2360,2807],[2424,2808],2421,[3323,2165],[3635,2231],3637,3637,[3699,2420],2358,2423,[2359,2677],[2358,2678],[2423,2679],[2357,2680],[3635,2425],3637,[3635,2356],2357,2360,[2421,3558],[2357,3559],[6292,3560],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3937],[6292,3938],[6292,3939],[6292,3942],6292,6292,[6292,3872],[2935,3744],[2999,3810],[2811,3811],[2999,3812],[2936,3814],[6292,3816],6292,6292,6292,6292,6292,6292,6292,[6292,3807],3808,[2936,3809],[3131,3810,1903],[3132,1904],[3000,1905],[3000,3813,1906],[2935,3814],3815,[6292,3940],[6292,3941],[6292,3942],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3937],[6292,3939],3808,[6621,3809],[6623,3745],6559,[6623,6997],6937,[6621,7002],[6558,6870],[6559,7065],6998,[7004,7330],[7003,7331],[6999,7332],[6623,7062,7333],[6623,7064],6998,7000,[6621,7002],[6621,3551],3552,3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3636,4682],3637,[3701,7813],[3701,4930,7693],[3637,4996,7685],[3637,4997],[3636,5000,7693],[3635,7749],3700,[3635,7813],3636,3637,3635,3699,3701,3701,3699,3636,3637,3636,3636,[3700,4995],[3635,4996],[3637,4997],4866,[3636,4867],[3699,4868],[3699,4869],[3637,4872],4873,[3701,4996],[3700,4997],4866,[3635,4867],[3700,4868],[3637,4869],[3636,4870],[3700,4871],[3700,4803],3637,[3323,7179],[3388,7180],3699,3699,3700,[3699,4808],[3699,4868],[3635,4869],[3635,4872],[3637,4677],3700,3636,3700,3701,3699,3324,3699,3700,3637,[3699,4678],[3637,4802],[3637,4803],3636,3701,3699,[3701,7749],3701,3701,3700,3635,3700,3700,3636,3700,3635,3636,3699,3636,3637,3635,3701,3637,[3701,4808],[3637,4809],[4932,3124],4933,4936,[3701,4937],3700,[3699,1914],[3635,1915],[3699,1916],3701,3636,3637,3699,[3635,7749],[3700,7757],[3636,7621],[3700,7749],[3636,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,[8492,14478],8492,8492,8492,8492,8496,8497,8492,8492,[8492,14031],14611,[8492,13840],[8492,13907],8492,8492,8303,8492,8492,8492,8492,8496,8497,8492,8492,8492,8492,8492,[8492,14993],[8492,14994],[8492,13969,14995],[14096,14996],14801,[8492,13840],14032,14097,[8492,14161],[8492,14162],14096,14738,14737,14737,14033,[8492,13844],8492,8492,8492,8492,8492,8304,8492,[8492,14480],12302,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14542],8492,8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8492,8492,8492,8492,8492,[8492,15185],[8492,15186],[8492,15187],[8492,15188],8492,8492,8492,8492,8492,[8492,15121],[8492,15122],[8492,15123],[8492,15124],[8492,14095],[8492,13972],8492,[8492,14544],12300,12300,[12300,13354],[12300,13355],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8757],[12300,8758],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8314,[12972,8249],[12908,8246],[12908,8249],[12972,8246],8372,8373,12487,[13651,12488],[13587,12489],13650,13587,13648,13648,13650,13648,13649,13649,13587,13649,13648,13648,13651,13585,13584,[13651,13189],13586,[13584,12559],[13651,12560],13649,13648,13650,13648,[13584,13384],[13585,13385],[13584,13386],[13648,13387],[13584,13388],13585,13586,13649,[13648,12361],[13584,12362],[13587,12365],[13650,12366],13585,13650,13648,[13651,13190],[13584,13191],13651,13584,13584,13651,13649,13584,13586,13586,13584,13649,13585,13584,13585,13585,13650,13650,13585,13585,13587,13649,13650,13584,13650,13584,13586,13651,13649,13648,13651,[13649,12551],[13651,12552],13584,[13651,13261],[13584,13262],[13648,13263],13650,13586,13649,13587,13585,13648,[13643,13458],13643,[13643,13583],13584,13584,13648,13587,13648,13585,13585,13650,13648,13586,[13650,13192],[13586,13193],[13651,13194],[13649,13195],[13648,13196],13649,13587,[13584,12494],[13586,12430],[6553,12431,7390],[6616,7391],[6552,7392],[7916,7393],7916,7850,6550,[6563,6679],[6565,6680],[6553,7190],[7915,7191],[7852,7192],[6550,7193],6615,[6551,7459],[6550,7460],6616,7852,6615,6553,7916,6553,7915,[6553,7447],[6616,7448],6617,7852,7787,6614,[6616,3558],[6553,3490],[6552,3493],[6617,3490],[6617,3494],[2422,3495],2358,2422,[2359,2549],[2422,2550],[2424,2551],2424,2423,[2423,1978],[2421,1979],[2360,1980],2360,2421,2422,2360,[2424,2549],[2357,2550],[2357,2551],2358,2360,[2358,3872],3873,[2424,3616,2805],[2360,2806],[2359,2807],[3700,2361,2808],3636,3701,[3323,2420],2357,[2423,2869],[2359,2870],[2422,2871],[2424,2872],2423,[2360,2549],[2357,2550],[3700,2166,2551],[3637,2168],2358,2360,2424,[2424,2741],[2360,2742],[2360,2743],[2423,2744],2359,[3637,2165],2359,2360,2421,2360,[2357,3623],[6292,3624],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3937],[6292,3938],[6292,3939],[6292,3940],[6292,3942],6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3872],3873,[3874,1903],1904,1905,[3877,1906],3878,[6292,3879],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3872],3873,[6557,3680],6558,[6621,6997],6941,[6557,7002],6557,6623,[6621,7061],[6622,7062,7394],[6998,7395],[6558,7002,7396],[6558,7397],6558,[6559,6997],6999,[6559,6872],[6622,3615],3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3701,4746],3701,3701,[3701,7757],[3701,7749],3699,[3699,7757],[3699,7813],3387,3699,3637,3635,3637,[3388,2712],3635,3388,3700,3699,3323,3636,3636,3637,3636,3637,[3700,4930,3125],4931,[4932,3124],4933,4936,[3635,4937],3637,3635,[3636,4930],4931,4932,[4933,3188],4934,4935,[3700,4802],[3701,4803],3635,3699,[3701,4808],[3635,4868],[3636,4869],[3637,4872],4932,4933,[4936,2868],[3700,4741],3637,3387,3388,3699,3701,3637,3388,3636,3700,[3700,4742],[4866,3188],[3636,4867],[3701,4803],3701,3699,[3701,7813],3637,3700,3637,3637,3635,[3700,4808],[3636,4868],[3701,4869],[3699,4803],3637,3699,[3700,4808],[3701,4868],[3699,4869],[3699,4870],[3700,4871],[3637,4872],4873,[3636,4996],[3699,4997],[3699,5000],3699,3701,[3635,1978],[3636,1979],[3637,1980],3701,3699,[3637,2932],[3700,2933],[3637,7813],3637,[3701,7685],[3700,7813],[3701,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8632,8633,8571,[12300,8572],12300,12300,12300,12300,12300,12300,12300,[8492,14414],8492,8492,8492,8304,8492,8560,8561,[8492,14925],[8492,14926],[8492,13969,14927],[8492,14162,14928],14096,[8492,14100],8492,8492,8492,8492,8492,8492,8492,8560,8561,8492,8492,8492,8492,8305,[8492,15057],[8492,15058],[8492,15059],[8492,13969,15060],[8492,14161],[8492,14161],[8492,14163],[8492,14164],8492,8492,[8492,13969],[8492,14162],14096,14674,14675,[8492,13908],8492,[8492,14929],[8492,14930],[8492,14931],[8492,14932],8492,8492,8492,[8492,14415],[8492,14416],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,13160],12300,[8492,14414],8492,8492,8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,8495,8492,8492,8492,8492,[8492,15250],[8492,15251],8492,8492,8492,8492,8492,8492,[8492,15185],[8492,15186],[8492,15187],[8492,13904,15188],14032,[8492,14036],8492,[8492,14925],[8492,14415,14926],[8492,14416,14927],[12300,14928],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8692],8693,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8313,8310,8373,0,12551,[13649,12552],13648,13586,13651,13586,13586,13649,13587,13649,13651,13651,13648,13648,13586,13651,13585,13586,13587,13587,[13651,12623],[13649,12624],13586,13587,13586,13586,13587,[13585,13449],[13584,13450],[13648,13451],13650,13586,13585,[13585,12424],[13587,12425],[13651,12426],[13648,12429],[13648,12430],[13650,12431],13651,13649,13651,13650,13586,13584,13648,13649,13585,13651,13650,13651,13651,13651,13587,[13648,12361],[13584,12362],[13584,12365],[13586,12366],13648,13648,13587,13648,13586,13648,13585,13585,13648,13650,13650,13649,13649,13650,[13587,12615],[13651,12616],13586,[13586,13325],[13586,13326],[13650,13327],13584,13587,13651,13648,13651,13648,13585,[13643,13392],13650,13587,13649,13651,[13650,2147496641],[13584,12993],13649,13649,13650,13586,13650,[13586,13256],[13651,13257],[13649,13258],[13584,13259],[13584,13260],13649,13648,13650,[13651,12494],[13649,12495],[6617,12496,7455],[7852,7456],6614,7850,7788,[6627,6618],6626,6564,[6565,6421,7254],[7916,7255],[6552,7256],[6552,7257],6616,6615,6616,6551,6614,7916,6550,6614,[6614,7134],[6614,7135],[7850,7136],[7915,7137],7852,6615,7916,7850,[7916,7126],[7851,7127],[7852,7128],[7852,7129],[7916,3558],[6553,3559],[2357,3560],2357,[2422,2613],[2422,2614],[2423,2615],[2422,2616],2357,[2421,2042],[2359,2043],[2359,2044],2357,2359,2421,2421,[2424,2613],[2421,2614],[2359,2615],[2358,2616],2421,2423,[2421,8001],[2359,8002,2869],[2421,2870],[2357,2871],[3636,2489,2872],[3701,2229],[3701,2165],2358,2422,2422,2358,2360,2423,2358,[2359,2613],[2422,2614],[2357,2615],[2421,2616],2357,2359,2358,[2357,2805],[2423,2806],[2423,2807],[2360,2808],[2359,7134],[2359,7135],[2360,7136],[2360,7137],2423,2358,[2424,3687],[6292,3688],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3937],[6292,3938,1903],[6292,1904],[6292,1905],[6292,3941,1906],[6292,3942],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3551],[6622,3552],[6558,3553],6559,[6558,6997],6999,[6622,7066],6622,6623,6559,6621,[6557,6871,7459],[6623,6872,7460],6559,6621,[6623,6871],[6557,7066],6623,[6623,3679],3680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3637,4553],3635,3700,[3700,7813],3637,3700,3635,3323,3701,3323,3637,3636,[3700,2776],3701,3700,3323,3635,3323,3636,3635,3700,3637,3635,3635,[3699,4995],[3636,4996],[3699,4997],[3635,5000,3125],3699,3700,3700,3700,[3701,4995],[3699,4996],[3701,4997],[3636,4998],[3700,4999],4866,[3700,4867],[3637,4868],[3699,4869],[3701,4872],4932,4933,[4936,3125],[3699,4996],[3701,4997],[3701,5000],3700,3701,3699,3635,3699,3637,3699,3324,3637,3700,3701,[3699,4930],4931,[3701,4867],[3699,4868],[3700,4869],[3701,4870],[3699,4871],[3700,4868],[3701,4869],[3699,4870],[3699,4871],[3701,4872],[4932,3188],4933,[3636,4867],[3637,4870],[3637,4871],[3635,4872],4932,[4933,3125],4934,4935,4936,[3637,4937],3636,3700,3699,3636,3699,[3636,2042],[3699,2043],[3701,2044],3699,3700,[3700,2996],[3699,2997],3699,3637,[3700,7749],[3701,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8696,8697,8635,[12300,8636],12300,12300,12300,12300,12300,[8492,14414,16689],[8492,14415,16690],8492,8492,8492,8492,8492,8492,8492,8492,[8492,14989],[8492,14990],[8492,14991],[8492,14992],[8492,14095],14611,[8492,13907],[8492,14929],[8492,14930],[8492,14931],[8492,14932],8492,8492,8492,8492,8492,8492,8492,[8492,16689],[8492,16690],[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,8492,8492,[8492,14925],[8492,14926],[8492,14927],[8492,14928],8492,[8492,13968],14096,14098,[8492,13908],8492,[8492,14993],[8492,14994],[8492,14995],[8492,14996],8492,8492,8492,[8492,16689],[8492,14480,16690],12301,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14478,16689],[8492,16690],8495,8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,[8492,1109],[8492,1110],[8492,1111],8492,8492,8492,8492,8492,[8492,13905],[8492,13840],[8492,13907],8492,8492,[8492,13839],[8492,13844,15250],[8492,15251],[8492,14095],14097,[8492,13971],8492,[8492,14989],[8492,14990],[8492,14991],[8492,14415,14992],[8492,14416],12308,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12615,[13587,12616],13584,13650,13584,13648,13650,13648,13651,13648,13584,13587,13649,[13586,2147496641],[13649,12993],13584,13649,13585,13587,13585,[13649,12494],[13650,12430],[13649,12431],13651,13586,13585,13650,13585,13649,13650,13584,13649,[13585,12487],[13585,12488],[13586,12489],13586,13650,[13651,12494],[13649,12495],[13651,12365],[13587,12431],13651,13584,13650,13584,13648,13650,13648,13650,13650,13648,13586,13650,[13585,12424],[13585,12425],[13649,12426],[13650,12429],[13585,12430],[13648,12496],13651,13585,13584,13648,13586,13650,13649,13649,13648,13587,13648,13649,13586,[13650,12551],[13586,12552],13587,13650,13649,13586,13651,13587,13586,13587,13587,13651,13650,13584,13584,13651,13649,[13651,2147496706],[13584,2147496705],[13648,13057],[13585,13058],13586,13650,13651,13585,[13586,13320],[13586,13321],[13585,13322],[13586,13323],[13648,13324],13585,13648,13649,13585,[13648,12559],[6617,12560],7916,7852,7916,7852,6614,[6562,6424],6629,[6626,6485,7318],[6550,7319],[6553,7320],[6616,7321],6553,6551,6616,6615,6617,7916,6550,7786,[6551,7198],[6553,7199],[6615,7200],[6552,7201],7852,6614,6617,7850,[6553,7190],[7852,7191],[6553,7192],[6616,7193],6551,[6553,3623],[2358,3624],2424,[2357,2677],[2423,2678],[2421,2679],[2359,2680],2424,[2359,2106],[2424,2107],[2422,2108],2357,2357,2423,2423,[2423,2677],[2421,2678],[2424,2679],[2360,2680],2357,2422,[2424,8065],[2359,8066],2423,[3637,2295],3636,[3637,2420],2358,2422,2357,2423,2423,2421,2358,2357,[2423,2677],[2423,2678],[2424,2679],[2424,2680],2423,2423,2359,[2358,2869],[2422,2870],[2360,2871],[2359,2872],[2357,7198],[2357,3425,7199],[2421,3426,7200],[2358,3429,7201],[2422,3426],[2360,3429,3750],[2423,3429,3751],[6292,3752],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,1903],[6292,1904],[6292,1905],[6292,1906],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3615],[6559,3616],6558,6622,[6558,6870],[6621,6873,7126],[6621,3425,7127],[6622,3426,7128],[6558,3429,7129],[6623,3430],6558,6622,6559,6558,6559,6558,6621,[6623,3488],[8315,3489],3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3636,4487],[3700,4484],[3636,4488],3636,3699,[3637,6481],[3637,6482],[3635,6483],3635,3700,3323,[3701,2840],3636,3324,[3388,2932],[3637,2933],3388,3699,3701,3323,3323,3637,3387,3636,3637,3636,3701,3700,3700,3636,3636,3635,3635,3636,3637,3635,[3636,4930],4931,4932,[4933,3124],4936,[3699,4996],[3637,4997],[3636,5000],3637,3701,3323,3323,3699,3701,[3388,2671],3636,[3323,2673],3699,3700,3701,3637,3700,3635,[3636,4995],4931,4932,4933,4934,[4935,3124],4932,4933,4934,4935,4936,[3701,4996],[3699,4997],4931,4934,4935,4936,[3636,4996],[3700,4997],[3699,4998],[3635,4999,3125],[3699,5000],3701,3700,3635,3635,3635,3699,[3635,2106],[3699,2107],[3699,2108],3635,3636,[3699,3060],[3636,3061],[3636,7693],3701,[3700,7813],[3701,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8760],[12300,8761],[12300,8636],12300,12300,12300,12300,12300,12300,[8492,14478,16753],[8492,16754],8492,8492,8492,8492,8492,8492,8492,8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],[8492,14159],14096,[8492,14100],[8492,14993],[8492,14994],[8492,14995],[8492,14996],8492,8495,[8492,16689],[8492,14292,16690],[8492,14479],[8492,14607],[8492,14543],[8492,14293,16753],[8492,16754],[8492,15185],[8492,15186],[8492,15187],[8492,15188],8492,8496,8497,[8492,14989],[8492,14990],[8492,14991],[8492,14992],8492,[8492,13839],14032,14034,[8492,13972],8492,[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,8492,[8495,16753],[8492,14544,16754],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14542,16753],[8492,16754],8492,8492,[8492,15245],[8492,15246],[8492,15247],[8492,15248],8492,[8492,1173],1174,[8492,1175],[8492,1176],8492,8303,[8492,14925],[8492,14926],[8492,13968,14927],[14096,14928],[8492,14100],8492,8492,[8492,14095],14033,14611,14032,14033,[8492,13906],8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8492,[8492,14415],[8492,14416,16689],[12300,16690],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12679,[13586,12680],[13586,12681],13650,13651,13584,13586,13650,13587,13651,13649,13651,[13586,2147496706],[13585,2147496705],[13586,13057],[13649,13058],13648,13586,13585,13584,13585,[13649,12494],[13586,12495],[13584,12365],[13587,12362],[13585,12366],13585,13584,13649,13585,13649,13584,[13586,12615],[13650,12616],13584,13649,13587,13651,[13586,12494],[13649,12429],[13585,12495],[13585,12496],13651,13651,13650,13585,13651,13651,13585,13586,13650,13649,[13584,12487],[13650,12488],[13648,12489,13128],[13586,13129],[13587,13130],[13650,12559,13131],[13651,12560,13132],13586,13586,13650,13586,13587,13585,13584,13648,13650,13651,13584,13651,13584,[13648,12615],[13651,12616],13649,13648,13651,13585,13648,13586,13586,13649,13587,13649,13584,13586,13648,13584,[13587,2147496771],[13650,2147496770],[13584,2147496769],[13649,13121],[13650,13122],[13586,13123],13584,13586,13584,[13650,13384],[13651,13385],[13584,13386],[13587,13387],[13649,13388],13586,13584,13584,[13649,12686],[13648,12687],[6616,12688],7915,7852,7850,7851,6553,[6565,6426],6562,[6562,6549,7382],[7915,7383],[6550,7384],[6629,6678,7385],[6626,6680],[6626,6679],[6629,6678],[6563,6679],6553,7915,6553,6552,[6614,7262],[6551,7263],[6551,7264],[7915,7265],7915,6550,6551,6552,[6552,7254],[7915,7255],[7915,7256],[6551,7257],6553,[6616,3687],[2357,3688],2359,[2423,2741],[2422,2742],[2357,2743],[2360,2744],2422,2357,2422,2422,2424,2424,2358,2360,[2359,2741],[2359,2742],[2359,2743],[2359,2744],2359,[2357,7134],[2358,8129,7135],[2358,8130,7136],[3324,2425,7137],3635,[3701,2229],2359,2423,[2458,2549],[2422,2550],[2424,2551],2359,2422,2422,2357,[2358,2741],[2357,2742],[2421,2743],[2423,2744],2555,2556,2358,2423,2423,2421,2359,[2424,3488,7262],[6552,3489,7263],[6616,3490,7264],[6552,3493,7265],[6552,3490,3750],[3493,3814],3815,[6292,3816],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,1903],[6292,1904],[6292,1905],[6292,1906],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3679],[6623,3680],6558,6622,6622,[6622,3551,7190],[6621,3489,7191],[6559,3490,7192],[6621,3493,7193],[6557,3494],[6623,3426],[6557,6369,3429],[6623,6370,3426],[6623,6437,3429],[6557,3426],[6621,3429],[6623,3426],[6557,3552],[6559,8314,3553],8315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4548,4552,[3637,4553],3636,[3323,6545],6546,[3701,6547],[3701,6548],3387,3637,[3636,2904],3636,3324,[3637,2996],[3636,2997],3700,3700,3700,3636,3323,3699,3387,3635,3637,3637,3701,3323,3635,3635,3323,3635,3323,3701,3324,3699,3700,[3699,4995],[3700,4996],[3701,4997],[3699,5000],3700,3701,3699,3700,3701,3323,3636,3701,[3323,2734],[3323,2735],[3635,2736],[3324,2737],[3323,2738],3700,3635,3701,3700,3635,3700,[3636,4995],[3637,4996,3125],[3637,4997],[3637,4998],[3701,4999],[3699,4996],[3636,4997],[3637,4998,3125],[3700,4999],[3636,5000],[3636,7119],[3635,7120],[3636,4995],[3637,4998,3124],[3635,4999],[3635,5000],3700,3637,3637,3700,3635,3637,3699,3636,3699,3636,3635,3636,3636,3700,3637,3700,3635,3637,[3701,7757],3635,3636,[3700,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12300,8699],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14542],8492,8492,[8492,14929],[8492,14930],[8492,14931],[8492,14932],8492,8492,8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],[8492,13905],14032,[8492,14100],[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,[8492,16753],[8492,14480,16754],[12300,13354],[12300,13355],12307,[8492,14222],[8492,14223],[8492,14224],[8492,14225,15250],[8492,14226,15251],[8492,14227],[8492,14543],[8560,14293],8561,[8492,15053],[8492,15054],[8492,15055],[8492,15056],[8492,13839],14032,14099,14611,[8492,14036],8492,[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,[8492,14292],[8492,14479],[8492,14607],[8492,14608],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14606],[8492,14607],[8492,14543],[8492,14293],8492,8492,8492,8492,8492,[8492,13904,1237],1238,[8492,13840,1239],[8492,13844,1240],[8492,1241],8492,[8492,14989],[8492,14990],[8492,14991],[8492,14095,14992],14801,[8492,13840],[8492,13906],[8492,13968],14096,14097,[8492,14163],14096,14033,[8492,13840],[8492,13906,15117],[8492,15118],[8492,15119],[8492,15120],8492,8492,[8492,16753],[8492,14416,16754],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12743,12744,[13587,12745],[13649,12681],13651,13585,13651,13651,13649,13651,13585,[13585,2147496771],[13585,2147496770],[13649,2147496769],[13649,13121],[13584,13122],[13650,13123],13651,13587,13651,13650,13651,[13648,12494],[13650,12429],[13649,12426],[13649,12430],[13648,12431],13585,13585,13586,13587,[13650,12424],[13651,12425],[13585,12489],13651,13585,13651,13586,13648,13584,[13651,12559],[13649,12560],13650,13649,13586,13649,13584,13649,13650,13649,13651,13648,[13649,12551],[13648,12552],[13585,13192],[13586,13193],[13586,13194],[13650,12623,13195],[13651,12624,13196],13584,13587,13585,13649,13584,13648,13585,13648,13587,13651,13648,13649,13649,[13649,12679],[13649,12680],[13586,12681],13587,13650,13650,13587,13650,13651,13585,13585,13648,13650,13584,13586,13584,[13584,2147496835],[13585,2147496834],[13651,2147496833],[13650,13185],[13585,13186],[13649,13187],13587,13585,13650,13585,[13651,13449],[13650,13450],[13651,13451],13651,13650,13649,13648,[13587,12559],12751,[6617,12752],7916,6616,6615,6615,6617,[6629,6490],6627,[6562,6487],[6629,6680,7447],[6626,6682,7448],6629,6563,6629,6562,6565,[6626,6613],7852,6553,6551,[7852,7326],[6550,7327],[6616,7328],[6614,7329],6616,7852,6553,6552,[7915,7318],[6616,7319],[6614,7320],[6552,7321],6551,[6617,3623],[2360,3624],2423,[2360,2805],[2360,2806],[2423,2807],[2421,2808],2359,2360,2359,2357,2421,2424,2357,2424,[2423,2805],[2423,2806],[2422,2807],[2422,2808],2421,[2357,3425,7198],[2358,3679,3426,7199],[2422,3680,3429,7200],[2421,3430,7201],[3388,2165],2357,2422,2421,[2357,2613],[2421,2614],[2357,2615],[2424,2616],2360,2358,2360,[2423,2805],[2421,2806],[2360,2807],[2357,2808],2619,2620,2422,2359,[2423,3425],[2422,3426],[2357,3429],[6553,3552,7326],[7850,3553,7327],[6552,7328],[7852,7329],[6553,3623],3878,[6292,3879],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,7134],[6292,7135],[6292,7136],[6292,7137],6292,6292,6292,6292,6292,[6292,1903],[6292,1904],[6292,1905],[6292,1906],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3743],[6559,3744],[6622,3745],6559,6623,[6558,6806,3615,7254],[6557,6742,3616,7255],[6558,6808,7256],[6623,7257],[6558,3558],[6557,3490],[6559,6625,3493],[6565,3490],[6621,6438,3493],[6622,3490],[6559,3493],[6557,3490],[6623,3553,7126],[6621,8378,7127],[6559,8379,7128],[8246,7129],8250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3637,4618],[3701,6609],6610,[3637,6611],[3700,6612],3636,3323,3637,3388,3699,[3701,3060],[3701,3061],3699,3636,3323,3387,3699,3387,3637,3323,3699,3635,3324,3699,3701,3636,3637,3701,3635,3701,3323,3637,3637,3699,3700,3701,3637,3699,3701,3323,3635,3700,3388,[3700,2796],[3637,2797],[3701,2798],[3388,2799],[3699,2800],[3701,2801],[3699,2802],3637,3699,3701,3701,3636,3636,3701,3700,3700,3637,3699,3636,3699,3636,3700,3637,[3637,7183],[3635,7184],3635,3701,3699,3700,3701,3700,3635,3636,3637,3635,3699,3699,3700,3699,3699,3700,3699,3636,3700,3636,3637,3636,3636,3700,3700,[3636,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14414],8492,8305,8492,[8492,14993],[8492,14994],[8492,14995],[8492,14996],8492,8492,8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],[8492,14095],14097,[8492,13971],[8492,15121],[8492,15122],[8492,15123],[8492,14292,15124],[8492,14225],[8492,14226],[8492,14227],[8492,14228],12300,12300,12300,12300,12300,12308,12300,12300,12300,12301,[8492,14478],8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],[8492,13903],14034,14675,14097,[8492,13971],8492,[8492,15185],[8492,15186],[8492,15187],[8496,15188],[8497,16689],[8492,14480,16690],12307,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12307,12308,[8492,14478],8492,8492,8492,8492,8492,[8492,14095,1301],1302,[8492,14674,1303],[8492,14100,1304],8492,8492,[8492,15053],[8492,15054],[8492,15055],[8492,13968,15056],[8492,14162],14096,14033,[8492,13840],14032,[8492,14100],8492,[8492,13968],[8492,14160],14096,[14033,15181],[8492,13907,15182],[8492,15183],[8492,15184],8492,8305,8492,[8492,14480],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12808,12809,[13584,12552],[13585,13133],[13648,13134],[13648,13135],13586,13648,13649,13586,[13586,2147496835],[13649,2147496834],[13649,2147496833],[13648,13185],[13585,13186],[13586,13187],13650,13649,13585,13648,13586,13586,13650,13584,[13650,12494],[13587,12495],[13586,12365],[13586,12362],[13650,12365],[13651,12362],[13643,13714,12488],[13650,12489],13586,13651,13648,13584,13584,13584,13585,[13649,12494],[13584,12430],[13587,12431],13587,13649,13649,13584,13650,13648,13587,13649,13584,[13584,12615],[13649,12616],[13586,13256],[13587,13257],[13648,13258],[13584,12494,13259],[13587,12430,13260],[13586,12431],13585,13649,13585,13650,13649,13584,13649,13649,13585,13648,13650,13584,[13585,12743],12744,[13651,12745],[13584,12681],13587,13648,13649,13650,13586,13651,13586,13650,13651,13587,13584,13587,[13650,2147496899],[13586,2147496898],[13651,2147496897],[13587,13249],[13585,13250],[13651,13251],13585,13649,13649,13584,13651,13650,13649,13648,13587,13650,13584,[13650,12559],[6617,12624],7915,7850,6550,6617,6551,6551,[6565,6554],6628,6626,6563,6626,6565,[6562,6357],[6629,6359],[6628,6360],[6629,6361],6615,6552,7851,7915,[6617,7390],[6617,7391],[6614,7392],[7852,7393],6614,6616,7915,7852,[7850,7382],[6616,7383],[7916,7384],[7915,7385],7916,[6617,3687],[2424,3688],2358,[2359,2869],[2421,2870],[2358,2871],[2360,3425,2872],[2424,3426],[2357,3429],[2357,3430],2423,2357,2359,2357,2357,[2422,2869],[2424,2870],[2357,2871],[2360,2872],[2360,3488],[6552,3489,7262],[6552,3490,7263],[6616,3493,7264],[6617,3494,7265],[2360,3560],2358,2424,2422,[2357,2677],[2357,2678],[2421,2679],[2358,2680],2422,2424,2423,[2360,2869],[2421,2870],[2423,2871],[2422,2872],2358,2360,2423,[2423,3488],[6553,3489],[6553,3490],[6552,3493],[6550,3553,7390],[6550,7391],[6551,7392],[6614,7393],[6553,3623],[6292,3624],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,7198],[6292,3425,7199],[6292,3429,7200],[6292,3430,7201],6292,6292,6292,6292,6292,[6292,1903],[6292,1904],[6292,1905],[6292,1906],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3807],3808,[6559,3809],[6622,3745],[6623,3488],[6621,6997,3489,7318],[7000,3553,7319],[6557,7002,7320],[6557,7321],6559,[6559,6435],6562,6628,[6559,6502],6559,[6621,6806],[6558,6809],[6559,7190],[6558,7191],[6559,8378,7192],[6621,8310,7193],[6559,8314],8315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3636,4682],[3699,6673],[3323,6674],[3701,6675],[3701,6676],3635,3388,3699,3700,3701,3323,3323,3699,3700,3700,3636,3636,3388,[3637,7693],3387,3701,[3700,4808],[3637,4868],[3701,4869],[3635,4803],3636,3700,3636,3699,3637,3637,3701,3699,3701,3700,3637,3323,3635,3700,3388,[3637,2710],3636,3699,[3636,2860],2861,[3636,2862],[3323,2863],[3323,2864],[3699,2865],[3387,2866],3701,3637,3635,3699,3699,3700,3700,3636,3700,3699,3700,3700,3699,3635,3637,3700,3699,3635,3700,3637,3635,3636,3637,3324,3700,3324,3636,3699,3636,3323,3635,3388,3701,3637,3388,3324,3388,3635,3701,3699,3635,[3387,2710],3701,3699,[3701,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14478,16689],[8492,16690],8492,8492,[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,8495,[8492,15245],[8492,15246],[8492,15247],[8492,15248],[8492,14095],[8492,14100],8492,[8492,15185],[8492,15186],[8492,15187,1109],[8492,14480,15188,1110],[12308,1111],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14414,1109],[8492,1110],[8492,1111],[8492,15181],[8492,15182],[8492,15183],[8492,15184],[8492,13967],14738,14035,14033,[8492,13840],[8492,13906],8492,[8492,15250],[8492,15251],8560,[8561,16753],[8492,14544,16754],[12300,13354],[12300,13355],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12301,[8492,14542],8492,8492,8492,8303,8492,[8492,14095,1365],[8492,14739,1366],[8492,14611,1367],14033,[8492,13844],8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,[8492,13969],[8492,14163],14096,14610,[8492,14100,14929],[8492,14930],[8492,14931],[8492,14932],[8492,13968],[14096,15245],[8492,14033,15246],[8492,13907,15247],[8492,15248],8492,8492,8492,[8492,14544],12302,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12615,[13650,12616],[13587,13197],[13648,13198],[13649,13199],13651,13649,13587,13651,[13586,2147496899],[13586,2147496898],[13585,2147496897],[13584,13249],[13586,13250],[13651,13251],13584,[13585,13133],[13649,13134],[13585,13135],13584,13648,13586,13648,13651,[13651,12494],[13649,12429],[13584,12426],[13643,13652,12429],[13643,12426],[13643,12489],[13643,13711],13584,13650,13585,13650,13587,13586,13587,13648,[13585,12494],[13649,12495],[13586,12362],[13648,12365],[13587,12362],[13650,12366],13648,13585,13585,13585,[13587,12424],[13584,12425],[13648,12489],[13587,13320],[13586,13321],[13648,13322],[13650,13323],[13650,12494,13324],[13649,12495],[13587,12496],13585,13649,13587,13584,13585,13585,[13586,13133],[13648,13134],[13650,13135],13649,13648,13651,[13650,12808],12809,[13650,12552],13650,13586,13651,13586,[13643,13715],13649,13584,13649,13651,13584,13649,13585,[13587,2147496963],[13651,2147496962],[13648,2147496961],[13586,13313],[13584,13314],[13651,13315],13585,13648,13584,13587,13649,13650,13648,13586,13586,13648,13585,[13650,12623],[6616,12624,7126],[7786,7127],[7851,7128],[7851,7129],7851,6552,6552,[6564,6488],6628,6626,6626,6627,[6629,6357],6615,6616,7915,6550,6551,6550,6553,7916,6550,[6615,7455],[6616,7456],6552,6551,7852,6617,6552,6615,[6614,7447],[7852,7448],6552,7852,[7850,3558],[6616,3494],[2360,3495],2424,2360,[2421,3488],[6617,3489,7126],[6552,3490,7127],[6552,3493,7128],[6617,3494,7129],[2358,3430],2358,2422,[2422,7134],[2421,3425,7135],[2421,3426,7136],[2422,3429,7137],[2423,3426],[2357,3429],[6553,3552],[7851,3553,7326],[6550,7327],[7852,7328],[6553,3623,7329],[2421,3624],2360,2360,2421,[2421,2741],[2357,2742],[2357,2743],[2422,2744],2358,2358,2423,2422,2424,[2424,3425],[2359,3426],[2423,3429],[2424,3426],[2423,3429],[6617,3552],[6551,3553],6553,6551,6617,[6616,7455],[7852,7456],6550,[6553,3687],[6292,3688],6292,6292,6292,6292,6292,[6292,7126],[6292,7127],[6292,7128],[6292,7129],6292,6292,6292,6292,6292,6292,6292,6292,[6292,7134],[6292,7135],[6292,7136],[6292,7137],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3488,7262],[6558,3489,7263],[6557,3493,7264],[6623,3494,7265],[6292,3495],6292,6292,[6292,3425],[6292,3426],[6292,3429,1903],[6292,1904],[6292,1905],[6292,1906],6292,[6292,7134],[6292,7135],[6292,7136],[6292,7137],6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,7134],[6292,7135],[6292,7136],[6292,7137],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3872],3873,[3426,3616],[6622,3552],[6559,6871,3553,7382],[6622,7062,7383],[6621,6872,7384],[6557,7385],[6559,6435],6562,6564,6565,[6621,6566],6623,[6622,6997],[6559,7002],[6557,7254],[6557,7255],[6621,7256],[6621,7257],[6557,8378],[6622,8379],8380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3700,4746],3323,3323,3636,3701,3701,3636,3699,3637,3387,3701,3636,3387,3387,3699,3636,3637,3323,[3701,7757],3701,[3637,4808],[3699,4872],4932,4933,[3636,4802],[3636,4803],3701,3700,[3700,4808],[3701,4868],[3701,4869],[3701,4870],[3700,4871],[3701,4803],3637,3636,3637,3636,3635,3323,[3323,2774],3701,3699,[3635,2924],[3323,2925],2926,[3636,2927],[3388,2928],2929,[3324,2930],[3701,2931],3701,3635,3701,3701,[3636,2932],[3636,2933],3701,3323,3701,3700,3699,3637,3635,3700,3700,3637,3700,3324,3388,3700,3699,3701,3635,3637,3701,3637,3636,3637,3701,3388,3323,3323,3701,3699,3323,3323,3636,3701,3699,3636,[3636,2774],3701,3323,3636,[3636,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14542,16753],[8492,16754],8492,8492,[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,[8492,1109],[8492,1110],[8492,1111],8492,8492,[8492,13904],14032,[8492,14100],8492,8492,[8492,15250],[8492,15251,1173],1174,[12300,1175],[12300,1176],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14478,1173],1174,[8492,1175],[8492,15245,1176],[8492,15246],[8492,15247],[8492,15248],[8492,14031],14034,14097,[8492,14161],14096,14033,[8492,13840],[8492,13907],8492,8492,8492,8492,[8492,14416],12300,12308,12300,12300,[12300,16689],[12300,16690],12300,12300,12300,12300,[12300,14925],[12300,14926],[12300,14927],[12300,14928],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14414,16689],[8492,16690],8492,8492,8492,8492,8492,[8492,14159],[8492,14163],[8492,14162],14096,14033,[8492,13906],[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,8492,8492,[8492,14095],14097,[8492,14164,14993],[8492,14994],[8492,14995],[8492,14996],8492,[8492,13969],14800,[8492,14100],8492,[8492,14929],[8492,14930],[8492,14931],[8492,14932],[8492,14415],[8492,14416],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12615,[13585,12616],[13649,13261],[13584,13262],[13584,13263],13587,13650,13649,13649,[13651,2147496963],[13650,2147496962],[13587,2147496961],[13649,13313],[13585,13314],[13587,13315],13587,[13649,13197],[13650,13198],[13586,13199],13651,13584,13648,13651,13650,13651,13584,13585,13651,[13643,13392],[13643,13459],13643,[13643,13647],13650,13587,13651,13648,13650,13651,13587,13649,[13650,12494],[13586,12426],[13586,12429],[13585,12426],[13650,12430],[13649,12431],13585,13586,[13648,12424],[13650,12488],[13649,12489],13649,[13648,13384],[13651,13385],[13586,13386],[13584,13387],[13648,13388],[13585,12559],[13651,12560],13584,13648,13650,13651,13650,13648,[13587,13197],[13586,13198],[13587,13199],13585,13587,13650,13650,[13651,12615],[13648,12616],13586,13587,13584,[13643,13523],13643,[13643,13455],13585,13648,13586,13650,13584,13649,[13651,2147497027],[13650,2147497026],[13587,2147497025],[13587,13377],[13650,13378],[13584,13379],13649,13651,13648,13585,13587,13586,13651,13587,13586,13650,13649,[13650,12623],[6617,12624,7190],[6552,7191],[6553,7192],[7916,7193],6550,7851,6614,[6564,6358],[6565,6425],6563,6562,[6562,6357],6617,7916,6552,7916,6553,7916,6615,[6614,8312],6614,7850,6616,6616,[6626,6618],[6629,6677],[6564,6680],6551,7788,6615,6552,6552,7915,7916,6553,[6553,3558],[6552,3559],[2424,3426],[2421,3429],[6616,3552],[7851,3553,7190],[6617,7191],[6616,7192],[6550,3558,7193],[6617,3494],[2422,3495],2422,[2360,3488,7198],[6616,3489,7199],[6617,3490,7200],[6616,3493,7201],[6616,3490],[6553,3493],[6551,3553],[7851,7390],[6553,7391],[6553,7392],[6617,3687,7393],[2422,3688],2360,2422,2424,[2360,2805],[2359,2806],[2359,2807],[2357,2808],2424,[2359,7134],[2359,7135],[2359,7136],[2357,3488,7137],[6616,3489],[6553,3490],[6617,3493],[6552,3490],[6553,3493],[6551,3553],7851,7787,6616,7852,6551,7916,7850,[7916,3558],[6553,3494],[6292,3495],6292,6292,6292,6292,[6292,7190],[6292,3425,7191],[6292,3426,7192],[6292,3430,7193],6292,6292,6292,6292,[6292,3425],[6292,3426],[6292,3430],6292,[6292,3425,7198],[6292,3429,7199],[6292,3430,7200],[6292,7201],6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3488],[6621,6807,3552,7326],[6558,6742,3553,7327],[6559,6746,7328],[6557,3558,7329],[6559,3559],[6292,6807,3429],[6292,6809,3426],[6623,3489],[6559,3490],[6622,3493,1903],1904,[6292,1905],[6292,1906],6292,[6292,3425,7198],[6292,3429,7199],[6292,3430,7200],[6292,7201],6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,7198],[6292,3425,7199],[6292,3426,7200],[6292,3429,7201],[6292,3430],6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,6292,[6292,3615],[6559,3490,3616],[6623,3553],6558,[6622,7447],[6557,7448],[6558,6434],6562,6629,6628,6627,[6558,6500],6559,[6621,6870],[6559,6872],[6621,6807,7318],[6621,6743,7319],[6622,6744,7320],[6622,6745,7321],[6622,6746],[6557,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3636,4682],3700,3636,3323,3388,3637,3700,3324,3636,3323,3323,3699,3323,3323,3636,3324,3324,3700,3635,3701,[3700,4745],4936,[3701,4996],[3635,4997],4866,[3700,4867],[3700,4870],[3636,4871],[3699,4872],4932,4933,4934,[4935,3188],[3637,4802],[3636,4803],3700,3701,3324,3637,3701,[3324,2838],3637,3635,[3699,2988],[3637,2989],2990,2991,2992,2993,2994,[3699,2995],3323,3637,3700,3637,[3699,2996],[3637,2997],3699,3387,3388,3699,3699,3699,3637,3635,3387,3387,3324,3701,3635,3323,3635,3700,3387,3699,3700,3324,3323,3699,3700,3699,3700,3637,3637,3701,3636,3636,3700,3387,3635,3637,[3323,2838],3637,3324,3637,[3701,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,12300,12300,12300,12300,12300,[8492,14606],[8492,14607],[8492,14543],[8492,14293],[8492,15185],[8492,15186],[8492,15187],[8492,15188],8492,[8492,1173],1174,[8492,13904,1175],[8492,13840,1176],[8492,13840],14032,14097,[8492,13970],8492,8492,8492,[8492,1237],1238,[8492,13906,14416,1239],[12300,1240],[12300,1241],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,13839,14542,1237],1238,[8492,13906,1239],[8492,1240],[8492,1241],[8492,13905],[8492,13840],14032,14097,[8492,14164],8492,[8492,13969,14925],[8492,14160,14926],[14096,14927],[14033,14928],[8492,13906],8492,8305,8492,8492,[8492,14415],[8492,14415],[8492,14416],12300,[8492,14414,16753],[8492,14415,16754],[8492,14416],12307,12308,[8492,14414],[8492,14415,14989],[8492,14415,14990],[8492,14415,14991],[8492,14416,14992],12300,12300,12300,12300,[12300,14925],[12300,14926],[12300,14927],[12300,14928],12300,12300,12300,12300,[8492,14478,16753],[8492,16754],8492,8492,8492,8492,8492,8492,8492,8492,[8492,13969],14096,14033,[8492,13840,15245],[8492,13906,15246],[8492,15247],[8492,15248],8492,[8492,13839],[8492,13840],14032,[8492,14100],[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,[8492,14095],[8492,14100],8492,[8492,14993],[8492,14994],[8492,14995],[8492,14996],8303,[8492,14480],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12487,[13651,12425],[13649,12489],[13651,13325],[13650,13326],[13651,13327],13587,13586,13650,13648,[13587,2147497027],[13585,2147497026],[13650,2147497025],[13587,13377],[13649,13378],[13648,13379],13585,[13587,13261],[13648,13262],[13587,13263],13587,13584,13586,13585,13648,13651,13650,13648,13586,13649,[13643,13652],13643,[13643,13520],13651,13586,13648,13587,13586,13584,13649,13649,13648,13651,13649,13586,[13586,12494],[13584,12495],[13649,12362],[13649,12365],[13649,12488],[13649,12489],13584,13585,13584,[13586,13449],[13649,13450],[13586,13451],13584,[13648,12623],[13586,12624],13586,13648,13587,13585,13649,13648,[13650,13261],[13587,13262],[13584,13263],13650,13648,13649,[13585,12424],[13650,12425],[13585,12489],13649,13651,[13643,13522],13643,13643,[13643,13583],13648,13587,13651,13650,13584,13650,13650,13587,[13587,2147497089],[13584,13441],13650,13587,13651,13584,13586,13587,13587,13650,13585,13650,13585,13648,[13650,12686],[13651,12687],[6617,12688,7254],[7916,7255],[7786,7256],[7916,7257],6617,7852,7850,6552,[6562,6682],6564,[6563,6423],6615,[6550,8311,7126],[6616,7127],[6614,7128],[6553,7129],7852,6614,7851,[7915,8376],[7916,8565],6550,6550,[6564,6681],[6562,6682],6626,6563,[6627,6613],6552,[6627,6680],[6627,6679,7126],[6626,6681,7127],[7852,7128],[7850,7129],7850,7916,[6550,3558],[6552,3490],[6553,3493],[6616,3553],[7852,7254],[6617,7255],[6615,7256],[6615,7257],[6551,3558],[6616,3559],[2422,3426],[6552,3552,7262],[6617,3553,7263],[7850,7264],[6617,7265],7916,7915,6615,6617,[7916,7455],[7850,7456],[6615,3558],[6616,3494],[2360,3495],2360,2360,[2359,2869],[2358,2870],[2359,2871],[2424,2872],[2422,3425],[2423,3426,7198],[2359,3429,7199],[2421,3426,7200],[6617,3552,7201],[7851,3553],6617,6614,6616,6615,[6552,7134],[6617,7135],[6614,7136],[6553,7137],6551,6614,6614,7915,6551,[6553,3558],[6616,3559],[6292,3429],[6292,3430],6292,6292,[6292,3488,7254],[6616,3489,7255],[6616,3490,7256],[6552,3494,7257],[6292,3426,7134],[6292,3430,7135],[6292,7136],[6292,3488,7137],[6558,3489],[6622,3490],[6559,3494],[6292,3429],[6557,3489,7262],[6622,3493,7263],[6622,3494,7264],[6292,3495,7265],6292,6292,6292,6292,6292,6292,6292,[6292,3425],[6292,3426],[6557,3552],[6622,6871,3553,7390],[6559,6998,7391],[6621,6935,7392],[6621,6742,7393],[6559,6742,3558],[6622,6934,3493],[6621,6935,3490],[6558,6742,3553],[6621,6746],[6622,1903],1904,1905,[6292,3429,1906],[6292,3426],[6558,3489,7262],[6558,3493,7263],[6623,3494,7264],[6292,3495,7265],6292,6292,6292,6292,[6292,3425],[6292,3429],[6292,3430],6292,[6292,3425],[6292,3426,7262],[6558,3489,7263],[6559,3490,7264],[6558,3493,7265],[6558,3494],[6292,3495],6292,[6292,3425],[6292,3426],[6292,3429],[6292,3430],6292,6292,6292,6292,[6292,7134],[6292,7135],[6292,7136],[6292,3679,7137],[6559,3680],6622,6623,[6558,6435],[6557,6370],6562,6564,6628,6629,[6622,6630],6557,6622,6557,[6559,6806],[6934,7382],[7068,7383],[7004,7384],[6939,7385],[6623,7002],[6622,8507],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3635,4746],3323,3637,3636,3388,3323,3635,3637,[3699,4808],[3701,4868],[3637,4869],[3701,4803],3700,3635,[3700,4808],[3635,4870],[3636,4871],[3635,4803],3699,3635,[3699,4745],[3635,4746],3701,3636,[3700,4930],4931,[4934,3188],4935,4936,[3637,4996],[3700,4997],[3637,4998],[3637,4999],4866,[3700,4867],[3635,4803],3701,3637,3324,3700,[3635,2902],3635,3323,3637,[3700,3053],3054,3055,3056,3057,3058,[3635,3059],3636,3637,3637,3700,[3635,3060],[3387,3061],3635,3636,3699,3324,3699,3388,3701,3700,3635,3324,3388,3701,3323,3701,3699,3388,3636,3701,3699,3387,3636,3637,3324,3637,3701,3700,3637,3700,3387,3636,3635,3699,3701,3635,[3323,2902],3636,3701,3699,[3635,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8380],12300,12300,12300,12300,12300,12300,12300,12300,12307,12308,[8492,14478],8492,[8492,15250],[8492,15251],8492,[8492,13839],[8492,13840,1237],1238,[8492,14032,1239],[8492,14801,1240],[8492,14161,1241],14096,14033,[8492,13840],[8492,13844],8492,8492,[8492,13905,1301],1302,[8492,14100,14480,1303],[12300,1304],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14095,14478,1301],1302,[8492,14100,1303],[8492,13905,1304],[8492,13840],14032,14609,14097,[8492,13970],8492,8492,[8492,14989],[8492,14990],[8492,14159,14991],[14096,14992],[8492,14100],8492,8492,8492,8492,8492,8492,8492,[8492,14415],8492,8492,8492,[8492,14415],[8492,14415],8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],[8492,14416,16689],[12300,16690],12302,12300,[8492,14414,14989],[8492,14415,14990],[8492,14415,14991],[8492,14416,14992],12300,[12300,13354],[12300,13355],12308,[8492,14542],8492,8492,8492,[8492,14929],[8492,14930],[8492,14931],[8492,14932],8492,8492,8492,[8492,13903],14609,14737,14033,[8492,13841],[8492,13842],[8492,13843],14611,14097,[8492,14161],[8492,14164],[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,8492,[8492,13969],[8492,13970],8492,[8492,15057],[8492,15058],[8492,15059],[8492,15060],[8492,16689],[8492,14544,16690],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12551,[13650,12552],13651,13651,13586,13586,13648,13584,13587,13648,13649,13585,[13649,2147497089],[13586,13441],13585,13585,13585,[13586,13325],[13585,13326],[13585,13327],13649,13651,13585,13649,13649,13649,13649,13650,13587,13649,13650,[13643,13458],13643,[13643,13647],13587,13584,13651,13649,13586,13651,13651,13587,13648,13585,13587,13651,[13643,13716,12494],[13643,12426],[13643,13455,12429],[13585,12489],13651,13585,[13650,12943],[13587,12944],13584,13587,13585,13648,[13584,12494],[13648,12430],[13584,12431],13649,13649,13648,13648,13650,[13650,13325],[13650,13326],[13586,13327],13650,13651,[13648,12487],[13585,12488],[13584,12489],13650,13586,[13643,13716],13643,13643,[13643,13456],13584,13651,13586,13651,13584,13585,13649,13650,13651,13649,13586,13585,13584,13587,13648,13587,13587,13648,13648,13648,13648,13650,13650,[13584,12559],12751,[6617,12752,7318],[6616,7319],[6614,7320],[7915,7321],7851,7851,6550,[6565,6489],6627,6626,[6627,6613],[6616,8570],[6614,8375,7190],[6615,7191],[6614,7192],[7852,7193],7850,7850,7851,[6617,8440],[6550,8564],[6563,6681,8565],[6629,6488],6565,6565,6627,6628,[6564,6613],[6628,6618],[6626,6357],[6627,6362,7190],[6563,6423,7191],[6553,7192],[6616,7193],7915,7916,7850,7915,6550,7850,[7916,7318],[7916,7319],[7915,7320],[6615,7321],7852,[7850,3558],[6617,3490],[7851,3553,7326],[6616,7327],[6552,7328],[7916,7329],7851,6616,7851,7916,7851,7852,7852,[6552,3558],[6617,3559],[2421,3426],[2360,3429],[2424,3430],2359,2421,[2359,3488],[6552,3489],[6552,3490,7262],[6552,3493,7263],[6553,3490,7264],[7916,3553,7265],6551,6616,6551,6615,7916,[6617,7198],[6550,7199],[7851,7200],[7851,7201],6617,6616,6553,6551,7852,7916,[6551,3558],[6553,3493],[6553,3494],[6292,3426],[6292,3429],[6617,3552,7318],[6552,3553,7319],[6616,7320],[6553,8570,3558,7321],[8571,3490,7198],[6558,8572,3494,7199],[6292,3426,7200],[6621,3552,7201],[6559,3553],6559,[6621,6741,3558],[6559,6742,3493],[6557,6746,3553,7326],[6621,7327],[6558,3558,7328],[6557,3494,7329],[6292,3495],6292,[6292,3488],[6292,3426],[6292,3430],6292,[6292,3488],[6559,3489],[6621,3490],[6559,3553],6559,[6622,6870,7455],[6557,7065,7456],[6621,7063],6998,6999,6998,7003,6935,[6623,6742,1903],[6746,1904],1905,[6558,3493,1906],[6558,3490],[6559,3553,7326],[6623,7327],[6622,3558,7328],[6621,3559,7329],[6292,6807,3429],[6292,6809,3426],[6292,3429],[6292,3426],[6558,3489],[6557,3493],[6621,3494],[6292,6741,3426],[6622,6808,3489],[6558,3490,7326],[6559,6806,3553,7327],[6557,6808,7328],[6622,7329],[6621,3558],[6623,3559],[6292,3426],[6559,3489],[6623,3490],[6558,3493],[6558,3494],[6292,3495],6292,[6292,3425],[6292,3429],[6292,3430,7198],[6292,7199],[6292,3488,7200],[6621,3489,7201],[6557,3553],6622,[6558,6369],6562,6628,6629,6629,6564,6629,6563,[6557,6374],6622,6623,[6558,6997],6941,[6936,7447],[6940,7448],7069,[6621,7002],[6621,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3700,4810],3636,3700,3323,3700,3637,3636,[3700,4808],[3636,4809],[4932,7621],4933,[3635,4867],[3701,4868],[3699,4869],[3700,4872],4934,4935,[3635,4867],[3701,4870],[3701,4871],[3636,4809],[3636,4810],3701,3635,3637,[3635,4995],[3701,4998],[3636,4999],[3700,5000],3699,3699,3637,3636,[3636,4930],4931,[3637,4738],3700,3324,3699,3324,3701,3699,3387,3699,[3323,3117],[3387,3118],[3699,3119],[3636,3120],[3699,3121],[3324,3122],[3700,3123],3387,3636,3700,3635,3387,3636,3701,3701,3635,3635,3637,3323,3637,3324,3323,3323,3635,3636,[3388,7113],[3324,7114],3636,3700,3700,[3637,4808],[3637,4868],[3635,4869],[3635,4870],[3635,4871],[3636,4803],3635,3637,3701,3637,3700,3637,3700,3700,3637,3635,3324,3323,3701,3637,3699,[3699,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12300,12301,[8492,14542],8492,8492,8492,8492,[8492,14095],[8492,14738,1301],1302,[8492,14737,1303],[8492,14100,1304],8492,[8492,13969],[8492,14161,14925],[8492,14096,14926],[8492,14033,14927],[8492,13840,14928],[8492,13840],[8492,14032,1365],[8492,14097,1366],[8492,14164,14544,1367],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,13969,14542,1365],[14096,1366],[14033,1367],14032,14097,[8492,14163],14096,[8492,14100],8492,8492,8492,[8492,15053],[8492,15054],[8492,13839,15055],[14032,15056],[8492,14100],8492,8492,8492,8492,8492,8492,[8492,14929],[8492,14930],[8492,14931],[8492,14932],8303,8492,8492,8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],[8492,16753],[8492,14415,16754],[8492,14415],[8492,14415],[8492,15053],[8492,15054],[8492,15055],[8492,15056],[8492,14416],12302,12308,[8492,14414],8492,8304,8492,8492,[8492,14993],[8492,14994],[8492,14995],[8492,14996],8492,8492,8492,[8492,13967],14097,[8492,14160],[8492,14162],[8492,14161],[8492,14160],[8492,14162],[8492,14163],[8492,13971],8492,8492,[8492,15185],[8492,15186],[8492,15187],[8492,15188],8304,8492,8492,8492,8492,[8492,15121],[8492,15122],[8492,15123],[8492,15124],[8492,16753],[8492,14544,16754],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12551,[13587,12552],13587,13650,13585,13650,13651,13651,13586,13650,13587,13584,13586,13649,13585,13586,13584,13651,13648,13648,13649,13648,13651,13648,13649,13584,13585,13584,13648,13586,[13643,13715],[13643,13522],13643,[13643,13711],[13643,13712],13648,13650,[13648,13133],[13650,13134],[13585,13135],13586,13650,13649,13584,13585,[13643,13522],13643,13643,[13643,13583],13584,13585,13584,[13585,13007],[13649,13008],13651,13650,13648,13648,13584,[13585,12494],[13587,12495],[13586,12496],13651,13651,13584,13648,13651,13587,13650,13651,13585,[13651,12551],[13587,12552],13584,[13643,13715],[13643,13523],13643,13643,[13643,13391],13585,13586,13586,13650,13649,13648,13584,13584,13651,13650,13584,13648,13650,13650,13649,13587,13586,13584,13587,13648,13587,13649,13587,13586,[13651,12623],[6617,12560],[7916,7382],[6551,7383],[6614,7384],[7915,7385],7850,6550,[6563,6489],6628,6626,6627,[6626,6613,8570],[7787,8571],[6615,8439,7254],[6617,7255],[6552,7256],[6627,6678,7257],6551,7851,6617,[6552,8504],8628,[6564,6362,8629],[6563,8630],[6626,8631],[6563,8632],[6627,8633],[6627,8565],[6628,6487],[6565,6488],[6564,6677],[6616,7254],[6617,7255],[7915,7256],[7786,7257],7915,6552,7850,7916,6552,7852,[6617,7382],[6614,7383],[7851,7384],[6550,7385],7915,6616,7787,[7915,7390],[7851,7391],[7915,7392],[6550,7393],6552,[6565,6681],[6628,6679],6551,7852,7850,6553,6550,[6553,3558],[6552,3490,7134],[6552,3493,7135],[6553,3494,7136],[2422,3429,7137],[2357,3426],[6552,3552],[6550,3553],[6614,7326],[6552,7327],[7850,7328],[6551,7329],6552,7850,7850,7851,7852,[7851,7262],[6614,7263],[6551,7264],[6552,7265],6550,7850,6616,7915,7916,6550,7851,6615,[6550,3558],[6552,3490],[6552,3493],[6553,3553,7382],[7850,7383],[6553,8570,7384],[6616,8634,7385],[8635,7262],[6558,8636,3558,7263],[6558,3490,7264],[6621,3553,7265],6557,6559,[6558,6997],6999,[6559,7066,7390],[6621,7391],[6623,6741,7392],[6623,6809,3558,7393],[6557,3559],[6292,3429],[6621,3552],[6558,6806,3490],[6558,6746,3494],[6292,3426],[6558,3552],[6622,3553],6622,6622,6557,[6558,6434],[6623,6436],6623,[6622,7061],[6559,7066],[6558,6871],[6557,7064],[6621,7064],[6623,7065],[6621,6873],6558,6557,6621,[6559,7390],[6558,7391],[6622,7392],[6558,6741,3558,7393],[6558,6934,3493],[6623,7002,3490],[6623,6806,3493],[6557,6742,3490,7126],[6623,6808,3553,7127],[6621,7128],[6623,3558,7129],[6559,6997,3490],[6557,7002,3553],[6557,7390],[6623,6997,7391],[6621,7002,7392],[6558,7393],6622,[6623,6807,3558],[6621,6808,3490,7126],[6621,3553,7127],[6623,7128],[6623,7129],[6557,6806,3558],[6623,6746,3559],[6292,3426],[6623,3489],[6623,3493],[6558,3494,7262],[6292,3426,7263],[6558,3552,7264],[6558,3553,7265],6559,[6559,6435],6562,6629,6565,[6627,7126],[6621,6690,7127],[6626,7128],[6564,7129],6564,6563,[6559,6437],6621,[6557,6997],7068,6999,[6621,7062],[6559,7062],[6621,7066],[6622,8507],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3700,4874],3636,3637,3323,3323,3324,[3700,4808],[3635,4872],4873,[3701,4996,7685],[3700,4997],4931,[4932,3188],4933,4936,[3636,4998],[3701,4999],4931,4934,4935,4873,[3701,4874],3700,3699,3700,3699,3636,3699,3701,3699,3701,3637,3701,3637,[3635,4801],[3699,4802],[3635,4803],3323,3701,3635,3323,3700,3700,3387,3699,3635,3700,3635,3699,3323,3388,3388,3635,3637,3699,3701,3635,3388,3635,3701,3635,3323,3387,3699,3699,3700,3636,3701,3387,[3637,7177],[3700,7178],[3636,4808],[3701,4870],[3636,4871],[3699,4872],4932,[4933,2868],4934,4935,[3699,4802],[3636,4803],3636,3699,3700,3637,3699,3636,3636,3637,3699,3700,3637,3635,3637,3700,[3699,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14414],8492,8492,8492,8492,8492,[8492,14159],[8492,14163,1365],[8492,14163,1366],[8492,14162,1367],[8492,13970],8492,8492,[8492,14989],[8492,13968,14990],[8492,14160,14991],[8492,14162,14992],14096,14097,[8492,14164],8492,[8492,14416,14925],[12300,14926],[12300,14927],[12300,14928],[12300,16689],[12300,16690],12300,12300,12300,12300,12300,[12300,16689],[8492,14542,16690],[8492,14159],[8492,14160],[8492,14163,14929],[8492,14164,14930],[8492,14931],[8492,14095,14932],14033,[8492,13844],8492,8492,[8492,15117],[8492,15118],[8492,14159,15119],[8492,14162,15120],[8492,14164],8492,8492,[8492,13905],[8492,13840],[8492,13906],8492,[8492,14993],[8492,14994],[8492,14995],[8492,14996],8492,8492,[8492,13904],[8492,13907],[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,[8492,13905],[8492,13906],8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,[8492,14415],[8492,14415],8492,8492,8492,8492,8492,[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,8492,[8492,14031],[8492,14100],8492,8492,[8492,13904],[8492,13840],[8492,13840],[8492,13906],8492,8492,[8492,1109],[8492,1110],[8492,15250,1111],[8492,15251],[8492,1441],[8492,1377],[8492,1381],8492,8492,[8492,1442],[8492,1443,15185],[8492,15186],[8492,15187],[8492,14292,15188],[8492,14479],[8492,14608],12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12551,[13649,12552],13650,13651,13587,13584,13586,13649,13585,13584,13587,13585,13649,13585,13584,13650,13587,13585,13585,13587,13649,13586,13586,13587,13585,[13651,13128],[13648,13129],[13650,13130],[13585,13131],[13643,13716,13132],13643,13643,13643,13643,13643,[13643,13647],13648,[13585,13197],[13587,13198],[13648,13199],13584,13585,13586,13651,[13643,13652],13643,13643,[13643,13456],13650,13585,13648,13651,13651,13584,13648,13585,13650,13584,13587,[13643,13714],[13643,13715,12559],[13651,12560],13584,13650,13650,13649,13649,13651,13584,13651,13650,[13648,12615],[13643,13715,12616],[13643,13716],13643,13643,13643,[13643,13456],13649,13648,13584,13586,13585,13649,13587,13648,13586,13649,13586,13649,13584,13585,13585,13585,13648,13585,13586,13586,13650,13587,13585,13587,[13650,12686],[13651,12687],[6553,12688],[6564,6680],[6550,7447],[7915,7448],6617,6617,6616,[6628,6424],6562,6563,[6628,6422,8570],[6617,8634],8635,[6553,8503,7318],[6616,7319],[6616,7320],[6628,6425,7321],[6562,6677],6553,7788,6552,[6551,8692],[8693,7126],[8694,7127],[8695,7128],[8696,7129],8697,[6562,8564],[6629,8565],6562,6562,[6628,6613,7318],[7850,7319],[6615,7320],[6551,7321],7852,6552,6550,7916,6550,7915,6552,[7851,7447],[7850,7448],7786,6550,6614,7852,7916,[6616,7455],[6617,7456],6550,[6626,6489],6627,[6563,7126],[6563,6613,7127],[6550,7128],[6553,7129],7850,6550,7786,[7851,7198],[7915,7199],[6550,3558,7200],[6552,3493,7201],[6552,3490],[7850,3553],7851,[6616,7390],[7916,7391],[7851,7392],[7852,7393],7852,6615,6553,7850,7851,[7915,7326],[7916,7327],[7852,7328],[7915,7329],6553,6552,6553,6615,6616,7852,7915,6615,6551,6617,7915,6617,[7852,7447],[6552,8443,7448],8698,[6559,8699,7326],[6558,7327],[6621,7328],[6623,7329],6558,[6558,6807],6934,6935,[6559,6742],[6559,6808,7455],[6557,6871,7456],[6623,6872],[6623,6806,3558],[6621,6742,3493],[6622,6742,3553],6934,[6622,7002,3558,7134],[6623,3490,7135],[6622,3553,7136],[6559,7137],6559,6623,[6623,6434],6562,[6622,6630],[6559,7126],[6623,7127],[6558,7128],[6559,7129],6559,6623,6623,6559,[6559,7126],[6623,7127],[6621,7128],[6623,7129],[6557,6741,7455],[6622,6742,7456],6934,6999,[6557,6873],[6559,7061],[6998,7190],[6935,7191],[6621,6808,7192],[6559,7193],[6559,6997],6935,[6557,6742],[6934,7455],[6559,7002,7456],6623,6559,[6623,6997],[6935,7190],[6621,6743,7191],[6557,6744,7192],[6623,6745,7193],6934,[6558,6935,3558],[6623,6743,3490],[6621,6743,3553],[6557,6744],[6622,6745,3558,7326],[6559,6746,3490,7327],[6622,3553,7328],[6622,7329],6621,[6557,6625],6564,6628,6627,[6622,6500,7190],[6557,7191],[6623,6499,7192],[6626,7193],6565,6629,[6558,6630],6621,[6558,6871],[6998,7134],[6559,6810,7135],[6623,7136],[6558,7137],[6559,8570],[6557,8571],8572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,4936,[3636,4937],3700,3635,3700,3636,3637,3635,[3636,4681],[4936,3124],[3700,4937],[3701,7749],3700,[3701,4995],[3637,4996],[3636,4997],[3636,5000],3636,3701,[3637,4995],[3635,4998],[3637,4999],[3699,4937],3635,3636,3637,3637,3700,3635,3637,3699,3699,3700,3701,3637,3699,[3699,4865],4866,[3701,4867],[3699,4868],[3700,4869],[3636,4803],3637,3323,3700,3324,3637,3701,3324,3701,3636,3635,3700,3636,3636,3699,3637,3637,3323,3636,3700,3637,3699,3701,3637,3700,[3636,4808],[3701,4870],[3635,4871],[3635,4868],[3636,4869],[3636,4870],[3699,4871],[3700,4872],4934,4935,4936,[3635,4996],[3699,4997],[3635,4998],[3637,4999],4866,[3636,4867],[3701,4868],[3699,4869],[3699,4803],3635,3699,3637,3700,3323,3701,3388,3701,3637,3637,3388,3635,[3699,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12300,8572],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14478],8492,8305,8492,8492,[8492,14925],[8492,14926],[8492,14927],[8492,14928],8492,8492,8492,8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],[8492,14095],[8492,14100],8492,8492,[8492,14989],[8492,14415,14990],[8492,14415,14991],[8492,14415,14992],[8492,14415,16753],[8492,14416,16754],12300,[12300,14925],[12300,14926],[12300,14927],[12300,14928],[8492,14414,16753],[8492,16754],8492,8492,[8492,14993],[8492,14994],[8492,14995],[8492,13969,14996],14096,[8492,14100],8492,8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,8492,8492,[8492,14095],14610,[8492,13970],8492,[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,[8492,14095],[8492,13908],[8492,15245],[8492,15246],[8492,15247],[8492,15248],[8492,13905],14611,[8492,14100],8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,8303,8492,8492,8492,8492,8492,8492,[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,8492,[8492,13905],14032,14033,[8492,13840],[8492,13840],14032,14097,14096,14033,[8492,13840],[8492,13907],[8492,1173],1174,[8492,1175],[8492,1442,1176],[1635,17935],1572,1636,[8492,1444],[8492,1441],1634,1635,[8492,1381,15250],[8492,15251],[8492,14480],12308,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12615,[13648,12616],13585,13650,13586,13586,13586,13585,13586,13650,13586,13585,13587,13587,13585,13649,13587,13585,13648,13648,13648,13650,13587,13651,13650,[13650,13192],[13649,13193],[13584,13194],[13643,13460,13195],[13643,13196],13643,[13643,13391],[13643,13392],[13643,13459],13643,[13643,13520],13586,[13587,13261],[13585,13262],[13587,13263],13651,13651,13585,13584,[13643,13716],13643,[13643,13391],13585,13649,13648,13651,13651,13585,13649,13648,13586,13649,13584,[13643,13523],13643,[13643,12623],[13650,12624],13584,13651,13585,13651,13650,13585,13650,13650,[13587,12424],[13643,12425],[13643,12489],13643,13643,[13643,13456],[13643,13392],[13648,13128],[13651,13129],[13586,13130],[13650,13131],[13584,13132],13584,13584,13651,13587,13650,13651,13585,13648,13586,13584,13585,13651,13649,[13587,12686],[13648,12748],[13651,12749],[13648,12746],[13648,12747],[13651,12748],[13586,12749],[13648,12750],12751,[6627,12752],6563,[6628,6486],[6562,6678],6553,6552,[6629,6681],[6565,6682],6562,6629,[6564,6486,8443],8698,[6629,6682,8699],[6627,6613,7382],[7915,7383],[6550,7384],[6563,6682,7385],6565,[6629,6487],[6627,6680],[6628,6489],[6565,6613],[6615,8757,7190],[6614,8758,7191],[6563,6362,8759,7192],[6564,8760,7193],[6562,8761],8628,[6563,8629],[6562,8565],6565,[6562,6487,7382],[6551,7383],[7915,7384],[6550,7385],6551,7916,7852,7916,6552,7851,7851,7850,6616,6614,7916,6614,6614,6552,6617,7851,[6565,6426],6562,6564,[6562,6422,7190],[6617,7191],[7851,7192],[7852,7193],7915,7850,6614,[6615,7262],[7916,7263],[6553,7264],[6550,7265],7851,7916,6552,6617,[7851,7455],[6616,7456],7915,6551,6551,6552,6617,6616,[6616,7390],[7850,7391],[6615,7392],[6550,7393],[6629,6681],[6627,6488],[6563,6486],[6628,6680],[6562,6679],[6564,6678],6551,6617,6553,6617,6614,6617,7852,[6552,8507],[6557,8508],[6558,7390],[6559,7391],[6621,7392],[6557,7393],[6559,6806],6934,[6999,7126],[6557,7063,7127],[6559,7064,7128],[6558,7066,7129],[6558,6741],[6558,6742],6934,6940,6999,[6621,7062],[6622,6872,7198],[6621,7199],[6558,7200],[6622,7201],6623,6559,[6558,6625],6627,[6559,6501],[6623,7190],[6623,7191],[6623,7192],[6558,7193],6558,[6623,6435],[6559,6374],6557,[6621,7190],[6557,7191],[6558,7192],[6621,7193],[6559,6997],6999,[6621,7063],[6621,7066],6623,6559,[6557,6870,7254],[6998,7255],[6935,7256],[6622,6742,7257],6934,7001,6936,7003,6935,[6557,6746],[6557,6741],6934,[6999,7254],[6559,7064,7255],[6623,7064,7256],[6559,7064,7257],[6557,7064],[6621,7064],[6559,7065],6998,6936,[6999,7390],[6621,6872,7391],[6558,7392],[6559,7393],[6622,6369],6562,6565,6627,[6622,6501],[6557,7254],[6559,7255],[6559,7256],[6559,6498,7257],6626,6565,6563,[6559,6374],6557,[6557,6997,7198],[6559,6874,7199],[6557,7200],[6559,8570,7201],[6622,8634],8635,8636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3635,4682],[3636,7115],[3635,7116],3637,[3636,2170],[3388,2171],3701,3636,[3699,4681],[3699,4682],3699,[3637,7813],3635,3699,3700,3699,3701,3699,3636,3637,3636,3701,3637,3637,3636,3700,3636,3699,3699,3635,3637,3636,3701,3701,3636,3637,3635,[3700,4930],4931,4932,4933,[3701,4802],[3635,4803],3637,3701,3700,3699,3701,3635,3323,3700,3700,3637,3636,3323,3699,3636,[3323,2710],3324,3699,3636,3637,3700,[3635,4808],[3699,4870],[3636,4871],[3636,4872],4934,4935,4932,[4933,3125],4934,4935,4936,[3635,4998],[3636,4999],[3699,5000],3636,3699,3699,3700,[3699,4930],4931,[4932,3125],4933,[3637,4802],[3701,4803],3700,3699,3635,3323,3699,3636,3323,3701,3700,3700,3637,3701,[3637,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8636],12300,12300,12300,12300,12300,12300,12300,[12300,14929],[8492,14414,14930],[8492,14931],[8492,14932],8492,8492,8492,[8492,14989],[8492,14990],[8492,14991],[8492,14992],8492,8492,8492,8303,[8492,15117],[8492,15118],[8492,15119],[8492,15120],[8492,14095],14033,[8492,13907],8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8303,[8492,14480],12300,[8492,14414,14989],[8492,14415,14990],[8492,14415,14991],[8492,14415,14992],8492,8303,8492,8492,[8492,15057],[8492,15058],[8492,15059],[8492,15060],[8492,14095],14033,[8492,13907],8492,[8492,15245],[8492,15246],[8492,15247],[8492,15248],8492,8492,[8492,13904],14032,[8492,14100],8492,8492,[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,[8492,13905],14610,[8492,13972],8492,8492,8492,8492,[8492,14095],14034,[8492,14100],8492,[8492,15245],[8492,15246],[8492,15247],[8492,15248],8492,8492,8492,8492,8492,8492,8492,8492,[8492,15185],[8492,15186],[8492,15187],[8492,15188],8492,8492,[8492,14095],14034,14097,[8492,14162],[8492,14161],[8492,14162],[8492,13970],[8492,14159],[8492,14163],14033,14034,[8492,13844,1237],1238,[8492,13905,1239],[8492,13841,1632,1240],1572,1633,1569,1569,1569,[16721,1699],[16657,1700],1633,[8492,1377],[8492,1444,14544],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12679,[13650,12680],[13586,12681],13585,13651,13649,13648,13649,13648,13584,13587,13584,13649,13651,13586,13648,13648,13651,13585,13650,13584,13585,13586,13585,13650,[13587,13256],[13649,13257],[13584,13258],[13643,13588,13259],[13643,13260],[13643,13456],13649,13587,13584,[13643,13458],13643,[13643,13711],[13587,13325],[13585,13326],[13586,13327],13649,13586,13585,[13643,13460],13643,13643,[13643,13647],13650,13586,13648,13584,13649,13649,13648,13586,13587,13587,[13643,13716],13643,13643,[13643,13456,12494],[13586,12430],[13650,12431],13587,13651,13651,13586,13586,13585,[13585,12361],[13648,12488],[13643,13392,12489],[13643,13393],[13643,13394],[13643,13395],13587,13586,[13584,13192],[13584,13193],[13584,13194],[13585,13195],[13587,13196],13584,13585,13651,13586,13650,13650,13649,13587,13584,13651,13586,13649,[13648,12686],[13586,12750],12812,12813,12810,12811,12812,12813,12814,[6552,12815],[6626,6425],6564,6565,6565,[6629,6677],[6629,6488],6627,6629,[6626,7134],[6563,7135],[6565,8507,7136],[6565,8508,7137],6565,[6627,6677],[6626,6679,7447],[6627,6489,7448],6563,6629,6565,6563,[6628,6422],6617,[7850,7254],[6551,7255],[6563,6618,7256],[6565,7257],6627,[6627,6357,8692],8693,[6626,8436],6627,6563,[6628,6677,7447],[6563,6680,7448],[6565,6489],[6626,6487],[6564,6679],[6627,6680],6551,7852,7915,7916,6614,6553,6615,6550,7850,6553,6553,6551,6551,[6562,6490],6564,6626,[6563,6677,7254],[6553,7255],[7916,7256],[6550,7257],6616,6551,6615,[6551,7326],[6614,7327],[6552,7328],[7850,7329],6553,6616,7916,7916,6550,6553,6551,7852,7915,6551,7850,6614,7916,[7852,7455],[6551,7456],[6629,6618],6564,6628,6563,[6562,7126],[6626,7127],[6564,7128],[6628,6486,7129],6551,6617,6616,7851,7851,6552,[6615,8378],[6617,8314],[6559,8315],[6558,7455],[6621,7456],6559,[6559,6997],6999,[6557,6873,7190],[6622,7191],[6557,7192],[6557,6806,7193],6934,6999,[6558,7064],[6622,7063],[6559,6873],6623,[6559,7262],[6621,7263],[6558,7264],[6623,7265],[6559,6435],[6622,6370],6562,[6558,6630],6557,[6557,7254],[6558,7255],[6558,7256],[6621,7257],[6558,6435],6562,[6623,6630],6622,[6623,7254],[6623,7255],[6559,7256],[6558,7257],[6622,6997],6935,[6622,6742],[6557,6809],6557,6557,[6623,7318],[6558,6870,7319],[6621,7065,7320],[6622,6998,7321],7067,7069,6999,[6559,7063],6998,6935,6934,6940,[6559,7002,7318],[6622,7319],[6559,7320],[6623,7321],6623,6622,6622,[6621,6870],[6622,7062],[6622,6873],[6558,7455],[6559,7456],6558,[6558,6625],6564,6628,[6558,6438],6621,[6559,6741,7318],[6621,6746,7319],[6623,7320],[6623,7321],[6559,6625],6629,6564,[6622,6438],6622,[6622,6997,7262],[6557,6938,7263],[6559,6741,7264],[6557,6809,8443,7265],8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3699,4746],[3636,7179],[3701,7180],3636,3701,3700,3637,3700,[3637,4745],[3701,4746],3637,3701,3699,3700,3701,3637,3636,3323,3323,3323,3637,3700,3637,3635,3699,3635,3636,3636,3388,3637,3636,3699,3637,3700,3635,3701,3388,3701,[3635,4995],[3635,4996],[3700,4997],[4866,7621],[3636,4867],[3637,4803],3637,3699,3637,3635,3637,[3701,2932],[3700,2933],3637,3635,3388,3637,3637,3700,[3636,2774],3637,3635,3700,3636,[3700,4808],[3635,4809],4934,4935,4936,[3635,4998,7621],[3701,4999],[3701,4996],[3700,4997],[3701,4998],[3699,4999],[3635,5000],3700,3636,3699,3635,3700,3700,3636,3699,[3637,4995],[3699,4996],[3637,4997],4866,[3699,4802],[3700,4803],3636,3701,3636,3637,3635,3699,3699,3324,[3636,7115],[3637,7116],3701,[3635,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12300,8699],12300,12300,12300,12300,12300,12300,12300,12300,[8492,14414,14993],[8492,14994],[8492,14995],[8492,14996],8492,8492,8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8492,8496,8497,8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],[8492,13968],14096,14033,[8492,13844],[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,8492,[8492,14415],[8492,15053],[8492,15054],[8492,15055],[8492,15056],8492,8492,8492,8492,[8492,15121],[8492,15122],[8492,15123],[8492,15124],[8492,13968],14096,[8492,14100],[8492,13905],[8492,13841],[8492,13841,1109],[8492,13841,1110],[8492,13841,1111],[8492,13842],[8492,13843],14801,14673,14033,[8492,13844],8492,[8492,15185],[8492,15186],[8492,15187],[8492,15188],8492,[8492,14095],14035,[8492,14036],8492,8492,[8492,13905],[8492,13840],14032,14099,[14033,1109],[8492,13841,1110],[8492,13841,1111],[8492,13841],[8492,13842],[8492,13843],[8492,13906],8492,8492,[8492,13839],[8492,13841],[8492,13842],[8492,13843],[8492,13907],8492,[8492,15250],[8492,15251],8492,[8492,13904],[8492,13840],14032,14800,[8492,14164],8492,8492,[8492,14925],[8492,14926],[8492,14927],[8492,14928],[8492,13969],14097,[14098,1301],1302,[14099,1442,1303],[1635,1304],1636,1635,1571,1570,[16657,1637],16785,16721,[16785,1632],1571,[1636,17936],[1571,14416],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12743,12744,[13585,12745],[13648,12746],[13586,12747],[13586,12748],[13584,12749],[13650,12681],13585,13585,13587,13649,13651,13648,13649,13587,13650,13649,13585,13584,13649,13585,13587,13649,13586,[13584,13320],[13585,13321],[13585,13322],[13648,13323],[13643,13392,13324],13585,13586,13585,13651,[13643,13652],13643,[13643,13456],13586,13651,13648,13586,13650,13587,[13643,13524],13643,[13643,13457],13649,[13650,2147496641],[13649,12993],13651,13585,13585,13585,13648,13650,13650,[13643,13460],13643,13643,13643,[13643,13647],[13649,12494],[13651,12495],[13649,12362],[13587,12365],[13584,12362],[13586,12365],[13587,12362],[13650,12365],[13649,12488],[13648,12489],13584,13648,13651,13648,13584,13649,[13584,13256],[13648,13257],[13650,13258],[13650,13259],[13651,13260],13648,13649,13585,13648,13587,13651,13584,13587,13650,13649,13648,13651,[13584,12559],12814,[6553,12876,7138],[6553,12877,7139],[6617,12874,7140],[6617,12875,7141],[6617,12876],[6552,12877],[6617,12878],[7852,7126],[6564,6618,7127],[6563,7128],[6629,7129],6562,6628,6565,6628,[6627,6423],[6627,6359,7198],[6565,6360,7199],[6563,6361,8378,7200],[6626,6425,8314,7201],[6629,8315],6627,6626,6629,[6565,6422],[6562,6358],[6565,6362],6629,[6562,6486],6551,[7787,7318],[6551,7319],[6629,6618,7320],[6565,7321],6563,[6628,6613],[6565,6618,8499],[6562,8500],6629,6565,6629,6629,6626,6563,6629,6563,[6627,6487,8570],[6551,8630],[6552,8631],[6628,6678,8565],[6564,6679],[6564,6678,8570],[6553,8630],[7851,8631],[6616,8565],7850,6615,[6626,6489],[6564,6613],[6565,6554],6626,6563,[6565,7318],[6563,6613,7319],[7851,7320],[6615,7321],7850,7851,7850,[6614,7390],[6617,7391],[6615,7392],[6615,7393],6552,6614,6615,6616,7852,6551,6553,6552,[6562,6681],[6565,6680],[6627,6678],6551,6616,7851,6550,[6626,6682],6565,[6565,6422],[6564,6358],[6563,6362,7190],[6562,7191],[6629,7192],[6562,7193],[6565,6486],6551,7915,6552,6553,6550,7916,[7916,8378],[6617,8379],[6557,8249],[6623,8250],[6557,6806],6934,[6558,7002],[6622,7254],[6557,7255],[6557,7256],[6557,6870,7257],[6622,7065],[6622,7066],6622,6558,6557,6559,[6559,7326],[6621,7327],[6557,7328],[6558,7329],[6559,6625],6627,[6557,6690],[6559,6501],6559,[6559,7318],[6559,7319],[6622,7320],[6623,7321],[6621,6625],6627,[6621,6694],6623,[6622,7318],[6621,7319],[6557,7320],[6558,7321],[6557,6871],[6622,7063],[6557,7065],[6621,7066],6559,6557,[6557,7382],[6622,7383],[6559,7384],[6623,7061,7385],[6558,7062],[6623,7063],[6559,6872],6557,[6558,6870],[6558,7065],[6621,7062],[6622,7063],[6622,7066,7382],[6623,7383],[6623,7384],[6621,6435,7385],[6622,6370],[6623,6437],[6623,6435],[6559,6370],[6557,6370],[6622,6437],6557,6558,6559,[6622,6625],6628,6628,[6558,6502],6621,[6557,6997,7382],[6559,7002,7383],[6621,7384],[6559,7385],[6623,6498],6626,6628,[6559,6502],6559,[6622,6871,7326],[6557,6872,7327],[6623,6997,7328],[6557,7002,8443,7329],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3701,4810],3637,3699,3636,3636,3701,3637,3700,[3636,4616],[3637,4552],[3701,4553],3636,3700,3636,3635,3699,3635,3636,3637,3635,3636,3636,3699,3700,3701,3636,3323,3700,3635,3700,3701,3323,3323,3701,3324,3699,3387,3699,3635,3637,3636,[3636,4930,7685],4931,[3701,4674],3636,3635,3700,3323,3699,[3700,2996],[3636,2997],3323,3637,3637,3700,3635,3387,[3701,2838],3700,[3635,7115],[3636,7116],[3637,4808],[3637,4872],[4873,3124],[3699,4998],[3635,4999],[3637,5000],[3701,7685],3699,3699,3635,3637,3635,3700,3636,3637,3699,3636,3636,3701,3700,3700,3637,3701,3700,[3635,4930],4866,[3637,4867],[3636,4803],3701,3635,3324,3324,3387,3699,3700,[3387,7179],[3700,7180],3637,[3699,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14478,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,8560,8561,8492,[8492,15245],[8492,15246],[8492,15247],[8492,15248],[8492,13904],14032,14035,14033,[8492,13907,15181],[8492,15182],[8492,15183],[8492,15184],8492,8492,8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,8492,8492,8305,[8492,15185],[8492,15186],[8492,15187],[8492,15188],8492,[8492,14095],14033,14032,14611,[14035,1173],1174,[14739,1175],[14097,1176],[8492,14160],[8492,14160],[8492,14160],14096,14033,[8492,13840],[8492,13844],[8492,15250],[8492,15251],8492,[8492,13905],14032,14035,14033,[8492,13840],[8492,13840],14032,14099,14610,14097,[8492,14163,1173],1174,[8492,14097,1175],[8492,14161,1176],[8492,14163],14096,14033,[8492,13840],[8492,13840],14032,14097,[8492,14161],14611,14033,[8492,13841],[8492,13841],[8492,13842],[8492,13843],14032,14097,[8492,14163],[8492,13970],8492,8492,8492,[8492,14989],[8492,14990],[8492,14991],[8492,14992],8492,[8492,13969,1376],[8492,14098,1377,1365],[8492,1378,1366],[1572,1367],1635,1570,[16658,1697],[16721,1698],[16658,1699],[16785,1701],16786,16721,[16657,1696],[16786,1697],[16721,1698],[16722,1699,14480],12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12808,12809,12810,12811,12812,12813,[13650,12745],[13587,12746],[13586,12747],[13650,12681],13651,13649,13649,13649,13587,13584,13587,13584,13586,13650,13587,13648,13587,13648,[13650,13384],[13651,13385],[13651,13386],[13587,13387],[13651,13388],13649,13650,13648,13585,13587,[13643,13392],13585,13649,13585,13585,13584,13587,13650,[13643,13588],13643,[13643,13647],[13651,2147496706],[13587,2147496705],[13649,13057],[13584,13058],13648,13649,13650,13649,13649,13584,[13643,13588],13643,[13643,13391],[13643,13392],13651,13649,[13585,12494],[13651,12426],[13584,12429],[13584,12426],[13584,12429],[13586,12426],[13585,12429],[13587,12489],13585,13584,13586,13584,13587,13587,13650,[13651,13320],[13584,13321],[13649,13322],[13584,13323],[13584,13324],13585,13585,13585,13650,13650,13650,13587,13650,13648,13584,13585,13648,[13587,12559],[6616,12624],[7850,7202],[6550,7203],[7850,7204],[6550,7205],6616,7787,7851,[7786,7190],[6617,7191],[6628,6359,7192],[6563,6361,7193],[6629,6362],6563,6563,[6627,6422],6617,[7850,7262],[6616,7263],[6614,7264],[6616,8378,7265],[6627,6359,8379],[6563,6359,8249],[6563,6360,8250],[6562,6361],6617,6615,[6628,6618],6565,6565,[6562,6487],[6553,7382],[7851,7383],[6616,7384],[6626,6358,7385],[6628,6358],[6615,8308],[6614,8309],[6564,6358,8373],[6565,6425],6564,6565,6563,[6564,6357],[6629,6358],[6628,6424],[6628,8570],[6626,8571],8694,8695,[6626,8629],[6629,8633],[6629,8634],8694,8695,[7787,8564],[6614,8565],6615,[6563,6362],[6562,6486],[6562,6489],6563,6563,[6628,6357,7382],[6615,7383],[6550,7384],[6627,6680,7385],[6626,6678],[6565,6678],[6563,6678],[6562,6681],[6628,6679,7455],[6627,6681,7456],[6628,6679],6553,6550,6615,7850,6617,7916,6615,[6562,6618],6628,6629,6626,[6629,6613],6553,6552,[6627,6426],6626,6629,[6626,6677],6553,[6614,7254],[6563,6358,7255],[6627,6362,7256],[6563,7257],6563,[6563,6613],7915,7850,6550,6550,6615,6615,[7916,8378],[6616,8313],[6553,8314],[6622,6997,8380],6999,[6623,6873],[6559,7318],[6622,7319],[6621,7320],[6623,7321],6558,6557,[6623,7134],[6622,7135],[6623,7136],[6559,7137],[6557,7390],[6557,7391],[6623,7392],[6559,7393],[6558,6625],[6621,6630],6557,6557,6622,[6621,7382],[6623,7383],[6558,7384],[6559,7385],[6559,6625],[6622,6630],6557,6558,[6622,7382],[6558,7383],[6621,7384],[6623,7385],6621,6557,6622,6622,6558,6559,6558,[6558,7447],[6621,7448],6623,6622,6623,6557,6621,6557,6623,6557,6559,[6622,6435],[6623,6370,7447],[6622,6374,7448],[6558,6625],6629,6563,6562,6627,[6623,6693],[6623,6694],6559,6557,[6557,6369],6562,6629,6628,[6558,6566],6557,[6623,6997],[6935,7447],[6559,6742,7448],[6621,6808],6623,[6621,6625],6564,[6622,6502],6622,[6559,6806,7390],[6621,6742,7391],[6934,7392],[6622,6872,8507,7393],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3699,4874,7621],3699,3700,3635,3635,3635,3388,3635,3636,[3699,4616],[3700,4617],[3635,4618],3701,3701,3635,3637,3323,3323,3699,3388,3323,3387,3701,3387,3324,3635,3323,3324,3635,3635,3323,3324,3635,3701,3701,3701,3636,3637,3700,3636,3700,[3636,7749],[3635,4737],[3637,4738],3701,3637,3637,3699,3388,[3701,3060],[3388,3061],3324,3701,3700,3323,3637,3636,[3323,2902],3699,[3699,7179],[3635,7180],[3636,4745],4936,[3699,4937],3636,3701,3636,[3700,7749],3699,3636,3700,3701,3699,3636,3637,3637,3636,3700,3637,3700,3636,3635,3637,3636,3635,3637,[3635,4930],4931,[3635,4674],3635,3701,3635,3387,3701,3701,3636,3701,3637,[3700,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8249],[12300,8250],12300,12300,12300,12300,12300,12300,12300,[8492,14478,15121],[8492,15122],[8492,15123],[8492,15124],8492,8492,8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,8492,8492,8492,8492,8492,[8492,13839],[8492,13840],14032,14739,14097,14096,[8492,14033,15245],[8492,13840,15246],[8492,13907,15247],[8492,15248],8492,8492,8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],[8492,13904],[8492,13906],8492,8492,8492,[8492,15250],[8492,15251],8492,[8492,13839],14032,14097,[8492,14161],14096,[14097,1237],1238,[14096,1239],[8492,13908,1240],[8492,1241],8492,8492,[8492,13968],[8492,14162],14096,14033,[8492,13841],[8492,13842],[8492,13843],14032,14673,14097,[8492,14160],[8492,14161],[8492,14162],[8492,14160],[8492,14161],[8492,14160],[8492,13971],[8492,13905,1237],1238,[8492,14100,1239],[8492,1240],[8492,1241],[8492,14159],14096,14800,14097,[8492,14161,14925],[8492,13971,14926],[8492,14927],[8492,13969,14928],[8492,14160],14096,14034,14035,[14610,14925],[8492,14162,14926],[8492,14164,14927],[8492,14928],8492,8492,8492,8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8492,[8492,1440],1570,1635,1569,1570,[16657,1637],16657,16786,16785,16658,16785,16785,16786,16722,16786,[16658,14544],12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12873,12874,12875,12876,12877,12809,12810,12811,[13587,12680],[13586,12681],13587,13651,13651,13650,13584,13650,13648,13649,13587,13586,13587,13648,13585,13649,[13649,13449],[13584,13450],[13651,13451],13586,13648,13586,13651,13650,13649,13648,13587,13649,13649,13649,13584,13586,13650,13584,[13643,13392],[13587,2147496771],[13587,2147496770],[13587,2147496769],[13648,13121],[13587,13122],[13585,13123],13650,13587,13584,13584,[13643,13712],[13643,13716],13643,[13643,13647],13586,13648,13584,13585,13586,13650,13587,13587,13587,13586,13585,13650,13587,13586,13649,13648,13585,13586,[13585,13384],[13585,13385],[13584,13386],[13651,13387],[13651,13388],13649,13586,13586,13650,13586,13650,13585,13585,13651,13648,13585,[13586,12686],[13586,12687],[6552,12688],[6551,7266],[6551,7267],[6551,7268],[6553,7269],6617,6614,6616,[6551,7254],[7851,7255],[6553,7256],[6552,7257],[6565,6489],6564,[6629,6423],6617,6615,[7852,7326],[6552,7327],[6551,7328],[6615,7329],[7916,8378],[7852,8313],[6551,8314],[6552,8315],6552,6614,6614,[6629,6424],6626,6564,[6629,6613],[6614,7447],[6616,7448],7916,[7916,8371],[6552,8372],[7915,8373],[6565,6679],[6629,6682],6626,6629,[6626,6357],6617,7850,[6614,8570],[6627,6424,8634],8635,[6626,8758],[6564,8759],8693,8502,8698,[6627,6486,8758],[6551,8759],8628,[6617,8629],[7851,8565],[6629,6426],6564,6626,6629,6628,[6628,6487],[6627,6681,7447],[6565,6682,7448],6562,6564,6564,6563,6563,6564,6564,6629,[6629,6613],7851,6615,[6553,7126],[7851,7127],[6550,7128],[6626,6678,7129],[6565,6488],6627,6626,[6628,6423],6615,6552,6551,[6626,6490],6628,6627,6628,[6626,6487],[6553,7318],[6616,7319],[6614,7320],[6628,6358,7321],[6626,6358],6617,6614,6617,6616,7851,6617,7850,7851,6616,[6617,8443],[6557,6870,8444],[6557,6873],6557,[6559,7382],[6558,7383],[6559,7384],[6559,7385],6558,[6559,6434],[6557,6371,7198],[6623,6371,7199],[6559,6371,7200],[6623,6372,7201],[6558,6373],[6557,6437,7455],[6622,7456],[6557,6369],6562,6563,[6559,6370],[6559,6374],6559,6559,[6621,7447],[6557,7448],[6558,6435],6562,6563,[6621,6437],6558,6557,[6622,7447],[6622,7448],6622,6623,[6622,7134],[6557,7135],[6621,7136],[6621,7137],6559,6558,[6623,6435],[6559,6370],[6623,6374],6558,6621,6559,6623,6623,6557,[6622,6434],[6623,6370],6562,6628,6563,6562,6627,[6623,6693],6626,[6622,6630],6622,6558,6621,[6557,6434],6562,6627,[6623,6690],[6557,6691],[6558,6694],[6622,6807],6934,7067,6999,[6622,7066],6621,[6559,6625],6564,[6557,6566],6621,[6622,6805],[6999,7455],[6621,7066,8570,7456],[6621,8571],8572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3701,4937],[3636,7685],3699,3637,3700,3637,3323,3637,3636,3635,3700,[3637,4681],[3637,4682],3701,3701,3387,3636,3637,3701,3635,3323,3701,3700,[3636,2712],3699,3637,3387,3324,3323,3636,3699,3699,3637,3635,3323,3387,3323,3323,3323,3637,3635,3636,[3635,7813],[3635,4737],[3699,4738],3701,3699,3637,3699,3635,3636,3699,3324,3387,3699,3635,3636,3635,3637,3636,3635,[3637,4808],[3699,4809],[3636,4810],3637,3701,3637,3636,[3699,7813],3700,3700,3700,[3637,2710],3636,3701,3635,3637,3701,3699,[3699,2170],[3700,2171],3700,[3700,7115],[3700,7116],3635,3635,3699,3636,[3636,4673],[3701,4674],3637,3388,3701,3636,3635,3635,3700,3323,3701,[3635,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8314,[12300,8315],12300,12300,12300,12300,12300,12300,[8492,14542,15185],[8492,15186],[8492,15187],[8492,15188],8492,[8492,16689],[8305,16690],[8492,15245],[8492,15246],[8492,15247],[8492,15248],8492,8304,8492,8492,8492,[8492,13839],14801,14097,[8492,14161,14925],[8492,14161,14926],[8492,14164,14927],[8492,13969,14928],[8492,14161],14096,14033,[8492,13841],[8492,13842],[8492,13843],[8492,13907],[8492,15245],[8492,15246],[8492,13904,15247],[8492,13840,15248],14609,[8492,14100],8492,8492,8492,8492,8492,[8492,13905],14032,14097,[8492,13971],8492,[8492,14095],[14033,1301],1302,[14095,1303],[8492,13972,1304],8492,8492,8305,8492,8492,[8492,13968],[8492,14160],[8492,14161],[8492,14160],[8492,14161],14096,14801,[8492,14100],8492,8492,8492,8492,8492,8492,8492,[8492,14095,1301],1302,[8492,14100,1303],[8492,1304],8492,8492,[8492,14095],14097,[8492,14164],[8492,14989],[8492,14990],[8492,14991],[8492,14992],8492,[8492,13968],[8492,14160],[8492,14163],[8492,13970,14989],[8492,14990],[8492,14991],[8492,14992],8492,8492,8304,8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,[8492,1504],1633,1633,1569,[16722,1700],[16657,1701],16657,16785,16785,16786,[16722,17288],[16721,17289],[16657,17290],[16785,14292],[16722,14479],[16721,14608],12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12873,12874,12875,12744,[13650,12745],[13586,12681],13587,13650,13648,13584,13585,13586,13585,13586,13587,13586,13648,13584,13650,13649,13585,13586,13650,13586,13586,13587,13649,13586,13584,13586,13651,13587,13584,13650,13651,13649,13649,13587,[13585,2147496835],[13584,2147496834],[13649,2147496833],[13586,13185],[13651,13186],[13587,13187],13650,13649,13651,[13643,13652],13643,13643,[13643,13456],13585,13587,13585,13650,13651,13651,13585,13650,13585,13586,13650,13587,13587,13587,13584,13650,13650,13650,13650,13587,[13587,13449],[13648,13450],[13651,13451],13649,13649,13584,13651,13649,13651,13648,13586,13585,13586,13650,13586,[13587,12623],12751,[6616,12752],[7850,7330],[7916,7331],[6553,7332],[7852,7333],6616,6614,6616,[7916,7318],[6615,7319],[6552,7320],[6562,6618,7321],6627,6565,[6563,6486],6551,7786,[7850,7390],[7852,7391],[7852,7392],[6616,7393],7786,6550,[7850,8378],[7852,8379],[7788,8380],6553,6550,[6565,6618],6563,6564,[6627,6613],6552,[6626,6680],6553,[6615,8435],[6552,8436],6616,[6565,6362],6628,6626,6563,[6564,6613],6616,[6614,8570],[6551,8634],8698,[6565,6358,8699],[6564,6362],[6628,7134],[6629,8757,7135],[6627,8761,7136],[6627,8762,7137],6627,[6564,6677],[6551,8692],8693,[6615,8436],[6626,6490],6626,6626,6564,6628,6565,6627,6628,6627,6564,6626,[6627,6423],[6562,6359],[6562,6359],[6628,6360],[6629,6361],6615,6550,6617,[7851,7190],[6614,7191],[6627,6618,7192],[6563,7193],6628,6629,[6628,6357],6615,6551,6553,6614,[6563,6554],6626,6565,6626,6564,[6628,6613,7382],[6553,7383],[6617,7384],[7852,7385],7916,[6564,6681],6551,6550,[6628,6678],[6563,6679],6551,7915,6550,7852,[6616,8507],[6559,8508],6559,6558,6559,[6622,7447],[6621,7448],6622,[6559,6434],6562,[6627,7262],[6557,6690,7263],[6623,6691,7264],[6559,6692,7265],6626,6563,[6557,6370],6562,6627,[6557,6690],6626,6563,[6557,6371],[6558,6371],[6622,6372],[6621,6373],6562,6627,[6626,7134],[6557,6563,7135],[6557,6371,7136],[6621,6372,7137],[6622,6373],[6557,6374],[6622,6369],[6623,6436],[6621,7198],[6621,7199],[6622,7200],[6557,7201],6559,6557,[6558,6625],6627,6626,[6557,6371],[6557,6371],[6621,6371],[6623,6371],[6557,6372,7126],[6622,6373,7127],[6562,7128],[6627,7129],[6559,6691],[6623,6690],6626,6565,[6623,6630],6557,[6622,6625],[6621,6630],[6623,6435],[6558,6370],[6557,6370],6562,6565,6563,[6558,6437],6557,6621,[6557,6997],6999,[6621,7062],[6558,6872],6558,[6559,6434],6562,6628,[6622,6438],6559,[6621,6869],[6559,7002,8570],[6621,8634],8635,8636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3637,4682],3699,[3699,7749],3637,3699,3636,3701,3700,3637,3636,3700,[3701,4808],[3700,4809],[3635,4810],3637,3635,3637,3700,3701,3700,3637,3324,3700,3635,[3635,2776],3387,3701,3635,3699,3323,3701,3635,3636,3635,3637,3701,3700,3700,3324,3324,3635,3636,3700,[3637,4546],[3699,4547],[3701,4611],3635,3636,3699,3636,3699,3323,3388,3635,3701,3324,3701,3635,3636,3636,3701,[3699,4808],[3700,4872],4873,[3637,4874],3636,3699,3636,3699,3635,3636,3699,3700,[3701,2774],3636,3699,3699,3637,3635,3636,3701,3635,3636,[3700,7179],[3700,7180],3637,3699,3700,3700,[3636,4673],[3699,4674],3636,3701,3635,3323,3387,3700,3387,3635,3636,[3637,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8380],12300,12300,12300,12300,12300,[8492,14606],[8492,14225,15250],[8492,14226,15251],[8492,14227],[8492,14543],[8492,14293,16753],[8492,16754],8492,8492,8492,8492,8492,8492,8492,[8492,1109],[8492,1110],[8492,14095,1111],14097,[8492,14164],[8492,14989],[8492,14990],[8492,14991],[8492,14992],8492,[8492,14159],[8492,14161],[8492,14161],[8492,14161],14096,14611,[8492,13844],[8492,13839],14032,14097,[8492,14160,14929],[8492,13971,14930],[8492,14931],[8492,14932],8492,[8492,13839],[8492,13840],14800,[14097,14929],[8492,13971,14930],[8492,14931],[8492,14932],[8492,13969],[14096,1365],[14033,1366],[14032,1367],[8492,14036],8492,8492,8492,8496,8497,8492,8492,8492,8492,8492,[8492,14095],14034,[8492,14100],8492,8492,8303,8492,8492,8492,8492,[8492,14159,1365],[8492,14162,1366],[8492,13970,1367],8492,8492,[8492,13905],14032,[8492,14100],8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8492,8492,8492,8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8492,8492,8492,8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,[8492,1568],1636,1633,[16657,1508],[16786,18000],16785,16657,16786,16722,16721,16657,16722,16722,[16721,14544],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12808,12809,[13586,12552],13585,13587,13586,13651,13584,13649,13651,13586,13586,13651,13585,13587,13586,13651,13586,13650,13586,13584,13585,13584,13649,13650,13648,13587,13649,13648,13584,13586,13649,13587,13584,13651,[13651,2147496899],[13584,2147496898],[13587,2147496897],[13650,13249],[13651,13250],[13585,13251],13649,13649,13585,13585,[13643,13393],[13643,13395],13586,13649,13585,13585,13584,13650,13585,13651,13586,13584,13651,13650,13587,13650,13586,13651,13650,13649,13586,13650,13650,13586,13651,13650,13586,13649,13648,13584,13585,13587,13649,13650,13648,13585,13648,13586,[13584,12559],[6616,12624],7850,[7915,7394],[6551,7395],[6615,7396],[6551,7397],7852,7787,7915,[6553,7382],[6552,7383],[7850,7384],[6629,6618,7385],6628,[6627,6422],[6563,6358],6617,7850,6614,[6616,7455],[7916,7456],7850,6614,6551,6614,[6550,8443],[7916,8444],6550,6550,6614,[6628,6424],6563,[6565,6487],[6564,6488],[6565,6423],7915,[6550,8499],[7852,8500],6550,[6626,6682],[6565,7138],[6562,7139],[6565,6422,7140],[6617,7141],6553,[7852,8443],8698,[6551,8699],6616,6614,[6565,6359,7198],[6629,6360,7199],[6564,6361,7200],[6564,6425,7201],6629,6628,[6626,6677],[6564,6680,8499],[6553,8500],[6627,6554],6628,6563,[6629,6422],[6629,6362],6627,6563,6563,6565,[6626,6423],[6628,6358],6617,6550,6553,6553,6552,6550,6553,7915,[7851,7254],[6551,7255],[6614,7256],[6628,6425,7257],6564,[6626,6357],6615,7852,6553,6553,6550,[6627,6488],6629,6629,6629,6626,[6628,6677],[6553,7447],[7916,7448],6617,[6629,6618],6626,[6565,6486],[6629,6489],6628,[6627,6422],6615,7916,7850,7852,[6617,8443],[6623,8444],6622,6623,6558,6559,6559,6559,[6557,6625],6627,[6558,6500,7326],[6557,7327],[6622,7328],[6558,7329],[6622,6498],6626,6629,6627,[6559,6694],6622,[6557,6689],[6621,6690],[6557,6691],[6622,6692],[6558,6693],[6558,6692],[6621,6693],[6559,6500],[6621,6689,7198],[6621,6693,7199],[6621,6692,7200],[6623,6690,7201],6626,6563,6562,[6623,6438],[6557,7262],[6558,7263],[6559,7264],[6623,7265],6621,[6623,6434],6562,[6621,6630],[6622,6499],[6559,6693],[6558,6691],6626,6628,[6627,7190],[6621,6691,7191],[6623,6690,7192],[6622,6501,7193],[6622,6435],[6621,6370],6562,6629,6563,[6621,6370],6562,6563,6562,6627,[6559,6691],[6622,6693],[6621,6691],6626,[6621,6630],6621,[6621,6741],6934,[6558,6810],6623,6558,[6622,6369],6562,6565,6565,[6557,6566],6558,[6559,6933],[6622,7002,8443],8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3636,4746],3637,[3636,7813],3700,3699,3699,3637,[3635,2709],3324,3323,[3635,4808],[3637,4872],4873,[3699,4874],3636,3700,3387,3701,3700,3323,3701,3636,3635,3323,[3636,2840],3637,3635,3637,3701,3324,3387,3323,3388,3323,3636,3635,3636,3388,3387,3701,3699,3636,[3636,4609],[3636,4610],[3699,4611],3637,3700,3700,3636,3324,3636,3323,3323,3636,3324,3700,3387,3323,3701,3700,3635,[3699,4681],4936,[3637,4937],3635,3636,3637,3636,3699,3699,3699,3700,3636,[3700,2838],3700,3700,3699,3635,3635,3635,3701,3637,3700,3700,3636,3699,3637,3637,3635,[3635,4737],[3636,4738],3635,3636,3701,3324,3388,3637,3636,3636,3636,[3635,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12302,12302,[8492,14606],[8492,14293],8492,8492,8492,[8492,14925],[8492,14926],[8492,14927],[8492,14928],[8492,1173],1174,[8492,14032,1175],[8492,14100,1176],8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8492,8492,8492,8492,8492,[8492,13969,1109],[14096,1110],[14033,1111],14032,14097,[8492,13970],[8492,14993],[8492,14994],[8492,14995],[8492,14996],8492,[8492,13968],[8492,14160],[8492,14161],[8492,13970,14993],[8492,14994],[8492,14995],[8492,14996],8492,[8492,14095],14098,14609,[8492,13971,14925],[8492,14926],[8492,14927],[8492,14928],8560,8561,8492,8303,8492,8492,[8492,13839],14032,14098,14033,[8492,13840],[8557,13844],8491,8493,8492,8556,8554,8492,8492,8492,8492,8492,[8492,14095],14097,[8492,13971],8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,8492,8492,8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,8492,[8492,14292],[8492,14223],[8492,14293,15245,16689],[8492,15246,16690],[8492,15247],[8492,15248],[8492,1442],1635,1570,[16722,1445],16786,16658,16657,16786,[16786,14292],[16722,14223],[16721,14224],[16721,14225],[16786,14226],[16658,14227],[16785,14608],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12615,[13584,12552],13586,13649,13649,13649,13584,13650,13651,13585,13648,13648,13584,13587,13584,13584,13651,13649,13587,13650,13585,13648,13584,13650,13649,13587,13651,13585,13587,13584,13587,13585,13650,13585,[13649,2147496963],[13585,2147496962],[13649,2147496961],[13584,13313],[13585,13314],[13585,13315],13585,13650,13587,13587,13584,13648,13650,13587,13586,13585,13587,13649,13651,13651,13586,13650,13586,13584,13586,13649,13586,[13587,12943],[13585,12944],13584,13649,13648,13587,13651,13650,13584,13587,13585,13586,13650,13648,13586,13649,13650,13651,13587,13585,13650,[13584,12623],[6553,12624],6550,6617,[6615,7459],[6617,7460],7788,6552,6614,6617,6550,[6550,7447],[6564,6680,7448],[6628,6682],6562,[6629,6613],6617,7852,7851,6553,6553,6553,7786,6552,7915,6550,[7915,8507],[6550,8508],6552,6617,6617,[6626,6618],6627,6627,6562,[6629,6613],7915,[6552,8563],[6626,6679,8564],[6563,6682,8565],6565,[6563,7202],[6626,6423,7203],[6615,7204],[6550,7205],6617,[6552,8507],[6551,8508],7850,6552,7852,[6550,7262],[7852,7263],[7915,7264],[6562,6618,7265],6628,6626,6629,[6565,8563],[6563,6613,8564],[6627,6618,8565],6564,6563,[6562,6613],[6562,6618],6628,[6562,7138],[6627,7139],[6564,7140],[6564,6613,7141],6614,7851,7850,6617,6552,6616,6617,7852,7916,[6614,7318],[6550,7319],[7916,7320],[6629,6618,7321],6562,[6562,6677],6553,6617,6617,7850,[6627,6618],6626,6563,[6628,6422],[6562,6424],6565,6629,[6627,6487],[6563,6679],6551,[6628,6618],6563,6563,6628,6629,[6562,6486],6551,7915,6616,7852,[6616,8507],[6622,8508],6557,6623,6623,6623,6559,[6623,6434],6562,[6558,6630],[6621,7390],[6621,7391],[6559,7392],[6558,7393],[6559,6369],6562,6629,6563,[6622,6371],[6622,6373],[6623,6374],6559,6622,6621,6559,6622,6622,6558,[6621,7262],[6559,7263],[6622,7264],[6621,7265],[6558,6689],6626,6564,[6623,6502],[6558,7326],[6558,7327],[6559,7328],[6621,7329],[6622,6369],6562,6627,[6621,6501],6622,6559,[6557,6435],6562,6627,[6622,6500,7254],[6558,7255],[6557,7256],[6559,7257],[6622,6499],[6622,6691],[6559,6690],[6558,6690,7134],[6623,6691,7135],[6559,6692,7136],[6621,6693,7137],[6621,6693],[6559,6691],[6558,6694],6621,6557,6558,[6559,6625],6563,[6621,6374],[6622,7061],6998,[6623,6874],6623,6623,[6623,6625],6629,6565,6627,[6557,6694],6623,[6623,7061],[6622,6873,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3637,4553],3635,3635,3701,3635,3637,[3324,2773],3701,3323,[3699,4681],4936,[3636,4937],3699,3637,3636,3637,3323,3324,3388,3701,3635,3699,3700,[3635,2904],3323,3700,3699,3700,3701,3635,[3636,4483],[3637,4484],[3699,4487],[3701,4488],3635,3700,3701,3700,3635,3699,3699,[3635,4673],[3636,4674],3699,3635,3635,3699,3700,3323,3636,3635,3700,3699,3699,3701,3699,3699,3701,3635,3324,[3700,4745],[3637,4746],3636,3700,3700,3701,3635,3699,3636,3637,3636,3700,[3636,2902],3700,3700,3699,3699,3701,3635,3637,3637,3636,3635,3699,3637,3637,3635,[3636,4546],[3637,4547],[3637,4611],3701,3700,3636,3701,3699,3323,3701,3323,3701,3635,[3700,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8492,14606],[8492,14545],[8492,14546],8492,[8492,14989],[8492,14990],[8492,14991],[8492,14992],[8492,13905,1237],1238,[8492,14097,1239],[8492,13970,1240],[8492,1241],[8492,15117],[8492,15118],[8492,15119],[8492,15120],8492,8492,8496,8497,8492,[8492,1173],1174,[14035,1175],[14097,1176],[8492,14164],8492,[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,8492,8492,8492,[8492,15057],[8492,15058],[8492,15059],[8492,15060],8492,[8492,13968],[8492,14163],[8492,13971],[8492,14989],[8492,14990],[8492,14991],[8492,14992],8492,8493,8556,8554,8554,[8556,13904],14032,14097,[8492,14161],[8492,14160],14096,14033,[8493,13840],[8490,13840],[8554,13907],8557,8493,8304,8490,8555,8556,8556,[8492,14095],14033,[8493,13907],8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,8305,8492,[8492,16689],[8492,15181,16690],[8492,15182],[8492,15183],[8492,15184,16689],[8492,14292,16690],[8492,14479],[8492,14608],12307,[8492,14478,16753],[8492,16754],[8492,14292],[8492,14479],[8492,1632,14543],[1636,14293],[1634,17936],[16721,1509],16657,16657,16785,[16658,14292],[16658,14608],12300,12307,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12615,[13584,12616],13650,13584,13650,13651,13649,13651,13651,13585,13585,13648,13648,13585,13587,13585,13650,13648,13650,13587,13585,13584,13648,13584,13651,13586,13585,13650,13651,13585,13584,13651,13586,13586,[13649,2147497027],[13587,2147497026],[13649,2147497025],[13648,13377],[13651,13378],[13587,13379],13650,13648,13650,13584,13585,13586,13651,13587,13586,13648,13586,13587,13587,13584,13585,13649,13587,13586,13587,13650,13648,[13649,13007],[13586,13008],13584,13585,13651,13585,13651,13587,13587,13649,13584,13648,13584,13587,13584,13584,13649,13585,13648,13649,13648,[13650,12494],[13651,12430],[6553,12496],6617,7850,6553,6614,6552,7850,7787,6614,[6563,6618],6565,6627,6563,[6629,6613],7915,6551,6550,6550,6552,6551,6614,7850,6616,6615,[6615,8378],[6614,8314],[7850,8315],7850,6615,6616,[6562,6362],6629,[6628,7134],[6628,6677,7135],[6629,6681,7136],[6629,6488,8627,7137],8628,[6627,8629],[6565,8565],[6563,6423,7266],[6615,7267],[6617,7268],[6614,7269],7915,[6617,8507],[6552,8508],6615,6551,7915,[6615,7326],[6614,7327],[7850,7328],[6616,7329],[6562,6358],[6563,6425],6562,[6564,8627],8628,[6627,6489,8629],[6565,8630],[6628,6422,8631],[6617,8565],[6562,6618],6563,[6629,7202],[6565,7203],[6626,7204],[6562,6613,7205],7851,6552,6552,[6626,6681],[6565,6679],[6628,6678],[6562,6681],[6562,6680],[6626,6681],[6551,7382],[6614,7383],[6553,7384],[6564,6618,7385],6626,6626,[6562,6613],7851,6615,6552,[6626,6488],6626,[6563,6422],[6565,6615],[6563,6618],6626,6629,6626,6627,[6626,6486],6616,[6564,6362],6628,6562,6626,[6627,6422],6617,7786,7851,[6552,8570],[6553,8571],[6557,8572],6557,[6621,7134],[6558,7135],[6559,7136],[6558,7137],[6623,6625],6627,[6557,6500],6557,[6559,7455],[6622,6369,7456],[6621,6370],[6562,7126],[6627,7127],[6557,6691,7128],[6559,6693,7129],[6622,6690],6626,[6622,6438],6557,[6558,6806],[6623,6743],[6622,6743],[6559,6743],[6622,6744],[6557,6745],[6623,6746,7326],[6622,7327],[6557,7328],[6621,7329],[6558,6434],6562,6564,[6623,6566],[6558,7390],[6623,7391],[6622,7392],[6621,6434,7393],6562,6627,[6559,6501],6557,6622,6559,[6559,6625],6565,[6623,6630],[6559,7318],[6559,6806,7319],[6623,6743,7320],[6623,6743,7321],[6558,6744],[6622,6745],[6621,6808],[6558,7198],[6621,7199],[6559,7200],[6622,7201],6557,6623,6623,[6622,6741,7134],[6622,6746,7135],[6621,7136],[6558,6689,7137],6626,[6622,6630],6558,[6558,6997],[6557,6938],6621,6622,[6621,6689],[6621,6691],[6622,6692],[6558,6694],6621,[6621,6806],[6622,6742,7134],[6559,6808,8507,7135],[8508,7136],7137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3636,4618],3700,3636,3701,3701,[3699,2837],3635,3699,[3701,4681],[3637,4682],3635,3637,3635,3635,3635,3637,3699,3636,3699,3637,3637,3323,3635,3701,3636,3699,3701,3699,[3636,4546],[3636,4547],[3635,4548],[3701,4551],[3637,4552],[3699,4487],[3637,4484],[3699,4488],3699,3636,3637,3635,[3700,4737],[3636,4738],3636,3635,3635,[3700,7621],3700,3637,3323,3700,[3699,7621],3635,3324,3700,3387,3700,3701,3323,3388,[3701,4681],[3699,4682],3635,3701,3701,3637,3637,3635,3700,3700,3635,3636,3701,3699,3636,3700,3636,3637,3699,3700,3636,3699,3699,3699,3635,3636,[3635,4609],[3699,4610],[3635,4611],3701,3700,3635,3387,3699,3636,3636,3388,3636,3700,3637,3637,[3700,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,12300,12300,12300,12300,12300,[12300,13354],[12300,13355],12300,12307,[8492,14478],8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],[8492,14095,1301],1302,[8492,14100,1303],[8492,1304],8492,[8492,15181],[8492,15182],[8492,15183],[8492,15184],8492,8492,[8560,16689],[8561,16690],8492,[8492,13839,1237],1238,[14097,1239],[8492,13971,1240],[8492,16689,1241],[8492,16690],[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,8492,8492,8304,[8492,15121],[8492,15122],[8492,15123],[8492,15124],8492,8492,8492,8492,[8492,15053],[8492,15054],[8492,15055],[8492,15056],8557,[8557,13905],[8491,13841],[8490,13842],[8555,13843],14032,14609,[8554,13971],8492,8556,[8557,13969],[8556,14162],[8555,14163],14610,[8557,14100],8492,8491,8490,8493,8490,8490,8490,[8492,13968],14096,14033,[8492,13907],[8492,15245],[8492,15246],[8492,15247],[8492,15248],8492,8492,8490,[8492,16753],[8492,15245,16754],[8492,15246],[8492,15247],[8492,15248,16753],[8492,14544,16754],12308,12300,12300,[8492,14606],[8492,14607],[8492,14608],12300,12307,[1635,14542],1634,[16722,1573],16722,16721,16785,[16786,14544],12301,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12679,[13651,12680],[13586,12681],13586,13649,[13586,12686],[13585,12748],[13650,12749],[13649,12748],[13587,12749],[13648,12681],13651,13651,13648,13650,13650,13650,13585,13585,13649,13584,13648,13584,13648,13651,13650,13586,13648,13585,13584,13649,13586,13651,13650,13650,13584,[13648,2147497089],[13648,13441],13585,13587,13584,13648,13586,13584,13649,13651,13648,13649,13587,13649,13584,[13587,13133],[13649,13134],[13586,13135],13651,13650,13585,13587,13584,13587,13585,13584,13584,13650,13586,13586,13648,13587,13586,13651,13651,13586,13651,13586,13648,13648,13587,13585,13649,13586,13586,13584,13586,[13649,12559],[6552,12560],6553,6616,6553,7915,7852,6552,6551,6552,[6565,6618],6629,6564,[6628,6423],6615,7788,6614,6550,7852,[6563,6618],[6564,6487],[6627,6680],[6563,6678],[6628,6678],6551,6550,[6551,8378],[6551,8379],[7916,8380],6551,7851,6616,[6627,6362],[6626,7198],[6565,7199],[6626,7200],[6562,7201],[6564,8692],8693,[6565,8436],[6564,6613,7330],[7916,7331],[6551,7332],[6553,7333],6615,[7916,8378],[6551,8314],[6553,8315],7850,6552,[6614,7390],[6617,7391],[6615,7392],[7852,7393],6552,[6627,6488],6564,6563,[6626,8692],8693,8694,8695,[6552,8564],[6616,8565],[6563,6424],[6563,7266],[6627,7267],[6626,6423,7268],[6617,7269],6552,[6628,6678],[6562,6488],6629,6629,6628,6565,6627,6626,[6628,6486],[6563,6678,7447],[6565,6680,7448],[6563,6682],6627,6627,[6629,6677],[6564,6679],[6627,6680],[6565,6489],6629,6565,[6628,6486],[6629,6680],[6564,6488],6562,6629,6562,6562,6629,[6626,6677],[6562,6489],6564,6628,[6564,6357],6615,[6551,8570,7134],[6552,8630,7135],[6616,8631,7136],[6617,8634,7137],8635,[6622,6742,8636],[6623,6746],[6623,7198],[6621,7199],[6623,6434,7200],[6623,6370,7201],6562,6563,[6623,6371],[6623,6372],[6622,6373],6562,6627,[6623,6692,7190],[6623,6501,7191],[6621,7192],[6623,7193],6559,[6557,6625],[6558,6502],[6558,6806],6934,6936,6937,6941,7005,7005,[6622,7002,7390],[6621,7391],[6559,7392],[6621,7393],[6559,6625],6627,[6622,6690],[6622,6501],6623,[6621,7455],[6623,6434,7456],6562,6627,[6623,6501],6622,6557,6621,[6621,6435],6562,6627,[6622,6501],[6559,6741,7382],[6934,7383],[6999,7384],[6558,7064,7385],[6623,7062],6998,6935,[6623,6746,7262],[6559,7263],[6622,7264],[6559,7265],6621,[6621,6741],[6622,6742],[6558,6934,7198],[6559,7002,7199],[6557,7200],[6559,7201],[6558,6625],[6622,6630],6621,[6559,6997],[6935,7126],[6623,6809,7127],[6557,7128],[6623,7129],6622,6622,6558,6557,[6559,6870],[6998,7198],[6622,6810,8378,7199],[6558,8314,7200],[8315,7201],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3699,4682],3700,3700,3636,3637,[3637,2901],3699,3636,[3637,4745],[3635,4746],3699,3701,3699,3699,3699,3701,3699,3637,3637,3635,3637,3701,3700,[3700,4483],[3700,4484],[3699,4487],[3701,4484],[3700,4487],[3636,4610],[3701,4611],3699,[3700,2710],[3701,4616],[3699,4551],[3636,4548],[3636,4552],[3700,4553],3700,3701,[3701,4546],[3701,4547],[3700,4611],3636,[3636,7621],3699,[3637,7685],3636,3636,[3636,7621],3635,[3636,7685],3637,3636,3636,3701,3323,3700,3699,3635,[3701,4745],[3701,4746],3637,3637,3700,3635,3635,3699,3700,3637,3699,3700,3701,3637,3701,3700,3701,3636,3699,3699,3700,3637,3637,3636,3635,3701,[3699,4673],[3636,4674],3699,3635,3699,3701,3323,3323,3323,3637,3635,3637,3636,3635,3635,[3635,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8249],[12300,8250],12300,12300,12300,12300,12300,12300,12300,12300,12302,[8492,14414,16689],[8492,16690],8305,[8492,15117],[8492,15118],[8492,15119],[8492,15120],[8492,13968,1365],[8492,14161,1366],[8492,14164,1367],[8492,16689],[8492,16690],[8492,15245],[8492,15246],[8492,15247,16689],[8492,14292,15248,16690],[8492,14479],[8492,14545],[8492,14546,16753],[8492,16754],8492,[8492,14095,1301],1302,[8492,14100,1303],[8492,1304],[8492,16753],[8492,16754],[8492,15185],[8492,15186],[8492,15187],[8492,14292,15188],[8492,14479],[8492,14543],[8492,14293,16689],[8492,16690],[8492,15185],[8492,15186],[8492,15187],[8492,15188],[8492,14292],[8492,14543],[8492,14293],8492,[8492,15117],[8492,15118],[8492,15119],[8492,15120],[8492,13904],14032,14097,[8557,14163],[8490,14160],[8490,14160],[8490,13971],8491,8490,8492,8555,8490,8491,[8554,13969],[8493,13970],8492,8554,8555,8491,8493,8491,8491,8554,[8556,13968],14800,14033,[8492,13840],[8492,13844],8492,8492,8492,8492,[8555,14292],[8492,14479],[8492,14607],[8492,14225],[8492,14226],[8492,14227],[8492,14608],12300,12300,12300,12300,12308,12300,12300,12300,[1570,14606],[1633,14223],[16786,1637,14224],[16658,14225],[16721,14226],[16657,14227],[16721,14608],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12743,12744,[13584,12745],[13585,12746],[13585,12747],[13651,12750],12812,12813,12812,12813,[13649,12745],[13651,12681],13586,13586,13585,13651,13584,13584,13585,13650,13650,13649,13651,13651,13651,13586,13649,13585,13585,13587,13649,13587,13650,13584,13584,13587,13648,13648,13585,13651,13649,13651,13651,13584,13585,13651,13585,13648,13586,13584,13586,[13651,13197],[13649,13198],[13650,13199],13651,13585,13648,13587,13584,13651,13587,13649,13648,13650,13585,13585,13649,13587,13651,13587,13585,13650,13586,13585,13585,13650,13586,13648,13649,13584,13651,13584,13648,[13585,12559],[6553,12560],6552,6552,6552,7915,7916,6614,6615,6552,[6563,6682],6565,6628,[6562,6613],7850,6553,6551,6551,6552,[6628,6489],6565,6564,6564,6626,[6563,6487],[6565,6682],[6562,6613],[7851,8443],[7916,8444],7916,6552,7786,6614,[6629,6362,7262],[6562,7263],[6629,7264],[6626,6423,7265],[6564,6362],[6627,8499],[6626,8500],[6626,6613,7394],[6616,7395],[6553,7396],[7852,7397],7787,7852,[7916,8378],[7852,8379],[6615,8380],6551,6551,[6550,7455],[6550,7456],6553,6616,[6565,6358],[6562,6358],[6564,6425],6563,[6565,8757],[6629,8758],[6564,6486,8759],8628,[6550,8629],[6628,6489,8565],[6626,7330],[6564,6357,7331],[6615,7332],[6550,7333],[6626,6489],6563,6563,6562,[6628,6422],[6627,6358],[6563,6358],[6564,6362],6626,6562,6563,6629,6565,6627,6563,6562,6628,6629,6629,6628,6564,6562,6563,6629,6564,[6626,6422],[6565,6358],[6563,6362],6627,6564,6565,6564,[6629,6422],6617,[6551,8570],[6617,8571,7198],[8694,7199],[8695,7200],[8698,7201],[6558,6870,8699],6998,[6621,7002],[6558,7262],[6622,7263],[6558,6689,7264],[6559,6693,7265],[6558,6693],[6622,6690],[6558,6690],6626,6628,6627,[6558,6501],[6622,7254],[6558,7255],[6559,7256],[6557,7257],6559,[6557,6625],[6623,6502],[6623,6997],6941,7068,7001,7004,6999,[6558,7063],[6621,7066],[6558,7455],[6558,7456],6558,[6557,6625],[6622,6630],6557,6558,[6557,6434],[6623,6370],6562,[6627,7134],[6623,6694,7135],[6557,7136],[6621,7137],6621,6559,[6622,6625],6629,[6559,6630],6559,[6622,7061],[6623,7063,7447],[6621,6872,7448],[6559,6369],[6621,6437],[6559,6871],6998,[6622,7002,7326],[6621,6806,7327],[6557,6743,7328],[6559,6744,7329],[6623,6745],6934,6941,[6559,6940,7262],[6558,7002,7263],[6621,7264],[6621,7265],[6622,6625],6563,[6623,6374],[6558,6870],[6998,7190],[6621,7002,7191],[6621,7192],[6557,7193],6623,6622,6558,6558,6622,[6557,6805,7262],[6623,6810,7263],[6557,8378,7264],[6622,8379,7265],8380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3699,4746],3637,3699,3699,3700,3387,3700,3636,[3700,4616],[3701,4552],[3636,4553],3636,3637,3637,3699,3636,3635,[3637,4483],[3636,4484],[3637,4487,3188],[3637,4488],3636,[3637,4546],[3701,4547],[3699,4548],[3636,4551],[3700,4548],[3636,4551],[3636,4611],3637,3700,[3637,2774],3636,3635,3637,[3636,4616],[3635,4617],[3636,4484],[3637,4487],[3700,4610],[3636,4611],3323,3635,[3388,7685],3324,[3323,7749],3635,3324,[3701,7685],3324,[3324,7749],3637,3387,3700,[3700,7621],3635,3636,3323,3637,[3637,4616],[3637,4552],[3637,4553],3637,3636,3699,3637,3699,3636,3637,3635,3635,3701,3700,3635,3636,3637,3635,3637,3635,3635,3701,3636,3700,3636,3636,[3701,4737],[3700,4738],3637,3701,3636,3636,3323,3323,3637,3636,3323,3637,3701,3700,[3701,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8314,[12300,8315],12300,12300,12300,12300,12300,12300,12300,12300,[8492,14542,16753],[8492,16754],8492,[8492,15181],[8492,15182],[8492,15183],[8492,14292,15184],[8492,14479],[8492,14607],[8492,14545],[8492,14546,16753],[8492,16754],8492,8492,[8492,16753],[8492,14544,16754],[12300,13354],[12300,13355],[8492,14606],[8492,14607],[8492,14545],[8492,13969,14546,1365],[8492,14161,1366],[8492,13970,1367],[8492,14292],[8492,14479],[8492,14224],[8492,14225],[8492,14226,15250],[8492,14227,15251],[8492,14228],[12300,13354],[12300,13355],[8492,14542,16753],[8492,16754],[8492,14292],[8492,14479,15250],[8492,14226,15251],[8492,14227],[8492,14608],12300,[8492,14542],8495,[8492,15181],[8492,15182],[8492,15183],[8492,13839,15184],14801,14097,[8490,13970],8492,8555,8490,8492,8556,8554,8557,8495,8556,8557,8555,8557,8492,8554,8554,[8556,16689],[8305,16690],8557,8556,8491,8555,[8556,13969],[8555,14163],14096,14033,[8492,13906],[8554,13904],[8490,13840],[8557,13907],[8490,14544],12307,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12808,12809,12810,12811,12814,12876,12877,12876,12877,12809,[13648,12552],13584,13648,13649,13584,13649,13648,13586,13585,13651,13587,13649,13587,13648,13650,13650,13585,13587,13648,13585,13650,13586,13649,13651,13648,13648,13649,13585,13586,13587,13587,13584,13649,13584,13649,13587,13651,13584,13584,13650,[13648,13261],[13586,13262],[13585,13263],13585,13650,13585,13650,13585,13649,13587,13584,13649,13586,13587,13649,13650,13651,13584,13585,13587,13584,13651,13585,13587,13650,13649,13651,13650,13651,13587,13650,13648,[13648,12623],[6617,12624],6615,6552,6553,7915,6550,6552,7851,[6565,6618],6563,6629,[6628,6423,7126],[6617,7127],[6550,7128],[6615,7129],6616,6550,[6626,6489],6626,6627,[6565,6423],[6565,6424],6627,6565,6565,[6564,6677],[6553,8507],[7916,8508],7786,7915,6551,7915,[6614,7326],[6626,6358,7327],[6628,6358,7328],[6615,7329],[6565,6618],[6564,8435],[6564,8436],[6564,6486],[6553,7459],[7851,7460],6616,7852,6616,6553,[6614,8443],[7851,8444],6615,7788,6551,[6565,6618],[6563,6486],[6564,6681],[6628,6678],[6565,6678],[6562,6682],6562,6629,6562,6628,[6628,6486,8692],8693,[6626,8436],[6626,7394],[6563,6613,7395],[6552,7396],[6563,6488,7397],6562,6629,6628,[6562,6422],6615,[6553,8311],6553,6616,[6564,6359],[6627,6360],[6626,6359],[6562,6360],[6564,6361],[6564,6358],[6627,6359],[6565,6360],[6562,6361],[6565,6358],[6563,6359],[6627,6360],[6626,6361],[6629,6425],6564,6629,6628,[6562,6421],6550,[6563,6682],[6628,6423],[6564,6424],6563,6562,[6565,6613],[6551,8570],[6617,8634],[8635,7262],[6621,8758,7263],[6557,8759,7264],[6623,8762,7265],[6559,6741],6934,[6621,7002],[6623,7326],[6621,7327],[6621,7328],[6559,7329],6621,6558,6558,[6622,6499],6626,6563,[6622,6436],[6558,7318],[6557,7319],[6559,7320],[6623,7321],[6621,6435],6562,[6622,6566],[6622,6871],6998,7005,6999,[6622,7064],[6559,6873],6621,6623,6557,6557,[6559,6435],6562,6563,[6623,6370],[6557,6370],6562,6627,[6559,6691],[6559,6500,7198],[6557,7199],[6559,7200],[6621,7201],6559,[6622,6434],6562,6629,[6622,6630],6623,[6622,6369],[6622,6370],[6623,6370],6562,[6557,6630],6557,[6557,7061],[6623,7066,7390],[6622,6871,7391],[6622,6998,7392],[6557,6999,7393],[6623,7064],6998,7069,[6622,7069,7326],[6558,6935,7327],[6557,6746,7328],[6621,7329],[6622,6499],6626,[6622,6438],6559,[6557,7061,7254],[6622,6872,7255],[6559,6741,7256],[6557,6743,7257],[6557,6743],[6557,6743],[6621,6744],[6557,6745],[6622,6746],[6623,6869,7326],[6623,6874,7327],[6621,7328],[6559,8443,7329],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3701,4682],3701,3636,3635,3700,3387,3637,3388,3699,[3700,4616],[3701,4552],[3637,4553],3636,3635,3635,3700,[3635,4546],[3635,4547],[3699,4548],[3699,4551],[3635,4552],[3637,4487],[3701,4610],[3635,4611],[3637,7113],[3699,7114],3637,3635,3636,3635,3701,[3701,2838],3636,3699,3636,3701,[3699,4616],[3635,4548],[3637,4551],[3700,4611],3699,[3700,2709],3636,[3636,7749],3700,[3699,7813],3637,3699,[3323,7749],3700,[3324,7813],3636,[3387,2710],3324,[3388,7685],3636,3701,3637,3387,3700,[3637,4616],[3635,4617],[3636,4484],[3700,4487],[3699,4488],3700,3636,3700,3701,3635,3699,3637,3701,3699,[3699,4483],[3637,4484],[3637,4487],[3701,4484],[3700,4487],[3700,4488],3637,3699,3635,3701,[3701,4546],[3635,4547],[3635,4611],3699,3637,3637,3635,3636,3701,3388,3635,3324,3700,3636,3636,[3701,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8380],12300,12300,12300,12300,12300,12300,12300,[8492,14606],[8492,14607],[8492,14225],[8492,14226,15245],[8492,14227,15246],[8492,14607,15247],[8492,14608,15248],12300,12307,12300,[8492,14606],[8492,14607],[8492,14225],[8492,14226],[8492,14227],[8492,14608],12300,12300,12300,12302,12300,[8492,14606],[8492,14607],[8492,14607],[8492,14608],12301,12300,12300,12300,12300,12300,12300,12300,[8492,14606],[8492,14607],[8492,14608],12301,12300,12300,12300,12300,[8492,14606],[8492,14293],[8492,15245],[8492,15246],[8492,13904,15247],[8492,14032,15248],14097,[8556,14164],8554,8490,8556,8557,8557,8490,8492,8556,[8555,16689],[8493,14292,16690],[8490,14479],[8490,14223],[8557,14224],[8491,14225],[8491,14226],[8555,14227],[8490,14293,16753],[8493,16754],8493,8490,8555,8557,8491,8493,[8493,13969],14096,14033,14032,14800,[8490,14100],[8557,14480],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12873,12874,12875,12878,0,0,0,0,12615,[13584,12552],13649,13586,13584,13650,13648,13650,13585,13587,13587,13584,13651,13650,13649,13651,13586,13649,13587,13584,13648,13586,13584,13587,13587,13651,[13584,12686],[13649,12746],[13648,12747],[13585,12681],13585,13649,13586,13651,13585,13584,13584,13586,13649,13651,13651,[13650,13325],[13650,13326],[13648,13327],13587,13648,13649,13585,13584,13651,13586,13585,13651,13584,13585,13584,13587,13586,13584,13650,13650,13587,13648,13585,13651,13587,13650,13587,13585,13584,13585,13650,[13584,12686],[13587,12687],[6552,12688],7916,6615,7851,6616,6551,6615,6550,[6626,6489],6627,[6626,6357],[6617,7190],[7787,7191],[7852,7192],[6615,7193],6552,[6565,6488],6562,6565,6564,[6565,6613],6614,[6563,6424],6563,[6562,7126],[6563,8570,7127],[6626,6486,8571,7128],[6564,6678,8572,7129],6553,6551,6550,7852,[7850,7390],[6553,7391],[7850,7392],[6550,7393],[6563,6489],[6562,8499],[6562,8500],6627,[6626,6487],6553,6617,7851,7915,6615,[7915,8507],[7915,8508],6553,6552,[6628,6678],[6628,6682],6627,6564,6564,6626,6628,6629,6626,6565,6564,6562,[6562,8499],[6565,8500],[6629,6422],[6617,7459],[6628,6618,7460],6626,6564,[6628,6422],[6564,6358],6615,[7852,8570,7134],[6550,8375,7135],[6552,7136],[7915,7137],6552,7852,7916,6553,7788,6550,6550,7850,6553,6553,[7850,7134],[6616,7135],[6550,7136],[6614,7137],[6627,6425],6626,6627,[6565,6485],6614,[6562,6358],6617,[6565,6618],6628,[6564,6357],6617,[6615,8443],8698,[6621,8699,7326],[6557,6807,7327],[6558,6809,7328],[6559,7329],[6622,6997],6941,6935,[6557,6743,7390],[6622,6743,7391],[6559,6743,7392],[6622,6743,7393],[6623,6744],[6557,6745],[6623,6746],6559,[6558,6499],6626,6563,[6623,6437,7382],[6623,7383],[6622,7384],[6557,7385],[6623,6625],6627,[6623,6694],6558,[6623,6997],6937,[6623,7002],6557,6558,6623,6622,[6558,6435],[6559,6370],6562,6627,[6557,6692],6626,6565,6627,[6559,6694],6622,[6557,7262],[6558,7263],[6621,7264],[6558,6434,7265],[6557,6370],6562,6629,6629,6563,[6557,6370],6562,6627,[6557,6692],[6557,6693],[6622,6694],6559,6558,6559,[6623,7455],[6559,6870,7456],[6559,7066],6623,[6558,7061],[6623,7062],[6621,7065,7390],[6621,6998,7391],[6621,7002,7392],[6557,7393],6558,[6622,6433],[6622,6502],6623,[6559,7318],[6622,6807,7319],[6934,7320],[6999,7321],[6621,7064],[6623,7065],[6559,7065],6998,[6557,7002],[6559,6933,7390],[6557,6938,7391],[6557,7392],[6558,8507,7393],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3636,4746],3701,3701,3635,3323,3700,3700,3635,3699,3700,[3637,4616],[3637,4617],[3636,4484],[3637,4487],[3635,4484],[3699,4487],[3701,4610],[3700,4611],3636,3635,[3701,4616],[3701,4551],[3635,4611],3699,[3636,7177],[3700,7178],3636,3635,3636,3700,3637,[3637,2902],3637,3635,3636,3637,3699,3700,3701,3700,3635,[3700,2773],3701,[3699,7813],3323,3636,3636,3699,[3323,7813],3637,3699,3700,[3388,2774],[3636,2777],[3323,7749],3699,3701,3636,3699,3699,3701,[3701,4616],[3701,4548],[3637,4551],[3699,4552],[3637,4553],3699,3700,3637,3635,3701,[3699,4483],[3701,4487],[3700,4484],[3637,4547],[3700,4548],[3636,4551],[3637,4548],[3700,4551,2709],[3699,4552],[3635,4553],3636,3635,[3699,4546],[3635,4547],[3699,4611],3637,3699,[3699,2709],3700,3387,3700,3700,3324,3387,3388,3701,3635,[3636,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12307,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12302,[8554,14478],8555,8492,[8493,14095],14097,[8493,13970],[8492,14292],[8493,14479],[8492,14223],[8556,14224],[8555,14225],[8493,14226],[8493,14227],[8557,14543],[8491,14293],[8492,16753],[8491,14544,16754],12302,12300,12307,12300,12300,12301,[8490,14222],[8554,14223],[8555,14224],[8554,14223],[8555,14224],[8554,14225],[8557,14226],[8557,14543],[8555,14293],[8556,14159],[8556,14163],[8492,14161],14096,[8557,14100],[8556,14544],12308,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12615,[13651,12616],13586,13585,13585,13587,13586,13648,13651,13586,13648,13650,13650,13584,13648,13585,13650,13586,13585,13649,13649,13650,13648,13649,13648,[13651,12686],[13586,12687],12810,12811,[13586,12680],[13648,12681],13586,13584,13649,13650,13584,13649,13648,13649,13649,13584,13651,13586,13648,13648,13585,13585,[13651,12686],[13587,12746],[13650,12747],[13648,12681],13651,13585,13650,13584,13648,13648,[13651,12686],[13587,12746],[13651,12747],[13584,12681],13584,13586,13584,13649,13651,13649,13584,13584,13648,13584,13650,[13586,12623],12751,[6552,12752],7852,6614,6617,6614,6617,6550,[6628,6488],6627,6564,[6562,6613],[7850,7254],[6550,7255],[6551,7256],[6616,7257],[6627,6618],6562,6628,[6627,6422],[6563,6358],6617,6616,[6614,8570],[6627,6358,8630],[6627,6425,8631,7190],[6628,8634,7191],[8635,7192],[6629,8636,7193],[6627,6677],[6626,6679],6551,6550,[6562,6680],[6626,6680,7455],[6563,6678,7456],[6629,6682],[6626,8371],[6627,8372],[6565,8373],6628,[6562,7126],[6628,6487,7127],[6553,7128],[6550,7129],7851,6615,[6615,8378],[6550,8314],[6628,6680,8315],[6564,6489],6562,6565,6629,6565,[6564,6423],[6628,6358],[6565,6425],6565,6565,6564,6627,[6564,8308],[6628,8309],[6563,6357,8373],6615,6552,[6564,6682],6628,[6626,6422],6615,7915,[7916,8570],[7852,8571,7198],[6550,8439,7199],[7852,7200],[7915,7201],7915,7915,[7852,8312],6617,6552,6615,7916,7915,7850,6615,[6617,7198],[7852,7199],[6563,6680,7200],[6562,6678,7201],[6562,6682],6628,6628,[6565,6549],6550,7850,6615,[6563,6618],6626,[6629,6677],6551,[6552,8507],[6623,8508],[6558,7390],[6559,6997,7391],[6559,7002,7392],[6623,7393],[6558,6997],6941,7003,7005,[7069,7455],[7001,7456],7068,6940,7005,6935,[6557,6746],6623,[6557,6625],6627,[6623,6501],[6621,7447],[6622,7448],[6623,6369],6562,[6559,6630],6559,6622,[6622,6997],6999,[6622,7066],6557,6558,[6623,6369],[6557,6370],6562,6627,[6558,6690,7126],[6557,6501,7127],[6558,7128],[6623,6498,7129],6626,6563,[6557,6437],6622,[6558,7326],[6559,7327],[6558,7328],[6559,6625,7329],6627,6626,6628,6564,6627,[6559,6692],[6621,6691],[6557,6500],[6622,6806],[6557,6742],[6558,6809],6559,6623,[6557,6369],[6622,6371],[6621,6371],[6623,6372],[6559,6373],[6558,6437],6558,6623,[6557,6871,7455],[6621,7066,7456],6623,6621,[6623,6497],[6621,6566],6557,[6558,7382],[6622,6997,7383],[6999,7384],[6559,6872,7385],6557,6557,6559,[6557,6805],[6559,7002],[6622,6871],[6559,6873,7455],[6559,8570,7456],[6621,8571],8572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3699,4618],3701,3388,3323,3388,3388,3635,3635,3700,3636,[3637,4616],[3636,4548],[3635,4551],[3636,4548],[3699,4551],[3637,4611],3635,3637,3636,3635,3635,3701,3636,3635,3700,3699,3636,3699,3700,3699,3701,3701,3699,3700,3635,3637,3636,3637,3636,3701,[3635,2837],3700,3635,[3636,7621],3635,3323,3636,3388,3699,3324,3387,[3700,2838],[3323,2841],[3636,7813],3700,3387,3635,3637,3701,3700,3700,3636,3699,[3699,4616],[3637,4617],[3700,4618],3700,3701,3637,[3637,4546],[3637,4547],[3701,4551],[3635,4548],[3637,4611],3699,3700,3700,[3637,2773],[3700,4616],[3636,4617],[3700,4487],[3635,4484],[3636,4610],[3635,4611],3636,3635,3388,[3323,2773],3388,3701,3701,3636,3700,3637,3636,[3700,4483],[3635,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8557,14542],[8555,13839],[8491,13840],14032,[8555,14100],[8557,14292],[8491,14608],[12300,13354],[12300,13355],12300,12300,12300,12302,12300,[8491,14606],[8556,14607],[8493,14608],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12308,12300,[12300,13354],[12300,13355],[8491,14478,16689],[8304,16690],8492,8557,[8554,14159],[8492,14164,16689],[8555,14480,16690],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12679,[13586,12680],[13651,12681],13650,13651,13648,13648,13649,13648,13650,[13587,12686],[13586,12746],[13649,12747],[13586,12748],[13649,12749],[13651,12681],13648,13586,13585,13648,13585,13584,13584,13648,[13650,12686],[13584,12750],12751,12874,12875,12744,[13584,12745],[13586,12746],[13648,12747],[13650,12748],[13584,12749],[13650,12681],13587,13585,13584,13648,13651,13648,13650,13649,[13585,12686],[13584,12748],[13649,12749],[13649,12750],12810,12811,[13585,12680],[13584,12681],13587,13649,13648,13650,[13650,12686],[13649,12750],12810,12811,[13585,12680],[13650,12681],13650,13648,[13585,12686],[13585,12748],[13584,12747],[13648,12681],13586,13651,13586,13648,[13587,12559],[6552,12560],6616,7852,7850,6615,6552,[6629,6680],[6626,6489,7134],[6565,7135],[6564,7136],[6563,6422,7137],6615,[6616,7318],[6552,7319],[6551,7320],[7916,7321],[6627,6618],6565,[6627,6422],6617,6552,7850,[6552,8570],[7850,8571],8694,[8695,7254],[8698,7255],[6565,6425,8699,7256],[6564,7257],6562,6627,[6565,6487],[6563,6488],6564,6564,6626,6562,[6626,8435],[6565,8436],[6564,6423],[6562,6424],[6628,7190],[6563,7191],[6564,6486,7192],[6628,6678,7193],6551,6614,6551,[6627,6618,8378],[6562,8379],[6565,8249],[6627,8250],[6626,6422],[6626,6358],[6565,6358],6615,7915,6614,[6629,6358],[6627,6425],6565,[6628,8371],[6627,8372],[6629,6422,8373],6615,6552,[6629,6682],6562,6565,[6626,6613],6614,[7852,8570],[6617,8634],[6617,8635,7262],[6616,8503,7263],[7850,7264],[7851,7265],7852,6553,[6614,8376],[6551,8565],7916,6551,6616,7851,6616,6616,[6617,7262],[6614,7263],[6627,6358,7264],[6628,6425,7265],6562,6565,[6627,6422],6615,[7851,7126],[6551,7127],[6614,7128],[6614,7129],[6628,6358],[6627,6358],6617,[7851,8378],[6617,8314],[6559,8315],[6622,6997,7455],[6935,7456],[6621,6742],6934,6936,6939,7000,7068,6999,[6558,7065],6998,6999,[6998,7134],[6558,7002,7135],[6558,7136],[6623,6625,7137],6563,[6622,6437],6622,[6622,6435],6562,6627,[6559,6500],6558,[6622,6741],[6622,6934,7134],[6621,7002,7135],[6622,7136],[6622,7137],[6559,6369],6562,6627,[6559,6693],[6558,6694],[6622,7190],[6559,7191],[6559,7192],[6559,7193],[6622,6689],6626,6563,[6622,6370],[6557,6437,7390],[6557,7391],[6559,7392],[6622,6625,7393],6563,6562,6564,6627,[6558,6500],6557,[6623,6741],[6559,6742],6934,7067,[6558,7002],[6622,6369],[6622,6370],6562,6627,[6558,6692],[6557,6693],6626,6563,[6557,6370],[6623,6436],6621,6558,6621,6557,[6621,6561],[6621,6438],6621,6623,[6623,6870,7447],[6621,6873,7448],6557,6621,6621,6621,[6558,6869],6935,[6621,6742],[6623,6808,8570],[6622,8634],8635,8636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3635,4682],3637,3635,3635,3636,3323,3388,3635,3635,3323,3636,3700,3323,3699,3700,3323,3700,3323,3324,3701,3699,3323,3637,3699,3699,3636,3701,3699,3637,3701,3635,3699,3701,3635,3636,3637,3636,3323,3637,3387,[3323,2901],3701,3700,[3324,7685],3700,3636,3324,3635,3635,3636,3635,[3637,2902],[3699,2905],3699,3636,3700,3635,3699,3699,3635,3699,3636,3635,3636,[3635,4745],[3636,4746],3637,3637,3699,[3635,4673],[3637,4674],3635,3636,3699,3699,3637,3323,[3635,2837],3699,[3635,4616],[3701,4551],[3636,4548],[3637,4611],3635,3635,3636,3324,[3636,2837],3323,3700,3701,3699,3324,3699,[3637,4546],4547,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12300,8572],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8556,14542],[8555,14095],14800,[8556,14160],[8556,13971],[8492,14480],12300,12300,12300,12300,12300,12300,12300,12300,12300,12301,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12302,[8490,14542,16753],[8556,16754],8555,8554,8493,[8492,16753],[8491,14544,16754],12302,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12743,12744,[13650,12745],[13650,12746],[13587,12747],[13584,12746],[13650,12681],13586,13585,[13648,12686],[13650,12687],12810,12811,12812,12813,[13650,12680],[13587,12681],13649,13649,13650,13584,13649,13651,13586,[13586,12559],12814,12815,0,0,12808,12809,12810,12811,12812,12813,[13651,12680],[13651,12681],13651,13648,13648,13584,[13586,12686],[13648,12748],[13584,12749],[13587,12750],12812,12813,12814,12874,12875,12744,[13651,12745],[13586,12746],[13585,12747],[13650,12748],[13648,12749],[13649,12687],12814,12874,12875,12744,[13585,12745],[13587,12748],[13587,12749],[13649,12750],12812,12811,[13587,12745],[13651,12746],[13649,12747],[13649,12748],[13584,12749],[13585,12687],[6617,12688,7126],[6614,7127],[6550,7128],[7915,7129],7851,[6626,6618],6626,[6564,7198],[6565,7199],[6564,7200],[6627,6487,7201],6551,[6615,7382],[6614,7383],[6615,7384],[6551,7385],6616,[6564,6358],[6617,7134],[7915,7135],[6552,7136],[7915,8570,7137],[7915,8634],8635,[6616,8758],[7851,8759,7318],[6550,8762,7319],[6616,7320],[6626,6424,7321],6627,6629,6627,6626,6626,6627,6562,[6563,6357],[6564,6362,8499],[6628,8500],[6628,6421],6614,[6565,6358,7254],[6628,6362,7255],[6627,7256],[6629,7257],[6626,6486],6551,6550,[6565,6682],[6629,8378],[6626,8313],[6627,6357,8314],[6617,8315],7850,6551,7916,7851,6550,7851,6614,[6563,6425],[6562,8435],[6565,8436],[6563,6613],6552,[6628,6488],6562,6627,[6628,6357],6615,6552,[6615,8443],8698,[6552,8699,7326],[7916,7327],[6553,7328],[7915,7329],7851,7851,[6553,8440],[6617,8564],[7850,8565],6614,6615,7851,7916,6553,[7915,7326],[6615,7327],[7915,7328],[6563,6618,7329],6628,6564,[6629,6613],6550,[6617,7190],[6616,7191],[6550,7192],[6615,7193],6617,7851,6552,7915,[6550,8378],[6616,8379],[7061,8249],[6621,7063,8250],[6621,7062],6998,7003,6999,[6559,7065],6998,6935,[6623,6809],[6623,6997],6935,[6934,7198],[6622,7002,7199],[6559,7200],[6621,6498,7201],6626,6563,[6621,6370],6562,6627,[6623,6694],6622,[6621,6807],6934,[6999,7198],[6559,6872,7199],[6559,7200],[6623,7201],[6623,6625],6627,[6559,6694],6621,6623,[6621,7254],[6621,7255],[6623,7256],[6623,7257],6622,[6558,6498],[6559,6692],6626,6563,[6623,6370,7455],[6557,6370,7456],6562,6628,6628,6628,[6558,6630],6621,[6558,6741],6934,6999,[6622,7065],[6557,7064],[6621,7066],[6559,6689],[6557,6692],[6559,6692],[6559,6501],6623,6623,[6559,6499,7126],[6559,6690,7127],[6626,7128],[6563,7129],[6558,6370],[6623,6436],6559,[6623,6434],6562,[6623,6566],6558,6558,6559,[6558,6435],[6559,6370],[6558,6370],[6557,6374],6622,[6623,6933,7134],[6999,7135],[6558,7065,7136],[6559,6872,8443,7137],8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3636,4746],3700,3323,3700,3701,3323,3637,[3635,2932],[3388,2933],3700,3699,3701,3635,3323,3324,3387,3637,3387,3387,3699,3636,3699,3323,3636,3323,3635,3635,3701,3636,3701,3635,3636,3388,3637,3700,3637,3387,3387,3323,3323,3637,3637,3700,[3699,7749],3699,3699,3701,3700,3636,[3324,7621],3700,3637,3637,3700,3701,3637,3635,3701,3637,3636,3699,3637,3699,3635,[3701,4616],[3635,4552],[3700,4553],3701,[3637,4546],[3637,4547],[3636,4611],3636,3699,3387,3700,3635,3636,[3700,2901],3636,3635,3636,3636,3700,3701,3636,3637,3323,[3701,2901],3699,3637,3700,3700,3323,[3636,4609],4610,4611,4612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8636],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8491,14478,16689],[8492,13969,16690],[8490,13970],8554,[8554,16689],[8490,14480,16690],12302,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8556,14606],[8491,14225],[8491,14223],[8491,14224],[8554,14225],[8491,14607],[8556,14608],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12808,12809,12810,12811,12810,[13585,12745],[13584,12748],[13649,12749],[13586,12750],12751,12874,12875,12876,12877,12744,[13651,12745],[13587,12681],13586,13651,13586,13587,13586,13585,[13648,12559],12624,0,0,0,0,12873,12874,12875,12876,12877,12744,[13651,12745],[13585,12746],[13651,12747],[13650,12748],[13648,12749],[13585,12750],12812,12813,12814,12876,12877,12878,0,0,12808,12809,12810,12811,12812,12813,12751,12878,0,0,12808,12809,12812,12813,12814,12876,12875,12809,12810,12811,12812,12813,12751,[6617,12752,7190],[6552,7191],[7916,7192],[7916,7193],[6628,6679],[6627,6488],6629,[6565,6422,7262],[6564,6425,7263],[6564,7264],[6563,7265],[6629,6486],[6565,6679],[6551,7447],[6550,7448],6552,[6627,6679],6551,[7850,7198],[7916,7199],[7851,7200],[6615,8443,7201],8698,[6553,8699],7916,[6552,7382],[6614,7383],[6552,7384],[6565,6488,7385],6627,6565,6563,6627,6628,6564,6562,[6626,6613],[6628,6614,8563],[6626,6362,8564],[6626,6549,8630],[6553,8631],[7852,8565,7318],[6616,7319],[6629,6362,7320],[6564,7321],6626,[6564,6486],[6627,6488],6562,6628,[6562,6422],[6615,8378],[6552,8379],[6616,8380],7915,7916,6614,7851,[7916,7134],[6615,7135],[6616,7136],[6564,6424,8499,7137],[6628,8500],[6626,6487],[6629,6682],6629,6562,[6627,6357],6615,7852,7851,[6550,8507],[7916,8508],[6617,7390],[6552,7391],[6614,7392],[6552,7393],6617,6617,[6550,8504],8628,[6614,8629],[7852,8565],7850,7852,6615,7851,[7850,7390],[7850,7391],[7851,7392],[6564,6618,7393],6628,[6564,6422],6615,6553,[6614,7254],[6550,7255],[7850,7256],[6550,7257],7850,6550,7852,7788,6553,[6553,8378],[6552,8313],[6616,8314],[6558,8315],[6622,6997],7069,[6621,7002],[6559,7126],[6623,6871,7127],[6622,6998,7128],[6559,7002,7129],[6559,7061],6998,[6999,7262],[6557,6873,7263],[6621,7264],[6557,7265],[6621,6689],6626,6627,[6621,6691],[6558,6500],6558,6621,[6559,6997],6940,[6935,7262],[6559,6808,7263],[6557,7264],[6623,6434,7265],6562,[6623,6630],6558,6621,6557,[6557,6806,7318],[6558,6742,7319],[6558,6808,7320],[6622,7321],6622,6557,[6621,7126],[6623,6689,7127],[6623,6692,7128],[6559,6690,7129],[6623,6693],[6621,6691],[6557,6693],6626,6628,6563,[6622,6374],[6623,6871],[6622,7064],[6623,6873],[6623,6435],[6559,6436],6559,6623,6622,[6623,6806],[6558,6808],6559,6559,[6559,7190],[6622,7191],[6558,6498,7192],[6621,6693,7193],6626,6563,[6558,6370],6562,6627,[6559,6501],6621,6621,[6557,6434],6562,6627,[6557,6691],[6559,6694],6622,[6623,6870,7198],[6622,6872,7199],[6557,7200],[6558,8443,7201],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3637,4810],3700,[3699,7243],[3635,7244],3701,3701,3636,[3699,2996],[3635,2997],3387,3636,3701,3323,3636,3323,3636,3699,3323,3636,3701,3324,3637,3699,3323,3387,3324,3637,3324,3701,3699,3636,3635,3323,3699,3387,3699,3700,3323,3387,3388,3635,3699,3323,[3635,7813],3637,3699,3700,3388,3637,[3700,7685],3700,3323,3323,3324,3701,3699,3637,3700,3635,3701,3323,3323,3387,3323,3701,[3700,4616],[3699,4617],[3637,4484],[3700,4610],[3637,4611],3637,3635,3699,3635,3323,3636,3699,3701,3636,3637,3635,3700,3636,3637,3700,3699,3637,3636,3387,3635,3637,3323,3637,[3701,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,8698,[12300,8699],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8491,14542,16753],[8490,16754],8556,8305,[8492,16753],[8491,14544,16754],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12301,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12873,12874,12875,12874,12809,12812,12813,12814,12815,0,0,0,0,12808,12809,[13586,12680],[13585,12681],13649,13585,13585,13651,[13648,12686],[13649,12687],12688,0,0,0,0,0,0,0,0,0,12808,12809,12810,12811,12812,12813,12814,12876,12877,12878,0,0,0,0,0,0,12873,12874,12875,12876,12877,12815,0,0,0,0,12873,12876,12877,12878,0,0,12873,12874,12875,12876,[8435,12877],[6552,8436,12815],[6552,7254],[6615,7255],[6617,7256],[6552,7257],[6565,6358],[6564,6362],6629,[6628,6421,7326],[6614,7327],[6565,6358,7328],[6565,6425,7329],6563,6628,[6627,6613],6552,[6627,6682],6626,[6629,6613],[7851,7262],[7850,7263],[7915,7264],[6617,8507,7265],[6617,8508],6614,6550,[6562,6680],[6562,6678,7447],[6562,6682,7448],6627,6629,6563,6628,6563,6564,6565,6627,[6564,6613],[6564,6552,8627],8628,8694,8695,[6553,8564,7382],[6617,8565,7383],[6550,7384],[6564,6425,7385],6562,6565,6626,6563,[6629,6357],6615,7915,[7916,8443],[7915,8444],6550,7915,6616,6552,[6616,7198],[7850,7199],[7851,7200],[6627,6426,8563,7201],[6628,8564],[6565,8565],6629,6562,[6626,6422],6617,6615,6552,6551,[7851,8378],[6553,8314],[6550,8315],[6553,7455],[6550,7456],6615,6617,6552,6616,[7916,8692],8693,[6553,8436],7915,6552,[6626,6681],[6562,6680],[6564,6681],[6562,6679,7455],[6626,6681,7456],[6629,6682],6562,[6629,6421],6614,6550,[6615,7318],[6614,7319],[6552,7320],[6616,7321],7850,6552,7852,7915,7915,7852,6615,[6552,8378],[6552,8379],[6558,6997,8380],7067,[6557,7002],[6621,7190],[6557,7191],[6557,6871,7192],[6622,7066,7193],6622,[6622,6997],[6621,7002,7326],[6622,7327],[6559,7328],[6558,7329],6559,[6623,6625],6563,[6621,6374],6622,6557,6557,[6559,6870],[6558,7062],[6558,7063,7326],[6621,6872,7327],[6621,7328],[6623,6625,7329],6629,6563,[6622,6374],6559,6622,[6623,6997,7382],[7004,7383],[6935,7384],[6622,6808,7385],6623,6558,[6557,7190],[6557,7191],[6621,7192],[6621,7193],[6623,6806],[6557,6808],[6558,7126],[6559,6689,7127],[6621,6690,7128],[6626,7129],6563,[6559,6374],6623,[6559,6435],6562,[6622,6630,7134],[6558,7135],[6559,6807,7136],[6622,6809,7137],[6557,6997],6935,[6621,6743],[6623,6744],[6558,6745,7254],[6559,6746,7255],[6558,7256],[6558,7257],[6557,6499],[6622,6693],6626,6628,6563,[6622,6371],[6557,6372],[6559,6373],6562,6627,[6622,6500],6621,[6558,6741],[6621,6742],[6621,6808,7262],[6623,7263],[6622,7264],[6623,8507,7265],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3700,4874],3637,[3636,7307],[3636,7308],3323,3635,3699,[3700,3060],[3387,3061],3635,3701,3700,3635,3700,3635,3637,3636,3323,3699,3323,3701,3701,3701,3324,3701,3323,3637,3324,3701,3637,3637,3637,3635,3699,3699,3635,3701,3388,3700,3636,3637,3701,3636,3700,3637,3700,3636,3700,3637,[3324,7749],3699,3324,3700,3388,3323,3324,3323,3323,3388,3637,3388,3700,3701,3323,3701,3699,[3636,4616],[3701,4548],[3699,4611],3700,3701,3701,3699,3699,3635,3324,3700,3388,3387,3635,3635,3637,3699,3636,3637,3699,[3700,2932],[3699,2933],3637,3636,3700,3699,3701,[3699,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[8556,14222],[8493,14223],[8493,14224],[8491,14225],[8555,14226],[8557,14608],12301,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12873,12876,12877,12878,0,0,0,0,0,0,12873,12744,[13649,12745],[13649,12746],[13648,12747],[13649,12748],[13585,12749],[13649,12750],12751,12752,0,0,0,0,0,0,0,0,0,0,12873,12874,12875,12876,12877,12878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6616,8436],[6553,7318],[7916,7319],[6614,7320],[7915,7321],6617,[6628,6426],6565,[6562,6485,7390],[7915,7391],[6550,7392],[6564,6488,7393],6628,6628,[6627,6677],[6563,6682],6629,6626,[6564,6613],[6616,7326],[7916,7327],[7850,7328],[6553,8378,7329],[7851,8314],[6552,8315],[6565,6682],6626,6562,6629,6629,6563,6564,6628,6565,6628,6563,[6629,6423],[6565,6615],6616,[6626,6362,8692],[6564,6485,8758],[6553,8759],8628,[7786,8629,7447],[6553,8565,7448],6614,[6563,6358],[6565,6362],6562,6563,[6627,6613],7916,7850,[6617,8507],[7788,8508],7852,7852,6617,7852,[7851,7262],[6616,7263],[7851,7264],[6627,6426,8627,7265],8628,[6563,8629],[6626,8565],6562,[6629,6487],[6628,6679],6551,7916,6617,6616,[6617,8378],[7915,8379],[7850,8380],6617,7916,6617,7916,6617,6553,[6553,8499],[7915,8500],6550,[6626,6682],6565,6565,6628,6629,6629,6629,6564,[6629,6421],6616,7851,[7850,7382],[6551,7383],[6616,7384],[7916,7385],6616,6617,6615,7916,7852,7851,7916,7851,[6552,8443],[6621,6871,8444],[6621,7063],[6621,6873],[6623,7254],[6557,7255],[6622,7256],[6557,6807,7257],[6623,6742],6934,[6559,7002,7390],[6558,7391],[6622,7392],[6559,7393],6623,[6559,6689],6626,6563,[6559,6370],[6622,6437],6557,6559,6623,[6623,7390],[6621,7391],[6557,7392],[6623,6625,7393],6565,6564,6563,[6623,6437],6623,[6557,6871],[6998,7447],[7000,7448],6935,[6621,6743],[6559,6743],[6557,6743,7254],[6622,6743,7255],[6623,6744,7256],[6558,6745,7257],6934,[6559,7002],[6622,7190],[6623,7191],[6559,7192],[6559,6499,7193],6626,6563,[6559,6437],[6621,6625],6627,[6621,6500,7198],[6557,7199],[6621,6997,7200],[6935,7201],6934,6937,6937,7004,[6999,7318],[6558,6872,7319],[6623,7320],[6557,7321],6559,[6622,6434],6562,6627,[6558,6690],[6559,6692],[6622,6690],[6558,6691],[6622,6690],[6557,6500],6623,6559,[6622,6997],7005,[6935,7326],[6621,6746,7327],[6559,7328],[6622,8507,7329],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3636,4937],3700,3699,3637,3324,3635,3635,3701,3701,3324,3388,3699,3635,3699,3636,3699,3636,3636,3699,3699,3636,3635,3701,3701,3700,3700,3701,3699,3323,3699,3700,3635,3699,3637,3323,3636,3699,3387,3700,3699,3635,3635,3637,3324,3701,3636,3636,3388,3636,3324,[3635,7813],[3701,2932],[3636,2933],3637,3323,3699,3699,3388,3637,3636,3636,3637,3699,3324,[3700,2932],[3636,2933],3323,3637,3388,3700,3701,3637,3637,3699,3635,3387,3387,3701,3323,3699,3637,3635,3635,3636,3635,3635,3701,[3701,2996],[3324,2997],3699,3387,3701,3637,3637,[3701,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12302,12300,12300,12300,12308,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8249],[12300,8250],12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12808,12809,12810,12811,12812,12813,12814,12815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8499,[6617,8500],[6616,7382],[6616,7383],[6616,7384],[6550,7385],6553,[6627,6490],6565,[6563,6549],[6615,7455],[6629,6618,7456],6627,6562,6565,6627,6626,6563,[6565,6357],6617,[6614,7390],[6553,7391],[6615,7392],[7916,7393],[6552,8378],[6565,6489,8379],[6563,8380],6629,6565,[6564,6357],[6628,6425],6563,6629,[6626,7126],[6627,8308,7127],[6627,8246,7128],[6565,8249,7129],[6563,6486,8250],[6563,6551],7915,[6565,6618],[6629,6549],7851,[6550,8692],8693,[6617,8436],6550,6617,6616,[6628,6358],[6629,6358],[6617,7126],[7915,7127],[7916,7128],[7916,8378,7129],[7852,8314],[7786,8315],6551,6614,6616,[6553,7326],[6552,7327],[6553,7328],[6565,6490,7329],[6628,8692],8693,[6562,8436],6563,6565,6562,[6629,6677],[6628,6680],6551,6551,7850,[7788,8507],[6615,8508],6617,7916,7916,6617,[7915,7134],[7916,7135],[7850,8563,7136],[6615,8564,7137],[6616,8565],[6565,6425],6564,6626,[6626,6422],[6629,6425],6563,6562,6562,[6629,6485],7851,6550,6617,[7850,7447],[6550,7448],[6562,6678],[6564,6680],[6564,6681],[6627,6679],6553,7788,6617,7916,7851,[6616,8507],[6557,8508],6622,6621,[6622,7318],[6623,7319],[6557,7320],[6559,6997,7321],6999,[6622,7065],[6557,6872],[6621,7455],[6557,7456],6621,6622,6621,[6621,6498],6626,6629,6563,[6559,6371],[6623,6372],[6621,6373],[6557,6437],[6557,7455],[6557,7456],[6559,6498],6626,6564,6564,6563,[6557,6437],6621,[6559,7061],[6623,7063],[6623,7063],[6622,7065],6998,[6940,7318],[6937,7319],[7000,7320],[6936,7321],7000,6935,[6621,6742,7254],[6622,6809,7255],[6557,7256],[6558,7257],[6622,6689],6626,6563,6562,[6557,6630],[6559,7262],[6622,7263],[6557,6997,7264],[6999,7265],[6621,7064],6998,6999,6998,[6935,7382],[6558,6808,7383],[6558,7384],[6623,7385],[6557,6434],6562,6627,[6622,6501,7134],[6623,7135],[6621,7136],[6623,7137],6558,6559,6559,[6557,6741],[6557,6742],6934,6999,[6557,7064,7390],[6621,6873,7391],[6621,8570,7392],[6558,8571,7393],8572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3701,4682],3701,3636,3635,3637,3637,3701,3700,3700,[3701,4808],[3699,4870],[3701,4871],[3699,4803],3637,3700,3636,3636,[3636,4808],[3637,4868],[3699,4869],[3699,4803],3637,3637,3635,3699,3637,3700,3637,3699,[3701,2932],[3637,2933],3701,3700,3701,[3699,4549],3324,3700,3635,3635,3635,3637,3637,3701,3701,3701,3635,3635,3635,3323,3700,3701,3323,[3699,2996],[3699,2997],3323,3388,3699,3637,3635,3700,3388,3637,3699,3699,3323,[3699,2996],[3701,2997],3323,3699,3388,3700,3636,3635,3387,3323,3701,3637,3635,3636,3636,3323,3700,3635,3323,3323,3637,3699,3701,[3700,3060],[3637,3061],3701,3701,3637,3324,3637,[3635,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8380],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8310,8313,8314,[12300,8315],12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12873,12874,12875,12876,12877,12878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8563,[6617,8564],[7850,8565],[7915,7447],[6551,7448],6551,7916,[6627,6554],6562,[6628,6486],[6562,6679],[6565,6682],6565,[6627,6422],[6629,6359],[6627,6359],[6562,6360],[6564,6361],6617,6552,6617,[6614,7455],[6614,7456],6552,[6629,6682],[6628,8443],[6628,8444],6565,6627,[6565,6487],[6564,6489],6562,[6563,8245],[6626,6423,8246,7190],[6628,6358,8372,7191],[6562,6425,8310,7192],[6626,8313,7193],[6628,8314],[6629,6613,8380],[6629,6614],[6627,6618],[6626,6487],6551,6617,[6614,8499],[6552,8500],7915,7851,7850,7850,6553,[6551,7190],[7916,7191],[6551,7192],[7850,7193],[6553,8378],[7915,8379],[6614,8380],7788,6550,[6551,7390],[7915,7391],[6615,7392],[6564,6554,7393],6629,[6562,8499],[6629,8500],6626,6562,[6629,7138],[6563,7139],[6628,7140],[6627,6487,7141],[6626,6678],[6551,8570],[6552,8571],[7916,8572],6553,7850,6550,6614,[7850,7198],[6551,7199],[7916,8627,7200],[6550,8628,7201],[7850,8629],[6614,8565],[6628,6358],[6627,6425,7134],[6627,6487,7135],[6564,6682,7136],[6628,7137],6562,6562,[6564,6549],6550,6553,6550,6615,[6564,6618],6629,6626,6563,6564,[6629,6677],6551,6616,7851,[6552,8570],[6617,8571],[6558,6808,8572],6621,6623,[6557,7382],[6623,7383],[6557,6741,7384],[6934,7385],[6623,7002],6623,6621,[6622,6434],[6559,6371],[6557,6371],[6557,6371],[6558,6372],[6622,6373],6562,[6558,6627,7126],[6621,6691,7127],[6621,6690,7128],[6626,7129],6629,6563,[6559,6374],6558,6623,[6559,6689],6626,6628,6565,6563,[6559,6374],6558,6621,6622,6621,[6558,6871],[6557,7062,7382],[6998,7383],[7004,7384],[7067,7385],6999,6998,[7069,7318],[6558,7002,7319],[6622,7320],[6558,7321],6557,[6622,6625],6629,6627,[6557,6501],[6558,7326],[6622,6807,7327],[6934,7328],[6935,7329],[6559,6742],6934,[6558,7002],[6623,7061],[6622,7063],[6622,6873,7447],[6558,7448],6558,[6559,6625],6627,[6621,6694],[6621,7198],[6559,7199],[6558,7200],[6623,7201],6557,[6557,6741],[6623,6742],6934,6999,[6559,7065],[6559,7066,8570],[6621,8632],[6557,8633,7455],[6558,8634,7456],8635,8636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3701,4746],3701,3637,3637,3700,3699,3700,3701,[3637,4808],[3635,4809],4934,4935,[3699,4867],[3635,4868],[3701,4869],[3636,4870],[3700,4871],[3635,4872],[4932,3125],4933,[3699,4867],[3701,4869],[3635,4870],[3700,4871],[3636,4803],3700,3700,3701,3701,[3635,2996],[3700,2997],3699,3636,[3637,4808],[3636,4613],3701,3635,3701,3700,[3637,4550],3635,3635,3699,3699,3635,3701,3637,3636,3637,3635,3636,3637,[3635,3060],[3636,3061],3637,3637,3701,3635,3637,3388,3635,3699,3701,3700,3635,[3324,3060],[3635,3061],3635,3323,3636,3700,3701,3323,3637,3387,3637,3387,3701,3635,3701,3387,3701,3637,3701,3700,3388,3637,3699,3701,3635,3637,3388,3324,3388,3635,[3637,4865],4866,4867,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,8378,8379,[12300,8380],12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8627,8628,[6617,8564],[6617,8565],7850,7852,6551,[6564,6618],6628,6562,6563,6628,6627,[6565,6613],7850,7915,6551,7915,6550,6553,6616,6616,6552,[6565,6682],6562,[6627,8507],[6565,6423,8508],[6562,6359],[6626,6360],[6629,6361],[6564,6424],[6626,8308],[6628,6422,8309],[6615,8310,7254],[7852,8373,7255],[6614,7256],[6626,6362,7257],[6629,8443],[6565,6677,8444],[6565,6551],6616,[6564,6424],[6564,6487],6551,[7915,8563],[6614,8564],[7916,8565],6550,6552,6551,7787,[7915,7254],[6616,7255],[7852,7256],[7851,7257],7852,[7915,8443],[6553,8444],6552,6550,6616,[7915,7455],[6550,7456],[6562,6488],6565,[6629,8563],[6564,6357,8564],[6565,6358,8565],[6562,6425],[6626,7202],[6628,7203],[6562,7204],[6562,7205],[6627,8570],[6562,6613,8634],8635,[7916,8636],7851,6614,6615,6551,[6615,7262],[6550,7263],[6616,7264],[6551,8692,7265],8693,[7786,8500],7786,[6629,6618,7198],[6565,7199],[6628,7200],[6627,7201],6563,6626,[6629,6487],[6563,6682],[6629,6613],7852,6615,[6628,6618],6563,6629,[6562,6423],[6563,6358],[6562,6424],[6627,6613],7916,[6615,8570],[6553,8634],8635,[6622,6935,8636],[6559,6743],[6622,6743],[6557,6744],[6621,6745,7447],[6934,7448],6999,[6623,6873],6621,[6623,6369],6562,6627,[6622,6691],[6621,6690],6626,6627,[6557,6691],[6622,6501,7190],[6622,7191],[6623,7192],[6558,6625,7193],6628,6629,[6557,6630],6622,6622,6559,[6558,6689],6626,6564,6564,[6559,6630],6557,6559,6558,6622,6559,6558,[6623,6997,7447],[7004,7448],7068,[6621,7002],[6559,6870],[6559,7065,7382],[6557,7066,7383],[6623,7384],[6559,7385],[6558,6435],6562,6628,6563,[6557,6436],[6558,7390],[6623,6871,7391],[6622,7065,7392],[6559,7063,7393],[6623,7064],[6557,7064],[6622,6873],6558,6622,6621,[6621,6434],[6621,6370],6562,[6622,6630],6557,[6558,7262],[6622,7263],[6623,7264],[6623,6807,7265],[6622,6742],6934,6999,[6623,7064,8570],[6559,6872,8632],[6558,8633],[6623,8634],8696,8697,8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3699,4553],3699,3701,3701,[3699,4808],[3635,4870],[3635,4871],[3636,4872],4873,[3700,4998],[3699,4999],4931,4932,[4933,3188],4934,4935,4936,[3699,4996],[3699,4997],4931,4933,4934,4935,[3637,4802],[3700,4803],3700,3699,3701,[3699,3060],[3636,3061],3700,[3700,4808],[3701,4809],[3637,4677],3637,3701,3701,3700,[3701,4614],[3699,4803],3700,3701,[3699,4808],[3700,4868],[3701,4869],[3699,4870],[3700,4871],[3635,4803],3699,3636,3701,3699,3636,3701,3636,3699,3700,3700,3323,3387,3637,3636,3637,3700,3700,3636,3635,3323,3701,3699,3637,3324,3323,3635,3700,3701,[3637,4550],3635,3635,3388,3388,3635,3636,3700,3700,3635,3323,3637,3700,3636,3635,3700,3700,3700,3700,[3637,4808,4930],4931,4932,4933,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8692,8628,[6552,8629],[7851,8565],7851,6552,[6626,6682],6564,6563,6629,6562,[6564,6423],6615,6552,6551,6551,7852,6551,7916,6614,6550,[6564,6682],6565,[6565,8570],[6629,8571],[6626,6613,8572],7850,6617,6552,[6564,6618,8371],[6565,8372],[6562,6421,8373],[6553,7318],[7915,7319],[7851,7320],[6628,6618,7321],[6629,8507],[6628,8508],[6629,6613],[6562,6551],6616,[6626,6425],[6563,6613],[6614,8627],8628,[7788,8629],[6616,8565],6552,7916,6551,[6551,7318],[6615,7319],[6616,7320],[7851,7321],7786,[6550,8507],[6614,8508],7852,6552,6550,6550,[6563,6618],6563,6564,[6565,6423,8627],8628,[7915,8629],[6614,8565],[6562,6358,7266],[6565,6358,7267],[6563,6424,7268],[6562,6357,7269],[6564,6358,8443],8698,[6616,8699],7916,7851,7916,6553,7852,[7850,7326],[6614,7327],[6615,7328],[6552,7329],[6614,8435],[6616,8436],7852,[6565,6618,7262],[6565,6423,7263],[6629,6425,7264],[6562,7265],6626,6627,6627,6627,[6563,6487],6551,6550,[6626,6489,7134],[6565,7135],[6562,7136],[6563,6421,7137],6550,6614,6617,6616,[6617,8443],8698,[6558,7061,8699],[6622,7063],[6622,7063],6998,7003,6999,[6558,7063],[6621,7066],6623,6622,[6622,6433],6627,[6558,6501],6622,6621,[6622,6625],[6559,6630],6559,[6622,7254],[6621,7255],[6623,7256],[6623,6499,7257],6626,6564,6563,[6623,6370],[6558,6436],6557,6559,[6559,6499],6626,6628,6563,[6622,6371],[6559,6372],[6621,6373],[6558,6436],[6559,7134],[6559,6806,7135],[6558,6934,7136],[7067,7137],7001,[6557,7002],6559,6557,[6558,7447],[6622,7448],[6557,6369],6562,6627,[6622,6691],6626,6563,[6623,6374],[6621,7455],[6622,7456],6622,6558,[6557,6369],[6622,6371],[6557,6371],[6622,6372],[6557,6373],6562,6627,[6558,6690],[6558,6501],6558,[6559,7326],[6621,7327],[6623,6806,7328],[6557,6934,7329],6999,[6623,7064],[6622,6873,8570],[6558,8571],8696,8697,8698,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3635,4618],3635,[3701,4808],[3699,4872],4934,4935,4936,[3635,4937],3701,3701,[3637,4995],[3637,4996],[3636,4997],[3701,4998],[3635,4999],[3636,5000],3701,3700,[3699,4995],[3700,4997,2868],[3636,4998],[3700,4999],4866,[3701,4802],[3699,4803],3699,3637,3636,3636,[3635,4808],[3636,4872],4873,[3701,4741],3636,3635,3387,3637,[3637,4678],[3635,4802],[3636,4868],[3637,4869],[3635,4872],4932,[4933,2868],4934,4935,[3701,4802],[3636,4803],3699,3700,3699,3700,3637,3636,[3700,4808],[3637,4868],[3699,4869],[3699,4803],3637,3700,3699,3637,3636,3699,3701,3701,3700,3637,3636,3701,3324,3700,3701,3701,3635,[3636,4614],[3701,4803],3700,3699,3387,3323,3637,3701,3699,3700,3700,3636,[3637,4808],[3637,4870],[3635,4871],[3699,4803],3701,3700,[3637,4808],[3700,4809,7621],[4873,4995],[3701,4996],[3637,4997,2709],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[12300,8572],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8249],[12300,8246],[12300,8250],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,[12300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8692,8693,[6552,8436],7915,[6629,6618],6564,6562,6628,6626,6565,[6565,6613],6550,7915,7850,7851,7851,7851,7850,6550,[6563,6682],6563,[6564,8570],[6562,6422,8634],8635,[6563,6677,8636],[6564,6679],6551,6550,[6626,6489,8435],[6629,8436],[6629,6485],[7850,7382],[6615,7383],[6617,7384],[6565,6618,7385],[6627,8507],[6562,8508],[6626,6613],7851,7851,[6629,6618],[6562,6613],6550,[6615,8692],8693,[7852,8629],[6615,8565],6552,7915,[6551,7382],[7850,7383],[7850,7384],[6614,7385],7915,[7851,8378],[7852,8314],[6617,8315],6617,6616,6550,[6563,6488],6564,[6564,6423],6617,[7915,8692],8693,[6552,8500],[7850,7330],[6551,7331],[6616,7332],[6615,7333],[7915,8507],[6550,8508],6617,6550,7850,6617,7916,6616,[7851,7390],[7916,7391],[6617,7392],[7850,7393],[7916,8499],[6616,8500],6615,[6614,7326],[6617,7327],[6614,7328],[6629,6362,7329],[6627,6422],[6626,6358],[6565,6424],6626,6563,[6626,6487],[6564,6682],[6626,7198],[6564,7199],[6563,7200],[6627,6485,7201],7786,6553,6615,6552,[6617,8507],[6623,8508],6621,6623,[6557,6806],[6934,7126],[6557,6999,7127],[6557,6873,7128],[6621,7129],6558,6559,6622,[6621,6561],[6621,6630],6558,[6623,6435],[6623,6370],6562,[6557,6630],6558,[6558,7318],[6557,6807,7319],[6558,6809,7320],[6622,7321],[6623,6499],6626,6629,6565,6563,[6557,6370],[6622,6436],6559,[6623,6625],6564,6629,6628,6629,6628,[6622,6630],[6559,7198],[6557,6871,7199],[6621,7065,7200],[6998,7201],6999,[6558,6872],6621,6559,[6621,6435],[6623,6370],6562,6627,[6558,6694],6557,[6558,6498],6626,6563,[6558,6371],[6558,6371],[6621,6372],[6558,6373],6562,6627,[6623,6692],[6622,6693],[6621,6690],6626,6563,[6559,6437],6559,6622,[6622,7390],[6621,6741,7391],[6559,6934,7392],[6999,7393],[6623,6872],[6557,8570],[6621,8634],8635,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3700,4870,4682],[3699,4871],[3635,4809],4936,[3700,4998,7621],[3701,4999],[3636,5000],3637,3701,[3636,2709],3700,3636,3637,3637,3699,3637,3700,3637,3636,3701,3636,3700,[3636,4930],4866,[3637,4867],[3700,4868],[3637,4869],[3700,4870],[3701,4871],[3635,4872],4936,[3636,4937,2710],3637,3700,3388,3388,3324,[3701,4742],4866,4932,4933,4936,[3635,4996],[3635,4997],[3635,4998],[3636,4999],4866,[3699,4802],[3701,4803],3636,3700,3636,3699,[3700,4808],[3635,4809],4932,4933,[3637,4802],[3701,4803],3635,3701,3637,3635,3637,3636,3699,3636,3700,3700,[3636,4549],3701,3701,3323,3700,3637,[3700,4678],[3699,4802],[3699,4803],3637,3699,3699,3323,3324,3701,3700,3699,[3699,4808],[3700,4809],[4934,3125],4935,[3699,4867],[3636,4870],[3699,4871],[3701,4872],[4873,7685],[3637,4874],3637,[3636,2773],[3701,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[12300,8636],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8249],[12300,8250],12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8310,8313,8310,8314,[12300,8315],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,8378,8379,[12300,8246],[12300,8249],[12300,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6553,8436],7852,6614,[6628,6358],[6628,6424],6564,6563,[6565,6357],6615,7915,7852,7916,7915,6550,6553,6616,[6563,6618],6564,6564,[6627,8443],8698,[6614,8699],[6626,6359],[6627,6361],7915,[6629,6426],[6564,8499],[6562,8500],[6627,6549],6615,[6550,7447],[6616,7448],6614,[6562,6362,8378],[6626,8314],[6563,6486,8315],[6626,6551],6552,[6629,6489],[6562,6677],[6628,6681],6553,[6615,8692],8693,[7850,8500],6616,6614,7850,[7915,7447],[6551,7448],7915,7788,6615,[6550,8378],[6551,8379],[6551,8249],[6552,8250],[6564,6489],6626,6563,[6564,6613],7788,6617,[6550,8563],[6617,8564],[7850,8565,7394],[6550,7395],[7852,7396],[7788,8570,7397],[7851,8571],[6614,8572],[6628,6678],[6627,6680],6553,6614,6616,6550,6553,[6552,7455],[6565,6680,7456],[6627,6679,8308],[6553,8309],[6552,8373],6615,[6615,7390],[7916,7391],[7850,7392],[6616,7393],6617,6552,[6564,6489],6564,6628,6626,6563,[6627,7262],[6627,6357,7263],[6628,6424,7264],[6564,6549,7265],7915,6616,6616,7915,[7915,8378],[6553,8314],[6623,8315],6557,[6623,6805],[6999,7190],[6623,7066,7191],[6623,7192],[6622,7193],[6621,6434],[6557,6370],[6621,6370,7126],[6562,7127],[6563,7128],[6558,6370,7129],6562,6629,6627,[6557,6501],6621,[6559,7382],[6557,6997,7383],[6935,7384],[6559,6808,7385],6622,[6558,6498],6626,6629,6564,6628,6563,[6621,6370],6562,6628,6627,[6559,6690],[6559,6692],[6558,6692],[6559,6501],[6622,7262],[6622,6806,7263],[6622,6808,7264],[6557,6871,7265],[6623,6873],6621,6558,[6559,6369],6562,6627,[6559,6693],[6623,6501],6622,6621,6557,[6622,6498],6626,6629,6627,[6623,6690],[6558,6692],[6623,6690],[6623,6501],[6559,6807],[6623,6742],[6623,6809],[6558,6689],6626,6563,[6621,6374],6621,6557,[6557,6997,7455],[7069,7456],[6557,7002],6558,[6622,8443],8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[4934,4746],4935,4873,[3701,5000],[3636,7685],3635,3635,3323,3701,[3323,2773],3699,3700,3323,3699,3635,3636,3635,3637,3637,3701,3699,3701,3701,[3700,4930],4931,4932,[4933,3124],4934,4935,4936,[3700,5000],[3699,2774],3635,3699,3323,3388,3699,3635,[3637,4930],[3636,4996],[3636,4997,2868],[3635,5000],3635,3699,3699,3635,[3701,4930],4866,[3700,4867],[3700,4868],[3636,4869],[3637,4870],[3700,4871],[3699,4872],4873,[3700,4996],[3635,4997,3125],4866,[3636,4802],[3699,4803],3701,3637,3636,3701,3701,3700,3635,3636,[3637,4808],[3635,4613],3636,3635,3699,3635,3636,[3636,4742],[4866,3125],[3636,4802],[3636,4803],3701,3699,3635,3637,[3635,4808],[3636,4868],[3635,4869],[3701,4872],4873,[3636,4998],[3635,4999],4931,[4934,3188],4935,4936,[3701,4937,7749],3700,3700,[3636,2837],3701,[3637,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[12300,8699],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8310,8313,8314,[12300,8315],12300,12300,12300,12300,12300,[12300,8245],8372,8373,0,0,0,8378,8379,[12300,8380],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8249],[12300,8250],12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8249],[12300,8250],12300,12300,12300,[12300,8245],[12300,8246],[12300,8250],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8373,0,0,0,0,0,0,8378,8310,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6552,8436],7850,6616,6553,[6627,6618],6562,[6564,6423],6617,7916,6615,[6551,7126],[6615,7127],[7852,7128],[6616,7129],[6563,6680],[6628,6680],[6565,6488],6629,[6563,6423,7138],[6628,6358,8507,7139],[6617,8508,7140],[6614,7141],7915,6552,6552,[6627,6490],[6564,8563],[6564,6357,8564],[6617,8565],7851,7788,6617,6615,6614,[6628,6362,8378],[6626,8379],[6628,6487,8380],[6563,6682],6564,6562,6629,[6565,6487],6551,[7852,8563],[6553,8564],[6550,8565],7852,6551,6616,7788,7788,6551,7851,[6565,6618],[6565,6677,8378],[6627,6680,8313],[6562,6682,8314],[6563,8315],6562,[6629,6423],6615,6551,6617,[7851,8627],8628,[7916,8629],[7915,8630,7459],[6551,8631,7460],[7852,8634],8635,[7852,8636],[6626,6358],[6565,6362],[6628,6486],6553,7850,[6562,6618],[6562,6487],[6629,6682,8245],[6565,8246],[6563,6422,8372],[6615,8373],6614,6552,6551,[7851,7455],[7916,7456],6617,6616,6614,[6628,6358],[6565,6362],6563,6628,6629,[6564,7326],[6629,6613,7327],[6616,7328],[6615,7329],6551,6551,7850,7850,6550,[6552,8378],[6553,8379],[6559,8380],[6621,6869],[6622,7002,7254],[6622,7255],[6622,7256],[6623,7257],[6557,6625],6627,[6558,6692,7190],[6559,6690,7191],[6558,6692,7192],[6626,7193],6564,6629,6563,[6557,6370],[6559,6436],6622,[6557,7061,7447],[6998,7448],6935,[6557,6809],6557,[6557,6689],6626,6565,6629,6564,6565,6564,6629,[6558,6630],6559,6621,6622,6559,[6623,6807,7326],[6934,7327],[6557,7002,7328],[6621,7329],6558,6558,[6622,6435],[6562,7126],[6627,7127],[6623,6694,7128],[6622,7129],[6557,6806],[6623,6742],[6559,6746],6558,6622,[6623,6625],6628,[6623,6630],6622,6558,[6622,6807],[6558,6742],6934,7068,[6559,7002],6558,[6557,6689],6626,6563,[6623,6437],6557,[6622,6997],6940,6935,[6557,6742],[6557,6809,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3700,4998,4810],[3635,4999],[3636,4937],3700,[3637,7749],3637,3700,3637,3700,[3700,2837],3637,3388,3636,3637,3635,3699,3701,3637,3699,3636,3701,3701,3635,3636,[3636,4995],[3701,4996],[3635,4997],[3700,4998],[3701,4999],[3636,5000],3636,[3701,2838],3699,3636,3700,3323,3699,3636,3637,3700,3636,3637,3699,3701,3701,3637,3635,[3635,4930],[4931,3125],4932,4933,4934,4935,4936,[3700,4937],3637,3701,[3701,4930],4866,[3637,4867],[3637,4868],[3699,4869],[3635,4870],[3636,4871],[3701,4868],[3635,4869],[3701,4870],[3636,4871],[3699,4872],[3636,4677],3637,3699,3324,3699,3636,3700,[3636,4930],4866,[3699,4867],[3701,4868],[3636,4869],[3636,4870],[3700,4871],[3699,4872],[4932,2868],4933,4936,[3700,4937],3637,3637,[3635,4995],[3637,4998],[3636,4999],[3699,5000],[3636,7813],3637,[3636,7621],[3635,2901],3701,[3637,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,8378,8379,[12300,8249],[12300,8246],[12300,8250],12300,[12300,8308],8309,8373,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8310,8313,8314,[12300,8246],[12300,8250],12300,12300,[12300,8308],8309,8310,8313,8314,[12300,8315],12300,[12300,8308],8309,8310,8314,[12300,8249],[12300,8246],[12300,8249],[12300,8246],[12300,8250],12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8249],[12300,8250],12300,12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[8499,7138],[6617,8500,7139],[6553,7140],[7850,7141],7851,[6563,6618],6565,[6627,6486],6551,7852,7850,[7915,7190],[7851,7191],[6616,7192],[6551,7193],[6629,6362],6629,6562,6562,[6629,6613,7202],[6552,8378,7203],[7915,8314,7204],[6553,8315,7205],7852,7915,6550,[6563,6490],[6563,8627],8628,[7915,8629],[6614,8565],6552,6616,6553,6550,[6626,6488],[6563,8443],[6627,8444],6629,6627,6565,6626,6564,[6562,6486],[6551,8627],8628,[6617,8629],[7852,8565],7915,7852,6614,7915,6550,[6629,6680],[6565,6682],6629,6627,[6565,8378],[6629,8379],[6629,6422,8380],[6617,7126],[6616,7127],[6616,7128],[6553,7129],6552,[6617,8692],8693,8694,8695,8698,[6551,8699],7851,6550,[6626,6682],6626,[6564,6486],[6565,6678],[6627,6489],[6629,8308],[6562,8309],[6565,8310],[6564,6487,8373],[6628,6681],[6564,6678],[6626,6682],[6565,6487],[6562,6679],[6565,6681],[6628,6679],6553,7850,6615,[6626,6618],6627,6565,6565,[6565,6422,7390],[6617,7391],[6616,7392],[6617,7393],7852,7851,6617,7850,6615,6616,[6616,8507],[6558,8508],[6622,6933],[6935,7318],[6557,6809,7319],[6622,7320],[6622,7321],[6557,6689],[6559,6500],[6557,7254],[6621,7255],[6621,7256],[6622,6498,7257],6626,6564,6564,6564,6563,[6621,6437],6558,[6622,6871],[6623,7062],[6621,6872],6557,[6557,6434],6562,6565,6564,6627,[6557,6626,7134],[6564,7135],[6564,7136],[6563,7137],[6623,6370],[6559,6374],6558,6621,[6557,6870,7390],[6623,7065,7391],[6621,6873,7392],[6559,7393],[6557,6369],[6559,6370],6562,[6627,7190],[6557,6501,7191],[6559,7192],[6621,7193],[6622,6997],6999,[6557,6873],6623,[6559,6369],6562,6627,[6559,6694],6559,[6557,6741],6934,6940,6999,[6557,7065],[6622,6873],6558,[6623,6434],6562,6629,6563,[6623,6374],[6559,6871],6998,7069,6999,[6621,6872,8507],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4873,[3636,4874],3701,3699,3637,[3635,7813],3699,3637,3700,3701,[3323,2901],3636,3324,3636,3701,3636,[3635,4483],[3699,4487],[3636,4484],[3699,4487],[3636,4553],3636,3701,3700,3699,3636,3635,3636,3701,3636,3700,3635,[3635,2902],3635,3700,3700,3388,3636,3637,3699,3700,3700,3637,3636,3699,3700,3635,3701,3635,[3635,4995],[3701,4996],[3635,4997],[3637,4998],[3635,4999],[3699,5000],3699,3637,3701,3635,[3637,4930],4931,4932,4933,4934,4935,[4932,3188],4933,4934,4935,[4936,3188],[3637,4741],3699,3700,3324,3637,3637,3700,3700,[3636,4930],4931,4932,[4933,2868],4934,4935,4936,[3700,4996],[3637,4997],[3699,5000],3701,3700,3635,3323,3699,3699,3700,[3636,7693],3636,[3637,7685],3636,3700,[3699,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8249],[12300,8246],[12300,8249],[12300,8250],12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,8378,8313,8310,8314,[12300,8246],8372,8373,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8371],8372,8373,0,0,8378,8310,8314,[12300,8246],[12300,8249],8372,8373,0,0,8378,8379,[12300,8249],8372,8373,0,8378,8313,8310,8313,8310,8314,[12300,8315],12300,12300,12300,[12300,8308],8309,8310,8313,8314,[12300,8315],12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8308,[6616,8309,7202],[7850,8373,7203],[7850,7204],[6553,7205],6550,[6564,6488],6565,6565,[6628,6613],6614,6615,[7916,7254],[7851,7255],[6550,7256],[7915,7257],[6627,6618],6565,6628,[6629,6357],[6615,7266],[6617,7267],[7851,8378,7268],[6550,8379,7269],[7850,8380],6616,6551,[6564,6554],6627,[6627,6485,8692],8693,[6550,8500],6552,7852,6553,[6626,6426],6563,[6563,8507],[6627,6423,8508],[6629,6359],[6563,6360],[6629,6361],[6563,6424],6564,6629,[6564,6677],[6553,8692],8693,[6616,8500],6615,7916,6552,[6627,6679],[6626,6489],6628,6627,6627,6628,6562,[6627,8443],[6563,6613,8444],[7915,7190],[6550,7191],[6550,7192],[6551,7193],6617,6551,[6614,8757],[7787,8758],[6615,8759],[6550,8762],7786,6617,6616,[6565,6424],6565,6565,6562,[6563,8371],[6562,8372],[6627,8373],6627,6626,6629,6563,6627,6626,6629,6562,6626,[6564,6486],6553,6550,[6626,6488],6565,6627,[6628,6422],6617,[7788,7455],[7852,7456],7915,7915,7916,6552,7915,6616,[6616,8570,7134],[6616,8571,7135],[6558,8572,7136],[6622,6870,7137],[6998,7382],[6935,7383],[6557,6808,7384],[6622,7385],6559,6622,[6558,7318],[6558,7319],[6621,7320],[6558,7321],[6558,6498],[6558,6693],6626,6564,6564,6563,[6558,6370],[6559,6437],6623,[6557,6434],[6559,6370],6562,6564,6628,6564,[6559,6438],[6621,6499,7198],[6626,7199],[6629,7200],[6629,7201],6565,6563,[6559,6370],[6558,6437],6621,[6558,7455],[6557,7456],[6559,6369],6562,6627,[6623,6691],[6622,6694,7254],[6622,6806,7255],[6621,6742,7256],[6557,6808,7257],[6559,6870],[6623,7066],6558,6557,[6559,6625],6629,6563,[6621,6437],6622,[6621,6997],6999,[6622,7062],[6621,6872],[6623,6434],[6558,6370],[6558,6370],6562,6627,[6558,6693],6626,[6622,6438],[6621,6807],6934,6999,[6559,6873,8570],[6557,8571],8572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3635,4937],3700,3635,3636,3637,3635,3701,3387,3323,3636,3635,3637,3701,3700,3700,[3700,4483],[3701,4547],[3700,4551],[3637,4548],[3700,4551],[3701,4617],[3637,4484],[3636,4487],[3699,4488],3700,3699,3637,3635,3635,3636,3701,3636,3699,3699,3635,3637,3699,3636,3700,3700,3635,3701,3701,3635,3635,3699,3636,3700,3637,3637,3701,3635,3636,3700,3323,3700,3637,3701,3701,3636,[3701,4995],[3636,4996],[3700,4997],[3635,4998,2868],[3636,4999],[3636,4996],[3635,4997],[3636,4998],[3701,4999,2710],[3700,5000],3700,3637,3636,3635,3388,3635,3636,[3699,2709],3699,[3636,4995],[3701,4996],[3699,4997],[3700,4998],[3701,4999],[3637,5000],3635,3701,3699,3635,3700,3701,[3388,7243],[3635,7244],3637,3701,[3701,7757],3636,[3701,7749],3700,3636,[3699,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8310,8313,8310,8313,8314,[12300,8315],12300,12300,[12300,8308],8309,8373,0,0,0,0,0,0,0,8378,8310,8373,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8435],8436,0,0,0,0,0,8378,8310,8313,8373,0,0,0,0,8378,8313,8373,0,0,0,0,0,0,0,8378,8379,[12300,8246],[12300,8249],[12300,8246],8372,8373,0,0,8378,8379,[12300,8246],[12300,8249],[12300,8250],12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8371,[6553,8372],[6552,8373,7266],[6553,7267],[6616,7268],[6553,7269],[6562,6618],[6565,6357],[6628,6362],6564,[6629,6677],[6629,6679],6551,[6614,7318],[7851,7319],[6615,7320],[7916,7321],6614,[6562,6362],6562,[6563,6613],[7788,7330],[6615,7331],[6552,7332],[6617,8443,7333],[7851,8444],7851,6550,[6562,6489],6562,[6565,6485],[7852,8563],[7916,8564],[6553,8565],6615,7852,[6563,6490],6629,[6628,6422,8378],[6617,8314],[6615,8315],6550,6617,6614,[6564,6425],6562,[6562,6422],6615,[6616,8563],[7851,8564],[6617,8565],6552,[6628,6488],6629,6629,6563,[6629,6423],[6564,6359],[6628,6359],[6626,6360],[6627,6361,8507],[6617,8508],[6616,7254],[6617,7255],[6615,7256],[7915,7257],7852,6615,6615,6550,6553,7786,7850,6616,6617,6616,[6627,6425],6565,6562,[6627,8435],[6562,8436],6627,6628,6628,[6626,6422],[6626,6425],6629,[6564,6422],[6629,6362],6629,6628,6627,[6565,6486,7126],[6629,6488,7127],[6626,7128],[6626,7129],6564,[6562,6613],6615,7851,7852,6617,6550,6615,6616,7852,[6550,8570],[6617,8634,7198],[6623,8635,7199],[6621,8636,7200],[6622,7201],[6559,6870],[6998,7447],[6623,7002,7448],6559,6558,6621,[6622,7382],[6622,7383],[6621,7384],[6559,7385],6623,6622,[6621,6499],[6623,6692],6626,6565,6629,6563,[6622,6370],6562,6629,6565,6627,6626,6628,[6621,6502],[6622,7262],[6558,6689,7263],[6558,6691,7264],[6626,7265],6629,6564,6628,6563,[6623,6371],[6558,6372],[6622,6373],6562,6627,[6622,6694],6622,[6557,7318],[6559,6997,7319],[6937,7320],[6623,7002,7321],6622,[6558,6369],[6559,6370],[6621,6370],6562,6628,6565,[6623,6438],6623,[6559,7061],[6623,6873],[6623,6434],[6559,6370],6562,6627,[6623,6691],[6557,6691],[6621,6694],6623,[6558,6625],[6558,6502],[6623,6870],6998,[6557,6810,8570],[6622,8634],8635,8636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3700,4937],[3701,7621],3700,3636,3636,3324,[3323,2932],[3700,2933],3635,3323,3637,3636,3700,3636,3635,3699,[3701,4673],[3637,4674],3699,3635,3699,[3637,4616],[3700,4548],[3699,4551],[3699,4552],[3636,4553],3636,3637,3636,3636,3324,3323,3699,3701,3635,3701,3323,3635,3700,[3699,4483],[3637,4484],[3636,4487],[3635,4488],3700,3699,[3637,4483],[3635,4487],[3637,4488],3701,3637,3700,3699,3700,3388,3700,3323,3635,3700,3637,3635,3637,3636,3635,3635,3636,3700,3636,3636,3635,[3699,2774],3637,3636,3388,3699,3387,3637,3701,3637,[3324,2773],3637,3701,3699,3635,3700,3699,3636,3700,3699,3635,[3635,2170],[3637,2171],3636,[3700,7307],[3637,7308],3324,3387,3323,3387,[3637,7813],3700,[3637,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8245],[12300,8246],8372,8373,0,0,0,0,8378,8379,[12300,8249],[12300,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8380],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8373,0,0,0,0,8378,8310,8313,8314,[12300,8315],12300,[12300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6616,8436],[6553,7330],[7916,7331],[7850,7332],[6550,7333],[6563,6618],[6628,6613],[6562,6618],6564,6628,6628,[6562,6613],[6616,7382],[6550,7383],[7916,7384],[7916,7385],7850,6616,[6629,6358],6617,[6616,7394],[6616,7395],[6551,7396],[6617,8507,7397],[6551,8508],6615,[6562,6618],6627,6627,[6564,6549],[6614,8627],8628,[6629,6613,8629],[6550,8630],[6553,8631],[6628,6554,8565],6563,[6563,6613],[6551,8378,7126],[7852,8379,7127],[7850,8249,7128],[6553,8250,7129],6616,[6562,6618],6562,[6626,6421],7851,[7851,8627],8628,[6551,8629],[6628,6618,8565],6563,[6627,7138],[6629,7139],[6563,7140],[6629,6613,7141],7915,7852,6615,[6617,8507],[6550,8508],[6550,7318],[7915,7319],[7850,7320],[7786,7321],6550,6553,7851,6614,6615,6553,6616,7852,6551,6552,6614,[6563,6362],6627,[6629,8499],[6629,8500],[6626,6422],[6565,6358],[6563,6424],[6565,6487],[6627,6489],6565,[6562,6677],[6565,6682],6565,6564,6627,[6628,7190],[6563,7191],[6562,7192],[6565,7193],6562,[6627,6487],[6626,6679],6551,7916,6552,[6626,6681],6551,7851,6550,[6616,8443],[6621,8698,7262],[6559,8699,7263],[6559,7264],[6622,7265],6622,[6557,6997],6935,[6623,6746],6558,[6623,6807],[6557,6743],[6622,6744,7447],[6559,6745,7448],[6557,6746],6621,6558,6558,6623,[6559,6498],6626,6629,6564,6565,6629,[6564,7126],[6627,7127],[6622,6500,7128],[6559,6433,7129],6628,[6558,6566],[6559,7326],[6621,7327],[6558,7328],[6557,6499,7329],[6622,6693],[6558,6692],[6558,6693],[6557,6692],[6621,6691],[6557,6692],[6622,6692],6626,6563,[6621,6370],[6559,6436],[6622,7382],[6621,6871,7383],[6557,7063,7384],[6557,7066,7385],[6558,6369],6562,6627,[6557,6691,7126],[6621,6692,7127],[6626,7128],[6565,7129],[6621,6502],6559,[6558,6434],[6557,6370],[6562,7134],[6627,7135],[6558,6690,7136],[6622,6500,7137],6559,6557,6558,6557,[6559,6625],[6559,6502],6622,[6558,6997],[6623,6874,8443],8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3636,4682],3701,[3637,7685],3701,3636,3700,3635,[3323,2996],[3701,2997],3635,[3324,2170],[3635,2171],3699,3636,3699,3637,[3701,4546],[3637,4547],[3635,4611],3701,3699,3699,3699,3701,3635,[3637,4616],[3635,4617],[3637,4618],3699,3635,3387,3635,3637,3700,3635,3635,3637,3388,3635,[3635,4546],[3701,4547],[3635,4548],[3635,4551],[3637,4552],[3699,4487],[3637,4484],[3699,4547],[3636,4551],[3636,4552],[3699,4487],[3635,4488],3636,3636,3635,3324,3637,3388,3636,3637,3636,3635,3637,3701,3636,3701,3635,3699,3635,3701,3636,[3636,2838],3635,3637,3324,3636,3699,3635,3637,3323,[3701,2837],3387,3323,3323,3635,3387,3635,3699,3637,3699,3635,3636,3701,3323,3637,3387,3323,3700,3700,3700,[3701,4483],[3699,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8250],12300,12300,[12300,8308],8309,8310,8373,0,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[12300,8444],12300,12300,12300,12300,12300,12300,12300,12300,12300,12300,[12300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8499,[6617,8500],[7916,7394],[7916,7395],[7850,7396],[7850,7397],7852,7916,6614,[6565,6425],6562,6565,[6562,6613],7852,[7850,7447],[7851,7448],6617,6617,7850,7916,6552,6617,[6614,7459],[6552,8570,7460],[6552,8571],[6551,8572],6550,[6629,6488],6626,[6563,6423],6615,6617,[6565,6554,8692,7134],[8693,7135],[8694,7136],[8695,7137],[6565,6489,8564],[6562,8565],[6628,6486],[6553,7190],[6552,8378,7191],[7850,8313,7192],[6615,8314,7193],[6550,8315],[6564,6488],6629,[6628,6485],7915,7787,[6552,8692],8693,[6564,6618,8436],6629,[6629,6357,7202],[6626,6358,7203],[6564,6358,7204],[6617,7205],6617,7851,[7915,8570],[7851,8571],[7850,8572],[6550,7382],[6614,7383],[7851,7384],[6550,7385],[6629,6682],[6628,6613],6617,6617,7916,6553,6614,[6552,8245],[6617,8246],[6551,8249],[6552,8250],[6562,6489],[6562,8308],[6562,8309],[6629,6422,8373],6617,6615,6616,[6564,6424],[6563,6423],[6629,6358],[6629,6425],6628,6563,6564,[6627,6357],[6627,6425,7254],[6627,6423,7255],[6627,6362,7256],[6627,7257],6563,6565,6565,[6629,6677],[6565,6678],[6627,6489],[6562,6423],6617,7915,7850,[6617,8507],[6557,8508,7326],[6623,7327],[6558,7328],[6559,7329],6559,[6559,6997],7067,[6622,7002],[6622,6806],6934,6999,[6622,7065],6998,[6559,7002],6623,6559,[6558,7134],[6622,7135],[6623,7136],[6623,6498,7137],[6623,6690],6626,6628,6627,[6558,6692,7190],[6558,6501,7191],[6557,7192],[6557,6497,7193],6629,6563,[6622,6437,7390],[6558,7391],[6621,7392],[6621,7393],6559,6622,6623,[6622,7134],[6559,7135],[6621,7136],[6558,7137],[6559,6625],6564,6629,6563,[6623,6370],[6558,6437,7447],[6623,7448],[6623,6435],6562,6627,[6623,6501],[6621,7190],[6623,7191],[6623,6625,7192],[6565,7193],[6622,6566],[6621,6435],6562,6627,[6621,6690,7198],[6558,6501,7199],[6559,7200],[6621,7201],6557,6558,6557,[6557,6435],6562,[6623,6566],6623,[6623,6997],[6621,6938,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3635,4746],3637,[3636,7749],3700,3699,3699,3700,[3635,3060],[3637,3061],3636,3701,3387,3637,3699,3637,[3699,4609],[3701,4610],[3701,4611],3635,3635,3700,3699,3637,3635,3700,3700,[3635,4745],[3701,4746],3699,3701,3636,3323,3699,3637,3636,3637,3635,[3637,4483],[3636,4484],[3699,4610],[3637,4611],3701,3700,[3700,4616],[3701,4551],[3635,4548],[3700,4611],3701,[3637,4616],[3637,4551],[3635,4552],[3637,4553],3635,3636,3324,3636,3636,3701,3635,3635,[3636,4483],[3700,4484],[3635,4488],3635,[3636,4483],[3637,4484],[3701,4487],[3701,4553],3700,3636,[3700,2902],3635,3700,3636,3699,3323,3635,3635,3637,[3636,2901],3635,3636,3701,3701,3635,3701,[3635,4483],[3637,4488],3699,3635,3699,3323,3635,3700,3701,3699,3637,3701,[3700,4546],4547,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,[12300,8308],8309,8310,8314,[12300,8249],[12300,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[12300,8508],12300,12300,12300,12300,12300,[12300,8245],[12300,8246],[12300,8249],[12300,8246],[12300,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8563,[6553,8564],[6552,8565],[7852,7459],[6552,7460],7851,7915,7851,7852,[6562,6618],6563,6563,[6565,6487],[6627,6678],[6627,6678],6553,6551,6616,7852,6550,[7916,8570],[7852,8632],[6552,8633],[6551,8634],8635,[6564,6486,8636],[6565,6489],6565,6628,[6626,6613],7850,6553,[6617,7198],[6563,6358,8757,7199],[6626,6358,8758,7200],[6562,6362,8759,7201],8628,[6627,8629],[6565,8565],[6627,6613,7254],[7915,7255],[6614,7256],[6615,8378,7257],[6562,6618,8379],[6626,8380],6627,[6562,6549],7915,6616,6552,[6552,8435],[6616,8436],[6563,6358],[6615,7266],[6552,7267],[7916,7268],[6550,7269],6617,[6617,8570],[6553,8634],8635,[6552,8636],6614,[6614,7447],[6552,7448],[6565,6618],6562,[6565,6487],[6627,6680],6551,7851,7852,[6615,8308],[7850,8309],[6617,8310],[6551,8313],[6628,6618,8314],[6626,8246],[6629,8372],[6628,8373],[6564,6613],6614,7851,6551,[6627,6618],[6628,6421],7916,[6564,6618],6627,6626,6628,[6628,6613],[6614,7318],[6615,7319],[6565,6618,7320],[6563,7321],6627,6628,6628,6564,6626,6563,[6628,6613],6614,6616,[7851,8570],[6553,8571],[6622,8572,7390],[6622,7391],[6621,7392],[6623,7393],[6559,6741],6934,7069,6935,6934,6999,[6621,6873],6557,[6557,6870],[6623,7066],[6622,6806],[6623,6809],[6623,7198],[6621,7199],[6557,7200],[6558,7201],6623,[6622,6498],[6623,6690],[6559,6501],[6559,7254],[6558,7255],[6557,7256],[6621,6561,7257],6564,6628,6563,[6622,6436,7455],[6623,7456],6558,[6623,6741],[6622,6742],[6558,6808],[6622,7198],[6621,7199],[6623,7200],[6621,7201],[6622,6689],6626,6628,6627,6626,6563,[6558,6370],6562,6627,[6623,6500],6557,[6622,7254],[6621,7255],[6558,6689,7256],[6626,7257],6563,6562,6627,[6622,6500],[6621,7262],[6621,7263],[6559,6741,7264],[6559,6742,7265],[6622,6746],6621,6623,[6621,6625],6627,[6558,6501],6621,[6622,7061],[6557,7066,8507],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3635,4682],3636,[3700,7813],3635,3635,3636,3637,3323,3701,3701,3701,3636,3700,3701,3637,[3636,4673],[3635,4674],3636,3636,3701,3699,3635,3701,3699,3701,3699,[3700,4681],[3637,4682],3635,3637,3387,[3637,7693],3636,3635,3635,3635,[3635,4546],[3699,4547],[3699,4548],[3636,4611],3701,3699,3637,3637,3701,3701,3637,3699,3387,3700,[3636,4616],[3701,4617],[3701,4618],3699,3635,3323,3700,3636,[3635,4483],[3701,4484],[3637,4610],[3636,4548],[3635,4552],[3700,4484],[3701,4547],[3699,4548],[3699,4551],[3636,4617],[3636,4487],[3636,4488],3699,3699,3699,3635,3635,3701,3701,3637,3699,[3701,4546],[3637,4484],[3636,4487],[3637,4488],3635,[3637,4483],[3635,4484],[3636,4547],[3700,4552],[3636,4487],[3699,4488],3637,3700,3636,3699,3636,3636,3636,[3636,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8249],[12300,8246],[12300,8249],8372,8373,0,8378,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[12300,8315],12300,12300,12300,[12300,8308],8309,8310,8313,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8627,8628,[6553,8629],[6617,8630],[6617,8631],[6553,8565],7916,6617,7850,6614,[6629,6424],6628,6563,6563,6629,[6629,6487],6553,6551,7788,[6616,8570],[6614,8571],8696,8697,8698,[6563,6682,8699],6565,[6626,7126],[6564,7127],[6629,6422,7128],[6617,7129],7916,6550,[7915,7262],[6617,7263],[6552,7264],[6616,7265],[6563,6425,8692],8693,[6563,8436],[6562,6613,7318],[7915,7319],[7850,7320],[6614,7321],[6614,8443],[6627,6425,8444],6563,[6628,6486],6553,7851,7786,[6551,8499],[6552,8500],7851,[6552,7330],[6550,7331],[7852,7332],[7850,7333],6616,[6614,8507],8698,[7851,8699],7852,7850,7851,6553,6616,[6562,6425],6563,6627,[6627,6613,8245],[6552,8246],[6562,6678,8249],[6551,8372],[6552,8373],6553,6550,[6628,6489,8378],[6626,8310],[6626,8373],[6629,6422],6617,6552,6551,7915,[6562,6618],[6564,6421],6614,6614,[6564,6358],[6565,6424],6626,[6626,6486],[6551,7382],[6616,7383],[6614,7384],[6628,6424,7385],6564,6563,[6628,6423],[6628,6359],[6626,6360],[6628,6361],6617,7851,[6615,8570],[6552,8634],8635,[6622,8636],[6558,7455],[6557,7456],[6623,6741],6934,6937,6999,6998,6937,[6558,7002,7126],[6623,7127],[6623,7128],[6558,7129],6621,[6621,6997],6935,[6621,6809,7262],[6559,7263],[6559,7264],[6623,7265],6557,6559,6558,[6558,6806],[6558,6742,7318],[6621,6742,7319],[6559,6808,7320],[6559,6689,7321],6626,6564,6629,[6623,6438],6557,[6559,6807],6934,6999,[6559,7066],[6558,7262],[6558,7263],[6558,7264],[6559,7265],6559,[6558,6433],6629,[6621,6630],[6621,6689],[6622,6693],[6557,6693],6626,[6557,6630],6558,6559,[6623,7318],[6623,7319],[6621,7320],[6621,6689,7321],[6558,6690],[6621,6692],[6558,6694],6623,[6621,7326],[6622,7327],[6622,6997,7328],[6999,7329],[6621,7066],6623,[6622,6369],6562,[6621,6630],6558,[6559,7126],[6559,6806,7127],[6558,6746,8378,7128],[6622,8314,7129],8315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3700,4746],3699,3699,3635,3635,3635,3635,3700,3700,3699,3635,3701,3699,3701,[3635,4609],[3635,4610],[3637,4611],3635,3700,3700,3699,3699,3700,3635,3636,3635,[3635,4616],[3701,4617],[3635,4618],3636,3637,[3324,7757],3387,3701,3699,[3636,4609],[3699,4610],[3699,4611],3699,3700,3701,3700,3700,3636,3323,3636,3636,3701,3388,3635,3637,[3700,4745],[3701,4746],3700,3388,3637,3699,[3636,4609],[3635,4610],[3637,4548],[3699,4611],3635,[3699,4616],[3637,4548],[3635,4611],3700,3699,[3636,4616],[3700,4551],[3700,4617],[3700,4618],3699,3699,3388,3699,3323,3388,3699,[3635,4609],[3635,4610],[3635,4548],[3636,4551],[3700,4552],[3701,4484],[3637,4547],[3699,4548],[3637,4611],[3637,4616],[3700,4551],[3635,4552],[3635,4553],3635,3700,3636,3637,3701,3636,[3699,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[12300,8249],[12300,8246],[12300,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8692,8693,8694,8695,[6552,8629],[6552,8630],[6617,8631],[6553,8565],6550,[6564,6618],6564,6565,6565,6562,6562,[6626,6677],6553,[6616,8570],[6614,8634],8635,[7851,8760],[6552,8761],[6564,6488,8762],6628,6628,[6629,7190],[6563,6422,7191],[6615,7192],[7851,7193],6550,7852,[6617,7326],[7915,7327],[6552,7328],[6616,7329],[6564,6618],[6562,6422,8499],[6565,6358,8500],[6615,7382],[6614,7383],[6550,7384],[6617,7385],[6614,8507],[6565,6618,8508],6563,6629,[6629,6677],6553,6616,[6552,8563],[6617,8564],[7852,8565],[7851,7394],[7916,7395],[7915,7396],[7850,7397],[6616,8570],[6550,8571],[6553,8572],6551,6614,7852,7916,7852,6614,[6628,6618,8245],[6628,8246],[6627,8249],[6629,6487,8309],[6628,6488,8310],[6562,8313,7126],[6627,6677,8373,7127],[6562,6489,7128],[6563,6486,7129],[6562,6682],6629,6564,6629,[6627,6613],6614,6550,7786,6552,[6628,6488],[6563,6485],6615,6550,6553,[6627,6618],6565,6629,[6562,6677],[6627,6681,7447],[6627,6681,7448],[6562,6682],6565,6627,[6562,6486],6551,6616,6553,6617,7786,[6616,8443],8698,[6622,8699],6558,6622,[6557,6807],6934,6940,7003,[6622,7002],[6558,6870],6998,[6623,6935,7190],[6558,6742,7191],[6558,6809,7192],[6559,7193],6621,[6622,6997],6936,[6935,7326],[6622,6808,7327],[6559,7328],[6559,7329],6622,[6559,6807],[6557,6742],6934,[6999,7382],[6998,7383],[6558,7002,7384],[6558,7385],[6623,6689],6626,6564,[6621,6502],[6559,6807],6934,7003,[6622,7002],6621,[6557,6741,7326],[6558,6742,7327],[6558,6742,7328],[6559,6746,7329],6623,[6557,6497],6629,6563,[6623,6437],6622,6621,[6558,6625],[6622,6630],6623,6557,[6557,7382],[6621,6806,7383],[6557,6809,7384],[6559,7385],6623,6559,6621,[6622,6806],[6622,6742,7390],[6557,6742,7391],[6934,7392],[6623,7002,7393],6623,6558,[6558,6625],6627,[6559,6501],6622,[6559,7190],[6622,6871,7191],[6622,6873,7192],[6621,8378,7193],[6621,8379],8380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3699,4553],3701,3635,3636,3701,[3324,7693],3636,3636,3699,3323,3701,3635,3699,[3637,4737],[3699,4738],3701,3635,3636,3636,3699,3699,3700,3699,3636,3700,3637,[3637,4681],[3699,4682],3700,3700,3637,3636,3323,3637,[3699,4673],[3637,4674],3636,3699,3637,3635,3388,3700,3637,3699,3387,3699,3700,3637,3701,[3699,4808],[3701,4809],[3636,4810],3637,3324,3701,3699,[3699,4673],[3636,4674],3635,3699,3636,3701,3699,3700,3701,3637,3701,3636,[3635,4745],[3701,4746],3701,3701,3635,3699,3635,3700,3635,[3701,4673],[3636,4674],3701,3636,[3700,4616],[3699,4548],[3636,4611],3636,3701,3699,3637,[3700,4616],[3635,4617],[3635,4618],3637,3700,3635,3700,3699,[3637,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8759,8693,8694,8695,[6617,8564],[6552,8565],6614,[6628,6359],[6565,6360],[6629,6361,7134],[6628,6425,7135],[6627,7136],[6565,7137],[6628,6486],[6564,6678,8443],8698,[6615,8699],6550,[6564,6489],6562,6563,[6564,6357],[6565,6358,7254],[6617,7255],[6552,7256],[7915,7257],6617,6614,[6551,7390],[7850,7391],[6552,7392],[6550,7393],7852,[6551,8563],[6553,8564],[7851,8565],[7850,7447],[6550,7448],[7850,8570],[7916,8571],[6616,8572],[6629,6425,7134],[6564,7135],[6629,7136],[6628,6486,7137],6553,[6614,8627],8628,[6617,8629],[7852,8630],[6615,8631,7459],[7915,8632,7460],[7915,8633],[7916,8634],8635,[6614,8636],7916,6617,6616,6551,6617,[7787,8308],[6614,8309],[6563,6425,8310],[6629,8313],[6565,8373],6562,[6563,7190],[6627,7191],[6563,7192],[6564,7193],6628,6627,6564,[6562,6357],6615,6552,7850,6550,[6563,6682],6564,[6629,6549],7915,6553,6553,[6627,6618],[6562,6423],[6565,6359],[6564,6360],[6629,6361],[6627,6362],6627,6628,[6562,6422],[6628,6425],[6562,6613],6615,[6550,7134],[7916,7135],[7916,7136],[6617,8507,7137],[6623,8508],6623,6559,[6623,6807],6934,6999,6998,7068,[6622,7002],6623,[6558,6871],[6622,6998,7254],[6621,6999,7255],[6623,6872,7256],[6557,7257],6623,[6557,6870],[6559,7064],[6998,7390],[6935,7391],[6623,6742,7392],[6623,6742,7393],[6557,6746],[6558,6871],6998,6999,[6558,6872],[6557,7061,7447],[6621,6873,7448],[6621,6434],[6623,6370],6562,6565,[6557,6502],[6621,6997],6999,6998,6935,[6559,6742],[6934,7390],[7005,7391],[6940,7392],[6622,7002,7393],6621,[6557,6561],6565,6628,6563,[6557,6370],[6622,6370],6562,6563,[6557,6374],6557,6557,[6623,6997,7447],[6935,7448],[6622,6742],[6559,6809],6622,[6557,6807],6934,7069,[6999,7455],[6557,7062,7456],[6621,7066],[6558,6806],[6557,6808],[6622,6689],[6558,6501],6623,[6559,6741],[6622,6742,7254],[6623,6746,7255],[6558,6806,7256],[6558,6809,7257],[6621,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3699,4553],3701,3635,3701,[3323,7757],3636,3387,3637,3637,3700,3635,3699,[3637,4801],[3636,4802],[3699,4803],3637,3635,3699,3635,3701,3699,3701,3637,3636,3701,[3636,4745],[3635,4746],3636,3699,3636,3699,3324,3635,[3635,4737],[3637,4738],3637,3699,3636,3637,3388,3636,3637,3701,3701,3324,3700,3699,[3701,4808],[3699,4872],4873,[3637,4874],3701,3700,3700,3700,[3701,4737],[3699,4738],3701,3637,3637,3701,3635,3699,3635,3701,3635,3636,[3700,4616],[3699,4617],[3636,4618],3637,3637,3699,3699,3699,[3699,4609],[3699,4610],[3699,4611],3700,3699,3700,3700,3700,3701,3635,3635,3637,3700,[3637,4616],[3635,4617],[3701,4618],3701,3637,3637,3701,[3635,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8759,8628,[6552,8629],[6551,8565],6550,6552,[7852,7198],[6616,7199],[6562,6424,7200],[6629,7201],6562,[6564,8507],[6626,6487,8508],[6563,6680],[6626,6682],6629,6626,[6627,6423],6615,[6553,7318],[6552,7319],[6553,7320],[7851,7321],7852,6550,6551,[7915,7455],[7850,7456],6553,6616,[7852,8627],8628,[7916,8629],[6551,8630],[6615,8631],[6552,8634],8635,[6615,8636],[6614,7198],[6562,6424,7199],[6562,7200],[6627,7201],[6565,6486],6553,[6614,8692],8693,8694,8695,8696,8697,8698,[7851,8699],7850,6550,7850,[6565,6426],[6562,6487],[6628,6678,8371],[6628,6679,8372],[6563,6681,8373],[6626,6682],6564,6562,6565,[6627,6423,7254],[6562,6358,7255],[6565,6424,7256],[6563,6357,7257],[6629,6425],6564,[6627,6423],6615,7851,6614,7915,6616,[6563,6358,7138],[6564,6358,7139],[6617,7140],[6550,7141],7915,7850,6550,6553,6617,6551,7852,6616,[6626,6425],6627,[6627,6613],[6628,6618],[6626,6613],7915,[6617,7198],[6615,7199],[6616,7200],[6616,8378,7201],[6552,8314],[6558,8315],6621,[6558,6805],6999,[6623,6872],[6559,6870],6998,6935,[6622,6808],6622,[6558,6997,7318],[6558,7002,7319],[6559,7320],[6621,7321],6623,6558,[6559,6806],6934,[7068,7455],[6940,7456],6999,[6559,6873],6622,[6623,6871],[6558,6872],[6622,6435],[6622,6370],[6559,6370],6562,6629,6565,6565,[6622,6566],[6559,6871],[6557,7066],[6559,7061],[6622,7062],6998,7000,[6999,7455],[6621,7064,7456],[6622,7066],6621,[6558,6499],6626,6628,6629,6628,6565,6627,6626,6563,[6559,6370],[6623,6437],[6621,6870],[6621,7064],6998,6935,[6621,6742],6934,6999,6998,6935,[6622,6742],[6559,6742],6934,6935,[6558,6746],6621,6622,[6623,6997],[6999,7318],[6558,6873,7319],[6622,6997,7320],[6559,7002,7321],[6623,8507],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3636,4618],3635,3636,3700,3699,3637,3637,3323,3637,3701,3700,[3636,4865],4866,[3701,4867],[3637,4868],[3637,4869],[3635,4803],3636,3699,[3700,4808],[3636,4868],[3635,4869],[3637,4870],[3700,4871],[3637,4872],[3699,4810],3636,3636,3323,3636,3700,3636,[3637,4801],[3699,4802],[3700,4868],[3701,4869],[3637,4803],3636,3635,[3635,4808],[3635,4868],[3636,4869],[3635,4803],3636,3637,3701,[3701,4681],4936,[3699,4937],3700,3323,3637,3701,3699,[3637,4801],[3635,4802],[3637,4803],3700,3636,3637,3701,3699,3636,3636,3701,3635,3637,[3635,4745],[3637,4746],3636,3324,3323,3636,3637,[3637,4673],[3636,4674],3636,3636,3637,3699,3699,3699,3701,3699,3700,3637,3635,3637,[3635,4681],[3635,4682],3323,3700,3701,3387,3701,[3635,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8692,8693,[6616,8436],7916,7916,[7915,7262],[7916,7263],[6616,7264],[6564,6358,7265],[6563,6425],[6627,8378],[6563,8314],[6562,8315],6626,6627,6565,[6565,6487],[6629,6680],[6563,6681,7382],[6553,7383],[6551,7384],[6552,7385],[6628,6678],[6564,6681],6551,7915,6616,6615,7850,6617,[6552,8692],8693,8694,8695,8698,[7851,8699],6550,[6551,7262],[6614,7263],[6562,6424,7264],[6564,7265],6628,[6626,6421],7852,[7850,8757],[7915,8758],[7852,8759],[7915,8760],[7915,8761],[6616,8762],6551,6550,6550,7851,[6629,6490],6628,[6564,8435],[6627,8436],6629,6628,6564,6564,[6628,6423],[6617,7318],[6617,7319],[6614,7320],[6615,7321],[6626,6618],[6629,6357],6615,6617,7851,6615,6553,6616,[6617,7202],[6550,7203],[7852,7204],[7915,7205],6616,6550,6617,7915,6616,6553,7850,7787,6616,[6564,6362],[6629,6613],6614,6615,6552,[6616,7262],[6553,7263],[6550,7264],[7916,7265],[7916,8378],[6553,8379],[6558,8380],[6621,6869],[6623,7002],6557,[6623,7134],[6557,6871,7135],[6559,6998,7136],[6621,6935,7137],[6559,6742],[6934,7382],[6935,7383],[6622,6743,7384],[6557,6743,7385],[6559,6744],[6558,6745],6934,[6999,7126],[6622,7065,7127],[6557,7064,7128],[6622,6873,7129],6559,[6622,6806],[6559,6809],6558,[6558,6625],6629,6628,6628,6628,6627,[6558,6690],[6622,6500],6621,6559,6559,6622,[6557,6871],6998,[6558,7002],6623,6559,6621,6622,[6621,6689],[6622,6690],[6557,6690],[6622,6693],[6559,6692],[6623,6500],[6559,6689],[6559,6691],[6558,6691],[6558,6501,7126],[6558,7127],[6621,6806,7128],[6934,7129],7005,7005,7069,6935,6934,6936,6940,6999,[6623,7063],6998,6935,[6621,6742,8570],[6558,6808,8824],[6557,6997,8825],[6935,8565,7382],[6621,6746,7383],[6622,7061,7384],[6559,6873,8570,7385],[6558,8571],8572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3635,4682],3700,3637,3699,3387,3635,3635,3700,3323,3636,3699,3699,[3700,4930],4931,[4932,3188],4933,[3699,4867],[3637,4868],[3700,4869],[3636,4872],[4932,2868],4933,4934,4935,4936,[3635,4874],3636,3700,3387,3699,3387,3699,[3701,4865],4866,4932,4933,[3636,4867],[3700,4868],[3699,4869],[3635,4872],4932,4933,[3635,4802],[3701,4803],3699,3699,[3701,4745],[3636,4746],3701,3636,3636,3636,3699,3323,[3636,4865],4866,[3635,4867],[3637,4868],[3635,4869],[3636,4803],3701,3637,[3636,4808],[3700,4868],[3637,4869],[3699,4870],[3701,4871],[3700,4872],[3636,4810],3636,3636,3637,3323,3637,[3635,4737],[3635,4738],3636,3636,3699,3699,3700,3699,3699,3635,3699,3636,3701,3699,[3637,4745],[3637,4746],3324,3388,3701,3700,3635,3636,[3635,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6616,8436],7852,7915,[6617,7326],[6550,7327],[7915,7328],[7915,7329],[6563,6618],6627,[6563,8378],[6563,8379],[6563,8380],6563,6627,6628,6629,6626,[6565,6487,7447],[6629,6680,7448],[6563,6489],6627,[6628,7134],[6562,6486,7135],[6553,7136],[7850,7137],6616,7852,6615,6614,[7788,8757],[6553,8758],[7850,8759],[7852,8762],6551,6553,[7915,7326],[7851,7327],[6616,7328],[6629,6362,7329],6628,[6564,6485],6551,7851,6617,6615,6617,7915,6551,6617,6553,6614,6615,[6565,6554],6563,[6629,8499],[6562,8500],6628,6563,[6564,6422],[6628,6358],6617,[6616,7382],[6552,7383],[7850,7384],[6552,7385],[6564,6488],[6565,6613],6617,7851,6615,6551,6551,7787,[6552,7266],[6615,7267],[6551,7268],[6551,7269],6614,6551,7852,6617,6551,6614,6614,7916,6550,6616,6615,6550,7852,6553,[6552,7326],[7851,7327],[6617,7328],[7915,7329],7788,[6617,8443],[6557,8444],[6622,6933],[6622,7002],6559,[6558,7198],[6621,7199],[6622,6871,7200],[6558,7063,7201],[6622,7062],[6623,7064],[6621,7063,7447],[6621,7065,7448],[6557,7062],[6559,7064],[6622,7064],6998,[6935,7190],[6623,6742,7191],[6622,6808,7192],[6621,7193],[6559,6741],6934,[6558,6810],[6623,7126],[6557,6499,7127],[6623,6691,7128],[6623,6693,7129],[6622,6690],[6621,6691],[6621,6500],6621,6621,6621,[6623,6741],[6622,6742],[6622,6809],6558,[6557,6997,7126],[6935,7127],[6623,6742,7128],[6623,6742,7129],[6557,6808],6558,6557,6622,6623,6559,6558,6559,6623,6559,6623,[6557,7190],[6558,7191],[6558,6997,7192],[6941,7193],7067,7001,6999,[6622,7063],[6623,7065],[6557,7062],[6557,7063],[6557,6873],6623,[6558,7061],[6621,7063,8570],[6557,7063,8634],8888,8889,[6621,7064,8629],[6622,6872,8632,7447],[6621,8633,7448],[6559,8634],8635,8636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3700,4746],3700,3637,3700,3635,3699,3701,3635,3699,3700,3635,3635,3701,[3636,4995],[3701,4996],[3699,4997],4931,4932,4933,4936,[3700,4996],[3700,4997,2932],[3636,4998,2933],[3635,4999],[3636,5000],3699,3699,3699,3699,3637,3701,3636,3637,[3636,4930],[3700,4996],[3637,4997],4931,4932,[4933,3188],4936,[3636,4996],[3701,4997],4866,[3699,4867],[3701,4868],[3699,4869],[3635,4872],[3636,4810],3699,3699,3636,3701,3637,3637,3636,[3700,4930],4931,[4932,2868],4933,[3701,4867],[3637,4868],[3635,4869],[3700,4872],[4932,3124],4933,4934,4935,4936,[3635,4874,2932],[3637,2933],3635,3699,3699,3637,[3699,4801],[3636,4802],[3635,4803],3635,3637,[3699,4808],[3637,4868],[3701,4869],[3635,4803],3701,3701,3635,3637,[3637,4808],[3635,4809],[3700,4810],3323,3636,3701,3699,3635,3699,[3636,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8499,[6616,8500],6553,7916,[6616,7390],[6614,7391],[6614,7392],[6552,7393],[6627,6682],6627,6629,[6629,6422,8443],[6565,6358,8444],[6626,6358],[6627,6424],6564,6565,6565,6629,6627,6563,6629,[6563,6422,8245,7198],[6563,6358,8246,7199],[6615,8249,7200],[7915,8250,7201],6552,6616,7787,6551,6553,6552,6553,7851,7916,6617,[6550,7390],[6615,7391],[7852,7392],[6564,6426,7393],6627,[6629,6549],6617,[7915,7126],[7916,7127],[7916,7128],[7916,7129],6551,7850,6616,6614,6616,6550,[6628,6488],[6629,8308],[6565,8309],[6565,6423,8373],[6562,6358],[6565,6358],6615,7915,7852,7915,[6553,7447],[7850,7448],6614,[6626,6358],6615,7786,6615,[7915,8570],[6617,8630],[6552,8631],[6616,8565],[7850,7330],[7915,7331],[6615,7332],[7916,7333],6617,6552,6616,6553,6552,6550,6614,6617,6617,6614,6616,6616,6614,7850,[6552,7390],[7850,7391],[6551,7392],[7850,7393],7851,[6553,8507],[6622,8508],[6559,7061],[6558,7066],6558,[6623,7262],[6621,7263],[6557,7264],[6558,7265],6559,6558,6558,6557,6559,6621,6622,[6559,6871],[6623,7062,7254],[6998,7255],[6559,7002,7256],[6559,7257],[6623,6997],7001,[6622,6810],[6559,7190],[6558,7191],[6559,7192],[6622,7193],6622,6559,6558,6558,6557,6558,[6558,6805],6999,[6557,6873],6559,[6557,7061,7190],[6557,7063,7191],[6559,7064,7192],[6998,7193],6935,[6557,6743],[6621,6744],[6559,6745],[6558,6809],6623,6623,6623,6622,6622,6558,[6558,7254],[6558,6741,7255],[6934,7256],[7069,7257],6999,[6621,7062],[6621,6872],[6621,8570],[6622,8630],[6558,8631],[6622,8565],6558,6622,[6621,8570],[6622,8571],8698,8952,8953,8693,8696,8697,8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3700,4810],3699,3635,3637,3700,3700,3387,3636,3635,3323,3637,3637,3636,3637,3636,3699,[3700,4995],[3701,4996],[3635,4997],[3699,5000],3637,[3636,2996],[3701,2997],3699,3701,3635,3701,3699,3635,3699,3700,3699,3636,3635,3635,3699,[3700,4995],[3699,4996],[3636,4997],[3699,5000],3700,3699,[3637,4930],4931,[4932,2868],4933,4936,[3635,4874],3635,3699,3324,3387,3637,3637,3636,3635,[3635,4995],[3701,4996],[3635,4997],4931,4932,[4933,3188],4936,[3637,4996],[3635,4997],[3637,4998],[3701,4999],[3699,5000],[3635,2996],[3700,2997],3388,3700,3323,3636,[3700,4865],4866,[3699,4867],[3700,4868],[3636,4869],[3635,4872],[4932,2868],4933,[3701,4867],[3701,4868],[3700,4869],[3635,4870],[3701,4871],[3636,4872],4873,[3700,4874],3699,3699,3701,3323,3700,3635,[3700,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8308,[6552,8309],[6550,8373],7851,6616,6552,[7851,7455],[6550,7456],[6627,6682],6627,6563,[6564,6422],[6615,8507],[7851,8508],6552,6616,[6562,6424],6564,6563,6627,6627,6626,[6629,8308],[6562,6421,8309,7262],[7850,8310,7263],[6550,8313,7264],[7915,8314,7265],[6617,8315],6550,6552,7786,6551,7850,7852,6550,6550,6616,6615,[6615,8245,7455],[7850,8246,7456],[6626,6490,8249],[6563,8250],[6627,6487],[6564,6680],[6629,6679,7190],[6626,6679,8245,7191],[6564,6679,8246,7192],[6627,6681,8249,7193],[6564,6681,8250],6551,6617,6552,[6552,8245],[6564,6488,8246],[6629,8249],[6629,8372],[6628,8373],[6565,6613],6617,6550,7852,7788,6615,6614,6616,7852,6551,7850,[7850,8570],[6552,8632],[6616,8633],[6552,8634],8694,8695,[6616,8564],[7915,8565,7394],[6551,7395],[6553,7396],[6550,8570,7397],[6617,8630],[6617,8631],[6616,8632],[6617,8633],[6552,8565],6553,6553,7850,6617,6552,6551,6553,7850,7916,6550,[6614,7455],[7787,7456],6617,[6617,8570],[6553,8571],[6621,8572],6621,6623,6559,[6559,7326],[6622,7327],[6558,7328],[6622,7329],[6623,8570],[6558,8820],[6621,8821],[6623,8822],[6558,8823],[6622,8824],[6623,8825],[6622,8565],[6621,7318],[6621,6871,7319],[6559,6872,7320],[6621,7321],[6559,6870],6998,[6622,6874],[6559,7254],[6623,7255],[6622,7256],[6623,7257],6558,6559,6621,[6621,8570],[6559,8630],[6623,8631],[6559,6869,8565],[6623,7002],6623,6557,[6621,7254],[6558,7255],[6621,7256],[6621,7061,7257],[6623,7062],[6623,7064],[6557,7065],6998,6935,[6623,6809],6558,6559,6621,6623,6559,[6559,7318],[6621,6997,7319],[7000,7320],[7003,7321],[6623,7002,8570],[6559,8632],[6558,8633],[6623,8634],8694,8695,[6621,8629],[6621,8632],[6621,8633],[6557,8634],8635,8762,0,0,8757,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4873,[3699,4874],3701,3701,3699,3699,3388,3699,3324,3701,[3637,7113],[3701,7114],3700,3636,3635,3635,3701,3636,3701,3636,3701,3699,[3637,3060],[3635,3061],3699,3636,3699,3635,3324,3700,3636,3637,3636,3701,3699,3699,3636,3637,3635,3636,3637,3700,3701,3700,[3636,4995],[3636,4996],[3636,4997],[3700,5000],3636,3700,3701,3701,3699,3700,3699,3701,3699,3701,3701,3701,[3700,4995],[3700,4996],[3700,4997],[3700,5000],3700,3635,3636,3701,3700,[3636,3060],[3637,3061],3635,3324,3636,3323,3699,[3701,4930],4931,4932,4933,4936,[3700,4996],[3636,4997],4931,4932,4933,4934,4935,4936,[3637,4937],3635,3637,3387,3635,3323,[3699,7113],[3637,7114],[3636,4865],4866,4867,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8371,[6552,8372],[7851,8373],6553,7915,7850,7850,6550,[6565,6682],6627,6626,[6562,6357],6617,[6550,8378],[7851,8314],[7852,8315],6617,6616,[6628,6359],[6629,6359],[6563,6360],[6629,6361],[6565,6425,8371],[6563,8372],[6626,6485,8373,7326],[7851,7327],[7916,7328],[6628,6618,8378,7329],[6563,6613,8379],[7916,8246],[6614,8249],[7851,8250],7915,6550,6616,6617,7787,6615,[6550,8245],[7915,8309],[7852,8310],[6564,6554,8313],[6629,8314],[6628,8315],[6563,6357],[6562,6359,8308,7254],[6628,6359,8309,7255],[6562,6360,8310,7256],[6564,6361,8313,7257],[6562,6425,8314],[6627,6677,8315],[6565,6678],[6564,6679,8308],[6564,6682,8309],[6626,8310],[6562,8313],[6627,6422,8373],[6629,6358],6615,6550,7851,7851,6616,7852,6551,7916,6617,7850,[6550,8570],[6616,8634],8696,8697,8698,8758,8759,8628,[6617,8629],[6616,8820,7459],[6616,8821,7460],[6617,8634],8694,8695,8696,8697,[6553,8564],[7916,8565],7850,6617,7852,6615,7915,6617,6614,7850,7788,[7851,8570],[6552,8630],[6553,8631],[6553,8634,8565],8635,[6621,8636],6621,6623,6623,[6621,7390],[6622,7391],[6557,7392],[6621,8570,7393],[6558,8571],8884,8885,8886,8887,8888,8889,[6557,8564],[6621,8565,7382],[6558,7383],[6557,7384],[6558,8570,7385],[6558,8630],[6621,6997,8631],[6557,6938,8565],[6622,7318],[6558,7319],[6621,7320],[6558,7321],[6622,8570],[6558,8632],[6557,8633],[6622,8634],8694,8695,[6621,6933,8629],[6559,7002,8630],[6622,8631],[6558,8565],[6622,7318],[6558,7319],[6558,7320],[6558,7321],[6557,8570],[6623,8630],[6558,8631],[6559,6871,8565],6998,[6622,7002],[6621,8570],[6558,8822],[6621,8823],[6559,8824],[6623,8825],[6558,8565,7382],[6558,6997,7383],[6937,7384],[6999,8570,7385],[6559,7066,8571],8696,8697,8698,8758,8759,8693,8696,8697,8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4868,4869,4870,4871,4870,4871,4868,4869,4870,4871,4868,4869,4870,4871,4872,4873,[3635,4937],3637,3701,3387,3323,3700,[3699,2170],[3700,2171],3637,3637,[3699,7177],[3637,7178],3388,3701,3636,3636,3635,3701,3636,3323,3387,3701,3635,3637,3636,3700,3700,3387,3388,3387,3701,3324,3635,3701,3637,3635,3699,3388,3636,3635,3635,3700,3388,3701,3637,3701,3636,3636,3323,[3324,7113],[3701,7114],3701,3387,3635,3701,3636,3701,3323,3701,3636,3323,3323,3323,3636,3699,3700,3637,3323,3636,3636,3637,3637,3636,3636,3323,3636,3700,[3635,4995],[3637,4996],[3635,4997],[3637,5000],3700,3637,[3701,4995],[3700,4996],[3699,4997],[3700,4998],[3700,4999],[3701,5000],3636,3699,3699,[3699,2932],[3387,2933],3699,[3637,7177],[3637,7178],3699,[3700,4930],4931,4932,4933,4867,4868,4869,4870,4871,4868,4869,4870,4871,4870,4871,4868,4869,4870,4871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6616,8436],6550,7916,6617,6617,6617,[6628,6618],6562,6562,6564,[6627,6677],6551,7915,[6552,8378],[6550,8379],[6553,8315],6551,6552,6551,6615,6616,[6629,6618,8435],[6563,8436],[6562,6549,7390],[6552,7391],[6627,6680,7392],[6628,6489,7393],[6562,6487,8378],[6550,8310],[6553,8313],[6552,8314],[6552,8315],7852,7850,6553,6552,[6617,8308],[6550,8309],[6550,8373],[6563,6679],[6629,6488],[6626,8378],[6626,6422,8379],[6615,8246],[7850,8372,7318],[7852,8373,7319],[6553,7320],[6552,7321],[6626,6488,8378],[6627,8379],[6564,8249],[6562,8372],[6627,8373],6629,[6627,6422],6615,6617,7850,6616,6614,7851,6552,7915,7852,6552,6614,[6550,8570],[6552,8571],8698,8760,8761,8762,0,0,8692,8693,8884,8885,8698,8758,8759,8760,8761,8628,[6617,8629],[6617,8630],[6553,8631],[7786,8565],7851,[7788,8570],[6553,8630],[6617,8631],[6617,8632],[6617,8633],[6616,8634],8694,8695,[8698,8564],[6622,8699,8565],6623,6623,6622,6622,[6557,8570],[6623,8630,7455],[6557,8631,7456],[6621,8634],8635,8948,8949,8950,8951,8952,8953,8628,[6557,8629],[6623,8632,7447],[6558,8633,7448],[6622,8634],8694,8695,[6557,7066,8564],[6623,8565,7382],[6557,7383],[6559,7384],[6557,8570,7385],[6559,8571],8696,8697,8698,8758,8759,8693,8694,8695,[6622,8564],[6557,8565,7382],[6621,7383],[6623,7384],[6559,8570,7385],[6621,8634],8694,8695,[6559,8629],[6558,7061,8630],[6557,7066,8631],[6623,8634],8886,8887,8888,8889,[6557,8629],[6559,7061,8632,7447],[7062,8633,7448],[6873,8634],8635,8760,8761,8762,0,0,8757,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4932,4933,4934,4935,4934,4935,4932,4933,4934,4935,4932,4933,4934,4935,4936,[3636,4937,1914],[3700,1915],[3637,1916],3701,3637,3387,3700,3324,3636,3637,3387,3635,3323,3323,3637,3636,3637,3701,3636,3701,3323,3387,3635,3636,3637,3323,3700,3699,3699,3699,3635,3701,3636,3637,3701,3636,3700,3323,3323,3323,3323,3324,3323,3636,3636,3388,3324,3637,3637,3388,[3635,7177],[3388,7178],3635,3700,3636,3700,3699,3323,3637,3700,3323,3388,3388,3387,3699,3387,3637,3701,3699,3636,3700,3323,3323,3701,3636,3636,3700,3323,3635,3635,3637,3323,3635,3699,3636,3701,3637,3636,3324,3701,3701,3323,3636,[3700,2996],[3636,2997],3636,3635,3388,3701,3700,[3637,4995,2147485564],[3701,4996,2147485563],[3699,4997,2147485562],4931,4932,4933,4934,4935,4932,4933,4934,4935,4934,4935,4932,4933,4934,4935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6552,8436],6551,6551,6616,7852,6552,[6627,6488],6564,[6628,6423],[6564,6362],[6563,6422],6615,7916,[6552,7126],[7915,8378,7127],[6553,8379,7128],[6616,8249,7129],[6551,8250],6614,6553,6552,[6563,6682,8499],[6626,8500],[6565,6677],[6563,6488,7455],[6628,7456],[6628,6357],[6562,6358],[6563,6618],[6626,6677],[6563,6680,8378],[6562,6678,8379],[6627,6681,8249],[6553,8246],[7915,8249],[6552,8246],[6626,6681,8372],[6627,6681,8373],[6565,6682,7134],[6562,7135],[6565,7136],[6564,7137],[6629,6613,8378],[6550,8310],[6615,8373,7382],[6614,7383],[7850,7384],[6614,7385],[6563,6359],[6565,6359,8378],[6562,6360,8313],[6627,6361,8373],[6565,6425],6628,[6565,6486],[6562,6678],6551,7915,6552,6552,[6616,7134],[6550,7135],[6551,7136],[7850,7137],6553,[7916,8570],[6617,8634],8635,8762,0,0,0,0,0,0,8757,8948,8949,8762,0,0,0,0,8692,8693,8694,8695,[6616,8629],[6617,8630],[6552,8634],8694,8695,8696,8697,8698,8758,8759,8628,[6622,8629],[6557,8630],[6557,8631],[6621,8632],[6558,8633],[6557,8634],8694,8695,8698,8699,0,0,0,0,0,0,8692,8693,8696,8697,8698,8758,8759,8628,[6557,8629],[6621,8632,7447],[6558,8633,7448],[6622,8634],8635,8760,8761,8762,0,0,8757,8758,8759,8628,[6622,8629],[6622,8632,7447],[6557,8633,7448],[6623,8571],8698,8758,8759,8693,8694,8695,8698,8950,8951,8952,8953,8693,8696,8697,8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3637,4996],[3700,4997],[3701,4998],[3699,4999],[3637,4998],[3635,4999],[3637,4996],[3700,4997],[3635,4998],[3701,4999],[3637,4996],[3637,4997],[3635,4998],[3700,4999],[3700,5000],[3636,1978],[3636,1979],[3700,1980],3701,3324,3637,3636,3635,[3387,6481],[3699,6482],[3636,6483],3636,3699,3387,3636,3635,3635,3323,3635,3701,3699,3637,3700,3635,3699,3701,3324,3323,3637,3701,3324,3635,3388,3700,3700,3636,3699,3387,3636,3637,3323,3323,3387,3387,3700,3636,3699,3324,3636,3637,3701,3324,3323,3387,3699,3323,3700,3636,3388,3701,3387,3701,3699,3701,3387,3636,3700,3635,3323,3323,3637,3635,3699,3635,3700,3636,3636,3699,3323,3700,3387,3637,3699,3635,3635,3324,3699,3635,3700,3323,3636,3636,3388,[3387,3060],[3701,3061],3636,3701,3323,3637,3637,[3701,2147485628],[3699,2147485627],[3635,2147485626],[3701,4995],[3701,4996],[3635,4997],[3701,4998],[3636,4999],[3701,4996],[3635,4997],[3635,4998],[3636,4999],[3636,4998],[3635,4999],[3701,4996],[3637,4997],[3636,4998],[3701,4999],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[8499,7126],[6617,8500,7127],[7850,7128],[6553,7129],6616,7852,[6627,6618],6565,6564,[6563,6613],6616,6617,7850,6552,[6553,7190],[6614,7191],[6550,8378,7192],[7916,8313,7193],[6551,8314],[6617,8315],6551,[6627,6618,8308],[6627,8309],[6627,8373],6629,6628,6563,[6563,6677],[6628,6679],[6562,6488],6626,6565,[6563,8378],[6626,8313],[6627,6677,8310],[6629,6681,8313],[6629,6489,8310],[6562,8373],6627,[6627,7198],[6562,7199],[6629,7200],[6564,6357,7201],6615,6615,6551,[6616,7447],[6617,7448],6615,6551,7850,6550,7851,6614,[6629,6359],[6628,6360],[6563,6361],6615,6616,7850,6550,[6552,7198],[7850,7199],[6617,7200],[7850,7201],6617,[6552,8443],8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8759,8693,8502,8698,8758,8759,8760,8761,8762,0,0,8692,8693,8694,8695,8696,8697,8698,8758,8759,8762,0,0,0,0,0,0,0,0,8757,8760,8761,8762,0,0,8692,8693,8696,8697,8698,8699,0,0,0,0,0,0,0,0,8692,8693,8696,8697,8635,8762,0,0,8757,8758,8759,8762,0,0,0,0,8757,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3700,3637,3635,3701,3636,3635,3637,3701,3700,3699,3637,3636,3635,3636,3637,[3699,2042],[3635,2043],[3637,2044],3701,3701,3700,3635,3636,[3701,6545],6546,[3700,6547],[3699,6548],3699,3636,3701,3701,3700,3636,3701,3635,3636,3636,3635,3637,3636,3701,3699,3636,3701,3636,3700,3636,3636,3701,3701,3699,3701,3699,3699,3700,3700,3635,3700,3701,3701,3700,3701,3700,3699,3635,3701,3635,3700,3699,3636,3701,3636,3700,3635,3637,3636,3637,3637,3700,3635,3701,3700,3701,3701,3701,3636,3699,3636,3700,3699,3636,3699,3636,3636,3700,3636,3701,3699,3701,3636,[3636,2170],[3636,2171],3700,3637,3636,3636,3637,3635,3635,3700,3701,3635,3636,3700,3700,[3636,2147485692],[3701,2147485691],[3636,2147485690],3700,3700,3700,3635,3636,3637,3635,3699,3636,3635,3637,3699,3701,3699,3701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8308,[6553,8309,7190],[6552,8373,7191],[6614,7192],[7851,7193],6552,6552,[6627,6682],6564,[6626,6422],6617,6552,6550,7851,7852,[6614,7254],[7850,7255],[6615,7256],[6614,7257],[6615,8378],[6614,8379],[6552,8246],[6614,8372],[6562,6358,8373],[6627,6362],6628,6563,6563,6565,6563,6629,6626,6628,6627,6628,6629,6563,6563,6629,6628,[6627,7262],[6627,7263],[6626,7264],[6627,6677,7265],6551,7852,6550,7852,6551,6550,6615,7788,7915,6553,7916,[7851,7126],[7851,7127],[6617,7128],[6552,7129],7916,6617,6553,[6615,7262],[6615,7263],[7851,7264],[6551,7265],6615,[6617,8443],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8762,0,0,0,0,0,0,0,0,8757,8758,8759,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,8757,8760,8761,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3699,5980],[3635,5977],[3701,5978],[3699,5979],[3700,5980],[3637,5977],[3637,5978],[3701,5979],[3701,5980],[3699,5977],[3636,5980],[3635,5977],[3635,5978],[3635,5979],[3636,5980],[3636,5977,2106],[3636,5978,2107],[3637,5979,2108],[3637,5980],[3637,5977],[3701,5978],[3635,5979],[3637,4803],[3636,6609],6610,[3635,6611],[3636,6612],[3636,4808],[3635,5978],[3700,5979],[3636,5980],[3700,5977],[3701,5978],[3637,5979],[3635,5980],[3701,5977],[3636,5978],[3636,5979],[3700,5980],[3635,5977],[3635,5978],[3699,5979],[3636,5980],[3699,5977],[3701,5978],[3636,5979],[3701,5980],[3699,5977],[3699,5978],[3700,5979],[3700,5980],[3699,5977],[3701,5978],[3700,5979],[3699,5980],[3637,5977],[3636,5978],[3699,5979],[3700,5980],[3701,5977],[3701,5978],[3635,5979],[3636,5980],[3635,5977],[3701,5978],[3637,5979],[3701,5980],[3699,5977],[3636,5978],[3637,5979],[3701,5980],[3637,5977],[3699,5978],[3636,5979],[3699,5980],[3700,5977],[3637,5978],[3636,5979],[3637,5980],[3636,5977],[3637,5978],[3635,5979],[3699,5980],[3700,5977],[3636,5978],[3635,5979],[3636,5980],[3700,5977],[3699,5978],[3635,5979],[3635,5980],[3701,5977],[3635,5978],[3635,5979],[3636,5980],[3699,4803],3636,3701,3699,3635,3700,3700,3636,3700,[3637,4808],[3635,5979],[3701,5980],[3636,5977],[3636,5978],[3701,5979],[3635,5980],[3701,5977],[3636,5978],[3700,5979],[3699,5980],[3636,5977,2147485756],[3636,5978,2147485755],[3701,5979,2147485754],[3700,5980],[3637,5977],[3636,5978],[3637,5979],[3701,5980],[3700,5977],[3636,5978],[3636,5979],[3699,5980],[3701,5977],[3701,5978],[3700,5979],[3701,5980],[3701,5977],[3700,5978],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8371,[6617,8372],[7916,8373,7254],[7916,7255],[7850,7256],[6553,7257],6552,[6563,6682],6627,6627,[6626,6613],6550,7786,6615,6616,7916,[7915,7318],[6617,7319],[7851,7320],[7915,7321],6552,[6552,8378],[6565,6680,8310],[6564,6678,8373],[6626,6681],[6562,6488],6562,6562,6626,6627,6563,[6626,6357],[6629,6359],[6629,6360],[6628,6361],[6629,6424],6563,6562,6627,6627,6564,[6564,7326],[6627,6422,7327],[6626,6425,7328],[6629,7329],[6629,6613],7915,7850,7851,[6564,6678],6551,7787,7916,6550,6614,6616,[7851,7190],[7850,7191],[6550,7192],[6617,7193],6551,7916,6616,[6614,7326],[7850,7327],[7850,7328],[6551,7329],6553,[6552,8507],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,[6043,4673],[3637,4674],[3323,6673],[3323,6674],[3324,6675],[3324,6676],[3635,4681],[6042,4746],6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,[6044,4673],[3637,4674],3637,3323,3636,3323,3700,3636,3701,3700,[3387,4681],[6043,4682],6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,6043,6044,6041,6042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6552,8436],[6617,7318],[6616,7319],[7850,7320],[6550,7321],[6565,6618],6626,6564,[6626,6357],6617,6552,6615,7850,7850,6550,[6553,7382],[7787,7383],[6617,7384],[7851,7385],6552,[6564,6682],[6626,6422],[6628,6425],6565,6565,6628,6629,6563,[6565,6423],[6562,6358],6617,7916,6617,6550,[6626,6488],6627,6626,6565,6626,6562,[6562,7390],[6562,6613,7391],[6563,6618,7392],[6629,7393],[6626,6613],7850,6552,[6628,6489],[6629,6423],6615,7851,7851,6553,6552,6551,[7915,7254],[6550,7255],[6616,7256],[6614,7257],7850,7852,6551,[6616,7390],[6553,7391],[7850,7392],[6552,7393],[6615,8570],[6617,8571],8572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,[6107,4737],[3637,4738],3387,3636,3700,3635,[3324,4681],[6106,4810],6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[6108,4673],[3700,4738],3699,3700,3700,3323,3637,3636,3700,3700,[3387,4681],[6107,4746],6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8499,[6617,8500],[6553,7382],[6617,7383],[6617,7384],[6552,7385],[6565,6489],6627,6565,[6563,6613],6552,7916,6552,6552,7851,6551,6616,[7916,7447],[7852,7448],7850,6616,[6628,6358],6615,[6565,6618],6629,6629,[6627,6422],[6629,6358],[6565,6358],6617,6553,7852,7916,7915,[6564,6618],6629,6627,6629,6564,6564,6627,6565,[6563,6677,7455],[6628,6489,7456],6629,[6626,6677],[6629,6680],[6629,6488],[6626,6423],6617,6550,6615,6615,6615,7787,6550,[6616,7318],[7915,7319],[7916,7320],[7916,7321],6615,6552,7850,6617,[7852,8570,7455],[6553,8632,7456],[6617,8633],[6552,8634],8635,8636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,[6171,4865],[3699,4867],[3701,4868],[3637,4869],[3701,4870],[3635,4871],[3323,4809],[6170,4874],6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,[6172,4737],[3324,4802],[3635,4803],3699,[3635,2082],3387,3701,3701,3700,3699,[3324,4745],[6171,4682],6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8563,[6616,8564],[7916,8565],[6616,7447],[6550,7448],[6629,6489],6627,6563,[6627,6357],6617,6615,6551,6551,7915,6615,6550,6616,7850,6614,6616,7787,7850,6616,[6616,7134],[6563,6424,7135],[6627,6357,7136],[6617,7137],6552,7916,[6614,7126],[6550,7127],[6617,7128],[7850,7129],6617,[6564,6618],6564,6629,6628,6628,6629,6626,6628,6628,[6562,6422],[6626,6359],[6627,6359],[6627,6360],[6626,6361],6615,6615,6616,6614,6553,7915,6551,6553,[6551,7382],[6617,7383],[7850,7384],[6552,7385],6615,[6617,8570],[6553,8632],[6552,8633],[6617,8634],8696,8697,8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[6108,4995],[6105,4996],[6106,4997],[6107,4998],[6108,4999],[6105,5000],6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[6108,4930],4866,[3701,4674],[3637,2145],[3635,2146],[3635,2147],3636,[3388,4808],[3701,4868],[3637,4868],[3323,4872],[6107,4746],6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8627,8628,[6616,8629],[6616,8630],[6562,6618,8631],[6628,8565],6563,[6627,6357],6617,6614,6617,6552,7852,7850,7915,7787,6616,6616,6553,6550,6616,6550,6617,[6551,7198],[6616,7199],[6615,7200],[6615,7201],6616,7915,[6615,7190],[7916,7191],[6615,7192],[6616,7193],7852,6614,[6629,6362],6628,6564,6628,6563,6565,6629,6562,[6626,6613],6615,7916,7851,6551,6551,6550,6550,6552,[6616,8570],[6553,8630],[6616,8631],[7852,8565],6553,[6551,7447],[6614,7448],7916,[6617,8570],[6617,8571],8696,8697,8698,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,[6169,4801],[3635,4802],[3388,4868],[3635,4869],[3635,4870],[3636,4871],[3701,4809],4936,[6169,4998],[6170,4999],[6171,4874],6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8692,8693,8694,8695,[6564,6358,8629],[6628,6358,8565],[6615,7138],[6552,7139],[7851,7140],[6617,7141],7850,6550,6616,7850,6551,6616,6616,7916,7916,6553,6553,7916,[6553,7262],[6551,7263],[6616,7264],[7852,7265],7916,6552,[6614,7254],[7852,7255],[6552,7256],[6616,7257],6615,6550,6616,[6626,6424],[6562,6422],[6629,6424],6565,6562,6629,6563,[6563,6677],6551,7851,6553,[7850,7138],[6614,7139],[7850,7140],[6616,7141],[7852,8570],[6553,8571],8694,8695,[6617,8629],[6552,8630],[6616,8631],[6617,8632],[6552,8633],[6617,8634],8635,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,[6105,4995],[6106,4996],[6107,4997],[6108,4996],[6105,4997],[6106,4998],[6107,4999],[6108,4937],6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8759,8693,[6617,8436],[6615,7202],[7851,7203],[6550,7204],[7851,7205],7850,7851,6614,7850,6615,6551,[7851,7126],[6617,7127],[6615,7128],[7915,7129],6553,6616,[6552,7326],[6615,7327],[7915,7328],[7915,7329],6616,6553,[6617,7318],[6614,7319],[6552,7320],[7916,7321],7850,7852,6615,[6564,6618],[6628,6613],6616,[6563,6358],[6564,6359],[6626,6360],[6628,6361],[6628,6361],6615,6614,7787,[6551,7202],[6614,7203],[6614,7204],[6615,8570,7205],[6616,8634],8635,8758,8759,8693,8694,8695,8696,8697,8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8435,[6616,8436],[6616,7266],[6615,7267],[7850,7268],[7852,7269],6617,7916,6617,7916,6553,7915,[6615,7190],[7787,7191],[6615,7192],[6614,7193],6614,6553,[7850,7390],[6553,7391],[7850,7392],[6550,7393],6616,6552,[6615,7382],[6551,7383],[7851,7384],[7852,7385],6552,6553,7850,6616,6617,7915,6615,7916,6615,6553,7850,7850,6551,7786,[7851,7266],[7916,7267],[6550,7268],[6553,8443,7269],8698,8699,0,0,8757,8758,8759,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6172,6169,6170,6171,8073,8074,8075,6171,6170,6171,6172,6171,6172,6169,6170,6171,6172,6169,[6170,7621],6171,6172,6169,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8499,[6553,8500],[7850,7330],[7852,7331],[6552,7332],[6550,7333],6616,[7915,8570],[6616,8630],[6617,8631],[7852,8565],7916,[6617,7254],[7850,7255],[6616,7256],[6615,7257],7916,7915,6617,[6552,7455],[6551,7456],6617,6615,6553,6551,[6552,7447],[7852,7448],7851,[6615,8570],[6552,8632],[6552,8633],[7916,8565],7916,6616,7851,7916,6550,6551,7850,7915,6615,6553,[6550,7330],[6551,7331],[6552,7332],[6553,8443,7333],8444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,[4673,6236],[6031,4674,6233],[6095,6234,7621],[6032,6235],[6032,8137],[6095,8138],[6093,8139],[4883,6235],[4946,6234],[6093,6235],[6095,6236],[6030,6235],[6031,6236],[6093,6233],[6094,6234],[6095,6235],[6096,6236],[6032,6233],[6093,6234,7685],[6031,6235],[6094,4681,6236],[4682,6233],6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8563,[6617,8564],[6614,8565,7394],[6551,7395],[7852,7396],[6552,8570,7397],[6616,8630],[6616,8634],8694,8695,[6616,8629],[6553,8565],[6550,7318],[7852,7319],[6551,7320],[6616,7321],[6615,8570],[6617,8823],[6616,8824],[6552,8825],[7850,8565],6616,7788,6550,6614,[6551,8570],[6617,8632],[6616,8633],[6616,8634],8696,8697,[6617,8564],[6551,8565],7915,7851,[6552,8570],[6553,8630],[6617,8631],[6617,8565],6553,6617,6553,[7786,7394],[6552,7395],[6617,7396],[6553,8507,7397],8508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[6108,4673],[6096,4674],[6030,7685],6095,6030,6093,6029,[4883,5903],4947,[4947,5965],6029,6094,[4883,6158],[4946,5968],[4946,5965],6095,6029,6094,[6030,7749],6031,[6095,4681],[6105,4682],6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8627,8628,[6617,8629],[6617,8630,7459],[6616,8631,7460],[6553,8634],8502,8698,8758,8759,8693,[6553,8564],[7916,8565,7382],[6616,7383],[7851,7384],[7915,8570,7385],[6553,8634],8502,8888,8889,[6616,8629],[6616,8630],[6553,8631],[6616,8632],[6553,8633],[6616,8634],8696,8697,8698,8760,8761,8628,[6553,8629],[6552,8632],[6617,8633],[6617,8634],8694,8695,[6616,8564],[6550,8565],7915,7850,6616,[6550,7459],[6552,8570,7460],[6552,8571],8572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,[6172,4673],[6031,4674],[6030,7749],6032,6095,6095,6094,6094,[4947,5904],4883,[4946,5965],[4946,5968],[4883,5901],[4883,5903],4883,[4882,5900],6029,6029,[6029,7813],6029,[6029,4745],[6169,4746],6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,8073,8074,8075,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8692,8693,8694,8695,8698,8758,8762,0,0,8757,8628,[6552,8629],[6553,8630,7447],[6616,8631,7448],[6553,8634],8698,8951,8952,8953,8693,8694,8695,8696,8697,8698,8760,8761,8762,0,0,8692,8693,8696,8697,8698,8758,8759,8628,[6616,8629],[6553,8630],[6553,8631],[6617,8632],[6617,8633],[6616,8634],8635,8636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[6108,4673],[6095,4674],[6032,7813],6030,6093,6093,6031,6096,[4882,5905],4883,[4946,5901],[4882,5837],6030,[4947,6097],4882,[4882,6028],6093,6096,6030,6031,[6031,4681],[6105,4682],6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[4737,6234],[4883,4738,6233],[4882,6234],[4882,6235],[4947,8137],[4882,8138],[4883,8139],[4946,6233],[4882,6234],[4946,6235],[4882,4745,6236],[4746,6235],6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8759,8762,0,0,0,0,0,8692,8693,8694,8695,8698,8762,0,0,0,8757,8758,8759,8760,8761,8762,0,0,0,0,0,0,8757,8760,8761,8762,0,0,8692,8693,8694,8695,8696,8697,8698,8699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,[6172,4737],[6030,4738],6096,6093,6030,6030,6032,6095,[4883,6033],4883,[4882,6156,4808],[6157,4868],[6158,4869],[4947,6161,4803],4947,[4946,5965],6030,[6096,7241],[6093,7242],6032,[6029,4745],[6169,4746],6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,[6172,4673],[4883,4674],4882,4947,4947,4947,4947,4947,4947,4946,[4947,4681],[6171,4746],6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8759,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8757,8758,8759,8760,8761,8762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[6108,4801],[6029,4802],[6032,4803],6029,6093,6032,6096,[6032,4808],[4947,6161,4868],[4883,4869],[4947,4872],4932,4933,[4947,4802],[4947,4803],4882,[4882,5900],[6096,7305],[6029,7306],[6030,4808],[6096,4809],[6105,4810],6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[6108,4737],[4883,4738],4883,4946,4947,4946,4946,4947,4947,4946,[4947,4745],[6107,4810],6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,[6172,4865],4866,[6030,4867],[6030,4868],[6094,4869],[6096,4870],[6095,4871],[6093,4872],4932,4933,4936,[6171,4996],[6172,4997],4866,[4947,4867],[4883,4868],[4947,5964,4869],[6096,4870],[6030,4871],[6032,4872],4873,[6169,4874],6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,[6172,4673],[4883,4674],4883,4947,4882,4947,4883,4883,4947,[4946,4808],[4947,4809],[6171,4874],6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,[6105,4930],4931,4932,4933,4934,4935,4936,[6108,4996],[6105,4997],[6106,5000],6107,6108,[6105,4930],4931,4932,4933,4934,4935,4936,[6108,4937],6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,[6108,4737],[4947,4738],4947,4883,4947,4946,4883,[4946,4808],[4882,4868],[4946,4872],[6106,4874],6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,[6170,4995],[6171,4996],[6172,4997],[6169,4998],[6170,4999],[6171,5000],6172,6169,6170,6171,6172,6169,[6170,4995],[6171,4996],[6172,4997],[6169,4998],[6170,4999],[6171,5000],6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,[6172,4995],[4947,4802],[4883,4803],4882,4882,4946,4882,[4946,4745],4873,[6169,4937],6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,[6105,4865],[4882,4867],[4883,4868],[4883,4869],[4946,4870],[4883,4871],[4883,4872],[6108,4874],6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,[6170,4995],[6171,4996],[6172,4997],[6169,4998],[6170,4999],[6171,5000],6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,6171,6172,6169,6170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6170,8074,6170,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,6107,6108,6105,6106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6236,6233,6234,6235,6236,6233,6234,6235,6236,6233,6236,6233,6234,6235,6236,[4546,6233],[487,4547,6234],[486,6235],[423,6236],[486,6233],[487,6234,1129],[486,6235,1130],[422,6236],[487,6233],[422,6234],[422,6235],[422,6236],[487,6233],[486,6234],[422,6235],[423,6236],[3777,488,6233],[3777,6234],[3777,6235],[3777,6236],[3777,291,6233],[422,6234],[423,6235],[422,6236],[422,6233],[487,6234],[487,6235],[422,8137],[487,8138],[487,8139],[423,6235],[423,6236],[423,6233],[423,6234],[3777,296,6235],[3777,6236],[3777,291,6233],[486,6234],[487,6235],[487,6236],[487,6233],[423,6234],[422,6235],[487,6236],[487,6233],[487,6234],[422,6235],[486,6236],[422,6233],[422,6234],[422,6235],[423,6236],[423,6233],[487,6234],[3777,296,6235],[3777,6236],[3777,6233],[3777,291,6234],[423,6235],[487,6236],[486,6233],[422,6234],[422,6235],[3777,296,6236],[3777,6233],[3777,291,6234],[423,6235],[422,6236],[422,6233],[3777,488,6234],[3777,6235],[3777,6236],[3777,292,6233],[423,6234],[487,6235],[423,6236],[423,6233],[487,6234],[422,6235],[486,6236],[422,6233,1129],[423,6234,1130],[423,6235],[422,6236],[422,6233],[422,6234],[3777,424,6235],[3777,6236],[3777,6233],[3777,6234],[3777,6235],[3777,6236],[3777,291,6233],[486,6234],[423,6235],[486,6236],[423,6233],[487,6234],[3777,296,6235],[3777,6236],[3777,291,6233],[422,6234],[422,6235],[423,4552,6236],[4553,6233],6234,6235,6236,6233,6234,6235,6236,6233,6234,6235,6236,6233,6234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4609,[486,4610],[423,4611],487,422,487,[487,1193],[486,1194],486,422,422,[423,1131],[422,1132],423,423,423,420,[3777,359],3777,3777,3777,[3777,355],422,[487,1137],[423,1138],487,423,422,423,422,422,487,423,[423,1129],[423,1130],[3777,360],3777,[3777,355],486,423,423,423,423,486,486,422,423,422,422,423,486,486,486,[423,1129],[486,1130],[3777,360],3777,3777,[3777,355],423,422,422,487,486,[3777,360],3777,[3777,355],487,486,420,[3777,552],3777,[3777,227],[485,1131],[486,1132],422,486,486,487,487,423,[487,1193],[486,1194],487,486,422,487,[3777,488],3777,[3777,292],[3777,232],3777,3777,[3777,355],487,487,[486,1137],[423,1138],423,[3777,360],3777,[3777,355],422,487,[487,4616],[486,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[423,4674],[422,1133],[486,1134],422,487,422,487,422,487,422,[487,1195],[487,1196],422,487,423,[3777,488],3777,3777,3777,3777,[3777,419],486,[422,1201],[486,1202],487,423,486,422,422,486,423,422,[423,1193],[423,1194],[3777,424],3777,[3777,419],486,423,[487,1129],[422,1130],486,423,487,423,422,486,487,487,423,486,487,[487,1193],[486,1194],[3777,424],3777,3777,[3777,419],422,487,487,486,487,[3777,424],3777,[3777,419],487,420,[3777,358],3777,3777,[3777,483],[487,1195],[487,1196],486,487,423,487,487,422,423,423,487,487,486,420,[3777,358],3777,[3777,483],484,[3777,294],3777,[3777,419],423,487,[423,1201],[422,1202],487,[3777,424],3777,[3777,419],487,486,423,[487,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[422,4738],[423,1197],[423,1198],423,423,487,422,486,423,487,486,487,423,420,[3777,551],[3777,359],3777,3777,3777,[3777,292],485,423,422,487,486,422,487,423,423,486,423,423,423,486,[3777,488],3777,[3777,356],421,423,[487,1193],[486,1194],420,[3777,548],[3777,549],421,487,487,423,487,486,487,487,487,423,484,[3777,294],3777,[3777,547],421,422,422,423,486,[3777,488],3777,[3777,483],486,[3777,488],3777,3777,[3777,292],485,423,487,487,486,487,487,487,486,423,422,422,486,422,[3777,488],3777,3777,[3777,483],422,484,[3777,295],[3777,547],421,423,422,423,422,[3777,488],3777,[3777,483],422,487,487,[422,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4801,[423,4802],[486,4803],422,422,422,487,[423,1129],[423,1130],486,486,423,486,422,[3777,296],3777,3777,3777,3777,[3777,293],485,486,423,487,423,422,487,423,486,422,486,487,422,486,487,[3777,296],3777,3777,[3777,547],421,487,487,[3777,296],3777,3777,[3777,483],487,422,487,422,486,423,486,487,423,486,[3777,488],3777,3777,[3777,356],421,422,422,420,[3777,359],3777,[3777,483],420,[3777,358],[3777,227],[3777,228],485,422,486,487,486,422,423,422,486,422,486,486,487,487,[423,1131],[484,1132],[3777,294],3777,[3777,357],[3777,550],[3777,551],[3777,552],3777,[3777,483],423,423,486,487,[3777,296],3777,[3777,483],486,422,[423,4808],[486,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4865,4866,[423,4867],[486,4803],422,423,423,[423,1193],[423,1194],422,487,423,486,423,[3777,360],3777,[3777,292],[3777,229],[3777,230],485,486,423,486,[422,1129],[423,1130],422,487,422,486,487,487,487,486,487,486,[3777,360],3777,3777,3777,[3777,483],487,423,[3777,360],3777,[3777,293],485,486,423,423,422,420,[3777,550],[3777,551],421,487,486,484,[3777,294],3777,3777,[3777,483],420,[3777,551],[3777,552],3777,[3777,293],485,[3777,488],3777,[3777,547],421,423,487,487,486,487,420,421,486,420,421,423,423,422,486,[486,1195],[422,1196],484,[3777,231],[3777,232],3777,3777,3777,[3777,293],485,487,486,422,423,[3777,424],3777,[3777,291],422,[422,4808],[422,4809],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,[487,4674],486,423,423,487,486,486,487,487,487,423,[3777,424],3777,[3777,291],[486,1129],[486,1130],486,487,422,487,[422,1193],[422,1194],422,486,422,423,[486,1129],[422,1130],422,486,422,422,[3777,424],3777,3777,3777,[3777,547],421,422,[3777,424],3777,[3777,291],486,422,422,423,420,[3777,359],3777,3777,[3777,356],421,423,423,484,[3777,232],3777,[3777,357],[3777,552],3777,[3777,227],[3777,228],485,487,484,[3777,228],[3777,295],[3777,356],421,[487,1137],[422,1138],487,420,[3777,358],[3777,547],[3777,548],[3777,358],[3777,356],421,487,486,423,487,420,[3777,548],[3777,549],[3777,358],3777,3777,[3777,292],485,486,487,487,486,420,[3777,552],3777,[3777,355],[487,4808],[422,4872],4873,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[422,4674],[487,1133],[487,1134],423,422,486,422,423,422,423,487,[3777,488],3777,[3777,419],[486,1193],[486,1194],486,423,486,423,422,423,486,422,487,423,[487,1193],[487,1194],423,422,[487,1137],[486,1138],484,[3777,294],3777,3777,3777,[3777,356],[3777,548],[3777,552],3777,[3777,419],423,423,422,487,[3777,296],3777,3777,3777,3777,[3777,291],486,486,487,[3777,488],3777,3777,3777,[3777,292],485,423,422,486,487,487,[3777,296],3777,[3777,483],[487,1201],[487,1202],487,484,[3777,232],3777,3777,3777,3777,[3777,291],422,487,422,420,[3777,552],3777,3777,3777,[3777,227,1139],[3777,228,1140],485,487,423,422,423,420,[3777,359],3777,3777,[3777,419],[423,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[423,4738],[487,1197],[487,1198],422,423,422,486,422,486,423,420,[3777,359],3777,[3777,356],[3777,550],[3777,551],421,487,422,487,422,422,423,487,487,487,422,423,486,422,[486,1201],[423,1202],422,484,[3777,228],[3777,295],3777,3777,3777,3777,[3777,292],485,486,486,422,487,[3777,424],3777,3777,3777,3777,[3777,419],422,423,422,484,[3777,232],3777,[3777,227],[485,1129],[422,1130],423,422,486,486,487,[3777,360],3777,[3777,356],421,420,[3777,550],[3777,551],[3777,552],3777,3777,3777,3777,[3777,355],486,423,420,[3777,358],3777,3777,[3777,227],[3777,228],[485,1203],[422,1204],423,486,487,423,420,[3777,358],3777,[3777,227],[3777,228],485,[422,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[422,4547],[486,4611],423,423,487,422,423,423,[422,1129],[486,1130],423,484,[3777,295],3777,3777,3777,3777,[3777,356],421,422,487,423,422,486,423,423,420,[3777,548],[3777,549],421,486,420,[3777,550],421,422,423,484,[3777,232],3777,3777,3777,[3777,483],487,422,[423,1129],[422,1130],422,484,[3777,232],3777,3777,[3777,227],485,487,422,486,486,[3777,488],3777,[3777,291],[423,1193],[422,1194],487,422,487,422,423,[3777,424],3777,3777,[3777,483],[3777,488],3777,3777,3777,3777,[3777,227],[3777,294],3777,[3777,419],487,422,[3777,296],3777,3777,3777,[3777,547],[3777,548],421,487,487,422,486,486,484,[3777,232],3777,[3777,291],486,422,[486,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4483,4484,[423,4610],[487,4611],[422,1129],[487,1130],422,486,486,422,487,[422,1193],[422,1194],423,487,484,[3777,229],[3777,231],[3777,232],3777,3777,[3777,291],422,422,486,422,423,422,422,[3777,296],3777,3777,[3777,356],[3777,550],[3777,552],3777,[3777,547],[3777,548],[3777,549],[3777,551],[3777,552],3777,3777,3777,[3777,547],[3777,548],421,[422,1193],[422,1194],423,420,[3777,552],3777,[3777,227],485,422,487,487,487,423,[3777,296],3777,[3777,355],422,487,423,422,487,423,486,484,[3777,295],3777,[3777,547],[3777,358],3777,[3777,292],[3777,294],3777,[3777,483],484,[3777,228],485,487,423,[3777,360],3777,3777,3777,3777,3777,[3777,291],487,422,486,486,422,422,[3777,488],3777,[3777,355],487,423,[423,4616],[422,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4609,[487,4547],[486,4548],[487,4611,7372],486,[423,1193],[487,1194],423,423,486,423,486,423,487,422,[486,1133],[486,1134],486,423,[3777,296],3777,3777,[3777,419],422,422,487,486,487,422,486,[3777,360],3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,[3777,292],[3777,228],[3777,295],3777,3777,3777,[3777,547],421,423,420,[3777,359],3777,3777,[3777,291],487,423,422,487,422,423,[3777,360],3777,[3777,419],422,422,486,486,487,422,487,487,[3777,488],3777,3777,3777,[3777,227],[485,1131],[484,1132],[3777,228],485,423,423,487,487,487,[3777,424],3777,3777,3777,3777,3777,[3777,355],487,423,486,422,486,420,[3777,552],3777,[3777,419],422,422,[487,1129],[423,4616,1130],[422,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[423,4674],486,[423,7436],486,422,487,422,422,487,486,422,422,487,422,[422,1197],[423,1198],487,486,[3777,424],3777,[3777,292],[485,1129],[422,1130],487,487,422,486,422,487,[3777,424],3777,3777,3777,[3777,292],[3777,228],[3777,294],3777,[3777,227],[3777,229],[3777,230],485,487,[3777,488],3777,3777,3777,3777,[3777,483],420,[3777,552],3777,3777,3777,[3777,419],487,[487,685],[486,686],423,423,486,[3777,424],3777,[3777,547],421,422,487,486,486,487,423,420,[3777,552],3777,[3777,227],[3777,228],485,[486,1195],[486,1196],422,487,422,487,487,423,422,484,[3777,232],3777,3777,3777,3777,[3777,419],423,486,487,422,422,[3777,488],3777,3777,[3777,356],421,486,[487,1193],[423,1194],[422,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[422,4738],423,[486,7500],423,486,487,[486,1137],[422,1138],487,486,486,487,423,423,487,486,423,420,[3777,358],3777,[3777,291],[423,1193],[487,1194],423,423,486,486,422,486,484,[3777,294],[3777,227],[3777,228],485,423,484,[3777,228],485,487,487,[486,1131],[486,1132],484,[3777,228],[3777,232],3777,3777,[3777,547],[3777,358],3777,3777,3777,[3777,292],485,423,[487,749],[487,750],423,423,422,[3777,488],3777,3777,[3777,356],[3777,548],421,422,487,422,422,[3777,488],3777,3777,[3777,356],421,487,422,486,486,487,422,486,422,486,423,486,484,[3777,228],[3777,295],3777,[3777,292],485,486,422,423,420,[3777,551],[3777,552],3777,3777,[3777,227],485,422,487,422,[486,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4801,[422,4802],[423,4803],[487,7564],423,486,423,[487,1201],[486,1202],486,487,422,422,487,487,[486,1129],[487,1130],486,[3777,488],3777,3777,[3777,355],422,423,423,487,486,486,487,487,486,484,485,423,486,487,423,422,487,422,423,[423,1195],[487,1196],423,423,[3777,488],3777,3777,3777,3777,3777,[3777,227],[3777,228],485,423,486,422,422,422,422,422,484,[3777,232],3777,3777,3777,[3777,291],486,423,422,487,484,[3777,294],3777,3777,[3777,483],486,422,423,486,422,420,[3777,551],421,423,486,487,486,487,484,[3777,228],485,487,423,486,420,[3777,358],3777,3777,[3777,293],[3777,228],485,422,486,487,487,[486,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4865,4866,[423,4802],[423,4803],422,[487,1129],[486,1130],423,422,422,423,422,422,423,423,[422,1193],[423,1194],420,[3777,552],3777,3777,[3777,419],486,422,486,487,423,486,486,422,422,[422,1131],[423,1132],487,487,487,422,487,423,423,486,486,486,423,423,484,[3777,228],[3777,294],3777,3777,3777,[3777,547],421,487,[423,1129],[422,1130],487,486,422,422,422,487,[484,1133],[3777,228,1134],[3777,295],3777,[3777,419],486,487,422,487,487,484,[3777,229],[3777,231],485,486,422,486,486,486,[3777,296],3777,[3777,483],423,487,487,487,486,423,422,487,487,487,422,[3777,488],3777,[3777,293],[3777,232],[3777,547],[3777,548],421,423,486,422,422,[487,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4866,[422,4867],[486,4803],[423,1193],[487,1194],487,422,422,423,422,422,486,422,422,420,[3777,358],3777,3777,3777,[3777,483],423,422,422,422,423,422,422,422,422,[486,1195],[486,1196],486,486,486,486,423,486,423,422,487,487,422,486,423,486,[3777,488],3777,3777,3777,3777,[3777,291],423,[487,1193],[422,1194],487,423,422,487,422,423,[423,1197],[422,1198],484,[3777,228],485,423,423,423,486,423,422,487,487,486,422,423,422,422,486,[3777,424],3777,[3777,356],[3777,548],421,423,487,486,422,423,486,487,487,486,484,[3777,228],485,[3777,488],3777,3777,[3777,291],486,423,422,[422,1129],[486,4616,1130],[422,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,[487,4674],486,423,423,486,487,486,486,422,487,487,423,[3777,296],3777,3777,3777,3777,[3777,291],[422,1129],[423,1130],486,486,486,422,423,422,487,486,422,487,422,486,487,423,422,487,422,422,423,423,423,486,487,484,[3777,231],[3777,232],3777,3777,[3777,419],486,422,423,423,486,423,487,422,423,423,422,486,423,486,486,422,487,486,487,487,487,487,422,487,487,422,423,423,484,[3777,294],3777,3777,[3777,547],[3777,550],[3777,551],[3777,549],[3777,550],[3777,551],421,487,486,486,486,487,487,484,[3777,295],3777,[3777,355],486,422,487,[486,1193],[423,1194],[487,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[486,4674],[486,1131],[423,1132],486,422,487,422,422,487,422,422,486,[3777,424],3777,3777,3777,3777,[3777,419],[487,1193],[422,1194],423,422,487,487,487,423,422,486,422,487,423,423,423,422,487,422,486,486,487,486,423,487,486,486,487,[3777,296],3777,3777,[3777,547],421,487,487,423,422,422,423,423,423,487,486,487,422,486,422,422,486,423,486,487,487,487,487,422,487,423,487,422,487,484,[3777,228],[3777,294],3777,3777,3777,3777,3777,3777,[3777,357],421,487,420,[3777,548],421,486,420,[3777,552],3777,[3777,419],486,422,486,423,[487,4808],[422,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[486,4738],[487,1195],[423,1196],423,486,422,423,422,423,487,422,487,484,[3777,294],3777,3777,3777,[3777,547],421,486,422,487,422,422,487,487,487,422,486,486,486,423,423,422,423,487,487,422,423,422,422,486,[486,1133],[422,1134],487,[3777,424],3777,3777,3777,[3777,356],421,423,423,487,423,423,423,487,423,422,423,423,487,486,486,422,487,487,487,486,420,[3777,549],421,423,422,422,486,486,486,486,484,[3777,228],[3777,294],3777,[3777,227],[3777,294],3777,3777,[3777,356],[3777,548],[3777,358],3777,[3777,356],421,[3777,488],3777,[3777,292],485,486,423,486,[423,4808],[422,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4801,[487,4802],[423,4803],487,486,487,423,423,487,423,422,423,422,486,484,[3777,231],[3777,232],3777,3777,[3777,483],486,422,486,486,422,422,422,422,486,487,423,422,423,422,487,422,422,486,486,422,423,486,423,[487,1197],[422,1198],423,484,[3777,295],3777,3777,3777,[3777,291],486,487,423,422,487,486,487,487,487,422,486,422,423,423,486,423,423,423,486,[3777,488],3777,[3777,547],[3777,551],421,422,486,486,423,486,423,422,484,[3777,228],485,484,[3777,295],3777,3777,3777,3777,3777,3777,[3777,357],[3777,358],3777,[3777,483],486,486,486,423,[487,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4865,4866,[486,4867],[422,4803],423,486,422,486,422,486,487,423,422,422,423,486,[3777,488],3777,[3777,292],485,422,487,423,423,487,487,422,420,[3777,548],421,422,423,423,423,423,422,487,422,487,422,422,420,[3777,548],421,487,420,[3777,548],[3777,552],3777,3777,3777,[3777,419],423,422,423,487,486,422,422,423,486,423,423,420,[3777,550],[3777,551],421,422,487,487,423,484,[3777,294],3777,3777,[3777,291],422,486,486,422,487,423,422,423,423,487,487,484,[3777,232],3777,[3777,293],[3777,228],[3777,231],[3777,294],3777,3777,3777,[3777,483],487,486,487,423,[487,4745],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,[487,4674],423,487,486,422,486,423,422,422,422,422,486,487,484,[3777,228],485,486,487,487,486,486,486,486,486,[3777,296],3777,[3777,291],422,422,487,422,422,422,487,423,487,423,420,[3777,358],3777,[3777,547],[3777,548],[3777,358],3777,3777,3777,3777,[3777,292],485,423,487,423,487,487,486,[486,1129],[423,1130],487,486,420,[3777,358],3777,3777,[3777,547],[3777,549],421,423,487,422,484,[3777,232],3777,[3777,419],487,487,422,420,[3777,551],[3777,549],421,423,486,487,423,422,484,[3777,228],485,422,487,484,[3777,228],[3777,231],[3777,228],485,487,422,486,422,[423,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[423,4674],486,486,487,487,486,487,487,423,423,487,487,486,423,422,486,422,486,422,487,487,423,487,423,[3777,360],3777,[3777,355],487,487,423,487,422,487,[422,1129],[422,1130],422,422,[3777,488],3777,3777,3777,3777,3777,3777,3777,3777,[3777,227],485,487,486,422,423,423,422,486,[486,1193],[423,1194],420,[3777,550],[3777,552],3777,3777,3777,3777,3777,[3777,357],[3777,548],[3777,549],[3777,550],[3777,551],[3777,552],3777,[3777,547],[3777,549],[3777,550],[3777,551],[3777,358],3777,3777,[3777,356],[3777,548],[3777,549],[3777,550],[3777,551],421,423,422,423,423,487,487,422,423,487,422,423,487,486,487,[487,4616],[423,4552],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[487,4738],486,487,423,422,422,422,486,423,487,422,487,422,487,423,486,422,487,423,422,423,422,423,423,[3777,424],3777,[3777,419],[486,1131],[487,1132],422,486,486,487,[486,1193],[423,1194],423,423,484,[3777,228],[3777,232],3777,3777,3777,3777,3777,3777,[3777,547],[3777,548],421,423,422,423,422,487,487,420,[3777,551],[3777,358],3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,[3777,483],423,422,422,486,486,423,422,423,420,421,486,423,486,487,[423,1129],[486,4616,1130],[486,4552,7372],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[422,4674],487,420,[3777,548],[3777,549],[3777,550],[3777,551],421,487,422,[486,1129],[422,1130],487,423,420,[3777,550],421,487,423,486,487,423,423,420,[3777,358],3777,[3777,483],[487,1195],[423,1196],422,423,486,423,420,[3777,548],421,486,423,486,484,[3777,294],3777,[3777,293],[3777,232],3777,3777,3777,3777,[3777,483],423,422,486,422,487,423,[3777,488],3777,3777,3777,[3777,227],[3777,228],[3777,229],[3777,230],[3777,231],[3777,232],3777,[3777,227],[3777,228,1129],[3777,228,1130],[3777,229],[3777,230],[3777,231],[3777,232],3777,3777,[3777,292],[3777,229],[3777,230],[3777,294],3777,3777,3777,3777,3777,[3777,357],[3777,551],421,422,487,420,[3777,549],[3777,550],[3777,551],[3777,358],[3777,356],421,422,486,422,[486,1193],[422,1194],[487,4616,7436],[422,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[3777,548,4738],[3777,549],[3777,359],3777,3777,3777,3777,[3777,357],[3777,548],421,[487,1193],[486,1194],420,[3777,548],[3777,552],3777,[3777,291],423,423,422,423,423,423,[3777,296],3777,3777,[3777,547],[3777,550],[3777,551],421,486,420,[3777,551],[3777,552],3777,[3777,356],421,423,423,422,484,[3777,228],[485,1139],[484,1140],[3777,228],[3777,294],3777,[3777,292],485,422,423,423,486,422,420,[3777,359],3777,3777,[3777,292],485,487,422,420,[3777,550],[3777,359],3777,[3777,483],[422,1193],[422,1194],420,[3777,548],[3777,549],[3777,552],3777,3777,[3777,483],423,422,484,[3777,229],[3777,230],[3777,231],[3777,294],3777,3777,3777,[3777,356],[3777,548],[3777,549],[3777,358],3777,3777,3777,3777,3777,[3777,483],486,486,422,487,422,[486,7500],[423,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[3777,4547],[3777,4611],3777,3777,3777,3777,3777,3777,3777,3777,[3777,357],[3777,550],[3777,551],[3777,358],3777,3777,3777,[3777,355],423,487,486,423,486,487,[3777,424],3777,3777,3777,3777,3777,[3777,547],[3777,548],[3777,359],3777,3777,3777,3777,[3777,483],422,486,423,487,422,[486,1203],[422,1204],422,484,[3777,228],485,487,423,423,486,486,486,[3777,488],3777,3777,3777,[3777,483],[486,687],[422,688],420,[3777,358],3777,3777,[3777,293],485,422,422,484,[3777,294],3777,[3777,292],[3777,229],[3777,230],485,487,486,487,422,486,[486,1129],[484,1130],[3777,228],[3777,294],3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,[3777,547],[3777,548],[3777,549],[3777,550],[3777,551],421,[423,7564],[422,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4483,4484,4487,4484,4487,4484,[3777,4610],[3777,4611],3777,3777,[3777,227],[3777,294],3777,[3777,227],[3777,231],[3777,232],3777,3777,3777,3777,3777,3777,3777,3777,[3777,419],487,423,486,486,486,486,484,[3777,228],[3777,228],[3777,294],3777,3777,3777,3777,3777,3777,3777,3777,[3777,293],485,422,423,423,486,422,423,487,486,422,486,486,487,487,423,487,487,422,484,[3777,229],[3777,230],[3777,231],485,[486,751],[423,752],484,[3777,294],[3777,292],[3777,228],485,486,423,423,487,484,[3777,228],485,423,486,487,422,486,486,487,422,[423,1193],[486,1194],487,[3777,488],3777,3777,[3777,227],[3777,232],3777,3777,3777,[3777,227],[3777,232],3777,3777,3777,3777,3777,3777,[3777,356],[421,4808],[486,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[423,4547],[486,4548,7370],[423,4551],[487,4548],[486,4551],[487,4548],[3777,294,4611],3777,3777,[3777,292],[485,1129],[484,1130],[3777,228],[485,1129],[423,1130],[3777,488],3777,3777,3777,3777,3777,3777,3777,[3777,293],485,422,422,487,422,423,486,486,487,[487,1129],[484,1130],[3777,229],[3777,230],[3777,231],[3777,232],3777,3777,3777,[3777,292],[485,1133],[486,1134],487,487,423,486,487,423,423,486,486,422,422,486,423,487,423,422,423,487,422,423,422,422,487,486,422,484,485,422,487,422,422,486,486,486,487,422,422,487,423,422,486,422,487,423,422,422,420,[3777,358],3777,[3777,292],485,484,[3777,294],3777,[3777,293],485,[3777,488],3777,3777,3777,3777,3777,3777,[3777,4808],[3777,357,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4609,[422,4610],[423,4611],[422,7434],423,[487,1129],[423,1130],487,484,[3777,231],[3777,228],485,[422,1193],[486,1194],423,[486,1193],[423,1194],484,[3777,294],3777,[3777,292],[3777,228],[3777,294],3777,[3777,227],485,422,422,487,487,487,422,423,487,487,[486,1193],[487,1194],422,423,423,[3777,296],3777,3777,[3777,292],485,[486,1197],[487,1198],423,422,420,[3777,548],[3777,549],421,422,423,422,423,486,422,487,487,423,486,487,486,486,422,487,486,422,486,486,422,487,486,487,486,486,423,487,487,486,423,487,423,486,422,486,423,423,423,422,487,[3777,296],3777,3777,[3777,483],[422,1129],[423,1130],484,[3777,228],[485,1129],[487,1130],484,[3777,228],[3777,229],[3777,230],[3777,231],[3777,294],3777,[3777,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[487,4674],422,[487,7498],423,[423,1193],[486,1194],423,487,487,423,486,487,422,487,422,423,487,484,[3777,228],[485,1129],[423,1130],484,[3777,228],485,422,487,486,423,423,423,423,487,423,487,487,423,487,487,487,[3777,424],3777,3777,[3777,547],[3777,548],421,423,422,486,[3777,488],3777,3777,[3777,356],421,487,422,487,423,422,487,422,422,422,422,486,487,423,486,486,423,423,422,487,487,422,486,486,486,423,486,487,420,[3777,549],[3777,550],[3777,551],421,487,486,422,486,423,487,422,[3777,424],3777,[3777,292],485,[422,1193],[486,1194],423,486,[423,1193],[422,1194],487,487,486,486,486,484,[3777,228],[3777,294,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[486,4738],486,[486,7562],486,422,423,487,486,423,486,422,486,487,423,422,487,487,423,423,[486,1193],[423,1194],422,486,487,487,423,423,422,486,486,486,423,423,486,422,423,422,423,422,484,[3777,295],3777,3777,3777,[3777,547],421,420,[3777,551],[3777,552],3777,3777,3777,[3777,483],422,487,422,487,486,487,423,423,422,487,487,423,423,486,422,423,422,487,420,[3777,548],[3777,549],421,422,423,[486,1129],[423,1130],420,[3777,358],3777,3777,3777,[3777,356],421,486,423,423,487,423,487,484,[3777,228],485,487,487,423,422,423,487,422,422,486,487,423,487,487,422,[422,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4801,[423,4802],[487,4803],423,487,422,423,422,486,420,421,486,423,486,422,422,487,486,487,486,487,423,423,423,486,487,487,486,487,487,487,486,422,422,486,486,423,487,486,487,423,484,[3777,228],[3777,232],3777,3777,[3777,357],[3777,358],3777,3777,3777,[3777,227],[3777,228],485,486,486,486,487,486,422,487,422,422,486,486,487,487,423,423,422,422,420,[3777,552],3777,3777,[3777,356],421,422,[422,1193],[487,1194],[3777,488],3777,3777,3777,3777,3777,[3777,483],487,486,487,423,486,487,423,486,422,486,423,422,486,486,486,423,487,423,422,486,487,423,423,[487,4616],[423,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4865,4866,[486,4738],487,422,486,423,422,423,[3777,488],[3777,357],421,486,487,486,422,486,422,423,423,487,486,486,486,422,486,[487,1129],[423,1130],423,423,486,422,486,423,487,487,423,487,422,486,422,422,422,484,[3777,228],[3777,294],3777,3777,3777,3777,[3777,293],485,486,486,487,487,487,487,423,486,422,423,487,487,422,487,486,486,422,422,486,484,[3777,295],3777,3777,3777,[3777,547],[3777,549],[3777,550],[3777,551],[3777,552],3777,[3777,227],[3777,228],[3777,294],3777,[3777,547],421,423,486,423,487,487,423,486,423,422,422,486,487,423,486,487,422,423,422,422,423,422,486,423,[422,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[486,4674],486,422,486,487,422,[486,1129],[484,1130],[3777,295],[3777,356],[3777,548],421,486,487,486,487,486,487,422,422,423,422,486,422,[487,1193],[487,1194],486,486,486,420,[3777,548],421,422,420,[3777,550],421,422,486,487,486,422,422,423,484,[3777,229],[3777,230],[3777,228],[3777,228],485,486,487,486,422,423,422,423,423,486,422,423,486,486,486,423,423,423,486,487,423,422,484,[3777,229],[3777,230],[3777,294],3777,3777,3777,3777,3777,3777,[3777,483],422,484,[3777,295],3777,[3777,291],422,422,422,423,422,423,423,486,487,423,486,487,423,422,420,[3777,548],421,422,486,487,422,423,422,[486,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[487,4738],423,422,423,423,486,[487,1193],[486,1194],[3777,488],3777,3777,[3777,547],421,423,486,422,486,423,487,422,422,487,423,422,420,[3777,550],421,487,487,[3777,488],3777,[3777,357],421,[3777,488],3777,[3777,291],486,423,487,486,487,422,487,423,487,422,422,423,486,487,423,423,487,423,422,422,486,420,[3777,548],421,487,487,487,422,486,486,423,423,487,487,423,423,487,484,[3777,229],[3777,230,1129],[3777,232,1130],3777,3777,[3777,292],485,423,422,[3777,296],3777,[3777,355],[422,1129],[486,1130],423,487,486,420,[3777,548],421,487,486,[422,1129],[486,1130],486,420,[3777,359],3777,[3777,291],422,423,486,487,422,[486,4808],[486,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[422,4674],423,422,422,486,423,420,[3777,548],[3777,552],3777,3777,3777,[3777,483],486,487,487,422,486,486,486,422,422,486,486,[3777,488],3777,[3777,356],421,422,484,[3777,295],3777,[3777,547],[3777,552],3777,[3777,419],487,423,422,423,486,487,487,422,487,486,422,422,422,420,421,422,423,486,422,423,420,[3777,358],3777,[3777,483],486,423,422,423,422,423,486,420,[3777,550],[3777,551],421,422,423,486,422,[422,1193],[484,1194],[3777,295],3777,[3777,291],422,422,422,[3777,424],3777,[3777,419],[486,1193],[422,1194],422,487,423,[3777,296],3777,[3777,547],421,486,[422,1193],[423,1194],420,[3777,358],3777,3777,[3777,419],423,423,486,486,[487,4808],[486,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4801,[423,4802],[423,4803],423,486,487,487,[3777,488],3777,3777,3777,[3777,227],[3777,295],[3777,547],[3777,548],421,423,423,422,420,[3777,549],421,487,422,420,[3777,358],3777,3777,[3777,483],487,486,[3777,488],3777,3777,3777,3777,[3777,356],421,486,423,423,423,422,487,423,486,486,487,423,420,[3777,359],[3777,356],[3777,548],421,486,[487,1133],[423,1134],484,[3777,232],3777,[3777,357],421,422,422,487,422,487,420,[3777,358],3777,3777,[3777,291],487,487,486,423,487,422,[3777,296],3777,[3777,419],420,[3777,548],[3777,549],[3777,358],3777,[3777,547],421,486,486,487,487,[3777,424],3777,3777,[3777,357],421,423,487,[3777,296],3777,3777,[3777,227],[485,1129],[423,1130],422,486,422,[423,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4865,4866,[423,4867],[423,4803],486,486,420,[3777,358],3777,3777,[3777,292],485,[3777,488],3777,3777,[3777,356],421,[423,1129],[422,1130],[3777,296],3777,[3777,291],486,420,[3777,552],3777,[3777,227],[3777,228],485,422,423,484,[3777,228],[3777,294],3777,3777,3777,[3777,291],486,487,422,487,487,422,423,486,487,487,487,[3777,488],3777,3777,3777,[3777,356],421,[422,1197],[422,1198],487,484,[3777,294],3777,[3777,291],486,487,423,422,422,[3777,296],3777,3777,3777,[3777,419],487,486,486,422,486,422,[3777,424],3777,[3777,356],[3777,552],3777,3777,3777,3777,3777,[3777,356],[3777,550],421,423,422,484,[3777,231],[3777,232],3777,[3777,483],487,422,[3777,360],3777,[3777,292],485,[487,1193],[487,1194],423,422,487,[487,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,[423,4674],422,422,484,[3777,294],[3777,292],[3777,228,1131],[485,1132],422,484,[3777,294],3777,3777,[3777,357],[421,1193],[422,1194],[3777,424],3777,[3777,355],486,[3777,296],3777,[3777,292],485,423,486,487,422,422,486,484,[3777,295],3777,3777,[3777,419],422,486,422,486,486,422,423,423,422,423,422,484,[3777,228],[3777,232],3777,3777,[3777,483],422,422,486,420,[3777,552],3777,[3777,355],423,422,422,423,487,[3777,360],3777,3777,[3777,292],485,486,422,486,422,486,422,484,[3777,228],[3777,294],3777,3777,3777,[3777,293],[3777,232],3777,3777,3777,[3777,357],421,422,423,422,[3777,296],3777,[3777,547],[3777,548],421,[3777,424],3777,[3777,291],486,420,[3777,548],421,487,487,[422,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[422,4674],423,422,486,484,485,[486,1195],[422,1196],422,423,484,[3777,228],[3777,295],3777,[3777,547],[3777,548],[3777,359],3777,[3777,419],422,[3777,424],3777,[3777,291],486,423,422,487,486,423,486,487,[3777,296],3777,[3777,227],485,423,487,486,486,423,487,423,486,423,486,486,486,422,484,[3777,294],3777,[3777,547],[3777,549],[3777,550],[3777,551],[3777,359],3777,3777,[3777,419],487,487,423,486,422,[3777,424],3777,3777,[3777,483],487,487,486,487,422,422,487,487,486,484,[3777,229],[3777,230],[3777,231],485,484,[3777,228],[3777,228],[3777,295],3777,[3777,483],423,422,423,[3777,424],3777,3777,3777,[3777,356],[3777,552],3777,[3777,355],486,[3777,488],3777,[3777,291],423,486,[422,4616],[486,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[486,4738],[486,7371],423,422,423,422,422,487,423,486,[423,1137],[486,1138],[3777,488],3777,3777,3777,3777,[3777,292],485,420,[3777,359],3777,[3777,355],487,423,422,423,423,423,422,486,[3777,424],3777,[3777,291],487,422,423,487,486,487,422,486,486,487,422,423,422,423,487,484,[3777,295],3777,3777,3777,3777,3777,3777,[3777,292],485,423,486,486,487,487,[3777,488],3777,3777,[3777,547],421,[423,1129],[422,1130],486,486,487,423,487,486,487,423,486,487,487,487,487,487,484,[3777,228],485,422,487,487,484,[3777,228],[3777,294],3777,3777,3777,3777,[3777,419],420,[3777,359],3777,[3777,355],487,487,423,[487,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[486,4547],[422,4611],[486,7435],422,422,423,486,423,422,486,487,[487,1201],[422,1202],484,[3777,295],3777,3777,[3777,227],485,420,[3777,358],3777,3777,[3777,419],422,487,487,423,486,422,422,420,[3777,552],3777,[3777,355],486,486,487,422,487,423,423,423,486,487,422,420,421,423,422,422,484,[3777,232],3777,3777,3777,[3777,293],[3777,228],485,487,422,422,423,423,422,484,[3777,294],3777,3777,[3777,483],[423,1193],[486,1194],422,422,420,[3777,548],[3777,549],[3777,550],[3777,551],421,487,487,423,422,486,486,423,487,422,486,422,486,486,422,484,[3777,228],[3777,295],3777,[3777,227],485,[3777,488],3777,3777,[3777,419],486,422,[423,4808],[423,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[486,4674],422,[422,7499],423,487,486,486,422,486,422,422,422,420,[3777,548],[3777,552],3777,3777,[3777,547],[3777,548],[3777,552],3777,3777,[3777,293],485,487,486,423,487,422,423,420,[3777,358],3777,3777,[3777,419],486,487,487,423,423,486,423,487,422,420,[3777,550],[3777,358],[3777,483],423,486,422,487,[3777,296],3777,[3777,227],[3777,228],[485,1129],[487,1130],423,487,487,487,487,487,487,[487,1129],[484,1130],[3777,295],3777,[3777,357],421,423,420,[3777,549],[3777,359],3777,3777,3777,3777,[3777,483],423,486,423,487,423,422,420,[3777,550],421,420,[3777,548],421,487,486,486,422,[3777,488],3777,[3777,356],[3777,551],[3777,552],3777,[3777,292],485,[487,7372],422,[423,4681],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4801,[486,4802],[422,4803],[487,7563],487,423,487,486,[422,1131],[486,1132],423,423,423,[3777,488],3777,3777,3777,3777,3777,3777,3777,3777,[3777,227],485,422,487,487,487,[423,1129],[422,1130],422,[3777,488],3777,3777,[3777,292],485,486,486,486,486,422,487,422,487,422,[3777,488],3777,[3777,292],485,422,487,423,423,[3777,360],3777,[3777,547],421,[423,1193],[422,7370,1194],422,423,486,423,486,487,422,[486,7369,1193],[423,1194],[3777,488],3777,3777,[3777,483],420,[3777,552],3777,3777,3777,[3777,292],[3777,229],[3777,231],485,422,486,422,487,486,423,[3777,296],3777,[3777,547],[3777,358],3777,[3777,291],486,422,422,423,[3777,488],3777,3777,3777,3777,3777,[3777,483],487,[486,7436],487,[486,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4865,4866,[422,4867],[423,4868],[486,4869],[422,4870],[486,4871],[486,4803],[422,1195],[422,1196],423,420,[3777,549],[3777,359],3777,[3777,227],[3777,294],3777,3777,3777,3777,[3777,292],485,423,423,487,423,422,[423,1193],[422,1194],420,[3777,358],3777,[3777,227],485,486,422,486,423,487,487,486,423,422,420,[3777,552],3777,[3777,291],422,422,422,422,486,[3777,424],3777,[3777,292],485,422,[423,7434],487,422,486,422,422,422,422,[487,7433],487,484,[3777,295],3777,[3777,547],[3777,358],3777,3777,[3777,292],[3777,228],485,422,487,422,486,487,423,486,422,486,[3777,360],3777,3777,3777,3777,[3777,419],422,423,486,487,484,[3777,228],[3777,232],3777,[3777,292],[3777,228],485,486,[423,7500],422,[422,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,4932,4933,4934,4935,[423,4802],[423,4803],423,420,[3777,358],3777,3777,[3777,292],485,484,[3777,295],3777,[3777,227],[3777,228],485,422,486,486,486,423,423,422,420,[3777,359],3777,3777,[3777,483],487,422,486,420,[3777,548],[3777,549],421,423,487,487,484,[3777,294],3777,[3777,355],420,[3777,550],421,487,423,484,[3777,295],[3777,547],[3777,548],421,[487,7498],423,423,487,423,422,422,423,[487,7497],423,486,484,[3777,232],3777,3777,3777,3777,[3777,483],422,[422,1131],[486,1132],423,487,422,487,423,423,486,422,[3777,424],3777,3777,[3777,227],[3777,228],485,487,423,486,423,423,487,[3777,296],3777,[3777,291],486,422,487,[486,7564],[422,4808],[487,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4996,4997,4998,4999,4866,[423,4867],[486,4803],[3777,488],3777,[3777,227],[3777,228],485,423,422,[3777,296],3777,[3777,291],[487,1129],[423,1130],487,487,486,486,423,422,420,[3777,552],3777,3777,[3777,293],485,487,486,486,[3777,488],3777,3777,[3777,356],421,486,487,423,[3777,296],3777,[3777,419],[3777,488],3777,[3777,291],487,487,422,[3777,488],3777,3777,[3777,483],[423,4808,7562],[422,4870],[487,4871],[486,4803],486,487,423,422,[423,7561],487,422,420,[3777,358],3777,3777,[3777,292],[3777,232],[3777,356],421,[423,1195],[422,1196],422,423,422,422,422,486,486,422,[3777,488],3777,3777,[3777,483],486,422,422,423,423,422,487,422,[3777,360],3777,[3777,355],486,[423,4808],[422,4870],[486,4871],[487,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,[487,4802],[3777,359,4803],3777,[3777,483],486,487,486,423,[3777,360],3777,[3777,355],[487,1193],[422,1194],422,422,486,422,422,423,[3777,296],3777,[3777,227],[3777,228,1139],[485,1140],423,422,486,487,484,[3777,294],3777,3777,[3777,547],421,487,422,[3777,360],3777,[3777,547],[3777,359],3777,[3777,419],487,422,422,484,[3777,295],3777,[3777,547,4808],[423,4809],4934,4935,[422,4867],[486,4868],[487,4869],[486,4870],[486,4871],[423,4803],487,420,[3777,552],3777,[3777,292],[3777,228],485,[3777,488],3777,[3777,547],[3777,548],421,423,487,422,422,486,422,423,[422,1129],[484,1130],[3777,295],3777,[3777,291],423,487,486,486,487,487,423,423,[3777,424],3777,[3777,419],[422,4808],[486,4872],4934,4935,4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4866,[3777,4867],[3777,292,4803],485,[422,2966],422,422,422,[3777,424],3777,[3777,419],487,423,486,422,487,422,422,422,[3777,360],3777,[3777,291],[423,1203],[486,1204],486,487,423,422,486,484,[3777,228],[3777,294],3777,[3777,291],423,487,[3777,424],3777,3777,3777,[3777,293],485,487,486,487,[487,4808],[3777,552,4868],[3777,4869],[3777,4872],4873,4998,4999,4931,4932,4933,4934,4935,[422,4802],[420,4803],[3777,359],3777,3777,[3777,483],486,[423,1129],[484,1130],[3777,294],3777,3777,[3777,356],421,423,486,487,422,422,487,[486,1193],[487,1194],[3777,488],3777,[3777,355],487,487,486,486,423,423,423,422,[3777,488],3777,[3777,547],[3777,548,4681],4936,4998,4999,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,[487,4674],423,[486,3030],[486,3031],[423,3032],487,[3777,488],3777,[3777,356],421,487,422,423,486,486,423,487,[3777,424],3777,[3777,419],423,486,487,423,423,487,486,487,487,[3777,296],3777,[3777,419],487,420,[3777,552],3777,[3777,293],[3777,228],485,486,487,487,[423,4808],[422,4809],4932,4933,4936,4937,0,0,4995,4996,4997,4998,4999,4866,[3777,552,4867],[3777,4803],3777,[3777,292],485,487,[423,1193],[422,1194],[3777,488],3777,3777,3777,[3777,547],[3777,548],[3777,549],421,486,423,486,487,420,[3777,552],3777,[3777,419],423,423,487,423,422,423,423,486,484,[3777,294],3777,[3777,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[423,4674],422,[487,3094],[486,3095],[422,3096],420,[3777,358],3777,3777,[3777,483],423,487,486,487,486,487,487,[3777,488],3777,[3777,356],421,487,487,423,423,423,423,422,486,[3777,424],3777,[3777,547],[3777,548],[3777,359],3777,3777,[3777,483],487,487,423,422,[486,4808],[423,4872],4873,4996,4997,5000,0,0,0,0,0,0,0,0,4930,4931,[3777,293,4674],[3777,228],485,487,487,423,422,484,[3777,228],[3777,294],3777,3777,3777,3777,[3777,357],421,487,422,420,[3777,359],3777,3777,[3777,483],423,486,486,487,423,423,486,487,422,484,[3777,229],[3777,230,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[423,4738],[423,3157],[487,3158],[422,3159],[487,3160],[3777,488],3777,3777,[3777,292],485,423,422,422,423,423,487,487,[3777,296],3777,3777,[3777,483],423,423,423,423,487,486,487,422,484,[3777,232],3777,3777,3777,3777,[3777,227],485,422,423,423,422,[486,4681],4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,4673,[422,4674],[487,1137],[422,1138],422,422,487,423,423,486,484,[3777,229],[3777,230,1139],[3777,231,1140],[3777,294],[3777,293],485,486,420,[3777,358],3777,3777,[3777,227],485,422,422,486,486,423,423,486,486,423,422,423,[487,4616],[487,4552,7369],4553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[486,4674],[423,3221],[486,3222],[487,3223],[486,3224],484,[3777,294],3777,[3777,483],486,422,422,486,422,487,422,487,[3777,424],3777,3777,[3777,547],[3777,548],421,486,423,487,422,487,423,486,484,[3777,294],3777,3777,[3777,292],[485,1129],[486,1130],487,487,423,486,[486,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[422,4738],[487,1201],[422,1202],[486,7372],486,423,422,487,423,487,487,[487,1203],[422,1204],484,485,422,422,[3777,296],3777,3777,3777,[3777,483],486,423,486,422,422,422,487,486,487,[422,1131],[423,1132],423,487,[486,4616,7433],[422,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[487,4738],[423,3285],[422,3286],[422,3287],[422,3288],486,484,[3777,228],485,487,487,487,486,486,486,486,423,484,[3777,228],[3777,295],3777,3777,[3777,291],423,422,[422,1137],[486,1138],422,487,423,422,484,[3777,295],3777,[3777,483],[486,1193],[422,1194],423,423,422,487,[487,4616],[422,4617],4618,0,0,0,0,0,0,0,0,0,0,0,0,4673,[487,4674],487,487,[423,7436],422,487,487,486,423,487,487,423,[486,7371],422,422,487,487,[3777,424],3777,[3777,292],[3777,228,1139],[485,1140],422,487,487,422,420,[3777,548],[3777,549],421,486,[422,1195],[422,1196],486,423,[486,7497],[423,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4546,[422,4547],[422,4611],[487,3349],[487,3350],[423,3351],[423,3352],422,487,487,423,487,486,486,487,486,486,487,423,[487,1129],[423,1130],[3777,296],[3777,4808],[3777,4870],[3777,419,4871],[486,4803],423,[487,1201],[486,1202],486,486,486,[423,7370],487,[3777,296],3777,[3777,291],486,487,487,422,486,[423,7369],422,[487,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,4737,[423,4738],486,486,[487,7500],486,423,486,423,422,486,486,422,[486,7435],487,422,420,[3777,551],[3777,552],3777,[3777,291],[486,1203],[487,1204],[487,7369],422,423,422,[3777,488],3777,3777,[3777,356],421,423,487,423,487,[423,7561],[423,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4609,[422,4610],[422,4611],[423,7370],423,[487,3414],[422,3415],[423,3416],423,486,486,486,422,423,422,487,[422,4808],[422,4868],[486,4869],[486,4803],[423,1193],[423,1194],[3777,360,4808],[3777,4809],4934,4935,[486,4867],[422,4803],422,423,422,486,422,[423,7434],423,[3777,360],3777,[3777,355],422,422,486,423,423,[487,7433],422,[487,4681],4682,0,0,0,0,0,0,0,0,0,0,0,0,4801,[486,4802],[487,4803],486,[487,7564],[487,4808],[422,4870],[487,4871],[486,4803],487,[422,1137],[487,1138],423,[487,7499],486,[422,4808],[3777,488,4868],[3777,4869],[3777,4803],3777,[3777,355],487,422,[487,7433],422,422,420,[3777,552],3777,3777,3777,[3777,547],[3777,548],[3777,549],421,487,[486,4808],[487,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4673,[422,4674],486,[487,7434],[486,3477],[486,3478],[487,3479],486,487,423,487,423,[486,7369],487,422,[423,4808],[423,4809],4932,4933,[486,4867],[487,4868],[423,4869],[422,4872],4873,4998,4999,4931,[423,4802],[423,4803],487,423,487,423,[423,7498],486,[3777,424],3777,[3777,419],423,422,423,487,487,[486,7497],486,[422,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,4865,4866,[487,4867],[486,4868],[423,4869],[487,4872],4934,4935,[487,4802],[486,4803],[422,1201],[423,1202],422,[487,7563],[486,4808],[486,4809],4932,4933,[3777,4802],[3777,4803],[3777,419],487,422,[487,7497],487,420,[3777,358],3777,3777,3777,3777,3777,3777,[3777,4808],[3777,356,4870],[423,4871],[423,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4737,[486,4738],486,[487,7498],486,[486,3542],[487,3543],423,487,486,423,486,[486,7433],422,[422,4808],[487,4872],4873,4996,4997,4931,4932,4933,4936,4937,0,0,4995,4866,[487,4867],[422,4868],[422,4869],[423,4803],422,[486,7562],[422,4808],[3777,488,4868],[3777,4869],[3777,483,4870],[422,4871],[487,4803],423,486,422,[422,7561],[423,4808],[487,4809],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,4932,4933,4936,4998,4999,4866,[423,4867],[422,4868],[423,4869],[486,4870],[486,4871],[422,4872],4873,4996,4997,4866,[3777,4802],[3777,483,4803],423,422,[487,7561],423,[3777,488,4808],[3777,4868],[3777,4869],[3777,4868],[3777,4869],[3777,4870],[3777,4871],[3777,4868],[3777,4872],4934,4935,4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4801,[486,4802],[423,4803],[487,7562],486,[487,4808],[423,4868],[423,4869],[487,4870],[486,4871],[423,4803],486,[487,7497],423,[422,4681],4936,4937,0,0,4995,4996,4997,5000,0,0,0,0,4930,4931,4932,4933,[423,4867],[422,4870],[487,4871],[422,4872],4932,4933,4934,4935,[422,4867],[423,4868],[486,4869],[422,4870],[486,4871],[487,4872],4873,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4996,4997,5000,0,0,4930,4931,4932,4933,4934,4935,4936,4937,0,0,4930,4866,[423,4867],[486,4868],[423,4869],[423,4870],[423,4871],[423,4872],4932,4933,4932,4933,4934,4935,4740,4936,4998,4999,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4865,4866,[486,4867],[486,4868],[423,4869],[487,4872],4932,4933,4934,4935,[486,4802],[423,4803],[486,7561],486,[423,4745],4746,0,0,0,0,0,0,0,0,0,0,0,0,4995,4996,4997,4931,4934,4935,4936,4996,4997,4998,4999,4931,4932,4933,4934,4935,4936,4937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4996,4997,4998,4999,5000,0,0,0,0,4930,4931,4932,4933,4934,4935,4936,4996,4997,4996,4997,4998,4999,4996,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4930,4931,4932,4933,4936,4996,4997,4998,4999,4866,[487,4867],[486,4868],[487,4869],[487,4872],4810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4998,4999,5000,0,0,0,0,4995,4996,4997,4998,4999,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4996,4997,4998,4999,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4996,4997,5000,0,0,0,0,4930,4931,4932,4933,4936,4874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4996,4997,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5189,5190,5191,5192,5191,5192,5191,5192,5191,5192,5193,5191,5192,5193,5194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5253,5254,5255,5256,5255,5256,5255,5256,5255,5256,5256,5255,5256,5257,5258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5317,5318,5319,5320,5319,5320,5319,5320,5319,5320,5320,5383,5384,5321,5322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5381,5382,5383,5384,5383,5384,5383,5384,5383,5384,5383,5320,5319,5385,5386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5381,5382,5319,5320,5319,5320,5319,5320,5319,5320,5383,5384,5319,5321,5322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5381,5382,5383,5384,5383,[5319,5702],[5319,5703],[5319,5704],5383,5384,5384,5319,5320,5385,5386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5445,5446,5447,5448,5447,[5319,5766],[5319,5767],[5319,5768],5447,5447,5448,5447,5448,5449,5450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5509,5510,5511,5512,5511,5830,5831,5832,5511,5511,5512,5511,5512,5513,5514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4934,4935,4802,4803,0,0,0,0,4808,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3629,4996],[3694,4997],[3628,4998],[3631,4999],4866,4867,4868,4869,4870,4871,4872,4932,4933,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3630,4937],3628,3628,3631,3692,[3695,4930],4931,4932,4933,4934,4935,4936,[3692,4996],[3630,4997],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5189,5190,5191,5192,5191,5192,5191,5192,5191,5192,5193,5194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3693,4746],3628,3692,3631,3695,3693,3694,[3629,4995],[3694,4996],[3631,4997],[3695,4998],[3692,4999],[3628,5000],3693,3692,[3693,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5253,5254,5255,5256,5255,5256,5255,5256,5255,5256,5257,5258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3695,4618],3693,3629,3695,3695,3631,3692,3695,3695,3631,3628,3692,3629,3628,3693,[3693,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5317,5318,5319,5320,5319,5320,5319,5320,5319,5320,5321,5322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3631,4682],3693,3692,3628,3629,3692,3630,3695,3629,3629,3692,3692,3631,3693,3631,[3693,4801],4802,4803,0,0,0,0,0,0,0,0,0,4808,4870,4871,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5381,5382,5383,5384,5383,5384,5383,5384,5383,5384,5385,5386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3630,4746],3629,3628,3630,3631,3692,3629,3692,3630,3630,3695,3695,3630,3693,3629,[3694,4865],4866,4867,4803,0,0,0,0,0,0,0,4808,4809,4934,4935,4932,4933,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5381,5382,5319,5320,5319,5320,5319,5320,5319,5320,5385,5386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3628,4553],3628,3694,3693,3693,3694,3693,3694,3631,3629,3695,3630,3629,3629,3695,[3695,4930],4931,4674,0,0,0,0,4808,4868,4869,4872,4873,[3694,4998],[3628,4999],[3693,4996],[3693,4997],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5381,5382,[5383,20361],5384,5383,[5319,5702],[5319,5703],[5319,5704],5383,5384,5385,5386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4803,0,0,0,4808,4868,4869,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3694,4618],3694,3631,3628,3692,3629,3692,3692,3692,3694,3692,3629,3693,3628,3629,[3631,4737],4738,0,0,0,4808,4809,4932,4933,4936,[3629,4937],3695,3629,3695,3695,[3630,4930],4931,4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,408,31,410,411,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5445,5446,5447,5448,5447,[5319,5766],[5319,5767],[5319,5768],5447,5448,5449,5450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4802,4803,0,4808,4809,4932,4933,4934,4935,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3694,4682],3630,3692,3695,3628,3693,3694,3628,3692,3628,3693,3693,3694,3695,[3692,4546],4547,4611,0,0,4808,4872,4873,[3628,4996],[3629,4997],[3695,5000],3692,3695,3695,3631,3694,3630,[3628,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,31,412,280,472,95,474,475,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5509,5510,5511,5512,5511,5830,5831,5832,5511,5512,5513,5514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3637,4996],[3699,4997],4866,4867,4868,4872,4873,[3699,4996],[3637,4997],[3637,4998],[3699,4999],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3630,4746],3692,3629,3630,3694,3631,3694,3692,3630,3692,3629,3695,3692,[3630,4609],4610,4611,0,0,0,4681,4936,[3630,4937],3694,3630,3694,3695,3629,3695,3630,3629,3694,[3693,4865],4866,4867,4868,4869,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,472,95,476,[423,536],[423,536],[422,159],[423,538],[486,539],471,342,408,31,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,4936,[3636,4937],[3698,1521],3388,[3634,3691,4930],4931,4740,4936,[3699,4937],[3634,1519],3700,3324,[3388,1521],[3700,4930],4931,4738,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3693,4810],3693,3628,3628,3695,3628,3692,3695,3695,3694,3693,3628,3628,[3692,4737],4738,0,0,0,0,4745,[3694,4746],3693,3628,3695,3628,3628,3693,3694,3692,3628,3693,3630,[3693,4930],4931,4932,4933,4934,4935,4802,4803,0,0,0,0,0,0,0,4808,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[422,536],[423,159],[422,540],[423,1391],487,[423,1392],486,[422,1389],[423,535],406,472,95,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3637,4810],3324,3635,[3636,3500],3631,[3695,4995],[3695,4996],[3637,5000],3699,3699,3635,3698,3699,3635,[3636,4801],4802,4803,0,0,0,0,0,0,0,0,4808,4868,4869,4872,4873,[3628,4874],3629,3695,3693,3631,3630,3629,3628,3631,3692,3628,3692,3631,[3630,4801],4802,4803,0,0,4808,4809,[3631,4810],3695,3695,3630,3629,3631,3693,3628,3694,3631,3631,3693,3692,[3693,4995],[3629,4996],[3630,4997],[3695,4998],[3693,4999],4866,4867,4803,0,0,0,0,0,4808,4809,4934,4935,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,476,[423,477],[486,1389],422,487,486,422,423,487,422,486,[487,470],[422,536],[423,159],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3630,4874],[3635,3437],[3699,3439],3629,3693,3693,3628,[3635,3437],[3699,3438],[3323,3439],[3636,3440],3636,[3634,3500],[3701,3436],[3437,4865],4866,4867,4868,4869,4803,0,0,0,0,4808,4809,4932,4933,4936,[3629,4937],3629,3693,3695,3693,3631,3628,3628,3629,3695,3630,3692,3694,3692,[3628,4865],4866,4867,4868,4869,4872,4873,[3629,4874],3629,3694,3695,[3628,4483],[3628,4484],[3693,4484],[3628,4487],[3693,4488],3631,3693,3693,3629,3629,3628,3630,3695,3695,[3631,4930],4931,4674,0,0,0,0,4808,4872,4873,[3628,4998],[3631,4999],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],[486,1385],423,422,487,[423,1519],420,[3777,550],[3777,549],421,422,487,[423,1392],[486,1393],[423,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3694,4937],3629,3629,3630,3695,3629,3692,3695,3692,[3699,3757],3628,3631,[3637,3436],3694,3692,3628,[3692,4930],4931,4932,4933,4802,4803,0,0,4808,4872,4873,[3693,4996],[3692,4997],[3694,5000],3630,3692,3694,3628,3631,3628,3628,[3695,4483],[3629,4484],[3693,4487],[3631,4484],[3630,4487],[3693,4488],3695,3631,[3631,4930],4931,4932,4933,4936,[3630,4937],3694,3694,3628,[3630,4546],4547,4548,4548,4551,4552,[3631,4553],3694,3628,3631,3630,3694,3630,3695,3630,3695,[3628,4737],4738,0,0,0,0,4745,4936,[3694,4937],3695,3629,[3631,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[422,350],423,486,420,[3777,550],[3777,551],[3777,358],3777,3777,[3777,356],421,422,487,487,[423,1391],[423,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3699,4746],[3634,3564],3630,3631,3631,3631,3631,3629,[3388,3759],[3636,3760],3698,[3701,3565],[3698,3756],3630,3695,3631,3692,3694,[3630,4995],[3636,3696,4996],[3698,4997],4866,4867,4803,0,4681,4936,[3693,4937],3695,3692,3628,3695,3631,3631,3631,3629,3694,[3695,4546],4547,4548,4551,4548,4551,4552,[3694,4553],3631,3628,[3692,4995],[3631,4996],[3695,4997],[3631,5000],3695,3629,3629,[3629,4609],4610,4611,0,0,0,4616,4617,[3692,4618],3630,3692,3630,3693,3628,3630,3695,3630,[3628,4801],4802,4803,0,0,4808,4809,[3695,4810],3630,3631,3629,3631,[3629,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,412,413,[487,414],422,420,[3777,358],3777,3777,3777,597,3777,3777,[3777,483],486,486,422,[423,1393],[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13704,13705,13706,13707,13706,13707,13706,13707,13706,13707,13708,13709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3700,4682],3387,[3323,3755],3694,3694,3694,3630,[3387,3504],3701,3698,[3698,1519],3698,3700,[3635,3691],3631,3631,3694,3630,3631,[3636,3504],3699,[3701,4930],4931,4674,0,4745,[3628,4746],3693,3631,3693,3693,3692,3630,3693,3695,3628,[3629,4609],4610,4611,0,0,0,0,4616,4617,[3630,4618],3631,3692,3631,3628,3631,3628,3695,3694,[3631,4737],4738,0,0,0,0,0,4681,[3629,4682],3695,3692,3694,3693,3693,3628,3693,3631,[3693,4865],4866,4867,4870,4871,4872,4873,[3692,4874],3631,3628,3629,[3694,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,472,473,476,[487,477],422,487,[3777,488],3777,3777,3777,3777,3777,3777,[3777,292],485,422,486,[486,1515],[423,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13768,13769,13770,13771,13770,13771,13770,13771,13770,13771,13772,13773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3637,4746],[3699,1521],3634,[3323,3564],[3387,3757],3694,3628,[3635,3568],3634,3635,3699,3388,[3634,1521],[3699,3755],[3637,3758],3630,3695,3693,3628,[3700,3568],3387,[3701,1521],[3636,4737],4738,0,4616,4552,[3692,4553],3630,3694,3631,3631,3695,3630,3630,3695,[3629,4673],4674,0,0,0,0,0,0,4681,[3695,4682],3694,3692,3693,3693,3692,3693,3693,[3693,4546],4547,4611,0,0,0,0,0,4745,[3629,4746],3693,3692,3694,3628,3631,3628,3692,3630,3694,[3628,4930],4931,4934,4935,4936,[3629,4937],3694,3692,[3628,4483],[3692,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[486,536],[487,537],[422,540],423,422,486,[3777,296],3777,3777,3777,3777,[3777,227],[3777,228],485,422,423,[422,23],[487,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13704,13705,13706,13707,13706,13838,13897,13834,13835,13834,13835,13834,13835,13834,13835,13836,13774,13706,13707,13706,13707,13706,13707,13708,13709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14305,14306,14307,14308,14307,14308,14307,14308,14307,14308,14307,14308,14307,14307,14308,14307,12503,12503,12504,12504,12503,12504,12503,12504,12503,12504,12503,12504,12503,12504,12503,12504,12505,12506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3698,4553],3701,3387,3634,[3698,3499],3631,[3699,3632],3637,3635,3698,3699,3699,3701,3701,[3634,3499],3693,3628,3694,[3387,3632],3637,[3637,4546],4547,4611,0,0,4616,4617,[3630,4553],3630,3692,3693,3628,3630,3695,3628,[3693,4737],4738,0,0,0,0,0,0,4745,[3695,4746],3628,3629,3630,3695,3692,[3693,4483],[3628,4484],4610,4611,0,0,0,0,0,4808,4809,[3692,4810],3695,3630,3630,3630,3695,3694,[3694,4483],[3628,4488],3629,3694,[3630,4995],[3694,4998],[3628,4999],[3629,5000],3695,3692,[3695,4546],4547,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,476,[486,477],[486,1385],487,[487,1392],486,486,[423,1521],[3777,424],3777,661,3777,3777,[3777,483],[486,1519],422,423,[486,86],87,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13768,13769,13770,13771,13770,13771,13966,13898,13899,13898,13899,13898,13899,13898,13899,14158,13770,13770,[13771,2821],[13770,2822],[13771,2823],13770,13771,13772,13773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14369,14370,14371,14372,14371,14372,14371,14372,14371,14372,14371,14372,14371,14371,14372,14371,14372,12567,12568,12568,12567,12568,12567,12568,12567,12568,12567,12568,12567,12568,12567,12568,12569,12570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3698,4487],[3701,4488],[3636,1519],[3699,3563],3695,[3634,3696],3700,3387,[3634,1521],3637,3387,[3635,1519],3635,[3699,3563],3694,3631,[3698,3759],[3637,3567],[3698,4609],4610,4611,0,0,0,0,4616,4617,[3692,4618],3629,3694,3630,3629,3695,3695,[3695,4801],4802,4803,0,0,0,0,4808,4809,[3629,4810],3695,3629,3629,3694,[3693,4546],4547,4548,4611,0,0,0,4808,4868,4869,4872,4873,[3694,4874],3631,3695,3628,3630,3628,[3693,4546],4547,4552,[3631,4553],3693,3629,3693,3694,3629,3694,[3693,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[486,286],[423,1515],423,486,423,422,423,420,[3777,552],3777,3777,3777,[3777,292],485,486,487,[423,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13704,13705,13838,13833,13834,13835,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,[13835,2885],[13834,2886],[13835,2887],13834,13835,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14433,14434,14499,14500,14499,14500,14499,14500,14499,14500,14436,14435,14436,14500,14436,14500,14436,12632,12632,12632,12632,12632,12696,12696,12696,12696,12696,12696,12696,12696,12696,12696,12633,12634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4552,[3636,4553],[3637,3627],3630,3694,[3637,3502],[3634,3435],[3635,3440],3635,3635,3698,3698,[3699,3627],3631,[3637,3504],3700,3387,[3698,4673],4674,0,0,0,0,0,0,4681,[3628,4682],3695,3628,3695,3628,3693,3693,[3631,4865],4866,4867,4868,4869,4870,4871,4872,4873,[3694,4874],3631,3631,3693,[3630,4609],4610,4611,0,0,0,0,4808,4809,4932,4933,4936,[3692,4937],3693,3630,3628,3694,3695,[3631,4609],4610,4611,4616,4617,[3631,4618],3695,3629,3694,3694,3695,[3693,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[487,93],[422,1513],487,422,423,487,[3777,488],3777,3777,[3777,227],[3777,228],485,423,422,422,[423,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13768,13769,13770,13966,13898,13899,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14505,[14436,14506],14435,14436,14435,14436,14435,14436,14435,14436,14500,14499,14500,14436,14500,14436,12632,12696,12696,12696,12696,12696,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,[12696,12477],12478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3692,4618],3628,3631,3631,3631,3693,[3699,3436],[3699,3437],[3698,3438],[3634,3439],3692,3629,[3637,3568],3635,[3635,1519],[3698,4737],4738,0,0,0,0,0,0,4745,[3628,4746],3630,3631,3695,3694,3694,3693,3695,[3628,4930],4931,4932,4933,4934,4935,4936,[3695,4937],3695,3628,3630,3694,[3628,4673],4674,0,0,0,0,4808,4872,4873,[3695,4996],[3631,4997],[3629,5000],3629,3630,3631,3629,3628,3692,[3631,4737],4738,0,0,4681,[3628,4682],3629,3630,3693,3695,3694,[3694,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[422,27],[486,28],487,486,422,484,[3777,294],[3777,227],485,486,423,486,487,[486,1392],[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,3983,3984,[13835,3983,3985],3984,3983,3984,[13836,3985],13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14569,[14500,14570],14499,14500,14499,14500,14499,14500,14499,14500,14436,14435,14436,14500,14436,14500,14436,12632,12632,12632,12632,12632,12696,12696,12696,12696,12696,12696,12696,12696,12696,12696,[12696,12541],12542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3695,4682],3631,3693,3693,3694,3693,3631,3631,3694,3630,3629,3694,[3323,3632],3699,[3635,4546],4547,4611,0,0,0,4808,4870,4871,4809,[3692,4810],3695,3629,3629,3629,3692,3693,3695,3631,[3628,4995],[3629,4996],[3693,4997],[3693,4998],[3630,4999],[3628,5000],3695,3694,3629,3630,3631,[3631,4737],4738,0,0,0,0,4681,4936,[3628,4937],3693,3631,3629,3694,3694,3629,3693,3695,[3628,4546],4547,4611,0,0,4681,[3630,4682],3694,3631,3629,3694,3628,[3695,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,92,[422,93],422,487,486,484,485,422,487,423,422,[486,1392],[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,[13899,4047],[13898,4048],[13899,4047,4049],[13898,4048],[13898,4049,4047],[13899,4048],[13900,4049],13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14633,[14436,14634],14435,14436,14435,14436,14435,14436,14435,14436,14500,14499,14500,14436,14500,14436,12632,12696,12696,12696,12696,12696,12632,12632,12632,12632,12632,12632,12632,12632,12632,12632,[12696,12605],12606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3694,4746],3692,3693,3629,3692,3694,3631,3693,3695,3695,3695,3693,[3700,3696,4483],[3700,4484],4610,4611,0,0,0,4808,4809,4934,4935,4873,[3630,4874],3629,3695,3629,3630,3629,3695,3692,3629,3693,3692,3629,3629,3692,3693,3630,3695,3630,3693,[3693,4546],4547,4611,0,0,0,0,4745,[3628,4746],3694,3631,3692,3629,3628,3692,3630,[3629,4483],[3692,4484],4610,4611,0,0,0,4745,[3692,4746],3695,3630,3692,3630,3692,[3630,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[423,158],487,486,486,487,[423,23],[423,3524],[422,3525],[422,3526],[423,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13834,13835,13835,13899,13834,13898,13899,14030,13962,13964,13965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14497,14498,14499,14500,14499,14500,14499,14500,14499,14500,14436,14435,14436,14500,14436,14500,14436,12696,12696,12696,12696,12696,12696,12696,12696,12696,12696,12696,12696,12696,12696,12696,12697,12698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3693,4553],3630,3694,3693,3695,3694,3695,3629,3694,3630,[3692,4546],4547,4548,4611,0,0,0,4808,4872,4873,[3695,4998],[3694,4999],[3629,4937],3694,3631,[3692,4483],[3628,4484],[3631,4487],[3694,4484],[3692,4487],[3695,4487],[3628,4488],3630,3694,3631,3692,3629,3631,3694,[3693,4483],[3694,4484],[3629,4487],4610,4611,0,0,0,0,0,4616,4552,[3694,4553],3692,3694,3630,3693,3692,[3695,4546],4547,4548,4611,0,0,0,0,4616,4617,[3694,4487],[3695,4488],3631,3693,3628,3628,[3628,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[487,93],[423,1385],[422,1389],[486,86],87,3588,3589,3590,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13898,13899,13898,13899,13898,13899,13898,13899,13898,13899,13898,13834,13835,13835,13835,13835,13899,13834,13835,13834,13835,13836,13710,14028,14029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14561,14562,14563,14564,14563,14564,14563,14564,14563,14564,14563,14564,14563,14563,14564,14563,12759,12759,12759,12760,12759,12760,12759,12760,12759,12760,12759,12760,12759,12760,12759,12760,12761,12762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3695,4618],3693,3695,3630,3628,3629,3693,3695,[3631,4609],4610,4611,0,0,0,0,0,4681,4936,[3628,4937],3628,3629,3692,3695,[3692,4546],4547,4548,4551,4548,4551,4551,4552,[3630,4553],3695,3631,3694,3631,3695,[3629,4546],4547,4548,4551,4611,0,0,0,0,0,0,0,4616,4617,[3629,4618],3631,3694,3692,[3694,4609],4610,4611,0,0,0,0,0,0,0,4616,4551,4552,[3693,4553],3630,3630,3695,3630,[3693,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[486,24],[487,27],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13835,13834,13835,13834,13835,14030,13962,13963,13962,14094,13898,13899,13899,13899,13899,13899,13898,13899,13898,13899,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14625,14626,14627,14628,14627,14628,14627,14628,14627,14628,14627,14628,14627,14627,14628,14627,14628,12823,12823,12824,12823,12824,12823,12824,12823,12824,12823,12824,12823,12824,12823,12824,12825,12826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3693,4682],3695,3630,3695,3631,3628,3694,3630,[3628,4673],4674,0,0,0,0,0,0,4745,[3631,4746],3693,3630,3631,3692,3629,[3695,4673],4674,0,0,0,0,0,4616,4617,[3628,4618],3692,3692,3692,[3631,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,4681,[3695,4682],3695,3630,3628,[3694,4673],4674,0,0,0,0,0,0,0,0,0,0,4616,4617,[3629,4618],3693,3628,[3694,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,88,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13704,13705,13707,13706,13707,13706,13707,13706,13707,13706,13707,13708,13709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13898,13899,13898,13899,13898,13899,13900,13710,14025,13902,13961,13962,13963,13962,14094,13898,13899,13834,13835,13834,13835,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3630,4746],3630,3629,3693,3629,3695,3694,3630,[3629,4737],4738,0,0,0,0,0,4808,4809,[3692,4810],3695,3693,3631,3630,[3692,4546],4547,4611,0,0,0,0,0,0,4745,[3631,4746],3630,3695,3631,[3628,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3692,4746],3628,3695,3694,[3694,4737],4738,0,0,0,0,0,0,0,0,0,0,0,4681,[3630,4682],3629,[3630,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13768,13769,13771,13770,13771,[13770,19333],[13771,19334],[13770,19335],[13771,19336],13770,13771,13772,13773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13960,13961,13962,13963,[13898,13316],[13898,13317],[13898,13318],13963,13964,13965,0,14024,14025,14026,14027,13902,13897,13898,13899,13898,13899,13898,13899,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3694,4810],3693,3695,3692,3631,3694,3695,[3629,4546],4547,4611,0,0,0,0,4808,4872,4873,[3692,4874],3694,3628,3695,[3694,4609],4610,4611,0,0,0,0,0,0,4808,4809,[3628,4810],3692,3628,3695,[3631,4737],4738,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3630,4810],3692,3695,[3628,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,4745,[3631,4746],3695,[3631,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13704,13705,13838,13897,[13835,20361],13834,13835,[13834,19397],[13835,19398],[13834,19399],[13835,19400],13834,[13835,20361],13836,13774,13708,13709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14024,14025,14026,14027,13380,13381,13382,14027,14028,14029,0,0,0,0,0,13896,13897,13898,13899,13834,13835,13834,13835,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4873,[3631,4874],3628,3630,3695,3695,[3693,4483],[3628,4484],4610,4611,0,0,0,0,0,4681,4936,[3631,4937],3692,3694,3628,3695,[3695,4737],4738,0,0,4808,4868,4869,4870,4871,4872,4873,[3631,4874],3694,3631,3693,[3631,4801],4802,4803,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3693,4874],3629,3693,[3630,4673],4674,0,0,0,0,0,0,0,0,0,4808,4870,4871,4809,[3692,4810],3692,[3693,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13768,13769,13770,13966,13899,13898,13899,13898,13899,13898,13899,13898,13899,14158,13770,13772,13773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13898,13899,13898,[13898,13253],13898,13899,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3694,4937],3694,3631,3693,3692,[3631,4546],4547,4548,4611,0,0,0,0,0,0,4745,[3631,4746],3695,3630,3693,3693,3631,[3693,4801],4802,4868,4869,4872,4932,4933,4934,4935,4936,[3630,4937],3629,3695,3628,3693,[3695,4865],4866,4867,4868,4869,4803,0,0,0,0,0,0,4745,4936,[3631,4937],3631,3631,3629,[3631,4737],4738,0,0,0,0,0,0,0,0,4808,4809,4934,4935,4873,[3630,4874],3693,[3695,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13834,[13835,14091],[13834,14092],[13835,14092],[13834,14092],[13835,14092],[13834,14092],[13835,14092],[13834,14092],[13835,14093],13834,13835,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13960,13961,13962,13963,[13834,13316],[13899,13317],[13834,13318],13963,13964,13965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3692,4937],3695,3630,3692,3629,[3693,4609],4610,4611,0,0,0,0,0,0,0,0,4616,4552,[3629,4553],3692,3693,3630,3629,[3630,4865],4866,4932,4933,4936,[3630,4996],[3694,4997],[3694,4998],[3694,4999],[3629,5000],3692,3630,3693,3631,3695,3695,[3692,4930],4931,4932,4933,4802,4803,0,0,0,0,4808,4809,[3628,4810],3694,3628,3631,3693,[3695,4801],4802,4803,0,0,0,0,0,0,4808,4872,4873,[3628,4998],[3630,4999],[3630,4937],3630,3630,[3692,4865],4866,4867,4868,4869,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13898,13834,[13899,14155],14156,14156,14156,14156,14156,14156,14156,[13899,14157],13898,13899,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14024,14025,14026,14027,13380,13381,13382,14027,14028,14029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3692,4746],3630,3630,3631,3629,3630,[3692,4801],4802,4803,0,0,0,0,0,0,0,0,0,4616,4617,[3631,4487],[3693,4488],3629,3628,3692,[3693,4995],[3694,4996],[3695,4997],[3693,5000],3630,3629,3694,3692,3629,3629,3694,3693,3692,3630,3629,3694,[3695,4995],[3694,4996],[3695,4997],4866,4867,4868,4869,4870,4871,4872,4873,[3692,4874],3628,3631,3695,3693,[3694,4865],4866,4867,4803,0,0,0,0,0,4681,4936,[3630,4937],3628,3631,3693,3693,3694,3694,[3631,4930],4931,4932,4933,4934,4935,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13835,[13835,14155],14156,14156,14156,14156,14156,14156,14156,[13835,14157],13834,13835,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3694,4553],3631,3693,3694,3631,[3631,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,4616,4551,4552,[3631,4553],3693,3692,3629,3631,3628,3628,3631,[3628,4483],[3628,4484],[3630,4487],[3692,4488],3693,3630,[3693,4483],[3630,4484],[3693,4487],[3628,4488],3695,3629,3628,3693,[3628,4930],4931,4932,4933,4934,4935,4936,[3628,4937],3693,3693,3631,3628,3694,3693,[3629,4930],4931,4674,0,0,0,0,0,4745,[3694,4746],3692,3628,3695,3695,3695,3629,3630,3629,[3692,4995],[3629,4996],[3631,4997],[3628,4998],[3694,4999],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13898,13835,[13899,14219],[13898,14220],[13899,14220],[13898,14220],[13899,14220],[13898,14220],[13899,14220],[13898,14220],[13899,14221],13898,13899,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3695,4618],3629,3694,3693,3694,[3692,4930],4931,4738,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3628,4618],3631,3695,[3694,4483],[3693,4484],[3628,4487],[3629,4484],4547,4548,4551,4552,[3630,4484],[3693,4487],4547,4548,4551,4552,[3694,4553],3695,3692,3694,3629,[3693,4995],[3630,4996],[3692,4997],[3629,4998],[3631,4999],[3693,5000],3630,3630,3631,3628,3694,3628,3693,3629,[3629,4737],4738,0,0,0,0,4808,4809,[3628,4810],3695,3631,3694,3631,3692,3695,3629,3692,3692,3631,3630,3630,3693,[3628,4930],4931,4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4870,4871,4868,4869,4868,6084,6085,6086,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13960,13961,13962,13963,13962,14094,13835,13834,13835,13834,13835,14030,13962,13963,13963,13964,13965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3692,4682],3628,3631,3693,3631,3628,[3628,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,4681,[3694,4682],3631,[3694,4609],4547,4548,4551,4548,4611,0,0,4616,4548,4551,4611,0,0,4616,4617,[3695,4618],3630,3692,3629,3630,3628,3628,3631,3628,3628,3631,3630,3692,3695,3692,3631,3631,[3631,4546],4547,4611,0,0,0,4808,4872,4873,[3628,4874],3695,3628,3629,[3628,4483],[3694,4484],[3695,4487],[3628,4487],[3628,4484],[3692,4487],[3629,4488],3630,3628,3695,3693,[3695,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4934,4935,4932,4933,4932,6148,6149,6150,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14024,14025,14027,14027,13902,13897,13899,[13835,13252],[13834,13253],[13898,13254],13899,13900,13710,14026,14027,14028,14029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3631,4746],3695,3692,3693,3693,3692,[3629,4865],4866,4867,4868,4869,4870,4871,4803,0,0,0,0,0,0,4745,[3694,4746],3695,[3693,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3695,4682],3693,3695,3695,3631,3694,3628,3631,3692,3628,3629,3628,3694,3629,3694,3693,[3628,4609],4610,4611,0,0,0,0,4681,4936,[3630,4937],3630,3628,3694,[3631,4546],4547,4548,4551,4551,4548,4551,4552,[3631,4553],3695,3631,3695,[3694,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[423,4996],[423,4997],[423,4998],[422,4999],[487,4996],[422,4997],[487,4996],[487,6212],[423,6213],[486,6214],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13960,13961,13963,[13835,13316],[13834,13317],[13834,13318],13963,13964,13965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4870,4871,4803,0,0,0,4616,4552,[3631,4553],3692,3629,3630,3628,3694,[3693,4930],4931,4932,4933,4934,4935,4802,4803,0,0,0,0,0,4681,[3629,4682],3693,[3695,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3628,4746],3695,3694,3631,[3629,4483],[3629,4484],[3693,4487],[3694,4484],[3628,4487],[3629,4488],3631,3631,3693,3628,3631,3692,[3695,4673],4674,0,0,0,0,0,4745,[3695,4746],3694,3693,3628,[3630,4609],4610,4611,0,0,0,0,0,4616,4617,[3629,4618],3693,3694,3631,[3693,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[487,4937],486,487,422,487,486,422,486,487,423,486,[486,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14024,14025,14027,13380,13381,13382,14027,14028,14029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4934,4935,4802,4803,0,0,0,4616,4617,[3693,4484],[3630,4487],[3631,4488],3630,3692,3630,[3693,4995],[3694,4996],[3692,4997],[3693,4998],[3695,4999],4866,4867,4803,0,0,0,0,4745,[3692,4746],3694,[3630,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3692,4553],3629,[3630,4546],4547,4548,4551,4548,4551,4552,[3695,4553],3629,3692,3695,3630,3628,[3628,4737],4738,0,0,0,0,4808,4809,[3628,4810],3630,3695,3630,[3628,4673],4674,0,0,0,0,0,0,0,4681,[3694,4682],3631,3631,3694,3692,[3629,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[423,4682],422,422,423,486,422,423,486,422,423,423,422,486,[486,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3630,4996],[3694,4997],[3628,4998],[3630,4999],4866,4867,4803,0,0,0,4616,4548,4551,4552,[3694,4553],3693,3692,3694,3692,3628,3628,3629,[3630,4930],4931,4738,0,0,0,0,4681,[3630,4682],3692,[3694,4801],4802,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3629,4484],4610,4611,0,0,0,0,4616,4617,[3692,4618],3694,3630,3629,3695,[3630,4801],4802,4868,4869,4870,4871,4872,4873,[3694,4874],3694,3629,3692,[3631,4737],4738,0,0,0,0,0,0,0,4745,[3629,4746],3694,3631,3629,[3630,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[423,4746],487,487,422,422,422,487,487,487,422,486,423,486,[423,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3694,4937],3695,3695,3694,3692,[3628,4930],4931,4674,0,0,0,0,0,0,4616,4617,[3629,4618],3631,3694,3628,3692,3693,3631,3631,[3629,4801],4802,4803,0,0,0,4745,[3693,4746],3692,[3629,4865],4866,4934,4935,4802,4803,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4611,0,0,0,0,0,0,4616,4552,[3693,4553],3630,3693,3694,[3631,4865],4866,4932,4933,4934,4935,4936,[3693,4937],3629,3629,3629,[3630,4546],4547,4611,0,0,0,0,0,0,4808,4809,[3629,4810],3695,3694,[3630,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[422,4553],[422,4554],486,423,423,486,423,487,423,487,422,[423,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,1624,1625,1626,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3695,4682],3629,3693,3692,3695,3693,3692,[3631,4737],4738,0,0,0,0,0,0,0,4616,4552,[3692,4553],3694,3630,3628,3631,3692,3692,[3695,4865],4866,4867,4803,0,0,4745,[3629,4746],3692,3695,[3631,4930],[3631,4998],[3695,4999],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3695,4487],[3629,4488],3628,3628,[3694,4930],[3629,4996],[3630,4997],[3692,4998],[3693,4999],[3695,5000],3628,3692,[3628,4483],[3694,4484],4610,4611,0,0,0,0,0,0,4808,4872,4873,[3628,4874],3695,3630,[3631,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[422,4618],423,422,423,423,487,487,487,423,[422,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,1560,1689,1690,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3694,4746],3692,3694,3692,3695,3630,3692,[3631,4801],4802,4803,0,0,0,0,0,0,0,4616,4617,[3629,4484],[3630,4487],[3630,4488],3630,3695,3695,3629,[3628,4930],4931,4674,0,0,4616,4552,[3628,4553],3695,3694,3631,3630,[3629,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4552,[3631,4553],3631,3695,3692,3628,3629,3693,3694,3692,[3694,4546],4547,4548,4611,0,0,0,0,0,0,0,4681,4936,[3629,4937],3629,3629,3694,[3631,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[486,4682],422,487,422,486,423,423,423,487,[423,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[487,1752],[422,1753],[487,1754],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3631,4553],3629,[3695,4483],[3630,4487],[3628,4488],3695,[3631,4865],4866,4867,4803,0,0,0,0,0,0,0,4616,4548,4551,4552,[3692,4553],3694,3694,3631,3631,[3692,4737],4738,0,0,0,4616,4617,[3695,4487],[3629,4488],3694,3630,3693,[3694,4737],4738,0,0,0,0,0,0,0,0,4808,4870,4871,4868,4869,4870,4871,4803,0,0,0,0,0,0,0,4616,4617,[3629,4618],3629,3630,3695,3694,3693,[3693,4483],[3694,4484],4610,4611,0,0,0,0,0,0,0,0,0,4745,[3693,4746],3631,3692,3693,[3630,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[487,4746],486,487,486,487,422,422,423,487,[487,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,476,[422,477],423,487,423,[422,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3629,4484],4547,4551,4552,[3630,4553],3693,[3629,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,4616,4617,[3692,4618],3694,3628,3629,[3693,4801],4802,4803,0,0,0,4616,4551,4552,[3695,4553],3629,3628,[3694,4801],4802,4803,0,0,0,0,0,0,4808,4809,4934,4935,4932,4933,4934,4935,4802,4803,0,0,0,0,0,0,0,4681,[3630,4682],3693,3695,3693,3695,[3695,4546],4547,4548,4611,0,0,0,0,0,0,0,0,0,4808,4809,[3695,4810],3628,3629,[3692,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[423,4553],423,487,486,486,487,422,[423,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,476,[487,477],423,486,486,423,486,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4611,0,4616,4617,[3693,4618],3630,[3693,4737],4738,0,0,0,0,0,0,0,0,0,0,0,4681,[3692,4682],3630,3692,3693,[3694,4865],4866,4867,4803,0,0,0,0,4616,4617,[3694,4618],3630,[3631,4865],4866,4867,4803,0,0,0,0,4808,4872,4873,[3630,4998],[3695,4999],[3694,4996],[3630,4997],[3695,4998],[3631,4999],4866,4867,4803,0,0,0,0,0,0,4745,[3692,4746],3630,3694,3629,[3630,4609],4610,4611,0,0,0,0,0,0,0,0,4808,4870,4871,4872,4873,[3694,4874],3692,3692,[3693,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[486,4618],422,487,487,486,[486,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],422,487,422,486,486,[422,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3630,4682],3629,[3628,4801],4867,4803,0,0,0,0,0,0,0,0,0,0,4745,[3629,4746],3693,3694,3692,3695,[3628,4930],4931,4674,0,0,0,0,0,4745,[3629,4746],3629,3692,[3629,4930],4931,4674,0,0,0,0,4681,4936,[3695,4937],3628,3629,3695,3694,3628,3692,[3629,4930],4931,4674,0,0,0,0,0,0,4616,4552,[3630,4553],3692,3695,[3692,4673],4674,0,0,0,0,0,0,0,0,4808,4809,4934,4935,4936,[3692,4937],3631,3628,3629,[3631,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[423,4682],486,423,486,486,[487,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[422,350],486,422,422,[422,23],[423,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3630,4746],3692,[3630,4865],4931,4674,0,0,0,0,0,0,0,0,0,0,4616,4552,[3694,4553],3692,3631,3628,3692,[3692,4737],4738,0,0,0,0,0,4681,[3631,4682],3695,3631,3695,[3695,4737],4738,0,0,0,0,4745,[3631,4746],3694,3695,3629,3694,3692,3629,3630,3631,[3630,4737],4738,0,0,0,0,0,0,0,4616,4617,[3631,4618],3630,[3692,4737],4738,0,0,0,0,0,0,0,4808,4872,4873,[3628,4998],[3629,4999],[3695,5000],3695,3628,3630,[3692,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[487,4746],423,487,423,422,[486,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,410,411,343,0,0,0,0,348,410,31,412,413,[422,414],423,487,[487,86],87,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3694,4810],3693,3695,[3630,4737],4738,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3631,4618],3628,3692,3630,[3629,4801],4802,4803,0,0,0,0,4745,[3694,4746],3631,3631,3694,[3693,4673],4674,0,0,0,0,4616,4552,[3630,4553],3694,3629,3693,3631,3629,3692,[3629,4546],4547,4611,0,0,0,0,0,0,0,0,4681,[3695,4682],3628,[3630,4801],4802,4803,0,0,0,0,0,0,4681,4936,[3631,4937],3692,3630,3630,3630,[3695,4483],[3694,4484],[3692,4610],4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[422,4682],[423,5638],423,422,[422,5638],[423,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,3954,473,474,95,407,408,31,410,411,412,474,95,476,[423,477],487,423,[487,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4870,4871,4872,4873,[3629,4874],3695,3695,[3692,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,4681,[3630,4682],3692,3629,3693,[3694,4865],4866,4867,4868,4869,4870,4871,4809,[3629,4810],3693,3693,3693,[3693,4737],4738,0,0,0,0,0,4616,4617,[3631,4618],3695,3628,3631,3695,[3628,4609],4610,4611,0,0,0,0,0,0,0,0,0,4745,[3694,4746],3693,[3695,4865],4866,4867,4803,0,0,0,0,0,4745,[3694,4746],3692,3692,3693,3628,[3631,4546],4547,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[4681,4808],[487,4682,4868],[487,4869],[487,4868],[487,4869],[422,4870],[422,4673,4871],[4674,4803],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[3777,4018],[3777,537],[3777,538],[3777,159],471,472,95,474,475,476,[423,538],[423,159],[423,540],486,486,486,[422,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4934,4935,4936,[3629,4937],3630,3628,3628,[3630,4865],4866,4867,4868,4869,4870,4871,4803,0,0,0,0,0,0,4745,[3628,4746],3628,3693,3631,3692,[3631,4930],4931,4932,4933,4934,4935,4873,[3631,4874],3692,3631,3629,[3695,4673],4674,0,0,0,0,0,0,4681,[3693,4682],3693,3630,3631,3628,[3695,4673],4674,0,0,0,0,0,0,0,0,0,4808,4809,[3693,4810],3692,3629,[3631,4930],4931,4674,0,0,0,0,4808,4809,[3630,4810],3693,3693,3628,[3629,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4868,4869,4809,4932,4933,4932,4933,4934,4935,4802,4868,4869,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,476,[3777,294,477],3777,661,3777,3777,[3777,483,535],[423,536],[487,159],[487,538],[487,539],[422,540],[422,1388],[423,1390],422,422,487,[422,1388],[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3692,4996],[3631,4997],[3629,4998],[3629,4999],[3630,5000],3631,3695,3695,3692,3631,[3694,4930],4931,4932,4933,4934,4935,4867,4868,4869,4803,0,0,0,4616,4552,[3692,4553],3694,3694,3628,3630,[3629,4995],[3692,4996],[3692,4997],[3628,4998],[3628,4999],[3630,5000],3692,3628,3695,3695,[3694,4737],4738,0,0,0,0,0,0,4745,[3693,4746],3693,3631,3629,3630,[3695,4737],4738,0,0,0,0,0,0,4808,4868,4869,4872,4873,[3631,4874],3629,3692,3693,[3692,4737],4738,0,0,0,4808,4872,4873,[3694,4874],3695,3695,3692,[3695,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4932,4933,4873,[486,4996],[423,4997],[486,4996],[486,4997],[486,4998],[422,4999],4866,4932,4933,4932,4933,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[486,222],484,[3777,228],[3777,229],[3777,230],[3777,231],485,[422,1517],[422,1390],[486,1517],487,422,487,486,422,422,[486,1388],[422,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3693,4937],3694,3693,3628,3692,3629,3630,3693,3629,3630,3692,3629,[3630,4995],[3628,4996],[3692,4997],[3695,4998],[3695,4999],4931,4932,4933,4802,4803,0,0,0,4616,4617,[3692,4487],[3628,4488],3692,3631,3694,3628,3629,3695,3694,3694,3629,3695,3629,[3694,4546],4547,4611,0,0,0,0,0,4808,4809,[3631,4810],3631,3630,3693,[3692,4546],4547,4611,0,0,0,0,0,4808,4809,4932,4933,4936,[3693,4937],3629,3694,3695,[3628,4546],4547,4611,0,0,0,4681,4936,[3693,4937],3631,3631,3630,3629,[3630,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[486,4996],[487,4997],[422,4996],[422,4997],[487,4937],[487,4938,5638],487,422,487,422,[423,5638],[423,4930],[423,4996],[486,4997],[423,4996],[422,4997],4866,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[486,286],[486,1515],422,[486,1199],[486,1200],486,486,422,487,423,423,423,422,423,487,423,[422,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,3890,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3693,4746],3693,3695,3694,3628,3693,3630,3693,3629,3631,3629,3692,3630,3630,3695,3629,3631,3695,[3693,4995],[3631,4996],[3695,4997],4866,4867,4803,0,0,0,4616,4551,4552,[3629,4553],3694,3629,3695,3630,3631,3693,3629,3694,[3695,4483],[3631,4484],4610,4611,0,0,0,0,0,4808,4872,4873,[3693,4874],3694,3629,[3694,4609],4610,4611,0,0,0,0,0,4808,4872,4873,[3693,4996],[3631,4997],[3692,5000],3630,3629,[3692,4483],[3629,4484],4610,4611,0,0,0,0,4745,[3631,4746],3695,3694,3629,3694,3693,[3628,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4936,[423,4937],486,487,487,422,423,487,423,486,422,486,422,486,487,486,422,422,[487,4930],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[486,350],422,487,422,486,422,422,487,423,423,[486,1390],422,486,422,423,[423,1386],[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,3954,473,407,408,1624,1625,1626,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3693,4618],3692,3695,3692,3631,3692,3629,3692,3694,3631,3631,3694,3629,3628,3694,3628,3692,3630,3629,3631,[3693,4930],4931,4674,0,0,0,0,0,4616,4617,[3695,4618],3692,3631,3628,3694,3629,3694,[3692,4546],4547,4548,4611,0,0,0,0,0,0,4681,4936,[3628,4937],3628,3694,3694,[3631,4673],4674,0,0,0,0,0,0,4681,4936,[3694,4937],3692,3693,3628,3694,[3695,4546],4547,4548,4611,0,0,0,0,4808,4809,[3692,4810],3692,3631,3693,3692,3694,[3629,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[486,4937],487,422,422,487,423,423,486,422,487,423,487,486,422,422,423,422,486,486,[422,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,410,411,412,413,[486,414],[487,1388],486,423,422,423,423,423,486,422,423,423,423,423,423,[487,1388],[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[422,4018],[423,537],471,472,1688,1689,1690,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,3883,31,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,1624,1625,1626,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3628,4682],3692,3629,3631,3692,3631,3631,3629,[3629,4483],[3695,4484],[3631,4488],3631,3631,3693,3631,3630,3694,3631,3693,3692,3628,[3630,4673],4674,0,0,0,0,0,0,4745,[3694,4746],3631,3692,3631,3694,3692,[3629,4609],4610,4611,0,0,0,0,0,0,0,0,4745,[3693,4746],3631,3628,3692,3628,[3694,4737],4738,0,0,0,0,0,0,4745,[3692,4746],3695,3692,3630,3629,[3631,4609],4610,4611,0,0,0,0,0,4808,4872,4873,[3631,4874],3628,3692,3692,3692,3695,3631,[3694,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[487,4746],486,422,486,486,423,487,422,422,486,487,486,486,423,423,423,423,422,423,422,423,[486,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,3954,475,476,[486,477],[486,1386],422,486,487,423,486,423,423,487,422,487,486,487,423,[422,1513],[423,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[486,477],487,422,[422,535],[487,536],[423,1752],[422,1753],[422,1754],406,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,3947,95,407,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,1560,1689,1690,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3628,4746],3630,3629,3628,3631,[3693,4483],[3692,4484],[3629,4487],4547,4548,4552,[3694,4553],3695,3694,[3694,4483],[3695,4484],[3693,4487],[3631,4488],3695,3628,3695,[3692,4801],4802,4803,0,0,0,0,4808,4809,[3692,4810],3630,3695,3693,3692,3631,[3692,4737],4738,0,0,0,0,0,0,0,0,0,4681,[3692,4682],3693,3628,3695,3630,[3692,4801],4802,4803,0,0,0,0,4808,4809,[3631,4810],3628,3629,3631,3630,[3695,4673],4674,0,0,0,0,0,0,4681,4936,[3628,4937],3629,3631,3628,3629,3695,3630,3629,3628,[3692,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[422,4682],486,422,487,486,487,423,423,422,487,422,486,486,487,422,486,487,422,486,422,487,[422,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[487,4018],[487,539],[422,540],[422,1390],487,487,423,487,422,420,[3777,548],[3777,549],421,487,422,423,422,487,[422,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[486,286],423,422,422,423,423,422,423,423,[487,470],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,1949,343,0,0,0,0,0,0,0,0,0,348,412,413,[487,4011],[422,159],471,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[1300,1752],[1364,1753],[1300,1632,1754],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3628,4553],3692,3692,[3630,4546],4547,4548,4551,4611,0,4616,4617,[3629,4484],[3694,4487],4547,4548,4551,4552,[3629,4553],3629,3629,[3630,4865],4866,4867,4868,4869,4870,4871,4872,4873,[3694,4874],3628,3692,3695,3631,3630,[3694,4801],4802,4803,0,0,0,0,0,0,0,0,4745,[3694,4746],3630,3692,3629,3692,[3694,4865],4866,4867,4868,4869,4870,4871,4872,4873,[3693,4874],3692,3693,3631,3695,[3628,4737],4738,0,0,0,0,0,0,4745,[3628,4746],3629,3630,3694,3629,3631,3628,3695,3695,[3630,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[486,4746],486,486,423,487,422,423,487,422,486,486,423,422,487,423,422,487,487,487,422,486,[487,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,476,[486,477],[422,1387],[487,1386],[487,1390],422,423,422,422,423,[420,1517],[3777,358],661,3777,[3777,483],487,487,486,422,422,[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],486,422,422,487,486,422,423,487,487,[487,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,472,2013,342,343,0,0,0,0,0,0,0,0,285,413,[486,477],422,486,[422,535],[486,536],[486,537],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[1364,477],1947,[1363,1442],1634,[1633,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3631,4487],[3693,4484],4610,4611,0,0,0,0,0,4616,4548,4551,4611,0,0,4616,4617,[3694,4618],3694,3628,[3694,4930],4931,4932,4933,4934,4935,4936,[3629,4937],3693,3629,3628,3695,3693,3692,[3630,4865],4866,4867,4803,0,0,0,0,0,0,4808,4809,[3630,4810],3692,3692,3628,3628,3628,[3692,4930],4931,4932,4933,4934,4935,4936,[3695,4937],3695,3695,3694,3693,3692,[3628,4801],4802,4803,0,0,0,0,4808,4809,[3629,4810],3631,3693,3629,3631,3694,3692,3629,[3630,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[487,4682],486,422,423,423,422,487,487,422,487,422,486,487,487,487,487,487,486,487,487,486,[423,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[422,222],[423,1386],486,422,422,487,422,[423,1390],423,420,[3777,358],3777,3777,[3777,227],[485,1517],487,486,486,422,423,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[487,93],423,487,487,486,487,423,487,422,422,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[422,536],[423,2077],406,407,3890,409,408,31,343,0,0,348,349,[423,286],423,423,487,486,423,486,[422,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[1364,1441,158],[1299,1377],1572,1634,[1636,149],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3628,4682],3692,3628,3630,[3694,4995],[3630,4996],[3694,4997],[3631,4998],[3628,4999],[3694,5000],3630,3628,3628,3629,3630,3695,3630,3693,[3630,4930],4931,4674,0,0,0,0,0,4808,4872,4873,[3629,4874],3694,3693,3692,3631,3695,3628,[3695,4995],[3695,4996],[3693,4997],[3694,4998],[3692,4999],[3631,5000],3694,3692,3628,3693,3692,3628,[3629,4865],4866,4867,4868,4869,4870,4871,4872,4873,[3630,4874],3695,3629,3628,3692,3631,3630,3693,[3694,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[423,4746],422,422,487,487,487,422,487,423,423,422,423,423,423,486,487,487,423,486,486,487,[422,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],[487,1387],423,423,423,423,422,486,486,484,[3777,228],[3777,232],3777,[3777,483],487,423,487,423,422,423,[486,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[486,27],[422,28],423,423,422,422,423,486,487,[486,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[423,477],487,487,[486,470],471,3954,473,472,95,407,408,409,412,413,[423,414],486,487,486,423,486,487,486,[423,3914],3915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1300,222],[2011,1506],1570,1633,[1633,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3631,4746],3631,3629,3631,3694,3629,3631,3630,3629,3628,3630,3692,3695,3630,3695,3630,3693,3629,3631,[3693,4737],4738,0,0,0,0,0,4681,4936,[3694,4937],3631,3694,3631,3694,3630,3628,3629,3693,3693,3631,3694,3695,3694,3628,3693,3695,3693,3630,3629,3631,[3630,4930],4931,4932,4933,4934,4935,4936,[3694,4937],3692,3695,3694,3629,3695,3694,3694,3628,[3695,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[486,4682],486,487,423,422,422,423,423,423,487,487,423,423,487,423,486,423,486,486,423,423,[422,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[487,222],422,423,422,423,487,486,422,422,487,[486,1517],[3777,296],3777,[3777,291],422,423,486,423,422,422,[487,405],406,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,92,[487,93],486,423,486,486,422,486,[486,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[487,222],487,422,423,423,[422,535],[486,4018],[486,537],[487,536],[486,159],471,472,473,476,[486,477],487,422,487,487,423,486,422,422,[487,3978],3979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1300,286],1364,[1364,1632],1571,[1633,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4870,4871,4803,0,0,0,0,4616,4552,[3694,4553],3628,3692,3628,3628,3629,3630,3693,3695,3695,3630,3628,3630,3628,3695,3631,3628,[3694,4609],4610,4611,0,0,0,0,0,4745,[3630,4746],3630,3693,3694,3692,[3695,4483],[3692,4484],[3693,4487],[3628,4487],[3631,4488],3692,3694,3692,3692,3630,3630,3629,3631,[3628,4483],[3631,4484],[3628,4488],3694,3630,[3630,4995],[3694,4996],[3693,4997],[3631,4998],[3693,4999],[3631,5000],3631,3629,3631,3693,3628,3692,3694,3630,3694,[3692,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[423,4746],486,423,486,423,423,422,423,422,423,422,486,486,423,487,423,487,486,423,423,487,[487,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[487,286],487,422,487,[487,90],423,486,486,423,486,486,[3777,424],3777,[3777,355],423,486,423,487,[486,89],486,[422,1390],[487,470],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,158],422,423,487,422,423,422,[487,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],422,486,486,487,423,423,487,487,486,[487,535],[423,536],[422,537],[423,540],487,487,486,422,423,422,486,423,423,[487,4042],4043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[2012,350],1300,[1364,1696],[1300,1697],[1698,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4871,4870,4871,4872,[4932,1914],[4933,1915],[4934,1916],4935,4802,4803,0,0,0,0,4616,4617,[3695,4487],[3628,4488],3693,3630,3631,3694,3631,3695,[3692,4483],[3694,4484],[3631,4487],[3692,4488],3692,3692,3630,3695,[3630,4673],4674,0,0,0,0,0,0,4681,[3693,4682],3695,3630,3694,[3694,4609],4547,4548,4551,4551,4552,[3629,4553],3692,3693,3628,3631,3692,3693,[3693,4546],4547,4548,4552,[3693,4553],3629,3692,3628,3629,3695,3693,3692,3694,3695,[3692,4483],[3692,4484],[3692,4488],3631,3630,3631,3695,[3629,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[422,4682],423,423,486,486,422,422,487,487,422,423,487,422,486,423,486,423,487,486,423,423,[423,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[422,350],486,486,487,[423,154],[486,343],[423,1385],487,486,423,420,[3777,358],3777,[3777,419],422,423,487,[422,348],[486,153],486,486,422,[486,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[422,222],423,422,486,486,422,422,487,[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[487,350],486,423,422,487,423,486,422,486,422,423,422,486,423,486,423,423,486,422,487,422,486,422,[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[1299,1445,414],1299,1363,1999,[1299,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4740,4934,4935,4936,[1975,4996,1978],[1912,4997,1979],[1911,4998,1980],[1912,4999],4866,4867,4803,0,0,0,0,4616,4551,4552,[3695,4553],3694,3695,3631,3631,[3631,4546],4547,4548,4551,4552,[3693,4553],3694,3694,3694,[3693,4737],4738,0,0,0,0,0,0,4745,[3693,4746],3695,3693,3629,[3630,4673],4674,0,0,0,4616,4617,[3631,4618],3693,3630,3693,3693,[3629,4609],4610,4611,0,4616,4617,[3693,4618],3692,3692,3630,3694,3693,3693,3693,[3693,4546],4547,4548,4552,[3695,4488],3631,3629,[3694,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[486,4746],423,487,487,486,422,486,422,487,423,422,423,487,487,487,422,423,422,423,422,486,[487,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,410,411,412,413,[486,414],487,486,486,[423,218],[422,342],[486,343],[487,1386],422,423,[3777,488],3777,597,[3777,483],422,423,[487,348],[423,349],[423,217],487,422,[422,1199],[422,1200],[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],422,423,422,422,487,423,[486,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[487,414],422,487,487,487,[422,23],[423,27],[422,24],[487,28],423,423,422,486,423,[487,23],[423,27],[422,24],[487,27],[422,24],[422,93],486,487,[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1635,222],[1299,1573],[1947,1441],[1300,1378],[1947,1380,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4936,[1911,4999],[1975,2292,4998],[2357,4999],[1975,2231,5000],[1976,2042],[1912,2230,2043],[1975,2166,2044],[1976,2168],[1976,2296,4930],4931,4738,0,0,0,0,0,0,4616,4617,[3630,4618],3629,3693,[3695,4609],4610,4611,0,0,4616,4617,[3692,4618],3630,3629,[3628,4801],4802,4803,0,0,0,0,4808,4809,[3630,4810],3694,3629,3628,[3628,4737],4738,0,0,0,0,4745,[3693,4746],3629,3631,3692,3692,[3692,4673],4674,0,0,0,4681,[3631,4682],3692,3628,3692,3628,3693,3693,[3628,4546],4610,4611,0,4681,[3628,4682],3631,3631,[3631,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[486,4682],423,422,486,487,423,486,486,486,422,487,423,486,423,423,487,423,486,486,423,486,[487,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,3954,475,476,[423,477],486,423,422,486,[3777,296,282],406,[486,407],[486,343],[423,1386],487,484,[3777,228],[3777,231],485,486,[423,348],[486,412],413,[487,281],422,487,487,487,[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,3890,409,412,[487,350],487,486,486,423,423,486,[486,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[487,477],422,422,487,423,[422,86],87,88,91,92,[423,24],[487,24],[423,28],422,[487,86],87,88,91,88,91,157,[486,24],[422,27],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1700,286],[1300,1701],[1363,1696],1569,[1571,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[1976,5000],1976,[1911,2356],2421,2359,[1912,2165,2106],[2423,2107],[2357,2108],[1912,2425],1976,[1975,4801],4802,4803,0,0,0,0,0,0,4681,[3630,4682],3628,3629,[3631,4673],4674,0,0,0,0,4681,[3631,4682],3631,3695,[3693,4865],4866,4867,4868,4869,4870,4871,4872,4873,[3629,4874],3629,3694,3629,[3693,4801],4802,4803,0,0,4808,4809,[3630,4810],3629,3692,3628,3630,[3695,4737],4738,0,0,0,4745,[3629,4746],3694,3629,3628,3692,[3693,4483],[3693,4484],4610,4611,0,0,4745,[3630,4746],3629,3629,[3630,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[487,4746],486,486,422,487,423,422,487,486,486,423,487,487,423,486,487,486,422,486,487,487,[422,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[422,4018],[486,539],[422,540],487,487,486,422,[486,1390],[3777,424],[3777,470],471,[486,214],[422,1386],423,486,486,422,487,486,[487,221],476,[422,477],[487,1386],487,486,487,486,[423,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,3954,473,476,[487,414],422,486,486,486,486,487,[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[422,222],486,487,423,487,[487,149],150,151,0,0,156,88,91,92,[487,24],150,151,0,0,0,0,156,88,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[1364,350],2127,2128,[2011,1505],[1636,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[1976,4937],1911,1975,[1975,2420],2358,2421,2424,2357,2357,[1975,2489],1976,[1975,4865],4866,4867,4803,0,0,0,0,0,4745,[3628,4746],3694,3628,[3695,4737],4738,0,0,0,0,4745,[3695,4746],3692,3629,3631,[3695,4930],4931,4932,4933,4934,4935,4936,[3629,4937],3630,3694,3693,3694,[3695,4865],4866,4867,4868,4869,4872,4873,[3628,4874],3631,3629,3694,[3630,4546],4547,4611,0,0,0,4616,4552,[3692,4553],3695,3692,[3630,4546],4547,4548,4611,0,0,4808,4809,[3695,4810],3695,3630,[3694,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[422,4553],487,486,422,487,423,422,422,422,487,487,486,423,423,423,487,423,486,486,[486,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1805,3470],[1741,3471],[1803,3472],[1739,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,476,[486,477],[422,1386],487,422,486,487,423,[420,1387],[3777,551],[3777,359],3777,[3777,213],[487,214],[423,1129],[486,1130],486,423,487,[486,1129],[486,1130],[487,221],[487,222],[487,1388],487,486,486,[422,1390],486,[422,405],406,407,408,31,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[422,4018],[422,537],[422,540],422,422,486,487,486,486,[486,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],486,423,423,422,[422,277],278,0,0,0,0,0,0,156,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[1364,414],2191,2192,[1299,1441],[1569,341],342,343,0,0,348,1950,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[1975,4746],1976,1975,1975,[1912,2484],2422,2358,2358,2423,[1911,2296],1912,1911,1912,[1976,4930],4931,4674,0,0,0,0,4808,4809,[3629,4810],3695,3692,[3693,4673],4674,0,0,0,0,4616,4552,[3693,4553],3692,3695,3629,[3692,4995],[3693,4996],[3693,4997],[3630,4998],[3628,4999],[3628,5000],3628,3628,3629,3629,3693,3631,[3630,4930],4931,4932,4933,4936,[3631,4937],3692,3629,3692,[3692,4609],4610,4611,0,0,0,0,0,4616,4617,[3628,4484],[3693,4487],4610,4611,0,0,0,4808,4872,4873,[3695,4874],3630,3692,[3694,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[422,4484],[423,4487],[422,4484],[487,4487],[423,4484],[422,4487],[487,4484],[487,4487],[423,4484],[422,4487],[486,4484],[422,4487],[486,4484],[486,4487],[423,4484],[422,4487],[486,4484],[423,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[1740,3411],1740,1803,1427,1740,[1739,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,3282,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],[423,1385],423,486,422,422,423,[420,1386],[3777,358],3777,3777,3777,[3777,277],[422,278],[486,1193],[486,1194],423,[486,1131],[422,1132],[422,1193],[487,1194],[423,285],[422,286],[487,1388],486,422,423,486,423,[422,1390],[487,470],471,472,95,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[487,477],423,487,423,422,486,422,486,[423,23],[422,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[486,93],423,487,[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[1363,1377,477],[1363,1378],[1299,1379],[1300,1380],1570,[1636,405],406,407,408,409,412,2014,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[1976,4553],1975,1912,1975,[1912,2420],2421,2424,[1976,2425],1975,1911,1911,1912,1975,[1975,4737],4738,0,0,0,4808,4872,4873,[3695,4874],3628,3695,[3630,4737],4738,0,0,0,0,0,4616,4617,[3629,4618],3695,3695,3695,3694,3631,3631,3629,3628,3630,3630,3693,3694,3628,3695,3695,[3692,4995],[3630,4996],[3629,4997],[3695,5000],3630,3692,3631,3630,[3695,4673],4674,0,0,0,0,0,0,0,4616,4548,4551,4611,0,0,0,0,4681,4936,[3692,4937],3631,3628,3631,3630,[3694,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4548,4551,4548,4551,4548,4551,4548,4551,4548,4551,4548,4551,4548,4551,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1803,3284],1427,1427,1805,1741,1804,1427,[1805,3211],3212,0,0,0,0,0,0,0,0,0,3282,3283,3341,3342,3343,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[423,222],[422,1388],486,423,422,422,487,[484,1385],[3777,294],3777,597,3777,[3777,341],[487,342],[422,343],486,[487,1386],[487,1195],[423,1196],422,[423,348],[487,349],[486,350],423,487,423,487,422,423,487,487,[422,535],[420,536],[3777,159],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3916,[422,3917],422,422,422,486,486,486,487,[487,86],87,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[486,27],[486,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1572,222],1570,1569,1571,1635,1572,1634,[1572,470],471,472,473,476,[1633,2078],406,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[1975,4484],[1912,4487],[1975,2230,4488],[2422,2170],[2358,2171],[1976,2488],[1912,2489],1975,1976,1911,1912,[1975,4546],4547,4611,0,0,0,4681,4936,[3628,4937],3631,3693,3693,[3695,4673],4674,0,0,0,0,0,0,4681,[3631,4682],3628,3630,3628,3694,3695,3630,3694,3694,3629,3631,3629,3694,3630,3630,3630,3693,3694,3631,3629,3631,3692,3630,3631,[3693,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3693,4682],3629,3630,3692,3628,3694,3629,[3693,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1804,3348],1803,1805,1740,1740,1740,1804,[1741,3275],3276,3277,0,0,0,0,0,0,0,3282,3346,3347,3405,3406,3407,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[487,286],[486,1385],487,423,486,423,423,422,[484,1390],[3777,228],[3777,294],3777,[3777,293,405],406,[423,407],[423,408],[486,1624],[487,1625],[423,1626],[423,411],[487,412],413,[486,414],486,423,422,487,422,486,486,[422,1386],420,[3777,358],3777,[3777,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3980,[487,3981],486,487,486,487,423,486,[423,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1635,286],1636,1570,1634,1634,1572,1569,[1569,13444],[1300,1507,535],[1299,536],[1363,537],[1299,1440,540],1571,[1633,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4552,[2360,4553],[1976,2296],1911,1975,1912,1912,1976,[1975,4609],4610,4611,0,0,0,0,4745,[3628,4746],3692,3630,3692,3631,[3694,4737],4738,0,0,0,0,0,0,4745,[3629,4746],3694,3692,3692,3694,3629,3695,3695,3694,3628,3630,3631,3695,3694,3630,3692,3628,3631,3695,3694,3694,3628,3631,[3693,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3694,4746],3628,3628,3630,3692,3629,3631,[3694,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1804,3411],1804,1741,1740,1427,1741,1741,1805,[1741,3339],3340,3341,3277,0,0,0,0,0,0,3155,3410,[1740,3411],[1805,3469],[1804,3470],[1805,3471],[1804,3470],[1740,3471],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[422,93],[486,1386],423,486,487,422,422,423,[487,1390],[484,1390],[3777,228],[485,1387],[487,470],471,1691,1688,1689,1690,280,476,[486,477],[487,1388],487,487,422,486,486,486,486,[422,1390],[3777,488],3777,597,3777,[3777,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4044,[422,4045],486,422,422,486,486,486,[423,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[1570,93],1569,[2011,1697],[1299,1507],[1299,1696],1572,[1364,1637],1363,2011,1936,[1299,1504],1634,[1633,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[1976,4618],1975,1976,1912,1975,1976,[1911,4673],4674,0,0,0,0,0,4681,[3692,4682],3631,3694,3628,3695,[3694,4801],4802,4803,0,0,0,0,4808,4809,[3630,4810],3631,3628,3630,3694,3630,3693,3631,[3694,4483],[3694,4484],[3629,4487],[3631,4488],3629,3630,3693,3692,3692,3628,3628,[3694,4483],[3695,4484],[3692,4487],[3630,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3628,4810],3628,3692,3628,3628,3628,3628,[3695,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1739,3220],1740,1427,1805,1739,1804,1741,1741,1803,1740,[1804,3404],3405,3148,0,0,0,0,0,0,3219,[1805,3220],1427,1740,1739,1805,1740,1427,[1741,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[422,27],[423,28],486,487,423,422,423,487,422,486,486,[423,1388],[486,535],[486,1755],[486,1752],[487,1753],[487,1754],[487,539],[423,540],[487,1388],486,486,486,487,486,486,486,487,422,484,[3777,232],3777,3777,[3777,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[422,93],423,486,423,487,487,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[1299,1507,93],1300,1364,1300,[1364,1440],1636,[1300,1381],1300,1300,[1363,1568],1572,[1570,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[1975,4682],1976,1976,1911,1912,1976,[1976,4737],4738,0,0,0,0,0,4745,[3628,4746],3693,3695,3631,3631,[3692,4865],4866,4867,4868,4869,4870,4871,4872,4873,[3692,4874],3628,3692,3629,3693,3630,3628,[3631,4546],4547,4548,4551,4552,[3628,4484],[3629,4487],[3630,4484],[3628,4488],3694,3630,[3628,4546],4547,4548,4551,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4870,4871,4872,4873,[3694,4874],3694,3692,3692,3692,3631,3628,[3694,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1803,3027],1805,1803,1804,1803,1740,1741,1741,1427,1428,[1805,3211],3212,0,0,0,0,0,0,3219,[1741,3220],1740,1740,1740,1739,1739,1427,1740,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2957,2958,2961,2958,2961,2962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,92,[422,93],422,487,486,487,487,423,423,487,486,487,487,[422,1390],422,423,[486,1390],422,422,422,423,487,420,[3777,549],421,423,486,486,[486,1386],[3777,488],3777,3777,[3777,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,158],[423,24],[423,93],486,423,[423,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[1363,24],[1364,27],[1299,24],[1299,1504,93],1571,1633,[1299,1443,23],[1364,1441,93],1570,1571,[1571,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[1911,4746],1976,1976,1976,1976,1911,[1911,4801],4802,4803,0,0,0,0,4616,4552,[3694,4553],3693,3692,3630,3695,[3630,4930],4931,4932,4933,4934,4935,4936,[3630,4937],3695,3694,3693,3694,3629,3694,[3629,4609],4610,4611,0,0,4616,4548,4551,4548,4552,[3692,4484],[3695,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4934,4935,4936,[3695,4937],3694,3695,3631,3629,3695,3628,3692,[3630,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1740,3092],1427,1740,1805,1740,1740,1805,1740,[1741,3020],3021,3085,0,0,0,0,0,3282,3283,[1805,3284],1803,1805,1803,1805,1427,1739,1739,[1804,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3083,[1808,3084],[1808,3022],[1746,3025,1954],[1744,3022],[1746,3025],[1809,3026],2961,2962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[486,158],487,486,487,[422,1390],423,422,422,422,487,422,486,423,422,423,486,487,422,487,[420,1393],[3777,358],3777,[3777,547],421,486,486,423,484,[3777,294],3777,[3777,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,88,91,157,[487,158],423,[487,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,91,157,[1636,24],[1634,27],87,157,[1635,158],1636,[1364,1507],[1364,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[1975,4810],1911,1911,1976,1975,1975,[1975,4865],4866,4867,4803,0,0,0,0,4616,4617,[3692,4487],[3628,4488],3695,3695,3631,[3695,4995],[3631,4996],[3694,4997],[3695,4998],[3631,4999],[3629,5000],3628,3631,3693,3631,3693,3630,3628,[3694,4673],4674,0,0,0,0,0,0,0,4616,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3692,4998],[3694,4999],[3629,5000],3630,3692,3631,3631,3695,3695,3631,3629,[3628,4865],4866,4867,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1804,3156],1741,1805,1805,1804,1805,1741,[1740,3083],3084,3085,0,0,0,0,0,3282,3346,3347,[1740,3348],1427,1739,1741,1803,1741,1739,1741,[1805,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],[1747,2017],[1747,2018],[1808,2019],1747,[1745,3090],[1808,3025],[1745,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[422,222],422,423,487,487,486,486,486,487,422,486,487,486,422,487,423,487,423,487,[3777,488],3777,597,3777,[3777,483],422,422,487,[487,1386],484,[3777,295,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],422,486,[422,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,151,221,[1700,222],[1364,1508],2012,1299,[1363,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[1975,4874],1911,1912,1976,1912,1911,1976,[1975,4930],4931,4674,0,0,0,0,0,4616,4551,4552,[3695,4553],3629,3694,3693,3630,3631,3631,3692,3630,3694,3630,3630,3692,3630,3695,3631,[3694,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4803,0,0,0,0,0,0,0,0,0,4681,[3628,4682],3628,3629,3692,3692,3631,3692,3629,3628,3629,3692,3694,3630,[3692,4930],4931,4932,4933,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1739,3220],1740,1805,1740,1739,1804,1739,[1739,3147],3148,0,0,0,0,0,0,3155,3410,[1805,3411],1740,1740,1805,1740,1740,1741,1427,1804,[1803,2058,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[1744,3276],[1744,3277],1808,1746,1744,1744,1744,[1747,3090],[1745,3091],3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],[423,1387],422,422,423,487,423,486,423,486,487,487,422,422,423,423,487,486,486,[484,1393],[3777,294],3777,[3777,293],485,487,486,[487,23],[422,27],[487,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[423,350],423,422,422,[486,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[1948,158],1363,[1364,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[1975,4937],1912,1912,1975,1975,1975,1976,1975,1975,[1976,4737],4738,0,0,0,0,0,0,0,4616,4617,[3692,4618],3695,3694,3692,3695,3631,3629,3630,3694,3631,3631,3629,3693,3630,[3693,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4867,4803,0,0,0,0,0,0,0,0,4745,[3695,4746],3692,3631,3694,3695,3628,3692,3631,3629,3631,3628,3694,3695,3629,[3695,4995],[3631,4996],[3631,4997],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1803,3027],1427,1741,1805,1741,1427,[1740,3211],3212,0,0,0,0,0,0,3219,[1805,3220],1427,1803,1804,1805,1741,1427,1741,1427,1804,[1741,2122],[1286,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1744,3341],[1744,3344],[1746,3345],[1811,3277],1745,1811,1747,[1810,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[422,93],[423,1387],487,422,487,423,422,486,423,486,422,422,422,[486,1199],[486,1200],422,423,422,422,484,[3777,228],485,423,487,[423,86],87,91,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[422,414],486,486,486,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[1363,27],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[1911,4746],1912,1912,1912,1976,1975,1975,1975,1975,[1975,4546],4547,4611,0,0,0,0,0,0,0,0,4681,[3630,4682],3631,3629,3630,3628,3693,3628,3631,3692,3629,3628,3693,3631,[3694,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3694,4996],[3628,4997],4931,4867,4870,4871,4803,0,0,0,0,4808,4809,[3693,4810],3694,3629,3693,3628,3630,3695,3630,3695,3629,3695,3694,3694,3630,3631,3692,3630,[3694,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1740,3092],1741,1805,1804,1492,[1741,3275],3276,3277,0,0,0,0,3282,3283,[1803,3284],1427,1739,1805,1739,1804,1803,1739,1740,1804,[1804,2058],1414,[1286,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2957,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2958,2961,2958,2961,2958,2961,2962,0,0,0,3404,3405,3408,3409,[1744,3276],[1808,3277],1747,1810,[1746,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,27],[487,28],[423,1388],422,487,486,[487,1385],420,[3777,548],421,[486,1386],420,[3777,548],[3777,549],[3777,550,23],[486,24],[487,27],[423,28],422,422,487,[486,1387],[487,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[486,477],487,487,423,422,[487,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[1912,4553],1975,1911,1975,1911,1911,1975,[1975,4609],4610,4611,0,0,0,0,0,0,0,0,0,4745,[3694,4746],3693,3692,3628,3694,3630,3629,3631,3630,3692,3694,3628,3693,[3695,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,4936,[3693,4937],3628,3694,[3630,4995],4931,4934,4935,4867,4868,4869,4870,4871,4872,4873,[3693,4874],3694,3629,3629,3628,3630,3694,3695,3695,3630,3628,3628,3692,3628,3628,3628,3694,3629,[3630,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1739,3156],1427,1740,1804,1803,[1803,3339],3340,3341,3342,3343,3344,3345,3346,3347,[1803,3348],1804,1805,1804,1739,1803,1740,1739,1805,1740,[1803,2122,2957],[1286,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3020,[1744,3021],[1810,3022],[1811,3025],[1744,3022],[1810,3025],[1811,3022],[1747,3025],[1747,3022],[1811,3025],[1810,3022],[1747,3025],[1808,3022],[1811,3025],[1809,3022],[1810,3025],[1810,3022],[1809,3025],[1810,3022],[1810,3025],[1747,3022],[1745,3025],[1811,3022],[1744,3025],[1810,3022],[1744,3025],[1745,3022],[1746,3025],[1808,3022],[1745,3025],[1811,3022],[1809,3025],[1746,3022],[1809,3025],[1745,3022],[1744,3025],[1811,3022],[1808,3025],[1745,3022],[1745,3025],[1746,3022],[1811,3025],[1809,3022],[1747,3025],[1744,3022],[1744,3025],[1746,3022],[1746,3025],[1808,3022],[1747,3025],[1808,3022],[1809,3025],[1747,3022],[1809,3025],[1747,3022],[1746,3025],[1744,3022],[1746,3025],[1744,3022],[1745,3025],[1810,3022],[1746,3025],[1808,3022],[1747,3022],[1746,3025],[1746,3022],[1744,3025],[1744,3022],[1808,3025],[1809,3026],3027,0,0,0,3469,3472,3473,3340,[1809,3341],[1744,3277],1808,[1809,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,92,[486,93],[486,1513],[486,23],[487,24],[487,27],[3777,359,28],3777,[3777,356],[3777,551],[3777,552],3777,[3777,86],87,88,91,92,[422,93],[486,1387],[423,1387],[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[487,222],487,486,486,423,422,[422,405],406,407,408,31,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[1976,4487],[1911,4488],1976,1975,1976,1912,[1976,4673],4674,0,0,0,0,0,0,0,0,0,4808,4809,[3694,4810],3630,3692,3631,3631,3694,3630,[3631,4483],[3630,4484],[3694,4488],3692,3631,3630,[3629,4737],4738,0,0,0,0,0,0,4808,4868,4869,4870,4871,4803,0,0,4808,4809,[3628,4810],3628,3693,3694,3629,[3630,4995],[3694,4998],[3694,4999],4931,4932,4933,4934,4935,4936,[3628,4937],3631,3631,3694,3629,3695,3692,3630,3692,3630,3693,3695,3631,3693,3695,3628,3631,3628,3692,[3628,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1805,3220],1805,1427,1741,1739,1805,[1739,3404],3405,3406,3407,3408,3409,3410,[1805,3411],1739,1740,1740,1803,1803,1804,1804,1427,1740,[1804,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2957,[1811,3084],[1747,3085],1809,1811,1811,1744,1810,1811,1808,1811,1810,1744,1744,1809,1809,1808,1745,1745,1746,1745,1808,1747,1744,1747,1811,1808,1808,1744,1746,1745,1811,1810,1744,1808,1746,1746,1747,1809,1810,1809,1746,1747,1744,1745,1747,1744,1811,1808,1744,1746,1747,1746,1744,1744,1809,1808,1809,1809,1811,1747,1744,1744,1809,1744,1808,1811,1810,1810,1808,[1745,3090],[1746,3091],3092,0,0,0,0,0,3404,3405,[1744,3148],1809,[1744,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[422,27],87,88,91,92,[3777,93],661,3777,[3777,23],[3777,24],150,151,0,0,156,157,[487,27],[487,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],487,422,423,487,487,422,[486,470],471,472,95,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4552,[1912,4553],1912,1976,1976,[1911,4737],4738,0,0,0,0,0,0,4808,4870,4871,4872,4873,[3692,4874],3628,3693,3695,3693,3693,[3693,4546],4547,4548,4552,[3630,4553],3693,3631,[3629,4801],4802,4803,0,0,4808,4870,4871,4872,4932,4933,4934,4935,4867,4868,4869,4872,4873,[3692,4874],3628,3693,3694,3631,3630,3692,3692,[3630,4995],[3695,4996],[3629,4997],[3695,4998],[3692,4999],[3692,5000],3694,3631,3630,3695,3692,3630,3629,3693,3695,3629,3628,3692,3695,3629,3630,3695,3630,3628,[3693,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1739,3027],1427,1739,1803,1741,1805,[1804,3469],[1803,3470],[1805,3471],[1739,3472],[1740,3473],[1740,3474],1427,1739,1740,1803,1741,1739,1427,[1740,2957],[1805,2958],[1739,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1810,3148],1811,1746,1746,1745,[1747,3282],[1744,3342],[1744,3343],[1745,3344],[1745,3345],[1811,3342],[1746,3343],[1810,3344],[1811,3345],[1746,3342],[1745,3343],[1744,3342],[1808,3343],[1744,3344],[1746,3345],[1810,3277],1808,1746,1809,1745,1746,1747,1744,[1811,3282],[1809,3342],[1745,3343],[1745,3342],[1747,3343],[1809,3344],[1746,3345],[1811,3342],[1810,3343],[1809,3344],[1811,3345],[1809,3277],1746,1811,1809,1746,1809,1747,[1745,3282],[1810,3342],[1746,3343],[1808,3342],[1745,3343],[1809,3344],[1810,3345],[1809,3277],1744,1745,1811,1747,1810,1808,[1810,3282],[1809,3342],[1808,3343],[1811,3344],[1747,3345],[1809,3277],1809,1809,1809,1747,[1744,3155],3156,0,0,0,0,0,0,3211,[1744,3212],1746,[1746,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,151,0,0,156,157,[3777,24],[3777,27],87,88,151,0,0,0,0,156,91,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[486,350],422,423,486,422,422,487,422,[423,535],[487,536],[487,159],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[1911,4618],1912,1976,[1975,4801],4802,4803,0,0,0,0,4808,4809,4934,4935,4936,[3695,4937],3630,3629,3694,3693,[3631,4483],[3692,4484],4610,4611,0,4616,4617,[3694,4618],3630,[3693,4865],4866,4867,4868,4869,4872,4934,4935,4936,[3628,4996],[3692,4997],[3692,4998],[3630,4999],4931,4932,4933,4936,[3629,4937],3693,3628,3694,3631,3631,3692,3693,3628,3694,3631,3692,3692,3629,3692,3628,3695,3628,3631,[3628,4483],[3693,4484],[3694,4488],3694,3693,3693,3693,3630,3694,3631,3692,3631,3693,[3631,4546],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,0,0,3090,3091,[1740,3092],1804,1739,1804,1803,1427,1803,1805,1804,1804,1427,1804,1804,1741,1427,1427,1739,[1740,3020],3021,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1745,3212],1745,1810,1746,[1810,3282],[1747,3283],3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3406,3407,3408,3409,[1747,3276],[1744,3277],1808,1745,1746,1808,1810,[1810,3282],[1808,3283],3406,3407,3406,3407,3408,3409,3406,3407,3408,3409,[1744,3341],[1747,3277],1809,1811,1810,1809,[1810,3282],[1745,3346],3406,3407,3406,3407,3408,3409,[1744,3276],[1744,3277],1808,1809,1744,1809,[1810,3282],[1810,3283],3406,3407,3408,3409,[1811,3276],[1808,3277],1811,1747,1746,[1808,3219],3220,0,0,0,0,0,3020,[1810,3021],[1745,3085],1747,[1746,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,88,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[486,414],422,487,423,486,487,487,486,423,423,486,[423,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[1975,4682],1976,1912,[1975,4865],4866,4867,4868,4869,4870,4871,4872,4873,[2422,4998],[2360,4999],[3695,2297,5000],3695,3694,3629,3629,[3695,4546],4547,4548,4611,0,0,0,4681,[3628,4682],3631,3694,[3693,4930],4931,4932,4933,4936,[3692,4998],[3631,4999],[3695,5000],3628,3692,3629,3628,[3694,4995],[3629,4996],[3628,4997],[3628,5000],3693,3630,3628,3692,3692,3693,3693,3695,3628,3631,3629,3631,3692,3694,3631,3631,3630,3693,[3628,4546],4547,4548,4552,[3694,4553],3630,3630,3629,3693,3631,3692,3630,3631,[3629,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3722,3723,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,3155,[1739,3156],1427,1739,1803,1803,1804,1740,1741,1741,1741,1427,1804,1805,1803,1427,[1741,2957],[1740,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1745,3148],1747,1745,[1746,3282],[1808,3346],3347,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3470,3471,3472,3473,3340,[1744,3341],[1808,3277],1809,1811,1810,[1808,3282],[1811,3346],3347,3470,3471,3470,3471,3472,3473,3470,3471,3472,3473,3405,[1809,3148],1745,1810,1811,1808,[1808,3155],3410,3470,3471,3470,3471,3472,3473,3340,[1747,3341],[1746,3277],1811,1808,[1811,3282],[1747,3346],3347,3470,3471,3472,3473,3340,[1747,3341],[1744,3277],1809,1746,[1810,3090],[1809,3026],2961,2958,2961,2958,2961,[1809,3084],[1746,3085],1810,1810,[1744,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[487,477],487,423,486,487,422,422,423,486,423,487,423,487,[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[1976,4746],1912,1911,1975,[1912,4930],4931,4932,4933,4934,4935,4936,[2421,4937],2424,2357,[3629,2361],3694,3629,3693,[3693,4609],4610,4611,0,0,0,0,0,4745,[3694,4746],3628,3629,3692,[3629,4995],[3631,4996],[3629,4997],[3629,5000],3630,3628,3695,3692,3693,3631,3628,3630,3629,3692,3628,3630,[3695,4483],[3693,4484],[3692,4488],3693,3631,3694,3693,3692,3629,3629,3692,3695,3694,3694,3630,3630,[3692,4609],4610,4611,0,4616,4617,[3631,4484],[3692,4487],[3695,4488],3629,3693,3628,3692,3631,[3630,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,3282,3726,3727,3728,3729,3346,3786,3787,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1427,3470],[1805,3471],3340,3341,3277,0,0,0,0,0,0,0,0,3219,[1739,3220],1740,1804,1803,1804,1740,1427,1740,1803,1803,1740,1427,1803,1805,[1805,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],1747,1746,[1810,3155],3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,[1811,3148],1747,1809,1809,[1747,3155],3410,3411,0,0,0,0,0,0,0,0,0,0,3147,[1745,3148],1745,1809,1746,1811,[1809,3219],3220,0,0,0,0,0,0,3404,3405,[1810,3148],1810,1808,[1809,3155],3410,3411,0,0,0,0,3404,3405,[1744,3148],1808,1808,1811,[1747,3090],[1747,3025],[1744,3022],[1745,3025],[1744,3022],[1746,3025],[1745,3085],1747,1747,1810,[1745,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[487,222],423,487,487,422,423,487,486,[486,149],[423,24],[487,28],422,487,487,[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[1911,4682],1911,[1976,2164],[1975,2165],[1912,2166],[1976,2167,4995],[2168,4996],[2421,4997],[2357,4998],[2357,4999],[2422,5000],2357,2421,2424,2422,[3630,2169],3693,3628,[3629,4673],4674,0,0,0,0,0,4808,4809,[3630,4810],3694,3628,3631,3628,3695,3631,3630,3694,3630,3630,3628,3628,3628,3629,3694,3692,3694,3629,[3630,4546],4547,4548,4552,[3692,4487],[3692,4484],[3693,4487],[3694,4484],[3631,4488],3629,3694,3694,3694,3631,3694,3695,3630,[3695,4673],4674,0,0,0,4616,4548,4551,4552,[3631,4553],3692,3631,3695,3630,[3630,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3341,3722,3723,3724,3725,3346,3790,3791,3792,3793,3410,[1741,3850],[1492,3851],3340,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,415,416,417,3346,3410,[1804,3411],1804,1491,[1803,3404],3405,3148,0,0,0,0,0,0,0,0,3090,3091,[1739,3092],1804,1740,1805,1804,1803,1740,1803,1803,1805,1739,1739,[1739,3020],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1744,3148],1809,1810,[1811,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1811,3148],1745,1811,1744,[1809,3219],3220,0,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],1746,1810,1809,1747,[1809,3219],3220,0,0,0,0,0,0,0,3147,[1745,3148],1809,1747,[1744,3219],3220,0,0,0,0,0,0,3147,[1808,3148],1744,1809,1809,1746,1745,1747,1744,1810,1745,1744,1745,1747,1744,[1810,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[487,286],487,422,422,486,422,423,[423,86],87,91,92,[422,93],422,[422,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[1975,4746],1976,[1911,2420],2421,2358,2360,2357,2421,2423,2424,2422,2358,2422,2423,2423,[3694,2425],3631,3694,[3695,4737],4738,0,0,0,0,4808,4872,4873,[3628,4874],3694,3695,3695,3628,3631,3631,3695,3630,3694,3694,3693,3629,3694,3695,[3628,4483],[3692,4484],[3694,4487],[3630,4484],4610,4611,0,4616,4551,4548,4551,4548,4552,[3628,4553],3630,3692,3630,3694,3695,3695,3629,[3631,4737],4738,0,0,0,0,0,0,4616,4617,[3695,4618],3695,3628,3628,[3694,4865],4866,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1805,3856],[1427,3857],3405,3786,3787,3788,3789,3410,[1804,3854],[1492,3855],[1803,3856],[1741,3857],[1739,3858],1739,1805,[1805,3719],3340,3341,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,479,480,481,3410,[1039,1801,3474],1427,1739,1741,1740,[1805,3147],3148,0,0,0,0,0,0,0,0,0,3155,[1804,3156],1805,1804,1804,1740,1804,1805,1804,1741,1427,1803,[1804,3083],3084,3085,0,0,0,0,0,0,0,0,0,3282,3342,3343,3344,3345,3346,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1808,3212],1747,1808,[1747,3090],[1811,3026],3027,0,0,0,0,0,0,0,2957,2958,2961,2962,0,0,0,0,3211,[1809,3212],1745,1809,1808,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,3274,3275,[1809,3276],[1745,3277],1746,1808,[1746,3282],[1811,3283],3284,0,0,0,0,0,0,0,3211,[1811,3212],1809,1808,[1746,3219],3220,0,0,0,0,0,0,3211,[1808,3212],1746,1747,1810,[1811,3282],[1810,3342],[1745,3343],[1745,3342],[1745,3343],[1810,3342],[1744,3277],1811,1744,1745,[1745,3090],[1811,3026],2958,2961,2961,2961,2958,2961,2961,2958,3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[422,93],[423,3715],[422,3716],[423,3717],486,[423,149],150,151,0,156,157,[423,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[1976,4810],[1912,2229],2360,2422,2421,2423,[1975,2485],2359,2422,2360,2359,2424,2360,2422,2424,2424,[3692,2232],[3693,4546],4547,4611,0,0,0,0,4681,4936,[3695,4937],3695,3694,3693,3694,3692,3693,3628,3630,3693,3693,3629,3694,3629,3695,[3631,4546],4547,4548,4551,4548,4611,0,0,0,0,0,0,0,4616,4617,[3694,4618],3692,3629,3693,3628,3693,[3630,4546],4547,4611,0,0,0,0,0,0,0,4745,[3628,4746],3628,3693,3631,3628,[3631,4930],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3344,3345,3346,3410,[1739,3732],1427,1741,[1427,3849],[1741,3850],[1427,3851],[1739,3852],[1739,3853],[1740,3732],1739,1740,1427,1805,1739,1741,1739,1740,[1741,3784],3405,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[980,3470],[1103,543],[916,544],[916,545],[1039,3474],[1103,1674],[916,1866],[1040,1867],1741,1740,[1803,3211],3212,0,0,0,0,0,0,0,0,0,3219,[1805,3220],1804,1741,1427,1739,1739,1803,1427,1805,1739,1741,[1741,3147],3148,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3408,3409,3410,[1739,3472],[1804,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1810,3148],1811,1747,1747,[1746,3090],[1744,3091],2961,2958,2958,2961,2958,2961,2958,[1809,3021],[1745,3022],[1808,3025],[1746,3091],3092,0,0,0,3147,[1745,3148],1746,1744,1745,[1811,3090],[1810,3026],3027,0,0,0,0,0,0,0,0,0,0,3339,3340,[1809,3341],[1810,3342],[1811,3343],[1747,3346],3347,3348,0,0,0,0,0,0,0,3147,[1744,3148],1809,1809,[1810,3155],3156,0,0,0,0,0,0,3147,[1744,3148],1809,1745,[1747,3282],[1811,3346],3406,3407,3406,3407,3214,[1809,3276],[1809,3277],1811,1746,1808,[1809,3090],[1747,3022],[1746,3025],[1744,3025],[1809,3025],[1745,3022],[1811,3025],[1744,3025],[1810,3022],[1745,3091],3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,3779],[423,3780],[422,3781],[423,24],87,151,0,0,0,156,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4872,4873,[2421,4874],2358,2421,2357,2424,[1975,2295],1911,[1975,2293],2422,2360,2358,2358,2424,2422,2424,2424,[2357,4609],4610,4611,0,0,0,0,0,4681,[3695,4682],3629,3692,3693,3695,3693,3631,3630,3631,3629,3631,3693,3628,3629,3693,[3692,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3694,4682],3693,3629,3630,3694,[3693,4609],4610,4611,0,0,0,0,0,0,0,4808,4809,[3692,4810],3692,3694,3628,3630,3693,[3629,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3408,3409,3410,[1492,3795],1739,1805,1491,1803,1741,1804,1804,1804,1740,1741,1740,1741,1741,1427,1805,1740,1740,1805,[1739,3849],[1803,3850],[1427,3851],3340,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1103,1613,3411],980,980,1103,915,1040,1039,1103,1104,[916,1865],[915,1866],[1867,3147],3148,0,0,0,0,0,0,0,0,0,3090,3026,[1803,3027],1741,1804,1427,1740,1805,1805,1804,1741,1805,[1805,3211],3212,0,0,0,0,0,0,0,0,3282,3346,3347,[1803,3470],[1741,3471],[1739,3472],[1805,3473],[1739,3474],1740,1741,[1739,3404],3405,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],1809,1747,1811,1809,[1809,3090],[1809,3025],[1810,3022],[1747,3022],[1745,3025],[1810,3022],[1810,3025],[1810,3022],[1808,3085],1810,1810,[1809,3155],3156,0,0,0,3211,[1746,3212],1745,1808,1810,1744,[1809,3090],[1808,3091],2961,2958,2961,2958,2961,2958,2961,2958,2962,0,0,3404,3405,3406,3407,3410,3411,0,0,0,0,0,0,0,0,3211,[1811,3212],1744,1747,[1811,3090],[1808,3026],3027,0,0,0,0,3020,[1809,3021],[1810,3085],1811,1747,[1808,3219],3410,3470,3471,3470,3471,3470,3340,[1745,3341],[1810,3277],1810,1746,1810,1746,1746,1808,1810,1745,1810,1746,1808,[1744,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,3843,3844,3845,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4932,4933,4936,[2423,4937],2421,2358,2357,2359,[1976,2295],1912,1911,1911,[1976,2420],2423,2423,2423,2423,2421,[1976,2487],[1911,2488],[2359,4673],4674,0,0,0,0,0,0,4745,[3693,4746],3693,3694,3694,3692,3692,3629,3692,3631,3694,3695,3631,3628,3694,3631,[3694,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3629,4553],3629,3630,3692,[3628,4673],4674,0,0,0,0,0,4808,4870,4871,4872,4873,[3694,4874],3629,3628,3628,3694,3693,3630,[3693,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1741,3850],[1740,3851],[1804,3858],1739,1739,1427,1803,1741,1739,1803,1803,1804,1739,1803,1803,1740,1740,1741,1491,1804,1739,1741,1805,1427,1427,[1805,3719],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1805,3220],1740,[979,1546],[1040,1547],[1104,1548],[1104,1549],[1040,1612],1040,916,1103,1103,[916,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,3092],1805,1804,1740,1803,1805,1740,1803,1805,[1805,3147],3148,0,0,0,0,0,0,0,0,3155,3410,[1741,3411],1740,1804,1492,1740,1427,1804,1804,[1805,3468],[1803,3469],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[1744,3276],[1745,3277],1747,1808,1809,1810,1744,1746,1810,1745,1746,1809,1811,1745,1745,1746,[1746,3219],3220,0,0,0,3147,[1745,3148],1746,1746,1744,1810,1811,[1809,3090],[1746,3025],[1747,3022],[1810,3025],[1809,3022],[1810,3025],[1745,3022],[1744,3025],[1810,3022],[1746,3026],2962,0,0,3469,3470,3471,3474,0,0,0,0,0,0,0,0,3020,[1747,3021],[1747,3085],1811,1744,1745,[1746,3090],[1809,3091],2958,2961,2958,2961,[1811,3084],[1746,3085],1747,1809,1747,[1745,3219],3220,0,0,0,0,0,3404,3405,[1746,3148],1746,1744,1809,[1808,3282],[1810,3342],[1810,3343],[1746,3344],[1746,3345],[1744,3277],1744,1745,[1808,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[2360,4996],[2360,4997],[2422,5000],2423,2357,2359,2360,[1975,2233],1976,1912,1976,[1976,2230],2422,2423,2360,2357,[1912,2485],[1976,2489],1976,1976,[1975,4737],4738,0,0,0,0,0,0,4681,[3694,4682],3628,3628,3692,3631,3628,3694,3692,3693,3692,3695,3629,3629,3629,3628,[3630,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3631,4618],3629,3695,[3630,4737],4738,0,0,0,0,4808,4809,4934,4935,4936,[3695,4937],3694,3629,3693,3693,3629,3695,3628,[3628,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[1427,3795],1740,1804,1741,1427,1740,1427,1804,1427,1805,1804,1803,1740,1740,1741,1739,1741,1739,1741,1427,1427,1427,1804,1805,1804,1804,1739,[1805,3784],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1805,3027],1739,1741,1804,1805,[979,1614],1040,1040,1103,[1103,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1803,3156],1803,1427,1804,1427,1803,1805,1427,1739,[1803,3211],3212,0,0,0,0,0,0,0,0,3219,[1739,3220],1740,1805,1740,1739,1805,1741,1805,1803,1741,1803,[1804,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1745,3276],[1809,3277],1744,1744,1811,1810,1747,[1810,3282],[1745,3342],[1745,3343],[1811,3344],[1808,3345],[1811,3277],1809,1746,[1811,3219],3220,0,0,0,3211,[1811,3212],1811,1809,1811,1810,1744,1810,1809,1744,1810,1811,1811,1746,1811,1746,[1747,3090],[1808,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,3020,[1744,3021],[1809,3085],1746,1811,1746,1811,1745,[1809,3090],[1809,3022],[1811,3025],[1746,3022],[1746,3025],[1745,3085],1747,1810,1744,[1808,3282],[1811,3283],3156,0,0,0,0,0,0,3211,[1746,3212],1744,1745,[1809,3282],[1809,3283],3406,3407,3408,3409,[1811,3341],[1810,3277],1810,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[2424,4937],2357,2359,2423,2421,2422,2360,2357,[1975,2361],1975,[1975,2229],[1976,2165],2422,2423,2359,2421,[1911,2425],1912,1911,1912,[1976,4546],4547,4611,0,0,0,0,0,0,4745,[3631,4746],3693,3631,3628,3631,3629,3630,3694,3695,3693,3695,3628,3693,3631,3692,[3631,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3631,4682],3628,3693,[3628,4801],4802,4803,0,0,4808,4809,4873,[3628,4998],[3630,4999],[3693,5000],3630,3631,3628,3630,3631,3628,3631,3693,[3630,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16933,16868,16933,16933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1805,3858],1740,1805,1805,1805,1740,1804,1739,1803,1739,1740,1741,1805,1739,1739,1805,1805,1803,1803,1427,1427,1428,1427,1427,1739,1739,1805,1805,1492,[1427,3527],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1739,3092],1803,1804,1805,[980,1678],980,915,1104,[1104,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3220],1804,1804,1804,1805,1803,1740,1804,[1740,3020],3021,3085,0,0,0,0,0,0,0,0,3090,3026,[1804,3027],1491,1427,1804,1739,1805,1804,1427,1803,1427,1741,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3340,[1810,3341],[1810,3277],1809,1746,1745,[1746,3282],[1809,3283],3406,3407,3408,3409,[1746,3341],[1746,3342],[1745,3343],[1808,3283],3284,0,0,0,3147,[1744,3148],1810,1811,1746,1745,1745,1809,1809,1747,1808,1810,1744,1809,1810,1809,1811,[1747,3090],[1808,3091],2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,[1745,3084],[1745,3085],1747,1744,[1747,3282],[1811,3342],[1810,3343],[1808,3277],1747,1809,1745,1810,1808,1747,1811,1744,[1747,3282],[1746,3346],3347,3348,0,0,2957,2958,2961,2958,[1747,3084],[1744,3085],1809,[1747,3282],[1744,3346],3347,3470,3471,3472,3473,3405,[1744,3148],1811,[1809,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[2423,4746],2422,2357,2423,2359,2357,2357,2421,2424,2358,[1911,2165],2359,2424,2360,2360,2422,2423,2423,[1912,2232],[1911,4483],[1912,4484],4610,4611,0,0,0,0,0,0,0,4616,4552,[3631,4553],3694,3692,3628,3692,3629,3628,3694,3694,3694,3694,3694,3694,3694,3695,[3631,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3695,4746],3629,3695,[3630,4865],4866,4867,4868,4869,4872,4873,[3631,4937],3629,3630,3695,3628,3695,3630,3631,3628,3628,3630,[3629,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16802,16803,[16932,16877],16802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1805,3540],1805,1739,1739,1804,1740,1739,1804,1741,1739,1491,1804,1740,1740,1739,1805,1741,1427,1804,1491,1805,1805,1739,1804,1739,1740,1804,1804,1741,1741,[1739,3591],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1740,3156],1803,1741,1804,[980,1742],915,916,980,[1039,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1805,3156],1804,1804,1741,1739,1803,1803,[1805,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,3090,3091,[1804,3092],1803,1427,1804,1741,1804,1805,1741,1427,[1740,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,[1746,3148],1745,1811,[1746,3282],[1744,3346],3347,3470,3471,3472,3473,3405,3406,3407,3347,3348,0,0,0,3211,[1811,3212],1811,1809,1745,1810,1747,[1747,3282],[1747,3342],[1808,3343],[1745,3344],[1809,3345],[1744,3342],[1745,3343],[1808,3344],[1811,3345],[1747,3277],1808,[1747,3090],[1811,3022],[1810,3025],[1746,3022],[1808,3025],[1809,3022],[1811,3025],[1747,3022],[1747,3025],[1746,3022],[1747,3025],[1810,3022],[1808,3025],[1747,3085],1746,1746,[1747,3282],[1745,3283],3406,3407,[1808,3276],[1747,3277],1808,1810,1746,1811,1746,1810,[1808,3282],[1746,3346],3410,3411,0,0,3020,[1809,3021],[1744,3022],[1745,3025],[1745,3022],[1745,3085],1810,1744,[1811,3219],3410,3411,0,0,0,0,3147,[1746,3148],1746,[1747,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[2360,4553],2424,2360,2424,2359,2421,2359,2357,2422,2422,2422,2359,2358,2423,2423,2360,2358,[2422,4546],4547,4548,4611,0,0,0,0,0,0,0,0,0,4616,4617,[3628,4618],3695,3695,3694,3629,3629,3631,3631,3694,3694,3631,3692,3628,3692,3630,[3630,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3695,4682],3628,3631,3692,[3695,4930],4931,4932,4933,4936,[3695,4937],3695,3629,3693,3629,3628,3631,3695,3694,3692,3693,[3629,4546],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16867,16867,16941,16867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1741,3604],1803,1428,1739,1805,1805,1739,1741,[1739,3020],[1804,2962],1804,1803,1740,1804,1740,1804,1804,1805,1427,1739,[1740,2957],[1739,2961],[1739,2962],1805,1427,1427,1739,1427,1492,1805,[1739,3655],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1804,3156],1741,1804,1428,[916,1677],1040,[1039,1545],[1040,1546],[1547,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1741,3220],1741,1427,1804,1739,1803,1741,[1739,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1803,3156],1739,1740,1739,1740,1741,1740,[1741,2957],[1740,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1745,3148],1808,1744,[1810,3219],3410,3411,0,0,0,0,3469,3470,3471,3474,0,0,0,0,3147,[1808,3148],1809,1809,1746,1810,[1809,3282],[1810,3283],3406,3407,3408,3409,3406,3407,3408,3409,[1745,3276],[1808,3277],1747,1745,1810,1745,1809,1810,1746,1811,1746,1809,1744,1809,1747,1808,1811,[1746,3282],[1744,3346],3347,3470,3471,3340,[1809,3341],[1808,3342],[1808,3343],[1747,3344],[1747,3345],[1745,3342],[1811,3343],[1744,3346],3410,3474,0,0,3083,[1809,3084],[1744,3085],1745,1747,1747,1745,1745,1811,[1746,3155],3156,0,0,0,0,0,3211,[1745,3212],1810,[1808,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[2421,4553],2422,2421,[1911,2485],2357,2423,2424,2423,2422,[2423,4291],[2359,4292],[2424,4293],2357,[2360,4483],[2423,4484],[2360,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3630,4682],3693,3630,3695,3631,3629,3695,3631,3629,[3692,4483],[3631,4484],[3631,4487],[3629,4488],3695,[3693,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3629,4746],3629,3694,3631,3628,[3631,4995],[3695,4996],[3631,4997],[3628,5000],3630,3630,3695,3630,3693,3694,3629,3693,3628,3693,[3629,4546],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1427,3732],1739,1805,1803,1804,1739,1741,[1740,3083],3084,3026,[1740,3092],1740,1428,1739,1805,1741,1427,1803,1803,[1805,3020],3021,3025,3026,[1491,3027],1739,1741,1427,1427,1741,1804,[1803,3719],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1804,3220],1739,1741,[1104,1676],979,1039,[1040,1609],1804,[1741,3339],3340,3341,3342,3343,3277,0,0,0,0,0,0,0,0,3282,3283,[1741,3284],1803,1804,1491,1804,1739,1427,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1741,3220],1740,1805,1740,1739,1741,[1739,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,410,411,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17351,17352,17353,17352,17353,17354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1808,3212],1747,1810,[1809,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],1745,1809,1810,[1809,3282],[1744,3346],3347,3470,3471,3472,3473,3470,3471,3472,3473,3340,[1808,3276],[1811,3277],1746,1747,1745,1808,1745,1811,1747,1808,1808,1809,1744,1810,1745,1808,[1744,3155],3410,3411,0,0,3404,3405,3406,3407,3408,3409,3406,3407,3410,3474,0,0,0,3211,[1746,3212],1810,1747,1746,1809,1746,1809,1811,[1808,3219],3220,0,0,0,0,0,3147,[1747,3148],1811,[1811,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[2360,4487],[1912,2295,4488],1976,[1976,2484],[1911,2487],2359,[2424,4483],[2423,4484],[2422,4355],[2424,4356],[2359,4357],[2421,4487],4547,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3695,4746],3629,3693,3693,3629,3693,3692,3631,[3694,4546],4547,4548,4551,4552,[3693,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3693,4553],3628,3695,3630,3693,3631,3692,3693,3692,[3631,4483],[3631,4484],[3628,4488],3629,3694,3628,[3631,4483],[3630,4484],[3695,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16738,16739,16674,16675,16739,[16675,17069],16738,16674,16675,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1427,3795],1803,1427,1741,1427,1805,1805,1741,[1741,3147],3148,3155,[1427,3540],1740,1740,1427,1741,1740,[1428,2957],[1805,2958],[1739,2961],3084,3085,0,3090,3091,[1740,3092],1741,1741,1805,1739,[1427,1178],1740,[1739,3784],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1741,3027],[980,1614],979,916,916,[1103,1673],1803,1739,[1804,3404],3405,3406,3407,3341,3277,0,0,0,0,0,0,3282,3346,3347,[1739,3348],1739,1741,1803,1740,1740,1427,[1741,3147],3148,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1740,3284],1805,1739,1740,1803,[1739,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,472,[473,19526],[474,19527],475,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17415,17416,17417,17417,17417,17418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1747,3148],1745,1810,[1811,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1746,3148],1746,1811,1810,[1810,3155],3410,3411,0,0,0,0,0,0,0,0,3404,3340,[1747,3341],[1747,3342],[1810,3343],[1746,3344],[1810,3345],[1747,3342],[1810,3343],[1746,3344],[1746,3345],[1811,3277],1811,1809,1809,1810,1745,[1744,3219],3220,0,0,0,0,3469,3470,3471,3472,3473,3470,3471,3348,0,0,0,0,3275,[1745,3276],[1744,3277],1747,1744,1745,1747,1808,1744,[1745,3090],[1809,3026],3027,0,0,0,0,3211,[1809,3212],1810,[1809,3090],[1744,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4552,[1911,4553],1976,1976,[1975,2420,4546],4547,4548,4419,4420,4421,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3629,4810],3630,3630,3695,3692,3695,3692,[3692,4609],4610,4611,0,0,4616,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3630,4487],[3629,4484],[3692,4488],3692,3693,3630,3695,[3693,4546],4547,4548,4552,[3694,4553],3631,[3694,4546],4547,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16738,16738,16739,16739,16674,16674,16739,16675,16674,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3604],1805,1428,1741,1740,1805,1740,1805,1804,[1427,3211],3212,3219,[1740,3604],1805,1740,1739,1427,[1803,3083],3021,3022,3025,3085,0,0,0,3155,[1287,3156],[1740,1288],[1427,1289],[1741,1290],[1427,1291],[1805,1415],[1427,1416],[1427,1417],[1418,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1039,1678,2958],[915,2961],[915,2962],1039,[916,1737],1803,1804,1740,[1803,3469],[1805,3470],[1805,3471],3405,3148,0,0,0,0,0,0,3155,3410,[1803,3411],1491,1740,1804,1427,1803,1805,1803,[1804,3211],3212,0,0,0,0,0,0,3282,3342,3343,3344,3345,3346,3347,[1804,3348],1803,1740,1804,1804,[1803,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[486,536,19589],[422,537,19590],[422,538,19591],[423,539,19592],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17351,17352,17479,17481,17480,17480,17481,17482,17483,17484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1808,3212],1810,1809,[1811,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],1747,1808,1810,[1809,3090],[1745,3026],2958,2961,2958,2961,2958,2961,2962,0,0,0,3404,3405,3406,3407,3408,3409,3406,3407,3408,3409,[1811,3276],[1746,3277],1810,1810,1808,1745,[1746,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1809,3341],[1747,3342],[1809,3343],[1744,3277],1811,1745,1746,1808,[1745,3090],[1808,3091],3092,0,0,0,3147,[1809,3148],1745,1808,[1810,3090],[1808,3091],2961,2958,2961,2961,2958,2962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8632,8633,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[1912,4484],[1911,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3628,4874],3692,3628,3629,3629,3695,3694,[3695,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4548,4552,[3692,4484],[3692,4487],[3692,4484],[3693,4487],4610,4611,0,4616,4617,[3695,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16739,16739,16995,16997,16997,16996,16996,16998,16674,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1739,3027],1741,1803,1739,1803,1804,1805,[1427,3020],3021,3085,3155,[1427,3540],1427,1805,1427,1491,[1803,3527],3148,0,0,0,0,0,0,3155,[1286,3156],1286,2310,1286,1286,1286,1286,1286,[1286,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3026,[916,1610,3027],1740,1804,1804,1741,1804,1804,1740,[1805,3147],3148,0,0,0,0,0,0,3219,[1739,3220],1427,1803,1804,1739,1805,1740,1740,1741,[1805,3275],3276,3277,0,0,0,0,3282,3283,3406,3407,3408,3409,3410,[1803,3411],1741,1741,1741,1803,1805,[1804,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[422,222],[422,19653],[423,19654],[423,19655],[486,19656],[486,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17415,18315,17543,17544,17545,18312,17673,17546,18315,17548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[1809,3276],[1808,3277],1809,[1809,3090],[1744,3026],3027,0,0,0,0,0,0,0,0,0,0,0,3020,[1744,3021],[1745,3085],1809,1809,1745,1808,[1811,3090],[1746,3022],[1808,3025],[1808,3022],[1746,3025],[1809,3022],[1746,3025],[1746,3026],3027,0,0,0,3469,3470,3471,3472,3473,3470,3471,3472,3473,3340,[1810,3276],[1745,3277],1810,1745,1747,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,3406,3407,[1744,3276],[1745,3277],1810,1810,1811,1809,[1810,3155],3156,0,0,0,3211,[1808,3212],1810,1745,1747,[1810,3090],[1809,3025],[1811,3022],[1744,3025],[1808,3025],[1811,3022],[1811,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8696,8697,8629,8633,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3695,4937],3694,3695,3629,3695,3629,3695,3630,[3693,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4548,4551,4611,0,0,0,4616,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16738,16675,17059,17060,17060,16936,17060,17062,16738,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,1951,3723,3722,3723,3657,0,0,0,3090,3091,[1427,2958],[1427,2961],[1741,3521],[1740,3522],[1803,3523],[1804,2961],3084,3085,0,3219,[1803,3604],1740,1739,1739,1805,[1803,3591],3212,0,0,0,0,0,0,3219,[1351,3220],[1739,1352],[1805,1353],[1739,1354],[1804,1355],1286,2246,[1286,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1805,3092],1739,1427,1741,1803,1740,1740,[1740,3211],3212,0,0,0,0,0,0,3155,[1805,3156],1427,1741,1427,1739,1740,1427,1739,1805,[1741,3339],3340,3341,3342,3343,3344,3345,3346,3347,[1739,3470],[1805,3471],[1741,3472],[1805,3473],[1804,3474],1492,1805,1741,1804,1741,1428,[1741,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],[487,19717],[486,19718],[486,19719],[487,19720],[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17477,17478,17479,17480,17480,17545,17545,17544,17672,17481,[17481,20424],17548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1746,3276],[1809,3277],1808,[1808,3090],[1811,3091],2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,[1744,3084],[1744,3085],1809,1744,1811,1744,1808,1811,1810,1744,1744,1744,1809,1747,[1746,3090],[1810,3091],3092,0,0,0,0,0,0,0,0,0,0,0,3404,3340,[1744,3341],[1744,3277],1811,1809,[1808,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3469,3470,3471,3340,[1810,3341],[1746,3277],1808,1746,1747,[1746,3219],3220,0,0,0,3147,[1810,3148],1746,1809,1747,1746,1808,1745,1811,1809,1745,[1747,3090],[1745,3091],3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8632,8633,8634,8635,[13800,9296,8760],[13799,9233,8761],8693,8502,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3628,4682],3629,3694,3630,3629,3695,3628,3692,[3694,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16674,16738,17059,17061,17060,17060,17061,17062,16675,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3730,2015,3787,3786,3787,3721,3722,3723,3657,0,3090,3022,3025,3585,3586,3587,3025,3085,0,3666,3667,[1739,3668],1741,1739,1428,1427,[1427,3655],3656,3657,0,0,0,0,0,3155,[1427,3156],1803,[1805,1178],1803,1740,[1803,1994],[1286,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1740,3156],1740,1804,1739,1803,1739,1805,[1803,3275],3276,3277,0,0,0,0,0,3219,[1739,3220],1741,1805,1427,1427,1803,1492,1427,1427,1427,[1804,3404],3405,3406,3407,3408,3409,3410,[1740,3411],1741,1740,1427,1804,1427,1427,1427,1740,1427,1805,1803,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[486,350],423,487,423,486,[487,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17541,17542,17543,17608,17609,17545,17672,18247,17609,17608,17672,17548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3340,[1746,3276],[1808,3277],1811,[1809,3090],[1746,3022],[1809,3025],[1745,3022],[1810,3025],[1744,3022],[1810,3025],[1745,3022],[1811,3025],[1809,3022],[1747,3025],[1808,3022],[1746,3085],1746,1808,1747,[1744,3282],[1746,3342],[1747,3343],[1745,3342],[1810,3343],[1809,3344],[1809,3345],[1745,3277],1808,1808,1810,[1811,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,[1808,3148],1746,1744,[1745,3090],[1808,3026],3027,0,0,0,0,0,0,0,0,2957,2958,2961,2962,0,0,0,0,0,0,0,0,3404,3405,[1811,3148],1746,1744,1811,[1809,3219],3220,0,0,0,3211,[1747,3212],1809,1810,1809,1808,1746,1744,1810,1811,1745,1746,[1745,3090],[1745,3091],3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8634,8694,8695,8696,8697,8698,[13799,9297,8699],[13800,9232,1517],[13800,9233,1388],[13800,9232,1442,8757],[1633,8761],[1634,8758],[1633,8759],8628,8629,8630,8631,8632,8633,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3692,4746],3693,3628,3629,3693,[3628,4483],[3692,4484],[3629,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16739,16675,17059,17060,17061,17061,17061,17062,16739,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,3794,[1427,2079],[1427,3851],[1804,3850],[1739,3851],3785,3786,3787,3656,3657,3666,3722,3723,3657,0,0,0,0,3666,3667,3731,[1739,3732],1741,1804,1804,1804,[1740,3719],3720,3592,0,0,0,0,0,3219,[1804,3220],1741,1740,1739,1804,1803,[1739,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3220],1491,1804,1427,1803,1739,1427,[1805,3339],3340,3341,3277,0,0,0,0,3090,3026,[1739,3027],[1739,3028],1803,1804,1741,1804,1741,1804,1803,1739,[1740,3469],[1805,3470],[1739,3471],[1741,3472],[1741,3473],[1804,3474],1805,1427,1804,1804,1805,1741,1740,1739,1739,1803,1804,[1740,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,410,411,410,411,412,413,[423,414],423,422,423,486,[486,405],406,407,408,409,410,411,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17541,17480,17481,17672,17545,17672,17545,17672,17609,17610,17611,17612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3340,[1811,3341],[1810,3277],1744,1808,1744,1809,1809,1808,1744,1746,1747,1811,1745,1811,1811,1745,1811,[1811,3282],[1811,3283],3406,3407,3406,3407,3408,3409,[1809,3276],[1746,3277],1810,1809,[1744,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1810,3148],1810,1747,1809,[1746,3090],[1809,3026],3027,0,0,0,0,0,0,3020,[1746,3021],[1745,3022],[1747,3025],[1744,3026],3027,0,0,0,0,0,0,0,0,3211,[1744,3212],1808,1810,[1745,3282],[1745,3283],3284,0,0,0,3147,[1810,3148],1809,1745,1810,[1745,3282],[1747,3342],[1811,3343],[1746,3277],1744,1811,1745,1808,[1745,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8632,8633,8634,8694,8695,8698,[1634,8758],[1572,8759],[1569,8760],[1635,8761],[13736,9297,1443,8762],[13800,9232,1392],[13799,9298,1442],[13800,9232,1377],1636,1635,1633,[1635,1387],[1572,8692],8693,8694,8695,8696,8697,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3693,4553],3630,3631,[3628,4546],4547,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16738,16674,17123,17125,17124,17124,17125,17126,16674,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,[1805,3540],1492,1805,1804,1739,[1428,3849],[1804,3850],[1427,3851],3720,3721,3730,3786,3787,3721,3726,3727,3728,3729,3730,3731,[1803,3795],1428,1803,1427,1427,1805,1804,[1804,3527],3528,0,0,0,0,0,3090,3026,[1740,3092],1804,1804,1804,1741,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3342,3343,3277,3282,3283,[1741,3284],1803,1492,1741,1740,1740,1803,1803,[1740,3404],3405,3148,0,0,0,0,0,3090,3091,[1740,3092],1739,1803,1805,1739,1741,1803,1427,1740,1804,1805,1805,1803,1741,1739,1805,1741,1739,1739,1739,1739,1803,1804,1805,[1739,2957],[1805,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,472,473,474,475,474,475,476,[422,477],423,423,487,487,487,423,[423,470],471,472,473,474,475,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17541,18247,17673,17608,17609,18247,17672,17545,17545,17674,17675,17676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2957,2958,2961,2958,2961,3092,0,0,3404,3405,[1745,3148],1744,1809,1746,1811,[1808,3282],[1744,3342],[1811,3343],[1809,3344],[1746,3345],[1747,3342],[1810,3343],[1746,3277],1809,1811,[1744,3282],[1810,3346],3347,3470,3471,3470,3471,3472,3473,3340,[1811,3341],[1744,3277],1811,[1745,3090],[1746,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1811,3212],1810,1809,1809,1746,[1747,3090],[1744,3091],2961,2958,2961,2958,2958,2958,[1746,3084],[1745,3085],1808,1810,[1810,3090],[1811,3091],3092,0,0,0,0,0,0,0,3147,[1810,3148],1744,[1744,3282],[1809,3346],3347,3348,0,0,0,3211,[1811,3212],1811,1808,[1808,3282],[1744,3283],3406,3407,[1809,3276],[1744,3277],1747,1809,1808,[1809,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8696,8697,8698,[1363,8758],[1364,8759],[1299,1632,8762],[1572,1387],1633,1634,1634,1572,[13799,9232,1377],1636,1636,1636,1572,1570,1633,1571,[1571,8757],[1633,8758],[1636,8759],[1572,8760],[1634,8761],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3694,4484],[3628,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16738,16675,16738,16674,16738,16739,16739,16674,16738,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3667,[1803,3668],1805,1739,1805,1805,1803,1492,1804,[1740,3784],3785,3794,[1804,3850],[1740,3851],3785,3790,3791,3792,3793,3794,[1803,3795],1739,1427,1803,1803,1427,1803,1741,[1803,3591],3592,0,0,0,0,0,0,3155,[1739,3156],1805,1739,1427,1803,[1804,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3406,3407,3341,3346,3347,[1805,3348],1804,1739,1739,1427,1740,1741,1803,1803,[1740,3147],3148,0,0,0,0,0,0,3155,[1805,3156],1803,1805,1804,1740,1741,1803,1739,1428,1741,1803,1803,1741,1427,1739,1804,1739,1805,1805,1428,1740,1739,1805,[1805,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[423,536],[486,537],[486,538],[487,539],[487,538],[486,539],[422,540],423,487,423,422,422,423,423,486,[422,535],[422,536],[422,537],[486,538],[422,539],[487,536],[487,537],406,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17477,17352,17353,17483,17483,17484,17605,17606,17606,17606,17607,17673,17672,17610,17611,17612,0,17351,17352,17353,17354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3020,[1811,3021],[1810,3022],[1744,3025],[1811,3022],[1745,3025],[1809,3091],3092,0,0,3147,[1747,3148],1745,1744,1808,[1808,3282],[1746,3283],3406,3407,3408,3409,3406,3407,[1744,3341],[1810,3277],1809,[1810,3155],3410,3411,0,0,0,0,0,0,3404,3405,[1744,3148],1745,1746,[1810,3090],[1809,3091],2961,2958,2961,2958,2961,2958,2961,2958,2962,0,0,0,3147,[1745,3148],1810,1811,1808,1746,1744,[1808,3090],[1809,3025],[1746,3022],[1744,3025],[1810,3022],[1747,3022],[1811,3022],[1811,3085],1811,1811,1808,1810,[1809,3155],3156,0,0,0,0,0,0,0,3211,[1747,3212],1745,[1747,3155],3410,3411,0,0,0,0,3147,[1745,3148],1745,[1747,3282],[1808,3346],3347,3470,3471,3340,[1744,3341],[1810,3277],1809,1809,[1746,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[1364,8758],[1300,8759],[1364,8760],[1364,8761],[1364,8762],1300,[1300,1387],[1364,1505],1636,1634,1635,1636,1636,1634,1571,1633,1571,1636,1569,1636,1570,[13799,9297,1697],[1569,1387],1569,1570,[1570,1387],[1571,8692],8693,8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16675,16739,16675,16739,16675,16675,16738,16739,16739,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,3731,[1805,3732],1741,1804,1805,1804,1804,1803,1739,1741,[1740,3849],[1805,3858],1739,1803,[1739,3849],[1740,3854],[1427,3855],[1427,3856],[1804,3857],[1427,3858],1427,1803,1741,1804,1428,1427,1739,[1804,3020],3021,3085,0,0,0,0,0,0,3155,[1739,3156],1805,1740,1741,1740,[1805,3339],3340,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3347,[1805,3470],[1803,3471],[1805,3470],[1804,3471],3405,3410,[1741,3411],1741,1805,1805,1803,1805,1427,1803,1740,1427,[1804,3211],3212,0,0,0,0,0,0,3219,[1803,3220],1741,1804,1803,1739,1739,1427,1805,1805,1739,1803,1804,1804,1739,1740,1803,1804,1804,1741,1739,1804,[1805,2957],[1739,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,476,[422,477],486,487,422,423,422,423,487,487,487,423,422,423,423,487,487,422,487,486,423,422,423,486,[422,470],406,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17541,17416,17417,18315,17547,17418,17669,17670,17670,17670,17671,17672,17608,17674,17675,17676,0,17415,17416,18315,17418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2957,2958,2961,2958,2961,2962,0,0,0,0,3083,[1808,3084],[1811,3085],1810,1811,1811,1745,[1809,3219],3220,0,0,3211,[1746,3212],1745,1808,[1808,3282],[1746,3346],3347,3470,3471,3472,3473,3470,3471,3405,[1744,3148],1744,[1810,3219],3220,0,0,0,0,0,0,0,0,3147,[1809,3148],1745,1744,1809,[1810,3090],[1746,3025],[1809,3022],[1808,3025],[1811,3022],[1745,3025],[1809,3022],[1809,3025],[1747,3022],[1747,3026],3027,0,0,3211,[1746,3212],1810,1747,1810,1811,1811,1809,1808,1810,1744,1747,1745,1744,1747,1744,1746,1745,1745,[1808,3219],3220,0,0,0,0,0,0,3020,[1747,3021],[1745,3085],1745,[1745,3219],3220,0,0,0,0,0,3211,[1810,3212],1809,[1809,3155],3410,3411,0,0,3404,3405,[1811,3341],[1747,3277],1744,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,8698,[1300,8699],[1363,1517],1364,1300,1364,1363,1364,1300,1300,[1364,1632],1571,1634,[1572,8245],[1635,8246],[1572,8249],[1570,8250],[1572,1386],1635,[1569,1386],[1572,8245],[1636,8249],[13800,9234,1507,8250],[13799,9296],[13800,9234,1696],1570,1633,1571,[1569,1392],[1636,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16676,16746],16677,16678,16738,16675,16738,16675,16674,16675,16679,16680,16681,16738,16738,16739,16675,16738,16738,16675,16739,16674,16739,16676,16677,16678,17003,17004,16802,16802,17003,17004,16675,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1805,3604],1805,1739,1427,1740,1804,1427,1739,1427,1803,1427,1427,1740,1805,1740,1741,1805,1427,1741,1741,1740,1804,1803,1804,1739,[1805,2957],[1739,2958],3084,3085,0,0,0,0,0,0,0,3219,[1427,3220],1804,1804,1805,1740,1741,[1428,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1739,3411],1741,1803,1805,1805,[1741,3469],[1805,3474],1741,1427,1427,1741,1740,1741,1427,1428,1805,1804,[1741,3275],3276,3277,0,0,3282,3342,3343,3283,[1804,3284],1427,1740,1803,1427,1805,1740,1740,1427,1741,1739,1739,1803,1427,1739,1739,1427,1741,1805,1427,[1741,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[487,477],486,486,487,422,487,486,486,423,487,423,422,423,422,423,487,423,486,422,486,422,423,422,486,487,[423,470],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17541,17481,17481,17481,17480,17418,0,0,0,0,17541,17672,17673,17482,17483,17352,17353,17479,[17480,20424],17480,17482,17352,17353,17484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3083,[1746,3084],[1744,3022],[1746,3025],[1809,3022],[1810,3025],[1810,3026],3092,0,0,0,3147,[1744,3148],1809,1746,1811,1810,[1747,3282],[1747,3283],3284,0,0,3147,[1810,3148],1811,1747,[1809,3155],3410,3411,0,0,0,0,0,0,3147,[1811,3148],1745,[1747,3219],3220,0,0,0,0,0,0,0,0,3211,[1745,3212],1808,1808,1746,1746,1745,1745,1744,1811,1744,1747,1746,[1744,1954],[1808,3090],[1811,3091],3092,0,3147,[1808,3148],1811,1810,1744,1744,1810,[1746,3282],[1745,3342],[1808,3343],[1744,3344],[1746,3345],[1809,3342],[1747,3343],[1811,3277],1745,1809,1810,1746,[1744,3219],3220,0,0,0,0,0,3083,[1808,3084],[1810,3085],1808,[1811,3282],[1809,3283],3284,0,0,0,0,3020,[1747,3021],[1745,3085],1745,[1747,3219],3220,0,0,0,0,3404,3405,[1811,3148],1808,[1811,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[1364,8572],1299,1364,1300,1299,1300,1299,1300,1299,1299,[1299,1696],1569,[1570,8308],8309,8310,8313,8314,[1634,8249],[1633,8246],[1572,8249],8309,8313,8314,[13736,9233,8315],[13735,9296],[13799,9297,1505],1634,1571,1636,[1634,8627],8628,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16740,16741,16742,16738,16674,16674,16674,16675,16675,16743,16744,16745,16738,16739,16738,16675,16738,16674,16675,16675,16674,16738,16740,16871,16742,17067,17068,16866,16867,17067,17068,16675,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16738,16877],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1739,3027],1803,1805,1804,1740,1803,1805,1427,1741,1804,1427,1741,1740,1741,1491,1740,1803,1804,1739,1740,1740,1740,1741,[1740,2957],3021,3022,3085,0,0,0,0,0,0,0,3282,3283,[1427,3284],1805,1804,1740,1427,1805,[1741,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1804,3411],1805,1492,1739,1740,1804,1740,1739,1492,1804,1739,1803,1427,1739,1739,1427,1740,1805,[1739,3339],3340,3341,3342,3343,3346,3406,3407,3410,[1803,3348],1741,1741,1805,1739,1803,1427,1804,1741,1739,1739,[1741,2957],[1741,2958],[1741,2961],[1804,2962],1739,1805,1740,[1805,2957],[1803,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,476,[486,477],487,486,423,[486,23],[487,27],[487,24],[422,27],[422,24],[423,28],[487,2147503243],[486,2147503242],[486,2147503241],486,422,[486,19593],[486,19594],[423,19595],[487,23],[487,24],[487,27],[422,24],[487,27],[486,28],486,422,423,[423,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17605,17607,17672,17672,17672,17482,17478,17478,17478,17478,17479,17608,17673,17546,17547,17416,17417,17543,17609,17608,17546,17416,18315,17548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],1811,1746,1809,1744,[1808,3219],3220,0,0,0,3211,[1808,3212],1745,1747,1746,[1809,3282],[1810,3346],3347,3348,0,0,3211,[1747,3212],1744,1808,[1744,3219],3220,0,0,0,0,0,0,3020,[1808,3021],[1747,3085],1746,[1746,3219],3220,0,0,0,0,0,0,0,0,3147,[1746,3148],1746,1811,1811,[1745,3282],[1811,3343],[1746,3344],[1747,3345],[1744,3277],1810,1809,[1745,2017],[1746,2018],[1746,2019],[1810,3155],3156,0,3211,[1746,3212],1811,1810,1747,1808,[1745,3282],[1809,3283],3406,3407,3408,3409,3406,3407,[1747,3276],[1746,3277],1745,1746,[1809,3282],[1746,3283],3284,0,0,0,0,0,3147,[1746,3148],1811,[1809,3282],[1810,3346],3347,3348,0,0,0,3083,[1746,3084],[1744,3085],1747,1808,[1808,3219],3220,0,0,0,0,0,3211,[1744,3212],1811,[1745,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8632,8633,8634,8635,[1363,1381,8636],[1364,1517],1299,1299,1299,1300,1363,1300,1363,1364,1363,[1299,1505,8371],8372,8373,0,0,8378,8313,8310,8313,8373,0,8378,8379,[13799,9298,8249],[13799,9296,8250],[13799,9232,1632],1569,1636,1570,[1633,8692],8693,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16804,16805,16806,16674,16674,16675,16738,16675,16739,16807,16808,16809,16674,16675,16674,16739,16674,16675,16738,16674,16739,16674,16804,16805,16806,0,0,0,0,0,0,16674,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1804,3604],1739,1428,1741,1803,1805,1427,1739,1803,1805,1739,1427,1739,1805,1805,1741,1804,1804,1804,1741,1740,1740,[1427,3020],3021,3085,0,0,0,0,0,0,0,0,3282,3346,3347,[1805,3348],1804,1740,1805,1803,[1804,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1805,3156],1804,1427,1739,1740,1427,1804,1805,1804,1739,1741,1741,1739,1804,1741,1803,1739,1803,1427,1427,[1803,3404],3405,3406,3407,3410,[1803,3470],[1739,3471],[1805,3474],1803,1804,1427,1739,1739,1804,1804,1741,1427,1427,[1805,3020],3021,3022,3025,3026,[1740,3027],1739,[1740,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[423,222],423,486,423,[422,86],87,91,88,91,88,92,[422,93,2147503307],[486,2147503306],[486,2147503305],487,422,[486,19657],[486,19658],[423,86,19659],87,88,91,88,91,92,[422,93],487,423,422,[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17669,17671,17545,17545,17672,17546,17542,17542,17542,17542,17543,17544,17545,17480,17480,17481,17481,17480,17608,17609,17481,17481,17481,17548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[1744,3276],[1811,3277],1744,1810,[1809,3282],[1745,3283],3284,0,0,0,3147,[1747,3148],1810,1808,1808,[1811,3155],3410,3411,0,0,0,3147,[1811,3148],1810,1809,[1747,3155],3156,0,0,0,0,3020,2958,[1808,3084],[1809,3085],1747,1809,[1808,3090],[1808,3026],2961,2962,0,0,0,0,0,0,3211,[1808,3212],1811,1811,[1744,3282],[1810,3283],3407,3408,3409,[1744,3276],[1746,3277],1809,1810,1809,1810,[1808,3219],3220,0,3147,[1745,3148],1745,1744,1809,[1746,3282],[1810,3346],3347,3470,3471,3472,3473,3470,3471,3340,[1811,3341],[1811,3342],[1808,3343],[1746,3346],3347,3348,0,0,0,0,0,3147,[1744,3148],1745,[1747,3219],3410,3411,0,0,0,0,3147,[1808,3148],1811,1810,[1811,3282],[1810,3283],3284,0,0,0,0,0,3147,[1809,3148],1746,[1746,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8696,8697,8698,[1572,8699],[1363,1445],1363,1299,1299,1364,1364,1363,1299,1299,1300,1300,[1299,8435],8436,0,0,0,0,0,0,0,0,0,0,8378,8313,8314,[13799,9296,1440,8315],1633,1572,1636,1571,[1633,8757],[1636,8758],[1571,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16739,16674,16803,16803,17003,17004,16803,16803,16738,16738,16674,16802,16803,16802,16803,16802,16802,16802,16802,16803,16803,16738,16738,16674,0,0,0,0,0,0,16679,16681,16675,16674,16738,16675,16675,16738,16679,16681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1428,3027],1740,1428,1427,1491,1803,1805,1804,1741,1739,1741,1739,1739,1805,1427,1805,1803,1427,[1739,2957],[1739,2961],[1804,2958],3084,3085,0,0,0,0,0,0,0,0,0,3155,3410,[1741,3411],1804,1805,1803,1805,[1427,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1740,3220],1739,1739,1740,1740,1803,1740,[1740,2957],[1739,2958],[1804,2961],[1741,2962],1427,1741,1803,1739,1804,1427,1427,1427,1741,1803,[1805,3469],[1740,3470],[1805,3471],[1739,3474],1739,1803,1741,1804,1803,1740,1804,1741,1805,1805,1741,1805,[1803,3020],3084,3085,0,0,3090,3091,[1741,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],423,486,[423,149],150,151,0,0,0,0,156,157,[487,158],486,487,422,423,[422,149],150,151,0,0,0,0,156,157,[487,158],423,422,[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17415,17609,18247,17545,17480,18247,17481,17480,17480,17480,17545,17545,17672,17609,17672,17672,17545,17608,17545,17673,18248,17545,17548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1808,3341],[1811,3277],1746,[1809,3155],3347,3348,0,0,0,3211,[1810,3212],1745,1744,1809,[1745,3219],3220,0,0,0,0,3211,[1747,3212],1747,1809,[1810,3219],3220,0,0,0,3083,[1746,3084],[1808,3022],[1809,3085],1745,1746,1744,1747,[1747,3090],[1745,3025],[1808,3026],3027,0,0,0,0,0,3147,[1809,3148],1809,[1747,3282],[1746,3346],3347,3471,3472,3473,3340,[1808,3341],[1809,3277],1811,1747,[1809,3282],[1747,3283],3284,0,3211,[1811,3212],1746,1747,1811,[1745,3155],3410,3411,0,0,0,0,0,0,3404,3405,3406,3407,3410,3411,0,0,0,0,0,0,3211,[1809,3212],1810,[1746,3155],3156,0,0,0,0,0,3211,[1811,3212],1810,[1809,3282],[1746,3346],3347,3348,0,0,0,0,0,3211,[1808,3212],1747,[1811,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[1635,8758],[1633,8759],[1572,8760],[1572,8761],[1634,8762],1633,[1300,1509],1299,1363,1300,1299,1363,1300,1364,1300,[1299,1388],[1300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[1569,8249],[1635,8250],1635,1569,1633,1571,[1570,1386],[1569,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16739,16738,16867,16867,17067,17068,16867,16866,16674,16674,16674,16866,16867,16866,16866,16867,16866,16867,16866,16867,16866,16674,16675,16674,0,0,0,0,0,0,16807,16809,16739,16739,16675,16738,16674,16738,16807,16809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16675,17069],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1805,2961],[1804,2962],1740,1427,1804,1803,1739,[1803,2957],[1804,2958],[1427,2961],[1740,2962],1804,1741,1803,[1804,2957],[1427,2961],[1740,2958],3021,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,3155,[1740,3156],1803,1427,1740,1805,1741,[1804,3527],3528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1739,3156],1427,1741,1804,1804,1804,[1740,3083],3084,3022,3025,3026,[1805,3027],1741,1427,1804,1741,1804,1741,1739,1803,1740,1739,1427,1427,1805,1740,1739,1803,1741,1803,1427,1740,1740,1740,1427,[1740,2957],[1805,2958],3084,3085,0,0,0,0,3090,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],487,423,[423,213],214,0,0,0,0,0,0,221,[487,222],486,487,422,487,[423,213],214,0,0,0,0,0,0,221,[486,222],423,487,[422,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17477,17478,17479,17672,17544,17672,17545,17608,17545,17673,17544,17544,17672,17545,18248,17608,17672,17608,17545,17673,17608,17673,17672,17544,17548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,[1808,3148],1810,[1809,3219],3220,0,0,0,0,3147,[1747,3148],1808,1808,1747,[1744,3090],[1810,3026],3027,0,0,3020,[1811,3021],[1745,3085],1745,1744,[1810,3155],3156,0,0,0,3147,[1746,3148],1744,1809,1810,[1744,3282],[1808,3343],[1811,3277],1810,1744,[1746,3090],[1811,3091],3092,0,0,0,0,3211,[1745,3212],1808,[1747,3155],3410,3411,0,0,0,3404,3405,[1747,3341],[1810,3344],[1745,3345],[1746,3346],3347,3348,0,3147,[1808,3148],1745,1747,1747,[1745,3155],3156,0,0,0,0,0,0,0,0,3469,3470,3471,3474,0,0,0,0,0,0,0,3147,[1809,3148],1810,[1809,3219],3220,0,0,0,0,0,3147,[1810,3148],1747,[1747,3155],3410,3411,0,0,0,0,0,0,3147,[1809,3148],1811,[1808,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[1572,8699],[1634,1517],1572,1572,[1635,1387],1636,1569,[1363,1573],1299,1363,1300,1299,1363,1300,[1300,1388],[1363,8245],[1300,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8314,[1570,8315],1635,1634,1635,1570,[1570,1386],[1569,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16739,16675,0,0,0,0,0,0,16738,16675,16739,0,0,0,0,0,0,0,0,0,0,16675,16674,16738,0,0,0,0,0,0,16739,16674,16803,16802,16802,16802,16802,16803,16739,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3026,[1427,3027],1739,[1427,2957],[1803,2958],[1805,2961],3021,3022,3025,3026,[1805,3027],1739,[1741,3020],3021,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1805,3220],1804,1739,1803,1740,1427,[1740,3591],3592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,1952,3277,0,0,0,0,0,3219,[1803,3220],1803,1803,1492,1740,1805,[1805,3147],3148,0,0,3090,3091,[1805,3092],1739,1427,1741,1427,1803,1741,1740,1740,1803,1739,1805,1804,1428,1740,1805,1741,1804,1740,1492,1427,1805,[1803,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[487,222],486,487,[422,277],278,0,0,0,0,0,0,285,[422,286],486,486,423,486,[422,277],278,0,0,0,0,0,0,285,[487,286],487,423,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17541,17542,17543,17545,17672,17544,17609,17609,17673,17608,17672,17544,17673,17544,17608,17609,18312,17545,17610,17736,17931,17932,17933,17611,17612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],1745,[1811,3090],[1744,3026],3027,0,0,3020,[1746,3021],[1744,3085],1747,1808,1747,1745,[1808,3090],[1747,3091],2961,2958,[1809,3084],[1809,3085],1747,1744,1809,[1746,3219],3220,0,0,0,3339,[1747,3276],[1811,3277],1744,[1746,3282],[1809,3283],3214,[1810,3276],[1810,3277],1811,1746,[1745,3155],3156,0,0,0,0,3147,[1808,3148],1811,[1808,3155],3156,0,0,0,0,0,3469,3405,3408,3409,3410,3411,0,0,3211,[1810,3212],1747,1744,1809,[1745,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1745,3212],1811,[1745,3155],3156,0,0,0,0,0,3211,[1747,3212],1808,[1746,3219],3220,0,0,0,0,0,0,0,3211,[1744,3212],1745,[1745,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[1636,8508],1570,1569,1570,1569,1569,1571,1634,[1299,1508],1300,1363,1299,1300,1299,[1363,1388],[1364,8308],8309,8310,8373,0,0,0,0,0,8570,8511,8633,8565,0,0,0,0,0,0,0,0,8378,8379,[1635,8249],[1636,8250],1569,1571,1635,[1571,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,415,416,417,415,416,417,415,416,417,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16676,16746],16677,16678,16738,16674,16674,16739,16738,16674,16674,16674,16738,16739,16675,16738,16675,16679,16680,16681,0,0,0,0,0,0,16674,16739,16674,0,0,0,0,0,0,0,0,0,0,16675,16739,16739,16675,16675,16675,16675,16739,16679,16680,16681,16867,16866,16867,16866,16867,16866,16674,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1740,2958],3021,3022,3025,3085,0,0,3090,3091,[1804,2958],3084,3085,0,3086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,[1805,3540],1805,1803,1804,1741,1492,[1741,3527],3528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,2016,3341,3277,0,0,0,0,3090,3026,[1804,3027],1740,1427,1740,1740,[1739,3211],3212,0,0,0,3155,[1741,3156],1740,1803,1739,1492,1739,1739,1804,1803,1805,1427,1740,1804,1740,1803,1804,1740,1427,[1739,2957],[1805,2958],[1740,2961],[1739,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3345,3283,3406,3407,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],422,423,[486,341],342,343,0,0,0,0,348,349,[423,350],487,423,487,423,[487,341],342,343,0,0,0,0,348,349,[487,350],423,486,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17541,17545,17545,17544,17609,17610,17607,17672,17673,18248,17544,17544,17609,17608,17608,17609,17545,17672,17674,17800,17995,17996,17997,17675,17676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1811,3148],1810,1745,[1744,3090],[1811,3091],2958,2958,[1746,3084],[1811,3085],1811,1809,1744,1744,1746,1811,[1744,3090],[1808,3025],[1745,3022],[1809,3085],1745,1747,1745,1809,[1810,3155],3156,0,0,0,0,3147,[1810,3148],1808,[1810,3155],3347,3471,3340,[1808,3341],[1746,3277],1808,[1811,3219],3220,0,0,0,0,3211,[1811,3212],1808,[1747,3219],3220,0,0,0,0,0,0,3469,3472,3473,3474,0,0,0,3147,[1744,3148],1809,1808,[1808,3282],[1810,3283],3284,0,0,0,0,2957,2958,2961,2962,0,0,0,0,0,0,0,0,0,0,3020,[1811,3021],[1810,3085],1808,[1745,3219],3220,0,0,0,0,3020,[1811,3021],[1810,3085],1809,[1745,3219],3220,0,0,0,0,0,0,3020,[1746,3021],[1747,3085],1809,[1745,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[1571,8572],1569,1633,1635,1634,1572,1636,[1299,1445],1300,1299,1299,1364,1363,1299,[1299,8308],8372,8373,0,0,0,0,0,0,8570,8571,8575,8697,8564,8565,0,0,0,0,0,0,0,0,8378,8313,8314,[1569,8315],1572,1636,[1364,1444,8627],8628,8629,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3406,479,480,481,482,480,481,482,480,481,3276,3342,415,416,417,3342,415,416,417,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,415,416,417,3277,0,0,0,0,0,0,0,0,3282,3345,3342,415,416,417,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16740,16741,16742,16675,16739,16675,16739,16674,16675,16675,16738,16675,16675,16739,16739,16739,16743,16744,16745,0,0,0,0,0,0,16675,16739,16674,0,0,0,0,0,0,0,0,0,0,16674,16675,16674,16738,16675,16674,16675,16675,16743,16871,16745,0,0,0,0,0,0,16675,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3085,0,0,0,0,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1741,3604],1739,1492,1803,1427,1427,[1492,3591],3592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1741,3470],[1739,2080],3405,3276,3277,0,0,0,0,3090,3091,[1740,2958],[1804,2962],1739,[1804,3020],3021,3085,0,0,0,3219,[1805,3220],1805,1427,1805,1804,1739,1805,[1739,2957],[1739,2958],[1739,2961],[1804,2962],1804,1805,1741,1805,1805,1741,[1741,3020],3021,3022,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3409,3347,[1805,3470],[1740,3471],[1805,3472],[1804,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[422,222],487,486,[422,405],406,407,408,409,1950,411,412,413,[422,414],423,422,486,486,[422,405],406,407,408,1949,410,411,412,413,[487,414],423,423,[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17541,17672,17672,18312,17672,17674,17671,17608,17673,17609,17672,17608,17673,17673,17609,17672,17673,17544,17418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1746,3212],1808,1747,1811,[1745,3090],[1810,3022],[1744,3022],[1810,3085],1746,1808,[1747,1954],1809,1747,1747,1809,1809,1810,1811,1745,1810,1746,1811,1808,[1811,3219],3220,0,0,0,0,3211,[1809,3212],1811,[1808,3155],3156,0,3404,3405,[1810,3148],1811,[1809,3090],[1811,3026],3027,0,0,3020,[1746,3021],[1811,3085],1747,[1809,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1745,3212],1808,[1744,3282],[1747,3346],3347,3348,0,0,0,3083,[1808,3084],[1808,3022],[1745,3025],[1811,3026],2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,[1747,3084],[1808,3085],1744,1745,[1811,3090],[1747,3091],2958,2961,2961,2958,[1810,3084],[1809,3085],1744,1747,[1811,3090],[1809,3026],2961,2958,2961,2958,2961,2961,[1747,3084],[1745,3085],1744,1811,[1747,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13799,9298,1504,8636],1635,1634,1635,1634,1635,1572,[1299,1509],1300,1364,1363,1299,1364,1363,[1299,8435],8436,0,0,0,0,0,0,8570,8634,8635,[13800,9232,1381,8639],[13799,9296,8761],8628,8629,8565,0,0,0,0,0,0,0,0,0,8378,8379,[1633,8380],1571,[1364,1701],[1364,8692],8693,8502,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[461,3470],[464,543],[461,544],[528,545],[464,543],[461,544],[461,545],[464,543],[526,544],[526,545],3340,3406,479,480,481,3406,479,480,481,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,479,480,481,3341,3342,415,416,417,3342,415,416,417,3346,3409,3406,479,480,481,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16804,16805,16806,16674,16738,16738,16674,16675,16739,16739,16675,16675,16675,16675,16675,16739,16807,16808,16809,0,0,0,0,0,0,16738,16739,16675,0,0,0,0,0,0,0,0,0,0,16675,16675,16995,16997,16997,16996,16996,16998,16807,16808,16809,0,0,0,0,0,0,16739,16675,0,0,0,0,16675,16738,16739,16739,16675,16674,16738,16674,16738,16674,16674,0,0,0,16674,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3667,[1803,3668],1740,1739,1803,1805,1805,[1805,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1739,3411],1427,1427,[1803,3469],3340,3341,3277,0,0,0,0,3090,3022,3026,[1740,2961],3084,3085,0,0,0,3282,3283,[1803,3284],1428,1740,1741,1804,1805,[1805,3020],3021,3022,3025,3026,[1804,2962],1741,1427,1803,1740,[1803,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1739,3473],[1740,3411],1803,1805,1739,1740,[1741,3404],3405,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],486,422,423,[422,470],471,472,473,2014,475,476,[423,477],422,486,423,423,423,486,[487,470],471,472,2013,474,475,476,[423,477],422,423,487,[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17605,17606,17736,17737,17606,17738,17415,17672,17544,17545,17609,17544,17673,17610,17611,17736,17737,17611,17612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1746,3148],1747,1811,1744,1808,1808,1810,1745,1808,[1808,2017],[1746,2018],[1810,2019],1809,1747,1745,1746,1745,1744,1747,1809,1810,1808,1808,[1808,3155],3156,0,0,0,0,3147,[1809,3148],1811,[1744,3155],3156,0,0,3211,[1744,3212],1744,1744,[1746,3090],[1747,3091],2961,2958,[1808,3084],[1745,3085],1810,1747,[1809,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1744,3148],1746,[1747,3155],3410,3411,0,0,0,0,3147,[1809,3148],1811,1746,[1810,3090],[1747,3022],[1745,3025],[1747,3022],[1809,3025],[1808,3022],[1745,3025],[1745,3022],[1745,3025],[1809,3022],[1811,3025],[1811,3085],1747,1747,1747,1808,[1747,3090],[1747,3022],[1744,3025],[1747,3025],[1809,3022],[1745,3085],1809,1746,1746,1811,[1811,3090],[1811,3025],[1811,3022],[1747,3025],[1810,3022],[1811,3025],[1808,3025],[1745,3085],1747,1810,1810,[1810,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13800,9297,8699],[13735,9296,1568],1635,1634,1572,1636,1570,1636,[1364,1573],1363,1299,1363,1364,1299,1363,[1299,8499],8500,0,0,0,0,0,0,8443,8698,[1634,8699],[13799,9297,1445],[13800,9296],[13800,9296,8692],8693,8500,0,0,0,0,0,0,0,0,0,0,8443,[1299,1700,8444],[1300,1508],2063,1364,[1363,8757],[1364,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[527,3156],526,527,526,526,527,526,462,461,527,526,[464,3404],[526,3470],[461,543],[525,544],[526,545],[462,3470],[461,543],[525,544],[462,545],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[461,543],[528,544],[463,545],3405,3406,479,480,481,3406,479,480,481,3410,[462,3473],[461,3470],[527,543],[462,544],[526,545],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16738,16675,16802,16802,17003,17004,16803,16803,16802,16802,16803,17003,17004,16802,16802,16739,16739,16739,0,0,0,0,0,0,16679,16680,16681,16675,16675,16674,16675,16674,16738,16739,16674,16674,16738,16739,16739,17123,17194,17061,17060,17060,17195,16998,16739,16674,0,0,0,0,0,0,16675,16738,0,0,0,16738,16675,16738,16674,16739,16674,16674,16675,16738,16675,16674,16675,0,0,0,16739,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3667,3731,[1804,3732],1427,1427,1739,1804,1740,[1739,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1804,3220],1427,1741,1804,1427,[1740,3404],3405,3212,0,0,0,0,0,0,3090,3025,3085,0,3282,3344,3345,3346,3347,[1740,3348],1741,1741,1427,1804,[1741,3020],3021,3085,0,0,3090,3026,[1740,3027],1805,1803,1741,[1803,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3277,0,0,0,0,0,0,0,0,3155,3410,[1739,3411],1427,1804,1741,1805,1427,1804,1741,[1741,3404],3405,3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[486,93],423,423,486,[422,535],[422,536],[423,537],[422,2078],[423,539],[486,540],487,486,423,486,487,423,423,423,[487,535],[422,536],[487,2077],[487,538],[486,539],[487,540],423,422,487,[423,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17669,17670,17800,17801,17670,17802,17415,17672,17544,17673,18248,17672,17672,17674,17675,17800,17801,17675,17676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1745,3212],1745,1809,1808,[1747,3282],[1744,3342],[1744,3343],[1808,3277],1744,1810,1746,1746,[1810,3282],[1810,3344],[1745,3345],[1810,3342],[1811,3343],[1745,3344],[1809,3345],[1747,3277],1808,1809,1746,[1810,3219],3220,0,0,0,0,3147,[1746,3148],1811,[1811,3219],3220,0,0,3275,[1746,3276],[1745,3277],1809,1810,[1744,3090],[1811,3025],[1809,3022],[1745,3085],1744,1808,[1808,3282],[1808,3283],3284,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1809,3148],1746,[1744,3155],3156,0,0,0,0,0,3211,[1746,3212],1808,1745,1745,1808,1811,1745,1811,1744,1744,1810,1746,1811,1810,1808,1808,1811,1810,1809,1808,1746,1744,1745,1809,1745,1810,1744,1808,1810,1746,1809,1808,1744,1810,1810,1811,1744,1808,1746,1746,[1809,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13800,9232,8508],[13799,9297],[13800,9296,1632],1571,1633,1635,[1571,8371],[1570,8249],[1634,8246],[1300,1637,8249],[1364,8250],1300,1363,1363,1363,1363,[1300,8563],8564,8565,0,0,0,0,0,8507,[1572,8508],1634,[13799,9234,1509],[13800,9298],[13735,9233,1392],[13800,9298,8563],8564,8565,0,0,0,0,0,0,0,0,0,8507,[1364,8508],1363,1364,1299,[1364,1386],[1364,1389],[1299,8692],8693,8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[462,3220],462,526,462,462,464,462,461,464,525,525,526,525,528,463,463,528,462,525,526,[527,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[528,3156],462,467,463,[528,3469],[527,3470],[464,543],[527,544],[528,545],[462,3470],[526,543],[526,544],[461,545],[527,3474],528,527,528,525,461,[463,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16675,16738,16867,16867,17067,17068,16866,16867,16866,16867,16867,17067,17068,16866,16867,16738,16674,16674,0,0,0,0,0,0,16807,16808,16809,16675,16674,16674,16675,16675,16675,16738,16674,16739,16674,16675,16739,[16739,16747],17059,17061,17061,17060,17061,17062,16674,16674,0,0,16739,16674,16738,16674,16674,16675,16675,[16675,1515],16739,16674,16738,16674,16802,16803,16803,16803,16803,16802,16802,16675,16739,0,0,0,16739,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3728,3729,3730,3731,[1740,3795],1739,1803,1804,1741,1803,1803,1739,[1740,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1740,3156],1805,1739,1804,1803,1427,[1803,3275],3276,3277,0,0,0,0,0,0,0,0,3282,3283,3408,3409,3410,[1739,3411],1805,1805,1739,1740,[1805,3083],3084,3085,0,0,0,0,3090,3091,[1739,3092],1805,1805,[1741,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3344,3345,3346,3341,3277,0,0,0,0,0,0,0,3219,[1740,3220],1741,1739,1739,1739,1741,1741,1805,1803,[1804,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,93],423,423,423,422,422,486,487,487,487,486,486,486,486,486,423,422,486,423,486,422,422,423,486,423,[486,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17735,17736,17737,17736,17737,17736,17737,17738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1808,3148],1810,1808,[1811,3282],[1745,3346],3406,3407,[1808,3276],[1744,3277],1746,1744,[1811,3282],[1745,3346],3408,3409,3406,3407,3408,3409,[1747,3276],[1809,3277],1747,1746,[1811,3090],[1745,3026],3027,0,0,3020,[1808,3021],[1808,3085],1746,[1809,3155],3156,0,0,3339,3340,[1808,3341],[1808,3277],1744,1745,1810,1809,1810,1745,[1747,3282],[1745,3346],3347,3348,0,2957,2958,2961,3092,0,0,0,0,0,0,0,0,3211,[1810,3212],1745,[1809,3219],3220,0,0,0,0,3020,[1809,3021],[1808,3085],1744,1810,1745,1746,[1811,3282],[1746,3342],[1811,3343],[1811,3277],1810,1745,1808,[1808,3282],[1810,3345],[1809,3277],1744,1810,1811,1746,[1808,3282],[1745,3342],[1808,3343],[1744,3342],[1811,3343],[1809,3277],1746,1810,1811,1746,[1810,3282],[1744,3344],[1809,3345],[1808,3344],[1747,3345],[1744,3342],[1809,3343],[1808,3277],1808,1745,1808,[1747,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[13800,9234,8572],[13799,9296,1387],[13799,9298,1696],[13799,9297,1697],[1633,1392],[1571,8308],8309,8313,8310,8313,8314,[1363,8315],[1300,1392],1299,1300,1364,[1300,8627],8628,8629,8565,0,0,0,0,8507,[1570,8508],1634,[13799,9234,1573],[13799,9297],[13799,9234],[13800,9297,8627],8628,8629,8630,8631,8565,0,0,0,0,0,8570,8571,[1300,8572],1363,1299,1364,1299,1363,[1363,1386],[1363,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[463,3027],527,525,464,527,527,462,461,463,463,464,462,462,528,525,528,462,462,526,[463,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[464,3220],527,462,464,462,528,464,462,464,464,527,527,525,528,528,527,526,528,463,528,[526,3910],3911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16739,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16675,16738,0,0,0,0,0,0,16739,16674,16739,16803,16803,16803,17003,17004,16738,16739,16674,16738,16674,16739,16739,16739,17059,17061,17061,17060,17060,17062,16739,16738,16738,16674,16675,16738,16738,16675,16674,16674,16739,16738,16675,16738,16803,16803,16866,16867,16866,16866,16867,16866,16866,16738,16738,16738,16738,16738,16738,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3667,3792,3793,3794,[1739,3795],1739,1803,1741,1805,1805,1740,1804,1427,1740,[1740,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1740,3220],1741,1803,1492,1427,1740,[1741,3339],3340,3341,3342,3343,3277,0,0,0,0,3282,3346,3347,[1803,3472],[1739,3473],[1805,3474],1739,1803,1740,1741,1804,[1741,3147],3148,0,0,0,0,0,0,3155,[1740,3156],1739,1804,[1803,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3408,3409,3410,3405,3276,3277,0,0,0,0,0,0,3090,3026,[1805,3027],1427,1803,1739,1804,1804,1741,1803,[1804,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,93],422,422,486,486,487,486,422,487,486,422,423,422,487,486,486,486,487,487,423,486,423,422,[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17799,17800,17801,17800,17801,17800,17801,17802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1810,3212],1811,1811,[1746,3155],3410,3470,3471,3340,[1746,3341],[1809,3277],1809,[1808,3155],3410,3472,3473,3470,3471,3472,3473,3340,[1811,3341],[1747,3277],1809,1744,[1810,3090],[1811,3091],2961,2958,[1809,3084],[1745,3085],1745,1747,[1746,3219],3220,0,0,0,3404,3405,[1811,3341],[1811,3342],[1747,3343],[1811,3277],1744,1808,1810,[1746,3155],3410,3411,0,2957,[1746,3021],[1809,3022],[1808,3025],[1745,3026],3027,0,0,0,0,0,0,3020,[1744,3021],[1745,3085],1745,[1808,3090],[1809,3026],3027,0,0,3083,[1744,3084],[1746,3085],1809,1808,1811,1746,[1810,3282],[1808,3283],3406,3407,[1811,3341],[1744,3277],1747,[1747,3282],[1810,3346],3409,[1747,3276],[1744,3277],1808,1746,[1747,3282],[1809,3283],3406,3407,3406,3407,[1810,3341],[1809,3277],1811,1810,[1811,3282],[1811,3283],3408,3409,3408,3409,3406,3407,[1744,3276],[1809,3277],1746,1746,[1810,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13800,9233,8636],[13800,9233],[13800,9296],[13800,9232],[13799,9296,1506,8371],8372,8373,0,0,0,8378,8379,[1299,8380],1364,1299,1364,[1299,1392],[1300,8692],8693,8436,0,0,0,0,8378,8314,[1636,8315],[13800,9296,1637],[13800,9233],[13800,9234],[13799,9298],[13799,9232,8692],8693,8694,8695,8564,8565,0,0,0,8570,8634,8635,[1364,8636],1299,1300,1300,1363,1299,1363,[1363,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[527,3092],461,526,528,463,462,526,462,528,527,528,463,528,526,527,463,525,[464,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[526,3027],464,528,464,525,463,526,527,464,525,525,462,461,466,464,526,464,528,462,[527,3974],3975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16675,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,16679,16680,16681,16674,16738,16674,16674,16738,16675,16676,16677,16678,16866,16866,16867,17067,17068,16803,16802,16802,16802,16675,16674,16738,16738,17059,17061,17061,16936,17060,17062,16675,16739,16739,16675,16738,16739,16802,16802,17003,17004,16802,16803,16802,16803,16867,16867,0,0,0,0,0,0,0,16802,16675,16674,16674,16674,16738,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3728,3729,3730,3731,[1805,3856],[1740,3857],[1740,3858],1740,1427,1805,1739,1741,1803,1741,1427,1804,1803,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1740,3027],1427,1804,1740,1803,1804,[1739,3404],3405,3406,3407,3276,3277,0,0,3282,3283,3410,[1804,3411],1741,1803,1804,1427,1805,1740,1427,[1741,3020],3021,3085,0,0,0,0,0,0,3219,[1740,3220],1741,1805,[1741,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1804,3470],[1739,3471],[1803,3472],[1741,3473],[1803,3474],[1741,3469],3340,3341,3277,0,0,0,0,0,0,3090,3091,[1804,3092],1741,1741,1427,1741,1427,1739,[1740,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[422,27],[423,24],[487,27],[422,24],[423,27],[487,24],[487,27],[423,24],[487,27],[486,24],[487,27],[422,24],[422,27],[422,24],[422,27],[422,24],[423,27],[486,24],[486,27],[486,24],[487,27],[486,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1808,3148],1746,1744,[1747,3155],3156,0,0,3404,3405,[1810,3148],1811,[1746,3155],3156,0,0,0,0,0,0,3404,3405,[1809,3148],1744,1811,1747,[1811,3090],[1747,3025],[1747,3022],[1811,3085],1744,1745,1745,[1809,3090],[1808,3026],3027,0,0,0,3469,3405,3406,3407,[1746,3276],[1744,3277],1744,1809,[1808,3155],3156,0,0,3147,[1811,3148],1745,1810,[1809,3090],[1746,3091],2961,2958,2961,2958,2961,2958,[1745,3084],[1808,3085],1809,1746,1811,[1747,3090],[1810,3091],2958,2961,[1808,3084],[1744,3085],1745,1745,1809,1808,[1747,3282],[1808,3346],3347,3470,3471,3405,[1745,3148],1744,[1745,3155],3410,3473,3340,[1745,3341],[1811,3344],[1747,3345],[1744,3346],3347,3470,3471,3470,3471,3405,[1811,3148],1744,[1811,3282],[1811,3346],3347,3472,3473,3472,3473,3470,3471,3340,[1745,3341],[1747,3277],1745,[1747,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13800,9296,8699],[13799,9232],[13736,9234],[13800,9233],[13800,9234],[13800,9232,8435],8436,0,0,0,0,0,8507,[1299,8508],1364,1299,1363,1299,[1299,1386],[1364,8499],8500,0,0,0,0,0,8378,8379,[1635,8380],[13800,9296,1444],[13800,9234],[13800,9234],[13800,9296],[13800,9234,8757],[13799,9233,1568,8758],[1569,8759],8628,8629,8565,0,0,8443,8698,[1364,8699],1363,1299,1363,1363,1363,1935,1363,[1299,1386],[1364,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[526,3156],461,526,461,525,464,526,464,527,464,525,463,464,526,[464,2957],[525,2958],[528,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[462,3092],528,526,527,527,461,467,527,461,526,[528,2957],[526,2958],[461,2961],[462,2962],528,461,528,462,[461,4038],4039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16738,16739,17001,17002,17001,17002,16739,16674,16738,[16675,16746],0,0,0,0,0,16743,16744,16745,16739,16675,16674,16739,16674,16738,16740,16741,16742,0,0,0,0,0,16866,16866,16866,16866,16802,16738,16675,16675,17059,17061,17061,17061,17060,17062,16675,16739,16675,16674,16803,16803,16867,16866,17067,17068,16866,16867,16866,16866,0,0,0,0,0,0,0,0,0,16867,16803,16802,16803,16802,16803,16802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3667,3792,3793,3794,[1427,3795],1492,1741,1741,1804,1739,1427,1740,1740,1739,1804,1739,1427,1803,[1804,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1741,2961],[1741,2962],1740,1739,1804,1491,[1804,3469],[1739,3470],[1804,3471],3340,3341,3344,3345,3346,3347,[1741,3474],1427,1740,1427,1804,1427,1740,1427,[1804,3020],3021,3085,0,0,0,0,3282,3344,3345,3283,[1804,3284],1804,1739,[1803,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[1804,3411],1741,1740,1739,1805,1740,1427,[1739,3404],3405,3148,0,0,0,0,0,0,0,3219,[1804,3220],1805,1740,1739,1740,1492,[1739,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,91,88,91,88,91,88,91,88,91,88,91,88,91,88,91,88,91,88,91,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],1810,1809,[1810,3219],3220,0,0,0,3211,[1809,3212],1747,[1747,3219],3220,0,0,0,0,0,0,0,3147,[1808,3148],1745,1746,1747,1809,1746,1809,1744,1808,1811,1746,1744,[1810,3090],[1810,3026],3027,0,0,0,3469,3470,3471,3340,[1811,3341],[1811,3277],1811,[1809,3219],3220,0,0,3211,[1746,3212],1810,1745,1809,[1745,3090],[1746,3025],[1809,3022],[1810,3025],[1745,3022],[1747,3025],[1745,3022],[1747,3085],1747,1810,1747,1744,1809,[1810,3090],[1809,3022],[1809,3025],[1808,3085],1811,1746,1746,1811,1746,[1809,3155],3410,3411,0,0,3147,[1746,3148],1808,[1809,3155],3156,0,3404,3405,3408,3409,3410,3411,0,0,0,0,3211,[1810,3212],1746,[1744,3155],3410,3411,0,0,0,0,0,0,3404,3405,[1745,3148],1745,[1746,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13799,9298,8508],[13799,9232],[13799,9233],[13800,9297],[13800,9232],[13799,9232],[13735,9298,8499],8500,0,0,0,0,8570,8571,[1299,8572],1300,1363,1299,[1299,1392],[1299,8308],8309,8373,0,0,0,0,0,0,8443,[1572,8444],1571,[13799,9298,1377],[13735,9296,1443],[13800,9298],[13799,9234],[13736,9233,1632],[1633,1387],[1634,8692],8693,8436,0,0,8507,[1364,8508],1300,2127,2128,1299,1364,1300,1363,1299,1363,[1363,1386],[1300,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[462,3220],463,526,462,525,463,462,526,462,461,461,527,526,[525,3020],3021,3022,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[526,3156],527,463,464,463,464,526,463,461,[462,3083],3084,3022,3025,3026,[528,3027],527,527,[463,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16739,16738,17065,17066,17065,17066,16675,16674,16738,16675,0,0,0,0,0,16807,16808,16809,16739,16739,16739,16674,16738,16674,16804,16805,16806,0,0,0,0,0,0,0,0,0,16867,16803,16674,16738,17123,17124,17125,17125,17125,17126,16738,16674,16803,16803,16866,16867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16866,16866,16867,16866,16866,16866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3730,3731,[1803,3856],[1803,3857],[1740,3732],1803,1804,1805,1427,1427,1741,1739,1739,1805,1804,1739,1741,1427,1740,[1740,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3026,[1741,3027],1739,1740,1741,1740,1804,1803,[1805,3404],3405,3408,3409,3410,[1741,3411],1428,1427,1804,1804,1805,1739,[1803,2957],[1805,2958],3084,3085,0,0,0,0,3282,3346,3408,3409,3347,[1805,3348],1427,1804,[1805,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,3282,3283,[1805,3284],1491,1805,1805,1804,1741,1739,1427,1804,[1741,3147],3148,0,0,0,0,0,0,3282,3283,[1803,3284],1805,1805,1741,1803,1741,[1803,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1747,3148],1745,1747,[1811,3155],3156,0,0,0,3147,[1746,3148],1746,[1746,3090],[1747,3026],3027,0,0,0,0,0,0,3211,[1745,3212],1811,1810,1744,1808,[1810,3282],[1744,3342],[1744,3343],[1747,3344],[1810,3345],[1744,3277],1745,1746,[1810,3090],[1746,3026],3027,0,0,0,0,0,3404,3405,[1745,3148],1809,[1811,3155],3156,0,0,3147,[1746,3148],1809,1745,1808,1747,1745,1744,1810,1809,1811,1808,1810,1808,1746,1811,1745,1745,1745,1809,1745,1745,1808,1747,1809,1745,1747,[1810,3219],3220,0,0,0,3211,[1745,3212],1809,[1809,3219],3220,0,0,3469,3472,3473,3474,0,0,0,0,0,3147,[1810,3148],1809,[1808,3219],3220,0,0,0,0,0,0,0,0,3147,[1811,3148],1745,[1745,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13736,9232,8444],[13799,9234],[13799,9234],[13735,9233],[13735,9233],[13799,9234],[13799,9233,8563],8564,8630,8631,8632,8633,8634,8635,[1364,8636],1300,1364,1364,[1299,8371],8372,8373,0,0,0,0,0,0,0,8507,[1572,8508],[1572,1387],1570,1635,[13800,9297,1381],[13800,9232],[13799,9297,1696],[13800,9298,1697],[13800,9232,1698],[13800,9297,8499],8500,0,8570,8571,[1363,8572],1300,2191,2192,1363,1300,1300,1300,1299,1300,1299,[1364,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[528,3027],463,464,463,462,527,461,528,526,528,525,[525,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[463,3027],526,462,464,526,525,527,528,[462,3147],3148,0,0,3090,3091,[461,2958],[527,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16675,17250,17129,17129,[17129,17634],17130,[17129,17506],17129,17129,17251,0,0,0,0,0,16802,16803,16803,17003,17004,16802,16803,16802,16803,16738,17256,16674,0,0,0,0,0,0,0,0,0,0,16867,16739,16739,16738,16739,16675,16674,16674,16739,16674,16738,16866,16866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3794,[1740,3795],1740,1740,1803,1741,1427,1804,1741,1492,1741,1805,1739,1805,1739,1427,1739,1803,1805,1804,[1740,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,3092],1804,1805,1805,1804,1740,1427,[1804,3469],[1804,3472],[1741,3473],[1803,3474],1740,1427,1427,1803,1804,1803,[1739,3020],3021,3022,3085,0,0,0,0,3282,3283,3410,[1740,3472],[1805,3473],[1805,3411],1805,1492,1428,1741,[1803,3404],3405,3148,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1740,3348],1805,1803,1805,1739,1805,1805,1740,1804,[1741,3211],3212,0,0,0,0,0,3282,3346,3347,[1741,3348],1805,1739,1741,1741,1740,[1740,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1747,3212],1745,1746,[1808,3219],3220,0,0,0,3211,[1744,3212],1746,1808,[1747,3090],[1744,3091],2961,2958,2962,0,0,0,3147,[1810,3148],1811,1811,1746,[1744,3282],[1809,3283],3406,3407,3408,3409,[1746,3276],[1746,3277],1745,1745,[1810,3090],[1808,3091],2961,2958,2962,0,0,0,3211,[1744,3212],1747,[1745,3219],3220,0,0,3211,[1747,3212],1744,1809,[1744,3282],[1745,3342],[1809,3343],[1809,3344],[1811,3345],[1744,3342],[1745,3343],[1811,3344],[1744,3277],1744,1808,1810,1747,1744,[1810,3282],[1744,3344],[1744,3345],[1746,3277],1808,1809,1809,1808,1745,[1810,3219],3220,0,0,0,3147,[1745,3148],1811,[1809,3219],3220,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],1809,[1808,3155],3156,0,0,0,0,0,0,0,0,3211,[1809,3212],1746,[1745,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13735,9232,8508],[13800,9234],[13800,9298],[13799,9296],[13735,9234],[13799,9233],[13735,9234,1376,8627],8628,8694,8695,8696,8697,8698,[1363,8699],[1299,1387],1300,1300,1363,[1363,8435],8436,0,0,0,0,0,0,0,8570,8571,[1634,8572],1572,1572,1635,[13736,9296,1445],[13799,9298],[13799,9232],[13735,9298],[13800,9234],[13799,9297,8563],8564,8633,8634,8635,[1364,8636],1363,1299,1300,1363,1364,1300,1300,1364,1300,1999,[1364,1441,8627],8628,8629,8630,8631,8632,8633,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[526,2961],[525,2958],[528,3521],[461,3522],[526,3523],[527,2958],[525,2961],[463,2958],[526,2961],[462,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[525,2958],[528,2961],[463,2962],526,527,527,[528,3020],3021,3085,0,0,0,3090,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16675,16995,16997,[16997,17510],[16997,17698],16997,[16996,17570],16996,[16996,17510],16998,0,0,0,0,0,16866,16866,16867,17067,17068,16866,16866,16866,16867,[17253,17511],17320,[17254,17639],0,0,0,0,0,0,0,0,0,0,0,16675,16738,16674,16802,16803,16803,16802,16803,16803,16803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1739,3156],1427,1740,1739,1739,1805,1740,1427,1739,1741,1740,1741,1741,1740,1740,1740,1741,1741,1805,1804,1740,[1741,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1739,3156],1739,1427,1805,1492,1804,1740,1491,1804,1428,1804,1427,1739,1805,1741,1741,[1739,3083],3084,3085,0,0,0,0,0,3282,3283,3347,[1804,3474],1803,1491,1803,1803,1740,1492,1803,1740,[1805,3147],3148,0,0,0,0,0,0,3282,3342,3343,3346,3410,[979,1674,3411],1740,1804,1741,1739,1741,1428,1427,1740,1804,[1739,3147],3148,0,0,0,0,0,3219,3410,[1803,3411],1741,1741,1804,1427,1741,1427,[1741,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1809,3148],1810,1745,[1811,3155],3156,0,0,0,3275,[1808,3276],[1808,3277],1810,1810,[1747,3090],[1747,3025],[1745,3022],[1810,3026],3092,0,0,3211,[1747,3212],1809,1811,[1747,3282],[1745,3283],3347,3470,3471,3472,3473,3340,[1810,3341],[1811,3277],1746,1746,[1747,3090],[1746,3025],[1811,3022],[1745,3026],3092,0,0,3147,[1747,3148],1745,[1747,3155],3156,0,0,3275,[1747,3276],[1745,3342],[1810,3343],[1808,3346],3406,3407,3408,3409,3406,3407,3408,[1745,3276],[1744,3277],1747,1746,1744,[1810,3282],[1811,3283],3408,3409,[1808,3276],[1810,3277],1746,1809,1808,[1745,3282],[1746,3283],3284,0,0,0,3211,[1809,3212],1808,[1744,3090],[1745,3091],2958,2961,2962,0,0,0,0,0,0,0,0,3147,[1809,3148],1744,[1811,3219],3220,0,0,0,0,0,0,0,0,3147,[1744,3148],1746,[1811,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,9233,8315],[13800,9298],[13800,9233],[13799,9298],[13800,9298],[13800,9234,1440,1387],[1569,8692],[1572,8758],[1635,8759],[1635,8760],[1363,1444,8761],[1364,8762],1300,1299,1364,1364,1364,[1363,8499],8500,0,0,0,0,8570,8632,8633,8634,8635,[13800,9298,1506,8636],[13800,9234,1697],1570,1635,[13735,9298,1509],[13799,9296],[13799,9297],[13799,9296],[13800,9232],[13800,9233,8627],8628,8502,8698,[1363,8699],1300,1299,1363,1299,1363,1364,1300,1364,1364,1364,[1364,1376],1634,[1633,8692],8693,8694,8695,8696,8697,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3585,3586,3587,3022,3025,3022,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3026,[528,3521],[462,3522],[461,3523],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16674,17059,17061,[17060,17574],17060,16936,17060,17060,[17060,17574],17062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16675,17575],16674,[16739,17703],0,0,0,0,0,0,0,0,0,0,0,16739,16739,16739,16867,16866,16866,16867,16866,16866,16866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1804,3220],1740,1803,1803,1740,1805,1804,1803,1805,1804,1491,1805,1427,1804,1805,1805,1805,1740,1741,1741,1741,[1741,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1739,3220],1427,1804,1741,1739,1803,1741,1427,1491,1804,1804,1805,1427,1805,1427,1804,[1803,3147],3148,0,0,0,3282,3344,3345,3346,3347,[1805,3411],1804,1739,1805,1739,1803,1804,1741,1803,1427,[1739,3275],3276,3277,0,0,0,0,3282,3283,3406,3407,3410,[915,3474],980,[980,1609],1740,1803,1804,1805,1740,1427,1805,1427,[1804,3211],3212,0,0,0,0,3282,3283,[1739,3284],1804,1740,1427,1741,1803,1427,1739,[1804,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1808,3212],1744,1810,[1811,3219],3220,0,0,0,3339,3340,[1808,3341],[1744,3277],1747,1745,1744,1744,[1810,3155],3156,0,0,3147,[1808,3148],1745,[1808,3282],[1745,3346],3347,3411,0,0,0,0,3404,3405,[1811,3341],[1746,3277],1811,1745,1746,1746,[1811,3155],3156,0,0,3211,[1747,3212],1745,[1810,3219],3220,0,0,3339,3340,3406,3407,3410,3470,3471,3472,3473,3470,3471,3472,3340,[1810,3341],[1809,3277],1809,[1810,3282],[1811,3346],3347,3472,3473,3340,[1744,3341],[1808,3277],1808,[1745,3282],[1745,3346],3347,3348,0,0,3020,[1809,3021],[1808,3085],1747,1745,[1811,3090],[1808,3022],[1810,3025],[1810,3026],3027,0,0,0,0,0,0,0,3211,[1744,3212],1808,[1745,3155],3156,0,0,0,0,0,0,0,0,3211,[1811,3212],1810,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,9296,8249],[13800,9296,8250],[13736,9296],[13799,9297],[13799,9233,1504],1635,1569,1635,1571,[1363,1637],1299,1299,1299,1299,1299,1364,[1364,8563],8564,8565,0,0,8570,8571,8696,8697,8698,[13799,1637,8699],[13800,9234],[13799,9296],[13799,9233,1505],1572,[13799,9298,1573],[13799,9232],[13800,9296,1376],[13800,9234,1443],[13800,9296,1441],[13800,9233,1377],[13799,9232,1378,8692],[1364,9233,1381,8761],[1363,9299,8762],1300,1299,1299,1299,1363,1300,1364,1364,[1364,8245],[1363,8246],[1364,8249],[1364,1632,8250],1634,1572,[1634,8757],[1571,8758],[1569,8759],[1635,8760],[1572,8761],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3585,3586,3587,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16674,17123,17125,17125,17125,17124,17124,17125,17125,17126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16739,1390],16739,16738,0,0,0,0,0,0,0,0,0,0,0,16675,16739,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1739,3027],1805,1427,1805,1739,1427,1741,1805,1739,1492,1427,1740,1741,1428,1741,1739,1740,1803,1427,[1804,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1805,3027],1741,1805,1803,1805,1741,1427,1741,1804,1803,1804,1739,1739,1805,[1804,3020],3021,3085,0,0,3282,3283,3408,3409,3410,[1804,3411],1740,1804,1804,[1739,2957],[1740,2958],[1804,2962],1804,1427,1805,1428,[1805,3339],3340,3341,3342,3343,3344,3345,3346,3347,[1805,3470],[1805,3471],[915,1614,3474],979,980,[979,1673],1741,1804,1427,1804,1492,1741,1740,[1803,3020],3021,3085,0,0,0,3282,3346,3347,[1803,3348],1804,1740,1741,1741,1805,1804,[1805,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1811,3148],1811,1808,[1808,3155],3156,0,0,0,0,3404,3405,[1810,3212],1808,1747,1811,1810,[1809,3219],3220,0,0,3211,[1809,3212],1747,[1744,3155],3410,3411,0,0,0,0,0,0,3404,3405,[1808,3341],[1808,3277],1811,1811,1808,[1747,3219],3220,0,0,3147,[1810,3148],1746,[1744,3155],3156,0,0,0,3469,3470,3471,3474,0,0,0,0,0,0,0,3404,3405,[1747,3148],1810,[1747,3155],3410,3411,0,0,3404,3405,[1745,3148],1746,[1744,3155],3410,3411,0,0,3083,[1811,3084],[1744,3085],1810,1744,1746,1810,1746,1809,[1745,3090],[1808,3091],3092,0,0,0,0,0,0,3147,[1810,3148],1810,[1809,3219],3220,0,0,0,0,0,0,0,0,3147,[1746,3148],1745,[1747,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8314,[13799,9234,8315],[13799,9296],[13799,9296,1568],1572,1633,1570,1633,1633,[1364,1443],1299,1363,1364,1363,1364,[1363,8627],8628,8629,8630,8631,8634,8635,[1299,8760],[1300,1632,8761],[1635,8762],[13799,1445],[13799,9234],[13800,9297],[13800,9234],[13799,9232,1632],[13800,9233,1637],[13735,9298],[13799,9297,1632],[1635,1387],1569,1633,1633,[1364,9234,1445,1388],[1364,9299],1363,1936,1299,[1299,8245],[1300,8246],[1300,8249],[1299,8246],[1364,8249],8309,8310,8313,8314,[1636,8315],1633,1571,1634,1571,1569,1572,[1635,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4137,4138,4139,4140,4139,4140,4139,4140,4139,4140,4139,4140,4139,4140,4139,4140,4139,4140,4141,4142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16675,16738,16738,16675,16738,16674,16675,17255,17256,17255,16739,16739,16738,16739,16675,16738,16674,16739,16739,16738,0,0,0,0,16738,[16675,17511],16738,0,0,0,0,0,0,16739,16674,16738,0,0,0,0,[16739,1390],16738,16675,[16675,1390],16675,16675,16675,16679,16680,16681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1739,3092],1805,1739,1739,1741,1805,1739,1804,1427,1805,1804,1739,1740,1803,1739,1803,1741,[1427,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1739,2961],[1803,2962],1428,1803,[1804,2374],[1427,2057],[1804,2121],[1427,2375],1805,1741,1740,1804,[1804,3020],3021,3085,0,0,3282,3346,3347,[1741,3472],[1803,3473],[1740,3474],1427,1739,1741,[1804,3020],3021,3022,3026,[1804,3027],1740,1804,1740,1427,[1804,3404],3405,3406,3407,3408,3409,3410,[1803,3411],1805,1803,[916,1678],915,980,[916,1737],1741,1741,1492,1428,1804,[1803,2957],[1740,2958],3084,3085,0,0,0,0,3155,3410,[1740,3411],1427,1803,1739,1739,1741,[1741,2957],[1740,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1747,3212],1809,1811,[1746,3219],3220,0,0,0,0,0,3275,[1744,3276],[1747,3277],1810,1811,[1809,3282],[1746,3283],3284,0,0,3147,[1808,3148],1808,[1810,3155],3156,0,0,0,0,0,0,0,0,3404,3405,[1811,3212],1744,1747,[1745,3282],[1747,3283],3284,0,0,3211,[1809,3212],1746,[1746,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1745,3148],1745,[1808,3219],3220,0,0,0,0,3211,[1747,3212],1811,[1809,3219],3220,0,0,0,3147,[1744,3148],1810,1809,[1809,3282],[1747,3342],[1747,3277],1808,1810,1809,[1809,3155],3156,0,0,0,0,0,0,3211,[1744,3212],1746,[1745,3155],3156,0,0,0,0,0,0,0,0,3211,[1811,3212],1745,[1747,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,9297,1441,8380],1633,1633,1571,1634,1571,1635,[1299,1637,8245],[1364,8246],[1363,8249],[1299,8250],1364,1299,1299,[1300,8692],8693,8694,8695,8698,[1299,8699],[1300,1386],[1299,1505],1570,[13800,1509],[13736,9298],[13799,9233],[13800,9297],[13735,9234,1696],[13800,9234,1701],[13735,9234],[13800,9296,1696],[13799,9297,1697],[13800,9297,1698],1572,[1636,8245],[1364,9234,1509,8246],[1363,9363,8250],[1364,1390],[1299,1390],[1300,8308],8309,8310,8313,8310,8313,8373,0,0,8378,8379,[1572,8380],1572,1572,1570,1634,1634,1635,[1636,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4201,4202,4203,4204,4203,4204,4203,4204,4203,4204,4203,4204,4203,4204,4203,4204,4203,4204,4205,4206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4137,4138,4139,4140,4139,4140,4139,4140,4139,4141,4142,0,0,0,0,0,0,4137,4138,4139,4140,4139,4140,4141,4142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17250,17254,17319,17253,17250,17253,17251,17250,17254,17320,17254,17253,17250,16738,16739,16738,16739,16739,16739,16674,16674,0,0,0,0,16674,[16674,17575],16674,0,0,0,0,0,0,16738,16738,16675,0,0,0,0,16738,16738,16674,16738,16675,16674,16674,16743,16744,16745,16675,16674,16675,16674,16738,16739,16738,16675,16738,16738,16674,16675,16674,16674,16674,16674,16674,16674,16738,16738,16738,16675,16739,16739,[16674,1386],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1740,3156],1741,1427,1804,1804,1804,1739,1739,1741,1805,1739,1804,1427,1427,[1803,2957],[1740,2961],[1803,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3026,[1741,2126,3027],[1804,2185],[1428,2186],1286,1286,[1739,2056],1805,1427,1741,[1803,3020],3021,3085,0,0,0,3155,3410,[1741,3411],1491,1427,1741,1740,1740,[1804,3083],3084,3085,0,3090,3091,[1805,3092],1803,1427,1427,1805,[1803,3469],[1739,3470],[1803,3471],[979,1806,3472],[915,3473],[980,1675,3474],1741,1741,1803,[980,1742],915,[979,1610],1739,1805,1804,1803,1741,[1805,3083],3084,3022,3085,0,0,0,0,0,3219,[1805,3220],1739,1803,1741,1739,1804,[1741,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],1810,1809,[1810,3090],[1745,3026],3027,0,0,0,0,3339,3340,[1808,3341],[1811,3344],[1745,3345],[1811,3346],3347,3348,0,0,3211,[1809,3212],1810,[1745,3090],[1746,3026],3027,0,0,0,0,0,0,0,0,3275,[1747,3341],[1747,3277],1808,[1744,3155],3347,3348,0,0,3147,[1744,3148],1808,[1808,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1811,3212],1744,[1744,3155],3156,0,0,0,0,3147,[1810,3148],1811,[1744,3155],3156,0,0,0,3211,[1809,3212],1810,[1747,3282],[1744,3346],3214,[1809,3341],[1811,3277],1746,1810,[1746,3219],3220,0,0,0,0,0,0,3147,[1808,3148],1809,[1747,3219],3220,0,2957,2961,2958,2958,2961,2961,2958,[1745,3084],[1808,3085],1745,[1744,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[1634,8444],1636,1569,1634,1636,1634,[1572,8308],8309,8310,8313,8314,[1363,8315],1299,1363,1300,[1300,8757],[1299,8758],[1363,8759],[1363,8762],[1363,1386],1999,1300,[1299,1440],[13799,1573],[13799,9296],[13799,9234],[13800,9298],[13800,9234],[13799,9296],[13799,9233],[13735,9297],[13800,9233],[13736,9233],[13800,9234,1506,8371],8372,8310,8314,[1300,8246],[1364,8249],8372,8373,0,0,0,0,0,0,0,0,8443,[1572,8444],1636,1571,1636,1570,1633,1571,[1571,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4137,4138,4139,4140,4139,4140,4139,4140,4274,4275,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4201,4202,4203,4204,4203,4204,4203,4204,4203,4205,4206,0,0,0,0,0,0,4201,4202,4203,4204,4203,4204,4205,4206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8511,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16738,16738,16674,16739,16674,16674,16675,16674,16675,16738,16674,16739,17251,16738,16675,16674,16674,16738,16675,16738,0,0,0,0,16738,16739,16674,0,0,0,0,0,0,16674,16738,16674,0,0,0,0,16675,16675,16739,16674,16738,16739,16675,16807,16808,16809,16675,16675,16675,16675,16739,16674,16738,16675,16674,16739,16675,16738,16738,16675,16739,16675,16738,16739,16674,16675,16674,16675,16675,16739,16738,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1739,3220],1804,1804,1427,1805,1428,1740,1805,1739,1741,1803,1803,1741,[1803,3020],3021,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1286,3027],1286,2376,[1286,2957],[1741,2120,2961],[1741,2958],[1740,2961],[1739,2958],3084,3085,0,0,0,0,3155,[1805,3156],1741,1741,1739,1804,1803,1741,[1739,3147],3148,0,0,0,3155,[1739,3156],1741,1803,1803,1428,1803,1741,1741,[979,1806],980,916,[979,1801],1740,1740,[980,1806],980,[979,1609],1741,1803,1803,1740,1805,[1803,3147],3148,0,0,0,0,0,0,3282,3283,[1803,3284],1804,1739,1803,1741,[1805,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[1808,3276],[1747,3277],1744,1811,[1809,3090],[1745,3091],3092,0,0,0,0,3404,3405,3408,3409,3410,3411,0,0,0,3147,[1809,3148],1747,1811,[1744,3090],[1747,3091],2961,2961,2958,3027,0,0,0,0,3339,3405,[1747,3148],1811,[1745,3155],3156,0,0,0,3211,[1745,3212],1745,[1811,3090],[1809,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,0,3020,[1808,3021],[1809,3085],1808,[1747,3219],3220,0,0,0,0,3211,[1745,3212],1808,[1744,3155],3156,0,0,0,3147,[1811,3148],1808,[1746,3219],3410,3470,3405,[1746,3148],1809,1808,[1744,3155],3156,0,0,0,0,0,0,3211,[1746,3212],1809,[1810,3090],[1811,3091],2958,[1810,3021],[1747,3025],[1744,3022],[1808,3022],[1808,3025],[1747,3025],[1746,3022],[1811,3085],1746,1810,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[1569,8508],1635,1634,1570,1570,[1635,8371],8372,8373,0,0,8378,8379,[1363,8380],1363,1363,1300,1299,1299,1363,1299,1299,1299,[1300,1504,1390],[13799,1637,8245],[13799,9233,8246],[13800,9232,8249],[13799,9232,8250],[13799,9297,1390],[13800,9233],[13799,9234],[13735,9297],[13800,9232],[13799,9298],[13736,9233,8435],8436,0,8378,8310,8313,8373,0,0,0,0,0,0,0,0,0,8507,[1570,8508],1570,1636,1572,1634,1635,1569,[1634,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4201,4202,4203,4204,4203,4204,4203,4204,4338,4339,5383,4271,4272,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,4401,4402,5384,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,4271,4272,5319,5320,5319,4401,4402,4269,4270,0,0,0,0,0,0,4265,4266,5320,5319,4401,4402,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8575,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16738,16738,16674,16739,16738,16674,16739,16739,16738,16674,16738,16739,16738,17251,16675,16738,16675,16674,16675,16675,0,0,0,0,16802,16674,16739,16675,16738,16675,16674,16739,16739,16679,16680,16681,0,0,0,0,16738,[16674,1388],17251,16739,16739,16675,16675,16739,16675,17253,[17254,17639],16675,16675,16739,16674,16739,16738,16739,16738,16675,16739,16675,16675,16674,16674,16674,16739,16674,16738,16674,16739,16675,16738,16738,16738,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1803,3027],1804,1739,1427,1804,1803,1803,1739,1804,[1804,2956],[1803,2957],[1739,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1286,2961],[1286,2958],3021,3025,3022,3025,3022,3085,0,0,0,0,0,3219,[1805,3220],1427,1740,1741,1739,1805,[1739,3020],3021,3085,0,0,0,3219,[1805,3220],1805,1803,1804,1740,1427,1739,1427,[915,1677],916,915,[916,1865],[916,1866],[979,1867],[979,1676],916,[915,1673],1427,1739,1804,1740,1427,[1805,3211],3212,0,0,0,0,0,3282,3346,3347,[1805,3348],1739,1804,1740,1803,[1804,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1745,3341],[1746,3277],1746,1810,[1810,3155],3156,0,0,0,0,0,3469,3472,3473,3474,0,0,0,3020,[1747,3021],[1811,3085],1744,1745,1811,[1745,3090],[1811,3025],[1746,3025],[1744,3022],[1810,3026],3027,0,0,0,0,3147,[1809,3148],1744,[1808,3219],3220,0,0,0,3211,[1809,3212],1745,1744,[1808,3090],[1809,3091],2961,2958,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,[1744,3084],[1745,3085],1746,1746,[1810,3090],[1745,3026],3027,0,0,3020,[1745,3021],[1747,3085],1745,[1746,3219],3220,0,0,0,3211,[1811,3212],1745,[1744,3219],3220,0,3211,[1745,3212],1808,1808,[1746,3219],3220,0,0,0,0,0,0,3147,[1810,3148],1810,1811,[1808,3090],[1808,3022],[1809,3085],1744,1744,1809,1808,1811,1810,1744,1744,1811,[1747,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[1636,8444],[1572,1387],1569,1634,1634,[1633,8435],8436,0,0,0,0,8443,[1364,8444],1363,1999,1364,1364,2127,2128,1364,1300,[1300,1390],[1299,1568,8308],8309,8310,8313,8314,[13799,9234,8246],[13799,9297,8249],[13800,9297,8250],[13800,9233],[13799,9298],[13800,9298],[13799,9233,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[1633,8315],1571,1634,1572,1569,1634,1571,[1633,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4137,4138,4274,4275,5319,5320,5319,5320,5319,5320,5319,5320,5319,4335,4336,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,4465,4466,5320,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,4335,4336,5383,5384,5383,4465,4466,4333,4334,0,0,0,0,0,0,4329,4330,5384,5383,4465,4466,[5320,7589],7590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13278,8639],[13278,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16739,16674,16739,16738,16674,16675,16739,16674,16739,16738,16738,16739,16738,16675,17319,16674,16675,16739,16674,16674,0,0,0,0,16866,16675,16675,16738,16674,16675,16738,16739,16675,16743,16744,16745,0,0,0,0,16739,17253,16674,17250,[16675,1388],16674,17253,[16674,1388],17250,16674,[16738,17703],17254,16739,17254,17251,[16675,1388],[16674,1388],16995,16996,16997,16998,[17319,17639],16674,[16674,1388],16739,16739,16674,16675,16738,16674,17003,17004,16738,16739,16738,[16738,1386],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1427,2961],[1804,2958],[1805,2961],[1804,2958],[1804,2958],[1427,3027],1739,1741,[1740,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,3155,[1803,3156],1428,1427,1741,1427,[1803,3083],3084,3085,0,0,0,0,3090,3026,[1741,3027],1741,1804,1803,1804,1804,[916,1614],915,916,980,916,979,980,915,[915,2957],[980,1737,2958],[1739,1287,2962],[1427,1288,2963],[1739,1289],[1739,1290],[1805,1291,3020],3021,3085,0,0,0,0,0,3155,3410,[1804,3411],1740,1741,1740,1804,1803,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,[1744,3148],1808,1744,[1809,3090],[1746,3091],3092,0,0,0,0,0,0,0,0,0,0,3020,[1808,3084],[1744,3085],1744,1810,1808,1745,1810,1811,1810,1744,[1747,3090],[1747,3091],3027,0,0,0,3211,[1808,3212],1808,[1746,3155],3156,0,0,0,3275,[1809,3276],[1808,3277],1746,1808,[1747,3090],[1745,3025],[1809,3022],[1746,3022],[1746,3025],[1747,3022],[1744,3025],[1747,3022],[1744,3025],[1809,3022],[1811,3025],[1808,3022],[1809,3025],[1810,3022],[1746,3085],1810,1744,1747,1745,[1810,3090],[1808,3091],2961,2958,[1745,3084],[1745,3085],1746,1811,[1808,3155],3156,0,0,0,3147,[1811,3148],1809,[1744,3155],3156,0,3211,[1809,3212],1811,1746,[1747,3155],3156,0,0,0,0,0,0,3211,[1808,3212],1747,1745,1744,1745,1808,1810,[1746,3282],[1744,3342],[1809,3343],[1808,3342],[1747,3277],1744,1745,1747,[1811,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[1634,8508],1636,1572,1572,[1571,1387],[1570,8499],8500,0,0,0,0,8507,[1364,8508],[1364,1385],1300,1300,1300,2191,2192,1363,1363,[1300,8371],8372,8373,0,0,8378,8310,8313,8314,[13799,9233,8315],[13799,9232,1390],[13800,9298,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[1572,8249],[1636,8250],1572,1570,1636,1633,[1634,1386],[1571,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4201,4202,4338,4339,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,4207,4208,5384,5383,5384,5383,5384,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,4148,4149,4397,4398,0,0,4137,4138,4139,4140,4274,4275,5320,5319,5320,5319,[5319,7653],7654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13344,8699],13342,13280,[13279,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16675,16739,16675,16674,16739,16738,16739,16675,16674,16674,16674,16674,16674,16674,16739,17253,16738,16675,16738,16739,0,0,0,0,0,[16674,1390],16739,16675,16675,16674,16674,16675,16738,16807,16808,[16809,1390],0,0,0,0,[17250,17639],16675,16738,16738,17254,17254,[16739,16746],17251,16738,17186,17190,16739,17253,16675,[16675,16746],17254,17250,17059,17060,16936,17062,[16739,17703],17254,2147500451,2147500451,2147500450,[16738,1390],[16675,1390],2147500450,2147500451,17067,17068,16739,16675,17251,17254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3025,3022,3022,3091,[1804,2961],[1491,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3220],1803,1741,1805,1739,[1739,3147],3148,0,0,0,0,0,0,3090,3091,[1741,2961],[1740,2958],[1739,2961],[1740,2958],[1804,2962],[980,1678],979,979,916,915,915,916,[915,3020],3021,3022,3026,[1286,3027],2310,[1286,3020],3084,3085,0,0,0,0,0,0,3219,[1741,3220],1740,1427,1739,1803,1803,[1739,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1745,3212],1811,1747,1809,[1747,3155],3156,0,0,0,0,0,0,0,0,0,3083,[1747,3084],[1747,3085],1809,1746,[1746,3282],[1744,3342],[1745,3343],[1810,3277],1744,1808,1811,1744,[1808,3090],[1810,3091],3027,0,3020,[1744,3021],[1809,3085],1747,[1810,3219],3220,0,0,0,3339,3340,[1745,3341],[1810,3277],1808,1810,1811,1745,1745,1810,1745,1746,1811,1811,1809,1747,1809,1747,1810,1811,1746,1747,1808,1810,1808,[1810,3090],[1747,3025],[1744,3022],[1809,3085],1809,1745,1747,[1811,3219],3220,0,0,0,3211,[1809,3212],1811,[1811,3219],3220,0,3211,[1810,3212],1811,1747,[1746,3219],3220,0,0,0,0,0,0,3275,[1808,3276],[1808,3277],1747,1810,1747,1745,[1810,3282],[1809,3283],3406,3407,3214,[1744,3276],[1809,3277],1809,1808,[1747,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[1569,8315],[1633,1391],1635,[1569,8308],8309,8373,0,0,0,0,8378,8314,[1364,8315],[1299,1387],1363,1363,1364,1363,1300,1364,[1363,8435],8436,0,0,0,0,0,0,8378,8379,[13799,9296,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8314,[1636,8315],1571,1633,1634,[1635,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,5320,4207,4208,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,4212,4213,4461,4462,0,0,4201,4202,4203,4204,4338,4339,5384,5383,4207,4208,[5383,7717],7718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13279,8444],13341,13279,13344,13342,[13341,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16739,16738,16675,16675,16995,16997,16996,16997,16996,16998,16739,16738,16674,16675,16739,16674,17251,17250,17254,17319,0,0,0,0,0,16803,16803,16803,16803,16803,16802,16803,16802,16802,16802,16803,0,0,0,0,[16738,17703],16738,16675,16674,16675,16739,17189,16675,16739,17186,17187,16738,16675,16674,16739,16738,16738,17123,17124,17125,17126,16932,16739,16867,16866,16866,2147500451,2147500450,16866,16867,0,0,[16675,1388],17250,[16675,16810],16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3346,3347,[1740,3850],[1739,3851],[1804,3852],[1427,3853],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1739,3284],1739,1803,1741,1803,[1739,3211],3212,0,0,0,0,0,0,0,3090,3025,3022,3025,3022,3026,[915,1742,3027],980,915,916,980,980,[915,3020],3084,3085,0,3090,3091,[1286,2961],3084,3085,0,0,0,0,0,0,0,3219,[1741,3220],1741,1803,1803,1803,[1804,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1809,3148],1811,1747,1746,[1744,3219],3220,0,0,0,0,0,0,0,0,3083,[1810,3084],[1811,3085],1809,1744,[1745,3282],[1745,3283],3406,3407,[1808,3341],[1747,3342],[1811,3343],[1809,3277],1744,1810,[1810,3090],[1810,3091],2961,[1745,3084],[1810,3085],1746,1809,[1745,3090],[1811,3091],2958,2962,0,0,3404,3405,[1811,3341],[1747,3342],[1809,3343],[1744,3344],[1808,3345],[1811,3342],[1745,3343],[1810,3277],1808,1746,1811,1811,[1746,3282],[1746,3342],[1808,3343],[1810,3344],[1810,3345],[1744,3277],1747,1746,1808,1745,1808,1745,1808,1744,1808,1747,[1747,3282],[1744,3283],3284,0,0,0,3147,[1747,3148],1809,[1747,3155],3156,0,3275,[1746,3276],[1811,3277],1746,[1808,3090],[1810,3026],3027,0,0,0,0,0,3339,3340,[1746,3341],[1747,3277],1747,1808,[1746,3282],[1745,3346],3347,3470,3471,3470,3340,[1747,3341],[1811,3277],1809,[1746,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[1570,8246],[1571,8249],8372,8373,0,0,0,0,0,0,8378,8379,[1363,8249],[1299,8250],1300,1935,1364,1299,1364,[1300,8499],8500,0,0,0,0,0,0,0,8378,8313,8373,0,0,0,0,0,0,0,0,0,8570,8822,8814,8815,8816,8633,8565,0,0,0,0,8378,8379,[1633,8380],1571,1634,[1636,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,4399,4400,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4146,4147,5319,5320,5319,4269,4270,0,0,0,0,4265,4266,5320,5319,4271,4272,5320,5319,5320,5319,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13277,8508],13341,13280,13342,13344,[13341,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16739,16995,16996,16997,17196,17061,17061,17060,17193,17126,16739,16674,16675,16674,16674,16738,16674,16675,16739,16674,0,0,0,0,0,16866,16866,16866,16866,16866,16866,16866,16867,16866,16867,16867,0,0,0,0,16869,16738,16675,17189,17189,16869,17186,16932,16933,16674,16739,17190,16739,16932,16738,17186,16868,16739,17190,16674,17186,16868,16932,0,0,0,16866,16866,0,0,0,0,[17251,17639],16674,16674,16738,16675,16674,16738,16739,16675,16739,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3344,3345,3346,3406,3407,3410,[1805,3732],1427,1803,1427,1805,[1740,3784],3405,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1741,3348],1739,1804,1740,1741,[1739,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[979,1611,3092],[979,1546],[980,1547],[980,1548],[980,1549,3083],3084,3085,0,0,0,3090,3025,3085,0,0,0,0,0,0,0,3282,3283,[1803,3284],1427,1740,1803,1804,[1741,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],1810,1811,1746,[1746,3155],3156,0,0,0,0,0,0,0,0,3147,[1745,3148],1745,1744,[1747,3282],[1811,3346],3347,3470,3471,3405,3406,3407,[1744,3276],[1811,3277],1809,1808,[1810,3090],[1744,3025],[1746,3085],1746,1747,1744,1744,[1746,3090],[1810,3022],[1809,3026],3027,0,0,3469,3405,3406,3407,3408,3409,3406,3407,[1746,3276],[1744,3277],1747,1745,[1745,3282],[1809,3283],3406,3407,3408,3409,[1747,3341],[1811,3342],[1746,3343],[1746,3344],[1811,3345],[1747,3277],1746,1811,1744,1745,[1747,3282],[1744,3283],3347,3348,0,0,0,3211,[1744,3212],1808,[1809,3219],3220,0,3339,3340,[1808,3341],[1744,3277],1810,[1810,3090],[1747,3091],3092,0,0,0,0,0,3404,3405,[1744,3148],1745,1809,[1811,3155],3410,3411,0,0,0,3404,3405,[1809,3148],1747,[1744,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8373,0,0,0,0,0,0,0,0,8378,8313,8314,[1364,8315],1364,1299,1363,1364,[1300,8563],8564,8565,0,0,8570,8630,8631,8632,8633,8565,0,0,0,0,0,0,0,0,0,8570,8571,8886,8878,8879,8880,8502,8564,8565,0,0,0,0,8443,[1570,8444],1635,1633,[1633,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,4463,4464,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4148,4149,4395,4396,4395,4396,4146,4147,5319,5320,5319,5320,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4210,4211,5383,5384,5383,4333,4334,0,0,0,0,4329,4330,5384,5383,4335,4336,5384,5383,4148,4149,4397,4398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13280,8315],13280,13341,[13343,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16675,17059,17060,17061,17060,17060,17061,17061,17062,16679,16680,16681,16738,16675,16675,16674,16738,16738,16674,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16868,17187,17187,16868,16868,16869,16933,16869,16868,17187,17189,16676,16677,16677,16677,16677,16677,16678,16932,16738,16738,16738,16932,16739,16739,16738,16674,16739,16675,16674,16738,16674,[16674,17703],16675,16674,16674,16674,16995,16996,16997,16998,16738,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3408,3409,3410,[1804,3856],[1427,3857],[1804,3858],1427,1803,1803,1741,1428,1740,[1739,3849],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1803,3411],1740,1803,1803,1740,1804,[1804,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1741,3156],1740,1740,1741,[1803,3147],3148,0,0,0,0,0,0,0,0,0,3282,3342,3343,3344,3345,3346,3347,[1803,3348],1805,1740,1740,1805,[1805,3211],3212,0,0,0,0,3282,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1808,3148],1811,1810,1811,[1808,3219],3220,0,0,0,0,0,0,0,0,3211,[1809,3212],1811,[1744,3282],[1808,3346],3410,3411,0,0,3469,3470,3471,3340,[1811,3276],[1744,3277],1811,1808,1809,1746,1746,1745,1810,1809,1811,1744,[1745,3090],[1746,3091],2958,2961,2962,3469,3470,3471,3472,3473,3470,3471,3340,[1746,3341],[1745,3277],1744,[1810,3155],3347,3470,3471,3472,3473,3405,3406,3407,3408,3409,[1808,3276],[1811,3277],1810,1809,[1809,3282],[1747,3346],3347,3411,0,0,0,0,3147,[1810,3148],1811,[1811,3155],3156,0,0,3404,3405,[1808,3148],1747,1745,[1808,3155],3156,0,0,0,0,0,0,3211,[1747,3212],1808,1744,[1809,3219],3220,0,0,0,0,0,3147,[1810,3148],1745,[1744,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[1300,1441,8380],[1364,1377],[1299,1378],[1300,1379],[1299,1380,8627],8628,8629,8630,8631,8634,8694,8695,8696,8697,8564,8565,0,0,0,0,0,0,0,8570,8634,8635,[13800,9298,8950],[13799,9234,8942],[13800,9297,8943],[13799,9234,8944],[13800,9296,8761],8628,8629,8565,0,0,0,8507,[1633,8508],1569,1636,[1570,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,4212,4213,4459,4460,4459,4460,4210,4211,5383,5384,5383,5384,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,4276,4277,4139,7014,7015,7016,4274,4275,5320,5319,5320,5319,5320,5319,4212,4213,4461,4462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13343,8246],[13280,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16674,17059,[17060,17510],17060,17061,17061,17061,17060,17062,16743,16744,16745,16995,16996,16997,16997,16674,16674,16738,16739,0,0,0,0,0,0,0,[16674,1178],16675,16869,16932,16932,16868,17187,16869,17187,16868,17187,17190,17186,17190,16995,16997,16997,16997,16997,16997,16997,16998,16869,16933,16740,16741,16934,16934,16871,16741,16742,16674,16674,16932,17186,17186,16738,16738,16738,16738,16739,16738,16738,16738,16738,16739,16739,16995,16996,16997,17196,17060,17061,17062,16675,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1427,3852],[1741,3853],[1741,3854],[1803,3855],[1741,3795],1740,1804,1739,1803,1741,1739,1739,1804,1803,1805,[1739,3591],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1804,3156],1805,1491,1741,1741,1741,1804,[1739,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1741,3156],1741,1427,1804,[1739,3211],3212,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3408,3409,3410,[1741,3411],1491,1741,1804,1741,[1741,3020],3021,3085,0,0,0,3282,3283,3406,3407,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1746,3212],1809,1747,1745,[1810,3090],[1745,3026],3027,0,0,0,0,0,0,0,3147,[1744,3148],1808,[1811,3155],3410,3411,0,0,0,0,0,0,3404,3340,[1808,3341],[1745,3342],[1745,3343],[1745,3344],[1747,3345],[1811,3342],[1810,3343],[1746,3344],[1808,3345],[1744,3342],[1811,3277],1811,[1744,3090],[1809,3022],[1811,3025],[1811,3026],3027,0,0,0,0,0,0,3404,3405,[1746,3148],1745,[1809,3155],3156,0,0,0,0,3469,3470,3471,3472,3473,3340,[1808,3341],[1810,3277],1810,[1746,3155],3410,3411,0,0,0,0,0,3211,[1808,3212],1744,[1745,3219],3220,0,0,0,3211,[1811,3212],1746,1747,[1809,3090],[1746,3026],3027,0,0,0,0,3020,[1810,3021],[1746,3085],1747,1808,[1811,3155],3156,0,0,0,0,0,3211,[1810,3212],1811,[1811,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[1635,8444],1570,1634,1572,[1572,1390],[1571,8692],8693,8694,8695,8698,[1635,8758],[1635,8759],[13800,9298,1443,8760],[13799,9232,8761],8628,8629,8565,0,0,0,0,0,0,8443,8698,[13800,9232,8699],[13800,9233,1390],[13799,9296],[13800,9232],[13799,9233],[13799,9234,1392],[13800,9298,8692],8693,8500,0,0,8570,8571,[1635,8572],1636,1633,[1635,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4395,4396,4146,4147,5319,5320,5319,5320,5319,5320,4271,4272,5319,5320,4269,4270,0,0,0,0,4265,4266,5319,5320,5319,5320,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,4340,4341,4203,[5320,7078],[5383,7079],[5320,7080],4338,4339,5384,5383,4148,4149,4395,4396,4397,4398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16674,16738,17059,[17061,17574],17060,17060,17060,17060,17060,17062,16807,16808,16809,17059,17061,17060,17062,16739,16738,16739,16674,0,0,0,0,0,0,0,16738,16738,17186,16932,16933,17190,16932,17187,16868,17187,17187,17189,16933,16869,17059,17061,[17061,17510],17061,17060,[17060,17510],17061,17062,17187,16869,16740,16744,16934,16739,16934,16744,16742,16738,16674,16933,16869,16868,[16674,17511],16739,16674,16738,16739,16738,16739,16675,16675,16674,16738,17059,17060,17060,17061,17060,17061,17062,16674,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[1805,3795],1803,1740,1804,1740,1805,1740,1739,1805,1739,1427,1741,1739,1739,1427,[1804,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1739,3220],1741,1804,1492,1805,1803,1804,[1803,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,3219,[1805,3220],1741,1803,1804,[1805,3275],3276,3277,0,0,0,0,0,0,3282,3346,3347,[1805,3470],[1739,3471],[1739,3472],[1739,3473],[1803,3474],1804,1739,1427,[1804,2957],[1739,2958],3084,3085,0,0,0,3282,3346,3347,[1805,3470],[1804,3471],[1805,3472],[1739,3473],3340,3341,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[1809,3276],[1811,3277],1808,1809,1746,[1808,3090],[1809,3091],2958,2961,2962,0,0,0,0,3211,[1746,3212],1746,[1745,3219],3220,0,0,0,0,0,0,0,0,3404,3405,3406,3407,3408,3409,3406,3407,3408,3409,3214,[1747,3276],[1744,3277],1744,1810,1808,[1811,3090],[1746,3091],2958,2962,0,0,0,0,0,3147,[1809,3148],1811,[1747,3219],3220,0,0,0,0,0,0,0,0,0,3404,3405,[1811,3212],1810,[1808,3155],3156,0,0,0,0,0,0,3147,[1744,3148],1746,[1746,3155],3156,0,0,0,3147,[1745,3148],1811,1811,1809,[1745,3090],[1744,3091],2958,2961,2961,2958,[1745,3084],[1744,3085],1810,1747,1808,[1745,3219],3220,0,0,0,0,0,3147,[1810,3148],1809,[1744,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[1572,8508],1636,1634,1572,1571,[13735,9298,1507,1390],[13800,9298,1568,8757],[1634,8758],[1571,8759],[1570,8762],[1569,1386],1636,[13799,9233,1637],[13800,9232,1391],[13735,9232,8692],8693,8436,0,0,0,0,0,0,8507,[13800,9298,8508],[13799,9297],[13799,9297],[13799,9232],[13800,9297],[13800,9233],[13800,9298,1442],[13800,9296,1381],[13800,9232,8563],8564,8630,8631,8634,8635,[1569,8636],1572,1572,[1570,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4459,4460,4210,4211,5383,5384,5383,5384,5383,5384,4335,4336,5383,5384,4333,4334,0,0,0,0,4329,4330,5383,4271,4272,5384,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,4399,4400,5320,5319,5320,5319,5320,5319,4212,4213,4459,4460,4461,4462,0,0,0,4137,4138,7014,7015,7016,4141,4142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16739,17059,17060,17060,17060,17061,17060,17060,17195,16997,16996,16997,17196,17060,17061,17257,16996,16998,16675,16674,0,0,0,0,0,0,0,16738,16674,16995,16996,16997,16996,[16997,17510],16996,16997,16996,16997,16996,16998,17186,17059,17060,[17060,17574],17060,17061,[17060,17574],16936,17062,16675,17187,16740,16744,16934,16739,16934,16741,16742,16868,16738,16869,16869,16674,[16738,17575],16738,16675,16739,16738,16738,16739,16739,16674,16739,16674,17123,17124,17125,17194,17060,17061,17062,16738,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1741,3604],1805,1804,1804,1803,1427,1740,1427,1804,1740,1739,1804,1805,1741,1427,1803,[1741,3527],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1803,3156],1491,1427,1804,1804,1741,1803,1741,[1805,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,3282,3283,[1739,3284],1741,1803,1803,[1741,3339],3340,3341,3277,0,0,0,0,0,3155,3410,[1805,3411],1740,1740,1427,1739,1805,1804,1427,[1803,3020],3021,3022,3085,0,0,0,3282,3283,3410,[1740,3411],[1741,1387],1740,1427,1427,[1803,3404],3405,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1747,3341],[1811,3277],1746,1809,1746,[1747,3090],[1744,3022],[1744,3025],[1747,3026],3027,0,0,3020,[1808,3021],[1811,3085],1746,[1811,3219],3220,0,0,0,0,0,0,0,0,0,3469,3470,3471,3472,3473,3470,3471,3472,3473,3470,3340,[1811,3341],[1747,3344],[1744,3345],[1808,3277],1811,[1746,3090],[1747,3022],[1744,3026],3027,0,0,0,0,3211,[1808,3212],1747,[1809,3155],3156,0,0,0,0,0,0,0,0,0,0,3147,[1747,3148],1744,[1744,3219],3220,0,0,0,0,0,0,3211,[1746,3212],1810,[1811,3219],3220,0,0,0,3211,[1747,3212],1745,1811,1809,1747,[1744,3090],[1745,3022],[1746,3025],[1746,3025],[1746,3022],[1808,3085],1746,1746,[1810,1954],1811,[1747,3155],3156,0,0,0,0,0,3211,[1744,3212],1809,[1745,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8633,8571,[1636,8572],1635,[13800,9298,1699],[13800,9298,1700],[13800,9234,1701],[13800,9297],[13799,9232,1632],1572,1570,1633,1569,1634,1635,[13800,9298,1443],[13799,9232],[13800,9232,8499],8500,0,0,0,0,0,0,8443,[13800,9233,8444],[13799,9296],[13799,9232,1441],[13800,9233,1378],[13800,9297,1379],[13800,9298,1380],1633,1635,[1635,8627],8628,8694,8695,8698,[1634,8699],1569,1635,1571,[1635,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4276,4277,4141,4142,0,0,4265,4266,5319,4335,[4336,6414],5320,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,4463,4464,5384,5383,5384,5383,5384,5383,4333,4334,0,0,0,0,0,0,0,4201,4202,[5384,7078],[5319,7079],[5384,7080],4205,4206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16739,17123,17125,17125,17125,17124,17124,17124,17124,17194,17061,17061,17060,17060,[17061,17510],17061,17061,17062,16738,16674,0,0,0,0,0,0,0,16674,16738,17059,17060,17060,17061,[17060,17574],17061,17061,17060,17060,17061,17062,17186,17123,17124,17124,17124,17125,17124,17124,17126,16738,17187,16740,16744,16870,16934,16934,16741,16742,16868,16933,16869,16674,17186,16739,16675,16738,16674,16739,16674,16674,16738,16674,16739,16738,16738,16675,16675,17123,17124,17125,17126,16738,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1427,3732],1740,1740,1803,1805,1741,1805,1804,1427,1427,1741,1804,1741,1803,1741,1804,[1804,3591],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1805,3220],1803,1741,1427,1805,1740,1805,1805,1427,[1740,3147],3148,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1739,3348],1427,1427,1740,1739,[1804,3404],3405,3276,3277,0,0,0,0,3219,[1804,3220],1427,1427,1804,1740,1427,1805,1739,[1740,3083],3084,3085,0,0,0,0,3282,3346,3347,[1804,3474],1804,1804,1805,1427,1805,1740,[1803,3469],[1740,3470],[1741,3471],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,[1747,3148],1745,1747,1810,1744,1810,1745,[1811,3090],[1746,3091],2961,2958,[1744,3084],[1811,3085],1811,1747,[1747,3090],[1744,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,3408,3409,[1747,3276],[1810,3277],1745,1809,[1745,3090],[1745,3091],3092,0,0,0,3147,[1809,3148],1746,[1747,3219],3220,0,0,0,0,0,0,0,0,0,0,3211,[1745,3212],1808,[1745,3155],3156,0,0,0,0,0,0,3147,[1809,3148],1809,[1811,3155],3156,0,0,0,3147,[1747,3148],1746,1744,1745,1746,1811,1808,1811,1744,1811,1808,1747,[1809,2017],[1744,2018],[1746,2019],[1811,3219],3220,0,0,0,0,0,3147,[1810,3148],1747,[1746,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8697,8635,[1572,8636],[13799,9296,1637],[13800,9234],[13799,9296],[13800,9234],[13799,9232],[13799,9234,1696],1570,1571,1569,1634,1633,1634,1634,[13799,9233,1377],[1378,8563],8564,8565,0,0,0,0,0,8507,[13799,9233,8508],[13800,9232,1376],1571,1634,1570,1636,1636,1570,1572,[1572,8692],[1569,8758],[1636,8759],[1635,8762],1571,1569,1571,1569,[1571,1390],[1569,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,4207,4208,5384,5383,5384,5383,5384,5383,5384,4340,4341,4205,4206,0,0,4329,4330,5383,[5384,6477],[5383,6478],[5384,6479],4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4146,4147,4401,4402,4148,4149,[5384,7462],[5383,7463],[5320,7464],4146,4147,4208,5319,4276,4277,4140,4141,4142,0,0,4137,4138,4274,4275,5319,5320,5319,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16738,16739,16739,16675,16738,16674,16674,16674,16739,17123,17125,17124,17061,17061,[17060,17574],17193,17125,17126,16738,16674,0,0,0,0,0,0,0,16739,16738,17059,17061,17060,17060,17060,17061,17060,17060,17060,17061,17062,17190,17186,16933,17187,17189,17189,16933,17187,16869,16674,17186,16804,16805,16805,16805,16805,16805,16806,16674,16868,16739,16739,16933,16738,16675,16674,16739,16675,16739,16739,16739,16803,16802,16803,16675,16739,16738,16675,16738,16738,16738,16674,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3410,[1740,3795],1741,1803,1804,1804,1804,1805,1739,[1805,2957],[1739,2958],[1741,2961],[1427,2962],1741,1492,1427,1740,[1741,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1739,3027],1805,1803,1741,1427,1740,1804,1741,[1804,3211],3212,0,0,0,0,0,0,0,0,3282,3283,3410,[1804,3411],1805,1741,1740,1740,1741,1741,[1805,3469],3340,3341,3342,3343,3344,3345,3346,[1804,3284],1805,1804,1739,1805,1804,1803,1739,[1805,3147],3148,0,0,0,0,0,3219,3410,[1741,3411],1741,1739,1739,1805,1803,1739,1740,1492,1740,[1741,1387],[1739,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1747,3212],1746,1745,1747,1810,1745,1744,1747,[1808,3090],[1810,3025],[1747,3022],[1809,3085],1746,1811,1746,1745,[1745,3090],[1809,3091],3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3469,3472,3473,3340,[1744,3341],[1746,3277],1746,1810,[1747,3155],3156,0,0,0,3211,[1808,3212],1747,[1745,3155],3156,0,0,0,0,0,0,0,0,0,0,3147,[1747,3148],1744,[1810,3219],3220,0,0,0,0,0,0,3211,[1745,3212],1746,[1811,3219],3220,0,0,0,3211,[1744,3212],1809,1808,1808,1747,[1745,3282],[1811,3342],[1811,3343],[1808,3342],[1811,3343],[1744,3277],1809,1746,1746,1808,[1746,3155],3156,0,0,0,0,0,3211,[1810,3212],1746,[1745,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[1633,8758],[1570,8761],[1570,8699],1634,[13799,9233,1507],[13799,9297],[13800,9296],[13800,9296],[13799,9233],[13800,9298],[13800,9234,1505,8245],[1569,8249],[1635,8250],1569,1635,1635,1571,1569,[1572,8627],8628,8629,8565,0,0,0,0,8378,8314,[13799,9296,1632,8315],1571,1572,1636,1569,1636,1570,1572,1571,1572,1633,1633,1633,1635,1569,1572,1569,[1636,1390],[1636,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4269,4270,0,0,4393,4394,4395,4396,4395,4396,4397,4398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4210,4211,4465,4466,4212,4213,7526,7527,7528,4210,4211,5384,5383,4340,4341,4204,4205,4206,0,0,4201,4202,4338,4339,5383,5384,5383,4276,4277,4141,4142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16738,16674,16674,16738,16739,16675,16738,16739,16674,16739,16739,16738,17123,17125,17124,17126,16739,16674,16674,16675,0,0,0,0,0,0,0,16738,16675,17059,17060,17060,16936,17061,17061,17061,17061,17061,16738,16675,17187,17187,16674,16739,17189,16869,16738,17186,16738,16674,17186,17189,16738,16868,16933,17190,16933,16868,16675,16869,16674,17186,17186,16674,16674,16738,16675,16739,16738,16802,16803,16866,16867,16867,16739,16675,16675,16675,16739,16739,16675,16674,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1803,3858],1741,1805,1740,1427,1739,1741,1740,[1803,3020],3021,3022,3025,3026,[1804,2958],[1741,2961],[1740,2958],[1739,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1803,3027],1805,1804,1739,1803,1740,1805,[1803,3275],3276,3277,0,0,0,0,0,0,3282,3283,3347,[1803,3474],1428,1803,1804,1805,1427,1740,1805,1804,[1741,3404],3405,3406,3407,3408,3409,3410,[1741,3348],1741,1805,1740,1805,1805,1739,[1739,3020],3021,3085,0,0,0,0,0,3219,[1805,3220],1803,1804,1804,1739,1427,1427,1739,1805,1491,1740,1803,1740,[1804,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[1745,3276],[1810,3277],1746,1810,1811,1810,1745,1810,1809,1810,1809,1811,1746,1747,1811,1811,1811,[1809,3090],[1747,3091],2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,2962,0,0,0,0,3404,3405,[1747,3148],1808,1746,[1745,3219],3220,0,0,0,3147,[1809,3148],1809,[1810,3219],3220,0,0,0,0,0,0,0,0,0,0,3147,[1744,3148],1745,[1809,3090],[1747,3026],3027,0,0,0,0,3020,[1810,3021],[1809,3085],1809,[1744,3155],3156,0,0,0,3147,[1810,3148],1744,1811,1810,[1808,3282],[1810,3283],3406,3407,3406,3407,[1747,3276],[1808,3277],1746,1808,1809,[1747,3219],3220,0,0,0,0,0,3147,[1809,3148],1810,[1746,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,8698,[1634,8699],1570,1633,1571,[13800,9233,1445],[13735,9233],[13799,9297],[13800,9297],[13800,9296],[13800,9297],[13799,9234,8245],8309,8313,8314,[1636,8250],1569,1572,1636,1572,1569,[1635,8692],8693,8436,0,0,0,0,0,8378,8379,[1572,8380],1633,1572,1634,1570,1635,1636,[1636,8308],[1570,8246],[1633,8249],[1636,8250],1633,1570,1571,1569,1635,1634,[1636,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,4271,4272,5384,4333,4334,0,0,4457,4458,4459,4460,4459,4460,4461,4462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,4276,4277,4141,4142,0,4265,4266,5320,5319,5320,4401,4402,4269,4270,0,0,4265,4266,5319,5320,5319,5320,5319,4340,4341,4205,4206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16803,16803,16803,17003,17004,16802,16802,16803,16803,16802,16802,16739,16738,16674,16738,16675,16738,16738,16739,16675,16674,0,0,0,0,0,0,0,16739,16675,17059,17061,17061,17060,[17060,17510],17060,17061,17061,17061,16674,17066,16739,17189,17190,17186,17186,17187,16674,17189,17186,17190,16933,16739,16869,17189,16739,17190,16675,16933,16868,17186,17189,17190,16674,16738,17066,16738,16738,17003,17004,16866,16866,0,0,0,16739,16739,16738,16674,16738,16738,16739,16674,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[1427,3795],1803,1739,1803,1805,1804,1427,1803,[1803,3083],3084,3085,0,0,3090,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,2958],[1804,2962],1803,1739,1804,1803,[1805,3339],3340,3341,3277,0,0,0,0,3282,3346,3347,[1741,3411],1739,1741,1740,1803,1741,1740,1740,1805,1491,1803,[1803,3469],[1741,3470],[1805,3471],[1804,3472],[1740,3473],[1741,3474],1739,1739,1739,1804,1804,1803,1805,[1739,3147],3148,0,0,0,0,0,3282,3283,[1740,3284],1804,1805,1804,1741,[1804,2957],[1805,2958],[1804,2962],1740,1739,1740,1804,[1741,1387],[1805,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1808,3341],[1746,3342],[1747,3343],[1745,3344],[1809,3345],[1746,3277],1809,1810,1747,1744,1811,1810,1744,1810,1809,1808,1747,[1746,3090],[1808,3025],[1811,3022],[1744,3025],[1747,3022],[1808,3025],[1810,3022],[1747,3025],[1808,3022],[1810,3025],[1744,3022],[1811,3025],[1744,3022],[1810,3025],[1811,3022],[1811,3025],[1811,3022],[1745,3026],3027,0,0,0,0,3211,[1746,3212],1745,1808,[1745,3090],[1745,3026],3027,0,3020,[1746,3021],[1808,3085],1811,[1745,3090],[1745,3026],3027,0,0,0,0,0,0,0,0,3020,[1808,3021],[1747,3085],1808,1811,[1810,3090],[1808,3091],2961,2958,2961,2958,[1745,3084],[1746,3085],1746,1745,[1747,3090],[1810,3026],3027,0,0,3211,[1811,3212],1808,1745,[1811,3282],[1809,3346],3347,3470,3471,3470,3471,3340,[1809,3341],[1810,3277],1810,1746,[1744,3155],3156,0,0,0,0,0,3211,[1744,3212],1809,[1811,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[1569,8572],1569,1633,1571,1572,[13800,9234,1509],[13800,9296],[13800,9233],[13799,9232],[13799,9233],[13800,9298,1442],[1377,8499],8500,0,8507,[1635,8508],1571,1635,1569,1570,1572,[1633,1388],[1570,8499],8500,0,0,0,0,0,0,8443,[1635,8444],1569,1570,1634,1572,[1570,8245],[1569,8246],8372,8310,8313,8314,[1572,8246],[1636,8250],1572,1634,1572,1634,[1571,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4395,4396,4395,4146,4147,5383,5319,5320,5319,4335,4336,5320,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,4340,4341,4205,4206,0,4329,4330,5384,5383,5384,4465,4466,4333,4334,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16866,16867,16867,17067,17068,16866,16867,16866,16867,16866,16866,16738,16738,16738,16739,16674,16675,16739,16675,16738,[16738,1178],0,0,0,0,0,0,0,16739,16738,17123,17124,17125,17125,[17125,17574],17124,17194,17061,17060,17254,17130,17250,[17254,17634],17250,[17319,17506],17253,[17319,17634],17250,[17251,17506],17253,[17251,17506],17254,[17319,17506],17253,[17251,17634],17250,[17250,17506],17250,[17251,17506],17254,[17253,17634],17253,[17319,17506],17253,[17254,17511],17130,16802,16803,17067,17068,0,0,0,0,0,16738,16738,16739,16803,16802,16802,16803,16803,16803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1805,3858],1804,1739,1740,1804,1803,1805,1804,1427,[1741,3527],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3026,[1739,3027],1427,1427,1741,1491,[1741,3404],3405,3148,0,0,0,0,3155,3410,[1741,3411],1740,1741,1741,1427,1739,1427,1803,1427,1427,1739,1741,1741,1805,1804,1805,1740,1803,1739,1805,1805,1740,1805,1741,1427,[1741,3211],3212,0,0,3282,3342,3343,3346,3347,[1805,3348],1804,1803,1805,[1739,3020],3021,3022,3026,[1805,3027],1427,1739,[1804,1387],[1805,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,3406,3407,3408,3409,[1808,3276],[1809,3277],1745,1744,1745,1747,1747,1810,1808,1747,1746,1745,1744,1744,1811,1744,1747,1808,1808,1811,1808,1744,1810,1811,1747,1808,1811,1810,1746,[1808,3090],[1745,3091],2961,2958,2961,2958,[1809,3021],[1808,3085],1745,1744,1808,[1808,3090],[1810,3091],2958,[1747,3084],[1747,3085],1744,1745,1746,[1746,3090],[1745,3091],2961,2958,2961,2958,2961,2958,2961,2958,[1811,3084],[1810,3085],1811,1747,1808,1746,[1744,3090],[1811,3025],[1809,3022],[1810,3025],[1810,3022],[1810,3085],1809,1744,1744,1811,[1808,3090],[1808,3091],2961,2958,[1808,3084],[1809,3085],1811,1746,[1745,3155],3410,3411,0,0,0,0,3404,3405,[1809,3148],1808,1810,[1808,3219],3220,0,0,0,0,0,3147,[1808,3148],1811,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[1633,8636],1572,1571,1572,1635,[13799,9233,1573],[13799,9296],[13800,9233],[13736,9232,1441],[13799,9232,1377],[1572,8371],8372,8373,0,8378,8314,[1300,1697,8315],[1300,1697],[1363,1698],[1363,1699],[1363,1700],[1300,1700,8308],8309,8373,0,0,0,0,0,0,8507,[1633,8508],1635,1572,1572,[1633,8308],8309,8310,8373,0,0,8378,8310,8314,[1634,8380],1635,1635,1569,[1636,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4459,4460,4459,4210,4211,5320,5383,5384,5383,5384,5383,5384,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,4271,4272,4269,4270,0,4393,4394,4396,4146,4147,5319,5320,4276,4277,4139,4140,4274,4275,5319,5320,5319,4271,4272,5320,5319,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16803,16803,16803,16803,16803,16803,16802,16802,17003,17004,0,0,0,0,0,0,0,16738,16739,16738,16675,16675,16675,16675,16674,17123,17125,17126,16674,16675,17315,[17317,17698],17317,[17317,17570],[17317,17638],[17317,17698],17317,[17317,17570],17317,[17317,17570],17317,[17317,17570],[17317,17638],[17317,17698],17317,[17317,17570],17317,[17317,17570],[17317,17638],[17317,17698],17317,[17317,17570],17318,[16738,17575],16738,16867,16867,0,0,0,0,0,0,0,16739,16739,16738,16867,16867,16867,16867,16867,16867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1740,3540],1805,1741,1427,1805,1805,1427,1804,1804,1427,[1804,3591],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1739,3092],1805,1741,1739,1803,[1805,3147],3148,0,0,0,0,3155,[1804,3156],1804,1491,1803,1803,1740,1739,1804,1741,1427,1803,1739,1805,1427,1803,1741,1740,1427,1741,1803,1427,1804,1803,1739,1805,1741,[1805,3275],3276,3344,3345,3346,3406,3407,3410,[1740,3411],1427,1805,1803,[1739,3083],3084,3085,0,3090,3091,[1741,2958],[1740,2961],[1740,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3469,3470,3471,3472,3473,3340,[1747,3341],[1745,3277],1808,1808,[1746,3282],[1745,3344],[1745,3345],[1808,3277],1809,1747,1746,1811,1808,1811,1810,1809,1747,1811,1810,1745,1744,1810,1747,1809,1810,1810,1744,1744,1745,[1808,3090],[1810,3025],[1745,3022],[1810,3025],[1744,3022],[1809,3085],1808,1745,1808,1808,1809,[1746,3090],[1746,3022],[1747,3085],1810,1746,1811,1746,1808,[1745,3090],[1810,3025],[1745,3022],[1744,3025],[1809,3022],[1746,3025],[1809,3022],[1747,3025],[1811,3022],[1810,3085],1809,1744,1746,1744,1745,1810,1744,1744,1810,1811,1809,1810,1811,1747,1745,1810,[1747,3090],[1745,3025],[1746,3022],[1808,3085],1808,1744,1811,[1811,3219],3220,0,0,0,0,0,0,3147,[1747,3148],1811,1747,[1808,3155],3156,0,0,0,0,0,3211,[1744,3212],1746,[1746,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8698,[1572,8699],1636,1572,[1572,8245],[1570,8246],[1571,8249],[13800,9297,1637,8250],[13799,9233,1441],[13799,9234,1377],1571,1633,[1570,8435],8436,0,0,0,8378,8379,[1300,8380],1363,1363,[1299,8371],8372,8373,0,0,0,0,0,0,8570,8571,[1572,8572],1633,1635,[1635,8371],8372,8373,0,0,0,0,0,0,8378,8379,[1633,8380],1635,1570,[1571,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5383,5319,5320,5319,5320,4148,4149,4397,4398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,4335,4336,4333,4334,0,4457,4458,4460,4210,4211,5383,5384,4340,4341,4203,4204,4338,4339,5383,5384,5383,4335,4336,5384,5383,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16867,16867,16866,16867,16867,16866,16867,16866,17067,17068,0,0,0,0,0,0,0,16674,16739,16675,16739,16675,16739,16674,16674,16675,16674,16675,16674,16674,17443,17444,17445,17445,[17444,17702],17444,17445,17445,17444,17444,17444,17444,[17445,17702],17445,17444,17445,17445,17444,[17444,17702],17445,17445,17445,17446,16738,16738,0,0,0,0,0,0,0,0,0,16679,16680,16681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3604],1739,1739,1427,1803,1740,1427,1739,1739,1804,[1739,3655],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3408,3409,3341,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1805,3156],1740,1427,1741,1739,[1803,3211],3212,0,0,0,0,3219,[1739,3220],1803,1805,1741,1805,[1740,2957],[1741,2958],[1805,2961],[1741,2958],[1739,2961],[1740,2962],1805,1740,1804,1428,1427,1739,1740,1803,1804,1803,1740,1804,1803,1741,1805,[1805,3339],3340,3408,3409,3410,[1803,3470],[1804,3471],[1805,3474],1427,1805,1805,1804,[1740,3147],3148,0,0,0,3090,3022,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,[1745,3148],1745,[1808,3282],[1744,3346],3408,3409,[1810,3341],[1811,3342],[1809,3343],[1810,3344],[1810,3345],[1745,3342],[1809,3343],[1745,3344],[1747,3277],1809,1745,1746,1811,[1744,3282],[1809,3343],[1809,3344],[1808,3345],[1744,3342],[1744,3343],[1747,3344],[1746,3345],[1747,3277],1809,1744,1810,1809,1810,1809,1809,1745,1747,1745,1746,1811,1747,1810,1745,1746,1809,1810,1811,1810,1810,1746,1810,1808,1811,1808,1808,1809,1810,1747,1810,1811,1747,1809,1745,1811,1808,1746,1745,1747,1746,1809,1744,1745,1745,1810,1746,1744,1746,1809,1809,1810,[1808,3090],[1745,3026],3027,0,0,0,0,0,3211,[1811,3212],1746,1810,[1745,3219],3220,0,0,0,0,3020,[1745,3021],[1808,3085],1744,[1745,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,8698,[13800,9296,1632,8699],1571,1569,[1570,8308],8309,8310,8313,8379,[1633,8380],1569,1571,1634,[1633,8499],8500,0,0,0,0,8443,[1363,8444],1999,1364,[1299,8435],8436,0,0,0,0,0,0,8570,8634,8635,[1634,8636],1570,1633,[1636,8435],8436,0,0,0,0,0,0,0,0,8443,[1633,8444],1570,1634,1569,[1633,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,[5383,7270],[5319,7271],[5320,7272],5384,4212,4213,4461,4462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,4269,4270,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,4399,4400,5320,5319,5320,5319,5320,5319,5320,5319,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16802,16802,16802,16803,16802,16803,16738,16738,16674,16675,16674,16739,16738,16675,16738,16674,16674,16738,16738,16738,16675,16739,16674,16738,16674,16739,16675,16739,16674,16674,16738,16674,16739,16739,16738,16738,16675,16739,0,0,0,0,0,0,0,0,0,16743,16744,16745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1805,3027],1804,1741,1739,1739,1739,1805,1803,1427,[1803,3719],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1104,3472],[1103,3473],3405,3406,3407,3408,3409,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3220],1804,1805,1805,1803,[1805,3147],3148,0,0,0,0,3155,[1739,3156],1741,1491,1805,[1740,3020],3021,3022,3025,3022,3025,3026,[1739,3027],1740,1492,1803,1805,1427,1804,[1741,2957],[1741,2958],[1739,2962],[1740,2963],1427,1741,1740,1803,1804,[1803,3404],[1803,3472],[1741,3473],[1741,3474],1805,1739,1740,1804,1803,1740,1739,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],1808,[1744,3155],3410,3472,3473,3405,3406,3407,3408,3409,3406,3407,3214,[1809,3341],[1745,3277],1808,1746,[1808,3282],[1809,3346],3407,3408,3409,3406,3407,3408,3409,[1745,3341],[1746,3342],[1744,3343],[1810,3344],[1808,3345],[1808,3277],1811,1808,1747,[1746,1954],1811,1745,1744,1745,[1808,3282],[1744,3344],[1811,3345],[1810,3342],[1745,3343],[1744,3344],[1810,3345],[1745,3342],[1746,3343],[1808,3344],[1809,3345],[1747,3342],[1745,3343],[1811,3344],[1745,3345],[1811,3342],[1810,3343],[1747,3344],[1745,3345],[1809,3277],1809,1808,1746,1810,[1747,3282],[1810,3343],[1808,3344],[1808,3345],[1745,3342],[1811,3343],[1809,3344],[1746,3345],[1745,3342],[1746,3343],[1745,3344],[1745,3277],1810,1747,1747,1810,[1811,3090],[1809,3091],3092,0,0,0,0,3147,[1810,3148],1811,1747,[1747,3090],[1746,3026],3027,0,0,3020,[1747,3084],[1746,3085],1811,1809,[1744,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[13799,9233,8572],[13800,9296,1696],[13736,9233,1697],[1633,8308],8372,8373,0,0,8507,[1636,8508],1635,1633,1636,[1571,8499],8500,0,0,0,0,8507,[1299,8508],1299,1299,[1364,8499],8500,0,0,0,0,0,0,8507,8698,[1299,8699],[1299,1506],1571,1569,[1635,8499],8500,0,0,0,0,0,0,0,0,8507,[1635,8508],1635,1634,1569,[1572,1388],[1636,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4395,[5320,7334],[5384,7335],[5319,7336],4396,4397,4398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,4207,4208,5383,5384,4333,4334,0,0,0,0,4265,4266,5383,5384,5383,5384,5383,4463,4464,5384,5383,5384,5383,4148,4149,4395,4396,4397,4398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16866,16866,16867,16866,16866,16866,16803,16802,16802,16803,16802,16738,16738,16995,16996,16996,16997,16996,16996,16997,16996,16996,16996,16996,16996,16996,16996,16997,16996,16997,16997,16996,16996,16996,16996,16998,16738,16738,0,0,0,0,0,0,0,0,0,16807,16808,16809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1739,3092],1805,1804,1805,1427,1804,1803,1803,1805,[1741,3784],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[916,3411],979,1039,[1103,3469],[1103,3470],[915,3471],[979,3472],[915,3473],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1740,3284],1740,1805,1803,1804,[1804,3211],3212,0,0,0,0,3219,[1805,3220],1741,1741,[1804,3083],3084,3085,0,0,0,0,3090,3091,[1805,3092],1739,1805,1741,1804,[1805,3020],3021,3022,3026,[1804,2962],[1803,2963],1739,1803,1427,1740,1741,1741,1427,1427,1740,1428,1739,1804,1427,1427,[1803,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[2073,8758],[2073,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1809,3148],1744,[1808,3155],3156,0,0,3469,3470,3471,3472,3473,3470,3471,3472,3405,[1746,3148],1745,1810,[1744,3155],3410,3471,3472,3473,3470,3471,3472,3473,3405,3406,3407,3408,3409,[1808,3276],[1744,3277],1747,[1745,2017],[1746,2018],[1811,2019],1810,1809,[1810,3282],[1810,3283],3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,[1744,3341],[1809,3277],1746,1811,[1746,3282],[1747,3346],3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,[1811,3276],[1809,3277],1745,1808,1747,1811,[1744,3155],3156,0,0,0,0,3211,[1746,3212],1811,1746,1745,[1809,3090],[1747,3091],2961,2958,[1745,3084],[1744,3085],1745,1809,1747,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13799,9297,8636],[13799,9233],[13800,9297,8371],8372,8373,0,0,0,8443,[1633,8444],1634,1633,1569,[1634,8563],8564,8565,0,0,8570,8571,[1300,8572],1363,1300,[1299,8563],8564,8565,0,0,0,0,8570,8571,[1363,8572],1363,1363,[1300,1632],[1572,8308],8309,8373,0,0,0,0,0,0,0,0,8443,[1571,8444],1634,1569,1634,[1634,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4459,7398,7399,7400,4460,4461,4462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4395,[5320,7462],[5319,7463],[5383,7464],4397,4398,0,0,0,0,4329,4330,5319,4207,4208,4148,4149,4395,4396,4146,4147,5320,5319,4212,4213,4459,4460,4461,4462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16866,16866,16867,16866,16866,16674,16739,17123,17124,17124,17124,17124,17125,17124,17125,17125,17124,17124,17124,17124,17125,17125,17124,17125,17124,17124,17125,17125,17124,17126,16738,16739,0,0,0,0,0,0,0,0,0,16802,17003,17004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,[1805,3540],1805,1804,1803,1805,1804,1803,1739,1805,1491,[1804,3591],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[916,3411],[1103,972],[1039,973],979,[1039,1610],[979,1550],979,1103,1040,[980,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,3282,3283,3347,[1740,3348],1739,1804,1740,[1741,3020],3021,3085,0,0,0,0,3155,[1804,3156],1803,1805,[1804,3147],3148,0,0,0,0,0,0,3155,[1805,3156],1741,1805,1804,[1739,3083],3084,3085,0,3090,3026,[1741,3027],1804,1740,1739,1805,1740,1805,1739,1803,1739,1805,1739,1739,1741,[1740,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,410,411,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,0,0,8507,8698,[2073,8699],2138,2074,[2073,8692],8693,8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1747,3212],1810,[1809,3219],3220,0,0,0,0,0,0,0,0,0,0,3147,[1809,3148],1809,1811,[1810,3155],3156,0,0,0,0,0,0,0,3469,3470,3471,3472,3473,3340,[1745,3341],[1810,3277],1746,1811,1746,1811,[1744,3282],[1808,3283],3347,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3405,[1744,3148],1808,1746,[1747,3155],3410,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3340,[1747,3341],[1811,3277],1746,1744,1747,[1747,3219],3220,0,0,0,0,3147,[1810,3148],1809,1745,1745,1744,[1810,3090],[1811,3025],[1745,3022],[1808,3085],1745,1811,1747,1808,[1810,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13800,9233,8699],[13800,9297],[13800,9297],[13800,9298,8499],8500,0,0,0,0,8507,[1634,8508],1569,1634,1570,[1636,8627],8628,8629,8632,8633,8634,8635,[1299,8636],1300,1300,[1364,8627],8628,8629,8630,8631,8632,8633,8634,8635,[1363,8636],1936,1363,[1363,1696,8371],8372,8373,0,0,0,0,0,0,0,0,0,8507,[1570,8508],1636,1635,1572,[1636,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,415,416,417,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2957,2961,2958,2961,2962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4459,7526,7527,7528,4461,4462,4137,4138,4139,4140,4274,4275,5383,5384,5383,4212,4213,4459,4460,4210,4211,5384,5383,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16675,16738,16739,16738,16739,16674,16738,16675,16675,16739,16738,16739,16674,16674,16738,16739,16739,16675,16738,16674,16674,16739,16738,16675,16739,16933,0,0,0,0,0,0,0,0,0,16867,17067,17068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1741,3604],1803,1427,1427,1427,1805,1427,1739,1741,[1739,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[979,3220],1040,915,1040,1104,[915,1801],1804,[1040,1613],[916,972],[915,973],[916,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3344,3345,3346,3406,3407,3341,3344,3345,3346,3347,[1740,3411],1739,1805,1804,[1739,3020],3021,3085,0,0,0,0,0,3219,[1741,3220],1740,1741,[1804,3211],3212,0,0,0,0,0,0,3219,[1804,3220],1803,1741,1803,[1805,3147],3148,0,0,0,3090,3091,[1739,2958],[1804,2961],[1804,2958],[1804,2962],1804,1803,1491,1739,1740,1804,1741,1741,1427,[1804,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,410,411,412,472,473,474,475,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8629,8630,8631,8565,0,0,8570,8571,[2073,8572],2073,2073,2073,[2073,1610],[1805,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1810,3148],1808,[1745,3155],3156,0,0,0,0,0,0,0,0,0,0,3211,[1808,3212],1811,1745,[1808,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,[1809,3212],1747,1810,1745,[1746,3282],[1745,3346],3347,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1745,3148],1747,1810,[1746,3155],3156,0,0,0,0,0,0,0,0,0,0,3404,3405,[1744,3148],1747,1746,1808,[1811,3155],3156,0,0,0,0,3211,[1747,3212],1808,1746,1744,1744,1746,1746,1811,1810,1746,1810,1811,1745,[1810,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13800,9296,8508],[13800,9232],[13799,9298],[13735,9232],[13800,9296,8563],8564,8565,0,0,8570,8571,[1571,8572],1570,1636,1633,1636,[1570,8692],8693,8696,8697,8698,[1299,8699],1300,1364,1999,1299,[1364,8692],8693,8694,8695,8696,8697,8698,[1299,8699],1300,1363,1363,[1364,8435],8436,0,0,0,0,8570,8632,8633,8565,0,0,8378,8314,[1634,8315],1571,1570,[1634,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,479,480,481,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3020,[528,3021],[1804,529,3025],[1805,3022],[1805,332,3025],[526,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4201,4202,4203,4204,4338,4339,5319,5320,5319,[5319,7589],7590,0,0,7591,[5384,7592],5320,5319,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16803,16802,16803,16802,16803,16803,16803,16803,16802,17003,17004,16803,16803,16802,16803,16802,16803,16802,16802,16802,17003,17004,16802,16802,16802,16802,16802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1803,3668],1741,1803,1803,1492,1739,1739,1427,[1427,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1039,3027],1040,980,[980,1610],1741,1741,[1104,1614],1039,[980,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3346,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3408,3409,3410,[1286,3470],[1286,3471],3405,3408,3409,3410,[1803,3411],1739,1739,1804,[1803,3083],3084,3085,0,0,0,0,0,3282,3283,[1805,3284],1427,1804,[1741,3275],3276,3277,0,0,0,0,0,3155,[1741,3156],1805,1739,1741,[1803,3147],3148,0,0,0,0,3090,3022,3025,3022,3026,[1739,2962],1741,1740,1739,1803,1739,1805,1805,1804,[1805,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,474,475,476,[1741,536],[1427,537],[1739,538],[1803,539],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[2073,8758],[2073,8759],8693,8694,8695,8629,8630,8631,8634,8635,[2073,8636],2138,[2073,1610],[2073,1546],1739,[1805,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1745,3212],1811,[1746,3219],3220,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],1811,1809,[1744,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1745,3212],1747,1744,1809,[1745,3155],3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1810,3212],1747,1747,[1747,3219],3220,0,0,0,0,0,0,0,0,0,0,0,3147,[1746,3148],1746,1746,1747,[1746,3219],3220,0,0,0,0,3147,[1747,3148],1809,1744,1747,1744,1747,1811,1745,1809,1809,1809,1747,[1745,3282],[1810,3283],3284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13799,9296,8444],[13800,9296],[13799,9296],[13799,9296],[13800,9233,8627],8628,8629,8632,8633,8634,8635,[1636,8636],1572,1633,1634,1569,1634,[1300,1701,8757],[1300,8760],[1364,8761],[1364,8762],1363,2127,2128,1363,1300,1300,[1300,8757],[1364,8758],[1300,8759],[1363,8760],[1300,8761],[1363,8762],1300,1363,1364,1363,[1363,8499],8500,0,0,0,8570,8571,8696,8697,8629,8565,0,0,8378,8379,[1633,8380],1571,[1635,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,415,416,417,3346,3347,[527,3470],[463,543],[464,544],[526,545],3340,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3083,[525,3084],[527,3085],[1805,337],1491,[1739,396],[461,3090],[528,3091],3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,1951,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7591,[5320,7592],4207,4208,5383,5384,5383,5384,5383,[5383,7653],7654,0,0,7655,[5319,7656],4401,4402,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16867,16867,16866,16867,16867,16867,16866,16866,16867,17067,17068,16867,16867,16867,16866,16866,16867,16867,16867,16867,17067,17068,16867,16867,16866,16866,16867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3347,[1427,3732],1804,1803,1427,1804,1739,1805,1741,[1804,3527],3528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[979,1611,3092],[1103,1546],1804,1427,1803,[1103,1678],[916,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3410,[1804,3472],[1803,3473],[3340,2241],3341,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3347,[1739,3472],[1740,3473],[1803,1351,3474],[1739,1352],[1740,1353],[1803,1354,3469],[1740,3472],[1741,3473],[1804,3474],1804,1804,1804,1803,[1740,3147],3148,0,0,0,0,0,3282,3346,3347,[1739,3348],1803,1804,[1804,3339],3340,3341,3277,0,0,0,0,3219,[1805,3220],1491,1427,1741,[1805,3211],3212,0,0,0,0,0,0,0,0,3090,3026,[1804,3027],1805,1804,1739,1803,1740,1803,1805,1804,[1804,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[1633,538],[1740,1637,539],[1803,540],1805,1741,1740,1428,[1427,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[2073,8699],2137,2137,[2137,8757],[2073,1801,8758],[1740,8759],8693,8694,8695,8698,[2073,1548,8699],[2073,1549],[2073,1546],1740,1805,1741,[1739,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1809,3148],1810,[1747,3090],[1744,3026],2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,[1810,3084],[1747,3085],1745,1747,[1810,3090],[1746,3091],3092,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1744,3148],1811,1745,1747,[1744,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3020,[1747,3021],[1808,3085],1810,1744,[1811,3090],[1744,3026],3027,0,0,0,0,0,0,0,0,0,3020,[1808,3021],[1746,3085],1744,1809,1746,[1744,3155],3156,0,0,0,0,3211,[1809,3212],1811,1745,1746,1747,[1809,3282],[1809,3344],[1809,3345],[1810,3342],[1810,3343],[1811,3344],[1810,3345],[1808,3346],3347,3348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13800,9232,8508],[13800,9234],[13800,9298],[13735,9233],[13800,9298],[13800,9297,8692],8693,8696,8697,8698,[1569,8699],1634,1570,[1634,8245],[1569,8246],[1633,8250],[1299,1508],1363,1300,1363,1364,1363,2191,2192,1299,1364,1299,1363,1299,1299,1364,1300,1300,1364,1300,1300,[1363,8308],8309,8373,0,0,8570,8634,8635,[1299,8760],[1364,8761],8693,8436,0,0,0,8443,[1633,8444],1572,[1572,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,479,480,481,3410,[526,3411],527,526,464,526,[462,3404],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[463,3148],461,[1803,401],1741,[1740,460],525,[464,3090],[526,3091],3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,2015,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7655,[5384,7656],5319,5320,5319,5320,5319,4271,4272,[5384,7717],7718,0,0,7719,[5384,7720],4465,4466,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,[1739,3540],1741,1427,1805,1803,1804,1739,1739,1740,[1741,3591],3592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1739,3156],1804,1428,1805,1804,[915,1742],[1103,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1803,3470],[1740,3471],[1803,3474],1805,1740,2305,3405,3406,3407,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1740,3411],1803,1803,1739,1804,1428,[1741,1385],1805,1741,1805,1804,1741,1804,1740,[1803,3211],3212,0,0,0,0,0,3155,3410,[1803,3411],1805,1740,1803,1741,[1741,3404],3405,3148,0,0,0,0,3090,3026,[1739,3027],1741,1427,[1803,3275],3276,3277,0,0,0,0,0,0,0,0,3090,3091,[1741,2958],[1804,2962],1491,1803,1741,1803,1739,1804,1803,[1804,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,413,[1636,477],1633,1635,[1739,1444],1803,1492,1741,1803,1803,[1803,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[2073,8508],2073,2073,2073,2073,[2073,1801],1805,[2073,1677,8757],[2138,8758],[2073,8759],[2073,1865,8762],[2073,1868],[2073,1867],[2073,1866],1804,1739,1805,[2073,1676,8627],8628,8629,8630,8631,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],1811,1744,[1745,3090],[1747,3025],[1810,3022],[1745,3025],[1811,3022],[1744,3025],[1810,3022],[1745,3025],[1808,3022],[1747,3025],[1746,3022],[1745,3085],1808,1811,1747,1810,[1745,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],1744,1745,1747,[1808,3219],3220,0,0,0,0,0,0,0,0,0,0,2957,2961,2958,2961,2958,2961,2958,2961,2958,[1744,3084],[1747,3085],1745,1811,1747,1745,[1810,3090],[1744,3091],2961,2958,2961,2958,2961,2958,2961,2958,2961,[1811,3084],[1744,3085],1747,1811,1745,1745,[1746,3219],3220,0,0,0,0,3147,[1745,3148],1745,1809,1744,[1744,3282],[1810,3283],3408,3409,3406,3407,3408,3409,3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,9234,8315],[13799,9298,1391],[13800,9298],[13800,9298],[13799,9297],[13799,9298,8757],[13799,9297,8760],[13736,9234,8761],[13799,9296,1632,8762],1635,1633,[1634,8308],8309,8310,8314,[1363,8250],1363,1300,1300,1364,1300,1299,1364,1300,1299,1363,1299,1300,1299,1363,1299,1300,1364,1363,[1300,8371],8372,8373,0,0,0,8507,8698,[1299,8699],[1299,1388],[1300,1385],[1363,8435],8436,0,0,0,8507,[1569,8508],1633,1571,[1633,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[526,3470],[463,543],[462,544],[461,545],[525,3474],526,527,526,528,461,463,[526,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1804,398,3212],528,[1804,465],1739,[1741,524],528,464,[461,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1734,2079],[1735,3471],3340,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7719,[5320,7720],5383,5384,5383,5384,5383,4335,4336,4333,4334,4137,4138,4274,4275,5384,5383,4276,4277,4141,4142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16675,16739,16739,16739,16738,16739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16738,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1741,3604],1804,1740,1803,1804,1740,1804,1803,1427,[1805,3655],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1805,3220],1739,1803,1741,1740,[980,1677],[1104,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[1803,3411],1427,1805,1803,1804,1741,2369,[1804,3469],[1740,3470],[1739,3471],[1740,3472],[1805,3473],3340,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1803,3411],1805,1805,1805,1740,1739,1803,1741,1803,1740,1427,1427,1739,1804,[1741,3020],3021,3085,0,0,0,0,0,3155,[1805,3156],1804,1741,1803,1804,1739,1804,[1805,3147],3148,0,0,0,0,0,3090,3091,[1805,3092],1805,[1804,3339],3340,3341,3277,0,0,0,0,0,0,0,0,3090,3022,3026,[1805,3027],1805,1740,1427,1491,1739,1427,[1805,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[1633,286],1572,1570,1633,1569,[1803,1377],[1740,1378],[1805,1379],[1427,1380],[1491,1444],[1741,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,8570,8571,[2073,8572],2073,2073,2074,[2073,1611],1741,[2074,1677],2073,2073,2073,2073,2073,2073,2073,[2073,1674],1741,[2073,1806],2073,[2073,8692],8693,8694,8695,8694,8695,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1747,3148],1811,[1809,1954],1809,1808,1745,1809,1810,1746,1808,1745,1744,1810,1811,1808,1810,1811,1744,[1745,3282],[1746,3283],3284,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1744,3148],1746,1810,1744,[1811,3155],3156,0,0,0,0,0,0,0,0,0,3020,[1745,3021],[1810,3025],[1745,3022],[1809,3025],[1811,3022],[1745,3025],[1747,3022],[1744,3025],[1745,3022],[1745,3085],1808,1747,1746,1745,1810,1744,[1746,3090],[1744,3025],[1746,3022],[1747,3025],[1811,3022],[1747,3025],[1747,3022],[1745,3025],[1744,3022],[1746,3025],[1808,3085],1746,1808,1809,1744,1809,[1744,3155],3156,0,0,0,0,3211,[1808,3212],1746,1811,[1747,3282],[1746,3346],3347,3472,3473,3470,3471,3472,3473,3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13799,9298,8249],[13799,9296,8250],[13800,9296],[13799,9298],[13799,9232],[13800,9297],[13800,9296],[13800,9297,1696],[13800,9298,1697],[1569,8371],8372,8373,0,8378,8314,[1363,8246],[1299,8249],[1363,8250],1364,1999,1300,1363,[1364,8245],[1363,8246],[1300,8249],[1299,8250],1300,1300,1299,1936,1364,1363,1300,[1364,8563],8564,8565,0,0,8570,8571,[1364,8572],[1364,1388],1363,1299,[1299,8499],8500,0,0,8570,8571,[1570,8572],1634,1570,1636,[1636,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[462,3411],525,526,525,527,527,461,528,463,525,462,461,464,[462,3910],3911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3020,[526,3021],[1739,335,3085],[1740,398],[1803,593],1803,[1741,397],[1741,589],[1739,590],[1804,593,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[1798,3411],1799,1798,[1735,3404],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4395,4396,4395,4396,4395,4396,4396,4397,4398,4201,4202,4338,4339,5320,5319,4340,4341,4205,4206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17129,17129,17129,17129,17129,17129,17129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16739,16739,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1427,3668],1739,1803,1427,1740,1427,1803,1739,1804,[1805,3784],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1739,3284],1741,1427,1803,[1039,1614],980,[1104,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,[1741,3284],1427,1803,1741,1805,1803,1805,[1741,2433],1805,1804,1803,1803,1740,[1740,3404],[3340,2244],3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1805,3156],[1804,1387],1740,1427,1803,1803,1740,1739,1740,1427,1739,1427,1803,[1804,2957],[1740,2958],3084,3085,0,0,0,0,0,0,3219,[1741,3220],1741,1804,1739,1805,1740,1739,[1803,3211],3212,0,0,0,0,0,0,3155,[1804,3156],1805,1805,[1803,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,3090,3091,[1805,3092],1740,1740,1740,1803,1740,[1805,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[1571,414],1570,1636,1571,1569,1571,1635,1569,1571,1569,[1633,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8629,8632,8633,8632,8633,8634,8635,[2073,1865,8636],[2073,1613],2074,[2073,1610],[2073,1677],[2073,1674],[2073,1613],2073,2073,2073,2073,[2073,8245],[2137,8246],[2073,8249],[2073,1611,8250],1741,[2073,1677],2073,2073,[2073,1801,8757],[1741,8758],[1805,8759],[2073,8758],[2073,8759],8693,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1809,3212],[1809,2017],[1810,2018],[1745,2019],1811,1746,[1810,3282],[1811,3342],[1744,3343],[1808,3344],[1811,3345],[1744,3344],[1810,3345],[1809,3277],1810,1744,1810,[1747,3282],[1745,3346],3347,3348,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1811,3212],1744,1811,1811,[1745,3090],[1811,3026],3027,0,0,0,0,0,0,0,3020,[1811,3084],[1745,3085],1808,1811,1746,1746,1810,1810,1746,1808,1745,1811,1745,1746,1808,1746,1747,1808,1746,1746,1744,1810,1744,1745,1746,1746,1746,1747,1746,1811,1810,1744,1746,[1810,3219],3220,0,0,0,0,3147,[1747,3148],1747,1808,[1808,3155],3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8314,[13799,9232,8315],[13799,9234],[13800,9296],[13800,9296],[13799,9297],[13799,9234],[13736,9232],[13799,9298,8435],8436,0,0,0,8378,8310,8313,8314,[1299,8315],1363,1364,[1299,8308],8309,8310,8313,8314,[1299,8315],1300,1364,1364,1299,1300,1363,[1363,8627],8628,8629,8630,8631,8634,8635,[1299,8636],1363,1363,1363,[1363,8563],8564,8632,8633,8634,8635,[1571,8636],1571,1571,1633,[1569,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[463,3156],527,527,461,528,525,525,462,464,461,461,526,463,527,[527,3974],3975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2957,2958,[527,3084],[526,3085],528,[1739,336],1804,1428,1740,1805,1491,[1803,334,3090],[525,3091],3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3342,3343,3277,0,0,3282,3283,[1798,3284],1734,1798,1734,1734,[1798,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4459,4460,4459,4460,4459,4460,4460,4461,4462,4265,4266,4271,4272,5384,5383,4399,4400,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16739,16738,16675,16738,16739,16739,16675,16674,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16738,16739,16738,16675,16674,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1427,3732],1803,1740,1427,1740,1739,1428,1805,1805,1740,[1427,3849],3405,3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1741,3348],1740,1803,1803,[980,1678],916,[916,3275],3276,3277,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,3282,3346,3410,[1739,3348],1740,1805,1803,1427,1741,1741,1804,1805,1739,1739,1805,1741,1805,2308,3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1739,3220],1741,1805,1740,1804,1740,1740,1803,1739,1805,1804,[1803,2957],[1741,2958],3021,3022,3085,0,0,0,0,0,0,0,3155,[1740,3156],1739,1805,1741,1804,1740,[1805,3020],3021,3085,0,0,0,0,0,0,3219,[1803,3220],1805,1805,1491,[1804,3147],3148,0,0,0,0,0,0,0,0,0,0,0,3155,[1803,3156],1805,1741,1739,1741,1739,1741,[1803,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[1569,477],1634,1569,1570,1572,1636,1572,1633,1636,1569,1633,[1572,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[2073,8758],[2073,8759],8693,8696,8697,8696,8697,8698,[2073,8699],2138,[2073,1674],[2073,1546],1804,[2073,1612],[2073,8245],[1806,8246],[2138,8250],2073,2073,[2073,8308],8309,8310,8313,8314,[2073,1806,8315],2073,2074,[2073,1610],1739,1741,[2073,1676],2073,2137,[2073,8757],[2073,8758],[2073,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1809,3148],1808,1745,1745,1811,[1744,3282],[1808,3283],3406,3407,3408,3409,3408,3409,[1810,3276],[1747,3277],1746,1746,[1747,3155],3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1745,3148],1810,1746,1810,1809,[1809,3090],[1746,3091],2958,2961,2958,2961,2958,2961,2958,[1811,3084],[1808,3085],1744,[1745,3282],[1746,3342],[1811,3343],[1746,3344],[1747,3345],[1810,3342],[1746,3343],[1744,3344],[1747,3345],[1747,3342],[1811,3343],[1745,3344],[1744,3345],[1747,3342],[1745,3343],[1745,3344],[1811,3345],[1744,3342],[1744,3343],[1808,3344],[1811,3345],[1746,3342],[1746,3343],[1809,3344],[1746,3345],[1747,3277],1746,1811,1747,1811,1808,[1746,3219],3220,0,0,0,0,3211,[1745,3212],1746,1744,[1810,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13736,9297,8315],[13800,9297,1391],[13800,9297],[13799,9297],[13799,9296,1519],[13799,9232,8308],8309,8373,0,0,0,0,0,0,8378,8379,[1299,8249],[1300,8246],8372,8373,0,0,8378,8379,[1364,8246],[1299,8249],[1363,8250],1300,1363,1364,[1363,1390],[1364,8692],8693,8694,8695,8698,[1363,8699],1299,1363,1363,1300,[1300,8627],8628,8696,8697,8698,[1634,8699],1635,1634,1571,1572,[1569,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[463,3220],462,463,462,464,463,526,525,525,527,463,463,461,462,[526,4038],4039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3020,[463,3021],[463,3022],[528,3085],527,[1803,592],[1804,593],1739,1804,[1805,333],[1740,272],[1803,269],527,[463,3155],3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3406,3407,3341,3536,3537,3346,3347,[1799,3348],1734,1798,1798,1799,1799,[1734,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7591,[5384,7592],4335,4336,5320,5319,4463,4464,[5384,7589],7590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16675,16739,16675,16739,16674,16738,16674,16738,16674,16674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16675,16675,16738,16738,16675,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1740,3795],1427,1741,1740,1740,1427,1805,1805,1740,1804,1427,1805,[1739,3527],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[1803,3411],1803,1492,1803,1427,[980,1742],916,[980,3339],3340,3341,3342,3343,3344,3345,3346,3406,3407,3276,3277,0,0,0,0,0,0,3219,3410,[1803,3411],1805,1739,1803,1805,1805,1491,1740,1427,1741,1804,1804,1739,1741,1739,2372,[1741,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1740,3027],1427,1739,1805,1739,1803,1741,1803,1739,[1803,2957],3021,3022,3085,0,0,0,0,0,0,0,0,0,3219,[1741,3220],1739,1427,1428,1803,[1803,3083],3084,3085,0,0,0,0,0,0,3282,3283,[1740,3284],1739,1739,1739,[1741,3211],3212,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3220],1803,1804,1804,1741,1805,1805,1740,[1739,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3916,[1570,3917],1633,1571,1635,1634,1634,1570,1634,1636,1635,1572,1634,[1363,1700,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[2073,1612,8699],2073,2138,[2073,8757],[2073,8760],[2073,8761],[2073,8760],[2073,1801,8761],[2073,1614,8762],2073,2073,2073,[2073,1609],1804,[2073,1806,8371],8372,8310,8314,[2137,8246],[2073,8249],8372,8373,0,0,8378,8379,[2073,8380],2073,[2138,1801],1803,[2073,1806],2073,2073,2073,2073,2073,2074,[2073,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1746,3212],1811,1809,1808,[1809,3282],[1811,3346],3347,3470,3471,3472,3473,3472,3473,3340,[1808,3341],[1747,3277],1809,[1809,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1810,3212],1809,1744,1811,1746,1808,[1744,3090],[1808,3022],[1809,3025],[1746,3022],[1747,3025],[1810,3022],[1808,3025],[1808,3022],[1746,3085],1809,[1747,3282],[1747,3283],3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,[1745,3276],[1746,3277],1746,1745,1809,1744,[1746,3090],[1747,3026],3027,0,0,3020,[1809,3021],[1811,3085],1810,[1747,3282],[1746,3283],3284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13735,9232,8246],[13800,9296,8249],[13799,9296,8246],[13800,9296,8249],8372,8373,0,0,0,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,8378,8310,8313,8314,[1299,8315],1300,1299,1364,[1300,1390],[1363,8757],[1299,8758],[1299,8759],[1363,8762],1363,1300,1363,2063,1363,1300,[1300,8692],[1363,8760],[1299,8761],[1299,1506,8762],1635,1633,1635,1634,[1572,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[463,3027],461,527,461,464,527,525,462,463,528,526,464,462,[462,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3083,[525,3084],[464,3085],528,462,[1740,400],1803,1739,1741,[1805,268],461,528,463,528,[461,3219],3220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3347,[1798,3470],[1746,1672,3471],[1746,3470],[1745,3471],3405,3600,3601,3410,[1745,1668,3411],1798,1734,1799,1735,1799,1798,[1798,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7655,[5319,7656],5384,5383,5384,5383,5384,5383,[5320,7653],7654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16738,16675,16674,16739,16674,16738,16738,16738,16674,16675,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16802,16802,16802,16675,16674,16675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1492,3540],1428,1492,1740,1804,1427,1491,1804,1805,1741,1804,1741,1805,[1803,3591],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1803,3411],1805,1803,1739,1804,1741,1804,[980,1613],[1104,3403],[1103,3404],3405,3406,3407,3408,3409,3410,[1739,3470],[1739,3471],3340,3341,3277,0,0,0,0,3282,3283,[1739,3284],1427,1804,1804,1805,1740,1804,1492,1739,[1739,2242],1805,1804,1804,1427,1491,1804,[1804,2436],[1804,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1741,3027],[1805,1385],1805,1740,1427,1803,1739,[1804,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,3282,3283,[1741,3284],1803,1803,1804,1803,[1804,3147],3148,0,0,0,0,0,0,3282,3346,3347,[1739,3348],1741,1741,1740,[1803,3275],3276,3277,0,0,0,0,0,0,0,0,0,3282,3283,[1741,3284],1739,1492,1804,1740,1741,1741,1427,[1805,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3980,[1572,3981],1636,1569,1572,1634,1569,1572,1572,1633,1570,1571,[1300,1637],1299,[1300,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[1805,8444],1804,[2073,1546],[2073,1612],2073,2073,[2073,1611],[2073,1550],[2073,1801],[2073,1742],2137,2073,2138,[2073,1737],1739,[1803,8435],8436,0,8378,8310,8313,8373,0,0,0,0,8443,[2073,8444],2073,[2137,1865],[2073,1866],1740,[2073,1612,8245],[2073,8246],[2073,8249],[2073,8250],2073,2073,[2073,1545],[1741,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[1810,3148],1808,1747,1809,[1808,3219],3410,3411,0,0,0,0,0,0,3404,3405,[1810,3212],1744,[1810,3090],[1745,3026],3027,0,0,0,0,0,0,0,0,0,0,0,0,3020,[1745,3021],[1747,3085],1810,1808,1811,1745,1745,1747,1810,1746,1808,1746,1810,1746,1808,1810,[1747,3282],[1747,3346],3347,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3340,[1809,3341],[1745,3342],[1811,3343],[1811,3277],1809,1809,[1746,3090],[1811,3091],2961,2958,[1810,3084],[1808,3085],1808,[1744,3282],[1810,3346],3347,3348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[1364,8380],1363,1364,1300,1364,1364,1363,1299,1364,1364,1300,1299,1300,1299,1300,1364,1999,1299,[1364,1632],[1636,8245],[1635,8246],[1634,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[462,2958],[526,2961],[525,2958],[463,2961],[527,2962],461,526,464,528,526,525,[464,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,[464,3148],526,461,[1739,593,1954],1740,1803,[1739,268],[1804,269],464,527,525,528,[462,3282],[527,3283],3284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1734,3284],1798,[1747,1736],1811,1808,[1810,1603,3469],[1735,3664],[1809,1672,3665],[1810,3474],1744,[1747,1603],1735,1734,1798,1799,1735,[1734,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7719,[5319,7720],5320,5319,5320,5319,5320,5319,[5319,7717],7718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16739,16738,16739,16674,16674,16675,16675,16674,16674,16674,16739,16738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16866,16866,16866,16802,16803,16802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1741,3604],1427,1427,1739,1739,1427,1804,[1740,2957],[1739,2958],[1428,2961],[1741,2962],1803,[1427,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1740,3220],1740,1804,1427,1427,[1103,1866],1741,1803,1427,[1040,1550],1104,[1040,3469],[1040,1609,3470],[1427,3471],[1803,3472],[1804,3473],[1741,3474],1803,1739,[1804,3404],3405,3148,0,0,0,3282,3346,3347,[1740,3348],1805,1805,1803,1491,1740,1427,1427,1428,2306,1805,1741,1805,1427,1741,1741,1427,[1805,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,2958],[1740,2961],[1805,2958],[1803,2961],[1803,2958],[1739,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,3282,3283,3347,[1739,3348],1741,1739,1741,1741,[1805,3211],3212,0,0,0,0,0,0,3155,3410,[1803,3411],1803,1491,1803,1804,[1804,3339],3340,3341,3277,0,0,0,0,0,0,0,3282,3283,3347,[1739,3348],1739,1741,1741,1427,1740,1739,[1803,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4044,[1570,4045],1634,1635,1570,1571,1572,1571,1572,1570,1570,1633,[1363,1701],1935,1364,[1364,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[1804,8508],1741,1804,1805,[2073,1546],[2073,1549],[2073,1677],[2073,1675],[2074,1869],[2073,1677],2073,2073,[2073,1610],1804,1804,[1739,8499],8500,0,0,0,0,0,0,0,0,0,8507,[2073,8508],2073,2074,2073,[2073,1674,8308],8309,8310,8313,8314,[2073,8315],2074,[2073,1801],[1740,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1747,3212],1747,1746,1746,[1810,3090],[1744,3091],2961,2958,2961,2958,2961,2958,2961,2958,[1744,3084],[1809,3085],1747,1808,[1811,3090],[1744,3091],2958,2961,2961,2958,2961,2958,2961,2958,2961,2958,2961,2958,[1746,3084],[1811,3085],1745,1747,1744,1744,1809,1809,[1745,3282],[1809,3342],[1811,3343],[1747,3344],[1745,3345],[1746,3342],[1747,3343],[1747,3344],[1808,3345],[1811,3346],3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,3406,3407,[1808,3276],[1746,3277],1745,1809,[1809,3090],[1747,3025],[1809,3022],[1811,3085],1746,1746,[1808,3219],3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[1300,8444],1363,1300,1300,1300,1363,1300,1363,[1364,8245],[1299,8249],[1300,8250],1363,1363,1363,1364,1300,1363,1363,[1299,1696,8308],8309,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3022,3025,3026,[525,3027],528,463,463,528,[462,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[463,3212],526,[1805,529,2017],[1491,2018],[1803,333,2019],[1805,269],463,[526,3282],[527,3342],[462,3343],[462,3344],[461,3345],[528,3346],3347,3348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1734,3348],1734,[1811,1800],1810,1809,[1810,1667],1798,[1811,1736],1744,1809,[1744,1731],1799,1734,1734,[1808,1860],[1810,1861],[1862,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4395,4396,[5320,7462],[5320,7463],[5320,7464],4396,4397,4398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16802,16802,16674,16674,16738,16675,16674,16738,16738,16674,16802,16802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16867,16866,16866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1740,3027],1804,1805,1427,1428,[1804,3020],3021,3022,3025,3026,[1739,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1803,3027],1739,1427,[1103,1677],1103,[1103,1674],1804,1803,[1040,1614],979,1104,[1039,1673],1739,1805,1740,1427,1803,1427,1491,[1740,3147],3148,0,0,0,3155,3410,[1803,3411],1803,1428,1491,1803,1803,1427,1740,1739,1803,2370,1803,1427,1739,1803,1805,1492,[1805,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3022,3025,3022,3022,3085,0,0,0,0,0,0,0,0,3282,3344,3345,3346,3347,[1741,3411],1739,1804,1741,1805,[1739,3020],3021,3085,0,0,0,0,0,0,3155,[1803,3156],1805,1427,1805,1427,1427,1805,[1803,3404],3405,3148,0,0,0,0,0,0,3282,3346,3347,[1804,2185,3411],[1805,2121],[1804,2375],1739,[1804,2374],[1803,2057],[1427,2121],[1803,2375,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1635,222],1634,1635,1569,1570,1634,1636,1570,1570,1570,[1300,1507],2011,1300,[1364,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[2073,8572],[2138,1675],1804,1741,1741,[2073,1806],[2073,8245],[2073,8246],[2073,8249],[2074,8250],2138,2138,[2073,1801],1804,1803,[1739,8499],8629,8630,8631,8630,8631,8565,0,0,0,0,8443,[2073,8444],2073,2073,[2073,8371],8372,8373,0,0,8378,8379,[2073,1611,8380],1740,[1740,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3211,[1744,3212],1744,1745,1746,1744,[1744,3090],[1809,3025],[1808,3022],[1809,3025],[1746,3022],[1744,3025],[1746,3022],[1809,3025],[1808,3022],[1747,3085],1745,1808,1810,1745,[1747,3090],[1746,3022],[1808,3025],[1811,3025],[1808,3022],[1808,3025],[1811,3022],[1811,3025],[1746,3022],[1810,3025],[1745,3022],[1746,3025],[1745,3022],[1744,3085],1745,1746,[1811,3282],[1810,3342],[1811,3343],[1809,3344],[1811,3345],[1808,3346],3406,3407,3408,3409,3406,3407,3408,3409,3410,3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3469,3470,3471,3340,[1811,3276],[1809,3277],1810,1810,1747,1744,1746,1745,[1809,3282],[1809,3283],3284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[1300,8508],1364,1364,1363,1299,1363,1299,[1300,8308],8309,8313,8314,[1300,8315],[1364,1392],[1363,1392],[1299,8308],[1363,8246],[1363,8249],[1363,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[528,3521],[464,3522],[462,3523],[462,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[527,3276],[528,3277],525,[1805,269],526,528,[461,3282],[525,3283],3406,3407,3408,3409,3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[1747,1795,3411],1799,1798,[1810,1670],1747,1809,[1745,1731],1734,1735,[1809,1607],1811,[1746,1668],1799,1798,[1811,1670],1809,[1746,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4137,4138,4140,4139,4140,4139,4140,4141,4142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4459,4460,7526,7527,7528,4460,4461,4462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16866,16867,16803,16802,16802,16675,16674,16674,16739,16803,16867,16867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1740,2961],[1427,3521],[1740,3522],[1805,3523],3084,3085,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,3092],[1104,1806],[915,972],[980,973],915,[1104,1609],1804,[1039,1678],915,1040,[1040,1737],1740,1739,1427,1803,1491,1805,1805,[1805,3275],3276,3277,0,0,3219,[1427,3220],1740,1741,1739,1805,1803,1740,[1492,2957],[1491,2958],[1739,2962],1740,[1427,2434],1805,1740,1804,1427,1427,[1804,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3408,3409,3410,[1740,3411],1427,1740,1739,1805,[1741,3083],3084,3085,0,0,0,0,0,0,0,3219,[1739,3220],1741,1427,1805,1739,1740,1492,1805,[1741,3147],3148,0,0,0,0,0,0,3155,3410,[1286,3411],1286,1286,[1805,2056],1491,[1739,2058],1286,1286,[1286,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[1634,93],1633,1636,1636,1572,1635,1635,1635,[1299,1445],1299,1300,1364,[1299,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[2074,8636],2073,[2137,1865],[2073,1866],1740,[2138,1806,8308],8309,8310,8313,8314,[2138,8246],[2073,1610,8315],1739,1739,1740,[2073,1806,8692],8693,8694,8695,8694,8695,8629,8565,0,0,0,8507,[2074,8508],2073,2073,[2074,8435],8436,0,0,0,0,8443,[2073,8444],[2073,1674],[1805,8627],8628,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3275,[1746,3276],[1744,3277],1810,1744,1744,1809,1744,1808,1810,1746,1745,1744,1744,1809,1810,1747,1808,1810,1744,1746,1810,1810,1811,1808,1746,1744,1811,1808,1747,1811,1746,1746,1746,1745,[1809,3282],[1747,3283],3406,3407,3408,3409,3410,3470,3471,3472,3473,3470,3471,3472,3473,3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3340,[1809,3341],[1810,3342],[1744,3343],[1744,3344],[1744,3345],[1808,3342],[1746,3343],[1745,3346],3347,3348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8632,8633,8571,[1364,8572],1299,1299,1300,[1299,8245],[1299,8246],[1363,8249],8372,8373,0,8378,8379,[1363,8249],[1363,8246],8372,8310,8313,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3585,3586,3587,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[464,3341],[526,3342],[462,3343],[463,3344],[461,3345],[525,3346],3347,3470,3471,3472,3473,3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1811,3411],[1745,1859],[1809,1860],1734,[1809,1606,2957],[1744,2961],[1808,1604,2962],1735,1735,1798,[1745,1800],1811,1744,[1747,1603],[1745,1608],1810,[1746,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4201,4202,4204,4203,4204,4203,4204,4205,4206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16867,16866,16867,16802,16803,16802,16803,16866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3585,3586,3587,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1103,1676,3092],1040,980,915,[1039,1737],1427,[1039,1742,2957],[1040,2958],[979,2961],[1040,1801,2962],1805,1740,1805,1803,1805,1491,1427,[1492,3339],3340,3341,3342,3343,3346,[1739,3284],1804,1805,1805,1428,1740,[1740,3083],3084,3022,3026,[1740,3027],1740,1804,1740,1739,1741,[1739,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1805,3472],[1739,3473],[1741,3411],1739,1741,1741,1804,1803,[1805,3147],3148,0,0,0,0,0,0,0,0,3155,[1739,3156],1741,1739,1805,[1427,1931],[1739,1932],[1741,1933],1427,[1803,3211],3212,0,0,0,0,0,0,3155,[1286,3156],1286,2246,1286,[1739,2120],1741,[1739,2058],1286,2376,[1286,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[1570,158],[1636,28],1633,1571,1572,1571,1570,[1299,1573],1363,2127,2128,[1364,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[2074,8699],2073,2073,2073,2073,[2073,1675,8371],8372,8373,0,0,8378,8310,8314,[2073,1869,8315],[2073,1866],[2073,1868],[2074,1677],[2073,8757],[2073,1806,8758],[2073,8759],[2073,8758],[2073,8759],8693,8564,8565,0,0,8443,[2073,8444],2073,2073,[2138,8563],8564,8565,0,0,0,8443,[2073,8444],2073,[2073,1609],[2073,1742,8692],8628,8629,8565,0,0,0,0,0,8570,8630,8631,8632,8633,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3339,3340,[1744,3341],[1747,3342],[1745,3343],[1809,3344],[1747,3345],[1747,3342],[1746,3343],[1746,3344],[1745,3345],[1811,3342],[1810,3343],[1746,3344],[1747,3345],[1810,3342],[1811,3343],[1809,3344],[1811,3345],[1747,3342],[1744,3343],[1811,3344],[1746,3345],[1810,3342],[1809,3343],[1811,3344],[1744,3345],[1811,3342],[1808,3343],[1808,3344],[1810,3345],[1745,3342],[1808,3343],[1745,3344],[1809,3345],[1810,3346],3347,3470,3471,3472,3473,3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,3406,3407,3408,3409,3406,3407,3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8696,8697,8635,[1299,8636],1299,1300,[1300,8308],8309,8310,8313,8373,0,0,0,8378,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,3406,3407,3408,3409,3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1810,3220],1744,1745,1808,[1811,1669,2957],3021,3025,3026,[1734,3027],1798,[1745,1860],[1747,1864],1808,1810,[1746,1731],[1744,1672],1745,[1809,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,[5319,7589],7590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16866,16866,16867,16866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1039,3220],1104,1040,[1039,1610],1492,[1805,3020],3021,3022,3025,3026,[1427,3027],1492,1427,1740,1427,1740,1427,1739,[1739,3404],3405,3406,3407,3410,[1740,3348],1427,1804,1427,1804,1741,[1427,3147],3148,0,3090,3091,[1739,2961],[1740,2958],[1803,2961],[1805,2958],[1741,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1739,3411],1805,1427,1803,1805,1491,1803,1741,1805,[1739,3147],3148,0,0,0,0,0,0,0,0,3219,[1803,3220],1805,1805,1428,[1427,1995],2246,[1741,1997],1739,[1741,3147],3148,0,0,0,0,0,0,3219,[1286,3220],1286,1286,1286,[1805,2056],1804,[1739,2122],1286,[1286,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,92,[1570,93],1570,1570,1633,1636,[1947,1507],1363,2191,2192,[1364,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[2073,8444],2074,2073,2073,2073,2074,[2074,8435],8436,0,0,0,0,0,8378,8379,[2073,8380],2073,2073,[2073,1610],[2073,1806],2073,2073,2073,[2073,8757],8628,8629,8565,0,8507,[2073,8508],2073,2073,[2073,8627],8628,8629,8565,0,0,8507,[2073,8508],2073,[2073,1737],[2073,1806],[2073,8692],8693,8436,0,0,0,0,8570,8571,8694,8695,8696,8697,8629,8630,8631,8630,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3404,3405,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3406,3407,3408,3409,3410,3411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3469,3470,3471,3472,3473,3470,3471,3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[1299,8760],[1363,8761],[1364,8699],1363,1299,[1363,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3469,3470,3471,3472,3473,3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1810,3220],1747,1747,[1808,3020],3021,3085,0,3090,3091,[1744,1670,3092],1744,1747,1745,[1809,1604],1798,[1745,1736],1746,[1810,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,4207,4208,5384,5383,[5319,7653],7654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[979,3284],1103,1039,[915,1609],[1740,3083],3084,3085,0,0,3090,3091,[1803,3092],1740,1740,1803,1803,1805,1804,1803,[1803,3469],[1741,3470],[1739,3471],[1741,3474],1740,1740,1739,1805,1427,1739,[1739,3211],3212,0,0,3090,3025,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1739,3156],1803,1740,1741,1739,1804,1428,1803,1804,1804,[1739,3211],3212,0,0,0,0,0,0,0,0,3090,3026,[1803,3027],1740,1803,[1803,2059],[1740,2060],[1739,2061],1741,[1805,3211],3212,0,0,0,0,0,0,3090,3026,[1286,3027],1286,1286,[1803,2184],[1803,2185],[1739,2186],[1286,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1635,222],1636,1635,1571,[1363,1637],1299,2012,1363,1300,[1300,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[2073,8508],2073,2138,2073,2073,2073,[2073,8499],8500,0,0,0,0,0,0,8443,[2073,8444],2073,2137,[2073,1801],[2073,1806],2073,2073,2137,2073,[2073,8692],8693,8436,0,8378,8314,[2074,8315],2073,2073,[2073,8692],8693,8436,0,0,8378,8314,[2073,8315],[2073,1865],[2073,1870],[2138,1545],[2073,1546,8435],8436,0,0,0,8570,8634,8635,[2074,8758],[2073,8759],[2137,8760],[2073,8761],8693,8694,8695,8502,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3469,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3470,3471,3472,3473,3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[1300,8699],[1363,1513],1363,1299,1363,1364,[1364,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,3282,3283,[1808,3284],1747,[1744,3083],3084,3085,0,0,0,3155,[1747,3156],1809,[1810,1604],[1744,1540],1798,1735,[1809,1864],[1808,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,[5320,7717],7718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1103,1612,3348],980,915,[915,1673],[1741,3211],3212,0,0,0,0,3155,[1805,3156],1741,1740,1804,1805,1739,1740,1803,1741,1805,1741,1739,1805,1803,1804,1805,1739,[1427,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1804,3156],1739,1428,1427,1739,1427,1803,1740,1741,[1740,3020],3021,3085,0,0,0,0,0,0,0,0,0,3090,3026,[1803,3027],1427,1739,1741,1739,[1739,3020],3021,3085,0,0,0,0,0,0,0,3090,3026,[1286,3027],1286,1286,1286,1286,[1286,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[1569,93],1572,1633,[1364,1701],1363,1364,1300,1363,1300,[1364,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[486,536],[486,537],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[2073,8315],2073,2137,2074,[2073,8308],8309,8373,0,0,0,0,0,0,8507,[2137,8508],2073,2073,[2073,1609],1803,[2073,1612,8245],[2073,8246],[2138,8250],2073,2073,[2138,8435],8436,0,0,8378,8379,[2073,1611,8380],[2074,1546],[2074,1612],[2073,8435],8436,0,0,0,8378,8379,[2073,8380],2138,[2073,1801],[1741,8499],8500,0,0,0,8443,8698,[2073,8699],2073,2073,2073,2073,[2073,8757],[2137,1737,8758],[2074,1614,8759],[2073,8758],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[1299,8508],1300,1364,1363,1364,1363,1364,[1364,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3341,3344,3345,3346,3347,[1809,3348],1808,[1747,3147],3148,0,0,0,0,3219,[1542,3220],[1810,1543],1798,1799,1734,[1808,1671],[1810,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,4276,4277,4139,4140,4139,4140,4141,4142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1804,3411],[1103,1806],980,1040,[979,1737,3083],3084,3085,0,0,0,0,3090,3026,[1804,3027],1740,1804,1741,1491,1427,1427,1740,1740,1805,1427,1427,1741,1804,1804,[1804,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3220],1740,1805,1739,1741,1741,1427,1805,[1741,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1741,2961],[1741,2958],[1740,2961],[1803,2958],3084,3085,0,0,0,0,0,0,0,0,0,3155,[1286,3156],1286,2310,1286,1286,[1286,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[1299,1700,158],[1299,1508],1364,1363,1947,[1299,1442],[1364,1443],1363,1363,[1364,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,476,[487,477],487,423,[486,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[2137,8766],[2073,8767],[2073,8768],8372,8373,0,0,0,0,0,0,0,8443,[2073,8444],2073,2073,[2073,1737],[1803,8308],8309,8310,8314,[2073,1611,8380],[2138,1546],[1546,8499],8500,0,0,0,8443,[1805,8444],1803,[2138,1614],[2138,8499],8500,0,0,0,0,8443,[2137,8444],[2073,1610],1741,[1740,8563],8564,8565,0,0,8507,[2073,8508],2073,2137,2073,2073,2074,2137,[2073,1609],[2073,1678],2073,[2073,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[1363,8315],[1363,1390],1935,1300,[1364,1389],[1300,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1744,3470],[1809,3471],3405,3408,3409,3410,[1747,3411],1809,[1747,1539],[1540,3211],3212,0,0,0,3282,3283,[1734,3284],1735,1735,1798,[1747,1670],1811,[1744,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,4340,4341,4203,4204,4203,4204,4205,4206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1741,3220],1804,[1103,1677],1104,915,[979,3147],3148,0,0,0,0,0,0,3090,3091,[1739,2961],[1740,2962],1741,1803,1740,1740,1740,1805,1805,1740,1740,1804,1805,1427,[1741,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1805,3027],1491,1805,1740,1805,1805,1804,[1804,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,3090,3026,[1286,3027],1286,1286,[1286,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[2012,222],1363,1999,[2012,1442],[1364,1377],1633,1569,[1363,1377],[2012,1378,149],150,151,0,0,0,0,0,0,0,348,1950,409,343,0,0,348,349,[356,286],421,487,486,422,[423,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8830,8831,8832,8373,0,0,0,0,0,0,0,8570,8571,[2073,8572],2073,[2073,1611],[1805,8371],8372,8373,0,8443,[1803,8444],1740,[1740,8435],8436,0,0,0,8507,[1740,8508],1741,[2073,1742],[2073,8435],8436,0,0,0,0,8507,[1740,8508],1803,[2073,1676],[2073,8627],8628,8629,8630,8631,8634,[2073,8572],2138,2073,2073,[2073,8245],[2073,8246],[2073,8250],[2073,1737],[2073,1742],2138,2073,[2073,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[1299,8246],[1300,8249],[1299,8246],[1363,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1810,1606,3411],1809,1808,[1810,3469],[1809,3472],[1811,3473],[1746,3474],1808,[1747,1605],1734,[1798,3147],3148,0,0,3282,3346,3347,[1744,1669,3348],1799,1735,1734,[1811,1606],1745,[1809,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[916,1806,3027],916,1103,1039,[979,3211],3212,0,0,0,0,0,0,0,3090,3025,3026,[1427,2962],1804,1427,1803,1804,1805,1427,1739,1740,1804,1427,[1427,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1804,3027],1491,1805,1739,1805,[1804,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1286,2958],[1286,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1379,222],[2012,1380],[1363,1377],1636,1633,1636,[422,1508],[487,1506],[1697,213],214,0,0,0,0,0,0,0,348,349,2014,473,342,408,31,412,413,[3777,414],[3777,483],487,486,487,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8632,8633,8634,8635,[2073,8636],2073,[2073,1801],[1740,8435],8436,0,0,8507,[1739,8508],1805,[1740,8499],8500,0,0,0,8443,[1805,8444],1804,[2137,1806],[2074,8499],8500,0,0,0,0,8443,[1741,8444],1804,[2073,1613],2073,[2073,8692],8693,8694,8695,8698,[2073,8636],2073,[2073,1611],[2073,1612,8245],8309,8310,8314,[2073,1801,8315],[2074,1806],2073,[2074,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1734,3220],1734,[1811,1540],[1744,1543],[1809,1540],[1747,1542],[1744,1543],[1808,1607],[1744,1605],1799,[1810,1860],[1861,3211],3212,0,0,3155,3410,[1810,3411],1808,[1745,1795],1735,1734,[1744,1608],1744,[1810,1605,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,5320,5319,5320,4271,4272,5319,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1040,3521],[1039,3522],[1103,3523],3084,3085,0,0,0,0,0,0,0,0,0,3090,3026,[1804,3027],1805,1741,1804,1739,1805,1803,1804,1741,[1427,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,2961],[1804,2958],[1740,2961],[1804,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1570,286],1572,1571,1635,1636,[487,1445],423,486,[422,277],278,0,0,0,0,0,0,348,412,413,[422,2078],[487,537],406,472,95,476,[3777,477],[3777,227],485,422,423,487,[422,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8696,8697,8698,[2073,8699],2073,2073,[2138,1801,8308],8309,8373,0,8570,8571,[1803,8572],1741,[1805,8563],8564,8565,0,0,8507,[1803,8508],1739,[2073,1677],[2073,8499],8500,0,0,0,0,8507,[1805,8508],1803,1739,[2073,1546],[2073,1613],[2073,8757],[2073,8758],[2073,8759],[2138,1610,8762],[2073,1612],[2073,1610],1803,[1804,8435],8436,0,8378,8379,[2073,1676,8380],2073,[2073,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1735,3156],1735,1798,[1745,1671],[1744,1668],[1808,1860],1734,1798,1735,[1810,1670],[1744,3083],3084,3085,0,0,3219,[1808,3220],1744,1810,[1746,1669],[1744,1860],1798,[1745,1672],1744,[1747,1603],[1798,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,4335,4336,5383,4276,4277,4139,4140,4139,4139,4140,4140,7014,7015,7016,4141,4142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3585,3586,3587,3085,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1741,2958],[1804,2961],[1740,2962],1803,1740,1739,1739,1804,[1803,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[1636,350],1635,1635,1635,1569,[486,1509],486,486,[486,341],342,343,0,0,348,3890,31,412,476,[422,477],422,487,[487,470],[3777,296,536],[3777,159],[3777,540],3777,[3777,291],487,422,422,423,[422,405],471,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[2073,8760],[2073,1801,8761],[2074,1613,8762],2074,2073,[2073,8371],8372,8373,0,0,8443,8635,[2138,1674,8636],[2073,1869],[2073,1870,8627],8628,8436,0,0,8443,[2073,1868,8444],[2073,1870],2138,[2073,8563],8564,8565,0,0,8570,8571,[1803,8572],1740,1740,1803,[2073,1614],2073,[2073,1545],[2073,1546],1739,[2073,1869],[2137,1867],1805,[1803,8499],8500,0,0,8443,[2073,8444],2074,[2073,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1799,3220],1798,[1745,1800],1809,1811,1811,[1811,1795],1799,[1744,1608],1809,[1809,3147],3148,0,0,0,3090,3026,[1811,3027],1745,1808,1809,[1811,1668],[1745,1736],1809,[1810,1731],1799,[1798,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,4340,4341,4203,4204,4203,4203,4204,4204,[5319,7078],[5319,7079],[5319,7080],4205,4206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3026,[1741,3027],1740,1805,1428,1740,[1739,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[1569,414],1571,1570,1635,1635,[487,1573],486,423,[486,405],406,407,408,31,412,3954,95,476,[486,540],423,487,487,422,[3777,360],3777,597,3777,[3777,419],422,487,422,[486,1129],[486,1130],[422,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[2073,8699],2073,[2137,1675],1739,[2138,1612],2073,[2138,8435],8436,0,0,0,8443,[2137,8444],2073,2073,2073,[2073,8435],8436,0,0,8507,[2073,8508],2073,2073,[2073,1609,8627],8628,8629,8630,8631,8634,8635,[2073,1865,8636],[2073,1866],[2138,1867],1805,[2073,1742],2073,[2073,1609],1805,[2073,1676],2073,2137,[2073,1675,8371],8372,8373,0,0,8507,[2073,8508],2073,[2137,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1799,3027],1799,[1745,1606,2957],[1808,2961],[1744,1604,2962],1799,1798,[1746,1736],1744,[1746,3211],3212,0,0,0,0,3090,3091,[1810,2958],[1746,2961],[1808,2962],[1746,1605],[1810,1608],1809,[1808,1795],1799,[1735,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,3092],1803,1804,1427,[1741,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[1571,477],1570,1636,1569,1571,1635,[422,1508],487,487,422,[486,470],471,472,95,476,[3777,4018],[3777,159],[3777,291,540],422,487,423,422,486,[3777,424],3777,3777,3777,[3777,547],421,487,486,[487,1193],[487,1194],[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[2137,8444],2073,2137,2138,[2073,1609],[2073,1806],2074,[2073,8499],8500,0,0,0,8507,[2073,8508],2074,2073,2073,[2073,8499],8500,0,0,8443,[2073,8444],2073,2073,[2073,1673],[1805,8692],8693,8694,8695,8698,[2073,8699],2073,2137,2138,[2073,1674,8245],[1806,8246],[2073,8249],[2073,1673,8250],[2074,1614],2073,2073,2138,[2073,8435],8436,0,0,0,8507,[2073,8508],2073,[2073,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1734,2961],3021,3025,3026,[1798,3027],1798,1734,[1745,1606,3020],3021,3085,0,0,0,0,0,3090,3022,3025,3026,[1734,3027],[1747,1736],1746,[1808,1859],[1809,1860],[1861,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1804,3156],1427,1741,1741,[1804,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[1571,286],1635,1633,1635,1633,1572,[422,1637],486,423,486,487,423,[423,535],[486,536],[3777,296,159],[3777,540],37,3777,[3777,355],423,487,486,422,[487,5638],484,[3777,294],3777,3777,3777,[3777,291],487,422,487,[486,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[2073,8508],2073,2073,2137,[2073,1737],1740,[2073,1612,8308],8309,8373,0,0,0,8443,[2073,8444],2073,2073,2073,[2073,8435],8436,0,0,8507,[2137,8508],2073,2073,[2138,1737],1741,[2073,1742,8757],[2073,8758],[2073,8759],[2073,8762],2073,2074,2073,[2073,8308],8309,8310,8313,8314,[2073,1678,8315],2073,2073,2073,[2138,8499],8500,0,0,0,8443,[2138,8444],2073,2073,[2074,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3085,0,3090,3091,[1798,2958],[1798,2961],3084,3085,0,0,0,0,0,0,0,0,0,3090,3091,[1735,3092],[1810,1607],1745,[1744,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,4207,4208,5384,5383,5384,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1741,3156],1805,1803,1739,1804,[1739,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[2140,1505,414],1635,1636,1572,1570,1634,1636,[423,1444],487,422,422,422,486,422,[3777,424],3777,101,3777,[3777,419],[422,5638],486,486,422,423,486,[3777,296],[3777,86],[3777,27],[3777,24],[3777,419,28],[422,5638],423,[487,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[1546,8572],[2073,1612],2073,2074,[2073,1674,8308],[1740,8246],8372,8373,0,0,0,0,8378,8314,[2073,8315],2073,2073,[2073,8499],8500,0,8570,8571,[2073,8572],2074,2137,[2073,1801],1805,[2137,1806],2073,2073,2073,2073,2073,[2073,8308],8309,8373,0,0,8378,8379,[2138,8380],2073,2073,[2073,8563],8564,8565,0,0,8507,[2073,8508],2137,2138,2073,[2073,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,3155,[1735,3156],[1744,1800],1747,[1809,3147],3148,0,0,0,0,0,0,0,3282,3342,3343,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,4207,4208,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13704,13705,13706,13707,12337,12338,12339,13707,13708,13709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1740,3220],1739,1803,1740,1741,1739,[1803,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[2140,477],2076,[2139,1632],1634,1633,1635,1635,1569,1636,[422,1377],[423,1443],423,422,486,486,484,[3777,232],3777,3777,[3777,356],421,423,486,422,422,486,[3777,360,149],150,88,91,92,[486,27],[423,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[1805,8636],1803,[2073,1546],[2138,1612,8371],8372,8310,8373,0,0,0,0,0,0,8378,8379,[2073,8380],2073,[2073,8563],8564,8633,8634,8635,[2073,8636],2073,[2073,1611],1739,1804,[2137,1676],2073,2073,2073,2073,[2073,8308],8309,8373,0,0,0,0,8443,[2073,8444],2073,2073,[2073,8627],8628,8629,8630,8631,8571,[2073,8572],2073,[2073,1545],[2074,1612,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1734,3220],1735,[1810,1607],[1745,3211],3212,0,0,0,0,0,0,3282,3283,3406,3407,3214,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,4399,4400,5383,5384,5383,5384,5383,5384,5383,5384,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13768,13769,13770,13771,[13898,12401],[13899,12402],[13899,12403],13771,13772,13773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1741,3027],1739,1804,1741,[1741,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[2076,222],2076,[2139,1441],1572,1571,1636,1636,1635,1571,1633,1570,1570,[487,1381],487,422,487,[423,5638],[3777,488],3777,661,3777,[3777,356],421,[486,1139],[486,1140],422,422,[486,213],214,0,0,156,88,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[2073,1868,8699],[2073,1869],1740,1803,[1805,8435],8436,0,0,0,0,0,0,0,0,0,8443,[2074,8444],2073,[2073,8627],8628,8502,8698,[2073,8699],[2073,1610],[2073,1546],1741,1739,[2073,1870],[2073,8245],[2073,8249],[2073,8246],[2073,8249],[2074,8246],8372,8373,0,0,0,0,0,8443,[2073,8444],2137,[2073,1610],[2073,1546],[2073,1547,8692],8693,8694,8695,8635,[1546,8636],[2073,1546],1803,[1739,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1798,3284],1798,[1798,1178],[1735,3275],3276,3277,0,0,0,0,3282,3346,3347,[1798,3470],[1746,1800,3471],[1808,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,4271,4272,5320,5319,5320,5319,5320,5319,5320,5319,5320,4463,4464,5319,5320,5319,5320,5319,5320,5319,5320,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13898,13834,13899,[13835,12466],13835,13898,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1427,2958],[1741,2961],[1427,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[2076,286],2075,[2140,1440],1569,1570,1636,1636,1635,1635,[1571,23],[1572,27],[1572,24],[487,1637,28],486,423,487,422,484,[3777,295],[3777,23],[3777,27],[3777,158],[3777,291],[422,1203],[487,1204],487,486,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[2073,8444],2073,2074,[2073,1675],[2073,1866],[1867,8435],8436,0,0,0,0,0,0,0,0,0,8507,[2073,8508],2073,2137,[2073,1610,8627],[2074,8761],[2073,8762],[2073,1545],1804,[2073,1866],[2073,1868],[2074,1676],[2137,8245],8309,8313,8310,8313,8310,8373,0,0,0,0,0,0,8507,[2073,8508],2137,[2138,1801],1803,1741,[2138,1806,8757],[2137,8758],[2073,8759],[2073,1865,8699],[2073,1866],[2074,1867],1741,[1740,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1288,3348],[1735,1289],[1799,1290],[1734,1291,3339],3340,3341,3277,0,0,0,3219,3410,[1734,3411],1734,[1809,1670],[1810,1513],[1811,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,4335,4336,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,4401,4402,5384,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13899,13899,13834,13899,13834,13899,13900,13774,13706,13708,13709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[2140,222],2075,[2140,1504],1636,1634,1571,1570,1633,[1569,149],150,88,91,92,[422,93],486,422,486,422,[3777,296,86],87,88,92,[3777,355,27],[487,24],[486,28],423,[423,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[2073,8508],2137,2073,2138,2073,[2073,8563],8564,8565,0,0,0,0,0,0,0,0,8378,8314,[2073,8315],2073,[2073,1801],[2073,1547],[2073,1549],1741,[2073,1676],2073,2137,[2073,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,8507,[2073,8508],2073,[2137,1675],[2073,1866],1805,[2073,1676],2073,2074,2073,2137,2073,[2073,1675,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[1286,3411],1286,1286,1286,1286,[1286,3404],3405,3148,0,0,3282,3283,[1735,3284],1799,[1808,1671],[1808,1539],[1809,1540],[1809,1543],[1542,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,4465,4466,5320,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13835,13899,13898,13834,13899,13899,14158,13770,13771,13772,13774,13705,13706,13707,13706,13707,13706,13707,13706,13707,13706,13707,13708,13709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[2076,286],2076,[2076,1568],1636,1572,1636,1636,1569,[1635,213],214,0,0,156,157,[423,27],[487,24],[423,27],[486,27],150,151,0,156,88,91,92,[422,27],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[2073,8315],2073,2073,2138,[2073,8627],8628,8629,8630,8631,8565,0,0,0,0,0,0,8378,8379,[2073,8315],[2073,1674],[2073,1866],[2073,1868],[2073,1870],[2073,8245],[2073,8249],[2073,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[2073,8572],2073,2138,2073,[2073,1674,8245],[2074,8246],[2073,8249],[2073,8315],2073,2073,[2073,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,1952,3344,3277,0,0,0,0,0,0,0,3282,3283,[1351,3284],[16,1352],[15,1353],[16,1354],[79,1355],[15,1479],[80,1480],[1481,3147],3148,0,3282,3346,3347,[1811,1668,3348],[1747,1864],1744,[1746,1795],1735,1799,[1735,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13835,13835,13835,13834,13834,13835,13834,13835,13898,14158,13770,13771,13770,13771,13770,13771,13770,13771,13770,13771,13770,13771,13772,13773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[2139,93],[2076,1632],1570,1634,1570,1633,1634,[1570,277],278,0,0,0,156,88,91,88,91,151,0,0,0,0,0,156,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[2073,8315],2073,2073,2137,[2073,8692],8693,8694,8695,8629,8630,8631,8632,8633,8565,0,0,8378,8379,[2073,8249],[2073,8246],[2074,8249],[2073,8246],8309,8313,8310,8373,0,0,0,0,0,0,0,0,0,8570,8632,8633,8634,8635,[2073,8636],2074,2073,[2073,8308],8309,8310,8313,8379,[2073,8380],2073,[2073,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,2016,3408,3276,3277,0,0,0,0,0,3282,3346,3347,[80,1544,3348],16,80,[15,1539],[16,1607,1178],[15,1604],[15,1540],[1541,3211],3212,0,3155,3410,[1811,3411],1746,1810,[1810,1605],1735,1735,[1735,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4395,4396,4146,4147,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13898,13899,13835,13835,13898,13898,13835,13835,13835,13898,13835,13835,13899,13835,13898,13835,13835,13834,13835,13835,13835,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[2139,1632,158],1569,1571,1569,1633,1635,[1635,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[2073,8315],2073,2137,2073,[2073,8757],[2137,1673,8758],[1740,8759],8693,8694,8695,8696,8697,8629,8565,0,0,8378,8313,8310,8313,8310,8373,0,0,0,0,0,0,0,0,0,8570,8632,8633,8634,8696,8697,8698,[2073,1614,8699],2138,2073,[2073,8371],8372,8373,0,0,8443,[2073,8444],2074,[2137,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1745,3470],[1810,2080],[1744,3472],3340,3276,3277,0,0,0,0,3155,3410,[1799,3411],1798,[80,1607],79,[79,1795],1798,1735,[1798,3020],3021,3085,0,3219,[1746,3220],1744,[1745,1604],[1808,1540],1734,[1798,2957],[1798,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4459,4460,4210,4211,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13898,13898,13834,13898,[13898,14091],[13834,14092],[13835,14092],[13835,14092],[13834,14092],[13835,14092],[13835,14092],[13899,14092],[13898,14092],[13899,14092],[13898,14092],[13834,14092],[13834,14092],[13834,14092],[13898,14092],[13898,14093],13834,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1572,222],1633,1571,1635,[1741,1699],[1741,1700],[1740,1507,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[2138,8249],[2073,8250],2074,2073,[2137,1737],1804,[2073,1676,8757],[2073,8758],[2073,8759],[2073,8760],[2138,8761],8693,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8696,8697,8698,[2073,8760],[2073,8761],[2073,1737,8762],[2137,1678],2073,2073,[2073,8435],8436,0,0,0,8443,[2073,8444],2073,[2138,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1809,3411],1811,1811,1745,[1811,1605,3404],3340,3341,3277,0,0,0,3219,[1798,3220],1798,1735,[80,1671],15,[15,1859],1798,[1735,3083],3084,3085,0,0,3155,[1747,3156],1746,[1810,1859],1735,[1798,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,4271,4272,5320,5319,5320,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13835,13834,13834,13898,13835,[13834,14155],14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,[13898,14157],13899,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1572,222],1636,1569,[1803,1507],1427,1739,1805,[1741,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8314,[2074,8315],2073,[2073,1801],[2073,1806],2138,2073,[2137,1545],[2073,1546],[2073,1550],[2073,8757],8628,8629,8630,8631,8632,8633,8630,8631,8632,8633,8565,0,0,0,0,0,0,8507,8698,[2073,8760],[2073,8761],[2073,8762],2073,2073,[2073,1801],[2074,1742],2074,2073,[2074,8499],8500,0,0,0,8507,[2137,8508],2073,[2073,8627],8628,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1745,3220],1810,1810,[1746,1539],[1745,1540],1735,[1798,3404],3405,3148,0,0,0,3090,3026,[1798,3027],[15,1800],80,15,16,[16,1668,3083],3084,3085,0,0,0,3219,[1808,3220],1809,1746,[1747,1669,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,4335,4336,5384,5383,5384,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13960,13961,13962,13963,14094,13834,13834,[13834,14155],14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,[13835,14157],13899,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1572,286],1633,[1805,1637],1427,1741,1803,1740,1803,[1740,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[2073,1610,8380],[2073,1866],1739,[2074,1613],[2073,1611],1804,1804,[2073,1614],2073,[2073,8692],8693,8694,8695,8696,8697,8694,8695,8696,8697,8629,8630,8565,0,0,0,0,8507,[2073,8508],2073,2073,2073,2073,[2138,1611],1740,1740,[2073,1613],2073,[2073,8435],8436,0,0,0,8443,[2073,8444],2073,2073,[2073,8692],8693,8694,8695,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8629,8630,8631,8565,0,0,0,0,8570,8630,8631,8632,8633,8630,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1747,3027],1747,[1811,1859],1734,1734,1734,[1799,3147],3148,0,0,0,0,3090,3091,[16,1608,3092],80,79,79,[16,3147],3148,0,0,0,0,3155,[1811,3156],1809,1810,[1746,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,4399,4400,5320,5319,5320,5319,5320,4207,4208,5319,5320,5319,5320,5319,5320,5319,5320,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14024,14025,14026,13902,13833,13835,13899,[13898,14155],14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,[13899,14157],13834,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[1699,350],[1740,1700],[1740,1701],1803,1739,1427,1803,[1741,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[2073,8444],2073,[2073,1675],[2137,1868],[2073,1869],1740,1804,[2073,1742],2073,2073,[2073,8757],[2073,8758],[2074,8759],[2073,8760],[2073,1737,8761],[2137,1742,8758],[2073,8759],[2073,8760],[2073,8761],8693,8694,8564,8565,0,0,8570,8571,[2073,8572],2138,2073,[2073,1610],[2074,1546],1804,1804,1741,1740,[2074,1546],[1547,8435],8436,0,0,0,8507,[2138,8508],2137,2073,2073,[2073,8757],[2073,8758],[2073,8759],8693,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,1952,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[14182,8758],[14182,8759],8693,8694,8695,8564,8565,0,0,8570,8571,8694,8695,8696,8697,8502,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1746,3092],1811,[1811,1795],1734,1735,[1734,3211],3212,0,0,0,0,0,3155,[1415,3156],[79,1416],[80,1417],[16,1418],[1419,3211],3212,0,0,0,0,3219,[1746,3220],1744,1744,[1811,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,4463,4464,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,4401,4402,5383,5384,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13768,13897,13899,13899,[13834,14155],14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,[13899,14157],13835,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[1740,414],1740,1803,1804,1804,1427,1427,[1805,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[2073,8315],2138,2073,2073,[2073,1675],[1805,8245],[1806,8246],[2138,8250],2073,2074,2073,2137,2073,[2073,1801],1741,[2073,1612],2073,2073,[2073,8757],[2138,8758],8628,8629,8632,8633,8634,8635,[2074,8636],[2073,1610],[2073,1546],1740,1803,[2073,1867],[2073,1868],[2073,1869],[2073,1867],[2073,1868],[1869,8499],8500,0,0,8570,8571,[2073,8508],2073,2073,2073,2137,2073,[2073,1610],[1803,8757],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,2016,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,8698,[14182,8699],14184,14182,[14182,8757],[14182,8758],[14182,8759],8628,8629,8630,8631,8634,8635,[14182,8758],[14182,8759],[14182,8760],[14182,8761],[14182,8758],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1808,3156],1808,[1808,1603],1735,[1735,3020],3021,3085,0,0,0,0,0,3219,[1286,3220],1286,1286,1286,[1286,3275],3276,3277,0,0,3282,3283,[1747,3284],[1745,1178],[1745,1178],[1808,3275],3276,3277,0,0,3282,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4265,4266,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,5319,5320,4465,4466,5319,5320,4269,4270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13899,13898,[13898,14155],14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,[13834,14157],13834,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[1740,477],1803,1803,1739,1741,1804,1428,1491,[1803,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[2074,8246],[2073,8250],2073,[2073,8308],8309,8310,8314,[2137,8315],2073,2074,2073,2073,[2138,1865],[2073,1866],[2074,1867],[2137,1546],[2074,1547],[2073,1549],[2074,1613],[2073,8692],8693,8696,8697,8698,[2073,8699],2073,[2073,1674],1739,1740,[2074,1676],2073,2073,2073,2073,2073,[2073,8563],8564,8632,8633,8634,8635,[2138,1612,8762],2073,2074,2073,2073,[2073,1611],1804,[2073,1676],[2073,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3343,1951,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,1951,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[2825,2080],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[14182,8572],14182,14182,14182,14182,14182,14182,[14182,8692],8693,8694,8695,8698,[14182,8699],14182,14182,14184,14182,14182,[14182,8692],8693,8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1745,3220],1747,[1746,1731],[1734,3083],3084,3085,0,0,0,0,0,0,3219,[1351,3220],[1747,1352],[1811,1353],[1808,1354],[1809,1355,3339],3340,3341,3342,3343,3346,3347,[1746,2184,3348],[1811,2185],[1811,2185],[1747,2186,3339],3340,3341,3342,3343,3346,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4329,4330,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,5383,5384,4333,4334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13835,13899,[13899,14155],14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,[13834,14157],13898,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16848,16847,16847,16848,16848,16847,16848,16847,16847,16848,16847,16848,16848,16848,16920,16848,16848,16847,16847,16848,16847,16847,16847,16847,16848,16847,16847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,343,0,0,348,343,0,0,0,348,408,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1803,222],1805,1803,1805,1741,1804,1803,1741,1740,[1805,341],407,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8314,[2073,8246],8372,8373,0,8378,8379,[2073,8249],[2073,8246],[2138,8250],2074,2073,2073,2073,[2137,1674],1804,1803,1803,[2073,1612],[2074,8757],[2073,8760],[2073,8761],[2073,8636],2073,2073,2073,[2073,1609],[2137,1614],2073,2073,2073,2073,2073,2073,[2137,8627],8628,8696,8697,8698,[2073,1867,8699],1741,[2138,1546],[2073,1547],[2073,1548],[2137,1549],1805,[2073,1806],2138,2073,[2073,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3214,2015,3409,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,2015,3407,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[2826,3474],2828,[2763,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,8570,8632,8633,8632,8633,8634,8635,[14182,8636],14182,[14182,13159],14182,14182,[14182,13287],[14182,13288],14182,[14182,8757],[14182,8758],[14182,8759],[14182,8762],14182,14182,14182,14182,14182,14182,14182,[14182,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8634,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1745,3156],1811,[1746,1795],[1734,3147],3148,0,0,0,0,0,0,3282,3283,[1744,3284],1810,1809,1811,[1811,1604],[1809,1540,3404],3405,3406,3407,3410,[1286,3411],1286,1286,1286,1286,[1286,3404],3405,3406,3407,3410,[1735,3472],[1734,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4393,4394,4395,4396,4395,4396,4395,4396,4395,4396,4395,4396,4395,4396,4395,4396,4395,4395,4396,4395,4397,4398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13834,13898,[13898,14155],14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,[13898,14157],13898,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16911,16912,16911,16911,16911,16911,[16911,17103,17495],[16911,17106,17495],16911,16911,16912,16912,16912,16911,16984,16911,16912,16911,16912,16911,16911,16912,[16911,17103,17487],[16912,17106,17488],16912,16911,16911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,472,473,407,408,409,412,342,343,0,348,349,472,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1741,286],1803,1740,1741,1427,1739,1739,1739,1739,[1805,405],471,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8373,0,0,0,8378,8313,8310,8314,[2137,8246],[2138,8249],[2137,8246],[2073,8249],[2073,1610,8250],1803,1805,1805,[2073,1614],2073,2073,2073,2073,2073,2073,2074,[2073,1673],[2073,1678],[2073,8245],[2073,8246],[2073,8249],[2074,8250],2073,2073,2073,[2073,8757],[2073,8760],[2074,8761],[2074,8762],2074,[2137,1801],1805,[2137,1867],[2073,1868],[2073,1869],1739,1805,[2073,1613],2073,[2073,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2827,3471],[2763,2079],[2763,3473],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2763,2079],[2763,3471],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3345,3342,3343,3344,3345,3346,3410,[2762,3474],2825,2763,2827,[2763,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8694,8695,8629,8632,8633,8634,8696,8697,8696,8697,8698,[14182,8699],14182,14182,14182,14182,14182,[14182,13351],[14182,13352],14182,14182,14182,14182,14182,14182,14182,[14182,8245],[14182,8246],[14182,8249],[14182,8250],14182,[14182,8627],8628,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8698,[13735,8758],[13800,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1808,3220],[1745,1604],[1799,1178],[1734,3275],3276,3277,0,0,3282,3342,3343,3346,3347,[1744,3348],1809,1747,1808,[1811,1795],1799,[1734,3469],[1798,3470],[1798,3471],[1746,1544,1993,3474],[1811,1993],[1809,1994],1286,1286,[1747,1992],[1809,1993],[1808,1993,3469],[1811,3470],[1811,3471],[1745,1669,3474],1735,1798,[1746,1670,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4457,4458,4459,4460,4459,4460,4459,4460,4459,4460,4459,4460,4459,4460,4459,4460,4459,4459,4460,4459,4461,4462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13898,13899,[13898,14155],14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,14156,[13834,14157],13835,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16788,16788,16788,16660,16724,[17167,17559],[17170,17559],16659,16788,16724,16787,16787,16788,[16659,17048],16659,16659,16724,16724,16660,16723,16787,[17167,17551],[17170,17552],16724,16787,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,409,343,0,0,0,285,413,[487,536],[422,537],471,472,473,476,406,407,408,412,413,[486,536],406,407,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[1427,93],1427,1739,1740,1741,1427,1739,1804,1427,[1739,535],[1739,536],[1739,537],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8313,8314,[1803,8246],[1739,8249],[1805,8246],[2073,1678,8249],[2074,8250],2073,2073,2137,2137,2073,2073,[2137,1737,8245],[2073,1742,8246],8309,8310,8313,8314,[2073,8315],2073,2073,2073,2073,2137,2074,[2073,1610],1739,[2073,1677],2137,2074,2073,[2073,1675],1805,1740,[2073,1547,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2764,3411],2825,2826,2825,[2825,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2826,3156],2826,2828,[2825,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3409,3406,3407,3408,3409,3410,[2826,3411],2827,2764,2825,[2764,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8698,[14182,8758],[14182,8759],8693,8696,8697,8698,[14182,8760],[14182,8761],[14182,8760],[14182,8761],[14182,8762],14182,14182,14182,14182,14182,14182,14182,14182,[14182,8245],[14182,8249],[14182,8315],14182,14182,14182,[14182,8308],[8557,8309],[8557,8310],[8555,8313],[8491,8379],[14182,8380],14182,[14182,8692],8693,8694,8695,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8629,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,0,0,0,8570,8634,8635,[13799,8758],[13800,8759],[13800,8762],13799,13800,[13799,8692],8693,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1287,3156],[1799,1288],[1798,1289],[1290,3339],3340,3341,3342,3343,3346,3406,3407,3410,[1747,3411],1744,1811,1745,1744,[1745,1859],1799,1735,1799,1735,[1809,1800],[1810,1178],[1747,2058],1286,1286,[1809,2056],[1810,1178],[1809,1539],[1811,1606],1746,[1810,1604],1735,[1744,1800],1811,[1747,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13832,13833,13835,13899,[13834,14219],[13835,14220],[13834,14220],[13835,14220],[13898,14220],[13835,14220],[13834,14220],[13898,14220],[13834,14220],[13834,14220],[13835,14220],[13898,14220],[13835,14220],[13834,14220],[13899,14220],[13898,14221],13835,13836,13837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16787,16659,16660,16660,16723,17167,17170,16788,16723,16788,16788,16787,16787,16659,16724,16724,16723,16724,16660,16660,16787,17167,17170,16788,16788,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,472,473,342,343,0,348,349,[422,286],486,422,[422,535],[422,536],[423,537],[420,540],[3777,552,470],471,280,476,[487,477],422,[486,470],471,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[1805,93],1805,1741,1427,1803,1740,1740,1739,1804,1804,1803,[1740,470],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8313,8314,[2073,8315],2073,2073,[2073,8245],[2073,8246],[2073,8249],8309,8310,8373,0,0,8378,8379,[2073,8315],2138,[2073,8245],[2073,8246],[2137,8249],[2073,8250],[2073,1609],[2073,1614],2073,2137,[2073,8245],[2073,8249],[2073,8246],[1741,8249],[1739,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,3155,[2761,3156],2825,2827,2826,2762,[2764,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2764,3220],2827,2827,[2763,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2826,3473],[2762,3470],[2763,3471],[2828,3472],[2764,3473],[2762,3474],2762,2828,2762,[2826,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[14182,8762],14182,14182,[14182,8757],[14182,8760],[14182,8761],[14182,8762],14182,[14182,13534],[14182,13535],[14182,13536],14182,14182,14182,14182,14182,14183,14182,14182,[14182,8371],[8492,8309],[8491,8313],[8493,8379],[14182,8246],[14182,8249],[14182,8246,14929],[8493,8372,14930],[8493,8373,14931],[8496,14932],8497,[8492,8507],[14182,8508],14182,14182,[14182,8757],[14182,8758],[14182,8759],8693,8629,8630,8630,8631,8565,0,0,8570,8630,8631,8632,8633,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13800,8758],[13800,8759],8693,8502,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8629,8630,8631,8565,0,0,0,0,8443,8698,[13800,8699],13799,13799,13800,13799,13800,13735,[13800,8692],8693,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1351,3220],[1735,1352],[15,1800,1353],[79,1354],[79,1355,3404],3405,3406,3407,3410,[1798,3470],[1798,3471],[1808,1800,3474],1808,1746,1744,1811,1808,1811,[1745,1795],1799,1798,1734,1735,[1811,1607,2957],[1744,2122,2958],[1286,2961],[1286,2962],[1744,2056],1746,[1809,1603],1735,[1809,1540],1735,1798,[1747,1608],[1810,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13896,13897,13899,13899,13898,13834,13835,13834,13835,13899,13898,13834,13834,13834,13835,13835,13835,13835,13835,13835,13835,13900,13901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16659,16723,16724,16724,16724,17167,[17170,17615],16659,16724,16660,16723,16724,16788,16788,16723,16788,16724,16659,16660,16660,[16659,17103],17299,17170,16723,16787,16660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[3777,536],[3777,537],406,407,411,412,413,[487,414],423,486,[422,348],[422,408],[423,409],[3777,358,343],3777,[3777,535],[421,536],[487,540],423,487,486,[422,535],[423,536],[423,537],406,407,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[1740,24],[1804,27],[1741,158],1427,1741,1741,1803,1740,1804,1492,1739,[1804,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[2073,8249],[2073,8246],8309,8310,8313,8373,0,0,0,0,0,8378,8379,[2073,8249],8309,8310,8313,8314,[2073,1673,8315],[2073,1678],2073,[2073,8308],8309,8313,8310,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3406,3407,3341,3342,3343,3344,3345,3344,3345,3283,[2761,3284],2828,2763,2828,2762,[2826,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2825,3156],2761,2825,[2764,3275],3276,3342,3343,3342,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[2763,3411],2764,2828,2762,2828,2762,2763,2826,2825,2761,[2764,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[14182,8699],14182,14182,14182,14182,14182,14182,14182,[14182,13597],[14182,13598],[14182,13599],[14182,13600],[14182,13601],14182,14182,14182,14182,14182,14182,14182,[14182,8435],[8557,8436],8557,[8490,8378],[8556,8310],[8490,8313],[8493,8310,14993],[8490,8373,14994],[8492,14995],[8560,14996],8561,[8491,8378],[8554,8314],[14182,8315],14182,14184,14182,14182,[14182,8757],8693,8502,8694,8695,8629,8632,8633,8634,8694,8695,8696,8697,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,8698,[13799,8699],[13799,13084],[13799,13085],[13343,8757],[13800,13153,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8630,8565,0,0,0,0,8570,8634,8635,[13799,8758],[13799,8759],8693,8694,8695,8564,8565,0,0,0,8507,[13735,8508],13799,13799,13799,13800,13800,13799,13799,13799,[13799,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1735,3156],1799,[16,1800,1178],15,15,[80,3469],[80,2058,3470],[1286,3471],[1735,2056,3474],1799,1734,1734,[1745,1606],1808,1808,[1808,2957],[1811,2958],[1747,1604,2962],1799,1799,1735,1734,[1735,3020],3021,3022,3025,3026,[1745,2120,3027],1745,[1808,1731],1734,1735,[1744,1860],[1744,1862,2957],[1809,1672,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13960,13961,13963,13962,13963,13962,13963,13962,13963,13962,13963,13962,13963,13962,13963,13962,13963,13962,13963,13962,13963,13964,13965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16787,16788,16723,16659,[16659,17103],17299,17170,16724,16659,16723,16723,16787,16788,16787,16723,16660,16724,16787,16724,16723,[17167,17743],17168,[17170,17807],16723,16660,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[3777,477],3777,3777,[3777,419,470],471,280,476,[486,477],422,423,[487,348],[422,349],472,473,[3777,342],[3777,343],[3777,292],485,486,487,487,487,422,487,487,[486,470],471,472,473,342,343,0,348,408,409,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,92,[1740,93],1805,1492,1739,1740,1739,1805,1804,[1739,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,0,0,0,0,0,8378,8313,8373,0,0,8378,8379,[2073,1742,8249],[2073,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2826,3470],[2826,3471],3405,3406,3407,3408,3409,3408,3409,3347,[2761,3348],2763,2764,2762,2762,[2827,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2761,3220],2764,2828,[2762,3339],3340,3406,3407,3214,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[2762,3411],2763,2827,2825,2761,2828,2762,2762,2763,2827,2763,[2825,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,[14182,13157],[14182,13158],14182,14182,14182,14182,[14182,8308,13661],[14182,8246,13662],[14182,8249,13663],[14182,8246,13664],[14182,8250,13665],14182,14182,14182,14182,14182,14182,14182,[14182,8563],[8492,8564],[8555,8565],8490,8490,8493,[8556,15057],[8490,15058],[8555,15059],[8557,15060],8557,8557,[8490,8378],[8555,8379],[14182,8315],14182,14182,14182,14182,[14182,8757],[14182,8758],[14182,8758],[14182,8759],8693,8696,8697,8698,[14182,8758],[14182,8759],[14182,8760],[14182,8761],8693,8629,8630,8631,8632,8633,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,8570,8571,[13799,8572],13799,[13800,13213],13342,13343,[13799,13281],[13799,8692],8693,8436,0,0,0,0,8570,8632,8633,8565,0,0,0,0,0,0,8570,8571,8694,8695,8502,8564,8565,0,0,0,8443,8698,[13800,8699],13799,13799,[13800,8757],[13736,8758],[13799,8759],8628,8629,8565,0,0,8378,8314,[13800,8315],13800,13799,13799,13800,13799,13799,13799,13799,[13800,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1862,3220],[16,1863],[15,1864],15,80,[15,1539,1178],[80,1540,2122],1286,[1798,2056],[1735,1178],1799,1734,1798,[1744,1540],[1809,1607,3020],3021,3022,3026,[1735,2958],[1734,2961],[1799,2958],[1799,2961],3084,3085,0,0,3090,3091,[1747,3092],[1744,1859],[1745,1863],[1808,1670],[1746,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14024,14025,14027,14026,14027,14026,14027,14026,14027,14026,14027,14026,14027,14026,14027,14026,14027,14026,14027,14026,14027,14028,14029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,16723,16723,16723,16659,[17167,17807],17169,17300,[16787,17106],16724,16723,16659,16723,16788,16723,16787,16659,16788,16660,16724,16660,17167,17168,17170,16724,16788,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[3777,286],3777,3777,3777,[3777,483],[486,535],[487,539],[487,540],422,487,[422,348],[487,412],413,[3777,536],[3777,537],406,[3777,228,407],[485,343],422,486,422,422,487,486,487,423,487,[423,535],[423,536],[486,537],406,407,408,412,472,473,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[1739,158],1804,1804,1803,1803,1427,1739,[1740,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2828,3156],2762,2764,[2826,3469],[2825,3470],[2828,3471],[2826,3472],[2827,3473],[2827,3472],[2825,3473],[2762,3411],2761,2826,2763,2827,2828,[2761,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[2826,3284],2826,2761,2826,[2762,3404],[2761,3470],[2762,3471],[2762,3470],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2764,3411],2764,2825,2761,[2764,2957],[2825,2961],[2762,2958],[2761,2961],[2763,2962],2762,2825,2826,[2761,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,[14182,13221],[14182,13222],14182,[14182,8245],[14182,8246],[14182,8249],[14035,8372,13725],[14034,8310,13726],[14097,8313,13727],[14097,8310,13728],[14035,8314,13729],[14182,8315],14182,[14182,8308],[14182,8246],[14182,8250],14182,14182,[14182,8627],8628,[8492,8629],[8556,8565],8493,8491,[8491,15121],[8554,15122],[8557,15123],[8493,15124],8493,8556,8490,[8493,8378],[8491,8379],[14182,8246],[14182,8249],[14182,8250],14182,14182,14182,14182,14182,[14182,8757],[14182,8760],[14182,8761],[14182,8762],14182,[14182,13157],[14182,13158],14182,[14182,8757],8693,8694,8695,8696,8697,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8629,8630,8631,8630,8631,8634,8635,[13800,13151,8636],13800,[13799,13149],13280,13342,[13800,13409],13799,[13799,8499],8500,0,0,0,8570,8571,8696,8697,8564,8565,0,0,0,0,8570,8634,8635,[13344,8758],[13343,8759],[13277,8758],8628,8629,8565,0,0,8507,[13800,8508],13799,13799,13736,13800,13800,13799,[13735,8692],8693,8436,0,0,0,8378,8379,[13800,13149,8380],[13800,13085],[13799,13151],13800,13799,13800,13735,[13800,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[15,3156],79,[16,1178],16,16,[16,1795,2957],[1734,2122,2958],[1286,2961],[1735,2120,2962],1735,1799,1799,1799,[1734,3020],3084,3085,0,3090,3022,3025,3022,3025,3085,0,0,0,0,3155,[1811,3156],1811,1809,[1808,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16787,16787,16723,16723,17231,17232,17233,17234,16788,16788,16659,16723,16659,16788,16724,16660,16724,16724,[16659,17103],[16788,17104],17299,17363,[17234,17871],16788,16788,16659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[3777,158],3777,3777,[3777,547],[3777,548],421,423,423,423,[423,285],413,[3777,477],3777,3777,[3777,470],406,[423,278],487,486,422,[487,348],[423,408],[487,409],[423,343],422,486,486,422,486,[423,470],471,280,476,[487,536],[487,537],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1866,222],[1569,1867],[1571,1868],1740,1803,1427,1427,[1804,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2761,3156],2762,2825,2828,2761,2761,2826,2762,2761,2761,2828,2764,2761,2825,2763,[2761,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3347,[2828,3348],2763,2826,2828,2764,2828,2827,2763,[2826,3404],3405,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2826,3220],2826,2827,2763,[2827,3020],3021,3025,3022,3025,3026,[2764,3027],2762,2762,2827,[2762,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,14182,[14182,8308],[14099,8309],[14098,8310],[14034,8313],[14034,8373,13789],[14098,13790],[14035,13791],[14033,13792],[14035,8378,13793],[14099,8379],[14182,8249],[14096,8372],[14033,8310],[14033,8314],[14182,8315],14182,14182,[14182,8692],8693,[8557,8436],8491,8554,[8555,15185],[8556,15186],[8492,15187],[8490,15188],8492,8492,8490,8491,[8557,8378],[8490,8310],[8554,8313],[8555,8314],[14182,8315],14182,14182,[14182,13160],14182,14182,14182,14182,14182,14182,[14182,13221],[14182,13222],14184,14182,[14182,8757],[14182,8758],[14182,8759],[14182,8760],[14182,8761],8693,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13342,8758],[13344,8759],8693,8694,8695,8694,8695,8698,[13278,8699],13342,[13799,13085],13342,13279,[13799,13216],13800,[13799,8308],8309,8373,0,0,8570,8634,8635,[13800,8760],[13800,8761],8628,8629,8565,0,0,0,8507,8698,[13799,13405,8699],13343,13343,13342,[13342,8692],8693,8436,0,0,8443,[13800,8444],13799,13799,13799,13800,13799,13799,13799,[13800,8253],8254,0,0,0,0,8443,[13341,8444],13278,13341,[13799,13085],[13800,13151],13800,13799,[13800,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1287,3220],[79,1288],[16,1289],[79,1290],[16,1291,3020],3021,3022,3025,3026,[1735,2958],[1735,2961],[1798,2961],[1734,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1287,3220],[1810,1288],[1744,1289],[1290,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16787,16724,16788,16724,16788,16788,16659,16787,16660,16659,16660,16660,16723,16723,16723,16724,16660,16659,17231,17364,17363,17234,16723,16660,16788,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[228,222],[3777,228],[3777,294],3777,3777,[3777,357],[3777,549],[3777,548],421,[487,285],[3777,286],3777,3777,37,3777,[3777,341],[487,342],[423,343],486,[487,348],[486,349],472,473,[486,407],[486,408],[487,409],[487,343],487,487,486,[3777,424,535],[3777,536],[3777,548,540],421,423,[486,470],406,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1633,286],1572,1572,[1570,1675],[1570,1866],[1571,1867],[1635,1868],1804,[1805,470],471,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2762,3220],2763,2763,2764,2828,2761,2827,2763,2764,2764,2762,2826,2761,[2828,2957],[2827,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2828,3411],2826,2827,[2762,2957],[2826,2958],[2827,2962],2762,2763,2763,2827,[2764,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2762,3156],2826,2826,[2762,3083],3084,3085,0,0,0,3090,3091,[2763,3092],2763,2828,2826,[2762,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[14182,8380],14182,14182,[14182,8371],[14096,8372],[14033,8373],14033,14098,14099,[14033,13854],[14032,13855],[14035,13856],14098,[14034,8378],[14099,8313],[14035,8373],14099,[14035,8378],[14099,8379],[14182,8380],14182,14182,[14182,8435],[8491,8436],8557,8556,8557,[8554,15250],[8557,15251],8556,8554,8557,8555,8493,8490,8556,8555,[8490,8378],[8556,8379],[14182,8249],[14182,8246],[14182,8249],[14182,8315],14182,14184,14182,14182,[14182,8245],[14182,8246],[14182,8246],[14182,8249],[14182,8250],14182,14182,14182,14182,14182,[14182,8757],[14182,8758],[14182,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13800,13213,8699],13279,13343,[13280,8757],[13341,8758],[13800,13281,8759],[13799,8758],[13800,8759],[13799,8762],[13800,13213],13277,13280,13341,[13799,13153],13800,[13799,8371],8372,8373,0,0,0,8507,8698,[13800,8699],13800,13799,[13799,8692],8693,8436,0,0,0,8378,8379,[13799,8380],[13800,13213],13343,13280,13342,[13280,8499],8500,0,0,8507,[13800,8508],13800,13799,13799,13799,13800,13799,13799,[13799,8317],8318,0,0,0,0,8255,[13277,8256],13278,13344,13342,13342,[13799,13085],[13800,13152],[13800,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1286,3156],1286,1286,[1286,3083],3084,3085,0,0,3090,3022,3025,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1479,3220],[1747,1480],[1747,1481],[1482,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16723,16788,16787,16787,16724,16787,16788,16659,16788,16660,16723,16787,16659,16788,16723,16788,16724,16723,16787,17231,17234,16659,16659,16788,16659,16724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[486,286],420,[3777,359],3777,3777,3777,3777,3777,[3777,357,348],[487,349],[3777,350],3777,3777,101,3777,[3777,483,405],406,[422,407],[423,408],[423,412],413,[3777,536],[3777,291,537],471,472,473,[487,407],[487,408],[423,409],[422,343],[3777,488],3777,3777,[3777,547],421,422,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3728,1952,3657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,409,343,0,0,348,349,[1571,350],1633,1569,1633,1635,1635,1634,[1634,1675],1804,[1740,535],471,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2826,3027],2826,[2827,2957],[2763,2958],[2828,2961],[2825,3521],[2763,3522],[2763,3523],[2762,2961],[2827,2958],[2761,2958],[2825,2961],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2761,3411],2762,2761,[2826,3020],3021,3022,3026,[2764,3027],2825,2827,2764,2828,[2763,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2764,3220],2763,2826,[2764,3147],3148,0,0,0,0,0,3155,[2826,3156],2761,2827,2826,[2827,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,[14182,8435],[14032,8436],14035,14032,14032,14801,14035,14099,14032,14034,14098,14034,14032,14610,14032,[14096,8443],[14182,8444],14184,14182,[14182,8499],[8557,8500],8493,8493,8554,8556,8555,8554,8491,8557,[13646,8618],[13517,8619],[13581,8620],[13582,8621],8557,8490,[8490,8378],[8493,8313],[8490,8310],[8490,8313],[8493,8379],[14182,8249],[14182,8246],[14182,8249],[14182,8246],[8556,8309],[8491,8310,15309],[8493,8310,15310],[8555,8313,15311],[8493,8314],[14182,8315],[14182,14925],[14182,14926],[14182,14927],[14182,14928],14182,14182,14182,[14182,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13799,8444],13735,[13799,13214],13278,13280,13342,[13800,13345],13799,13800,13799,13799,[13799,13340],13342,13343,[13799,13281],13800,[13800,8435],8436,0,0,0,8570,8571,[13735,8572],13800,13799,13799,13799,[13799,8435],8436,0,0,0,0,8443,[13800,8444],13800,[13800,13340],13278,[13343,8371],8372,8373,0,0,8378,8314,[13735,8315],13800,13800,13799,13799,13800,13799,[13799,8381],8382,0,0,0,0,8319,[13342,8320],13278,13341,13092,13341,13341,[13799,13153],[13799,8627],8628,8629,8632,8633,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1286,3220],1286,1286,[1286,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1810,3284],1745,1811,[1808,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16788,16660,16724,16723,16788,16659,16660,16788,16787,16723,16788,16787,16723,16659,16660,16788,16788,16724,16724,16787,16787,16724,16787,16723,16788,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[487,350],[3777,296],3777,[3777,348,676],[223,677],[3777,409,678,676],223,[3777,411,678],[3777,412],413,[3777,294,414],3777,3777,3777,3777,[3777,547],[3777,548,470],471,280,476,[3777,477],3777,[3777,355],[3777,488,535],[3777,536],[3777,537],471,472,473,[487,342],[3777,358,343],3777,3777,3777,[3777,483],423,[423,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3667,3792,2016,3721,3657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,473,407,1950,411,412,413,[1635,414],1570,1571,1569,1572,1569,1570,1634,[1634,1609],1739,[1740,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2762,2958],3084,3022,3025,3585,3586,3587,3025,3022,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2761,3156],2762,2764,[2825,3083],3084,3085,0,3090,3091,[2825,2958],[2762,2961],[2826,2958],[2828,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2761,3156],2762,2825,[2827,3211],3212,0,0,0,0,0,3155,[2825,3156],2828,2827,2763,[2827,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,[14182,8499],[14034,8500],14032,14098,14096,14098,14096,14033,14098,14033,14032,14096,14096,14032,14099,[14097,8507],[14182,8508],14182,14182,[14182,8563],[8556,8564],[8557,8565],8493,8556,8490,8493,8492,8495,[13517,8558],13645,13645,13517,13582,[13646,8426],[13517,8618],8554,8493,8493,8492,[8555,8378],[8491,8313],[8493,8310],[8490,8313],[8554,8310],[8554,8373],[8491,15373],15374,[8493,15375],[8557,8378],[8556,8379],[14182,8246,14989],[14182,8249,14990],[14182,8246,14991],[14182,8249,14992],[14182,8250],14182,14184,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13800,8508],13799,13799,[13800,13404],[13800,13405],[13800,13406],[13800,13409],13799,13799,13799,[13800,13084],13342,13342,13280,13344,[13800,13151],[13800,8499],8500,0,0,8570,8634,8635,[13799,8636],13799,13800,13799,13799,[13799,8499],8500,0,0,0,0,8507,[13799,8508],13799,[13800,13214],13280,[13280,8435],8436,0,0,0,0,8378,8379,[13799,8380],13799,13799,13735,13800,[13799,8371],8372,8373,0,0,0,0,8383,[13277,8384],13343,13279,13280,13278,13341,[13799,13217],13799,[13800,8692],8693,8696,8697,8564,8565,0,0,0,0,0,0,8570,8632,8633,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1286,3156],1286,1286,[1286,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3536,3537,3346,3347,[1809,3348],1810,1745,[1809,1605,3339],3340,3341,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16724,16660,16660,16787,16723,16660,16723,16659,16723,16787,16723,16723,16659,16788,16787,16723,16724,16788,16788,16724,16659,16659,16660,16788,16659,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[486,414],[3777,360],[3777,348],[3777,349],287,473,287,475,476,[487,477],484,[3777,294],3777,3777,3777,3777,3777,[3777,535],[3777,536],[3777,540],3777,3777,[3777,419],484,[3777,294],661,[3777,293,535],[487,536],[422,537],406,[3777,407],[3777,408,676],223,[3777,293,343,678],485,423,[487,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3730,3731,[1803,460,3856],[462,2080],3785,3656,3657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[1636,537],471,2014,475,476,[1636,477],1571,1635,1634,1572,1571,1571,1571,1634,[1633,1673],[1740,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2763,3220],2762,2764,[2764,3147],3148,0,0,0,3090,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2827,3220],2827,2825,[2761,3275],3276,3342,3343,3277,0,0,3219,[2826,3220],2826,2826,2764,[2763,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[14182,8572],14182,14182,[14182,8563],[14034,8564],[14035,8565],14099,14099,14098,14034,14033,14099,14099,14034,14098,14096,14035,14035,[14033,8378],[14032,8314],[14182,8380],14182,[14182,8627],8628,[8492,8629],[8490,8565],8490,8555,8490,[13645,8620],[13581,8621],[13582,8429],13517,[13646,8297],[13646,8298],[13582,8364],13646,13645,[13646,8361],8557,8490,8492,8556,8493,8492,8495,8492,8557,[8491,15437],[8556,15438],[8555,15439],8555,[8492,8378],[8491,8310,15053],[8493,8313,15054],[8493,8310,15055],[8490,8313,15056],[8491,8379],[14182,8380],14182,14182,[14182,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13800,8444],13800,13736,13800,13799,[13799,8245],[13799,8246],[13736,8249],[13799,8250],[13799,13149],13279,13277,13279,[13799,13406],13344,[13280,8308],8309,8373,0,0,8443,8698,[13800,8699],13735,13799,13800,13800,13800,[13800,8499],8500,0,0,0,8570,8571,[13799,8572],13800,13735,[13800,13213],[13799,13405,8499],8500,0,0,0,0,0,8443,[13800,8444],13799,13800,13800,13735,[13799,8435],8436,0,0,0,0,0,8378,8314,[13277,8315],13279,13344,13277,13342,[13800,13281],13799,13800,[13799,13148,8757],[13342,8760],[13343,8761],8628,8629,8565,0,0,0,0,8570,8571,8696,8697,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1286,3220],1286,1286,[1286,3275],3276,3277,0,0,0,0,3282,3534,3535,3536,3537,3277,0,0,3282,3342,3343,3346,3406,3407,3600,3601,3410,[1747,3411],1810,[1745,1539],[1745,1540],1734,[1799,3404],3405,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16724,16787,16659,16788,16788,16788,16660,16723,16787,16723,16788,[16788,17103],[16787,17105],[16788,17106],16723,16660,16659,16723,16659,16787,16788,16788,16723,16659,16724,16660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[423,477],487,[3777,424,348],[3777,412],413,[3777,351],[3777,537],[3777,351],[3777,539],[3777,357,540],421,487,484,[3777,228],[3777,294],3777,3777,3777,3777,3777,3777,3777,3777,[3777,547],421,484,[3777,228],485,423,486,[486,470],471,472,287,[486,342],[422,343],486,422,[423,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,3794,[1804,3795,1665],[1803,332,1666],464,[1803,337,3849],3720,3656,3657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[1571,477],1633,[1572,535],[1636,2078],[1633,539],[1635,540],1636,1571,1635,1636,1635,1635,1636,[1569,23],[1572,27],[1570,1737,27],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[2827,3284],2827,2764,[2826,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2828,3156],2764,2762,[2764,3339],3340,3406,3407,3341,3344,3345,3283,[2826,3284],2826,2828,2764,[2761,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[14182,8636],14182,14182,[14182,8627],8628,[14098,8629],[14033,8565],14034,14097,14099,14034,14033,14099,14096,14096,14097,14097,14033,14033,[14034,8443,11194],[14182,8444,11194],[14182,11194],[14182,11194],[14182,8692,11194],[8693,11194],[8490,8436,11194],[13582,8620],[13517,8621],[13646,8429],13581,13581,13517,[13646,8363],8492,8557,8556,[13645,8302],13646,[13581,8489],8490,8490,8554,8555,8491,8491,8492,8491,8493,[8492,15501],[8554,15502],[8491,15503],8556,8557,[8492,15117],[8556,15118],[8493,15119],[8554,15120],[8492,8443],[14182,8444],14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,8315],13800,13800,[13800,8308],8309,8310,8313,8314,[13342,8315],13280,[13800,13405],[13800,13409],13799,[13800,13213,8371],8372,8373,0,0,0,8507,[13799,8508],13800,13800,13799,13799,13735,[13800,8308],8309,8373,0,0,8570,8634,8635,[13799,8636],13800,13799,13800,[13800,8435],8436,0,0,0,0,0,8507,[13800,8508],13800,13800,13799,13800,[13735,8499],8500,0,0,0,0,0,0,8378,8379,[13343,8380],13280,13280,13280,[13799,13216],13800,13735,[13799,13212],13280,13277,[13343,8692],8693,8500,0,0,0,8570,8634,8635,[13799,13149,8760],[13277,8761],[13344,8758],[13277,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1351,3284],[1810,1352],[1810,1353],[1745,1354,3339],3340,3341,3536,3537,3532,3533,3346,3598,3599,3600,3601,3341,3342,3343,3346,3406,3407,3410,[1810,3470],[1798,3471],[1735,3664],[1735,3665],[1746,1736,3474],1745,1747,[1808,1795],1735,1798,1799,[1734,3469],[1734,3470],[1799,3471],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16724,16723,16724,16787,16787,16788,16787,16660,16788,16724,16787,[17167,17871],17168,17300,[16787,17105],[16660,17106],16660,16724,16788,16723,16787,16723,16723,16723,16788,16788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],423,422,[423,221],413,[3777,477],3777,3777,3777,3777,3777,[3777,547],[3777,548],421,486,[3777,296],3777,3777,3777,3777,3777,3777,661,3777,3777,[3777,483],486,423,420,[3777,548],[3777,549],[3777,551],[3777,552,535],[3777,536],[3777,351],406,[423,407],[423,343],422,423,[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1805,3604],[1741,1729],[1491,460,1730],463,[1804,465],[1805,3784],3720,3721,3657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[1633,222],1572,1635,1569,1569,1570,1569,1635,1571,1636,1635,1569,1570,[1571,86],87,88,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2827,3348],2826,2763,[2761,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2763,3220],2764,2826,2827,[2761,3469],[2763,3470],[2827,3471],3405,3408,3409,3347,[2762,3348],2763,2761,2761,[2762,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[14182,8699],14182,14182,14182,14182,[14182,8692],8628,[14097,8436],14034,14097,14032,14032,14034,14096,14098,14034,14033,14034,14096,14097,11258,11258,11258,11258,11258,11258,11258,13645,13646,13581,13517,[13517,8363],[13582,8298],8490,8493,8557,[13582,8621],[13581,8429],13581,[13646,8617],8557,8491,8491,8493,8555,8556,8490,8554,8491,8556,8491,8554,8554,8492,[8554,15181],[8556,15182],[8555,15183],[8490,15184],[8493,8507],[14182,8508],14182,[14182,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,8249],[13799,8246],8372,8373,0,0,8378,8379,[13800,13216,8380],13800,13800,13799,[13736,8435],8436,0,0,0,0,8378,8379,[13799,8380],13800,13800,13799,[13800,8371],8372,8373,0,0,0,8443,8698,[13799,8699],13800,13736,13735,13800,[13799,8499],8500,0,0,0,0,8570,8571,[13800,8572],13800,13799,13735,13800,[13735,8435],8436,0,0,0,0,0,0,0,8507,[13343,8508],13344,13280,[13799,13409],13800,13799,13799,[13736,13276],13341,13280,13277,[13341,8563],8564,8565,0,0,8507,8698,[13800,8699],[13735,13340],13279,13342,13342,[13343,8692],8693,8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1745,1606,3348],1744,[1745,1178],1745,[1810,1605,3404],3405,3600,3601,3596,3597,3410,[1735,3662],[1799,2058,3663],[1286,3664],[1286,3665],3405,3406,3407,3410,[1747,2058,3470],[1286,3471],[1809,2185,3474],[1811,1539,2121],[1798,2375],1735,1798,[1811,1800],1809,1746,[1810,1668],[1808,1860],[1808,1863],1734,1735,[1809,1862],1799,[1734,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16787,16788,16723,16660,16788,16788,16723,16660,16660,16659,16659,17167,[17169,17807],17169,17169,17170,16788,16787,16724,16660,16788,16723,16659,16660,16788,16724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16657,16785,16722,16785,16785,16786,16658,16785,16786,16657,16785,16785,16658,16785,16722,16722,18191,18192,18193,18194,16786,16721,16721,16722,16657,16658,16786,16786,16785,16657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[547,350],[3777,548],421,[422,285],[3777,286],3777,3777,3777,3777,3777,3777,3777,3777,[3777,356],421,[3777,360],[3777,227],[3777,228,149],[3777,24],[3777,27],[3777,158],3777,3777,3777,[3777,292],485,487,420,[3777,359],661,3777,3777,3777,3777,101,[3777,470],406,[422,278],487,423,[422,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1741,3027],[1739,397],463,525,[1739,336],[1427,3784,1665],[3785,1666],3528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1633,286],1636,1634,1633,1633,1569,1569,1636,1635,1572,1634,1569,[1634,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2764,3411],2826,2764,2762,[2761,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2825,3027],2762,2826,2828,2828,2825,[2825,3469],[2762,3472],[2762,3473],[2827,3411],2762,2763,2828,2826,2826,[2825,3404],3405,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,14182,14182,14182,[14182,8435],[14032,8436],14032,14034,14098,14098,14099,14032,14099,14032,14034,14033,14099,14033,11322,11322,11322,11322,11322,11322,11322,[13582,8363],[13582,8299],[13645,8300],[13581,8301],8491,8493,8556,[13517,8621],[13581,8428],13645,13582,13517,13645,[13646,8553],8554,[8555,9842],[8490,9843],[8554,9844],8493,8493,[13645,8619],[13517,8620],[13646,8621],8490,8556,8557,8556,[8490,15245],[8492,15246],[8492,15247],[8492,8570,15248],[8555,8571],[14182,8572],14182,[14182,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,8443,[13799,8444],13800,13735,13799,[13800,8499],8500,0,0,0,0,0,8443,[13799,8444],13800,13800,13799,[13800,8499],8500,0,0,0,0,8507,[13799,8508],13799,13800,13799,13799,[13799,8308],8309,8373,0,0,0,8570,8634,8635,[13277,8636],[13800,13085],[13800,13151],13800,13735,[13800,8499],8500,0,0,0,0,0,0,8570,8571,[13342,8572],13344,[13799,13215],13799,13799,13799,13799,[13800,13404],[13799,13405],13342,13280,[13341,8627],8628,8629,8630,8631,8634,[13799,8572],13799,[13799,13404],13277,13344,13278,13343,[13278,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1735,3411],[1810,1608],1810,[1810,1604],[1808,1540],1798,[1735,3469],[1735,3664],[1798,3665],[1798,3660],[1798,3661],[1799,3474],1798,[1735,2122],1286,1286,[1798,1992,3469],[1735,3470],[1798,3471],[1746,1672,3474],[1808,2122],1286,1286,1286,[1798,2056],[1734,1178],1735,1798,[1744,1606],1809,1745,1810,1744,[1745,1669],[1810,1670],1809,[1811,1668],[1745,1860],[1861,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,16660,16660,16659,16723,16724,16788,16660,16659,16723,16660,16787,17231,17232,17233,17233,[17234,17743],16659,16659,16787,16723,16723,16724,16724,16724,16723,16724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16658,16721,16786,16786,16785,16786,16658,16785,16657,16785,16722,16658,16786,16785,16785,16722,[16658,18255],18256,18257,[16785,18258],16786,16722,16786,16786,16658,16721,16785,16658,16722,16785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[3777,414],3777,[3777,291,348],[487,349],[3777,350],3777,3777,3777,3777,3777,3777,3777,3777,3777,[3777,291],[3777,424],[3777,291,86],[1300,87],[1363,91],[1299,88],[1300,92],[3777,27],[3777,24],[3777,228,93],485,420,[3777,548],[3777,552],3777,3777,3777,3777,3777,3777,3777,3777,[3777,341],[487,342],[486,343],487,[422,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,3092],[1804,397,1665],[527,1666],[1427,337],[1803,1729],[1804,3527,1730],3528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[1571,286],1636,1572,1633,1635,1572,1569,1569,1570,1636,1633,1572,[1570,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2764,3156],2764,2825,2826,[2825,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2763,3092],2827,2761,2763,2827,2762,2825,2761,2764,2828,2763,2826,2763,2763,2761,[2827,3469],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[14182,8380],14182,14182,14182,14182,14182,[14182,8563],[14098,8564],[14035,8565],14801,14033,14035,14035,14098,14096,14098,14609,14096,14034,[14099,8570],[8571,11386],[14182,8572,11386],[14182,11386],[14182,11386],[14182,11386],[14182,8435,11386],[8493,8436,11386],8491,8490,8490,8555,8556,[13517,8621],[13582,8622],13581,13581,[13645,8362],[13646,8298],[13646,8302],13517,[13646,8427],8556,[8557,9906],[8554,9907],[8491,9908],8492,[13517,8428],13646,13517,13517,[13646,8553],8555,8557,8495,8554,8554,[8491,8570],[8554,8634],8635,[14182,8636],14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13800,8508],13735,13800,13736,[13800,8435],8436,0,0,0,0,0,8507,[13799,8508],13800,13800,[13800,13149],[13280,8563],8564,8565,0,0,8570,8571,[13799,13088,8572],[13800,13089],13799,13799,[13799,8371],8372,8373,0,0,0,0,8443,8698,[13277,8699],13277,13341,13277,[13800,13152],[13799,8308],8309,8373,0,0,0,8570,8630,8631,8634,8635,[13800,13340,8636],[13799,13345],13800,13799,13799,13800,13736,13800,13735,[13799,13213],[13799,13405],[13799,13406],[13799,13407,8692],8693,8694,8695,8698,[13799,8636],13800,13799,[13799,13213],13342,13282,13278,[13277,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1799,3156],1735,[1811,1736],1745,[1744,1795],1735,1734,1798,1799,1799,1798,[1747,1670],[1808,1668],1799,[1798,2122],1286,1286,[1735,2056],1798,1734,[1811,1736],[1808,2122],1286,1286,1286,[1734,2120],1798,1799,1798,1734,[1810,1543],[1744,1540],[1744,1606,2957],[1746,2958],[1808,2962],1747,1747,1745,[1746,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16788,16660,16659,16659,16788,16660,16723,16659,16788,16660,16659,16723,16724,16788,16724,16788,16659,16659,16787,16788,16787,16788,16723,16788,16788,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16657,16658,16722,16721,16658,16786,16785,16786,16722,16785,16786,16657,16786,16786,16657,16785,[16786,18319],18320,18321,[16722,18322],16657,16658,16721,16657,16785,16785,16657,16722,16722,16721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[484,477],[3777,294],[3777,348],[3777,412],413,[3777,296,414],3777,3777,661,3777,3777,3777,3777,3777,[3777,23],[3777,355,27],[488,27],[1363,150],[1363,151],1299,1935,[1299,156],[1300,88],[1363,91],[1364,157],[486,24],[3777,358,28],3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,[3777,405],406,[487,407],[422,343],486,[486,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,[1740,3540],[1805,1729],[1739,524,1730],[1804,465],[1804,1665],[1427,3591,1666],3592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[1635,93],1636,1636,1636,1633,1636,[1634,23],[1636,27],[1571,24],[1570,28],1569,[1571,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2762,3220],2827,2828,[2828,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3912,[2764,3913],2763,2762,2827,2762,2763,2826,2826,[2764,2957],[2763,2958],[2826,2961],[2763,2958],[2763,2961],[2764,2962],2762,2764,[2761,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,14184,14182,14182,[14182,8627],8628,[14097,8629],[14096,8630],[14097,8631],[14033,8565],14032,14033,14098,14032,[14096,8570],[14033,8632],[14035,8633],[14098,8634],8635,[14182,8636],14182,14182,14182,[14182,8499],[8556,8500],[8557,14539],8490,8491,8492,[13582,8429],13581,13582,13582,[13646,8362],8556,8492,[13645,8558],13645,13582,[13646,8361],8492,8492,8493,[13581,8622],13645,13517,[13517,8362],[13582,8298],8554,8493,8555,8493,8556,[8554,8570],[8557,8634],8698,[14182,8699],14182,14182,[14182,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[13278,8572],[13800,13152],13800,13735,[13799,8499],8500,0,0,0,0,0,8443,[13085,8444],[13735,13152],[13800,13150],13342,[13341,8627],8628,8629,8632,8633,8634,8635,[13279,8636],[13799,13153],13800,13799,[13800,8435],8436,0,0,0,0,0,8507,[13279,8508],13279,13277,13344,13344,[13278,8371],8372,8373,0,0,0,8570,8571,8694,8695,8698,[13800,8699],[13799,13213],[13800,13409],13799,13736,13799,13799,13799,13735,13800,13799,13800,13800,13800,[13800,8757],[13800,8758],[13800,8759],[13800,8762],13800,13799,13800,13800,[13736,13148],13341,13277,13279,[13342,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1735,3220],1734,[1809,1864],1744,[1809,1668],1734,1798,1735,1734,1735,[1811,1671],1810,1811,[1809,1795],[1734,2058],1286,1286,[1735,2120],1734,1798,[1744,1800],[1809,1178],[1745,1994],1286,1286,[1735,2184,2957],[1734,2958],[1798,2961],[1734,2962],1798,1799,[1735,3020],3021,3022,3026,[1744,2961],[1809,2958],[1746,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16660,16724,16787,16788,16660,16724,16723,16724,16788,16787,16788,16723,16723,16660,16788,16724,16659,16788,16787,16723,16723,16723,16724,16724,16787,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16721,16722,16721,16722,16785,16785,16785,16657,16785,16657,16785,16658,16658,16658,16722,16785,[16721,18383],[16657,18384],[16657,18385],[16721,18386],16722,16722,16786,16657,16786,16721,16722,16658,16786,16657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[487,286],423,484,[3777,228,221],413,[486,477],[3777,360],3777,3777,3777,3777,3777,3777,3777,[3777,86],[1299,87],[1363,88],[1300,91],[1363,151],1363,1300,1300,1299,1363,1363,[1364,156],[1299,91],[1299,92],[3777,93],3777,3777,3777,3777,3777,3777,3777,3777,3777,3777,[3777,470],406,[422,214],486,423,[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1804,3604],[1427,3996],[1741,332,3997],[1739,337],[1803,1729],[1803,3591,1730],3592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[1572,24],[1572,27],[1633,158],1635,[1635,86],87,88,91,92,[1570,24],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2761,3156],2828,2828,[2764,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3976,[2763,3977],2826,2826,2825,[2763,2957],[2825,2958],[2826,2958],[2763,2961],3021,3022,3025,3022,3025,3026,[2826,3092],2828,[2828,3468],[2761,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,14182,14182,14182,[14182,8692],8693,8694,8695,[14096,8629],[14034,8630,12303],12304,12305,[14033,8633,12306],[14033,8634],8696,8697,8698,[14182,8699],14182,14182,[14182,13159],[14182,8308],[8554,8309],[8492,8373],8557,8492,8492,[13581,8429],[13582,14925],[13581,14926],[13581,8362,14927],[13517,8298,14928],8492,8556,8554,8492,[13646,8364],13581,[13517,8425],8556,8554,[13646,8558],13646,13581,[13581,8297],8492,8492,8492,8490,8557,8490,8491,[8492,8507],8698,[14182,8699],14182,14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13277,8636],13280,[13800,13152],13799,[13736,8563],8564,8565,0,0,0,0,8507,[13343,8508],13279,13341,13280,13341,[13278,8692],8693,8696,8697,8698,[13280,8699],13343,[13800,13217],13799,13799,[13800,8499],8500,0,0,0,0,8570,8571,[13278,8572],13277,13342,13277,13280,[13279,8499],8500,0,0,0,8570,8634,8635,[13800,8758],[13799,8759],[13799,8762],13799,13799,13799,13799,13800,13799,13800,13799,[13799,8245],[13799,8246],[13799,8250],13800,13799,13799,13800,13736,13736,13799,13799,13800,13799,13800,[13800,13276],13341,13344,13342,13341,[13344,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1735,3027],[1744,1607],1809,1811,[1746,1668],1734,1735,1798,[1810,1800],1809,[1810,2957],[1747,2958],[1795,2961],[1744,1670,2122,2962],1286,[1809,1668,1992],[1809,1862],[1809,1863],[1746,1864],1808,1811,1747,[1810,1993],[1745,1668,1994,3020],3021,3022,3025,3026,[1798,2958],[1798,2961],3084,3085,0,3090,3025,3022,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12748,12749,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16850,16849,16849,16850,16849,16849,16850,16850,16850,16850,16849,16850,16850,16850,16849,16850,16849,16849,16849,16849,16849,16850,16850,16849,16850,16850,16849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16850,16850,16849,16849,16850,16849,16850,16849,16849,16849,16849,16849,16850,16849,16849,16850,16661,16661,16661,16661,16849,16850,16850,16850,16850,16850,16850,16850,16850,16849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,158],423,[422,285],[486,286],422,[3777,424],3777,3777,3777,3777,3777,3777,[3777,149],[1299,150],[1300,151],2127,2128,1364,1363,1299,[1299,2821],[1364,2822],[1364,2823],1300,1363,1363,[1299,156],[1364,157],[3777,27],[3777,231,28],[3777,232],3777,3777,3777,661,3777,3777,3777,3777,[3777,277],[486,278],487,[423,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,[1803,3540],[1803,4060],[1740,460,4061],[1805,401],[1803,1665],[1427,3655,1666],3656,3657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,88,92,[1569,24],150,151,0,0,156,91,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2761,3220],2828,2826,[2764,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4040,[2764,4041],2762,2828,[2764,3083],3084,3022,3022,3025,3085,0,0,0,0,3155,[2762,3156],2825,2825,[2826,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,14182,14182,14182,14182,[14182,8757],[14182,8758],[14182,8759],8693,[8694,12303],12304,12305,[8697,12306],8698,[14182,8760],[14182,8761],[14182,8762],14182,14182,14182,[14182,8371],[8492,8372],[8491,8373],8491,8556,[13581,8621],[13646,8622],13582,[13646,14989],[13517,8363,14990],[8492,14991],[8556,14992],8554,8490,8490,8555,8557,[13582,8365],[13581,8489],8493,8556,[13646,8429],13581,[13646,8363],8491,8490,8556,8556,8554,8491,8554,[8492,8570],[8556,8571],[14182,8572],14182,14182,14182,[14182,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13800,13213,8699],13343,13344,13278,[13800,13089],[13799,8627],8628,8629,8630,8631,8632,8633,8571,[13277,8572],13277,13279,13342,13343,[13800,13216],[13735,8757],[13800,8760],[13800,8761],[13799,13276,8762],13341,13341,[13800,13281],13800,13800,[13800,8563],8629,8630,8631,8632,8633,8634,8635,[13800,8636],[13800,13148],13343,13342,[13344,8371],8372,8373,0,0,0,8443,8698,[13735,8699],13800,13799,13799,13799,13799,13799,13800,13799,13800,13799,[13800,8308],8309,8310,8314,[13799,8315],13800,13800,13799,13800,13799,13799,13800,13735,13799,[13799,13150],13279,13280,13278,13279,[13278,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1747,1800,2961],[1746,2958],[1747,2962],1745,[1745,1859],[1810,1860],[1810,1861],[1808,1670],[1810,3020],3021,3022,3025,3026,[1286,3027],[1809,2184],[1747,2121],[1745,2375],1810,[1745,1539],[1744,1606],1747,[1746,3083],3084,3085,0,0,3090,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12812,12813,12810,12811,12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16914,16913,16914,16913,16913,16914,16913,16914,16913,16913,16913,16914,16913,16913,16913,16914,16914,16913,16913,16913,16914,16913,16913,16913,16913,16914,16914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16913,16913,16914,16913,16913,16913,16913,16914,16913,16914,16914,16914,16914,16914,16914,16914,16725,16725,16725,16725,16913,16914,16913,16914,16913,16914,16914,16913,16914,16913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[487,222],486,[486,156],[486,92],[486,93],[3777,488],3777,3777,3777,3777,3777,[3777,227],[228,277],[1300,278],1299,2191,2192,1299,1364,1364,[1299,2885],[1299,2886],[1363,2887],1299,1299,1999,1363,[1363,156],[1299,91],[1300,92],[3777,296,93],3777,3777,3777,3777,3777,3777,3777,[3777,86],[3777,87],[3777,547,151],[3777,548,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1741,3604],[1805,1665],[1427,332,1666],[1739,465],[1428,1729],[1804,3719,1730],3720,3721,3657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2763,3220],2826,2828,[2762,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[2828,3284],2827,2828,[2761,3211],3212,0,0,0,0,0,0,0,0,3219,[2827,3220],2761,2826,[2761,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[14182,8572],14182,14182,14182,14182,14182,14182,14184,14182,14182,14182,[14182,8757],[14182,8758,12303],12304,12305,[14182,8761,12306],[14182,8762],14182,14182,14182,14182,14184,14182,[14182,8435],[8493,8436],8490,8554,[13582,8366],13645,13645,[13582,8297],[13646,8298,15053],[8492,15054],[8493,15055],[8556,15056],8555,8303,8554,8492,8557,[13645,8558],[13582,8426],8554,[13582,8558],13645,[13581,8362],8491,8493,8493,[8555,8570],[8556,8630],[8557,8631],[8555,8632],[8555,8633],[8557,8634],8635,[14182,8636],14182,14182,[14182,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13799,8508],13799,[13800,13404],[13736,13405],13279,13344,[13800,13151],[13735,13150,8692],8693,8694,8695,8696,8697,8635,[13799,13407,8636],[13800,13405],13344,13280,[13800,13215],13800,13736,13800,13799,[13735,13340],13280,13277,[13799,13345],13800,[13799,13149],[13277,8627],8693,8694,8695,8696,8697,8698,[13800,8699],13800,[13800,13212],13277,13343,[13278,8435],8436,0,0,0,0,8507,[13799,8508],13799,13735,13799,13800,13799,13799,13800,13800,13799,[13800,8245],[13799,8246],8372,8373,0,8378,8314,[13799,8315],13800,13799,13800,13799,13799,13735,[13800,13149],[13799,13085],13341,13341,13342,13279,[13278,8308],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3026,[1809,3027],1744,1746,1745,[1747,3083],3084,3085,0,0,3090,3091,[1286,2961],[1286,2958],[1808,2056,2962],[1745,1604],1799,1799,[1811,1540],[1540,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13576,12876],[13640,12877],[13641,12874],[13576,12875],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16978,16978,0,16978,0,0,0,0,16978,0,0,0,16978,0,0,0,0,16978,0,0,0,16978,0,0,16978,0,16978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16719,16783,16720,16720,16720,16784,16784,16656,16719,16783,16720,16719,16655,16784,16655,16784,16783,16655,16783,16719,16655,16720,16656,16784,16719,16720,16783,16783,16783,16656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[487,286],486,486,[487,156],[486,157],[3777,296,158],3777,3777,3777,3777,3777,[3777,291,149],[1363,150],[1363,151],1299,1364,1299,1299,1300,1300,1299,1299,1300,1300,1364,1299,1300,1364,1363,[1364,285],[3777,286],3777,3777,3777,3777,3777,3777,[3777,149],[3777,150],[3777,151],3777,[3777,277],278,0,0,0,348,408,409,343,0,0,0,0,0,0,0,0,348,408,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3666,3667,[1804,3668],[1427,1729],[1428,460,1730],463,[1805,335],1805,[1741,3784],3785,3528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[2828,3284],2761,2762,[2761,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2825,3348],2826,2762,[2763,3275],3276,3277,0,0,0,0,0,0,3282,3283,[2763,3284],2828,2762,[2764,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[14182,8636],14182,14182,[14182,13287],[14182,13288],14182,14182,14182,14182,[14182,13157],[14182,13158],14182,[14182,12303],12304,12305,[14182,12306],14182,14182,14182,14182,14182,14182,[14182,8308],[8492,8309],[8557,8373],8557,8556,[13581,8430],13646,[13646,8362],8495,[8556,15117],[8554,15118],[8490,15119],[8555,15120],8557,8556,8492,8555,8490,[13582,8622],13645,[13517,8427],[13581,8622],13581,[13646,8361],8557,8490,[8557,8570],[8492,8571],8694,8695,8696,8697,8698,[14182,8699],14182,14184,14182,[14182,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13799,8444],13735,13799,13799,[13799,13340],13341,13344,13344,[13344,8757],[13736,8758],[13800,8759],[13800,8760],[13799,8761],[13735,8699],13736,13736,[13799,13148],13277,[13799,13152],13799,13736,13800,13799,[13799,13213],13277,13344,13344,[13735,13085],13277,13277,[13799,13216,8757],[13799,8758],[13799,8759],[13735,8760],[13800,8761],[13800,8762],13800,13800,[13800,13276],13280,13278,[13280,8499],8500,0,0,0,0,8507,[13800,8508],13799,13800,13799,13800,13799,13800,13799,13800,[13799,8308],8309,8310,8373,0,0,0,8378,8379,[13735,8249],[13800,8250],13800,[13800,8308],[13799,8246],[13799,13150,8250],13344,13344,13154,13344,[13343,8245],[13280,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1809,3092],1744,[1811,1539],[1798,3147],3148,0,0,0,0,3090,3025,3022,3026,[1810,1795,3027],1798,1734,1735,[1799,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13640,13588,12815],13640,13512,13512,13576,[13641,12808],12809,12552,0,0,0,0,0,12686,12746,12747,12746,12747,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16784,16655,16656,16783,16720,16720,16783,16720,16656,16719,16784,16656,16655,16783,16720,16784,16784,16784,16783,16720,16719,16783,16655,16655,16655,16784,16719,16720,16783,16784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[422,222],423,423,423,[487,221],[3777,222],3777,597,3777,3777,3777,[3777,213],[1364,214],1300,1935,1300,1363,1299,1299,1299,1363,1364,1299,1300,1363,1299,1364,1300,[1363,348],[1364,349],[3777,350],3777,3777,3777,3777,3777,3777,[3777,213],[3777,214],3777,[3777,227],[422,341],342,343,0,348,349,472,473,342,343,0,0,0,0,0,0,348,349,280,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,3731,[1739,3732],1427,[1740,524],462,528,[1805,273],1427,[1740,3527],3528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2762,3348],2761,2828,2827,[2825,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2762,3411],2827,2828,2763,[2826,3339],3340,3341,3342,3343,3342,3343,3344,3345,3346,3347,[2763,3348],2764,2764,[2764,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[14182,8699],14182,14182,14182,[14182,13351],[14182,13352],14182,[14182,14929],[14182,14930],[14182,14931],[14182,14932,13221],[14182,13222],14182,[14182,12303],12304,12305,[14182,12306],14183,14182,14182,14182,14182,[14182,8308],[8554,8309],[8555,8373],8490,8491,8491,[13645,8494],13517,[13517,8553],8492,[8490,15181],[8556,15182],[8557,15183],[8490,15184],8492,8491,8554,8493,8556,[13645,8364],[13581,8297],[13517,8365],13517,13646,[13646,8425],8557,[8490,8570],[8555,8634],8635,[14182,8758],[14182,8759],[14182,8760],[14182,8761],[14182,8762],14182,14182,14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13800,8508],13735,13799,13799,[13736,13148],13278,13342,13344,[13799,13216],13799,13800,13800,13800,13800,13800,13800,[13799,13276,8245],[13278,8249],[13345,8246],[13800,8250],13799,13799,13800,13799,[13800,13214],13343,13278,13341,13279,[13799,13409],13800,13800,13800,13800,13735,13799,13736,13799,[13735,13340],13341,13279,[13405,8435],8436,0,0,0,8570,8571,[13799,8572],13799,13800,13799,13800,13799,13800,13735,[13800,8371],8372,8373,0,0,0,0,0,0,8378,8313,8314,[13800,8246],8372,8310,8314,[13344,8315],13280,13344,[13343,8308],8309,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1811,3156],[1809,1178],[1744,1603],[1735,3211],3212,0,0,0,0,0,0,0,3090,3091,[1798,3092],1798,1734,[1798,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13587,12624],[13640,13652],13640,13641,13640,13640,13512,[13640,12615],12616,0,0,0,0,12686,12687,12810,12811,12810,12811,12810,12811,12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16656,16784,16783,16656,16656,16783,16655,16655,16784,16719,16784,16784,16784,16719,16720,16656,16720,16655,16784,16720,16655,16784,16719,16656,16719,16656,16783,16719,16655,16719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[422,286],423,487,487,[423,285],[3777,286],3777,3777,3777,3777,3777,[3777,277],[1363,278],1364,1300,1363,1299,1364,1300,1300,1300,1300,1300,1363,1363,1299,1363,[1364,348],[1363,412],413,[3777,414],3777,3777,[3777,23],[3777,24],[3777,24],[3777,24],[3777,87],[3777,151],597,[3777,483,1129],[487,405,1130],406,407,408,412,413,[3777,536],[3777,537],406,407,408,409,410,411,410,411,412,413,[423,536],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3539,[1739,3540],1805,[1739,333],464,464,525,[1492,593],1803,[1739,3591],3592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2827,3411],2827,2762,2826,2828,2761,[2827,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2762,3220],2762,2826,2825,2828,2826,[2826,3404],3405,3406,3407,3406,3407,3408,3409,3410,[2826,3411],2826,2825,2827,[2762,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14184,14182,14182,14182,14182,14182,[14182,8245,14993],[14182,8246,14994],[14182,8249,14995],[14182,8250,14996],14182,14183,[14182,12303],12304,12305,[14182,12306],14182,[14182,8245],[14182,8246],[14182,8249],[14182,8246],[8493,8372],[8490,8373],8491,8557,8555,8554,[13645,8558],13646,[13645,8361],8490,[8492,15245],[8491,15246],[8557,15247],[8556,15248],8491,8493,8554,8556,8493,8492,8557,[13581,8366],13581,13646,[13646,8489],8493,[8493,8507],8698,[14182,8699],14182,14182,14182,14182,14182,14182,14182,14182,[14182,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,8315],13800,13800,[13800,13276],13344,13278,[13800,13345],13799,13800,13800,13800,13799,13800,13800,[13799,8308],8309,8313,8310,8314,[13800,8315],13800,13799,13799,[13799,13150],13341,13280,13280,[13799,13216],13799,13799,13800,13800,13800,13800,13799,[13800,13149],[13800,13085],13279,13279,[13800,13216],[13799,8499],8500,0,0,8570,8634,8635,[13800,13087,8636],[13800,13088],[13799,13089],13800,13800,13735,13799,13735,[13799,8499],8500,0,0,0,0,0,0,0,0,0,8378,8310,8373,0,8378,8379,[13279,8246],[13278,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2185,3156],[1808,2121],[1745,1731,2375],[1799,3275],3276,3277,0,0,0,0,0,0,0,3155,[1798,3156],1734,[1735,1178],[1799,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13649,12688],13587,[13641,13459],13512,13640,13640,[13512,12424],12425,12489,0,0,0,12686,12750,12751,[13649,12874],[13649,12875],[13587,12874],[13641,13588,12875],[13512,12874],[13641,12875],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8820,8821,8511,8631,8824,8825,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16784,16719,16784,16655,16719,16784,16656,16720,16720,16783,16655,16655,16720,16720,16784,16719,16720,16784,16656,16655,16783,16783,16655,16783,16656,16719,16656,16720,16655,16784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[486,93],422,486,[423,156],[486,92],[3777,93],3777,3777,3777,3777,[3777,341],[1299,342],[1299,343],1299,1363,1363,1363,1363,1364,1364,1363,1300,1300,1363,1364,1364,[1300,221],413,[3777,294,477],3777,3777,[3777,149],[423,150],[422,91],[487,91],[423,88],[3777,295,151],3777,[3777,292],[485,1193],[423,1194],[423,470],471,280,476,[3777,477],3777,3777,[3777,470],471,472,473,474,475,474,475,476,[486,477,1129],[487,1130],[487,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3603,[1805,3604],1803,[1428,398,3996],[1427,589,3997],[1739,590,3996],[1741,399,3997],[1804,3996],[1739,3997],[1740,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2826,3220],2825,2764,2827,2826,2761,2761,[2825,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2828,3027],2827,2762,2825,2761,2763,[2763,3469],[2828,3470],[2827,3471],[2825,3470],[2763,3471],[2761,3472],[2828,3473],[2828,3474],2764,2762,2828,[2826,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[14182,8380],14182,14182,14182,14182,14182,[14182,8371],[8556,8309,15057],[8557,8310,15058],[8491,8313,15059],[8555,8314,15060],[14182,8315],14182,[14182,8245,12303],12304,12305,[14182,8246,12306],[14182,8249],[8555,8309],[8556,8310],[8493,8313],[8556,8310],[8493,8373],8557,8556,8557,8491,8492,[13646,8366],13581,[13582,8425],8554,8555,8303,8493,8554,8493,8490,[8490,8570],[8493,8631],[8491,8632],[8491,8633],[8555,8565],[13517,8494],13646,13517,[13581,8553],[8556,8570],[8491,8571],[14182,8572],14182,14182,14182,14182,14182,14182,[14182,8245],[14182,8246],[14182,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13799,8246],[13800,8249],[13278,8250],13280,[13799,13405],[13800,13409],13799,13736,13799,13799,13799,[13799,8245],[13800,8246],8372,8373,0,0,8378,8379,[13799,8380],13736,13799,[13799,13404],13344,13341,13344,[13800,13151],13799,[13799,8245],[13800,8246],[13800,8249],[13799,8250],[13800,13149],[13799,13085],13341,13278,13342,[13800,13345],[13800,8371],8372,8373,0,0,8443,8698,[13342,8699],13278,13343,[13799,13345],13799,13800,13799,13799,13799,[13800,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1286,3220],1286,[1745,1795,2120],[1799,2122,3339],3340,3341,3342,3343,3342,3277,0,0,3282,3283,[1287,3284],[1734,1288],[1798,1289],[1734,1290],[1734,1291,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13648,12752],13586,13649,[13641,13392],[13512,13459,12361],[13640,12362],12488,12489,0,0,0,0,12623,12814,[13512,13712,12815],[13512,13713],13584,13648,[13512,13652],13512,13576,[13512,12808],12809,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8634,8884,8885,8575,8695,8888,8889,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16784,16720,16720,16783,16784,16656,16720,16783,16783,16719,16784,16656,16720,16720,16783,16720,16720,16719,16655,16656,16784,16783,16655,16719,16655,16783,16783,16784,16784,16719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,158],486,486,[487,156],[487,157],[3777,158],3777,3777,3777,[3777,483,405],406,[2012,407],[1299,343],1363,1364,1299,1300,1299,1299,1364,1299,1300,1299,1363,1299,[1300,156],[1300,92],[3777,358,93],597,3777,[3777,277],[422,278],422,486,423,484,[3777,228],485,423,486,486,[487,535],[486,536],[484,540],[3777,294],3777,[3777,293],[3777,228],[485,535],[423,536],[423,537],[486,538],[423,539],[423,538],[487,539],[486,540],[487,1193],[486,1194],487,[486,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1740,3027],[1805,4060],[1804,4061],[1740,4060],[1804,4061],[1739,4060],[1805,3020,4061],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3282,653],[3342,654],[3343,655],[3277,656],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2825,3027],2763,2763,2761,2762,[2825,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2826,2961],[2828,2962],2761,2763,2828,2762,2762,2761,2762,2764,2763,2827,2763,2761,[2827,2957],[2763,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,14182,14182,14182,[14182,8435],[8554,8436,15121],[8555,15122],[8556,15123],[8556,8378,15124],[8556,8379],[14182,8246],[8309,12303],12304,12305,[8492,8310,12306],[8555,8313],[8304,8373],8555,8557,8557,8303,8554,8493,8490,8493,8557,[13582,8494],13581,[13581,8489],8557,8491,8556,8555,8305,8491,[8493,8570],[8492,8571],8502,8696,8697,[8491,8629],[8555,8630,12296],12297,12298,[8491,8633,12299],[8555,8634],8635,[14182,8636],14182,14182,14182,14182,14182,[14182,8308],8309,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8314,[13799,13215,8315],13799,13799,13800,13799,[13799,8245],[13800,8249],[13799,8246],8309,8310,8373,0,0,0,0,8443,[13799,8444],13800,13800,13800,[13800,13214],13280,13343,13277,[13799,13151,8308],8309,8310,8313,8314,[13344,8315],13277,13341,13344,13341,[13799,13345],[13799,8435],8436,0,0,0,8507,[13344,8508],13279,13279,13344,[13799,13409],13799,13800,13799,13800,[13736,13150],[13342,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1286,3156],1286,[1809,1669,2184],[1734,2186],[1286,3404],3405,3406,3407,3214,3341,3344,3345,3346,3347,[1734,1479,3348],[1734,1480],[1735,1481],[1798,1482],[1798,1483],[1351,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13640,13520,12815],13584,13584,13649,[13651,12424],12425,12426,12489,0,0,12686,12746,12747,12687,[13640,12688],13640,13640,[13641,13520],13587,3983,3984,13640,13512,[13640,13456,12873],12809,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8698,[13156,8948],[13155,8949],[13280,8639],[13218,8759],[13156,8952],[13218,8953],8693,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16847,16720,16720,16656,16719,16655,16655,16784,16655,16655,16656,16656,16655,16784,16719,16656,16720,16719,16784,16655,16719,16720,16784,16783,16655,16719,16655,16656,16720,16656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[486,286],423,423,422,[487,221],[3777,222],3777,3777,3777,[3777,547],[3777,548,470],406,[1363,214],1363,1299,1363,1300,1299,1300,1300,1364,1363,1299,1300,1363,1300,[1363,156],[1948,157],[3777,158],3777,[3777,341],[487,407],[423,408],[422,409],[487,343],487,423,422,423,486,423,487,423,487,484,[3777,228],485,422,487,487,487,422,486,486,423,486,486,486,422,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1427,2961],[1803,2958],[1804,2961],[1739,2958],[1739,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3344,3345,[3346,717],[3406,718],[3407,719],[3276,720],3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2827,2958],[2827,2961],[2827,2958],[2761,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3026,[2828,3027],2761,2761,2761,2761,2826,2827,[2764,2957],[2761,2958],[2761,2961],[2763,2961],[2827,2958],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,14182,14182,[14182,8499],[8556,8500,15185],[8496,15186],[8497,15187],[8490,15188],[8493,8378],[8493,8310],[8554,8373],[13517,8365],13517,[13582,8361],8556,8490,8492,8557,8495,8554,8556,8491,8554,8491,8555,[13646,8429],13645,[13517,8553],8554,8493,8493,8555,8491,[8554,8570],[8555,8634],8635,[14182,8759],[14182,8760],[14182,8761],8693,[8694,12296],12297,12298,[8697,12299],8698,[14182,8699],14182,14182,14184,14182,14182,[14182,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,8380],13800,13800,[13800,8371],8309,8313,8310,8373,0,0,0,0,0,0,8507,[13800,8508],13799,13800,13800,[13736,13149],[13277,8245],[13277,8249],[13278,8246],8372,8373,0,0,8378,8379,[13342,8380],[13799,13215],[13799,13213],[13799,13405],[13799,13409],[13800,8499],8500,0,0,0,8378,8314,[13278,8315],13280,[13800,13216],13799,13799,13736,13799,13799,[13800,13148],13279,[13277,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1286,3027],1286,1286,1286,[1735,1992,3469],[1735,3470],[1798,3471],[1735,3470],3405,3408,3409,3410,[1808,1860,3411],1734,1799,[1799,1178],1734,1735,[1734,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13640,12624],13512,[13640,13711],13587,[13649,12487],12488,12489,0,0,0,12686,12687,12810,12811,12751,[13641,12752],13512,13512,13512,[13641,13520],[13641,13458,4047],[13513,4048],[13512,13456],[13641,13392],13587,[13651,12873],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13219,8758],[13220,8759],[13156,8762],13092,13342,13092,13280,13277,13278,[13156,8757],[13279,8758],[13279,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16911,16719,16656,16719,16784,16720,16720,16655,16784,16783,16656,16720,16656,16720,16720,16720,16719,16661,16661,16719,16655,16784,16720,16720,16783,16784,16784,16655,16656,16783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[422,350],422,487,486,[423,285],[3777,286],3777,3777,3777,3777,3777,[3777,277],[1948,278],1363,1299,1300,1364,1364,1299,1363,1300,1299,1299,1363,1300,1364,1300,[1299,285],[3777,286],3777,[3777,405],471,472,473,[487,407],[487,343],487,486,423,[422,23],[423,27],[422,24],[423,28],423,423,423,486,423,422,423,423,486,486,423,423,487,487,423,422,[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3025,3022,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3408,3409,[3410,781],[525,3470,782],[463,3471,783],[3340,784],3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2763,3027],2761,2827,2762,2764,[2827,3020],3021,3022,3025,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[14182,8315],14182,14182,14182,14182,[14182,8435],[8554,8436],[8560,15250],[8561,15251],8493,8492,8491,8555,[13581,8558],13582,[13517,8489],8491,8557,8492,8490,8555,8556,8493,8556,8554,8556,[13581,8558],13582,[13646,8363],8490,8491,8491,8493,8492,[8554,8570],[8557,8571],8698,[14182,8699],14182,14182,14182,[14182,8757],[14182,8758,12296],12297,12298,[14182,8761,12299],[14182,8762],14182,14182,14182,14182,14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13800,13085,8444],[13735,13086],[13800,13087],[13799,13088,8435],8436,0,0,0,0,0,0,0,0,0,8378,8314,[13799,8315],13800,13800,[13800,13340,8308],8309,8313,8310,8373,0,0,0,0,8443,[13799,8444],13799,13799,13800,13799,[13800,8435],8436,0,0,0,0,8378,8379,[13799,13215,8380],13800,13799,13799,13799,13735,13736,[13800,13212],13154,13343,[13341,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1286,2958],[1286,2962],1286,[1734,2056],[1734,1178],1798,1799,[1810,1608,3469],[1811,3472],[1809,3473],[1811,3474],1745,[1746,1668],[1810,1863],1798,1798,[1799,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13512,12560],13512,13641,[13641,13520],[13712,12551],12552,0,0,0,12686,12750,12751,[13512,12874],[13512,12875],[13640,12815],13512,13640,13640,3983,3984,13585,3983,3984,13587,13651,13587,[13587,12615],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13277,8699],13341,13341,13277,13218,13218,13156,13219,13344,13155,13344,13092,13277,[13218,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16976,16847,16847,16784,16719,16655,16784,16655,16719,16783,16719,16783,16720,16784,16719,16848,16848,16725,16725,16847,16847,16848,16656,16784,16719,16784,16656,16784,16848,16847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[422,414],487,422,[487,348],[486,349],[3777,350],3777,3777,3777,3777,3777,[3777,277],[1363,278],1299,1936,1364,1363,1364,1364,1300,1364,1299,1300,1364,1364,1364,1363,[1300,285],[228,286],[3777,229],[3777,294],[3777,535],[3777,536],[3777,537],471,[423,407],[487,343],423,[423,86],87,88,91,92,[422,93],423,422,423,423,422,423,487,486,423,486,487,487,422,[486,1139],[422,1140],[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[526,3472],[525,3473],[526,3474,845],[462,846],[464,847],[527,3404,848],3405,3341,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2762,2958],[2761,2961],[2827,2958],[2761,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[14182,8315],14182,14182,14182,[14182,8499],[8493,8500],8492,8492,8556,8493,8554,8555,[13582,8429],13517,[13517,8617],[13517,8618],8490,8493,8556,8490,8554,8492,8493,8554,[13646,8621],[13581,8622],13646,[13581,8553],8555,8556,8555,8490,[8555,8570],[8555,8634],8635,[14182,8762],14182,14182,14184,14182,14182,[14182,12296],12297,12298,[14182,12299],14182,14182,14183,14182,14182,14182,[14182,13159],[14182,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13278,8508],13277,13277,[13343,8499],8500,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,8249],[13799,8246],8372,8373,0,0,0,0,0,0,0,8507,[13800,8508],13799,13736,13800,13800,[13736,8499],8500,0,0,0,0,0,8443,[13799,8444],13799,13799,13799,13800,13799,13799,[13800,13276],13280,[13341,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3026,[1286,2962],[1799,2120],1734,1734,1798,[1747,1736],1747,1745,1810,1808,1811,1745,[1747,1669],1734,[1799,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13640,12624],13640,13640,13512,[13512,12615],12616,0,0,0,12559,12814,[13641,12815],13640,13641,13577,13640,13640,13641,[13640,13391,4047],[13587,4048],13586,[13650,4047],[13512,13712,4048],[13512,13713],[13641,13714],[13640,13715],[13712,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13341,8444],13341,13220,13279,13219,13218,13344,13343,13279,13278,13344,13280,13218,13341,13279,[13341,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16912,16912,16848,16784,16655,16784,16656,16656,16655,16783,16655,16720,16847,16848,16911,16911,16786,16658,16911,16911,16912,16847,16848,16784,16719,16847,16848,16912,16911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[420,477],[3777,548],421,[486,348],[422,412],413,[484,414],[3777,294],3777,3777,3777,3777,[3777,341],[1364,342],[1364,343],1364,1363,1364,1363,1363,1363,1364,1299,1364,1364,1300,1299,[1299,348],[1364,349],[422,350],422,484,[3777,231],[3777,232],3777,[3777,535],406,[486,214],[487,149],150,151,0,0,156,157,[487,24],[422,27],[422,27],[422,158],487,486,422,[423,23],[423,3524],[487,3525],[486,3526],[487,28],487,[486,1203],[487,1204],[422,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[526,3156],528,463,[526,909],[463,910],[463,911],[463,912],[527,3469],3405,3406,3407,3276,3277,0,0,3282,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[14182,8380],14182,14182,[14182,8563],[8492,8564],[8490,8565],8555,8493,8557,8493,8556,[13582,8298],[13582,8364],13646,13646,[13581,8426],8490,8557,8491,8490,8555,8556,[13581,8429],13582,13517,[13582,8363],8490,8555,8557,8493,8493,[8492,8507],8698,[14182,8699],14182,[14182,13157],[14182,13158],14182,14182,14182,[14182,12296],12297,12298,[14182,12299],14182,14182,14182,14182,14182,14182,14182,[14182,8627],8628,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[13280,8572],13279,13341,[13344,8435],8436,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,0,0,0,0,8378,8314,[13800,8315],13800,13800,[13799,8308],8309,8373,0,0,0,0,0,8507,[13799,8508],13800,13800,13735,13800,13799,13799,[13800,13340,8245],[13278,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1799,2961],[1798,2958],[1798,2961],[1735,2962],1735,[1746,1607],1811,1744,1811,1808,1745,[1811,1605],1799,[1735,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13576,12560],13640,13641,13641,[13512,12679],12680,12681,0,0,12623,[13512,12624],13640,13640,13640,13640,3983,3984,3983,3984,13587,13585,[13641,13522],13640,13512,13641,[13641,12487],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13343,8508],13277,13220,13278,13091,13220,13092,13155,13155,13342,13220,13343,13279,13219,13277,[13218,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16976,16976,16911,16847,16848,16784,16784,16784,16656,16720,16847,16847,16912,16911,16785,16721,16721,16722,16658,16786,16657,16912,16912,16661,16847,16912,16911,16976,16976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[420,286],[3777,358],3777,[3777,356,348],[422,412],476,[3777,548,477],421,484,[3777,294],3777,3777,3777,[3777,405],406,[1364,407],[1363,343],1364,1300,1363,1300,1299,1363,1364,1299,1363,1363,[1300,348],[1948,412],413,[3777,357,414],421,423,420,[3777,359],3777,[3777,149],[423,87],[422,151],[422,213],214,0,0,0,0,156,91,88,88,92,[423,93],423,[487,86],87,3588,3589,3590,92,[423,93],486,[422,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,0,0,3219,[463,3220],463,462,461,[527,974],[525,975],528,528,[462,3469],[526,3470],[461,3471],3340,3341,3342,3343,3346,3406,3407,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,[14182,8627],8628,[8493,8629],[8490,8565],8491,8557,8490,8557,8555,8493,[13517,8298],[13645,8365],13646,[13645,8617],[13581,8618],8555,8554,[13581,8618],[13517,8622],13645,[13581,8363],[13581,8298],8557,8554,8491,8554,8492,[8556,8570],[8491,8571],[14182,8572],14182,14182,[14182,13221],[14182,13222],14182,14182,[14182,8245],[14182,8246,12296],12297,12298,[14182,8249,12299],[14182,8250],14182,14182,14182,14182,14182,14182,14182,[14182,8692],8693,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13800,13405,8636],[13800,13406],[13799,13407],[13799,13408,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,8249],[13800,8246],8372,8373,0,0,0,0,0,0,8507,[13799,8508],13800,13799,13800,13800,13800,[13800,8371],8372,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3025,3026,[1798,3027],[1809,1608],1744,[1746,2957],[1808,2958],[1810,2961],[1744,2962],[1811,1603],[1734,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13641,12624],13641,13576,13640,[13577,12743],12744,12745,12746,12747,12750,[13512,12688],13640,13640,3983,3984,[13513,4047],[13640,4048],[13512,4047],[13640,13519,4048],13587,[13641,13460],13641,13512,13512,13512,[13512,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13218,8315],13344,13277,13344,13218,13343,13341,13277,13342,13155,13218,13283,13284,13278,[13341,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16976,16912,16912,16848,16783,16719,16848,16661,16911,16911,16721,16721,16658,16721,16721,16721,16722,16722,16786,16786,16786,16725,16912,16976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[3777,222],3777,3777,[3777,221],413,[3777,540],3777,[3777,547],[3777,548],[3777,358],661,3777,3777,3777,[3777,470],406,[1364,214],1364,1363,1299,1300,1363,1364,1299,1299,1363,1364,[1300,221],413,[3777,477],3777,[3777,547],[3777,549],[3777,358],3777,3777,[3777,213],[487,214],422,[486,277],278,0,0,0,0,0,0,0,0,156,157,[423,24],150,151,0,0,0,156,157,[486,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,[3283,7126],[3406,7127],[3407,7128],[3341,7129],3342,3342,3343,3277,0,0,0,0,3282,3283,[527,3284],462,525,527,526,464,462,527,526,787,788,[462,3404],3405,3406,3407,3410,[464,3470],[526,3471],[527,3472],[528,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[14182,8572],14182,14182,14182,[14182,8692],8693,[8491,8436],8492,8490,8491,8493,8493,8493,8490,[13517,8366],13645,13646,13582,[13645,8426],[13582,8622],13582,13645,[13581,8297],8555,8556,8554,8556,8554,8554,[8490,8570],[8555,8634],8635,[14182,8636],14182,14182,14182,14182,14182,[14182,8308],[14097,8309],[14033,8310,12296],12297,12298,[14033,8313,12299],[14099,8314],[14182,8315],14182,[14182,13534],[14182,13535],[14182,13536],14182,[14182,13287],[14182,13288],[14182,8757],[14182,8758],[14182,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13800,8699],13799,13799,13800,[13800,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,0,0,8570,8571,[13799,8572],13799,13800,13799,13799,13799,[13800,8435],8436,0,0,0,0,0,0,0,0,0,8570,8824,8825,8630,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1746,1672,2958],[1744,2961],3021,3022,3025,3026,[1810,1667,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13641,12431],13641,13577,13512,[13512,12808],12809,12810,12811,12814,[13641,12752],13512,13641,[13512,4047],[13577,4048],13512,13512,13641,[13512,13583],13648,[13640,13524],3983,3984,3983,3984,[13641,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13277,8246],[13156,8249],[13278,8250],13155,13342,13156,13278,13218,13343,13219,13347,13348,13156,[13219,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16976,16911,16848,16848,16912,16725,16722,16785,16657,16785,16786,16722,[16721,17235],[16721,17104],[16658,17105],[16657,17105],[16722,17104],[16786,17106],16785,16721,16658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[3777,286],3777,3777,[3777,285],[3777,286],597,3777,3777,[3777,292],[3777,294],3777,3777,3777,3777,3777,[3777,277],[1364,278],1364,1363,1300,1363,1363,1299,1363,1363,1999,1363,[1299,285],[3777,286],3777,3777,3777,3777,3777,3777,3777,[3777,277],[487,278],486,[423,341],342,343,0,0,0,0,0,0,0,0,156,91,151,0,0,0,0,0,156,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,[3347,7190],[6552,3470,7191],[6552,3471,7192],[3405,7193],3214,3406,3407,3341,3342,3343,3344,3345,3346,3347,[526,3348],461,464,464,462,528,463,463,526,851,852,527,[464,3469],[462,3470],[525,3471],[462,3474],528,528,785,786,[526,3404],3405,3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[14182,8636],14182,14182,14182,14182,[14182,8435],[8557,8436],8555,8493,8493,[8555,14539],8493,8490,8490,[13517,8430],13581,[13582,8297],[13517,8364],13645,13582,13581,[13645,8362],8556,8491,8554,8493,8490,8303,8493,[8492,8443],8698,[14182,8699],14182,14182,14182,[14182,8245],[14182,8246],[14182,8249],[14032,8372],[14674,8373],14099,14097,14033,14096,[14032,8378],[14098,8379],[14182,8249,13597],[14182,8246,13598],[14182,8250,13599],[14182,13600],[14182,13601],[14182,13351],[14182,13352],14182,14182,14182,[14182,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13799,8444],13800,13799,13800,13799,[13735,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8635,[13799,8636],13800,13800,13735,13800,13800,[13799,8499],8500,0,0,0,0,0,0,0,0,8570,8571,8888,8889,8502,8629,8511,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3085,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13512,12496],13577,13641,13640,[13641,12873],[13640,12874],[13512,12875],[13577,12878],13512,13512,13577,3983,3984,13640,13640,13576,[13641,13647],13586,[13641,13588],[13641,4047],[13513,4048],[13640,4047],[13641,4048],[13640,12679],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8314,[13218,8315],13342,13218,13279,13344,13280,13278,13280,13280,13343,13279,[13220,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16976,16912,16912,16786,16722,16786,16785,16785,[16721,17103],[16658,17104],[16657,17105],17299,17168,17169,17169,17168,17300,[16786,17236],16658,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[3777,350],3777,3777,[3777,292,156],[423,157],[3777,158],3777,3777,[3777,291],484,[3777,229],[3777,230],[3777,231],[3777,295],[3777,86],[1364,87],[1299,151],1300,1363,1364,1299,1299,1363,1363,1299,1300,1299,[1364,156],[1300,92],[3777,93],3777,3777,3777,3777,3777,3777,[3777,213],[3777,548,214],[3777,549],[3777,358,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[6616,3411,7254],[6553,7255],[6553,7256],[6552,3469,7257],[6553,3470],[464,6618,3470],[461,3471],3405,3406,3407,3408,3409,3410,[462,3411],462,526,527,528,526,463,527,528,528,464,528,526,463,525,525,[527,653],[527,654],[461,655],[849,656],850,463,[464,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[14182,8699],14182,14182,14184,14182,14182,[14182,8499],[8491,8500],8554,8555,8490,8554,8555,8303,8491,[13581,8494],13646,[13581,8553,14925],[8491,14926],[13645,8299,14927],[13517,8301,14928],[13581,8365],[13581,8553],8556,8557,8493,8493,8490,8492,8492,[8554,8507],[14182,8508],14182,14183,14182,[14182,8308],[14033,8309],[14098,8310],[14097,8313],[14096,8373],14738,14035,14674,14800,14096,14035,[14673,8378],[14033,8313,13661],[14035,8310,13662],[14033,8314,13663],[14182,8315,13664],[14182,13665],14182,14182,14182,14182,14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13799,8508],13799,13800,13799,13799,[13800,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13800,8508],13800,13800,13799,13799,13800,13799,[13799,8435],8436,0,0,0,0,0,0,0,8570,8634,8635,[13799,8952],[13800,8953],[13800,8758],8693,8575,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13512,12560],13640,13641,13640,13640,13641,13641,13512,13641,13641,13640,[13640,4047],[13512,4048],13512,13576,[13576,13457],13584,13650,13651,[13641,13458],13641,13640,13641,[13640,12743],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13278,8380],13277,13283,13284,13156,13280,13278,13280,13220,13278,13219,[13342,8435],8436,0,0,0,0,8570,8824,8825,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16657,16785,16785,16722,16785,16657,[16785,17235],17299,17169,17169,17169,17168,17168,[17168,17871],17168,17168,17170,16786,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[484,414],[3777,228],[3777,231],485,[487,285],[3777,286],3777,3777,[3777,355],423,420,[3777,548],[3777,549,23],[488,27],[1363,150],[1363,151],1363,1300,1363,1363,1300,1364,1300,1364,1364,1299,1363,1300,[1364,156],[1299,157],[3777,158],3777,37,3777,3777,3777,[3777,277],[3777,278],3777,3777,[3777,293,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[6617,3284],[6617,7318],[6616,7319],[6617,7320],[6552,7321],[463,6678],[463,6682],526,[527,3469],[464,3470],[464,3471],[464,3472],[464,3473],[463,3474],462,463,526,528,[462,3282],[463,3342,2511],[526,3343],[528,3277],526,462,461,526,527,463,464,462,[527,717],[461,718],[526,719],[463,720],527,463,[464,3339],3340,3341,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,14182,14182,14182,[14182,8308],[8557,8309],[8493,8373],8555,8491,8490,8556,8554,8493,8491,[13517,8428],[13645,8362],[8557,14989],[8557,14990],[8492,14991],[8493,14992],[13582,8558],[13517,8427],8491,8555,8557,8557,8491,8556,[8491,8570],[8556,8571],[14182,8572],14182,14182,[14182,8371],[14097,8372],[14033,8373],14737,14033,14674,14675,14737,14738,14034,14737,14673,14097,[14610,13725],[14673,13726],[14032,8378,13727],[14035,8379,13728],[14182,8380,13729],14182,14182,14183,14182,14182,14182,[14182,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,8315],13799,13800,[13800,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13736,8444],13800,13800,13799,13800,13800,13735,[13800,8499],8500,0,0,0,0,0,0,0,8507,8698,[13799,8699],13799,13800,13800,[13799,8757],[13799,8639],[13800,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13512,12624],13512,13512,13513,13641,13641,13641,13641,[13512,12361],[13640,12362],[13641,12365],[13577,12366],13512,3983,3984,3983,3984,3983,3984,3983,3984,13512,13512,13512,[13640,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13277,8444],13218,13347,13348,13344,13342,13343,13219,13219,13344,13280,[13220,8563],8564,8565,0,0,8570,8571,8888,8889,8629,8630,8631,8824,8825,8822,8823,8630,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16786,16721,16722,16786,16658,[16786,17103],17299,17169,17169,17169,17168,17169,17169,17169,17169,17169,17170,16721,16785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[486,477],486,486,423,422,[423,285],[3777,286],3777,3777,[3777,419],420,[3777,358],[3777,86],[1300,87],[1363,88],[1299,151],1363,1363,1300,1300,1363,1364,1299,1299,1299,1363,1299,2127,2128,1364,[1364,285],[3777,286],3777,101,3777,[3777,227],[3777,228,86],[3777,87],[3777,151],3777,3777,[3777,291],[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4803,0,0,0,0,4808,4868,6409,4872,6151,4933,4867,4868,4869,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3346,3347,[462,6486,3348],[6552,7382],[6553,7383],[6616,7384],[463,6489,7385],526,526,527,464,526,527,462,462,527,462,526,528,[461,3282],[461,3283,2574],[3406,2575],[3407,2576],[528,3341],[526,3342],[461,3343],[462,3344],[528,3345],[525,3277],463,526,527,[525,781],[527,782],[528,783],[464,784],463,462,461,[527,3404],3405,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,14182,[14182,8308],[8493,8309],[8556,8373],8554,8555,8493,8490,8557,8556,8555,[13645,8429],[13582,8297],8491,[8493,15053],[8557,15054],[8555,15055],[8492,15056],8493,[13581,8302],[13581,8617],[13645,8621],8556,8554,8491,[8555,8570],[8557,8634],8635,[14182,8636],14182,14182,[14182,8499],[14035,8500],14674,14737,14801,14675,14098,14099,14034,14737,14674,14099,14099,[14098,13789],[14033,13790],[14097,13791],[14035,8507,13792],[14182,8508,13793],14182,14182,14182,14182,14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,8246],[13800,8249],8372,8373,0,0,8570,8630,8631,8565,0,0,0,0,0,0,8570,8632,8633,8634,8694,8695,8629,8630,8631,8565,0,0,8570,8630,8631,8565,0,0,0,0,0,0,0,0,8507,[13799,8508],13799,13736,13799,13799,13800,[13800,8308],8309,8373,0,0,0,0,0,0,8570,8571,[13800,8572],13799,13800,13800,13800,13800,13800,13799,[13799,8692],8693,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13392,12688],[13641,13458],13640,[13512,13133],[13512,13134],[13640,13135],13640,[13641,12424],12425,12426,12429,12430,[13512,12496],[13512,4047],[13641,4048],[13513,4047],[13512,13647,4048],[13586,4047],[13586,4048],[13641,13524,4047],[13577,4048],13641,13577,13512,13512,[13512,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13218,8315],13156,13156,13278,13341,13155,13155,13278,13155,13343,[13279,8627],8628,8629,8630,8631,8634,8635,[13219,8952],[13156,8953],8693,8694,8695,8888,8889,8886,8887,8502,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16786,16657,16658,16722,16722,17167,17169,[17168,17807],17168,17169,17168,17168,17169,17169,17168,17168,17170,16658,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[487,286],422,422,423,487,[422,348],[422,349],[3777,350],3777,[3777,293],485,[3777,488],[3777,149],[1363,150],[1364,151],1299,1299,1300,1364,1300,1363,1364,1300,1300,1364,1299,1300,1363,2191,2192,[1300,348],[1364,349],[3777,350],3777,3777,3777,[3777,291,149],[423,150],[3777,294,151],3777,597,3777,[3777,419,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4932,4933,4867,4868,4869,4870,4871,4809,4932,6473,4936,[3259,6215],[3196,4997],4931,4932,4933,4932,4933,4867,4803,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3410,[461,3411],463,[526,6613],[6617,7447],[464,6618,7448],525,463,462,[527,653],[525,654],[528,655],[525,656],463,462,463,527,461,[525,3282],[527,3346],[3347,2638],[1741,3470,2639],[1741,3471,2640],3405,3406,3407,3408,3409,[463,3276],[528,3277],463,461,[461,845],[527,846],[526,847],[461,848],527,463,525,464,[463,3469],[528,3470],[526,3471],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,14182,[14182,8371],[8555,8372],[8556,8373],[8557,9842],[8557,9843],[8493,9844],8492,8554,8555,8493,[13581,8558],13645,[13646,8553],8492,[8555,15117],[8490,15118],[8557,15119],[8556,15120],8554,8554,[13582,8364],13581,[13517,8553],8493,8556,[8490,8443],8698,[14182,8699],14182,14182,[14182,8308],[14097,8309],[14673,8373],14099,14035,14033,14673,14032,14033,14033,14737,14034,14675,14097,14737,[14673,13854],[14675,8570,13855],[14032,8571,13856],[14182,8572],14182,14182,14182,14182,14182,[14182,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8373,0,0,8570,8571,8694,8695,8564,8565,0,0,0,0,8570,8571,8696,8697,8698,[13736,8758],[13800,8759],8693,8694,8695,8629,8630,8631,8634,8694,8695,8564,8565,0,0,0,0,0,0,8570,8571,[13799,8572],13799,13800,13800,13800,[13800,8371],8372,8373,0,0,0,0,8570,8632,8633,8634,8635,[13799,8636],13799,13800,13800,13800,13800,13800,13736,13799,[13799,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12748,12749,12750,12751,[13650,12752],13649,[13640,13392],[13641,13393,13197],[13641,13394,13198],[13640,13395,13199],[13641,13396,12487],12488,12489,0,0,12559,[13641,12560],13641,13641,[13640,13456],13651,13651,13651,[13640,13588],13512,13512,13641,13640,[13641,12487],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13342,8246],[13279,8250],13342,13279,13279,13220,13342,13219,13342,13278,[13341,8692],8693,8694,8695,8698,[13278,8699],13278,13343,[13156,8757],[13156,8758],[13218,8759],[13280,8952],[13343,8953],[13342,8950],[13277,8951],[13156,8758],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16786,16785,16658,16658,16722,17167,17169,17168,17169,17168,17169,17169,17168,17169,17169,17363,17234,16786,16722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[486,158],487,423,[423,348],[487,412],413,[228,414],[3777,294],[3777,483],420,[3777,358],[3777,213],[1300,214],1299,1300,1364,1299,1363,1363,1363,1300,1300,1300,1363,1364,1300,1299,1363,[1363,348],[1363,412],413,[3777,488,414],3777,3777,3777,[3777,277],[487,278],484,[3777,228],[3777,294],3777,[3777,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4936,[3260,4996],[3259,4997],4931,4932,4933,4934,4935,4873,[3195,4996],[3259,6537],[3196,5000],3259,3260,[3195,4995],[3260,4996],[3195,4997],[3260,4996],[3259,4997],4931,4802,4803,0,0,4808,4868,4869,4803,0,0,4808,4809,4932,4933,4802,4803,0,0,0,0,0,4808,4868,4869,4868,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[463,3470],[461,3471],[462,3474],463,659,[660,6677],[526,6678],[528,6489],525,527,528,[528,717],[462,718],[463,719],[525,720],462,527,785,786,525,[526,3219],3410,[1798,3411,2702],[1740,1606,2703],[1739,2704],[1741,1605,3469],[1739,1606,3470],[1741,3471,1793],[1741,3472,1794],[1803,3473],[3340,2511],[461,3341],[525,3342],[526,3343],[528,3277,909],[526,910],[464,911],[527,912],463,526,528,525,526,461,462,[461,3404],3405,3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,[14182,8435],[8557,8436],8555,[8556,9906],[8491,9907],[8554,9908],8492,8491,[13646,8428],[13646,8427],[13646,8622],[13581,8362],8493,8555,[8490,15181],[8554,15182],[8492,15183],[8557,15184],8492,8493,8493,[13645,8365],[13645,8617],[13645,8620],[13517,8621],[8555,8507,11196],[8508,11196],[14182,11196],[14182,11196],[14182,8371,11196],[8372,11196],[14098,8373],14737,14033,14033,14674,14034,14096,14098,14739,14096,14673,14738,14033,14033,[14097,8570],[14033,8634],8635,[14182,8636],14182,14182,14182,[14182,8245],[14182,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8632,8633,8634,8635,[13799,8758],[13341,8759],8628,8629,8630,8631,8818,8819,8634,8635,[13799,8760],[13800,8761],[13800,8762],13736,13800,[13799,13150,8757],[13277,8758],[13277,8759],8693,8694,8695,8698,[13800,8758],[13799,8759],8628,8564,8565,0,0,0,0,8570,8634,8635,[13799,8636],13799,13799,13800,13800,[13800,8435],8436,0,0,0,0,8570,8571,8696,8697,8698,[13799,8699],13799,13799,13799,13799,13800,13800,13800,13800,13800,13800,[13799,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12812,12813,12814,[13585,12815],13585,13648,13587,[13650,13261],[13587,13262],[13651,13263],[13650,12551],12552,0,0,0,12623,[13392,12624],[13512,13393],[13640,13394],13648,3983,3984,3983,3984,3983,3984,3983,3984,[13512,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8314,[13343,8315],13344,13219,13220,13341,13280,13155,13155,13342,[13219,8757],[13343,8758],[13344,8759],[13341,8762],13279,13282,13219,13155,13344,13277,13343,13344,13341,13283,13284,[13220,8692],8693,8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16658,16786,16657,16785,16721,0,0,0,0,0,0,0,0,0,0,0,16658,16786,16658,16658,16786,17231,17233,17364,17168,17169,17168,[17169,17743],17169,17169,17168,17170,[16785,18000],16786,16657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[487,222],423,486,[487,221],413,[3777,356,477],421,484,485,484,[3777,295],[3777,277],[1299,278],1300,1300,1300,1363,1363,1299,1363,1300,1300,1363,1364,1364,1300,1299,1363,[1364,221],413,[3777,551,477],[3777,552],3777,3777,3777,[3777,341],[487,342],[487,343],486,484,[3777,228],[229,341],342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3195,5000],3260,3196,[3195,4995],[3196,4996],[3260,4997],[3196,4998],[3195,4999],[3196,4937],3260,3259,3259,3195,3195,3260,3260,3196,3196,3260,[3196,4995],4866,4867,4868,4869,4872,4932,4933,4867,4868,4869,4872,4873,[3260,4996],[3195,4997],4866,4867,4803,0,0,0,4808,4809,4932,4933,4740,4867,4868,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[528,3411],463,464,525,525,723,724,463,525,464,525,526,[464,781],[527,782],[527,783],[462,784],463,525,849,850,[525,3282],[461,3283],[1735,3284],[1734,2766],[1799,2767],[1428,1540,2768],1735,[1741,1608],[1803,1857],[1805,1858],[1805,2574],[1740,3404,2575],[3405,2576],3406,3407,[526,3341],[528,3342,974],[464,3343,975],[526,3344],[464,3345],[527,3277],526,[464,653],[528,654],[463,655],[461,656],528,[527,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[14182,8572],14182,14182,14182,[14182,8435],[8492,8436],8557,8555,8493,8493,8555,[13645,8558],13645,13646,[13581,8363],8554,8492,8491,[8493,15245],[8556,8570,15246],[8557,8630,15247],[8555,8631,15248],[8492,8632],[8493,8633],[8492,8565],[13645,8558],13645,13646,13582,11260,11260,11260,11260,11260,11260,14035,14033,14673,14034,14610,14096,14098,14738,14033,14097,14675,14737,14098,14675,[14034,8443],8698,[14182,8699],14182,14182,14182,[14182,8308],8309,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8696,8697,8698,[13799,8699],[13799,13084],13344,[13278,8692],8693,8694,8695,8882,8883,8698,[13800,13087,8699],[13800,13088],[13799,13151],13735,13800,13800,[13800,13148],13277,13279,[13279,8757],[13344,8758],[13277,8759],[13799,13217,8762],13735,13800,[13799,8692],8628,8629,8630,8631,8565,0,8507,8698,[13799,8699],13799,13799,13800,13800,[13799,8371],8372,8373,0,0,0,8570,8634,8635,[13341,8760],[13278,8761],[13800,13345,8762],13799,13799,13800,13799,13800,13800,13800,13799,13799,13800,13799,[13799,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13512,12876],[13640,13647,12877],[13648,12878],13651,13587,13649,13651,[13585,13325],[13585,13326],[13649,13327],[13648,12615],12616,0,0,12686,12687,[13512,12688],[13641,13520],[13640,13714],[13640,13715],[13641,13712,4047],[13512,13713,4048],[13512,13714,4047],[13576,13715,4048],[13585,4047],[13640,13392,4048],[13512,13393,4047],[13641,13394,4048],[13395,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13278,8380],13155,13156,13155,13279,13156,13280,13280,13278,13280,13342,13342,13278,13344,13155,13218,13278,13278,13155,13344,13278,13347,13348,13218,[13341,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16787,1521],16787,16724,16787,16660,16659,0,0,0,16657,16721,16657,16658,16721,16658,16721,16657,16658,16721,16657,16721,0,0,0,0,0,0,16657,16722,16721,16657,16658,16658,[16722,18000],17231,17232,17232,17232,17233,17232,17232,17233,17234,16721,16786,16721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[423,286],486,420,[3777,548,285],[3777,286],3777,[3777,483],486,420,[3777,549],[3777,552,149],[1364,150],[1300,151],1364,1363,1364,1363,1364,1300,1364,1364,1364,1299,1299,1364,1300,1299,1363,[1300,285],[3777,286],3777,3777,3777,3777,3777,[3777,405],406,[422,407],[423,343],422,486,[487,405],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,4936,[3196,4937],3259,3195,6407,3259,3195,3259,3259,3195,3196,3196,3259,6407,3195,3195,3260,3260,3259,3259,3196,3259,[3259,4930],4931,4932,4933,4936,[3259,4996],[3195,4997],4931,4932,4933,4936,[3195,4937],3259,3259,[3259,4930],4931,4674,0,0,4808,4872,4873,[3195,4996],[3259,4997],[3259,4996],4931,4740,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[463,6424,3411],462,525,464,526,463,464,527,527,528,461,526,461,[462,845],[528,846],[527,847],[462,848],463,[525,3282],[461,3342],[526,3343],[526,3346],3347,[1804,1668,3348],1735,[1734,2831],1735,1734,[1804,1736],1804,1803,[1740,2638],[1741,1605,2639],[1799,3469,2640],[1740,1800,3470],[1740,3471,1665],[3405,1666],3406,3407,3408,3409,[463,3276],[462,3277],[461,717],[528,718],[464,719],[526,720],464,[527,3339],3340,3341,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[14182,8636],14182,14182,14182,[14182,8563],[8492,8564],[8493,8565],8493,8555,[8495,8570],[8492,8630],[8557,8631],[13517,8298,8632],[13646,8301,8633],[8493,8565],8555,8556,[8490,8570],[8554,8630],[8557,8634],8694,8695,8696,8697,[8491,8564],[8493,8565],[13581,8299],[13581,8301],[13582,8365],11324,11324,11324,11324,11324,11324,14099,14099,14099,14035,14739,14738,14033,14032,14099,14675,14801,14032,14097,14738,[14033,8507],[14182,8508],14182,14182,14182,[14182,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13341,8760],[13342,8761],[13800,13217,8762],13800,[13800,13213],13341,13344,[13280,8757],[13344,8758],[13799,13345,8759],[13799,8946],[13800,13276,8947],[13342,8762],13341,13344,13342,[13800,13085],[13799,13089],13800,[13799,13212],13342,13342,13092,13342,13342,[13799,13281],13799,[13799,13084],[13800,13085],[13086,8692],8693,8694,8695,8629,8632,8571,[13799,8572],13799,13799,13800,13799,13735,[13800,8435],8436,0,0,0,0,8507,8698,[13280,8699],13277,13279,[13799,13216],13800,13800,13800,13800,13800,13799,13735,13799,13800,13800,13799,[13799,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13641,12815],13641,[13640,13711],[13512,13712],[13641,13713],13648,13648,13651,13649,13586,[13587,12424],12425,12489,0,12686,12750,12751,[13641,12752],13641,13512,13512,13512,13640,13641,13640,[13512,13520],[13641,13712],[13640,13713],[13640,13714],[13715,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13156,8444],13343,13282,13155,13343,13344,13277,13278,13155,13343,13219,13277,13219,13220,13344,13218,13343,13220,13282,13218,13155,13220,13155,13341,[13156,8627],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16788,16788,16788,16787,16788,0,0,0,16786,16722,16722,16785,16722,16658,16721,16657,16658,16658,16658,16658,16786,16721,16722,0,0,0,16721,16722,16657,16722,16786,16785,16785,16721,16786,16721,16785,16657,16786,16785,16786,16786,16658,16786,16722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16783,16656,16719,16655,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[420,93],[3777,358],[3777,156],[3777,92],[3777,93],[3777,547],[3777,548],[3777,359],597,[3777,213],[1300,214],1299,1300,1300,1299,1364,1300,1299,1364,1364,1299,1299,1299,1299,1363,1364,1300,[1363,156],[1364,157],[3777,158],3777,3777,3777,3777,3777,[3777,470],406,[423,214],487,422,422,[487,470],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3195,4553],3195,3195,3196,3259,3196,3260,3259,3195,3260,3260,3259,3260,3259,3259,3259,3259,6408,3195,3260,6471,3195,[3196,4995],[3259,4996],[3196,4997],[3259,5000],3195,3196,[3195,4995],[3260,4996],[3259,4997],[3259,5000],3195,3260,3195,3259,[3195,4673],4674,0,0,4681,4936,[3260,4937],3260,3195,3196,[3195,4995],[3260,4996],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[6616,3220],6616,[461,6358],[462,6425],461,463,526,527,525,528,525,525,527,527,[526,909],[463,910],[463,911],[526,912],[527,3282],[463,3283],3406,3407,3410,[1739,3411],[1804,403],[1492,1603,2511],1734,1735,1735,1799,[1805,1607],[1428,1605],[1739,1540,2702],[1735,2703],[1799,2704],[1805,1671],[1803,1729],[1805,3469,1730],[1741,3470,1793],[1739,3471,1794],[1741,3472,1665],[1805,3473,1666],3340,[526,3341],[525,3277,781],[461,782],[528,783],[528,784],461,527,[528,3404],3405,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,8698,[14182,8699],14182,14182,14182,14182,[14182,8627],8628,[8493,8629],[8556,8630],[8493,8631],[8492,8634],8694,8695,8696,8697,[8557,8629],[8491,8630],[8492,8631],[8490,8634],8502,8698,[14182,8758],[14182,8759],[14182,8760],[14182,8761],8628,[8554,8564],[8492,8565],8490,8557,[8556,8507,11388],[14182,8508,11388],[14182,11388],[14182,11388],[14182,8563,11388],[8564,11388],[14035,8565],14097,14739,14801,14097,14098,14099,14097,14674,14673,14034,14675,14033,[14609,8570],[14033,8571],[14182,8572],14182,14182,14182,[14182,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,8698,[13277,8699],13343,13279,[13800,13281],13736,13800,[13799,13214],[13799,13407],[13799,13215],[13800,13214],[13800,13409],13799,[13800,13213],13280,13278,13277,13278,13280,[13799,13215],13799,[13799,13276],13277,13280,[13799,13405],13278,13341,[13799,13345],13800,[13799,13340],13341,13341,[13799,13215,8757],[13799,8758],[13800,8759],8693,8502,8635,[13800,13151,8636],13800,13800,13800,13799,13800,[13800,8563],8564,8565,0,0,8570,8571,[13342,8572],13343,13154,[13800,13409],13736,13800,13800,13800,13799,13800,[13799,13150],[13800,13085],[13799,13086],[13800,13087],[13799,13088],[13800,13152,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13641,12624],13641,13640,13640,13640,13641,[13640,13711],13587,[13648,12361],[13649,12362],[13584,12365],12488,12489,0,0,12559,12814,[13512,12815],13641,13512,13512,13512,13512,13513,13641,13641,13641,13640,13640,13641,[13512,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13342,8315],13220,13341,13279,13218,13156,13278,13279,13344,13277,13279,13343,13341,13344,13341,13280,13220,13156,13277,13342,13218,13344,13218,13277,[13155,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16724,16659,16659,16660,16660,0,0,0,16786,16786,16657,16786,16722,16786,16721,16786,16786,16785,16786,16657,16786,16658,16657,0,0,0,16657,16785,16657,16721,16657,16786,16721,16658,16658,16658,16658,16721,16658,16786,16786,16658,16786,16658,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16655,16783,16784,16719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[3777,158],3777,[3777,293,156],[487,157],[3777,158],3777,3777,3777,[3777,277],[1300,278],1299,1300,1935,1300,1363,1364,1364,1364,1364,1300,[1363,1954],1300,2063,1299,1299,1364,1299,[1363,285],[3777,286],3777,3777,3777,3777,3777,661,[3777,277],[487,278],422,422,422,422,[487,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3196,4487],[3259,4618],3196,6407,3196,3195,[3196,4483],[3195,4484],[3195,4487],[3259,4488],3196,[3195,4483],[3260,4484],[3195,4487],[3259,4488],3195,3260,3260,3260,3260,3195,3196,3196,3195,3260,3259,3195,3259,3196,3195,3195,3196,3196,3195,[3195,4609],4610,4611,0,0,4745,[3259,4746],3196,3196,3195,3260,3260,3260,[3195,4930],4931,4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3282,7126],[3283,7127],[6553,3284,7128],[6617,7129],6552,[462,6426],[527,7126],[461,7127],[528,7128],[463,7129],461,[461,3282],[462,3342,2511],[463,3343],[462,3277],526,464,[528,974],[525,975],[525,3282],[463,3346],3347,[1803,3470,1793],[1804,3471,1794],[1739,3474],1740,[1739,2574],[1804,1731,2575],[1735,2576],1798,1799,1735,1735,1798,[1798,2766],[1799,2767],[1805,1800,2768],1804,[1803,1665],[1491,1666],[1739,1857],[1805,1858],[1804,1729],[1804,1730],[1741,3404],3405,[464,3212,845],[527,846],[463,847],[526,848],526,526,526,[463,3469],[528,3470],[525,3471],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,14182,14182,14182,14182,[14182,8692],8693,8694,8695,8698,[14182,8758],[14182,8759],[14182,8760],[14182,8761],8693,8694,8695,8698,[14182,8758],[14182,8762],14182,14182,14182,14182,[14182,8692],8628,[8555,8629],[8492,8632],[8492,8633],[8554,8634],[14182,8572],14182,14182,[14182,8627],8628,[14033,8629],[14099,8565],14675,14099,14737,14674,14674,14032,14675,14098,14033,14032,[14674,8570],[14035,8634],8635,[14182,8636],14182,14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[13343,8572],13343,13342,13280,[13799,13345],13800,13800,13799,13799,13799,13799,13736,13799,13800,[13799,13340],13282,13277,13343,[13800,13153],13800,13800,[13799,13213],[13800,13405],[13800,13215],13735,[13799,13213],[13799,13405],[13799,13409],[13800,13149],13277,13343,[13800,13345],13736,13800,13736,[13800,8757],[13800,13276,8760],[13344,8699],13279,[13799,13086],[13800,13087],[13799,13088],[13800,13152],13800,[13800,8627],8628,8629,8630,8631,8634,8635,[13279,8636],13344,[13800,13215],13735,13800,13800,13800,13799,13800,[13799,13149],13341,13154,[13277,8245],[13341,8246],[13342,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12746,12656,12687,[13577,12688],13641,13512,13640,13512,13576,13641,[13641,13520,12424],12425,12426,12429,12489,0,0,0,12559,[13512,12560],13640,13640,13577,13512,13512,13576,13577,13512,13640,13640,13512,13640,[13640,12424],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13155,8380],13278,13154,13279,13341,13343,13155,13219,13277,13342,13341,13218,13219,13155,13090,13218,13220,13218,13155,13279,13219,13091,13219,13343,[13220,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16659,16723,16660,16788,16659,0,0,0,16850,16722,16657,16721,16657,16786,16786,16785,16721,16721,16722,16786,16658,16658,16786,0,0,0,16722,16785,16785,16721,16657,16721,16657,16722,16722,16658,16657,16722,16722,16722,16658,16785,16721,16657,16722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16783,[16655,16856],16784,16655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[3777,222],[3777,293],485,[422,285],[3777,286],3777,3777,3777,[3777,341],[1363,342],[1363,343],1299,1363,[1300,348],[1300,408],[1299,409],[2012,410],[1299,411],[1364,343],[1299,2017],[1364,2018],[1299,2019],1363,1363,[1364,348],[1300,408],[1300,409],[1364,412],[3777,350],3777,3777,3777,3777,[3777,227],[3777,228,149],[422,150],[422,151],487,487,487,[486,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4552,[3196,4553],3260,3196,[3259,4546],4547,4548,4551,4552,[3196,4484],4547,4548,4551,4552,[3260,4488],3196,3196,3259,3260,3196,3259,3259,3259,3196,3195,6408,3260,3195,6408,3260,3259,6471,3259,[3259,4673],4674,0,0,0,4681,[3259,4682],3260,3259,6407,6407,3259,3259,[3195,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,[3346,7190],[3347,7191],[6617,3348,7192],[6553,7193],6616,[463,6554],[525,7190],[527,6422,7191],[463,6424,7192],[462,7193],[461,3282],[461,3283,2574],[3406,2575],[3407,2576],[464,3341],[528,3342],[525,3343],[464,3344,2511],[527,3345],[525,3346],3410,[1740,3411],[1741,1857],[1741,1858],1739,1741,[1739,1604,2638],[1805,1799,2639],[1799,2640],1734,[1805,1860],[1805,1861],[1741,1860],[1739,1861],1798,[1798,2831],[1804,1864],1804,[1741,1729],[1741,1730],1740,[1739,1665],[1803,1666],[1428,2511,340],1804,[1741,3275],[461,3276,909],[525,3277,910],[464,911],[462,912],462,528,526,525,659,660,[463,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,14182,[14182,13157],[14182,13158],14182,[14182,8757],[14182,8758],[14182,8759],[14182,8762],14182,14182,14182,14182,[14182,8757],[14182,8758],[14182,8759],[14182,8762],14182,14182,14182,14182,14182,14182,14182,[14182,8692],8693,8696,8697,8698,[14182,8636],14182,14182,14182,[14182,8692],8693,[14099,8564],[14737,8565],14674,14098,14738,14032,14034,14675,[14032,8570],[14032,8630],[14097,8631],[14099,8634],8698,[14182,8699],14182,14182,14182,14182,[14182,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8634,8635,[13342,8636],13280,[13800,13407],[13799,13408],[13735,13409],13799,13800,13799,13800,13799,13800,13800,13799,13800,[13799,13404],13343,13277,13280,[13799,13217],13799,13799,13800,13735,13800,13736,13800,[13799,13149],[13799,13085],13279,[13735,13405],[13800,13408],[13736,13409],13799,13799,13800,13799,[13800,13340],13277,13090,13341,13278,13279,13342,[13799,13086],[13800,13087],[13799,13088,8692],8693,8694,8695,8698,[13800,13407,8699],[13800,13408],[13799,13215],13735,13800,13800,13799,[13800,8245],[13799,8246],[13799,8249],[13279,8250],13343,[13277,8308],8309,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12810,12720,12751,[13512,12752],13640,13512,13512,13641,13641,[13512,12487],12488,12489,0,0,0,0,0,0,12623,[13640,12624],13576,13512,13640,13641,13640,[13641,12361],[13512,12362],[13576,12365],[13512,12366],[13512,1521],13641,[13577,12424],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13344,8444],13218,13277,13277,13279,13279,13277,13218,13279,13156,13277,13342,13278,[13341,8245],[13279,8246],[13279,8249],[13344,8250],13342,13343,13155,13278,13343,13280,[13156,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16851,16852,16851,16852,16851,16724,0,0,0,16914,16850,16850,16721,16722,16722,16658,16657,16785,16786,16786,16722,16721,16849,16849,0,0,0,16721,16785,16657,16785,16657,16722,16785,16657,16785,16722,16658,16721,16722,16786,16722,16785,16849,16850,16850,0,0,0,0,0,0,16659,16660,16723,16788,16787,16660,16660,0,0,0,0,16847,16920,16848,16847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[484,286],485,[487,348],[423,349],[3777,350],3777,3777,3777,[3777,483,405],406,[1299,407],[1299,408],[1363,409],[1363,412],472,473,474,475,[2011,342],[1364,343],1300,[1299,348],[1364,408],[1300,409],[1299,412],472,473,476,[3777,414],3777,3777,3777,3777,[3777,291],[422,213],[487,214],487,423,422,[423,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3260,4487],[3195,4484],4610,4611,0,0,4616,4548,4611,0,0,4616,4552,[3195,4553],3195,3259,3259,3195,3195,3260,[3196,4483],[3196,4484],[3196,4487],[3195,4488],3195,3260,3195,3195,3195,3195,3259,[3195,4737],4738,0,0,0,4745,[3259,4746],3195,3196,3260,3259,3260,[3196,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[3410,7254],[6617,3411,7255],[6552,7256],[6553,7257],6553,6616,[528,6358,7254],[6552,7255],[6553,7256],[528,6424,3282,7257],[464,3346],[3347,2638],[1735,3470,2639],[1734,3471,2640],3405,3406,[3407,2574],[3408,2575],[3409,2576],3410,[1741,3411],1803,1803,1803,1804,[1739,1605],[1735,2702],[1734,2703],[1734,2704],[1739,1670],1741,1740,[1803,338],1741,[1803,1669],[1428,1670],1803,1740,1805,1803,1739,[1803,1729],[1804,2574,1730],[1740,2575],[1739,2576],[1740,3339],3340,[528,3341,974],[461,3342,975],[463,3343],[526,3277],525,525,463,723,724,463,[525,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,14182,14184,[14182,13221],[14182,13222],14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,[14182,8757],[14182,8760],[14182,8761],[14182,8762],14182,[14182,13287],[14182,13288],14182,14182,[14182,8692],8628,[14098,8629],[14096,8630],[14034,8631],[14096,8565],14609,14096,[14674,8570],[14099,8571],8694,8695,8698,[14182,8762],14182,14182,14182,14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8565,0,0,0,0,0,0,0,8570,8630,8631,8634,8694,8695,8698,[13800,13407,8699],[13800,13408],[13800,13216],13800,13800,13735,13799,13800,13736,13799,13800,13799,13800,13799,13736,13800,[13799,13214,8245],[13278,8246],[13278,8250],[13799,13281],13736,13800,13736,[13799,8245],[13800,8249],[13799,8250],13799,[13800,13340],13341,[13800,13215],13799,13800,13799,13799,13799,13800,13799,[13799,13404],[13799,13405],[13800,13406],13341,13280,13342,13277,13344,13278,13279,[13799,13345,8757],[13799,8758],[13800,8759],[13800,8762],13800,13799,13735,13800,13799,13799,[13800,8245],8309,8310,8313,8314,[13344,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13512,12874],[13640,12784],[13640,12878],13512,13512,13576,13576,13641,13640,[13641,12551],12552,0,0,0,0,0,0,0,12494,12430,[13640,12431],[13641,1393],13641,13640,[13577,12424],12425,12426,12429,12430,[13640,12362],[13641,12365],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13342,8508],13344,13278,13154,13279,13277,13279,[13155,8245],[13343,8246],[13341,8249],[13156,8250],13220,[13344,8308],8309,8310,8313,8314,[13219,8315],13278,13341,13342,13156,[13218,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16916,16915,16915,16916,16915,16659,0,0,0,16978,16914,16914,16850,16721,16658,16786,16721,16658,16721,16786,16785,16850,16913,16913,0,0,0,16850,16850,16657,16786,16785,16658,16657,16658,16785,16721,16786,16849,16849,16849,16850,16849,16913,16914,16914,0,0,0,0,0,16659,16660,16787,16788,16724,16787,16787,16787,16788,0,0,0,16912,16984,16912,16912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,[487,350],[422,348],[486,412],413,[3777,414],3777,3777,3777,[3777,547],[3777,548,470],471,472,473,476,[422,536],[3777,424,537],[3777,538],[3777,539],406,[1363,407],[1364,409],[1364,412],472,473,476,[421,536],[422,537],[3777,296,540],3777,3777,597,3777,3777,[3777,419],[486,277],[423,278],423,422,487,[487,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4548,4611,0,0,0,0,0,0,0,0,0,4616,4617,[3260,4618],6472,3259,3259,6472,[3196,4546],4547,4548,4551,4552,[3195,4487],[3195,4484],[3259,4487],[3195,4488],3259,3260,[3260,4546],4547,4611,0,0,4808,4809,[3195,4810],3260,3260,3195,6407,3260,[3195,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[6616,3284,7318],[6616,7319],[6617,7320],[6552,7321],6553,6553,[6553,7318],[6553,7319],[6552,7320],[6552,3155,7321],3410,[1798,3411,2702],[1734,2703],[1799,2704],[1798,3469],[1735,3470],[1798,3471,2638],[1799,3472,2639],[1803,1672,3473,2640],[1803,3474],1805,1804,1428,[1741,340],1805,[1803,1603],[1799,2766],[1799,2767],[1803,1800,2768],1428,1741,[1741,3207],1741,1803,1804,1741,[1804,3208],1739,1803,1741,1740,[1741,1539],[1804,1540,2638],[1805,1543,2639],[1805,1606,2640],1805,[1804,3404],3405,3406,[3407,2511],[461,3276],[525,3277],462,526,462,[526,651],[527,652],[526,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3276,3277,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,[14182,8308],[14182,8246],[14182,8250],14182,14182,14184,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,[14182,13351],[14182,13352],14182,14182,14182,[14182,8692],8693,8694,8695,[14096,8629],[14032,8632],[14033,8633],[14097,8634],8635,[14182,8758],[14182,8759],[14182,8762],14182,14182,14184,14182,14182,[14182,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8634,8694,8695,8629,8565,0,0,0,0,0,8570,8571,8694,8695,8698,[13800,8758],[13799,8759],[13800,8762],13799,13799,13799,13799,13800,13800,13736,13800,13800,13800,13799,13799,13800,13800,13799,[13799,8371],8372,8310,8314,[13278,8315],[13799,13152],13735,[13800,8308],8309,8313,8314,[13799,13150,8315],13277,[13800,13215],13800,13800,13800,13799,13799,13800,13736,13799,13800,13736,13799,[13800,13213],13342,13277,13341,13277,13282,13344,[13800,13216],13735,13799,13800,13800,13799,13799,13799,13799,13800,[13800,8499],8500,0,0,8378,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12657,12747,12749,12681,0,0,0,12559,[13640,12560],13577,13641,13641,13640,13512,13512,13512,13512,13640,[13641,12615],12616,0,0,0,0,0,0,0,0,12494,12495,[13640,12362],[13641,12362],[13640,12365],12488,12489,0,0,12494,12426,12429,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[13156,8572],13279,13156,13156,13155,13280,[13342,8308],8309,8310,8313,8314,[13279,8246],8372,8373,0,0,8378,8379,[13156,8380],13278,[13278,2082],13154,[13344,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,0,16980,0,16724,16660,0,0,0,16980,16978,16914,16849,16849,16849,16721,16785,16721,16721,16722,16914,16978,0,0,0,0,16914,16913,16785,16786,16785,16722,16721,16721,16658,16849,16849,16913,16913,16913,16913,16914,16978,0,16978,0,0,0,0,0,16788,16723,16659,16787,16660,16659,16659,16788,16788,0,0,0,16786,[16658,17048],16657,16658,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[422,414],[487,221],413,[3777,477],3777,3777,3777,3777,3777,3777,[3777,291,535],[294,536],[3777,537],[3777,356,540],421,[3777,488],3777,597,[3777,470],471,280,476,[3777,536],[3777,537],[3777,540],[3777,356],421,[3777,360],3777,3777,3777,3777,3777,[3777,547,86],[422,87],[422,151],422,486,423,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3260,4682],3259,3195,3260,[3196,4609],4610,4611,0,0,4616,4551,4548,4551,4552,[3260,4484],[3260,4487],4610,4611,4808,4868,4869,4872,4873,[3259,4874],3196,3196,3195,3259,3196,[3259,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1734,1743,3470],[1798,1748,3471],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[6552,3348,7382],[6552,7383],[6616,7384],[6616,7385],6617,6552,[6552,7382],[6616,7383],[6617,7384],[6553,3219,7385],[1735,3220],[1798,2766],[1735,2767],[1798,2768],1734,1798,[1799,2702],[1734,2703],[1804,1736,2704],1804,1805,1740,1803,1803,1805,[1805,1731],[1734,338],[1735,2831],[1741,1670],1804,[1803,3282],[1739,3271],1803,1804,1805,[1947,1868],[1299,1866,3272],[1739,3277],1805,1803,1739,[1804,1795],[1798,2702],[1798,2703],[1734,2704],[1805,1544],1740,[1805,3469],[1804,3470,2574],[1739,3471,2575],[3340,2576],[525,3341],[461,3277],463,528,[463,715],[461,716],[526,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2827,3470],[2761,3471],3340,3341,3277,0,0,0,0,0,0,3282,3346,3347,[2764,3470],[2826,3471],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,415,416,417,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[14182,8315],14182,14182,14182,14182,14183,14182,[14182,8245],[14182,8246],[14182,8249],8372,8310,8314,[14182,8315],14182,14182,14182,14182,[14182,8308],[14182,8246],[14182,8249],[14182,8315],14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,[14182,8757],[14182,8758],[14182,8759],8693,8696,8697,8698,[14182,8699],14182,14182,14182,14182,14182,14182,[14182,8245],[14182,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8632,8633,8634,8694,8695,8698,[13280,8758],[13343,8759],8693,8436,0,0,0,0,8570,8634,8635,[13279,8758],[13341,8759],[13799,13217,8762],13735,13799,13800,13799,13799,13800,13800,13799,13799,13799,[13800,13084],[13800,13085],[13800,13086],[13800,13087],[13800,13088],[13800,13089],13799,13799,[13800,8435],8436,0,8378,8379,[13345,8249],[13800,8246],8372,8373,0,8378,8379,[13799,13345,8380],13799,13800,13799,13736,13799,13799,13800,13800,13800,13735,13799,13799,[13800,13084],13277,13279,13280,13344,13344,[13800,13153],13799,13800,13800,13799,13799,13736,13800,13799,13800,[13735,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12721,12811,12618,12680,12681,0,0,12623,[13640,12624],13640,13641,13640,13512,13577,13641,13641,13512,[13640,12424],12425,12489,0,0,0,0,0,0,0,0,0,12494,12426,12426,12429,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13220,8636],13342,13220,13280,13344,[13341,8371],8372,8373,0,0,8378,8310,8373,0,0,0,0,8443,[13344,8444],[13344,2145],[13279,2146],[13219,2147],[13280,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16788,0,0,0,0,0,16978,16913,16914,16914,16786,16785,16657,16721,16722,0,0,0,0,0,0,16976,0,16785,16657,16785,16658,16786,16849,16850,16913,16914,0,16978,0,0,0,0,0,0,0,0,0,0,0,16852,16723,16723,16788,16659,16724,16724,16659,16723,0,0,0,16722,16785,16657,16657,0,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[422,477],423,[487,285],[3777,286],3777,661,3777,3777,3777,3777,3777,[3777,419],484,[3777,295],3777,[3777,291],484,[3777,294],3777,3777,[3777,535],[3777,537],[3777,540],3777,3777,3777,3777,[3777,291],[3777,424],3777,3777,3777,[3777,23],[3777,24],[422,150],[422,151],487,423,486,[422,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3195,4746],3195,3195,3195,[3259,4673],4674,0,0,0,0,0,0,0,4616,4548,4551,4611,4808,4809,4932,4933,4936,[3260,4937],3196,3195,3196,3259,3195,[3196,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[1734,3411],[1734,1807],[1799,1812],[1799,3147],3148,0,0,0,3282,3342,3343,3342,3343,3344,3345,3277,0,0,3282,3283,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[462,6677,3411],[528,6681],[464,6678,7447],[6552,7448],6552,6552,6617,[6617,3282],[6616,3344,7447],[6616,3345,7448],[6616,3283],[1798,3284],1735,[1798,2831],1799,[1799,339],1735,[1735,2766],[1734,2767],[1492,1800,2768],1739,1741,1741,1804,1741,1804,[1804,1859],[1741,1860],[1741,1864],[1739,402],[1803,3282],[1741,3283],[1300,1674,3335],[1363,1866],[1947,1867],[1364,1677],2063,[1363,3336,3689],[1803,3276,3690],[1803,3277],1741,[1741,339],[1740,1668],[1798,2766],[1799,2767],[1734,2768],1798,[1739,1606],1739,[1492,2638],[1739,2639],[1739,1604,3404,2640],3405,[464,3148],528,528,464,528,463,[528,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2762,3411],2827,2826,[2763,3404],3405,3148,0,0,0,0,0,0,3155,3410,[2826,3411],2826,2764,[2827,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3342,3343,3346,479,480,481,3408,3409,3341,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[14182,8315],14182,14182,14182,14182,[14182,8308],8309,8310,8313,8373,0,8378,8379,[14182,8246],[14182,8249],[14182,8246],[14182,8249],8372,8310,8313,8379,[14182,8246],[14182,8249],[14182,8250],14182,14184,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,[14182,8757],[14182,8760],[14182,8761],[14182,8762],14182,14182,[14182,8245],[14182,8246],[14182,8250],14182,[14182,8308],8309,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,8696,8697,8698,[13278,8758],[13343,8759],[13342,8762],13282,13344,[13342,8435],8436,0,0,0,0,8507,8698,[13342,8699],13283,13284,[13800,13281],13800,13800,13800,13799,13799,13799,13800,13736,13735,13799,[13800,13340],13344,13341,13343,13343,[13800,13216],13800,13800,[13800,8499],8500,0,0,8378,8313,8310,8373,0,0,0,8443,[13800,8444],13799,13800,13800,13800,13800,13799,13800,13800,13800,13800,13799,[13799,13149],13343,13341,13341,13279,13344,13280,[13800,13281],13799,13799,13799,13736,13799,13799,13799,13800,[13800,8308],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12746,12747,12750,12751,[13512,12785],[13641,12875],[13640,12877],12744,12745,12681,0,12494,12430,[13577,12431],13512,13640,13576,13640,13640,[13640,12361],[13512,12362],12488,12489,0,0,0,0,0,12686,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13280,8699],13341,13341,13342,13278,13218,[13219,8435],8436,0,0,0,0,0,0,0,0,0,0,8378,8314,[13277,8315],13277,[13342,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16788,0,0,0,0,0,0,0,16978,16978,16786,16786,16658,16786,16786,16657,16785,16658,16657,16658,16722,16658,16658,16786,16722,16849,16850,16850,16913,16914,16978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16916,16851,16852,16787,16787,16723,16787,16659,16852,0,0,0,16849,16721,16785,16849,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[486,286],487,487,[487,156],[487,92],[3777,93],3777,3777,3777,3777,3777,3777,[3777,356],421,[3777,296],3777,[3777,419],422,[3777,488],3777,3777,3777,3777,3777,3777,3777,3777,661,[3777,355],[3777,488],3777,3777,[3777,86],[3777,87],[3777,357,88],[421,151],423,423,[487,86],[423,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3259,4682],3260,3259,3195,[3259,4801],4802,4803,0,0,0,0,0,0,0,4808,4868,4869,4872,4873,[3195,4996],[3195,4997],[3260,5000],3196,3259,3260,3260,[3196,4483],[3196,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3344,3345,3277,0,0,3282,3283,[1735,3284],[1798,1617],1746,[1734,1682],[1734,3275],3276,3277,0,3282,3283,3406,3407,3406,3407,3408,3409,3341,3342,3343,3346,3347,[1734,1615,3470],[1744,3471],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[464,3220],525,464,525,[528,6486],[461,6678],6553,[6617,3282],[6616,3283],3408,3409,3347,[1740,1668,3348],[1803,1860],[1741,1861],1798,1734,1735,[1735,340],[1734,2831],[1739,1670],1740,1805,1804,1740,1741,[1741,1665],[1740,1666],[1739,1793],[1803,1794],[1804,3282],[1805,3346],3347,[1299,3399],1947,1300,1300,[1364,404],[1300,3400,3753],[3340,3754],[1739,3341],[1803,3277],[1741,1665],[1740,1666],[1741,1859],[1740,1860,2831],1734,1735,1799,[1741,1541],[1740,1542,2702],[1804,1543,2703],[1734,2704],[1798,3211,653],[528,3212,654],[462,655],[527,656],463,461,525,[462,653],[525,3211,654],[3212,655],656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,415,416,417,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2763,3220],2826,2827,2825,2826,[2827,3211],3212,0,0,0,0,0,0,3219,[2761,3220],2763,2827,2827,2825,[2825,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3406,3407,3406,3407,3410,[1745,543],[1809,544],[1746,545],[1744,3472],[1811,3473],3405,3406,3407,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[14182,8249],[14182,8246],[14182,8249],[14182,8246],8372,8373,0,0,0,0,0,8378,8310,8313,8310,8313,8373,0,0,8378,8310,8313,8314,[14182,8315],14182,14182,14182,14182,14182,14183,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,[14182,8308],8309,8310,8314,[14182,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13799,13340,8760],[13342,8761],[13342,8762],13154,13341,13341,13344,13280,[13342,8563],8564,8565,0,0,8570,8571,[13279,8572],13280,13347,13348,[13800,13345],13800,13800,13800,13800,13800,13799,13800,13800,13799,[13736,13149],13277,13278,[13799,13406],[13735,13406],13280,[13735,13152],13800,[13799,8308],8309,8373,0,0,0,0,0,0,0,0,0,8507,[13799,8508],13800,13800,13800,13799,13800,[13799,8245],[13799,8246],[13799,8250],13736,[13799,13149],[13800,13085],13277,13278,13344,13280,13277,[13800,13215],[13800,13213],[13799,13409],13800,13799,13799,13799,13799,[13800,8245],[13799,8246],[13799,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12810,12811,12814,[13512,12815],13512,13577,13512,[13640,12808],12809,12552,0,0,12494,12430,[13641,12431],13641,13640,13512,[13640,12424],12425,12426,12489,0,0,0,12686,12746,12747,12750,12810,12811,12745,12748,12749,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13156,8444],13342,13283,13284,13219,13344,13277,[13219,8499],8500,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13155,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16723,0,0,0,0,0,0,0,0,0,16657,16658,16658,16657,16657,16722,16721,16658,16657,16721,16722,16722,16786,16722,16721,16913,16914,16914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16915,16915,16852,16852,16852,16852,16851,16915,0,0,0,16914,16786,16785,16913,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[487,93],423,423,[420,156],[3777,548,157],[3777,24],[3777,24],[3777,231,28],[3777,232],3777,3777,3777,[3777,483],[3777,424],3777,[3777,357],421,484,[3777,294],3777,3777,3777,[3777,227],[3777,228],[3777,294],3777,3777,[3777,419],484,[3777,294,23],[3777,24],[3777,150],[3777,151],3777,[3777,483],486,[422,86],87,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3260,4746],6407,3195,3195,[3259,4865],4866,4867,4868,4869,4803,0,0,0,4808,4809,4932,4933,4936,[3260,4937],3195,3196,3260,6407,3195,3260,[3196,4546],4547,4548,4611,0,0,0,0,4808,4868,4869,4870,4871,4868,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3408,3409,3341,3342,3343,3346,3347,[1552,3348],1746,[1735,1682],1799,[1799,3339],3340,3341,3342,3346,3347,[1798,3470],[1799,3471],[1798,3470],[1734,3471],[1734,3472],[1799,3473],3405,3406,3407,3410,[1735,3411],[1735,1679],1744,[1810,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[462,3092],463,527,526,461,[527,6487,3282],[6553,3346],3347,[1741,3472,2511],[1804,3473],[1741,3411],[1804,1793],[1803,338],1740,[1805,1668],1735,1799,1798,[1805,1671],1804,1803,[1804,3282],[1805,3342],[1805,3343],[1805,3277],[1804,1729],[1491,1730],[1803,1857],[1740,1858],[1740,3219],3410,[1299,3411],[1364,769],1364,1299,1364,1300,1300,[1364,3404],3405,[1803,3148],[1741,1729],[1740,1730],1740,1804,[1805,1668],1735,1799,1734,[1734,2766],[1798,2767],[1798,2768],[1798,3211,717],[463,3212,718],[527,719],[463,720],463,461,528,[461,717],[463,3275,718],[3276,719],[3277,720],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3214,480,481,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2763,3092],2762,2763,[2825,3083],3084,3085,0,0,0,0,0,0,3090,3091,[2762,3092],2764,2827,[2761,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1744,3470],[1746,3471],[1811,3470],[1744,3471],[1808,3474],1744,1747,1811,1810,1745,[1746,3469],[1746,3470],[1746,3471],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[14182,8380],14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,14182,[14182,8371],8372,8373,0,8378,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13799,8699],[13800,13213],13277,13278,13277,13278,13279,13280,[13799,13405],[13342,8627],8628,8629,8630,8631,8634,8635,[13342,8636],13280,[13800,13215],[13800,13214],[13800,13409],13800,13800,13799,13800,13799,13799,13800,[13800,8245],[13735,8246],[13148,8250],13342,[13799,13216],13800,13799,[13799,13340],13343,[13799,13152,8371],8372,8373,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,8315],13800,13800,13799,[13736,8308],8309,8310,8314,[13800,8315],[13799,13148],13342,13279,13343,13342,13277,[13799,13345],13799,[13799,8245],[13800,8246],[13799,8249],[13799,8250],13799,13800,[13799,8308],8309,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,6084,6085,6086,4868,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13512,12874],[13640,12875],[13641,12878],13512,13641,13640,13576,13512,[13640,12615],12616,0,0,0,12494,12495,[13512,12365],[13576,12362],[13512,12365],12488,12489,0,0,0,0,12686,12687,12810,12811,12814,[13648,12874,13133],[13587,12875,13134],[12809,13135],12812,12813,12745,12746,12656,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13277,8508],13220,13347,13348,13219,13156,13219,[13280,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16724,16788,16788,16659,16660,16659,16724,16659,16660,0,16657,16722,16658,16722,16786,16849,16849,16850,16850,16849,16850,16850,16850,16849,16850,16978,0,16978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16916,16915,16916,16916,16915,16980,0,0,0,16977,16785,16785,16977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[422,24],[420,28],[3777,358],[3777,156],[3777,292,88],[422,91],[487,92],[3777,296,93],3777,597,3777,[3777,547],[3777,358],3777,3777,[3777,547],[3777,548],[3777,358],3777,597,3777,[3777,291,149],[422,24],[3777,358,28],3777,3777,[3777,483],[422,86],[422,87],[422,88],[3777,294,151],3777,3777,[3777,356],[421,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3195,4553],3260,3259,3260,[3260,4930],4931,4932,4933,4867,4803,0,4808,4872,4873,[3196,4996],[3260,4997],[3196,5000],3196,3196,3195,3195,[3195,4483],[3196,4484],[3260,4487],4610,4611,0,0,0,0,0,4808,4809,4932,4933,4934,4935,4740,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1798,3470],[1798,3471],[1734,3472],[1798,1615,3473],3405,3406,3407,3410,[1810,3411],1745,[1799,1812],1798,1799,1799,[1799,3404],3405,3214,3410,[1799,3411],1799,1799,1735,1799,1799,1734,[1798,3469],[1734,3470],[1798,3471],[1799,3474],1798,[1798,1743],1809,1746,[1872,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[462,3156],462,526,526,[527,3282],[462,3346],3410,[1804,3411,2574],[1805,2575],[1804,2576],1803,[1803,1857],[1739,1858],1804,[1491,1604],1735,1734,1735,[1740,1606,3282],[1739,3342],[1805,3343],[1739,3346],3406,3407,[1740,3276],[1803,3277],1803,1805,[1739,3282],[1804,3283],[2012,3284],1363,[1363,833],2012,1363,2127,2128,[1300,769],1299,[1363,3147],[1740,3148],[1803,2511],1805,1805,[1741,403],1492,[1739,1603],1735,1735,[1804,1671,340],[1803,1668,2831],[1739,1860,3020],[463,3021,781],[464,3085,782],[463,783],[464,784],527,461,528,[527,781],[526,3339,782],[3340,783],[3341,784],3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2763,543],[2763,544],[2826,545],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2828,3156],2827,2761,[2827,3211],3212,0,0,0,0,0,0,0,0,3219,[2763,3220],2827,2826,[2762,3910],3911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1810,3156],1811,1746,1744,1744,1744,1811,1744,1746,1811,1746,1747,1808,1746,[1811,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[14182,8444],14182,14182,14182,14182,14182,14182,14182,[14182,8245],[14182,8246],[14182,8249],[14182,8250],14182,14182,14182,14184,14182,14182,14182,[14182,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8255,[13800,8256],13800,13735,[13799,13404],[13800,13407],13277,13280,13154,[13800,13215],13799,[13799,13213],[13800,13405,8692],8693,8694,8695,8698,[13800,13407,8699],[13800,13408],[13800,13216],13799,13735,13799,[13800,8245],[13800,8246],[13735,8249],[13799,8250],13800,13800,[13799,8308],8309,8310,8314,[13799,13215,8315],13799,13799,13800,[13800,13404],13341,[13342,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13799,8246],[13800,8249],[13800,8246],8372,8373,0,8378,8379,[13800,13212,8380],13092,13343,[13799,13215],[13799,13213],[13800,13408],[13799,13216],[13799,8308],8309,8310,8313,8314,[13799,8246],[13800,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4932,6148,6149,6150,4740,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13577,12560],13512,13512,13640,13512,13512,13512,13513,[13512,12424],12425,12489,0,0,0,0,12494,12429,12426,12429,12489,0,0,0,0,12686,12750,12751,[13576,12874],[13640,12875],[13512,13583,12878],[13648,13197],[13650,13198],[13585,12873,13199],[13585,12876],[13648,12877],12809,12810,12720,12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13220,8444],13155,13280,13341,13342,13279,13342,[13341,8627],8628,8629,8630,8631,8565,0,0,8570,8822,8823,8824,8825,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16788,16788,16723,16788,16724,16724,16723,16724,16787,0,16849,16662,16850,16849,16850,16914,16914,16913,16913,16913,16913,16914,16914,16914,16913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16785,16785,16721,16722,16657,16722,0,0,0,0,0,16980,0,0,0,0,0,0,16722,16658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,91,92,[3777,93],3777,[3777,291],422,[423,156],[422,157],[3777,24],[3777,28],[3777,292],[3777,294],3777,661,[3777,149],[3777,24],[3777,93],3777,[3777,149],[3777,24],[3777,27],[486,87],[486,91],[423,92],[3777,93],3777,[3777,357,86],[487,87],[422,151],422,484,[3777,228],[3777,294],3777,[3777,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3260,4618],3195,3196,3195,[3196,4995],[3260,4996],[3196,4997],4931,4674,0,4681,4936,[3196,4937],3195,3195,3196,3196,3259,3260,[3259,4546],4547,4548,4551,4611,0,0,0,0,0,4808,4872,4873,[3260,4996],[3259,4997],[3259,4998],[3195,4999],[3195,4996],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1799,3411],1734,1734,1798,[1798,1679],[1810,3469],[1735,1748,3470],[1798,3471],[1799,1680,3474],[1734,1872],[1798,1873],1747,[1735,1618],1734,1798,1735,[1734,3469],[1809,3470],[1799,3474],1798,1798,1734,1798,1734,1799,1734,1799,1734,1735,1734,1799,[1798,1807],1745,[1798,1683],[1798,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[464,3220],526,464,525,[464,3155],3410,[1804,3411],[1428,1604,2638],[1741,1542,2639],[1805,1543,2640],[1804,1540],[1739,1541],[1804,1542],[1805,1543],1799,[1799,3282],[1734,3342],[1799,3343],[1798,3346],3406,3407,3410,[1364,3470],[1364,3471],3340,[1741,3341],[1804,3344],[1805,3345],[1739,3346],3347,[2011,3348],1364,1300,1300,1300,2191,2192,[1364,833],1364,[1300,3211],[1803,3212,2574],[1739,2575],[1804,2576],1803,1739,1805,[1804,1667],1798,[1740,1800],1739,[1805,3083],[463,3084],[525,3085,845],[527,846],[526,847],[462,848],461,525,525,[464,845],[526,846],[527,3404,847],[3405,848],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2764,3411],2762,2827,2826,[2762,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,1952,3342,3277,0,0,0,0,0,0,3219,[2761,3220],2826,2828,[2762,3275],3276,3277,0,0,0,0,0,0,3282,3283,[2828,3284],2762,2764,[2762,3974],3975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1747,3220],1811,1808,1810,1744,1746,1746,1809,1808,1811,1746,1746,1811,1744,[1810,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[14182,8508],14182,14182,14182,[14182,13160],14182,[14182,8245],[14182,8246],8309,8310,8313,8314,[14182,8250],14182,14182,14182,14182,14182,14182,[14182,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8319,[13800,8320],13800,13800,13800,13800,[13800,13214],[13800,13408],[13735,13216],13800,13799,13800,13799,[13799,8757],[13800,8758],[13800,8759],[13800,8762],13800,13799,13800,13735,13799,[13799,8308],8309,8310,8313,8314,[13800,8246],[13800,8249],8372,8373,0,8378,8379,[13800,8380],13800,13799,13800,[13800,13213],[13799,13405,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8373,0,0,0,8443,[13342,8444],13278,[13735,13345],13735,13799,13799,[13800,8371],8372,8373,0,0,8378,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[4946,4996],[4883,6212],[4947,6213],[4883,6214],[4883,4996],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13640,12624],13576,13512,13640,13640,13512,[13641,12361],[13640,12362],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13512,12815],13641,13640,[13640,13647],[13587,13261],[13650,13262],[13586,13263],13586,13584,[13584,12873],[13650,12874],[13584,12784],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13280,8508],13220,13218,13219,13343,13343,13155,13343,[13280,8692],8693,8694,8695,8629,8630,8631,8634,8886,8887,8888,8889,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16788,16723,16723,16852,16852,16851,16852,16659,16659,0,16914,16726,16913,16913,16913,16978,0,16978,16978,16978,16978,0,16978,0,16978,0,0,0,0,0,16723,16787,16787,16660,0,0,16786,16722,16722,16658,16657,16721,16721,16657,16785,16721,16785,16657,16786,16657,0,0,0,0,0,0,0,0,16722,16721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[3777,24],[3777,355,24],[422,93],423,[422,156],[487,91],[422,92],[3777,483,93],484,[3777,228],[3777,294,86],[423,87],[422,91],[423,157],[3777,27],[423,87],[487,91],[423,88],[487,151],423,[420,156],[3777,548,157],[3777,24],[422,150],[422,151],422,486,486,487,484,[3777,228],[485,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3260,4618],6407,3260,3260,3195,3260,[3196,4673],4674,0,4616,4617,[3260,4618],3195,6472,3259,3196,3260,[3196,4609],4610,4611,0,0,0,0,0,0,0,0,4681,4936,[3196,4937],3259,3259,3196,3259,3196,[3195,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1799,3220],1799,1798,1734,1799,[1798,1743],1809,[1735,1682],1734,1799,1735,1798,[1734,1680],1745,[1735,1552],[1735,1618],1799,[1735,1617],1808,[1734,1618],1798,1798,1735,[1798,3020],[1799,2958],[1734,2961],[1799,2962],1735,1735,1734,1798,[1798,1616],1810,[1799,1620],1734,[1735,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[464,3284],464,461,527,[464,3219],[1805,3220],1740,[1739,1603,2702],[1734,2703],[1734,2704],1798,1798,1734,1735,[1798,3282],[1798,3283],3406,3407,3410,[1364,3470],[1948,3471],[1300,3474],1363,1363,[1299,3404],3405,3408,3409,3410,[1299,3411],1299,1364,1299,1364,1300,1299,1299,1300,[1299,3083],[1735,3084],[1803,1542,3085,2638],[1804,1543,2639],[1805,1607,2640],1805,1803,1803,[1739,1731],1734,[1740,1670,1665],[1741,1666],[1741,3147,2511],[461,3148],[462,909],[461,910],[526,911],[464,912],526,525,528,[525,909],[527,910],[463,911],[528,3211,912],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2827,3156],2764,2762,2761,2827,2764,[2826,3211],3212,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3406,2016,3214,3276,3277,0,0,0,0,0,3155,[2827,3156],2826,2826,[2763,3339],3340,3341,3342,3343,3342,3343,3344,3345,3346,3347,[2764,3348],2826,2763,[2827,4038],4039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1808,3156],1746,1746,1810,1810,1744,1747,1745,1811,1746,1747,1809,1744,1747,[1747,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[14182,8315],14182,14182,14182,[14182,8308],8309,8310,8373,0,0,8378,8314,[14182,8315],14182,14182,14182,14182,[14182,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8383,[13800,8384],13800,13799,13799,13799,13799,[13800,8245],[13736,8246],[13800,8249],[13799,8250],13799,13799,13800,13800,13799,13800,13800,13800,13799,[13799,8245],[13799,8246],8372,8373,0,0,8378,8310,8313,8373,0,0,0,8443,[13800,8444],13799,13800,13800,13800,[13799,8627],8628,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13800,13407,8508],[13735,13408],[13799,13215],13799,13800,13735,[13799,8435],8436,0,0,0,0,0,0,0,0,0,0,0,8570,8630,8631,8630,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[4947,4682],4883,4947,4947,4946,4882,[4882,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13640,12688],13576,13640,13641,13512,[13512,12487],12488,12426,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13512,12624],13512,13641,[13640,13456],13649,[13649,13325],[13584,13326],[13585,13327],13648,13650,13648,13648,13649,[13587,12808],12809,12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13218,8315],13220,13344,13278,13219,13219,13280,13279,[13277,8757],[13219,8758],[13156,8759],8693,8694,8695,8698,[13218,8950],[13342,8951],[13278,8952],[13218,8953],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16659,16787,16724,16659,16915,16916,16916,16916,16723,16788,16660,16787,16724,16659,16659,16978,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16659,16723,16659,16724,16660,0,0,16786,16785,16722,16721,16658,16721,16786,16722,16721,16785,16721,16658,16721,16785,16721,16721,16721,16657,16786,16785,16721,16786,16722,16657,16721,16786,16721,16657,16658,16658,0,0,0,0,0,0,0,0,0,0,0,0,0,156,88,91,92,[486,93],487,486,[486,156],[422,157],[486,24],[487,27],[486,150],[486,151],487,[422,156],[423,88],[486,151],422,487,[486,23],[486,27],[3777,358,158],[3777,156],[3777,88],[3777,356,151],421,487,422,487,422,486,422,[486,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3196,4682],3260,3196,3196,3196,6471,[3196,4737],4738,0,0,4681,[3195,4682],3259,3196,3196,3196,3195,[3259,4673],4674,0,0,0,0,0,0,0,0,0,4745,[3259,4746],3259,6408,3259,3195,3195,3196,3259,[3259,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1735,3284],1799,1798,1799,1734,[1735,1807],[1734,1620],1799,1798,1735,1735,1734,1798,[1799,1680],1810,1744,[1799,1552],1810,1744,1744,[1799,1552],[1734,1619,2957],[1735,2958],3084,3022,3025,3026,[1798,3027],1798,1798,1734,[1798,1807],1746,[1799,1748],1735,1735,[1799,3404],3405,3212,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[462,3348],463,464,528,[464,3090],[461,3091],[1739,3092],[1740,1731,2766],[1735,2767],[1734,2768],1735,1734,[1739,1670],[1741,1669,3282],[1735,3346],3347,[1363,3470],[1363,3471],[1363,3474],1364,1300,1363,[1364,769],1936,1363,[1364,3469],[1363,3472],[1363,3473],[1363,3474],1300,2063,1299,1364,1364,1299,1363,1364,1363,[1300,3147],[1735,3148],[1735,2702],[1799,2703],[1735,2704],[1804,1606],1803,[1739,1604],1735,[1804,1800],[1805,1729],[1741,2574,1730],[1803,3275,2575],[462,3276,2576],[462,3277],[464,974],[528,975],463,527,528,525,526,[527,974],[461,3083,975],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2764,3156],2828,2761,2825,2828,2762,[2762,3147],3148,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2828,3470],[2828,2080],[2826,3470],3340,3341,3277,0,0,0,0,3219,[2763,3220],2827,2827,2826,[2761,3404],3405,3406,3407,3406,3407,3408,3409,3410,[2827,3411],2764,2827,2828,[2762,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1810,3220],1810,1747,1745,1745,1810,1808,1810,1810,1810,1809,1746,1747,1810,[1745,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[14182,8246],[14182,8249],[14182,8246],8372,8373,0,0,0,0,0,8378,8379,[14182,8246],[14182,8249],[14182,8246],[14182,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,8315],13800,13735,13735,[13800,8308],8309,8310,8313,8314,[13799,8249],[13799,8246],[13800,8249],[13735,8246],[13799,8250],13799,13799,13799,[13736,8308],8309,8310,8373,0,0,0,0,0,0,0,0,0,0,8507,[13799,8508],13799,13799,13735,13800,13800,[13800,8692],8693,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[13736,8572],13800,13800,13799,13800,13799,[13799,8499],8500,0,0,0,0,0,0,0,0,0,0,8570,8571,8694,8695,8502,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[4946,4746],4883,4947,4946,4883,4946,[4882,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13512,12752],13640,13640,13576,13640,[13512,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13512,12688],13512,[13512,13391],13585,13650,13648,13650,[13512,13712],[13641,13713],13648,13648,[13584,12943],[13586,12944],13586,[13587,12615],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13280,8380],13156,13277,13344,13155,13344,13090,13279,13341,13280,[13155,8757],[13344,8758],[13341,8759],[13220,8762],13219,13278,13277,13155,[13344,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16723,16724,16788,16788,16723,0,16980,16980,0,16723,16787,16788,16788,16724,16659,16724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,16723,16724,16660,16723,16788,0,0,16722,16721,16785,16658,16721,16786,16722,16722,16785,16658,16722,16722,16786,16657,16786,16657,16657,16786,16721,16786,16722,16786,16786,16657,16849,16850,16850,16722,16657,16785,16722,16657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[486,24],[486,158],486,[422,156],[3777,294,91],[3777,88],[3777,291,151],422,487,422,486,487,423,[487,86],87,88,92,[3777,93],3777,[3777,23],[485,27],[486,24],[486,28],422,422,487,[487,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3195,4746],3196,3196,3260,3259,3260,[3196,4673],4674,0,0,4745,[3195,4746],3196,3196,3195,3260,3195,[3260,4737],4738,0,0,0,0,0,0,0,0,0,4616,4617,[3260,4618],3196,3260,3196,6408,3260,[3196,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1799,1812,3348],1735,1734,1798,[1734,1617],1809,[1799,1684],[1799,2957],[1799,2958],[1799,2962],1735,1798,1734,1734,[1798,1807],1745,[1799,1872],[1734,1873],[1799,1682],[1798,1680],[1734,1872,3020],3021,3022,3085,0,0,3090,3091,[1734,2961],[1799,2958],[1799,1616,2962],1811,1745,1745,[1735,1618],1798,1799,[1735,3275],3276,3277,0,0,0,0,3282,3283,3406,3407,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[463,3411],528,528,526,461,462,[526,3155],[1740,3156],[1740,1668],[1798,2831],1734,[1734,340],[1804,1608],1803,[1739,3155],3410,[1299,3411],1299,1299,1299,1363,1300,1364,[1363,833],1299,1363,1300,1364,1299,1363,[1300,769],1363,1364,1300,1299,1364,1299,1948,1299,[1363,3211],[1735,3212],[1734,2766],[1799,2767],[1798,2768],[1734,402],[1805,1540],1734,1799,1735,[1804,1606],[1805,2638],[1804,1604,3339,2639],[1735,3340,2640],[527,3341],[463,3277],464,461,464,[528,651],[525,652],463,461,[464,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2762,3220],2761,2827,2825,2826,2827,[2761,3211],3212,0,0,0,0,0,0,0,0,0,0,0,3155,[2762,3156],2762,2763,2762,[2827,3404],3405,3148,0,0,0,0,3155,[2762,3156],2827,2763,2762,2762,[2826,3469],[2828,3470],[2761,3471],[2825,3470],[2828,3471],[2763,3472],[2826,3473],[2763,3474],2764,2826,2825,2827,[2763,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1811,3156],1745,1745,1746,1747,1810,1809,1809,1744,1811,1747,1809,1745,1808,[1811,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8373,0,0,0,0,0,0,0,8378,8310,8313,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13799,8249],[13799,8246],[13800,8249],8372,8373,0,0,8378,8313,8310,8313,8310,8314,[13800,8246],[13736,8249],[13800,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13799,8315],13800,13800,13799,13799,13800,[13799,8757],[13799,13276,8758],[13342,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13800,8636],13800,13800,13800,13800,13800,[13799,8499],8500,0,0,0,0,0,8570,8630,8631,8632,8633,8634,8635,[13799,8758],[13800,8759],[13800,13340,8758],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[4947,4810],4947,4946,4946,4946,4946,[4946,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13641,12815],13512,13512,13512,13640,13512,[13577,12615],12616,0,0,0,0,0,0,12686,12748,12749,12681,0,0,0,0,0,12686,12750,12751,[13576,12752],13512,[13640,13647],13650,13586,13648,[13512,13522],13640,13641,[13512,13520],13587,[13586,13007],[13649,13008],13649,[13641,13523,12743],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13155,8444],13279,13218,13220,13278,13344,13280,13156,13344,13091,13155,13283,13284,13344,13277,13341,13090,13219,13341,[13155,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16723,16787,16788,16787,16724,16788,16724,16659,16659,16788,16659,16660,16724,16659,16787,16660,16659,16659,16660,16787,16788,16660,16788,0,0,0,0,16723,16724,16659,16723,16724,16788,16660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16660,16788,16787,16788,16787,0,0,16657,16786,16722,16785,16657,16722,16785,16657,16657,16657,16721,16657,16785,16657,16721,16785,16721,16721,16849,16849,16849,16850,16849,16849,16914,16913,16914,16657,16721,16657,16658,16786,16721,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,156,88,92,[422,93],[422,23],[358,27],[3777,24],[3777,419,93],423,422,487,486,486,[487,149],150,151,0,156,157,[3777,24],87,88,91,92,[486,93],[423,23],[486,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3196,4810],3260,3260,3196,3195,3260,[3259,4737],4738,0,4808,4809,[3195,4810],3195,3196,6408,3260,[3196,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,4681,[3196,4682],3259,3259,3260,3196,[3195,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1799,1807,3411],1745,[1798,1618],[1799,1617],[1798,1552],1744,1810,[1734,1748,3020],3021,3022,3026,[1734,2961],[1799,2958],[1735,2961],[1735,1616,2962],1811,[1799,1683],1799,1799,1735,[1798,3083],3084,3085,0,0,0,0,0,3090,3025,3022,3026,[1746,3027],1808,1809,[1798,1812],1734,1735,[1799,3339],3340,3341,3342,3343,3344,3345,3346,3347,[1735,3470],[1798,3471],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[526,3220],462,464,525,463,526,461,[461,3219],[1805,3220],1741,[1803,1603],1734,[1734,2511],[1804,1672],1739,[1804,3219],[1300,3220],1363,1299,1364,1300,1300,1935,1364,1300,1299,2012,1364,1363,1300,1299,[1363,833],1299,1363,1947,1363,1300,1300,1948,1300,[1300,3275],[1735,3341],[1798,3342],[1735,3343,2831],[1798,3344],[1734,3345],[1739,1860,3277],[1740,1861],[1805,1862],[1740,1863],1799,[1804,1540,2702],[1799,2703],[1798,3404,2704],3405,[463,3148],659,660,462,[527,715],[461,716],528,464,[463,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2762,3027],2762,2764,2761,2828,[2828,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,3219,[2762,3220],2827,2761,2762,2764,[2828,3147],3148,0,0,0,0,3219,[2764,3220],2828,2761,2761,2762,2764,2826,2825,2761,2764,2764,2764,2764,2826,2763,2763,2827,[2827,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1808,3220],1811,1811,1811,1745,1747,1744,1747,1810,1810,1809,1811,1808,1811,[1811,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8313,8373,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13799,8380],13800,13799,13799,13800,13799,[13800,13340],13278,[13279,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13800,8699],13800,13800,13799,13799,13800,[13799,8371],8372,8373,0,0,0,0,8570,8634,8694,8695,8696,8697,8698,[13799,8699],13799,13799,[13799,13213],[13342,8692],8693,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[4946,4874],4946,4883,4882,4883,4882,[4883,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13577,12560],13641,13513,13641,13512,13641,13576,[13576,12679],12680,12681,0,0,0,0,12686,12687,12812,12813,12680,12681,0,0,0,0,12559,12814,[13641,12815],13641,13640,[13512,13711],[13641,13714],[13512,13715],[13640,13523],13577,13640,13512,13641,[13577,13647],13587,13648,[13512,13652],13641,[13576,12808],12809,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13278,8444],13219,13280,13280,13341,13154,[13219,8245],[13220,8246],[13156,8249],[13280,8250],13278,13347,13348,13156,13279,13278,13154,13220,13277,[13219,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16659,16724,16723,16723,16723,16659,16660,16788,16787,16787,16659,16660,16660,16724,16788,16787,16659,16723,16659,16723,16723,16852,16852,0,0,0,0,16788,16788,16787,16724,16723,16723,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16852,16851,16659,16723,16659,16852,0,0,16786,16657,16657,16657,16721,16657,16721,16786,16722,16658,16722,16786,16786,16786,16657,16657,16850,16849,16913,16914,16914,16913,16914,16913,16978,16978,16978,16786,16786,16785,16786,16785,16657,16721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,87,88,91,157,[423,24],[422,28],486,486,486,[487,213],214,0,0,0,156,91,151,0,0,156,92,87,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4870,4871,4870,4871,4872,4873,[3259,4874],3260,3260,3195,3259,[3259,4546],4547,4611,4808,4872,4873,[3196,4874],3260,3195,3195,[3259,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,4745,[3260,4746],3260,3196,3195,3259,[3195,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1735,3220],[1735,1871],[1735,1872],[1798,1873],1747,1811,[1744,2957],[1745,2958],3084,3085,0,3090,3025,3022,3025,3026,[1734,1682,3027],1735,1734,1798,1799,[1735,3211],3212,0,3282,3342,3343,3277,0,0,0,0,3090,3091,[1746,2958],[1811,2961],[1798,1682,2962],1799,1734,1735,[1798,1617,3404],3405,3406,3407,3408,3409,3410,[1798,3411],1798,1734,[1799,1615,3404],3405,3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[461,3027],461,526,464,527,528,[528,3155],[1741,3156],1803,[1740,1667],[1798,2574],[1798,2575],[1740,1736,2576],1803,[1739,3090,1665],[1739,3026,1666],[1947,3027],[1364,2511],1363,1364,1364,1300,1299,1299,1299,1364,1300,1300,1299,1300,1299,2011,1363,1364,2011,1363,1363,1300,2012,[1300,3339],3405,3406,3407,3408,3409,[1740,3276],[1803,3277],1740,1739,[1740,1668],[1799,2766],[1799,2767],[1798,2768],[1734,3211],[527,3212],723,724,462,525,525,463,462,[464,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2764,3027],2764,2761,2764,[2762,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,3155,[2827,3156],2761,2826,2764,2827,[2826,3211],3212,0,0,0,0,3219,[2826,3220],2825,2828,2826,2828,2763,2825,2763,2825,2825,2764,2826,2827,2762,2763,2826,[2763,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1808,3027],1744,1810,1746,1808,1745,1744,1809,1809,1747,1746,1809,[1745,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13799,8444],13800,13799,13799,13799,[13799,13149],13283,13284,13278,[13278,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13800,8444],13799,13800,13799,13735,13800,13736,[13799,8435],8436,0,0,0,0,0,8255,8698,[13280,8758],[13278,8759],[13342,8760],[13800,8761],[13799,8762],13800,13799,13800,[13800,13084],13343,[13344,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[4883,4937],4882,4883,4947,4947,4947,4882,4882,[4882,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13512,12624],13641,13512,13641,13512,13577,13512,[13512,12743],12744,12745,12746,12747,12748,12749,12750,12751,[13640,12876],[13640,12877],12744,12745,12681,0,0,0,12623,[13640,12624],13640,13512,13640,13576,13640,13512,13641,13512,13641,13641,13641,[13577,13711],[13576,13714],[13641,13715],[13641,13716],13640,13576,[13640,12873],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13277,8508],13277,13342,13280,13278,[13155,8308],8309,8310,8313,8314,[13280,8315],13344,13155,[13218,8245],[13343,8249],[13342,8246],[13218,8250],13219,[13343,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16659,16659,16852,16851,16851,16851,16851,16852,16851,16851,16724,16851,16852,16852,16851,16852,16852,16851,16852,16788,16787,16916,16916,0,0,0,0,16852,16852,16724,16787,16723,16787,16851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16916,16915,16851,16851,16852,16915,0,0,16849,16850,16850,16786,16786,16786,16722,16722,16657,16658,16721,16785,16850,16849,16849,16849,16913,16914,16978,16977,16978,16978,16978,16978,0,0,0,16785,16722,16657,16786,16850,16850,16849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,151,0,0,156,91,92,[486,93],487,[422,86],87,151,0,0,0,0,0,0,0,0,0,156,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4934,4935,4934,4935,4936,[3195,4937],3195,3195,6471,3196,[3260,4609],4610,4611,0,4681,4936,[3195,4937],3195,3260,3259,3260,[3195,4737],4738,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3196,4810],3260,3259,3196,3196,[3260,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1734,3092],1735,1799,[1799,1681],[1810,3020],3021,3022,3085,0,0,0,0,0,0,3090,3091,[1735,3092],1798,1798,1735,[1798,3275],3276,3342,3346,3406,3407,3276,3277,0,0,0,0,3090,3022,3025,3091,[1798,3092],[1734,1616],[1734,1552],1811,[1798,1812,3469],[1735,3470],[1799,3471],[1735,3472],[1807,3473],[1799,1620,3474],1798,1734,1798,[1735,1679,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[461,3092],527,464,463,525,[527,3219],[1804,3220],1739,[1741,1731],[1735,2638],[1799,2639],[1799,2640],[1740,1607],[1803,1729],[1805,3090,1730],[1803,3091,2574],[1299,2961,2575],[1300,2962,2576],1363,1299,2011,1300,1363,2011,1299,1299,1299,1364,1300,1364,1363,1363,1363,1300,1299,1300,1947,[1363,769],1364,[1300,3469],[1364,3470],[2012,3471],[1300,3472],[1300,3473],3340,[1740,3341],[1803,3277],1803,1741,[1492,1859],[1740,1860,2831],[1739,1861],[1740,1862,3211],[464,3212],526,[463,653],[463,654],[464,655],[528,656],526,528,526,[461,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2762,3092],2763,2763,2827,[2762,3404],3405,3341,3277,0,0,0,0,0,0,0,0,3219,[2761,3220],2827,2761,2827,2828,[2825,3275],3276,3277,0,0,3282,3283,[2826,3284],2761,2825,2826,2825,[2764,2957],[2826,2958],[2762,2958],[2826,2961],[2762,2958],[2828,2958],[2827,2961],[2763,2958],[2826,2961],[2762,2958],[2828,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1810,3027],1744,1745,1745,1744,1810,1808,1745,1810,1809,[1811,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13799,8508],13799,13800,13799,13800,[13800,13213],13347,13348,13343,[13343,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13799,8508],13800,13800,13799,13799,13800,13799,[13799,8499],8500,0,0,0,0,0,8255,[13277,8256],13343,13342,13278,[13800,13151],13800,13735,13800,[13800,13150],13342,13343,[13735,13215],[13799,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[4883,4682],4882,4946,4883,4883,4947,4883,4946,4883,4946,[4883,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13640,12431],13640,13640,13640,13641,13640,13641,[13640,12808],12809,12810,12811,12812,12813,12814,[13512,12815],13640,13640,[13640,12808],12809,12745,12681,0,0,12559,[13641,12560],13640,13641,13641,13640,13512,13640,13512,13513,13576,13512,13512,13641,13512,13641,13641,13641,13641,13640,[13641,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8571,[13279,8572],13343,13155,13219,[13277,8371],8372,8373,0,0,8378,8379,[13277,8249],[13280,8246],8309,8313,8310,8314,[13219,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16723,16852,16915,16916,16916,16915,16916,16916,16916,16916,16787,16915,16916,16915,16915,16915,16916,16915,16915,16660,16787,16980,0,0,0,0,0,16915,16916,16852,16851,16787,16851,16916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16916,16915,16916,16980,0,0,16913,16914,16913,16722,16786,16721,16658,16721,16721,16785,16786,16786,16914,16914,16913,16914,16977,16978,0,0,0,0,0,0,0,0,0,16785,16785,16658,16721,16914,16913,16914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[487,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3259,4998],[3260,4999],[3195,4998],[3259,4999],[3195,5000],3196,3260,3195,3196,3259,[3259,4673],4674,0,0,4745,[3196,4746],3260,3196,3260,3260,3260,[3196,4801],4802,4803,0,0,0,0,0,0,0,4808,4868,4869,4872,4873,[3260,4874],3195,3195,3195,[3195,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1735,3156],1734,1798,[1735,3083],3084,3085,0,0,0,0,0,0,0,0,0,3219,[1735,3220],1798,1799,1798,[1798,3339],3340,3214,3410,[1735,3470],[1799,3471],3340,3341,3277,0,0,0,0,0,0,3155,[1799,3156],[1734,1680],[1799,1872],1746,1809,[1734,1619],1799,[1798,1617],1809,[1734,1748],1799,1798,1735,[1798,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[527,3092],526,527,527,[462,3090],[528,3091],[1805,3092],[1741,1668,340],[1734,2702],[1735,2703],[1734,2704],1735,[1805,1606],1740,[1805,3090,2638],[1740,3025,2639],[1741,3026,2640],[1363,3027],1299,1363,1300,1363,1299,1363,1363,1299,1363,1299,1300,2011,1364,1300,1363,1300,1363,1363,[1363,833],1300,1364,1363,1299,1363,1299,[1300,3404],3405,[1805,3212],1739,1804,1739,1804,[1804,340],[1804,3275],[463,3276],[461,3277],[463,717],[527,718],[525,719],[461,720],528,525,525,462,[527,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2827,3156],2828,2762,2761,2763,[2825,3404],3405,3148,0,0,0,0,0,0,0,0,3155,[2764,3156],2828,2828,2826,2763,[2825,3339],3340,3341,3342,3343,3346,3347,[2825,3348],2761,2826,2761,[2828,3020],3021,3022,3022,3025,3022,3022,3025,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1746,3027],1810,1747,1747,1810,1745,1810,1810,[1745,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13799,8315],13800,13799,13799,13800,[13799,13148],13344,[13279,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,8315],13800,13800,13799,13799,13799,[13799,8563],8564,8565,0,0,0,0,8319,[13800,13404,8320],[13800,13215],[13736,13214],13278,13280,[13800,13152],13800,[13799,13149],13280,13342,[13799,13215],13800,[13799,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[4882,4746],4947,4882,4882,4882,4882,4883,4947,4946,4947,[4883,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13512,12362],[13512,12365],[13640,12366],13640,13512,13641,13512,[13577,12873],[13641,12874],[13640,12875],[13512,12876],[13640,12877],[13641,12878],13641,13640,13513,13577,[13641,12873],12809,12552,0,0,12623,[13577,12624],13640,13641,13576,13640,13640,13640,13641,13641,13577,13641,13640,13512,13512,13641,13512,13640,13513,13512,12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8570,8634,8635,[13280,8636],13218,13218,13341,[13279,8435],8436,0,0,0,0,8378,8313,8310,8373,0,0,8378,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16788,16916,0,16980,16980,0,0,0,16980,16980,16659,0,0,16980,0,16980,16980,0,16980,16660,16659,0,0,0,0,0,0,0,16980,16915,16916,16659,16916,16980,0,16657,16657,16721,16721,16721,16722,16721,16786,16657,16785,16721,16722,0,0,0,0,16980,0,0,0,0,16978,16978,16977,16850,16849,16849,16850,16850,16849,16661,16850,16849,16978,16978,16977,16978,0,0,0,0,0,0,0,0,0,0,0,16786,16722,16850,16849,16978,16977,16977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3195,4937],3196,3196,3260,3259,3195,6472,3260,3195,3195,3196,[3195,4737],4738,0,0,4745,[3195,4746],3195,3195,3195,3259,3260,[3260,4865],4866,4867,4803,0,0,0,0,0,4808,4809,4932,4933,4936,[3196,4937],3260,3259,3260,[3196,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1798,3220],1734,1798,[1798,3211],3212,0,0,0,0,0,0,0,0,0,3282,3283,[1873,3284],[1798,1618],1798,[1734,1616],[1734,1552],[1744,3404],[1798,3470],[1799,3474],1735,1734,[1798,3404],3405,3148,0,0,0,0,0,0,3219,[1734,3220],1798,1799,[1735,1680],[1734,1872],1745,[1734,1552],1746,[1799,1875],[1734,1683],1798,1734,1798,[1798,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[527,3156],461,528,462,461,[527,3155],[1804,3156],1739,[1428,1795,2766],[1798,2767],[1798,2768],[1798,338],[1739,1608],1805,[1741,1604,2702],[1803,1540,2703],[1741,1541,3090,2704],[1735,3091],[1299,3092],1948,1299,1363,1363,1363,1300,1299,1363,1300,1299,1299,1363,2012,1364,1300,1300,1948,1363,1364,1363,1300,1364,1363,1364,1363,[1363,3275],[1741,3276],[1805,3277],1740,1741,1805,1804,[1803,3339],3340,[463,3341],[528,3277,781],[527,782],[528,783],[525,784],462,525,462,[461,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2827,3220],2762,2764,2825,2827,2825,[2826,3211],3212,0,0,0,0,0,0,0,0,3219,[2761,3220],2761,2828,2764,2827,2825,[2764,3404],3405,3406,3407,3410,[2825,3411],2763,2763,2763,[2763,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1746,3092],1811,1808,1744,1747,1808,[1808,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,8249],[13799,8246],[13800,8249],[13800,8249],[13800,13212,8246],[13342,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13799,8380],13799,13799,13800,13799,[13735,8627],8628,8629,8565,0,0,0,8383,[13800,8384],13799,13800,[13800,13148],13280,[13277,8245],[13800,8246],[13340,8249],[13277,8250],13341,[13800,13152],[13800,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[4947,4682],4883,4946,4946,4947,4883,4946,4882,4947,4882,[4882,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12430,[13640,12366],13641,13576,13640,13641,13512,13512,13640,13641,13640,13640,13641,13640,13512,[13641,1389],[13576,12615],12552,0,0,12559,[13640,12560],13512,13641,13512,13577,13512,13577,13640,13512,13640,13641,13512,13512,13512,13576,13577,13640,13512,13576,[13641,12808],12809,12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,8698,[13279,8699],13219,13343,13219,13278,[13344,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16659,16980,0,0,0,16659,16788,16787,0,0,16660,0,0,0,0,0,0,0,0,16787,16788,16788,16788,16788,16659,16724,16788,16788,0,0,16980,16787,16916,0,0,16786,16722,16658,16657,16721,16785,16657,16657,16721,16657,16785,16722,16658,16785,0,0,0,0,0,0,0,0,0,0,[16914,17487],[16914,17488],16914,16913,16914,16914,16725,16913,16914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16849,16662,16914,16914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3196,4746],3195,6471,3260,3196,3196,3195,3196,3260,3196,3196,[3196,4546],4547,4611,0,4808,4809,[3195,4810],3195,6407,3260,3196,3260,3260,[3260,4930],4931,4674,0,0,0,0,4808,4872,4873,[3260,4996],[3196,4997],[3260,5000],3260,3196,3260,3195,[3195,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1555,3284],[1799,1556],1735,[1798,3275],3276,3342,3343,3277,0,0,0,0,0,3282,3346,3347,[1798,1872,3348],[1735,1873],[1735,1552],1745,1744,[1799,1683],1735,1734,1799,1734,1799,[1734,3211],3212,0,0,0,0,0,3282,3283,[1798,3284],1734,1799,1734,1798,[1799,1680],1747,[1735,1682],1734,1735,[1734,1551],[1734,1553],[1798,1555],[1734,1556,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3219,653],[462,3220,654],[462,655],[526,656],526,526,[528,3219,653],[1803,3220,654],[1741,655],[1805,1859,656],[1739,1860,2831],1798,1799,[1739,1736],[1803,1605],[1735,2766],[1798,2767],[1735,2768],[1798,3219],[1363,3220],1948,1299,1948,1299,1299,1300,1299,1364,1299,1363,[2012,1948],1300,1363,1363,1364,1936,1363,1300,1364,1300,1300,1363,1999,1363,1300,[1363,3339],3340,[1739,3341],[1739,3277],1804,1804,1805,1740,[1805,3404],3405,[526,3148,845],[463,846],[462,847],[461,848],461,462,[462,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2828,3156],2761,2761,2825,2826,2761,[2764,3275],3276,3277,0,0,0,0,0,0,3282,3283,[2763,3284],2828,2761,2761,2763,2763,2764,[2762,3469],[2762,3470],[2763,3471],[2826,3474],2826,2764,2825,2825,[2764,3147],3148,0,0,0,0,0,3282,3342,3343,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1810,3156],1747,1811,1746,1744,1808,[1809,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8313,8313,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13800,8444],13799,13799,13735,13800,13799,[13799,13149,8692],8693,8436,0,0,0,8378,8314,[13799,8315],13799,[13800,13212],[13280,8308],8309,8310,8313,8314,[13278,8246],[13345,8249],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[4883,4746],4946,4946,4947,4947,4947,4946,4883,4947,4947,[4882,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13512,12366],13576,13640,13640,13512,13512,13641,13512,13512,13512,13512,13512,13640,13640,[13512,12615],12616,0,0,12623,[13641,12624],13576,13576,13641,13512,13512,13640,13512,13512,13512,13513,13512,13512,13512,13640,13640,13641,13641,13512,13640,[13641,12873],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13279,8444],13344,13344,13277,13344,13091,[13278,8563],8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16724,0,0,0,0,16659,0,16787,0,0,16724,0,0,0,0,0,0,0,0,16724,16852,16851,16852,16852,16852,16788,16659,16723,16787,0,0,16724,0,0,0,16850,16849,16850,16850,16657,16658,16786,16721,16658,16786,16721,16658,16722,16786,16722,16786,16721,16785,16722,0,0,16723,[16660,17103],[16724,17104],[16660,17104,17551],[16788,17105,17552],[16788,17104],[16788,17105],[16723,17106],16787,16659,16788,16724,16659,16724,16787,16660,16724,0,0,0,0,0,0,0,0,0,0,16914,16726,16723,16788,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3195,4810],3260,3195,3259,6408,3196,3196,3195,[3196,4483],[3260,4484],[3196,4484],4610,[4808,4611],4868,4869,4872,4873,[3196,4874],3260,3259,3260,3260,3260,3259,3260,[3259,4737],4738,0,0,0,0,4745,4936,[3195,4937],3195,3195,3260,3260,3259,6408,3195,[3195,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1735,1615,3348],[1799,1682],1734,[1798,3339],3340,3406,3407,3276,3277,0,0,0,0,3155,3410,[1735,3411],1735,1735,[1799,1680],1809,1745,[1734,1618],1735,1735,1735,1734,[1735,3020],3021,3085,0,0,0,0,3282,3346,3347,[1734,3348],1734,1734,1734,1734,[1734,2957],[1745,2958],[1798,2961],[1735,2962],1799,[1799,1807],1744,[1735,1874],[1734,1683],[1799,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,[3283,717],[528,3284,718],[464,719],[461,720],525,463,[464,3090,717],[526,3026,718],[1739,3027,719],[1805,720],1740,[1803,1859],1735,1735,1798,1798,[1740,1862,2831],[1740,1863,3282],[1734,3283],[1300,3284],1299,1363,1363,1299,1299,1935,1364,1948,1363,1364,1300,1300,1364,2011,1300,1300,1364,1299,1299,1299,1300,1364,1364,1299,1363,1363,[1363,3404],3405,[1741,3148],1740,1804,[1805,1665],[1740,1666],1739,[1741,3211,2511],[527,3212,909],[463,910],[525,911],[527,912],464,464,[527,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2763,3220],2763,2825,2761,2828,2825,[2762,3339],3340,3341,3344,3345,3344,3345,3344,3345,3346,3347,[2826,3348],2761,2826,2764,2825,2763,2763,2825,2825,2763,2828,2826,2761,2827,2764,[2763,3211],3212,0,0,0,0,3282,3283,3406,3407,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1744,3220],1808,1811,1811,1810,1811,[1745,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13799,8315],13799,13800,[13799,13084],[13800,13085],[13277,13444],[13277,8253],8254,0,0,0,0,8378,8379,[13799,8249],[13735,13276,8246],8372,8373,0,0,8378,8310,8313,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[4882,4553],4882,4883,4947,4947,4947,4883,4947,[4946,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13641,12431],13512,13576,13512,13512,13577,13641,[13641,12361],[13512,12362],[13640,12365],[13641,12366],[13641,1389],[13641,12424],12425,12489,0,0,12494,12430,[13641,12431],13577,13641,13641,13512,13512,[13640,3435],[13641,3437],[13576,3438],[13512,3439],[13641,3440],13640,13512,13641,[13641,3500],[13640,3436],[13640,3440],13641,13512,13641,[13640,3501,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13278,8508],13344,13156,13277,13278,13220,[13219,8627],8628,8629,8630,8631,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,16659,0,0,0,0,16659,16724,16723,0,0,16724,0,0,0,0,0,0,0,0,16788,16916,16916,16915,16915,16916,16851,16852,16724,16724,16788,16660,16659,0,0,0,16913,16914,16913,16914,16849,16850,16849,16849,16849,16786,16721,16786,16658,16657,16657,16785,16786,16722,16722,0,0,16723,17167,17168,17168,17169,17168,17169,17170,16724,16660,16723,16788,16724,16787,16787,16724,16660,0,0,0,0,0,0,0,0,16659,16787,16659,16787,16788,16724,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3195,4874],3195,3195,3196,3260,3195,3196,[3195,4546],4547,4548,4548,[4808,4611],4809,4932,4933,4936,[3259,4937],3195,3260,3260,3196,3259,3196,3259,3259,[3260,4801],4802,4803,0,0,4808,4809,[3196,4810],3195,3259,3195,3260,3260,3196,3196,[3260,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1799,3411],[1735,1743],[1798,1618],1734,1799,[1799,3404],[1799,3470],[1734,3471],3340,3341,3277,0,0,0,3219,[1735,3220],1799,1735,1735,1734,[1734,1807],1746,[1734,1812],1799,1735,[1734,2957],[1799,2958],3084,3085,0,0,0,0,3282,3346,3410,[1810,3411],[1799,1618],1798,1799,1799,[1799,3083],3084,3022,3025,3026,[1799,1617,3092],1810,[1799,1682],1798,1799,1734,[1734,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,[3347,781],[464,3348,782],[526,783],[528,784],525,464,[461,781],[462,3090,782],[528,3091,783],[1739,3092,784],1741,1741,[1804,1603],1798,1734,[1803,1670],[1805,3282],[1739,3346],3347,[1299,3348],[1363,769],1300,1300,1364,1363,1299,1363,1299,1300,1363,1299,1299,1364,1948,1300,1299,1948,1363,1300,1364,1299,1364,1364,1300,1947,[1364,769],1299,[1363,3211],[1739,3212],1804,1741,[1805,1729],[1740,1730],[1804,2574],[1739,3275,2575],[527,3276,2576],[526,3277,974],[525,975],528,525,461,[462,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[2763,3284],2825,2825,2762,2825,2761,2763,[2828,3404],3405,3408,3409,3408,3409,3408,3409,3410,[2764,3411],2761,2764,2762,2763,2764,2826,2826,2762,2764,2763,2825,2761,2762,2761,2828,[2761,3147],3148,0,0,0,3282,3346,3347,[2763,3470],[2827,3471],[2761,3472],[2825,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1809,3156],1811,1808,1811,1809,1809,[1747,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13800,8380],13800,[13799,13340],13154,13279,[13342,8317],8318,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[4946,4553],4946,4947,4947,4883,4947,[4883,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13641,12496],13640,13512,13641,13512,[13641,12424],12425,12426,12429,12430,[13641,12362],12488,12489,0,0,0,0,12494,12495,[13640,12431],13641,13640,13640,[13641,3500],3629,3694,[13512,3455],[13512,3456],3628,[13512,3437],[13641,3438,12361],[13640,12362],[3628,12366],3629,3693,[13512,3437],[13512,3438],[13640,3439],3693,[3629,12615],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13219,8315],13341,13219,13341,13280,13156,[13344,8692],8693,8694,8695,8564,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16851,0,0,0,0,16851,16851,16851,0,0,16788,0,0,0,0,0,0,0,0,16660,0,0,16980,0,16980,16916,16915,16851,16788,16660,16787,16723,0,0,0,16787,16724,16724,16659,16913,16914,16913,16914,16913,16785,16721,16785,16658,16658,16786,16785,16721,16657,16785,0,0,16659,17167,17169,17169,[17168,17807],17168,17363,17234,16788,16659,16659,16659,16724,16723,16660,16723,16723,0,0,0,0,16788,16660,16724,16787,16660,16660,16660,16659,16660,16660,16659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3196,4937],3260,3195,3260,3259,3196,3259,[3259,4546],4610,4611,0,4808,4872,4873,[3260,4996],[3259,4997],[3195,5000],3259,3260,3196,3260,3259,3195,3260,6407,3196,[3195,4865],4866,4867,4868,4869,4872,4873,[3260,4874],3195,3259,3260,3259,[3196,4483],[3260,4484],[3260,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1798,3220],1798,[1735,1807],1744,[1734,1552],[1735,1553],[1798,1555],[1798,1552],[1799,1619],[1798,3404],3405,3148,0,0,0,3090,3026,[1799,3027],1734,1735,[1735,1617],1811,1744,1747,[1798,1618],[1798,3020],3021,3022,3085,0,0,0,0,0,3155,3410,[1734,1681,3411],[1735,1872],1747,[1735,1556],1798,1799,[1799,3147],3148,0,0,3155,[1746,3156],[1798,1620],1799,1734,1798,[1735,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[463,3411,845],[463,846],[526,847],[527,848],463,463,[527,845],[462,846],[461,3090,847],[528,3091,848],[1803,3092],1741,[1805,1667],1799,[1804,1608],1739,[1803,3155],3410,[1299,3411],1363,[1299,833],1299,1299,1363,1299,1363,1300,1364,1947,1947,1363,1947,1364,1299,1363,1363,1364,1300,1364,1299,2012,1363,1299,1363,1299,[1363,833],1299,[1299,3211,2511],[1740,3212],1739,1739,1741,[1803,1539],[1803,1540,2638],[1739,1798,3339,2639],[3340,2640],[463,3341],[463,3277],526,461,461,[525,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3344,3345,3346,3347,[2764,3348],2828,2763,2762,2763,2825,2827,2764,[2762,3469],[2762,3472],[2764,3473],[2825,3472],[2828,3473],[2764,3472],[2763,3473],[2764,3474],2762,2764,2762,2827,2825,2825,[2764,2957],[2761,2958],[2826,2961],[2827,2961],[2828,2958],[2827,2962],2763,2827,2763,2828,[2827,3211],3212,0,0,0,3155,3410,[2827,3411],2828,2828,2761,2827,[2828,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1810,3220],1745,1744,1745,1747,1811,[1747,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13800,13150,8315],13341,13280,13344,[13342,8381],8382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[4883,4484],[4946,4487],[4883,4484],[4947,4487],[4946,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13512,12560],13512,13577,13641,[13512,12487],12488,12489,0,0,12494,12426,12489,0,0,0,0,0,0,12494,12495,[13640,12362],[13640,12365],[13512,3435,12366],3693,3694,3628,[13512,3519],[13512,3520],3695,[3630,12424],12425,12426,12430,[3631,12366],3631,3630,3692,3693,3694,[3630,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13343,8380],13219,13343,13277,13342,13155,[13219,8757],[13219,8758],[13277,8759],8628,8629,8565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16916,0,0,0,0,16915,16915,16915,0,0,16788,0,0,0,0,0,0,0,0,16659,0,0,0,0,0,16980,16980,16916,16851,16852,16852,16723,0,0,0,16660,16723,16724,16659,16660,16660,16787,16660,16788,16849,16721,16658,16785,16722,16721,16658,16722,16786,16722,0,0,16788,17167,17363,17232,17364,17168,17170,16660,16660,16659,16660,16788,16724,16724,16724,16723,16659,0,0,16723,16787,16660,16659,16787,16660,16659,16788,16723,16724,16788,16723,16724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3195,4746],3196,3260,6407,3196,3195,6408,[3195,4482],[3259,4673],4674,0,4808,4872,4936,[3196,4937],3259,3259,3195,6471,3260,3196,3260,3196,3196,3259,3196,3195,3260,[3196,4930],4931,4932,4933,4936,[3259,4937],3259,6407,3260,3196,[3195,4546],4547,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1798,3092],[1799,1680],[1735,1872],[1798,1682],[1734,1681],1809,1811,[1798,1872],[1734,1556],[1799,3211],3212,0,0,0,0,3090,3091,[1734,1616,3092],[1798,1552],1808,1808,[1735,1872],[1799,1873],[1798,1872,3083],3084,3085,0,0,0,0,0,0,0,3219,[1735,3220],1798,1799,[1798,1680],1808,[1799,1619],1735,[1734,3211],3212,0,0,3090,3026,[1734,1684,3027],1798,1798,[1734,3020],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[527,3220],[463,909],[462,910],[528,911],[528,912],464,461,[526,909],[526,910],[526,911],[525,3219,912],[1739,3220],[1740,2511],[1739,1731],[1734,340],[1804,1672],1741,[1739,3219],[1364,3220],1364,1299,1363,1363,1363,1363,1363,1363,1300,1364,1300,1364,1300,1364,1363,1364,1364,1948,1363,1364,1364,1364,1299,1300,1300,1300,1299,1364,[1363,3083,2574],[1804,3084,2575],[1803,3085,2576],[1803,340],1803,1804,[1739,1603],[1799,2702],[1734,2703],[1734,3404,2704],3405,[528,3148],527,464,462,526,[463,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3408,3409,3410,[2828,3411],2827,2763,2761,2825,2825,2763,2764,2828,2828,2763,2764,2764,2764,2761,2762,2828,2762,2825,2762,2763,2825,[2762,3020],3021,3022,3025,3025,3022,3026,[2764,3027],2826,2764,2828,[2828,3147],3148,0,0,0,3155,[2825,3156],2826,2828,2826,2764,2762,2762,[2763,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1811,3156],1810,1746,1811,1808,[1744,13444],[1746,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13341,8246],[13342,8249],[13280,8246],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4548,4551,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13641,12624],13512,13640,13640,[13641,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12430,[3630,12431],3631,3630,3693,3693,[3695,12487],12488,12489,0,12494,12430,[3630,12431],3631,3692,3694,3630,[3695,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8443,[13220,8444],13344,13341,13342,13277,13278,13342,13155,13219,[13219,8692],8693,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16980,0,0,0,0,0,0,0,0,0,16659,0,0,0,0,0,0,0,0,16788,16659,0,0,0,0,0,0,16980,16916,16915,16916,16723,0,0,0,16852,16851,16852,16852,16724,16723,16787,16788,16787,16914,16850,16849,16850,16849,16662,16662,16849,16849,16850,0,0,16660,17231,17234,16660,17231,17232,17234,16659,16723,16659,16724,16787,16723,16723,16659,16788,16660,0,0,16659,16724,16788,16723,16723,16787,16724,16787,16660,16659,16851,16851,16852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3196,4553],3196,[3259,4291],[3259,4292],[3195,4293],3195,[3259,4546],4547,4611,0,4681,4936,[3260,4937],3259,3259,3195,3260,3259,3260,[3259,4483],[3195,4484],[3259,4487],[3196,4488],3259,3259,3260,3260,3259,[3260,4995],[3260,4996],[3195,4997],[3195,4874],3260,3195,3195,[3260,4483],[3195,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1798,3156],1735,1798,1798,[1734,1617],1811,[1734,1682],1735,[1735,1680,3020],3021,3085,0,0,0,0,0,3219,[1744,3220],1747,1745,[1734,1682],1799,1799,[1799,3147],3148,0,0,0,0,0,0,0,0,3090,3091,[1798,3092],1799,1799,[1734,1871],1744,[1735,1552],[1553,3147],3148,0,0,0,3090,3091,[1798,2961],[1798,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[527,3027],[526,974],[462,975],464,528,527,527,[527,974],[464,3282,975],[463,3283],[1739,3284,2574],[1741,2575],[1805,1795,2576],1798,[1739,1736],1740,[1804,3090,1665],[1741,3091,1666],[1300,3092],1364,1363,1299,1999,1363,1363,1299,2012,1363,1363,1364,1363,1300,1999,1364,1300,1364,1300,1300,1363,1300,1300,1364,2063,1363,1299,[1300,3083],[1798,3084,2638],[1803,1606,3085,2639],[1740,2640],1739,1741,1741,[1741,1731],[1735,2766],[1734,2767],[1799,2768],[1734,3211],[526,3212],528,464,462,461,525,[528,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2828,3472],[2762,3473],[2761,3474],2827,2761,2763,2763,2825,2762,2762,2828,2828,2826,2825,2763,2764,2761,2828,2764,2825,2761,2828,2826,2826,[2761,3083],3084,3085,0,0,0,0,3090,3091,[2826,3092],2825,2827,[2826,3211],3212,0,0,0,3219,[2827,3220],2762,2763,2763,2761,[2764,2957],[2826,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1809,3220],1746,1744,1808,1744,1747,[1811,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13512,12560],13640,13512,13512,[13576,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[3694,12496],3628,3694,3631,[3631,12551],12552,0,0,0,12494,12495,[3693,12496],3693,3692,3628,[3629,12679],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8507,[13218,8508],13218,13280,13342,13344,13342,13219,13283,13284,13278,[13279,8435],8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,16660,16723,16787,16659,16723,16787,16659,16787,16660,16788,16724,16660,16724,16659,16724,16787,16723,16723,0,0,0,0,0,0,0,0,16660,16723,0,0,0,0,0,0,0,0,16980,0,16660,0,0,0,16916,16915,16915,16916,16851,16851,16852,16660,16660,16660,16914,16914,16913,16914,16914,16726,16914,16913,16914,0,0,16659,16660,16659,16787,16659,16660,16659,16723,16723,16660,16723,16787,16724,16788,16788,16787,16724,0,0,16724,16787,16660,16724,16724,16787,16724,16788,16852,16852,16915,16915,16916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3195,4484],[3259,4355],[3259,4356],[3259,4357],[3260,4484],4610,4611,0,0,4616,4617,[3259,4100],[3260,4101],[3196,4102],[3195,4488],3259,3196,[3260,4546],4547,4548,4551,4552,[3260,4487],[3195,4488],3195,3195,3196,6472,3195,3196,3196,3260,3195,[3196,4609],4610,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1798,3220],1735,[1734,1551],[1734,1552],1809,[1735,1812],1799,[1734,3083],3084,3085,0,0,0,0,0,3282,3283,[1809,3284],1810,1744,[1799,1619],1735,1798,[1734,3211],3212,0,0,0,0,0,0,0,0,0,3155,[1799,3156],1735,1735,1735,[1735,1680],1810,[1745,3211],3212,0,0,0,0,3090,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[464,3092],464,527,464,461,464,[461,3282],[462,3346],3347,[1805,1606,3348,2638],[1805,1605,2639],[1798,2640],1735,[1740,1671],1803,[1805,1729],[1741,3219,1730],[1300,3220],1363,1300,1300,1363,1300,1364,1300,1363,1363,1300,1300,1363,1363,1299,1364,1299,1363,1363,1299,1947,1300,1364,1299,1363,1299,1363,[1300,3147],[1734,3148,2702],[1798,2703],[1741,1540,2704],[1739,1541],[1803,1542],[1805,1543],1798,[1798,404],[1740,1860,2831],[1805,1861,3020],[526,3021],[527,3085],527,[463,653],[462,654],[525,655],[462,3083,656],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3346,3410,[2825,3411],2763,2827,2764,2827,2763,2764,2827,2825,2826,2764,2827,2827,[2764,2957],[2828,2961],[2828,2958],[2763,2961],[2825,2958],[2828,2961],[2764,2958],[2762,2962],2763,2827,2825,2763,[2763,3211],3212,0,0,0,0,0,0,3155,[2825,3156],2764,2761,[2764,3147],3148,0,0,0,3155,[2828,3156],2828,2764,2764,[2762,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1810,3156],1810,1810,[1746,5638],1746,1747,[1745,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13512,12624],13640,13640,13640,[13640,12679],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[3693,12624],3692,3693,3629,[3694,12615],12616,0,0,0,0,12623,[3629,12624],3693,3694,3628,[3694,12743],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8314,[13279,8315],13092,[13280,8245],[13277,8249],[13343,8250],13219,13347,13348,13343,[13220,8499],8500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16851,16851,16852,16851,16851,16852,16851,16851,16851,16852,16852,16851,16852,16852,16852,16851,16852,16852,0,0,0,0,0,0,0,0,16659,16724,0,0,0,0,0,0,0,0,0,0,16788,0,0,0,16980,16980,16980,0,16916,16915,16915,16852,16851,16723,16723,16660,16724,16787,16660,16788,16723,16788,16659,0,16724,16788,16788,16724,16788,16724,16660,16660,16787,16723,16724,16660,16787,16660,16788,16660,16660,16724,0,0,16851,16788,16659,16660,16724,16724,16659,16660,16915,16915,16980,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4419,4420,4421,4548,4611,0,0,0,0,4616,4164,4165,4166,4552,[3260,4484],[3196,4487],4610,4611,0,0,4616,4551,4552,[3259,4553],3195,3195,3260,3196,3196,3259,3195,3259,[3260,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1798,3156],1735,[1799,1807],1744,1747,[1735,1683],[1799,1616],[1744,3211],3212,0,0,0,0,0,3282,3346,3347,[1735,1680,3348],[1799,1872],1746,1810,[1798,1552],[1799,1618,3020],3021,3085,0,0,0,0,0,0,0,0,0,3219,[1735,3220],1798,1798,1798,1798,[1735,1807,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[463,3156],528,461,464,526,[526,653],[525,3155,654],[3410,655],[1799,3411,656],[1799,2702],[1734,2703],[1734,2704],1735,[1740,1606],1492,[1740,3282],[1803,3283],[1300,3284],1300,1300,1299,1363,1364,1363,1364,1299,1299,1300,1300,1299,1363,1300,1363,1364,1299,1364,1300,1363,1363,1364,1299,1363,1363,1299,[1299,3211],[1798,3212,2766],[1799,2767],[1799,2768],1798,[1740,1861],[1491,1862],[1803,1863],[1803,1670],[1741,3083],[464,3084],[461,3085],527,528,[528,717],[525,718],[527,719],[461,3147,720],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3410,[2763,3411],2762,2828,2761,2826,2825,2764,2825,2763,2762,2761,2763,2764,[2762,3020],3021,3025,3022,3025,3022,3025,3022,3026,[2762,3027],2762,2762,2764,[2826,3147],3148,0,0,0,0,0,0,3219,[2764,3220],2827,2762,[2826,3211],3212,0,0,0,3219,[2827,3220],2763,2828,[2761,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,[3219,3343],[3220,3342],[1746,3343],[1811,3344],[1809,3345],[1747,3342],[1745,3343],[3211,3344],[3212,3345],3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13641,12688],13576,13640,13512,[13641,12743],12744,12745,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[3628,12688],3629,3694,3692,[3692,12679],12680,12681,0,0,12686,12687,[3628,12688],3630,3693,3694,3628,[3694,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8379,[13279,8246],8309,8313,8314,[13156,8315],13279,13155,[13219,8308],8309,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16916,16916,16915,16915,16915,16916,16915,16915,16916,16915,16915,16916,16915,16916,16915,16916,16916,16916,0,0,0,0,0,0,0,0,16659,16788,0,0,16788,16787,0,0,0,0,0,0,16787,0,0,0,0,0,0,0,16980,0,16980,16915,16916,16723,16723,16659,16787,16660,16723,16787,16659,16660,16724,16724,16787,16724,16660,16724,16787,16788,16787,16787,16724,16659,16659,16660,16723,16724,16659,16723,16788,16723,0,0,16916,16852,16723,16724,16724,16659,16723,16659,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4870,4871,4803,0,0,0,4616,4548,4551,4611,0,0,0,0,0,4616,4617,[3259,4618],3195,3260,6407,3195,3196,3259,3196,[3196,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1798,1616,3027],1809,[1735,1872],[1799,1876],1735,[1735,1807],[1808,3275],3276,3277,0,0,0,0,3155,3410,[1735,3411],1799,1735,[1799,1681],1811,[1745,3083],3084,3085,0,0,0,0,0,0,0,3282,3342,3343,3346,[1799,3284],1735,1799,1799,[1735,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[528,3220],462,527,526,527,[526,717],[462,3219,718],[1799,3220,719],[1734,720],[1799,2766],[1798,2767],[1799,2768],1734,[1741,1670],[1803,3282],[1741,3346],3347,[1364,3348],1299,1300,1299,1363,1363,1363,1364,1363,1363,1299,1299,1300,2012,1363,1363,1364,1299,1363,1300,1363,1364,1299,1300,1300,2012,1364,[1300,3275],[1798,3276],[1799,3277,2831],1735,[1739,1670,340],1739,1805,1803,1805,[1741,3147],[528,3148],463,525,528,[526,781],[527,782],[461,783],[525,3211,784],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[2761,3470],[2825,3471],[2825,3474],2763,2762,2827,2827,[2764,2957],[2825,2961],[2826,2958],[2763,2961],[2826,2958],[2825,2961],[2828,2958],[2827,2961],[2762,2958],3084,3085,0,0,0,0,0,0,3090,3091,[2763,3092],2826,2762,[2825,3211],3212,0,0,0,0,0,0,3155,[2826,3156],2762,2828,[2826,3211],3212,0,0,0,3155,[2825,3156],2763,2761,[2763,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3406,3407,3406,3407,3408,3409,3406,3407,3408,3409,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13640,12752],13512,13640,13512,13640,[13640,12808],12809,12810,12811,12680,12681,0,0,0,0,0,0,0,0,12686,12748,12749,12750,12751,[3631,12752],3693,3631,3630,[3629,12743],12744,12745,12746,12747,12750,12751,[13641,12752],[13512,3565],3629,3695,3692,3631,[3694,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8310,8373,0,8378,8379,[13220,8249],[13278,8246],8372,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,0,0,16980,0,0,0,0,0,16980,0,0,0,0,0,0,0,16980,0,0,0,0,0,0,0,0,0,16723,16788,16659,16787,16788,16787,16787,16787,16724,16659,16724,16723,16787,0,0,0,0,0,0,0,0,0,0,0,16980,16660,16724,16723,16723,16788,16659,16659,16787,16723,16787,16724,16660,16787,16660,16724,16788,16724,16659,16788,16788,16723,16787,16787,16852,16852,16852,16851,16851,16852,0,0,0,16915,16723,16787,16787,16787,16723,16851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,6084,6085,6086,4803,0,4808,4809,4932,4933,4934,4935,4867,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,4681,[3195,4682],3196,3196,3259,3259,3196,3196,[3195,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1734,1682,3092],1735,1799,1799,[1799,1871],[1799,1748,3339],3340,3341,3277,0,0,0,3219,[1798,3220],1798,1799,1734,1798,[1799,1680],[1872,3147],3148,0,0,0,0,0,0,0,3282,3283,3406,3407,3410,[1735,3348],1735,1734,1735,[1798,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[528,3156],659,660,526,526,[461,781],[464,3090,782],[464,3026,783],[1734,3027,784],1735,[1799,2831],[1741,1860],[1805,1864],[1741,404],[1803,3155],3410,[1363,3411],1299,1300,[1364,769],1299,1363,1299,1364,1299,1363,1300,1364,1299,1948,1300,2012,1364,1364,1364,1363,1300,1300,1948,1300,1299,1363,1363,1363,[1364,3339],3340,[1734,3341],[1741,1670,3277],1740,1740,1741,1739,1804,[1804,3211],[527,3212],525,526,464,[463,845],[528,846],[463,847],[463,3147,848],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[2762,3411],2764,2827,2762,2825,2763,2763,[2828,3020],3021,3025,3022,3025,3022,3025,3022,3025,3022,3085,0,0,0,0,0,0,0,0,3155,[2826,3156],2761,2826,[2762,3147],3148,0,0,0,0,0,0,3219,[2763,3220],2762,2762,[2762,3275],3276,3277,0,0,3219,[2764,3220],2827,2827,[2762,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[15,3470],[79,3471],[16,3470],[16,3471],[15,3472],[80,3473],[80,3470],[15,3471],[16,3472],[15,3473],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13640,12815],13512,13640,13641,13640,13512,13512,[13641,12873],[13512,12874],[13512,12875],12744,12745,12681,0,0,0,0,0,0,12686,12687,12812,12813,12814,[3629,12815],3695,[13512,3455],[13512,3456],3630,3692,[3692,12808],12809,12810,12811,12814,[13640,12752],13640,[13512,3501],3695,3631,3629,3631,[3629,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8378,8313,8310,8373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16788,16788,16659,16660,16660,16788,16659,16787,16788,16724,16659,16660,16787,16659,16788,16788,16788,16659,16659,16659,16723,16659,16788,16788,16659,16787,16659,16724,16724,16659,16788,16787,16724,16787,16659,16659,16788,16723,16659,16723,16659,16787,16660,16723,16787,16723,16660,16915,16916,16915,16915,16916,16916,0,0,0,0,16851,16787,16723,16660,16788,16915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4740,6149,6150,4867,4868,4872,4873,[3195,4996],[3259,4997],[3196,4998],[3260,4999],4931,4932,4933,4867,4868,4869,4803,0,0,0,0,0,0,0,4616,4552,[3195,4553],3259,3259,3259,3196,[3195,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1799,3220],1735,1735,1799,[1734,1616],[1798,1812],[1798,3404],3405,3148,0,0,0,3219,[1734,3220],1735,1734,1735,1735,1735,[1734,3211],3212,0,0,0,0,0,0,3282,3346,3347,[1798,3470],[1735,3471],[1735,3474],1735,1735,1735,1734,[1735,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[463,3220],723,724,463,525,[464,845],[463,846],[464,3090,847],[527,3091,848],[1739,1863,3092],[1740,1671],1741,1740,1739,[1803,3219],[1363,3220],1299,[1299,2511],1364,[1364,833],1364,2011,1364,1363,1364,2127,2128,1300,1364,1300,1363,1299,1363,1299,1364,1364,1363,1299,1948,1364,1299,1363,1300,1300,[1299,3403],[1363,3404],3405,[1740,3148],1805,1740,1805,1740,[1739,3083],[526,3084],[462,3085],461,463,787,[788,909],[462,910],[462,911],[461,3211,912],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2827,3220],2825,2761,2825,2762,2825,2763,[2826,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2764,3220],2762,2826,[2763,3211],3212,0,0,0,0,0,3282,3283,[2825,3284],2764,2763,[2827,3339],3340,3341,3342,3343,3346,[2826,3284],2762,2763,[2826,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[16,3156],16,79,16,16,15,[16,5638],15,79,15,79,[16,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13640,12560],13512,13641,13641,13512,13641,13576,13641,13512,13641,13641,[13641,12808],12809,12552,0,0,0,0,0,12686,12750,12751,[13512,3627,12876],[3630,12877],[3695,12815],3629,3631,[13512,3519],[13512,3520],3631,3628,3694,[3692,12873],[3694,12874],[3695,12875],[13512,12878],13512,13512,[13512,3691],3694,3695,3628,3695,[3692,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,0,0,0,0,0,0,0,0,0,0,0,16724,[16787,1441],[16724,1377,1385],[16659,1381],16660,0,0,0,0,0,0,0,0,0,0,16852,16787,16724,16852,16851,16723,16659,16724,16660,16852,16851,16851,16851,16851,16852,16851,16852,16852,16851,16851,16852,16852,16852,16852,16851,16852,16852,16851,16852,16851,16788,16723,16851,16852,16851,16852,16852,16851,16852,16852,16851,16851,16852,16851,16852,16852,16851,16852,0,16980,0,16980,16980,16980,0,0,0,0,16915,16852,16852,16851,16852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3195,6212],[3259,6213],[3260,6214],4931,4740,4936,[3195,4937],3259,6408,3260,3260,[3196,4995],[3195,4996],[3260,4997],4931,4932,4933,4867,4803,0,0,0,0,0,0,0,4616,4617,[3260,4618],3196,3195,3195,[3196,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1735,3156],1799,[1734,1616],[1735,1552],1746,[1798,1683],1734,[1734,3211],3212,0,0,3282,3283,[1735,3284],1798,1735,1798,1799,1799,[1734,3211],3212,0,0,0,0,0,0,3219,3410,[1799,1618,3411],1735,1799,1734,1735,1734,1734,[1735,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[462,3027],461,528,461,[525,909],[461,910],[463,911],[526,3155,912],[1804,3156],1803,1804,1740,1741,[1805,3090],[1803,3026],[1364,3027,2574],[1364,2575],[1363,2576],1947,1364,1299,1299,1363,1300,2191,2192,1363,2011,1300,1300,1299,1300,1364,1363,1363,1363,1300,1363,1299,1300,2127,2128,1363,1364,1364,[1364,3211],[1804,3212],[1739,402],1805,1805,1805,[1805,3147],[462,3148],527,461,462,851,852,[527,974],[525,3020,975],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2826,3156],2826,2826,2826,2761,2761,2826,[2826,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2825,3156],2764,2828,[2764,3275],3276,3277,0,0,0,3282,3283,3347,[2761,3348],2828,2828,2826,[2825,3404],3405,3406,3407,3410,[2761,3348],2763,2826,[2764,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[79,3220],15,16,79,15,16,80,15,79,15,15,[79,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13641,12624],13512,13640,13641,13640,13577,13640,13640,13577,13512,13577,13512,[13640,12615],12552,0,0,0,0,0,12559,12814,[13640,12815],[13512,3691],3628,3629,3694,3693,3694,3629,3629,3695,3692,3628,3695,3695,[13512,3437],[13641,3438],[13576,3439],3694,3695,3629,3631,3630,[3628,12679],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,0,0,0,0,0,0,16724,16724,16788,16787,16788,16660,[16723,1632],1636,1635,[16659,1444],0,0,0,0,0,0,0,0,0,0,16916,16723,16788,16915,16915,16851,16852,16852,16852,16915,16915,16916,16915,16915,16916,16915,16915,16916,16915,16916,16915,16916,16915,16916,16915,16915,16916,16916,16916,16915,16787,16723,16916,16916,16915,16915,16916,16915,16915,16915,16916,16916,16915,16915,16915,16915,16915,16915,0,0,0,0,0,0,0,0,0,0,16980,16916,16915,16915,16915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3195,4682],3196,3195,3196,[3195,4995],[3260,4996],[3260,5000],3196,3260,3196,3196,3260,3195,3195,3260,[3260,4995],[3196,4996],[3259,4997],4931,4674,0,0,0,0,0,0,0,0,4681,[3260,4682],3260,3196,3259,[3196,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1735,3220],1734,[1734,1807],1746,[1798,1812],1734,1799,[1735,3275],3341,3530,3531,3346,3347,[1735,1743,3348],[1798,1618],1734,1734,1735,1798,[1735,3275],3276,3277,0,0,0,0,3282,3283,[1809,3284],1808,[1798,1552],[1734,1619],1798,[1735,1616],[1735,1552],[1734,1618,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[527,3092],461,464,464,[526,974],[464,975],[527,3219],[1739,3220],[1740,340],1740,1740,1739,1740,[1803,3090],[1739,3091,2638],[1300,2961,2639],[1364,2962,2640],1300,1299,1363,1363,1300,1363,1364,1299,1363,1299,1299,2012,1299,1300,1363,1300,2063,1363,1364,1947,1363,1300,2191,2192,1300,1300,[1364,3083],[1739,3084],[1741,3085,1665],[1803,1666],1741,1739,1803,[1741,3211],[525,3212],461,525,463,525,[528,2957],[461,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2764,3220],2827,2762,2762,2827,2761,2764,[2761,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2764,3220],2764,2827,[2764,3339],3340,3341,3343,3344,3345,3346,3347,[2762,3411],2761,2828,2827,2764,2828,[2827,3469],[2826,3470],[2828,3471],[2761,3474],2764,2826,2825,[2763,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[16,3156],79,16,79,79,16,15,15,16,15,15,[16,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13641,12431],13641,13640,13641,13512,13640,13577,13641,13641,13512,13577,[13640,12679],12680,12681,0,0,0,0,12623,[13512,12624],13640,[13512,3755],3694,3692,3694,3629,3630,[3630,12361],[3695,12362],[3631,12366],3631,3629,3692,3628,3692,3631,3628,3692,3693,3693,3628,3629,[3628,12743],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,0,0,0,0,0,16660,16788,16723,16724,16723,16724,[16724,1441],[1633,1513],1633,[1571,1385],[16788,1508],0,0,0,0,0,0,0,0,0,0,0,16787,16724,0,0,16916,16915,16915,16916,0,16980,0,16980,16980,16980,16980,0,0,16980,0,0,0,16980,0,0,16980,0,16980,16980,16980,16787,16724,16980,0,16980,16980,0,0,16980,16980,16980,0,16980,0,16980,0,16980,16980,0,0,0,0,0,0,0,0,0,0,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3260,4746],3260,6471,3260,3259,3195,3260,3195,3196,3195,3260,3195,3259,3196,3196,3260,3260,3260,[3195,4673],4674,0,0,0,0,0,0,0,0,4745,[3195,4746],3195,6471,3259,[3259,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1734,1617,3027],1810,[1798,1872],[1798,1876],1799,1798,[1798,1616,3339],3405,3594,3595,3410,[1735,3411],[1735,1615],[1799,1812],1798,1735,1734,1735,[1799,3339],3340,3341,3342,3343,3344,3345,3346,3347,[1734,1681,3348],[1798,1873],[1735,1872],[1735,1876],1734,[1734,1871],1809,[1744,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[527,3092],528,461,461,527,[462,3155],[1803,3156],1805,1491,1741,1805,1739,1741,[1740,1604,3090,2702],[1735,3025,2703],[1739,3026,2704],[1300,3027],1300,1363,1300,1364,1948,1300,2011,1364,2012,1363,1299,1363,1363,1364,1363,1299,1363,1363,1299,1299,1363,1363,1364,1299,1300,[1363,3147,2511],[1805,3148],[1741,1729],[1740,1730],1740,1804,[1804,3083],[525,3084],[463,3085],461,527,462,[461,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2762,3027],2826,2763,2828,2826,[2827,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[2762,3156],2761,2828,2826,[2828,3404],3405,3214,3408,3409,3410,[2761,3411],2825,2825,2764,2761,2825,2763,2762,2763,2762,2764,2826,2762,2826,[2828,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[79,3220],15,16,15,16,15,79,15,15,15,15,[15,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13641,12431],13640,13640,13640,13576,13640,13641,13576,13641,13512,[13640,12743],12744,12745,12746,12747,12746,12747,12687,[13641,12688],13640,13641,[13512,3564],3693,3629,[3631,12361],[3695,12362],12425,12426,12430,[3629,12431],3629,3628,3692,[13512,3455],[13512,3456],3694,3695,3631,3631,3695,3631,3630,[3629,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16788,16660,16660,16788,16659,16660,16724,16724,16723,16723,16659,[16788,1696],[16660,1697],[16787,1698],[16788,1701],16724,0,0,0,0,0,0,0,0,0,0,0,16788,16788,0,0,0,16980,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3259,4553],3259,3195,3260,3195,3195,[3260,4483],[3195,4487],[3259,4487],[3196,4488],3260,3260,3195,6472,3196,3196,3195,[3195,4801],4802,4803,0,0,0,0,0,0,4808,4809,[3196,4810],3259,3196,3259,[3259,4865],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1734,1682,3092],1735,1799,1799,[1735,1551],1745,[1746,3469],[1735,1748,3658],[1734,3659],[1799,3474],1735,[1799,1679],1811,[1734,1619],[1735,1617],[1798,1552],[1734,1619],1734,[1735,3404],3405,3406,3407,3408,3409,3410,[1799,3411],1799,1798,1734,1734,1735,1735,[1735,1680],[1735,1872,3339],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[526,3156],464,525,461,464,[526,3219],[1803,3220],1804,1805,1803,1739,[1741,340],1804,[1740,1795,2766],[1799,2767],[1740,1670,3090,2768],[1804,3091],[1299,3092],1364,1363,[1363,769],1300,1300,[1364,2511],1948,1299,1299,1299,1364,1363,1299,1364,1363,2011,1364,1363,1299,1364,1364,1363,[1364,769],[1364,2574],[1364,3211,2575],[1805,3212,2576],1803,1805,1739,1740,[1739,3147],[526,3148],[461,651],[464,652],526,525,[525,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2825,2961],[2827,2958],[2761,2961],[2763,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[2762,3220],2828,2825,2762,2762,[2764,3469],[2761,3471],[2825,3472],[2764,3473],[2763,3474],2828,2827,2762,[2761,2957],[2763,2961],[2828,2958],[2826,2962],2826,2827,2828,2761,2762,2761,2761,[2763,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[79,3284],80,15,79,79,79,79,16,79,79,15,[16,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13640,12496],13512,13512,13577,13512,13576,13640,13640,13640,13512,[13640,12808],12809,12810,12811,12810,12811,12751,[13512,12752],13641,13512,13640,[13640,3691],[3630,12424],12425,12426,12489,0,12494,12495,[3628,12496],3628,3630,[13512,3519],[13512,3520],3693,3630,3692,3631,3695,3695,3692,3630,[3628,12615],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16724,16660,16787,16787,16788,16659,16788,16787,16787,16660,16787,16788,16724,16660,16724,16723,0,0,0,0,0,0,0,0,0,0,0,16788,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16660,16788,16724,16723,16724,16723,16723,16788,16788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16723,0,0,0,0,16723,16724,16659,16723,[16659,1519],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3259,4487],[3195,4488],3195,3195,[3195,4546],4547,4551,4551,4552,[3196,4553],3196,3195,3259,3196,3259,3195,[3259,4865],4866,4867,4803,0,0,0,0,4808,4872,4873,[3259,4874],3196,3195,3195,3195,[3259,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1798,3156],1798,1734,1735,[1798,1681],1810,1744,[1735,1683],1735,1734,1734,[1735,1743],[1808,2957],[1810,2958],[1744,2961],[1811,2962],1744,[1799,1618],1734,[1735,3469],[1799,3470],[1734,3471],[1734,3472],[1799,3473],[1798,1679,3474],[1799,1618],1799,1735,1798,1799,1798,1735,1734,1735,[1799,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[463,3220],461,527,461,461,[525,3090],[462,3026],[1804,3027],1740,1804,1805,1491,1739,[1805,1668],[1735,2831],[1492,1607],[1803,3155],[1300,3156],1363,1363,[1364,833],1364,[1300,2957,2574],[1363,2958,2575],[1300,2958,2576],[1364,2962],1364,1299,1299,1299,1364,1300,1364,1300,1299,1364,1299,1363,1299,2011,[1364,833],[1364,3020,2638],[1735,3021,2639],[1803,1543,3085,2640],[1805,1544],1741,1428,[1803,339],[1739,3211],[527,3212],[526,715],[526,716],526,463,[525,3275],3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[2761,3027],2825,2825,2827,2764,2825,2826,2826,2827,2761,2825,[2825,3020],3021,3025,3022,3026,[2825,3027],2827,2764,2762,2761,2761,[2827,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3347,[79,3348],15,15,15,15,80,80,80,16,16,79,[16,3339],3340,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13512,12560],13640,13641,13640,13576,13513,13512,13640,13640,13640,13640,[13640,12873],[13512,12874],[13577,12875],[13640,12874],[13640,12875],[13640,12878],13641,13640,13640,13641,[13641,3755,12487],12488,12489,0,0,0,0,12559,[3695,12560],3695,3630,3629,3628,3692,3694,3629,3629,3630,3694,3629,3695,[3692,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16659,16851,16851,16852,16852,16724,16724,16660,16660,16660,16788,16788,16659,16724,16724,16787,0,16659,16724,16723,16787,0,0,0,0,0,0,16660,16660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16724,16787,16723,16659,16659,16723,16788,16723,16723,16787,0,0,0,0,0,0,0,0,16656,16720,16783,16656,16720,16784,16655,16656,16783,16719,16656,0,0,0,0,16851,16660,16788,16724,0,0,16788,16787,16788,16724,16788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4552,[3260,4484],[3259,4487],4610,4611,0,0,4616,4617,[3260,4618],3195,3196,3196,3260,3260,3259,[3195,4930],4931,4674,0,0,0,0,4681,4936,[3259,4937],3259,3260,3260,3196,3195,3259,[3259,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1799,3220],1734,1734,1734,[1735,1616],1744,[1735,1812],1734,1735,1735,1799,[1798,1807,3083],3084,3022,3025,3026,[1745,3027],[1798,1620],1798,1799,1798,1734,1799,1798,[1735,1743],1810,[1798,1552],[1798,1618],1799,1798,1735,1735,1798,1799,1798,[1799,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[527,3027],527,461,526,527,[525,3090],[525,3091],[1803,2961],[1804,2962],1741,1740,1741,[1803,2511],[1803,1795],[1804,1608,338],[1741,3219],[1300,3220],1300,[1364,2957],[1364,2961],[1364,2958],[1739,3021,2638],[1741,3022,2639],[1803,3022,2640],[1805,3091],[1299,3092],1947,1947,1300,1299,1299,1363,1364,1363,1300,1300,1364,1299,1300,[1364,3083],[1798,3084,2702],[1734,3085,2703],[1734,2704],[1739,1608],1741,1805,1805,[1803,3147],[525,3148],527,528,462,[526,653],[464,3339,654],[3340,655],[3341,656],3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2828,3027],2827,2764,2827,2826,2827,2764,2764,2827,[2762,2957],3084,3085,0,0,3090,3091,[2763,3027],2762,2763,2828,[2825,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3347,[80,3411],80,16,80,80,16,79,15,16,79,16,15,79,[15,3404],3340,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13641,12624],13512,13640,13512,13640,13640,13641,13641,13640,13640,13640,13641,13641,13640,13640,13641,13640,13640,13640,13512,13641,[13641,12551],12552,0,0,0,0,0,12559,[3630,12560],3629,3631,3692,3693,3629,3693,3630,3692,3694,3631,3629,[3630,12424],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16787,16916,16916,16916,16916,16787,16660,16787,16723,16724,16659,16724,16788,16724,16659,16723,16787,16659,16660,16724,16788,16659,16724,16724,16723,0,0,16659,16660,0,0,16724,16659,[16787,1376],[16788,1378,1389],[16788,1444],0,0,0,0,0,0,16660,16788,16659,16660,0,0,0,16724,16723,16659,16787,16724,16723,16788,16724,16659,16660,16660,16723,0,0,0,0,0,0,0,16719,16719,16655,16719,16783,16783,16784,16784,16783,16784,16655,0,0,0,0,16916,16851,16852,16851,0,0,16659,16660,16659,16851,16852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4611,0,0,0,0,4681,[3196,4682],3196,3195,3259,3196,3259,3259,3196,[3259,4673],4674,0,0,0,0,4681,[3259,4682],3259,3195,3259,3260,3195,6471,6471,[3259,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1799,3027],1799,[1734,1551],1811,1747,[1734,1682],1799,1798,1735,1799,[1735,3147],3148,0,0,3090,3091,[1798,1684,3092],1735,1799,1734,1734,1798,1798,[1734,1680],1809,1811,1747,[1799,1552],[1735,1553],[1735,1555],[1734,1618],1798,1798,[1799,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[461,3092],463,463,462,461,[527,3090],[525,3025],[464,3026],[1740,3027],1741,[1739,2574],[1803,1605,2575],[1798,2576],[1740,1672],[1803,3090],[1805,3026],[1363,2958],[1739,3021],[1803,3025,1665],[1740,3022,1666],[1805,3085,2702],[1740,1539,2703],[1805,1544,2704],[1741,3155],[1364,3156],1299,[1299,769],1299,1364,1363,1363,1300,1300,1300,2011,1363,1363,[1948,3083],[1735,3084],[1735,3085,2766],[1799,2767],[1799,2768],[1803,1736],1805,1740,1803,[1741,3211],[527,3212],464,526,526,[463,717],[464,718],[464,3404,719],[3405,720],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2764,2961],[2825,2958],[2763,2962],2826,2762,2761,2764,2826,[2764,3147],3148,0,0,0,0,3090,3091,[2763,2961],[2827,2958],[2826,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3347,[80,3411],15,16,79,79,80,16,79,16,16,15,16,15,79,80,[16,3404],3340,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4868,6084,6085,6086,4803,0,0,4808,4868,4869,4872,4932,4933,4867,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,4808,4868,6084,6085,6086,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13640,12688],13641,13512,13576,13577,13576,13512,13512,13512,13512,13640,13512,13576,13641,13512,13512,13641,13640,13640,13512,13641,[13640,12615],12616,0,0,0,0,0,12623,[3693,12624],3631,3631,3693,3693,3693,3695,3630,3694,3692,[13641,3758],[3694,12487],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16788,0,0,0,16980,16852,16723,16724,16723,16723,16852,16851,16852,16852,16723,16660,16788,16723,16660,16723,16788,16724,16723,16723,16659,16787,16787,16724,16659,16787,16724,16788,[16788,1441],[1633,1389],1636,[16724,1445],0,0,0,0,0,16788,16724,16659,16660,16788,0,0,0,16852,16852,16851,16851,16787,16723,16660,16788,16788,16724,16660,16787,16723,0,0,0,0,0,0,16847,16848,16720,16656,16655,16783,16655,16783,16847,16847,16848,0,16657,16658,0,16980,16916,16916,16916,0,0,16723,16659,16852,16915,16916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3406,3407,3406,3407,3341,3344,3345,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[3259,4810],3259,3195,6407,3260,3196,3196,3196,[3196,4737],4738,0,0,0,0,4616,4552,[3260,4553],3260,3196,6471,3196,3259,[3260,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1735,2958],[1735,1615,2962],1810,[1734,1812],1734,1799,1735,1798,1799,[1799,3211],3212,0,0,0,3155,[1798,3156],1735,1734,1798,1798,1734,1734,1799,[1799,1807],1808,1808,[1734,1872],1744,1811,[1735,1620],[1798,2957],[1798,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[464,3156],526,526,461,525,527,463,[528,3090],[526,3091],[1739,1605,3092],[1740,1540,2638],[1804,1798,2639],[1735,2640],[1805,1736],1739,[1803,3090],[1740,3022],[1739,3085],[1805,1729],[1805,1730],[1805,1604,2766],[1735,2767],[1799,2768],[1803,1607,3219],[1299,3220],1947,[1948,833],1364,1363,1936,1300,1364,1364,2011,1363,2011,2012,[1300,3147],[1739,1668,3148],[1798,340],[1735,2831],1734,[1803,1671],1740,1803,[1803,3020],[525,3021],[464,3085],463,463,525,[526,781],[527,782],[528,783],[526,3211,784],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3026,[2828,3027],2828,2763,2825,2761,[2763,3211],3212,0,0,0,0,0,3090,3025,3022,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[15,3411],80,80,80,79,15,79,16,15,15,16,79,16,16,15,16,80,[79,3404],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,6151,6148,6149,6150,4867,4868,4869,4872,4932,4933,4936,[422,4996],[487,4997],4931,4932,4933,4867,4868,4869,4803,0,0,0,0,0,0,4808,4809,4932,6148,6149,6150,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,12751,[13512,12752],13641,13641,13577,13640,13641,[13512,12361],[13641,12362],[13512,12366],13640,13577,13641,13640,13641,13512,[13641,12361],[13640,12362],[13641,12365],[13512,12366],13640,[13640,12424],12425,12489,0,0,0,0,0,12559,[3694,12560],3628,3694,3629,3630,3631,3630,3692,3629,[13641,3696],13641,[13512,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16787,0,0,0,0,16916,16852,16851,16852,16851,16915,16916,16915,16916,16851,16851,16660,16724,16787,16660,16723,16787,16787,16724,16723,16787,16659,16787,16723,16723,16724,16787,[16659,1632],1572,1633,[16723,1509],0,0,0,0,0,16724,16659,16723,16787,16660,16724,0,0,16916,16916,16916,16916,16660,16787,16787,16724,16788,16788,16723,16659,16724,16660,0,0,0,0,0,16911,16911,16719,16784,16784,16784,16784,16720,16911,16911,16912,0,16721,16722,0,0,16980,16980,0,0,0,16787,16723,16915,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[461,3470],[463,3471],[527,3470],[462,3471],3405,3408,3409,3276,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4871,4870,4871,4872,4873,[3195,4874],3259,3196,3196,3195,3196,3259,3195,[3259,4801],4802,4803,0,0,0,0,4616,4617,[3260,4487],[3259,4553],3259,3195,[3260,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3026,[1811,3027],1744,[1734,1618],1799,1735,1798,1735,[1735,3275],3276,3277,0,0,3219,[1799,3220],1798,1735,1735,1799,[1735,2957],[1799,2958],[1734,1617,2962],1810,1744,[1735,1683],1798,[1735,1681],1810,[1798,1684,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[464,3220],528,463,528,464,528,528,463,[464,3155],[1735,3156],[1734,2702],[1734,2703],[1798,2704],1799,[1805,1540],[1805,1541],[1740,1542],[1741,1543],[1804,1540],[1803,1543],1798,[1734,2831,403],1734,[1805,1671,3090],[1803,3026],[1363,3027],1363,1364,1364,1300,1363,1300,1363,1299,1364,1299,1364,[1364,3211],[1740,3212],[1740,1795],1734,[1803,1800],1740,[1741,2957,653],[1805,2958,654],[462,3084,655],[464,3085,656],526,461,527,463,[462,845],[463,846],[464,847],[463,3147,848],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2826,3027],2762,2762,[2825,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,3410,[16,3411],79,79,80,79,80,16,16,16,80,79,79,15,80,15,15,16,80,15,[80,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[487,6215],[423,6212],[486,6213],[487,6214],4931,4932,4933,4936,[487,4996],[486,4997],[487,5000],487,423,[423,4995],[423,4996],[422,4997],4931,4932,4933,4867,4803,0,0,0,0,4808,4872,4873,[423,4996],[486,6212],[486,6213],[423,6214],4866,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13576,12815],13640,13640,13640,13640,13512,[13512,12424],12425,12426,12430,[13640,12431],13512,13512,13641,13641,[13641,12424],12425,12426,12429,12430,[13577,12362],12488,12489,0,0,0,0,0,0,12623,[3694,12624],3693,3694,3694,3694,3695,3692,3630,[13512,3759],[13641,3760],13641,[13640,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16724,0,0,0,0,16980,16915,16915,16915,16916,0,16980,16980,0,16916,16915,16852,16724,16659,16723,16660,16788,16723,16723,16660,16787,16660,16724,16660,16660,16788,16723,[16787,1632],1634,[1636,1389],[16787,1573],0,0,0,0,0,16724,16659,16724,16723,16659,16852,0,0,0,16980,0,16980,16788,16787,16660,16787,16723,16724,16724,16660,16787,16724,0,0,0,0,0,0,0,16847,16662,16655,16783,16662,16847,0,0,0,0,16849,16849,0,0,0,0,0,0,0,16788,16724,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,0,0,0,0,0,0,0,0,0,0,3282,3283,[527,3284],462,463,462,526,[526,3469],[528,3472],[525,3473],3340,3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4740,4934,4935,4936,[3195,4937],3196,3196,3259,3196,3259,3259,3196,3196,[3196,4865],4866,4867,4868,4803,0,0,0,4616,4551,4617,[3259,4484],[3259,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1746,3092],1809,[1735,1619],1735,1799,1735,[1735,3339],3340,3341,3277,0,3090,3026,[1799,3027],1734,1735,[1799,3020],3021,3022,3026,[1747,3027],[1735,1812],1734,1734,1799,[1734,1807,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[528,3027],526,[462,653],[526,654],[526,655],[526,656],526,[462,3219],[1798,3220],[1735,2766],[1798,2767],[1735,2768],1735,1798,1734,[1428,1860],[1741,1861],[1803,1862],[1803,1863],1798,1799,[1734,2511],[1740,1607],[1803,3090],[1739,3091,1665],[1363,3027,1666],1299,1300,1300,1363,[1364,2511],1299,1364,1300,1300,[1300,3083],[1740,3084],[1803,3085],[1739,1795],1798,[1741,1864],[1804,3020],[525,3021,717],[528,3022,718],[461,3085,719],[463,720],525,463,528,461,[462,909],[463,910],[528,911],[462,3211,912],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[2827,2961],[2761,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[15,3156],15,80,15,79,80,16,79,80,80,15,80,15,15,15,15,15,80,15,15,15,[80,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[487,4937],487,487,487,487,[423,4995],[486,4996],[423,4997],[423,5000],422,486,422,486,422,423,423,423,[486,4995],[3777,424,4996],[3777,4997],4931,4674,0,0,0,0,4681,4936,[487,4937],487,422,486,486,[486,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13641,12815],13640,13640,13512,13641,13640,[13641,12424],12425,12489,0,12494,12495,[13641,12496],13641,13512,[13576,12361],12488,12489,0,0,12494,12426,12489,0,0,0,0,0,0,0,12494,12430,[3630,12431],3692,3630,3692,3693,3695,[13640,3696],13641,[13512,1519],[13640,12424],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16659,0,0,0,0,0,16980,0,16980,0,0,0,0,0,16980,16980,16916,16723,16660,16851,16852,16852,16852,16852,16787,16788,16660,16724,16659,16660,16659,16788,[16788,1696],[16787,1697],[16659,1698],[16660,1701],0,0,0,0,0,16851,16852,16660,16659,16851,16916,0,0,0,0,0,0,16852,16851,16852,16852,16852,16659,16787,16788,16723,16788,16787,16659,16724,16723,16723,16723,16659,16911,16726,16847,16847,16726,16911,16659,16659,16788,16659,16913,16913,16724,0,0,0,0,0,0,16724,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3276,3277,0,0,0,0,0,0,0,0,3282,3346,3347,[1741,3348],[1427,398],528,463,[1804,589],[1741,590],[1740,591],[1803,592],[1741,400,3404],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[3196,4999],[3195,4998],[3196,4999],[3259,5000],3195,3260,3260,3259,3259,3259,3195,3260,3195,3195,[3196,4930],4931,4740,4867,4803,0,0,0,0,4616,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1747,3156],1810,[1799,1812],[1734,1616],[1735,1552],[1734,1553],[1798,1554],[1735,1555,3404],3405,3148,0,0,3090,3091,[1798,2958],[1734,2961],3084,3085,0,3090,3091,[1734,1682,3092],1735,1735,1735,[1799,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[463,3092],[462,717],[461,718],[528,719],[528,720],525,[525,3090],[525,3026],[1798,3027],[1798,2831],[1735,2957],[1735,2958],[1735,2961],[1739,1670,2962],1740,1739,[1805,403],1805,[1741,1669],[1799,2574],[1735,2575],[1739,1608,2576],1804,[1739,3090,1729],[1803,3091,1730],[1363,2962],1364,1299,[1363,2574],[1299,2575],[1299,2576],1364,[1364,769],2012,[1299,3147],[1739,3148],[1741,1604],1735,[1740,1671,339],[1805,3020],[464,3084],[461,3085,781],[525,782],[525,783],[527,784],525,462,525,527,525,[527,974],[463,3020,975],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[79,3220],15,15,16,79,15,80,16,15,15,15,15,79,15,15,80,15,16,15,79,15,[79,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[422,4682],423,422,423,423,422,487,487,422,487,423,487,423,487,486,422,423,486,487,[3777,488],661,[3777,4673],4674,0,0,0,0,4745,[487,4746],486,422,486,486,486,[423,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13641,12560],13512,13512,13641,13640,13512,[13640,12487],12488,12489,0,0,0,12559,[13641,12560],13640,13512,[13577,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[3694,12362],[3628,12365],[3631,12362],[3695,12365],[13640,3759,12366],[13512,3760],[13512,1519],[13641,12361],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16788,16916,16915,16916,16915,16916,16851,16852,16852,16787,16724,16724,16660,16723,16723,16659,16723,16852,0,0,0,0,0,16916,16916,16852,16852,16915,16980,0,0,0,0,0,0,16915,16916,16915,16916,16915,16851,16659,16788,16788,16787,16660,16788,16724,16724,16664,16664,16787,16723,16659,[16911,17487],[16911,17488],16659,16723,16788,16723,16724,16659,16723,16788,16659,0,0,0,0,16723,16723,16724,16723,16788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1805,3470],[1805,3471],3340,3341,3277,0,0,0,0,0,0,0,3155,3410,[1740,3411],1741,1740,[1805,588],[1805,399],1805,1805,1803,1739,1739,[1739,3910],3911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[3259,4937],3259,3260,3259,3195,3196,6408,3196,[3195,4483],[3259,4484],[3195,4487],[3259,4488],3195,3196,3196,3196,[3260,4995],[3259,4996],4931,4674,0,0,0,0,0,0,0,4808,4868,4869,4803,4808,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1747,3220],1811,[1799,1682],[1799,1807],1811,1809,1747,1808,[1811,3211],3212,0,0,0,3090,3022,3025,3085,0,0,0,3155,[1734,3156],1735,1735,1798,[1735,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[528,3156],[463,781],[461,782],[526,783],[463,784],526,528,[464,3090],[526,3091],[1798,2961],[528,3021],[462,3022],[462,3025],[461,3026],[1740,3027],1804,1805,1739,1740,[1741,1603,2638],[1799,2639],[1804,1672,2640],1803,1803,[1740,3090],[1804,3026],[1300,3027],1300,[1364,2957,2638],[1363,2961,2639],[1948,2962,2640],1364,[1300,833],1300,[1299,3211],[1805,3212],[1739,1795],[1492,1608],1804,[1740,3147],[527,3148],[461,845],[464,846],[527,847],[525,848],527,526,527,[464,2957],[525,2958],[528,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[16,3156],15,80,79,80,15,16,79,79,79,16,79,16,16,16,80,16,15,79,16,15,[15,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[422,4746],422,487,487,487,486,487,422,487,422,486,422,422,422,422,486,487,487,486,484,[3777,294],[3777,4801],4802,4803,0,0,4808,4809,[423,4810],486,487,423,423,[487,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13641,12624],13512,13576,13640,13641,13640,[13512,12551],12552,0,0,0,0,12559,[13640,12560],13640,13512,[13640,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12426,12429,12430,[13641,12362],[13640,12365],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,16724,0,16980,0,0,0,16915,16916,16915,16852,16851,16852,16851,16724,16660,16851,16851,16915,0,0,0,0,0,0,16980,16915,16915,0,0,0,0,0,0,0,0,0,16980,0,0,16980,16915,16851,16659,16787,16724,16724,16788,16787,[16660,17103],16729,[16728,17495],[16659,17103],[16660,17104],[16659,17105],[16660,17105,17551],[16723,17105,17552],[16788,17105],[16660,17106],16723,16724,16659,16788,16788,16660,16724,0,0,0,16724,16788,16660,16660,16724,16723,16660,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1803,3411],1804,1427,[1427,3404],3405,3341,3277,0,0,0,0,0,0,3219,[1741,3220],1804,1740,1740,1741,1803,1427,1804,1741,1741,1739,[1805,3974],3975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3195,4746],3259,3259,6471,3260,3260,3196,3260,[3259,4546],4547,4548,4551,4552,[3260,4553],3259,3196,6472,3260,3260,[3260,4673],4674,0,0,0,0,4808,4868,4869,4872,4932,4933,4867,4872,4867,4868,4869,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1810,3220],[1735,1620],1798,[1799,1871],[1799,1872],1811,1809,[1747,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,3090,3026,[1735,3027],1798,[1799,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[528,3220],[525,845],[526,846],[525,847],[463,848],461,528,528,[525,3090],[461,3025],[526,3085],659,660,[527,3090],[528,3091],[1741,2961],[462,1867,3221228872],1739,1803,[1803,1667,2702],[1734,2703],[1740,1736,2704],1803,[1805,402],1805,[1739,3090],[1805,3091],[1364,2958],[1735,3021,2702],[1734,3025,2703],[1735,3026,2704],[1364,3027],1300,[1299,3020],[1805,3021],[1804,1604,3085],1734,[1741,1672],1804,[1740,3211],[464,3212],[464,909],[527,910],[464,911],[462,912],461,526,[463,3020],3021,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[80,3220],16,16,16,79,79,79,16,16,15,16,15,15,15,15,16,16,15,79,79,16,[80,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[487,4553],486,487,486,422,486,423,486,423,422,422,487,[422,4483],[486,4484],[486,4487],[422,4488],422,423,422,484,[485,4865],4866,4867,4868,4869,4872,4873,[422,4874],422,422,486,[486,4483],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13640,12624],13641,13641,13512,13512,13640,[13512,12615],12616,0,0,0,0,12623,[13640,12624],13577,13641,[13641,12679],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16787,0,0,0,0,0,0,16980,0,16915,16915,16916,16915,16851,16851,16915,16915,16980,0,0,0,0,0,0,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16915,16660,16659,16788,16660,16660,16788,17167,[16729,16792],[16728,16793,17559],17299,17168,17168,17169,17169,17168,17300,[16659,17106],16787,16723,16660,16724,16659,16787,16723,16660,16787,16787,16660,16659,16787,16660,16724,16788,16851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1741,3220],1804,1741,1427,1741,[1805,3404],3405,3148,0,0,0,0,0,3282,3283,[1741,3284],1427,1803,1739,1739,1427,1740,1427,1427,1805,1741,[1803,4038],4039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3259,4553],3259,3260,3195,3259,3259,[3259,4609],4610,4611,0,0,4616,4617,[3260,4618],3260,6408,3195,3259,[3195,4801],4802,4803,0,0,4808,4809,4932,4933,4936,[3259,4996],[3196,4997],4931,4936,4931,4932,4933,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,[1744,3284],[1799,1684],1799,1799,1734,[1799,1680,2957],[1808,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1799,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[461,3027,909],[526,910],[527,911],[461,912],463,463,527,527,526,526,723,724,525,[527,3090],[526,3026],[525,3221228808],[526,1801],1803,[1739,1731,2766],[1798,2767],[1803,1800,2768],[1804,653],[1739,654],[1740,655],[1805,656],[1739,3090],[1805,3022],[1739,1669,3085,2766],[1735,2767],[1798,3090,2768],[1799,3091],[1299,2958],[1804,3084],[1803,3085],[1804,1603],1799,[1740,1736],[1740,3083],[527,3084],[464,3085],528,[462,974],[528,975],525,525,464,[462,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[15,3156],79,15,80,16,79,79,15,80,15,80,15,16,80,80,16,79,80,79,80,79,[80,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[423,4484],[423,4487],[423,4488],487,423,[487,4483],[423,4484],[487,4487],[423,4488],422,[423,4546],4547,4548,4551,4552,[487,4553],423,486,487,423,[486,4930],4931,4932,4933,4936,[486,4937],422,422,423,[423,4609],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13512,12560],13576,13641,13641,13640,13641,[13641,12615],12616,0,0,0,0,12623,[13577,12624],13640,13641,[13512,12743],12744,12745,12746,12747,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16659,16660,0,0,0,0,0,0,0,0,16980,0,0,16980,16915,16916,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16787,16787,16724,16660,16723,16723,17231,17232,17364,17168,17169,17169,17169,[17168,17615],17169,17168,17170,16788,16788,16788,16787,16724,16659,16787,16660,16724,16659,16787,16660,16788,16788,16788,16660,16915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1741,3027],1739,1741,1804,1804,[1739,3211],3212,0,0,0,0,3282,3346,3347,[1803,3348],1803,1804,1741,[1492,334],[1805,269],[1427,273,3020],[1427,2961],[1739,333,2962],[1804,269],[1805,270,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3196,4618],3196,3259,3195,3196,[3259,4673],4674,0,0,0,0,4681,[3259,4682],3259,3195,3196,3259,[3260,4865],4866,4867,4868,4869,4872,4873,[3259,4996],[3259,4997],[3195,5000],3259,3196,[3259,4995],[3195,5000],[3196,4995],[3260,4996],[3259,4997],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[1745,3348],[1799,1748],1799,1735,[1798,3083],3084,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[462,2958,974],[527,2961,975],[462,2962],464,464,526,461,525,527,461,463,528,525,[526,3090],[527,3221228744],[525,1865],1741,[1740,1859],[1740,1860,2831],[1804,1671],[1739,2957,717],[1741,2961,718],[1803,2962,719],[1804,720],1739,1739,1804,[1803,1795,2831],1734,[1798,3090],[1804,1800,3022],[1739,3085],1805,[1741,1731],1799,[1803,1608],[1803,3211,2511],[526,3212],785,786,461,527,527,[464,653],[464,654],[528,3211,655],[3212,656],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[80,3220],15,16,16,15,15,15,16,79,15,79,79,80,80,79,80,16,15,80,79,80,[16,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4552,[486,4487],[486,4484],4547,4548,4551,4552,[487,4484],4610,4611,0,0,4616,4617,[486,4618],423,422,423,422,[486,4995],[3777,488,4996],[3777,4997],[3777,291,4874],486,423,422,423,[486,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13641,12624],13512,13640,13512,13640,13641,[13576,12679],12680,12681,0,0,12686,12687,[13512,12688],13512,13641,13640,[13512,12808],12809,12810,12811,12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16660,0,0,0,0,16660,16788,16660,16660,16723,0,0,0,0,16787,16787,16660,16659,16659,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,0,0,0,0,0,0,0,0,0,16787,16787,16660,16724,16659,16660,16660,16787,16787,16659,16787,16788,16724,0,0,0,0,0,16659,16788,16659,16788,16788,16788,16659,16659,[17231,17679],17364,17168,17168,17169,17168,17168,17363,17234,16659,16788,16659,16724,16659,16723,16659,16659,16788,16659,16788,16787,16787,16723,16723,16851,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1739,3092],1427,1803,1805,[1427,3147],3148,0,0,0,0,3155,3410,[1804,3411],1803,1739,1805,[1804,333],527,[525,3083],3084,3025,3026,[462,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3196,4682],3260,6407,3195,3196,[3259,4737],4738,0,0,0,0,4616,4552,[3196,4553],3195,3195,3260,3259,[3195,4930],4931,4932,4933,4936,[3259,4937],3195,6407,3259,3195,3260,6408,3195,3260,3260,3195,[3195,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1798,1684,3411],[1799,1681],[1798,1683],[1734,1616],[1798,1552,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3026,[525,3027],463,526,464,528,462,463,463,[526,653],[463,654],[526,655],[463,3221228680,656],462,[462,1674],[528,1866],[1740,3221228871],[1740,2958],[464,3021,781],[462,3025,782],[525,3026,783],[1739,3027,784],1805,1804,[1804,403],[1491,1859],[1804,1860],[1740,1861],[1739,1671],1805,[1803,1665],[1740,1795,1666],1798,[1741,1672,2574],[1741,3275,2575],[461,3276,2576],[849,3277],850,528,526,463,[461,717],[462,718],[463,3275,719],[3276,720],3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[79,3156],16,80,80,15,16,80,80,15,15,15,79,79,16,16,79,80,80,79,16,16,[16,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4548,4611,0,0,4616,4548,4611,0,0,0,0,4681,[487,4682],423,486,487,422,420,[3777,359],597,[3777,355],487,487,487,422,[487,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13512,12431],13640,13640,13512,13641,[13512,12743],12744,12745,12748,12749,12750,12751,[13640,12752],13641,13640,13640,13641,[13512,12873],[13641,12874],[13641,12875],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,16723,0,0,16724,16723,16723,16660,16723,16659,16660,16660,16724,16723,16724,16660,16723,16787,16787,16659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16787,16659,16659,16723,16724,16723,16787,16724,16723,16788,16788,16788,16723,16787,16724,16788,16659,16659,16787,16659,16788,16659,16788,16788,16787,16788,17231,17232,17233,17232,17233,17232,[17234,17871],16659,16659,16724,16659,16788,16723,16660,16659,16723,16660,16660,16724,16787,16724,16723,16788,16916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1803,3156],1492,1805,1804,[1491,3211],3212,0,0,0,0,3219,[1427,3220],1803,1803,1739,1427,[1427,332],527,[525,3147],3148,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3196,4746],3260,3196,3260,[3260,4546],4547,4611,0,0,0,0,0,4616,4617,[3260,4618],3260,3260,3260,3259,[3259,4995],[3259,4996],[3195,4997],[3196,5000],3196,3195,3195,3260,3196,3196,3260,3259,3196,3260,3196,3259,[3196,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1808,3220],[1735,1748],1735,1735,[1735,1615],[1808,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[526,2958],[462,2961],[463,2962],462,462,463,462,[528,717],[461,718],[462,719],[461,720],461,462,463,[461,1674,3221228807],[462,3021],[528,3085,845],[462,846],[525,3090,847],[528,3091,848],[1803,2958],[1805,2962],1804,1805,1803,1805,1804,1805,[1740,1729],[1804,1859,1730],[1735,402],[1739,1736,2638],[1805,3339,2639],[3340,2640],[464,3341],[461,3277],461,526,527,[462,781],[462,782],[525,3339,783],[3340,784],3341,3277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[15,3220],80,80,15,80,16,79,15,80,16,16,15,16,79,80,79,15,80,16,79,16,[16,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[423,4682],486,486,423,486,[3777,488],3777,3777,[3777,419],486,486,423,[487,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13641,12496],13512,13512,13512,13640,[13512,12808],12809,12812,12813,12814,[13640,12815],13512,13512,13641,13640,13641,13641,13641,13641,[13577,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16723,16660,16787,[16723,1376],[16723,1377],[16660,1378],[16787,1379],[16660,1380,1517],[16787,1381],16788,[16724,1442],[16787,1444],16788,16660,16723,16787,16787,16787,16724,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16787,16788,16787,16723,16788,16787,16660,16723,16788,16660,16660,16724,16660,16660,16788,16724,16723,16660,16787,16788,16723,16723,16723,16724,16659,16659,16788,16724,16723,16788,16723,16724,16788,16659,16787,16787,16723,16660,16723,16724,16787,16787,16852,16851,16852,16851,16723,16660,16724,16851,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3342,3343,3277,3219,[1804,3220],1427,1427,1741,[1741,3275],3276,3277,0,0,3282,3283,[1741,3284],1740,1804,1803,1739,[1740,396],464,[463,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3196,4100],[3260,4101],[3259,4102],4610,4611,0,0,0,0,0,0,0,4681,[3260,4682],3196,6472,3196,3196,3259,3259,3196,3196,3260,3195,3259,3195,3196,[3195,4483],[3260,4484],[3196,4488],3195,3259,6472,3195,[3259,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1735,1620,3027],1734,1735,[1799,1743],[1808,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3026,[526,3027],464,461,526,[463,781],[525,782],[463,783],[461,784],525,526,528,[527,3221228743],[464,3085],[462,909],[463,910],[526,911],[464,3090,912],[463,3022],[463,3026],[1804,2962],1739,[1741,2957],[1739,2958],[1740,2961],[1739,2962,653],[1739,654],[1805,655],[1805,1668,656],[1799,2702],[1739,1606,2703],[1805,1604,3404,2704],3405,[461,3148],525,461,462,[525,845],[525,846],[526,847],[525,3404,848],3405,3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[16,3156],80,15,79,80,80,79,80,16,15,16,79,79,79,80,16,80,80,15,16,16,[15,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[486,4746],487,422,423,423,484,[3777,295,4483],[3777,4487],[3777,483,4488],422,486,[486,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13640,12560],13640,13640,13641,13640,13641,[13640,12873],[13640,12876],[13577,12877],[13512,12878],13640,13512,13641,13640,13640,13640,13641,13512,13512,[13641,1385],[13641,12615],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16788,16724,16787,[16660,1440],[1635,1517],1570,1570,1633,1570,[16660,1377],1636,[1634,1517],[16723,1381],16660,16788,16724,16724,16660,16788,16787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16723,16788,16659,16724,16851,16852,16852,16852,16851,16852,16851,16659,16659,16723,16724,16787,16724,16788,16788,16724,16723,16723,16660,16660,16659,16659,16851,16851,16852,16852,16852,16788,16724,16660,16788,16659,16660,16724,16723,16724,16851,16916,16915,16916,16915,16851,16852,16852,16915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3406,3407,3341,3346,[525,3284],[1803,273],1427,1741,[1492,3339],3340,3341,3342,3343,3346,3347,[1739,3348],1427,1739,1427,1805,[1739,460],[461,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4164,4165,4166,4611,0,0,0,0,0,0,0,0,4745,[3260,4746],3195,3259,3195,3259,3259,3260,3196,3259,3196,6407,3196,3196,[3196,4609],4547,4548,4552,[3259,4553],3195,3259,3195,[3196,4801],4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1735,3521],[1798,3522],[1735,1807,3523],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[525,2958],[527,2961],[525,2962],[464,845],[526,846],[528,847],[463,848],527,528,528,[526,3221228679],526,527,[462,974],[527,975],525,527,[528,3090],[526,3026,18],[1741,2961,19],[463,3021,20],[464,3022],[462,3025],[527,3026,717],[1741,2958,718],[1741,2961,719],[1741,1604,2962,720],[1799,2766],[1799,2767],[1799,2768],[1735,3211],[463,3212],527,463,461,[527,909],[526,910],[464,911],[461,912],[461,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[15,3220],80,80,80,79,79,16,80,15,15,80,15,79,79,15,16,15,80,80,16,16,[16,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,[423,4810],487,422,486,423,[487,4546],4547,4551,4552,[423,4484],[422,4487],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13641,12624],13640,13640,13513,13641,13640,13640,13512,13641,13640,13512,13512,13512,13640,13640,13641,13640,13512,13512,13640,[13640,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16659,16659,16788,[16723,1568],1570,1636,1635,1636,1572,1635,1636,1634,[16724,1445],16723,16788,16724,16659,16659,16788,16852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16723,16788,16660,16659,16787,16916,16915,16915,16915,16916,16915,16916,16851,16852,16851,16851,16851,16851,16851,16852,16851,16851,16852,16851,16852,16851,16852,16915,16915,16915,16916,16916,16852,16851,16851,16852,16852,16851,16852,16852,16851,16916,0,0,16980,0,16916,16915,16915,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3347,[463,3470],[463,3471],3405,3410,[461,3348],[1740,399],1805,1427,1803,[1804,3404],3405,3406,3407,3410,[1740,3411],1427,1741,1804,1803,[1804,2957],[524,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3260,4553],3195,3195,3260,3259,3195,3260,3196,3260,3260,3195,3260,[3260,4673],4674,0,4616,4617,[3195,4618],3259,3196,[3196,4865],4866,4867,4868,4869,4870,4871,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3585,3586,3587,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3026,[463,3027,909],[463,910],[464,911],[528,912],526,464,463,463,526,462,527,525,659,660,462,[525,3090,82],83,[462,3085,84],461,525,[463,3090,781],[463,3022,782],[462,3025,783],[463,3026,784],[1734,3027],[1734,2831],[1734,3020],[464,3021],[525,3085],526,527,461,461,[525,974],[463,975],[462,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[80,3027],16,15,15,80,16,79,80,15,79,80,16,15,15,16,80,16,80,79,[15,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4870,4871,4872,4873,[422,4874],422,486,422,[487,4609],4610,4611,0,4616,4548,4551,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13640,12431],13640,13640,13640,13641,13640,13512,13512,13512,13641,13512,13641,13641,13576,13640,13641,13641,13641,[13641,12424],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16723,16724,16660,[16659,1505],[16787,1697],1569,[1635,1517],1570,1569,1570,1571,[1571,1517],[16788,1637],16723,16659,16787,16788,16788,16851,16916,0,0,0,0,0,16724,[16660,1385],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16660,16788,16787,16724,16724,0,16980,0,0,16980,0,16980,16915,16915,16916,16916,16915,16915,16916,16916,16915,16916,16916,16916,16915,16915,16916,16980,16980,0,0,0,16916,16916,16916,16916,16916,16915,16916,16915,16915,0,0,0,0,0,16980,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,408,343,0,0,0,348,408,409,1950,31,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3346,3410,[1739,398,3411],[1740,589],[1804,590],[1803,591,3469],[1740,592,3474],[1739,593],1427,1804,1741,1739,1741,[1804,3469],[1740,3470],[1805,3471],[1803,3474],1740,1739,1739,1741,[1739,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3259,4484],[3260,4487],[3196,4488],3260,3260,3259,6408,3260,3260,3196,3196,[3260,4737],4738,0,0,4681,[3195,4682],3260,3260,3195,[3195,4930],4931,4932,4933,4934,4935,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[526,2958,974],[464,2961,975],[464,2962],525,528,463,528,464,464,527,525,723,724,527,[526,146],147,[464,148],462,461,[528,845],[527,846],[463,847],[528,3090,848],[526,3091],[1735,2958],[527,3084],[527,3085],463,525,527,526,461,[464,2957],[463,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[79,3027],15,15,79,15,16,16,79,80,16,80,15,80,16,80,16,15,[16,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4809,4934,4935,4936,[486,4937],423,487,486,422,[423,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13512,12431],13640,13512,13576,13512,13640,13640,13512,13641,13512,13641,13512,13641,13512,13641,13512,[13641,12487],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16659,16788,16788,16787,16787,16724,[16788,1505],1572,1635,[1572,1517],1569,[16724,1699],[16788,1700],[16788,1701],16787,16659,16787,16660,16852,16915,16980,0,0,0,0,16724,16724,16788,16788,16723,16659,0,0,0,0,0,16660,16788,16724,16788,16660,16724,16724,16660,16659,16788,16724,16851,0,0,0,0,0,0,0,16980,0,0,16980,16980,16980,16980,0,0,16980,16980,16980,16980,16980,16980,0,0,0,0,0,16980,16980,16980,0,16980,16980,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,3890,409,343,0,0,348,408,31,412,280,342,343,0,348,349,472,473,2014,95,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,3410,[1740,3474],1427,1804,1427,1741,1805,1741,1739,1803,1427,1803,1428,1805,1739,1804,1491,1740,[1740,333],[1740,269],[1741,336,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4552,[3196,4553],3196,3259,3259,3195,3259,3260,[3259,4546],4547,4611,0,0,4745,[3195,4746],3196,3196,3195,3260,[3195,4995],[3195,4996],[3260,4997],[3260,4998],[3195,4999],4931,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3026,[525,3027],526,526,528,463,527,462,464,461,527,[525,2957],[525,2961,210],[464,2962,211],[461,212],462,527,[464,909],[463,910],[462,911],[528,912],[528,3090],[528,3022],[526,3085],462,461,527,464,463,[464,3020],3021,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[15,2958],[80,2961],[80,2961],[79,2958],[80,2961],[79,2958],[16,2961],[79,2958],[80,2961],[79,2961],[80,2958],[16,2961],[16,2958],[15,2961],[79,2958],[15,2961],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4808,4872,4873,[423,4998],[487,4999],[422,5000],487,422,422,422,[486,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13640,12362],[13640,12365],[13640,12366],13640,13641,13640,[13641,12361],[13640,12365],[13641,12362],[13641,12366],13576,13577,13640,13641,13640,[13640,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16659,16660,16787,16787,16659,16659,[16660,1696],[16660,1697],[16787,1698],[16723,1508],16723,16723,16724,16788,16724,16788,16852,16915,16980,0,0,0,0,0,16787,16659,16660,16787,16660,16724,16659,16660,0,16724,16723,16660,16788,16788,16788,16788,16724,16659,16660,16787,16788,16659,16916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16724,16723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,349,3954,473,407,408,31,412,472,95,476,[3777,536],406,407,411,412,413,[486,536],[486,537],[423,2078],[487,159],471,342,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1492,3220],1804,1803,1741,1740,1804,1803,1804,[1804,268],[1804,269],[1804,335],1804,1805,1803,1741,1740,1427,1740,[1804,332],464,[461,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3260,4618],3195,3196,3259,3195,[3195,4609],4610,4611,0,0,0,4745,[3260,4746],3260,6407,3195,3259,3196,3195,3260,3196,3195,[3196,4995],4866,4802,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[525,3027],463,528,[461,2957],[528,2958],[462,2961],[464,2962],462,[525,3020],3021,3025,3026,[528,3092],463,527,527,[527,974],[525,975],461,526,528,464,525,464,463,528,[462,3083],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3025,3025,3022,3025,3022,3025,3022,3025,3025,3022,3025,3022,3025,3022,3025,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,4936,[422,4937],423,486,422,422,486,[487,4546],[422,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12430,[13576,12431],[13512,1385],[13640,12424],12425,12429,12426,12430,[13640,12431],13512,13640,13641,13640,[13641,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16852,16852,16660,16788,16659,16659,16660,16788,16788,16788,16787,16659,16660,16788,16787,16787,16852,16916,0,0,0,0,0,0,0,16852,16851,16852,16659,16659,16660,16659,16659,16659,16723,16788,16724,16659,16852,16851,16851,16851,16852,16852,16852,16852,16852,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16785,16785,16785,0,0,0,0,0,16660,16660,16659,0,0,0,0,0,0,0,0,0,0,0,0,0,16788,16787,16787,16659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[3777,4018],[3777,537],471,472,95,476,[3777,536],[3777,159],[3777,540],3777,[3777,470],471,280,476,[3777,548,477],421,[422,13444],486,423,[487,535],406,407,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3155,[1741,3156],1804,1739,1739,1491,1739,1740,1803,[1741,524],528,[526,2957],[1427,2958],[1427,2961],[1739,2962],1803,1804,1805,1740,[1804,460],525,[527,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[3195,4682],3196,3259,3260,3195,[3196,4673],4674,0,0,0,0,4616,4552,[3195,4553],3195,[3259,4483],[3259,4484],[3195,4487],[3195,4488],3259,3196,3196,3260,[3259,4930],4866,4867,4803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[528,2961],[526,2958],3021,3022,3025,3026,[527,2958],3084,3085,0,3155,[527,3156],[527,651],[461,652],525,462,462,527,525,526,526,527,462,[461,651],[463,652],[528,3147],3148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4681,[487,4682],486,487,422,487,422,[423,4609],4610,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13640,12365],12488,12489,0,0,12494,12495,[13640,12496],13641,13513,13641,[13640,12551],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16915,16916,16852,16851,16851,16787,16723,16724,16788,16724,16660,16851,16852,16852,16851,16852,16915,16980,0,0,0,0,0,0,0,16916,16915,16915,16851,16852,16724,16659,16723,16788,16660,16723,16852,16851,16915,16916,16915,16916,16916,16916,16915,16915,16916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16785,16785,16658,0,0,0,0,0,16724,16788,16788,0,0,0,0,0,0,0,0,0,0,0,0,16659,16788,16788,16660,16788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,413,[3777,477],3777,3777,[3777,535],[3777,536],[3777,159],[3777,540],[3777,1135],[3777,1136],3777,661,3777,[3777,535],[3777,539],[3777,540],3777,[3777,356],421,486,423,[487,1131],[487,470,1132],406,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3219,[1803,3220],1805,1427,1804,[1741,2957],[1427,2958],[1427,2961],[1427,333,2962],526,[463,3020],3021,3022,3025,3026,[1741,3027],1740,1427,1804,[1741,524],[464,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[3260,4746],3196,3259,6471,3260,[3259,4737],4738,0,0,0,0,0,4616,4617,[3195,4487],4547,4548,4551,4617,[3196,4618],3195,3195,6471,3260,[3260,4930],4931,4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3025,3022,3085,0,0,3090,3022,3085,0,0,3219,[525,3220],[464,715],[525,716],525,[528,2957],[463,2961],[464,2958],[461,2961],[464,2962],461,461,528,[528,715],[462,716],[527,3211],3212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4745,[423,4746],487,423,422,486,422,[422,4673],4674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12429,12489,0,0,0,12622,12623,[13512,12624],13512,13641,13641,[13640,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16915,16915,16915,16851,16852,16852,16852,16851,16852,16916,16915,16915,16915,16916,0,0,0,0,0,0,0,0,0,0,16980,0,16916,16915,16851,16852,16723,16723,16659,16851,16915,16915,16980,0,16980,0,16980,0,0,16980,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16657,16658,16785,0,0,0,0,0,16851,16852,16851,0,0,0,0,0,0,0,0,0,0,0,16787,16724,16660,16724,16723,16659,0,0,0,0,0,0,0,0,0,0,0,0,0,348,1950,409,343,348,349,[3777,286],3777,597,[3777,293],[3777,232,616],[3777,616],[3777,616],[3777,616],[3777,1199,616],[3777,1200,616],[3777,616],[3777,616],[3777,1199,616],[3777,1200,616],[3777,616],[3777,616],[3777,616],[3777,616],[3777,291,616],423,486,[423,1195],[423,1196],[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[1741,3027],1803,[1740,3020],3021,3022,3025,3026,[526,2961],3084,3085,0,0,3090,3091,[1428,2961],[1427,2958],[1739,2961],[524,2958],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3259,4553],3259,3196,[3260,4546],4547,4611,0,0,0,0,0,0,4616,4551,4611,0,0,4681,[3196,4682],3196,3196,3260,3195,3196,[3195,4737],4738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3026,[461,3027],528,[463,3020],3021,3025,3022,3025,3026,[461,3027],525,464,525,[525,3020],3021,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[423,4553],422,423,422,[486,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12687,[13640,12688],13641,13512,13512,[13640,12679],12680,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16980,16915,16915,16915,16916,16915,16916,0,16980,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,0,16916,16915,16723,16724,16723,16915,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16721,16786,16785,0,0,0,0,0,16916,16916,16916,0,0,0,0,0,0,0,0,0,0,0,16724,16659,16724,16787,16660,16851,0,0,0,0,0,0,0,0,0,0,0,0,348,349,2014,473,407,412,413,[3777,294,414],[3777,292],[3777,228],485,[484,680],[295,680],680,680,[680,1129],[680,1130],680,680,[680,1131],[680,1132],680,680,680,680,[355,680],486,423,486,[422,149],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[1803,2958],3084,3085,0,0,3090,3025,3085,0,0,0,0,3090,3025,3022,3025,3022,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3195,4487],[3195,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,4616,4552,[3260,4553],3196,3260,3260,[3195,4546],4547,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3091,[462,2958],3084,3085,0,0,0,3090,3091,[462,3521],[461,3522],[528,3523],3084,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[487,4484],[422,4487],[487,4484],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12686,12750,12751,[13640,12752],13640,13512,13640,[13640,12743],12744,12745,12681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,0,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16660,16787,16788,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16852,16722,16722,16786,16721,0,0,0,0,16980,0,0,0,0,0,0,0,0,0,0,0,0,16851,16852,16852,16851,16851,16916,0,0,0,0,0,0,0,0,0,0,0,348,412,413,[423,2078],[487,537],471,476,[486,477],484,485,486,422,[423,808],[3777,296,808],[3777,808],[3777,808],[3777,808,1193],[3777,808,1194],[3777,808],[3777,808],[3777,808,1195],[3777,808,1196],[3777,808],[3777,808],[3777,808],[3777,808],[3777,419,808],422,486,423,[423,213],214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3085,0,0,0,0,0,0,0,0,0,0,0,3089,0,3089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4551,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,[3195,4100],[3195,4101],[3195,4102],4610,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3090,3022,3085,0,0,0,0,0,3090,3585,3586,3587,3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4548,4551,4548,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,12814,[13512,12815],13640,13641,13641,13641,13577,[13640,12808],12809,12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16660,1519],16660,16724,16659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16915,16852,16722,16721,16785,16658,16785,16658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16916,16915,16916,16916,16915,0,0,0,0,0,0,0,0,0,0,0,0,221,413,[422,477],487,422,[422,535],[422,540],486,423,487,487,422,486,[3777,360],3777,597,3777,3777,3777,3777,3777,3777,3777,[3777,23],[3777,27],[3777,24],[3777,483,28],420,[3777,548],421,[423,277],278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4164,4165,4166,4611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12559,[13512,12560],[13641,1387],13640,13641,13577,13641,13640,[13641,1387],[13640,12615],12552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16851,16852,16852,16851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16916,16851,16657,16657,16786,16786,16721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,0,0,16980,16980,0,0,0,0,0,0,0,0,0,0,0,0,285,[486,286],422,486,487,422,422,487,487,422,486,486,486,[3777,424],[3777,86],[3777,27],[3777,24],[3777,28],3777,3777,3777,3777,[3777,86],87,88,91,92,[3777,358,93],597,[3777,357,86],87,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12623,[13640,12624],13641,13641,13512,13641,13577,13641,13640,[13512,12615],12616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16915,16915,16916,16915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16916,16852,16721,16721,16786,16786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,[423,222],423,422,486,422,487,487,423,[487,1133],[486,1134],487,[423,23],[488,27],150,88,91,92,[3777,27],[3777,24],[3777,27],[3777,24],150,151,0,0,156,157,[3777,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12430,[13641,12431],[13641,1513],13512,[13641,1385],13640,[13640,1513],[13641,12424],12425,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16916,16851,16852,16852,16851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,[487,286],422,[423,1129],[423,1130],422,[486,23],[422,27],[423,158],[423,1197],[487,1198],[422,86],87,88,151,0,0,156,88,91,88,91,151,0,0,0,0,156,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12495,[13641,12362],[13512,12365],[13640,12362],[13640,12365],[13512,12362],12488,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16915,16916,16916,16915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,92,[423,93],[422,1193],[487,1194],[423,86],87,88,92,[487,27],[486,24],150,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12494,12426,12429,12426,12429,12426,12489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16980,16980,16980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,[422,24],[486,27],150,151,0,156,91,88,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,88,91,151],"collisions":[4756,4757,4758,4759,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5821,6583,6584,6862,6863,6864,6865,6866,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,7613,7614,7615,7639,7640,7641,7642,7664,7694,7697,7917,7918,7919,7920,7921,7928,7929,7930,7931,7932,7933,7934,8668,8669,8670,8671,8678,8679,8695,8696,8697,8698,8699,8720,8721,8722,8723,8724,8727,8728,8729,8734,8735,8749,8750,8751,8752,8753,8754,8974,8975,8976,9497,9498,9499,9721,9722,9723,9724,9725,9726,9727,9733,9734,9735,9736,9741,9745,9752,9753,9754,9755,9756,9776,9777,9778,9779,9780,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9805,9806,9807,9808,9809,9810,9811,10030,10031,10032,10778,10779,10780,10781,10782,10783,10784,10788,10789,10790,10791,10792,10795,10796,10797,10800,10801,10802,10803,10809,10810,10811,10831,10832,10833,10834,10835,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10860,10861,10862,10863,10864,10865,10866,10871,11086,11087,11088,11092,11093,11097,11098,11099,11100,11101,11102,11103,11104,11835,11836,11838,11839,11840,11845,11846,11847,11851,11852,11853,11855,11856,11857,11858,11859,11860,11887,11888,11889,11890,11896,11897,11898,11899,11900,11901,11905,11906,11907,11908,11912,11913,11914,11915,11919,11920,11921,11926,11927,11928,12142,12143,12144,12147,12148,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12663,12664,12665,12666,12667,12668,12669,12670,12894,12895,12896,12902,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12920,12921,12925,12926,12939,12940,12941,12942,12943,12944,12948,12961,12962,12963,12964,12965,12968,12969,12970,12971,12981,12982,12983,12984,13198,13199,13200,13202,13203,13204,13206,13207,13208,13951,13952,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13976,13977,13980,13981,13982,13988,13993,13994,13995,13996,13997,13998,13999,14000,14003,14004,14005,14009,14010,14017,14018,14019,14020,14021,14022,14024,14025,14026,14036,14037,14038,14039,14040,14255,14256,14257,14258,14259,14260,14261,14262,14263,15017,15018,15019,15020,15021,15022,15023,15025,15026,15027,15028,15029,15035,15036,15037,15041,15042,15043,15044,15049,15050,15051,15052,15053,15054,15055,15056,15058,15059,15060,15061,15064,15065,15066,15067,15068,15069,15076,15077,15078,15079,15080,15081,15082,15092,15093,15094,15095,15312,15313,15314,15315,16061,16062,16072,16073,16074,16075,16076,16077,16081,16082,16083,16084,16085,16091,16092,16093,16097,16098,16099,16100,16105,16106,16107,16108,16111,16114,16115,16116,16120,16121,16122,16123,16124,16125,16126,16133,16134,16135,16136,16137,16143,16144,16145,16148,16149,16150,16369,16370,17116,17117,17118,17119,17128,17129,17130,17131,17137,17138,17139,17140,17141,17142,17146,17147,17148,17152,17153,17154,17155,17156,17161,17162,17163,17171,17177,17178,17179,17180,17181,17182,17190,17191,17192,17198,17199,17200,17201,17209,17210,18172,18173,18174,18175,18185,18186,18187,18192,18193,18194,18195,18197,18198,18202,18203,18204,18208,18209,18210,18211,18212,18217,18218,18219,18226,18235,18236,18237,18238,18244,18246,18247,18255,18256,18257,18265,18266,18267,19228,19229,19230,19243,19247,19248,19249,19250,19258,19259,19264,19265,19266,19267,19268,19272,19273,19274,19275,19276,19281,19282,19283,19289,19290,19291,19292,19293,19294,19299,19300,19301,19302,19303,19312,19313,19314,19319,19320,19321,19322,20283,20284,20285,20286,20287,20288,20302,20303,20304,20305,20306,20321,20322,20323,20324,20329,20330,20331,20332,20337,20338,20339,20344,20345,20346,20347,20348,20349,20350,20356,20357,20358,20359,20368,20369,20370,20375,20376,20377,20378,21338,21339,21340,21341,21342,21343,21344,21345,21359,21360,21361,21362,21377,21378,21379,21380,21393,21394,21395,21396,21397,21400,21401,21402,21403,21404,21413,21414,21415,21420,21421,21425,21426,21427,21431,21432,21433,21434,21435,22394,22395,22396,22397,22398,22399,22400,22401,22416,22417,22418,22432,22433,22434,22435,22450,22451,22452,22453,22454,22476,22477,22478,22482,22487,22488,22489,22490,22491,22492,22493,22494,23450,23451,23452,23453,23454,23455,23456,23488,23489,23490,23491,23507,23508,23509,23510,23512,23513,23514,23515,23516,23532,23533,23534,23535,23547,23548,23549,23550,23551,24479,24480,24509,24510,24511,24545,24546,24564,24565,24568,24569,24571,24572,24576,24589,24590,24596,24604,24605,24606,24607,25534,25535,25536,25537,25566,25567,25625,25626,25627,25628,25631,25632,25633,25634,25640,25651,25652,25653,26590,26591,26592,26593,26594,26631,26668,26669,26670,26671,26672,26681,26682,26683,26684,26688,26689,26690,26691,26695,26696,26697,26707,26708,26709,26710,26711,26720,27646,27647,27648,27649,27687,27688,27724,27725,27726,27727,27728,27738,27739,27744,27745,27746,27747,27748,27749,27750,27751,27752,27753,27754,27764,27765,27766,27767,27768,27775,27776,27777,27778,28703,28704,28742,28743,28744,28745,28781,28801,28802,28803,28804,28805,28806,28821,28822,28823,28824,28830,28831,28832,28833,28834,29789,29790,29798,29799,29800,29801,29814,29849,29850,29857,29858,29859,29860,29861,29864,29865,29866,29878,29879,29884,29885,29886,29887,29888,29889,30844,30845,30846,30847,30854,30855,30856,30857,30870,30897,30904,30905,30906,30907,30916,30920,30921,30922,30923,30924,30925,30939,30940,30941,30942,30943,30944,31901,31902,31903,31904,31909,31910,31911,31912,31925,31926,31931,31950,31951,31952,31953,31954,31955,31956,31960,31961,31962,31963,31964,31970,31971,31972,31973,31977,31978,31979,31980,31981,31982,31986,31987,31995,31996,31997,31998,31999,32000,32958,32959,32965,32966,32967,32980,32981,32987,33005,33006,33007,33008,33009,33010,33011,33012,33013,33016,33017,33018,33019,33025,33026,33028,33029,33030,33034,33035,33036,33037,33038,33041,33042,33043,33044,33051,33052,33053,33054,33055,33056,33057,33058,34035,34036,34037,34061,34062,34063,34064,34065,34066,34067,34068,34069,34082,34083,34084,34085,34086,34087,34092,34093,34094,34097,34098,34099,34100,34101,34104,34107,34108,34111,34112,34113,34114,34115,35090,35091,35092,35117,35118,35119,35120,35121,35122,35125,35142,35153,35154,35155,35156,35159,35160,35161,35168,35169,35170,35171,35172,36147,36148,36155,36156,36173,36174,36175,36176,36177,36178,36179,36188,36200,36201,36210,36211,36215,36216,36217,36218,36225,36226,36227,36228,36229,37181,37182,37183,37211,37212,37213,37230,37231,37232,37233,37234,37235,37236,37237,37238,37243,37244,37245,37253,37254,37255,37256,37257,37258,37264,37265,37272,37273,37274,37282,37283,37284,38235,38236,38237,38238,38239,38240,38266,38267,38268,38289,38290,38291,38292,38293,38294,38298,38299,38300,38301,38302,38306,38307,38308,38310,38311,38312,38313,38318,38319,38320,38321,38322,38329,38337,38338,38339,38340,38341,39290,39291,39292,39293,39294,39295,39296,39297,39317,39318,39321,39322,39323,39345,39346,39347,39348,39349,39354,39355,39356,39357,39361,39362,39363,39364,39367,39368,39373,39374,39375,39376,39377,39378,39383,39391,39392,39393,39394,39395,39396,39397,40346,40347,40348,40349,40350,40351,40352,40353,40354,40355,40356,40373,40374,40375,40401,40402,40408,40409,40410,40416,40417,40418,40419,40429,40430,40431,40433,40438,40439,40440,40446,40447,40448,40449,40450,40451,40452,40453,41402,41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41430,41456,41457,41458,41459,41464,41465,41466,41472,41473,41474,41482,41486,41494,41495,41501,41502,41503,41504,41505,41506,41507,42462,42463,42467,42511,42512,42513,42514,42515,42520,42521,42522,42528,42529,42530,42537,42538,42539,42550,42557,42558,42559,42560,42561,42562,42563,42564,43566,43567,43568,43569,43570,43576,43577,43578,43585,43593,43594,43595,43613,43614,43616,43617,43618,43619,43620,44570,44571,44621,44622,44623,44624,44632,44633,44634,44649,44650,44651,44672,44673,44674,45625,45626,45627,45628,45633,45634,45635,45677,45678,45679,45688,45689,45690,45706,45707,45708,45713,45714,45715,45726,45729,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46720,46733,46734,46735,46736,46737,46745,46746,46762,46763,46764,46765,46769,46770,46771,46781,46782,46783,46784,46785,47740,47741,47742,47743,47744,47745,47746,47747,47775,47776,47777,47790,47791,47792,47793,47794,47818,47819,47820,47821,47824,47825,47826,47836,47837,47838,47839,47840,47841,47842,48796,48797,48798,48799,48800,48801,48802,48830,48831,48832,48833,48834,48848,48849,48850,48868,48875,48876,48880,48881,48882,48888,48891,48892,48893,48894,48895,48896,48897,49852,49853,49854,49886,49887,49888,49889,49890,49904,49905,49906,49917,49923,49924,49925,49926,49927,49932,49933,49936,49937,49938,49939,49943,49944,49945,49946,49947,49948,49949,49951,50909,50917,50942,50943,50945,50946,50960,50961,50962,50967,50972,50973,50974,50979,50980,50981,50982,50983,50984,50987,50988,50989,50993,50994,50999,51000,51001,51002,51003,51004,51005,51006,51972,51973,51974,52013,52014,52015,52016,52017,52018,52019,52020,52021,52022,52023,52028,52029,52030,52034,52035,52036,52037,52038,52039,52043,52044,52045,52057,52058,52059,52060,52061,52062,53027,53028,53029,53030,53035,53055,53056,53057,53069,53070,53071,53072,53073,53074,53075,53076,53077,53078,53079,53083,53084,53085,53086,53091,53099,53100,53101,53105,53106,53107,53114,53115,53116,53117,54079,54080,54081,54082,54083,54084,54085,54091,54092,54111,54113,54125,54126,54127,54128,54129,54130,54131,54132,54133,54134,54138,54139,54140,54141,54155,54156,54157,54160,54161,54162,54163,54164,54165,54170,54171,54172,55134,55135,55136,55137,55138,55139,55140,55147,55148,55149,55150,55161,55162,55163,55164,55167,55168,55169,55181,55182,55183,55184,55185,55193,55194,55195,55196,55210,55211,55212,55213,55217,55218,55219,55220,55221,55222,55225,55226,55227,55228,55229,56191,56192,56193,56194,56195,56196,56203,56204,56205,56206,56217,56218,56219,56220,56221,56222,56223,56224,56225,56238,56239,56240,56248,56249,56250,56256,56267,56268,56269,56274,56276,56277,56278,56279,56282,56283,56284,56285,57250,57251,57252,57253,57257,57258,57259,57260,57261,57274,57275,57276,57277,57278,57279,57280,57286,57287,57288,57289,57290,57302,57303,57304,57305,57306,57311,57312,57313,57314,57324,57333,57334,57335,57336,57339,57340,57341,57342,58307,58308,58309,58310,58311,58312,58313,58314,58315,58316,58329,58330,58331,58332,58333,58334,58341,58342,58343,58344,58345,58346,58356,58357,58358,58359,58360,58361,58362,58368,58369,58370,58371,58390,58391,58392,58393,58396,58397,58398,58399,59363,59364,59365,59366,59367,59368,59369,59370,59371,59372,59384,59385,59386,59387,59388,59389,59396,59397,59398,59399,59400,59401,59402,59406,59407,59411,59412,59413,59414,59415,59425,59426,59427,59436,59437,59438,59439,59448,59453,59454,60418,60419,60420,60421,60422,60423,60427,60428,60429,60440,60441,60442,60443,60444,60452,60453,60454,60455,60456,60457,60458,60461,60462,60463,60464,60466,60467,60468,60469,60485,60491,60492,60493,60494,60495,60496,60505,60506,61470,61471,61472,61473,61474,61475,61476,61485,61497,61498,61499,61500,61508,61509,61510,61511,61512,61513,61517,61518,61519,61520,61522,61523,61524,61531,61540,61541,61542,61547,61548,61549,61550,61551,61559,61560,61561,61562,61563,62526,62527,62528,62529,62530,62531,62532,62555,62556,62565,62566,62567,62568,62573,62574,62575,62576,62578,62579,62580,62586,62587,62588,62596,62597,62598,62599,62604,62605,62606,62614,62615,62616,62617,62618,63583,63584,63585,63586,63587,63630,63631,63634,63635,63636,63637,63642,63643,63644,63645,63653,63654,63669,63670,63671,63672,63675,64646,64691,64692,64693,64699,64700,64701,64702,64718,64719,64725,64726,64727,64730,64731,64732,64733,65701,65702,65703,65748,65749,65755,65756,65757,65758,65764,65765,65766,65767,65773,65774,65775,65776,65780,65781,65782,65783,65787,65788,65789,65790,65791,65792,66756,66757,66758,66759,66797,66798,66811,66812,66813,66814,66819,66820,66821,66822,66823,66824,66827,66829,66830,66831,66832,66836,66837,66838,66844,66845,66846,66847,66848,67811,67812,67813,67814,67815,67846,67852,67853,67854,67855,67867,67868,67869,67870,67874,67875,67876,67877,67879,67880,67881,67883,67884,67886,67887,67901,67902,67903,68867,68868,68869,68870,68901,68902,68903,68907,68908,68909,68910,68911,68924,68925,68930,68931,68932,68935,68936,68937,68940,68941,68955,68956,68957,68958,69924,69925,69956,69957,69958,69959,69963,69964,69965,69966,69967,69982,69983,69986,69987,69988,69989,69990,69991,69992,69993,69996,70010,70011,70012,70013,70014,70980,71013,71014,71015,71019,71020,71021,71022,71038,71039,71040,71043,71044,71045,71046,71047,71048,71049,71061,71066,71067,71068,71069,72028,72070,72071,72075,72076,72077,72094,72095,72096,72100,72101,72102,72103,72104,72114,72117,72118,72119,72120,72121,72122,72123,72124,73083,73084,73085,73086,73087,73130,73131,73132,73140,73141,73150,73151,73152,73153,73157,73158,73159,73169,73170,73171,73173,73174,73175,73176,73177,73178,73179,73180,74139,74140,74141,74142,74143,74144,74186,74187,74188,74196,74197,74198,74207,74208,74209,74210,74225,74226,74227,74229,74230,74231,74232,74233,74234,74235,75196,75197,75198,75199,75200,75201,75242,75243,75252,75253,75254,75255,75264,75265,75266,75281,75282,75283,75285,75286,75287,75288,75289,75290,75291,75293,75294,76253,76254,76255,76256,76257,76258,76260,76261,76302,76303,76304,76305,76309,76310,76311,76312,76320,76336,76337,76338,76339,76340,76341,76342,76343,76344,76345,76346,76347,76349,76350,76351,77313,77316,77317,77318,77349,77356,77357,77358,77359,77360,77361,77365,77366,77367,77368,77373,77385,77386,77387,77388,77389,77392,77393,77394,77395,77396,77397,77398,77399,77400,77401,77402,77405,77406,77407,77408,78372,78373,78374,78403,78404,78405,78406,78411,78412,78413,78414,78415,78416,78417,78422,78423,78424,78428,78429,78430,78441,78442,78443,78444,78445,78448,78449,78451,78452,78455,78456,78457,78460,78461,78462,78463,78464,79427,79428,79429,79430,79459,79460,79461,79462,79463,79467,79468,79469,79484,79485,79486,79498,79499,79500,79516,79517,79518,79519,80482,80483,80484,80485,80486,80513,80514,80515,80516,80517,80518,80519,80523,80524,80525,80526,80541,80549,80550,80551,80552,80565,80566,80567,80568,80569,80570,80573,80574,81533,81537,81538,81539,81540,81541,81568,81569,81570,81571,81572,81573,81574,81580,81581,81582,81583,81584,81585,81586,81593,81604,81605,81606,81607,81608,81620,81621,81622,81623,81624,81625,81626,81627,81911,81912,82588,82589,82590,82593,82594,82595,82596,82624,82625,82626,82627,82628,82637,82638,82639,82640,82641,82642,82643,82648,82649,82650,82661,82662,82663,82676,82677,82678,82679,82680,82681,82682,82683,82967,82968,82969,82970,82973,83644,83645,83646,83647,83650,83656,83669,83670,83671,83679,83680,83681,83682,83683,83693,83694,83695,83696,83697,83698,83699,83703,83704,83705,83711,83724,83725,83731,83732,83733,83734,83737,83738,83739,84023,84024,84026,84027,84028,84029,84030,84702,84703,84704,84710,84711,84712,84713,84718,84719,84723,84725,84726,84727,84731,84732,84733,84735,84736,84737,84738,84749,84750,84751,84754,84755,84756,84759,84760,84761,84763,84766,84767,84768,84773,84774,84780,84781,84782,84786,84787,84788,84789,84793,84794,84795,85053,85054,85055,85056,85057,85080,85081,85082,85083,85084,85085,85758,85759,85760,85765,85766,85767,85768,85769,85770,85772,85773,85774,85775,85776,85777,85778,85779,85780,85781,85782,85783,85787,85788,85789,85791,85792,85793,85804,85805,85806,85807,85808,85810,85811,85815,85816,85817,85818,85819,85820,85822,85823,85824,85825,85828,85829,85830,85831,85832,85833,85834,85835,85836,85837,85838,85843,85844,85845,85846,85847,85848,85849,85850,85851,86108,86109,86110,86111,86112,86113,86114,86138,86139,86140,86814,86815,86816,86821,86822,86823,86824,86825,86828,86829,86830,86831,86832,86833,86834,86835,86836,86837,86838,86842,86843,86844,86845,86847,86848,86854,86855,86860,86861,86862,86863,86864,86873,86874,86875,86876,86878,86879,86880,86881,86882,86883,86884,86885,86886,86887,86889,86890,86891,86892,86893,86894,86899,86900,86901,86902,86903,86904,86905,86906,86910,86911,87164,87165,87166,87167,87168,87169,87170,87171,87176,87177,87178,87870,87871,87872,87877,87878,87879,87884,87885,87886,87887,87888,87889,87890,87891,87892,87893,87897,87898,87899,87900,87909,87910,87911,87912,87917,87918,87919,87920,87929,87930,87931,87932,87935,87936,87937,87938,87939,87940,87941,87945,87946,87947,87949,87950,87951,87956,87957,87958,87959,87960,87961,87964,87965,87966,87967,88224,88225,88226,88232,88233,88234,88251,88252,88925,88926,88927,88931,88932,88933,88934,88935,88940,88941,88942,88943,88944,88945,88946,88947,88953,88954,88955,88956,88964,88965,88966,88967,88968,88973,88974,88975,88984,88985,88986,88987,88992,88993,88994,88995,88996,89002,89003,89006,89013,89014,89015,89019,89020,89021,89022,89267,89268,89269,89279,89280,89281,89288,89290,89306,89307,89308,89309,89313,89981,89982,89983,89985,89986,89987,89988,89989,89990,89991,89997,89998,89999,90000,90001,90002,90007,90009,90010,90011,90012,90019,90020,90021,90022,90023,90029,90030,90031,90040,90041,90042,90050,90051,90052,90058,90059,90060,90066,90067,90068,90069,90073,90074,90075,90076,90077,90323,90324,90325,90326,90335,90336,90337,90338,90345,90346,90347,90357,90362,90363,90364,90365,90366,90367,90368,90369,91039,91040,91041,91042,91043,91044,91045,91046,91047,91053,91054,91055,91056,91057,91058,91062,91063,91064,91065,91066,91067,91068,91074,91075,91076,91077,91078,91085,91086,91087,91102,91103,91106,91107,91108,91109,91114,91115,91116,91117,91119,91122,91123,91124,91125,91126,91129,91130,91131,91132,91380,91381,91383,91391,91393,91401,91402,91403,91412,91413,91414,91418,91419,91420,91421,91422,91423,91424,91425,92096,92097,92098,92101,92102,92103,92104,92108,92109,92110,92111,92112,92113,92118,92119,92120,92121,92122,92123,92124,92125,92130,92131,92132,92141,92142,92143,92157,92158,92159,92160,92163,92164,92165,92170,92171,92172,92173,92174,92175,92176,92179,92180,92181,92182,92187,92436,92437,92438,92439,92440,92448,92457,92458,92459,92460,92468,92469,92470,92471,92474,92475,92477,92478,92479,92480,92481,92482,93157,93158,93159,93160,93163,93164,93165,93166,93167,93174,93175,93176,93177,93178,93179,93180,93186,93196,93197,93198,93199,93213,93214,93215,93216,93217,93227,93228,93229,93230,93231,93232,93469,93470,93493,93494,93495,93496,93497,93514,93515,93516,93517,93525,93526,93527,93528,93529,93530,93531,93532,93533,93534,93535,93536,93537,93538,93539,94213,94214,94215,94216,94219,94220,94221,94222,94223,94251,94252,94253,94254,94266,94267,94270,94271,94272,94273,94274,94283,94284,94285,94286,94287,94288,94289,94524,94525,94526,94550,94551,94552,94553,94554,94555,94571,94572,94573,94574,94582,94583,94584,94585,94586,94587,94588,94589,94590,94591,94592,94593,94594,94595,95273,95274,95275,95276,95277,95278,95279,95280,95307,95308,95309,95321,95322,95323,95324,95327,95328,95329,95330,95340,95343,95344,95345,95580,95581,95582,95608,95609,95610,95611,95612,95620,95627,95628,95629,95639,95640,95641,95642,95643,95644,95645,95648,95649,96330,96331,96332,96333,96334,96335,96336,96337,96338,96364,96368,96377,96378,96379,96380,96400,96401,96402,96636,96637,96638,96666,96667,96668,96675,96676,96677,96684,96697,96698,96699,96700,97386,97387,97391,97392,97393,97394,97423,97424,97425,97426,97427,97428,97429,97430,97431,97456,97457,97692,97693,97694,97695,97708,97723,97730,97732,97733,98447,98448,98449,98450,98479,98480,98481,98482,98483,98484,98485,98486,98487,98749,98750,98752,98763,98764,98765,98785,98786,98787,98788,99505,99534,99535,99536,99537,99540,99541,99542,99543,99806,99807,99808,99809,99819,99820,99822,99823,99841,99842,99843,99862,99873,99874,99875,100590,100591,100592,100593,100863,100864,100865,100866,100876,100877,100878,100879,100880,100894,100895,100896,100897,100898,100899,100914,100915,100916,100917,100918,100919,100928,100929,100930,100931,100932,100933,101649,101920,101921,101922,101933,101934,101935,101936,101937,101949,101950,101951,101952,101953,101954,101969,101970,101971,101972,101974,101975,101983,101984,101985,101986,101987,101988,101989,102976,102977,102978,102991,102992,102993,103006,103008,103009,103023,103024,103025,103026,103027,103028,103029,103030,103031,103039,103040,103041,103045,104022,104023,104032,104033,104034,104047,104048,104049,104062,104063,104064,104077,104078,104079,104080,104081,104082,104083,104084,104085,104086,104095,104096,104098,105077,105078,105079,105080,105088,105090,105096,105097,105103,105104,105105,105106,105115,105119,105120,105132,105133,105135,105136,105137,105151,105152,105153,105154,105155,106127,106128,106129,106132,106133,106134,106135,106144,106145,106146,106151,106152,106153,106154,106158,106159,106160,106161,106162,106170,106171,106172,106176,106189,106190,106191,106208,106209,106210,106211,106212,107182,107183,107184,107185,107186,107187,107189,107190,107201,107207,107208,107209,107214,107225,107226,107228,107246,107247,107266,107267,107268,107269,108237,108238,108239,108240,108241,108242,108243,108244,108245,108254,108263,108264,108265,108280,108281,108282,108283,108314,108323,108324,108325,108326,109291,109293,109294,109295,109297,109298,109299,109307,109308,109309,109310,109311,109319,109321,109333,109334,109335,109336,109337,109367,109368,109369,109370,109371,109380,109381,109382,110344,110345,110346,110347,110348,110349,110350,110362,110363,110364,110366,110367,110375,110376,110377,110388,110389,110390,110392,110420,110421,110422,110423,110424,110425,110426,110427,110428,111397,111398,111399,111400,111401,111402,111403,111404,111418,111419,111420,111421,111422,111431,111432,111433,111445,111446,111447,111456,111477,111478,111479,111480,111481,111482,111483,112452,112453,112454,112455,112456,112457,112458,112459,112474,112476,112477,112487,112488,112489,112490,112512,112513,112534,112535,112536,112537,112538,113508,113509,113510,113511,113512,113527,113528,113531,113532,113544,113545,113569,113570,113591,113592,113593,113599,114565,114566,114581,114582,114583,114584,114585,114593,114626,114648,114649,114654,114655,114656,114657,114658,115636,115637,115638,115639,115640,115646,115647,115648,115649,115650,115651,115652,115709,115710,115712,115713,115714,115715,116692,116693,116694,116695,116701,116702,116703,116704,116705,116706,116707,116708,116709,116766,116767,116768,116769,116770,116771,117747,117748,117749,117756,117758,117759,117760,117761,117762,117763,117764,117765,117766,117767,117785,117826,117827,118803,118804,118805,118811,118812,118813,118814,118819,118820,118821,118823,118824,118839,118840,118842,118843,118844,119859,119860,119861,119868,119869,119870,119876,119877,119878,119879,119880,119894,119895,119896,119897,119898,119899,119940,119941,120915,120917,120925,120934,120935,120949,120950,120989,120990,120996,120997,121966,121967,121968,121970,121971,121972,122005,122006,122014,122015,122043,122044,122046,122047,122052,122053,123021,123022,123023,123024,123025,123042,123043,123060,123061,123062,123063,123069,123070,123071,123072,123098,123099,123101,123102,123108,123109,124078,124079,124080,124081,124089,124090,124097,124098,124099,124100,124101,124102,124105,124106,124107,124108,124116,124118,124125,124127,124128,124154,124155,124156,124157,125134,125135,125136,125143,125144,125145,125146,125147,125154,125155,125156,125157,125158,125159,125160,125161,125162,125163,125172,125173,125174,125181,125182,125183,125184,125185,125186,125187,125188,125200,125201,125202,125208,125209,125210,125211,125212,126191,126197,126198,126199,126200,126201,126202,126213,126214,126215,126216,126218,126228,126229,126230,126231,126232,126237,126238,126239,126240,126241,126242,126244,126255,126256,126257,126258,126259,126264,126265,126266,126267,127252,127253,127254,127255,127256,127257,127271,127272,127273,127285,127286,127287,127288,127289,127290,127291,127292,127293,127294,127299,127310,127311,127312,127313,127314,127315,127316,127317,127320,127321,127322,128307,128308,128309,128310,128311,128312,128336,128342,128343,128344,128345,128346,128347,128348,128349,128350,128365,128366,128367,128369,128370,128371,128372,128373,128374,128377,129363,129364,129365,129391,129393,129400,129401,129403,129420,129421,129422,129423,129424,129425,129426,129427,129428,129429,129430,129438,130419,130420,130421,130430,130437,130438,130447,130448,130449,130457,130458,130459,130461,130476,130477,130478,130479,130480,130481,130482,130483,130484,130485,130493,130494,130495,131476,131477,131485,131486,131487,131488,131489,131492,131493,131494,131495,131502,131503,131504,131514,131515,131516,131517,131521,131529,131532,131533,131534,131535,131537,131538,131540,131541,131549,131550,131551,132532,132542,132543,132544,132545,132546,132548,132549,132550,132557,132558,132559,132560,132571,132572,132576,132577,132583,132584,132585,132596,132597,132605,132606,132607,132608,132609,133599,133600,133601,133602,133603,133604,133605,133606,133613,133614,133615,133621,133632,133633,133634,133639,133640,133641,133646,133647,133648,133651,133652,133662,133663,133664,133665,133666,134656,134657,134659,134660,134661,134669,134670,134671,134677,134678,134688,134690,134691,134695,134696,134697,134698,134699,134702,134703,134704,134705,134709,134710,134719,134720,134721,134722,135712,135713,135714,135715,135716,135725,135726,135727,135728,135733,135735,135745,135746,135747,135748,135752,135753,135755,135756,135759,135760,135761,135762,135764,135765,135766,135767,136769,136770,136771,136777,136781,136782,136783,136784,136785,136787,136788,136789,136790,136791,136803,136804,136805,136808,136809,136810,136811,136812,136816,136817,136821,136822,136823,136824,136825,137825,137826,137827,137832,137833,137834,137839,137840,137841,137842,137843,137844,137845,137846,137847,137860,137864,137865,137866,137867,137868,137879,137881,137882,137883,138881,138882,138883,138888,138890,138891,138896,138897,138898,138899,138900,138901,138902,138903,138904,138909,138921,138922,138923,138936,138937,138938,138939,138940,138947,139924,139925,139927,139928,139929,139936,139937,139939,139944,139945,139946,139953,139954,139955,139963,139964,139965,139978,139993,139994,139995,139996,140002,140003,140004,140979,140980,140981,140982,140983,140984,140985,140992,140993,140994,140995,141000,141001,141002,141019,141020,141021,141022,141023,141051,141058,141059,141060,142035,142036,142037,142038,142039,142040,142041,142048,142049,142056,142057,142058,142076,142077,142078,142079,142080,142089,142113,142114,142115,142116,143088,143089,143090,143091,143092,143093,143094,143095,143096,143097,143098,143113,143114,143124,143132,143133,143134,143135,143136,143137,143144,143145,143146,143147,143170,143171,143172,144143,144144,144145,144146,144147,144152,144153,144154,144169,144179,144180,144181,144189,144190,144191,144192,144193,144194,144201,144202,144203,144204,144205,144206,144207,144220,144221,144226,144227,145198,145199,145200,145201,145202,145208,145209,145210,145235,145237,145238,145247,145248,145249,145250,145258,145259,145260,145261,145262,145263,145264,145265,145266,145275,145276,145277,145278,146254,146255,146256,146257,146263,146264,146265,146266,146267,146292,146293,146294,146305,146306,146307,146316,146317,146318,146319,146320,146321,146322,146323,146331,146332,146333,146334,147310,147311,147312,147318,147319,147320,147321,147322,147349,147350,147351,147362,147375,147376,147377,147378,147379,147387,147388,147389,148367,148373,148374,148375,148376,148377,148405,148406,148407,148430,148431,148432,148434,148435,148436,148443,148444,148445,149429,149430,149431,149432,149461,149462,149463,149486,149487,149488,149491,149499,149500,149501,149502,149503,150485,150486,150487,150488,150489,150516,150518,150519,150542,150543,150544,150556,150557,150558,150559,150560,151542,151543,151544,151545,151546,151547,151572,151573,151574,151593,151597,151598,151599,151600,151601,151613,151614,151615,151616,151617,152599,152600,152601,152602,152603,152604,152617,152645,152646,152647,152648,152649,152650,152653,152654,152655,152656,152657,152658,152671,152672,152673,153658,153659,153660,153661,153672,153673,153674,153699,153700,153701,153702,153703,153704,153705,153708,153709,153710,153711,153712,153713,153714,153715,153716,153728,153729,154715,154716,154728,154729,154730,154731,154732,154733,154736,154737,154738,154754,154755,154756,154757,154758,154759,154760,154765,154766,154767,154769,154770,154771,154772,154773,154781,154782,154784,154785,154786,155783,155784,155785,155786,155787,155788,155789,155792,155793,155794,155809,155810,155811,155812,155821,155822,155823,155826,155827,155828,155829,155830,155831,155836,155837,155838,155840,155841,156839,156840,156841,156842,156843,156844,156845,156848,156849,156850,156865,156866,156867,156877,156878,156879,156884,156885,156886,156887,156888,156891,156892,156893,156894,157895,157896,157897,157898,157899,157900,157904,157905,157933,157934,157935,157936,157941,157942,157943,158952,158953,158954,158955,158959,158960,158961,158990,158991,158992,160046,160047,160048,160049,161102,161103,161104,161105,162158,162159,162160,162161,163214,163215,163216,164273,164274,165323,165324,165325,165328,165329,165330,165331,165332,165333,165334,165335,165336,166379,166380,166381,166385,166386,166387,166388,166389,166390,166391,166392,167433,167434,167435,167436,167437,167443,167444,167445,167448,168486,168487,168488,168489,168490,168491,168492,169541,169542,169543,169544,169545,169546,169547,170597,170598,170599,170600,170601,333727,333728,333729,333730,333731,333745,333746,333747,333765,333766,333767,333768,333774,333775,333776,333780,333781,333782,333783,333797,333798,333799,333800,333801,333802,333803,333809,333810,333811,334783,334784,334785,334786,334787,334801,334802,334803,334821,334822,334823,334824,334830,334831,334832,334836,334837,334838,334853,334854,334855,334856,334857,334858,334859,334865,334866,334867,335838,335839,335840,335841,335842,335843,335857,335858,335859,335877,335878,335879,335880,335886,335887,335888,335891,335892,335893,335894,335909,335910,335911,335913,335914,335915,335921,335922,335923,336893,336894,336895,336896,336897,336898,336913,336914,336915,336921,336922,336934,336935,336936,336942,336943,336944,336946,336947,336948,336949,336964,336965,336966,336967,336970,336971,336977,336978,336979,337948,337949,337950,337951,337952,337953,337969,337970,337971,337972,337976,337977,337978,337979,337990,337991,337992,337993,337998,337999,338000,338002,338003,338004,338021,338022,338023,338024,338025,338026,338027,338028,338033,338034,338035,339004,339005,339006,339007,339008,339025,339026,339027,339028,339029,339032,339033,339034,339041,339042,339047,339048,339049,339050,339052,339053,339054,339055,339057,339058,339059,339078,339079,339080,339081,339082,339083,339089,339090,339091,340060,340061,340062,340081,340082,340083,340084,340085,340088,340089,340090,340096,340097,340098,340099,340104,340105,340106,340107,340108,340109,340110,340114,340115,340116,340122,340123,340124,340125,340126,340133,340134,340135,340136,340137,340138,340145,340146,340147,341116,341117,341118,341138,341139,341140,341141,341142,341143,341144,341145,341146,341151,341152,341153,341154,341155,341156,341160,341161,341162,341163,341164,341171,341172,341173,341178,341179,341180,341181,341182,341183,341188,341189,341190,341191,341192,341193,341200,341201,341202,341203,342172,342173,342174,342175,342176,342195,342196,342197,342198,342199,342200,342201,342207,342208,342209,342210,342211,342212,342217,342218,342219,342227,342228,342229,342232,342233,342234,342235,342236,342237,342238,342239,342243,342244,342245,342246,342247,342255,342256,342257,342258,343228,343229,343230,343231,343232,343233,343243,343244,343248,343253,343254,343255,343256,343257,343264,343265,343266,343267,343273,343274,343275,343283,343284,343285,343286,343287,343288,343289,343290,343291,343292,343293,343294,343295,343298,343299,343300,343301,343302,343303,343311,343312,343313,344285,344286,344287,344288,344289,344290,344298,344299,344300,344301,344302,344303,344304,344305,344306,344307,344308,344309,344310,344311,344312,344313,344314,344320,344321,344322,344329,344330,344331,344340,344341,344342,344343,344344,344345,344346,344347,344348,344350,344354,344355,344356,344357,344358,344359,344360,344367,344368,344369,345343,345344,345345,345346,345354,345355,345356,345357,345358,345359,345360,345361,345362,345363,345364,345365,345366,345367,345368,345369,345370,345371,345375,345376,345377,345378,345385,345386,345387,345396,345397,345398,345399,345400,345403,345410,345411,345412,345413,345414,345415,345416,345423,345424,345425,346399,346400,346401,346410,346411,346412,346413,346414,346415,346416,346417,346418,346419,346420,346423,346424,346425,346426,346427,346428,346430,346431,346432,346433,346434,346441,346442,346443,346452,346453,346454,346455,346467,346468,346469,346470,346471,346472,346478,346479,346480,346481,347455,347456,347457,347467,347468,347469,347473,347480,347481,347482,347483,347484,347485,347486,347487,347488,347489,347497,347498,347499,347500,347501,347507,347508,347509,347510,347524,347525,347526,347527,347533,347534,347535,347536,347537,348510,348511,348512,348513,348537,348538,348539,348540,348541,348542,348543,348544,348554,348555,348556,348557,348558,348564,348565,348566,348567,348574,348582,348588,348589,348590,348591,348592,349566,349567,349568,349569,349594,349595,349596,349597,349598,349599,349611,349612,349613,349614,349621,349622,349629,349630,349631,349643,349644,349645,349646,349647,349648,350621,350622,350623,350624,350625,350651,350652,350653,350654,350655,350656,350669,350685,350686,350687,350688,350700,350702,350703,350704,350705,351676,351677,351678,351679,351680,351681,351708,351709,351710,351711,351712,351742,351743,351744,351745,351746,351747,351748,351749,351750,351759,351760,351761,352732,352733,352734,352735,352736,352737,352765,352766,352767,352768,352799,352800,352801,352802,352803,352804,352805,352806,352807,352811,352815,352816,352817,353789,353790,353791,353792,353793,353821,353822,353823,353824,353825,353847,353857,353858,353859,353860,353861,353862,353863,353864,353865,353866,353867,353868,353870,353871,353872,354846,354847,354848,354849,354850,354878,354879,354880,354881,354882,354902,354903,354904,354905,354915,354918,354919,354920,354921,354922,354923,354924,354925,354926,354927,354928,355903,355904,355905,355915,355929,355933,355934,355935,355936,355937,355938,355951,355952,355959,355960,355961,355962,355975,355976,355977,355978,355979,355980,355981,355982,355983,355984,356960,356970,356971,356972,356984,356985,356986,356987,356988,356989,356990,356991,356992,356993,357006,357007,357008,357009,357010,357016,357017,357018,357023,357024,357032,357037,357038,357039,358026,358027,358028,358039,358040,358041,358042,358043,358044,358045,358046,358047,358048,358060,358061,358062,358063,358064,358065,358066,358067,358068,358069,358070,358071,358072,358073,358074,358075,358076,358077,358078,358079,358080,358081,358082,358083,358084,358085,359082,359083,359084,359096,359097,359098,359099,359100,359101,359102,359103,359104,359105,359114,359115,359116,359117,359118,359119,359120,359121,359122,359123,359124,359125,359126,359127,359128,359129,359130,359131,359132,359133,359134,359135,359136,359137,359138,359139,359140,359141,359142,360117,360118,360119,360120,360129,360138,360139,360140,360148,360154,360155,360156,360157,360158,360159,360160,360161,360162,360169,360170,360171,360172,360173,360174,360175,360176,360177,360178,360179,360180,360181,360182,360183,360184,360185,360186,360187,360188,360189,360190,360191,360192,360193,360194,360195,360196,360197,360198,360199,360204,360205,360206,360207,360208,361170,361171,361172,361173,361174,361175,361176,361177,361178,361183,361184,361185,361186,361193,361194,361195,361196,361197,361198,361202,361203,361204,361205,361211,361214,361215,361216,361217,361225,361226,361227,361228,361233,361234,361235,361236,361240,361241,361242,361243,361244,361245,361249,361250,361251,361252,361253,361254,361255,361256,361257,361258,361259,361260,361261,361262,361263,361264,361265,362225,362226,362227,362228,362229,362230,362231,362232,362233,362234,362235,362236,362237,362238,362239,362240,362241,362242,362249,362250,362251,362252,362253,362254,362255,362256,362257,362258,362259,362260,362261,362262,362272,362280,362281,362282,362283,362284,362288,362289,362290,362291,362296,362297,362298,362299,362300,362309,362310,362311,362312,362313,362314,362315,362316,362317,362318,362319,362320,362321,362322,362323,362324,362325,363280,363281,363282,363283,363284,363285,363286,363287,363288,363289,363290,363291,363292,363293,363294,363295,363296,363297,363298,363306,363307,363308,363309,363310,363311,363312,363313,363314,363315,363316,363317,363337,363338,363339,363344,363345,363346,363353,363366,363367,363368,363369,363370,363371,363372,363373,363374,363375,363376,363377,363378,363379,363380,363381,363382,364336,364337,364338,364339,364342,364345,364346,364347,364348,364349,364350,364351,364352,364353,364365,364366,364367,364368,364369,364370,364371,364372,364422,364423,364424,364427,364428,364429,364431,364432,364433,364434,364435,364436,364437,364438,364439,365393,365394,365402,365403,365404,365405,365406,365407,365408,365424,365425,365426,365427,365434,365435,365477,365478,365479,365480,365484,365488,365489,365490,365491,365492,365493,365494,366459,366463,366480,366481,366482,366483,366484,366489,366490,366491,366492,366522,366523,366524,366533,366534,366535,366549,366550,367537,367538,367539,367540,367541,367544,367545,367546,367547,367548,367549,367569,367570,367577,367578,367579,367580,367581,367590,368594,368595,368596,368597,368598,368599,368600,368601,368602,368603,368604,368624,368625,368626,368627,368632,368633,368634,368635,368636,368637,368638,369617,369618,369652,369653,369654,369655,369656,369657,369658,369680,369681,369682,369683,369684,369685,369686,369687,369688,369689,369690,369691,369692,369693,369694,370674,370675,370676,370696,370700,370710,370711,370712,370713,370737,370738,370739,370740,370741,370742,370743,370744,370745,370746,370749,370750,370751,370767,371730,371731,371732,371733,371747,371751,371752,371753,371755,371756,371757,371780,371796,371797,371798,371799,371800,371801,371805,371806,371807,371814,371822,371823,371824,372785,372786,372787,372788,372789,372790,372802,372803,372804,372808,372809,372810,372811,372812,372813,372835,372836,372837,372846,372847,372855,372856,372857,372861,372862,372863,372869,372870,372871,372877,372878,372879,372880,373840,373841,373842,373843,373844,373845,373846,373847,373853,373858,373859,373860,373861,373864,373865,373866,373867,373868,373869,373883,373884,373885,373891,373892,373893,373901,373902,373903,373904,373911,373912,373913,373915,373916,373917,373918,373919,373925,373926,373927,373928,373932,373933,373934,373935,374896,374897,374898,374899,374901,374902,374903,374904,374908,374909,374910,374913,374914,374915,374916,374921,374922,374923,374924,374925,374926,374938,374939,374940,374941,374942,374948,374949,374950,374956,374957,374958,374959,374960,374967,374968,374969,374970,374971,374972,374973,374974,374975,374976,374977,374982,374983,374984,374985,374988,374989,374990,375952,375953,375954,375958,375959,375960,375961,375964,375965,375966,375968,375969,375970,375979,375980,375981,375982,375995,375996,375997,375998,375999,376004,376005,376006,376012,376013,376014,376015,376024,376025,376026,376027,376028,376029,376030,376031,376032,376033,376034,376039,376040,376041,376042,376044,376045,376046,376049,377015,377016,377017,377018,377019,377020,377021,377022,377024,377025,377026,377035,377036,377037,377053,377054,377055,377056,377057,377058,377059,377060,377061,377062,377068,377069,377070,377071,377082,377083,377084,377087,377088,377089,377090,377091,377095,377096,377097,377098,377099,377100,377101,377102,377104,377105,377106,378072,378073,378074,378075,378076,378077,378080,378081,378082,378091,378092,378093,378110,378111,378112,378113,378114,378115,378116,378117,378124,378125,378126,378127,378146,378152,378153,378154,378155,378156,378157,378158,378160,378161,378162,379129,379130,379131,379132,379135,379136,379137,379138,379147,379148,379149,379167,379168,379169,379170,379171,379172,379181,379182,379183,379184,379190,379191,379192,379193,379210,379211,379212,379213,379215,379216,379217,379218,380184,380185,380186,380187,380188,380189,380190,380191,380192,380193,380202,380203,380204,380205,380216,380217,380218,380223,380224,380225,380226,380238,380239,380240,380244,380245,380246,380247,380248,380249,380250,380258,380261,380267,380268,380269,380270,380271,380272,380273,381239,381240,381241,381242,381243,381244,381245,381246,381247,381248,381257,381258,381259,381260,381271,381272,381273,381279,381280,381281,381294,381295,381296,381297,381299,381300,381301,381302,381303,381304,381305,381313,381314,381315,381316,381317,381318,381323,381324,381325,381326,381327,381328,381329,382294,382295,382296,382297,382298,382299,382300,382301,382302,382303,382313,382314,382315,382327,382328,382329,382335,382336,382337,382351,382352,382353,382354,382355,382356,382357,382358,382369,382370,382371,382372,382373,382374,382380,382381,382382,382383,382384,383349,383350,383351,383352,383355,383356,383357,383358,383368,383369,383370,383371,383376,383377,383383,383384,383385,383387,383392,383393,383394,383408,383409,383410,383411,383412,383413,383425,383426,383427,383428,383429,383437,383438,383439,384404,384405,384406,384407,384411,384412,384413,384423,384424,384425,384426,384431,384432,384433,384434,384439,384440,384441,384442,384443,384444,384448,384449,384450,384451,384464,384465,384466,384467,384468,384469,384481,384482,384483,384484,384493,384494,384495,385460,385461,385462,385467,385468,385469,385478,385479,385480,385481,385488,385489,385490,385491,385495,385496,385497,385498,385499,385500,385505,385506,385507,385519,385520,385521,385522,385524,385525,385526,385527,385538,385539,385540,385549,385550,385551,386516,386517,386523,386524,386525,386534,386535,386536,386545,386546,386547,386548,386551,386552,386553,386554,386555,386561,386562,386563,386574,386575,386576,386577,386581,386582,386583,386584,386594,386595,386596,386605,386606,386607,386608,387579,387580,387581,387590,387591,387592,387602,387603,387604,387607,387608,387609,387610,387629,387630,387631,387632,387637,387638,387639,387640,387641,387642,387643,387650,387651,387652,387662,387663,387664,388635,388636,388637,388638,388646,388647,388648,388658,388659,388660,388661,388662,388663,388664,388665,388686,388687,388694,388695,388696,388697,388698,388699,388700,388705,388706,388707,388708,388719,388720,389690,389691,389692,389693,389702,389703,389704,389705,389715,389716,389717,389718,389719,389720,389752,389753,389754,389755,389756,389760,389761,389762,389763,390747,390748,390749,390758,390759,390760,390761,390762,390772,390773,390774,390775,390815,390816,390817,390818,390819,391804,391815,391816,391817,391818,391819,391829,391830,391831,391871,391872,391873,391874,391881,391882,392872,392873,392874,392875,392885,392886,392887,392926,392927,392928,392929,392936,392937,392938,392939,393928,393929,393941,393942,393943,393981,393982,393983,393984,393985,393992,393993,393994,393995,393996,393997,393998,394997,394998,394999,395039,395040,395041,395047,395048,395049,395050,395051,395052,395053,395054,395055,396053,396054,396055,396096,396097,396102,396103,396104,396105,396106,396107,396108,396109,396110,522209,522210,523262,523263,523264,523265,523266,523267,524317,524318,524319,524320,524321,524322,524323,524324,525372,525373,525374,525375,525376,525377,525378,525379,526428,526429,526430,526431,526432,526433,526434,527484,527485,527486,527487,527488,527489,528540,528541,528542,528543,528544,529595,529596,529597,529598,529599,530652,530653,560235,560236,560237,560238,561290,561291,561292,561293,561294,561295,562347,562348,562349,562350,567631,567632,568686,568687,568688,568689,569741,569742,569743,569744,570797,570798,570799,570800,571854,571855,571856,572910,572911,572912,573966,573967,573968,575021,575022,575023,575024,576071,576078,576079,577127,577128,578182,578183,578184,578185,579237,579238,579239,579240,579241,580293,580294,580295,580296,580297,580318,581350,581351,581352,581353,581373,581374,581375,582408,582428,582429,582430,582431,582432,583485,583486,583487,583488,584535,584541,584542,584543,584544,585590,585591,585592,585598,585599,585600,586645,586646,586647,586648,586649,586655,587702,587703,587704,588759,589804,589808,589809,589810,590859,590860,590861,590862,590863,590864,590865,591916,591917,591918,591919,591920,592973,592974,679296,679297,680351,680352,681404,681405,681406,681407,681408,682460,682461,682462,682463,682464,683508,683509,683510,683516,683517,683518,683519,683520,684562,684563,684565,684566,684573,684574,684575,684576,684577,685618,685619,685621,685622,685629,685630,685631,685632,685633,686675,686676,686677,686678,686685,687731,687732,687733,687734,687735,688788,688789,688790,688791,688792,689844,689848,703318,704360,704361,704373,704374,704375,705415,705416,705417,705418,705429,705430,705431,706470,706471,706472,706473,706474,706483,706484,706486,707527,707528,707529,707530,707531,707538,707539,707540,707541,708584,708585,708586,708587,708588,708589,708590,708593,708594,708595,708597,708598,708613,708614,708615,709641,709642,709643,709644,709645,709646,709647,709649,709650,709651,709653,709654,709660,709661,709669,709670,709671,709672,710696,710697,710698,710700,710702,710703,710705,710706,710707,710708,710709,710710,710711,710715,710716,710717,710718,710719,710720,710725,710726,710727,710728,710729,711752,711753,711754,711762,711763,711764,711765,711766,711767,711768,711769,711770,711771,711772,711773,711775,711776,711777,711781,711782,711784,712808,712809,712811,712812,712813,712814,712815,712819,712820,712821,712822,712823,712824,712825,712826,712827,712828,712829,712832,713866,713867,713868,713869,713870,713871,713872,713873,713876,713877,713878,713879,713880,713881,713882,713883,713884,713885,713886,713890,713891,713892,713893,713894,713895,714918,714921,714922,714923,714924,714925,714926,714927,714928,714929,714930,714932,714933,714934,714935,714936,714937,714938,714939,714940,714941,714945,714946,714947,714948,714949,714950,714952,715973,715974,715975,715977,715978,715979,715980,715981,715982,715983,715984,715985,715986,715987,715988,715989,715994,715995,715996,715999,716000,716001,716002,716003,716004,716005,716006,716007,716008,716009,717029,717030,717031,717033,717034,717035,717036,717037,717038,717039,717040,717041,717042,717043,717054,717055,717056,717057,717058,717059,717060,717061,717062,717063,717064,717065,718086,718089,718090,718091,718092,718093,718094,718095,718096,718097,718111,718112,718113,718114,718115,718116,718117,718118,718119,718120,718121,718122,719145,719146,719147,719148,719149,719150,719151,719152,719168,719169,719170,719171,719172,719173,719174,719175,719176,719177,719178,719179,720201,720202,720203,720204,720205,720206,720207,720226,720227,720228,720229,720230,720231,720232,720233,720234,720235,720236,720237,721257,721258,721259,721260,721261,721262,721263,721282,721283,721284,721285,721286,721287,721288,721289,721290,721291,721292,721293,722313,722314,722315,722316,722317,722318,722319,722338,722339,722340,722341,722342,722343,722344,722345,722346,722347,722348,723369,723370,723371,723372,723373,723374,723375,723394,723395,723396,723397,723398,723399,723400,723401,723402,723403,723404,723411,723412,724426,724427,724428,724429,724430,724431,724449,724450,724451,724452,724457,724458,724459,724466,724467,724468,724469,725483,725484,725485,725486,725487,725505,725506,725507,725508,725514,725522,725523,725524,725525,726539,726540,726541,726542,726543,726544,726562,726563,726564,726579,727595,727596,727597,727598,727599,727600,727601,727618,727619,727620,728651,728652,728653,728654,728655,728656,728657,728675,728676,728677,728678,728679,729702,729708,729709,729710,729711,729712,729713,729733,729734,729735,729736,730757,730758,730759,730762,730765,730766,730767,730768,730769,730786,730790,730791,730792,731812,731813,731814,731815,731817,731818,731819,731820,731821,731822,731823,731824,731825,731826,731841,731842,731843,731844,731845,731846,731847,731848,732868,732869,732870,732871,732872,732873,732874,732875,732876,732877,732878,732879,732880,732881,732882,732883,732896,732897,732898,732899,732900,732901,732902,732903,732904,733924,733925,733926,733927,733929,733930,733931,733932,733934,733935,733936,733937,733938,733953,733954,733955,733956,733957,733958,733959,733960,733961,733962,733963,734981,734982,734985,734986,734987,734988,734991,734992,735010,735011,735013,735014,735015,735016,735017,735018,735019,735020,736041,736042,736043,736044,736046,736047,736066,736067,736069,736070,736071,736072,736073,736074,736075,736076,737097,737098,737099,737101,737102,737122,737123,737124,737125,737126,737128,737129,737130,737131,737132,738154,738155,738157,738158,738178,738179,738180,738181,738182,738185,738186,738187,738188,739208,739213,739214,739233,739234,739235,739236,739237,739238,739243,740262,740263,740264,740265,740268,740269,740288,740289,740290,740291,740292,740293,740294,741317,741318,741319,741320,741321,741322,741323,741324,741325,741345,741346,741347,741348,741349,741350,741351,742373,742374,742375,742377,742378,742379,742380,742381,742401,742402,742403,742404,742405,742406,742407,742408,743429,743430,743433,743434,743435,743436,743437,743457,743458,743459,743460,743461,743462,743463,744489,744490,744491,744492,744493,744513,744514,744515,744516,744517,744518,745545,745546,745547,745548,745549,745550,745556,745557,745558,745568,745569,745570,745571,745572,745573,745574,746600,746601,746602,746603,746604,746605,746606,746607,746609,746610,746612,746613,746614,746615,746619,746620,746621,746622,746624,746625,746626,746627,746628,746629,746630,747655,747656,747657,747658,747659,747660,747661,747662,747663,747665,747666,747667,747669,747670,747671,747672,747673,747674,747675,747676,747677,747678,747679,747680,747681,747682,747683,747684,747685,748712,748713,748714,748715,748716,748717,748718,748719,748721,748722,748723,748725,748726,748727,748728,748729,748730,748731,748732,748733,748734,748735,748736,748737,748738,748739,748740,748741,749768,749769,749770,749771,749772,749773,749774,749775,749776,749777,749778,749779,749782,749783,749784,749785,749786,749787,749788,749789,749790,749791,749793,749794,749795,749796,749797,749798,750823,750824,750825,750828,750829,750830,750831,750832,750833,750834,750835,750836,750837,750838,750839,750840,750841,750842,750844,750845,750846,750847,750851,750852,750853,750854,751879,751880,751881,751885,751886,751887,751888,751889,751890,751891,751892,751893,751894,751895,751896,751897,751901,751902,751903,751908,751909,751910,751911,752936,752937,752943,752945,752946,752950,752957,752958,752966,754012,754013,754014,754015,755056,755057,755058,755069,755070,755071,756113,756114,756126,783080,783081,784136,784137,784138,785193,785194,788365,788366,788367,789421,789422,789423,790476,790477,790478,790479,791533,791534,791535,796245,797292,797293,797298,797299,797300,797301,797302,797306,798347,798348,798349,798350,798351,798352,798353,798354,798355,798356,798357,798358,798359,798360,798361,798362,798363,799402,799403,799404,799405,799406,799407,799408,799409,799410,799411,799412,799413,799414,799415,799416,799417,799418,799419,799420,800458,800459,800460,801519,801520,801521,801522,801523,801524,801525,801526,801527,801528,801529,801530,801531,801532,802575,802576,802577,802578,802579,802580,802581,802582,802583,802584,802585,802586,802587,802588,802590,803631,803632,803633,803634,803635,803636,803637,803638,803639,803640,803645,803646,803647,804692,804693,804694,804695,804702,1047,2101,2103,3157,3159,3160,3162,3194,3195,3196,3197,3198,3199,4213,4215,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,11658,12713,12714,13767,13768,13769,13770,14823,14824,14825,14826,15879,15880,15881,15882,21126,21127,21128,22182,22183,22184,23240,24296,25352,25353,25354,26409,26410,27465,27466,28520,28521,28522,28523,29576,29577,29578,29579,30633,30634,31689,31690,32745,32746,33799,33800,33801,41283,41284,41285,41286,41291,41292,41293,41294,42338,42339,42340,42341,42342,42343,42346,42347,42348,42349,42350,42351,43381,43382,43383,43384,43393,43394,43395,43396,43397,43398,43399,43402,43403,43404,43405,43406,43407,43408,43409,43410,44380,44381,44382,44383,44384,44385,44436,44437,44438,44439,44440,44441,44442,44443,44444,44445,44446,44447,44448,44449,44450,44451,44452,44453,44454,44455,44458,44459,44460,44461,44462,44463,44464,44465,44466,44467,44468,44469,45489,45490,45491,45492,45493,45494,45495,45496,45497,45498,45499,45500,45501,45502,45503,45504,45505,45506,45507,45508,45509,45510,45511,45514,45515,45516,45517,45518,45519,45520,45521,45522,45523,45524,45525,45526,46544,46545,46546,46547,46548,46549,46550,46551,46552,46553,46554,46555,46556,46557,46558,46559,46560,46561,46562,46563,46564,46565,46572,46573,46574,46575,46576,46577,46578,46579,46580,46581,46582,46583,47599,47600,47601,47602,47603,47604,47605,47606,47607,47608,47609,47610,47611,47612,47613,47614,47615,47616,47617,47618,47619,47620,47629,47634,47635,47636,47637,47638,47639,47640,48655,48656,48657,48658,48659,48660,48661,48662,48663,48668,48669,48670,48671,48691,48692,48693,48694,48695,48696,49711,49712,49713,49714,49725,49726,49748,49749,49750,49751,49752,50766,50767,50768,50769,50804,50805,50806,50807,50808,51822,51823,51824,51825,51860,51861,51862,51863,51864,52878,52879,52880,52881,52916,52917,52918,52919,52920,52921,53934,53935,53936,53937,53972,53973,53974,53975,53976,53977,53978,54990,54991,54992,54993,55027,55028,55029,55030,55031,55032,55033,55034,56043,56044,56045,56046,56047,56048,56082,56083,56084,56085,56086,56087,56088,56089,56090,57098,57099,57100,57101,57102,57103,57138,57139,57140,57141,57142,57143,57144,57145,57146,58153,58154,58155,58156,58157,58158,58159,58194,58195,58196,58197,58198,58199,58200,58201,59208,59209,59210,59211,59212,59213,59214,59251,59252,59253,59254,59255,59256,60263,60264,60265,60266,60267,60268,60269,60308,60309,60310,60311,60312,61319,61320,61321,61322,61323,61364,61365,61366,61367,61368,62375,62376,62377,62378,62420,62421,62422,62423,62424,63431,63432,63433,63434,63476,63477,63478,63479,63480,64532,64533,64534,64535,64536,64537,65587,65588,65589,65590,65591,65592,65593,66598,66599,66600,66601,66602,67654,67655,67656,67657,67658,68709,68710,68711,68712,68713,68714,68754,68755,68756,68757,68758,68759,68760,69762,69763,69764,69765,69766,69767,69768,69769,69770,69771,69810,69811,69812,69813,69814,69815,69816,70817,70818,70819,70820,70821,70822,70823,70824,70825,70826,70827,70828,70866,70867,70868,70869,70870,70871,70872,71873,71874,71875,71876,71879,71880,71881,71882,71883,71884,71921,71922,71923,71924,71925,71926,71927,72929,72930,72931,72932,72935,72936,72937,72938,72939,72940,72976,72977,72978,72979,72980,72981,72982,73985,73986,73987,73988,73989,73990,73991,73992,73993,73994,73995,74031,74032,74033,74034,74035,74036,74037,74038,75041,75042,75043,75044,75045,75046,75047,75048,75049,75050,75087,75088,75089,75090,75091,75092,75093,75094,75137,76096,76097,76098,76099,76100,76101,76102,76103,76104,76143,76144,76145,76146,76147,76148,76149,76150,76193,76194,76197,77151,77152,77153,77154,77155,77156,77157,77158,77159,77200,77201,77202,77203,77204,77205,77206,77250,77253,77254,77255,78207,78208,78209,78210,78211,78257,78258,78259,78260,78261,78262,78263,78306,78309,78310,78311,79263,79264,79265,79266,79313,79314,79315,79316,79317,79318,79319,79320,79362,80318,80319,80320,80321,80322,80369,80370,80371,80372,80373,80374,80375,80376,80418,81373,81374,81375,81376,81377,81378,81425,81426,81427,81428,81429,81430,81431,81432,81474,82429,82430,82431,82432,82433,82481,82482,82483,82484,82485,82486,82487,83485,83486,83487,83488,83537,83538,83539,83540,83541,83542,84541,84542,84543,84544,84569,84570,84571,84572,84593,84594,84595,84596,84597,84598,85596,85597,85598,85599,85600,85622,85623,85624,85625,85626,85627,85628,85629,85648,85649,85650,85651,85652,85653,85654,86652,86653,86654,86655,86656,86677,86678,86679,86680,86681,86682,86683,86684,86685,86686,86687,86690,86697,86698,86703,86704,86705,86706,86707,86708,86709,87708,87709,87710,87711,87712,87732,87733,87734,87735,87736,87737,87738,87739,87740,87741,87742,87743,87746,87747,87752,87753,87754,87755,87756,87757,87758,87759,87760,87761,87762,87763,87764,88765,88766,88767,88768,88787,88788,88789,88790,88791,88792,88793,88794,88795,88796,88797,88798,88799,88802,88803,88804,88805,88806,88807,88808,88809,88810,88811,88812,88813,88814,88815,88816,88817,88818,88819,88820,89821,89822,89823,89824,89825,89832,89833,89838,89839,89840,89841,89842,89843,89844,89845,89846,89847,89848,89849,89850,89851,89852,89853,89854,89855,89858,89859,89860,89861,89862,89863,89864,89865,89866,89867,89868,89869,89870,89871,89872,89873,89874,89875,89930,89931,89932,89933,89934,89935,89936,89937,90877,90878,90879,90880,90881,90882,90883,90884,90885,90886,90887,90888,90889,90890,90891,90892,90893,90894,90895,90896,90897,90898,90899,90900,90901,90902,90903,90904,90905,90909,90910,90911,90914,90915,90916,90917,90918,90919,90920,90921,90922,90923,90924,90925,90926,90927,90928,90929,90930,91934,91935,91936,91937,91938,91939,91940,91941,91942,91943,91944,91945,91946,91947,91948,91949,91950,91951,91952,91953,91954,91955,91956,91957,91958,91959,91960,91966,91967,91970,91971,91972,91973,91974,91975,91976,91977,91978,91979,91980,91984,91985,92991,92992,92993,92994,92995,92996,92997,92998,92999,93000,93001,93002,93003,93004,93005,93006,93007,93008,93009,93010,93011,93012,93013,93014,93015,93016,93029,93030,93031,93032,93033,93034,93035,94049,94050,94051,94052,94053,94054,94055,94056,94057,94058,94059,94060,94061,94062,94063,94064,94065,94066,94067,94068,94069,94070,94071,94086,94087,94088,95106,95107,95108,95109,95110,95111,95112,95113,95114,95115,95116,95117,95118,95124,95125,95126,96163,96164,96165,96166,96170,96171,96172,96173,124794,125846,125850,125862,125863,125864,126903,126904,126905,126918,126919,127971,145738,145739,145740,145741,145742,145743,145744,145745,145746,145747,145748,145749,145750,145751,145752,145753,145754,145755,145756,145757,145758,145759,145760,145761,145762,145763,145764,145765,145766,145767,145768,145769,145770,145771,145772,145773,145774,145775,145776,145777,145778,145779,145780,145781,145782,145783,145784,145785,146793,146794,146795,146796,146797,146798,146799,146800,146801,146802,146803,146804,146805,146806,146807,146808,146809,146810,146811,146812,146813,146814,146815,146816,146817,146818,146819,146820,146821,146822,146823,146824,146825,146826,146827,146828,146829,146830,146831,146832,146833,146834,146835,146836,146837,146838,146839,146840,146841,147848,147849,147850,147851,147852,147853,147854,147855,147856,147857,147858,147859,147860,147861,147862,147863,147864,147865,147866,147867,147868,147869,147870,147871,147872,147873,147874,147875,147876,147877,147878,147879,147880,147881,147882,147883,147884,147885,147886,147887,147888,147889,147890,147891,147892,147893,147894,147895,147896,147897,147898,148904,148905,148906,148907,148908,148909,148910,148911,148912,148913,148914,148915,148916,148917,148918,148919,148920,148921,148922,148923,148924,148925,148926,148927,148928,148929,148930,148931,148932,148933,148934,148935,148936,148937,148938,148939,148940,148941,148942,148943,148944,148945,148946,148947,148948,148949,148950,148951,148952,148953,148954,148955,148956,148957,148975,148976,148977,148978,148979,148980,148981,148982,148983,148984,148985,148986,148987,148988,148989,148990,148991,148992,148993,149194,149961,149962,149963,149964,149965,149966,149967,149968,149969,149970,149971,149972,149973,149974,149975,149976,149977,149978,149979,149980,149981,149982,149983,149984,149985,149986,149987,149988,149989,149990,149991,149992,149993,149994,149995,149996,149997,149998,149999,150000,150001,150002,150003,150004,150005,150006,150007,150008,150009,150010,150011,150012,150013,150014,150031,150032,150033,150034,150035,150036,150037,150038,150039,150040,150041,150042,150043,150044,150045,150046,150047,150048,150049,151018,151019,151020,151021,151022,151023,151024,151025,151026,151027,151028,151029,151030,151031,151032,151033,151034,151035,151036,151037,151038,151039,151040,151041,151042,151043,151044,151045,151046,151047,151048,151049,151050,151051,151052,151053,151054,151055,151056,151057,151058,151059,151060,151061,151062,151063,151064,151065,151066,151067,151068,151069,151070,151071,151078,151079,151086,151087,151088,151089,151090,151091,151092,151093,151094,151095,151096,151097,151098,151099,151100,151101,151102,151103,151104,151105,152077,152078,152079,152080,152081,152082,152083,152084,152085,152086,152087,152088,152089,152090,152091,152092,152093,152094,152095,152096,152097,152098,152099,152100,152101,152102,152103,152104,152105,152106,152107,152108,152109,152110,152111,152112,152113,152114,152115,152116,152117,152118,152119,152120,152121,152122,152123,152124,152125,152126,152127,152128,152129,152130,152131,152132,152133,152134,152135,152136,152137,152138,152139,152140,152141,152142,152143,152144,152145,152146,152147,152148,152149,152150,152151,152152,152153,152154,152155,152156,152157,152158,152159,152160,152161,152162,153134,153135,153136,153137,153138,153139,153140,153141,153142,153143,153144,153145,153146,153147,153148,153149,153150,153151,153152,153153,153154,153155,153156,153157,153158,153159,153160,153161,153162,153163,153164,153165,153166,153167,153168,153169,153170,153171,153172,153173,153174,153175,153176,153177,153178,153179,153180,153181,153182,153183,153184,153185,153186,153187,153188,153189,153190,153191,153192,153193,153194,153195,153196,153197,153198,153199,153200,153201,153202,153203,153204,153205,153206,153207,153208,153209,153210,153211,153212,153213,153214,153215,153216,153217,153218,153219,154190,154191,154192,154193,154194,154195,154196,154197,154198,154199,154200,154201,154202,154203,154204,154205,154206,154207,154208,154209,154210,154211,154212,154213,154214,154215,154216,154217,154218,154219,154220,154221,154222,154223,154224,154225,154226,154227,154228,154229,154230,154231,154232,154233,154234,154235,154236,154237,154238,154239,154240,154241,154242,154243,154244,154245,154246,154247,154248,154249,154250,154251,154252,154253,154254,154255,154256,154257,154258,154259,154260,154261,154262,154263,154264,154265,154266,154267,154268,154269,154270,154271,154272,154273,154274,154275,154276,155246,155247,155248,155249,155250,155251,155252,155253,155254,155255,155256,155257,155258,155259,155260,155261,155262,155263,155264,155265,155266,155267,155268,155269,155270,155271,155272,155273,155274,155275,155276,155277,155278,155279,155280,155281,155282,155283,155284,155285,155286,155287,155288,155289,155290,155291,155292,155293,155294,155295,155296,155297,155298,155299,155300,155301,155302,155303,155304,155305,155306,155307,155308,155309,155310,155311,155312,155313,155314,155315,155316,155317,155318,155319,155320,155321,155322,155323,155324,155325,155326,155327,155328,155329,155330,155331,155332,155333,156302,156303,156304,156305,156306,156307,156308,156309,156310,156311,156312,156313,156314,156315,156316,156317,156318,156319,156320,156321,156322,156323,156324,156325,156326,156327,156328,156329,156330,156331,156332,156333,156334,156335,156336,156337,156338,156339,156340,156341,156342,156343,156344,156345,156346,156347,156348,156349,156350,156351,156352,156353,156354,156355,156356,156357,156358,156359,156360,156361,156362,156363,156364,156365,156366,156367,156368,156369,156370,156371,156372,156373,156374,156375,156376,156377,156378,156379,156380,156381,156382,156383,156384,156385,156386,156387,156388,156602,156603,156604,157358,157359,157360,157361,157362,157363,157364,157365,157366,157367,157368,157369,157370,157371,157372,157373,157374,157375,157376,157377,157378,157379,157380,157381,157382,157383,157384,157385,157386,157387,157388,157389,157390,157391,157392,157393,157394,157395,157396,157397,157398,157399,157400,157401,157402,157403,157404,157405,157406,157407,157408,157409,157410,157411,157412,157413,157414,157415,157416,157417,157418,157419,157420,157421,157422,157423,157424,157425,157426,157427,157428,157429,157430,157431,157432,157433,157434,157435,157436,157437,157438,157439,157440,157441,157442,157443,157658,157659,158414,158415,158416,158417,158418,158419,158420,158421,158422,158423,158424,158425,158426,158427,158428,158429,158430,158431,158432,158433,158434,158435,158436,158437,158438,158439,158440,158441,158442,158443,158444,158445,158446,158447,158448,158449,158450,158451,158452,158453,158454,158455,158456,158457,158458,158459,158460,158461,158462,158463,158464,158465,158466,158467,158468,158469,158470,158471,158472,158473,158474,158475,158476,158477,158478,158479,158480,158481,158482,158483,158484,158485,158486,158487,158488,158489,158490,158491,158492,158493,158494,158495,158496,158497,158498,158499,158711,158712,159470,159471,159472,159473,159474,159475,159476,159477,159478,159479,159480,159481,159482,159483,159484,159485,159486,159487,159488,159489,159490,159491,159492,159493,159494,159495,159496,159497,159498,159499,159500,159501,159502,159503,159504,159505,159506,159507,159508,159509,159510,159511,159512,159513,159514,159515,159516,159517,159518,159519,159520,159521,159522,159523,159524,159525,159526,159527,159528,159529,159530,159531,159532,159533,159534,159535,159536,159537,159538,159539,159540,159541,159542,159543,159544,159545,159546,159547,159548,159549,159550,159551,159552,159553,159554,159555,159763,159764,160527,160528,160529,160530,160531,160532,160533,160534,160535,160536,160537,160538,160539,160540,160541,160542,160543,160544,160545,160546,160547,160548,160549,160550,160551,160552,160553,160554,160555,160556,160557,160558,160559,160560,160561,160562,160563,160564,160565,160566,160567,160568,160569,160570,160571,160572,160573,160574,160575,160576,160577,160578,160579,160580,160581,160582,160583,160584,160585,160586,160587,160588,160589,160590,160591,160592,160593,160594,160595,160596,160597,160598,160599,160600,160601,160602,160603,160604,160605,160606,160607,160608,160609,160610,160797,160817,160818,160819,161584,161585,161586,161587,161588,161589,161590,161591,161592,161593,161594,161595,161596,161597,161598,161599,161600,161601,161602,161603,161604,161605,161606,161607,161608,161609,161610,161611,161612,161613,161614,161615,161616,161617,161618,161619,161620,161621,161622,161623,161624,161625,161626,161627,161628,161629,161630,161631,161632,161633,161634,161635,161636,161637,161638,161639,161640,161641,161642,161643,161644,161645,161646,161647,161648,161649,161650,161651,161652,161653,161654,161655,161656,161657,161658,161659,161660,161661,161662,161663,161664,161852,161853,162640,162641,162642,162643,162644,162645,162646,162647,162648,162649,162650,162651,162652,162653,162654,162655,162656,162657,162658,162659,162660,162661,162662,162663,162664,162665,162666,162667,162668,162669,162670,162671,162672,162673,162674,162675,162676,162677,162678,162679,162680,162681,162682,162683,162684,162685,162686,162687,162688,162689,162690,162691,162692,162693,162694,162695,162696,162697,162698,162699,162700,162701,162702,162703,162704,162705,162706,162707,162708,162709,162710,162711,162712,162713,162714,162715,162716,162717,162718,162719,162907,162908,162909,163696,163697,163698,163699,163700,163701,163702,163703,163704,163705,163706,163707,163708,163709,163710,163711,163712,163713,163714,163715,163716,163717,163718,163719,163720,163721,163722,163723,163724,163725,163726,163727,163728,163729,163730,163731,163732,163733,163734,163735,163736,163737,163738,163739,163740,163741,163742,163743,163744,163745,163746,163747,163748,163749,163750,163751,163752,163753,163754,163755,163756,163757,163758,163759,163760,163761,163762,163763,163764,163765,163766,163767,163768,163769,163770,163771,163772,163773,163774,163775,163963,163964,163965,164753,164754,164755,164756,164757,164758,164759,164760,164761,164762,164763,164764,164765,164766,164767,164768,164769,164770,164771,164772,164773,164774,164775,164776,164777,164778,164779,164780,164781,164782,164783,164784,164785,164786,164787,164788,164789,164790,164791,164792,164793,164794,164795,164796,164797,164798,164799,164800,164801,164802,164803,164804,164805,164806,164807,164808,164809,164810,164811,164812,164813,164814,164815,164816,164817,164818,164819,164820,164821,164822,164823,164824,164825,164826,164827,164828,164829,164830,164831,165019,165020,165021,165810,165811,165812,165813,165814,165815,165816,165817,165818,165819,165820,165821,165822,165823,165824,165825,165826,165827,165828,165829,165830,165831,165832,165833,165834,165835,165836,165837,165838,165839,165840,165841,165842,165843,165844,165845,165846,165847,165848,165849,165850,165851,165852,165853,165854,165855,165856,165857,165858,165859,165860,165861,165862,165863,165864,165865,165866,165867,165868,165873,165874,165875,165876,165877,165878,165879,165880,165881,165882,165883,165884,165885,165886,166075,166076,166866,166867,166868,166869,166870,166871,166872,166873,166874,166875,166876,166877,166878,166879,166880,166881,166882,166883,166884,166885,166886,166887,166888,166889,166890,166891,166892,166893,166894,166895,166896,166897,166898,166899,166900,166901,166902,166903,166904,166905,166906,166907,166908,166909,166910,166911,166912,166913,166914,166915,166916,166917,166918,166919,166920,166921,166922,166923,166930,166931,166932,166933,166934,166935,166936,166937,166938,166939,166940,166941,167130,167922,167923,167924,167925,167926,167927,167928,167929,167930,167931,167932,167933,167934,167935,167936,167937,167938,167939,167940,167941,167942,167943,167944,167945,167946,167947,167954,167955,167956,167957,167958,167959,167960,167961,167962,167963,167964,167965,167966,167967,167968,167969,167970,167971,167972,167973,167974,167975,167976,167977,167978,167979,167990,167991,167992,168185,168186,168203,168206,168978,168979,168980,168981,168982,168983,168984,168985,168986,168987,168988,168989,168990,168991,168992,168993,168994,168995,168996,168997,168998,168999,169000,169001,169002,169010,169011,169012,169013,169014,169015,169016,169017,169018,169019,169020,169021,169022,169023,169028,169029,169030,169031,169032,169033,169034,169035,169047,169241,169242,169256,169257,169438,169439,170034,170035,170036,170037,170038,170039,170040,170041,170042,170043,170044,170045,170046,170051,170052,170053,170054,170055,170056,170057,170058,170066,170067,170068,170069,170070,170071,170072,170073,170074,170075,170076,170077,170078,170085,170086,170087,170088,170089,170090,170298,170312,170313,170494,170495,170496,171091,171092,171093,171094,171095,171096,171101,171107,171108,171109,171110,171111,171112,171113,171114,171123,171124,171125,171126,171127,171128,171129,171130,171131,171132,171133,171134,171144,171145,171368,171550,171551,172148,172149,172150,172151,172163,172164,172165,172166,172167,172168,172169,172180,172181,172182,172183,172184,172185,172186,172187,172188,172189,172190,172333,172334,172335,173220,173221,173222,173223,173224,173237,173238,173239,173240,173241,173242,173243,173244,173245,173389,173390,174277,174278,174294,174295,174300,174445,183927,183928,184983,184984,186040,186041,186042,186043,186044,186045,186096,187101,187102,187103,187152,187153,187154,188208,188209,188210,189265,189266,190323,190324,190325,190326,192384,192385,193439,193440,193441,193442,193447,193448,193449,194494,194495,194496,194497,194498,194499,194500,194501,194502,194503,194504,194505,195550,195551,195552,195553,195554,195555,195556,195557,195558,195559,195560,195561,196604,196605,196606,196607,196608,196609,196610,196611,196612,196613,196614,196615,196616,196617,196618,196670,196671,197659,197660,197661,197662,197663,197664,197665,197666,197667,197668,197669,197670,197671,197672,197673,197674,197679,197680,197727,198714,198715,198716,198717,198718,198719,198720,198721,198722,198723,198724,198725,198726,198727,198728,198729,198730,198731,198734,198735,198736,198783,198784,198785,198786,198787,198788,199770,199771,199772,199773,199774,199775,199776,199777,199778,199779,199780,199781,199782,199783,199784,199785,199786,199787,199790,199791,199792,199793,199843,199844,200825,200826,200827,200828,200829,200830,200831,200832,200833,200834,200835,200836,200837,200838,200839,200840,200841,200842,200843,200846,200847,200848,200849,200850,200851,200852,201878,201879,201880,201881,201882,201883,201884,201885,201886,201887,201888,201889,201890,201891,201892,201893,201894,201895,201896,201897,201898,201899,201902,201903,201904,201905,201906,201907,201908,201909,201914,201915,202933,202934,202935,202936,202937,202938,202939,202940,202941,202942,202943,202944,202945,202946,202947,202948,202949,202950,202951,202952,202953,202954,202955,202958,202959,202960,202961,202962,202963,202964,202965,202966,202967,202968,202969,202970,202971,202972,203988,203989,203990,203991,203992,203993,203994,203995,203996,203997,203998,203999,204000,204001,204002,204003,204004,204005,204006,204007,204008,204009,204010,204011,204014,204015,204016,204017,204018,204019,204020,204021,204022,204023,204024,204025,204026,204027,204028,204029,205033,205034,205044,205045,205046,205047,205048,205049,205050,205051,205052,205053,205054,205055,205056,205057,205058,205059,205060,205061,205062,205063,205064,205065,205066,205067,205070,205071,205072,205073,205074,205075,205076,205077,205078,205079,205080,205081,205082,205083,205084,205085,206073,206082,206083,206088,206089,206090,206091,206100,206101,206102,206103,206104,206105,206106,206107,206108,206109,206110,206111,206112,206113,206114,206115,206116,206117,206118,206119,206120,206121,206122,206123,206126,206127,206128,206129,206130,206131,206132,206133,206134,206135,206136,206137,206138,206139,206140,206141,207126,207127,207128,207129,207130,207137,207138,207139,207140,207141,207142,207143,207144,207145,207146,207147,207148,207155,207156,207157,207158,207159,207160,207161,207162,207163,207164,207165,207166,207167,207168,207169,207170,207171,207172,207173,207174,207175,207176,207177,207178,207179,207182,207183,207184,207185,207186,207187,207188,207189,207190,207191,207192,207193,207194,207195,207196,207197,208181,208182,208183,208184,208185,208186,208187,208188,208189,208190,208191,208192,208193,208194,208195,208196,208197,208198,208199,208200,208201,208202,208203,208204,208205,208206,208207,208208,208209,208210,208211,208212,208213,208214,208215,208216,208217,208218,208219,208220,208221,208222,208223,208224,208225,208226,208227,208228,208229,208230,208231,208232,208241,208242,208243,208244,208245,208246,208247,208248,208249,208250,208251,208252,208253,208278,208279,209236,209237,209238,209239,209240,209241,209242,209243,209244,209245,209246,209247,209248,209249,209250,209251,209252,209253,209254,209255,209256,209257,209258,209259,209260,209261,209262,209263,209264,209265,209266,209267,209268,209269,209270,209271,209272,209273,209274,209275,209276,209277,209278,209279,209280,209281,209282,209283,209284,209285,209286,209287,209288,209299,209300,209301,209302,209303,209304,209305,209306,209307,209308,209309,209333,209334,209335,209336,209337,209338,210292,210293,210294,210295,210296,210297,210298,210299,210300,210301,210302,210303,210304,210305,210306,210307,210308,210309,210310,210311,210312,210313,210314,210315,210316,210317,210318,210319,210320,210321,210322,210323,210324,210325,210331,210332,210333,210334,210335,210336,210337,210338,210342,210343,210356,210357,210358,210359,210360,210361,210362,210363,210364,210365,210366,210371,210380,210381,210388,210389,210390,210391,210392,210393,210394,210395,211348,211349,211350,211351,211352,211353,211354,211355,211356,211357,211358,211359,211360,211361,211362,211363,211364,211365,211366,211367,211368,211369,211370,211371,211372,211373,211374,211375,211376,211377,211378,211379,211380,211381,211389,211390,211391,211392,211393,211394,211415,211416,211417,211418,211419,211420,211421,211422,211423,211424,211425,211426,211427,211428,211435,211436,211437,211438,211439,211440,211441,211442,211443,211444,211445,211446,211447,211448,211449,211450,211451,211452,212403,212404,212405,212406,212407,212408,212409,212410,212414,212415,212416,212417,212418,212419,212420,212421,212422,212423,212424,212425,212426,212427,212431,212435,212436,212445,212446,212447,212448,212449,212450,212471,212472,212473,212474,212475,212476,212477,212478,212479,212480,212481,212482,212483,212484,212485,212486,212487,212488,212489,212490,212491,212492,212493,212494,212495,212496,212497,212498,212499,212500,212501,212502,212503,212504,212505,212506,212507,212508,212509,212510,212511,213458,213459,213460,213461,213464,213465,213466,213472,213473,213474,213475,213476,213477,213478,213479,213480,213481,213482,213483,213502,213505,213527,213528,213529,213530,213531,213532,213533,213534,213535,213536,213537,213538,213539,213540,213541,213542,213543,213544,213545,213546,213547,213548,213549,213550,213551,213552,213553,213554,213555,213556,213557,213558,213559,213560,213561,213562,213563,213564,213565,213566,213567,213568,214514,214515,214516,214517,214521,214529,214533,214538,214583,214584,214585,214586,214587,214588,214589,214590,214591,214592,214593,214594,214595,214596,214597,214601,214602,214603,214604,214605,214606,214607,214608,214609,214610,214611,214612,214616,214617,214621,214622,214623,214624,215570,215571,215572,215573,215639,215640,215641,215642,215643,215644,215645,215646,215647,215648,215649,215650,215651,215652,215653,215660,215661,215662,215665,215666,215667,215668,215677,215678,215679,215680,216626,216627,216628,216629,216700,216701,216702,216703,216704,216705,216706,216707,216708,216709,216721,216722,216723,216724,216733,216734,216735,216736,217682,217683,217684,217685,217758,217759,217760,217761,217762,217763,217764,217778,217779,217787,217788,217789,217790,217791,217792,218119,218120,218738,218739,218740,218741,218742,218743,218843,218844,218845,218846,218847,218848,218849,219175,219176,219793,219794,219795,219796,219797,219798,219799,219900,219901,219902,219903,219904,219905,219906,220228,220229,220230,220231,220232,220848,220849,220850,220851,220852,220853,220854,220956,220957,220958,220959,220960,220961,220962,221284,221285,221286,221287,221288,221904,221905,221906,221907,221908,221909,221910,222010,222011,222012,222013,222014,222015,222016,222017,222018,222338,222339,222340,222341,222342,222343,222344,222960,222961,222962,222963,222964,222965,222966,223066,223067,223068,223069,223070,223071,223072,223073,223074,223396,223397,223398,223399,223400,223401,224016,224017,224018,224019,224020,224021,224022,224023,224024,224120,224121,224122,224123,224124,224125,224126,224127,224128,224129,224130,224452,224453,224454,224455,224456,224457,224458,225072,225073,225074,225075,225076,225077,225078,225079,225080,225176,225177,225178,225179,225180,225181,225182,225183,225184,225185,225186,225187,225508,225509,225510,225511,225512,225513,225514,226128,226129,226130,226131,226132,226133,226134,226135,226236,226237,226238,226239,226240,226241,226242,226243,226244,226565,226566,226567,227183,227184,227185,227186,227187,227188,227189,227293,227294,227295,227296,227297,227298,227299,228238,228239,228240,228241,228242,228243,228244,228245,228349,228350,228351,228352,228353,228354,228355,229294,229295,229296,229297,229298,229299,229300,229301,229405,229406,229407,229408,229409,229410,229411,230351,230352,230353,230354,230355,230356,230357,230458,230459,230460,230461,230462,230463,230464,230465,230466,231408,231409,231410,231411,231412,231413,231414,231415,231416,231417,231514,231515,231516,231517,231518,231519,231520,231521,232464,232465,232466,232467,232468,232469,232470,232471,232472,232473,232570,232571,232572,232573,232574,232575,232576,232577,233520,233521,233522,233523,233524,233525,233526,233527,233528,233529,233626,233627,233628,233629,233630,233631,233632,233633,234576,234577,234578,234579,234580,234581,234582,234583,234584,234585,234682,234683,234684,234685,234686,234687,234688,234689,235632,235633,235634,235635,235636,235637,235638,235639,235640,235641,235642,235643,235739,235740,235741,235742,235743,235744,235745,236687,236688,236689,236690,236691,236692,236693,236694,236695,236696,236697,236698,236699,236700,236701,236795,236796,236797,236798,236799,236800,236801,236802,237742,237743,237744,237745,237746,237747,237748,237749,237750,237751,237752,237753,237754,237755,237756,237757,237853,237854,237855,237856,237857,237858,237859,237860,237861,237862,238798,238799,238800,238801,238802,238803,238804,238805,238806,238807,238808,238809,238812,238860,238861,238909,238910,238911,238912,238913,238914,238915,238916,238917,238918,238919,239149,239150,239151,239152,239153,239154,239155,239156,239157,239158,239159,239160,239161,239162,239163,239164,239165,239166,239167,239168,239169,239170,239171,239172,239173,239174,239175,239176,239177,239178,239179,239180,239181,239182,239183,239184,239185,239186,239187,239188,239855,239856,239857,239858,239859,239860,239861,239862,239863,239864,239865,239916,239917,239918,239919,239920,239921,239922,239923,239924,239925,239926,239927,239928,239929,239965,239966,239967,239968,239969,239970,239971,239972,239973,239974,239975,239976,240204,240205,240206,240207,240208,240209,240210,240211,240212,240213,240214,240215,240216,240217,240218,240219,240220,240221,240222,240223,240224,240225,240226,240227,240228,240229,240230,240231,240232,240233,240234,240235,240236,240237,240238,240239,240240,240241,240242,240243,240244,240912,240913,240914,240915,240916,240917,240918,240919,240920,240969,240970,240971,240972,240973,240974,240975,240976,240977,240978,240979,240980,240981,240982,240983,240984,240985,241020,241021,241022,241023,241024,241025,241026,241027,241028,241029,241030,241031,241032,241260,241261,241262,241263,241264,241265,241266,241267,241268,241269,241270,241271,241272,241273,241274,241275,241276,241277,241278,241279,241280,241281,241282,241283,241284,241285,241286,241287,241288,241289,241290,241291,241292,241293,241294,241295,241296,241297,241298,241299,241300,241968,241969,241970,241971,241972,241973,242023,242024,242025,242026,242027,242028,242029,242030,242031,242032,242033,242034,242035,242036,242037,242038,242039,242040,242041,242076,242077,242078,242079,242080,242081,242082,242083,242084,242085,242086,242087,242088,242315,242316,242317,242318,242319,242320,242321,242322,242323,242324,242325,242326,242327,242328,242329,242330,242331,242332,242333,242334,242335,242340,242341,242342,242343,242344,242345,242346,242347,242348,242349,242350,242351,242352,242353,242354,242355,242367,242368,242369,242370,242371,242372,242373,242374,242375,242376,242377,242378,242379,242380,242381,242382,242383,242384,242385,242386,242387,243024,243025,243026,243027,243028,243029,243079,243080,243081,243082,243083,243084,243085,243086,243087,243088,243089,243090,243091,243092,243093,243094,243095,243096,243097,243102,243103,243133,243134,243135,243136,243137,243138,243139,243140,243141,243142,243143,243144,243145,243370,243371,243372,243373,243374,243375,243376,243377,243378,243379,243380,243381,243382,243383,243384,243385,243386,243387,243388,243389,243390,243398,243399,243400,243401,243402,243403,243404,243405,243406,243407,243408,243409,243410,243423,243424,243425,243426,243427,243428,243429,243430,243431,243432,243433,243434,243435,243436,243437,243438,243439,243440,243441,243442,244080,244081,244082,244083,244084,244085,244134,244135,244136,244137,244138,244139,244140,244141,244142,244143,244144,244145,244146,244147,244148,244149,244150,244151,244152,244153,244154,244155,244156,244157,244158,244159,244189,244190,244191,244192,244193,244194,244195,244196,244197,244198,244199,244200,244201,244202,244427,244428,244429,244430,244431,244432,244433,244434,244435,244436,244437,244438,244439,244440,244441,244442,244443,244444,244455,244456,244457,244458,244459,244460,244461,244462,244463,244464,244479,244480,244481,244482,244483,244484,244485,244486,244487,244488,244489,244490,244491,244492,244493,244494,244495,244496,245136,245137,245138,245139,245140,245141,245190,245191,245192,245193,245194,245195,245196,245197,245198,245199,245200,245201,245202,245203,245204,245205,245206,245207,245208,245209,245210,245211,245212,245213,245214,245245,245246,245247,245248,245249,245250,245251,245252,245253,245254,245255,245256,245257,245258,245483,245484,245485,245486,245487,245488,245489,245490,245491,245492,245493,245494,245495,245496,245497,245498,245499,245535,245536,245537,245538,245539,245540,245541,245542,245543,245544,245545,245546,245547,245548,245549,245550,245551,245552,246191,246192,246193,246194,246195,246246,246247,246248,246249,246250,246251,246252,246253,246254,246255,246256,246257,246258,246259,246260,246261,246262,246263,246264,246265,246266,246267,246268,246269,246270,246302,246303,246304,246305,246306,246307,246308,246309,246310,246311,246312,246313,246314,246539,246540,246541,246542,246543,246544,246545,246546,246547,246548,246549,246550,246551,246552,246590,246591,246592,246593,246594,246595,246596,246597,246598,246599,246600,246601,246602,246603,246604,246605,246606,246607,246608,247247,247248,247249,247250,247251,247302,247303,247304,247305,247306,247307,247308,247309,247310,247311,247312,247313,247314,247315,247316,247317,247318,247319,247320,247321,247322,247323,247324,247325,247326,247358,247359,247360,247361,247362,247363,247364,247365,247366,247367,247368,247369,247370,247595,247596,247597,247598,247599,247600,247601,247602,247603,247604,247605,247606,247607,247608,247623,247624,247625,247626,247627,247628,247629,247630,247631,247645,247646,247647,247648,247649,247650,247651,247652,247653,247654,247655,247656,247657,247658,247659,247660,247661,247662,247663,247664,248303,248304,248305,248306,248307,248358,248359,248360,248361,248362,248363,248364,248365,248366,248367,248368,248369,248370,248371,248372,248373,248374,248375,248376,248377,248378,248379,248380,248381,248382,248383,248384,248385,248414,248415,248416,248417,248418,248419,248420,248421,248422,248423,248424,248425,248426,248650,248651,248652,248653,248654,248655,248656,248657,248658,248659,248660,248661,248662,248663,248664,248678,248679,248680,248681,248682,248683,248684,248685,248686,248701,248702,248703,248704,248705,248706,248707,248708,248709,248710,248711,248712,248713,248714,248715,248716,248717,248718,248719,248720,249358,249359,249360,249361,249362,249363,249364,249365,249415,249416,249417,249418,249419,249420,249421,249422,249423,249424,249425,249426,249427,249428,249429,249430,249431,249432,249433,249434,249435,249436,249437,249438,249439,249440,249441,249471,249472,249473,249474,249475,249476,249477,249478,249479,249480,249481,249482,249705,249706,249707,249708,249709,249710,249711,249712,249713,249714,249715,249716,249717,249718,249719,249720,249721,249726,249727,249734,249735,249736,249737,249738,249739,249740,249741,249742,249754,249755,249756,249757,249758,249759,249760,249761,249762,249763,249764,249765,249766,249767,249768,249769,249770,249771,249772,249773,249774,249775,249776,250413,250414,250415,250416,250417,250418,250419,250420,250421,250473,250474,250475,250476,250477,250478,250479,250480,250481,250482,250483,250484,250485,250486,250487,250488,250489,250490,250491,250492,250493,250494,250495,250496,250497,250527,250528,250529,250530,250531,250532,250533,250534,250535,250536,250537,250538,250539,250762,250763,250764,250765,250766,250767,250768,250769,250770,250771,250772,250773,250774,250775,250776,250777,250778,250779,250780,250781,250782,250783,250784,250790,250791,250792,250793,250794,250795,250796,250797,250798,250807,250808,250809,250810,250811,250812,250813,250814,250815,250816,250817,250818,250819,250820,250821,250822,250823,250824,250825,250826,250827,250828,250829,250830,250831,250832,250833,250834,251469,251470,251471,251472,251473,251474,251475,251476,251477,251529,251530,251531,251532,251533,251534,251535,251536,251537,251538,251539,251540,251541,251542,251543,251544,251545,251546,251547,251548,251549,251550,251551,251552,251553,251583,251584,251585,251586,251587,251588,251589,251590,251591,251592,251593,251594,251595,251596,251597,251818,251819,251820,251821,251822,251823,251824,251825,251826,251827,251828,251829,251830,251831,251832,251833,251834,251835,251836,251837,251838,251839,251840,251841,251842,251843,251844,251845,251846,251847,251848,251849,251850,251851,251852,251853,251854,251855,251862,251863,251864,251865,251866,251867,251868,251869,251870,251871,251872,251873,251874,251875,251876,251877,251878,251879,251880,251881,251882,251883,251884,251885,251886,251887,251888,251889,251890,251891,252525,252526,252527,252528,252529,252530,252531,252532,252587,252588,252589,252590,252591,252592,252593,252594,252595,252596,252597,252598,252599,252600,252601,252602,252603,252604,252605,252606,252607,252608,252641,252642,252643,252644,252645,252646,252647,252648,252649,252650,252651,252652,252653,252654,252874,252875,252876,252877,252878,252879,252880,252881,252882,252883,252884,252885,252886,252887,252888,252889,252890,252891,252892,252893,252894,252895,252896,252897,252898,252899,252900,252901,252902,252903,252904,252905,252906,252907,252908,252909,252910,252911,252912,252913,252914,252915,252916,252917,252918,252919,252920,252921,252922,252923,252924,252925,252926,252927,252928,252929,252930,252931,252932,252933,252934,252935,252936,252937,252938,252939,252940,252941,252942,252943,252944,252945,252946,252947,253581,253582,253583,253584,253585,253586,253643,253644,253645,253646,253647,253648,253649,253650,253651,253652,253653,253654,253655,253656,253657,253658,253659,253660,253661,253662,253663,253664,253699,253700,253701,253702,253703,253704,253705,253706,253707,253708,253709,253710,253711,253930,253931,253932,253933,253934,253935,253936,253937,253938,253939,253940,253941,253942,253943,253944,253945,253946,253947,253948,253949,253950,253951,253952,253953,253954,253955,253956,253957,253958,253959,253960,253961,253962,253963,253964,253965,253966,253967,253968,253969,253970,253971,253972,253973,253974,253975,253976,253977,253978,253979,253980,253981,253982,253983,253984,253985,253986,253987,253988,253989,253990,253991,253992,253993,253994,253995,253996,253997,253998,253999,254000,254001,254002,254003,254634,254635,254636,254637,254638,254639,254640,254641,254642,254668,254669,254670,254699,254700,254701,254702,254703,254704,254705,254706,254707,254708,254709,254710,254711,254712,254713,254714,254715,254716,254717,254718,254719,254720,254757,254758,254759,254760,254761,254762,254763,254764,254765,254766,254767,254768,254986,254987,254988,254989,254990,254991,254992,254993,254994,254995,254996,254997,254998,254999,255000,255001,255002,255003,255004,255005,255006,255007,255008,255009,255010,255011,255012,255013,255014,255015,255016,255017,255018,255019,255020,255021,255022,255023,255024,255025,255026,255027,255028,255029,255030,255031,255032,255033,255034,255035,255036,255037,255038,255039,255040,255041,255042,255043,255044,255045,255046,255047,255048,255049,255050,255051,255052,255053,255054,255055,255056,255057,255058,255059,255689,255690,255691,255692,255693,255694,255695,255696,255697,255698,255724,255725,255726,255727,255728,255729,255730,255731,255732,255733,255752,255753,255754,255755,255756,255757,255758,255759,255760,255761,255762,255763,255764,255765,255766,255767,255768,255769,255770,255771,255772,255773,255774,255775,255776,255777,255778,255779,255814,255815,255816,255817,255818,255819,255820,255821,255822,255823,255824,255825,256041,256042,256043,256044,256045,256046,256047,256048,256049,256050,256051,256052,256053,256054,256055,256056,256057,256058,256059,256060,256061,256062,256063,256064,256065,256066,256067,256068,256069,256070,256071,256072,256073,256074,256075,256076,256077,256078,256079,256080,256081,256082,256083,256084,256085,256086,256087,256088,256089,256090,256091,256092,256093,256094,256095,256096,256097,256098,256099,256100,256101,256102,256103,256104,256105,256106,256107,256108,256109,256110,256111,256112,256113,256114,256115,256744,256745,256746,256747,256748,256749,256750,256751,256752,256753,256776,256777,256778,256779,256780,256781,256782,256783,256784,256785,256786,256787,256788,256789,256808,256809,256810,256811,256812,256813,256814,256815,256816,256817,256818,256819,256820,256821,256822,256823,256824,256825,256826,256827,256828,256829,256830,256831,256832,256833,256834,256835,256870,256871,256872,256873,256874,256875,256876,256877,256878,256879,256880,257096,257097,257098,257099,257100,257101,257102,257103,257104,257105,257106,257107,257108,257109,257110,257111,257112,257113,257114,257115,257116,257117,257118,257119,257120,257121,257122,257123,257124,257125,257126,257127,257128,257129,257130,257131,257132,257133,257134,257135,257136,257137,257138,257139,257140,257141,257142,257143,257144,257145,257146,257147,257148,257149,257150,257151,257152,257153,257154,257155,257156,257157,257158,257159,257160,257161,257162,257163,257164,257165,257166,257167,257168,257169,257170,257171,257800,257801,257802,257803,257804,257805,257806,257807,257808,257809,257832,257833,257834,257835,257836,257837,257838,257839,257840,257841,257842,257843,257844,257864,257865,257866,257867,257868,257869,257870,257871,257872,257873,257874,257875,257876,257877,257878,257879,257880,257881,257882,257883,257884,257885,257886,257887,257888,257889,257890,257891,257926,257927,257928,257929,257930,257931,257932,257933,257934,257935,257936,258152,258153,258154,258155,258156,258157,258158,258159,258160,258161,258162,258163,258164,258165,258166,258167,258168,258169,258170,258171,258172,258173,258174,258175,258176,258177,258178,258179,258180,258181,258182,258183,258184,258188,258189,258190,258191,258192,258193,258194,258195,258196,258197,258198,258199,258200,258201,258202,258203,258204,258205,258206,258207,258208,258209,258210,258211,258212,258213,258214,258215,258216,258217,258218,258219,258220,258221,258222,258223,258224,258225,258226,258227,258228,258856,258857,258858,258859,258860,258861,258862,258863,258864,258865,258888,258889,258890,258891,258892,258893,258894,258895,258896,258897,258898,258899,258900,258921,258922,258923,258924,258925,258926,258927,258928,258929,258930,258931,258932,258933,258934,258935,258936,258937,258938,258939,258940,258941,258942,258943,258944,258945,258946,258984,258985,258986,258987,258988,258989,258990,258991,258992,259209,259210,259211,259212,259213,259214,259215,259216,259217,259218,259219,259220,259221,259222,259223,259224,259225,259226,259227,259228,259229,259230,259231,259232,259233,259234,259235,259236,259237,259238,259239,259245,259246,259251,259252,259253,259254,259255,259256,259257,259258,259259,259260,259261,259262,259263,259264,259265,259266,259267,259268,259269,259270,259271,259272,259273,259274,259275,259276,259277,259278,259279,259280,259281,259282,259283,259284,259285,259913,259914,259915,259916,259917,259918,259919,259920,259921,259922,259923,259924,259945,259946,259947,259948,259949,259950,259951,259952,259953,259954,259955,259956,259980,259984,259985,259991,259992,259993,259994,259995,259996,259997,259998,259999,260000,260001,260002,260040,260041,260042,260043,260044,260045,260046,260047,260048,260266,260267,260268,260269,260270,260274,260275,260276,260277,260281,260285,260286,260287,260288,260289,260290,260291,260292,260293,260294,260308,260309,260313,260314,260315,260316,260317,260318,260319,260320,260321,260322,260323,260328,260329,260330,260331,260332,260333,260334,260335,260336,260337,260338,260339,260340,260341,260970,260971,260972,260973,260974,260975,260976,260977,260978,260979,260980,261001,261002,261003,261004,261005,261006,261007,261008,261009,261010,261011,261012,261048,261049,261050,261055,261056,261057,261058,261096,261097,261098,261099,261100,261101,261102,261103,261104,261324,261325,261332,261342,261343,261344,261345,261346,261347,261348,261370,261371,261372,261373,261377,261385,261390,261391,261392,261393,261394,261395,261396,262026,262027,262028,262029,262030,262031,262032,262033,262034,262035,262036,262057,262058,262059,262060,262061,262062,262063,262064,262065,262066,262067,262068,262112,262113,262152,262153,262154,262155,262156,262157,262158,262159,262160,262399,262403,262447,262451,263082,263083,263084,263085,263086,263087,263088,263089,263090,263091,263114,263115,263116,263117,263118,263119,263120,263121,263122,263123,263124,263206,263207,263208,263209,263210,263211,263212,263213,263214,263215,263216,263217,264138,264139,264140,264141,264142,264143,264144,264145,264146,264147,264175,264176,264177,264178,264179,264262,264263,264264,264265,264266,264267,264268,264269,264270,264271,264272,264273,264274,265194,265195,265196,265197,265198,265199,265200,265201,265202,265231,265318,265319,265320,265321,265322,265323,265324,265325,265326,265327,265328,265329,266249,266250,266251,266252,266253,266254,266255,266256,266257,266375,266376,266377,266378,266379,266380,266381,266382,266383,266384,267304,267305,267306,267307,267308,267309,267310,267311,267312,267313,267431,267432,267433,267434,267435,267436,267437,267438,268361,268362,268363,268364,268365,268366,268367,268368,268369,268487,268488,268489,268490,268491,268492,268493,269419,269420,269421,269422,269423,269424,269425,269541,269542,269543,269544,269545,269546,269547,269548,269549,270476,270477,270478,270479,270480,270481,270482,270483,270484,270485,270486,270597,270598,270599,270600,270601,270602,270603,270604,270605,271532,271533,271534,271535,271536,271537,271538,271539,271540,271541,271542,271543,271633,271647,271648,271649,271650,271651,271652,271653,271654,271655,271656,271657,271658,271659,271660,271661,272588,272589,272590,272591,272592,272593,272594,272595,272596,272597,272598,272599,272600,272601,272687,272688,272689,272693,272694,272702,272703,272704,272705,272706,272707,272708,272709,272710,272711,272712,272713,272714,272715,272716,272717,273645,273646,273647,273648,273649,273650,273651,273652,273653,273654,273655,273656,273657,273743,273744,273745,273746,273747,273748,273749,273750,273758,273759,273760,273761,273762,273763,273764,273765,273766,273767,273768,273769,273770,273771,273772,273773,273774,274702,274703,274704,274705,274706,274707,274708,274709,274710,274711,274712,274729,274730,274744,274745,274753,274793,274794,274795,274796,274797,274798,274799,274800,274801,274802,274803,274804,274805,274806,274807,274808,274809,274810,274811,274812,274813,274814,274815,274816,274817,274818,274819,274820,274821,274822,274823,274824,274825,274826,274827,274828,274829,274830,274831,275760,275761,275762,275763,275764,275765,275766,275767,275768,275776,275777,275778,275785,275786,275787,275788,275789,275794,275795,275796,275797,275798,275799,275800,275801,275805,275806,275807,275808,275809,275849,275850,275851,275852,275853,275854,275855,275856,275857,275858,275859,275860,275861,275862,275863,275864,275865,275866,275867,275868,275869,275870,275871,275872,275873,275874,275875,275876,275877,275878,275879,275880,275881,275882,275883,275884,275885,275886,276817,276818,276819,276820,276821,276822,276823,276824,276825,276826,276827,276828,276829,276830,276831,276832,276833,276834,276835,276836,276837,276838,276839,276840,276841,276842,276843,276844,276845,276846,276847,276848,276849,276850,276851,276852,276853,276854,276855,276856,276857,276858,276859,276860,276861,276862,276863,276864,276865,276866,276884,276885,276886,276887,276888,276889,276905,276906,276907,276908,276909,276910,276911,276912,276913,276914,276915,276916,276917,276918,276919,276920,276921,276922,276923,276924,276925,276926,276927,276928,276929,276930,276931,276932,276933,276934,276935,276936,276937,276938,276939,276940,276941,277873,277874,277875,277876,277877,277878,277879,277880,277881,277882,277883,277884,277885,277886,277887,277888,277889,277890,277891,277892,277893,277894,277895,277896,277897,277898,277899,277900,277901,277902,277903,277904,277905,277906,277907,277908,277909,277910,277911,277912,277913,277914,277915,277916,277917,277918,277919,277920,277921,277922,277930,277931,277932,277933,277934,277935,277936,277940,277941,277942,277943,277944,277945,277946,277947,277948,277949,277950,277951,277952,277953,277961,277962,277963,277964,277965,277966,277967,277968,277969,277970,277971,277972,277973,277974,277975,277976,277977,277978,277979,277980,277981,277982,277983,277984,277985,277986,277987,277988,277989,277990,277991,277992,277993,277994,277995,278929,278930,278931,278932,278933,278934,278935,278936,278937,278938,278939,278940,278941,278942,278943,278944,278945,278946,278947,278948,278949,278950,278951,278952,278953,278954,278955,278956,278957,278958,278959,278960,278961,278962,278963,278964,278965,278966,278967,278968,278969,278970,278971,278972,278973,278974,278975,278976,278977,278978,278985,278986,278987,278988,278989,278990,278991,278992,278993,278994,278995,278996,278997,278998,278999,279000,279001,279002,279003,279004,279005,279006,279007,279008,279009,279017,279018,279019,279020,279021,279022,279023,279024,279025,279026,279027,279028,279029,279030,279031,279032,279033,279034,279035,279036,279037,279038,279039,279040,279041,279042,279043,279044,279045,279046,279047,279048,279049,279050,279985,279986,279987,279988,279989,279990,279991,279992,279993,279994,279995,279996,279997,279998,279999,280000,280001,280002,280003,280004,280005,280006,280007,280008,280009,280010,280011,280012,280013,280014,280015,280016,280017,280018,280019,280020,280021,280022,280023,280024,280025,280026,280027,280028,280029,280030,280031,280032,280033,280034,280041,280042,280043,280044,280045,280046,280047,280048,280049,280050,280051,280052,280053,280054,280055,280056,280057,280058,280059,280060,280061,280062,280063,280064,280065,280073,280074,280075,280076,280077,280078,280079,280080,280081,280082,280083,280084,280085,280086,280087,280088,280089,280090,280091,280092,280093,280094,280095,280096,280097,280098,280099,280100,280101,280102,280103,280104,280105,280106,281041,281042,281043,281044,281045,281046,281047,281048,281049,281050,281051,281052,281053,281054,281055,281056,281057,281058,281059,281060,281061,281062,281063,281064,281065,281066,281067,281068,281069,281070,281071,281072,281073,281074,281075,281076,281077,281078,281079,281080,281081,281082,281083,281084,281085,281086,281087,281088,281089,281090,281097,281098,281099,281100,281101,281102,281103,281104,281105,281106,281107,281108,281109,281110,281111,281112,281113,281114,281115,281116,281117,281118,281119,281120,281121,281122,281123,281124,281125,281126,281127,281128,281129,281130,281131,281132,281133,281134,281135,281136,281137,281138,281139,281140,281141,281142,281143,281144,281145,281146,281147,281148,281149,281150,281151,281152,281153,281154,281155,281156,281157,281158,281159,281160,281161,281162,282096,282097,282098,282099,282100,282101,282102,282103,282104,282105,282106,282107,282108,282109,282110,282111,282112,282113,282114,282115,282116,282117,282118,282119,282120,282121,282122,282123,282124,282125,282126,282127,282128,282129,282130,282131,282132,282133,282134,282135,282136,282137,282138,282139,282140,282141,282142,282143,282144,282145,282146,282153,282154,282155,282156,282157,282158,282159,282160,282161,282162,282163,282164,282165,282166,282167,282168,282169,282170,282171,282172,282173,282174,282175,282176,282177,282178,282179,282180,282181,282182,282183,282184,282185,282186,282187,282188,282189,282190,282191,282192,282193,282194,282195,282196,282197,282198,282199,282200,282201,282202,282203,282204,282205,282206,282207,282208,282209,282210,282211,282212,282213,282214,282215,282216,282217,283152,283153,283154,283155,283156,283157,283158,283159,283160,283161,283162,283163,283164,283165,283166,283167,283168,283169,283170,283171,283172,283173,283174,283175,283176,283177,283178,283179,283180,283181,283182,283183,283184,283185,283186,283187,283188,283189,283190,283191,283192,283193,283194,283195,283196,283197,283198,283199,283200,283201,283202,283203,283204,283205,283206,283207,283208,283209,283210,283211,283212,283213,283214,283215,283216,283217,283218,283219,283220,283221,283222,283223,283224,283225,283226,283227,283228,283229,283230,283231,283232,283233,283234,283235,283236,283237,283238,283239,283240,283241,283242,283243,283244,283245,283246,283247,283248,283249,283250,283251,283252,283253,283254,283255,283256,283257,283258,283259,283260,283261,283262,283263,283264,283265,283266,283267,283268,283269,283270,283271,283272,284209,284210,284211,284212,284213,284214,284215,284216,284217,284218,284219,284220,284221,284222,284223,284224,284225,284226,284227,284228,284229,284230,284231,284232,284233,284234,284235,284236,284237,284238,284239,284240,284241,284242,284243,284244,284245,284246,284247,284248,284249,284250,284251,284252,284253,284254,284255,284256,284257,284258,284259,284260,284261,284262,284263,284264,284265,284266,284267,284268,284269,284270,284271,284272,284273,284274,284275,284276,284277,284278,284279,284280,284281,284282,284283,284284,284285,284286,284287,284288,284289,284290,284291,284292,284293,284294,284295,284296,284297,284298,284299,284300,284301,284302,284303,284304,284305,284306,284307,284308,284309,284310,284311,284312,284313,284314,284315,284316,284317,284318,284319,284320,284321,284322,284323,284324,284325,284326,285266,285267,285268,285269,285270,285271,285272,285273,285274,285275,285276,285277,285278,285279,285280,285281,285282,285283,285284,285285,285286,285287,285288,285289,285290,285291,285292,285293,285294,285295,285296,285297,285298,285299,285300,285301,285302,285303,285304,285305,285306,285307,285308,285309,285310,285311,285312,285313,285314,285315,285316,285317,285318,285319,285320,285321,285322,285323,285324,285325,285326,285327,285328,285329,285330,285331,285332,285333,285334,285335,285336,285337,285338,285339,285340,285341,285342,285343,285344,285345,285346,285347,285348,285349,285350,285351,285352,285353,285354,285355,285356,285357,285358,285359,285360,285361,285362,285363,285364,285365,285366,285367,285368,285369,285374,285375,285376,285377,285378,285379,285380,285381,286322,286323,286324,286325,286326,286327,286328,286329,286330,286331,286332,286333,286334,286335,286336,286337,286338,286339,286340,286341,286342,286343,286344,286345,286346,286347,286348,286349,286350,286351,286352,286353,286354,286355,286356,286357,286358,286359,286360,286361,286362,286363,286364,286365,286366,286367,286368,286369,286370,286371,286372,286373,286374,286375,286376,286377,286378,286379,286380,286381,286382,286383,286384,286385,286386,286387,286388,286389,286390,286391,286392,286393,286394,286395,286396,286397,286398,286399,286400,286401,286402,286403,286404,286405,286406,286407,286408,286409,286410,286411,286412,286413,286414,286415,286416,286417,286418,286419,286420,286421,286422,286423,286424,286431,286432,286433,286434,286435,286436,286437,287378,287379,287380,287381,287382,287383,287384,287385,287386,287387,287388,287389,287390,287391,287392,287393,287394,287395,287396,287397,287398,287399,287400,287401,287402,287403,287404,287405,287406,287407,287408,287409,287410,287411,287412,287413,287414,287415,287416,287417,287418,287419,287420,287421,287422,287423,287424,287425,287426,287427,287428,287429,287430,287431,287432,287433,287434,287435,287436,287437,287438,287439,287440,287441,287442,287443,287444,287445,287446,287447,287448,287449,287450,287451,287452,287453,287454,287455,287456,287457,287458,287459,287460,287461,287462,287463,287464,287465,287466,287467,287468,287469,287470,287471,287472,287473,287474,287475,287476,287477,287478,287479,287480,287487,287488,287489,287490,287491,287492,287493,288434,288435,288436,288437,288438,288439,288440,288441,288442,288443,288444,288445,288446,288447,288448,288449,288450,288451,288452,288453,288454,288455,288456,288457,288458,288459,288460,288461,288462,288463,288464,288465,288466,288467,288468,288469,288470,288471,288472,288473,288474,288475,288476,288477,288478,288479,288480,288481,288482,288483,288484,288485,288486,288487,288488,288489,288490,288491,288492,288493,288494,288495,288496,288497,288498,288499,288500,288501,288502,288503,288504,288505,288506,288507,288508,288509,288510,288511,288512,288513,288514,288515,288516,288517,288518,288519,288520,288521,288522,288523,288524,288525,288526,288527,288528,288529,288530,288531,288532,288533,288534,288535,288536,288544,288545,288546,288547,288548,289490,289491,289492,289493,289494,289495,289496,289497,289498,289499,289500,289501,289502,289503,289504,289505,289506,289507,289508,289509,289510,289511,289512,289513,289514,289515,289516,289517,289518,289519,289520,289521,289522,289523,289524,289525,289526,289527,289533,289534,289535,289536,289537,289538,289539,289540,289541,289542,289543,289544,289545,289546,289547,289548,289549,289550,289551,289552,289553,289554,289555,289556,289557,289558,289559,289560,289561,289562,289563,289564,289565,289566,289567,289568,289569,289570,289571,289572,289573,289574,289575,289576,289577,289578,289579,289580,289581,289582,289583,289584,289585,289586,289587,289588,289589,289590,289591,289592,289601,289602,289603,290545,290546,290547,290548,290549,290550,290551,290552,290553,290554,290555,290556,290557,290558,290559,290560,290561,290562,290563,290564,290565,290566,290567,290568,290569,290570,290571,290576,290577,290578,290579,290580,290581,290582,290590,290591,290592,290593,290594,290595,290596,290597,290598,290599,290600,290601,290602,290603,290604,290605,290606,290607,290608,290609,290610,290611,290612,290613,290614,290615,290616,290617,290618,290619,290620,290621,290622,290623,290624,290625,290626,290627,290628,290629,290630,290631,290632,290633,290634,290635,290636,290637,290638,290639,290640,290641,290642,290643,290644,290645,290646,290647,291600,291601,291602,291603,291604,291605,291606,291607,291608,291609,291610,291611,291612,291613,291614,291615,291616,291617,291618,291619,291620,291621,291622,291623,291624,291625,291626,291633,291634,291635,291636,291637,291646,291647,291648,291649,291650,291651,291652,291653,291654,291655,291656,291657,291658,291659,291660,291661,291666,291667,291668,291669,291670,291675,291676,291677,291681,291682,291683,291684,291685,291686,291687,291688,291689,291690,291691,291692,291693,291694,291695,291696,291697,291698,291699,291700,291701,291702,292656,292657,292658,292659,292660,292661,292662,292663,292664,292665,292666,292667,292668,292669,292670,292671,292672,292673,292674,292675,292676,292677,292678,292679,292680,292681,292682,292692,292702,292703,292704,292705,292706,292707,292708,292709,292710,292711,292712,292713,292714,292715,292716,292724,292725,292732,292742,292743,292744,292745,292746,292751,292752,292753,292754,292755,292756,292757,292758,293712,293713,293714,293715,293716,293717,293718,293719,293720,293721,293722,293723,293724,293725,293726,293727,293734,293735,293736,293737,293759,293760,293761,293762,293763,293764,293765,293766,293767,293768,293769,293770,293771,293772,293799,293800,293801,293808,293809,293810,293811,293812,293813,293814,294768,294769,294770,294771,294772,294773,294774,294775,294776,294777,294778,294779,294780,294781,294782,294791,294792,294816,294817,294818,294819,294820,294821,294822,294823,294824,294825,294826,294827,294828,294867,294868,294869,295825,295826,295827,295828,295829,295830,295831,295832,295833,295834,295835,295836,295872,295873,295874,295875,295876,295877,295878,295879,295880,295881,295882,295883,295924,296882,296883,296884,296885,296886,296890,296891,296928,296929,296930,296931,296932,296933,296934,296935,296936,296937,296938,297939,297940,297941,297985,297986,297987,297988,297989,299042,299043,299044,588372,589428,589429,590484,609391,609392,609393,609394,609395,609396,609397,609398,609399,610452,610453,610454,611509,637957,637958,639011,639012,639013,639014,640068,640069,642225,642226,642227,643282,661198,661199,671808,671809,671810,671814,671815,671816,672863,672864,672865,672866,672870,672871,672872,673919,673920,673921,673922,673926,673927,674976,674977,674978,674982,676033,676034,676035,676036,676037,676038,677089,677090,677091,677092,677093,677094,678146,678147,678148,678149,679203,679204,690336,690337,690338,690339,690340,690341,697521,697522,698576,698577,698578,698579,698580,698581,698588,698589,698590,698591,698592,698783,698784,698785,698786,698787,699631,699632,699633,699634,699635,699636,699637,699638,699643,699644,699645,699646,699647,699648,699649,700687,700688,700689,700690,700691,700692,700693,700694,700695,700696,700697,700698,700699,700700,700701,700702,700703,700704,700705,700706,700905,700906,700907,700908,700909,700910,701742,701743,701744,701745,701746,701747,701748,701749,701750,701751,701752,701753,701754,701755,701756,701757,701758,701759,701760,701761,701762,701963,701964,702787,702788,702793,702794,702795,702796,702797,702798,702799,702800,702801,702802,702803,702804,702805,702806,702807,702808,702809,702810,702811,702812,702817,702818,702819,703019,703020,703842,703843,703844,703845,703846,703847,703848,703849,703850,703851,703852,703853,703854,703855,703856,703857,703858,703859,703860,703861,703865,703866,703867,703873,703874,703875,703876,703877,703878,704075,704076,704897,704898,704899,704900,704901,704902,704903,704904,704905,704906,704907,704908,704909,704910,704911,704912,704913,704914,704915,704916,704917,704930,704931,704932,704933,704934,704935,705113,705952,705953,705954,705955,705956,705957,705958,705959,705960,705961,705962,705963,705964,705965,705966,705967,705968,705969,705970,705971,705972,705973,705987,705988,705989,705990,705991,705992,705993,705994,705995,706000,706001,706002,706003,706169,707008,707009,707010,707011,707012,707013,707014,707015,707016,707022,707023,707024,707025,707026,707027,707028,707029,707044,707045,707046,707047,707048,707049,707050,707051,707052,707053,707054,707055,707056,707057,707058,707059,707060,707225,708064,708065,708066,708067,708068,708069,708079,708083,708084,708085,708086,708103,708104,708105,708106,708107,708108,708109,708110,708111,708112,708113,708114,708115,708116,708117,708118,708119,708120,708121,708302,708303,708304,708305,709121,709122,709123,709124,709140,709141,709142,709143,709160,709161,709162,709163,709164,709165,709166,709167,709168,709169,709170,709171,709172,709173,709174,709175,709176,709177,709178,709179,709180,709330,709331,709332,709333,709358,709359,709360,709361,710177,710178,710179,710180,710196,710197,710198,710199,710220,710221,710222,710223,710229,710230,710231,710232,710233,710234,710235,710236,710237,710386,710387,710388,710389,711233,711234,711235,711236,711252,711253,711254,711255,711286,711287,711288,711289,711290,711291,711292,711293,711294,711442,711443,711444,711445,712289,712290,712291,712292,712309,712310,712311,712347,712348,712349,712350,712498,712499,712500,712501,713345,713346,713347,713348,713365,713366,713367,713368,713403,713404,713405,713406,714400,714401,714402,714403,714404,714405,714459,714460,714461,714623,714624,714630,715455,715456,715457,715458,715459,715460,715461,715462,715515,715516,715517,715679,715680,715686,715687,715688,716512,716513,716514,716515,716516,716517,716518,716533,716534,716535,716536,716537,716571,716572,716573,716735,716736,716742,716743,716744,717568,717569,717570,717571,717572,717573,717574,717589,717590,717591,717592,717593,717626,717627,717628,717629,717791,717792,717799,717800,718624,718625,718626,718627,718628,718629,718630,718631,718644,718645,718646,718647,718648,718681,718682,718683,718684,718685,718847,719680,719681,719682,719683,719684,719685,719686,719687,719688,719689,719690,719697,719698,719699,719700,719701,719702,719703,719736,719737,719738,719739,719740,719903,720736,720737,720738,720739,720740,720741,720742,720743,720744,720745,720746,720747,720748,720751,720752,720753,720754,720755,720756,720757,720758,720759,720792,720793,720794,720795,720960,720961,721792,721793,721794,721795,721796,721797,721798,721799,721800,721801,721802,721803,721804,721807,721808,721809,721810,721811,721812,721813,721814,721847,721848,721849,721850,721851,722847,722848,722849,722850,722851,722852,722853,722854,722855,722856,722857,722858,722859,722860,722863,722864,722865,722866,722867,722868,722869,722898,722899,722900,722901,722902,722903,722904,722905,722906,722907,723902,723903,723904,723905,723906,723907,723908,723909,723910,723911,723912,723913,723914,723915,723916,723919,723920,723921,723922,723923,723924,723953,723954,723955,723956,723957,723958,723959,723960,723961,723962,724959,724960,724961,724962,724963,724964,724965,724970,724971,724972,724975,724976,725008,725009,725010,725011,725012,725013,725014,725015,725016,725017,725174,725175,726015,726016,726017,726018,726019,726020,726021,726027,726064,726065,726066,726067,726068,726069,726070,726230,726231,726234,727071,727072,727073,727074,727075,727076,727077,727110,727111,727112,727119,727120,727121,727122,727123,727124,727125,727287,727288,727289,727290,728128,728129,728130,728131,728132,728133,728165,728166,728167,728168,728169,728170,728173,728174,728175,728176,728177,728178,728179,728180,728181,728344,728345,728346,729185,729186,729187,729188,729189,729220,729221,729222,729223,729224,729225,729226,729229,729230,729231,729232,729233,729234,729235,729236,729237,729402,730242,730243,730244,730245,730275,730276,730277,730278,730279,730280,730281,730282,730285,730286,730287,730288,730289,730290,730291,730292,730293,731298,731299,731300,731301,731330,731331,731332,731333,731334,731335,731336,731337,731338,731341,731342,731343,731344,731345,731346,731347,731348,731349,731350,732354,732355,732356,732357,732358,732386,732387,732388,732389,732390,732391,732392,732399,732400,732401,732402,732403,732404,732405,732406,732407,732408,732409,733410,733411,733412,733413,733414,733415,733441,733442,733443,733444,733445,733446,733447,733456,733457,733458,733459,733460,733461,733462,733463,733464,733465,733466,734465,734466,734467,734468,734469,734470,734471,734496,734497,734498,734499,734500,734515,734516,734517,734518,734519,734520,734521,734522,734523,735520,735521,735522,735523,735524,735525,735526,735552,735553,735554,735555,735572,735573,735574,735575,735576,735577,735578,735579,736576,736577,736578,736579,736580,736581,736608,736609,736610,736611,736628,736629,736630,736631,736632,736633,736634,736635,737632,737633,737634,737635,737636,737663,737664,737665,737666,737684,737685,737686,737687,737688,737689,737690,738688,738689,738690,738691,738692,738719,738720,738721,738740,738741,738742,738743,738744,738745,739744,739745,739746,739747,739748,739795,739796,739797,739798,739799,740800,740801,740802,740803,740804,740850,740851,740852,740853,740854,741855,741856,741857,741858,741859,741860,741876,741877,741878,741879,741886,741887,741888,741889,741906,741907,741908,741909,741910,742910,742911,742912,742913,742914,742915,742916,742917,742922,742923,742924,742925,742930,742931,742932,742933,742934,742935,742936,742942,742943,742944,742945,742962,742963,742964,742965,742966,743966,743967,743968,743969,743970,743971,743972,743973,743974,743975,743976,743977,743978,743979,743980,743981,743982,743983,743984,743985,743986,743987,743988,743989,743990,743991,743992,743993,743998,743999,744000,744001,744002,744017,744018,744019,744020,744021,744022,745022,745023,745024,745025,745026,745027,745028,745029,745030,745031,745032,745033,745034,745035,745036,745037,745038,745039,745040,745041,745042,745043,745044,745045,745046,745047,745048,745049,745050,745051,745052,745053,745054,745055,745056,745057,745058,745059,745072,745073,745074,745075,745076,745077,745078,746078,746079,746080,746081,746082,746083,746084,746085,746086,746087,746088,746089,746090,746091,746092,746093,746094,746095,746096,746097,746098,746099,746100,746101,746102,746103,746104,746105,746106,746107,746108,746109,746110,746111,746112,746113,746114,746115,746116,746125,746126,746127,746128,746129,746130,746131,746132,746133,747135,747136,747137,747138,747139,747140,747141,747142,747143,747144,747148,747149,747150,747151,747152,747153,747154,747155,747156,747157,747158,747159,747160,747161,747162,747163,747164,747165,747166,747167,747168,747169,747170,747171,747172,747173,747174,747175,747180,747181,747182,747183,747184,747185,747186,747187,747188,748192,748193,748194,748195,748196,748197,748205,748206,748207,748208,748213,748214,748215,748216,748217,748218,748219,748220,748221,748222,748223,748224,748225,748226,748227,748228,748229,748230,748231,748232,748233,748234,748235,748236,748237,748238,748239,748240,748241,748242,749249,749250,749251,749252,749272,749273,749274,749275,749276,749277,749278,749279,749280,749281,749282,749283,749284,749285,749286,749287,749288,749289,749290,749291,749292,749293,749297,750329,750330,750331,750332,750333,750334,750335,750336,750337,750338,750339,750340,750341,750342,750343,750344,750345,750346,750347,750348,751385,751386,751387,751388,751389,751390,751391,751392,751393,751394,751395,751396,751397,751398,751399,751400,751401,751402,751403,751404,752441,752442,752443,752444,752445,752446,752447,752448,752453,752454,752455,752456,752457,752458,752459,752460,753498,753499,753500,753501,753502,753510,753511,753512,753513,753514,753515,754555,754556,754557,754567,754568,754569,754570,3776,3777,3778,3779,3780,3781,3782,3783,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4832,4833,4834,4835,4836,4837,4838,4839,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5888,5889,5894,5895,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6912,6913,6921,6922,6944,6945,6950,6951,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7968,7969,7977,7978,8000,8001,8006,8007,8454,8455,8888,8889,8898,8899,8916,8917,8926,8927,9024,9025,9033,9034,9056,9057,9058,9059,9061,9062,9063,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9510,9511,9944,9945,9954,9955,9972,9973,9982,9983,10080,10081,10089,10090,10112,10113,10114,10115,10116,10117,10118,10119,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,11000,11001,11011,11028,11038,11039,11136,11137,11138,11139,11140,11142,11143,11144,11145,11146,11232,11233,11246,11247,12056,12057,12066,12067,12084,12085,12094,12095,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12288,12289,12302,12303,12756,12757,13112,13113,13114,13115,13116,13117,13118,13120,13121,13122,13123,13140,13141,13142,13143,13144,13146,13147,13148,13149,13150,13151,13344,13345,13358,13359,13812,13813,13836,13837,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14400,14401,14414,14415,14892,14893,15456,15457,15470,15471,16512,16513,16526,16527,17568,17569,17582,17583,18084,18085,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,18624,18625,18638,18639,19065,19066,19140,19141,19357,19381,19680,19681,19682,19683,19684,19685,19686,19687,19689,19690,19691,19692,19693,19694,19695,20121,20122,20413,20437,20736,20737,20738,20739,20740,20741,20742,20743,20744,20745,20746,20747,20748,20749,20750,20751,21213,21214,21469,21493,22269,22270,22525,22549,22574,22575,22576,22577,22578,22579,22580,22581,22582,22583,22584,22585,22586,22587,22588,22589,23581,23605,23630,23631,23632,23633,23634,23635,23636,23637,23638,23639,23640,23641,23642,23643,23644,23645,24637,24661,24686,24687,24700,24701,25483,25484,25693,25717,25742,25743,25756,25757,26539,26540,26749,26773,26798,26799,26812,26813,27518,27519,27805,27829,27854,27855,27868,27869,28558,28559,28574,28575,28861,28885,28910,28911,28924,28925,29614,29615,29682,29683,29917,29941,29966,29967,29980,29981,30631,30632,30725,30726,30738,30739,30973,30997,31022,31023,31036,31037,31687,31688,31781,31782,32029,32053,32078,32079,32092,32093,32864,32865,33085,33109,33134,33135,33136,33137,33138,33139,33140,33141,33143,33144,33145,33146,33147,33148,33149,33920,33921,34141,34142,34143,34144,34145,34146,34147,34148,34149,34150,34151,34152,34154,34155,34156,34157,34158,34159,34160,34161,34162,34163,34164,34165,34190,34191,34192,34193,34194,34195,34196,34197,34198,34199,34200,34201,34202,34203,34204,34205,35208,35209,35210,36994,36995,38050,38051,40170,40171,41226,41227,45413,45414,46469,46470,47545,47546,48601,48602,51130,51131,51132,51133,51134,51135,51136,51137,51138,51139,51140,51141,51142,51143,51144,51145,51146,51147,51148,51149,51150,51151,51152,51153,51154,51155,51156,51157,51158,51159,51160,51161,51162,51163,51164,51165,51166,51834,51835,52186,52187,52188,52189,52190,52191,52192,52193,52194,52195,52196,52197,52198,52199,52200,52201,52202,52203,52204,52205,52206,52207,52208,52209,52210,52211,52212,52213,52214,52215,52216,52217,52218,52219,52220,52221,52222,52890,52891,53242,53243,53277,53278,53876,53877,54298,54299,54333,54334,54932,54933,55354,55355,55389,55390,55977,55978,56316,56317,56318,56319,56320,56321,56322,56323,56324,56325,56326,56327,56328,56329,56330,56331,56332,56333,56334,56335,56410,56411,56445,56446,57033,57034,57372,57373,57374,57375,57376,57377,57378,57379,57380,57381,57382,57383,57384,57385,57386,57387,57388,57389,57390,57391,57466,57467,57501,57502,58428,58429,58446,58447,58522,58523,58557,58558,59484,59485,59503,59526,59527,59528,59529,59530,59531,59532,59533,59534,59535,59536,59537,59538,59539,59540,59541,59542,59543,59544,59545,59546,59547,59578,59579,59613,59614,60225,60226,60314,60315,60540,60541,60558,60559,60582,60583,60584,60585,60586,60587,60588,60589,60590,60591,60592,60593,60594,60595,60596,60597,60598,60599,60600,60601,60602,60603,60634,60635,60669,60670,61281,61282,61370,61371,61596,61597,61614,61615,61638,61639,61658,61659,61690,61691,61725,61726,62652,62653,62670,62671,62694,62714,62715,62746,62747,62781,62782,63708,63709,63726,63727,63750,63751,63770,63771,63802,63803,63837,63838,64458,64459,64764,64765,64782,64783,64806,64807,64826,64827,64858,64859,64893,64894,65514,65515,65820,65821,65838,65839,65862,65863,65882,65883,65914,65915,65949,65950,66588,66589,66876,66877,66894,66895,66918,66919,66938,66939,66970,66971,67005,67006,67644,67645,67932,67933,67950,67951,67974,67975,67994,67995,68026,68027,68028,68029,68030,68031,68032,68033,68034,68035,68036,68037,68038,68039,68040,68041,68042,68043,68045,68046,68047,68048,68049,68050,68051,68052,68053,68054,68055,68056,68057,68058,68059,68060,68061,68062,68771,68772,68988,68989,68990,68991,68992,68993,68994,68995,68996,68997,68999,69000,69001,69002,69003,69004,69005,69006,69007,69030,69031,69050,69051,69082,69083,69084,69085,69086,69087,69088,69089,69090,69091,69092,69093,69094,69095,69096,69097,69098,69099,69100,69101,69102,69103,69104,69105,69106,69107,69108,69109,69110,69111,69112,69113,69114,69115,69116,69117,69118,69778,69779,69827,69828,70044,70045,70046,70047,70048,70049,70050,70051,70052,70053,70054,70055,70056,70057,70058,70059,70060,70061,70062,70063,70086,70087,70088,70089,70090,70091,70092,70093,70094,70095,70096,70098,70099,70100,70101,70102,70103,70104,70105,70106,70107,70834,70835,71142,71143,71144,71145,71146,71147,71148,71149,71150,71151,71152,71153,71154,71155,71156,71157,71158,71159,71160,71161,71162,71163,73975,73976,75031,75032,78158,78159,79214,79215,85603,85604,86659,86660,91994,91995,93050,93051,94093,94094,95088,95089,95149,95150,96144,96145,96177,96178,97233,97234,99277,99278,100333,100334,103523,103524,104579,104580,105673,105674,106729,106730,113091,113092,114147,114148,117306,117307,118362,118363,154667,154668,155723,155724,160958,160959,162014,162015,167350,167351,168406,168407,170467,170468,170551,170552,170582,170583,171523,171524,171607,171608,171638,171639,176845,176846,177901,177902,186294,186295,187350,187351,188532,188533,189588,189589,194760,194761,195816,195817,200117,200118,201173,201174,205339,205340,206395,206396,206427,206428,207483,207484,210579,210580,211635,211636,223237,223238,224293,224294,241248,241249,242304,242305,246507,246508,247563,247564,478969,478970,478971,478972,478973,478974,478975,478976,478977,478978,478979,478980,478981,480025,480037,481081,481093,482137,482149,483193,483205,484249,484250,484251,484252,484253,484255,484256,484257,484258,484259,484260,484261,485309,485310,485311,511705,511706,511707,511708,511709,511710,511711,511712,511713,511714,512761,512770,513817,513826,514873,514882,515929,515938,516985,516986,516987,516988,516989,516991,516992,516993,516994,518045,518046,518047,524415,524416,524417,524418,524419,524420,524421,524422,524423,524424,524425,524426,525471,525472,525473,525474,525475,525476,525477,525478,525479,525480,525481,525482,526522,526523,526524,526525,526526,526527,526528,526537,526538,526539,526540,526541,526542,526543,526544,526545,526546,526568,526569,526570,526571,526572,526573,526574,526575,526576,526577,526578,526579,526580,526581,526582,526583,526584,526585,526586,526587,526588,526589,526590,526591,526592,526593,526594,526595,526596,526597,526598,526599,526600,526601,527578,527579,527580,527581,527582,527583,527584,527593,527594,527595,527596,527597,527598,527599,527600,527601,527602,527624,527625,527626,527627,527628,527629,527630,527631,527632,527633,527634,527635,527636,527637,527638,527639,527640,527641,527642,527643,527644,527645,527646,527647,527648,527649,527650,527651,527652,527653,527654,527655,527656,527657,528632,528633,528634,528635,528657,528658,528680,528681,528712,528713,529688,529689,529690,529691,529713,529714,529736,529737,529768,529769,530744,530745,530769,530770,530792,530825,531800,531801,531825,531826,531848,531849,531880,531881,532856,532857,532879,532880,532881,532882,532904,532905,532936,532937,533912,533913,533935,533936,533937,533938,533960,533961,533962,533963,533964,533965,533966,533967,533968,533969,533970,533971,533972,533973,533974,533975,533976,533977,533978,533979,533980,533981,533982,533983,533984,533985,533986,533987,533988,533989,533990,533991,533992,533993,534968,534969,534976,534977,534978,534979,534980,534991,534992,535016,535017,535018,535019,535020,535021,535022,535023,535024,535025,535026,535027,535028,535029,535030,535031,535032,535033,535034,535035,535036,535037,535038,535039,535040,535041,535042,535043,535044,535045,535046,535047,535048,535049,535992,535993,535994,535995,535996,535997,535998,535999,536000,536001,536002,536003,536004,536024,536025,536032,536033,536034,536035,536036,536037,536038,536039,536040,536047,536048,537048,537049,537050,537051,537052,537053,537054,537055,537056,537057,537058,537059,537060,537080,537081,537082,537083,537084,537086,537087,537088,537089,537091,537092,537093,537094,537095,537096,537103,537104,538102,538103,538104,538105,538115,538116,538117,538118,538136,538137,538138,538139,538140,538141,538142,538143,538144,538145,538151,538152,538159,538160,539158,539159,539160,539161,539171,539172,539173,539174,539207,539208,539215,539216,540214,540215,540229,540230,540263,540264,540265,540266,540267,540269,540270,540271,540272,541270,541271,541285,541286,541319,541320,541321,541322,541323,541324,541325,541326,541327,541328,542326,542327,542341,542342,543382,543383,543397,543398,544438,544439,544440,544441,544442,544443,544449,544450,544451,544452,544453,544454,545494,545495,545496,545497,545498,545499,545505,545506,545507,545508,545509,545510,546554,546555,546556,546557,546559,546560,546561,546562,547610,547611,547612,547613,547614,547615,547616,547617,547618,603993,603994,603996,605049,605050,605052,609272,609273,609274,609275,609276,609277,610328,610329,610330,610331,610332,610333,611384,611385,611386,611387,611388,611389,612440,612441,612442,612443,612444,612445,613496,613497,613498,613499,613500,613501,616664,616665,616666,616667,616668,616669,617720,617721,617722,617723,617724,617725,619810,619811,619812,619813,619814,619815,619819,619820,619821,619822,619823,619824,619825,619826,619827,619828,620866,620867,620868,620869,620870,620871,620875,620876,620877,620878,620879,620880,620881,620882,620883,620884,621952,621953,621954,621955,621956,621957,623008,623009,623010,623011,623012,623013,625111,625112,625113,625114,625115,625116,626130,626131,626132,626133,626134,626135,626136,626137,626138,626139,626140,626141,626142,626167,626168,626169,626170,626171,626172,626173,627186,627187,627188,627189,627190,627191,627192,627193,627194,627195,627196,627197,627198,627224,627225,627226,627227,627228,627229,627246,627247,627248,627249,627250,627251,627252,628267,628268,628269,628270,628271,628280,628281,628282,628283,628284,628285,628300,628301,628302,628303,628304,628305,628306,628307,628308,629323,629324,629325,629326,629327,629328,629329,629330,629331,629336,629337,629338,629339,629340,629341,629348,629349,629350,629351,629352,629353,629354,629355,629356,629357,629365,630384,630385,630386,630387,630388,630392,630393,630394,630395,630396,630397,630402,630403,630404,630405,630406,630407,630408,630409,630410,630411,630421,630422,630423,630424,630425,630426,630427,631444,631445,631448,631449,631450,631451,631452,631453,631456,631457,631458,631459,631478,631479,631480,631481,631482,631483,632465,632466,632467,632468,632469,632470,632471,632472,632473,632479,632480,632481,632482,632483,632484,632485,632486,632487,632501,632512,632513,633521,633522,633523,633524,633525,633526,633527,633528,633529,633535,633536,633537,633538,633539,633540,633541,633542,633543,633544,633546,633561,633562,633563,633564,633565,633566,633567,634577,634578,634579,634580,634581,634582,634583,634584,634585,634617,634618,634619,634620,634621,634622,634623,635633,635634,635635,635636,635637,635638,635639,635640,635641,636508,636509,636510,636511,636512,636513,636514,636515,636516,636517,636518,636519,636520,636521,636522,636523,636524,636525,636526,636527,637564,637565,637566,637567,637568,637569,637570,637571,637572,637573,637574,637575,637576,637577,637578,637579,637580,637581,637582,637583,637603,637604,637605,637606,637607,637608,637609,637610,637611,637612,637613,637620,637621,637622,637623,637624,637625,637626,637627,637734,637735,637736,637737,637738,637739,637740,637741,637742,637744,637745,637746,638612,638613,638614,638615,638616,638617,638618,638619,638620,638621,638638,638639,638659,638660,638661,638662,638663,638664,638665,638666,638667,638668,638669,638676,638677,638678,638679,638680,638681,638682,638683,638803,639668,639669,639670,639671,639672,639673,639674,639675,639676,639677,639679,639680,639694,639695,639715,639716,639717,639718,639724,639725,639732,639733,639738,639739,639860,639871,639889,639896,639897,640722,640723,640724,640725,640735,640736,640750,640751,640771,640772,640773,640774,640780,640781,640788,640789,640794,640795,640917,640927,640944,640946,640949,640951,640954,640956,640957,640960,640961,640962,640963,640964,640973,640974,641778,641779,641780,641781,641806,641807,641827,641828,641834,641835,641836,641837,641840,641841,641842,641843,641844,641845,641851,641974,641999,642003,642004,642006,642011,642014,642015,642016,642017,642018,642019,642021,642022,642023,642024,642027,642028,642029,642030,642033,642034,642834,642835,642862,642863,642883,642884,642890,642891,642892,642893,642896,642897,642898,642899,642900,642901,642906,642907,643019,643020,643021,643022,643023,643024,643031,643032,643033,643034,643040,643041,643042,643043,643044,643045,643046,643047,643048,643049,643050,643072,643073,643074,643075,643078,643079,643080,643081,643082,643083,643084,643088,643890,643891,643918,643919,643939,643940,643941,643942,643946,643947,643952,643953,643956,643957,643962,643963,644072,644073,644074,644075,644076,644077,644078,644079,644080,644096,644097,644098,644099,644100,644101,644102,644103,644104,644105,644106,644137,644138,644143,644946,644947,644962,644963,644964,644965,644966,644967,644968,644969,644974,644975,644995,644996,644997,644998,645002,645003,645008,645009,645012,645013,645016,645017,645018,645019,645128,645129,645130,645131,645132,645133,645134,645135,645204,645205,645206,645207,646002,646003,646018,646019,646020,646021,646022,646023,646024,646025,646030,646031,646053,646054,646058,646059,646060,646061,646062,646063,646064,646065,646072,646073,646074,646075,646184,646185,646186,646187,646188,646189,646190,646191,646195,646196,646197,646198,646224,646225,646226,646227,646228,646229,646230,646231,646257,646258,646259,646260,646261,646262,646263,647058,647059,647060,647061,647062,647063,647070,647071,647074,647075,647080,647081,647086,647087,647109,647110,647114,647115,647116,647117,647119,647120,647121,647124,647125,647126,647127,647128,647129,647240,647241,647242,647243,647244,647245,647246,647247,647251,647252,647253,647254,647280,647281,647282,647283,647284,647285,647286,647287,647313,647314,647315,647316,647317,647318,647319,648114,648115,648116,648117,648118,648119,648126,648127,648130,648131,648136,648137,648139,648140,648142,648143,648165,648166,648180,648181,648182,648183,648184,648185,648189,648190,648191,648192,648193,648194,648195,648296,648297,648298,648299,648300,648301,648302,648303,648304,648305,648306,648307,648308,648309,648310,648311,648312,648324,648325,648326,648327,648328,648329,648330,648331,648332,648333,648334,648336,648337,648338,648339,648340,648341,648342,648343,648369,648370,648371,648372,648373,648374,648375,649174,649175,649186,649187,649188,649189,649192,649193,649195,649196,649198,649199,649221,649222,649236,649237,649245,649246,649247,649249,649250,649251,649352,649353,649354,649355,649356,649357,649358,649359,649360,649361,649362,649363,649364,649365,649366,649367,649368,649380,649381,649382,649383,649384,649385,649386,649387,649388,649389,649390,649392,649393,649394,649395,649396,649397,649398,649399,649428,649429,649430,649431,650230,650231,650242,650243,650244,650245,650248,650249,650254,650255,650277,650278,650279,650280,650283,650284,650285,650287,650288,650289,650292,650293,650294,650295,650296,650299,650300,650301,650302,650306,650307,650416,650417,650418,650419,650420,650421,650422,650423,650424,650436,650437,650438,650439,650440,650441,650442,650443,650444,650445,650446,650478,650479,650480,651286,651287,651300,651301,651304,651305,651306,651307,651308,651309,651310,651311,651333,651334,651335,651336,651339,651340,651341,651342,651343,651344,651345,651348,651349,651350,651351,651352,651355,651356,651357,651358,651362,651363,651364,651365,651475,651476,651477,651478,651492,651493,651494,651495,651496,651497,651498,651499,651500,651532,651533,651534,651535,651536,652342,652343,652353,652354,652356,652357,652360,652361,652362,652363,652364,652365,652366,652367,652391,652392,652395,652396,652397,652398,652400,652401,652407,652408,652411,652412,652418,652419,652420,652421,652518,652519,652520,652521,652522,652523,652524,652525,652526,652527,652528,652548,652549,652550,652551,652552,652553,652554,652555,652556,652586,652587,652588,652589,653398,653399,653400,653401,653402,653403,653404,653409,653410,653412,653413,653447,653448,653451,653452,653453,653454,653456,653457,653463,653464,653467,653468,653476,653477,653574,653575,653576,653577,653578,653579,653580,653581,653582,653583,653584,653604,653605,653606,653607,653608,653609,653610,653611,653612,653613,653614,653615,653616,653617,653618,653619,653620,653621,653622,653623,653624,653625,653626,653627,653628,653629,653630,653631,653632,653633,653634,653635,653636,653637,653638,653639,653640,653641,653642,653643,653652,653653,653654,653655,653656,653657,654454,654455,654456,654457,654458,654459,654460,654468,654469,654503,654504,654507,654508,654509,654510,654512,654513,654514,654515,654516,654519,654520,654521,654522,654523,654524,654528,654529,654532,654533,654641,654642,654643,654644,654645,654646,654647,654648,654649,654650,654666,654667,654668,654696,654697,654708,654709,654710,654711,654712,654713,655515,655516,655522,655523,655524,655525,655559,655560,655563,655564,655565,655566,655568,655569,655570,655571,655572,655575,655576,655577,655578,655579,655580,655584,655585,655588,655589,655697,655698,655699,655700,655701,655702,655703,655704,655705,655706,656571,656572,656578,656579,656580,656581,656615,656616,656621,656622,656627,656628,656644,656645,656770,656771,656772,656773,656774,656775,657627,657628,657629,657630,657632,657633,657634,657635,657671,657672,657677,657678,657683,657684,657696,657697,657698,657699,657700,657701,657826,657827,657828,657829,657830,657831,657832,657833,657834,657835,657836,657839,657840,657841,657842,657843,657844,657845,657846,657847,657848,657849,657850,657851,657852,657853,657854,657855,657856,657857,657858,657859,657860,657861,658683,658684,658685,658686,658687,658688,658689,658690,658691,658727,658728,658729,658730,658732,658733,658734,658739,658740,658744,658745,658746,658747,658748,658749,658752,658753,658754,658755,658756,658757,658888,658889,658890,658891,658892,658895,658896,658897,658898,658899,658900,658901,658902,658903,658904,658905,658906,658907,658908,658909,658910,658911,658912,658913,658914,658915,658916,658917,658929,658930,658931,659783,659784,659785,659786,659787,659788,659789,659790,659791,659792,659793,659794,659795,659796,659800,659801,659802,659803,659804,659805,659808,659809,659985,659986,659987,660847,660848,660849,660850,660851,660852,660856,660857,660860,660861,660864,660865,661005,661006,661007,661008,661009,661010,661011,661012,661013,661014,661015,661016,661017,661018,661019,661020,661021,661022,661023,661024,661025,661026,661027,661028,661029,661030,661031,661903,661904,661913,661916,661920,661921,662061,662062,662063,662064,662065,662066,662067,662068,662069,662070,662071,662072,662073,662074,662075,662076,662077,662078,662079,662080,662081,662082,662083,662084,662085,662086,662087,662959,662966,662967,662968,662969,662972,662973,662976,662977,664015,664016,664022,664023,664024,664025,664026,664027,664028,664029,664032,664033,664034,664035,665071,665072,665073,665074,665075,665076,665077,665078,665079,665080,665081,665082,665083,665084,665085,665088,665089,665090,665091,665214,665215,665216,665217,665218,665219,665220,666127,666128,666129,666130,666131,666132,666133,666134,666135,666136,666137,666138,666139,666140,666141,666146,666147,667194,667195,667196,667197,667202,667203,668250,668259,668426,668427,668428,669306,669307,669314,669315,669482,669483,669484,669485,669486,669487,670362,670363,670364,670365,670366,670368,670369,670370,670371,670491,670492,670501,670502,670541,670542,670543,671377,671378,671379,671380,671381,671382,671383,671384,671385,671418,671419,671420,671421,671422,671423,671424,671425,671426,671427,671547,671548,671549,671550,671551,671556,671557,671558,672433,672434,672435,672436,672437,672438,672439,672440,672441,672605,672606,672607,672608,672609,672610,672611,672612,673489,673490,673496,673497,673664,673665,673666,673667,674545,674546,674553,675601,675602,675608,675609,676657,676658,676664,676665,676666,676667,676668,676669,676670,676671,677713,677714,677720,677721,677722,677723,677724,677725,677726,677727,678769,678770,678782,678783,679825,679826,679835,679836,679838,679839,680881,680882,680891,680892,680894,680895,680896,680897,680898,680899,680900,680901,680902,680903,680904,680905,680906,681937,681938,681950,681951,681952,681953,681954,681955,681956,681957,681958,681960,681961,681962,682993,682994,683017,683018,684049,684050,684073,684074,685105,685106,685129,685130,686161,686162,686185,686186,686209,686210,686211,686212,686213,686214,686215,686216,686217,686218,687217,687218,687241,687242,687265,687266,687267,687268,687269,687271,687272,687273,687274,688273,688274,688276,688277,688297,688298,688321,688322,688329,688330,689329,689330,689332,689333,689353,689354,689377,689378,689385,689386,689387,689388,689389,690385,690386,690409,690410,690433,690434,690441,690442,690443,690444,690445,690446,690447,690448,690449,690450,690451,690452,690453,690454,690455,690456,690457,690458,691441,691442,691465,691466,691489,691490,691500,691501,691502,691503,691504,691505,691506,691507,691508,691509,691510,691511,691512,691513,691514,692497,692498,692499,692500,692501,692502,692521,692522,692545,692546,692569,692570,693553,693554,693555,693556,693557,693558,693577,693578,693601,693602,693625,693626,694613,694614,694628,694629,694633,694634,694657,694658,694681,694682,695669,695670,695684,695685,695689,695690,695713,695714,695715,695716,695717,695737,695738,696725,696726,696745,696746,696769,696770,696771,696772,696773,696793,696794,697781,697782,697801,697802,697828,697829,697849,697850,698837,698838,698857,698858,698884,698885,698905,698906,699893,699894,699913,699914,699940,699941,699961,699962,700015,700016,700017,700018,700019,700020,700021,700022,700023,700024,700025,700026,700027,700028,700030,700031,700032,700033,700034,700035,700036,700037,700038,700039,700040,700041,700949,700950,700951,700952,700953,700954,700955,700956,700957,700958,700959,700960,700961,700962,700963,700964,700965,700966,700967,700968,700969,700970,700996,700997,701017,701018,701071,701072,701073,701074,701075,701076,701077,701078,701079,701080,701081,701082,701083,701084,701086,701087,701088,701089,701090,701091,701092,701093,701094,701095,701096,701097,702005,702006,702007,702008,702009,702010,702011,702012,702013,702014,702015,702016,702017,702018,702019,702020,702021,702022,702023,702024,702025,702026,702052,702053,702073,702074,702133,702134,702149,702150,703108,703109,703129,703130,703189,703190,703205,703206,704164,704165,704185,704186,704245,704246,704261,704262,705220,705221,705222,705223,705224,705225,705226,705227,705228,705229,705230,705231,705232,705233,705234,705235,705236,705237,705238,705239,705240,705241,705242,705301,705302,705316,705317,705318,706276,706277,706278,706279,706280,706281,706282,706283,706284,706285,706286,706287,706288,706289,706290,706291,706292,706293,706294,706295,706296,706297,706298,706356,706357,706358,706372,706373,706374,707412,707413,707414,707415,707428,707429,707430,708482,708483,708484,708485,709539,709540,713755,713756,713757,714811,714812,714813,714814,714815,715867,715868,715869,715870,715871,719023,719024,719025,719026,719027,719028,719029,719030,719031,719032,719033,719034,719035,719036,719037,719038,719039,719040,719041,719042,719043,719044,719045,719046,719047,719048,719049,719078,719079,719080,719081,719082,719083,719084,719085,719086,719087,719088,719089,719090,719091,719092,719093,719098,719099,719100,719101,719102,719103,719104,719105,719106,719107,720079,720080,720081,720082,720083,720084,720085,720086,720087,720088,720089,720090,720091,720092,720093,720094,720095,720096,720097,720098,720099,720100,720101,720102,720103,720104,720105,720134,720135,720136,720137,720138,720139,720140,720141,720142,720143,720144,720145,720146,720147,720148,720149,720154,720155,720156,720157,720158,720159,720160,720161,720162,720163,721135,721136,721138,721143,721147,721152,721156,721159,721161,726470,727526,728582,728583,728584,728597,728598,728601,728602,728603,728610,728611,729639,729640,729641,729651,729652,729653,729654,729657,729658,729659,729660,729661,729664,729665,729666,729667,730695,730696,730697,730698,730699,730705,730706,730707,730708,730716,730717,730719,730720,730721,730722,730723,731753,731754,731755,731756,731759,731761,731762,731775,731776,732169,732170,732811,732812,732813,732814,732815,733225,733226,733234,733235,733868,733869,733870,733879,733880,733881,733882,733883,733884,734290,734291,734932,734933,734934,734935,734936,734937,734938,734939,734940,734941,735987,735988,735989,735990,735991,735992,735993,735994,735995,735996,735997,737042,737043,737044,737045,737046,737047,737048,737049,737050,737051,737052,737053,738098,738099,738100,738101,738102,738103,738104,738105,738106,738107,738108,738109,738494,738495,739154,739155,739156,739157,739158,739159,739160,739161,739162,739163,739164,739550,739551,740212,740213,740214,740215,740216,740217,740218,740219,740220,743355,744402,744403,744404,744405,744406,744411,744412,744413,744424,744425,744445,744446,744447,744465,744467,744468,745458,745459,745460,745461,745462,745467,745468,745469,745470,745479,745480,745481,745485,745486,745496,745497,745498,745499,745500,745501,745502,745503,745521,745523,745524,746515,746517,746524,746525,746526,746527,746528,746529,746535,746536,746541,746542,746550,746551,746552,746553,746554,746555,746556,746557,746559,747582,747583,747584,747585,747597,747604,747605,747606,747607,747609,747621,748640,748641,748657,748658,748659,748660,748661,748662,748677,748678,748679,748685,748689,748692,749713,749714,749715,749733,749734,749735,749736,749737,749738,749739,749740,749741,749745,749748,750759,750760,750761,750762,750763,750764,750765,750766,750767,750768,750769,750771,750791,750792,750793,750794,750795,750796,750797,750801,750804,751810,751812,751813,751814,751815,751816,751817,751818,751819,751820,751821,751822,751823,751824,751851,752859,752860,752861,752862,752866,752868,752869,752870,752871,752873,752874,752875,752876,752878,752880,753915,753916,753917,753918,753926,754972,754973,755028,755029,755030,756078,756079,756080,756081,756082,756083,756084,756085,756086,757081,757082,757108,757109,757113,757132,757133,757134,757135,757136,757137,757138,757139,757140,757141,757142,758118,758119,758120,758121,758122,758123,758124,758125,758127,758128,758129,758130,758131,758132,758133,758134,758137,758138,758143,758144,758149,758164,758165,758166,758167,758168,758169,758172,758173,758174,758184,758185,758186,758187,758188,758189,758190,758191,758192,758193,758194,758195,758203,758204,758205,759173,759174,759175,759176,759177,759178,759179,759180,759181,759183,759184,759185,759186,759187,759188,759189,759190,759193,759199,759200,759201,759202,759204,759205,759221,759222,759223,759224,759225,759228,759229,759230,759240,759241,759242,759243,759244,759245,759259,759260,759261,760229,760231,760232,760236,760237,760241,760243,760244,760246,760256,760257,760258,760260,760261,760279,760284,760285,760286,760287,760288,760289,760290,760291,760292,760294,760295,760296,760297,760298,760299,760313,760314,760315,760316,760317,761285,761314,761316,761343,761344,761345,761346,761347,761348,761350,761351,761367,761369,761370,762360,762361,762362,762363,762364,762375,762376,762377,762378,762423,763416,763417,763418,763419,763420,763421,763422,763431,763432,763433,763434,763435,763436,763437,763438,763439,763453,763454,763455,763456,763457,763458,763459,764452,764457,764458,764459,764474,764476,764477,764478,764479,764491,764492,764493,764494,764495,764509,764510,764511,764512,764513,764514,764515,765508,765513,765514,765515,765533,765534,765535,765536,765537,765538,765552,765565,765566,765567,765568,765569,765570,766564,766591,766592,766593,766594,766599,766600,766601,766602,766608,766609,766610,766611,766612,766615,766616,766617,766621,766622,766624,766625,766626,766649,766650,766651,767649,767655,767656,767657,767658,767659,767660,767661,767665,767666,767667,767668,767669,767671,767672,767673,767703,767704,767705,767706,767707,768669,768670,768671,768672,768673,768674,768675,768676,768677,768678,768679,768680,768681,768682,768683,768684,768685,768686,768711,768712,768713,768715,768716,768717,768718,768719,768751,768759,768760,768761,768763,769725,769726,769727,769728,769729,769730,769731,769732,769733,769734,769735,769736,769737,769738,769739,769740,769741,769742,769771,769773,769774,769775,769807,769808,769816,770783,770789,770797,770831,770855,770856,770857,770858,770859,770860,770864,770870,771911,771912,771913,771914,771915,771916,771921,771926,772321,772322,772919,772922,772923,772928,772929,772930,772931,772932,772933,772934,772935,772936,772937,772938,772939,772940,772941,772942,772943,772944,772945,772946,772947,772948,772951,772952,772953,772954,772955,772956,772957,772958,772959,772960,772961,772962,772963,772964,772965,772966,772968,772970,772971,772972,772977,772978,772979,772980,772981,773377,773378,773975,773978,773979,773980,773981,773982,773983,773984,773985,773986,773987,773988,773989,773990,773991,773992,773993,773994,773995,773996,773997,773998,773999,774000,774001,774002,774003,774004,774007,774008,774009,774010,774011,774012,774013,774014,774015,774016,774017,774018,774019,774020,774021,774022,774033,774034,774035,774036,774037,775036,775037,775038,775039,775041,775043,775044,775045,775046,775049,775053,775056,775058,775059,775060,775063,775065,775066,775069,775070,775071,775073,775075,775077,775078,775090,776093,776095,778174,778175,778176,778177,778256,779230,779231,779232,779233,779312,779313,779314,779315,779321,779322,780289,780290,780295,780296,780297,780298,780334,780335,780336,780337,780353,780354,780361,780362,780363,780368,780369,780370,780371,780376,780377,780378,781346,781347,781348,781349,781350,781351,781352,781353,781354,781355,781356,781390,781391,781392,781393,781409,781410,781417,781418,781419,781425,781426,781432,781433,782402,782403,782404,782405,782406,782408,782409,782411,782412,782413,782443,782447,782449,782467,782472,782477,782478,782488,783459,783461,783467,783468,783469,783472,783473,783474,783475,783476,783494,783495,783498,783499,783506,783507,783508,783509,783510,783523,783525,783526,783528,783533,783534,784528,784529,784530,784531,784532,784533,784534,784535,784544,784550,784551,784552,784553,784554,784555,784562,784563,784564,784565,784566,784567,784581,784582,785585,785589,785590,785591,785592,785593,785594,785595,785598,785599,785600,785607,785608,785609,785619,785622,785623,785624,786646,786648,786649,786650,786651,786652,786653,786654,786655,786656,786664,786680,786687,786714,787704,787707,787708,787709,787710,787736,787743,787770,788151,788152,788765,788825,788826,789207,789208,789881,790929,790930,790931,790932,790936,790937,791948,791949,791950,791951,791952,791953,791954,791970,791971,791972,791973,791974,791984,791985,791986,791987,791988,791989,791990,791991,791992,792976,793004,793005,793006,793007,793008,793009,793010,793011,793012,793013,793014,793015,793016,793017,793018,793019,793020,793021,793022,793023,793024,793025,793026,793027,793028,793029,793030,793031,793032,793033,793034,793035,793036,793037,793038,793039,793040,793043,793045,793046,793047,793048,794031,794032,794061,794064,794066,794067,794068,794069,794070,794071,794072,794073,794074,794075,794076,794077,794078,794079,794080,794081,794082,794083,794087,794088,794089,794090,794091,794092,794093,794094,794095,794101,794102,795086,795087,795088,795115,795123,795126,795127,795128,795129,795132,795133,795134,795135,795136,795137,795143,795144,795145,795147,795148,795149,796141,796142,796143,796171,797180,797181,797196,797197,797205,797206,797207,797218,797219,797220,797221,797222,797223,797224,797225,797226,797227,798236,798237,798238,798239,798240,798247,798248,798249,798250,798251,798252,798253,798261,798262,798263,798264,798265,798272,798273,798274,798275,798276,798277,798278,798279,798280,798281,798282,799293,799294,799295,799296,799297,799298,799299,799300,799301,799302,799303,799304,799305,799306,799307,799318,799320,799321,799322,799323,799327,799328,799329,799330,799332,799334,799337,799338,799363,799364,799365,800351,800352,800353,800354,800355,800356,800357,800358,800360,800362,800376,800378,800379,800383,800384,800419,800420,800421,800438,801411,801414,801435,801439,801467,801476,801489,801490,801491,801492,801493,801494,802523,802524,802545,802546,802547,802548,802549,803547,803548,803549,803550,803580,803581,803601,803604,803605,804603,804604,804605,804606,804636,804637,804638,805660,805661,805693,805694,805695,805696,805697,805698,806751,806752,806753,806754,807807,807808,807809,1040,1043,2096,2099,3152,3155,42763,42764,42765,42766,43820,43821,698973,701077,701078,701093,701094,704260,705300,706359,707426,707427,712699,712700,712701,713758,713759,715926,715927,715928,715929,716982,716983,716984,716985,718038,718039,718040,718041,732823,732824,732825,732826,732827,732828,733876,733877,733878,733885,734931,735986,743410,762397,762398,762399,762400,762401,762402,762403,785631,785634,785635,785636,785637,785638,785639,785640,786688,786690,786691,786692,786693,786694,786695,786696,786697,787744,787745,787746,787747,787748,787749,787750,787751,787752,787753,788801,788802,788803,788804,788805,788806,788807,788808,788809,789858,789859,789860,789861,789862,789863,789864,1045,2104,2106,4216,4218,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,11657,12711,12712,20070,20071,20072,24297,24298,27464,27467,32742,32743,32744,43325,43326,43327,43328,43329,43330,45436,45437,45438,45439,45440,45441,76198,76199,86761,86762,86763,86764,86765,86766,86767,86768,86769,86770,90989,90990,90991,90992,90993,121595,121596,121597,122651,122652,123707,123708,123738,123739,123740,124763,124764,124797,124798,124799,124806,124807,125819,125820,125847,125848,125849,125856,125857,125858,126915,126916,126917,146933,146934,146935,146936,147989,147990,147991,147992,148136,148137,148138,149045,149046,149047,149048,151189,151302,151303,152244,152245,152246,152247,153299,153300,153301,153302,153303,153304,154358,154359,154360,155546,155547,155548,157655,157656,157657,158707,158708,158709,158710,159760,159761,159762,166013,166014,166015,166016,167068,167069,167070,167071,167072,167073,167074,167075,167076,167077,167078,167147,167148,167149,167150,168125,168126,168127,168128,168129,168130,168131,168132,168133,168134,168200,168201,168202,168382,169182,169183,169184,171277,171278,171366,171367,174451,174452,174453,174454,174455,174456,175506,175507,175512,175513,176562,176569,176570,177618,177619,177626,178674,178675,178676,178677,178681,178682,179731,179732,179733,179734,179735,179736,179737,179738,180789,180790,180792,180793,184985,184986,184987,184988,184989,186046,186047,186048,186097,186098,189267,189268,189269,189270,195585,195586,195614,195615,196638,196639,196640,197728,197729,197730,197731,197732,199845,215599,215600,215601,215602,215603,215604,216641,216642,216643,216644,216645,216646,216650,216651,216652,216653,216654,216655,216656,216657,216658,216659,216660,217063,217064,217065,217694,217695,217696,217697,217698,217702,217703,217704,217705,217706,217707,217710,217711,217716,218750,218751,218760,218761,218772,218773,218774,219172,219173,219174,219806,219807,219828,219829,219830,220860,220861,220862,220863,220885,220886,221267,221268,221269,221270,221271,221272,221273,221274,221275,221276,221277,221278,221279,221280,221281,221282,221283,221916,221917,221918,221941,221942,222323,222324,222325,222326,222327,222328,222329,222330,222331,222332,222333,222334,222335,222336,222337,222972,222997,224028,224051,224052,224053,225084,225107,225108,225109,226140,226141,226142,226163,226164,226165,226166,226167,227196,227197,227198,227220,227221,227222,227223,228254,228276,228277,228278,228279,229310,229311,229312,229313,229332,229333,230366,230367,230368,230369,230383,230384,230385,230386,230387,230388,230389,231424,231425,231432,231434,231439,231440,231441,231442,231443,231444,231445,232480,232481,232482,232483,232484,232485,232486,232487,232488,232490,232491,232492,232493,232494,232495,232496,232500,233537,233538,233539,233540,233541,233542,233543,233544,233546,233547,233548,233549,233550,233551,234599,234600,234602,608335,608336,608337,608338,608339,608340,608341,608342,608343,610447,610448,610449,610450,610451,636901,636902,637955,637956,641168,641169,641170,641171,641172,662253,662254,662255,662256,670753,670754,670758,670759,672851,673906,673907,673908,674963,674979,674980,674981,689281,689282,689283,689284,691391,691392,691393,691394,691395,691396,691397,691398,697727,697728,697729,697730,697731,699839,699840,699841,699842,699843,699850,699851,699852,699853,702994,702995,702996,702997,704050,704051,704052,704053,704054,708274,708275,708276,708277,708278,713554,713555,713556,713557,714631,714632,717801,719904,719905,724118,724119,725188,725189,725190,725191,725192,726232,726233,726244,726245,726246,726247,726248,726249,2108,3164,4220,18097,18098,19153,19154,20209,21265,22320,22321,23375,23376,23377,24431,24432,25487,26543,27598,27599,28653,28654,28655,29709,29710,30765,31821,32877,33933,34989,34990,36046,36047,37103,38159,39214,39215,40270,40271,41326,42382,43438,44488,44494,45544,45549,45550,46600,46601,46604,46605,46606,47656,47657,47658,47659,47660,47661,48713,48714,48715,48716,56105,57161,58216,58217,59271,59272,59273,60324,60325,60326,60327,60328,61379,61380,61381,61382,61383,62435,62436,63491,64547,64548,65604,65605,66661,66662,67718,68774,69830,70886,71941,71942,72996,72997,72998,74052,74053,75108,76163,76164,77218,77219,77220,78272,78273,78274,78275,79327,79328,79329,79330,80383,80384,81439,81440,82496,82497,83553,84609,85665,85666,86722,86723,87779,87780,88836,89892,90947,90948,91332,91333,91334,91335,91336,91337,91339,91340,91341,91342,91343,91344,91345,91346,91347,91348,92002,92003,92004,92382,92383,92384,92387,92388,92393,92394,92395,92404,92405,93058,93059,93437,93438,93440,93441,93442,93443,93461,93462,93463,94114,94492,94493,94519,94520,95169,95170,95548,95576,96224,96225,96226,96603,96604,97280,97281,97658,97659,98336,98714,99392,99393,100449,101505,102560,102561,102759,102760,102761,102762,102773,102774,102775,102776,102826,102827,102828,102829,103615,103616,103617,103814,103815,103816,103817,103818,103819,103820,103821,103822,103823,103826,103827,103828,103829,103830,103831,103832,103833,103834,103835,103846,103847,103848,103849,103850,103851,103852,103853,103854,103881,103882,103883,103884,103885,103886,103887,103888,103893,103894,103895,103896,103905,103906,103907,103908,104671,104672,104857,104858,104859,104860,104861,104862,104863,104864,104869,104870,104871,104874,104875,104876,104877,104878,104879,104880,104881,104882,104883,104884,104885,104888,104889,104890,104891,104892,104893,104894,104895,104896,104901,104902,104903,104904,104905,104906,104907,104908,104909,104910,104911,104916,104917,104918,104919,104920,104921,104924,104925,104926,104927,104936,104937,104938,104941,104942,104943,104944,104945,104948,104949,104950,104951,104952,104953,104958,104959,104960,104961,104962,104963,104964,104965,104966,104967,105727,105912,105913,105914,105915,105916,105917,105918,105919,105920,105921,105922,105923,105924,105925,105926,105935,105936,105937,105938,105947,105948,105949,105950,105951,105952,105953,105954,105955,105956,105957,105958,105966,105967,105968,105969,105970,105971,105972,105973,105974,105975,105976,105977,105978,105979,105980,105981,105982,105983,105984,105985,105986,105987,105988,105989,105990,105991,105992,105993,106000,106001,106002,106003,106004,106005,106008,106009,106010,106011,106012,106013,106014,106015,106016,106017,106020,106021,106022,106023,106024,106782,106783,106967,106968,106969,106976,106977,106978,106979,106980,106981,107008,107009,107010,107011,107012,107013,107023,107024,107025,107026,107027,107028,107033,107034,107035,107036,107039,107040,107041,107042,107043,107044,107045,107046,107047,107048,107057,107058,107059,107060,107065,107066,107067,107068,107069,107070,107079,107080,107081,107082,107083,107084,107837,107838,107839,108023,108024,108136,108137,108138,108139,108140,108893,108894,109079,109949,110135,110136,111192,111193,112249,113017,113018,113019,113020,113021,113022,113305,113348,113349,113350,113351,114072,114073,114074,114075,114077,114078,114079,114095,114361,114372,114373,114374,114375,114376,114377,114384,114385,114386,114387,114401,114402,114403,114404,114405,114406,114407,114408,115127,115128,115129,115134,115135,115145,115151,115160,115168,115416,115417,115425,115426,115427,115428,115429,115430,115431,115432,115433,115434,115437,115438,115439,115440,115441,115442,115443,115444,115456,115457,115458,115459,115460,115463,115464,115465,116174,116175,116176,116177,116180,116181,116182,116183,116184,116191,116201,116207,116216,116224,116472,116473,116480,116481,116482,116483,116484,116489,116490,116491,116492,116493,116494,116495,116496,116499,116500,116501,116512,116513,116520,116521,116522,117229,117230,117231,117232,117233,117234,117235,117236,117237,117238,117239,117247,117256,117257,117263,117264,117271,117272,117280,117281,117310,117311,117312,117313,117314,117315,117318,117528,117536,117537,117546,117547,117548,117549,117556,117557,117568,117577,117578,117579,118284,118285,118286,118289,118290,118291,118292,118303,118304,118311,118312,118313,118319,118320,118321,118324,118325,118326,118327,118328,118336,118337,118338,118341,118342,118343,118344,118365,118366,118367,118368,118369,118370,118371,118372,118373,118374,118423,118424,118425,118426,118584,118592,118613,118623,118624,118634,118635,118636,118637,118638,118639,118640,118641,118642,118643,118644,118649,118650,118651,118652,118653,118654,119340,119341,119359,119360,119361,119366,119367,119368,119376,119377,119378,119379,119380,119381,119382,119383,119393,119394,119395,119396,119397,119398,119399,119400,119401,119404,119405,119406,119407,119421,119422,119427,119428,119429,119430,119476,119477,119478,119479,119480,119481,119482,119483,119484,119485,119493,119640,119641,119647,119648,119669,119678,119679,119680,119691,119692,119693,119694,119695,119696,119697,119698,119699,119700,119701,119704,119705,119706,119707,119708,119709,119710,119711,120396,120416,120417,120418,120419,120420,120421,120422,120423,120433,120434,120435,120436,120450,120451,120452,120453,120456,120457,120458,120459,120460,120461,120462,120463,120464,120477,120532,120533,120534,120535,120538,120539,120540,120541,120542,120548,120549,120568,120569,120570,120571,120572,120573,120697,120702,120703,120704,120725,120726,120733,120734,120735,120756,120757,120758,120759,120760,120761,120766,120767,121473,121474,121475,121476,121477,121478,121513,121514,121515,121516,121519,121520,121521,121532,121533,121587,121588,121597,121598,121599,121602,121603,121604,121605,121623,121624,121625,121626,121627,121628,121629,121630,121631,121632,121635,121636,121637,121638,121758,121759,121781,121782,121783,121786,121787,121788,121789,121790,121813,121814,121815,121816,121823,122576,122577,122578,122587,122588,122589,122637,122642,122643,122644,122654,122655,122656,122657,122658,122659,122660,122670,122679,122680,122685,122686,122687,122688,122689,122690,122691,122692,122693,122694,122695,122703,122704,122705,122706,122808,122814,122838,122839,122840,122841,122842,122843,122844,122845,122879,122880,123633,123634,123635,123636,123637,123638,123639,123642,123643,123644,123693,123694,123695,123696,123697,123698,123699,123711,123712,123713,123714,123726,123727,123734,123735,123744,123745,123746,123747,123750,123751,123752,123754,123755,123756,123757,123758,123759,123760,123761,123762,123763,123895,123896,123897,123898,123935,123936,123937,124690,124691,124692,124693,124694,124695,124696,124697,124698,124699,124749,124750,124751,124752,124753,124754,124782,124783,124784,124789,124790,124791,124807,124808,124809,124810,124811,124812,124813,124814,124815,124818,124819,124830,124831,124992,124993,125751,125752,125753,125754,125839,125840,125841,125842,125843,125844,125845,125846,125864,125865,125866,125875,125876,125885,125886,125887,126049,126896,126897,126898,126899,126900,126901,126931,126932,126933,126938,126939,126940,126941,126942,127105,127106,127988,127989,127990,127991,127992,127993,127994,127995,127996,127997,128161,128162,128163,129045,129046,129047,129048,129049,129050,129218,129219,130275,131331,131332,132387,132388,132389,133320,133321,133444,133445,134375,134376,134501,135431,135557,136487,136613,136614,137543,137544,137669,137670,137671,138599,138600,138601,138726,138727,139656,139657,139783,139861,140713,140838,140839,140917,141768,141769,141893,141894,141973,141974,142823,142824,142949,143029,143030,143031,143033,143034,143035,143036,143879,144005,144078,144086,144087,144088,144089,144090,144091,144092,144093,144935,145061,145134,145143,145144,145145,145148,145149,145991,145992,146117,146190,146205,146230,146231,146232,146233,146247,147047,147048,147049,147173,147246,147261,147267,147268,147269,147270,147271,147283,147284,147285,147286,147287,147288,147289,147290,147295,147296,147297,147302,147303,148104,148105,148106,148229,148285,148286,148287,148288,148289,148290,148295,148300,148323,148324,148325,148326,148327,148328,148338,148339,148340,148341,148342,148345,148346,148347,148350,148351,148352,148353,148354,148355,148356,148357,148358,148359,149161,149162,149284,149285,149340,149341,149342,149343,149344,149345,149346,149347,149350,149351,149356,149357,149376,149383,149384,149385,149388,149389,149390,149393,149394,149395,149402,149403,149404,149405,149406,149407,149409,149410,149411,149412,149413,149414,150218,150339,150340,150396,150397,150402,150403,150404,150405,150406,150407,150412,150413,150432,150440,150441,150442,150443,150444,150445,150446,150447,150448,150449,150450,150459,150460,150461,150462,151274,151395,151451,151452,151459,151460,151461,151462,151469,151488,151497,151498,151499,151500,151502,151503,151504,151505,152330,152451,152452,152496,152501,152502,152503,152504,152506,152507,152508,152525,152544,153385,153386,153507,153508,153509,153552,153553,153556,153557,153558,153559,153560,153561,153562,153563,153580,153581,153599,153600,154440,154441,154564,154565,154566,154567,154568,154608,154609,154610,154611,154612,154613,154616,154617,154618,154635,154636,154654,154655,155496,155621,155622,155623,155624,155625,155665,155666,155667,155668,155691,155710,156552,156680,156681,156747,156748,156766,157607,157608,157737,157803,157804,157805,157822,157952,158663,158793,158860,158861,158878,159008,159009,159719,159849,159917,159933,159934,160064,160065,160066,160774,160775,160904,160905,160973,160988,160989,161121,161122,161830,161959,161960,162028,162029,162044,162178,162886,163013,163014,163015,163082,163083,163084,163100,163101,163942,164068,164069,164137,164138,164156,164157,164158,164281,164998,164999,165124,165193,165213,165214,165337,166054,166055,166056,166057,166180,166249,166270,166393,167111,167112,167113,167114,167235,167236,167305,167326,167327,168169,168170,168290,168291,168361,168382,168383,168384,169226,169346,169416,169417,169439,169440,170281,170282,170402,170471,170472,170496,171337,171458,171459,171527,171551,171552,172393,172514,172515,172516,172583,172584,172606,172607,173449,173450,173571,173572,173639,173640,173641,173646,173647,173648,173649,173662,174505,174506,174507,174628,174696,174697,174698,174701,174702,174703,174704,174705,174706,174718,174725,174726,174727,174728,174729,174730,175562,175563,175684,175753,175754,175755,175756,175757,175758,175761,175762,175763,175774,175775,175780,175781,175782,175783,175784,175785,175786,175787,176619,176740,176810,176811,176812,176813,176818,176819,176830,176831,176832,176835,176836,176837,176842,176843,177674,177675,177795,177796,177875,177887,177888,177889,177890,177891,177892,177899,178729,178730,178850,178851,178931,178932,178944,178945,178946,178947,178955,178956,179785,179906,179987,179988,179989,180011,180012,180013,180841,180962,181044,181045,181068,181069,181070,181897,181898,182018,182019,182101,182125,182126,182953,182954,182955,183074,183075,183076,183157,183182,183183,184010,184011,184131,184132,184213,184214,184238,184239,184240,184264,185067,185188,185269,185270,185271,185295,185296,185297,185298,185299,185300,185301,185320,185325,186122,186123,186243,186244,186326,186327,186352,186353,186354,186355,186356,186357,186358,186359,186360,186367,186368,186369,186370,186375,186376,186381,187177,187178,187298,187299,187383,187413,187414,187415,187416,187417,187422,187423,187424,187425,187426,187427,187428,187429,187430,187431,187432,187437,187438,188233,188353,188354,188439,188472,188473,188474,188475,188476,188477,188478,188479,188482,188483,188484,188485,188486,188487,188493,188494,188495,188496,188497,188498,188499,189289,189409,189494,189495,189529,189530,189531,189532,189533,189534,189550,189551,189552,189553,189554,189555,189556,189561,189562,189563,189564,190279,190345,190346,190465,190549,190550,190611,190612,190613,190614,190615,190616,190617,190618,190619,190620,190621,191327,191328,191329,191330,191335,191401,191402,191403,191521,191522,191605,191668,191669,191670,191671,191672,191673,191676,191677,191678,191679,191680,192382,192383,192384,192385,192386,192387,192390,192391,192458,192459,192577,192578,192579,192661,192733,192734,192735,192736,192737,193438,193439,193442,193443,193444,193445,193446,193447,193515,193634,193635,193636,193637,193638,193716,193717,193792,193793,193794,193795,193796,194493,194494,194499,194500,194501,194502,194571,194691,194692,194693,194694,194695,194770,194771,194772,194849,194850,194851,194852,194853,194862,195547,195548,195549,195550,195568,195627,195750,195751,195825,195826,195908,195909,195915,195918,196602,196603,196604,196605,196624,196683,196807,196880,196881,196965,196966,196971,196974,196975,196985,196986,196987,196988,197658,197659,197680,197681,197738,197739,197863,197864,197936,198021,198022,198023,198026,198027,198030,198031,198032,198033,198036,198037,198038,198039,198040,198041,198042,198043,198044,198045,198713,198714,198736,198737,198738,198794,198919,198920,198921,198992,199078,199079,199080,199081,199082,199083,199087,199088,199089,199090,199091,199092,199093,199094,199095,199096,199097,199100,199101,199768,199769,199770,199793,199794,199795,199796,199797,199976,199977,200048,200135,200136,200137,200138,200145,200146,200147,200148,200157,200158,200821,200822,200823,200824,200825,200850,200851,200852,200853,200854,200857,200858,200859,200860,201033,201104,201105,201213,201214,201215,201821,201822,201876,201877,201878,201879,201880,201909,201910,201911,201912,201913,201914,201915,201916,201917,202089,202160,202161,202162,202170,202270,202271,202272,202273,202274,202877,202878,202879,202932,202933,202966,202967,202968,202969,202972,202973,203145,203217,203218,203219,203226,203327,203328,203329,203330,203331,203934,203935,203936,203976,203977,203978,203979,203988,204029,204130,204131,204200,204201,204274,204275,204276,204277,204278,204281,204282,204386,204387,204388,204389,204991,204992,204993,205016,205017,205018,205025,205026,205027,205028,205031,205032,205033,205034,205035,205036,205043,205044,205085,205187,205189,205255,205256,205331,205332,205333,205334,205335,205336,205337,205338,205443,205444,205445,206048,206049,206050,206069,206070,206071,206072,206073,206074,206075,206080,206081,206082,206083,206084,206085,206086,206087,206088,206091,206092,206093,206098,206099,206100,206141,206245,206246,206309,206310,206311,206390,206391,206392,206393,207105,207106,207107,207108,207109,207110,207111,207112,207113,207114,207115,207122,207123,207124,207125,207126,207127,207128,207130,207131,207132,207133,207134,207135,207136,207137,207140,207141,207142,207143,207148,207149,207150,207151,207152,207153,207154,207155,207197,207221,207222,207223,207224,207302,207303,207364,207365,208162,208163,208164,208165,208166,208167,208168,208169,208170,208171,208172,208173,208174,208177,208178,208179,208180,208181,208187,208188,208189,208190,208191,208192,208205,208206,208207,208208,208209,208210,208253,208254,208276,208277,208278,208279,208280,208281,208282,208283,208352,208359,208364,208365,208366,208367,208415,208416,208417,208418,208419,208420,209223,209224,209227,209228,209229,209230,209231,209232,209233,209234,209236,209309,209310,209311,209314,209315,209316,209323,209324,209325,209326,209331,209332,209333,209336,209337,209338,209339,209340,209408,209409,209415,209416,209419,209420,209423,209424,209470,209471,210286,210287,210288,210289,210366,210367,210368,210369,210370,210371,210372,210373,210378,210379,210380,210381,210382,210383,210384,210385,210386,210387,210388,210395,210396,210397,210464,210465,210466,210472,210473,210474,210475,210480,210481,210525,210526,211423,211424,211425,211426,211428,211429,211430,211431,211432,211433,211434,211435,211438,211439,211440,211441,211442,211443,211452,211453,211454,211455,211456,211521,211522,211523,211524,211525,211537,211580,211581,212485,212486,212487,212488,212489,212490,212509,212510,212511,212512,212513,212578,212579,212580,212581,212593,212636,212725,212726,212727,212728,213362,213568,213637,213649,213692,213780,213781,213784,213785,214418,214692,214693,214705,214748,214835,214836,214841,214842,215474,215746,215747,215748,215760,215761,215803,215804,215891,215898,216529,216530,216801,216802,216815,216816,216817,216858,216859,216947,216954,217544,217584,217585,217586,217856,217857,217871,217872,217914,217945,218003,218010,218600,218601,218606,218607,218608,218639,218640,218641,218911,218912,218927,218970,219001,219002,219058,219059,219656,219657,219658,219659,219660,219661,219662,219663,219664,219665,219680,219695,219696,219966,219967,219983,219984,220026,220057,220058,220059,220112,220113,220114,220713,220714,220715,220716,220717,220718,220720,220721,220731,220736,220751,221022,221040,221041,221082,221114,221115,221167,221168,221777,221787,221792,221793,221806,221807,222077,222078,222096,222097,222138,222139,222171,222219,222220,222221,222222,222223,222833,222842,222843,222848,222849,222850,222861,222862,222863,223129,223130,223131,223132,223133,223151,223152,223153,223194,223195,223196,223227,223274,223275,223889,223890,223897,223898,223899,223905,223906,223907,223908,223909,223914,223915,223916,223917,223918,224184,224185,224207,224208,224251,224252,224272,224282,224283,224329,224330,224945,224946,224947,224952,224953,224954,224962,224963,224964,224965,224966,224967,224968,224969,224970,224971,224972,224973,225237,225238,225239,225240,225263,225308,225328,225337,225338,225385,226002,226003,226004,226005,226006,226007,226008,226009,226021,226022,226023,226024,226025,226026,226292,226293,226318,226319,226364,226384,226385,226393,226441,227059,227060,227061,227062,227063,227064,227346,227347,227348,227365,227366,227367,227368,227373,227374,227375,227420,227441,227442,227443,227449,227497,228401,228402,228420,228421,228422,228423,228424,228425,228426,228427,228428,228429,228430,228476,228477,228499,228500,228505,228553,229456,229457,229476,229477,229480,229481,229482,229483,229484,229485,229532,229533,229534,229556,229557,229560,229561,229608,229609,230512,230532,230589,230590,230613,230614,230615,230616,230660,230661,230662,230663,230664,231567,231568,231587,231588,231646,231715,231716,232619,232620,232621,232622,232623,232642,232643,232644,232702,232703,232770,232771,233674,233675,233693,233694,233695,233696,233697,233698,233699,233758,233759,233760,233826,234730,234748,234749,234750,234751,234752,234753,234754,234815,234816,234882,235786,235787,235803,235804,235805,235872,235937,235938,236842,236843,236859,236860,236928,236992,236993,237899,237915,237984,238048,238955,238970,238971,239039,239040,239104,240010,240011,240025,240026,240027,240093,240094,240095,240160,240161,241065,241066,241081,241082,241148,241149,241216,241217,241218,241219,241220,241221,241222,242121,242137,242203,242204,242273,242274,242275,242276,242277,242278,242279,243177,243193,243194,243259,243334,243335,244233,244234,244250,244251,244315,244391,245289,245290,245291,245307,245308,245368,245369,245370,245371,245447,246160,246346,246347,246364,246423,246424,246463,246464,246503,247207,247208,247209,247210,247215,247216,247217,247403,247420,247478,247479,247506,247507,247508,247509,247510,247511,247512,247513,247518,247519,247520,247559,247691,248174,248181,248182,248183,248184,248187,248188,248189,248190,248191,248192,248262,248263,248264,248265,248266,248267,248268,248269,248270,248271,248272,248476,248531,248532,248533,248534,248562,248563,248564,248565,248566,248567,248568,248569,248570,248571,248572,248573,248574,248575,248615,248616,248747,249230,249231,249234,249235,249236,249237,249238,249239,249240,249241,249242,249243,249244,249245,249246,249247,249248,249249,249277,249287,249315,249316,249317,249318,249319,249322,249323,249324,249325,249326,249327,249514,249532,249533,249586,249587,249618,249625,249626,249627,249628,249629,249630,249671,249672,249673,250286,250287,250288,250289,250290,250291,250292,250293,250296,250297,250298,250299,250304,250305,250306,250307,250308,250313,250314,250315,250316,250333,250343,250370,250371,250372,250373,250374,250570,250589,250590,250641,250642,250674,250728,250729,250730,251343,251344,251345,251346,251361,251362,251363,251364,251365,251368,251369,251370,251371,251372,251373,251388,251389,251399,251400,251423,251424,251425,251426,251427,251646,251659,251660,251661,251662,251697,251730,251731,251785,251786,252420,252421,252422,252423,252424,252425,252428,252429,252430,252431,252432,252433,252434,252441,252442,252443,252444,252445,252455,252456,252457,252478,252479,252480,252481,252482,252681,252702,252714,252715,252718,252719,252735,252736,252737,252738,252753,252787,252788,252842,253477,253478,253479,253480,253485,253486,253487,253488,253489,253490,253491,253494,253495,253496,253497,253498,253499,253500,253512,253513,253514,253523,253524,253525,253526,253529,253530,253531,253532,253533,253534,253535,253737,253758,253759,253769,253770,253775,253776,253777,253790,253791,253794,253795,253809,253844,253899,254021,254546,254547,254548,254549,254550,254551,254552,254553,254569,254570,254571,254572,254573,254574,254575,254576,254577,254578,254579,254580,254581,254582,254583,254584,254585,254586,254587,254588,254589,254590,254793,254794,254815,254816,254817,254818,254825,254833,254834,254845,254846,254851,254865,254899,254900,254954,255077,255078,255603,255604,255605,255606,255626,255627,255628,255629,255630,255631,255632,255633,255634,255635,255638,255639,255640,255641,255849,255850,255851,255874,255875,255880,255881,255890,255901,255907,255921,255922,255955,255956,256010,256134,256135,256136,256906,256907,256931,256932,256933,256934,256935,256936,256946,256947,256957,256963,256964,256977,256978,256979,257011,257192,257193,257963,258003,258004,258005,258006,258007,258012,258013,258020,258021,258034,258035,258067,259019,259063,259064,259067,259068,259077,259091,259123,260074,260075,260120,260121,260122,260123,260133,260146,260147,260178,260179,261130,261189,261190,261201,261202,261234,261235,261330,261331,262186,262246,262247,262257,262290,262385,262386,262387,263242,263303,263313,263345,263346,263441,263442,264298,264359,264368,264369,264400,264401,264402,264497,265354,265355,265415,265416,265423,265424,265449,265450,265451,265452,265453,265454,265455,265456,265457,265553,265554,266410,266411,266412,266472,266473,266474,266475,266476,266477,266478,266479,266505,266506,266507,266508,266509,266510,266511,266512,266610,266611,266612,267467,267468,267469,267470,267471,267472,267473,267561,267668,267669,268524,268525,268526,268527,268528,268529,268530,268531,268532,268616,268617,268725,269585,269586,269587,269588,269589,269672,269673,269781,270644,270645,270728,270837,271701,271784,271893,272757,272840,272841,272948,272949,273813,273814,273897,274003,274004,274005,274869,274870,274871,274874,274875,274876,274877,274878,274879,274953,275056,275057,275058,275059,275060,275926,275927,275928,275929,275930,275931,275932,275933,275934,275935,276009,276111,276112,276113,276114,276115,276983,276984,276985,276986,276991,277064,277065,277167,277168,278047,278073,278074,278075,278076,278120,278121,278223,279103,279104,279128,279129,279130,279131,279132,279133,279150,279151,279152,279153,279160,279161,279162,279163,279176,279279,279280,280159,280160,280161,280169,280170,280171,280172,280173,280174,280184,280185,280188,280189,280190,280191,280192,280193,280194,280203,280204,280205,280206,280207,280208,280209,280210,280215,280216,280217,280218,280219,280220,280223,280224,280225,280226,280232,280336,280337,280338,281216,281217,281218,281219,281220,281221,281224,281225,281226,281227,281228,281229,281230,281231,281240,281245,281246,281247,281248,281249,281250,281251,281256,281257,281258,281259,281260,281261,281262,281265,281266,281267,281268,281269,281270,281271,281272,281275,281276,281277,281278,281279,281280,281281,281282,281283,281284,281285,281288,281394,281395,282273,282274,282275,282276,282277,282278,282279,282280,282281,282286,282287,282288,282295,282296,282306,282307,282308,282309,282310,282311,282312,282313,282314,282315,282322,282323,282324,282325,282326,282327,282332,282333,282334,282335,282338,282339,282340,282341,282342,282451,282452,283333,283334,283335,283336,283343,283344,283345,283350,283351,283352,283363,283364,283365,283366,283367,283368,283398,283508,284400,284401,284402,284403,284404,284405,284406,284407,284454,284564,285169,285457,285458,285459,285460,285461,285462,285510,285511,285619,285620,286200,286201,286202,286203,286208,286209,286210,286211,286225,286230,286566,286567,286568,286674,286675,286676,287255,287256,287257,287258,287259,287260,287261,287262,287263,287264,287265,287266,287267,287268,287269,287270,287271,287280,287281,287286,287324,287623,287624,287625,287730,287731,288308,288309,288310,288311,288312,288315,288316,288317,288318,288319,288320,288323,288324,288325,288326,288327,288328,288335,288336,288337,288342,288343,288346,288347,288348,288349,288350,288351,288380,288399,288400,288680,288681,288786,289363,289364,289365,289366,289367,289383,289384,289385,289390,289391,289392,289398,289399,289400,289401,289402,289403,289404,289405,289406,289407,289408,289415,289416,289417,289418,289430,289436,289437,289448,289449,289450,289451,289454,289455,289456,289737,289842,289843,290417,290418,290419,290420,290440,290441,290442,290443,290444,290445,290446,290447,290455,290456,290457,290458,290463,290464,290465,290470,290471,290472,290473,290474,290475,290486,290492,290493,290494,290503,290504,290505,290506,290507,290508,290509,290510,290511,290793,290899,290900,291473,291474,291475,291497,291498,291499,291500,291501,291502,291520,291521,291522,291523,291524,291525,291526,291527,291530,291531,291532,291541,291542,291549,291550,291551,291556,291557,291558,291559,291560,291563,291564,291565,291566,291849,291956,292544,292545,292546,292547,292548,292577,292578,292579,292580,292581,292582,292587,292588,292589,292590,292591,292592,292593,292594,292595,292596,292597,292598,292606,292607,292608,292609,292610,292611,292612,292613,292614,292615,292904,292905,293011,293012,293599,293600,293604,293605,293606,293607,293644,293645,293646,293647,293648,293649,293650,293651,293652,293653,293663,293664,293665,293666,293667,293668,293959,293960,294066,294067,294068,294655,294663,294664,294678,294679,294680,294681,294684,294685,294686,295015,295122,295123,295710,295711,295720,295721,295733,295734,295737,295738,295739,295740,295742,295743,295744,296071,296178,296765,296766,296777,296787,296788,296789,296800,296801,296810,296811,296812,296814,296815,296816,296817,296836,296837,297127,297128,297233,297234,297821,297833,297842,297843,297857,297858,297864,297865,297866,297868,297869,297870,297873,297874,297875,297885,297886,297887,297888,297890,297891,297892,297893,297894,297895,298183,298184,298185,298288,298289,298290,298876,298877,298889,298890,298897,298898,298914,298919,298920,298931,298932,298940,298941,298944,298945,298946,298951,298952,299240,299241,299242,299243,299244,299344,299345,299932,299946,299953,299969,299970,299975,299988,299996,300008,300009,300297,300298,300299,300300,300301,300302,300303,300400,300988,300989,301002,301009,301024,301025,301026,301031,301044,301045,301051,301052,301065,301066,301356,301357,301358,301359,301360,301456,301457,302044,302045,302046,302057,302058,302065,302066,302080,302081,302087,302088,302101,302107,302122,302415,302416,302513,302514,303101,303102,303103,303104,303105,303108,303109,303110,303111,303112,303113,303114,303121,303122,303123,303124,303125,303128,303129,303130,303131,303136,303143,303144,303145,303156,303157,303163,303178,303472,303570,304158,304159,304160,304161,304162,304163,304164,304165,304166,304167,304168,304169,304178,304179,304180,304181,304182,304183,304184,304185,304186,304187,304188,304191,304192,304200,304201,304202,304203,304204,304207,304208,304209,304210,304211,304212,304213,304219,304220,304233,304234,304528,304626,305217,305218,305219,305220,305237,305238,305239,305240,305243,305244,305245,305246,305247,305248,305257,305258,305259,305260,305261,305262,305263,305264,305265,305266,305267,305268,305275,305276,305277,305280,305281,305282,305283,305288,305289,305290,305583,305584,305681,305682,306300,306301,306302,306303,306316,306317,306318,306319,306332,306333,306334,306335,306336,306337,306338,306339,306340,306341,306342,306343,306344,306345,306638,306639,306736,306737,306738,307389,307390,307391,307392,307395,307396,307397,307398,307399,307400,307694,307792,307793,308750,309806,310861,310862,311916,311917,312972,314028,315084,315085,316140,316141,316142,317197,317198,317199,317200,317201,318254,318255,318256,318257,319313,320369,321066,321087,321425,321426,321432,321433,321434,321435,322481,322482,322483,322486,322487,322488,322489,322490,322491,322492,322497,322498,322499,322500,323538,323539,323540,323541,323542,323543,323544,323547,323548,323549,323552,323553,323554,323555,323556,324270,324281,324595,324596,324597,324598,324604,324605,324606,324607,324608,324609,325661,325662,325663,325664,333711,333712,333814,333815,334766,334767,334871,334872,335822,335928,336878,336984,337934,337935,338039,338040,338990,338991,338992,339094,339095,339096,340047,340048,340149,340150,340151,341104,341205,341206,342160,342261,343215,343216,343317,344269,344270,344271,344373,344374,345324,345325,345430,345431,346380,346487,347436,347543,348492,348493,348599,349548,349549,349550,349655,350605,350606,350607,350711,350712,351662,351663,351768,352719,352823,352824,353775,353878,353879,353880,354831,354832,354934,354935,355887,355888,355889,355990,356944,356945,357046,358001,358102,358103,359057,359159,359160,360113,360216,360217,361169,361273,362224,362225,362329,363274,363275,363276,363277,363278,363279,363280,363384,363385,364329,364330,364439,364440,364441,365384,365385,365495,365496,366440,366551,367496,367607,368552,368553,368663,368664,369608,369609,369720,370665,370776,371721,371831,371832,372777,372886,372887,372888,373833,373834,373942,373943,374889,374890,374891,374998,375946,375947,376054,377003,377110,377111,378059,378167,379114,379115,379222,379223,380170,380278,380279,381226,381227,381334,382282,382283,382284,382390,383339,383340,383341,383342,383343,383344,383345,383445,383446,384396,384397,384398,384399,384400,384401,384402,384500,384501,384502,385457,385458,385459,385508,385509,385510,385511,385553,385554,385555,385556,385557,386514,386515,386516,386563,386564,386565,386566,386567,386568,386569,386570,386571,386572,386609,386610,386611,386612,387571,387572,387616,387617,387618,387619,387620,387623,387624,387625,387626,387627,387628,387629,387665,388628,388671,388672,388673,388674,388675,388684,388685,388721,389684,389727,389728,389741,389777,389778,390740,390783,390797,390834,390835,391796,391839,391840,391853,391891,392851,392852,392896,392909,392947,393906,393907,393929,393930,393931,393932,393952,393965,393966,394002,394003,394962,394978,394979,394980,394981,394984,394985,394986,394987,394988,394989,395008,395021,395022,395023,395026,395027,395028,395029,395036,395037,395038,395039,395057,395058,395059,396018,396033,396034,396035,396036,396037,396038,396039,396040,396041,396044,396045,396046,396063,396064,396078,396079,396080,396081,396082,396083,396084,396085,396086,396091,396092,396093,396094,396095,396096,396110,396111,396112,396113,396114,397074,397075,397089,397090,397093,397094,397095,397096,397101,397102,397103,397104,397105,397108,397109,397110,397111,397112,397113,397118,397119,397120,397135,397136,397137,397138,397141,397142,397143,397144,397145,397146,397147,397148,397151,397152,397153,397158,397159,397160,397161,397162,397163,397164,397165,397166,397167,397168,397169,398130,398131,398132,398135,398136,398137,398138,398139,398140,398145,398158,398159,398160,398161,398162,398163,398164,398165,398166,398167,398168,398169,398170,398171,398172,398173,398174,398175,398198,398199,398200,398201,398202,398203,398208,398209,398210,398211,398212,398213,398214,398215,398216,398217,398218,398219,398220,398221,398222,399187,399188,399189,399190,399191,399192,399193,399194,399195,399196,399197,399200,399201,399217,399218,399219,399220,399225,399226,399227,399228,399229,399230,399265,399266,399267,399268,399269,399270,400244,400245,400246,400247,400252,400253,400254,400255,400256,400257,401309,401310,401311,401312,559724,559729,62,67,222,223,1045,1118,1119,1122,1123,1131,1132,1133,1134,1135,1278,1279,2101,2137,2138,2139,2140,2141,2142,2143,2144,2174,2175,2176,2177,2178,2179,2185,2186,2187,2188,2190,2191,2192,2334,3157,3165,3166,3167,3184,3185,3186,3187,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3218,3219,3220,3221,3231,3232,3233,3234,3241,3242,3243,3247,3248,3249,3390,3391,3699,3700,3701,3702,3703,3704,3709,3710,3711,3712,3714,4213,4221,4223,4229,4230,4231,4232,4239,4240,4241,4242,4243,4244,4247,4248,4249,4256,4257,4258,4259,4260,4273,4274,4275,4276,4277,4278,4297,4304,4305,4306,4447,4448,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4764,4765,4766,4767,4768,4770,4771,5269,5271,5274,5276,5284,5285,5286,5287,5288,5289,5294,5295,5296,5299,5300,5301,5302,5303,5304,5315,5316,5317,5320,5321,5322,5323,5328,5329,5330,5333,5334,5335,5336,5337,5338,5339,5340,5341,5352,5353,5361,5362,5363,5405,5406,5407,5408,5409,5410,5805,5806,5807,5808,5809,5810,5811,5816,5817,5818,5819,5820,5821,5826,5827,6331,6340,6341,6344,6345,6346,6347,6348,6349,6350,6351,6356,6357,6358,6359,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6390,6391,6392,6393,6394,6395,6396,6397,6398,6407,6408,6409,6418,6419,6420,6421,6422,6423,6424,6460,6461,6462,6463,6464,6465,6466,6467,6494,6495,6496,6497,6498,6499,6861,6862,6873,6874,6875,6876,6883,7389,7390,7391,7396,7401,7402,7403,7404,7405,7406,7429,7430,7431,7432,7435,7436,7437,7438,7439,7440,7449,7450,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7475,7476,7477,7478,7479,7480,7481,7516,7517,7522,7523,7524,7549,7550,7551,7552,7554,7555,7556,7557,7558,7574,7575,7576,7577,7580,7581,7582,7583,7584,7585,7586,7593,7594,7595,7596,7917,7939,8445,8447,8452,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8536,8537,8538,8572,8579,8580,8605,8606,8611,8612,8613,8614,8615,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8646,8647,8648,8649,8650,8651,8652,8653,8973,8974,8995,8996,9502,9508,9542,9543,9544,9545,9546,9593,9594,9595,9602,9603,9604,9605,9606,9607,9608,9609,9627,9628,9636,9661,9670,9671,9672,9673,9674,9682,9683,9684,9685,9686,9689,9690,9691,9692,9698,9699,9700,9701,9702,9703,9704,9705,9708,9709,10030,10051,10052,10053,10564,10598,10599,10600,10601,10602,10650,10651,10652,10653,10654,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10682,10683,10684,10692,10716,10717,10727,10728,10729,10730,10737,10738,10739,10755,10756,10757,10758,10765,11086,11108,11109,11620,11621,11654,11658,11707,11708,11709,11710,11711,11712,11713,11714,11721,11722,11723,11724,11725,11726,11727,11735,11736,11737,11738,11739,11748,11749,11758,11759,11760,11761,11771,11772,11773,11786,11793,11794,11821,12142,12153,12154,12155,12156,12165,12670,12677,12678,12710,12711,12714,12766,12767,12768,12769,12782,12783,12790,12791,12792,12793,12794,12804,12805,12806,12813,12814,12815,12816,12817,12827,12828,12842,12849,12877,12878,13198,13208,13209,13212,13213,13221,13734,13735,13767,13770,13771,13839,13846,13847,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13873,13883,13898,13899,13904,13905,13915,13916,13917,13918,13919,13920,13933,13934,13935,14254,14255,14260,14261,14262,14263,14264,14269,14270,14276,14277,14791,14823,14826,14827,14895,14902,14918,14919,14920,14921,14922,14923,14924,14925,14929,14938,14939,14954,14955,14956,14959,14960,14961,14970,14971,14972,14973,14974,14975,14976,14977,14979,14990,14991,15086,15087,15088,15089,15090,15091,15311,15312,15315,15316,15326,15331,15332,15847,15879,15882,15883,15951,15952,15957,15958,15985,15986,15991,15992,15993,15994,15995,16011,16012,16013,16014,16015,16016,16026,16027,16032,16033,16035,16047,16048,16055,16056,16067,16068,16069,16070,16141,16142,16143,16144,16145,16146,16147,16148,16368,16369,16370,16371,16382,16387,16902,16903,16934,16935,16937,16938,17007,17008,17009,17012,17013,17014,17041,17042,17043,17046,17047,17048,17049,17050,17068,17069,17070,17071,17082,17091,17103,17104,17105,17106,17107,17110,17111,17112,17113,17122,17123,17126,17127,17197,17198,17203,17204,17205,17438,17439,17442,17443,17958,17959,17989,17990,17991,17993,18064,18065,18066,18067,18068,18069,18098,18099,18100,18101,18102,18103,18138,18139,18147,18148,18160,18161,18162,18163,18164,18165,18166,18167,18177,18178,18183,18184,18185,18186,18198,18199,18200,18201,18253,18260,18261,18262,18495,18496,18497,18498,19014,19045,19046,19049,19121,19122,19123,19124,19155,19156,19157,19158,19195,19203,19204,19205,19219,19220,19221,19222,19233,19242,19243,19253,19254,19257,19258,19308,19309,19317,19318,20070,20101,20105,20106,20251,20260,20261,20262,20263,20264,20289,20299,20300,20301,20302,20309,20314,20315,20333,20334,20336,20337,20351,20352,20354,20355,20356,20363,20364,20365,20374,21125,21126,21157,21161,21162,21163,21306,21307,21317,21318,21319,21320,21345,21358,21359,21364,21365,21371,21388,21389,21391,21393,21394,21402,21404,21405,21406,21407,21408,21410,21411,21412,21413,21416,21417,21418,21419,21420,21430,22180,22181,22182,22213,22218,22219,22361,22362,22363,22376,22401,22415,22416,22417,22418,22419,22420,22427,22428,22444,22450,22455,22456,22457,22458,22459,22460,22461,22462,22463,22468,22469,22470,22471,22472,22473,22474,22475,22486,23235,23236,23237,23269,23270,23275,23417,23418,23422,23423,23424,23425,23432,23457,23458,23484,23485,23486,23487,23488,23500,23505,23506,23510,23511,23512,23513,23514,23515,23516,23525,23526,23527,23528,23542,24291,24292,24326,24331,24473,24478,24479,24480,24481,24482,24487,24488,24513,24514,24515,24544,24545,24546,24547,24548,24549,24550,24551,24552,24556,24557,24560,24561,24562,24566,24567,24598,24599,25347,25382,25387,25510,25511,25512,25513,25514,25529,25533,25534,25537,25538,25542,25543,25570,25571,25572,25573,25574,25575,25576,25608,25609,25612,25613,25614,25615,25616,25617,25622,25654,25655,25656,26403,26438,26442,26443,26565,26566,26570,26571,26584,26585,26589,26590,26594,26598,26627,26628,26629,26630,26631,26632,26633,26665,26666,26669,26670,26671,26672,26678,26700,26701,26702,26711,26712,27459,27494,27497,27498,27617,27618,27619,27620,27621,27627,27628,27630,27631,27632,27639,27640,27641,27645,27646,27649,27650,27654,27688,27689,27702,27722,27723,27734,27735,27754,27756,27757,27758,27759,27760,27768,28515,28549,28550,28553,28672,28673,28684,28685,28686,28688,28689,28695,28696,28702,28703,28704,28705,28710,28745,28758,28779,28791,28792,28806,28807,28808,28809,28810,28812,28814,28815,28816,28817,28824,29571,29572,29604,29605,29606,29609,29727,29728,29745,29746,29751,29765,29766,29801,29813,29814,29819,29835,29848,29859,29861,29862,29863,29864,29865,29866,29872,29873,29880,29881,30128,30129,30130,30131,30140,30141,30142,30143,30628,30629,30660,30661,30665,30666,30783,30802,30807,30817,30818,30819,30820,30821,30857,30868,30869,30870,30875,30891,30892,30904,30913,30914,30915,30916,30917,30918,30929,30936,30937,30938,31183,31184,31185,31186,31187,31188,31195,31196,31197,31198,31199,31200,31685,31716,31721,31722,31723,31839,31857,31858,31863,31864,31872,31873,31912,31913,31923,31924,31925,31931,31932,31948,31949,31959,31960,31968,31969,31970,31971,31972,31973,31984,31985,31993,31994,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32236,32237,32238,32239,32240,32243,32244,32245,32246,32247,32248,32249,32250,32251,32252,32255,32256,32741,32742,32771,32772,32778,32779,32894,32895,32913,32914,32920,32921,32928,32965,32966,32967,32968,32978,32979,32980,32987,32988,33005,33014,33015,33016,33024,33025,33040,33050,33249,33250,33251,33252,33253,33254,33255,33256,33257,33258,33259,33260,33261,33262,33263,33264,33265,33266,33291,33292,33293,33294,33295,33300,33301,33302,33303,33304,33305,33306,33307,33312,33798,33799,33825,33826,33827,33828,33835,33949,33950,33969,33977,33983,33984,34020,34021,34034,34035,34044,34061,34070,34071,34080,34096,34106,34304,34305,34306,34307,34308,34317,34318,34319,34320,34321,34322,34323,34347,34348,34368,34377,34378,34379,34380,34855,34856,34880,34881,34882,34883,34890,34891,35005,35025,35033,35037,35038,35039,35075,35076,35090,35100,35101,35116,35117,35126,35136,35152,35153,35162,35360,35361,35378,35379,35403,35424,35425,35432,35433,35434,35435,35436,35437,35912,35936,35937,35944,35945,35946,36061,36062,36081,36089,36090,36092,36093,36131,36146,36147,36156,36157,36171,36172,36173,36182,36192,36193,36208,36209,36210,36218,36416,36435,36459,36480,36481,36482,36485,36486,36487,36488,36489,36492,36493,36968,36992,36999,37000,37117,37118,37119,37120,37121,37137,37146,37147,37148,37187,37203,37204,37213,37227,37228,37238,37239,37249,37250,37251,37252,37253,37265,37266,37267,37268,37274,37275,37472,37491,37514,37515,37522,37523,37524,37530,37531,37532,37537,37538,37539,37540,37541,37542,37543,37544,37549,38024,38048,38054,38055,38174,38175,38176,38177,38178,38192,38193,38243,38244,38260,38268,38269,38283,38295,38296,38309,38310,38322,38323,38324,38325,38330,38331,38332,38528,38547,38569,38570,38571,38577,38578,38588,38589,38594,38595,38596,38597,38605,39080,39104,39110,39233,39234,39235,39236,39237,39247,39248,39249,39299,39300,39301,39316,39322,39323,39324,39339,39340,39352,39353,39354,39355,39356,39366,39367,39380,39381,39387,39388,39584,39603,39604,39625,39626,39632,39633,39645,39661,40135,40136,40159,40160,40166,40226,40227,40228,40229,40230,40231,40234,40235,40236,40237,40238,40239,40290,40291,40292,40293,40294,40295,40296,40303,40304,40356,40357,40372,40373,40375,40376,40377,40378,40396,40397,40412,40413,40423,40437,40444,40640,40641,40659,40660,40661,40681,40688,40701,40717,41190,41191,41192,41213,41214,41215,41216,41221,41222,41281,41282,41283,41284,41285,41286,41287,41290,41291,41292,41293,41294,41295,41296,41349,41350,41351,41352,41353,41358,41359,41412,41413,41429,41430,41431,41453,41469,41470,41479,41493,41500,41697,41698,41716,41717,41737,41744,41757,41758,41761,41762,41763,41764,41772,41773,42243,42244,42245,42246,42247,42268,42269,42270,42271,42275,42276,42277,42324,42325,42326,42327,42328,42329,42336,42337,42338,42343,42346,42351,42352,42353,42354,42355,42408,42409,42410,42411,42412,42413,42414,42415,42467,42468,42509,42526,42534,42535,42549,42556,42754,42760,42761,42762,42763,42766,42767,42768,42769,42773,42793,42794,42800,42801,42814,42815,42816,42817,42820,42821,42827,42828,43298,43299,43300,43301,43302,43324,43325,43330,43331,43379,43380,43381,43382,43383,43384,43385,43386,43387,43388,43389,43390,43391,43392,43393,43408,43409,43410,43411,43412,43413,43414,43465,43466,43467,43468,43469,43470,43523,43565,43582,43589,43590,43591,43604,43605,43611,43612,43810,43815,43816,43819,43820,43821,43822,43825,43826,43828,43829,43850,43851,43856,43857,43858,43877,43878,43883,44354,44355,44379,44380,44386,44432,44433,44434,44435,44436,44441,44442,44443,44444,44445,44446,44447,44448,44467,44468,44469,44470,44471,44579,44621,44638,44645,44646,44655,44656,44657,44658,44659,44660,44665,44666,44667,44866,44867,44870,44871,44876,44877,44882,44883,44884,44907,44913,44914,44934,44939,45410,45432,45433,45434,45435,45436,45442,45487,45488,45489,45490,45491,45510,45511,45514,45515,45526,45527,45528,45635,45636,45676,45677,45693,45694,45701,45710,45711,45720,45721,45923,45924,45925,45926,45963,45970,45990,45995,45996,46466,46487,46488,46489,46490,46491,46497,46498,46543,46544,46565,46566,46571,46572,46574,46575,46576,46577,46583,46584,46691,46692,46693,46731,46732,46733,46748,46749,46750,46757,46765,46766,46775,46776,47018,47019,47025,47026,47046,47051,47052,47053,47522,47523,47542,47543,47544,47550,47551,47552,47553,47599,47608,47609,47610,47611,47616,47617,47618,47619,47620,47621,47628,47629,47630,47633,47634,47640,47748,47749,47787,47788,47801,47802,47803,47804,47805,47813,47814,47821,47831,48073,48074,48075,48080,48081,48102,48108,48109,48579,48580,48598,48599,48605,48606,48654,48655,48659,48660,48661,48662,48663,48664,48667,48668,48671,48672,48690,48691,48696,48805,48843,48856,48857,48858,48859,48860,48870,48871,48876,48877,48887,49129,49130,49136,49158,49165,49636,49637,49654,49661,49710,49711,49714,49715,49724,49725,49726,49727,49747,49748,49752,49800,49801,49802,49803,49804,49861,49862,49899,49900,49912,49913,49927,49928,49930,49931,49932,49942,49943,50185,50192,50214,50221,50693,50709,50710,50717,50718,50766,50769,50770,50804,50808,50809,50853,50854,50855,50856,50860,50861,50917,50918,50919,50944,50956,50957,50968,50985,50998,51241,51248,51249,51269,51270,51276,51277,51749,51762,51763,51764,51765,51766,51773,51774,51775,51776,51777,51778,51822,51825,51860,51864,51865,51866,51908,51909,51917,51918,51919,51974,51975,51976,51977,51978,51979,51980,51986,51987,51988,51989,51990,51991,51998,51999,52000,52001,52002,52003,52013,52024,52054,52297,52298,52304,52305,52306,52324,52325,52326,52330,52331,52332,52805,52806,52817,52818,52819,52820,52821,52824,52825,52826,52827,52830,52831,52832,52833,52834,52835,52878,52881,52915,52916,52921,52922,52923,52964,52975,52976,53031,53032,53033,53034,53035,53036,53037,53040,53041,53042,53043,53044,53045,53046,53047,53048,53051,53052,53053,53054,53055,53056,53057,53058,53059,53060,53069,53080,53081,53109,53110,53354,53355,53361,53362,53380,53381,53385,53386,53856,53862,53863,53870,53871,53872,53873,53874,53879,53880,53883,53884,53890,53891,53892,53933,53934,53937,53970,53971,53972,53978,53979,54019,54020,54032,54033,54092,54093,54094,54095,54096,54097,54098,54103,54104,54105,54106,54107,54108,54109,54110,54115,54116,54117,54124,54125,54137,54138,54164,54165,54411,54418,54419,54436,54440,54441,54912,54913,54919,54925,54926,54927,54928,54929,54935,54940,54941,54947,54948,54986,54987,54988,54989,54990,54993,55026,55027,55034,55035,55073,55074,55075,55089,55149,55150,55151,55152,55160,55161,55162,55163,55172,55173,55174,55179,55180,55181,55194,55195,55219,55220,55467,55474,55475,55476,55477,55478,55479,55480,55481,55482,55491,55492,55496,55969,55970,55975,55981,55982,55991,55997,55998,56004,56041,56042,56043,56044,56045,56048,56049,56082,56090,56123,56124,56125,56128,56129,56145,56229,56230,56231,56232,56233,56234,56235,56236,56251,56274,56275,56523,56531,56532,56533,56534,56535,56536,56537,56538,56539,56540,56541,56546,56547,56548,56552,57026,57031,57032,57037,57047,57048,57054,57055,57060,57096,57097,57098,57103,57104,57138,57146,57178,57179,57181,57182,57183,57184,57200,57201,57286,57287,57288,57289,57290,57291,57307,57330,57579,57594,57595,57596,57597,57598,57599,57600,57601,57602,57603,57608,58082,58088,58089,58090,58093,58103,58104,58105,58111,58116,58151,58152,58153,58159,58194,58201,58202,58233,58234,58255,58256,58257,58363,58386,58635,58636,58653,58654,58655,58656,58657,58658,58664,59138,59139,59146,59147,59149,59150,59151,59152,59160,59161,59166,59167,59172,59173,59207,59208,59214,59215,59250,59251,59256,59257,59289,59306,59307,59308,59309,59310,59311,59312,59419,59428,59429,59430,59442,59443,59692,59693,59694,59695,59696,59720,59721,60195,60196,60203,60204,60208,60209,60210,60211,60212,60213,60217,60222,60223,60228,60229,60230,60263,60268,60269,60270,60307,60308,60312,60345,60361,60362,60363,60364,60365,60366,60367,60426,60427,60428,60437,60438,60439,60440,60447,60448,60449,60474,60475,60481,60482,60483,60484,60485,60486,60487,60488,60489,60490,60498,60499,60500,60752,60753,60776,60777,60778,61252,61253,61259,61260,61269,61270,61272,61273,61278,61285,61286,61287,61319,61323,61324,61364,61368,61401,61402,61417,61418,61481,61482,61484,61485,61492,61493,61496,61497,61502,61503,61505,61506,61507,61508,61529,61530,61531,61536,61537,61538,61539,61540,61542,61543,61544,61545,61546,61547,61555,61556,61809,61810,61811,61816,61817,61818,61819,61833,61834,62309,62314,62315,62316,62326,62327,62328,62334,62342,62343,62344,62345,62346,62347,62348,62351,62352,62353,62375,62378,62379,62420,62424,62425,62457,62458,62459,62473,62536,62537,62541,62542,62543,62544,62545,62546,62547,62548,62553,62554,62555,62556,62557,62558,62564,62565,62584,62585,62586,62592,62593,62599,62600,62602,62603,62612,62867,62868,62871,62872,62875,62876,62890,63365,63370,63371,63390,63391,63399,63400,63401,63402,63403,63404,63405,63406,63407,63408,63409,63410,63430,63431,63434,63475,63476,63480,63481,63514,63515,63516,63528,63529,63543,63544,63545,63592,63621,63622,63639,63640,63641,63647,63648,63659,63660,63668,63924,63925,63926,63927,63932,63946,64421,64426,64447,64448,64460,64461,64462,64463,64465,64466,64530,64531,64532,64537,64571,64572,64581,64582,64583,64584,64585,64598,64599,64601,64602,64603,64648,64678,64694,64695,64696,64703,64716,64724,64988,65001,65002,65477,65482,65504,65522,65586,65587,65593,65628,65636,65637,65638,65639,65640,65653,65654,65659,65660,65666,65667,65668,65704,65734,65750,65751,65759,65760,65771,65772,65779,65780,66044,66045,66048,66049,66050,66051,66052,66053,66054,66055,66056,66057,66533,66534,66537,66560,66578,66597,66598,66602,66684,66692,66693,66709,66716,66717,66718,66719,66720,66721,66722,66724,66725,66760,66789,66790,66806,66815,66816,66827,66828,66829,66834,66835,67101,67102,67103,67104,67590,67594,67616,67634,67635,67652,67653,67654,67658,67659,67739,67740,67748,67760,67761,67762,67763,67765,67781,67782,67783,67815,67816,67844,67845,67846,67862,67870,67871,67872,67884,67885,67890,68646,68650,68651,68672,68676,68677,68678,68679,68680,68681,68690,68691,68692,68705,68706,68707,68708,68709,68714,68715,68716,68754,68760,68761,68793,68794,68795,68804,68815,68816,68819,68820,68821,68839,68840,68870,68871,68900,68901,68917,68918,68925,68926,68927,68941,68946,69701,69702,69707,69708,69727,69728,69731,69732,69737,69738,69747,69748,69749,69750,69751,69761,69762,69763,69764,69771,69772,69809,69810,69816,69848,69849,69860,69861,69870,69871,69896,69897,69925,69926,69956,69972,69973,69974,69980,69981,69982,69996,69997,70002,70003,70756,70757,70758,70764,70782,70783,70784,70786,70787,70794,70804,70805,70806,70807,70808,70809,70817,70828,70864,70865,70866,70872,70903,70904,70917,70918,70924,70925,70926,70953,70980,70981,71012,71013,71028,71029,71036,71037,71052,71058,71059,71060,71812,71813,71820,71838,71839,71842,71850,71851,71863,71864,71865,71866,71873,71884,71919,71920,71921,71927,71928,71959,71974,71979,71980,72009,72010,72036,72069,72070,72084,72092,72108,72115,72116,72868,72876,72894,72898,72899,72907,72908,72921,72922,72929,72940,72975,72976,72982,72983,73015,73030,73035,73066,73067,73092,73126,73140,73148,73163,73164,73172,73924,73932,73950,73954,73955,73956,73964,73978,73984,73985,73995,73996,74031,74038,74071,74072,74079,74080,74081,74082,74085,74086,74091,74123,74148,74149,74182,74195,74196,74204,74218,74219,74228,74980,74981,74987,74988,75006,75011,75012,75019,75020,75034,75039,75040,75041,75049,75050,75051,75087,75094,75127,75128,75129,75134,75135,75136,75137,75138,75141,75142,75147,75148,75179,75204,75205,75206,75237,75238,75250,75251,75252,75260,75265,75266,75267,75268,75269,75274,75284,76037,76038,76042,76043,76044,76062,76068,76069,76074,76075,76076,76090,76095,76096,76104,76105,76143,76150,76151,76184,76185,76186,76189,76190,76191,76194,76197,76203,76204,76205,76234,76235,76261,76262,76292,76293,76294,76306,76307,76316,76317,76320,76321,76325,76326,76329,76330,76339,76340,77094,77098,77099,77118,77124,77125,77126,77127,77128,77129,77130,77131,77145,77146,77151,77156,77157,77158,77159,77160,77199,77200,77206,77207,77208,77241,77242,77243,77244,77245,77246,77260,77261,77262,77263,77264,77289,77290,77291,77318,77345,77346,77347,77348,77349,77362,77373,77374,77375,77376,77382,77383,77384,77385,77394,77395,77689,77690,77691,78149,78150,78154,78174,78181,78182,78183,78185,78186,78200,78201,78206,78207,78211,78212,78256,78257,78263,78264,78298,78299,78300,78301,78309,78310,78311,78312,78313,78317,78318,78319,78320,78321,78340,78341,78342,78343,78344,78345,78346,78374,78375,78400,78401,78402,78403,78404,78418,78447,78448,78449,78450,78744,78745,78747,78748,79204,79205,79206,79210,79230,79231,79255,79256,79261,79262,79263,79266,79267,79313,79320,79365,79369,79370,79376,79377,79395,79396,79397,79398,79399,79400,79401,79430,79431,79432,79456,79457,79474,79502,79503,79799,79800,79804,79805,79806,79807,79808,79809,80259,80260,80261,80265,80266,80287,80288,80300,80301,80302,80311,80317,80318,80322,80369,80376,80415,80416,80417,80426,80427,80433,80451,80452,80487,80488,80512,80530,80557,80558,80846,80847,80848,80849,80855,80865,80866,81315,81316,81320,81321,81322,81344,81355,81356,81358,81359,81367,81373,81378,81425,81432,81470,81471,81473,81474,81483,81489,81507,81544,81555,81556,81557,81558,81567,81568,81586,81587,81600,81601,81602,81603,81604,81613,81901,81902,81905,81906,81910,81911,81922,81923,82371,82376,82377,82400,82409,82410,82411,82415,82416,82423,82424,82429,82433,82434,82481,82487,82488,82526,82539,82545,82563,82564,82600,82601,82608,82609,82610,82611,82612,82613,82614,82615,82616,82617,82618,82619,82622,82623,82624,82643,82644,82655,82656,82660,82661,82668,82669,82956,82957,82962,82963,82964,82965,82966,82979,82980,83427,83432,83455,83456,83464,83465,83472,83473,83479,83480,83484,83485,83488,83489,83512,83513,83514,83515,83516,83517,83536,83537,83542,83543,83582,83583,83594,83595,83601,83602,83620,83621,83656,83657,83658,83661,83662,83663,83664,83665,83666,83667,83670,83671,83672,83673,83674,83675,83676,83677,83678,83679,83700,83707,83708,83709,83710,83711,83717,83718,83723,83724,83990,83991,83992,83997,83998,83999,84000,84001,84005,84006,84007,84012,84036,84482,84483,84488,84510,84511,84512,84519,84520,84529,84536,84540,84541,84544,84565,84566,84567,84568,84569,84570,84571,84572,84573,84574,84591,84592,84593,84598,84638,84639,84640,84649,84650,84651,84657,84658,84659,84677,84678,84713,84714,84715,84716,84717,84718,84719,84720,84731,84732,84733,84734,84756,84757,84762,84763,84774,84775,84776,84777,84778,84779,85045,85046,85048,85049,85052,85053,85057,85058,85060,85061,85063,85064,85067,85068,85092,85537,85538,85539,85544,85566,85567,85575,85585,85592,85596,85600,85620,85621,85622,85623,85624,85629,85630,85631,85634,85635,85640,85641,85642,85643,85646,85647,85648,85654,85695,85696,85705,85706,85714,85715,85734,85770,85771,85772,85773,85813,85814,85815,85816,85817,85818,86100,86101,86105,86106,86107,86108,86114,86115,86116,86120,86121,86122,86123,86148,86592,86593,86594,86600,86622,86631,86640,86641,86648,86652,86656,86675,86676,86677,86686,86687,86690,86691,86692,86695,86696,86697,86698,86699,86700,86701,86702,86703,86709,86710,86752,86761,86770,86771,86790,87156,87204,87648,87649,87656,87657,87678,87686,87687,87695,87696,87697,87704,87708,87712,87713,87730,87731,87732,87747,87748,87749,87750,87751,87752,87755,87756,87757,87758,87764,87765,87808,87846,87847,87921,87922,87923,87924,88206,88207,88208,88211,88212,88259,88260,88713,88714,88733,88734,88739,88740,88741,88742,88751,88752,88760,88764,88765,88768,88769,88770,88775,88776,88777,88778,88781,88782,88783,88784,88785,88786,88787,88804,88805,88806,88807,88820,88864,88903,88904,88922,88976,88977,88980,88981,89247,89248,89249,89250,89261,89262,89264,89265,89266,89267,89314,89315,89316,89770,89788,89789,89790,89794,89795,89807,89816,89821,89825,89826,89827,89828,89829,89830,89831,89832,89833,89834,89835,89836,89837,89838,89839,89840,89841,89842,89850,89851,89852,89875,89876,89919,89920,89930,89937,89938,89960,89977,89978,89979,90032,90037,90038,90039,90040,90041,90302,90303,90306,90307,90316,90317,90370,90371,90826,90844,90845,90849,90850,90863,90871,90872,90877,90882,90883,90884,90885,90886,90887,90890,90891,90892,90893,90905,90906,90908,90909,90925,90926,90927,90930,90931,90974,90975,90986,90987,90993,91015,91016,91033,91034,91087,91088,91097,91098,91357,91358,91363,91364,91365,91372,91426,91882,91900,91905,91918,91919,91927,91933,91934,91960,91961,91965,91966,91967,91970,91971,91972,91980,91981,91983,91984,91985,91986,92030,92043,92049,92070,92071,92072,92089,92143,92154,92413,92421,92422,92427,92428,92482,92483,92938,92956,92961,92973,92974,92975,92983,92990,92991,92992,93016,93028,93029,93033,93034,93035,93036,93086,93087,93099,93105,93106,93126,93127,93145,93199,93209,93210,93468,93469,93478,93479,93480,93481,93482,93483,93539,93540,93993,93994,94012,94013,94016,94017,94026,94027,94028,94029,94030,94038,94039,94048,94049,94063,94064,94065,94066,94067,94071,94072,94085,94086,94087,94088,94089,94142,94143,94144,94154,94155,94161,94162,94163,94181,94182,94200,94201,94255,94256,94262,94263,94264,94265,94266,94521,94522,94523,94524,94596,94597,95048,95049,95050,95069,95070,95071,95072,95081,95082,95083,95084,95085,95094,95099,95105,95106,95111,95112,95113,95118,95119,95123,95124,95125,95126,95127,95199,95200,95209,95210,95211,95218,95219,95220,95236,95237,95238,95255,95256,95257,95311,95312,95313,95317,95318,95319,95320,95321,95576,95577,95653,96104,96105,96137,96138,96150,96155,96162,96163,96164,96165,96166,96167,96169,96170,96171,96172,96173,96174,96256,96257,96262,96263,96264,96265,96266,96275,96276,96277,96278,96279,96280,96281,96284,96285,96286,96287,96292,96293,96311,96312,96368,96369,96370,96371,96372,96373,96374,96531,96532,96533,96534,96585,96586,96587,96588,96589,96590,96622,96623,96624,96625,96630,96631,96632,96709,96710,97160,97188,97193,97206,97207,97210,97211,97312,97313,97314,97315,97316,97317,97318,97319,97320,97321,97332,97333,97334,97335,97336,97337,97338,97339,97340,97341,97342,97343,97344,97347,97348,97367,97425,97426,97427,97428,97429,97578,97579,97580,97581,97582,97583,97584,97585,97586,97587,97588,97589,97590,97591,97627,97628,97629,97630,97640,97641,97642,97643,97644,97645,97646,97647,97648,97649,97654,97655,97656,97657,97677,97678,97681,97682,97685,97686,97766,97767,98216,98244,98249,98262,98263,98264,98265,98266,98267,98369,98370,98371,98372,98373,98374,98393,98394,98395,98396,98399,98400,98401,98402,98403,98404,98423,98633,98634,98635,98636,98637,98638,98639,98640,98641,98642,98643,98646,98647,98648,98649,98650,98668,98669,98670,98671,98682,98683,98684,98685,98686,98696,98697,98702,98703,98704,98705,98706,98707,98708,98709,98710,98711,98712,98713,98714,98732,98733,98738,98739,98740,98741,98823,99272,99300,99301,99304,99305,99319,99320,99321,99322,99456,99457,99458,99459,99479,99480,99688,99689,99690,99703,99704,99705,99706,99707,99723,99724,99725,99726,99727,99728,99737,99738,99739,99742,99752,99761,99762,99763,99764,99765,99766,99769,99770,99771,99788,99879,100328,100356,100357,100358,100359,100360,100361,100536,100537,100744,100745,100762,100763,100776,100777,100778,100779,100780,100783,100784,100785,100786,100787,100788,100789,100790,100791,100792,100793,100794,100798,100807,100808,100826,100827,100843,100844,100934,100935,101384,101385,101413,101414,101415,101416,101593,101800,101819,101831,101832,101833,101834,101835,101840,101841,101842,101843,101844,101845,101846,101847,101848,101849,101854,101855,101862,101863,101864,101883,101898,101899,101990,101991,102441,102442,102624,102634,102635,102636,102637,102649,102856,102857,102875,102882,102883,102884,102885,102886,102887,102888,102910,102911,102912,102915,102916,102917,102918,102919,102939,102954,103046,103498,103541,103542,103543,103544,103598,103599,103600,103601,103680,103687,103688,103689,103690,103691,103692,103693,103694,103705,103913,103914,103915,103931,103932,103937,103938,103939,103940,103941,103942,103943,103967,103968,103969,103970,103971,103972,103973,103974,103995,103996,104010,104059,104060,104061,104062,104102,104103,104554,104596,104597,104653,104654,104657,104658,104736,104737,104740,104741,104742,104743,104744,104745,104746,104749,104750,104751,104761,104971,104972,104987,104988,104989,104992,104993,104994,105024,105025,105026,105027,105051,105052,105053,105066,105067,105114,105115,105118,105119,105126,105127,105128,105129,105130,105131,105132,105159,105160,105610,105635,105636,105637,105638,105651,105652,105708,105709,105714,105715,105716,105717,105792,105793,105794,105795,105796,105797,105798,105799,105806,105807,105808,105817,105818,106028,106029,106044,106045,106046,106047,106048,106049,106108,106109,106110,106111,106112,106122,106123,106124,106159,106160,106161,106162,106169,106170,106175,106176,106177,106181,106182,106188,106189,106216,106666,106694,106695,106707,106762,106763,106764,106773,106774,106776,106777,106778,106779,106849,106850,106851,106852,106863,106864,106874,106875,107085,107101,107102,107103,107104,107165,107166,107167,107168,107169,107179,107180,107214,107215,107218,107219,107224,107225,107233,107234,107235,107236,107237,107245,107246,107272,107722,107723,107751,107752,107762,107763,107817,107818,107830,107831,107832,107835,107836,107920,107931,108141,108224,108225,108236,108269,108270,108275,108276,108277,108278,108279,108280,108302,108327,108328,108779,108780,108808,108817,108818,108872,108873,108892,108893,108976,108977,108987,109197,109198,109281,109292,109325,109358,109359,109382,109383,109384,109836,109864,109873,109928,109949,110032,110033,110034,110042,110043,110254,110255,110337,110348,110381,110415,110416,110417,110418,110419,110420,110438,110439,110892,110920,110929,110984,111005,111072,111073,111074,111075,111076,111089,111090,111097,111098,111099,111311,111393,111394,111404,111405,111436,111437,111476,111477,111494,111947,111948,111976,111977,111984,111985,112039,112040,112061,112062,112128,112129,112132,112133,112134,112135,112139,112140,112141,112146,112152,112153,112154,112367,112449,112450,112451,112460,112461,112462,112490,112491,112492,112533,112534,112549,112550,113002,113003,113004,113033,113039,113040,113094,113095,113118,113119,113120,113121,113184,113191,113192,113194,113195,113197,113198,113201,113202,113208,113209,113423,113424,113506,113507,113517,113518,113545,113546,113590,113591,113604,113605,113606,114058,114059,114089,114150,114177,114178,114240,114248,114249,114250,114254,114255,114256,114257,114264,114480,114481,114563,114573,114574,114601,114647,114648,114660,114661,115114,115206,115234,115235,115320,115537,115538,115619,115628,115629,115656,115657,115704,115716,116170,116262,116291,116376,116594,116674,116675,116684,116712,116760,116772,117226,117227,117318,117347,117352,117353,117354,117355,117432,117624,117625,117626,117627,117650,117729,117730,117740,117768,117816,117828,118283,118284,118374,118375,118403,118404,118407,118408,118411,118412,118488,118489,118671,118672,118673,118679,118680,118683,118684,118685,118686,118705,118706,118785,118796,118797,118824,118872,118884,118885,119340,119430,119431,119432,119460,119461,119462,119463,119468,119469,119545,119546,119547,119548,119549,119635,119636,119637,119638,119642,119643,119644,119645,119726,119727,119729,119730,119734,119735,119742,119743,119758,119759,119760,119761,119762,119841,119852,119853,119854,119880,119927,119928,119941,119942,120396,120487,120488,120525,120605,120606,120690,120691,120694,120695,120697,120698,120701,120702,120781,120782,120786,120787,120788,120789,120790,120799,120800,120813,120814,120815,120816,120817,120897,120898,120909,120910,120911,120912,120913,120936,120937,120982,120983,120984,120998,121451,121452,121544,121581,121662,121663,121746,121751,121752,121753,121758,121837,121856,121857,121869,121870,121953,121954,121955,121966,121967,121968,121969,121970,121992,121993,121994,122038,122039,122054,122506,122507,122508,122600,122636,122637,122719,122776,122777,122778,122779,122802,122814,122893,122913,122914,122925,123010,123011,123012,123013,123014,123025,123026,123049,123050,123051,123052,123053,123054,123055,123094,123109,123110,123562,123563,123655,123656,123691,123692,123693,123775,123831,123832,123835,123836,123848,123849,123850,123857,123858,123864,123865,123870,123871,123949,123950,123970,123981,124067,124068,124069,124070,124071,124082,124106,124107,124108,124109,124110,124111,124112,124150,124151,124164,124165,124166,124618,124710,124711,124747,124748,124831,124832,124862,124863,124864,124881,124882,124883,124884,124886,124887,124892,124893,124903,124904,124906,124907,124912,124913,124920,124921,124922,124927,124928,125005,125006,125007,125026,125036,125037,125126,125127,125137,125138,125167,125168,125207,125208,125220,125221,125674,125766,125803,125818,125819,125820,125821,125888,125889,125912,125913,125914,125915,125917,125918,125920,125921,125936,125937,125940,125941,125942,125949,125959,125963,125964,125965,125966,125967,125968,125977,125978,125984,126062,126063,126081,126082,126091,126092,126093,126183,126193,126224,126264,126276,126730,126731,126822,126859,126871,126872,126873,126874,126877,126878,126945,126967,126968,126971,126972,126973,126977,126978,126991,126992,127005,127015,127034,127040,127119,127136,127137,127138,127146,127147,127148,127239,127249,127280,127281,127320,127331,127332,127787,127788,127878,127879,127915,127916,127926,127927,127934,127935,128001,128021,128022,128023,128034,128047,128061,128062,128064,128065,128066,128067,128070,128071,128090,128096,128097,128139,128140,128141,128174,128175,128192,128193,128202,128203,128295,128305,128336,128337,128338,128375,128376,128386,128387,128388,128844,128934,128935,128972,128973,128981,128982,128991,129057,129058,129076,129077,129090,129103,129118,129119,129120,129123,129124,129125,129126,129146,129153,129154,129194,129195,129197,129198,129229,129230,129248,129258,129351,129361,129362,129393,129394,129409,129410,129411,129412,129430,129431,129432,129442,129443,129900,129991,130029,130037,130047,130052,130053,130114,130115,130116,130117,130131,130132,130146,130147,130149,130150,130151,130158,130159,130201,130202,130210,130249,130250,130254,130255,130256,130257,130262,130263,130264,130285,130304,130314,130407,130408,130417,130418,130419,130450,130464,130465,130466,130467,130468,130469,130472,130473,130474,130475,130486,130487,130498,130956,131047,131085,131093,131103,131104,131107,131108,131109,131110,131117,131118,131119,131173,131174,131187,131203,131204,131205,131207,131208,131213,131214,131257,131266,131280,131281,131282,131283,131305,131313,131314,131317,131318,131320,131321,131341,131359,131360,131370,131371,131463,131464,131465,131474,131475,131506,131507,131519,131520,131521,131524,131525,131526,131527,131528,131529,131530,131531,131532,131536,131542,131554,132012,132102,132103,132140,132141,132148,132149,132160,132161,132163,132166,132167,132172,132173,132175,132176,132177,132230,132231,132243,132264,132265,132266,132267,132268,132269,132287,132288,132289,132290,132313,132321,132322,132335,132336,132339,132340,132346,132347,132348,132349,132353,132354,132355,132356,132357,132358,132361,132370,132371,132372,132373,132377,132378,132397,132414,132415,132416,132427,132428,132520,132521,132531,132562,132563,132564,132565,132566,132574,132575,132576,132581,132582,132583,132584,132587,132588,132589,132590,132591,132592,132593,132597,132598,132610,133067,133068,133158,133196,133197,133203,133204,133217,133218,133219,133223,133228,133233,133234,133287,133297,133298,133299,133342,133343,133344,133345,133346,133353,133354,133355,133356,133357,133369,133370,133376,133377,133378,133390,133391,133396,133397,133401,133402,133405,133406,133408,133409,133414,133415,133416,133417,133434,133435,133453,133470,133471,133484,133485,133486,133487,133577,133586,133587,133619,133620,133621,133622,133623,133630,133631,133644,133645,133646,133647,133648,133649,133650,133652,133653,133654,133666,133667,134122,134123,134124,134180,134181,134182,134183,134184,134185,134186,134214,134252,134259,134279,134284,134290,134291,134343,134347,134348,134349,134350,134352,134353,134398,134399,134402,134408,134409,134410,134411,134412,134413,134414,134425,134426,134427,134432,134433,134446,134453,134454,134455,134456,134457,134462,134463,134464,134471,134472,134491,134509,134510,134526,134543,134544,134633,134642,134678,134679,134686,134705,134706,134707,134708,134709,134723,134724,135178,135179,135235,135236,135242,135243,135270,135308,135315,135335,135340,135347,135399,135400,135402,135403,135406,135407,135408,135454,135455,135458,135464,135465,135469,135470,135482,135483,135488,135502,135547,135565,135566,135567,135582,135600,135601,135688,135689,135698,135735,135742,135762,135763,135764,135780,136234,136290,136291,136299,136300,136301,136326,136364,136371,136390,136391,136396,136397,136403,136456,136457,136458,136511,136514,136520,136526,136539,136544,136558,136602,136603,136622,136623,136638,136657,136743,136744,136754,136755,136791,136792,136797,136798,136836,137290,137345,137346,137357,137358,137382,137383,137419,137420,137427,137428,137446,137452,137453,137459,137460,137567,137570,137571,137576,137581,137582,137594,137595,137600,137601,137614,137657,137658,137659,137679,137694,137695,137713,137799,137810,137811,137812,137817,137818,137819,137820,137847,137848,137849,137852,137853,137854,137892,138346,138347,138400,138401,138414,138415,138438,138439,138440,138475,138476,138484,138485,138486,138487,138502,138509,138516,138517,138623,138626,138627,138628,138631,138632,138636,138637,138650,138657,138669,138670,138713,138714,138735,138751,138752,138768,138769,138855,138867,138868,138869,138870,138871,138872,138873,138874,138875,138876,138877,138904,138905,138906,138907,138908,138909,138948,139403,139404,139452,139453,139454,139455,139456,139471,139495,139496,139531,139543,139544,139545,139546,139547,139548,139557,139558,139564,139565,139573,139679,139680,139683,139684,139685,139686,139687,139688,139692,139706,139707,139713,139714,139724,139725,139769,139791,139808,139823,139824,139825,139911,139912,139924,139925,139926,139927,139928,139929,139932,139933,139961,139962,139963,139964,140004,140005,140460,140507,140508,140527,140528,140552,140587,140604,140605,140606,140607,140608,140612,140613,140619,140620,140629,140736,140737,140740,140741,140742,140743,140748,140749,140762,140763,140764,140770,140771,140780,140802,140803,140804,140805,140806,140811,140812,140813,140814,140815,140825,140847,140848,140864,140879,140880,140967,140968,140989,140996,140997,140998,140999,141061,141516,141562,141563,141584,141585,141608,141643,141644,141664,141665,141666,141667,141668,141669,141675,141685,141793,141804,141805,141806,141819,141820,141827,141836,141857,141858,141862,141863,141866,141867,141871,141872,141881,141882,141903,141904,141905,141919,141920,141935,142024,142045,142046,142049,142050,142051,142052,142053,142054,142055,142056,142117,142571,142572,142617,142618,142641,142663,142664,142700,142701,142731,142741,142742,142849,142850,142861,142862,142876,142883,142892,142893,142910,142911,142912,142913,142919,142920,142921,142922,142928,142929,142938,142939,142960,142961,142974,142975,142976,142991,143079,143080,143101,143102,143103,143104,143105,143106,143107,143108,143111,143112,143172,143173,143626,143627,143628,143673,143697,143718,143719,143757,143758,143759,143760,143787,143788,143798,143799,143906,143907,143918,143932,143939,143940,143948,143949,143950,143965,143966,143985,143995,144017,144030,144031,144046,144047,144135,144158,144159,144160,144161,144168,144227,144228,144229,144681,144682,144683,144729,144752,144753,144771,144772,144773,144774,144816,144817,144843,144844,144855,144860,144861,144862,144863,144963,144973,144974,144988,144996,144997,145005,145006,145007,145020,145021,145041,145051,145072,145073,145086,145102,145103,145191,145224,145225,145283,145284,145736,145737,145738,145785,145786,145807,145808,145809,145826,145827,145873,145874,145893,145894,145895,145900,145911,145912,145915,145916,145919,145920,146019,146029,146044,146053,146062,146063,146064,146076,146097,146106,146107,146127,146128,146142,146158,146189,146206,146247,146248,146280,146281,146282,146339,146792,146793,146841,146842,146843,146863,146864,146881,146882,146930,146948,146949,146951,146952,146955,146956,146968,146969,146970,146971,146976,146977,146978,146979,146980,147005,147006,147007,147008,147009,147010,147075,147076,147085,147100,147109,147119,147120,147132,147153,147161,147162,147163,147183,147198,147214,147244,147245,147262,147263,147266,147303,147304,147305,147337,147338,147395,147396,147848,147898,147899,147900,147901,147902,147919,147937,147986,148004,148008,148009,148010,148011,148036,148037,148060,148061,148062,148063,148065,148066,148067,148068,148069,148132,148133,148140,148141,148155,148156,148164,148165,148176,148187,148188,148209,148210,148216,148217,148218,148239,148254,148255,148270,148271,148296,148297,148298,148299,148300,148301,148318,148319,148320,148321,148322,148360,148361,148362,148363,148364,148365,148366,148393,148394,148452,148453,148904,148955,148956,148957,148958,148959,148974,148975,148993,149042,149060,149061,149093,149116,149117,149122,149123,149124,149125,149126,149143,149144,149145,149146,149189,149196,149210,149211,149219,149220,149221,149231,149232,149241,149242,149243,149266,149267,149272,149273,149295,149311,149312,149313,149314,149327,149328,149352,149353,149354,149355,149356,149375,149376,149377,149378,149417,149418,149419,149420,149421,149422,149423,149449,149509,149960,149961,150014,150015,150016,150021,150022,150023,150024,150029,150030,150031,150049,150050,150098,150116,150117,150118,150132,150133,150134,150135,150148,150149,150172,150181,150182,150198,150199,150202,150203,150204,150205,150206,150245,150252,150266,150275,150276,150286,150287,150296,150297,150323,150324,150328,150351,150352,150370,150371,150384,150478,150479,150480,150505,150565,151017,151018,151019,151020,151071,151072,151073,151074,151075,151076,151077,151078,151079,151080,151081,151082,151083,151084,151085,151086,151105,151106,151107,151153,151154,151173,151174,151187,151188,151189,151190,151191,151192,151203,151204,151205,151228,151238,151254,151262,151263,151264,151301,151302,151308,151322,151331,151342,151351,151352,151380,151384,151407,151408,151409,151427,151428,151440,151535,151536,151561,151562,151620,151621,152076,152077,152128,152129,152130,152131,152132,152133,152136,152137,152138,152139,152140,152141,152162,152163,152164,152208,152209,152210,152230,152243,152244,152247,152248,152259,152260,152283,152284,152294,152310,152320,152321,152358,152359,152364,152378,152379,152387,152398,152406,152407,152436,152440,152441,152464,152465,152484,152495,152496,152592,152617,152618,152619,152628,152629,152630,152631,152675,152676,152677,153133,153134,153219,153220,153221,153264,153265,153286,153299,153304,153315,153339,153340,153350,153351,153366,153377,153378,153415,153420,153421,153434,153435,153436,153443,153444,153454,153455,153462,153491,153492,153497,153498,153521,153540,153550,153551,153552,153614,153615,153616,153617,153618,153619,153648,153649,153674,153675,153676,153677,153678,153679,153680,153681,153682,153683,153684,153685,153686,153687,153688,153689,153690,153691,153692,153731,153732,154190,154276,154277,154320,154342,154343,154355,154360,154361,154371,154395,154406,154407,154408,154422,154423,154434,154471,154476,154477,154478,154491,154492,154500,154501,154510,154511,154512,154518,154547,154548,154554,154577,154595,154596,154606,154607,154669,154670,154675,154676,154678,154679,154680,154681,154704,154705,154706,154709,154710,154711,154712,154731,154732,154733,154734,154735,154736,154737,154738,154739,154740,154743,154744,154745,154746,154747,154748,154749,154786,154787,155246,155333,155376,155398,155399,155400,155410,155411,155416,155417,155418,155419,155427,155428,155451,155463,155464,155478,155479,155480,155490,155526,155527,155533,155534,155548,155557,155567,155568,155574,155575,155603,155610,155633,155650,155651,155652,155662,155725,155732,155733,155734,155737,155738,155739,155761,155762,155763,155764,155765,155766,155767,155768,155769,155804,155805,155806,155807,155808,155841,155842,155843,155872,155873,155874,155875,156302,156388,156389,156431,156432,156455,156456,156465,156466,156467,156473,156474,156475,156484,156485,156507,156520,156535,156536,156545,156546,156581,156582,156583,156590,156604,156605,156613,156624,156630,156631,156632,156659,156660,156666,156689,156690,156706,156707,156718,156780,156781,156795,156796,156818,156819,156820,156821,156824,156825,156861,156862,156863,156864,156865,156894,156895,156896,156897,156898,156927,156928,156929,156930,156931,156932,157358,157443,157444,157486,157487,157488,157512,157521,157522,157531,157540,157541,157563,157575,157576,157591,157592,157600,157601,157602,157632,157633,157634,157635,157636,157637,157638,157646,157660,157661,157662,157669,157679,157680,157687,157688,157689,157690,157691,157716,157717,157722,157745,157746,157747,157762,157774,157775,157835,157836,157852,157853,157881,157920,157921,157922,157923,157924,157947,157948,157949,157950,157951,157952,157953,157983,157984,157987,157988,158414,158499,158542,158543,158552,158553,158554,158568,158577,158587,158593,158594,158595,158596,158597,158619,158620,158631,158645,158646,158647,158656,158657,158687,158688,158689,158690,158691,158692,158693,158702,158703,158717,158718,158725,158734,158735,158744,158745,158746,158747,158748,158773,158778,158802,158803,158818,158819,158831,158832,158891,158892,158909,158937,158938,158977,158978,158979,158980,158981,159002,159003,159004,159005,159006,159038,159039,159044,159470,159555,159598,159607,159608,159610,159611,159613,159614,159615,159616,159617,159624,159625,159633,159634,159643,159644,159649,159650,159651,159652,159676,159677,159687,159700,159701,159712,159740,159741,159742,159743,159744,159758,159759,159760,159773,159774,159780,159781,159790,159803,159804,159829,159834,159835,159859,159875,159876,159888,159889,159947,159948,159949,159950,159951,159964,159965,159993,159994,159995,160000,160001,160002,160003,160015,160016,160017,160018,160019,160020,160036,160037,160058,160059,160075,160076,160077,160078,160093,160094,160095,160100,160526,160527,160609,160610,160611,160654,160663,160667,160668,160669,160673,160674,160680,160681,160690,160691,160699,160700,160701,160704,160705,160721,160722,160723,160724,160733,160734,160743,160744,160754,160755,160756,160768,160795,160796,160797,160798,160799,160815,160816,160829,160835,160836,160837,160846,160860,160884,160885,160891,160914,160915,160932,160945,161004,161005,161006,161007,161008,161019,161020,161021,161050,161051,161052,161053,161054,161055,161056,161057,161058,161059,161060,161070,161071,161072,161073,161074,161075,161076,161077,161093,161114,161123,161124,161125,161130,161131,161132,161133,161134,161135,161146,161147,161148,161149,161150,161156,161157,161583,161584,161664,161665,161710,161711,161719,161730,161731,161732,161733,161737,161747,161756,161757,161758,161759,161760,161761,161776,161777,161780,161781,161790,161799,161800,161801,161809,161810,161823,161824,161851,161852,161872,161885,161886,161891,161892,161902,161916,161939,161940,161941,161947,161969,161970,161988,162001,162063,162064,162075,162076,162107,162108,162109,162110,162111,162112,162115,162116,162126,162127,162132,162133,162149,162150,162169,162170,162179,162180,162181,162182,162183,162184,162185,162186,162187,162190,162191,162192,162193,162194,162195,162196,162201,162202,162203,162204,162205,162212,162213,162214,162640,162719,162720,162767,162768,162775,162776,162789,162790,162792,162793,162803,162804,162813,162814,162815,162816,162828,162829,162830,162832,162837,162846,162856,162857,162865,162878,162879,162880,162907,162928,162929,162941,162942,162943,162947,162958,162972,162995,162996,163003,163025,163044,163045,163057,163120,163131,163172,163173,163182,163189,163205,163206,163207,163216,163217,163218,163219,163224,163225,163226,163237,163238,163239,163240,163241,163242,163247,163248,163249,163250,163251,163252,163253,163254,163255,163256,163257,163258,163269,163270,163696,163775,163824,163825,163826,163827,163828,163829,163831,163832,163833,163846,163847,163848,163860,163861,163883,163884,163886,163887,163888,163893,163901,163902,163913,163921,163934,163935,163963,163984,163985,163986,163989,163990,163991,163992,163998,163999,164003,164014,164015,164027,164028,164051,164059,164081,164101,164102,164113,164176,164177,164186,164187,164228,164229,164230,164237,164238,164245,164246,164248,164249,164250,164251,164262,164263,164264,164265,164266,164267,164268,164269,164270,164271,164272,164273,164274,164275,164276,164277,164278,164279,164280,164281,164308,164309,164310,164311,164312,164313,164326,164752,164753,164813,164814,164815,164816,164831,164885,164886,164888,164889,164890,164917,164938,164939,164949,164950,164956,164957,164958,164968,164969,164977,164978,164990,165018,165019,165041,165042,165043,165044,165045,165046,165047,165048,165049,165054,165055,165059,165060,165070,165071,165072,165082,165083,165107,165114,165115,165137,165158,165169,165170,165232,165233,165234,165237,165238,165239,165240,165241,165242,165243,165285,165286,165287,165288,165289,165292,165293,165294,165301,165302,165303,165304,165305,165306,165307,165308,165319,165320,165321,165322,165323,165324,165325,165326,165327,165328,165331,165332,165333,165334,165335,165336,165382,165809,165810,165868,165869,165872,165873,165886,165887,165942,165943,165945,165946,165947,165973,165994,166006,166007,166008,166012,166013,166024,166033,166034,166035,166046,166047,166073,166074,166075,166098,166099,166100,166101,166104,166105,166106,166107,166108,166110,166116,166117,166127,166128,166137,166138,166163,166169,166170,166171,166193,166214,166226,166227,166289,166290,166291,166292,166293,166294,166295,166297,166298,166342,166343,166344,166345,166346,166347,166348,166349,166358,166359,166360,166363,166364,166437,166438,166866,166892,166893,166894,166895,166896,166897,166923,166924,166929,166930,166931,166932,166933,166937,166938,166939,166940,166941,166942,166999,167002,167003,167028,167029,167050,167064,167065,167068,167079,167080,167090,167091,167103,167104,167129,167130,167161,167162,167163,167164,167166,167173,167184,167193,167219,167220,167225,167226,167249,167250,167270,167283,167346,167347,167348,167349,167401,167402,167403,167404,167420,167449,167492,167493,167922,167947,167948,167953,167954,167968,167969,167970,167971,167979,167989,167990,167992,167993,168055,168059,168083,168084,168085,168106,168107,168121,168124,168125,168134,168135,168147,168160,168185,168205,168206,168207,168208,168220,168222,168229,168240,168241,168249,168276,168277,168281,168305,168306,168307,168326,168339,168476,168477,168505,168548,168978,168991,168992,168993,168994,169002,169003,169010,169023,169024,169027,169028,169035,169046,169047,169048,169111,169115,169138,169139,169140,169146,169147,169148,169149,169162,169163,169164,169165,169166,169177,169181,169182,169183,169190,169202,169203,169215,169216,169241,169260,169261,169264,169265,169276,169278,169284,169285,169296,169297,169298,169305,169306,169333,169337,169362,169363,169381,169382,169394,169395,169532,169533,169534,169537,169538,169539,169540,169561,169562,169604,170034,170041,170042,170043,170044,170046,170047,170050,170051,170058,170066,170078,170079,170084,170085,170086,170087,170090,170091,170167,170170,170171,170194,170195,170201,170202,170205,170206,170207,170208,170209,170210,170219,170220,170221,170222,170223,170233,170234,170239,170240,170246,170255,170256,170257,170258,170270,170271,170272,170297,170298,170316,170321,170322,170331,170332,170334,170339,170340,170341,170353,170354,170361,170362,170363,170389,170393,170419,170436,170437,170438,170449,170450,170451,170589,170590,170591,170592,170593,170594,170595,170596,170597,170618,170660,170661,171090,171091,171096,171097,171100,171101,171102,171107,171114,171122,171123,171134,171143,171144,171145,171146,171222,171223,171226,171250,171257,171266,171267,171278,171279,171290,171291,171296,171297,171301,171302,171310,171311,171323,171324,171325,171326,171327,171354,171355,171361,171362,171363,171364,171365,171366,171372,171378,171386,171387,171389,171390,171395,171396,171410,171418,171419,171444,171445,171449,171450,171475,171489,171490,171491,171492,171493,171502,171503,171504,171505,171506,171516,171517,171518,171519,171646,171647,171648,171649,171652,171653,171674,171716,171717,171718,172147,172148,172149,172150,172151,172152,172163,172169,172170,172179,172180,172190,172278,172279,172282,172283,172306,172312,172313,172323,172335,172347,172353,172354,172355,172356,172357,172366,172378,172379,172380,172381,172382,172411,172416,172417,172422,172423,172427,172428,172434,172439,172440,172441,172442,172444,172445,172451,172465,172466,172475,172499,172500,172501,172506,172507,172531,172544,172545,172546,172547,172548,172557,172558,172559,172560,172561,172571,172572,172573,172574,172575,172576,172577,172578,172709,172729,172730,172773,172774,173219,173220,173223,173224,173225,173236,173237,173240,173241,173242,173243,173245,173246,173334,173338,173339,173340,173362,173366,173367,173368,173379,173390,173391,173403,173422,173434,173435,173467,173471,173472,173479,173480,173481,173482,173483,173490,173491,173494,173495,173499,173500,173507,173520,173521,173531,173532,173542,173555,173556,173563,173586,173587,173600,173601,173613,173614,173626,173627,173628,173631,173632,173633,173634,173635,173765,173766,173782,173783,173784,173785,173786,173830,174276,174277,174278,174279,174293,174294,174295,174296,174299,174300,174301,174390,174395,174396,174397,174398,174399,174418,174419,174421,174422,174434,174435,174444,174445,174446,174459,174460,174477,174478,174490,174522,174523,174527,174547,174548,174549,174550,174555,174563,174576,174587,174588,174589,174598,174611,174619,174641,174642,174656,174669,174677,174678,174679,174680,174681,174682,174683,174690,174691,174821,174822,174823,174837,174838,174839,174840,174841,174886,175446,175447,175452,175453,175454,175455,175456,175475,175476,175477,175489,175490,175491,175499,175500,175516,175517,175518,175520,175521,175522,175523,175530,175531,175532,175533,175546,175577,175578,175579,175583,175611,175612,175619,175632,175644,175645,175646,175653,175654,175666,175667,175674,175675,175697,175711,175712,175725,175732,175733,175734,175735,175736,175737,175738,175747,175878,175879,175880,175890,175891,175892,175893,175894,175941,175942,176503,176504,176511,176512,176545,176546,176555,176574,176575,176576,176579,176580,176585,176586,176601,176602,176632,176633,176634,176639,176640,176667,176668,176669,176675,176676,176687,176688,176701,176702,176703,176708,176709,176710,176721,176722,176723,176729,176730,176731,176753,176766,176767,176768,176781,176788,176789,176802,176803,176935,176936,176945,176946,176947,176948,176949,176996,176997,177560,177568,177600,177601,177611,177636,177641,177657,177658,177688,177689,177695,177696,177697,177724,177725,177732,177733,177742,177743,177758,177759,177760,177761,177762,177763,177764,177765,177772,177777,177778,177785,177786,177809,177810,177822,177823,177837,177844,177857,177858,177992,177993,177998,177999,178000,178001,178002,178052,178616,178624,178651,178652,178653,178654,178655,178656,178657,178667,178692,178693,178696,178697,178713,178744,178752,178753,178781,178789,178798,178815,178816,178817,178818,178819,178820,178828,178833,178841,178865,178866,178867,178878,178892,178893,178900,178913,179048,179049,179050,179051,179052,179053,179054,179055,179056,179057,179108,179671,179672,179679,179680,179706,179707,179708,179709,179710,179711,179712,179723,179724,179749,179750,179751,179752,179768,179769,179800,179809,179837,179838,179845,179854,179884,179885,179888,179889,179897,179898,179922,179923,179934,179935,179947,179948,179949,179956,179969,179970,180105,180106,180107,180108,180109,180110,180164,180165,180726,180727,180728,180734,180735,180762,180763,180779,180780,180781,180819,180820,180821,180822,180823,180824,180825,180855,180856,180864,180865,180893,180894,180895,180900,180901,180910,180940,180941,180942,180943,180944,180945,180954,180955,180979,180991,180992,181003,181004,181012,181013,181025,181026,181220,181221,181222,181782,181783,181790,181817,181818,181836,181837,181838,181839,181840,181841,181842,181874,181875,181876,181877,181878,181879,181880,181910,181911,181912,181920,181950,181951,181952,181955,181956,181957,181966,181997,181998,181999,182000,182011,182034,182035,182048,182059,182069,182070,182082,182277,182278,182838,182846,182847,182868,182869,182870,182871,182872,182873,182874,182893,182894,182895,182896,182897,182898,182899,182930,182931,182966,182967,182976,183007,183008,183009,183010,183011,183012,183022,183023,183067,183089,183090,183104,183115,183126,183127,183137,183138,183334,183894,183902,183903,183904,183905,183906,183907,183908,183923,183924,183925,183926,183927,183928,183929,183954,183955,183962,183963,183964,183965,183985,183986,184022,184031,184032,184040,184041,184042,184043,184064,184065,184066,184067,184078,184079,184080,184123,184145,184159,184160,184171,184183,184191,184192,184193,184390,184950,184951,184959,184960,184961,184962,184963,184964,184965,184979,184980,185011,185017,185018,185019,185020,185021,185022,185023,185024,185038,185040,185041,185042,185078,185085,185086,185087,185095,185096,185099,185100,185135,185136,185143,185179,185201,185214,185215,185216,185227,185239,185240,185246,185247,185446,185447,186007,186008,186020,186021,186035,186067,186073,186074,186077,186078,186079,186080,186093,186094,186096,186097,186134,186135,186140,186141,186150,186151,186156,186157,186192,186199,186234,186235,186257,186258,186270,186271,186283,186284,186296,186297,186301,186302,186502,186503,186504,187064,187077,187090,187091,187123,187124,187129,187136,187149,187150,187191,187192,187193,187194,187195,187196,187206,187213,187248,187249,187254,187255,187289,187290,187291,187313,187314,187315,187326,187340,187341,187353,187357,187559,187560,188120,188133,188134,188145,188146,188147,188179,188180,188181,188184,188185,188192,188204,188205,188261,188262,188269,188304,188305,188306,188309,188310,188311,188345,188346,188370,188371,188381,188382,188397,188409,188413,188616,189175,189176,189189,189190,189191,189201,189202,189236,189237,189238,189239,189240,189241,189248,189249,189259,189260,189261,189315,189316,189317,189325,189334,189361,189362,189363,189364,189365,189366,189401,189427,189436,189437,189438,189453,189465,189469,189672,190230,190231,190232,190246,190247,190248,190249,190250,190257,190293,190294,190295,190296,190304,190305,190306,190312,190313,190314,190315,190316,190370,190371,190381,190382,190390,190418,190419,190420,190421,190456,190457,190482,190483,190492,190493,190509,190510,190727,190728,191286,191287,191303,191304,191305,191306,191307,191312,191313,191361,191362,191367,191368,191369,191370,191371,191426,191433,191434,191435,191438,191439,191446,191447,191511,191512,191513,191537,191538,191548,191566,191567,191782,191783,192342,192362,192363,192364,192365,192366,192367,192368,192369,192418,192423,192424,192482,192483,192488,192489,192490,192491,192492,192495,192496,192497,192502,192503,192504,192567,192568,192593,192604,192605,192623,192624,192838,193398,193419,193420,193421,193422,193423,193424,193474,193479,193538,193539,193540,193544,193545,193547,193548,193553,193554,193559,193560,193561,193562,193563,193564,193565,193623,193649,193661,193662,193680,193894,194454,194530,194531,194534,194535,194595,194596,194600,194604,194610,194611,194616,194617,194618,194619,194620,194621,194622,194678,194679,194704,194705,194718,194736,194949,194950,195379,195380,195381,195382,195509,195510,195586,195587,195588,195589,195590,195591,195652,195656,195660,195661,195667,195677,195678,195733,195734,195735,195759,195760,195774,195791,195792,195946,195947,195948,195949,196004,196005,196430,196431,196432,196433,196434,196435,196436,196437,196438,196439,196564,196565,196566,196643,196644,196645,196646,196708,196712,196716,196717,196723,196724,196734,196762,196789,196790,196815,196829,196830,196846,196847,196848,197001,197002,197005,197006,197007,197060,197485,197486,197487,197488,197489,197490,197491,197494,197495,197496,197497,197498,197499,197500,197505,197506,197507,197508,197509,197510,197620,197621,197700,197701,197764,197768,197769,197773,197780,197781,197790,197791,197818,197845,197871,197884,197885,197886,197902,197903,198056,198057,198063,198064,198116,198541,198542,198551,198552,198553,198554,198555,198556,198557,198560,198561,198562,198563,198564,198565,198566,198567,198676,198790,198791,198792,198793,198794,198820,198821,198825,198829,198837,198846,198847,198848,198874,198875,198900,198901,198927,198940,198941,198958,199112,199120,199121,199172,199173,199597,199612,199613,199614,199615,199616,199617,199622,199623,199624,199625,199659,199660,199661,199662,199664,199665,199666,199667,199668,199669,199732,199733,199845,199846,199850,199851,199876,199877,199878,199881,199885,199892,199893,199900,199901,199903,199904,199905,199930,199931,199932,199955,199956,199957,199983,199996,200014,200167,200168,200177,200228,200229,200230,200653,200669,200670,200671,200672,200679,200680,200681,200682,200712,200713,200714,200715,200716,200717,200718,200719,200720,200721,200722,200723,200724,200725,200726,200789,200900,200901,200907,200908,200933,200934,200937,200938,200941,200942,200947,200948,200949,200955,200956,200957,200960,200961,200962,200987,200988,200989,200990,200991,201008,201009,201010,201011,201012,201039,201040,201052,201070,201071,201222,201223,201233,201234,201285,201286,201709,201737,201738,201739,201767,201768,201769,201770,201771,201774,201775,201776,201781,201782,201845,201956,201964,201965,201966,201967,201990,201994,201995,201997,201998,201999,202000,202001,202002,202003,202004,202011,202012,202013,202017,202018,202044,202045,202046,202047,202048,202051,202052,202053,202054,202055,202056,202063,202064,202065,202066,202067,202095,202096,202097,202108,202127,202128,202277,202278,202290,202291,202292,202293,202342,202764,202765,202794,202795,202796,202823,202824,202838,202900,202901,203012,203023,203024,203045,203046,203051,203054,203055,203056,203057,203058,203059,203067,203069,203074,203103,203104,203105,203106,203107,203108,203109,203110,203111,203112,203113,203118,203119,203120,203152,203153,203164,203165,203184,203333,203349,203350,203398,203819,203820,203821,203851,203852,203853,203879,203894,203895,203897,203898,203899,203904,203905,203906,203955,203956,203957,204068,204069,204080,204081,204100,204101,204107,204111,204112,204123,204125,204126,204160,204161,204162,204163,204168,204169,204170,204173,204174,204175,204209,204221,204222,204240,204389,204406,204407,204453,204454,204870,204871,204872,204873,204874,204875,204876,204908,204909,204910,204934,204935,204950,204951,204952,204953,204954,204955,204956,204959,204960,204961,204962,205011,205012,205124,205125,205126,205137,205155,205156,205163,205178,205179,205181,205182,205185,205186,205187,205188,205225,205226,205227,205228,205229,205230,205265,205278,205295,205296,205445,205446,205463,205508,205509,205925,205926,205927,205928,205929,205930,205931,205965,205966,205989,205990,205991,206007,206008,206009,206011,206012,206013,206014,206015,206016,206018,206067,206181,206182,206193,206210,206211,206219,206234,206235,206238,206240,206241,206282,206283,206284,206285,206321,206334,206350,206351,206352,206501,206502,206519,206520,206564,206981,206982,207022,207042,207043,207044,207045,207046,207068,207069,207070,207071,207074,207123,207124,207238,207249,207266,207274,207275,207290,207291,207293,207294,207296,207376,207377,207389,207390,207405,207406,207407,207558,207576,207577,207620,208037,208078,208097,208098,208099,208100,208101,208130,208131,208180,208294,208305,208322,208323,208330,208331,208347,208348,208349,208352,208430,208431,208432,208444,208445,208446,208460,208461,208462,208614,208615,208633,208676,208677,209093,209134,209153,209154,209186,209187,209188,209236,209350,209360,209361,209378,209379,209380,209385,209386,209408,209409,209485,209486,209500,209501,209515,209516,209517,209670,209671,209672,209689,209732,209733,209734,210149,210190,210191,210198,210199,210200,210201,210208,210209,210243,210244,210245,210246,210247,210291,210292,210405,210406,210415,210416,210417,210435,210436,210437,210438,210439,210440,210441,210442,210464,210465,210466,210540,210541,210556,210571,210572,210727,210728,210729,210744,210745,210789,210790,211205,211246,211247,211248,211251,211252,211253,211254,211255,211256,211257,211258,211263,211264,211265,211300,211301,211302,211303,211304,211346,211347,211348,211458,211459,211460,211461,211471,211472,211492,211493,211494,211495,211496,211497,211521,211522,211596,211611,211612,211627,211784,211785,211786,211792,211799,211800,211801,211846,212261,212262,212303,212304,212305,212306,212307,212308,212309,212310,212313,212314,212315,212318,212319,212320,212359,212360,212402,212403,212513,212514,212527,212652,212666,212667,212668,212683,212841,212842,212848,212855,212856,212902,213318,213319,213360,213361,213362,213363,213370,213371,213372,213373,213374,213375,213416,213458,213568,213569,213583,213707,213708,213721,213722,213723,213738,213739,213898,213904,213905,213910,213911,213957,213958,214375,214376,214427,214428,214429,214430,214459,214460,214461,214462,214472,214514,214624,214639,214640,214760,214761,214762,214763,214777,214778,214793,214794,214795,214954,214960,214961,214962,214965,214966,214967,215011,215012,215013,215432,215506,215507,215508,215509,215510,215511,215514,215515,215516,215517,215518,215519,215528,215570,215680,215696,215697,215815,215816,215833,215846,215847,215848,215849,215850,216009,216010,216017,216018,216019,216020,216021,216022,216066,216067,216488,216559,216560,216561,216562,216563,216564,216565,216566,216567,216568,216569,216570,216571,216574,216575,216576,216584,216585,216626,216736,216737,216753,216870,216871,216889,216901,216902,216903,216904,216905,217065,217074,217075,217076,217077,217121,217122,217543,217544,217614,217615,217616,217617,217618,217623,217624,217625,217626,217631,217632,217640,217641,217642,217681,217682,217792,217793,217794,217809,217925,217926,217944,217945,217956,217957,217958,218120,218121,218177,218598,218599,218600,218670,218671,218688,218697,218698,218699,218700,218701,218736,218737,218738,218849,218850,218865,218866,218980,218981,218999,219000,219001,219009,219010,219011,219012,219013,219176,219233,219234,219654,219655,219725,219726,219744,219754,219755,219756,219757,219758,219792,219793,219906,219922,219923,220036,220050,220051,220052,220053,220054,220055,220056,220064,220065,220066,220067,220068,220232,220289,220290,220291,220710,220778,220779,220780,220781,220782,220800,220813,220814,220848,220962,220979,221092,221105,221106,221107,221108,221109,221110,221111,221120,221121,221288,221289,221346,221347,221348,221349,221350,221766,221833,221834,221835,221836,221837,221856,221870,221871,221904,222018,222035,222148,222149,222160,222161,222162,222176,222344,222345,222346,222403,222404,222405,222406,222407,222822,222823,222884,222885,222886,222887,222888,222889,222890,222912,222913,222926,222927,222928,222960,223074,223075,223090,223091,223204,223205,223206,223215,223216,223217,223232,223401,223402,223462,223463,223879,223880,223939,223940,223941,223942,223943,223944,223945,223968,223969,223970,223983,223984,224016,224130,224131,224132,224145,224146,224147,224261,224262,224263,224264,224265,224266,224267,224268,224269,224270,224271,224272,224288,224458,224519,224936,224995,224996,225025,225026,225027,225028,225029,225040,225071,225072,225187,225188,225201,225202,225318,225319,225320,225321,225322,225323,225324,225325,225326,225327,225344,225514,225575,225992,226051,226082,226083,226084,226085,226095,226096,226126,226127,226128,226244,226257,226400,226401,226569,226570,226630,226631,227047,227048,227107,227141,227151,227182,227183,227299,227300,227313,227457,227458,227625,227685,227686,228102,228103,228104,228162,228163,228197,228207,228238,228355,228369,228370,228514,228681,228741,229158,229159,229217,229218,229219,229253,229263,229294,229411,229426,229427,229570,229737,229797,230214,230273,230274,230309,230319,230320,230350,230351,230466,230467,230483,230625,230626,230792,230793,230852,230853,231270,231329,231364,231365,231375,231376,231377,231378,231379,231407,231408,231521,231522,231539,231540,231680,231681,231682,231848,231906,231907,231908,232326,232385,232392,232393,232394,232395,232420,232432,232433,232434,232435,232436,232464,232577,232596,232597,232598,232599,232600,232736,232737,232904,232961,232962,233382,233441,233442,233447,233448,233451,233452,233475,233476,233491,233492,233520,233633,233656,233657,233792,233959,233960,234017,234438,234439,234498,234499,234500,234501,234502,234503,234508,234509,234510,234524,234525,234526,234527,234530,234531,234548,234575,234576,234689,234690,234713,234714,234848,235015,235016,235073,235495,235496,235566,235567,235572,235573,235574,235577,235578,235579,235580,235583,235584,235585,235586,235603,235604,235630,235631,235632,235745,235746,235747,235770,235904,235905,236071,236072,236073,236128,236129,236552,236623,236624,236625,236626,236627,236628,236630,236631,236632,236633,236658,236659,236686,236687,236802,236803,236804,236805,236806,236807,236826,236961,236962,237128,237129,237183,237184,237608,237714,237742,237859,237860,237861,237862,237863,237864,237881,237882,238018,238185,238239,238664,238769,238770,238798,238919,238920,238936,238937,238938,239074,239241,239267,239268,239269,239270,239287,239288,239289,239290,239295,239720,239824,239825,239854,239855,239976,239992,239993,240130,240297,240321,240322,240323,240326,240327,240332,240333,240334,240335,240340,240341,240342,240343,240346,240347,240350,240351,240776,240777,240880,240911,240912,241032,241033,241048,241185,241186,241352,241353,241376,241377,241383,241384,241387,241388,241391,241392,241395,241396,241403,241404,241405,241406,241833,241834,241835,241836,241936,241968,242088,242089,242090,242104,242240,242241,242242,242408,242431,242432,242440,242441,242442,242443,242448,242449,242450,242451,242892,242893,242992,243024,243145,243146,243160,243161,243296,243297,243464,243465,243487,243949,243950,244048,244079,244080,244202,244217,244218,244219,244220,244352,244520,244521,244522,244537,244538,244539,244543,245006,245104,245105,245135,245136,245258,245276,245277,245408,245577,245578,245587,245588,245589,245590,245592,245593,245595,245596,245598,245599,246062,246160,246161,246191,246314,246333,246334,246464,246465,246634,246638,246639,246640,246642,246643,246646,246647,246648,246652,246653,246654,247118,247217,247246,247247,247370,247390,247521,247522,247523,247524,247529,247530,247531,247532,247690,247693,247694,247696,247697,247698,248173,248174,248273,248301,248302,248303,248426,248427,248446,248459,248580,248581,248584,248585,248588,248589,248590,248591,248743,248744,248745,248746,248748,248749,249228,249229,249230,249329,249357,249358,249482,249483,249484,249502,249503,249512,249513,249515,249637,249638,249639,249640,249647,249648,249798,249799,250284,250285,250384,250385,250413,250539,250540,250541,250542,250559,250560,250561,250562,250567,250568,250570,250571,250704,250705,250706,250707,250708,250853,250854,251340,251440,251469,251596,251597,251598,251599,251618,251619,251620,251621,251622,251623,251625,251626,251764,251765,251909,252396,252496,252524,252525,252654,252655,252656,252821,252822,252965,253452,253453,253551,253552,253577,253578,253579,253580,253581,253711,253712,253713,253878,253924,253925,253926,253927,253928,253929,254009,254010,254011,254012,254020,254021,254509,254510,254511,254512,254607,254632,254633,254634,254635,254636,254768,254769,254934,254979,254980,255064,255065,255068,255069,255070,255071,255072,255073,255074,255075,255076,255568,255569,255663,255664,255688,255689,255825,255990,256009,256010,256011,256012,256032,256033,256034,256035,256120,256625,256626,256719,256720,256721,256744,256880,256881,257046,257051,257052,257053,257054,257064,257065,257068,257069,257087,257088,257175,257176,257682,257776,257777,257800,257936,258102,258103,258106,258107,258110,258111,258115,258116,258117,258118,258119,258120,258125,258138,258139,258140,258141,258142,258143,258230,258231,258249,258250,258738,258759,258760,258761,258762,258833,258856,258992,259142,259159,259160,259161,259162,259167,259168,259170,259171,259181,259193,259194,259306,259794,259815,259816,259817,259818,259819,259822,259823,259824,259825,259826,259827,259889,259912,259913,260048,260191,260198,260224,260225,260226,260237,260238,260245,260246,260247,260248,260249,260362,260850,260871,260874,260875,260876,260877,260878,260879,260880,260881,260882,260883,260884,260945,260969,260970,261104,261105,261247,261254,261255,261294,261295,261296,261297,261300,261301,261418,261905,261906,261914,261915,261916,261917,261920,261921,261922,261923,261926,261927,261931,261932,261933,261934,261939,261940,262001,262002,262026,262160,262161,262162,262302,262303,262310,262311,262312,262353,262354,262355,262356,262474,262960,262961,262962,262969,262970,262971,262972,262973,262974,262975,262976,262977,262978,262979,262980,262981,262982,262983,262996,262997,263036,263037,263038,263039,263040,263041,263057,263058,263059,263082,263217,263218,263357,263358,263359,263367,263368,263369,263370,263371,263372,263373,263529,263530,264016,264017,264025,264026,264029,264030,264031,264032,264035,264036,264037,264038,264052,264053,264054,264089,264090,264091,264092,264093,264094,264095,264096,264097,264098,264114,264115,264137,264138,264274,264413,264414,264424,264425,264426,264427,264428,264429,264430,264584,264585,264586,265072,265081,265109,265110,265111,265112,265113,265138,265139,265140,265141,265142,265143,265144,265145,265146,265147,265148,265153,265154,265155,265156,265157,265171,265192,265193,265194,265329,265330,265469,265485,265486,265640,265641,266128,266137,266166,266167,266168,266169,266170,266191,266192,266193,266194,266195,266196,266197,266198,266199,266200,266201,266210,266211,266212,266213,266214,266227,266248,266249,266383,266384,266385,266525,266526,266542,266696,267183,267184,267193,267194,267225,267226,267246,267247,267248,267249,267250,267269,267270,267271,267283,267304,267438,267439,267582,267583,267584,267597,267598,267608,267609,267610,267611,267613,267614,267615,267616,267752,268238,268239,268240,268250,268251,268282,268302,268303,268326,268327,268338,268339,268360,268361,268362,268493,268494,268640,268641,268652,268653,268663,268664,268665,268666,268667,268668,268669,268670,268671,268672,268673,268807,268808,269294,269295,269307,269338,269357,269358,269383,269394,269418,269419,269549,269697,269698,269708,269718,269719,269720,269723,269724,269725,269728,269729,269862,269863,269864,270350,270362,270363,270393,270394,270412,270413,270414,270439,270450,270451,270475,270476,270605,270754,270764,270774,270775,270785,270918,270919,271406,271417,271418,271419,271448,271449,271468,271469,271495,271506,271507,271508,271532,271661,271662,271810,271820,271821,271830,271841,271842,271974,272462,272463,272473,272474,272493,272494,272495,272496,272504,272524,272550,272551,272563,272564,272588,272717,272718,272719,272866,272867,272876,272877,272878,272886,272897,272898,272899,273030,273519,273520,273529,273548,273549,273552,273553,273554,273555,273560,273580,273605,273606,273620,273644,273645,273774,273775,273923,273924,273933,273934,273942,273943,273954,273955,273956,273957,273958,274086,274087,274576,274585,274599,274600,274601,274602,274603,274604,274611,274612,274615,274616,274636,274661,274676,274701,274702,274703,274831,274980,274990,274999,275000,275011,275012,275013,275014,275015,275143,275144,275632,275641,275642,275649,275650,275651,275652,275654,275655,275668,275669,275670,275671,275692,275693,275717,275731,275732,275759,275760,275886,275887,276036,276046,276056,276070,276071,276082,276200,276688,276698,276699,276704,276705,276708,276709,276710,276749,276750,276751,276752,276762,276763,276764,276765,276766,276767,276772,276773,276787,276816,276817,276940,276941,276942,277091,277092,277102,277112,277127,277138,277256,277744,277755,277756,277757,277758,277759,277760,277808,277809,277815,277816,277817,277818,277823,277824,277827,277828,277842,277843,277873,277995,277996,278146,278147,278148,278157,278158,278168,278169,278182,278183,278193,278194,278199,278311,278312,278800,278801,278865,278866,278870,278871,278880,278881,278882,278883,278896,278897,278898,278929,279050,279051,279199,279200,279201,279202,279203,279213,279225,279226,279227,279237,279238,279248,279249,279250,279255,279366,279367,279368,279857,279922,279926,279951,279952,279984,279985,280106,280231,280254,280255,280256,280257,280258,280269,280283,280284,280293,280304,280305,280311,280312,280422,280423,280913,280978,280979,280981,280982,281006,281007,281039,281040,281041,281162,281286,281287,281310,281311,281325,281326,281340,281341,281349,281360,281367,281368,281369,281478,281968,281969,282035,282036,282037,282062,282095,282096,282217,282218,282342,282343,282366,282381,282382,282383,282384,282385,282397,282405,282406,282416,282417,282424,282425,282534,283023,283024,283025,283118,283151,283152,283271,283272,283273,283422,283423,283438,283439,283440,283441,283442,283453,283461,283462,283463,283473,283474,283481,283590,284079,284080,284174,284208,284209,284314,284315,284316,284317,284326,284327,284479,284480,284488,284489,284490,284491,284497,284498,284509,284510,284518,284519,284530,284537,284538,284645,284646,285135,285230,285231,285265,285266,285369,285370,285373,285374,285381,285382,285536,285542,285543,285544,285547,285548,285554,285566,285567,285575,285585,285586,285593,285594,285595,285700,285701,285702,286191,286286,286287,286288,286322,286424,286425,286430,286431,286437,286592,286597,286598,286604,286610,286611,286623,286631,286632,286640,286641,286642,286650,286651,286753,286754,286755,286756,286757,287247,287248,287343,287344,287345,287346,287347,287378,287480,287487,287493,287647,287648,287652,287653,287660,287666,287667,287668,287679,287687,287688,287689,287696,287697,287707,287806,287807,287808,287809,287810,287811,287812,288304,288305,288400,288401,288402,288403,288404,288433,288434,288472,288473,288474,288475,288476,288536,288543,288544,288548,288549,288702,288703,288704,288708,288716,288723,288724,288725,288735,288736,288744,288745,288752,288763,288861,288862,288863,288864,288865,289361,289459,289460,289488,289489,289490,289516,289517,289518,289519,289527,289528,289532,289533,289592,289600,289601,289602,289603,289604,289758,289759,289764,289772,289773,289780,289781,289792,289793,289794,289801,289802,289807,289808,289818,289819,289917,289918,290417,290516,290544,290545,290571,290572,290575,290576,290582,290583,290589,290590,290606,290607,290608,290609,290615,290616,290617,290618,290622,290623,290624,290647,290648,290814,290820,290821,290829,290830,290837,290838,290850,290851,290857,290858,290859,290862,290863,290864,290872,290873,290874,290973,291472,291473,291572,291600,291626,291627,291632,291633,291634,291635,291637,291638,291646,291661,291662,291665,291666,291667,291670,291671,291674,291675,291677,291678,291680,291681,291682,291683,291684,291685,291691,291692,291693,291694,291702,291703,291870,291871,291876,291877,291878,291886,291893,291894,291895,291907,291908,291914,291915,291916,291917,291918,291919,291927,291928,292029,292527,292528,292529,292628,292656,292672,292673,292674,292675,292676,292677,292682,292691,292692,292693,292702,292716,292717,292723,292724,292725,292726,292731,292732,292733,292741,292742,292746,292747,292750,292751,292758,292927,292928,292933,292934,292942,292950,292951,292964,292971,292972,292973,292974,292982,292983,293084,293085,293582,293583,293584,293684,293712,293727,293728,293733,293734,293737,293738,293758,293759,293772,293798,293799,293800,293801,293802,293807,293808,293809,293810,293814,293984,293990,293991,293998,293999,294007,294008,294020,294038,294139,294140,294141,294638,294639,294739,294740,294768,294781,294782,294783,294790,294791,294792,294793,294815,294816,294828,294866,294867,294869,294870,295040,295046,295047,295048,295055,295056,295057,295063,295064,295065,295076,295094,295195,295196,295694,295793,295794,295795,295824,295825,295831,295832,295833,295836,295837,295872,295883,295884,295923,295924,295925,296095,296096,296103,296104,296105,296106,296107,296113,296114,296120,296121,296131,296132,296144,296145,296146,296147,296149,296150,296251,296750,296848,296849,296881,296882,296886,296887,296889,296890,296891,296892,296928,296934,296935,296936,296937,296938,296939,297150,297151,297152,297160,297161,297162,297163,297164,297170,297171,297177,297186,297187,297188,297199,297200,297203,297204,297205,297307,297806,297903,297904,297938,297939,297940,297941,297942,297984,297985,297989,297990,298203,298204,298205,298206,298207,298219,298220,298227,298233,298242,298243,298252,298253,298254,298255,298363,298364,298862,298959,299041,299042,299043,299044,299045,299258,299259,299260,299261,299262,299276,299283,299289,299290,299297,299298,299305,299306,299307,299308,299420,299421,299918,299919,300015,300016,300314,300315,300332,300333,300338,300339,300345,300346,300347,300352,300353,300354,300360,300361,300477,300975,300976,301071,301072,301073,301370,301388,301389,301390,301393,301394,301395,301402,301403,301404,301405,301406,301407,301408,301409,301415,301416,301533,302032,302033,302128,302129,302426,302427,302445,302446,302447,302448,302449,302450,302459,302460,302461,302462,302463,302464,302471,302588,302589,303089,303185,303483,303484,303502,303503,303504,303505,303527,303637,303638,303639,303640,303643,303644,303645,304145,304241,304540,304550,304551,304552,304553,304582,304583,304692,304693,304694,304695,304696,304697,304698,304699,304700,305200,305201,305297,305298,305596,305605,305606,305609,305610,305621,305622,305623,305624,305628,305629,305630,305631,305635,305636,305637,305638,305654,305655,305656,305657,305741,305742,305743,305744,305747,305748,305749,305752,305753,305754,305755,306255,306256,306257,306353,306354,306355,306652,306653,306660,306661,306666,306667,306668,306669,306676,306677,306680,306681,306683,306684,306687,306688,306690,306691,306707,306708,306709,306710,306711,306712,306713,306714,306717,306718,306719,306720,306721,306722,306746,306747,306748,306749,306750,306751,306752,306753,306768,306769,306770,306771,306794,306795,306796,306797,306798,306799,306800,306801,306802,306803,306804,307310,307311,307312,307410,307411,307412,307413,307414,307709,307710,307716,307725,307726,307731,307732,307737,307738,307739,307744,307745,307746,307762,307763,307764,307765,307766,307769,307770,307771,307772,307773,307774,307775,307776,307777,307778,307779,307789,307790,307791,307792,307801,307802,307803,307804,307805,307806,307807,307808,307809,307810,307813,307814,307815,307816,307821,307822,307823,307824,307825,307826,307827,307828,307829,307830,307835,307836,307837,307838,307841,307842,307843,307844,307845,307846,307849,307850,307851,307852,307853,307856,307857,307858,307859,308352,308353,308354,308355,308356,308357,308358,308359,308360,308361,308362,308363,308364,308365,308366,308367,308467,308468,308469,308470,308471,308472,308473,308474,308475,308476,308477,308478,308479,308480,308481,308482,308483,308484,308766,308767,308768,308772,308782,308783,308784,308785,308786,308787,308817,308818,308819,308826,308827,308828,308829,308834,308835,308836,308837,308838,308840,308841,308842,308843,308844,308845,308846,308847,308848,308849,308854,308855,308856,308857,308858,308865,308866,308867,308868,308869,308870,308871,308872,308873,308876,308877,308878,308879,308880,308883,308884,308885,308886,308887,308890,308891,308892,308893,308894,308895,308896,308897,308898,308899,308900,308901,308902,308903,308904,308905,308906,309408,309409,309410,309411,309412,309413,309414,309415,309416,309417,309418,309419,309420,309421,309422,309526,309527,309528,309529,309530,309531,309532,309533,309534,309535,309536,309537,309538,309539,309540,309824,309825,309827,309828,309873,309874,309891,309892,309893,309894,309895,309896,309897,309898,309899,309900,309901,309904,309905,309906,309907,309908,309909,309910,309911,309912,309913,309922,309923,309924,309925,309928,309929,309930,309931,309932,309933,309942,309943,309944,309945,309946,309947,309950,309951,309952,309953,309958,309959,309960,309961,310881,310882,310883,310929,310950,310951,310952,310961,310962,310963,310964,310965,310966,310985,310986,310987,310988,310999,311000,311001,311002,311985,312576,312577,312578,312579,312580,312581,312582,312583,312584,312585,312586,312587,312588,312589,312590,312591,312592,312593,312594,312595,312596,312597,312604,312605,312606,312607,312608,312609,312610,312611,312612,312613,312614,312615,312616,312617,312618,312619,312620,312621,312622,312623,312624,312625,312626,312627,312628,312629,312630,312631,312632,312633,312634,312635,312636,312637,312638,312639,312640,312641,312642,312643,312644,312645,312646,312647,312648,312649,312650,312651,312652,312653,312654,312655,312656,312657,312658,312659,312660,312661,312662,312663,312664,312665,312666,312667,312668,312669,312670,312681,312682,312683,312684,312685,312686,312687,312688,312689,312690,312691,312692,312693,312694,312695,312696,312697,312698,312699,312700,312701,312702,312703,312704,312705,312706,312707,312708,313040,313041,313632,313633,313634,313635,313636,313637,313638,313639,313640,313641,313642,313643,313644,313645,313646,313647,313648,313649,313650,313651,313652,313653,313660,313661,313662,313663,313664,313665,313666,313667,313668,313669,313670,313671,313672,313673,313674,313675,313676,313677,313678,313679,313680,313681,313682,313683,313684,313685,313686,313687,313688,313689,313690,313691,313692,313693,313694,313695,313696,313697,313698,313699,313700,313701,313702,313703,313704,313705,313706,313707,313708,313709,313710,313711,313712,313713,313714,313715,313716,313717,313718,313719,313720,313721,313722,313723,313724,313725,313726,313737,313738,313739,313740,313741,313742,313743,313744,313745,313746,313747,313748,313749,313750,313751,313752,313753,313754,313755,313756,313757,313758,313759,313760,313761,313762,313763,313764,314095,314096,314097,314688,314689,314690,314691,314692,314693,314694,314695,314696,314697,314698,314699,314700,314701,314702,314703,314704,314705,314706,314707,314708,314709,314710,314715,314716,314717,314718,314719,314720,314721,314722,314723,314724,314725,314726,314727,314728,314729,314730,314731,314732,314733,314734,314735,314736,314737,314738,314739,314740,314741,314742,314743,314744,314745,314746,314747,314748,314749,314750,314751,314752,314753,314754,314755,314756,314757,314758,314759,314760,314761,314762,314763,314764,314765,314766,314767,314768,314769,314770,314771,314772,314773,314774,314775,314776,314777,314778,314779,314780,314781,314782,314783,314793,314794,314795,314796,314797,314798,314799,314800,314801,314802,314803,314804,314805,314806,314807,314808,314809,314810,314811,314812,314813,314814,314815,314816,314817,314818,314819,314820,315148,315149,315150,315151,315152,315744,315745,315746,315747,315748,315749,315750,315751,315752,315753,315754,315755,315756,315757,315758,315759,315760,315761,315762,315763,315764,315765,315766,315767,315768,315769,315770,315771,315772,315773,315774,315775,315776,315777,315778,315779,315780,315781,315782,315783,315784,315785,315786,315787,315788,315789,315790,315791,315792,315793,315794,315795,315796,315797,315798,315799,315800,315801,315802,315803,315804,315805,315806,315807,315808,315809,315810,315811,315812,315813,315814,315815,315816,315817,315818,315819,315820,315821,315822,315823,315824,315825,315826,315827,315828,315829,315830,315831,315832,315833,315834,315835,315836,315837,315838,315839,315848,315849,315850,315851,315852,315853,315854,315855,315856,315857,315858,315859,315860,315861,315862,315863,315864,315865,315866,315867,315868,315869,315870,315871,315872,315873,315874,315875,315876,316201,316202,316203,316204,316205,316206,316207,316800,316801,316802,316803,316804,316805,316806,316807,316808,316809,316810,316811,316812,316813,316814,316815,316816,316817,316818,316819,316820,316821,316822,316823,316824,316825,316826,316827,316828,316829,316830,316831,316832,316833,316834,316835,316836,316837,316838,316839,316840,316841,316842,316843,316844,316845,316846,316847,316848,316849,316850,316851,316852,316853,316854,316855,316856,316857,316858,316859,316860,316861,316862,316863,316864,316865,316866,316867,316868,316869,316870,316871,316872,316873,316874,316875,316876,316877,316878,316879,316880,316881,316882,316883,316884,316885,316886,316887,316888,316889,316890,316891,316892,316893,316894,316895,316896,316901,316902,316903,316904,316905,316906,316907,316908,316909,316910,316911,316912,316913,316914,316915,316916,316917,316918,316919,316920,316921,316922,316923,316924,316925,316926,316927,316928,316929,316930,316931,316932,317248,317249,317250,317251,317256,317257,317258,317259,317260,317856,317857,317858,317859,317860,317861,317862,317863,317864,317865,317866,317867,317868,317869,317870,317871,317872,317873,317874,317875,317876,317877,317878,317879,317880,317881,317882,317883,317884,317885,317886,317887,317888,317889,317890,317891,317892,317893,317894,317895,317896,317897,317898,317899,317900,317901,317902,317903,317904,317905,317906,317907,317908,317909,317910,317911,317912,317913,317914,317915,317916,317917,317918,317919,317920,317921,317922,317923,317924,317925,317926,317927,317928,317929,317930,317931,317932,317933,317934,317935,317936,317937,317938,317939,317940,317941,317942,317943,317944,317945,317946,317947,317948,317949,317950,317951,317952,317953,317954,317955,317956,317957,317958,317959,317960,317961,317962,317963,317964,317965,317966,317967,317968,317969,317970,317971,317972,317973,317974,317975,317976,317977,317978,317979,317980,317981,317982,317983,317984,317985,317986,317987,317988,318303,318304,318305,318306,318307,318308,318309,318310,318311,318312,318313,318912,318913,318914,318915,318916,318917,318918,318919,318920,318921,318922,318923,318924,318925,318926,318927,318928,318929,318930,318931,318932,318933,318934,318935,318936,318937,318938,318939,318940,318941,318942,318943,318944,318945,318946,318947,318948,318949,318950,318951,318952,318953,318954,318955,318956,318957,318958,318959,318960,318961,318962,318963,318964,318965,318966,318967,318968,318969,318970,318971,318972,318973,318974,318975,318976,318977,318978,318979,318980,318981,318982,318983,318984,318985,318986,318987,318988,318989,318990,318991,318992,318993,318994,318995,318996,318997,318998,318999,319000,319001,319002,319003,319004,319005,319006,319007,319008,319009,319010,319011,319012,319013,319014,319015,319016,319017,319018,319019,319020,319021,319022,319023,319024,319025,319026,319027,319028,319029,319030,319031,319032,319033,319034,319035,319036,319037,319038,319039,319040,319041,319042,319043,319044,319359,319360,319363,319364,319365,319366,319367,319368,319968,319969,319970,319971,319972,319973,319974,319975,319976,319977,319978,319979,319980,319981,319982,319983,319984,319985,319986,319987,319988,319989,319990,319991,319992,319993,319994,319995,319996,319997,319998,319999,320000,320001,320002,320003,320004,320005,320006,320007,320008,320009,320010,320011,320012,320013,320014,320015,320016,320017,320018,320019,320020,320021,320022,320023,320024,320025,320026,320027,320028,320029,320030,320031,320032,320033,320034,320035,320036,320037,320038,320039,320040,320041,320042,320043,320044,320045,320046,320047,320048,320049,320050,320051,320052,320053,320054,320055,320056,320057,320058,320059,320060,320061,320062,320063,320064,320065,320066,320067,320068,320069,320070,320071,320072,320073,320074,320075,320076,320077,320078,320079,320080,320081,320082,320083,320084,320085,320086,320087,320088,320089,320090,320091,320092,320093,320094,320095,320096,320097,320098,320099,320100,320415,321024,321025,321026,321027,321028,321029,321030,321031,321032,321033,321034,321035,321036,321037,321038,321039,321040,321041,321042,321043,321044,321045,321046,321047,321048,321049,321050,321051,321052,321053,321054,321055,321056,321057,321058,321059,321060,321061,321062,321063,321064,321065,321066,321067,321068,321069,321070,321072,321073,321074,321075,321076,321077,321078,321079,321080,321081,321082,321083,321084,321085,321086,321087,321088,321089,321090,321091,321092,321093,321094,321095,321096,321097,321098,321099,321100,321101,321102,321103,321104,321105,321106,321107,321108,321109,321110,321111,321112,321113,321114,321115,321116,321117,321118,321119,321120,321121,321122,321123,321124,321125,321126,321127,321128,321129,321130,321131,321132,321133,321134,321135,321136,321137,321138,321139,321140,321141,321142,321143,321144,321145,321146,321147,321148,321149,321150,321151,321152,321153,321154,321155,321156,321453,321454,321455,321456,321471,322080,322081,322082,322083,322084,322085,322086,322087,322088,322089,322090,322091,322092,322093,322094,322095,322096,322097,322098,322099,322100,322101,322102,322103,322104,322105,322106,322107,322108,322109,322110,322111,322112,322113,322114,322115,322116,322117,322118,322119,322120,322121,322122,322143,322144,322145,322146,322147,322148,322149,322150,322151,322152,322153,322154,322155,322156,322157,322158,322159,322160,322161,322162,322163,322164,322165,322166,322167,322168,322169,322170,322171,322172,322173,322174,322175,322176,322177,322178,322179,322180,322181,322182,322183,322184,322185,322186,322187,322188,322189,322190,322191,322192,322193,322194,322195,322196,322197,322198,322199,322200,322201,322202,322203,322204,322205,322206,322207,322208,322209,322210,322211,322212,322501,322506,322507,322508,322509,322510,322511,322512,322513,322516,322517,322518,322519,322526,322527,323136,323137,323138,323139,323140,323141,323142,323143,323144,323145,323146,323147,323148,323149,323150,323151,323152,323153,323154,323155,323156,323157,323158,323159,323160,323161,323162,323163,323164,323165,323166,323167,323168,323169,323170,323171,323172,323173,323174,323175,323176,323177,323178,323199,323200,323201,323202,323203,323204,323205,323206,323207,323208,323209,323210,323211,323212,323213,323214,323215,323216,323217,323218,323219,323220,323221,323222,323223,323224,323225,323226,323227,323228,323229,323230,323231,323232,323233,323234,323235,323236,323237,323238,323239,323240,323241,323242,323243,323244,323245,323246,323247,323248,323249,323250,323251,323252,323253,323254,323255,323256,323257,323258,323259,323260,323261,323262,323263,323264,323265,323266,323267,323268,323557,323558,323559,323560,323561,323562,323563,323564,323565,323568,323569,323570,323571,323572,323573,323574,323575,323576,323581,323582,323583,324192,324193,324194,324195,324196,324197,324198,324199,324200,324201,324202,324203,324204,324205,324206,324207,324208,324209,324210,324211,324212,324213,324214,324215,324216,324217,324218,324219,324220,324221,324222,324223,324224,324225,324226,324227,324228,324229,324230,324231,324232,324233,324234,324255,324256,324257,324258,324259,324260,324261,324262,324263,324264,324265,324266,324267,324268,324269,324270,324271,324272,324273,324274,324276,324277,324278,324279,324280,324281,324282,324283,324284,324285,324286,324287,324288,324289,324290,324291,324292,324293,324294,324295,324296,324297,324298,324299,324300,324301,324302,324303,324304,324305,324306,324307,324308,324309,324310,324311,324312,324313,324314,324315,324316,324317,324318,324319,324320,324321,324322,324323,324324,324613,324614,324615,324616,324617,324618,324625,324626,324627,324628,324631,324632,324633,324634,324635,324636,324637,324638,325248,325249,325250,325251,325252,325253,325254,325255,325256,325257,325258,325259,325260,325261,325262,325263,325264,325265,325266,325267,325268,325269,325270,325271,325272,325273,325274,325275,325276,325277,325278,325279,325280,325281,325282,325283,325284,325285,325286,325287,325288,325289,325290,325311,325312,325313,325314,325315,325316,325317,325318,325319,325320,325321,325322,325323,325324,325325,325326,325337,325338,325339,325340,325341,325342,325343,325344,325345,325346,325347,325348,325349,325350,325351,325352,325353,325354,325355,325356,325357,325358,325359,325360,325361,325362,325363,325364,325365,325366,325367,325368,325369,325370,325371,325372,325373,325374,325375,325376,325377,325378,325379,325380,325688,325689,325690,325691,325692,325693,326304,326305,326306,326307,326308,326309,326310,326311,326312,326313,326314,326315,326316,326317,326318,326319,326320,326321,326322,326323,326324,326325,326326,326327,326328,326329,326330,326331,326332,326333,326334,326335,326336,326337,326338,326339,326340,326341,326342,326343,326344,326345,326346,326367,326368,326369,326370,326371,326372,326373,326374,326375,326376,326377,326378,326379,326380,326381,326382,326393,326394,326395,326396,326397,326398,326399,326400,326401,326402,326403,326404,326405,326406,326407,326408,326409,326410,326411,326412,326413,326414,326415,326416,326417,326418,326419,326420,326421,326422,326423,326424,326425,326426,326427,326428,326429,326430,326431,326432,326433,326434,326435,326436,327360,327361,327362,327363,327364,327365,327366,327367,327368,327369,327370,327371,327372,327373,327374,327375,327376,327377,327378,327379,327380,327381,327382,327383,327384,327385,327386,327387,327388,327389,327390,327391,327392,327393,327394,327395,327396,327397,327398,327399,327400,327401,327402,327413,327414,327423,327424,327425,327426,327427,327428,327429,327430,327431,327432,327433,327434,327435,327436,327437,327438,327448,327449,327450,327451,327452,327453,327454,327455,327456,327457,327458,327459,327460,327461,327462,327463,327464,327465,327466,327467,327468,327469,327470,327471,327472,327473,327474,327475,327476,327477,327478,327479,327480,327481,327482,327483,327484,327485,327486,327487,327488,327489,327490,327491,327492,328416,328417,328418,328419,328420,328421,328422,328423,328424,328425,328426,328427,328428,328429,328430,328431,328432,328433,328434,328435,328436,328437,328438,328439,328440,328441,328442,328443,328444,328445,328446,328447,328448,328449,328450,328451,328452,328453,328454,328455,328456,328457,328458,328459,328466,328467,328468,328469,328470,328471,328478,328479,328480,328481,328482,328483,328484,328485,328486,328487,328488,328489,328490,328491,328492,328493,328494,328503,328504,328505,328506,328507,328508,328509,328510,328511,328512,328513,328514,328515,328516,328517,328518,328519,328520,328521,328522,328523,328524,328525,328526,328527,328528,328529,328530,328531,328532,328533,328534,328535,328536,328537,328538,328539,328540,328541,328542,328543,328544,328545,328546,328547,328548,329472,329473,329474,329475,329476,329477,329478,329479,329480,329481,329482,329483,329484,329485,329486,329487,329488,329489,329490,329491,329492,329493,329494,329495,329496,329497,329498,329499,329500,329501,329502,329503,329504,329505,329506,329507,329508,329509,329510,329511,329512,329513,329514,329515,329516,329517,329518,329519,329520,329521,329522,329523,329524,329525,329526,329527,329528,329529,329530,329531,329532,329533,329534,329535,329536,329537,329538,329539,329540,329541,329542,329543,329544,329545,329546,329547,329548,329549,329550,329551,329558,329559,329560,329561,329562,329563,329564,329565,329566,329567,329568,329569,329570,329571,329572,329573,329574,329575,329576,329577,329578,329579,329580,329581,329582,329583,329584,329585,329586,329587,329588,329589,329590,329591,329592,329593,329594,329595,329596,329597,329598,329599,329600,329601,329602,329603,329604,330528,330529,330530,330531,330532,330533,330534,330535,330536,330537,330538,330539,330540,330541,330542,330543,330544,330545,330546,330547,330548,330549,330550,330551,330552,330553,330554,330555,330556,330557,330558,330559,330560,330561,330562,330563,330564,330565,330566,330567,330568,330569,330570,330571,330572,330573,330574,330575,330576,330577,330578,330579,330580,330581,330582,330583,330584,330585,330586,330587,330588,330589,330590,330591,330592,330593,330594,330595,330596,330597,330598,330599,330600,330601,330602,330603,330604,330605,330606,330607,330608,330613,330614,330615,330616,330617,330618,330619,330620,330621,330622,330623,330624,330625,330626,330627,330628,330629,330630,330631,330632,330633,330634,330635,330636,330637,330638,330639,330640,330641,330642,330643,330644,330645,330646,330647,330648,330649,330650,330651,330652,330653,330654,330655,330656,330657,330658,330659,330660,331584,331585,331586,331587,331588,331589,331590,331591,331592,331593,331594,331595,331596,331597,331598,331599,331600,331601,331602,331603,331604,331605,331606,331607,331608,331609,331610,331611,331612,331613,331614,331615,331616,331617,331618,331619,331620,331621,331622,331623,331624,331625,331626,331627,331628,331629,331630,331631,331632,331633,331634,331635,331636,331637,331638,331639,331640,331641,331642,331643,331644,331645,331646,331647,331648,331649,331650,331651,331652,331653,331654,331655,331656,331657,331658,331659,331660,331661,331662,331663,331664,331665,331666,331667,331668,331669,331670,331671,331672,331673,331674,331675,331676,331677,331678,331679,331680,331681,331682,331683,331684,331685,331686,331687,331688,331689,331690,331691,331692,331693,331694,331695,331696,331697,331698,331699,331700,331701,331702,331703,331704,331705,331706,331707,331708,331709,331710,331711,331712,331713,331714,331715,331716,332640,332641,332642,332643,332644,332645,332646,332647,332648,332649,332650,332651,332652,332653,332654,332655,332656,332657,332658,332659,332660,332661,332662,332663,332664,332665,332666,332667,332668,332669,332670,332671,332672,332673,332674,332675,332676,332677,332678,332679,332680,332681,332682,332683,332684,332685,332686,332687,332688,332689,332690,332691,332692,332693,332694,332695,332696,332697,332698,332699,332700,332701,332702,332703,332704,332705,332706,332707,332708,332709,332710,332711,332712,332713,332714,332715,332716,332717,332718,332719,332720,332721,332722,332723,332724,332725,332726,332727,332728,332729,332730,332731,332732,332733,332734,332735,332736,332737,332738,332739,332740,332741,332742,332743,332744,332745,332746,332747,332748,332749,332750,332751,332752,332753,332754,332755,332756,332757,332758,332759,332760,332761,332762,332763,332764,332765,332766,332767,332768,332769,332770,332771,332772,333696,333697,333698,333699,333700,333701,333702,333703,333704,333705,333706,333707,333708,333709,333710,333711,333712,333713,333714,333715,333716,333717,333718,333719,333720,333721,333722,333723,333724,333725,333726,333727,333728,333729,333730,333731,333732,333733,333734,333735,333736,333737,333738,333740,333741,333742,333743,333744,333745,333746,333747,333748,333749,333750,333751,333752,333753,333754,333755,333756,333757,333758,333759,333760,333761,333762,333763,333764,333765,333766,333767,333768,333769,333770,333771,333772,333773,333774,333775,333776,333777,333778,333779,333780,333781,333782,333783,333784,333785,333786,333787,333788,333789,333790,333791,333792,333793,333794,333795,333796,333797,333798,333799,333800,333801,333802,333803,333804,333805,333806,333807,333808,333809,333810,333811,333812,333813,333814,333815,333816,333817,333818,333819,333820,333821,333822,333823,333824,333825,333826,333827,333828,507652,507653,507654,507655,507656,507657,508707,508708,508709,508710,508711,508712,508713,508714,508719,508720,508721,508722,509763,509764,509769,509770,509771,509772,509773,509774,509775,509776,509777,509778,509779,510819,510826,510827,510828,510829,510830,510831,510834,510835,511875,511876,511891,512932,512947,512948,513988,514003,514004,514005,514015,514016,514017,514018,514019,514020,515044,515045,515060,515061,515070,515071,515072,515073,515074,515075,515076,515077,516101,516102,516117,516123,516124,516125,516126,516127,516132,516133,517129,517130,517131,517132,517136,517137,517138,517139,517140,517141,517158,517172,517173,517178,517179,517180,517181,517182,517189,517190,517982,517983,517984,517985,517986,517987,517988,518184,518185,518186,518187,518188,518189,518191,518192,518193,518194,518195,518196,518197,518198,518214,518227,518228,518234,518235,518245,518246,518247,519035,519036,519037,519038,519039,519040,519041,519042,519043,519044,519045,519240,519241,519244,519245,519246,519247,519248,519253,519254,519269,519270,519283,519290,519302,519303,519304,519305,519306,519307,519308,520090,520091,520092,520093,520094,520100,520101,520102,520103,520104,520295,520296,520301,520302,520303,520310,520311,520324,520325,520326,520339,520340,520345,520346,520359,520360,520361,520362,520363,520364,520365,520373,520374,520375,520376,521146,521147,521157,521158,521159,521160,521161,521350,521351,521352,521366,521367,521368,521377,521378,521379,521380,521381,521395,521396,521397,521400,521401,521402,521406,521407,521408,521409,521410,521420,521421,521428,521429,521430,521431,521432,521433,522202,522216,522217,522406,522407,522423,522424,522425,522426,522427,522432,522433,522434,522435,522436,522444,522445,522446,522447,522448,522449,522452,522453,522454,522455,522456,522457,522461,522462,522466,522467,522477,522484,522485,522488,522489,523257,523258,523273,523462,523480,523481,523482,523483,523484,523488,523489,523499,523500,523505,523506,523509,523510,523511,523512,523516,523517,523523,523524,523533,523534,523539,523540,523545,524312,524313,524314,524329,524518,524539,524540,524544,524554,524555,524562,524563,524572,524580,524589,524590,524591,524594,524595,524596,524600,524601,525365,525366,525367,525368,525369,525384,525385,525574,525596,525600,525601,525610,525619,525627,525628,525636,525646,525647,525648,525649,525650,525651,525654,525655,525656,526420,526421,526422,526423,526424,526438,526439,526440,526630,526631,526651,526652,526657,526658,526666,526675,526681,526682,526683,526691,526692,526699,526700,526703,526704,526705,526706,526709,526710,527476,527477,527493,527494,527687,527688,527689,527706,527707,527714,527715,527722,527723,527730,527731,527736,527737,527746,527747,527748,527754,527755,527756,527757,527764,527765,528532,528548,528549,528745,528746,528762,528771,528778,528779,528780,528785,528786,528787,528791,528792,528799,528800,528801,528802,528803,528809,528810,528813,528814,528820,529588,529589,529604,529802,529803,529818,529827,529835,529836,529837,529838,529839,529840,529841,529842,529847,529854,529855,529856,529857,529858,529865,529870,529876,530645,530646,530647,530660,530859,530873,530874,530882,530883,530892,530893,530894,530895,530896,530897,530903,530910,530911,530920,530921,530926,530932,530933,531703,531704,531715,531716,531915,531927,531928,531929,531935,531936,531937,531938,531939,531958,531959,531966,531974,531975,531976,531982,531988,531989,531990,532760,532761,532766,532767,532769,532770,532771,532971,532972,532982,532983,532990,532991,532992,532993,532994,532997,532998,532999,533000,533001,533002,533003,533011,533012,533013,533014,533022,533023,533029,533030,533038,533039,533040,533045,533046,533817,533818,533821,533822,533824,534028,534029,534037,534038,534046,534047,534052,534053,534059,534060,534066,534067,534079,534080,534084,534085,534096,534097,534102,534874,534875,534876,534877,535085,535093,535102,535108,535116,535117,535121,535122,535136,535140,535153,535154,535157,535158,536141,536149,536157,536158,536163,536164,536173,536177,536192,536196,536210,536212,536213,537196,537197,537204,537205,537212,537213,537214,537218,537219,537228,537229,537233,537247,537248,537251,537252,537266,537268,538251,538252,538253,538258,538259,538260,538268,538269,538274,538283,538284,538285,538289,538290,538302,538303,538304,538307,538321,538322,538324,539306,539307,539308,539313,539314,539324,539330,539331,539334,539335,539336,539337,539338,539339,539340,539345,539346,539347,539358,539359,539363,539374,539375,539376,539377,539378,539380,539381,540362,540363,540368,540369,540380,540381,540386,540387,540388,540389,540390,540391,540392,540393,540394,540395,540402,540403,540404,540405,540406,540413,540414,540419,540420,540429,540430,540431,540432,540433,540436,540437,540438,541418,541424,541425,541437,541438,541439,541443,541444,541445,541446,541459,541460,541461,541462,541463,541468,541469,541470,541475,541476,541477,541485,541486,541493,541494,541495,541496,541497,541498,541499,542474,542475,542480,542481,542482,542495,542496,542504,542505,542506,542507,542510,542511,542512,542513,542518,542519,542520,542521,542522,542523,542524,542525,542532,542533,542541,542550,542551,542552,542553,542554,542555,542556,543531,543532,543537,543538,543552,543553,543556,543557,543558,543559,543560,543563,543564,543565,543566,543569,543570,543575,543576,543577,543578,543579,543580,543589,543596,543597,543611,543612,543890,544588,544594,544595,544609,544611,544612,544626,544627,544644,544645,544651,544652,544653,544657,544658,544659,544660,544661,544662,544663,544668,544669,544937,544938,544939,544940,544941,544942,544943,544944,544945,544946,544947,544948,545644,545650,545651,545652,545665,545667,545683,545699,545700,545707,545708,545712,545713,545719,545720,545724,545725,545726,545992,545993,545994,545995,545996,545997,545998,545999,546000,546001,546003,546004,546005,546700,546701,546707,546708,546709,546710,546711,546712,546713,546721,546723,546739,546743,546744,546745,546746,546747,546748,546755,546763,546767,546768,546776,546777,546781,546782,547048,547049,547060,547061,547746,547747,547748,547749,547750,547751,547757,547758,547759,547760,547764,547765,547766,547767,547768,547769,547770,547777,547779,547795,547796,547798,547799,547804,547805,547811,547818,547819,547823,547833,547838,548104,548117,548801,548802,548803,548804,548805,548806,548807,548808,548816,548817,548825,548826,548833,548835,548836,548852,548853,548854,548861,548862,548867,548868,548873,548874,548875,548879,548889,548893,548894,549160,549173,549857,549858,549863,549864,549873,549874,549882,549883,549889,549891,549892,549893,549894,549895,549918,549919,549923,549924,549925,549926,549927,549928,549929,549930,549934,549935,549944,549945,549948,549949,550216,550217,550228,550229,550748,550749,550750,550913,550920,550930,550931,550938,550939,550940,550945,550948,550949,550950,550951,550952,550975,550976,550977,550980,550981,550982,550983,550984,550985,550988,550989,550990,550999,551000,551001,551004,551273,551274,551283,551284,551803,551804,551805,551806,551807,551969,551976,551977,551987,551988,551989,551990,551995,551996,552001,552002,552007,552008,552033,552034,552043,552044,552055,552056,552060,552330,552339,552858,552859,552860,552862,552863,552864,553025,553026,553028,553029,553030,553032,553033,553034,553046,553047,553052,553058,553059,553060,553064,553090,553091,553097,553098,553099,553111,553115,553116,553386,553395,553913,553914,553915,553919,553920,554082,554083,554084,554086,554087,554089,554090,554103,554104,554108,554109,554116,554117,554120,554121,554130,554131,554132,554133,554134,554135,554136,554137,554147,554152,554153,554166,554167,554170,554171,554442,554443,554450,554451,554969,554970,554976,555143,555144,555146,555160,555164,555165,555166,555173,555174,555176,555177,555178,555185,555186,555187,555188,555189,555190,555191,555192,555193,555194,555203,555207,555208,555221,555222,555223,555226,555499,555500,555505,555506,556025,556031,556032,556200,556202,556203,556216,556221,556222,556230,556233,556234,556241,556242,556249,556250,556259,556260,556263,556274,556275,556276,556277,556278,556282,556556,556561,557080,557081,557085,557086,557087,557256,557258,557259,557272,557273,557278,557286,557290,557297,557306,557316,557317,557319,557329,557330,557331,557332,557333,557337,557338,557612,557617,558135,558136,558137,558140,558141,558311,558312,558315,558329,558330,558334,558335,558342,558346,558353,558354,558361,558362,558373,558375,558376,558385,558386,558391,558392,558393,558668,558673,559178,559179,559180,559181,559182,559183,559188,559189,559190,559191,559192,559195,559196,559366,559367,559368,559371,559372,559386,559390,559391,559392,559397,559398,559402,559410,559411,559416,559417,559429,559431,559432,559433,559441,559446,559447,560233,560234,560235,560236,560237,560238,560239,560240,560241,560242,560243,560244,560245,560246,560247,560251,560417,560418,560419,560420,560421,560422,560423,560427,560428,560429,560442,560447,560448,560449,560450,560451,560452,560453,560454,560458,560467,560472,560484,560485,560488,560489,560496,560497,560501,560502,560779,560780,560781,560782,560783,560784,560785,560786,561289,561290,561295,561296,561297,561298,561299,561300,561307,561472,561473,561474,561475,561476,561477,561478,561484,561485,561486,561487,561488,561489,561490,561498,561499,561504,561505,561506,561507,561508,561509,561514,561523,561528,561539,561540,561541,561545,561551,561552,561553,561557,561830,561831,561832,561833,561834,561835,561836,561837,561838,561839,561840,561841,561842,561843,561844,561845,561846,561847,562345,562362,562363,562528,562529,562541,562542,562543,562544,562545,562546,562547,562548,562549,562555,562556,562557,562569,562570,562578,562579,562583,562584,562592,562593,562594,562595,562596,562600,562601,562607,562608,562613,562885,562886,562887,562888,562889,562890,562891,562898,562899,562900,562901,562902,562903,562904,563401,563417,563418,563584,563602,563603,563604,563605,563606,563613,563614,563623,563624,563625,563633,563634,563635,563638,563639,563647,563648,563649,563650,563651,563654,563655,563656,563663,563669,563670,563940,563941,563942,563959,563960,563961,564456,564457,564473,564507,564508,564509,564510,564512,564513,564514,564640,564641,564661,564662,564670,564671,564678,564679,564689,564690,564694,564703,564704,564709,564710,564718,564719,564725,564726,564727,564996,564997,565016,565017,565511,565512,565513,565529,565562,565563,565564,565565,565566,565567,565568,565569,565570,565571,565657,565658,565659,565697,565705,565706,565707,565718,565727,565733,565734,565745,565750,565759,565764,565765,565773,565774,565775,565782,565783,566052,566073,566564,566565,566566,566567,566568,566584,566585,566618,566619,566622,566623,566624,566626,566627,566628,566676,566677,566678,566679,566712,566713,566714,566715,566716,566753,566758,566759,566760,566761,566763,566764,566767,566768,566769,566770,566774,566775,566782,566783,566789,566801,566806,566807,566814,566815,566820,566829,566830,566839,567108,567129,567619,567620,567621,567622,567623,567639,567640,567674,567683,567684,567685,567731,567732,567733,567734,567735,567736,567737,567738,567767,567768,567769,567771,567772,567773,567809,567810,567813,567814,567820,567821,567822,567823,567826,567827,567830,567831,567832,567837,567838,567839,567845,567846,567857,567862,567863,567864,567869,567870,567871,567876,567885,567894,567895,568164,568185,568675,568676,568695,568730,568740,568741,568773,568774,568776,568787,568788,568791,568792,568793,568794,568795,568823,568824,568828,568829,568866,568867,568868,568869,568883,568884,568887,568888,568889,568890,568891,568892,568893,568894,568901,568902,568903,568912,568913,568919,568920,568921,568922,568923,568924,568925,568926,568932,568933,568940,568941,568949,568950,569220,569241,569731,569751,569786,569787,569797,569828,569829,569830,569832,569833,569842,569843,569850,569851,569879,569880,569884,569885,569940,569944,569945,569946,569947,569948,569949,569958,569959,569967,569968,569969,569976,569977,569978,569979,569980,569981,569988,569989,569990,569995,569996,569997,570005,570276,570297,570787,570807,570808,570843,570844,570845,570853,570854,570884,570885,570888,570889,570890,570891,570892,570893,570894,570897,570898,570899,570907,570908,570936,570940,570996,571015,571023,571024,571045,571046,571047,571048,571049,571050,571051,571052,571061,571332,571353,571843,571863,571864,571865,571901,571902,571909,571910,571911,571940,571945,571946,571947,571948,571949,571950,571951,571952,571953,571954,571964,571992,571996,572052,572053,572070,572071,572079,572084,572085,572086,572087,572088,572097,572098,572099,572102,572103,572104,572105,572106,572107,572117,572388,572409,572899,572903,572917,572920,572921,572922,572958,572959,572966,572967,572996,573006,573007,573008,573009,573019,573020,573047,573048,573052,573097,573098,573099,573100,573101,573102,573109,573110,573111,573118,573119,573120,573121,573126,573135,573139,573140,573144,573145,573152,573153,573155,573156,573166,573167,573168,573173,573444,573465,573954,573955,573959,573973,573977,573978,574015,574023,574051,574052,574075,574103,574104,574108,574149,574150,574151,574152,574153,574154,574155,574156,574157,574158,574159,574167,574168,574173,574174,574177,574178,574182,574191,574195,574201,574202,574207,574208,574212,574213,574221,574222,574224,574225,574228,574229,574500,574521,575009,575010,575011,575015,575016,575028,575029,575034,575071,575078,575079,575106,575107,575108,575113,575114,575115,575116,575122,575123,575124,575125,575126,575127,575130,575131,575159,575163,575164,575204,575205,575206,575207,575208,575209,575214,575215,575224,575225,575228,575229,575234,575235,575238,575239,575246,575247,575251,575258,575263,575269,575276,575277,575281,575284,575556,575577,576062,576063,576064,576065,576066,576071,576072,576073,576083,576084,576085,576090,576126,576127,576134,576162,576163,576168,576169,576172,576173,576174,576175,576177,576178,576183,576184,576185,576186,576215,576219,576259,576260,576261,576271,576272,576281,576284,576291,576294,576295,576296,576301,576302,576303,576307,576308,576313,576314,576319,576325,576330,576331,576332,576337,576340,576612,576633,576730,576731,576732,576733,576734,576735,577117,577118,577119,577120,577121,577128,577129,577139,577140,577146,577147,577179,577180,577181,577182,577183,577190,577218,577223,577224,577231,577232,577233,577270,577271,577275,577315,577316,577327,577328,577329,577337,577340,577347,577351,577352,577353,577354,577355,577356,577357,577358,577363,577364,577365,577368,577369,577370,577374,577375,577381,577382,577385,577386,577392,577393,577396,577397,577668,577669,577688,577689,577785,577786,577787,577788,577789,577790,577791,577792,578173,578174,578185,578195,578202,578203,578204,578234,578235,578236,578237,578238,578245,578246,578274,578279,578325,578326,578327,578331,578332,578371,578384,578385,578392,578393,578396,578403,578404,578408,578409,578410,578411,578412,578413,578420,578421,578422,578423,578424,578425,578429,578430,578438,578439,578440,578441,578447,578448,578449,578452,578453,578454,578725,578726,578727,578728,578729,578730,578731,578732,578733,578734,578735,578736,578737,578738,578739,578740,578741,578742,578743,578744,578841,578842,578847,578848,579229,579241,579251,579259,579260,579261,579262,579263,579290,579291,579299,579300,579301,579330,579331,579334,579335,579381,579382,579387,579388,579389,579392,579394,579427,579428,579441,579447,579448,579449,579452,579460,579461,579477,579478,579479,579480,579485,579503,579504,579509,579510,579896,579897,579904,579916,579917,580285,580297,580298,580306,580307,580316,580317,580318,580319,580320,580345,580346,580354,580355,580387,580388,580389,580390,580437,580444,580445,580446,580447,580448,580450,580484,580485,580486,580487,580496,580497,580503,580504,580508,580517,580541,580559,580566,580951,580952,580953,580960,580961,580971,580972,580973,580974,580975,580976,580977,580978,581341,581353,581354,581355,581357,581358,581359,581361,581362,581363,581375,581376,581401,581409,581410,581493,581501,581502,581503,581504,581506,581543,581544,581551,581552,581559,581564,581573,581596,581597,581615,581622,582007,582008,582016,582017,582018,582027,582028,582029,582030,582031,582032,582033,582034,582035,582397,582398,582410,582411,582412,582413,582414,582415,582416,582417,582418,582432,582457,582458,582465,582549,582550,582562,582600,582601,582607,582615,582620,582621,582628,582629,582637,582638,582639,582640,582648,582649,582650,582651,582652,582670,582671,582678,583063,583073,583074,583083,583090,583091,583454,583455,583456,583467,583468,583469,583471,583472,583473,583488,583514,583515,583521,583606,583607,583618,583619,583657,583663,583671,583676,583677,583678,583683,583684,583685,583692,583693,583696,583697,583698,583699,583700,583703,583704,583725,583726,583727,583734,584119,584120,584130,584139,584147,584457,584458,584459,584460,584461,584462,584512,584513,584544,584571,584572,584573,584574,584577,584578,584663,584664,584665,584666,584667,584670,584671,584674,584675,584676,584713,584719,584720,584727,584728,584733,584734,584735,584736,584737,584738,584739,584740,584747,584748,584756,584757,584758,584759,584778,584779,584780,584781,584782,584790,584791,585176,585177,585185,585186,585194,585195,585203,585512,585513,585518,585519,585520,585569,585570,585600,585630,585631,585633,585634,585635,585723,585724,585725,585726,585727,585728,585731,585732,585768,585769,585775,585776,585777,585784,585785,585786,585790,585791,585792,585793,585794,585795,585803,585834,585835,585836,585837,585846,585847,585848,586233,586240,586241,586249,586250,586251,586259,586260,586568,586576,586577,586626,586655,586656,586687,586690,586691,586784,586788,586823,586824,586825,586832,586833,586842,586843,586859,586890,586903,586904,586905,586906,586907,587289,587296,587305,587306,587315,587316,587317,587624,587625,587633,587634,587682,587708,587709,587710,587711,587742,587743,587747,587840,587841,587843,587844,587879,587880,587889,587899,587900,587914,587915,587932,587933,587934,587935,587946,587960,587961,587962,587963,587964,588345,588346,588352,588361,588372,588373,588680,588681,588682,588690,588738,588739,588763,588764,588797,588798,588799,588803,588897,588898,588899,588935,588944,588945,588956,588969,588970,588987,588988,588989,588990,588991,588992,589001,589002,589019,589020,589402,589403,589408,589409,589416,589417,589429,589665,589666,589667,589668,589669,589670,589671,589672,589673,589674,589675,589676,589677,589678,589679,589680,589681,589682,589683,589684,589685,589686,589687,589688,589689,589690,589691,589692,589693,589694,589695,589696,589697,589698,589699,589700,589701,589702,589703,589704,589705,589706,589707,589708,589709,589710,589711,589712,589713,589714,589715,589716,589717,589718,589719,589720,589721,589722,589723,589724,589725,589726,589727,589728,589729,589730,589731,589732,589733,589737,589738,589739,589740,589741,589746,589795,589796,589797,589810,589811,589812,589813,589818,589819,589853,589854,589859,589860,589991,589992,589999,590000,590012,590025,590043,590044,590047,590048,590049,590050,590051,590056,590057,590058,590076,590459,590464,590465,590466,590471,590472,590473,590483,590484,590485,590720,590721,590789,590790,590794,590795,590796,590797,590798,590802,590853,590854,590856,590857,590858,590859,590865,590866,590869,590870,590873,590874,590909,590915,590916,590917,591048,591049,591050,591055,591067,591068,591075,591076,591077,591081,591098,591099,591104,591105,591106,591107,591108,591109,591110,591111,591112,591113,591132,591515,591521,591522,591523,591524,591525,591526,591527,591528,591538,591539,591775,591776,591846,591847,591853,591854,591858,591910,591911,591912,591915,591916,591919,591920,591921,591926,591927,591928,591929,591965,591972,591973,591974,591975,591976,592106,592107,592111,592122,592123,592124,592130,592131,592133,592134,592137,592138,592145,592146,592147,592148,592149,592150,592153,592154,592155,592163,592164,592165,592166,592167,592168,592187,592188,592571,592572,592578,592579,592580,592581,592582,592583,592591,592592,592593,592594,592831,592903,592910,592914,592972,592973,592974,592975,593020,593021,593029,593030,593031,593032,593033,593163,593164,593167,593168,593175,593176,593177,593178,593179,593184,593185,593186,593190,593191,593193,593194,593195,593198,593199,593200,593201,593202,593203,593204,593205,593206,593207,593208,593209,593210,593229,593230,593231,593242,593243,593628,593629,593646,593647,593887,593893,593894,593895,593896,593897,593898,593899,593900,593901,593902,593903,593904,593905,593906,593907,593908,593916,593917,593918,593919,593920,593921,593922,593923,593924,593925,593926,593927,593934,593935,593936,593937,593938,593939,593940,593941,593948,593949,593950,593951,593952,593953,593959,593965,593966,593970,594075,594076,594077,594088,594089,594220,594223,594224,594225,594230,594231,594232,594233,594234,594239,594240,594247,594250,594251,594252,594253,594254,594255,594256,594257,594262,594263,594264,594265,594284,594285,594287,594288,594297,594298,594670,594671,594672,594673,594685,594700,594701,594702,594943,594948,594949,594950,594951,594952,594953,594954,594955,594956,594957,594958,594959,594960,594961,594962,594963,594964,594965,594971,594972,594973,594974,594975,594976,594977,594978,594979,594980,594981,594982,594983,594990,594991,594992,594993,594994,594995,594996,594997,594998,595003,595004,595005,595006,595007,595008,595009,595010,595015,595016,595017,595018,595019,595020,595021,595026,595131,595132,595145,595276,595280,595281,595282,595283,595284,595285,595286,595287,595294,595295,595303,595307,595308,595309,595310,595323,595324,595325,595339,595340,595344,595345,595346,595347,595353,595659,595660,595661,595662,595725,595726,595727,595728,595729,595730,595741,595755,595756,595999,596004,596005,596020,596021,596027,596028,596039,596046,596053,596054,596059,596060,596065,596066,596082,596187,596195,596196,596197,596201,596332,596337,596338,596339,596340,596341,596342,596350,596358,596359,596378,596379,596381,596382,596383,596384,596385,596386,596395,596403,596404,596409,596410,596702,596703,596704,596705,596710,596711,596712,596713,596714,596715,596716,596717,596718,596719,596780,596781,596782,596785,596786,596797,596798,596810,596811,597055,597060,597077,597083,597095,597102,597110,597115,597122,597138,597243,597250,597251,597253,597254,597256,597257,597388,597406,597413,597414,597415,597430,597431,597432,597433,597434,597442,597443,597451,597460,597461,597465,597466,597467,597757,597758,597759,597760,597761,597762,597763,597764,597765,597766,597767,597768,597769,597770,597771,597774,597775,597776,597831,597832,597833,597834,597835,597836,597837,597842,597854,597865,597866,597882,597883,597884,597885,598111,598116,598117,598125,598126,598127,598128,598133,598139,598151,598152,598157,598158,598166,598171,598178,598194,598195,598196,598197,598198,598199,598200,598201,598202,598203,598299,598300,598305,598306,598310,598311,598312,598443,598444,598461,598462,598469,598470,598485,598486,598499,598500,598506,598507,598517,598522,598523,598524,598812,598813,598814,598817,598818,598819,598820,598821,598822,598831,598832,598833,598834,598835,598886,598887,598888,598889,598891,598892,598898,598910,598921,598933,598934,598935,598936,598937,598938,598939,598940,598941,598942,599167,599173,599174,599175,599176,599177,599178,599179,599180,599181,599184,599185,599189,599195,599196,599207,599208,599209,599212,599213,599214,599222,599227,599234,599239,599240,599241,599242,599243,599244,599245,599259,599260,599356,599357,599359,599360,599361,599498,599499,599500,599516,599517,599525,599540,599541,599556,599561,599562,599572,599573,599579,599580,599865,599866,599867,599868,599869,599888,599889,599890,599891,599892,599942,599943,599954,599966,599967,599977,599988,599989,599990,599991,599992,599993,599994,599997,599998,599999,600223,600241,600245,600252,600253,600254,600255,600256,600257,600258,600259,600260,600261,600264,600265,600266,600267,600268,600269,600278,600283,600284,600289,600290,600295,600296,600297,600298,600299,600300,600301,600302,600316,600414,600551,600552,600553,600554,600555,600572,600581,600596,600612,600613,600617,600627,600628,600629,600636,600920,600921,600922,600923,600924,600947,600948,600949,600998,601009,601010,601023,601024,601033,601044,601045,601054,601055,601056,601279,601280,601297,601301,601317,601318,601321,601322,601323,601324,601333,601334,601340,601341,601342,601343,601344,601345,601351,601357,601358,601372,601606,601607,601608,601609,601610,601628,601637,601652,601653,601669,601670,601673,601680,601681,601682,601683,601684,601692,601975,601976,601977,602004,602005,602054,602055,602064,602065,602080,602089,602100,602111,602112,602335,602336,602337,602353,602357,602374,602375,602388,602389,602406,602407,602414,602419,602420,602421,602422,602423,602424,602428,602662,602663,602683,602684,602693,602708,602709,602710,602726,602729,602730,602735,602736,602737,602738,602739,602748,603031,603032,603061,603111,603112,603120,603136,603144,603145,603156,603157,603168,603392,603393,603394,603400,603401,603402,603403,603404,603405,603408,603409,603413,603431,603432,603433,603434,603435,603436,603437,603438,603439,603440,603441,603442,603443,603444,603461,603462,603463,603466,603467,603468,603469,603470,603474,603475,603476,603477,603478,603479,603480,603484,603718,603737,603738,603739,603749,603750,603765,603766,603782,603785,603786,603787,603790,603791,603792,603803,603804,604087,604117,604168,604176,604192,604199,604200,604213,604214,604223,604224,604449,604450,604455,604456,604457,604458,604459,604460,604461,604462,604463,604464,604465,604469,604504,604505,604506,604507,604516,604517,604518,604521,604522,604530,604531,604536,604540,604774,604775,604792,604793,604806,604807,604822,604838,604842,604843,604844,604845,604846,604847,604858,604859,605142,605143,605151,605152,605163,605164,605165,605173,605174,605224,605232,605233,605248,605255,605270,605277,605278,605279,605506,605511,605512,605517,605518,605519,605520,605525,605532,605533,605534,605535,605536,605537,605538,605539,605540,605541,605559,605560,605561,605562,605563,605564,605571,605572,605573,605576,605577,605586,605592,605596,605831,605832,605845,605846,605847,605848,605863,605872,605873,605874,605875,605877,605878,605894,605899,605900,605901,605902,605913,605914,606197,606198,606199,606206,606207,606208,606209,606218,606219,606221,606222,606229,606230,606231,606280,606288,606289,606290,606303,606304,606311,606326,606332,606333,606562,606567,606581,606587,606588,606589,606590,606591,606592,606593,606594,606595,606596,606597,606598,606615,606616,606619,606620,606621,606622,606623,606624,606625,606626,606627,606628,606632,606642,606648,606652,606888,606889,606890,606895,606896,606897,606899,606900,606901,606919,606927,606928,606931,606932,606933,606950,606951,606960,606961,606962,606966,606967,606968,606969,607253,607254,607262,607265,607271,607272,607273,607274,607278,607279,607286,607287,607336,607337,607345,607346,607347,607348,607349,607358,607359,607360,607367,607381,607382,607387,607388,607451,607452,607453,607454,607455,607456,607618,607623,607637,607643,607644,607653,607654,607655,607671,607676,607677,607678,607679,607680,607681,607682,607683,607688,607689,607698,607699,607704,607708,607709,607946,607947,607950,607951,607954,607974,607975,607982,607983,608007,608008,608009,608010,608015,608016,608018,608019,608021,608022,608309,608318,608321,608326,608327,608335,608343,608393,608394,608395,608396,608402,608403,608404,608405,608414,608415,608423,608436,608437,608438,608443,608507,608508,608509,608510,608511,608512,608674,608679,608693,608699,608700,608701,608702,608703,608704,608705,608706,608710,608711,608712,608713,608714,608715,608716,608717,608718,608719,608720,608727,608744,608745,608746,608755,608756,608760,608765,608766,608767,608768,608769,608770,608771,609003,609004,609005,609006,609029,609030,609031,609038,609066,609067,609068,609069,609070,609071,609075,609076,609077,609365,609366,609373,609374,609377,609382,609391,609399,609452,609453,609461,609470,609479,609480,609487,609488,609489,609490,609491,609492,609493,609499,609563,609568,609730,609731,609735,609736,609748,609749,609762,609763,609767,609768,609769,609770,609771,609772,609773,609774,609775,609776,609777,609783,609801,609802,609803,609804,609805,609812,609816,609827,609828,609881,609882,609883,609884,610085,610086,610094,610422,610423,610424,610425,610427,610428,610429,610433,610438,610447,610454,610455,610509,610510,610517,610526,610535,610536,610537,610542,610543,610544,610545,610546,610547,610548,610555,610619,610624,610786,610787,610788,610792,610793,610794,610795,610796,610797,610798,610799,610800,610801,610802,610803,610804,610819,610820,610832,610833,610834,610839,610858,610859,610860,610861,610862,610868,610872,610884,610885,610936,610937,610938,610939,610940,610941,610942,610943,610944,611141,611149,611150,611468,611470,611471,611472,611473,611482,611488,611489,611494,611495,611503,611509,611510,611566,611573,611574,611582,611592,611593,611594,611595,611596,611597,611598,611599,611611,611674,611675,611680,611681,611843,611844,611845,611876,611889,611890,611895,611896,611905,611906,611907,611908,611917,611918,611924,611928,611941,611942,611987,611988,611989,611990,611991,611992,611993,611996,611997,611998,611999,612000,612001,612197,612202,612203,612204,612205,612524,612526,612527,612528,612529,612530,612531,612532,612543,612544,612545,612550,612551,612559,612565,612622,612629,612630,612631,612638,612639,612649,612650,612651,612652,612653,612654,612666,612667,612729,612730,612731,612736,612737,612738,612900,612901,612902,612920,612921,612922,612923,612924,612925,612926,612927,612932,612946,612952,612953,612960,612961,612964,612965,612974,612979,612980,612984,612998,613040,613041,613042,613043,613044,613045,613046,613047,613048,613056,613057,613058,613059,613060,613061,613062,613253,613254,613257,613258,613580,613585,613586,613587,613588,613589,613590,613591,613592,613593,613598,613599,613600,613607,613615,613616,613621,613677,613678,613686,613687,613695,613696,613720,613721,613722,613778,613779,613780,613781,613782,613783,613784,613785,613786,613793,613794,613795,613796,613797,613798,613799,613800,613801,613949,613950,613951,613952,613953,613954,613957,613958,613975,613976,613977,613978,613979,613980,613981,613982,613983,613984,613988,613989,614002,614009,614010,614011,614012,614013,614014,614015,614016,614021,614022,614030,614034,614035,614036,614040,614045,614046,614047,614048,614054,614091,614092,614093,614094,614095,614096,614097,614098,614099,614113,614114,614115,614116,614117,614118,614119,614310,614311,614312,614313,614635,614636,614644,614645,614646,614647,614648,614649,614650,614651,614652,614653,614654,614655,614663,614672,614677,614678,614726,614727,614728,614729,614730,614731,614732,614733,614734,614743,614752,614775,614776,614833,614834,614835,614836,614837,614838,614839,614840,614841,614850,614851,614852,614853,614854,614855,614856,614857,614858,615004,615005,615010,615011,615014,615020,615021,615022,615023,615024,615025,615026,615027,615031,615032,615039,615040,615045,615046,615047,615048,615049,615050,615051,615052,615053,615054,615058,615078,615086,615090,615091,615096,615100,615101,615102,615103,615104,615105,615110,615146,615147,615148,615149,615150,615151,615152,615174,615175,615691,615692,615701,615702,615705,615706,615707,615708,615709,615710,615718,615719,615728,615733,615734,615781,615782,615783,615784,615785,615786,615787,615788,615789,615799,615808,615829,615830,615831,615888,615889,615890,615913,615914,615915,616049,616050,616051,616052,616053,616054,616059,616060,616067,616070,616075,616076,616077,616078,616079,616080,616081,616082,616083,616087,616096,616110,616111,616114,616134,616141,616142,616146,616152,616156,616157,616160,616161,616162,616166,616202,616203,616215,616216,616217,616218,616222,616223,616224,616231,616232,616747,616772,616773,616774,616784,616790,616836,616837,616838,616843,616844,616855,616856,616863,616864,616884,616885,616943,616944,616945,616970,616971,616972,617104,617105,617110,617111,617115,617122,617123,617126,617131,617132,617139,617143,617152,617167,617168,617170,617190,617196,617197,617201,617202,617207,617208,617212,617217,617218,617222,617257,617258,617270,617271,617274,617275,617276,617277,617278,617280,617281,617287,617288,617289,617803,617804,617827,617828,617839,617840,617846,617892,617893,617911,617912,617913,617916,617917,617918,617919,617920,617931,617932,617933,617934,617938,617939,617940,617999,618000,618004,618005,618006,618007,618008,618009,618018,618019,618020,618021,618022,618023,618027,618028,618160,618167,618171,618177,618178,618179,618182,618187,618194,618195,618199,618208,618224,618226,618233,618234,618235,618236,618237,618238,618239,618240,618245,618246,618252,618256,618257,618258,618262,618263,618268,618274,618278,618312,618313,618314,618325,618326,618337,618338,618339,618344,618345,618346,618347,618348,618860,618882,618883,618894,618895,618896,618901,618902,618948,618968,618969,618970,618971,618972,618973,618974,618975,618986,618987,618990,618991,618993,618994,619055,619059,619060,619065,619066,619073,619074,619079,619080,619084,619216,619217,619222,619223,619227,619233,619234,619238,619243,619248,619249,619250,619255,619256,619257,619264,619269,619270,619271,619272,619273,619280,619282,619288,619289,619290,619291,619292,619293,619294,619295,619296,619297,619300,619301,619302,619308,619312,619313,619318,619323,619324,619330,619334,619363,619364,619365,619366,619367,619368,619369,619381,619395,619396,619401,619402,619403,619404,619405,619916,619917,619935,619936,619937,619938,619950,619951,619956,619957,620004,620011,620012,620013,620014,620025,620026,620027,620028,620041,620042,620047,620048,620049,620111,620114,620115,620122,620123,620128,620129,620136,620137,620140,620272,620273,620274,620278,620279,620283,620289,620294,620299,620303,620304,620313,620314,620320,620324,620325,620326,620327,620328,620329,620330,620335,620336,620338,620344,620345,620352,620353,620354,620355,620356,620357,620364,620368,620374,620378,620379,620380,620386,620390,620418,620419,620420,620421,620422,620423,620424,620436,620437,620452,620453,620454,620460,620461,620973,620974,620975,620981,620982,620983,620984,620988,620989,620990,620991,621006,621012,621060,621066,621067,621070,621071,621095,621096,621097,621167,621170,621179,621184,621193,621196,621329,621330,621334,621339,621345,621346,621349,621350,621355,621359,621370,621371,621376,621380,621381,621385,621386,621387,621390,621391,621392,621394,621400,621409,621410,621411,621412,621420,621424,621430,621434,621435,621442,621446,621474,621475,621490,621491,621492,621510,621511,621517,622031,622032,622034,622035,622036,622037,622040,622041,622043,622044,622062,622068,622116,622122,622127,622128,622150,622151,622223,622226,622235,622240,622249,622252,622386,622390,622391,622394,622395,622402,622403,622404,622405,622411,622415,622416,622420,622421,622422,622427,622432,622436,622442,622443,622444,622445,622446,622447,622450,622456,622476,622480,622486,622490,622498,622502,622530,622545,622546,622567,622568,622569,622573,622574,623088,623089,623090,623097,623098,623099,623118,623124,623162,623163,623165,623172,623173,623178,623184,623202,623203,623204,623205,623206,623236,623237,623238,623239,623240,623241,623279,623282,623283,623290,623291,623296,623297,623304,623305,623308,623442,623447,623448,623449,623450,623467,623472,623476,623477,623478,623479,623483,623488,623492,623499,623500,623501,623502,623506,623511,623512,623517,623518,623519,623520,623531,623532,623536,623541,623542,623546,623553,623554,623558,623585,623586,623600,623601,623610,623612,623613,623625,623626,623629,623630,623631,623683,623684,623685,623686,623687,623688,623689,623690,623691,623692,623693,623694,624174,624180,624217,624218,624219,624221,624222,624229,624230,624231,624233,624234,624240,624247,624248,624249,624250,624257,624258,624290,624291,624292,624293,624294,624295,624296,624297,624298,624335,624338,624339,624340,624345,624346,624347,624352,624353,624354,624359,624360,624361,624364,624498,624523,624528,624532,624534,624535,624539,624540,624543,624544,624548,624562,624566,624567,624568,624572,624573,624576,624577,624578,624579,624580,624581,624582,624583,624584,624585,624586,624587,624592,624593,624594,624595,624596,624597,624602,624603,624604,624605,624606,624607,624608,624609,624614,624640,624641,624642,624656,624665,624666,624668,624669,624670,624682,624683,624686,624687,624688,624689,624739,624740,624741,624743,624744,624746,624747,624749,624750,624751,624752,624753,624754,624755,624756,624757,624758,624759,624790,624791,624792,624793,624794,624803,624804,624805,624806,624807,624808,624809,625229,625230,625236,625237,625273,625274,625277,625278,625279,625287,625288,625289,625295,625296,625302,625303,625306,625307,625312,625313,625345,625346,625347,625348,625353,625354,625355,625391,625395,625396,625397,625398,625400,625401,625402,625409,625410,625411,625413,625414,625415,625416,625420,625554,625579,625584,625588,625591,625596,625597,625598,625599,625604,625618,625622,625623,625628,625670,625696,625697,625712,625721,625722,625725,625726,625739,625743,625744,625745,625746,625795,625806,625807,625808,625810,625811,625812,625814,625815,625846,625847,625849,625850,625851,625852,625853,625854,625855,625856,625857,625858,625859,625860,625861,625862,625864,625865,625866,626284,626285,626286,626292,626293,626294,626329,626334,626335,626350,626351,626352,626357,626358,626363,626364,626368,626401,626402,626410,626411,626447,626448,626452,626453,626454,626456,626457,626466,626467,626469,626470,626471,626475,626476,626610,626635,626640,626644,626647,626648,626659,626660,626674,626678,626684,626726,626752,626758,626759,626760,626761,626762,626768,626769,626777,626782,626783,626795,626801,626802,626851,626871,626902,626906,626907,626908,626910,626911,626912,626914,626915,626921,626922,627339,627340,627341,627349,627350,627385,627391,627392,627403,627404,627405,627406,627407,627412,627413,627420,627421,627424,627446,627447,627457,627466,627467,627504,627505,627530,627531,627666,627671,627672,627673,627674,627679,627680,627681,627682,627683,627684,627685,627686,627691,627692,627695,627696,627700,627703,627704,627705,627714,627715,627716,627718,627719,627720,627721,627730,627734,627739,627740,627782,627807,627808,627813,627814,627818,627819,627824,627825,627826,627833,627838,627839,627840,627850,627851,627858,627859,627907,627908,627927,627958,627978,628392,628393,628394,628395,628396,628406,628441,628447,628448,628449,628458,628459,628460,628461,628462,628468,628477,628480,628497,628498,628499,628500,628501,628502,628503,628504,628513,628514,628522,628561,628562,628585,628586,628722,628727,628728,628729,628730,628731,628735,628736,628737,628738,628739,628740,628741,628742,628743,628748,628749,628750,628751,628756,628760,628761,628762,628770,628771,628773,628774,628777,628778,628785,628786,628790,628791,628794,628795,628802,628803,628804,628805,628809,628810,628811,628816,628817,628818,628819,628820,628821,628826,628827,628828,628829,628830,628831,628832,628833,628838,628862,628863,628864,628868,628869,628875,628876,628881,628882,628889,628890,628895,628896,628897,628898,628899,628905,628906,628907,628914,628915,628916,628964,628965,628982,628983,629014,629015,629035,629447,629448,629449,629450,629451,629462,629497,629498,629504,629505,629506,629507,629508,629513,629514,629515,629523,629524,629533,629536,629552,629553,629554,629555,629556,629557,629558,629559,629560,629561,629570,629571,629578,629618,629619,629620,629621,629622,629623,629624,629625,629626,629627,629628,629629,629630,629631,629632,629633,629634,629635,629636,629637,629638,629639,629640,629641,629778,629783,629786,629787,629791,629798,629799,629812,629813,629817,629818,629819,629820,629821,629826,629829,629834,629835,629836,629837,629838,629839,629840,629841,629847,629848,629849,629850,629857,629858,629859,629860,629861,629865,629866,629867,629868,629871,629872,629873,629874,629875,629876,629877,629881,629882,629883,629884,629885,629886,629887,629888,629889,629890,629894,629918,629919,629924,629932,629938,629946,629947,629952,629953,629954,629955,629956,629961,629962,629971,629972,630021,630035,630036,630037,630038,630071,630072,630082,630083,630084,630085,630090,630500,630501,630502,630503,630504,630518,630519,630554,630555,630556,630561,630562,630563,630564,630565,630568,630569,630570,630578,630579,630588,630589,630592,630593,630608,630609,630616,630617,630627,630633,630634,630834,630839,630843,630847,630855,630869,630870,630874,630875,630876,630877,630878,630882,630885,630913,630914,630917,630921,630923,630924,630925,630926,630927,630928,630933,630937,630938,630945,630946,630950,630974,630980,630987,630988,630993,630994,631003,631011,631012,631017,631028,631077,631090,631091,631128,631137,631138,631141,631142,631145,631146,631555,631556,631557,631558,631559,631574,631575,631576,631612,631613,631620,631621,631622,631623,631624,631625,631632,631633,631634,631641,631642,631643,631644,631645,631648,631649,631650,631663,631664,631673,631682,631683,631689,631890,631895,631899,631903,631904,631911,631926,631927,631933,631934,631938,631941,631969,631973,631977,631980,631981,631982,631983,631989,631993,632002,632006,632030,632036,632037,632042,632043,632044,632048,632049,632059,632068,632072,632073,632084,632085,632133,632134,632145,632146,632184,632185,632193,632198,632199,632200,632201,632611,632612,632631,632632,632669,632670,632677,632678,632679,632680,632687,632688,632696,632697,632698,632699,632700,632705,632706,632718,632719,632720,632729,632737,632738,632739,632745,632946,632951,632955,632960,632961,632962,632963,632967,632973,632974,632975,632976,632977,632978,632983,632984,632985,632986,632990,632994,632997,633025,633029,633033,633045,633049,633058,633062,633086,633092,633093,633094,633095,633096,633097,633098,633099,633104,633114,633115,633124,633125,633127,633128,633129,633140,633141,633142,633190,633191,633192,633193,633195,633196,633197,633198,633199,633200,633201,633241,633242,633243,633244,633248,633249,633667,633688,633726,633742,633743,633751,633752,633753,633762,633773,633774,633775,633785,633793,633794,633801,634002,634007,634011,634012,634019,634020,634023,634028,634029,634030,634031,634032,634033,634034,634035,634042,634043,634046,634050,634053,634054,634057,634058,634059,634060,634061,634062,634063,634064,634065,634071,634072,634073,634074,634080,634081,634085,634089,634090,634091,634092,634101,634105,634114,634118,634142,634143,634149,634150,634151,634152,634153,634154,634160,634169,634170,634171,634180,634181,634182,634183,634184,634197,634198,634199,634200,634201,634202,634203,634250,634300,634301,634303,634304,634723,634744,634782,634798,634806,634807,634808,634818,634819,634826,634827,634828,634829,634830,634841,634848,634849,634857,635058,635063,635067,635068,635069,635076,635079,635083,635084,635085,635090,635091,635092,635099,635102,635106,635109,635110,635111,635112,635113,635114,635115,635116,635117,635118,635119,635120,635121,635122,635126,635127,635128,635129,635130,635131,635135,635136,635137,635140,635141,635148,635149,635157,635161,635170,635174,635199,635200,635201,635216,635217,635222,635223,635224,635225,635226,635237,635238,635239,635248,635249,635250,635251,635254,635255,635256,635257,635258,635259,635260,635358,635779,635780,635799,635800,635838,635839,635853,635854,635859,635860,635861,635862,635863,635867,635868,635869,635874,635875,635876,635881,635882,635883,635884,635885,635896,635897,635903,635904,635905,635912,635913,636114,636119,636124,636125,636132,636135,636139,636140,636147,636148,636149,636155,636158,636162,636166,636167,636168,636169,636177,636178,636182,636183,636186,636187,636191,636192,636195,636196,636205,636206,636213,636217,636226,636230,636257,636258,636272,636273,636274,636277,636278,636279,636280,636281,636299,636300,636301,636302,636303,636304,636307,636308,636315,636316,636836,636837,636854,636855,636895,636896,636897,636908,636909,636914,636915,636916,636917,636918,636922,636923,636925,636926,636931,636932,636933,636934,636935,636936,636937,636938,636950,636951,636952,636959,636960,636966,636967,636968,637170,637175,637181,637182,637187,637188,637191,637195,637204,637205,637210,637211,637214,637218,637234,637238,637243,637247,637251,637262,637269,637273,637282,637286,637314,637315,637322,637323,637324,637325,637329,637330,637331,637332,637333,637334,637349,637350,637351,637354,637355,637364,637365,637372,637893,637907,637908,637909,637910,637953,637954,637963,637964,637970,637971,637977,637978,637982,637983,637988,637989,637990,637991,637992,637993,638005,638006,638015,638021,638022,638226,638231,638232,638237,638238,638239,638242,638243,638244,638247,638251,638252,638261,638262,638266,638267,638270,638274,638290,638294,638299,638303,638307,638311,638312,638313,638318,638325,638329,638331,638332,638333,638334,638335,638336,638337,638338,638342,638371,638377,638378,638381,638382,638386,638387,638388,638389,638404,638405,638407,638408,638409,638410,638421,638428,638429,638949,638962,638963,639010,639011,639014,639015,639016,639017,639018,639019,639026,639033,639039,639061,639070,639071,639076,639077,639282,639283,639288,639289,639294,639295,639296,639297,639298,639299,639303,639308,639309,639310,639311,639312,639317,639318,639322,639326,639330,639331,639345,639346,639350,639355,639359,639363,639367,639368,639369,639374,639381,639385,639386,639387,639398,639427,639432,639433,639438,639439,639450,639451,639452,639453,639460,639477,639484,639485,639486,639771,639773,639774,640005,640006,640016,640017,640018,640067,640068,640069,640070,640082,640088,640089,640095,640117,640125,640126,640127,640132,640338,640339,640340,640345,640351,640352,640353,640354,640358,640359,640368,640369,640374,640378,640382,640387,640388,640389,640390,640391,640392,640393,640394,640395,640396,640397,640398,640399,640400,640401,640406,640407,640410,640411,640415,640419,640423,640425,640430,640437,640454,640483,640488,640495,640505,640506,640509,640510,640511,640512,640516,640533,640534,640541,640542,640826,640827,640829,640830,640831,641062,641063,641064,641065,641066,641067,641068,641071,641072,641138,641143,641144,641151,641152,641166,641167,641168,641172,641173,641181,641182,641188,641395,641396,641401,641402,641413,641414,641425,641426,641430,641434,641438,641439,641463,641464,641465,641466,641471,641475,641479,641481,641486,641493,641510,641539,641544,641551,641560,641561,641568,641569,641571,641572,641590,641591,641592,641598,641882,641883,641886,641887,642088,642089,642090,642091,642092,642093,642124,642125,642126,642127,642194,642199,642208,642209,642210,642211,642212,642213,642221,642222,642224,642225,642227,642228,642237,642243,642244,642452,642458,642468,642469,642482,642483,642485,642486,642490,642494,642495,642496,642527,642531,642535,642537,642542,642549,642550,642557,642558,642559,642560,642561,642566,642595,642596,642599,642600,642607,642608,642616,642625,642626,642627,642648,642649,642653,642654,642938,642943,643143,643144,643145,643146,643147,643148,643149,643150,643249,643250,643255,643269,643270,643276,643277,643281,643282,643283,643293,643298,643299,643508,643514,643523,643524,643529,643530,643531,643532,643539,643540,643541,643546,643547,643548,643551,643552,643553,643582,643583,643587,643591,643593,643594,643598,643599,643605,643606,643607,643612,643613,643614,643615,643616,643617,643618,643622,643652,643653,643654,643655,643664,643665,643666,643672,643705,643706,643709,643994,643999,644196,644197,644198,644199,644200,644205,644206,644207,644304,644305,644306,644311,644326,644327,644331,644332,644348,644349,644354,644564,644570,644579,644584,644585,644586,644587,644588,644589,644590,644591,644604,644605,644608,644609,644610,644611,644612,644613,644614,644615,644616,644621,644622,644623,644624,644625,644626,644637,644638,644639,644643,644647,644649,644650,644651,644655,644656,644662,644663,644668,644669,644673,644674,644678,644722,644723,644728,644729,644749,644750,644751,644752,644753,644754,644755,644762,644765,645050,645051,645054,645055,645247,645248,645249,645250,645251,645252,645253,645254,645255,645262,645263,645360,645361,645367,645383,645387,645403,645404,645405,645410,645620,645626,645635,645639,645640,645641,645644,645645,645646,645647,645648,645661,645662,645663,645664,645665,645666,645667,645668,645669,645670,645671,645672,645673,645677,645678,645679,645680,645681,645682,645683,645684,645685,645686,645687,645692,645693,645694,645699,645703,645706,645707,645712,645719,645724,645730,645734,645779,645780,645784,645785,645786,645789,645790,645791,645792,645793,645794,645804,645805,645806,645807,645809,645810,645811,645812,645818,645821,646107,646108,646109,646110,646302,646303,646304,646305,646306,646307,646308,646319,646416,646423,646424,646439,646443,646454,646455,646456,646457,646458,646459,646460,646465,646466,646472,646473,646474,646475,646476,646477,646676,646682,646683,646691,646695,646696,646703,646704,646705,646720,646721,646728,646729,646733,646738,646739,646740,646741,646742,646743,646744,646748,646749,646755,646759,646763,646768,646769,646774,646775,646780,646786,646790,646836,646841,646842,646843,646844,646845,646846,646847,646848,646849,646850,646851,646860,646861,646867,646868,646873,646874,646877,647358,647359,647374,647375,647472,647479,647480,647481,647495,647499,647500,647509,647510,647511,647512,647513,647514,647515,647519,647520,647521,647527,647528,647529,647530,647531,647532,647533,647534,647732,647733,647739,647740,647741,647742,647747,647751,647760,647761,647762,647763,647764,647765,647766,647767,647768,647769,647770,647771,647777,647778,647779,647785,647789,647799,647800,647804,647811,647815,647819,647825,647826,647827,647828,647829,647830,647836,647842,647846,647892,647898,647899,647900,647901,647906,647907,647916,647924,647925,647928,647929,647930,647933,647934,648413,648414,648430,648528,648536,648537,648550,648551,648555,648556,648557,648565,648566,648574,648575,648582,648583,648584,648589,648590,648591,648592,648593,648788,648789,648790,648798,648799,648802,648803,648807,648817,648818,648819,648820,648821,648822,648823,648824,648825,648826,648827,648828,648835,648836,648841,648845,648856,648860,648867,648871,648875,648892,648898,648902,648947,648948,648963,648972,648980,648981,648982,648983,648984,648985,648989,648990,648991,649468,649469,649470,649486,649584,649593,649605,649606,649607,649612,649613,649614,649621,649629,649630,649637,649638,649639,649646,649647,649648,649649,649650,649845,649846,649855,649856,649857,649858,649863,649864,649883,649884,649885,649886,649887,649892,649893,649897,649901,649912,649916,649923,649927,649931,649948,649954,649958,650000,650001,650002,650003,650004,650019,650020,650028,650037,650038,650039,650040,650046,650047,650523,650524,650525,650533,650534,650535,650536,650541,650542,650640,650641,650649,650660,650661,650662,650669,650670,650671,650676,650677,650685,650693,650694,650705,650706,650902,650920,650921,650940,650941,650942,650943,650944,650949,650953,650957,650968,650972,650979,650983,650987,651004,651010,651014,651055,651056,651057,651058,651059,651067,651068,651069,651075,651076,651077,651084,651085,651103,651578,651579,651580,651588,651589,651592,651593,651594,651595,651596,651597,651697,651698,651705,651706,651715,651716,651717,651726,651727,651728,651729,651730,651731,651732,651733,651740,651741,651749,651762,651958,651959,651977,651978,651979,651980,651981,651982,651983,651984,651985,651986,651987,651988,651989,651990,651991,651992,651993,651994,651999,652000,652005,652009,652013,652024,652028,652029,652034,652035,652039,652043,652049,652050,652051,652052,652053,652054,652060,652066,652070,652111,652112,652122,652123,652125,652126,652132,652133,652141,652142,652149,652150,652151,652152,652159,652633,652634,652635,652643,652644,652754,652755,652756,652761,652762,652763,652770,652771,652772,652783,652784,652785,652786,652787,652788,652796,652804,652805,652810,652811,652812,652818,653014,653015,653016,653050,653051,653056,653061,653062,653064,653065,653069,653070,653079,653080,653085,653086,653087,653088,653089,653090,653095,653096,653099,653104,653105,653106,653107,653108,653109,653110,653111,653116,653122,653126,653166,653167,653178,653182,653189,653198,653203,653204,653205,653208,653209,653210,653215,653689,653690,653699,653812,653813,653818,653819,653826,653827,653852,653859,653860,653861,653865,653866,653868,653869,653873,653874,654071,654072,654073,654074,654075,654076,654077,654107,654108,654109,654110,654111,654112,654118,654119,654120,654126,654127,654128,654129,654130,654131,654132,654133,654134,654135,654152,654153,654154,654155,654160,654161,654166,654167,654172,654178,654182,654221,654222,654223,654233,654234,654238,654239,654244,654245,654254,654258,654259,654266,654267,654271,654272,654745,654755,654869,654870,654875,654882,654908,654909,654912,654913,654914,654915,654916,654920,654921,654925,654926,654927,654928,654929,655128,655129,655130,655131,655132,655133,655134,655216,655223,655228,655234,655238,655276,655277,655278,655281,655282,655283,655284,655289,655295,655296,655299,655300,655309,655310,655313,655314,655323,655324,655327,655328,655329,655801,655811,655812,655843,655844,655845,655846,655926,655931,655938,655943,655944,655945,655946,655947,655948,655964,655965,655966,655967,655968,655969,655970,655971,655976,656189,656190,656194,656195,656196,656197,656272,656273,656279,656284,656289,656290,656294,656332,656333,656336,656337,656340,656341,656345,656352,656355,656364,656365,656366,656369,656380,656384,656385,656857,656858,656867,656868,656869,656898,656899,656900,656901,656902,656903,656904,656905,656906,656907,656982,656987,656994,656998,656999,657004,657005,657012,657013,657014,657021,657022,657023,657024,657032,657178,657179,657180,657181,657246,657250,657251,657252,657253,657254,657255,657256,657257,657258,657259,657260,657261,657266,657267,657268,657269,657270,657271,657272,657273,657274,657329,657330,657335,657340,657341,657344,657345,657350,657387,657388,657391,657392,657397,657401,657408,657411,657420,657421,657425,657436,657441,657914,657915,657924,657925,657953,657954,657955,657958,657959,657960,657961,657962,657963,658037,658038,658043,658050,658053,658054,658061,658062,658067,658068,658070,658071,658087,658088,658233,658234,658235,658236,658237,658238,658302,658306,658309,658310,658311,658312,658313,658314,658315,658316,658317,658322,658323,658324,658325,658326,658327,658328,658329,658330,658331,658332,658333,658334,658335,658344,658345,658346,658347,658348,658349,658350,658351,658352,658353,658354,658355,658356,658357,658358,658359,658360,658361,658362,658363,658368,658369,658370,658371,658372,658373,658374,658375,658376,658377,658378,658379,658386,658391,658397,658398,658399,658400,658406,658442,658443,658444,658446,658447,658453,658457,658458,658463,658464,658467,658468,658475,658476,658480,658481,658492,658496,658497,658971,658981,659009,659010,659019,659092,659093,659094,659098,659099,659106,659109,659118,659122,659123,659127,659128,659142,659143,659289,659290,659293,659294,659358,659362,659373,659378,659386,659387,659388,659389,659390,659391,659392,659399,659400,659401,659402,659403,659404,659405,659406,659407,659408,659409,659410,659411,659412,659413,659414,659415,659416,659417,659418,659419,659424,659425,659426,659427,659428,659429,659430,659431,659432,659433,659434,659435,659436,659442,659447,659462,659498,659499,659502,659509,659513,659514,659515,659518,659519,659520,659523,659524,659525,659530,659531,659532,659535,659536,659548,659552,659649,659650,659651,659652,659653,660027,660036,660037,660065,660075,660141,660142,660143,660144,660147,660148,660149,660153,660154,660162,660165,660174,660178,660184,660185,660186,660187,660188,660198,660199,660262,660263,660264,660265,660266,660267,660334,660335,660336,660337,660344,660345,660350,660414,660418,660429,660434,660447,660448,660454,660455,660456,660475,660480,660491,660492,660498,660503,660518,660554,660558,660559,660564,660565,660570,660571,660572,660573,660574,660575,660580,660581,660582,660583,660584,660585,660586,660587,660591,660604,660605,660608,660653,660654,660655,660656,660657,660658,660704,660705,660709,660710,661082,661083,661091,661092,661121,661122,661130,661131,661154,661155,661156,661157,661194,661195,661196,661197,661198,661199,661200,661201,661202,661203,661204,661208,661209,661217,661218,661221,661222,661230,661234,661244,661245,661254,661255,661256,661315,661316,661317,661318,661319,661320,661321,661322,661323,661324,661389,661390,661391,661392,661393,661394,661395,661396,661399,661400,661401,661406,661470,661474,661485,661490,661504,661510,661511,661531,661536,661548,661554,661559,661573,661574,661610,661614,661615,661616,661619,661620,661621,661627,661628,661629,661630,661637,661638,661639,661640,661641,661642,661647,661653,661654,661655,661656,661661,661662,661664,661665,661708,661709,661710,661711,661713,661714,661715,661759,661760,661766,661767,662138,662139,662147,662178,662179,662185,662186,662207,662208,662209,662210,662211,662212,662213,662214,662249,662250,662251,662252,662253,662256,662257,662258,662259,662264,662272,662273,662274,662277,662278,662279,662286,662290,662301,662302,662311,662312,662370,662371,662372,662373,662374,662379,662380,662445,662446,662449,662450,662451,662452,662453,662454,662455,662456,662462,662463,662526,662530,662531,662532,662533,662534,662535,662536,662537,662538,662539,662540,662541,662546,662547,662560,662566,662586,662587,662592,662593,662603,662604,662610,662615,662628,662629,662630,662666,662671,662672,662673,662674,662675,662676,662679,662680,662681,662702,662703,662708,662709,662710,662711,662712,662718,662720,662721,662722,662759,662760,662761,662762,662763,662764,662765,662770,662771,662772,662815,662823,662824,662882,662884,662885,663194,663203,663235,663241,663262,663263,663264,663265,663266,663269,663270,663271,663272,663273,663274,663275,663304,663305,663306,663320,663328,663329,663334,663335,663342,663343,663346,663347,663358,663359,663360,663368,663426,663427,663436,663501,663508,663509,663510,663511,663518,663519,663520,663582,663603,663616,663622,663633,663634,663635,663636,663637,663638,663639,663640,663641,663642,663649,663650,663651,663652,663653,663654,663655,663656,663657,663658,663659,663666,663671,663677,663678,663679,663680,663681,663682,663683,663684,663685,663722,663723,663728,663729,663730,663731,663734,663735,663737,663738,663757,663758,663764,663765,663768,663774,663777,663778,663814,663815,663816,663817,663819,663820,663827,663828,663871,663880,663937,663938,663940,663941,663942,664250,664259,664260,664291,664297,664318,664319,664326,664327,664328,664329,664330,664331,664332,664360,664361,664375,664376,664384,664391,664399,664400,664402,664403,664404,664416,664417,664424,664425,664481,664482,664492,664556,664557,664575,664576,664577,664578,664579,664580,664581,664638,664658,664659,664672,664678,664688,664689,664722,664727,664732,664733,664734,664735,664736,664737,664738,664739,664740,664779,664780,664781,664789,664790,664794,664795,664796,664797,664802,664803,664804,664805,664813,664814,664819,664820,664824,664829,664830,664834,664870,664871,664884,664926,664927,664936,664993,664994,664997,664998,664999,665305,665306,665315,665316,665317,665346,665347,665353,665373,665374,665387,665388,665389,665416,665429,665430,665431,665440,665447,665456,665459,665460,665473,665474,665480,665481,665482,665536,665537,665538,665548,665603,665604,665605,665606,665611,665612,665613,665624,665625,665626,665627,665632,665633,665634,665635,665636,665637,665638,665639,665640,665694,665713,665714,665715,665728,665734,665735,665743,665744,665778,665783,665788,665789,665837,665838,665845,665853,665854,665857,665858,665861,665862,665869,665870,665871,665874,665875,665876,665880,665881,665884,665885,665886,665890,665926,665941,665980,665981,665982,665992,665993,666048,666049,666054,666055,666360,666361,666362,666372,666373,666401,666402,666403,666409,666410,666428,666429,666430,666444,666445,666472,666483,666484,666485,666496,666502,666503,666512,666516,666530,666537,666538,666592,666593,666604,666605,666658,666659,666660,666661,666662,666663,666664,666665,666666,666667,666668,666674,666675,666676,666679,666680,666683,666684,666693,666694,666695,666696,666697,666750,666757,666758,666759,666760,666761,666762,666763,666764,666769,666770,666784,666791,666792,666793,666794,666795,666796,666797,666798,666799,666834,666839,666844,666894,666895,666900,666901,666910,666911,666912,666913,666918,666919,666920,666921,666926,666927,666928,666929,666930,666931,666936,666937,666938,666939,666940,666941,666946,666982,666996,667035,667036,667049,667095,667096,667097,667098,667099,667100,667103,667104,667105,667111,667416,667417,667429,667456,667457,667458,667465,667466,667467,667472,667473,667474,667475,667484,667485,667501,667528,667529,667538,667539,667552,667557,667558,667567,667568,667572,667586,667594,667647,667648,667660,667661,667662,667714,667715,667718,667719,667720,667721,667722,667723,667729,667730,667732,667733,667734,667735,667740,667741,667752,667753,667806,667812,667813,667814,667815,667816,667817,667818,667819,667820,667821,667825,667840,667858,667859,667860,667861,667862,667863,667864,667865,667866,667867,667868,667869,667870,667871,667872,667873,667874,667875,667876,667877,667878,667879,667880,667881,667882,667883,667890,667891,667894,667895,667899,667900,667951,667952,667953,667954,667955,667956,667977,667978,667983,667984,667985,667986,667993,667994,667995,667996,668001,668002,668038,668039,668052,668090,668091,668105,668151,668152,668153,668154,668155,668156,668157,668158,668159,668160,668167,668472,668485,668512,668513,668522,668523,668524,668525,668526,668527,668528,668529,668530,668531,668532,668539,668540,668557,668585,668586,668593,668594,668607,668608,668613,668622,668623,668624,668628,668629,668641,668642,668650,668703,668717,668718,668770,668785,668797,668802,668803,668804,668805,668809,668862,668868,668869,668876,668877,668881,668882,668895,668896,668913,668914,668915,668916,668917,668918,668919,668920,668921,668922,668923,668924,668925,668926,668927,668928,668929,668930,668931,668932,668933,668934,668935,668936,668937,668938,668939,668940,668947,668948,668949,668950,668954,668955,668956,669034,669035,669054,669055,669056,669057,669095,669096,669097,669098,669099,669100,669107,669108,669146,669160,669161,669206,669207,669212,669213,669214,669215,669223,669528,669535,669536,669537,669538,669540,669541,669568,669579,669580,669581,669582,669583,669584,669587,669588,669594,669595,669596,669613,669642,669643,669644,669645,669646,669647,669648,669649,669662,669663,669664,669669,669678,669679,669684,669685,669686,669696,669697,669698,669705,669706,669759,669760,669774,669826,669841,669853,669857,669858,669861,669862,669865,669918,669924,669925,669926,669927,669928,669929,669930,669931,669932,669933,669938,669939,669940,669941,669942,669943,669944,669945,669946,669947,669948,669949,669950,669951,669968,669969,669970,669995,669996,669997,669998,669999,670010,670011,670091,670099,670100,670101,670109,670110,670156,670157,670162,670163,670202,670215,670216,670217,670261,670262,670263,670279,670584,670585,670590,670591,670594,670595,670596,670624,670625,670644,670650,670651,670668,670669,670717,670718,670719,670724,670725,670734,670741,670742,670751,670752,670753,670760,670761,670816,670829,670830,670881,670882,670888,670889,670890,670891,670897,670898,670909,670912,670913,670918,670919,670921,670922,670974,671015,671016,671017,671018,671019,671020,671021,671022,671023,671024,671025,671052,671053,671054,671055,671056,671065,671066,671147,671154,671155,671157,671158,671161,671162,671163,671164,671165,671213,671214,671216,671217,671218,671258,671259,671266,671267,671268,671269,671270,671271,671272,671316,671317,671318,671334,671335,671641,671642,671643,671645,671646,671681,671682,671700,671701,671706,671713,671714,671715,671723,671724,671770,671771,671772,671773,671774,671779,671780,671790,671798,671807,671808,671816,671872,671873,671885,671936,671937,671938,671943,671944,671947,671948,671949,671953,671954,671955,671956,671957,671958,671959,671965,671968,671975,671977,671978,671979,672030,672031,672066,672067,672068,672069,672070,672071,672072,672073,672074,672075,672076,672077,672078,672079,672080,672111,672112,672113,672120,672121,672122,672202,672203,672207,672208,672209,672210,672214,672215,672216,672217,672271,672314,672315,672316,672321,672322,672323,672324,672325,672326,672327,672372,672373,672377,672378,672379,672389,672390,672700,672738,672739,672745,672746,672747,672748,672756,672757,672758,672761,672762,672768,672769,672771,672772,672778,672779,672825,672826,672827,672828,672829,672835,672846,672854,672863,672872,672929,672930,672931,672941,672992,672993,672998,672999,673005,673006,673010,673011,673012,673013,673014,673015,673016,673021,673024,673025,673031,673034,673035,673036,673086,673087,673088,673121,673122,673123,673124,673125,673126,673127,673168,673169,673170,673171,673172,673173,673174,673175,673176,673177,673255,673256,673257,673258,673259,673262,673263,673371,673372,673373,673374,673375,673376,673377,673378,673428,673432,673433,673435,673436,673445,673795,673800,673801,673804,673805,673813,673814,673815,673816,673817,673818,673824,673828,673829,673830,673831,673832,673833,673834,673881,673882,673891,673902,673910,673919,673927,673928,673987,673988,673997,673998,674048,674054,674062,674063,674071,674072,674073,674077,674080,674081,674082,674087,674091,674092,674099,674100,674101,674102,674103,674104,674143,674144,674145,674146,674147,674148,674149,674150,674151,674152,674153,674154,674155,674156,674157,674158,674159,674160,674161,674162,674163,674164,674165,674166,674167,674168,674169,674170,674171,674172,674173,674174,674175,674176,674177,674178,674225,674226,674227,674228,674229,674230,674231,674232,674310,674311,674312,674313,674314,674317,674318,674428,674429,674430,674431,674432,674433,674484,674487,674488,674492,674493,674501,674850,674851,674855,674856,674861,674862,674870,674871,674872,674873,674880,674937,674947,674958,674959,674966,674975,674976,674982,674983,675044,675053,675054,675055,675073,675074,675075,675076,675104,675110,675119,675128,675129,675133,675134,675137,675138,675143,675144,675148,675154,675155,675156,675157,675158,675159,675160,675161,675162,675163,675164,675200,675201,675202,675203,675204,675205,675206,675207,675208,675209,675210,675211,675212,675213,675214,675215,675216,675217,675218,675219,675220,675221,675222,675223,675224,675225,675226,675227,675228,675229,675230,675231,675232,675233,675366,675367,675373,675539,675540,675542,675543,675549,675556,675557,675905,675906,675907,675911,675918,675935,675936,675993,676002,676003,676015,676016,676021,676022,676032,676033,676038,676100,676101,676110,676111,676128,676129,676130,676131,676132,676133,676160,676161,676165,676166,676175,676180,676181,676182,676185,676190,676191,676194,676200,676201,676204,676210,676211,676216,676217,676218,676219,676220,676221,676422,676429,676588,676589,676590,676591,676594,676595,676596,676598,676605,676611,676612,676961,676962,676966,676967,676974,676975,676990,676991,677049,677057,677058,677072,677073,677074,677075,677076,677077,677089,677094,677157,677158,677167,677184,677185,677188,677189,677217,677218,677220,677221,677231,677235,677236,677238,677239,677241,677247,677250,677257,677260,677261,677266,677276,677277,677478,677479,677484,677485,677643,677644,677645,677646,677647,677648,677649,677650,677651,677654,677660,677661,677667,678017,678022,678031,678032,678033,678046,678105,678106,678113,678145,678146,678149,678150,678214,678222,678223,678239,678240,678245,678274,678275,678276,678286,678287,678290,678291,678295,678297,678303,678306,678313,678316,678317,678318,678321,678322,678326,678327,678328,678333,678535,678536,678537,678538,678539,678540,678699,678700,678703,678704,678705,678706,678710,678715,678716,678717,678723,678724,679073,679074,679078,679089,679090,679101,679102,679162,679163,679168,679169,679202,679203,679204,679205,679270,679278,679288,679290,679291,679294,679295,679296,679301,679341,679342,679343,679346,679351,679353,679359,679362,679369,679373,679374,679375,679376,679377,679378,679381,679382,679384,679385,679388,679389,679755,679766,679771,679772,679779,679780,679781,680130,680131,680133,680134,680146,680147,680156,680157,680219,680220,680221,680222,680223,680224,680326,680334,680343,680344,680346,680347,680348,680349,680350,680351,680357,680358,680394,680395,680396,680397,680398,680401,680402,680406,680407,680409,680410,680415,680418,680425,680430,680431,680432,680433,680437,680441,680442,680444,680811,680821,680822,680827,680836,680837,681188,681203,681204,681205,681206,681212,681381,681382,681390,681391,681398,681399,681400,681403,681404,681405,681406,681413,681414,681449,681450,681451,681452,681453,681456,681457,681462,681463,681465,681466,681471,681474,681475,681480,681481,681493,681498,681500,681867,681877,681883,681884,681893,682262,682263,682268,682436,682437,682438,682446,682447,682448,682451,682452,682453,682454,682455,682470,682505,682506,682512,682518,682522,682527,682530,682531,682532,682535,682536,682537,682548,682549,682554,682556,682557,682923,682924,682926,682927,682928,682933,682940,682941,682942,682943,682949,683319,683320,683324,683325,683492,683493,683503,683504,683505,683506,683507,683508,683509,683510,683526,683561,683568,683574,683578,683583,683587,683588,683589,683590,683591,683592,683596,683597,683598,683599,683604,683610,683612,683613,683614,683980,683981,683982,683984,683985,683988,683989,683999,684000,684005,684376,684380,684381,684382,684547,684548,684560,684561,684562,684563,684581,684582,684617,684623,684624,684630,684634,684639,684644,684645,684646,684647,684651,684652,684655,684656,684660,684666,684669,684670,685041,685042,685043,685044,685056,685057,685060,685061,685432,685437,685438,685602,685603,685604,685630,685631,685632,685633,685636,685637,685672,685673,685677,685678,685679,685686,685687,685690,685694,685695,685706,685707,685712,685713,685716,685717,685722,685726,686113,686116,686488,686494,686658,686659,686685,686686,686689,686690,686691,686692,686727,686728,686729,686732,686733,686743,686744,686746,686747,686749,686750,686751,686761,686762,686769,686772,686773,686774,686777,686778,686781,686782,687169,687172,687181,687182,687183,687184,687185,687544,687545,687549,687550,687714,687741,687783,687784,687788,687800,687802,687803,687804,687805,687806,687812,687813,687814,687815,687816,687817,687825,687829,687830,687831,687832,687833,687834,687837,688224,688225,688228,688229,688236,688237,688238,688239,688240,688241,688242,688601,688602,688603,688604,688605,688770,688779,688780,688781,688782,688789,688790,688791,688797,688839,688844,688856,688859,688860,688861,688867,688868,688881,688886,688887,688888,688889,688893,689279,689280,689281,689284,689285,689286,689292,689293,689297,689298,689826,689834,689835,689838,689839,689844,689845,689847,689848,689849,689850,689852,689853,689895,689900,689901,689912,689913,689922,689923,689937,689948,689949,690335,690336,690341,690342,690347,690348,690354,690882,690890,690895,690896,690897,690898,690899,690900,690906,690907,690908,690951,690952,690956,690957,690958,690969,690970,690975,690976,690977,690978,690992,690993,690997,690998,690999,691000,691003,691004,691390,691391,691398,691402,691403,691404,691410,691938,691939,691946,692008,692009,692013,692014,692015,692016,692017,692026,692027,692028,692029,692030,692031,692047,692048,692049,692052,692053,692056,692057,692059,692433,692434,692436,692437,692445,692446,692447,692454,692458,692459,692465,692466,692995,692996,693002,693003,693065,693066,693070,693071,693072,693073,693074,693075,693076,693077,693078,693100,693101,693102,693103,693104,693107,693108,693113,693115,693488,693489,693490,693492,693493,693494,693501,693502,693509,693510,693514,693519,693520,693521,694052,694058,694059,694060,694122,694123,694124,694129,694130,694131,694132,694133,694134,694135,694153,694154,694155,694156,694157,694158,694159,694163,694169,694171,694172,694544,694545,694549,694550,694551,694557,694564,694565,694570,694574,694575,695108,695115,695116,695180,695181,695190,695191,695192,695209,695210,695211,695212,695219,695225,695227,695228,695229,695600,695606,695607,695613,695614,695619,695620,695626,695629,695630,696164,696172,696237,696238,696247,696248,696249,696250,696251,696252,696253,696254,696255,696256,696257,696265,696275,696281,696284,696285,696286,696287,696288,696464,696465,696466,696467,696656,696657,696663,696670,696671,696675,696682,696685,697219,697220,697227,697228,697294,697304,697305,697306,697307,697308,697309,697310,697311,697312,697313,697314,697315,697320,697321,697331,697337,697341,697342,697343,697344,697345,697519,697520,697521,697522,697523,697524,697525,697526,697531,697532,697533,697534,697535,697536,697537,697713,697714,697719,697727,697731,697738,697741,698274,698275,698276,698283,698350,698351,698356,698357,698358,698369,698370,698371,698372,698375,698376,698377,698387,698392,698393,698400,698401,698402,698526,698528,698575,698576,698579,698580,698581,698582,698583,698586,698587,698588,698589,698590,698591,698592,698593,698594,698770,698774,698775,698783,698787,698788,698793,698794,698797,698798,699330,699331,699339,699407,699408,699409,699411,699412,699414,699415,699427,699428,699429,699430,699431,699432,699443,699444,699447,699448,699449,699457,699458,699581,699582,699584,699585,699630,699631,699638,699639,699640,699641,699642,699643,699649,699650,699826,699829,699830,699839,699843,699844,699845,699848,699849,699850,699853,699854,699855,699858,699859,699860,699861,700386,700395,700396,700465,700466,700467,700471,700472,700473,700474,700484,700485,700486,700487,700499,700500,700501,700502,700503,700504,700514,700548,700549,700551,700552,700585,700587,700588,700636,700637,700638,700640,700641,700685,700686,700687,700695,700696,700697,700698,700706,700707,700830,700831,700832,700833,700882,700885,700894,700895,700900,700901,700902,700903,700904,700905,700910,700911,700912,700913,700914,700915,700916,700917,700918,701199,701200,701201,701202,701205,701206,701210,701211,701212,701442,701451,701452,701453,701454,701455,701530,701531,701532,701533,701534,701535,701549,701550,701551,701552,701556,701557,701558,701559,701570,701603,701604,701605,701607,701608,701641,701643,701644,701691,701692,701693,701697,701730,701731,701732,701733,701736,701737,701738,701739,701740,701741,701742,701757,701758,701759,701760,701762,701763,701764,701883,701884,701885,701886,701887,701888,701889,701890,701938,701941,701942,701949,701950,701951,701957,701958,701959,701960,701967,701968,701969,701970,701973,701974,702255,702256,702257,702258,702259,702260,702261,702262,702263,702265,702266,702267,702268,702269,702498,702499,702508,702509,702510,702511,702512,702591,702592,702593,702594,702595,702596,702603,702604,702605,702608,702609,702625,702626,702659,702660,702664,702697,702700,702741,702742,702743,702744,702745,702746,702747,702748,702752,702753,702785,702786,702787,702788,702789,702790,702791,702792,702793,702794,702795,702796,702797,702806,702807,702808,702812,702813,702816,702817,702819,702820,702821,702822,702823,702892,702893,702894,702895,702938,702939,702940,702941,702942,702945,702946,702947,702994,702997,702998,702999,703002,703003,703004,703005,703006,703030,703303,703304,703305,703306,703310,703311,703314,703315,703316,703317,703318,703319,703320,703321,703322,703324,703325,703326,703327,703328,703555,703556,703567,703568,703652,703653,703656,703657,703658,703659,703665,703666,703668,703669,703670,703671,703676,703677,703678,703679,703680,703681,703715,703720,703753,703756,703796,703797,703798,703799,703800,703801,703802,703803,703807,703808,703840,703841,703842,703845,703846,703847,703848,703861,703862,703864,703865,703866,703867,703868,703873,703876,703877,703878,703879,703880,703947,703948,703949,703950,703951,703952,703953,703982,703983,703984,703985,703994,703995,704002,704003,704004,704050,704054,704055,704056,704057,704058,704059,704060,704061,704073,704074,704075,704076,704085,704086,704358,704359,704360,704361,704362,704363,704365,704366,704367,704375,704376,704377,704381,704382,704383,704384,704385,704612,704613,704614,704615,704624,704709,704710,704711,704712,704722,704723,704724,704727,704728,704731,704732,704760,704761,704762,704763,704770,704771,704776,704809,704812,704813,704851,704852,704853,704863,704896,704897,704917,704929,704930,704935,704936,704937,704938,704939,704940,704943,704944,704945,704946,704947,704948,705003,705004,705007,705008,705009,705010,705037,705038,705039,705040,705041,705042,705043,705044,705050,705059,705060,705106,705111,705112,705113,705114,705121,705122,705123,705128,705129,705132,705133,705139,705140,705141,705414,705415,705418,705419,705420,705421,705422,705426,705427,705428,705429,705440,705441,705442,705443,705444,705671,705672,705680,705784,705785,705786,705787,705816,705817,705818,705819,705820,705821,705822,705823,705824,705825,705826,705827,705832,705865,705868,705869,705870,705871,705872,705873,705906,705907,705908,705919,705920,705952,705961,705962,705963,705964,705965,705973,705974,705986,705987,705992,705993,705994,705995,705996,705997,705998,705999,706000,706001,706002,706003,706004,706005,706058,706059,706065,706066,706083,706084,706085,706086,706087,706093,706094,706097,706098,706099,706100,706101,706106,706107,706116,706162,706176,706177,706179,706180,706181,706182,706183,706184,706189,706190,706194,706195,706470,706475,706476,706477,706481,706482,706483,706484,706485,706486,706497,706498,706499,706500,706501,706503,706504,706505,706506,706728,706729,706736,706737,706872,706875,706876,706877,706878,706879,706880,706881,706882,706888,706920,706921,706925,706926,706927,706928,706929,706930,706962,706963,706967,706968,706969,706970,706971,706975,706976,706977,707008,707014,707015,707016,707017,707021,707022,707024,707025,707026,707029,707030,707031,707043,707044,707045,707046,707052,707053,707054,707055,707060,707061,707062,707063,707064,707065,707066,707105,707106,707107,707108,707113,707114,707115,707122,707128,707129,707130,707131,707138,707139,707140,707141,707142,707143,707144,707149,707156,707157,707163,707164,707171,707172,707218,707223,707224,707225,707226,707231,707232,707246,707249,707250,707526,707527,707537,707538,707541,707542,707556,707557,707558,707559,707560,707561,707562,707563,707785,707792,707793,707794,707928,707943,707944,707975,707976,707977,707985,707986,707987,708018,708022,708023,708027,708028,708032,708033,708064,708069,708070,708078,708079,708080,708082,708083,708086,708087,708102,708103,708117,708118,708119,708120,708121,708122,708123,708124,708125,708160,708161,708162,708163,708164,708165,708166,708167,708168,708169,708170,708177,708178,708183,708184,708185,708186,708187,708188,708194,708195,708199,708200,708205,708214,708220,708227,708274,708278,708279,708282,708283,708284,708285,708286,708287,708302,708305,708583,708593,708598,708599,708603,708604,708605,708606,708613,708614,708615,708618,708619,708841,708849,708850,708851,708984,708997,708998,708999,709030,709031,709032,709035,709036,709037,709042,709043,709074,709077,709078,709084,709085,709089,709120,709121,709124,709125,709139,709140,709143,709159,709160,709161,709162,709163,709168,709169,709170,709171,709172,709178,709179,709180,709181,709182,709216,709217,709220,709221,709222,709223,709224,709225,709232,709233,709239,709240,709243,709244,709250,709251,709256,709261,709270,709275,709283,709284,709330,709333,709334,709358,709361,709639,709648,709649,709654,709655,709656,709658,709659,709660,709661,709662,709663,709664,709665,709675,709896,709897,709906,709907,710040,710041,710043,710044,710045,710046,710048,710049,710050,710051,710052,710053,710086,710087,710090,710091,710093,710094,710099,710130,710133,710141,710145,710177,710180,710196,710199,710219,710220,710221,710222,710223,710224,710228,710229,710237,710238,710272,710288,710294,710295,710300,710307,710311,710312,710317,710318,710326,710331,710339,710340,710341,710386,710389,710413,710414,710417,710418,710694,710695,710699,710701,710703,710704,710705,710711,710712,710713,710714,710715,710718,710719,710720,710721,710722,710723,710724,710731,710732,710787,710788,710790,710946,710947,710948,710951,710952,710953,710963,711097,711098,711099,711103,711142,711145,711146,711150,711151,711152,711153,711154,711155,711186,711189,711197,711201,711233,711236,711252,711255,711256,711285,711286,711287,711288,711289,711290,711294,711328,711344,711349,711350,711351,711356,711363,711367,711374,711375,711380,711381,711387,711396,711397,711398,711399,711400,711442,711445,711468,711469,711470,711473,711474,711475,711749,711750,711751,711754,711755,711756,711757,711758,711759,711760,711768,711769,711770,711777,711778,711779,711780,711781,711783,711787,711788,711789,711842,711843,711844,711846,711847,712001,712002,712003,712004,712006,712007,712008,712018,712019,712198,712201,712242,712245,712246,712253,712257,712288,712289,712292,712293,712308,712309,712311,712312,712313,712346,712347,712350,712384,712389,712390,712391,712392,712399,712400,712405,712406,712412,712418,712419,712423,712431,712436,712444,712445,712453,712454,712455,712456,712457,712464,712465,712466,712467,712468,712469,712498,712501,712502,712519,712520,712521,712522,712523,712524,712525,712530,712531,712532,712533,712534,712805,712806,712809,712810,712811,712812,712813,712814,712815,712836,712837,712838,712839,712840,712844,712845,712898,712899,712902,712903,712904,713057,713058,713060,713062,713063,713071,713072,713073,713074,713253,713254,713257,713298,713301,713302,713303,713304,713305,713308,713309,713313,713314,713343,713344,713345,713348,713349,713350,713365,713368,713369,713403,713406,713440,713441,713444,713445,713448,713449,713454,713455,713461,713467,713468,713473,713474,713475,713479,713487,713492,713501,713502,713512,713513,713519,713520,713521,713522,713523,713524,713525,713526,713553,713554,713557,713558,713559,713564,713565,713566,713567,713568,713569,713572,713573,713574,713575,713576,713577,713578,713579,713580,713587,713588,713589,713590,713591,713861,713865,713866,713893,713894,713895,713896,713897,713901,713954,713959,713960,713961,714113,714126,714127,714308,714309,714310,714313,714354,714358,714359,714360,714361,714362,714363,714364,714365,714369,714370,714371,714399,714400,714405,714406,714459,714461,714462,714497,714498,714499,714500,714505,714506,714510,714517,714518,714522,714523,714529,714530,714535,714542,714543,714548,714558,714569,714570,714575,714576,714581,714582,714608,714609,714610,714614,714615,714616,714617,714618,714619,714620,714621,714622,714623,714624,714625,714626,714627,714628,714629,714630,714631,714646,714647,714916,714917,714921,714934,714935,714936,714937,714952,714953,714957,714958,715010,715011,715016,715017,715169,715181,715182,715364,715365,715369,715410,715411,715417,715418,715419,715420,715426,715427,715428,715455,715462,715514,715515,715517,715562,715566,715574,715578,715585,715590,715591,715597,715598,715599,715604,715613,715614,715625,715626,715627,715630,715631,715638,715639,715664,715665,715671,715672,715673,715674,715675,715676,715681,715682,715683,715684,715703,715971,715972,715973,715976,715977,715989,715990,715993,715994,715995,715996,716009,716010,716013,716014,716015,716067,716068,716073,716225,716237,716420,716424,716425,716467,716468,716483,716484,716485,716511,716512,716518,716519,716532,716533,716537,716569,716570,716571,716573,716618,716622,716630,716634,716635,716640,716641,716645,716646,716653,716654,716659,716660,716668,716669,716670,716682,716683,716684,716685,716686,716687,716694,716695,716696,716720,716752,716753,716754,716758,716759,717027,717028,717031,717032,717033,717042,717043,717044,717045,717052,717053,717054,717065,717066,717067,717070,717071,717124,717129,717281,717282,717288,717289,717290,717291,717293,717476,717479,717480,717524,717532,717533,717534,717535,717536,717537,717540,717541,717568,717574,717575,717576,717587,717588,717589,717593,717624,717625,717626,717629,717673,717674,717678,717686,717690,717691,717692,717695,717696,717697,717701,717709,717714,717715,717721,717722,717723,717724,717725,717739,717740,717741,717742,717751,717752,717776,717801,717802,717803,717804,717807,717808,717810,717811,717812,717813,717814,718083,718087,718088,718097,718098,718110,718111,718122,718123,718127,718180,718185,718338,718339,718340,718341,718343,718344,718347,718348,718349,718532,718535,718579,718584,718585,718586,718587,718588,718593,718594,718597,718624,718631,718632,718633,718634,718635,718640,718641,718642,718643,718644,718648,718649,718680,718681,718685,718728,718729,718730,718734,718735,718742,718747,718748,718749,718750,718751,718752,718757,718764,718765,718770,718776,718777,718778,718779,718780,718789,718790,718791,718808,718832,718833,718843,718844,718845,718846,718856,718857,718860,718861,718862,718863,719139,719140,719143,719152,719153,719167,719168,719169,719179,719182,719183,719236,719241,719242,719397,719398,719399,719588,719591,719636,719639,719640,719650,719653,719680,719688,719689,719690,719691,719692,719695,719696,719697,719698,719699,719703,719704,719735,719736,719740,719741,719784,719785,719790,719791,719792,719797,719798,719804,719805,719806,719807,719813,719814,719819,719820,719821,719825,719826,719832,719833,719844,719845,719847,719848,719863,719864,719889,719890,719891,719892,719898,719899,719902,719903,719911,719912,719958,719959,719960,719961,719962,719963,720196,720199,720200,720208,720225,720226,720234,720235,720237,720238,720292,720297,720298,720299,720644,720647,720648,720691,720692,720695,720706,720709,720735,720736,720747,720748,720751,720752,720759,720790,720791,720792,720795,720796,720840,720847,720848,720849,720850,720851,720852,720853,720854,720869,720870,720871,720872,720873,720874,720875,720876,720881,720888,720898,720899,720900,720904,720905,720918,720919,720948,720949,720953,720954,720959,720960,720961,720962,720967,721013,721014,721015,721016,721017,721018,721019,721020,721252,721256,721257,721263,721264,721282,721289,721290,721293,721347,721348,721354,721355,721699,721700,721703,721704,721705,721746,721747,721748,721751,721752,721761,721762,721765,721790,721791,721792,721814,721815,721841,721842,721843,721844,721845,721846,721847,721851,721896,721904,721905,721906,721907,721908,721909,721926,721927,721928,721929,721930,721931,721937,721944,721953,721954,721961,721962,721963,721965,721966,721967,721972,721973,721974,722005,722006,722009,722018,722019,722023,722069,722070,722075,722076,722308,722313,722319,722337,722338,722345,722349,722350,722354,722355,722356,722357,722366,722367,722368,722403,722404,722411,722754,722755,722756,722760,722761,722802,722803,722807,722808,722809,722816,722817,722818,722821,722846,722847,722869,722870,722896,722897,722898,722899,722900,722901,722902,722907,722952,722968,722969,722970,722971,722993,722999,723000,723008,723009,723019,723020,723021,723023,723024,723027,723028,723062,723065,723075,723076,723079,723080,723125,723132,723139,723140,723141,723142,723143,723144,723145,723146,723364,723369,723375,723392,723393,723394,723397,723398,723399,723400,723401,723405,723406,723407,723409,723410,723411,723412,723413,723414,723421,723422,723423,723424,723425,723459,723467,723810,723811,723817,723858,723864,723865,723866,723867,723868,723869,723870,723871,723872,723873,723877,723902,723910,723911,723912,723913,723921,723922,723923,723924,723925,723952,723953,723962,723963,724008,724009,724023,724024,724027,724028,724049,724054,724055,724056,724064,724080,724081,724082,724083,724118,724121,724122,724132,724135,724136,724137,724180,724181,724187,724188,724194,724195,724196,724197,724198,724199,724200,724201,724202,724203,724420,724421,724425,724426,724431,724432,724448,724449,724452,724453,724462,724463,724464,724465,724466,724469,724470,724471,724472,724473,724474,724475,724476,724477,724478,724480,724481,724515,724523,724866,724873,724914,724915,724921,724922,724923,724924,724925,724926,724927,724928,724932,724933,724958,724959,724965,724966,724969,724970,724972,724975,724976,724977,725007,725008,725015,725016,725017,725018,725065,725066,725067,725068,725077,725078,725079,725084,725085,725094,725095,725096,725097,725104,725105,725110,725111,725120,725121,725174,725177,725178,725179,725187,725188,725192,725193,725235,725236,725237,725241,725242,725243,725250,725251,725258,725259,725260,725288,725289,725290,725292,725293,725294,725295,725477,725478,725482,725483,725487,725488,725489,725504,725505,725508,725519,725520,725521,725526,725527,725528,725529,725530,725531,725532,725533,725537,725571,725572,725578,725579,725922,725923,725928,725929,725971,725972,725973,725986,725987,725988,726015,726021,726026,726027,726028,726053,726054,726055,726056,726057,726062,726063,726064,726070,726071,726124,726125,726130,726131,726132,726133,726141,726149,726150,726153,726154,726160,726166,726176,726177,726178,726230,726234,726235,726236,726237,726238,726239,726242,726243,726244,726249,726291,726292,726296,726297,726305,726306,726315,726316,726317,726341,726342,726343,726344,726345,726346,726348,726349,726350,726351,726352,726353,726354,726534,726539,726544,726545,726561,726562,726564,726565,726593,726628,726629,726630,726631,726632,726633,726634,726883,726884,726885,726886,726979,726980,726981,726982,726983,726984,727029,727030,727037,727038,727039,727040,727041,727042,727071,727077,727108,727109,727110,727111,727112,727113,727114,727117,727118,727119,727125,727126,727181,727182,727185,727186,727197,727202,727203,727204,727205,727210,727211,727216,727222,727223,727233,727234,727286,727287,727291,727292,727293,727294,727295,727296,727297,727298,727299,727305,727347,727351,727352,727358,727359,727360,727361,727362,727372,727373,727396,727397,727398,727399,727400,727407,727408,727409,727410,727411,727589,727590,727595,727601,727618,727620,727621,727622,727623,727624,727629,727630,727631,727632,727649,727936,727937,727938,727939,727940,727941,727942,727943,728086,728087,728092,728093,728127,728128,728133,728163,728164,728165,728169,728170,728173,728174,728181,728238,728241,728253,728254,728257,728258,728267,728272,728279,728280,728290,728343,728344,728345,728351,728352,728353,728354,728360,728361,728403,728407,728413,728414,728415,728416,728417,728429,728452,728453,728466,728467,728644,728645,728646,728650,728651,728657,728674,728677,728678,728679,728680,728681,728684,728685,728688,728689,728705,728992,728993,728994,728995,728998,728999,729000,729143,729144,729145,729146,729147,729148,729184,729185,729189,729218,729219,729220,729237,729238,729294,729297,729310,729311,729312,729313,729323,729328,729336,729345,729346,729401,729402,729416,729459,729463,729469,729470,729485,729508,729523,729700,729701,729705,729706,729707,729713,729714,729729,729730,729736,729737,729739,729740,729745,729746,729747,729748,729749,729753,729754,729756,729757,729761,730048,730055,730056,730057,730058,730059,730241,730242,730245,730246,730274,730275,730293,730294,730295,730349,730350,730353,730379,730380,730383,730384,730392,730399,730400,730401,730458,730459,730460,730461,730462,730472,730515,730519,730520,730525,730540,730541,730564,730579,730756,730760,730761,730762,730769,730770,730771,730784,730785,730786,730792,730793,730795,730805,730806,730808,730809,730811,730813,730814,730816,730817,731104,731112,731113,731114,731115,731116,731119,731120,731121,731122,731123,731124,731298,731301,731302,731303,731329,731330,731337,731338,731341,731342,731350,731351,731352,731353,731354,731404,731405,731406,731409,731436,731437,731438,731439,731448,731454,731455,731518,731519,731522,731523,731524,731525,731527,731528,731571,731575,731576,731577,731580,731581,731596,731620,731621,731635,731636,731812,731816,731817,731826,731827,731840,731841,731848,731851,731862,731863,731864,731870,731871,731872,732146,732147,732148,732149,732159,732160,732171,732172,732173,732174,732175,732176,732177,732178,732179,732180,732181,732353,732354,732358,732359,732384,732385,732386,732392,732393,732398,732399,732407,732408,732409,732410,732411,732460,732461,732465,732503,732504,732510,732575,732576,732577,732578,732581,732582,732583,732627,732628,732632,732633,732634,732635,732636,732637,732652,732677,732678,732679,732680,732691,732692,732693,732868,732872,732883,732896,732904,732907,732908,733201,733202,733203,733204,733205,733206,733207,733208,733209,733214,733215,733216,733228,733229,733230,733231,733236,733237,733408,733409,733410,733415,733440,733441,733445,733446,733447,733448,733455,733456,733457,733458,733466,733467,733516,733521,733559,733560,733566,733577,733578,733579,733580,733581,733684,733685,733689,733690,733691,733692,733708,733709,733736,733737,733748,733749,733923,733924,733928,733929,733938,733939,733952,733953,733960,733963,733964,733965,734257,734258,734261,734262,734263,734264,734265,734266,734267,734268,734269,734270,734271,734293,734294,734464,734465,734471,734496,734500,734501,734514,734515,734523,734572,734577,734615,734622,734632,734633,734634,734635,734636,734637,734639,734640,734741,734764,734765,734766,734793,734794,734805,734978,734979,734980,734985,734992,734993,734994,735009,735010,735016,735020,735021,735312,735313,735321,735322,735323,735324,735325,735326,735349,735350,735351,735520,735526,735527,735551,735552,735555,735556,735571,735572,735579,735628,735629,735632,735633,735671,735678,735688,735689,735693,735695,735696,735697,735797,735805,735806,735807,735808,735821,735822,735850,735861,735862,735867,735868,735869,735870,736034,736035,736041,736047,736048,736066,736071,736072,736077,736200,736202,736203,736367,736368,736369,736387,736388,736389,736390,736406,736407,736408,736409,736410,736576,736581,736582,736606,736607,736608,736611,736628,736635,736685,736686,736687,736688,736705,736706,736707,736708,736727,736733,736734,736743,736744,736752,736753,736754,736852,736853,736860,736861,736864,736865,736878,736906,736907,736917,736918,736919,736922,736923,736924,736925,736926,736927,736928,736929,736930,736931,736932,736933,736934,737090,737096,737097,737102,737103,737121,737122,737126,737127,737132,737133,737245,737246,737247,737248,737253,737254,737256,737258,737259,737260,737261,737262,737263,737264,737420,737421,737422,737423,737424,737442,737443,737444,737445,737446,737447,737448,737449,737450,737451,737463,737464,737465,737466,737467,737632,737636,737637,737662,737663,737666,737667,737683,737684,737690,737691,737748,737749,737750,737751,737758,737759,737760,737761,737762,737763,737764,737765,737766,737767,737770,737771,737772,737773,737782,737783,737788,737789,737798,737799,737800,737809,737810,737907,737908,737909,737915,737916,737921,737933,737934,737963,737964,737965,737974,737975,737976,737977,737978,737979,737982,737983,737984,737985,737986,737987,737988,737989,737990,737991,738146,738147,738151,738152,738153,738158,738176,738177,738178,738182,738188,738300,738301,738302,738303,738304,738305,738306,738307,738308,738309,738310,738312,738315,738316,738317,738318,738319,738320,738321,738332,738333,738334,738335,738475,738476,738477,738478,738479,738498,738499,738502,738503,738504,738505,738506,738507,738508,738522,738523,738688,738692,738718,738721,738722,738738,738739,738740,738744,738745,738746,738803,738804,738805,738806,738807,738808,738813,738814,738815,738816,738817,738820,738821,738822,738823,738824,738825,738826,738827,738828,738829,738830,738837,738838,738839,738844,738851,738852,738853,738854,738855,738866,738960,738961,738962,738963,738964,738971,738977,738989,739021,739022,739031,739032,739033,739034,739046,739047,739203,739207,739208,739214,739232,739233,739238,739239,739244,739245,739355,739356,739357,739360,739361,739362,739363,739364,739365,739376,739377,739378,739381,739382,739383,739384,739387,739388,739389,739390,739391,739392,739398,739399,739400,739401,739402,739530,739531,739532,739553,739554,739563,739564,739565,739566,739567,739579,739580,739743,739744,739748,739794,739795,739799,739800,739856,739857,739858,739859,739860,739863,739864,739865,739866,739867,739868,739869,739870,739879,739880,739881,739882,739885,739886,739887,739893,739894,739899,739900,739906,739907,739908,739909,739910,739922,740015,740016,740017,740018,740019,740027,740032,740033,740045,740078,740079,740103,740104,740259,740263,740269,740270,740288,740294,740295,740296,740300,740301,740302,740411,740412,740433,740434,740435,740436,740437,740438,740439,740440,740441,740442,740443,740444,740447,740448,740453,740454,740455,740456,740457,740458,740459,740460,740586,740587,740608,740609,740610,740620,740621,740622,740623,740624,740625,740626,740627,740628,740635,740636,740637,740798,740799,740800,740804,740805,740819,740820,740821,740822,740823,740824,740850,740854,740855,740911,740912,740913,740914,740915,740920,740921,740922,740923,740924,740925,740942,740943,740944,740945,740946,740948,740949,740955,740962,740963,740978,741071,741072,741082,741083,741087,741088,741089,741101,741135,741159,741160,741161,741315,741316,741319,741320,741325,741344,741345,741351,741352,741357,741358,741467,741468,741490,741491,741492,741493,741496,741497,741498,741499,741504,741509,741510,741514,741515,741516,741517,741642,741661,741662,741663,741664,741665,741679,741680,741681,741682,741683,741684,741685,741692,741693,741694,741695,741696,741854,741855,741860,741861,741862,741865,741866,741867,741868,741869,741870,741873,741874,741875,741876,741877,741878,741879,741880,741881,741886,741889,741890,741905,741906,741910,741967,741968,741999,742000,742001,742002,742003,742004,742005,742011,742012,742017,742018,742033,742034,742127,742135,742136,742137,742138,742143,742144,742157,742191,742192,742216,742217,742372,742373,742376,742377,742381,742401,742408,742414,742524,742525,742526,742531,742532,742533,742534,742536,742537,742538,742539,742559,742560,742565,742572,742573,742697,742698,742716,742717,742718,742719,742720,742740,742741,742749,742750,742751,742752,742753,742910,742917,742918,742919,742920,742921,742922,742923,742924,742925,742926,742927,742928,742929,742930,742931,742936,742937,742938,742941,742942,742945,742946,742947,742960,742961,742962,742966,743022,743023,743058,743059,743060,743067,743068,743069,743072,743073,743074,743086,743087,743088,743089,743182,743183,743190,743191,743199,743212,743213,743248,743249,743273,743429,743433,743437,743438,743456,743457,743463,743464,743469,743470,743582,743583,743586,743587,743590,743591,743592,743595,743596,743615,743621,743628,743629,743752,743753,743754,743763,743764,743765,743766,743771,743772,743773,743797,743798,743808,743809,743966,743974,743975,743976,743977,743982,743983,743984,743985,743993,743994,743995,743996,743997,743998,744002,744003,744004,744015,744016,744017,744022,744077,744078,744079,744124,744125,744126,744127,744128,744129,744136,744137,744138,744139,744141,744142,744235,744236,744238,744239,744245,744246,744255,744261,744262,744263,744264,744267,744268,744305,744318,744319,744320,744321,744328,744329,744485,744488,744489,744493,744494,744495,744498,744499,744500,744501,744502,744503,744509,744510,744511,744512,744513,744519,744524,744525,744639,744640,744641,744642,744652,744653,744660,744661,744662,744663,744671,744677,744683,744684,744808,744809,744818,744819,744820,744821,744822,744823,744824,744825,744826,744827,744828,744853,744854,744855,744865,745022,745050,745051,745052,745053,745059,745060,745061,745068,745069,745070,745071,745072,745078,745130,745131,745132,745133,745134,745150,745151,745152,745157,745158,745159,745181,745182,745183,745184,745191,745192,745195,745196,745197,745291,745292,745294,745301,745311,745312,745316,745317,745320,745321,745322,745323,745361,745368,745369,745370,745371,745373,745374,745377,745378,745383,745384,745540,745541,745543,745544,745545,745550,745551,745552,745553,745554,745555,745556,745557,745558,745559,745560,745562,745563,745564,745565,745566,745567,745568,745575,745580,745709,745710,745715,745716,745719,745720,745721,745722,745723,745726,745727,745732,745733,745739,745793,745794,745795,745796,745863,745864,745874,745875,745878,745879,745880,745881,745882,745883,745895,745900,745910,745911,745912,745913,745914,745921,745922,745984,745985,745986,745987,745998,745999,746000,746001,746078,746089,746090,746091,746116,746117,746118,746119,746120,746123,746124,746125,746126,746127,746133,746134,746172,746173,746174,746175,746183,746184,746185,746186,746187,746188,746189,746205,746206,746208,746209,746212,746213,746215,746216,746247,746347,746357,746368,746369,746370,746371,746372,746416,746417,746423,746424,746427,746428,746429,746434,746435,746439,746595,746596,746597,746599,746600,746607,746608,746609,746610,746615,746616,746617,746618,746619,746620,746621,746630,746631,746636,746766,746770,746771,746779,746780,746781,746782,746787,746788,746789,746795,746848,746849,746850,746851,746852,746918,746919,746920,746930,746951,746956,746967,746968,746969,746970,746971,746977,746978,746979,747039,747040,747041,747042,747043,747044,747053,747054,747055,747056,747057,747058,747134,747135,747142,747143,747144,747145,747147,747148,747153,747154,747155,747156,747173,747174,747175,747176,747177,747178,747179,747180,747187,747188,747189,747225,747226,747227,747228,747229,747230,747231,747238,747239,747240,747241,747242,747261,747265,747266,747267,747268,747272,747273,747302,747303,747394,747396,747397,747398,747403,747412,747413,747471,747472,747473,747478,747479,747491,747495,747651,747652,747655,747672,747673,747674,747684,747685,747686,747691,747692,747822,747826,747840,747841,747842,747843,747844,747850,747851,747904,747905,747908,747924,747925,747926,747927,747974,747975,747985,747986,748006,748007,748012,748013,748026,748027,748034,748035,748095,748096,748099,748100,748109,748110,748113,748114,748141,748142,748143,748144,748145,748146,748147,748191,748192,748197,748198,748204,748205,748206,748207,748208,748209,748212,748213,748214,748215,748232,748233,748234,748235,748238,748239,748240,748242,748243,748278,748279,748280,748281,748282,748283,748284,748287,748294,748295,748317,748329,748357,748358,748449,748450,748452,748453,748454,748455,748459,748460,748466,748467,748468,748527,748528,748534,748547,748548,748550,748551,748707,748711,748712,748739,748740,748745,748746,748747,748878,748882,748883,748895,748896,748897,748898,748899,748904,748905,748906,748959,748960,748964,748965,748969,748970,748971,748972,748973,748974,748975,748976,748979,748980,748981,748982,748983,748984,749030,749038,749039,749040,749041,749042,749061,749062,749063,749068,749069,749070,749083,749091,749151,749156,749165,749170,749192,749193,749194,749195,749196,749197,749198,749200,749201,749202,749203,749204,749205,749206,749248,749249,749250,749251,749252,749253,749271,749272,749293,749294,749296,749297,749298,749333,749334,749335,749336,749337,749343,749344,749349,749350,749372,749373,749385,749391,749392,749393,749410,749411,749412,749413,749502,749503,749504,749505,749506,749510,749511,749516,749517,749521,749522,749531,749532,749533,749534,749583,749590,749604,749605,749606,749763,749764,749768,749769,749770,749771,749793,749794,749795,749800,749801,749934,749938,749939,749940,749948,749949,749950,749951,749952,749959,749960,750006,750007,750008,750009,750010,750011,750014,750015,750016,750020,750021,750022,750024,750025,750026,750027,750028,750029,750030,750031,750032,750033,750034,750035,750036,750039,750040,750086,750087,750093,750094,750095,750096,750097,750117,750118,750125,750126,750139,750147,750148,750177,750178,750179,750180,750181,750207,750208,750211,750212,750221,750222,750225,750226,750248,750249,750250,750251,750252,750253,750259,750260,750261,750262,750328,750329,750348,750349,750389,750390,750399,750400,750401,750404,750405,750406,750418,750419,750420,750427,750428,750441,750442,750446,750447,750449,750450,750459,750460,750461,750462,750465,750466,750522,750558,750559,750560,750561,750567,750573,750574,750575,750576,750577,750584,750585,750586,750587,750588,750589,750590,750591,750592,750593,750639,750646,750647,750820,750821,750822,750827,750828,750842,750843,750844,750848,750849,750855,750856,750990,750991,750995,750996,750997,750998,750999,751003,751004,751005,751006,751007,751012,751013,751014,751015,751023,751024,751025,751026,751027,751028,751029,751061,751062,751063,751064,751065,751066,751067,751068,751069,751070,751071,751077,751078,751079,751080,751081,751088,751089,751090,751091,751096,751143,751148,751149,751150,751164,751165,751166,751167,751172,751173,751182,751194,751195,751203,751204,751205,751232,751233,751234,751236,751237,751238,751264,751267,751278,751281,751304,751318,751385,751393,751394,751395,751396,751404,751444,751456,751457,751458,751459,751460,751461,751467,751468,751469,751470,751473,751474,751476,751477,751483,751498,751499,751500,751501,751502,751506,751507,751514,751515,751518,751519,751520,751521,751575,751576,751577,751578,751579,751580,751581,751614,751622,751623,751639,751640,751641,751642,751643,751646,751647,751648,751649,751650,751652,751695,751702,751703,751704,751878,751879,751884,751885,751886,751891,751892,751893,751895,751896,751897,751898,751900,751901,751903,751904,751911,752047,752048,752052,752053,752054,752055,752059,752060,752067,752068,752078,752079,752080,752081,752082,752083,752084,752085,752086,752117,752118,752123,752124,752125,752126,752134,752135,752136,752152,752153,752199,752204,752205,752217,752218,752219,752220,752221,752222,752223,752224,752227,752228,752229,752238,752249,752250,752260,752261,752288,752289,752293,752294,752320,752323,752324,752333,752334,752338,752360,752374,752441,752447,752448,752449,752452,752453,752460,752500,752513,752514,752515,752516,752522,752523,752526,752527,752528,752529,752533,752534,752539,752540,752563,752569,752570,752631,752632,752633,752635,752636,752637,752670,752676,752677,752678,752695,752696,752705,752706,752708,752709,752751,752759,752760,752761,752762,752763,752766,752767,752768,752769,752770,752771,752935,752936,752937,752938,752942,752943,752946,752947,752949,752950,752951,752957,752958,752959,752967,753104,753105,753111,753115,753116,753122,753123,753134,753135,753141,753142,753173,753196,753197,753198,753199,753208,753209,753210,753254,753255,753260,753270,753271,753272,753273,753274,753275,753276,753279,753280,753281,753282,753283,753284,753293,753294,753305,753317,753344,753350,753364,753365,753367,753368,753376,753379,753380,753381,753388,753389,753390,753393,753416,753430,753497,753498,753502,753503,753509,753510,753515,753516,753556,753563,753564,753565,753566,753576,753577,753578,753590,753595,753596,753597,753619,753625,753687,753693,753725,753726,753731,753732,753751,753764,753765,753807,753808,753816,753817,753818,753819,753820,753821,753822,753823,753824,753825,753826,753827,753828,753994,753995,753999,754000,754001,754002,754010,754011,754012,754023,754161,754167,754172,754178,754190,754198,754228,754229,754250,754251,754252,754255,754256,754265,754266,754309,754310,754311,754316,754317,754325,754326,754327,754328,754329,754336,754337,754338,754339,754349,754361,754362,754372,754373,754400,754406,754420,754421,754423,754424,754425,754432,754436,754437,754438,754439,754440,754441,754442,754443,754444,754445,754449,754472,754486,754554,754555,754556,754557,754558,754566,754567,754568,754569,754570,754571,754613,754614,754618,754619,754622,754623,754624,754625,754626,754627,754631,754632,754646,754652,754653,754654,754655,754656,754674,754675,754681,754694,754695,754696,754697,754698,754743,754749,754780,754781,754782,754787,754806,754807,754821,754822,754864,754865,754875,754876,754877,754878,754883,754884,755051,755052,755053,755065,755066,755068,755069,755071,755072,755073,755074,755078,755079,755217,755223,755228,755234,755246,755247,755253,755254,755283,755284,755285,755292,755293,755294,755305,755306,755312,755313,755314,755315,755322,755323,755330,755331,755332,755333,755365,755366,755373,755381,755382,755405,755417,755418,755419,755428,755456,755462,755476,755480,755481,755488,755493,755494,755495,755496,755497,755498,755499,755500,755505,755528,755542,755670,755671,755672,755673,755674,755683,755684,755685,755686,755687,755702,755703,755709,755710,755711,755712,755713,755729,755730,755731,755737,755749,755750,755751,755752,755753,755754,755755,755798,755799,755805,755806,755836,755837,755843,755861,755862,755863,755877,755878,755879,755921,755940,756109,756110,756111,756112,756113,756114,756120,756121,756125,756126,756127,756130,756131,756132,756133,756134,756272,756273,756279,756283,756284,756289,756290,756303,756308,756309,756339,756340,756347,756348,756350,756351,756352,756353,756354,756360,756361,756371,756372,756378,756379,756380,756385,756386,756387,756388,756389,756390,756421,756429,756437,756461,756462,756474,756475,756484,756485,756512,756513,756518,756519,756532,756537,756544,756561,756584,756598,756759,756760,756768,756769,756785,756786,756792,756793,756800,756801,756802,756803,756804,756805,756806,756810,756811,756812,756853,756854,756855,756861,756862,756863,756892,756899,756900,756907,756908,756909,756910,756917,756918,756934,756935,756936,756977,756983,756984,756985,756986,756996,757166,757167,757170,757171,757172,757176,757187,757188,757327,757328,757329,757334,757335,757338,757339,757340,757344,757345,757359,757364,757395,757401,757402,757403,757410,757411,757416,757428,757429,757430,757431,757435,757436,757437,757438,757439,757440,757441,757442,757445,757446,757477,757478,757485,757493,757494,757517,757518,757519,757520,757521,757522,757523,757531,757540,757541,757542,757569,757570,757574,757575,757576,757588,757593,757600,757616,757617,757640,757641,757653,757654,757816,757825,757841,757848,757855,757856,757857,757858,757859,757860,757861,757867,757868,757909,757910,757918,757919,757948,757955,757956,757957,757962,757963,757964,757965,757966,757967,757973,757991,757992,758033,758038,758039,758042,758043,758046,758047,758048,758049,758051,758052,758228,758229,758231,758232,758378,758379,758380,758381,758382,758383,758384,758389,758390,758394,758395,758400,758414,758415,758420,758451,758452,758456,758457,758467,758468,758472,758473,758475,758476,758477,758478,758487,758488,758492,758493,758494,758495,758496,758497,758501,758502,758534,758535,758541,758550,758551,758552,758574,758575,758576,758577,758578,758579,758580,758587,758597,758598,758626,758627,758631,758632,758633,758644,758649,758650,758655,758656,758661,758662,758663,758664,758665,758666,758667,758668,758669,758670,758671,758672,758697,758698,758708,758709,758872,758881,758897,758904,758911,758924,758965,758975,759004,759005,759012,759013,759014,759015,759016,759017,759018,759019,759022,759023,759024,759029,759048,759088,759089,759093,759094,759099,759100,759101,759102,759105,759106,759107,759285,759286,759287,759433,759434,759435,759436,759437,759438,759439,759445,759450,759456,759457,759469,759470,759471,759475,759476,759508,759511,759512,759524,759528,759529,759530,759531,759532,759533,759534,759535,759544,759557,759591,759592,759597,759598,759608,759609,759635,759636,759643,759644,759654,759683,759688,759689,759700,759705,759706,759707,759710,759711,759712,759716,759717,759754,759755,759763,759764,759928,759929,759936,759937,759953,759954,759960,759961,759967,759980,760021,760031,760061,760062,760063,760064,760069,760070,760071,760072,760073,760074,760079,760080,760085,760104,760105,760143,760144,760145,760149,760489,760490,760501,760506,760512,760513,760514,760522,760523,760524,760525,760526,760530,760531,760564,760567,760579,760580,760585,760586,760587,760590,760591,760600,760613,760614,760648,760654,760665,760666,760692,760693,760699,760700,760701,760709,760710,760739,760745,760756,760762,760763,760764,760765,760766,760767,760771,760772,760811,760812,760818,760819,760985,760986,760987,760988,760989,760990,760991,760992,761010,761011,761016,761017,761018,761023,761029,761030,761031,761032,761035,761036,761077,761087,761120,761121,761136,761141,761160,761161,761162,761199,761200,761205,761545,761556,761557,761561,761562,761569,761570,761577,761578,761579,761580,761581,761586,761619,761620,761623,761624,761634,761635,761636,761647,761655,761656,761669,761670,761671,761704,761710,761722,761748,761749,761750,761756,761757,761764,761765,761795,761801,761802,761811,761812,761819,761820,761821,761822,761827,761868,761874,762067,762073,762074,762080,762081,762084,762085,762088,762089,762090,762091,762133,762143,762177,762178,762192,762197,762217,762218,762219,762255,762261,762262,762600,762601,762609,762610,762611,762612,762616,762617,762618,762626,762633,762634,762642,762674,762675,762676,762679,762680,762681,762682,762683,762690,762691,762702,762703,762710,762711,762712,762717,762718,762719,762720,762726,762727,762759,762760,762766,762767,762777,762778,762805,762806,762813,762820,762851,762857,762858,762859,762866,762867,762868,762883,762890,762891,762892,762893,762894,762895,762924,762930,763123,763124,763131,763137,763138,763139,763140,763189,763190,763198,763199,763234,763235,763242,763243,763244,763245,763247,763248,763253,763254,763274,763275,763311,763317,763318,763319,763655,763656,763657,763664,763665,763669,763670,763671,763672,763673,763682,763683,763688,763689,763697,763698,763730,763731,763736,763737,763738,763739,763740,763746,763756,763757,763758,763765,763766,763767,763772,763773,763776,763777,763783,763814,763815,763816,763823,763824,763832,763833,763834,763862,763869,763870,763876,763877,763906,763907,763914,763915,763916,763917,763918,763919,763920,763921,763922,763923,763939,763945,763946,763947,763948,763949,763950,763951,763952,763980,763986,764180,764181,764187,764246,764247,764253,764254,764291,764292,764297,764298,764301,764302,764303,764310,764311,764322,764323,764324,764331,764367,764368,764374,764375,764376,764377,764378,764711,764712,764719,764720,764724,764725,764726,764727,764728,764738,764739,764740,764743,764744,764745,764750,764751,764752,764753,764786,764795,764796,764802,764803,764811,764812,764821,764822,764828,764833,764838,764839,764870,764871,764880,764881,764888,764889,764918,764925,764926,764927,764932,764933,764934,764961,764962,764963,764971,764972,764973,764974,764975,764976,764977,764978,764985,764986,764987,764988,764989,764990,764995,765001,765002,765007,765008,765036,765042,765237,765238,765243,765303,765304,765305,765306,765307,765308,765309,765348,765352,765353,765367,765368,765369,765370,765377,765378,765380,765381,765387,765424,765425,765431,765432,765433,765434,765435,765767,765775,765779,765780,765781,765795,765796,765797,765798,765799,765800,765805,765806,765842,765843,765852,765859,765860,765866,765867,765877,765884,765889,765890,765893,765894,765926,765937,765944,765973,765974,765982,765983,765989,765990,766014,766015,766016,766017,766018,766040,766041,766046,766047,766051,766057,766064,766092,766098,766294,766295,766296,766297,766298,766404,766408,766426,766427,766432,766433,766437,766438,766443,766481,766490,766491,766823,766824,766830,766831,766835,766836,766843,766844,766845,766846,766852,766853,766854,766855,766859,766860,766861,766899,766907,766908,766916,766922,766933,766934,766940,766946,766947,766948,766949,766982,766983,766992,766993,767000,767001,767028,767029,767039,767046,767069,767070,767071,767072,767073,767095,767096,767103,767104,767107,767113,767118,767119,767120,767148,767154,767460,767464,767483,767484,767488,767494,767495,767499,767500,767537,767547,767880,767881,767882,767884,767885,767886,767891,767892,767894,767895,767898,767899,767902,767903,767904,767914,767915,767955,767962,767963,767971,767972,767978,767990,767996,768039,768040,768047,768048,768049,768057,768084,768094,768095,768101,768102,768124,768125,768126,768139,768140,768141,768142,768143,768144,768145,768146,768151,768160,768163,768169,768173,768174,768204,768210,768516,768520,768521,768540,768544,768551,768555,768556,768557,768593,768594,768596,768597,768598,768603,768939,768949,768951,768952,768953,768954,768960,768961,768970,769011,769018,769026,769027,769028,769033,769034,769046,769051,769052,769096,769103,769104,769112,769113,769140,769149,769150,769157,769177,769178,769179,769180,769181,769194,769195,769202,769203,769207,769216,769219,769225,769228,769229,769260,769266,769571,769572,769576,769577,769578,769595,769596,769600,769601,769606,769607,769612,769613,769650,769651,769652,769654,769655,769658,769659,770017,770018,770026,770067,770068,770074,770075,770082,770083,770088,770089,770101,770102,770106,770107,770152,770159,770167,770168,770169,770196,770197,770205,770213,770232,770233,770234,770235,770236,770241,770242,770243,770244,770245,770246,770247,770248,770249,770250,770259,770260,770263,770272,770275,770281,770284,770626,770627,770628,770633,770634,770635,770636,770637,770650,770651,770652,770656,770657,770658,770661,770662,770663,770669,770711,770712,770713,770714,771049,771054,771055,771056,771057,771058,771059,771074,771081,771082,771124,771125,771130,771131,771132,771138,771144,771154,771155,771156,771157,771158,771162,771208,771215,771216,771223,771224,771252,771253,771254,771261,771269,771288,771289,771296,771297,771316,771319,771328,771331,771332,771337,771340,771682,771683,771690,771691,771692,771693,771694,771703,771704,771705,771706,771707,771713,771714,771715,771716,771717,771718,771725,772103,772104,772105,772106,772107,772109,772110,772111,772112,772113,772114,772115,772116,772117,772118,772130,772131,772136,772137,772181,772187,772188,772194,772200,772209,772210,772211,772212,772213,772218,772264,772272,772273,772279,772309,772310,772316,772317,772325,772344,772351,772352,772372,772375,772383,772384,772387,772388,772389,772392,772393,772396,772738,772749,772750,772758,772759,772760,772761,772762,772770,772771,772772,772773,772781,773159,773160,773162,773163,773164,773165,773166,773171,773172,773173,773174,773175,773176,773177,773187,773188,773192,773237,773244,773249,773250,773256,773265,773266,773273,773274,773320,773321,773329,773335,773336,773366,773372,773380,773381,773400,773407,773428,773431,773432,773438,773439,773440,773444,773445,773446,773447,773448,773449,773452,773794,773806,773814,773815,773837,773838,774215,774219,774220,774221,774230,774231,774232,774233,774244,774248,774293,774300,774301,774304,774305,774306,774312,774313,774320,774321,774328,774329,774377,774378,774385,774392,774393,774394,774421,774422,774428,774434,774435,774436,774456,774463,774484,774487,774488,774489,774493,774494,774495,774501,774502,774503,774504,774508,774850,774851,774862,774863,774870,774878,774879,774880,774893,774894,774895,775271,775289,775300,775304,775305,775349,775350,775356,775357,775358,775359,775360,775361,775368,775369,775370,775375,775376,775377,775384,775385,775434,775435,775441,775450,775451,775477,775483,775484,775489,775490,775512,775513,775518,775519,775540,775544,775545,775546,775547,775548,775549,775550,775564,775907,775908,775918,775919,775920,775925,775926,775932,775933,775934,775936,775937,775950,775951,776327,776328,776334,776335,776336,776337,776345,776346,776355,776356,776360,776361,776362,776406,776407,776413,776414,776415,776416,776425,776426,776427,776428,776429,776430,776431,776432,776440,776441,776442,776491,776497,776507,776508,776533,776539,776545,776569,776570,776571,776572,776573,776574,776596,776601,776602,776603,776604,776605,776609,776610,776611,776612,776620,776964,776965,776975,776976,776977,776978,776979,776980,776981,776982,776987,776988,776993,776994,777007,777384,777385,777386,777389,777390,777393,777394,777401,777402,777403,777410,777411,777412,777417,777418,777463,777475,777476,777477,777478,777482,777483,777484,777485,777486,777487,777497,777498,777547,777553,777554,777564,777569,777570,777571,777572,777588,777589,777595,777601,777602,777652,777653,777664,777665,777668,777669,777675,777676,778021,778032,778033,778034,778035,778036,778037,778042,778043,778050,778063,778442,778443,778444,778445,778450,778451,778458,778459,778466,778467,778474,778519,778530,778531,778534,778535,778554,778603,778604,778610,778611,778612,778620,778622,778623,778624,778625,778628,778629,778643,778644,778651,778657,778658,778659,778709,778710,778719,778720,778725,778726,778730,778731,779077,779098,779106,779118,779119,779507,779515,779522,779530,779575,779576,779586,779591,779592,779609,779610,779660,779661,779668,779669,779676,779677,779678,779685,779698,779699,779707,779714,779715,779766,779767,779768,779769,779775,779782,779783,779784,779785,779786,779897,779905,779906,779907,779908,779925,780132,780133,780154,780162,780173,780174,780469,780470,780471,780472,780473,780474,780562,780563,780571,780578,780579,780585,780586,780632,780633,780634,780642,780648,780663,780664,780665,780717,780725,780726,780741,780754,780762,780763,780771,780825,780826,780831,780950,780952,780953,780954,780955,780958,780959,780960,780961,780962,780963,780964,780965,780966,780967,780978,780979,780980,780981,780982,780983,781187,781188,781189,781195,781196,781197,781204,781205,781206,781207,781209,781210,781218,781229,781525,781526,781527,781528,781529,781530,781531,781532,781533,781617,781618,781619,781627,781628,781635,781636,781637,781640,781641,781690,781691,781698,781699,781704,781709,781710,781711,781718,781719,781773,781782,781797,781798,781810,781816,781817,781818,781827,781882,781883,781886,781887,782005,782006,782008,782010,782011,782012,782013,782014,782015,782016,782017,782020,782021,782022,782023,782024,782025,782026,782033,782034,782035,782036,782038,782039,782242,782243,782244,782250,782251,782253,782254,782259,782260,782263,782264,782265,782274,782285,782580,782581,782586,782587,782588,782589,782590,782669,782670,782671,782672,782673,782674,782683,782684,782685,782693,782694,782695,782696,782747,782748,782754,782755,782756,782760,782761,782764,782765,782767,782768,782773,782774,782829,782830,782838,782854,782855,782865,782866,782871,782872,782883,782939,782940,782941,782942,783061,783062,783067,783068,783069,783070,783079,783080,783081,783082,783089,783090,783095,783298,783299,783305,783306,783310,783311,783314,783315,783330,783331,783340,783341,783621,783622,783623,783624,783635,783636,783637,783645,783646,783724,783725,783726,783727,783728,783729,783740,783741,783742,783743,783804,783811,783812,783817,783818,783819,783820,783824,783825,783829,783886,783887,783894,783895,783897,783898,783899,783900,783911,783912,783921,783926,783927,783938,783939,784117,784138,784145,784151,784354,784360,784361,784367,784370,784387,784388,784389,784390,784391,784392,784395,784396,784676,784677,784678,784679,784680,784681,784691,784692,784702,784780,784781,784789,784790,784791,784792,784797,784798,784799,784860,784868,784881,784885,784943,784951,784952,784953,784956,784957,784968,784969,784971,784972,784973,784977,784982,784991,784992,784993,784994,785173,785194,785195,785200,785201,785206,785207,785410,785416,785423,785426,785448,785449,785450,785451,785732,785733,785736,785737,785738,785747,785759,785836,785844,785845,785848,785849,785855,785864,785865,785866,785867,785868,785869,785916,785923,785924,785937,785938,785940,785941,785999,786013,786014,786015,786025,786026,786027,786029,786030,786032,786033,786038,786046,786047,786229,786230,786242,786243,786244,786245,786250,786251,786252,786255,786256,786257,786261,786262,786466,786472,786479,786482,786483,786788,786793,786794,786802,786803,786814,786892,786893,786899,786900,786905,786906,786911,786912,786917,786918,786919,786920,786921,786922,786923,786924,786925,786926,786927,786928,786971,786972,786977,786978,786979,786994,786995,786996,787055,787056,787070,787071,787086,787087,787088,787093,787094,787102,787286,787287,787288,787289,787292,787293,787294,787295,787297,787298,787301,787302,787307,787308,787309,787310,787311,787312,787316,787317,787522,787528,787535,787538,787539,787540,787844,787845,787850,787857,787858,787859,787865,787866,787867,787869,787870,787949,787950,787955,787962,787967,787968,787969,787972,787973,787974,787975,787976,787979,787980,787981,787982,787983,787984,787985,788026,788027,788028,788032,788033,788112,788113,788114,788115,788127,788133,788134,788135,788149,788158,788345,788346,788347,788348,788351,788352,788353,788358,788359,788364,788365,788366,788367,788372,788578,788584,788585,788590,788591,788595,788596,788597,788598,788599,788901,788902,788906,788913,788914,788920,788921,788923,788924,788925,789006,789011,789018,789019,789024,789025,789026,789027,789028,789029,789040,789041,789082,789083,789087,789088,789171,789172,789183,789187,789188,789189,789191,789192,789205,789206,789214,789215,789415,789428,789634,789635,789640,789641,789642,789645,789646,789647,789652,789653,789654,789655,789656,789958,789962,789969,789976,790062,790066,790067,790075,790076,790081,790082,790083,790084,790097,790138,790143,790228,790229,790230,790231,790243,790244,790248,790249,790250,790261,790262,790263,790270,790271,790272,790471,790483,790484,790691,790692,790697,790698,790699,790700,790701,790702,790711,790712,791014,791018,791019,791024,791025,791032,791118,791119,791121,791122,791132,791146,791147,791148,791153,791194,791195,791199,791287,791288,791299,791306,791307,791309,791310,791311,791312,791318,791319,791327,791328,791527,791533,791534,791535,791538,791539,791748,791754,791755,791756,791757,791768,792065,792066,792067,792068,792069,792070,792074,792075,792076,792079,792080,792081,792087,792088,792176,792188,792201,792202,792204,792205,792209,792210,792251,792252,792254,792255,792344,792345,792346,792347,792355,792363,792364,792365,792368,792369,792370,792371,792375,792384,792582,792583,792588,792589,792591,792592,792593,792594,792804,792824,793120,793121,793122,793123,793124,793125,793126,793131,793132,793133,793134,793135,793136,793141,793142,793143,793244,793245,793257,793261,793262,793265,793266,793267,793309,793403,793404,793427,793428,793430,793431,793439,793440,793637,793638,793639,793643,793644,793860,793861,793879,793880,794175,794176,794177,794180,794181,794188,794189,794190,794191,794196,794197,794301,794302,794303,794304,794313,794318,794322,794323,794324,794325,794326,794327,794328,794460,794461,794462,794463,794484,794485,794486,794493,794494,794495,794690,794691,794692,794693,794694,794699,794917,794918,794934,794935,795188,795189,795190,795194,795195,795196,795198,795199,795231,795232,795251,795252,795360,795361,795368,795369,795374,795379,795380,795381,795382,795383,795384,795385,795519,795520,795530,795531,795532,795548,795549,795745,795746,795747,795748,795749,795754,795755,795974,795975,795976,795977,795981,795982,795983,795984,795990,796235,796236,796237,796238,796241,796242,796243,796244,796245,796246,796247,796249,796250,796251,796252,796254,796255,796256,796287,796307,796417,796418,796423,796424,796430,796440,796441,796442,796576,796577,796580,796581,796582,796583,796585,796586,796588,796589,796603,796604,796801,796802,796808,796809,796810,797033,797034,797036,797037,797040,797041,797046,797290,797291,797292,797293,797294,797295,797296,797297,797298,797299,797300,797302,797303,797304,797305,797306,797311,797312,797313,797343,797353,797354,797355,797356,797363,797474,797479,797486,797487,797489,797490,797491,797492,797497,797498,797499,797633,797634,797635,797636,797639,797640,797641,797645,797659,797857,797863,797864,798090,798091,798092,798097,798098,798102,798346,798347,798350,798351,798352,798353,798359,798360,798361,798368,798369,798399,798403,798404,798405,798406,798408,798409,798412,798413,798418,798419,798530,798535,798543,798544,798545,798548,798549,798554,798555,798701,798705,798706,798707,798708,798709,798715,798913,798919,799154,799158,799401,799402,799425,799455,799456,799458,799459,799462,799463,799464,799469,799470,799471,799472,799473,799474,799586,799587,799590,799591,799605,799611,799757,799758,799760,799761,799765,799766,799770,799771,799969,799970,799974,799975,800209,800210,800214,800215,800452,800454,800455,800456,800457,800458,800480,800481,800512,800513,800514,800643,800644,800645,800646,800661,800662,800666,800667,800814,800815,800816,800822,800823,800825,800826,801026,801027,801028,801029,801030,801264,801265,801266,801270,801271,801272,801507,801508,801510,801511,801512,801513,801536,801718,801719,801721,801722,801880,802320,802321,802327,802328,802563,802564,802567,802568,802585,802586,802587,802588,802592,802776,803376,803384,803619,803632,803633,803634,803635,803640,803641,803644,803645,803647,803648,804432,804440,804675,804686,804687,804688,804691,804692,804693,804694,804695,804696,804701,804702,804703,805488,805489,805495,805496,805731,805736,805737,805738,805741,805742,806545,806546,806547,806548,806549,806550,806551,806787,806788,806791,806792,806794,806795,806796,806797,807844,807845,807846,807847,3472,3473,3474,3475,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,5503,5504,5505,5506,5507,5508,5509,5510,5526,5527,5528,5529,5549,5550,5551,5552,5581,5582,5583,5584,5587,5588,5589,5590,5591,5592,5593,5594,5595,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6604,6605,6606,6607,6608,6609,6620,6621,6622,6623,6637,6644,6645,6650,6651,7611,7612,7613,7614,7615,7622,7623,7624,7629,7630,7631,7632,7634,7635,7636,7637,7638,7641,7642,7643,7644,7645,7660,7661,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7693,7706,7707,8664,8665,8666,8667,8668,8679,8680,8681,8684,8685,8686,8687,8688,8689,8690,8691,8700,8701,8716,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8735,8736,8737,8740,8741,8742,8743,8748,8749,8762,9495,9719,9720,9721,9722,9723,9736,9737,9738,9739,9740,9741,9744,9745,9746,9757,9772,9792,9793,9794,9795,9796,9797,9798,9799,9800,9803,9804,9805,9818,10775,10776,10793,10794,10795,10796,10813,10814,10827,10828,10849,10850,10851,10852,10855,10856,10857,10858,10859,10860,10874,10875,11831,11869,11870,11871,11876,11877,11878,11879,11882,11883,11884,11912,11913,11914,11915,11930,11931,11932,12662,12663,12887,12888,12926,12927,12928,12931,12932,12933,12934,12935,12936,12937,12938,12939,12987,12988,12989,12990,12991,13944,13945,13983,13984,13985,13986,13987,13988,13991,13992,13993,13994,14044,14045,14046,14047,14048,15001,15040,15041,15042,15043,15087,15088,15103,15104,16057,16143,16144,16160,17113,17114,17215,17216,18170,18270,18271,19226,19326,20282,20382,21338,21401,21403,21438,21439,22393,22394,22494,22495,22496,23448,23449,23450,23551,23552,24504,24505,24608,25560,25664,25665,26616,26720,26721,26722,26723,26724,27672,27673,27777,27778,27779,27780,27781,28729,28730,28836,28837,29786,29858,29860,29893,30842,30949,30950,31898,32005,32006,32007,32954,33062,33063,34009,34010,34119,35049,35050,35051,35052,35053,35054,35055,35064,35065,35066,35174,35175,36103,36104,36105,36111,36112,36120,36121,36229,36230,37158,37159,37168,37169,37176,37285,38210,38211,38212,38213,38214,38225,38226,38232,38341,39265,39266,39282,39288,39289,39397,40321,40322,40338,40345,40346,40453,41378,41393,41394,41402,41509,41510,42433,42434,42448,42449,42450,42458,42565,42566,42567,43489,43490,43501,43502,43503,43504,43505,43513,43514,43622,43623,44545,44546,44547,44556,44557,44558,44559,44560,44568,44569,44570,44679,45602,45603,45612,45613,45624,45625,45734,45735,46659,46668,46680,46787,46788,46789,46790,47715,47716,47723,47724,47736,47842,47843,48771,48772,48773,48778,48779,48780,48792,48793,48896,48897,48898,49828,49829,49830,49831,49832,49833,49834,49835,49849,49850,49851,49852,49951,49952,50885,50886,50887,50888,50889,50890,50908,50909,50943,50945,51006,51007,51965,51966,51979,52062,53022,53035,53118,54078,54105,54106,54174,54175,55133,55134,55161,55162,55230,55231,55232,56188,56189,56190,56231,56233,56287,56288,57244,57245,57287,57289,57344,58300,58399,58400,59356,59454,59455,60412,60413,60510,61469,61470,61566,61567,62526,62622,62623,62624,63582,63679,63680,64637,64638,64736,65690,65691,65693,65694,65792,66746,66747,66749,66848,67802,67903,67904,68858,68958,68959,69914,69915,70014,70971,71070,72027,72126,73082,73083,73182,74138,74139,74238,74239,75194,75294,75295,75296,76250,76351,76352,77306,77307,77347,77408,78363,78364,78403,78464,79420,79519,79520,80476,80574,80575,81531,81532,81630,82586,82587,82588,82615,82686,83642,83643,83663,83671,83676,83742,83743,84698,84719,84732,84798,84799,84800,85754,85855,85856,86810,86912,87866,87967,87968,88922,88923,89022,89023,89979,89980,89981,89982,90078,91038,91039,91127,91128,91129,91130,91134,92095,92096,92131,92132,92133,92134,92164,92165,92166,92167,92182,92183,92186,92187,92189,92190,93152,93173,93174,93175,93186,93187,93190,93191,93219,93220,93223,93224,93225,93226,93237,93238,93243,93244,93245,94208,94214,94215,94216,94228,94229,94231,94232,94241,94242,94247,94248,94249,94250,94274,94275,94282,94283,94293,95264,95265,95269,95270,95272,95273,95283,95284,95288,95289,95290,95291,95292,95293,95297,95306,95307,95330,95339,95340,95349,96321,96322,96323,96324,96325,96329,96330,96338,96339,96349,96350,96353,96363,96364,96370,96371,96377,96378,96379,96380,96386,96396,96404,96405,97386,97394,97406,97407,97408,97409,97420,97426,97427,97432,97433,97436,97437,97441,97442,97452,97457,97458,97459,97460,98442,98446,98447,98448,98450,98476,98487,98488,98493,98494,98495,98496,98497,98508,98509,98512,98513,99498,99499,99501,99502,99504,99505,99506,99532,99533,99543,99565,99566,99567,99568,100555,100556,100557,100589,100590,100591,100592,100599,101648,101649,101654,101655,102705,102706,102707,102708,102709,102710,209611,209615,210667,210671,211722,211723,211727,211728,212747,212748,212749,212750,212778,212779,212783,212784,213802,213803,213804,213805,213806,213807,213808,213809,213819,213820,213821,213822,213833,213834,213840,213847,213848,213849,213850,214858,214859,214862,214863,214864,214865,214866,214869,214870,214871,214874,214875,214876,214877,214878,214879,214882,214883,214884,214885,214888,214889,214890,214896,214897,214900,214901,214902,214903,214904,214905,214906,214907,214908,214909,214917,214918,214919,214920,214925,214926,214927,215913,215914,215921,215922,215923,215924,215925,215926,215927,215928,215929,215930,215931,215934,215935,215936,215937,215938,215939,215940,215941,215942,215943,215944,215945,215952,215953,215954,215955,215956,215957,215958,215959,215962,215963,215964,215965,215966,215967,215970,215971,215972,215973,215974,215975,215976,215977,215978,215979,215980,215981,215982,215983,215984,216969,216970,216978,216979,216980,216981,216983,216984,216985,216986,216991,216992,216993,216994,216997,216998,216999,217000,217009,217010,217011,217012,217021,217022,217023,217024,217025,217026,217027,217028,217029,217032,217033,217034,217035,217036,217037,217039,217040,217041,218025,218079,218080,218081,218082,218096,218097,219081,219153,220137,220138,220209,221194,221265,221266,222250,222251,222321,222322,222323,223307,223378,223379,224362,224363,224435,225417,225418,225419,225491,226473,226474,226546,226547,227529,227602,227603,228585,228658,228659,228660,229641,229642,229715,229716,230698,230772,231754,231828,232810,232811,232884,232885,233867,233868,233869,233940,233941,233942,234925,234926,234997,234998,235982,236054,237037,237038,237077,237078,237079,237110,238092,238093,238094,238132,238133,238135,238136,238137,238138,238165,238166,239148,239149,239188,239194,239195,239196,239197,239220,239221,240203,240204,240244,240253,240254,240276,241258,241259,241260,241280,241281,241282,241283,241300,241310,241311,241332,242314,242315,242335,242336,242339,242340,242341,242355,242356,242367,242387,242388,243370,243389,243390,243391,243397,243398,243409,243410,243411,243423,243441,243442,243443,244426,244427,244444,244445,244454,244455,244464,244465,244478,244479,244496,244497,245483,245497,245498,245499,245500,245533,245534,245535,245552,246538,246539,246552,246553,246589,246590,246608,247593,247594,247595,247608,247622,247623,247631,247632,247644,247645,247664,248649,248650,248664,248665,248678,248686,248687,248697,248698,248699,248700,248701,248720,248721,249705,249721,249722,249725,249726,249727,249728,249734,249742,249743,249750,249751,249752,249753,249754,249755,249756,249776,249777,249778,249779,250761,250762,250778,250779,250780,250781,250784,250785,250789,250790,250798,250799,250800,250805,250806,250807,250808,250809,250833,250834,250835,250836,251818,251841,251842,251843,251844,251845,251855,251856,251857,251860,251861,251862,251891,251892,252874,252912,252913,252916,252917,252947,252948,253929,253930,254003,254984,254985,254986,255059,256040,256041,256115,256116,257096,257129,257130,257131,257171,257172,257173,258152,258184,258185,258187,258188,258191,258192,258193,258228,258229,259208,259209,259215,259216,259217,259222,259223,259224,259226,259227,259228,259239,259240,259244,259245,259246,259247,259254,259255,259256,259268,259269,259270,259271,259285,260265,260266,260267,260270,260271,260273,260274,260275,260277,260278,260280,260281,260282,260284,260285,260293,260294,260295,260308,260309,260310,260312,260313,260318,260319,260320,260322,260323,260324,260327,260328,260330,260331,260332,260333,260341,261323,261324,261325,261326,261331,261332,261333,261341,261342,261344,261345,261346,261348,261349,261369,261370,261371,261372,261373,261374,261376,261377,261378,261384,261385,261386,261389,261390,261392,261393,261394,261396,261397,262398,262399,262400,262402,262403,262404,262446,262447,262448,262450,262451,262452,312597,312604,312670,312681,313653,313660,313726,313737,314709,314716,314782,314793,315766,315767,315768,315769,315770,315771,315838,315839,315849,316895,316902,316903,316904,316905,317951,317952,317953,317954,317955,317956,317957,317958,322122,322143,323178,323199,324234,324255,325290,325311,325326,325337,326346,326347,326356,326357,326358,326359,326366,326367,326382,326393,327402,327403,327404,327409,327410,327411,327412,327413,327414,327415,327416,327421,327422,327423,327438,327449,328459,328460,328461,328462,328463,328464,328465,328466,328467,328468,328471,328472,328473,328474,328475,328476,328477,328478,328494,328504,329516,329517,329518,329519,329520,329521,329528,329529,329530,329531,329532,329533,329550,329558,329559,330607,330614,331664,331665,331666,331667,331668,331669,770313,770314,770315,770316,770317,770318,770319,770320,770321,770322,770323,770324,771369,771370,771371,771372,771373,771374,771375,771376,771377,771378,771379,771380,772425,772436,773481,773492,774537,774548,775593,775604,776648,776649,776660,776661,777703,777704,777705,777716,777717,777718,778758,778759,778760,778773,778774,778775,779813,779814,779815,779830,779831,779832,780868,780869,780870,780887,780888,780889,781924,781925,781944,781945,782980,783001,784036,784057,785092,785113,786148,786169,787204,787225,788260,788281,789316,789337,790372,790393,791428,791449,792484,792505,793540,793541,793560,793561,794597,794598,794615,794616,795654,795655,795656,795657,795658,795659,795660,795661,795662,795663,795664,795665,795666,795667,795668,795669,795670,795671,799410,799411,799414,799415,198731,198734,199787,199790,200843,200846,201899,201902,202955,202958,204011,204014,205067,205070,206123,206126,207179,207182,208235,208238,231432,231434,232488,232490,233544,233546,234600,234602,235656,235658,713364,713365,713366,713367,713368,713369,713370,716532,716533,716534,716535,716536,716537,716538,718636,718639,719692,719695,720748,720751,721804,721807,722860,722863,723916,723919,724972,724975,726028,726031,726058,726061,727114,727117,728170,728173,729226,729229,730282,730285,731338,731341,732394,732397,738717,738718,738719,738720,738721,738722,741885,741886,741887,741888,741889,741890,19021,19022,20077,20078,21133,21134,102606,103660,103661,103662,103663,104716,104717,104718,104719,105773,105774,3169,3170,3179,3180,3206,3207,3225,3226,3251,3252,3283,3284,3298,3299,4225,4226,4235,4236,4262,4263,4281,4282,4294,4295,4300,4301,4307,4308,4325,4326,4339,4340,4354,4355,4365,4366,5350,5351,5356,5357,5381,5382,5421,5422,6360,6361,6369,6370,6387,6388,7416,7417,7425,7426,7484,7485,7501,7502,7513,7514,8540,8541,8557,8558,8569,8570,9549,9550,9630,9631,10580,10581,10605,10606,10644,10645,10695,10696,11629,11630,11636,11637,11672,11673,11700,11701,11751,11752,11763,11764,11777,11778,12685,12686,12772,12773,12819,12820,12833,12834,13732,13733,13790,13791,13828,13829,13833,13834,13870,13871,14788,14789,14846,14847,14889,14890,14898,14899,14926,14927,14940,14941,15954,15955,15996,15997,17019,17020,18086,18087,19030,19031,19088,19089,19105,19106,19142,19143,19191,19192,19237,20082,20083,20086,20087,20144,20145,20161,20162,20166,20167,20202,20203,20227,20228,20247,20248,20293,21121,21122,21138,21139,21222,21223,21258,21259,21283,21284,22177,22178,22188,22189,22208,22209,22305,22306,22370,22371,23244,23245,23264,23265,23294,23295,23342,23343,23426,23427,23480,24350,24351,24435,24436,24463,24464,24536,25371,25372,25417,25418,25479,25480,25491,25492,25502,25503,25519,25520,26423,26424,26427,26428,26449,26450,26473,26474,26524,26525,26535,26536,26558,26559,27479,27480,27505,27506,27559,27560,27580,27581,28517,28518,28615,28616,28629,28630,29573,29574,29611,29612,29633,29634,29653,29654,29678,29679,29685,29686,29698,29699,29737,29738,29828,30681,30682,30703,30704,30734,30735,30754,30755,30793,30794,30884,31737,31738,31759,31760,32808,32809,33842,33843,33864,33865,33881,33882,33928,33929,33937,33938,33954,33955,34032,34352,34353,34354,34364,34365,34366,34898,34899,34937,34938,34970,34971,34984,34985,34993,34994,35010,35011,35030,35031,35088,35408,35409,35410,35420,35421,35422,35988,35989,36004,36005,36011,36012,36026,36027,36086,36087,36134,36423,36424,36962,36963,36973,36974,37044,37045,37067,37068,37190,37484,37485,38018,38019,38029,38030,38044,38045,38077,38078,38084,38085,38131,38132,38185,38186,38601,38602,38603,39091,39092,39100,39101,39133,39134,39140,39141,39187,39188,39241,39242,39657,39658,39659,40147,40148,40175,40176,40220,40221,40253,40254,40267,40268,40683,40684,40685,41231,41232,41238,41239,41276,41277,41309,41310,41316,41317,41323,41324,41739,41740,41741,42294,42295,42319,42320,42372,42373,42389,42390,42419,42420,42503,43303,43304,43369,43370,43445,43446,43475,43476,43482,43559,43812,43813,44359,44360,44425,44426,44538,45984,46476,46477,47022,47023,47024,47040,47532,47533,47537,47538,47664,47665,47754,48078,48079,48080,48593,48594,48629,48630,48645,48646,48687,48688,48720,48721,48760,48810,48824,49160,49161,49162,49676,49677,49729,49730,49787,49788,49816,49823,49824,49880,50216,50217,50218,50689,50690,50785,50786,50811,50812,50819,50820,50843,50844,50879,50880,51243,51244,51245,51745,51746,51752,51753,51819,51820,51829,51830,51867,51868,51875,51876,51905,51906,51954,51955,52299,52300,52301,52311,52808,52809,52875,52876,52885,52886,52961,52962,53010,53011,53367,53377,53889,53890,53967,53968,54433,54945,54946,55023,55024,55085,55086,55986,55987,56027,56028,56141,56142,56525,56526,56527,57042,57043,57083,57084,57581,57582,57583,58119,58120,58146,58147,58170,58171,58241,59142,59143,59163,59164,59175,59176,59182,59183,59202,59203,59226,59227,59297,59330,59331,59701,59702,59703,60198,60199,60219,60220,60238,60239,60333,60334,60386,60387,60757,60758,60759,61347,61348,61373,61374,61389,61390,61419,61420,61433,61434,62411,62412,62429,62430,62475,62476,62489,62490,62886,62887,62888,63467,63468,63617,63934,63935,63936,63942,63943,63944,64452,64453,64470,64471,64476,64477,64651,64673,64990,64991,64992,65508,65509,65526,65527,65562,65563,65707,66575,66576,67631,67632,67750,67751,67786,67787,68806,68807,68842,68843,69774,69775,69805,69806,70830,70831,70861,70862,70998,71870,71871,71909,71910,71944,71945,72004,72005,72054,72066,72890,72891,72954,72955,72965,72966,73000,73001,73038,73039,73060,73061,73122,73928,73929,73941,73942,73946,73947,73958,73959,74010,74011,74042,74043,74094,74095,74984,74985,74992,74993,75014,75015,75098,75099,76048,76049,76128,76129,77139,77140,77184,77185,77247,77248,78195,78196,78303,78304,78349,78350,78380,78396,79269,79270,79283,79284,79405,79406,79436,79452,79802,80325,80326,80344,80345,80858,81331,81332,81400,81401,81443,81444,81463,81464,81479,81480,82387,82388,82395,82396,82403,82404,82477,82478,82493,82494,82499,82500,82519,82520,82535,82536,82567,82568,83435,83436,83451,83452,83459,83460,83498,83499,83549,83550,83623,83624,84554,84555,84581,84582,84662,84663,85637,85638,85694,85695,85718,85719,86636,86637,86672,86673,86712,86713,86750,86751,87670,87671,87692,87693,87768,87769,88710,88711,88726,88727,88757,88758,88979,89766,89767,89813,89814,89928,90035,90958,90959,90984,91360,92014,92015,92034,92035,92052,92063,92064,92416,93018,93019,93041,93042,93054,93055,93090,93091,93108,93119,93120,94074,94075,94097,94098,94110,94111,94195,94196,95102,95103,95251,95252,95562,96097,96098,96196,96197,96618,97153,97154,97237,97238,98239,98240,98285,98286,98355,98356,98414,98415,99287,99288,99295,99296,99308,99309,99316,99317,99341,99342,99381,99382,99389,99390,99411,99412,99421,99422,99463,99464,99470,99471,99700,99740,100343,100344,100372,100373,100390,100391,100429,100430,100437,100438,100445,100446,100477,100478,100488,100489,100519,100520,100748,100756,100782,100796,100832,101446,101447,101470,101471,101485,101486,101544,101545,101804,101838,101873,101888,102526,102527,102569,102570,102929,103625,103626,103960,104551,104552,104606,104607,104644,104645,104729,105016,105607,105608,105615,105616,105662,105663,105684,105685,105700,105701,105785,106053,106671,106672,106684,106685,106733,106734,106740,106741,106828,106829,107109,107140,107147,107176,107822,107823,107864,107865,107884,107885,107924,107925,108155,108196,108203,108217,108232,108822,108823,108878,108879,108920,108921,108980,108981,109090,109098,109099,109100,109211,109228,109235,109244,109273,109826,109827,109878,109879,109955,109956,110146,110154,110155,110156,110171,110196,110197,110198,110284,110291,110300,110323,110882,110883,110916,110917,110997,110998,111011,111012,111086,111087,111227,111252,111253,111254,111289,111290,111291,111314,111379,111972,111973,112006,112007,112053,112054,112101,112102,112142,112143,112323,112345,112346,112347,112360,112370,113062,113063,113078,113079,113096,113097,113130,113131,113157,113158,113356,113379,113416,114134,114135,114152,114153,114171,114186,114187,114412,114448,114494,114501,114542,115122,115123,115182,115183,115215,115216,115227,115482,115504,115550,115557,115567,115588,115598,115612,116238,116239,116271,116272,116317,116318,116347,116348,116357,116358,116477,116478,116479,116507,116508,116509,116538,116623,116644,116661,116668,117223,117224,117373,117374,117403,117404,117413,117414,117533,117534,117535,117563,117564,117565,117717,117733,118279,118280,118306,118307,118449,118450,118692,118693,118694,118745,118761,118789,119505,119506,119653,119664,119665,119666,119684,119748,119749,119750,119769,119801,119817,120411,120596,120597,120709,120720,120721,120722,120740,120775,120776,120777,120825,120839,120864,121456,121467,121525,121526,121551,121571,121652,121653,121748,121749,121755,121756,121831,121832,121833,121840,121895,121920,122041,122512,122607,122627,122804,122805,122811,122812,122876,122896,122906,122907,122908,122929,122960,122991,123008,123097,123649,123674,123932,123962,123963,123964,123985,124016,124022,124047,124054,124064,124615,124657,124667,124705,124730,124980,124981,124982,125059,125078,125110,125133,125671,125713,125723,125769,125945,125946,126036,126037,126038,126115,126189,126795,126825,127001,127002,127160,127201,127811,127851,127922,127923,127938,127939,127948,127949,127950,127963,127964,128216,128251,128257,128284,128867,128978,128979,128994,128995,129004,129005,129006,129019,129020,129131,129132,129260,129307,129323,129340,129889,129974,130016,130017,130018,130187,130188,130205,130206,130316,130350,130379,130945,131030,131072,131073,131074,131080,131081,131254,131255,131261,131262,131287,131391,131406,131441,132020,132136,132137,132212,132213,132274,132275,132310,132311,132325,132326,132327,132343,132408,132447,132455,132497,132514,133076,133250,133251,133257,133258,133259,133268,133269,133302,133303,133330,133331,133381,133382,133383,133412,133464,133511,133560,133570,134176,134306,134307,134313,134314,134315,134331,134332,134333,134358,134359,134369,134370,134371,134468,134549,134616,135232,135266,135275,135320,135321,135322,135349,135350,135351,135387,135388,135389,135425,135426,135427,135538,135539,135540,135550,135605,135641,136322,136331,136376,136377,136378,136405,136406,136407,136516,136517,136561,136562,136563,136594,136595,136596,136606,136697,136707,136718,137285,137318,137572,137573,137617,137618,137619,137676,137746,137763,137774,137790,137856,138341,138363,138374,138387,138458,138459,138460,138542,138543,138544,138732,138738,138739,138740,138792,138802,138846,138912,139419,139443,139514,139515,139516,139524,139525,139526,139598,139599,139600,139794,139795,139796,139813,139814,139815,139840,139848,140519,140580,140581,140582,140673,140674,140702,140703,140869,140870,140871,140896,140972,141575,141729,141730,141758,141759,141822,141823,141850,141964,142028,142646,142736,142737,142738,142754,142755,142756,142835,142836,142843,142844,142864,142865,142878,142879,142906,142993,143020,143061,143702,143713,143726,143763,143764,143792,143793,143794,143810,143811,143812,143833,143834,143835,143883,143884,143891,143892,143899,143900,143920,143921,144049,144096,144107,144117,144131,144736,144769,144782,144819,144820,144841,144842,144889,144890,144891,144939,144940,144967,144968,145152,145163,145187,145792,145887,145888,145889,145897,145898,145932,145933,146023,146024,146181,146785,146943,146944,146945,146988,146989,147226,147237,147316,147333,147841,147971,147972,148282,148372,148389,149027,149028,149507,150056,150091,150092,150093,150209,150210,150211,150332,150342,150343,150344,150387,150427,150428,150563,151112,151147,151148,151149,151198,151199,151233,151234,151265,151266,151267,151285,151286,151325,151326,151339,151388,151398,151399,151400,151443,151474,151475,152254,152255,152289,152290,152297,152298,152299,152312,152313,152341,152342,152381,152382,152395,152461,152462,152468,152511,152512,152567,152568,153242,153243,153244,153353,153354,153355,153368,153369,153390,153391,153466,153516,153517,153518,153519,153524,153533,153534,153535,154187,154298,154299,154300,154326,154327,154328,154337,154338,154377,154378,154446,154447,154467,154468,154522,154530,154531,154532,154572,154573,154574,154575,154589,154590,154591,154688,154689,155243,155382,155383,155384,155393,155394,155433,155434,155523,155524,155538,155539,155586,155587,155588,155628,155629,155630,155631,155773,156419,156420,156594,156595,156684,156685,156686,156687,156774,156775,156807,156808,156829,157475,157476,157740,157741,157742,157743,157801,157802,158624,158625,158626,158679,158680,158796,158797,158798,158799,158825,158968,159594,159595,159596,159630,159631,159680,159681,159682,159735,159736,159853,159854,159881,159959,159960,159983,159984,160009,160024,160650,160651,160652,160658,160659,160678,160679,160686,160687,160875,160951,160952,161065,161714,161715,161722,161723,161724,161734,161735,161761,161762,161763,161784,161785,161786,161806,161807,161833,161834,161882,161883,161906,161931,162778,162779,162780,162807,162808,162809,162817,162818,162819,162840,162841,162842,162862,162863,162875,162876,162889,162890,162938,162939,162962,163006,163007,163008,163074,163075,163863,163864,163865,163931,163932,164062,164063,164064,165022,165023,165033,165034,165216,165217,165245,165246,165313,166063,166064,166078,166079,166089,166090,166147,166254,166255,166310,166311,166369,167047,167048,167119,167120,167170,167171,167175,167176,167177,167194,167195,167196,167203,167264,167278,167279,167280,167381,167382,168040,168041,168050,168051,168052,168057,168058,168074,168075,168076,168103,168104,168226,168227,168231,168232,168233,168250,168251,168252,168294,168320,168334,168335,168336,168341,168342,168430,168431,168446,168447,168498,169096,169097,169106,169107,169108,169113,169114,169130,169131,169132,169350,169448,169449,169554,170230,170231,170232,170327,170328,170385,170386,170387,170516,170517,171200,171201,171202,171286,171287,171288,171306,171307,171308,171383,171384,171441,171442,171443,171547,171548,171632,171633,172256,172257,172258,172362,172363,172364,173643,173644,173651,173652,173771,174430,174431,174516,174517,174644,174645,174646,174746,174747,174827,175432,175433,175434,175486,175487,175547,175548,175549,175565,175566,175572,175573,175615,175616,175700,175701,175702,175811,175812,176488,176489,176490,176582,176583,176603,176604,176605,176612,176613,176621,176622,176671,176672,176737,176747,176748,176749,176847,176848,176888,176889,176902,176903,177613,177614,177615,177638,177639,177668,177669,177793,177803,177804,177805,177854,177855,178642,178643,178644,178669,178670,178671,178938,178939,179675,179676,179677,179698,179699,179700,179817,179818,179856,179857,179858,180731,180732,180733,180745,180746,180747,180873,180874,180912,180913,180914,180925,181077,181078,181763,181764,181765,181801,181802,181803,181981,182115,182116,182122,182123,182819,182820,182821,182884,182885,182886,183051,183120,183121,183210,183211,183229,183230,183940,183941,183942,184074,184075,184076,184107,184150,184259,184260,184944,184945,185044,185045,185046,185130,185131,185132,185167,185168,185169,185174,185175,185176,185206,185361,185362,186000,186001,186063,186064,186100,186101,186102,186126,186127,186147,186148,186223,186224,186225,186230,186231,186232,186387,186388,187119,187120,187131,187132,187145,187146,187182,187183,187203,187204,187332,187366,187367,188130,188131,188187,188188,188201,188202,188226,188227,188228,188271,188272,188388,188444,188445,188515,188516,189186,189187,189196,189197,189282,189283,189284,189327,189328,189471,189472,190207,190208,190209,190217,190218,190219,190252,190253,190469,191263,191264,191265,191273,191274,191275,191315,191316,191317,191525,191574,191575,191600,191601,191649,191650,192371,192372,192373,193534,193535,193600,193770,193771,194566,194567,194581,194582,194590,194591,194656,194672,194673,194674,194806,194807,195622,195623,195637,195638,195728,195729,195730,195768,195769,195770,195844,195845,195893,195894,195920,195921,196568,196569,196570,196632,196633,196634,196650,196651,196652,196741,196824,196825,196826,196867,196868,197624,197625,197626,197688,197689,197690,197706,197707,197708,197719,197720,197797,197874,197905,197906,197949,197950,198018,198019,198660,198661,198694,198695,198696,198775,198776,198797,198798,198930,198988,198989,199104,199105,199716,199717,199750,199751,199752,199853,199854,200785,200786,200815,200816,201063,201064,201065,201110,201111,201137,201138,201148,201149,201841,201842,201871,201872,201986,201987,202079,202119,202120,202121,202137,202138,202237,202238,202909,202910,202911,203029,203030,203042,203043,203135,203947,203948,203949,203965,203966,203967,204085,204086,204178,204329,204330,204379,204380,205003,205004,205005,205088,205089,205103,205104,205105,205203,205204,205205,205234,205261,205262,205263,205392,205393,206144,206145,206159,206160,206161,206259,206260,206261,206317,206318,206319,206477,206478,207259,207260,207281,207282,207424,207425,208287,208288,208315,208316,208337,208338,208469,208470,208512,208513,208547,208548,209270,209271,209272,209273,209296,209297,209298,209299,209343,209344,209555,209556,209582,209583,210327,210328,210338,210339,210340,210341,210353,210354,210500,210690,210691,210708,210709,211383,211384,211395,211396,211409,211410,211556,211702,211703,211733,211734,212428,212429,212430,212431,212451,212452,212571,212572,212601,212602,212603,212630,212687,212688,213462,213463,213464,213465,213485,213486,213627,213628,213657,213658,213659,213686,214519,214520,214525,214526,214527,214528,214541,214542,214676,214677,215575,215576,215582,215583,215605,215606,215607,215608,215614,215615,215616,215617,215635,215636,215637,215708,215709,215732,215733,215755,215756,215829,215900,215901,216638,216639,216662,216663,216671,216672,216678,216679,216680,216681,216691,216692,216693,216715,216716,216717,216718,216764,216765,216775,216776,216810,216811,216812,216813,216885,216918,216919,216932,216933,216944,216945,217718,217719,217727,217728,217735,217736,217772,217773,217813,217814,217831,217832,217866,217867,217868,217869,217919,217920,217921,218029,218102,218103,218791,218792,218828,218829,218869,218870,218922,218923,218924,218925,218943,218944,218945,218975,218976,218977,219085,219097,219111,219169,219170,219962,219963,219978,219979,219980,219981,219999,220000,220001,220071,220072,220153,220167,220181,220188,220205,220855,220856,220857,220858,220932,220933,220934,221018,221019,221034,221035,221036,221037,221151,221152,221163,221164,221237,221244,221261,221912,221913,221988,221989,221990,222065,222066,222090,222091,222092,222093,222192,222193,222309,222329,222330,222331,222332,222968,222969,222998,222999,223000,223001,223024,223025,223026,223027,223038,223039,223040,223041,223121,223122,223147,223148,223314,223365,223385,223386,223387,223388,224055,224056,224068,224069,224070,224071,224081,224082,224095,224096,224341,224342,224355,224356,224370,224384,224397,224442,224443,224448,224449,224450,224451,225111,225112,225125,225126,225137,225138,225151,225152,225220,225221,225273,225294,225346,225347,225440,225453,225492,225493,225494,225495,225504,225505,225506,225507,226173,226174,226175,226176,226181,226182,226213,226214,226215,226216,226233,226234,226235,226236,226268,226269,226276,226277,226329,226350,226460,226461,226548,226549,226550,226551,226561,226562,227230,227231,227270,227271,227290,227291,227324,227325,227445,227446,227447,227478,227479,227583,227599,227605,227606,228247,228248,228249,228250,228286,228287,228326,228327,228346,228347,228373,228374,228396,228397,228483,228484,228501,228502,228503,228550,228551,228557,228558,228589,228628,228639,228655,228676,228677,228678,228679,229304,229305,229355,229356,229357,229358,229429,229430,229452,229453,229470,229471,229472,229538,229539,229540,229541,229645,229656,229671,229684,229732,229733,229734,229735,230360,230361,230412,230413,230422,230423,230424,230425,230429,230430,230431,230432,230526,230527,230528,230594,230595,230596,230597,230712,230727,230759,230789,230790,231468,231469,231479,231480,231486,231487,231650,231651,231652,231653,231711,231712,231815,232497,232498,232499,232500,232516,232517,232518,232519,232535,232536,232542,232543,232552,232553,232554,232555,232706,232707,232708,232709,232801,232802,232894,232895,232896,232897,233547,233548,233549,233550,233554,233555,233573,233574,233609,233610,233617,233618,233619,233620,233664,233665,233703,233704,233705,233751,233762,233763,233764,233765,233950,233951,233952,233953,234604,234605,234610,234611,234629,234630,234665,234666,234674,234675,234720,234721,234759,234760,234761,234791,234792,234793,234807,234818,234819,234820,234821,234826,234827,234828,234850,234851,234857,234858,234930,234943,234958,234999,235000,235001,235002,235007,235008,235660,235661,235676,235677,235678,235679,235730,235731,235847,235848,235849,235875,235876,235882,235883,235884,235986,235999,236014,236028,236055,236056,236057,236058,236733,236734,236753,236754,236755,236756,236769,236770,236771,236772,236848,236849,236850,236981,236982,237084,237103,237112,237113,237762,237763,237764,237765,237789,237790,237810,237811,237826,237827,237904,237905,237906,238055,238056,238074,238075,238148,238159,238810,238811,238812,238813,238819,238820,238866,238867,238882,238883,238950,238951,239141,239142,239204,239237,239238,239239,239240,239867,239868,239875,239876,239888,239889,239890,239891,239907,239908,239909,239910,240006,240007,240122,240123,240124,240142,240143,240155,240156,240293,240294,240295,240296,240923,240924,240945,240946,240964,240965,241052,241053,241112,241113,241114,241178,241179,241180,241232,241233,241350,241351,242001,242002,242020,242021,242063,242064,242065,242066,242108,242109,242168,242169,242170,243120,243121,243126,243127,243128,243129,243415,243455,243456,243457,243458,244124,244125,244126,244127,244161,244162,244163,244164,244176,244177,244183,244184,244319,244471,244500,244501,244502,244503,244511,244512,244513,244514,245173,245174,245175,245176,245181,245182,245218,245219,245239,245240,245375,245444,245445,245502,245556,245557,245558,245559,245568,245569,245574,245575,245576,245577,246230,246231,246237,246238,246274,246275,246470,246471,246484,246485,246558,246613,246614,246630,246631,246632,246633,247255,247256,247257,247258,247267,247268,247269,247270,247276,247277,247278,247279,247286,247287,247298,247299,247300,247301,247411,247412,247413,247687,247688,248312,248313,248324,248325,248333,248334,248355,248356,248451,248452,248467,248468,248469,248576,248577,248578,248579,248585,248586,248587,248588,248604,248605,249368,249369,249380,249381,249389,249390,249411,249412,249454,249455,249456,249457,249507,249508,249619,249620,249621,249622,249632,249633,249634,249635,249641,249642,249643,249644,249789,249790,249791,249792,250511,250512,250519,250520,250521,250522,250597,250675,250676,250677,250678,250689,250690,250698,250699,250740,250741,250845,250846,250847,250848,251557,251558,251559,251560,251567,251568,251576,251577,251653,251700,251701,251702,251732,251733,251788,251789,251902,251903,252561,252562,252563,252564,252614,252615,252632,252633,252756,252757,252758,252771,252772,252796,252797,252798,252799,252864,252865,253618,253619,253670,253671,253750,253751,253826,253827,253828,253829,253836,253852,253853,253854,253855,254653,254654,254655,254656,254674,254675,254690,254691,254692,254693,254750,254751,254752,254753,254805,254806,254807,254808,254882,254883,254884,254885,254892,254909,254910,254920,254921,254922,254923,254928,254929,254930,254931,254979,254980,254981,254982,255710,255711,255716,255717,255718,255719,255736,255737,255738,255739,255747,255748,255807,255808,255861,255862,255863,255864,255938,255939,255940,255941,255976,255977,255978,255979,255984,255985,255986,255987,255993,255994,256005,256006,256025,256026,256035,256036,256037,256038,256120,256121,256122,256123,256766,256767,256773,256774,256793,256794,256803,256804,256848,256849,256850,256851,256863,256864,256917,256918,256919,256920,256994,256995,256996,256997,257033,257034,257041,257042,257065,257066,257067,257068,257092,257093,257176,257177,257178,257179,257814,257815,257816,257817,257829,257830,257849,257850,257905,257906,257973,257974,257975,257976,258017,258050,258051,258052,258053,258121,258122,258123,258124,258184,258185,258186,258187,258233,258234,258244,258245,258246,258247,258871,258872,258961,258962,259021,259022,259023,259029,259030,259031,259032,259073,259106,259107,259108,259109,259178,259179,259186,259187,259240,259241,259242,259243,259300,259301,259302,259303,259927,259928,260025,260026,260027,260028,260077,260078,260079,260085,260086,260087,260088,260091,260092,260093,260140,260141,260142,260163,260164,260179,260180,260181,260182,260219,260220,260221,260222,260226,260227,260228,260229,260270,260271,260272,260273,260282,260283,260284,260285,260297,260298,260310,260311,260312,260313,260323,260324,260325,260326,260357,260358,261043,261044,261045,261046,261082,261083,261090,261091,261092,261093,261142,261143,261147,261148,261149,261196,261197,261198,261235,261236,261237,261238,261275,261276,261277,261278,261282,261283,261284,261285,261302,261303,261304,261305,261326,261327,261328,261329,261338,261339,261340,261341,261366,261367,261368,261369,261379,261380,261381,261382,262080,262081,262082,262083,262100,262101,262107,262108,262109,262110,262138,262139,262147,262148,262292,262293,262303,262304,262305,262306,262321,262322,262323,262324,262332,262333,262339,262340,262358,262359,262360,262361,262367,262368,262369,262370,262383,262384,262386,262387,262388,262389,262395,262396,262423,262424,262436,262437,262450,262451,262452,262453,263137,263138,263156,263157,263164,263165,263175,263176,263177,263178,263203,263204,263359,263360,263361,263362,263377,263378,263379,263380,263415,263416,263423,263424,263425,263426,263442,263443,263444,263445,263506,263507,263508,263509,264161,264162,264163,264164,264193,264194,264203,264204,264205,264206,264220,264221,264232,264233,264335,264336,264337,264416,264417,264434,264435,264463,264464,264465,264466,264480,264481,264499,264500,264541,264542,264543,264544,264553,264554,264555,264556,264563,264564,264571,264572,264573,264574,265218,265219,265225,265226,265227,265228,265240,265241,265242,265243,265260,265261,265288,265289,265391,265392,265393,265480,265481,265482,265483,265512,265513,265514,265515,265519,265520,265521,265522,265570,265571,265572,265573,265579,265580,265581,265582,265587,265588,265589,265590,265597,265598,265599,265600,265609,265610,265611,265612,265627,265628,265629,265630,265636,265637,265638,265639,266265,266266,266267,266268,266274,266275,266282,266283,266288,266289,266290,266291,266297,266298,266316,266317,266437,266457,266458,266536,266537,266538,266539,266568,266569,266570,266571,266576,266577,266616,266617,266618,266619,266626,266627,266628,266629,266635,266636,266637,266638,266643,266644,266645,266646,266654,266655,266666,266667,266684,266685,266692,266693,266694,266695,267314,267315,267316,267317,267322,267323,267338,267339,267345,267346,267353,267354,267493,267512,267513,267514,267515,267545,267578,267579,267580,267581,267593,267594,267625,267626,267654,267655,267656,267657,267672,267673,267674,267675,267683,267684,267692,267693,267700,267701,267749,267750,268371,268372,268378,268379,268401,268402,268466,268467,268468,268469,268568,268569,268570,268571,268601,268618,268619,268620,268621,268625,268626,268627,268628,268634,268635,268636,268637,268710,268711,268712,268713,268729,268730,269427,269428,269523,269524,269624,269625,269626,269627,269674,269675,269676,269677,269681,269682,269683,269684,269691,269692,269767,269768,269790,269791,269792,269793,270562,270563,270564,270565,270570,270571,270572,270573,270579,270580,270680,270681,270682,270683,270731,270732,270738,270739,270806,270807,270808,270809,270846,270847,270848,270849,270872,270873,270874,270875,271557,271558,271559,271560,271619,271620,271627,271628,271736,271737,271738,271739,271834,271835,271836,271837,271862,271863,271864,271865,271903,271904,271920,271921,271922,271923,271928,271929,271930,271931,271941,271942,271943,271944,272614,272615,272628,272629,272630,272631,272636,272637,272638,272639,272675,272676,272683,272684,272792,272793,272794,272795,272880,272881,272882,272883,272890,272891,272892,272893,272919,272920,272976,272977,272978,272979,272985,272986,272997,272998,272999,273000,273660,273661,273662,273663,273670,273671,273685,273686,273693,273694,273700,273701,273702,273703,273849,273850,273936,273937,273938,273939,273947,273948,273961,273962,273963,273964,274033,274034,274054,274055,274060,274061,274062,274063,274717,274718,274741,274742,274749,274750,274757,274758,274985,274986,274987,274988,274993,274994,275017,275018,275019,275020,275063,275064,275065,275066,275074,275075,275076,275077,275116,275117,275118,275119,275123,275124,275125,275126,275140,275141,275142,275143,275773,275774,275813,275814,275976,275977,275978,276041,276042,276043,276044,276074,276075,276112,276113,276114,276115,276119,276120,276121,276122,276130,276131,276132,276133,276173,276174,276179,276180,276181,276182,276187,276188,276189,276190,276196,276197,276198,276199,277032,277033,277034,277098,277099,277168,277169,277170,277171,277176,277177,277187,277188,277211,277212,277213,277214,277236,277237,277243,277244,277245,277246,277253,277254,278132,278133,278134,278135,278225,278226,278267,278268,278269,278270,278300,278301,279188,279189,279190,279191,279201,279202,279203,279204,279249,279250,279251,279252,279263,279264,279265,279266,279324,279325,280245,280246,280257,280258,280259,280260,280273,280274,280275,280276,280305,280306,280307,280308,280319,280320,280321,280322,280371,280372,280373,280374,281295,281296,281297,281298,281314,281315,281329,281330,281331,281332,281362,281363,281376,281377,281383,281384,281385,281386,281405,281406,281407,281408,281418,281419,281420,281421,281427,281428,281429,281430,282344,282345,282346,282347,282351,282352,282353,282354,282362,282363,282364,282365,282386,282387,282439,282440,282441,282442,282461,282462,282463,282464,282474,282475,282476,282477,282484,282485,282512,282513,282514,282515,282530,282531,282532,282533,283400,283401,283402,283403,283408,283409,283418,283419,283420,283421,283458,283459,283460,283461,283496,283497,283511,283512,283513,283514,283518,283519,283531,283532,283545,283546,283547,283548,283568,283569,283570,283571,283586,283587,283588,283589,284457,284458,284475,284476,284514,284515,284516,284517,284567,284568,284569,284570,284601,284602,284603,284604,284607,284608,284609,284610,284616,284617,284618,284619,284625,284626,284643,284644,285571,285572,285624,285625,285658,285659,285663,285664,285665,285666,285672,285673,285674,285675,286599,286600,286601,286602,286617,286618,286619,286620,286647,286648,286649,286650,286720,286721,286729,286730,286743,286744,286745,286746,287655,287656,287657,287658,287673,287674,287675,287676,287691,287692,287693,287694,287703,287704,287705,287706,287710,287711,287712,287713,287749,287750,287751,287752,287799,287800,287801,287802,288712,288713,288730,288731,288747,288748,288749,288750,288760,288761,288766,288767,288768,288769,288805,288806,288807,288808,288856,288857,289804,289805,289823,289824,289833,289834,289835,289836,289862,289863,289880,289881,289882,289883,290889,290890,290891,290892,290902,290903,290904,290905,290936,290937,290938,290939,291946,291947,291958,291959,291960,291961,291964,291965,291966,291967,291993,291994,292916,292917,292918,292919,292924,292925,292926,292927,293015,293016,293020,293021,293022,293023,293055,293056,293057,293058,293961,293962,293963,293964,293972,293973,293974,293975,293980,293981,293982,293983,294021,294022,294023,294024,294077,294078,294096,294097,294098,294099,294111,294112,294113,294114,295017,295018,295019,295020,295029,295030,295037,295038,295077,295078,295079,295080,295122,295123,295124,295125,295152,295153,295154,295155,295168,295169,296074,296075,296134,296135,296163,296164,296165,296166,296178,296179,296180,296181,296209,296210,297166,297167,297168,297169,297180,297181,297182,297183,297219,297220,297221,297222,297235,297236,297258,297259,297260,297261,297286,297287,297288,297289,297294,297295,297296,297297,298215,298216,298217,298218,298222,298223,298224,298225,298236,298237,298238,298239,298276,298277,298306,298307,298308,298309,298314,298315,298316,298317,298327,298328,298329,298330,298342,298343,298344,298345,298350,298351,298352,298353,299271,299272,299273,299274,299279,299280,299293,299294,299362,299363,299364,299365,299371,299372,299383,299384,299385,299386,299399,299400,299407,299408,300321,300322,300323,300324,300328,300329,300411,300412,300413,300414,300419,300420,300440,300441,300472,300473,300474,300475,301377,301378,301379,301380,301422,301423,301424,301425,301467,301468,301469,301470,301528,301529,301530,301531,302420,302421,302422,302423,302434,302435,302452,302453,302454,302455,302478,302479,302480,302481,302508,302509,302510,302511,302524,302525,302585,302586,303476,303477,303478,303479,303508,303509,303510,303511,303535,303536,303546,303547,303548,303549,303564,303565,303566,303567,304533,304534,304565,304566,304602,304603,304604,304605,304621,304622,304630,304631,304632,304633,304642,304643,304644,304645,304678,304679,304680,304681,305606,305607,305608,305609,305659,305660,305686,305687,305688,305689,305698,305699,305700,305701,305705,305706,305707,305708,305719,305720,305721,305722,305734,305735,305736,305737,306662,306663,306664,306665,306683,306684,306685,306686,306743,306744,306755,306756,306761,306762,306763,306764,306775,306776,306777,306778,306791,306792,307719,307720,307739,307740,307741,307742,307818,307819,307832,307833,308796,308797,310876,310877,310878,310879,310901,310902,310903,310904,310923,310924,310925,310926,311918,311919,311920,311921,311932,311933,311934,311935,311957,311958,311959,311960,311979,311980,311981,311982,312974,312975,312976,312977,312989,312990,313014,313015,313028,313029,313030,313031,313036,313037,314031,314032,314084,314085,314086,314087,315141,315142,317219,317220,317221,317222,317225,317226,317227,317228,318275,318276,318277,318278,318281,318282,318283,318284,319315,319316,319317,319318,319332,319333,319338,319339,319355,319356,319357,319358,320371,320372,320373,320374,320381,320382,320383,320384,320411,320412,320413,320414,321428,321429,321437,321438,321439,321440,321468,321469,322494,322495,705979,705980,705981,705982,707018,707019,707020,707036,707037,708074,708075,708076,708092,708093,712342,712343,712344,712345,713399,713400,714455,714456,720767,720768,720769,720770,721824,721825,722880,722881,724966,724967,724968,724969,726023,726024,727079,727080,728996,728997,730052,730053,734258,734259,734260,734261,735314,735315,735316,735317,735569,735570,735571,736371,736372,736594,736595,736596,736597,736625,736626,736627,737456,737457,737651,737652,738500,738512,738513,738707,738708,738968,738969,738970,739556,740024,740025,740026,740601,740602,741657,741658,741675,742731,742743,742744,743799,743800,744808,744809,744810,744811,744814,744815,744816,744817,744835,745864,745865,745866,745867,745870,745871,745872,745873,745876,745891,745919,745920,746921,746922,746927,746928,746932,746937,746963,746975,746976,747993,748012,748013,748019,749068,749069,749081,750137,752252,752253,752259,752260,752700,752701,752702,753263,753308,753309,753315,753316,753756,753757,753758,754319,754352,755408,755424,755425,756473,756480,756481,757529,759601,760657,760663,761719,761759,761760,762815,762816,764872,764873,764878,764879,765928,765929,765934,765935,765981,767037,768086,769106,769142,770162,771267,771268,772270,772271,772323,772324,773326,773327,775449,776505,776541,776542,777597,777598,778645,779682,779701,780738,781784,781825,781826,782840,782881,782882,784985,784986,786001,786002,786019,786028,786041,786042,787057,787058,787075,787084,790246,790247,791302,791303,791317,791325,791326,792349,792350,792373,792381,792382,793405,793406,794481,794482,795537,795538,797646,797647,797657,797658,798702,798703,798713,798714,3801,3802,3803,3804,3805,3806,3807,3808,3809,4857,4858,4859,4860,4861,4862,4863,4864,4865,5913,5914,5920,5921,6969,6970,6976,6977,7418,7419,7420,7421,7422,7423,7424,8025,8026,8032,8033,8474,8475,8476,8477,8478,8479,8480,9081,9082,9088,9089,9530,9531,9532,9533,9534,9535,9536,10137,10138,10139,10140,10142,10143,10144,10145,10586,10587,10588,10589,10590,10591,10592,11193,11194,11195,11196,11197,11198,11199,11200,11201,11642,11643,11644,11645,11646,11647,11648,12698,12699,12700,12701,12702,12703,12704,12720,12721,12722,12723,12724,12725,12726,12737,12738,12739,12740,12741,12742,12743,13776,13777,13778,13779,13780,13781,13782,13793,13794,13795,13796,13797,13798,13799,14832,14833,14834,14835,14836,14837,14838,14849,14850,14851,14852,14853,14854,14855,15888,15889,15890,15891,15892,15893,15894,15905,15906,15907,15908,15909,15910,15911,15925,15926,15927,15928,15929,15930,15931,16944,16945,16946,16947,16948,16949,16950,16961,16962,16963,16964,16965,16966,16967,16981,16982,16983,16984,16985,16986,16987,18000,18001,18002,18004,18005,18006,18017,18018,18019,18021,18022,18023,18037,18038,18039,18040,18041,18042,18043,19093,19094,19095,19096,19097,19098,19099,20149,20150,20151,20152,20153,20154,20155,21205,21206,21207,21209,21210,21211,29660,29661,29662,29663,29664,29665,29666,30716,30717,30718,30719,30720,30721,30722,31772,31773,31774,31775,31776,31777,31778,32828,32829,32830,32831,32832,32833,32834,33884,33885,33886,33887,33888,33889,33890,34940,34941,34942,34943,34944,34945,34946,35363,35364,35365,36419,36420,36421,38580,38581,38582,38583,38584,38585,38586,39636,39637,39638,39639,39640,39641,39642,40692,40693,40694,40695,40696,40697,40698,41748,41749,41750,41751,41752,41753,41754,46500,46501,46502,46503,46504,46505,46506,47556,47557,47558,47559,47560,47561,47562,48612,48613,48614,48615,48616,48617,48618,49668,49669,49670,49671,49672,49673,49674,50724,50725,50726,50727,50728,50729,50730,51780,51781,51782,51783,51784,51785,51786,51844,51845,51846,51847,51848,51849,51850,52900,52901,52902,52903,52904,52905,52906,53956,53957,53958,53959,53960,53961,53962,55012,55013,55014,55015,55016,55017,55018,56068,56069,56070,56072,56073,56074,61331,61332,61333,61334,61335,62387,62388,62389,62390,62391,63443,63444,63445,63446,63447,64499,64500,64502,64503,88718,88719,88720,88721,88722,89774,89775,89776,89777,89778,90830,90831,90832,90833,90834,91886,91887,91889,91890,134297,134298,134299,134300,134301,134302,134303,134304,135353,135354,135355,135356,135357,135358,135359,135360,135405,136409,136410,136411,136412,136413,136414,136415,136416,136455,136456,136457,136458,136459,136460,136461,136462,136463,136464,136465,136466,136467,137465,137466,137467,137468,137469,137470,137471,137472,137480,137481,137482,137483,137484,137511,137512,137513,137514,137515,137516,137517,137518,137519,137520,137521,137522,137523,138521,138522,138523,138524,138526,138527,138536,138537,138538,138539,138540,138567,138568,138569,138570,138571,138572,138573,138574,138575,138576,138577,138578,138579,139577,139578,139579,139580,139592,139593,139594,139595,139596,139623,139624,139625,139626,139627,139628,139629,139630,139631,139632,139633,139634,139635,140648,140649,140651,140652,140679,140680,140681,140682,140683,140684,140685,140686,140687,140688,140689,140690,140691,141735,141736,141737,141738,141739,141740,141741,141742,141743,141744,141745,141746,141747,142791,142792,142793,142794,142795,142796,142797,142798,142799,142800,142801,142802,142803,143847,143848,143849,143850,143851,143852,143854,143855,143856,143857,143858,143859,146088,146089,146090,146091,146092,147144,147145,147146,147147,147148,148200,148201,148202,148203,148204,149256,149257,149258,149259,149260,151215,151216,151217,151218,151219,151220,151221,152271,152272,152273,152274,152275,152276,152277,152278,153327,153328,153329,153330,153331,153332,153333,153334,154383,154384,154385,154386,154387,154388,154389,154390,155439,155440,155441,155442,155443,155444,155445,168061,168062,168063,168064,168065,168066,168067,168068,168069,168070,168071,169117,169118,169119,169120,169121,169122,169123,169124,169125,169126,169127,170173,170174,170175,170176,170177,170178,170179,170180,170181,170182,170183,171229,171230,171231,171232,171233,171234,171235,171236,171237,171238,171239,172286,172287,172289,172291,172293,172294,172295,178925,178926,178927,178928,178929,178930,179981,179982,179983,179984,179985,179986,181037,181038,181039,181040,181041,181042,182093,182094,182095,182096,182097,182098,183149,183150,183151,183152,183153,183154,191627,191628,191629,191630,191631,191632,192683,192684,192685,192686,192687,192688,193739,193740,193741,193742,193743,193744,194795,194796,194797,194798,194799,194800,195851,195852,195853,195854,195855,195856,201123,201124,201125,201126,201127,201128,201129,202179,202180,202181,202182,202183,202184,202185,203235,203236,203237,203238,203239,203240,203241,204291,204292,204293,204294,204295,204296,204297,205347,205348,205349,205351,205352,205353,208603,208604,208605,208606,208607,208608,208609,209543,209544,209545,209546,209547,209548,209549,209659,209660,209661,209662,209663,209664,209665,210599,210600,210601,210602,210603,210604,210605,210715,210716,210717,210718,210719,210720,210721,211655,211656,211657,211658,211659,211660,211661,211771,211772,211773,211774,211775,211776,211777,212711,212712,212713,212714,212715,212716,212717,212827,212828,212829,212830,212831,212832,212833,213767,213768,213769,213771,213772,213773,216728,216729,217748,217749,217750,217751,217752,217753,217754,217755,217756,217784,217785,218804,218805,218806,218807,218808,218809,218810,218811,218812,219860,219861,219862,219863,219864,219865,219866,219867,219868,220916,220917,220918,220919,220920,220921,220922,220923,220924,221972,221973,221974,221975,221976,221977,221978,221979,221980,221996,221997,221998,221999,222000,222001,222002,223031,223032,223033,223052,223053,223054,223055,223056,223057,223058,224106,224107,224108,224109,224110,224111,224112,224113,224114,225162,225163,225164,225165,225166,225167,225168,225169,225170,226218,226219,226220,226221,226222,226223,226224,226225,226226,240046,240047,240048,240049,240050,240051,240052,241102,241103,241104,241105,241106,241107,241108,242158,242159,242160,242161,242162,242163,242164,243114,243115,243214,243215,243216,243217,243218,243219,243220,244170,244171,606447,606448,606449,606450,606451,606452,607503,607504,607505,607506,607507,607508,608557,608558,608559,608564,608565,608566,609613,609614,609615,609620,609621,609622,610667,610668,610669,610678,611723,611724,611725,611734,612779,612788,612789,612790,613835,613844,613845,613846,614885,614886,614887,614888,614889,614890,614891,614892,614893,614894,614895,614898,614899,614900,614902,614903,614904,614905,615941,615942,615943,615944,615945,615946,615947,615948,615949,615950,615951,615954,615955,615956,615958,615959,615960,615961,616997,617002,617007,617010,617011,617012,617013,617014,617017,617018,617019,617020,618053,618054,618058,618059,618060,618061,618062,618063,618066,618067,618068,618069,618070,618073,618074,618075,618076,619109,619110,619114,619115,619116,619117,619118,619119,619132,620166,620188,621220,621221,621222,621244,622276,622277,622278,622294,622295,622296,622298,622299,622300,623332,623337,623338,623350,623351,623352,623354,623355,623356,624388,624393,624394,624406,625444,625445,625446,625447,625448,625449,625450,625457,625458,625459,625460,625461,625462,626500,626501,626502,626503,626504,626505,626506,626513,626514,626515,626516,626517,626518,627562,627563,627564,627565,627566,627567,627568,627569,628618,628619,628620,628621,628622,628623,628624,628625,1053,1054,1055,2109,2111,2279,2280,2316,2317,3352,3353,4802,4803,4804,4805,5497,5498,5858,5859,5860,5861,6914,6915,6916,6917,6918,6919,6920,6948,6949,6971,6972,6974,6975,7433,7434,7435,8027,8028,8030,8031,8464,8465,8466,8489,8490,8491,8923,8924,9520,9522,9696,9697,10633,10634,10635,11235,11236,11243,11244,11689,11690,11691,11797,11798,12065,13347,13348,13743,13745,14403,14404,14993,14994,15459,15460,15853,15855,15857,15859,17087,17088,18626,18627,18636,18637,19129,19130,19212,19213,19367,19368,19369,19370,19371,20185,20186,20423,20427,21130,21236,21237,21238,21241,21242,21479,21483,22292,22293,22294,22346,22347,22576,22577,22586,22587,23286,23287,23288,23632,23633,23636,23637,23639,23640,23641,23642,23643,24342,24343,24344,24467,24468,24688,24689,24698,24699,25375,25376,25555,25556,26431,26432,26586,26587,26602,26603,27487,27488,29598,29754,29755,29756,30810,30811,30812,31837,31838,31866,32755,32947,32948,32949,32950,32951,33810,33811,33986,33987,34004,34005,34006,34866,34867,35061,35375,36418,36431,36462,37487,38168,38169,38535,38543,39260,39261,39599,40655,40690,40691,40703,40704,41199,41200,41711,42255,42256,43311,43312,43494,43495,43867,43868,43874,43875,43876,44923,44924,44931,45423,45435,45436,45578,45579,45976,46491,46492,46523,46524,47028,47029,47579,47580,48084,48085,49773,49774,51807,51808,51809,52863,52864,52865,52986,52987,54035,54036,55128,55129,57232,58191,58286,58287,58288,58289,58436,58437,58438,58439,58440,58641,58642,59342,59343,59344,59345,59492,59496,60205,60206,60207,60399,60400,60548,60552,60764,61261,61262,61263,61647,61648,61649,61650,61651,61827,61828,62703,62707,63439,63538,63539,63551,63552,63759,63763,64437,64438,64439,64625,64626,64815,64819,65493,65494,65495,66625,66626,66627,67681,67682,67683,67728,67729,69879,69883,73017,73018,73044,73054,76135,76136,76137,76138,76225,76226,77191,77192,77193,77194,77271,77275,79346,79347,79379,79380,79408,79409,79410,79411,79412,80334,80465,80466,80467,80471,80472,81522,82541,82542,83560,83561,88899,88900,89967,89968,94020,94021,94022,95076,95077,95078,95213,95214,96249,96250,97290,97291,99396,99397,99398,99451,99452,100452,100453,100454,101395,101396,101397,102451,102452,102453,102573,102575,102577,102579,104663,104679,104685,104687,104689,104691,105695,105696,105697,106751,106752,106753,106793,106795,106797,106799,106801,106803,106858,106859,107802,107803,108858,108859,108909,108913,108916,108926,108927,109914,109915,110969,111017,111023,111068,111069,112270,112517,113133,113138,113141,114618,117383,118439,119661,119662,120557,121613,121844,121845,121846,121847,121848,122647,122662,122663,122900,122901,122902,122903,122904,123079,123718,123719,123956,123957,123958,123959,123960,124122,125012,125013,125014,125015,125016,125817,125860,126068,126069,126071,126072,126818,127873,127874,127875,128134,128929,128931,128986,128987,128988,129009,129010,129011,130042,130043,130044,130065,130066,130067,130070,132252,132253,132375,133308,133309,133385,133449,133450,137424,138495,138549,138550,138551,139605,139606,139607,139639,140820,142586,142587,143926,143930,144000,144911,145914,145960,145961,145967,147016,147017,147994,148014,150194,150195,151250,151251,152220,152221,152222,153276,153277,153278,153316,154321,154322,155377,155378,155422,155423,155424,156454,156478,156479,156480,156549,156639,157551,157818,157819,157820,158612,158613,158633,158874,158875,158876,159668,159669,160758,161980,161981,162066,162067,162068,162827,163122,163123,163124,164913,165249,165250,166018,166305,166306,167293,167294,167295,167361,167362,168092,168349,168350,168351,168415,170532,171299,172299,172300,172307,172308,172309,173355,173356,173363,173364,173365,174807,174808,174809,175782,175783,175784,175785,175863,175864,175865,176696,176838,176839,176840,176841,177845,177846,177847,178631,178901,178902,178903,179977,179978,179979,180972,181033,181034,181035,181855,181882,181883,181884,182938,182939,182940,184968,185185,185186,185307,187251,187252,189220,189221,189358,190276,190277,190320,190321,190328,191293,191322,191376,191377,192359,192360,192432,192433,193415,193416,193471,193799,193800,193801,194498,194499,194500,194501,194502,194503,194507,194508,194561,194855,194856,194857,195542,195570,195571,195601,195602,196626,196627,196657,196658,198548,199598,200674,201714,201715,201721,201777,201848,201890,201891,202962,202963,203006,203882,204018,204019,205096,205933,205934,207006,207066,207158,207159,207162,207163,208076,208108,208109,208113,208194,208195,208218,208219,208224,208225,209156,209185,209250,209251,209280,209281,210542,210543,210631,210632,211210,211238,211598,211599,211687,211688,212358,212654,212655,213338,213339,213345,213346,213367,213387,215651,215652,215666,215667,215885,216573,216627,216628,216713,216722,216723,217594,217683,217684,218648,218675,218682,218846,218847,218984,218985,219718,219854,219902,219903,220725,220726,220727,220766,220805,220806,220812,220910,221026,221027,221063,221781,221782,221783,221803,221804,221851,221852,221858,221920,221921,221922,221923,221924,221925,221926,221927,221928,221929,221930,221931,221932,221933,221934,221935,221936,221937,221938,222974,222976,222977,222978,222979,222980,222981,222982,222983,222984,222985,222986,222987,222988,222989,222990,222991,222992,222993,222994,223948,223959,224030,224032,224033,224034,224035,224036,224037,224038,224039,224040,224041,224042,224043,224044,224045,224046,224047,224048,224049,224050,224942,225039,225086,225088,225089,225090,225091,225092,225093,225094,225095,225096,225097,225098,225099,225100,225101,225102,225103,225104,225105,225106,225107,225108,225261,226144,226145,226146,226147,226148,226149,226150,226151,226152,226153,226154,226155,226156,226157,226158,226159,226160,226161,226162,226163,226164,227200,227201,227202,227203,227204,227207,227208,227209,227210,227211,227214,227215,227216,227217,227218,227274,227275,227276,228107,228108,228145,228179,228180,228181,228190,228263,228264,228266,228267,229210,229235,229236,229237,229258,229393,230277,230278,230353,230354,230540,230541,230575,230576,230638,230639,231482,231483,231484,231596,231597,231694,231695,232340,232538,232539,232540,232750,232751,232835,232836,232837,232838,232839,232840,232841,233406,233407,233480,233594,233595,233596,233604,233627,233628,233805,233891,233892,233893,233894,233895,233896,234449,234547,234775,234776,234947,234948,234949,234950,234951,234952,235528,235539,235540,235562,235707,235831,235832,236003,236004,236005,236007,236008,236654,236657,236792,237621,237622,237747,237748,238154,238155,238667,238699,238717,238803,238804,239746,239747,239810,239957,240041,240042,240268,240269,240843,240844,240871,240872,241088,241089,241097,241098,241870,242043,242919,242922,243088,243089,243099,243269,243270,243964,244027,244046,245343,246127,246247,246248,247145,247149,247172,247188,247189,247197,247249,247250,247303,247304,248211,248215,248415,248416,248503,248504,248505,249254,249255,249313,249328,249420,249421,250362,250363,250382,250610,250611,251342,251349,251643,251666,251667,251773,251774,251775,252403,252461,252485,252486,252487,252492,252495,252829,252830,252831,253456,253541,253542,253543,254602,254603,254606,255571,255572,255573,255577,256627,256628,256629,256636,256637,257683,257685,259838,259839,259840,259841,259842,259843,260890,260894,260895,260896,260897,260898,260899,260905,260906,260941,261950,261951,261953,261954,261955,262238,262239,265076,265083,268289,268290,268297,269337,269363,269374,271408,272486,272535,272818,272819,274581,276733,276738,277775,277787,277792,278854,279897,279908,280990,281000,282012,283027,283028,283032,283033,284130,285223,285224,286243,286244,286256,286257,287276,287277,291567,291570,292533,292538,292560,294728,294731,294732,294737,295704,296757,296758,296820,296829,297808,306278,306279,306325,306326,307318,309423,309424,309425,309516,309517,309523,309524,309525,310479,310480,310481,310487,310488,310489,310564,310579,310580,310581,311543,311544,311545,312599,312601,323196,324236,326363,326364,348495,362327,367499,381229,383443,384452,384460,386519,387575,387577,388631,388632,388633,389687,389688,389689,390742,390743,390744,390745,391798,391799,391800,391801,392855,392945,393911,393969,395034,396051,396061,396100,397077,398142,515930,528653,530764,530765,530766,531821,531822,537053,537054,537055,537056,538106,538109,538110,538111,538112,538114,574154,574155,574156,575210,575211,575212,580488,581500,608508,608509,608510,608511,609564,609565,609566,609567,616639,619067,619072,622959,627223,630361,633546,634600,634602,637760,639897,640953,640964,641999,642005,642013,642020,643055,643089,644143,645199,648358,654694,665381,668556,671717,700692,700693,701748,701749,710698,710699,710700,710702,711281,711282,711283,711782,711784,712337,712338,712339,713955,716072,716555,717125,717595,718184,719237,720217,720296,721349,721795,721796,722851,722852,725573,725575,725577,726311,726312,727367,727368,728421,728422,728424,728425,729477,729478,729480,729481,730530,730531,730532,730533,731584,731585,731586,731587,731588,731589,732405,732406,732640,732641,732648,732649,732650,732651,733420,733461,733462,733696,733697,733704,733705,733706,733707,734752,734753,735810,735811,735812,735813,735814,735815,735816,735817,736866,736867,736868,736869,736870,736871,736872,736873,738696,738981,738982,738983,738984,738985,738986,738987,738988,739165,739560,740037,740038,740039,740040,740041,740042,740043,740044,740211,741678,742736,742738,743774,743790,744849,745055,745056,746111,746112,750112,750114,750119,750128,751154,751180,754333,754359,755396,755874,755875,758548,758572,763129,763835,763860,763866,766097,768055,771227,772906,775017,775019,775479,776511,776531,779263,779687,780318,780735,782431,783910,783919,790257,790852,791905,791912,793419,793420,793421,794019,794024,794039,794475,794476,794477,795077,797308,802491,5360,7452,7465,9540,10690,11740,12764,15916,15923,16951,17002,17980,17987,17995,19061,19074,19150,20157,22300,25451,28602,30637,30647,30707,31806,31814,32850,33837,33857,35960,38152,40224,41196,43417,46541,46599,48610,51758,53929,54937,56039,56093,57067,58214,61265,61298,61317,63385,64457,65502,66594,68696,71939,72920,77100,77116,81369,85577,87658,87676,87776,89808,90933,91915,94015,95146,96115,96152,97241,98273,99273,99338,102513,103603,103613,105707,105723,107724,108819,108842,110976,111949,113024,114070,115154,115176,116199,116214,116261,117283,119409,120475,121589,121594,123709,123710,124762,125807,125960,125961,125970,125971,125976,125977,126860,126870,126975,128025,128054,128055,131115,131234,131235,133340,133341,134415,134416,135309,135433,135434,136537,136538,137552,137553,137588,137589,140588,140601,140712,143904,143905,144986,144987,148122,148123,150217,150254,150255,152229,153375,153376,154442,154443,156575,156576,157530,158578,158673,158674,159599,159745,159746,162867,162868,162905,162906,164947,164948,165046,165047,167052,167053,168146,169192,169213,169214,169225,171275,171280,171281,171375,171376,172367,172368,172408,172409,173335,173474,173475,177567,178710,178711,178714,178779,178780,179708,179709,179731,179732,179787,179788,179797,179798,182983,182984,182996,182997,184981,184982,187127,187128,187197,187198,188206,188234,188235,191418,191419,192425,194478,195650,195651,195675,195676,197746,197747,201982,201983,203959,206231,206232,208310,208311,208332,208333,209289,209290,211386,211387,211493,211494,212432,212433,212529,212530,214599,214600,214688,214689,215728,215729,216647,216648,217780,217781,217854,217855,218814,218815,218817,218818,219804,219805,220954,220955,220990,220991,223093,223094,226288,226289,227224,227225,228252,228253,229352,229353,230390,230391,231512,231513,231560,231561,232478,232479,234680,234681,234715,234716,238862,238863,238869,238870,239963,239964,240967,240968,243173,243174,246196,246197,250525,250526,254643,254644,254671,254672,254697,254698,254721,254722,255722,255723,255812,255813,257862,257863,258866,258867,259981,259982,260003,260004,262103,262104,262150,262151,264173,264174,264180,264181,270487,270488,272690,272691,273737,273738,273741,273742,274731,274732,274738,274739,275769,275770,275779,275780,275783,275784,275802,275803,276890,276891,277938,277939,280066,280067,280071,280072,282147,282148,282151,282152,19126,19127,20182,20183,25399,38057,41746,41747,78251,101808,104983,109240,110273,116596,119789,122940,122978,126162,128208,131429,133507,139882,144907,145963,146164,148150,148154,177893,227206,227212,233592,233593,234648,234649,239879,239880,239881,239882,239883,240935,240936,240937,240938,240939,241991,241992,241993,241994,241995,246208,246226,246300,247264,247282,247356,249559,249560,249561,255787,256843,259943,259958,260988,260999,261014,262044,264252,265305,266361,266373,268418,268442,269474,269498,270587,272609,272696,273665,273679,274735,530763,530764,530767,530768,531819,531820,531823,531824,710700,5585,5586,6638,6639,6646,6647,6648,6649,7700,7701,9781,9782,11897,11898,11900,11901,11903,11904,12945,12979,12980,16158,16159,17164,17165,17188,17189,17201,17202,17207,17208,18233,18234,18239,18240,18248,18249,19310,19311,20340,20341,21436,21437,22466,22467,23517,23518,23530,23531,23540,23541,26679,26680,31974,31975,33048,33049,34090,34091,35127,35128,35137,35138,40420,40421,41491,41492,46758,46759,47811,47812,50969,50970,53092,53093,53097,53098,57308,57309,57318,57319,57328,57329,59432,59433,62594,62595,68928,68929,72086,72087,73154,73155,77378,77379,79475,79476,82653,82654,83720,83721,334772,334773,334847,334848,335833,335834,335845,335846,335855,335856,335875,335876,335895,335896,335918,335919,336880,336881,336918,336919,338997,338998,339075,339076,340069,340070,341119,341120,341131,341132,341174,341175,342162,342163,342191,342192,342248,342249,343276,343277,344280,344281,344316,344317,345329,345330,346395,346396,346457,346458,346484,346485,347458,347459,348499,348500,348533,348534,349563,349564,350609,350610,350635,350636,350658,350659,350666,350667,351765,351766,352738,352739,353777,353778,354874,354875,358057,358058,359091,359092,360141,360142,360213,360214,361180,361181,361237,361238,362268,362269,363363,363364,365396,365397,365399,365400,365419,365420,365429,365430,366445,366446,366537,366538,366541,366542,367516,367517,368630,368631,370690,370691,371728,371729,372853,372854,372864,372865,372874,372875,374944,374945,374992,374993,375962,375963,377010,377011,379126,379127,379185,379186,381283,381284,381292,381293,382290,382291,382310,382311,384471,384472,385470,385471,386537,386538,386592,386593,387635,387636,390799,390800,390809,390810,391832,391833,391885,391886,392878,392879,392930,392931,393926,393927,395031,395032,519242,519249,519252,520095,520097,520099,521148,522203,522207,522214,522215,523272,524328,524528,525383,525575,525586,525595,527478,527480,527483,527490,527690,527696,527699,528533,529590,529817,530659,531714,533819,533820,561301,561302,561306,562352,562353,562354,562361,563402,563404,563405,564467,564472,565514,565528,566569,566583,567624,568677,568678,568679,568685,569732,569738,569745,570788,571853,572919,573961,575018,575032,575033,576075,577126,577131,577141,578175,578181,578196,578200,579230,579236,579243,579244,579248,579249,579252,579258,580286,580292,580301,580302,580303,581342,581349,581371,582399,582406,582407,582409,582419,582427,583466,583474,584525,584528,584540,585574,585589,586653,587683,587701,588740,588752,588753,589798,589802,589806,589817,590855,590871,590872,611994,611995,613049,613055,614100,615154,615170,615173,616204,616219,616221,616230,618315,620435,620459,621476,621479,621489,621516,622544,626781,626799,626800,627241,627809,627812,627820,627857,628880,629937,629970,630992,631010,631027,632060,633100,634148,635656,636290,636294,636719,636722,637335,637352,637353,637809,638390,639449,639454,639888,640484,640504,640947,640950,640958,640959,640966,640978,641543,641552,641570,641597,641984,641994,642025,642026,642597,642609,643087,646840,646862,646866,647897,647902,647905,648585,650045,650704,651102,652817,653188,653872,657440,663312,663724,663766,663767,664821,665417,666896,666899,666925,667982,668587,671159,671160,675368,677480,677483,683524,683525,688793,688794,689296,724460,724461,725534,725535,729759,729760,740178,744265,745313,761135,763246,777210,783339,784394,791767,797035,799423,799424,801522,801523,801526,801527,803377,803383,805490,805492,805494,805739,805740,806789,806790,11694,11695,12750,12751,13754,13755,13759,13760,14810,14811,14815,14816,16968,16969,18024,18025,19055,19056,20111,20112,42810,43860,43866,44916,64428,64429,95052,95053,200074,200075,215629,215630,215631,215632,216686,216687,217742,217743,223033,223034,223035,223036,224090,224091,225146,225147,225170,225171,225172,225173,226227,226228,227283,227284,228259,228260,229315,229316,2656,2658,69984,69985,71041,71042,72097,72098,72099,83719,95475,95476,95477,95478,95529,95530,95531,95532,95533,95534,96522,96523,96524,96525,96526,96527,96528,96529,96530,96535,96571,96572,96573,96574,96584,96591,96592,96593,96598,96599,96600,96601,97577,97592,97593,97594,97612,97613,97614,97615,97626,97631,97639,97650,97651,97652,97653,98632,98651,98667,98672,98681,98687,98695,99687,99708,99720,99721,99722,99729,99730,99731,99732,99733,99734,99735,99736,99743,99751,100743,100764,100775,100799,100806,101799,101820,101826,101827,101828,101829,101830,101856,101859,101860,101861,102850,102851,102852,102855,102876,102881,102913,102914,103909,103910,103911,103912,103933,103936,104968,104969,104970,104990,104991,106025,106026,106027,199847,199848,199849,200902,200906,201957,201963,203013,203020,203021,203022,204070,204079,205127,205136,206183,206192,207239,207248,208295,208304,209351,209359,210407,210414,211462,211470,212515,212516,212517,212526,213570,213582,214625,214638,215681,215695,216738,216752,217795,218851,219907,220963,222019,223076,224133,506596,506597,506598,506599,506600,506601,507651,507658,507663,507664,507665,507666,508706,508715,508716,508717,508718,508723,509762,509780,510818,510836,511874,511892,512931,512949,512959,512960,512961,512962,512963,512964,513987,514006,514014,514021,515043,515062,515067,515068,515069,515078,516073,516074,516075,516076,516080,516081,516082,516083,516084,516085,516100,516118,516122,516134,517128,517133,517135,517142,517157,517174,517177,517191,518183,518190,518199,518213,518229,518233,518248,518249,518250,518251,518252,519239,519255,519268,519284,519289,519309,519317,519318,519319,519320,520294,520312,520321,520322,520323,520341,520344,520366,520372,520377,521349,521369,521370,521371,521376,521398,521399,521422,521427,521434,522405,522428,522431,522463,522464,522465,522478,522483,522490,523461,523485,523487,523501,523502,523503,523504,523518,523522,523535,523538,523546,524517,524541,524543,524556,524561,524573,524579,524592,524593,524602,525573,525597,525599,525611,525618,525629,525635,525657,526629,526653,526656,526667,526674,526684,526690,526711,526712,527686,527708,527713,527724,527729,527738,527739,527743,527744,527745,527766,528743,528744,528763,528770,528781,528782,528783,528784,528793,528798,528811,528812,528821,529801,529819,529826,529848,529853,529866,529869,529877,530858,530875,530879,530880,530881,530904,530909,530922,530925,530934,531914,531930,531934,531960,531965,531977,531981,531991,532970,532984,532985,532989,533015,533021,533031,533032,533037,533047,534027,534039,534045,534054,534055,534056,534057,534058,534068,534069,534070,534078,534086,534094,534095,534103,535084,535094,535101,535109,535115,535123,535135,535141,535152,535159,536140,536150,536156,536165,536172,536178,536191,536197,536209,536214,537195,537206,537211,537220,537227,537234,537246,537253,537265,537269,538250,538261,538267,538275,538278,538279,538280,538281,538282,538291,538301,538308,538318,538319,538320,538325,539305,539315,539316,539323,539332,539333,539348,539349,539350,539357,539364,539373,539382,540361,540370,540379,540407,540412,540421,540428,540439,540440,540441,540442,540443,541417,541426,541436,541464,541465,541466,541467,541478,541484,541500,542473,542483,542493,542494,542534,542540,542557,543530,543539,543551,543561,543562,543567,543568,543590,543595,543613,544587,544596,544608,544613,544614,544615,544616,544619,544620,544621,544622,544625,544646,544650,544670,545643,545653,545654,545655,545656,545657,545664,545668,545682,545701,545706,545714,545715,545716,545717,545718,545727,546690,546691,546692,546693,546694,546695,546699,546714,546720,546724,546738,546756,546762,546769,546775,546783,547745,547752,547756,547771,547776,547780,547794,547800,547801,547802,547803,547812,547817,547824,547832,547839,548800,548809,548813,548814,548815,548827,548832,548837,548838,548839,548851,548855,548860,548869,548870,548871,548872,548880,548888,548895,549856,549865,549872,549884,549888,549896,549908,549909,549910,549917,549936,549943,549950,550747,550748,550749,550750,550751,550912,550921,550929,550941,550944,550953,550974,550991,550998,551005,551802,551808,551968,551978,551986,551997,552000,552009,552031,552032,552045,552046,552054,552061,552857,552865,553024,553035,553043,553044,553045,553053,553057,553065,553074,553075,553076,553077,553078,553079,553080,553081,553089,553100,553110,553117,553912,553921,554081,554085,554091,554102,554110,554114,554115,554122,554129,554138,554146,554154,554155,554165,554172,554968,554977,555138,555139,555140,555142,555147,555159,555167,555172,555179,555184,555195,555202,555209,555218,555219,555220,555227,556024,556033,556199,556204,556215,556223,556229,556235,556240,556251,556258,556264,556273,556283,557079,557088,557255,557260,557271,557279,557285,557291,557296,557307,557315,557320,557328,557339,558122,558123,558124,558125,558126,558127,558132,558133,558134,558142,558143,558310,558316,558328,558336,558341,558347,558352,558363,558372,558377,558384,558394,559177,559184,559185,559186,559187,559197,559361,559362,559363,559364,559365,559373,559385,559393,559394,559395,559396,559403,559409,559418,559428,559434,559440,559448,559449,560232,560252,560416,560430,560431,560432,560433,560434,560441,560459,560466,560473,560483,560490,560495,560503,561288,561308,561471,561491,561492,561493,561497,561515,561522,561529,561536,561537,561538,561546,561550,561558,562344,562364,562527,562550,562554,562571,562577,562585,562591,562602,562606,562614,563400,563419,563451,563452,563453,563454,563583,563607,563611,563612,563626,563632,563640,563646,563657,563662,563671,564455,564474,564506,564511,564512,564513,564514,564515,564639,564663,564669,564680,564681,564688,564695,564702,564711,564712,564717,564728,565508,565509,565510,565530,565561,565572,565620,565621,565622,565623,565656,565657,565658,565659,565660,565696,565719,565726,565735,565744,565751,565758,565766,565772,565784,566563,566586,566617,566629,566663,566675,566680,566681,566682,566711,566717,566752,566762,566776,566781,566790,566800,566808,566813,566821,566828,566840,567618,567641,567673,567686,567717,567718,567720,567730,567739,567766,567774,567808,567815,567816,567817,567819,567824,567825,567833,567834,567835,567836,567847,567856,567865,567866,567867,567868,567877,567884,567896,568674,568696,568729,568742,568772,568777,568786,568796,568822,568830,568865,568870,568876,568877,568878,568879,568882,568904,568911,568934,568939,568951,569730,569752,569785,569798,569827,569834,569835,569836,569837,569838,569841,569852,569878,569886,569922,569923,569924,569925,569939,569960,569966,569991,569992,569993,569994,570006,570786,570809,570842,570855,570883,570895,570896,570908,570935,570941,570995,571016,571022,571062,571842,571866,571899,571900,571912,571939,571964,571991,571997,572041,572042,572043,572044,572045,572046,572051,572072,572078,572118,572898,572923,572957,572968,572995,573020,573046,573053,573093,573094,573095,573096,573103,573108,573127,573134,573141,573142,573143,573154,573174,573953,573979,574014,574024,574050,574076,574102,574109,574148,574160,574165,574166,574175,574176,574183,574190,574196,574200,574209,574211,574223,574230,575006,575007,575008,575035,575070,575080,575105,575132,575158,575165,575203,575216,575223,575230,575233,575240,575245,575252,575257,575264,575268,575278,575280,575285,575674,575675,575676,575677,575678,575679,576061,576091,576123,576124,576125,576135,576161,576170,576171,576179,576180,576181,576182,576187,576214,576220,576258,576273,576280,576285,576290,576297,576298,576299,576300,576309,576312,576320,576324,576333,576336,576341,576729,576736,577116,577148,577178,577191,577217,577225,577228,577229,577230,577234,577239,577240,577241,577242,577269,577276,577281,577314,577330,577336,577341,577346,577366,577367,577376,577380,577387,577388,577391,577398,577784,577793,578172,578205,578206,578207,578233,578247,578273,578280,578287,578288,578289,578324,578333,578336,578338,578370,578386,578391,578397,578402,578431,578437,578442,578446,578455,578840,578849,578860,578861,579228,579264,579289,579302,579329,579336,579380,579390,579391,579395,579426,579442,579446,579453,579459,579486,579494,579495,579496,579497,579502,579511,579895,579905,579915,579918,579919,579920,579921,579922,580284,580321,580345,580356,580357,580386,580391,580436,580451,580483,580498,580502,580509,580516,580542,580558,580567,580950,580962,580970,580979,581340,581377,581401,581411,581443,581444,581445,581446,581492,581507,581540,581541,581542,581553,581558,581565,581572,581598,581614,581623,582006,582019,582026,582036,582396,582433,582457,582466,582548,582563,582599,582608,582614,582622,582627,582653,582669,582679,583062,583075,583082,583092,583453,583489,583513,583522,583605,583620,583656,583664,583670,583679,583680,583681,583682,583694,583695,583705,583706,583707,583708,583722,583723,583724,583735,584118,584131,584138,584148,584510,584511,584545,584570,584579,584662,584677,584712,584721,584726,584749,584752,584753,584754,584755,584760,584777,584792,585175,585187,585193,585204,585568,585601,585627,585628,585629,585636,585719,585720,585721,585722,585733,585767,585778,585783,585804,585812,585813,585814,585815,585833,585849,585850,585851,586232,586242,586248,586261,586625,586657,586686,586692,586779,586780,586781,586782,586783,586789,586822,586834,586840,586841,586860,586876,586877,586878,586879,586889,586908,587288,587297,587304,587318,587681,587712,587741,587748,587839,587845,587878,587890,587898,587916,587931,587936,587945,587965,588344,588353,588360,588374,588737,588765,588766,588767,588796,588804,588896,588900,588934,588946,588955,588971,588986,588993,588994,588995,589000,589021,589401,589410,589415,589430,589794,589820,589852,589861,589953,589954,589955,589990,590001,590011,590026,590042,590052,590053,590054,590055,590077,590458,590467,590468,590469,590470,590486,590851,590852,590867,590868,590875,590908,590918,590919,590920,591047,591056,591066,591082,591089,591090,591091,591092,591093,591094,591097,591133,591514,591540,591541,591909,591913,591914,591922,591925,591930,591964,591977,592104,592105,592112,592119,592120,592121,592132,592139,592142,592143,592144,592151,592152,592189,592570,592595,592966,592967,592968,592971,592976,592977,592982,592983,592984,592985,593019,593034,593162,593169,593174,593187,593189,593196,593197,593244,593614,593615,593616,593617,593627,593648,593649,593650,594028,594029,594030,594031,594074,594090,594219,594226,594227,594228,594229,594241,594242,594246,594286,594299,594603,594604,594605,594606,594669,594674,594684,594703,595130,595146,595275,595296,595302,595341,595343,595354,595646,595647,595648,595649,595654,595655,595656,595657,595658,595663,595724,595731,595740,595757,595758,596186,596202,596331,596351,596357,596380,596396,596400,596401,596402,596411,596701,596706,596707,596708,596709,596720,596775,596776,596777,596778,596779,596787,596796,596812,596826,596827,596828,596829,597242,597252,597258,597387,597407,597412,597435,597437,597438,597439,597440,597441,597452,597459,597468,597756,597777,597778,597779,597830,597843,597853,597867,597877,597878,597879,597880,597881,597886,598298,598307,598309,598313,598442,598463,598468,598487,598488,598489,598490,598498,598508,598516,598525,598809,598810,598811,598836,598885,598899,598909,598922,598932,598943,599355,599362,599366,599367,599368,599495,599496,599497,599518,599524,599542,599555,599563,599571,599581,599864,599893,599941,599955,599965,599978,599987,600000,600412,600413,600414,600415,600416,600417,600550,600573,600580,600597,600611,600618,600624,600625,600626,600637,600919,600950,600997,601011,601022,601034,601043,601057,601605,601629,601636,601654,601668,601674,601679,601693,601974,602006,602053,602066,602079,602090,602099,602113,602661,602685,602692,602711,602725,602731,602734,602749,603030,603062,603110,603121,603135,603146,603155,603169,603717,603740,603748,603767,603781,603788,603789,603805,604086,604118,604167,604177,604191,604201,604212,604225,604773,604794,604795,604805,604823,604837,604860,605141,605175,605223,605234,605247,605256,605269,605280,605830,605849,605862,605879,605893,605915,606196,606220,606232,606279,606291,606292,606293,606302,606312,606325,606334,606335,606887,606902,606903,606904,606918,606929,606930,606934,606949,606970,607252,607263,607264,607275,607277,607288,607335,607350,607357,607368,607380,607389,607944,607945,607952,607953,607954,607955,607956,607957,607973,607984,607987,607988,607989,608006,608017,608023,608024,608025,608308,608319,608320,608328,608329,608330,608334,608344,608392,608406,608413,608424,608431,608432,608433,608434,608435,608444,608825,608826,608827,608828,609002,609007,609028,609039,609063,609064,609065,609072,609074,609078,609357,609364,609375,609376,609383,609390,609400,609449,609450,609451,609462,609469,609481,609486,609500,609880,609885,609886,609887,609888,610059,610060,610061,610062,610084,610095,610122,610123,610124,610125,610126,610127,610131,610132,610133,610412,610414,610415,610416,610417,610421,610430,610432,610439,610446,610456,610508,610518,610525,610538,610539,610540,610541,610556,610931,610932,610933,610934,610935,610945,611140,611151,611467,611474,611475,611476,611478,611479,611480,611481,611482,611483,611484,611485,611487,611496,611502,611511,611565,611575,611581,611612,611984,611985,611986,612002,612003,612004,612005,612006,612196,612206,612523,612533,612534,612535,612536,612537,612542,612552,612558,612566,612621,612632,612637,612668,613035,613036,613037,613038,613039,613063,613252,613259,613260,613261,613579,613594,613595,613596,613597,613608,613614,613622,613670,613671,613672,613673,613674,613675,613676,613688,613694,613723,614090,614120,614309,614314,614634,614664,614671,614679,614725,614744,614751,614777,614778,615145,615176,615366,615367,615368,615369,615690,615720,615727,615735,615780,615800,615807,615832,616201,616233,616746,616775,616783,616791,616835,616857,616860,616861,616862,616886,616887,617256,617272,617273,617279,617290,617291,617292,617802,617829,617830,617838,617847,617891,617914,617915,617941,618307,618308,618309,618310,618311,618327,618330,618331,618332,618333,618334,618336,618349,618859,618884,618893,618903,618947,618988,618989,618995,618996,619362,619382,619393,619394,619406,619915,619939,619949,619958,620003,620043,620046,620050,620417,620438,620451,620462,620972,620992,620993,620994,621005,621013,621052,621059,621068,621069,621098,621103,621104,621105,621473,621493,621508,621509,621518,622029,622030,622038,622039,622045,622046,622047,622061,622069,622106,622107,622109,622115,622123,622126,622152,622153,622180,622181,622182,622183,622184,622185,622529,622547,622548,622554,622556,622557,622566,622575,623087,623091,623092,623093,623096,623100,623117,623125,623161,623166,623171,623179,623183,623207,623234,623235,623242,623287,623300,623584,623602,623609,623614,623623,623624,623632,623633,624144,624145,624146,624153,624154,624155,624173,624181,624216,624223,624228,624235,624239,624259,624260,624261,624262,624289,624299,624342,624344,624355,624357,624639,624657,624664,624671,624681,624690,625228,625238,625272,625280,625285,625286,625290,625294,625304,625305,625314,625344,625356,625695,625713,625720,625727,625738,625747,626283,626295,626328,626336,626343,626344,626345,626347,626348,626349,626359,626362,626369,626390,626391,626400,626412,626751,626770,626776,626784,626794,626803,627336,627337,627338,627351,627384,627393,627402,627414,627419,627425,627441,627442,627443,627444,627445,627448,627456,627468,627806,627815,627816,627817,627827,627832,627841,627842,627843,627849,627860,628391,628407,628440,628450,628451,628452,628457,628469,628476,628481,628496,628505,628512,628523,628861,628870,628874,628883,628888,628900,628904,628917,629444,629445,629446,629463,629496,629509,629512,629525,629532,629537,629551,629562,629569,629579,629917,629925,629931,629939,629945,629957,629960,629973,630499,630520,630553,630566,630567,630580,630585,630586,630587,630594,630607,630618,630626,630635,630973,630981,630986,630995,631002,631013,631016,631029,631554,631577,631610,631611,631635,631640,631651,631662,631674,631681,631690,632029,632038,632039,632040,632041,632050,632058,632069,632071,632086,632610,632633,632668,632689,632690,632695,632707,632717,632730,632736,632746,633085,633105,633113,633126,633143,633144,633145,633146,633147,633666,633689,633725,633744,633750,633763,633770,633771,633772,633786,633792,633802,634141,634161,634166,634167,634168,634204,634722,634745,634781,634799,634803,634804,634805,634820,634825,634842,634847,634858,635198,635218,635221,635261,635778,635801,635837,635855,635858,635877,635878,635879,635880,635898,635902,635914,636255,636256,636275,636276,636305,636306,636317,636835,636856,636894,636910,636913,636924,636953,636958,636969,637313,637356,637357,637358,637359,637360,637363,637373,637660,637892,637911,637951,637952,637965,637969,637979,637981,638007,638008,638014,638023,638024,638370,638379,638380,638406,638411,638420,638430,638715,638717,638718,638948,638964,638965,638966,639009,639020,639025,639034,639038,639062,639069,639078,639426,639434,639437,639461,639463,639464,639465,639466,639476,639487,639770,639775,640004,640019,640066,640071,640072,640073,640074,640075,640081,640090,640094,640118,640124,640133,640482,640489,640494,640507,640508,640517,640532,640543,640825,640832,641032,641033,641034,641035,641036,641037,641061,641073,641074,641123,641124,641125,641126,641137,641145,641150,641174,641180,641189,641538,641545,641550,641562,641565,641566,641567,641573,641589,641599,641881,641888,642087,642094,642118,642119,642120,642121,642122,642123,642128,642193,642200,642207,642223,642229,642236,642245,642594,642601,642606,642617,642624,642628,642646,642647,642655,642937,642944,643140,643141,643142,643151,643180,643181,643182,643183,643248,643256,643264,643265,643266,643267,643268,643278,643280,643284,643292,643300,643651,643656,643663,643673,643681,643682,643683,643693,643694,643695,643696,643697,643698,643699,643704,643710,643993,644000,644191,644192,644193,644194,644195,644208,644303,644312,644325,644333,644337,644338,644339,644347,644355,644708,644709,644710,644711,644720,644721,644730,644733,644734,644735,644736,644737,644738,644748,644756,644761,644766,645049,645056,645246,645264,645359,645368,645382,645388,645398,645399,645400,645401,645402,645411,645416,645417,645418,645419,645420,645421,645778,645787,645788,645795,645803,645813,645817,645822,646106,646111,646301,646320,646415,646425,646438,646444,646453,646467,646471,646478,646835,646852,646859,646869,646872,646878,647163,647164,647165,647166,647357,647376,647471,647482,647494,647501,647508,647522,647526,647535,647536,647537,647891,647908,647915,647926,647927,647935,648412,648431,648527,648538,648549,648558,648564,648576,648577,648581,648594,648944,648945,648946,648964,648971,648992,649467,649487,649583,649594,649604,649615,649620,649631,649636,649651,649999,650021,650027,650048,650522,650543,650639,650650,650659,650672,650673,650674,650675,650686,650692,650707,651054,651078,651083,651104,651577,651590,651591,651598,651696,651707,651714,651742,651748,651763,652110,652124,652134,652140,652160,652632,652645,652648,652649,652650,652651,652652,652653,652753,652764,652769,652797,652803,652819,653165,653179,653181,653190,653197,653206,653207,653216,653688,653700,653810,653811,653820,653825,653853,653856,653857,653858,653867,653875,654220,654235,654237,654246,654253,654260,654261,654264,654265,654273,654744,654756,654787,654788,654789,654790,654868,654876,654881,654910,654911,654922,654924,654930,655275,655290,655294,655301,655308,655315,655322,655330,655800,655813,655842,655847,655848,655849,655850,655851,655925,655932,655937,655977,655981,655982,655983,655984,655985,656122,656123,656124,656125,656331,656338,656339,656346,656351,656356,656363,656370,656379,656386,656856,656870,656897,656908,656981,656988,656993,657000,657001,657002,657003,657033,657177,657182,657386,657393,657396,657402,657407,657412,657419,657426,657435,657442,657913,657926,657952,657964,658036,658044,658049,658055,658060,658069,658089,658232,658239,658441,658448,658452,658459,658462,658469,658474,658482,658491,658498,658970,658982,659008,659020,659085,659086,659087,659088,659091,659100,659105,659110,659117,659124,659126,659144,659206,659207,659208,659209,659210,659211,659278,659279,659280,659281,659288,659295,659497,659503,659508,659516,659517,659526,659527,659528,659529,659537,659547,659553,660026,660038,660064,660076,660098,660099,660100,660101,660138,660139,660140,660145,660146,660155,660161,660166,660173,660179,660183,660200,660259,660260,660261,660268,660333,660338,660339,660340,660343,660351,660553,660560,660563,660592,660597,660598,660599,660600,660603,660609,660771,661081,661093,661120,661132,661151,661152,661153,661158,661193,661210,661216,661223,661229,661235,661240,661241,661242,661243,661257,661314,661325,661388,661397,661398,661407,661609,661617,661618,661648,661652,661657,661660,661666,661826,661828,661829,662137,662148,662177,662187,662206,662215,662216,662217,662218,662219,662248,662265,662271,662280,662285,662291,662300,662313,662369,662381,662444,662464,662665,662704,662707,662713,662717,662723,662881,662886,663193,663204,663234,663242,663261,663276,663303,663321,663327,663336,663341,663348,663357,663369,663425,663437,663500,663521,663522,663523,663524,663525,663721,663736,663759,663763,663769,663773,663779,663936,663943,664249,664261,664290,664298,664317,664333,664359,664377,664383,664392,664398,664405,664414,664415,664426,664480,664493,664547,664548,664549,664550,664555,664582,664583,664584,664778,664791,664793,664815,664818,664825,664828,664835,664992,665000,665304,665318,665345,665354,665372,665390,665415,665432,665439,665448,665455,665461,665472,665483,665535,665549,665602,665607,665608,665609,665610,665641,665835,665836,665846,665850,665851,665852,665859,665860,665872,665873,665882,665883,665891,666039,666040,666041,666042,666043,666044,666047,666056,666359,666374,666400,666411,666416,666417,666418,666419,666427,666446,666471,666486,666487,666495,666504,666511,666517,666529,666539,666591,666606,666657,666681,666682,666698,666893,666902,666909,666914,666917,666947,667094,667101,667102,667112,667415,667430,667455,667468,667469,667470,667471,667476,667483,667502,667527,667540,667541,667551,667559,667566,667573,667585,667595,667647,667663,667713,667731,667736,667739,667754,667950,667957,667966,667967,667968,667969,667974,667975,667976,668003,668150,668168,668471,668486,668511,668533,668538,668558,668584,668595,668606,668614,668621,668630,668640,668651,668703,668719,668769,668786,668788,668789,668790,668791,668796,668810,669007,669008,669009,669010,669011,669012,669033,669058,669205,669224,669527,669542,669567,669589,669593,669614,669641,669650,669661,669670,669677,669687,669695,669707,669759,669775,669825,669842,669852,669859,669860,669866,670090,670111,670112,670113,670260,670280,670583,670592,670593,670597,670623,670645,670649,670670,670698,670699,670700,670701,670702,670703,670704,670705,670714,670715,670716,670726,670733,670743,670750,670762,670815,670831,670880,670899,670900,670901,670902,670903,670908,670914,670917,670923,671146,671156,671166,671315,671336,671640,671647,671650,671651,671652,671680,671702,671705,671725,671769,671781,671789,671799,671806,671817,671871,671886,671935,671945,671946,671960,671964,671969,671974,671980,672199,672200,672201,672211,672213,672218,672219,672220,672221,672371,672391,672697,672698,672699,672700,672701,672702,672737,672759,672760,672770,672780,672824,672836,672845,672855,672862,672873,672928,672942,672991,673000,673003,673004,673017,673020,673026,673030,673037,673043,673044,673045,673046,673047,673048,673254,673264,673265,673266,673270,673271,673272,673273,673427,673434,673446,673794,673802,673803,673825,673827,673835,673880,673892,673901,673911,673918,673929,673985,673986,673999,674017,674018,674019,674020,674047,674055,674061,674074,674076,674083,674086,674093,674098,674105,674106,674107,674108,674309,674319,674483,674489,674491,674502,674849,674857,674860,674881,674884,674885,674886,674887,674888,674889,674890,674936,674948,674957,674967,674974,674984,675043,675056,675072,675077,675103,675111,675118,675130,675132,675139,675142,675149,675153,675165,675365,675374,675532,675533,675534,675535,675538,675544,675548,675558,675904,675912,675917,675937,675992,676004,676014,676023,676031,676039,676099,676112,676127,676134,676159,676167,676174,676186,676189,676195,676199,676205,676209,676222,676421,676430,676587,676592,676593,676599,676604,676613,676960,676968,676973,676992,677048,677059,677071,677078,677088,677095,677156,677168,677177,677183,677190,677216,677222,677230,677237,677242,677246,677251,677256,677262,677265,677278,677477,677486,677642,677655,677659,677668,678016,678023,678030,678047,678104,678114,678128,678129,678130,678131,678132,678133,678144,678151,678213,678224,678232,678234,678235,678238,678246,678273,678274,678275,678276,678277,678285,678292,678294,678298,678302,678307,678312,678319,678320,678334,678534,678541,678698,678711,678714,678725,679072,679079,679087,679088,679103,679161,679170,679201,679206,679269,679279,679287,679292,679293,679302,679338,679339,679340,679347,679350,679354,679358,679363,679368,679383,679390,679591,679592,679593,679594,679595,679596,679754,679767,679770,679782,680129,680135,680145,680158,680218,680225,680258,680259,680260,680261,680325,680335,680342,680359,680393,680403,680405,680411,680414,680419,680424,680438,680440,680445,680810,680823,680826,680838,681186,681187,681188,681189,681190,681202,681213,681275,681276,681277,681278,681279,681280,681380,681392,681395,681396,681397,681415,681448,681458,681461,681467,681470,681476,681479,681494,681497,681501,681866,681878,681882,681894,682259,682260,682261,682269,682435,682449,682450,682471,682504,682513,682517,682523,682526,682533,682534,682550,682553,682558,682922,682934,682939,682950,683318,683326,683491,683527,683560,683569,683573,683579,683582,683605,683609,683615,683979,683983,683990,683996,683997,683998,684006,684375,684383,684546,684583,684616,684625,684629,684635,684638,684653,684654,684661,684665,684671,685036,685037,685038,685040,685045,685055,685062,685431,685439,685601,685638,685671,685680,685685,685691,685693,685708,685711,685718,685721,685727,686097,686098,686099,686100,686112,686117,686125,686126,686127,686128,686129,686487,686495,686657,686687,686688,686693,686726,686734,686735,686742,686748,686763,686768,686775,686776,686783,687168,687173,687180,687186,687543,687551,687713,687742,687745,687746,687747,687748,687782,687789,687799,687818,687824,687838,688223,688230,688235,688243,688600,688606,688769,688798,688838,688845,688855,688869,688870,688871,688872,688873,688880,688894,689278,689287,689291,689299,689657,689658,689659,689660,689661,689825,689836,689837,689846,689854,689894,689902,689911,689924,689936,689950,690323,690334,690343,690346,690355,690881,690891,690894,690901,690903,690904,690905,690909,690950,690959,690960,690961,690968,690979,690991,691005,691377,691378,691380,691381,691389,691399,691401,691411,691937,691947,691951,691952,691953,691954,691955,691956,691962,691963,691964,692007,692018,692019,692020,692021,692022,692025,692032,692033,692034,692044,692045,692046,692054,692055,692060,692432,692438,692444,692455,692457,692467,692994,693004,693064,693079,693082,693083,693084,693085,693086,693087,693097,693098,693099,693109,693112,693116,693487,693495,693500,693511,693513,693522,694051,694061,694121,694136,694152,694164,694168,694173,694543,694552,694556,694566,694569,694576,694577,695107,695117,695178,695179,695193,695194,695195,695196,695197,695198,695199,695200,695201,695208,695220,695224,695230,695231,695232,695599,695608,695612,695621,695625,695631,696163,696173,696236,696258,696259,696264,696276,696280,696289,696415,696655,696664,696669,696676,696681,696686,697218,697229,697293,697316,697319,697332,697336,697346,697470,697472,697712,697720,697726,697732,697737,697742,698273,698284,698349,698373,698374,698388,698391,698403,698438,698474,698525,698529,698769,698776,698782,698789,698792,698799,698802,698803,698804,698805,699329,699340,699406,699413,699445,699446,699459,699492,699493,699495,699496,699529,699531,699532,699580,699586,699774,699775,699776,699777,699825,699831,699838,699846,699847,699856,699857,699862,700385,700397,700398,700399,700463,700464,700468,700470,700515,700547,700553,700584,700589,700635,700642,700827,700828,700829,700834,700881,700886,700893,700919,701441,701456,701521,701522,701523,701527,701528,701529,701571,701602,701609,701640,701645,701685,701686,701687,701688,701689,701690,701698,701836,701837,701838,701839,701882,701891,701937,701943,701946,701947,701948,701975,702497,702513,702586,702587,702588,702589,702590,702606,702607,702627,702658,702665,702696,702701,702740,702754,702891,702896,702897,702926,702927,702928,702929,702937,702948,702993,703000,703001,703031,703554,703569,703647,703648,703649,703650,703651,703660,703661,703664,703682,703704,703705,703706,703707,703714,703721,703752,703757,703795,703809,703946,703954,703981,703986,703987,703988,703993,704005,704049,704087,704611,704625,704708,704713,704714,704715,704721,704725,704726,704733,704734,704735,704736,704737,704759,704764,704765,704766,704767,704768,704769,704777,704808,704814,704815,704816,704817,704850,704864,705002,705011,705027,705028,705029,705030,705031,705036,705045,705049,705061,705105,705130,705131,705142,705668,705669,705670,705681,705765,705766,705767,705768,705778,705779,705780,705783,705788,705815,705833,705864,705874,705905,705921,706049,706050,706051,706052,706057,706067,706072,706073,706074,706075,706082,706088,706092,706102,706105,706117,706161,706178,706185,706188,706196,706197,706727,706738,706840,706841,706842,706843,706871,706889,706919,706931,706961,706978,707104,707109,707110,707111,707112,707123,707127,707132,707137,707145,707148,707158,707162,707173,707217,707233,707235,707236,707237,707238,707239,707240,707245,707251,707784,707795,707927,707945,707974,707988,708017,708024,708025,708026,708034,708159,708179,708182,708189,708193,708201,708204,708214,708219,708228,708273,708280,708281,708288,708301,708306,708840,708852,708983,709000,709029,709044,709073,709079,709083,709090,709215,709234,709238,709245,709249,709257,709260,709270,709275,709285,709329,709335,709338,709339,709340,709341,709342,709343,709357,709362,709731,709732,709734,709890,709891,709892,709893,709895,709908,710039,710054,710055,710085,710092,710100,710129,710134,710140,710146,710271,710289,710293,710301,710306,710313,710316,710326,710331,710342,710343,710344,710385,710390,710412,710419,710786,710791,710945,710950,710964,711096,711100,711101,711102,711103,711104,711105,711106,711107,711108,711109,711141,711147,711149,711156,711185,711190,711196,711202,711327,711345,711348,711357,711362,711368,711373,711382,711387,711401,711408,711409,711410,711411,711412,711413,711441,711446,711463,711464,711465,711466,711467,711476,711477,711478,711841,711848,712000,712020,712153,712154,712155,712197,712202,712206,712207,712208,712209,712210,712211,712241,712247,712248,712249,712252,712258,712383,712401,712404,712413,712417,712424,712430,712437,712443,712458,712463,712470,712497,712503,712508,712509,712510,712511,712512,712513,712516,712517,712518,712535,712897,712905,713056,713075,713252,713258,713297,713306,713307,713315,713439,713446,713447,713456,713460,713469,713472,713480,713486,713493,713500,713514,713518,713527,713552,713560,713561,713562,713563,713570,713571,713592,713953,713962,714112,714128,714129,714130,714307,714314,714353,714372,714496,714501,714504,714511,714516,714524,714528,714536,714541,714549,714557,714571,714574,714583,714607,714648,715009,715018,715168,715183,715363,715370,715409,715429,715553,715554,715555,715556,715561,715567,715573,715579,715584,715592,715596,715605,715612,715628,715629,715640,715663,715704,716066,716074,716224,716238,716419,716426,716466,716486,716617,716623,716629,716636,716639,716647,716652,716661,716665,716666,716667,716697,716719,716760,717123,717130,717280,717294,717475,717481,717523,717542,717672,717679,717685,717693,717694,717702,717708,717716,717720,717753,717775,717809,717815,718179,718186,718337,718345,718346,718350,718531,718536,718579,718589,718590,718591,718592,718598,718727,718736,718741,718758,718763,718771,718775,718809,718831,718858,718859,718864,718866,718867,718868,718869,718870,718902,718903,718904,718905,718906,718907,719235,719243,719394,719395,719396,719400,719403,719404,719405,719587,719592,719635,719641,719642,719643,719644,719649,719654,719783,719793,719794,719795,719796,719815,719816,719817,719818,719827,719831,719846,719865,719888,719900,719901,719913,719916,719917,719918,719919,719957,719964,720291,720300,720453,720454,720455,720643,720649,720690,720696,720705,720710,720839,720882,720887,720901,720903,720920,720945,720946,720947,720955,720958,720968,721012,721021,721346,721356,721698,721706,721745,721753,721760,721766,721895,721938,721943,721955,721956,721960,721975,722004,722010,722015,722016,722017,722024,722068,722077,722083,722084,722085,722086,722087,722088,722089,722090,722402,722412,722753,722762,722801,722810,722811,722812,722813,722814,722815,722822,722951,722994,722998,723010,723017,723018,723022,723029,723030,723061,723066,723074,723081,723124,723133,723138,723147,723179,723458,723468,723809,723818,723857,723878,724007,724025,724026,724050,724053,724065,724075,724076,724077,724079,724084,724117,724123,724131,724138,724179,724189,724193,724204,724232,724233,724234,724236,724237,724238,724239,724514,724524,724865,724874,724913,724934,725064,725080,725083,725106,725109,725122,725136,725137,725138,725139,725173,725180,725181,725182,725183,725186,725194,725234,725244,725249,725261,725285,725286,725287,725296,725297,725298,725570,725580,725921,725930,725970,725989,726121,726122,726123,726134,726135,726140,726151,726152,726161,726165,726179,726229,726240,726241,726250,726290,726298,726299,726302,726303,726304,726318,726340,726355,726627,726635,726978,726985,727027,727028,727043,727044,727180,727187,727188,727189,727196,727206,727209,727217,727221,727235,727285,727306,727346,727353,727357,727374,727395,727412,727684,727685,727686,727687,727688,727689,727690,728035,728036,728037,728038,728039,728040,728085,728094,728095,728096,728097,728098,728237,728242,728252,728259,728260,728261,728266,728273,728278,728291,728342,728362,728402,728408,728412,728430,728451,728468,729142,729149,729293,729298,729309,729314,729322,729329,729335,729347,729399,729400,729417,729458,729464,729468,729486,729507,729524,730199,730200,730201,730202,730203,730204,730348,730354,730366,730367,730368,730369,730378,730385,730391,730402,730457,730473,730514,730521,730524,730542,730563,730580,731403,731410,731435,731440,731447,731456,731457,731514,731515,731516,731517,731529,731570,731578,731579,731597,731619,731637,732459,732466,732492,732493,732494,732495,732502,732511,732521,732522,732523,732524,732525,732526,732574,732579,732580,732584,732626,732653,732676,732694,733515,733522,733558,733567,733576,733583,733584,733631,733632,733633,733634,733637,733638,733639,733683,733710,733733,733734,733735,733750,734571,734578,734614,734623,734631,734641,734740,734767,734792,734806,734811,734812,734813,734814,735143,735144,735145,735146,735147,735627,735634,735649,735650,735651,735652,735670,735679,735687,735698,735796,735823,735849,735863,735866,735871,735872,735873,735874,735875,735876,735877,735878,736189,736190,736191,736192,736197,736198,736204,736205,736206,736207,736208,736684,736689,736692,736693,736694,736695,736702,736703,736704,736709,736710,736711,736714,736715,736716,736717,736726,736735,736742,736755,736851,736862,736863,736879,736905,736920,736921,736935,737244,737249,737250,737251,737252,737265,737276,737277,737278,737279,737741,737742,737743,737744,737747,737752,737757,737768,737769,737774,737781,737790,737795,737796,737797,737811,737904,737905,737906,737917,737920,737935,737962,737992,738299,738322,738325,738326,738327,738328,738331,738336,738342,738343,738344,738345,738346,738800,738801,738802,738809,738810,738811,738812,738831,738836,738845,738850,738867,738959,738972,738976,738990,739019,739020,739048,739354,739379,739380,739385,739386,739393,739397,739403,739404,739855,739888,739889,739890,739892,739901,739905,739923,740014,740028,740031,740046,740077,740105,740410,740449,740452,740461,740910,740947,740956,740961,740979,741070,741084,741086,741102,741134,741162,741466,741505,741508,741518,741966,742013,742016,742035,742125,742126,742139,742142,742158,742190,742218,742523,742561,742564,742574,743021,743070,743071,743090,743179,743180,743192,743193,743194,743198,743214,743247,743274,743580,743581,743588,743589,743593,743594,743616,743620,743630,744074,744075,744076,744143,744144,744145,744234,744247,744254,744269,744304,744330,744638,744643,744646,744647,744648,744651,744672,744676,744685,744737,744738,744739,744740,744928,744929,744930,744931,744942,744943,744944,744945,745116,745117,745118,745119,745127,745128,745129,745193,745194,745198,745283,745290,745302,745310,745318,745319,745324,745360,745375,745376,745385,745695,745696,745697,745698,745708,745717,745718,745728,745731,745740,745792,745797,745983,745988,745997,746002,746169,746170,746171,746176,746182,746207,746214,746248,746251,746252,746253,746338,746340,746341,746342,746346,746358,746367,746373,746376,746377,746378,746379,746415,746425,746426,746430,746433,746440,746765,746772,746775,746776,746777,746778,746783,746784,746785,746786,746796,746847,746853,746868,746869,746870,746871,747038,747045,747052,747059,747085,747086,747087,747088,747089,747090,747091,747222,747223,747224,747232,747237,747262,747264,747269,747271,747304,747393,747399,747402,747414,747424,747425,747426,747427,747428,747470,747480,747483,747484,747485,747490,747496,747821,747827,747835,747836,747837,747838,747839,747852,747903,747909,747913,747914,747915,747916,747917,747918,747919,747920,747923,747928,748094,748101,748108,748115,748136,748137,748138,748139,748140,748148,748149,748150,748277,748288,748293,748318,748321,748322,748323,748324,748328,748359,748446,748447,748448,748456,748458,748469,748475,748476,748477,748478,748526,748535,748546,748552,748877,748884,748892,748893,748894,748907,748950,748951,748952,748953,748954,748955,748958,748966,748968,748977,748978,748985,749121,749122,749123,749124,749125,749150,749157,749164,749171,749191,749207,749332,749345,749348,749374,749384,749414,749501,749512,749515,749523,749524,749528,749529,749530,749535,749536,749537,749539,749582,749591,749603,749607,749933,749941,749942,749943,749947,749961,749962,749967,749968,749969,749970,749971,749972,749973,750005,750012,750013,750023,750041,750176,750182,750206,750213,750220,750227,750247,750263,750388,750402,750403,750429,750440,750448,750467,750468,750469,750519,750520,750521,750522,750523,750524,750525,750557,750568,750572,750578,750583,750594,750596,750638,750648,750660,750661,750662,750989,751000,751002,751016,751022,751030,751060,751097,751231,751239,751254,751263,751268,751277,751282,751303,751319,751444,751475,751484,751497,751503,751505,751516,751517,751522,751574,751582,751613,751624,751629,751630,751631,751632,751633,751638,751653,751694,751705,751706,751707,751710,751711,751712,751713,751714,751715,752046,752056,752058,752069,752070,752071,752077,752087,752116,752154,752287,752295,752308,752309,752311,752312,752319,752325,752332,752338,752359,752375,752500,752524,752525,752530,752532,752541,752554,752555,752556,752557,752558,752562,752571,752574,752575,752576,752577,752630,752638,752669,752679,752694,752710,752750,752764,752765,752772,753103,753112,753114,753124,753133,753143,753172,753211,753343,753351,753363,753369,753375,753382,753383,753384,753385,753386,753387,753394,753415,753431,753556,753579,753582,753583,753584,753585,753589,753598,753599,753600,753618,753626,753638,753639,753640,753641,753642,753686,753694,753724,753733,753734,753750,753766,753806,753829,754160,754168,754171,754179,754189,754199,754227,754253,754254,754267,754274,754275,754276,754277,754399,754407,754419,754426,754431,754450,754471,754487,754612,754620,754621,754633,754634,754645,754657,754673,754682,754693,754699,754742,754750,754779,754788,754805,754823,754863,754885,755216,755224,755227,755235,755245,755255,755282,755307,755308,755311,755324,755329,755334,755455,755463,755475,755482,755487,755506,755527,755543,755669,755675,755678,755679,755680,755681,755682,755688,755701,755714,755728,755738,755744,755745,755746,755747,755748,755756,755797,755807,755835,755844,755851,755852,755853,755854,755860,755880,755920,755941,756271,756280,756282,756291,756302,756310,756338,756349,756362,756368,756369,756370,756381,756382,756383,756384,756391,756511,756520,756531,756538,756543,756562,756583,756599,756726,756727,756728,756729,756730,756739,756740,756741,756742,756743,756758,756770,756784,756794,756799,756813,756852,756864,756891,756901,756906,756911,756916,756937,756976,756997,757322,757323,757324,757325,757326,757336,757337,757346,757358,757365,757394,757404,757406,757407,757408,757409,757417,757419,757420,757421,757422,757427,757447,757568,757577,757587,757594,757599,757618,757639,757655,757815,757826,757840,757849,757855,757869,757908,757920,757947,757958,757959,757960,757961,757968,757972,757993,758032,758040,758041,758053,758377,758391,758393,758401,758413,758421,758450,758458,758459,758466,758474,758479,758484,758485,758486,758503,758625,758634,758643,758651,758654,758673,758696,758710,758871,758882,758896,758905,758911,758925,758964,758976,759003,759025,759028,759049,759087,759095,759098,759103,759104,759108,759432,759446,759449,759458,759466,759467,759468,759477,759507,759513,759523,759536,759543,759558,759682,759690,759699,759708,759709,759718,759719,759720,759721,759722,759723,759724,759725,759726,759727,759728,759753,759765,759927,759938,759952,759962,759967,759981,760020,760032,760060,760081,760084,760106,760142,760150,760155,760156,760157,760158,760161,760162,760163,760488,760502,760505,760515,760521,760532,760563,760568,760578,760592,760599,760615,760738,760746,760755,760773,760810,760820,760984,760993,761009,761019,761023,761037,761076,761088,761117,761118,761119,761137,761140,761163,761198,761206,761544,761558,761560,761571,761576,761587,761618,761625,761626,761627,761633,761648,761654,761672,761794,761803,761810,761828,761834,761835,761836,761837,761838,761839,761867,761875,762041,762042,762043,762044,762045,762046,762047,762048,762066,762075,762079,762086,762087,762092,762132,762144,762176,762193,762196,762220,762254,762263,762599,762613,762614,762615,762627,762632,762643,762673,762684,762689,762704,762709,762728,762850,762860,762861,762862,762863,762864,762865,762884,762889,762896,762923,762931,763122,763131,763136,763141,763144,763145,763146,763147,763188,763200,763233,763249,763252,763276,763310,763320,763321,763322,763654,763666,763667,763668,763684,763687,763699,763729,763741,763745,763759,763764,763774,763775,763784,763905,763940,763944,763953,763979,763987,764179,764187,764193,764194,764195,764196,764245,764255,764290,764299,764300,764304,764309,764332,764366,764379,764710,764721,764723,764741,764742,764754,764785,764797,764801,764813,764814,764820,764829,764832,764840,764958,764959,764960,764996,765000,765009,765035,765043,765236,765243,765302,765310,765347,765354,765357,765358,765359,765366,765379,765388,765423,765436,765766,765776,765778,765807,765808,765809,765841,765853,765858,765868,765876,765885,765888,765895,766013,766042,766043,766044,766045,766052,766056,766065,766091,766099,766293,766298,766359,766360,766361,766362,766363,766364,766365,766403,766409,766423,766424,766425,766434,766436,766444,766480,766492,766822,766832,766834,766862,766898,766909,766915,766923,766932,766941,766945,766950,767068,767097,767102,767108,767112,767121,767147,767155,767350,767351,767352,767353,767459,767465,767482,767489,767493,767501,767536,767548,767879,767887,767890,767900,767901,767916,767917,767954,767964,767970,767979,767989,767997,768002,768003,768004,768005,768121,768122,768123,768152,768159,768164,768168,768175,768176,768203,768211,768515,768522,768539,768545,768550,768558,768592,768604,768936,768937,768938,768939,768940,768941,768942,768947,768948,768949,768950,768955,768958,768959,768971,769010,769019,769025,769035,769045,769053,769176,769196,769197,769198,769199,769200,769201,769208,769215,769220,769224,769230,769258,769267,769268,769570,769579,769580,769581,769594,769602,769605,769614,769649,769653,769660,769998,769999,770000,770001,770002,770003,770007,770008,770009,770010,770016,770027,770066,770076,770081,770090,770098,770099,770100,770108,770231,770251,770258,770264,770271,770276,770280,770285,770312,770313,770325,770625,770638,770647,770648,770649,770659,770660,770670,770706,770707,770708,770710,770715,771047,771048,771049,771050,771051,771053,771060,771061,771062,771073,771083,771123,771133,771137,771145,771153,771163,771287,771298,771299,771300,771301,771302,771303,771304,771305,771306,771315,771320,771327,771333,771336,771341,771368,771381,771681,771695,771702,771726,771767,771768,771769,771770,772102,772108,772119,772120,772121,772129,772138,772180,772189,772193,772201,772208,772219,772343,772353,772371,772376,772382,772390,772391,772397,772424,772437,772737,772751,772757,772782,773158,773178,773186,773193,773236,773245,773248,773257,773264,773275,773399,773408,773427,773433,773437,773453,773480,773493,773793,773807,773813,773839,774214,774234,774243,774249,774292,774302,774303,774314,774319,774330,774455,774464,774483,774490,774491,774492,774509,774536,774549,774849,774864,774869,774896,775270,775290,775299,775306,775348,775371,775372,775373,775374,775386,775511,775520,775539,775565,775592,775605,775906,775921,775922,775923,775924,775935,775952,776326,776347,776354,776363,776405,776443,776568,776575,776595,776621,776647,776662,776963,776989,776990,776992,777008,777383,777391,777392,777404,777409,777419,777462,777499,777625,777626,777627,777628,777629,777630,777651,777666,777667,777677,777702,777719,778020,778044,778049,778064,778440,778441,778446,778449,778460,778465,778475,778518,778532,778533,778555,778708,778721,778724,778732,778757,778776,778849,778850,778851,778852,779076,779099,779105,779120,779413,779414,779415,779416,779417,779418,779498,779499,779500,779501,779506,779516,779521,779531,779574,779587,779590,779611,779765,779776,779781,779787,779812,779833,779894,779895,779896,779897,779898,779899,779902,779903,779904,779909,779910,779911,779922,779923,779924,779925,779926,779927,780131,780155,780161,780175,780468,780475,780476,780477,780561,780572,780577,780587,780631,780643,780647,780666,780822,780823,780824,780832,780838,780839,780840,780841,780842,780867,780890,780949,780956,780957,780968,780969,780970,780977,780984,781186,781211,781217,781230,781524,781534,781613,781614,781615,781616,781629,781634,781642,781688,781689,781700,781703,781720,781721,781881,781888,782004,782027,782032,782040,782241,782252,782261,782262,782266,782273,782286,782565,782566,782567,782568,782579,782591,782668,782686,782687,782691,782692,782697,782746,782757,782759,782766,782775,782938,782943,783060,783083,783088,783096,783297,783307,783309,783316,783319,783320,783321,783329,783342,783620,783625,783634,783647,783723,783744,783749,783750,783751,783752,783803,783813,783816,783821,783823,783830,783995,783996,783997,783998,784116,784139,784144,784152,784353,784362,784366,784371,784386,784397,784675,784682,784690,784703,784779,784800,784808,784809,784810,784811,784812,784813,784859,784869,784873,784874,784875,784876,784880,784886,785172,785196,785199,785208,785409,785417,785422,785427,785443,785444,785445,785446,785447,785452,785731,785739,785746,785759,785835,785846,785847,785856,785861,785862,785863,785870,785871,785872,785915,785925,785936,785942,786228,786253,786254,786263,786465,786473,786478,786484,786504,786505,786506,786507,786787,786795,786801,786815,786891,786901,786904,786913,786916,786929,786970,786980,786993,786997,787285,787299,787300,787318,787521,787529,787534,787541,787542,787543,787843,787851,787856,787871,787948,787956,787961,787970,787971,787986,788025,788034,788035,788050,788051,788052,788342,788343,788344,788349,788350,788354,788357,788373,788577,788586,788589,788600,788900,788907,788912,788922,788926,789005,789012,789017,789042,789081,789089,789401,789402,789403,789404,789407,789408,789409,789414,789429,789633,789643,789644,789657,789957,789963,789968,789977,789979,789980,789981,790061,790068,790074,790098,790137,790144,790470,790485,790690,790713,791009,791010,791011,791012,791013,791020,791023,791033,791117,791123,791131,791154,791193,791200,791526,791540,791747,791769,792064,792077,792078,792089,792174,792175,792176,792177,792178,792187,792203,792211,792250,792256,792581,792590,792595,792803,792825,793085,793119,793144,793243,793258,793260,793268,793269,793270,793271,793272,793307,793308,793309,793310,793311,793634,793635,793636,793645,793647,793648,793649,793650,793859,793881,794132,794133,794134,794138,794139,794140,794142,794143,794174,794198,794199,794300,794314,794317,794329,794689,794700,794916,794936,795179,795180,795181,795182,795185,795186,795187,795191,795193,795200,795230,795253,795357,795358,795359,795370,795373,795386,795744,795756,795973,795991,796234,796239,796240,796248,796257,796286,796308,796416,796425,796429,796443,796800,796811,797030,797031,797032,797038,797039,797047,797289,797314,797342,797364,797473,797480,797485,797500,797856,797865,797866,798089,798093,798096,798103,798341,798345,798370,798398,798410,798411,798420,798529,798536,798542,798546,798547,798556,798912,798920,799146,799147,799148,799153,799159,799396,799398,799399,799400,799426,799454,799460,799461,799465,799468,799475,799585,799592,799599,799600,799601,799604,799612,799968,799976,800208,800216,800451,800482,800511,800515,800518,800519,800520,800525,800526,800527,800528,800529,800530,800642,800647,800660,800668,801025,801031,801263,801273,801506,801537,801568,801569,801570,801699,801700,801701,801702,801717,801723,802082,802083,802084,802085,802086,802319,802329,802562,802593,802774,802775,802776,802777,802778,803375,803385,803618,803642,803643,803649,804431,804441,804674,804689,804690,804697,804700,804704,805487,805497,805730,805743,805744,805747,805748,805749,805750,805751,805752,805757,805758,805759,806544,806552,806786,806793,806798,807601,807602,807603,807604,807605,807606,807607,807843,807848,807850,807851,807852,807853,808900,808901,808902,808903],"areas":{"regions (visualization only)":[{"id":560,"name":"","x":0,"y":0,"width":48,"height":48},{"id":642,"name":"","x":48,"y":0,"width":48,"height":48},{"id":643,"name":"","x":0,"y":48,"width":48,"height":48},{"id":644,"name":"","x":48,"y":48,"width":48,"height":48},{"id":645,"name":"","x":96,"y":0,"width":48,"height":48},{"id":646,"name":"","x":144,"y":0,"width":48,"height":48},{"id":647,"name":"","x":96,"y":48,"width":48,"height":48},{"id":648,"name":"","x":144,"y":48,"width":48,"height":48},{"id":649,"name":"","x":0,"y":96,"width":48,"height":48},{"id":650,"name":"","x":48,"y":96,"width":48,"height":48},{"id":651,"name":"","x":0,"y":144,"width":48,"height":48},{"id":652,"name":"","x":48,"y":144,"width":48,"height":48},{"id":653,"name":"","x":96,"y":96,"width":48,"height":48},{"id":654,"name":"","x":144,"y":96,"width":48,"height":48},{"id":655,"name":"","x":96,"y":144,"width":48,"height":48},{"id":656,"name":"","x":144,"y":144,"width":48,"height":48},{"id":673,"name":"","x":192,"y":0,"width":48,"height":48},{"id":674,"name":"","x":240,"y":0,"width":48,"height":48},{"id":675,"name":"","x":192,"y":48,"width":48,"height":48},{"id":676,"name":"","x":240,"y":48,"width":48,"height":48},{"id":677,"name":"","x":288,"y":0,"width":48,"height":48},{"id":678,"name":"","x":336,"y":0,"width":48,"height":48},{"id":679,"name":"","x":288,"y":48,"width":48,"height":48},{"id":680,"name":"","x":336,"y":48,"width":48,"height":48},{"id":681,"name":"","x":192,"y":96,"width":48,"height":48},{"id":682,"name":"","x":240,"y":96,"width":48,"height":48},{"id":683,"name":"","x":192,"y":144,"width":48,"height":48},{"id":684,"name":"","x":240,"y":144,"width":48,"height":48},{"id":685,"name":"","x":288,"y":96,"width":48,"height":48},{"id":686,"name":"","x":336,"y":96,"width":48,"height":48},{"id":687,"name":"","x":288,"y":144,"width":48,"height":48},{"id":688,"name":"","x":336,"y":144,"width":48,"height":48},{"id":689,"name":"","x":0,"y":192,"width":48,"height":48},{"id":690,"name":"","x":48,"y":192,"width":48,"height":48},{"id":691,"name":"","x":0,"y":240,"width":48,"height":48},{"id":692,"name":"","x":48,"y":240,"width":48,"height":48},{"id":693,"name":"","x":96,"y":192,"width":48,"height":48},{"id":694,"name":"","x":144,"y":192,"width":48,"height":48},{"id":695,"name":"","x":96,"y":240,"width":48,"height":48},{"id":696,"name":"","x":144,"y":240,"width":48,"height":48},{"id":697,"name":"","x":0,"y":288,"width":48,"height":48},{"id":698,"name":"","x":48,"y":288,"width":48,"height":48},{"id":699,"name":"","x":0,"y":336,"width":48,"height":48},{"id":700,"name":"","x":48,"y":336,"width":48,"height":48},{"id":701,"name":"","x":96,"y":288,"width":48,"height":48},{"id":702,"name":"","x":144,"y":288,"width":48,"height":48},{"id":703,"name":"","x":96,"y":336,"width":48,"height":48},{"id":704,"name":"","x":144,"y":336,"width":48,"height":48},{"id":705,"name":"","x":192,"y":192,"width":48,"height":48},{"id":706,"name":"","x":240,"y":192,"width":48,"height":48},{"id":707,"name":"","x":192,"y":240,"width":48,"height":48},{"id":708,"name":"","x":240,"y":240,"width":48,"height":48},{"id":709,"name":"","x":288,"y":192,"width":48,"height":48},{"id":710,"name":"","x":336,"y":192,"width":48,"height":48},{"id":711,"name":"","x":288,"y":240,"width":48,"height":48},{"id":712,"name":"","x":336,"y":240,"width":48,"height":48},{"id":713,"name":"","x":192,"y":288,"width":48,"height":48},{"id":714,"name":"","x":240,"y":288,"width":48,"height":48},{"id":715,"name":"","x":192,"y":336,"width":48,"height":48},{"id":716,"name":"","x":240,"y":336,"width":48,"height":48},{"id":717,"name":"","x":288,"y":288,"width":48,"height":48},{"id":718,"name":"","x":336,"y":288,"width":48,"height":48},{"id":719,"name":"","x":288,"y":336,"width":48,"height":48},{"id":720,"name":"","x":336,"y":336,"width":48,"height":48},{"id":721,"name":"","x":384,"y":0,"width":48,"height":48},{"id":722,"name":"","x":432,"y":0,"width":48,"height":48},{"id":723,"name":"","x":384,"y":48,"width":48,"height":48},{"id":724,"name":"","x":432,"y":48,"width":48,"height":48},{"id":725,"name":"","x":480,"y":0,"width":48,"height":48},{"id":726,"name":"","x":528,"y":0,"width":48,"height":48},{"id":727,"name":"","x":480,"y":48,"width":48,"height":48},{"id":728,"name":"","x":528,"y":48,"width":48,"height":48},{"id":729,"name":"","x":384,"y":96,"width":48,"height":48},{"id":730,"name":"","x":432,"y":96,"width":48,"height":48},{"id":731,"name":"","x":384,"y":144,"width":48,"height":48},{"id":732,"name":"","x":432,"y":144,"width":48,"height":48},{"id":733,"name":"","x":480,"y":96,"width":48,"height":48},{"id":734,"name":"","x":528,"y":96,"width":48,"height":48},{"id":735,"name":"","x":480,"y":144,"width":48,"height":48},{"id":736,"name":"","x":528,"y":144,"width":48,"height":48},{"id":737,"name":"","x":576,"y":0,"width":48,"height":48},{"id":738,"name":"","x":624,"y":0,"width":48,"height":48},{"id":739,"name":"","x":576,"y":48,"width":48,"height":48},{"id":740,"name":"","x":624,"y":48,"width":48,"height":48},{"id":741,"name":"","x":672,"y":0,"width":48,"height":48},{"id":742,"name":"","x":720,"y":0,"width":48,"height":48},{"id":743,"name":"","x":672,"y":48,"width":48,"height":48},{"id":744,"name":"","x":720,"y":48,"width":48,"height":48},{"id":745,"name":"","x":576,"y":96,"width":48,"height":48},{"id":746,"name":"","x":624,"y":96,"width":48,"height":48},{"id":747,"name":"","x":576,"y":144,"width":48,"height":48},{"id":748,"name":"","x":624,"y":144,"width":48,"height":48},{"id":749,"name":"","x":672,"y":96,"width":48,"height":48},{"id":750,"name":"","x":720,"y":96,"width":48,"height":48},{"id":751,"name":"","x":672,"y":144,"width":48,"height":48},{"id":752,"name":"","x":720,"y":144,"width":48,"height":48},{"id":753,"name":"","x":384,"y":192,"width":48,"height":48},{"id":754,"name":"","x":432,"y":192,"width":48,"height":48},{"id":755,"name":"","x":384,"y":240,"width":48,"height":48},{"id":756,"name":"","x":432,"y":240,"width":48,"height":48},{"id":757,"name":"","x":480,"y":192,"width":48,"height":48},{"id":758,"name":"","x":528,"y":192,"width":48,"height":48},{"id":759,"name":"","x":480,"y":240,"width":48,"height":48},{"id":760,"name":"","x":528,"y":240,"width":48,"height":48},{"id":761,"name":"","x":384,"y":288,"width":48,"height":48},{"id":762,"name":"","x":432,"y":288,"width":48,"height":48},{"id":763,"name":"","x":384,"y":336,"width":48,"height":48},{"id":764,"name":"","x":432,"y":336,"width":48,"height":48},{"id":765,"name":"","x":480,"y":288,"width":48,"height":48},{"id":766,"name":"","x":528,"y":288,"width":48,"height":48},{"id":767,"name":"","x":480,"y":336,"width":48,"height":48},{"id":768,"name":"","x":528,"y":336,"width":48,"height":48},{"id":769,"name":"","x":576,"y":192,"width":48,"height":48},{"id":770,"name":"","x":624,"y":192,"width":48,"height":48},{"id":771,"name":"","x":576,"y":240,"width":48,"height":48},{"id":772,"name":"","x":624,"y":240,"width":48,"height":48},{"id":773,"name":"","x":672,"y":192,"width":48,"height":48},{"id":774,"name":"","x":720,"y":192,"width":48,"height":48},{"id":775,"name":"","x":672,"y":240,"width":48,"height":48},{"id":776,"name":"","x":720,"y":240,"width":48,"height":48},{"id":777,"name":"","x":576,"y":288,"width":48,"height":48},{"id":778,"name":"","x":624,"y":288,"width":48,"height":48},{"id":779,"name":"","x":576,"y":336,"width":48,"height":48},{"id":780,"name":"","x":624,"y":336,"width":48,"height":48},{"id":781,"name":"","x":672,"y":288,"width":48,"height":48},{"id":782,"name":"","x":720,"y":288,"width":48,"height":48},{"id":783,"name":"","x":672,"y":336,"width":48,"height":48},{"id":784,"name":"","x":720,"y":336,"width":48,"height":48},{"id":785,"name":"","x":768,"y":0,"width":48,"height":48},{"id":786,"name":"","x":816,"y":0,"width":48,"height":48},{"id":787,"name":"","x":768,"y":48,"width":48,"height":48},{"id":788,"name":"","x":816,"y":48,"width":48,"height":48},{"id":789,"name":"","x":864,"y":0,"width":48,"height":48},{"id":790,"name":"","x":912,"y":0,"width":48,"height":48},{"id":791,"name":"","x":864,"y":48,"width":48,"height":48},{"id":792,"name":"","x":912,"y":48,"width":48,"height":48},{"id":793,"name":"","x":768,"y":96,"width":48,"height":48},{"id":794,"name":"","x":816,"y":96,"width":48,"height":48},{"id":795,"name":"","x":768,"y":144,"width":48,"height":48},{"id":796,"name":"","x":816,"y":144,"width":48,"height":48},{"id":797,"name":"","x":864,"y":96,"width":48,"height":48},{"id":798,"name":"","x":912,"y":96,"width":48,"height":48},{"id":799,"name":"","x":864,"y":144,"width":48,"height":48},{"id":800,"name":"","x":912,"y":144,"width":48,"height":48},{"id":801,"name":"","x":960,"y":0,"width":48,"height":48},{"id":802,"name":"","x":1008,"y":0,"width":48,"height":48},{"id":803,"name":"","x":960,"y":48,"width":48,"height":48},{"id":804,"name":"","x":1008,"y":48,"width":48,"height":48},{"id":809,"name":"","x":960,"y":96,"width":48,"height":48},{"id":810,"name":"","x":1008,"y":96,"width":48,"height":48},{"id":811,"name":"","x":960,"y":144,"width":48,"height":48},{"id":812,"name":"","x":1008,"y":144,"width":48,"height":48},{"id":817,"name":"","x":768,"y":192,"width":48,"height":48},{"id":818,"name":"","x":816,"y":192,"width":48,"height":48},{"id":819,"name":"","x":768,"y":240,"width":48,"height":48},{"id":820,"name":"","x":816,"y":240,"width":48,"height":48},{"id":821,"name":"","x":864,"y":192,"width":48,"height":48},{"id":822,"name":"","x":912,"y":192,"width":48,"height":48},{"id":823,"name":"","x":864,"y":240,"width":48,"height":48},{"id":824,"name":"","x":912,"y":240,"width":48,"height":48},{"id":825,"name":"","x":768,"y":288,"width":48,"height":48},{"id":826,"name":"","x":816,"y":288,"width":48,"height":48},{"id":827,"name":"","x":768,"y":336,"width":48,"height":48},{"id":828,"name":"","x":816,"y":336,"width":48,"height":48},{"id":829,"name":"","x":864,"y":288,"width":48,"height":48},{"id":830,"name":"","x":912,"y":288,"width":48,"height":48},{"id":831,"name":"","x":864,"y":336,"width":48,"height":48},{"id":832,"name":"","x":912,"y":336,"width":48,"height":48},{"id":833,"name":"","x":960,"y":192,"width":48,"height":48},{"id":834,"name":"","x":1008,"y":192,"width":48,"height":48},{"id":835,"name":"","x":960,"y":240,"width":48,"height":48},{"id":836,"name":"","x":1008,"y":240,"width":48,"height":48},{"id":841,"name":"","x":960,"y":288,"width":48,"height":48},{"id":842,"name":"","x":1008,"y":288,"width":48,"height":48},{"id":843,"name":"","x":960,"y":336,"width":48,"height":48},{"id":844,"name":"","x":1008,"y":336,"width":48,"height":48},{"id":849,"name":"","x":0,"y":384,"width":48,"height":48},{"id":850,"name":"","x":48,"y":384,"width":48,"height":48},{"id":851,"name":"","x":0,"y":432,"width":48,"height":48},{"id":852,"name":"","x":48,"y":432,"width":48,"height":48},{"id":853,"name":"","x":96,"y":384,"width":48,"height":48},{"id":854,"name":"","x":144,"y":384,"width":48,"height":48},{"id":855,"name":"","x":96,"y":432,"width":48,"height":48},{"id":856,"name":"","x":144,"y":432,"width":48,"height":48},{"id":857,"name":"","x":0,"y":480,"width":48,"height":48},{"id":858,"name":"","x":48,"y":480,"width":48,"height":48},{"id":859,"name":"","x":0,"y":528,"width":48,"height":48},{"id":860,"name":"","x":48,"y":528,"width":48,"height":48},{"id":861,"name":"","x":96,"y":480,"width":48,"height":48},{"id":862,"name":"","x":144,"y":480,"width":48,"height":48},{"id":863,"name":"","x":96,"y":528,"width":48,"height":48},{"id":864,"name":"","x":144,"y":528,"width":48,"height":48},{"id":865,"name":"","x":192,"y":384,"width":48,"height":48},{"id":866,"name":"","x":240,"y":384,"width":48,"height":48},{"id":867,"name":"","x":192,"y":432,"width":48,"height":48},{"id":868,"name":"","x":240,"y":432,"width":48,"height":48},{"id":869,"name":"","x":288,"y":384,"width":48,"height":48},{"id":870,"name":"","x":336,"y":384,"width":48,"height":48},{"id":871,"name":"","x":288,"y":432,"width":48,"height":48},{"id":872,"name":"","x":336,"y":432,"width":48,"height":48},{"id":873,"name":"","x":192,"y":480,"width":48,"height":48},{"id":874,"name":"","x":240,"y":480,"width":48,"height":48},{"id":875,"name":"","x":192,"y":528,"width":48,"height":48},{"id":876,"name":"","x":240,"y":528,"width":48,"height":48},{"id":877,"name":"","x":288,"y":480,"width":48,"height":48},{"id":878,"name":"","x":336,"y":480,"width":48,"height":48},{"id":879,"name":"","x":288,"y":528,"width":48,"height":48},{"id":880,"name":"","x":336,"y":528,"width":48,"height":48},{"id":881,"name":"","x":0,"y":576,"width":48,"height":48},{"id":882,"name":"","x":48,"y":576,"width":48,"height":48},{"id":883,"name":"","x":0,"y":624,"width":48,"height":48},{"id":884,"name":"","x":48,"y":624,"width":48,"height":48},{"id":885,"name":"","x":96,"y":576,"width":48,"height":48},{"id":886,"name":"","x":144,"y":576,"width":48,"height":48},{"id":887,"name":"","x":96,"y":624,"width":48,"height":48},{"id":888,"name":"","x":144,"y":624,"width":48,"height":48},{"id":889,"name":"","x":0,"y":672,"width":48,"height":48},{"id":890,"name":"","x":48,"y":672,"width":48,"height":48},{"id":891,"name":"","x":0,"y":720,"width":48,"height":48},{"id":892,"name":"","x":48,"y":720,"width":48,"height":48},{"id":893,"name":"","x":96,"y":672,"width":48,"height":48},{"id":894,"name":"","x":144,"y":672,"width":48,"height":48},{"id":895,"name":"","x":96,"y":720,"width":48,"height":48},{"id":896,"name":"","x":144,"y":720,"width":48,"height":48},{"id":897,"name":"","x":192,"y":576,"width":48,"height":48},{"id":898,"name":"","x":240,"y":576,"width":48,"height":48},{"id":899,"name":"","x":192,"y":624,"width":48,"height":48},{"id":900,"name":"","x":240,"y":624,"width":48,"height":48},{"id":901,"name":"","x":288,"y":576,"width":48,"height":48},{"id":902,"name":"","x":336,"y":576,"width":48,"height":48},{"id":903,"name":"","x":288,"y":624,"width":48,"height":48},{"id":904,"name":"","x":336,"y":624,"width":48,"height":48},{"id":905,"name":"","x":192,"y":672,"width":48,"height":48},{"id":906,"name":"","x":240,"y":672,"width":48,"height":48},{"id":907,"name":"","x":192,"y":720,"width":48,"height":48},{"id":908,"name":"","x":240,"y":720,"width":48,"height":48},{"id":909,"name":"","x":288,"y":672,"width":48,"height":48},{"id":910,"name":"","x":336,"y":672,"width":48,"height":48},{"id":911,"name":"","x":288,"y":720,"width":48,"height":48},{"id":912,"name":"","x":336,"y":720,"width":48,"height":48},{"id":913,"name":"","x":384,"y":384,"width":48,"height":48},{"id":914,"name":"","x":432,"y":384,"width":48,"height":48},{"id":915,"name":"","x":384,"y":432,"width":48,"height":48},{"id":916,"name":"","x":432,"y":432,"width":48,"height":48},{"id":917,"name":"","x":480,"y":384,"width":48,"height":48},{"id":918,"name":"","x":528,"y":384,"width":48,"height":48},{"id":919,"name":"","x":480,"y":432,"width":48,"height":48},{"id":920,"name":"","x":528,"y":432,"width":48,"height":48},{"id":921,"name":"","x":384,"y":480,"width":48,"height":48},{"id":922,"name":"","x":432,"y":480,"width":48,"height":48},{"id":923,"name":"","x":384,"y":528,"width":48,"height":48},{"id":924,"name":"","x":432,"y":528,"width":48,"height":48},{"id":925,"name":"","x":480,"y":480,"width":48,"height":48},{"id":926,"name":"","x":528,"y":480,"width":48,"height":48},{"id":927,"name":"","x":480,"y":528,"width":48,"height":48},{"id":928,"name":"","x":528,"y":528,"width":48,"height":48},{"id":929,"name":"","x":576,"y":384,"width":48,"height":48},{"id":930,"name":"","x":624,"y":384,"width":48,"height":48},{"id":931,"name":"","x":576,"y":432,"width":48,"height":48},{"id":932,"name":"","x":624,"y":432,"width":48,"height":48},{"id":933,"name":"","x":672,"y":384,"width":48,"height":48},{"id":934,"name":"","x":720,"y":384,"width":48,"height":48},{"id":935,"name":"","x":672,"y":432,"width":48,"height":48},{"id":936,"name":"","x":720,"y":432,"width":48,"height":48},{"id":937,"name":"","x":576,"y":480,"width":48,"height":48},{"id":938,"name":"","x":624,"y":480,"width":48,"height":48},{"id":939,"name":"","x":576,"y":528,"width":48,"height":48},{"id":940,"name":"","x":624,"y":528,"width":48,"height":48},{"id":941,"name":"","x":672,"y":480,"width":48,"height":48},{"id":942,"name":"","x":720,"y":480,"width":48,"height":48},{"id":943,"name":"","x":672,"y":528,"width":48,"height":48},{"id":944,"name":"","x":720,"y":528,"width":48,"height":48},{"id":945,"name":"","x":384,"y":576,"width":48,"height":48},{"id":946,"name":"","x":432,"y":576,"width":48,"height":48},{"id":947,"name":"","x":384,"y":624,"width":48,"height":48},{"id":948,"name":"","x":432,"y":624,"width":48,"height":48},{"id":949,"name":"","x":480,"y":576,"width":48,"height":48},{"id":950,"name":"","x":528,"y":576,"width":48,"height":48},{"id":951,"name":"","x":480,"y":624,"width":48,"height":48},{"id":952,"name":"","x":528,"y":624,"width":48,"height":48},{"id":953,"name":"","x":384,"y":672,"width":48,"height":48},{"id":954,"name":"","x":432,"y":672,"width":48,"height":48},{"id":955,"name":"","x":384,"y":720,"width":48,"height":48},{"id":956,"name":"","x":432,"y":720,"width":48,"height":48},{"id":957,"name":"","x":480,"y":672,"width":48,"height":48},{"id":958,"name":"","x":528,"y":672,"width":48,"height":48},{"id":959,"name":"","x":480,"y":720,"width":48,"height":48},{"id":960,"name":"","x":528,"y":720,"width":48,"height":48},{"id":961,"name":"","x":576,"y":576,"width":48,"height":48},{"id":962,"name":"","x":624,"y":576,"width":48,"height":48},{"id":963,"name":"","x":576,"y":624,"width":48,"height":48},{"id":964,"name":"","x":624,"y":624,"width":48,"height":48},{"id":965,"name":"","x":672,"y":576,"width":48,"height":48},{"id":966,"name":"","x":720,"y":576,"width":48,"height":48},{"id":967,"name":"","x":672,"y":624,"width":48,"height":48},{"id":968,"name":"","x":720,"y":624,"width":48,"height":48},{"id":969,"name":"","x":576,"y":672,"width":48,"height":48},{"id":970,"name":"","x":624,"y":672,"width":48,"height":48},{"id":971,"name":"","x":576,"y":720,"width":48,"height":48},{"id":972,"name":"","x":624,"y":720,"width":48,"height":48},{"id":973,"name":"","x":672,"y":672,"width":48,"height":48},{"id":974,"name":"","x":720,"y":672,"width":48,"height":48},{"id":975,"name":"","x":672,"y":720,"width":48,"height":48},{"id":976,"name":"","x":720,"y":720,"width":48,"height":48},{"id":977,"name":"","x":768,"y":384,"width":48,"height":48},{"id":978,"name":"","x":816,"y":384,"width":48,"height":48},{"id":979,"name":"","x":768,"y":432,"width":48,"height":48},{"id":980,"name":"","x":816,"y":432,"width":48,"height":48},{"id":981,"name":"","x":864,"y":384,"width":48,"height":48},{"id":982,"name":"","x":912,"y":384,"width":48,"height":48},{"id":983,"name":"","x":864,"y":432,"width":48,"height":48},{"id":984,"name":"","x":912,"y":432,"width":48,"height":48},{"id":985,"name":"","x":768,"y":480,"width":48,"height":48},{"id":986,"name":"","x":816,"y":480,"width":48,"height":48},{"id":987,"name":"","x":768,"y":528,"width":48,"height":48},{"id":988,"name":"","x":816,"y":528,"width":48,"height":48},{"id":989,"name":"","x":864,"y":480,"width":48,"height":48},{"id":990,"name":"","x":912,"y":480,"width":48,"height":48},{"id":991,"name":"","x":864,"y":528,"width":48,"height":48},{"id":992,"name":"","x":912,"y":528,"width":48,"height":48},{"id":993,"name":"","x":960,"y":384,"width":48,"height":48},{"id":994,"name":"","x":1008,"y":384,"width":48,"height":48},{"id":995,"name":"","x":960,"y":432,"width":48,"height":48},{"id":996,"name":"","x":1008,"y":432,"width":48,"height":48},{"id":997,"name":"","x":960,"y":480,"width":48,"height":48},{"id":998,"name":"","x":1008,"y":480,"width":48,"height":48},{"id":999,"name":"","x":960,"y":528,"width":48,"height":48},{"id":1000,"name":"","x":1008,"y":528,"width":48,"height":48},{"id":1001,"name":"","x":768,"y":576,"width":48,"height":48},{"id":1002,"name":"","x":816,"y":576,"width":48,"height":48},{"id":1003,"name":"","x":768,"y":624,"width":48,"height":48},{"id":1004,"name":"","x":816,"y":624,"width":48,"height":48},{"id":1005,"name":"","x":864,"y":576,"width":48,"height":48},{"id":1006,"name":"","x":912,"y":576,"width":48,"height":48},{"id":1007,"name":"","x":864,"y":624,"width":48,"height":48},{"id":1008,"name":"","x":912,"y":624,"width":48,"height":48},{"id":1009,"name":"","x":768,"y":672,"width":48,"height":48},{"id":1010,"name":"","x":816,"y":672,"width":48,"height":48},{"id":1011,"name":"","x":768,"y":720,"width":48,"height":48},{"id":1012,"name":"","x":816,"y":720,"width":48,"height":48},{"id":1013,"name":"","x":864,"y":672,"width":48,"height":48},{"id":1014,"name":"","x":912,"y":672,"width":48,"height":48},{"id":1015,"name":"","x":864,"y":720,"width":48,"height":48},{"id":1016,"name":"","x":912,"y":720,"width":48,"height":48},{"id":1017,"name":"","x":960,"y":576,"width":48,"height":48},{"id":1018,"name":"","x":1008,"y":576,"width":48,"height":48},{"id":1019,"name":"","x":960,"y":624,"width":48,"height":48},{"id":1020,"name":"","x":1008,"y":624,"width":48,"height":48},{"id":1021,"name":"","x":960,"y":672,"width":48,"height":48},{"id":1022,"name":"","x":1008,"y":672,"width":48,"height":48},{"id":1023,"name":"","x":960,"y":720,"width":48,"height":48},{"id":1024,"name":"","x":1008,"y":720,"width":48,"height":48}],"signs":[{"id":352,"name":"","x":700,"y":550,"width":1,"height":1,"text":"Tread carefully of what lies ahead."},{"id":364,"name":"","x":28,"y":755,"width":1,"height":1,"text":"One shouldn't venture alone in these caves."},{"id":368,"name":"","x":103,"y":687,"width":1,"height":1,"text":"In memory of Azaria,my dearest friend."},{"id":371,"name":"","x":101,"y":687,"width":1,"height":1,"text":"Here lies R,a bittersweet memory,at peace."},{"id":372,"name":"","x":105,"y":687,"width":1,"height":1,"text":"Iz."},{"id":426,"name":"","x":186,"y":30,"width":1,"height":1,"text":"A path may open once the lord of ogres perishes."},{"id":444,"name":"","x":497,"y":725,"width":1,"height":1,"text":"Do not underestimate."},{"id":465,"name":"","x":697,"y":722,"width":1,"height":1,"text":"An ancient warrior carrying a forgotten weapon."},{"id":503,"name":"","x":27,"y":44,"width":1,"height":1,"text":"The Queen's death will open a path."},{"id":506,"name":"","x":364,"y":709,"width":1,"height":1,"text":"Turn back now,or bring an army."},{"id":548,"name":"","x":101,"y":681,"width":1,"height":1,"text":"A graveyard created to come to peace., With all of it."},{"id":1052,"name":"","x":19,"y":31,"width":1,"height":1,"text":"This rock was used to test tile rotations.,I now refuse to remove it."}],"music":[{"id":265,"name":"","x":90,"y":120,"width":0,"height":0,"polygon":[{"x":94,"y":116},{"x":94,"y":114},{"x":95,"y":113},{"x":110,"y":113},{"x":110,"y":144},{"x":8,"y":144},{"x":8,"y":114},{"x":13,"y":114},{"x":15,"y":112},{"x":17,"y":112},{"x":18,"y":113},{"x":20,"y":113},{"x":21,"y":112},{"x":23,"y":112},{"x":26,"y":109},{"x":30,"y":109},{"x":31,"y":110},{"x":31,"y":113},{"x":34,"y":116},{"x":39,"y":116},{"x":42,"y":110},{"x":47,"y":110},{"x":50,"y":115},{"x":58,"y":110},{"x":64,"y":110},{"x":67,"y":114},{"x":79,"y":114},{"x":84,"y":119},{"x":91,"y":119}],"song":"beach"},{"id":266,"name":"","x":400,"y":23,"width":12,"height":9,"song":"codingroom"},{"id":404,"name":"","x":149,"y":199,"width":104,"height":39,"song":"meadowofthepast"},{"id":405,"name":"","x":71,"y":86,"width":0,"height":0,"polygon":[{"x":71,"y":86},{"x":116,"y":86},{"x":116,"y":44},{"x":85,"y":44},{"x":73,"y":59},{"x":73,"y":65},{"x":64,"y":76},{"x":64,"y":86}],"song":"smalltown"},{"id":407,"name":"","x":42,"y":3,"width":82,"height":41,"song":"forest"}],"minigame":[{"id":311,"name":"","x":444,"y":50,"width":33,"height":15,"mObjectType":"lobby","minigame":"teamwar"},{"id":312,"name":"","x":581,"y":696,"width":11,"height":8,"ignore":true,"mObjectType":"redteamspawn","minigame":"teamwar"},{"id":313,"name":"","x":552,"y":671,"width":11,"height":8,"ignore":true,"mObjectType":"blueteamspawn","minigame":"teamwar"},{"id":1078,"name":"","x":37,"y":533,"width":20,"height":15,"mObjectType":"lobby","minigame":"coursing"}],"warps":[{"id":285,"name":"mudwich","x":92,"y":61,"width":4,"height":4,"level":1},{"id":334,"name":"aynor","x":290,"y":155,"width":5,"height":5,"quest":"ancientlands"},{"id":437,"name":"lakesworld","x":198,"y":148,"width":8,"height":6,"quest":"desertquest"},{"id":507,"name":"patsow","x":247,"y":31,"width":3,"height":3,"achievement":"patsow"},{"id":508,"name":"crullfield","x":170,"y":62,"width":4,"height":4,"quest":"desertquest"},{"id":509,"name":"undersea","x":17,"y":194,"width":4,"height":4,"achievement":"waterguardian"}],"doors":[{"id":223,"name":"","x":403,"y":26,"width":1,"height":1},{"id":241,"name":"","x":567,"y":40,"width":1,"height":1},{"id":242,"name":"","x":581,"y":10,"width":1,"height":1,"destination":241,"quest":"tutorial","stage":1},{"id":243,"name":"","x":545,"y":2,"width":1,"height":1},{"id":244,"name":"","x":574,"y":52,"width":1,"height":1,"destination":243,"quest":"tutorial","stage":5},{"id":245,"name":"","x":542,"y":12,"width":1,"height":1,"destination":246,"quest":"tutorial","stage":9},{"id":246,"name":"","x":516,"y":35,"width":1,"height":1,"destination":0},{"id":247,"name":"","x":513,"y":36,"width":1,"height":1,"destination":223,"quest":"tutorial","stage":13},{"id":251,"name":"","x":361,"y":32,"width":1,"height":1,"destination":252},{"id":252,"name":"","x":169,"y":216,"width":1,"height":1,"destination":251},{"id":253,"name":"","x":406,"y":31,"width":1,"height":1,"destination":254},{"id":254,"name":"","x":88,"y":20,"width":1,"height":1,"destination":253},{"id":255,"name":"","x":77,"y":2,"width":1,"height":1,"achievement":"ahiddenpath","destination":258},{"id":256,"name":"","x":16,"y":87,"width":1,"height":1,"destination":257},{"id":257,"name":"","x":28,"y":636,"width":1,"height":1,"destination":256},{"id":258,"name":"","x":58,"y":578,"width":1,"height":1,"destination":255},{"id":259,"name":"","x":84,"y":575,"width":1,"height":1,"destination":260},{"id":260,"name":"","x":81,"y":579,"width":1,"height":1,"destination":259},{"id":261,"name":"","x":17,"y":9,"width":1,"height":1,"achievement":"ahiddenpath","destination":262},{"id":262,"name":"","x":45,"y":578,"width":1,"height":1,"achievement":"ahiddenpath","destination":261},{"id":267,"name":"","x":473,"y":12,"width":1,"height":1,"destination":270},{"id":268,"name":"","x":447,"y":12,"width":1,"height":1,"destination":269},{"id":269,"name":"","x":85,"y":61,"width":1,"height":1,"destination":268},{"id":270,"name":"","x":103,"y":53,"width":1,"height":1,"destination":267},{"id":271,"name":"","x":28,"y":108,"width":1,"height":1,"destination":272},{"id":272,"name":"","x":68,"y":644,"width":1,"height":1,"destination":271},{"id":276,"name":"","x":72,"y":127,"width":1,"height":1,"destination":277},{"id":277,"name":"","x":138,"y":567,"width":1,"height":1,"achievement":"crabproblem","destination":276},{"id":278,"name":"","x":61,"y":136,"width":1,"height":1,"destination":279},{"id":279,"name":"","x":124,"y":589,"width":1,"height":1,"destination":278},{"id":283,"name":"","x":380,"y":114,"width":1,"height":1,"destination":284},{"id":284,"name":"","x":391,"y":209,"width":1,"height":1,"destination":283},{"id":287,"name":"","x":256,"y":633,"width":1,"height":1,"destination":288},{"id":288,"name":"","x":193,"y":39,"width":1,"height":1,"destination":287},{"id":289,"name":"","x":191,"y":82,"width":1,"height":1,"destination":290},{"id":290,"name":"","x":261,"y":673,"width":1,"height":1,"destination":289},{"id":291,"name":"","x":358,"y":65,"width":1,"height":1,"destination":293},{"id":292,"name":"","x":401,"y":66,"width":1,"height":1,"destination":294},{"id":293,"name":"","x":162,"y":163,"width":1,"height":1,"destination":291},{"id":294,"name":"","x":237,"y":136,"width":1,"height":1,"destination":292,"reqQuest":"seaactivities"},{"id":297,"name":"","x":274,"y":651,"width":1,"height":1,"destination":298},{"id":298,"name":"","x":279,"y":649,"width":1,"height":1,"destination":297},{"id":299,"name":"","x":283,"y":648,"width":1,"height":1,"destination":300},{"id":300,"name":"","x":290,"y":649,"width":1,"height":1,"destination":299},{"id":302,"name":"","x":290,"y":642,"width":1,"height":1,"destination":303,"reqAchievement":"ogreguardian"},{"id":303,"name":"","x":296,"y":72,"width":1,"height":1,"destination":302},{"id":308,"name":"","x":177,"y":66,"width":1,"height":1,"destination":309,"reqAchievement":"ogresgateway"},{"id":309,"name":"","x":173,"y":36,"width":1,"height":1,"destination":308,"reqAchievement":"ogresgateway"},{"id":314,"name":"","x":460,"y":64,"width":1,"height":1,"destination":315},{"id":315,"name":"","x":68,"y":17,"width":1,"height":1,"destination":314,"level":45},{"id":321,"name":"","x":629,"y":712,"width":1,"height":1,"destination":322},{"id":322,"name":"","x":262,"y":154,"width":1,"height":1,"destination":321,"reqAchievement":"frozentundra"},{"id":323,"name":"","x":718,"y":694,"width":1,"height":1,"destination":324},{"id":324,"name":"","x":298,"y":152,"width":1,"height":1,"destination":323},{"id":326,"name":"","x":281,"y":642,"width":1,"height":1,"destination":329},{"id":329,"name":"","x":205,"y":36,"width":1,"height":1,"destination":326},{"id":332,"name":"","x":612,"y":8,"width":1,"height":1,"destination":333},{"id":333,"name":"","x":98,"y":122,"width":1,"height":1,"destination":332},{"id":336,"name":"","x":196,"y":638,"width":1,"height":1,"destination":337,"reqAchievement":"waterguardian"},{"id":337,"name":"","x":30,"y":192,"width":1,"height":1,"destination":336},{"id":338,"name":"","x":299,"y":61,"width":1,"height":1,"destination":339},{"id":339,"name":"","x":602,"y":550,"width":1,"height":1,"destination":338},{"id":340,"name":"","x":609,"y":536,"width":1,"height":1,"destination":341},{"id":341,"name":"","x":297,"y":47,"width":1,"height":1,"destination":340},{"id":342,"name":"","x":224,"y":140,"width":1,"height":1,"destination":343},{"id":343,"name":"","x":606,"y":567,"width":1,"height":1,"destination":342},{"id":344,"name":"","x":647,"y":537,"width":1,"height":1,"achievement":"patsow","destination":345},{"id":345,"name":"","x":263,"y":27,"width":1,"height":1,"achievement":"patsow","destination":344},{"id":346,"name":"","x":667,"y":541,"width":1,"height":1,"destination":347},{"id":347,"name":"","x":288,"y":61,"width":1,"height":1,"destination":346},{"id":353,"name":"","x":705,"y":547,"width":1,"height":1,"destination":354},{"id":354,"name":"","x":259,"y":61,"width":1,"height":1,"destination":353},{"id":356,"name":"","x":698,"y":537,"width":1,"height":1,"destination":357},{"id":357,"name":"","x":241,"y":47,"width":1,"height":1,"destination":356,"reqAchievement":"pathofdeath"},{"id":358,"name":"","x":297,"y":59,"width":1,"height":1,"destination":359},{"id":359,"name":"","x":59,"y":691,"width":1,"height":1,"destination":358},{"id":360,"name":"","x":5,"y":757,"width":1,"height":1,"destination":361},{"id":361,"name":"","x":300,"y":35,"width":1,"height":1,"destination":360},{"id":362,"name":"","x":29,"y":752,"width":1,"height":1,"destination":363},{"id":363,"name":"","x":25,"y":704,"width":1,"height":1,"destination":362},{"id":365,"name":"","x":94,"y":744,"width":1,"height":1,"destination":366},{"id":366,"name":"","x":10,"y":63,"width":1,"height":1,"destination":365},{"id":369,"name":"","x":101,"y":672,"width":1,"height":1,"destination":370},{"id":370,"name":"","x":91,"y":87,"width":1,"height":1,"achievement":"gravemystery","destination":369},{"id":374,"name":"","x":637,"y":9,"width":1,"height":1,"destination":375},{"id":375,"name":"","x":189,"y":131,"width":1,"height":1,"destination":374},{"id":376,"name":"","x":167,"y":697,"width":1,"height":1,"destination":377},{"id":377,"name":"","x":98,"y":299,"width":1,"height":1,"destination":376},{"id":378,"name":"","x":171,"y":727,"width":1,"height":1,"destination":379},{"id":379,"name":"","x":47,"y":304,"width":1,"height":1,"destination":378},{"id":381,"name":"","x":181,"y":727,"width":1,"height":1,"destination":382},{"id":382,"name":"","x":57,"y":304,"width":1,"height":1,"destination":381,"reqAchievement":"babyseadragon"},{"id":383,"name":"","x":83,"y":307,"width":1,"height":1,"destination":386},{"id":384,"name":"","x":169,"y":732,"width":1,"height":1,"destination":387},{"id":386,"name":"","x":216,"y":759,"width":1,"height":1,"destination":383},{"id":387,"name":"","x":24,"y":296,"width":1,"height":1,"destination":384},{"id":388,"name":"","x":43,"y":316,"width":1,"height":1,"destination":389},{"id":389,"name":"","x":176,"y":749,"width":1,"height":1,"destination":388},{"id":393,"name":"","x":161,"y":7,"width":1,"height":1,"destination":394},{"id":394,"name":"","x":253,"y":750,"width":1,"height":1,"destination":393},{"id":395,"name":"","x":606,"y":489,"width":1,"height":1,"destination":396},{"id":396,"name":"","x":486,"y":194,"width":1,"height":1,"destination":395},{"id":397,"name":"","x":406,"y":119,"width":1,"height":1,"destination":398},{"id":398,"name":"","x":637,"y":508,"width":1,"height":1,"destination":397},{"id":399,"name":"","x":650,"y":599,"width":1,"height":1,"destination":400},{"id":400,"name":"","x":40,"y":74,"width":1,"height":1,"destination":399},{"id":401,"name":"","x":657,"y":592,"width":1,"height":1,"destination":402},{"id":402,"name":"","x":646,"y":591,"width":1,"height":1,"destination":419},{"id":403,"name":"","x":702,"y":600,"width":1,"height":1,"destination":400},{"id":408,"name":"","x":649,"y":591,"width":1,"height":1,"destination":414},{"id":409,"name":"","x":652,"y":591,"width":1,"height":1,"destination":416},{"id":410,"name":"","x":661,"y":592,"width":1,"height":1,"destination":412},{"id":411,"name":"","x":656,"y":626,"width":1,"height":1,"destination":415},{"id":412,"name":"","x":660,"y":630,"width":1,"height":1,"destination":401},{"id":413,"name":"","x":650,"y":628,"width":1,"height":1,"destination":408},{"id":414,"name":"","x":696,"y":592,"width":1,"height":1,"destination":419},{"id":415,"name":"","x":701,"y":593,"width":1,"height":1,"destination":409},{"id":416,"name":"","x":705,"y":593,"width":1,"height":1,"destination":410},{"id":417,"name":"","x":711,"y":592,"width":1,"height":1,"destination":420},{"id":418,"name":"","x":714,"y":595,"width":1,"height":1,"destination":411},{"id":419,"name":"","x":655,"y":635,"width":1,"height":1,"destination":400},{"id":420,"name":"","x":702,"y":634,"width":1,"height":1,"destination":400},{"id":427,"name":"","x":391,"y":59,"width":1,"height":1,"destination":428},{"id":428,"name":"","x":712,"y":502,"width":1,"height":1,"destination":427,"reqQuest":"seaactivities"},{"id":429,"name":"","x":681,"y":502,"width":1,"height":1,"destination":430},{"id":430,"name":"","x":366,"y":56,"width":1,"height":1,"destination":429},{"id":432,"name":"","x":461,"y":585,"width":1,"height":1,"destination":433},{"id":433,"name":"","x":205,"y":101,"width":1,"height":1,"destination":432},{"id":438,"name":"","x":491,"y":555,"width":1,"height":1,"destination":439},{"id":439,"name":"","x":511,"y":660,"width":1,"height":1,"destination":438},{"id":440,"name":"","x":417,"y":630,"width":1,"height":1,"destination":441},{"id":441,"name":"","x":458,"y":662,"width":1,"height":1,"destination":440},{"id":442,"name":"","x":413,"y":592,"width":1,"height":1,"destination":443},{"id":443,"name":"","x":422,"y":662,"width":1,"height":1,"destination":442},{"id":445,"name":"","x":495,"y":727,"width":1,"height":1,"destination":446},{"id":446,"name":"","x":495,"y":731,"width":1,"height":1,"destination":445},{"id":447,"name":"","x":500,"y":680,"width":1,"height":1,"destination":448},{"id":448,"name":"","x":465,"y":712,"width":1,"height":1,"destination":447},{"id":449,"name":"","x":438,"y":712,"width":1,"height":1,"destination":450},{"id":450,"name":"","x":451,"y":623,"width":1,"height":1,"destination":449},{"id":451,"name":"","x":415,"y":672,"width":1,"height":1,"destination":452},{"id":452,"name":"","x":419,"y":711,"width":1,"height":1,"destination":451},{"id":453,"name":"","x":505,"y":615,"width":1,"height":1,"destination":454},{"id":454,"name":"","x":495,"y":709,"width":1,"height":1,"destination":453},{"id":457,"name":"","x":693,"y":671,"width":1,"height":1,"destination":458},{"id":458,"name":"","x":700,"y":672,"width":1,"height":1,"destination":457},{"id":459,"name":"","x":704,"y":719,"width":1,"height":1,"destination":460},{"id":460,"name":"","x":698,"y":723,"width":1,"height":1,"destination":459},{"id":463,"name":"","x":285,"y":159,"width":1,"height":1,"destination":464,"reqQuest":"ancientlands"},{"id":464,"name":"","x":312,"y":137,"width":1,"height":1,"destination":463,"reqQuest":"ancientlands"},{"id":468,"name":"","x":606,"y":517,"width":1,"height":1,"destination":469},{"id":469,"name":"","x":362,"y":142,"width":1,"height":1,"destination":468},{"id":472,"name":"","x":187,"y":29,"width":1,"height":1,"destination":473,"reqAchievement":"ogrelord"},{"id":473,"name":"","x":771,"y":626,"width":1,"height":1,"destination":472,"reqAchievement":"ogrelord"},{"id":474,"name":"","x":755,"y":654,"width":1,"height":1,"destination":475},{"id":475,"name":"","x":173,"y":80,"width":1,"height":1,"destination":474},{"id":476,"name":"","x":756,"y":664,"width":1,"height":1,"destination":478},{"id":477,"name":"","x":756,"y":669,"width":1,"height":1,"destination":481},{"id":478,"name":"","x":756,"y":667,"width":1,"height":1,"destination":476},{"id":479,"name":"","x":759,"y":668,"width":1,"height":1,"destination":480},{"id":480,"name":"","x":763,"y":668,"width":1,"height":1,"destination":479},{"id":481,"name":"","x":756,"y":676,"width":1,"height":1,"destination":477},{"id":482,"name":"","x":777,"y":665,"width":1,"height":1,"destination":483},{"id":483,"name":"","x":779,"y":661,"width":1,"height":1,"destination":482},{"id":484,"name":"","x":780,"y":661,"width":1,"height":1,"destination":485},{"id":485,"name":"","x":782,"y":665,"width":1,"height":1,"destination":484},{"id":486,"name":"","x":771,"y":651,"width":1,"height":1,"destination":487},{"id":487,"name":"","x":771,"y":655,"width":1,"height":1,"destination":486},{"id":488,"name":"","x":759,"y":684,"width":1,"height":1,"destination":489},{"id":489,"name":"","x":764,"y":689,"width":1,"height":1,"destination":488},{"id":490,"name":"","x":774,"y":685,"width":1,"height":1,"destination":491},{"id":491,"name":"","x":774,"y":688,"width":1,"height":1,"destination":490},{"id":492,"name":"","x":773,"y":679,"width":1,"height":1,"destination":493},{"id":493,"name":"","x":778,"y":677,"width":1,"height":1,"destination":492},{"id":495,"name":"","x":215,"y":171,"width":1,"height":1,"destination":496},{"id":496,"name":"","x":323,"y":641,"width":1,"height":1,"destination":495},{"id":504,"name":"","x":40,"y":10,"width":1,"height":1,"destination":505,"reqAchievement":"queenant"},{"id":505,"name":"","x":376,"y":758,"width":1,"height":1,"destination":504,"reqAchievement":"queenant"},{"id":510,"name":"","x":799,"y":622,"width":1,"height":1,"destination":511},{"id":511,"name":"","x":799,"y":622,"width":1,"height":1,"destination":512},{"id":512,"name":"","x":64,"y":248,"width":1,"height":1,"achievement":"pirates","destination":511},{"id":513,"name":"","x":812,"y":615,"width":1,"height":1,"destination":514},{"id":514,"name":"","x":843,"y":623,"width":1,"height":1,"destination":513},{"id":515,"name":"","x":846,"y":612,"width":1,"height":1,"destination":516},{"id":516,"name":"","x":846,"y":615,"width":1,"height":1,"destination":515},{"id":517,"name":"","x":864,"y":614,"width":1,"height":1,"destination":518},{"id":518,"name":"","x":858,"y":607,"width":1,"height":1,"destination":517},{"id":519,"name":"","x":861,"y":626,"width":1,"height":1,"destination":520},{"id":520,"name":"","x":856,"y":626,"width":1,"height":1,"destination":519},{"id":521,"name":"","x":866,"y":632,"width":1,"height":1,"destination":522},{"id":522,"name":"","x":859,"y":632,"width":1,"height":1,"destination":521},{"id":523,"name":"","x":848,"y":627,"width":1,"height":1,"destination":526},{"id":524,"name":"","x":863,"y":634,"width":1,"height":1,"destination":525},{"id":525,"name":"","x":839,"y":645,"width":1,"height":1,"destination":524},{"id":526,"name":"","x":824,"y":638,"width":1,"height":1,"destination":523},{"id":529,"name":"","x":291,"y":14,"width":1,"height":1,"destination":530},{"id":530,"name":"","x":293,"y":10,"width":1,"height":1,"destination":529},{"id":531,"name":"","x":295,"y":13,"width":1,"height":1,"destination":532},{"id":532,"name":"","x":300,"y":11,"width":1,"height":1,"destination":531},{"id":536,"name":"","x":597,"y":740,"width":1,"height":1,"destination":537,"quest":"seaactivities","stage":4},{"id":537,"name":"","x":762,"y":712,"width":1,"height":1,"destination":536,"quest":"seaactivities","stage":4},{"id":538,"name":"","x":569,"y":740,"width":1,"height":1,"destination":539},{"id":539,"name":"","x":20,"y":244,"width":1,"height":1,"destination":538},{"id":542,"name":"","x":407,"y":214,"width":1,"height":1,"destination":543,"reqQuest":"evilsanta"},{"id":543,"name":"","x":803,"y":706,"width":1,"height":1,"destination":542},{"id":544,"name":"","x":870,"y":650,"width":1,"height":1,"destination":545,"quest":"evilsanta","stage":3},{"id":545,"name":"","x":652,"y":511,"width":1,"height":1,"destination":544,"quest":"evilsanta","reqItem":"candykey","stage":3},{"id":546,"name":"","x":813,"y":703,"width":1,"height":1,"destination":547},{"id":547,"name":"","x":410,"y":130,"width":1,"height":1,"destination":546,"quest":"evilsanta","stage":2},{"id":550,"name":"","x":256,"y":196,"width":1,"height":1,"destination":551},{"id":551,"name":"","x":875,"y":685,"width":1,"height":1,"destination":550},{"id":552,"name":"","x":901,"y":707,"width":1,"height":1,"destination":553},{"id":553,"name":"","x":892,"y":604,"width":1,"height":1,"destination":552},{"id":556,"name":"","x":587,"y":748,"width":1,"height":1,"destination":557,"reqAchievement":"mermaidguard"},{"id":557,"name":"","x":592,"y":748,"width":1,"height":1,"destination":556,"reqAchievement":"mermaidguard"},{"id":558,"name":"","x":450,"y":10,"width":1,"height":1,"destination":559},{"id":559,"name":"","x":469,"y":10,"width":1,"height":1,"destination":558},{"id":1025,"name":"","x":258,"y":255,"width":1,"height":1,"destination":1026},{"id":1026,"name":"","x":1042,"y":704,"width":1,"height":1,"destination":1025},{"id":1027,"name":"","x":1015,"y":679,"width":1,"height":1,"destination":1028,"reqAchievement":"roadtohell"},{"id":1028,"name":"","x":957,"y":662,"width":1,"height":1,"destination":1027},{"id":1029,"name":"","x":835,"y":710,"width":1,"height":1,"achievement":"iceworld","destination":1030},{"id":1030,"name":"","x":487,"y":202,"width":1,"height":1,"achievement":"iceworld","destination":1029},{"id":1031,"name":"","x":247,"y":36,"width":1,"height":1,"destination":1032},{"id":1032,"name":"","x":247,"y":591,"width":1,"height":1,"destination":1031},{"id":1033,"name":"","x":275,"y":38,"width":1,"height":1,"destination":1034},{"id":1034,"name":"","x":260,"y":591,"width":1,"height":1,"destination":1033},{"id":1038,"name":"","x":183,"y":17,"width":1,"height":1,"destination":1039},{"id":1039,"name":"","x":571,"y":589,"width":1,"height":1,"destination":1038},{"id":1040,"name":"","x":271,"y":19,"width":1,"height":1,"destination":1041},{"id":1041,"name":"","x":592,"y":611,"width":1,"height":1,"destination":1040},{"id":1044,"name":"","x":51,"y":17,"width":1,"height":1,"destination":1045},{"id":1045,"name":"","x":680,"y":18,"width":1,"height":1,"destination":1044},{"id":1048,"name":"","x":230,"y":78,"width":1,"height":1,"destination":1049,"reqQuest":"minersquest2"},{"id":1049,"name":"","x":573,"y":523,"width":1,"height":1,"destination":1048,"reqQuest":"minersquest2"},{"id":1050,"name":"","x":558,"y":552,"width":1,"height":1,"destination":1051,"level":50,"skill":"Mining"},{"id":1051,"name":"","x":544,"y":504,"width":1,"height":1,"destination":1050,"level":50,"skill":"Mining"},{"id":1053,"name":"","x":152,"y":205,"width":1,"height":1,"destination":1054},{"id":1054,"name":"","x":1019,"y":572,"width":1,"height":1,"destination":1053},{"id":1055,"name":"","x":1050,"y":585,"width":1,"height":1,"destination":1056},{"id":1056,"name":"","x":216,"y":225,"width":1,"height":1,"destination":1055},{"id":1057,"name":"","x":986,"y":618,"width":1,"height":1,"destination":1058,"quest":"royaldrama","stage":2},{"id":1058,"name":"","x":994,"y":611,"width":1,"height":1,"destination":1057,"quest":"royaldrama","stage":2},{"id":1059,"name":"","x":1016,"y":679,"width":1,"height":1,"destination":1028,"reqAchievement":"roadtohell"},{"id":1062,"name":"","x":606,"y":458,"width":1,"height":1,"destination":1063},{"id":1063,"name":"","x":458,"y":202,"width":1,"height":1,"destination":1062},{"id":1065,"name":"","x":754,"y":574,"width":1,"height":1,"destination":1066},{"id":1066,"name":"","x":504,"y":157,"width":1,"height":1,"destination":1065},{"id":1074,"name":"","x":45,"y":529,"width":1,"height":1,"destination":1075},{"id":1075,"name":"","x":44,"y":533,"width":1,"height":1,"destination":1074},{"id":1076,"name":"","x":48,"y":529,"width":1,"height":1,"destination":1077},{"id":1077,"name":"","x":49,"y":533,"width":1,"height":1,"destination":1076}],"chest":[{"id":273,"name":"","x":92,"y":650,"width":1,"height":1,"achievement":"sandtreasure","items":"leatherarmor,morningstar,leatherarcherarmor,plasticbow"},{"id":304,"name":"","x":175,"y":635,"width":1,"height":1,"mimic":true},{"id":348,"name":"","x":228,"y":156,"width":1,"height":1,"mimic":true},{"id":355,"name":"","x":706,"y":555,"width":1,"height":1,"mimic":true},{"id":390,"name":"","x":209,"y":713,"width":1,"height":1,"achievement":"underwatertreasure","items":"trident,ring1,seahorsebow"},{"id":392,"name":"","x":196,"y":756,"width":1,"height":1,"items":"guardarmor,flask,scimitar"},{"id":421,"name":"","x":707,"y":630,"width":1,"height":1,"achievement":"wormholes","items":"leatherarmor,morningstar,leatherarcherarmor,plasticbow"},{"id":455,"name":"","x":411,"y":732,"width":1,"height":1,"mimic":true},{"id":456,"name":"","x":460,"y":725,"width":1,"height":1,"mimic":true},{"id":466,"name":"","x":677,"y":671,"width":1,"height":1,"mimic":true},{"id":527,"name":"","x":837,"y":608,"width":1,"height":1,"achievement":"piratestreasure","items":"cure,manaflask"},{"id":528,"name":"","x":855,"y":611,"width":1,"height":1,"mimic":true}],"chests":[{"id":248,"name":"","x":14,"y":12,"width":5,"height":3,"achievement":"hiddenreward","items":"sword2,leatherarmor","spawnX":17,"spawnY":10},{"id":249,"name":"","x":91,"y":108,"width":4,"height":2,"items":"plasticbow","spawnX":91,"spawnY":106},{"id":250,"name":"","x":182,"y":67,"width":7,"height":5,"achievement":"ogresgateway","items":"bluesword,platearmor","spawnX":185,"spawnY":69},{"id":282,"name":"","x":239,"y":183,"width":5,"height":3,"items":"sidesword,greenwingarcherarmor,greenwingarmor","spawnX":239,"spawnY":182},{"id":319,"name":"","x":259,"y":151,"width":2,"height":6,"achievement":"frozentundra","items":"sword2,leatherarmor","spawnX":262,"spawnY":151},{"id":494,"name":"","x":784,"y":676,"width":1,"height":1,"items":"bigflask,flask,manaflask","spawnX":806,"spawnY":75},{"id":549,"name":"","x":892,"y":608,"width":1,"height":1,"items":"lightningbead,cinnabarore,steelboots,poisonarrow","spawnX":912,"spawnY":10}],"pvp":[{"id":316,"name":"","x":549,"y":665,"width":54,"height":42},{"id":533,"name":"","x":226,"y":7,"width":46,"height":46},{"id":534,"name":"","x":272,"y":5,"width":49,"height":77},{"id":535,"name":"","x":9,"y":315,"width":112,"height":64}],"overlay":[{"id":310,"name":"","x":24,"y":548,"width":189,"height":104,"darkness":0.4,"type":"inside"},{"id":367,"name":"","x":99,"y":672,"width":8,"height":16,"darkness":0.4,"type":"inside"},{"id":434,"name":"","x":401,"y":554,"width":117,"height":199,"darkness":0.35,"type":"inside"},{"id":435,"name":"","x":64,"y":741,"width":31,"height":17,"darkness":0.4,"type":"inside"},{"id":436,"name":"","x":603,"y":536,"width":105,"height":32,"darkness":0.4,"type":"inside"},{"id":467,"name":"","x":319,"y":108,"width":98,"height":145,"polygon":[{"x":319,"y":108},{"x":418,"y":110},{"x":423,"y":143},{"x":420,"y":205},{"x":415,"y":207},{"x":410,"y":249},{"x":318,"y":253},{"x":313,"y":226},{"x":321,"y":220}],"darkness":0.2,"fog":"fog","type":"freezing"},{"id":1042,"name":"","x":941,"y":569,"width":115,"height":199,"darkness":0.4,"type":"inside"},{"id":1067,"name":"","x":736,"y":480,"width":94,"height":102,"darkness":0.4,"type":"inside"},{"id":1068,"name":"","x":797,"y":682,"width":108,"height":81,"darkness":0.4,"type":"inside"},{"id":1069,"name":"","x":629,"y":664,"width":100,"height":63,"darkness":0.4,"type":"inside"}],"camera":[],"lights":[],"dynamic":[{"id":274,"name":"","x":71,"y":127,"width":3,"height":2,"achievement":"crabproblem","mapping":275},{"id":275,"name":"","x":1050,"y":4,"width":3,"height":2},{"id":280,"name":"","x":1049,"y":5,"width":1,"height":1},{"id":281,"name":"","x":196,"y":638,"width":1,"height":1,"achievement":"waterguardian","mapping":280},{"id":295,"name":"","x":290,"y":642,"width":1,"height":1,"achievement":"ogreguardian","mapping":296},{"id":296,"name":"","x":1048,"y":5,"width":1,"height":1},{"id":305,"name":"","x":1047,"y":5,"width":1,"height":1},{"id":306,"name":"","x":173,"y":36,"width":1,"height":1,"achievement":"ogresgateway","mapping":305},{"id":307,"name":"","x":177,"y":66,"width":1,"height":1,"achievement":"ogresgateway","mapping":305},{"id":317,"name":"","x":1051,"y":1,"width":2,"height":3},{"id":318,"name":"","x":262,"y":153,"width":2,"height":3,"achievement":"frozentundra","mapping":317},{"id":350,"name":"","x":1053,"y":4,"width":3,"height":2},{"id":351,"name":"","x":240,"y":46,"width":3,"height":2,"achievement":"pathofdeath","mapping":350},{"id":422,"name":"","x":1053,"y":2,"width":3,"height":2},{"id":423,"name":"","x":56,"y":303,"width":3,"height":2,"achievement":"babyseadragon","mapping":422},{"id":424,"name":"","x":186,"y":28,"width":3,"height":2,"achievement":"ogrelord","mapping":425},{"id":425,"name":"","x":1053,"y":0,"width":3,"height":2},{"id":461,"name":"","x":1049,"y":4,"width":1,"height":1},{"id":462,"name":"","x":285,"y":159,"width":1,"height":1,"mapping":461,"quest":"ancientlands"},{"id":497,"name":"","x":31,"y":41,"width":3,"height":3,"achievement":"queenant","mapping":498},{"id":498,"name":"","x":1048,"y":1,"width":3,"height":3},{"id":499,"name":"","x":39,"y":12,"width":3,"height":5,"achievement":"queenant","mapping":500},{"id":500,"name":"","x":1045,"y":0,"width":3,"height":5},{"id":501,"name":"","x":39,"y":9,"width":3,"height":2,"achievement":"queenant","mapping":502},{"id":502,"name":"","x":1053,"y":6,"width":3,"height":2},{"id":540,"name":"","x":1044,"y":0,"width":1,"height":3},{"id":541,"name":"","x":404,"y":207,"width":1,"height":3,"mapping":540,"quest":"evilsanta"},{"id":554,"name":"","x":587,"y":748,"width":1,"height":1,"achievement":"mermaidguard","mapping":296},{"id":555,"name":"","x":592,"y":748,"width":1,"height":1,"achievement":"mermaidguard","mapping":296},{"id":1035,"name":"","x":217,"y":18,"width":10,"height":4,"achievement":"ogrelord","mapping":1037},{"id":1037,"name":"","x":1046,"y":8,"width":10,"height":4},{"id":1060,"name":"","x":1014,"y":677,"width":4,"height":3,"achievement":"roadtohell","mapping":1061},{"id":1061,"name":"","x":1040,"y":0,"width":4,"height":3}],"area names":[{"id":1070,"name":"","x":54,"y":58,"width":41,"height":16},{"id":1072,"name":"","x":194,"y":147,"width":41,"height":16},{"id":1073,"name":"","x":171,"y":55,"width":41,"height":16}]},"plateau":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"96":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"115":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"135":1,"136":1,"137":1,"138":1,"139":1,"140":1,"189":2,"1056":1,"1057":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1063":1,"1064":1,"1065":1,"1066":1,"1067":1,"1068":1,"1069":1,"1070":1,"1071":1,"1072":1,"1073":1,"1074":1,"1075":1,"1076":1,"1077":1,"1078":1,"1079":1,"1080":1,"1081":1,"1082":1,"1083":1,"1084":1,"1085":1,"1086":1,"1087":1,"1088":1,"1089":1,"1090":1,"1091":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1097":1,"1098":1,"1099":1,"1100":1,"1101":1,"1102":1,"1103":1,"1104":1,"1105":1,"1106":1,"1107":1,"1108":1,"1109":1,"1110":1,"1111":1,"1112":1,"1113":1,"1114":1,"1115":1,"1116":1,"1117":1,"1124":1,"1125":1,"1126":1,"1127":1,"1128":1,"1129":1,"1136":1,"1137":1,"1138":1,"1139":1,"1140":1,"1141":1,"1142":1,"1143":1,"1144":1,"1145":1,"1146":1,"1147":1,"1148":1,"1149":1,"1150":1,"1151":1,"1152":1,"1153":1,"1154":1,"1155":1,"1156":1,"1157":1,"1158":1,"1159":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1165":1,"1166":1,"1167":1,"1168":1,"1169":1,"1170":1,"1171":1,"1172":1,"1173":1,"1174":1,"1175":1,"1176":1,"1177":1,"1178":1,"1179":1,"1180":1,"1181":1,"1182":1,"1183":1,"1184":1,"1185":1,"1186":1,"1187":1,"1188":1,"1189":1,"1190":1,"1191":1,"1192":1,"1193":1,"1194":1,"1195":1,"1196":1,"1245":2,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2145":1,"2146":1,"2147":1,"2148":1,"2149":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2164":1,"2165":1,"2166":1,"2167":1,"2168":1,"2169":1,"2170":1,"2171":1,"2172":1,"2173":1,"2180":1,"2181":1,"2182":1,"2183":1,"2184":1,"2193":1,"2194":1,"2195":1,"2196":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2205":1,"2206":1,"2207":1,"2208":1,"2209":1,"2210":1,"2211":1,"2212":1,"2213":1,"2214":1,"2215":1,"2216":1,"2217":1,"2218":1,"2219":1,"2220":1,"2221":1,"2222":1,"2223":1,"2224":1,"2225":1,"2226":1,"2227":1,"2228":1,"2229":1,"2230":1,"2231":1,"2232":1,"2233":1,"2234":1,"2235":1,"2236":1,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2247":1,"2248":1,"2249":1,"2250":1,"2251":1,"2252":1,"2268":2,"2269":2,"2270":2,"2271":2,"2272":2,"2273":2,"2274":2,"2301":2,"3168":1,"3169":1,"3170":1,"3171":1,"3172":1,"3173":1,"3174":1,"3175":1,"3176":1,"3177":1,"3178":1,"3179":1,"3180":1,"3181":1,"3182":1,"3183":1,"3188":1,"3189":1,"3190":1,"3191":1,"3204":1,"3205":1,"3206":1,"3207":1,"3208":1,"3209":1,"3210":1,"3211":1,"3212":1,"3213":1,"3214":1,"3215":1,"3216":1,"3217":1,"3222":1,"3223":1,"3224":1,"3227":1,"3228":1,"3229":1,"3230":1,"3235":1,"3236":1,"3237":1,"3238":1,"3239":1,"3240":1,"3250":1,"3253":1,"3254":1,"3255":1,"3256":1,"3257":1,"3258":1,"3259":1,"3260":1,"3261":1,"3262":1,"3263":1,"3264":1,"3265":1,"3266":1,"3267":1,"3268":1,"3269":1,"3270":1,"3271":1,"3272":1,"3273":1,"3274":1,"3275":1,"3276":1,"3277":1,"3278":1,"3279":1,"3280":1,"3281":1,"3282":1,"3285":1,"3286":1,"3287":1,"3288":1,"3289":1,"3290":1,"3291":1,"3292":1,"3293":1,"3294":1,"3295":1,"3296":1,"3297":1,"3300":1,"3301":1,"3302":1,"3303":1,"3304":1,"3305":1,"3306":1,"3307":1,"3308":1,"3323":2,"3324":2,"3325":2,"3326":2,"3327":2,"3328":2,"3329":2,"3330":2,"3331":2,"3357":2,"3358":2,"3359":2,"3360":2,"3361":2,"3362":2,"3363":2,"3364":2,"3365":2,"3366":2,"3367":2,"3368":2,"3369":2,"3370":2,"3371":2,"3372":2,"3373":2,"3374":2,"3375":2,"3376":2,"3377":2,"3378":2,"3379":2,"3380":2,"4224":1,"4225":1,"4226":1,"4227":1,"4228":1,"4233":1,"4234":1,"4235":1,"4236":1,"4237":1,"4238":1,"4245":1,"4246":1,"4261":1,"4262":1,"4263":1,"4264":1,"4265":1,"4266":1,"4267":1,"4268":1,"4269":1,"4270":1,"4271":1,"4272":1,"4279":1,"4280":1,"4283":1,"4284":1,"4285":1,"4286":1,"4287":1,"4288":1,"4289":1,"4290":1,"4291":1,"4292":1,"4293":1,"4296":1,"4309":1,"4310":1,"4311":1,"4312":1,"4313":1,"4314":1,"4315":1,"4316":1,"4317":1,"4318":1,"4319":1,"4320":1,"4321":1,"4322":1,"4323":1,"4324":1,"4327":1,"4328":1,"4329":1,"4330":1,"4331":1,"4332":1,"4333":1,"4334":1,"4335":1,"4336":1,"4337":1,"4338":1,"4341":1,"4342":1,"4343":1,"4344":1,"4345":1,"4346":1,"4347":1,"4348":1,"4349":1,"4350":1,"4351":1,"4352":1,"4353":1,"4356":1,"4357":1,"4358":1,"4359":1,"4360":1,"4361":1,"4362":1,"4363":1,"4364":1,"4378":2,"4379":2,"4380":2,"4381":2,"4382":2,"4383":2,"4384":2,"4385":2,"4386":2,"4387":2,"4388":2,"4389":2,"4390":2,"4391":2,"4392":2,"4393":2,"4404":2,"4405":2,"4406":2,"4407":2,"4408":2,"4409":2,"4410":2,"4411":2,"4412":2,"4413":2,"4414":2,"4415":2,"4416":2,"4417":2,"4418":2,"4419":2,"4420":2,"4421":2,"4422":2,"4423":2,"4424":2,"4425":2,"4426":2,"4427":2,"4428":2,"4429":2,"4430":2,"4431":2,"4432":2,"4433":2,"4434":2,"4435":2,"4436":2,"5280":1,"5281":1,"5282":1,"5283":1,"5290":1,"5291":1,"5292":1,"5293":1,"5318":1,"5319":1,"5324":1,"5325":1,"5326":1,"5327":1,"5342":1,"5343":1,"5344":1,"5345":1,"5346":1,"5347":1,"5348":1,"5349":1,"5364":1,"5365":1,"5366":1,"5367":1,"5368":1,"5369":1,"5370":1,"5371":1,"5372":1,"5373":1,"5374":1,"5375":1,"5376":1,"5377":1,"5378":1,"5379":1,"5380":1,"5383":1,"5384":1,"5385":1,"5386":1,"5387":1,"5388":1,"5389":1,"5390":1,"5391":1,"5392":1,"5393":1,"5394":1,"5395":1,"5396":1,"5397":1,"5398":1,"5399":1,"5400":1,"5401":1,"5402":1,"5403":1,"5404":1,"5411":1,"5412":1,"5413":1,"5414":1,"5415":1,"5416":1,"5417":1,"5418":1,"5419":1,"5420":1,"5433":2,"5434":2,"5435":2,"5436":2,"5437":2,"5438":2,"5439":2,"5440":2,"5441":2,"5442":2,"5443":2,"5444":2,"5445":2,"5446":2,"5447":2,"5448":2,"5449":2,"5450":2,"5458":2,"5459":2,"5460":2,"5461":2,"5462":2,"5463":2,"5464":2,"5465":2,"5466":2,"5467":2,"5468":2,"5469":2,"5470":2,"5471":2,"5472":2,"5473":2,"5474":2,"5475":2,"5476":2,"5477":2,"5478":2,"5479":2,"5480":2,"5481":2,"5482":2,"5483":2,"5484":2,"5485":2,"5486":2,"5487":2,"5488":2,"5489":2,"5490":2,"5491":2,"5492":2,"5493":2,"6336":1,"6337":1,"6338":1,"6339":1,"6399":1,"6400":1,"6401":1,"6402":1,"6403":1,"6404":1,"6405":1,"6406":1,"6425":1,"6426":1,"6427":1,"6428":1,"6429":1,"6430":1,"6431":1,"6432":1,"6433":1,"6434":1,"6435":1,"6436":1,"6437":1,"6438":1,"6439":1,"6440":1,"6441":1,"6442":1,"6443":1,"6444":1,"6445":1,"6446":1,"6447":1,"6448":1,"6449":1,"6450":1,"6451":1,"6452":1,"6453":1,"6454":1,"6455":1,"6456":1,"6457":1,"6458":1,"6459":1,"6468":1,"6469":1,"6470":1,"6471":1,"6472":1,"6473":1,"6474":1,"6475":1,"6476":1,"6488":2,"6489":2,"6490":2,"6491":2,"6492":2,"6493":2,"6500":2,"6501":2,"6502":2,"6503":2,"6504":2,"6505":2,"6506":2,"6507":2,"6513":2,"6514":2,"6515":2,"6516":2,"6517":2,"6518":2,"6519":2,"6520":2,"6521":2,"6522":2,"6523":2,"6524":2,"6525":2,"6526":2,"6527":2,"6528":2,"6529":2,"6530":2,"6531":2,"6532":2,"6533":2,"6534":2,"6535":2,"6536":2,"6537":2,"6538":2,"6539":2,"6540":2,"6541":2,"6542":2,"6543":2,"6544":2,"6545":2,"6546":2,"6547":2,"6548":2,"6549":2,"6640":2,"6641":2,"6642":2,"6643":2,"6867":1,"7392":1,"7393":1,"7394":1,"7395":1,"7482":1,"7483":1,"7486":1,"7487":1,"7488":1,"7489":1,"7490":1,"7491":1,"7492":1,"7493":1,"7494":1,"7495":1,"7496":1,"7497":1,"7498":1,"7499":1,"7500":1,"7503":1,"7504":1,"7505":1,"7506":1,"7507":1,"7508":1,"7509":1,"7510":1,"7511":1,"7512":1,"7515":1,"7525":1,"7526":1,"7527":1,"7528":1,"7529":1,"7530":1,"7531":1,"7532":1,"7543":2,"7544":2,"7545":2,"7546":2,"7547":2,"7548":2,"7559":2,"7560":2,"7561":2,"7562":2,"7563":2,"7564":2,"7568":2,"7569":2,"7570":2,"7571":2,"7572":2,"7573":2,"7578":2,"7579":2,"7587":2,"7588":2,"7589":2,"7590":2,"7591":2,"7592":2,"7597":2,"7598":2,"7599":2,"7600":2,"7601":2,"7602":2,"7603":2,"7604":2,"7605":2,"7606":2,"7695":2,"7696":2,"7698":2,"7699":2,"7700":2,"7701":2,"7702":2,"7703":2,"7704":2,"7705":2,"7922":1,"7923":1,"7924":1,"7925":1,"7926":1,"7927":1,"8448":1,"8449":1,"8450":1,"8451":1,"8539":1,"8542":1,"8543":1,"8544":1,"8545":1,"8546":1,"8547":1,"8548":1,"8549":1,"8550":1,"8551":1,"8552":1,"8553":1,"8554":1,"8555":1,"8556":1,"8559":1,"8560":1,"8561":1,"8562":1,"8563":1,"8564":1,"8565":1,"8566":1,"8567":1,"8568":1,"8571":1,"8581":1,"8582":1,"8583":1,"8584":1,"8585":1,"8586":1,"8587":1,"8588":1,"8598":2,"8599":2,"8600":2,"8601":2,"8602":2,"8603":2,"8604":2,"8616":2,"8617":2,"8618":2,"8619":2,"8620":2,"8621":2,"8622":2,"8623":2,"8624":2,"8625":2,"8626":2,"8644":2,"8645":2,"8654":2,"8655":2,"8656":2,"8657":2,"8658":2,"8659":2,"8660":2,"8661":2,"8662":2,"8755":2,"8756":2,"8757":2,"8758":2,"8759":2,"8760":2,"8761":2,"8977":1,"8978":1,"8979":1,"8980":1,"8981":1,"8982":1,"8983":1,"8984":1,"8985":1,"8986":1,"8987":1,"8988":1,"8989":1,"8990":1,"8991":1,"8992":1,"9504":1,"9505":1,"9506":1,"9507":1,"9596":1,"9597":1,"9598":1,"9599":1,"9600":1,"9601":1,"9610":1,"9611":1,"9612":1,"9613":1,"9614":1,"9615":1,"9616":1,"9617":1,"9618":1,"9619":1,"9620":1,"9621":1,"9622":1,"9623":1,"9624":1,"9625":1,"9626":1,"9637":1,"9638":1,"9639":1,"9640":1,"9641":1,"9642":1,"9643":1,"9644":1,"9653":2,"9654":2,"9655":2,"9656":2,"9657":2,"9658":2,"9659":2,"9660":2,"9675":2,"9676":2,"9677":2,"9678":2,"9679":2,"9680":2,"9681":2,"9710":2,"9711":2,"9712":2,"9713":2,"9714":2,"9715":2,"9716":2,"9717":2,"9718":2,"9812":2,"9813":2,"9814":2,"9815":2,"9816":2,"9817":2,"10033":1,"10034":1,"10035":1,"10036":1,"10037":1,"10038":1,"10039":1,"10040":1,"10041":1,"10042":1,"10043":1,"10044":1,"10045":1,"10046":1,"10047":1,"10048":1,"10560":1,"10561":1,"10562":1,"10563":1,"10655":1,"10656":1,"10671":1,"10672":1,"10673":1,"10674":1,"10675":1,"10676":1,"10677":1,"10678":1,"10679":1,"10680":1,"10681":1,"10693":1,"10694":1,"10695":1,"10696":1,"10697":1,"10698":1,"10699":1,"10700":1,"10709":2,"10710":2,"10711":2,"10712":2,"10713":2,"10714":2,"10715":2,"10731":2,"10732":2,"10733":2,"10734":2,"10735":2,"10736":2,"10766":2,"10767":2,"10768":2,"10769":2,"10770":2,"10771":2,"10772":2,"10773":2,"10774":2,"10853":1,"10854":1,"10867":2,"10868":2,"10869":2,"10870":2,"10872":2,"10873":2,"11089":1,"11090":1,"11091":1,"11094":1,"11095":1,"11096":1,"11616":1,"11617":1,"11618":1,"11619":1,"11728":1,"11729":1,"11730":1,"11731":1,"11732":1,"11733":1,"11734":1,"11750":1,"11753":1,"11754":1,"11755":1,"11756":1,"11765":2,"11766":2,"11767":2,"11768":2,"11769":2,"11770":2,"11787":2,"11788":2,"11789":2,"11790":2,"11791":2,"11792":2,"11822":2,"11823":2,"11824":2,"11825":2,"11826":2,"11827":2,"11828":2,"11829":2,"11830":2,"11909":1,"11910":1,"11911":1,"11917":2,"11918":2,"11922":2,"11923":2,"11924":2,"11925":2,"11929":2,"12145":1,"12146":1,"12672":1,"12673":1,"12674":1,"12675":1,"12676":1,"12784":1,"12785":1,"12786":1,"12787":1,"12788":1,"12789":1,"12807":1,"12808":1,"12809":1,"12810":1,"12811":1,"12812":1,"12821":2,"12822":2,"12823":2,"12824":2,"12825":2,"12826":2,"12843":2,"12844":2,"12845":2,"12846":2,"12847":2,"12848":2,"12879":2,"12880":2,"12881":2,"12882":2,"12883":2,"12884":2,"12885":2,"12886":2,"12966":1,"12967":1,"12972":2,"12973":2,"12974":2,"12975":2,"12976":2,"12977":2,"12978":2,"12985":2,"12986":2,"13201":1,"13728":1,"13729":1,"13730":1,"13731":1,"13732":1,"13733":1,"13840":1,"13841":1,"13842":1,"13843":1,"13844":1,"13845":1,"13874":2,"13875":2,"13876":2,"13877":2,"13878":2,"13879":2,"13880":2,"13881":2,"13882":2,"13900":2,"13901":2,"13902":2,"13903":2,"13936":2,"13938":2,"13939":2,"13940":2,"13941":2,"13942":2,"13943":2,"14023":1,"14027":2,"14028":2,"14029":2,"14030":2,"14041":2,"14042":2,"14043":2,"14784":1,"14785":1,"14786":1,"14787":1,"14788":1,"14789":1,"14790":1,"14896":1,"14897":1,"14900":1,"14901":1,"14930":2,"14931":2,"14932":2,"14933":2,"14934":2,"14935":2,"14936":2,"14937":2,"14957":2,"14958":2,"14992":2,"14994":2,"14995":2,"14996":2,"14997":2,"14998":2,"14999":2,"15083":2,"15084":2,"15085":2,"15096":2,"15097":2,"15098":2,"15099":2,"15100":2,"15101":2,"15102":2,"15840":1,"15841":1,"15842":1,"15843":1,"15844":1,"15845":1,"15846":1,"15953":1,"15956":1,"15987":2,"15988":2,"15989":2,"15990":2,"16028":1,"16029":1,"16030":1,"16031":1,"16049":2,"16050":2,"16051":2,"16052":2,"16053":2,"16054":2,"16138":2,"16139":2,"16140":2,"16151":2,"16152":2,"16153":2,"16154":2,"16155":2,"16156":2,"16157":2,"16896":1,"16897":1,"16898":1,"16899":1,"16900":1,"16901":1,"16936":2,"17010":1,"17011":1,"17044":2,"17045":2,"17083":1,"17084":1,"17085":1,"17086":1,"17087":1,"17088":1,"17089":1,"17090":1,"17108":2,"17109":2,"17124":2,"17125":2,"17194":2,"17195":2,"17196":2,"17202":1,"17211":2,"17212":2,"17213":2,"17214":2,"17952":1,"17953":1,"17954":1,"17955":1,"17956":1,"17957":1,"17992":2,"18140":1,"18141":1,"18142":1,"18143":1,"18144":1,"18145":1,"18146":1,"18179":2,"18180":2,"18181":2,"18182":2,"18250":2,"18251":2,"18252":2,"18254":1,"18258":1,"18259":1,"18268":2,"18269":2,"19008":1,"19009":1,"19010":1,"19011":1,"19012":1,"19013":1,"19047":2,"19048":2,"19196":1,"19197":1,"19198":1,"19199":1,"19200":1,"19201":1,"19202":1,"19234":2,"19235":2,"19236":2,"19238":2,"19239":2,"19240":2,"19241":2,"19255":2,"19256":2,"19304":2,"19305":2,"19306":2,"19307":2,"19310":1,"19311":1,"19315":1,"19316":1,"19323":2,"19324":2,"19325":2,"20064":1,"20065":1,"20066":1,"20067":1,"20068":1,"20069":1,"20102":2,"20103":2,"20104":2,"20252":1,"20253":1,"20254":1,"20255":1,"20256":1,"20257":1,"20258":1,"20259":1,"20290":2,"20291":2,"20292":2,"20294":2,"20295":2,"20296":2,"20297":2,"20298":2,"20310":2,"20311":2,"20312":2,"20313":2,"20360":2,"20361":2,"20362":2,"20366":1,"20367":1,"20371":1,"20372":1,"20373":1,"20379":2,"20380":2,"20381":2,"21120":1,"21121":1,"21122":1,"21123":1,"21124":1,"21158":2,"21159":2,"21160":2,"21308":1,"21309":1,"21310":1,"21311":1,"21312":1,"21313":1,"21314":1,"21315":1,"21316":1,"21346":2,"21347":2,"21348":2,"21349":2,"21350":2,"21351":2,"21352":2,"21353":2,"21354":2,"21355":2,"21356":2,"21357":2,"21366":2,"21367":2,"21368":2,"21369":2,"21370":2,"21422":1,"21423":1,"21424":1,"21428":1,"21429":1,"22176":1,"22177":1,"22178":1,"22179":1,"22214":2,"22215":2,"22216":2,"22217":2,"22364":1,"22365":1,"22366":1,"22367":1,"22368":1,"22369":1,"22370":1,"22371":1,"22372":1,"22373":1,"22374":1,"22375":1,"22402":2,"22403":2,"22404":2,"22405":2,"22406":2,"22407":2,"22408":2,"22409":2,"22410":2,"22411":2,"22412":2,"22413":2,"22414":2,"22421":2,"22422":2,"22423":2,"22424":2,"22425":2,"22426":2,"22464":1,"22465":1,"22466":1,"22467":1,"22479":1,"22480":1,"22481":1,"22483":1,"22484":1,"22485":1,"23232":1,"23233":1,"23234":1,"23238":1,"23239":1,"23271":2,"23272":2,"23273":2,"23274":2,"23419":1,"23420":1,"23421":1,"23428":1,"23429":1,"23430":1,"23431":1,"23459":2,"23460":2,"23461":2,"23462":2,"23463":2,"23464":2,"23465":2,"23466":2,"23467":2,"23468":2,"23469":2,"23470":2,"23471":2,"23472":2,"23473":2,"23474":2,"23475":2,"23476":2,"23477":2,"23478":2,"23479":2,"23481":2,"23482":2,"23483":2,"23517":1,"23518":1,"23519":1,"23520":1,"23521":1,"23522":1,"23523":1,"23524":1,"23529":1,"23530":1,"23531":1,"23536":1,"23537":1,"23538":1,"23539":1,"23540":1,"23541":1,"24288":1,"24289":1,"24290":1,"24293":1,"24294":1,"24295":1,"24327":2,"24328":2,"24329":2,"24330":2,"24474":1,"24475":1,"24476":1,"24477":1,"24483":1,"24484":1,"24485":1,"24486":1,"24516":2,"24517":2,"24518":2,"24519":2,"24520":2,"24521":2,"24522":2,"24523":2,"24524":2,"24525":2,"24526":2,"24527":2,"24528":2,"24529":2,"24530":2,"24531":2,"24532":2,"24533":2,"24534":2,"24535":2,"24537":2,"24538":2,"24539":2,"24540":2,"24541":2,"24542":2,"24543":2,"24573":1,"24574":1,"24575":1,"24577":1,"24578":1,"24579":1,"24580":1,"24581":1,"24582":1,"24583":1,"24584":1,"24585":1,"24586":1,"24587":1,"24588":1,"24591":1,"24592":1,"24593":1,"24594":1,"24595":1,"24597":1,"25344":1,"25345":1,"25346":1,"25348":1,"25349":1,"25350":1,"25351":1,"25383":2,"25384":2,"25385":2,"25386":2,"25530":1,"25531":1,"25532":1,"25539":1,"25540":1,"25541":1,"25577":2,"25578":2,"25579":2,"25580":2,"25581":2,"25582":2,"25583":2,"25584":2,"25585":2,"25586":2,"25587":2,"25588":2,"25589":2,"25590":2,"25591":2,"25592":2,"25593":2,"25594":2,"25595":2,"25596":2,"25597":2,"25598":2,"25599":2,"25600":2,"25601":2,"25602":2,"25603":2,"25604":2,"25605":2,"25606":2,"25607":2,"25623":1,"25624":1,"25629":1,"25630":1,"25635":1,"25636":1,"25637":1,"25638":1,"25639":1,"25641":1,"25642":1,"25643":1,"25644":1,"25645":1,"25646":1,"25647":1,"25648":1,"25649":1,"25650":1,"26400":1,"26401":1,"26402":1,"26404":1,"26405":1,"26406":1,"26407":1,"26439":2,"26440":2,"26441":2,"26567":1,"26568":1,"26569":1,"26588":1,"26595":1,"26596":1,"26597":1,"26634":2,"26635":2,"26636":2,"26637":2,"26638":2,"26639":2,"26640":2,"26641":2,"26642":2,"26643":2,"26644":2,"26645":2,"26646":2,"26647":2,"26648":2,"26649":2,"26650":2,"26651":2,"26652":2,"26653":2,"26654":2,"26655":2,"26656":2,"26657":2,"26658":2,"26659":2,"26660":2,"26661":2,"26662":2,"26663":2,"26664":2,"26679":1,"26680":1,"26685":1,"26686":1,"26687":1,"26692":1,"26693":1,"26694":1,"26698":1,"26699":1,"26700":1,"26701":1,"26702":1,"26703":1,"26704":1,"26705":1,"26706":1,"27456":1,"27457":1,"27458":1,"27460":1,"27461":1,"27462":1,"27463":1,"27495":2,"27496":2,"27622":1,"27623":1,"27624":1,"27625":1,"27626":1,"27642":1,"27643":1,"27644":1,"27651":1,"27652":1,"27653":1,"27690":2,"27691":2,"27692":2,"27693":2,"27694":2,"27695":2,"27696":2,"27697":2,"27698":2,"27699":2,"27700":2,"27701":2,"27702":2,"27703":2,"27704":2,"27705":2,"27706":2,"27707":2,"27708":2,"27709":2,"27710":2,"27711":2,"27712":2,"27713":2,"27714":2,"27715":2,"27716":2,"27717":2,"27718":2,"27719":2,"27720":2,"27721":2,"27736":1,"27737":1,"27740":1,"27741":1,"27742":1,"27743":1,"27761":1,"27762":1,"27763":1,"28512":1,"28513":1,"28514":1,"28516":1,"28517":1,"28518":1,"28519":1,"28551":2,"28552":2,"28674":1,"28675":1,"28676":1,"28677":1,"28678":1,"28679":1,"28680":1,"28681":1,"28682":1,"28683":1,"28687":1,"28697":1,"28698":1,"28699":1,"28700":1,"28701":1,"28706":1,"28707":1,"28708":1,"28709":1,"28746":2,"28747":2,"28748":2,"28749":2,"28750":2,"28751":2,"28752":2,"28753":2,"28754":2,"28755":2,"28756":2,"28757":2,"28758":2,"28759":2,"28760":2,"28761":2,"28762":2,"28763":2,"28764":2,"28765":2,"28766":2,"28767":2,"28768":2,"28769":2,"28770":2,"28771":2,"28772":2,"28773":2,"28774":2,"28775":2,"28776":2,"28777":2,"28778":2,"28793":1,"28794":1,"28795":1,"28796":1,"28797":1,"28798":1,"28799":1,"28800":1,"28818":1,"28819":1,"28820":1,"29568":1,"29569":1,"29570":1,"29573":1,"29574":1,"29575":1,"29607":2,"29608":2,"29729":1,"29730":1,"29731":1,"29732":1,"29733":1,"29734":1,"29735":1,"29736":1,"29737":1,"29738":1,"29739":1,"29740":1,"29741":1,"29742":1,"29743":1,"29744":1,"29752":1,"29753":1,"29757":1,"29758":1,"29759":1,"29760":1,"29761":1,"29762":1,"29763":1,"29764":1,"29802":2,"29803":2,"29804":2,"29805":2,"29806":2,"29807":2,"29808":2,"29809":2,"29810":2,"29811":2,"29818":2,"29819":2,"29820":2,"29821":2,"29822":2,"29823":2,"29824":2,"29825":2,"29826":2,"29827":2,"29829":2,"29830":2,"29831":2,"29832":2,"29833":2,"29834":2,"29851":1,"29852":1,"29853":1,"29854":1,"29855":1,"29856":1,"29857":1,"29869":2,"29870":2,"29871":2,"29874":1,"29875":1,"29876":1,"29877":1,"30624":1,"30625":1,"30626":1,"30627":1,"30630":1,"30632":1,"30662":2,"30663":2,"30664":2,"30784":1,"30785":1,"30786":1,"30787":1,"30788":1,"30789":1,"30790":1,"30791":1,"30792":1,"30795":1,"30796":1,"30797":1,"30798":1,"30799":1,"30800":1,"30801":1,"30808":1,"30809":1,"30813":1,"30814":1,"30815":1,"30816":1,"30858":2,"30859":2,"30860":2,"30861":2,"30862":2,"30863":2,"30864":2,"30865":2,"30866":2,"30867":2,"30875":2,"30876":2,"30877":2,"30878":2,"30879":2,"30880":2,"30881":2,"30882":2,"30883":2,"30885":2,"30886":2,"30887":2,"30888":2,"30889":2,"30890":2,"30908":1,"30909":1,"30910":1,"30911":1,"30912":1,"30919":2,"30926":2,"30927":2,"30928":2,"30930":1,"30931":1,"30932":1,"30933":1,"30934":1,"30935":1,"31680":1,"31681":1,"31682":1,"31683":1,"31684":1,"31686":1,"31687":1,"31688":1,"31717":2,"31718":2,"31719":2,"31720":2,"31840":1,"31841":1,"31842":1,"31843":1,"31844":1,"31845":1,"31846":1,"31847":1,"31848":1,"31849":1,"31850":1,"31851":1,"31852":1,"31853":1,"31854":1,"31855":1,"31856":1,"31865":1,"31866":1,"31867":1,"31868":1,"31869":1,"31870":1,"31871":1,"31914":2,"31915":2,"31916":2,"31917":2,"31918":2,"31919":2,"31920":2,"31921":2,"31922":2,"31923":2,"31931":2,"31932":2,"31933":2,"31934":2,"31935":2,"31936":2,"31937":2,"31938":2,"31939":2,"31940":2,"31941":2,"31942":2,"31943":2,"31944":2,"31945":2,"31946":2,"31947":2,"31965":1,"31966":1,"31967":1,"31974":2,"31975":2,"31976":2,"31983":2,"31988":1,"31989":1,"31990":1,"31991":1,"31992":1,"32736":1,"32737":1,"32738":1,"32739":1,"32740":1,"32773":2,"32774":2,"32775":2,"32776":2,"32777":2,"32896":1,"32897":1,"32898":1,"32899":1,"32900":1,"32901":1,"32902":1,"32903":1,"32904":1,"32905":1,"32906":1,"32907":1,"32908":1,"32909":1,"32910":1,"32911":1,"32912":1,"32922":1,"32923":1,"32924":1,"32925":1,"32926":1,"32927":1,"32969":2,"32970":2,"32971":2,"32972":2,"32973":2,"32974":2,"32975":2,"32976":2,"32977":2,"32978":2,"32987":2,"32989":2,"32990":2,"32991":2,"32992":2,"32993":2,"32994":2,"32995":2,"32996":2,"32997":2,"32998":2,"32999":2,"33000":2,"33001":2,"33002":2,"33003":2,"33004":2,"33020":1,"33021":1,"33022":1,"33023":1,"33031":2,"33032":2,"33033":2,"33039":2,"33045":1,"33046":1,"33047":1,"33048":1,"33049":1,"33792":1,"33793":1,"33794":1,"33795":1,"33796":1,"33797":1,"33829":2,"33830":2,"33831":2,"33832":2,"33833":2,"33834":2,"33951":1,"33952":1,"33953":1,"33954":1,"33955":1,"33956":1,"33957":1,"33958":1,"33959":1,"33960":1,"33961":1,"33962":1,"33963":1,"33964":1,"33965":1,"33966":1,"33967":1,"33968":1,"33978":1,"33979":1,"33980":1,"33981":1,"33982":1,"34022":2,"34023":2,"34024":2,"34025":2,"34026":2,"34027":2,"34028":2,"34029":2,"34030":2,"34031":2,"34033":2,"34034":2,"34042":2,"34043":2,"34045":2,"34046":2,"34047":2,"34048":2,"34049":2,"34050":2,"34051":2,"34052":2,"34053":2,"34054":2,"34055":2,"34056":2,"34057":2,"34058":2,"34059":2,"34060":2,"34072":1,"34073":1,"34074":1,"34075":1,"34076":1,"34077":1,"34078":1,"34079":1,"34081":2,"34088":2,"34089":2,"34090":2,"34091":2,"34095":2,"34102":1,"34103":1,"34105":1,"34313":2,"34314":2,"34315":2,"34848":1,"34849":1,"34850":1,"34851":1,"34852":1,"34853":1,"34854":1,"34884":2,"34885":2,"34886":2,"34887":2,"34888":2,"34889":2,"35006":1,"35007":1,"35008":1,"35009":1,"35012":1,"35013":1,"35014":1,"35015":1,"35016":1,"35017":1,"35018":1,"35019":1,"35020":1,"35021":1,"35022":1,"35023":1,"35024":1,"35034":1,"35035":1,"35036":1,"35077":2,"35078":2,"35079":2,"35080":2,"35081":2,"35082":2,"35083":2,"35084":2,"35085":2,"35086":2,"35087":2,"35089":2,"35090":2,"35099":2,"35100":2,"35101":2,"35102":2,"35103":2,"35104":2,"35105":2,"35106":2,"35107":2,"35108":2,"35109":2,"35110":2,"35111":2,"35112":2,"35113":2,"35114":2,"35115":2,"35127":1,"35128":1,"35129":1,"35130":1,"35131":1,"35132":1,"35133":1,"35134":1,"35135":1,"35137":2,"35138":2,"35139":2,"35140":2,"35141":2,"35143":2,"35144":2,"35145":2,"35146":2,"35147":2,"35148":2,"35149":2,"35150":2,"35151":2,"35157":1,"35158":1,"35369":2,"35370":2,"35371":2,"35372":2,"35373":2,"35374":2,"35376":1,"35377":1,"35904":1,"35905":1,"35906":1,"35907":1,"35908":1,"35909":1,"35910":1,"35911":1,"35938":2,"35939":2,"35940":2,"35941":2,"35942":2,"35943":2,"36063":1,"36064":1,"36065":1,"36066":1,"36067":1,"36068":1,"36069":1,"36070":1,"36071":1,"36072":1,"36073":1,"36074":1,"36075":1,"36076":1,"36077":1,"36078":1,"36079":1,"36080":1,"36091":1,"36106":1,"36107":1,"36108":1,"36109":1,"36110":1,"36132":2,"36133":2,"36135":2,"36136":2,"36137":2,"36138":2,"36139":2,"36140":2,"36141":2,"36142":2,"36143":2,"36144":2,"36145":2,"36146":2,"36158":2,"36159":2,"36160":2,"36161":2,"36162":2,"36163":2,"36164":2,"36165":2,"36166":2,"36167":2,"36168":2,"36169":2,"36170":2,"36183":1,"36184":1,"36185":1,"36186":1,"36187":1,"36189":1,"36190":1,"36191":1,"36194":2,"36195":2,"36196":2,"36197":2,"36198":2,"36199":2,"36202":2,"36203":2,"36204":2,"36205":2,"36206":2,"36207":2,"36212":1,"36213":1,"36214":1,"36425":2,"36426":2,"36427":2,"36430":2,"36432":1,"36433":1,"36434":1,"36960":1,"36961":1,"36962":1,"36963":1,"36964":1,"36965":1,"36966":1,"36967":1,"36993":2,"36994":2,"36995":2,"36996":2,"36997":2,"36998":2,"37122":1,"37123":1,"37124":1,"37125":1,"37126":1,"37127":1,"37128":1,"37129":1,"37130":1,"37131":1,"37132":1,"37133":1,"37134":1,"37135":1,"37136":1,"37160":1,"37161":1,"37162":1,"37163":1,"37164":1,"37165":1,"37166":1,"37167":1,"37188":2,"37189":2,"37191":2,"37192":2,"37193":2,"37194":2,"37195":2,"37196":2,"37197":2,"37198":2,"37199":2,"37200":2,"37201":2,"37202":2,"37214":2,"37215":2,"37216":2,"37217":2,"37218":2,"37219":2,"37220":2,"37221":2,"37222":2,"37223":2,"37224":2,"37225":2,"37226":2,"37240":1,"37241":1,"37242":1,"37246":1,"37247":1,"37248":1,"37259":2,"37260":2,"37261":2,"37262":2,"37263":2,"37269":1,"37270":1,"37271":1,"37480":2,"37481":2,"37482":2,"37483":2,"37486":2,"37488":1,"37489":1,"37490":1,"38016":1,"38017":1,"38018":1,"38019":1,"38020":1,"38021":1,"38022":1,"38023":1,"38049":2,"38050":2,"38051":2,"38052":2,"38053":2,"38179":1,"38180":1,"38181":1,"38182":1,"38183":1,"38184":1,"38185":1,"38186":1,"38187":1,"38188":1,"38189":1,"38190":1,"38191":1,"38215":1,"38216":1,"38217":1,"38218":1,"38219":1,"38220":1,"38221":1,"38222":1,"38223":1,"38224":1,"38245":2,"38246":2,"38247":2,"38248":2,"38249":2,"38250":2,"38251":2,"38252":2,"38253":2,"38254":2,"38255":2,"38256":2,"38257":2,"38258":2,"38270":2,"38271":2,"38272":2,"38273":2,"38274":2,"38275":2,"38276":2,"38277":2,"38278":2,"38279":2,"38280":2,"38281":2,"38282":2,"38297":1,"38303":1,"38304":1,"38305":1,"38314":2,"38315":2,"38316":2,"38317":2,"38326":1,"38327":1,"38328":1,"38536":2,"38537":2,"38538":2,"38539":2,"38540":2,"38541":2,"38542":2,"38544":1,"38545":1,"38546":1,"39072":1,"39073":1,"39074":1,"39075":1,"39076":1,"39077":1,"39078":1,"39079":1,"39105":2,"39106":2,"39107":2,"39108":2,"39109":2,"39238":1,"39239":1,"39240":1,"39243":1,"39244":1,"39245":1,"39246":1,"39268":1,"39269":1,"39270":1,"39271":1,"39272":1,"39273":1,"39274":1,"39275":1,"39276":1,"39277":1,"39278":1,"39279":1,"39280":1,"39281":1,"39302":2,"39303":2,"39304":2,"39305":2,"39306":2,"39307":2,"39308":2,"39309":2,"39310":2,"39311":2,"39312":2,"39313":2,"39314":2,"39326":2,"39327":2,"39328":2,"39329":2,"39330":2,"39331":2,"39332":2,"39333":2,"39334":2,"39335":2,"39336":2,"39337":2,"39338":2,"39358":1,"39359":1,"39360":1,"39365":1,"39369":2,"39370":2,"39371":2,"39372":2,"39379":2,"39384":1,"39385":1,"39386":1,"39592":2,"39593":2,"39594":2,"39595":2,"39596":2,"39597":2,"39598":2,"39600":1,"39601":1,"39602":1,"40128":1,"40129":1,"40130":1,"40131":1,"40132":1,"40133":1,"40134":1,"40161":2,"40162":2,"40163":2,"40164":2,"40165":2,"40297":1,"40298":1,"40299":1,"40300":1,"40301":1,"40302":1,"40323":1,"40324":1,"40325":1,"40326":1,"40327":1,"40328":1,"40329":1,"40330":1,"40331":1,"40332":1,"40333":1,"40334":1,"40335":1,"40336":1,"40337":1,"40358":2,"40359":2,"40360":2,"40361":2,"40362":2,"40363":2,"40364":2,"40365":2,"40366":2,"40367":2,"40368":2,"40369":2,"40370":2,"40371":2,"40380":2,"40381":2,"40382":2,"40383":2,"40384":2,"40385":2,"40386":2,"40387":2,"40388":2,"40389":2,"40390":2,"40391":2,"40392":2,"40393":2,"40394":2,"40395":2,"40414":1,"40415":1,"40420":1,"40421":1,"40424":2,"40425":2,"40426":2,"40427":2,"40428":2,"40432":2,"40434":2,"40435":2,"40436":2,"40441":1,"40442":1,"40443":1,"40648":2,"40649":2,"40650":2,"40651":2,"40652":2,"40653":2,"40654":2,"40656":1,"40657":1,"40658":1,"41184":1,"41185":1,"41186":1,"41187":1,"41188":1,"41189":1,"41217":2,"41218":2,"41219":2,"41220":2,"41354":1,"41355":1,"41356":1,"41357":1,"41378":1,"41379":1,"41380":1,"41381":1,"41382":1,"41383":1,"41384":1,"41385":1,"41386":1,"41387":1,"41388":1,"41389":1,"41390":1,"41391":1,"41392":1,"41414":2,"41415":2,"41416":2,"41417":2,"41418":2,"41419":2,"41420":2,"41421":2,"41422":2,"41423":2,"41424":2,"41425":2,"41426":2,"41427":2,"41428":2,"41429":2,"41434":2,"41435":2,"41436":2,"41437":2,"41438":2,"41439":2,"41440":2,"41441":2,"41442":2,"41443":2,"41444":2,"41445":2,"41446":2,"41447":2,"41448":2,"41449":2,"41450":2,"41451":2,"41452":2,"41471":1,"41475":1,"41476":1,"41477":1,"41478":1,"41480":2,"41483":2,"41484":2,"41485":2,"41487":2,"41488":2,"41489":2,"41490":2,"41491":2,"41492":2,"41496":1,"41497":1,"41498":1,"41499":1,"41704":2,"41705":2,"41706":2,"41707":2,"41708":2,"41709":2,"41710":2,"41712":1,"41713":1,"41714":1,"41715":1,"42240":1,"42241":1,"42242":1,"42272":2,"42273":2,"42274":2,"42434":1,"42435":1,"42436":1,"42437":1,"42438":1,"42439":1,"42440":1,"42441":1,"42442":1,"42443":1,"42444":1,"42445":1,"42446":1,"42447":1,"42469":2,"42470":2,"42471":2,"42472":2,"42473":2,"42474":2,"42475":2,"42476":2,"42477":2,"42478":2,"42479":2,"42480":2,"42481":2,"42482":2,"42483":2,"42484":2,"42485":2,"42486":2,"42487":2,"42488":2,"42489":2,"42490":2,"42491":2,"42492":2,"42493":2,"42494":2,"42495":2,"42496":2,"42497":2,"42498":2,"42499":2,"42500":2,"42501":2,"42502":2,"42504":2,"42505":2,"42506":2,"42507":2,"42508":2,"42527":1,"42531":1,"42532":1,"42533":1,"42536":2,"42540":2,"42541":2,"42542":2,"42543":2,"42544":2,"42545":2,"42546":2,"42547":2,"42548":2,"42551":1,"42552":1,"42553":1,"42554":1,"42555":1,"42770":1,"42771":1,"42772":1,"43296":1,"43297":1,"43491":1,"43492":1,"43493":1,"43494":1,"43495":1,"43496":1,"43497":1,"43498":1,"43499":1,"43500":1,"43524":2,"43525":2,"43526":2,"43527":2,"43528":2,"43529":2,"43530":2,"43531":2,"43532":2,"43533":2,"43534":2,"43535":2,"43536":2,"43537":2,"43538":2,"43539":2,"43540":2,"43541":2,"43542":2,"43543":2,"43544":2,"43545":2,"43546":2,"43547":2,"43548":2,"43549":2,"43550":2,"43551":2,"43552":2,"43553":2,"43554":2,"43555":2,"43556":2,"43557":2,"43558":2,"43560":2,"43561":2,"43562":2,"43563":2,"43564":2,"43583":1,"43584":1,"43586":1,"43587":1,"43588":1,"43592":2,"43596":2,"43597":2,"43598":2,"43599":2,"43600":2,"43601":2,"43602":2,"43603":2,"43606":1,"43607":1,"43608":1,"43609":1,"43610":1,"43827":1,"44352":1,"44353":1,"44548":1,"44549":1,"44550":1,"44551":1,"44552":1,"44553":1,"44554":1,"44555":1,"44580":2,"44581":2,"44582":2,"44583":2,"44584":2,"44585":2,"44586":2,"44587":2,"44588":2,"44589":2,"44590":2,"44591":2,"44592":2,"44593":2,"44594":2,"44595":2,"44596":2,"44597":2,"44598":2,"44599":2,"44600":2,"44601":2,"44602":2,"44603":2,"44604":2,"44605":2,"44606":2,"44607":2,"44608":2,"44609":2,"44610":2,"44611":2,"44612":2,"44613":2,"44614":2,"44615":2,"44616":2,"44617":2,"44618":2,"44619":2,"44620":2,"44639":1,"44640":1,"44641":1,"44642":1,"44643":1,"44644":1,"44647":2,"44648":2,"44652":2,"44653":2,"44654":2,"44661":1,"44662":1,"44663":1,"44664":1,"45408":1,"45409":1,"45604":1,"45605":1,"45606":1,"45607":1,"45608":1,"45609":1,"45610":1,"45611":1,"45637":2,"45638":2,"45639":2,"45640":2,"45641":2,"45642":2,"45643":2,"45644":2,"45645":2,"45646":2,"45647":2,"45648":2,"45649":2,"45650":2,"45651":2,"45652":2,"45653":2,"45654":2,"45655":2,"45656":2,"45657":2,"45658":2,"45659":2,"45660":2,"45661":2,"45662":2,"45663":2,"45664":2,"45665":2,"45666":2,"45667":2,"45668":2,"45669":2,"45670":2,"45671":2,"45672":2,"45673":2,"45674":2,"45675":2,"45695":1,"45696":1,"45697":1,"45698":1,"45699":1,"45700":1,"45702":2,"45703":2,"45704":2,"45705":2,"45709":2,"45716":1,"45717":1,"45718":1,"45719":1,"46464":1,"46465":1,"46492":2,"46493":2,"46494":2,"46495":2,"46660":1,"46661":1,"46662":1,"46663":1,"46664":1,"46665":1,"46666":1,"46667":1,"46694":2,"46695":2,"46696":2,"46697":2,"46698":2,"46699":2,"46700":2,"46701":2,"46702":2,"46703":2,"46704":2,"46705":2,"46706":2,"46707":2,"46708":2,"46709":2,"46710":2,"46711":2,"46712":2,"46713":2,"46714":2,"46715":2,"46716":2,"46717":2,"46718":2,"46719":2,"46721":2,"46722":2,"46723":2,"46724":2,"46725":2,"46726":2,"46727":2,"46728":2,"46729":2,"46730":2,"46751":1,"46752":1,"46753":1,"46754":1,"46755":1,"46756":1,"46758":2,"46759":2,"46760":2,"46761":2,"46767":1,"46768":1,"46772":1,"46773":1,"46774":1,"47520":1,"47521":1,"47547":2,"47548":2,"47549":2,"47717":1,"47718":1,"47719":1,"47720":1,"47721":1,"47722":1,"47750":2,"47751":2,"47752":2,"47753":2,"47755":2,"47756":2,"47757":2,"47758":2,"47759":2,"47760":2,"47761":2,"47762":2,"47763":2,"47764":2,"47765":2,"47766":2,"47767":2,"47768":2,"47769":2,"47770":2,"47771":2,"47772":2,"47773":2,"47774":2,"47778":2,"47779":2,"47780":2,"47781":2,"47782":2,"47783":2,"47784":2,"47785":2,"47786":2,"47806":1,"47807":1,"47808":1,"47809":1,"47810":1,"47811":1,"47812":1,"47815":2,"47816":2,"47817":2,"47822":1,"47823":1,"47827":1,"47828":1,"47829":1,"47830":1,"48576":1,"48577":1,"48578":1,"48600":2,"48603":2,"48604":2,"48774":1,"48775":1,"48776":1,"48777":1,"48806":2,"48807":2,"48808":2,"48809":2,"48811":2,"48812":2,"48813":2,"48814":2,"48815":2,"48816":2,"48817":2,"48818":2,"48819":2,"48820":2,"48821":2,"48822":2,"48823":2,"48825":2,"48826":2,"48827":2,"48828":2,"48829":2,"48835":2,"48836":2,"48837":2,"48838":2,"48839":2,"48840":2,"48841":2,"48842":2,"48861":1,"48862":1,"48863":1,"48864":1,"48865":1,"48866":1,"48867":1,"48872":2,"48873":2,"48878":1,"48879":1,"48883":1,"48884":1,"48885":1,"48886":1,"49632":1,"49633":1,"49634":1,"49635":1,"49655":2,"49656":2,"49657":2,"49658":2,"49659":2,"49660":2,"49863":2,"49864":2,"49865":2,"49866":2,"49867":2,"49868":2,"49869":2,"49870":2,"49871":2,"49872":2,"49873":2,"49874":2,"49875":2,"49876":2,"49877":2,"49878":2,"49879":2,"49881":2,"49882":2,"49883":2,"49884":2,"49885":2,"49891":2,"49892":2,"49893":2,"49894":2,"49895":2,"49896":2,"49897":2,"49898":2,"49914":1,"49915":1,"49916":1,"49918":1,"49919":1,"49920":1,"49921":1,"49922":1,"49934":1,"49935":1,"49940":1,"49941":1,"50688":1,"50689":1,"50690":1,"50691":1,"50692":1,"50711":2,"50712":2,"50713":2,"50714":2,"50715":2,"50716":2,"50857":2,"50858":2,"50859":2,"50920":2,"50921":2,"50922":2,"50923":2,"50924":2,"50925":2,"50926":2,"50927":2,"50928":2,"50929":2,"50930":2,"50931":2,"50932":2,"50933":2,"50934":2,"50935":2,"50936":2,"50937":2,"50938":2,"50939":2,"50940":2,"50941":2,"50947":2,"50948":2,"50949":2,"50950":2,"50951":2,"50952":2,"50953":2,"50954":2,"50955":2,"50969":1,"50970":1,"50971":1,"50975":1,"50976":1,"50977":1,"50978":1,"50985":1,"50986":1,"50990":1,"50991":1,"50992":1,"50995":1,"50996":1,"50997":1,"51744":1,"51745":1,"51746":1,"51747":1,"51748":1,"51767":2,"51768":2,"51769":2,"51770":2,"51771":2,"51772":2,"51910":2,"51911":2,"51912":2,"51913":2,"51914":2,"51915":2,"51916":2,"51981":2,"51982":2,"51983":2,"51984":2,"51985":2,"51992":2,"51993":2,"51994":2,"51995":2,"51996":2,"51997":2,"52004":2,"52005":2,"52006":2,"52007":2,"52008":2,"52009":2,"52010":2,"52011":2,"52012":2,"52025":1,"52026":1,"52027":1,"52031":1,"52032":1,"52033":1,"52040":1,"52041":1,"52042":1,"52046":1,"52047":1,"52048":1,"52049":1,"52050":1,"52051":1,"52052":1,"52053":1,"52800":1,"52801":1,"52802":1,"52803":1,"52804":1,"52822":2,"52823":2,"52828":2,"52829":2,"52965":2,"52966":2,"52967":2,"52968":2,"52969":2,"52970":2,"52971":2,"52972":2,"52973":2,"52974":2,"53038":2,"53039":2,"53049":2,"53050":2,"53061":2,"53062":2,"53063":2,"53064":2,"53065":2,"53066":2,"53067":2,"53068":2,"53082":1,"53087":1,"53088":1,"53089":1,"53090":1,"53092":1,"53093":1,"53094":1,"53095":1,"53096":1,"53097":1,"53098":1,"53102":1,"53103":1,"53104":1,"53108":1,"53857":1,"53858":1,"53859":1,"53860":1,"53861":1,"53875":2,"53876":2,"53877":2,"53878":2,"53885":2,"53886":2,"53887":2,"53888":2,"54021":2,"54022":2,"54023":2,"54024":2,"54025":2,"54026":2,"54027":2,"54028":2,"54029":2,"54030":2,"54031":2,"54118":2,"54119":2,"54120":2,"54121":2,"54122":2,"54123":2,"54142":1,"54143":1,"54144":1,"54145":1,"54146":1,"54147":1,"54148":1,"54149":1,"54150":1,"54151":1,"54152":1,"54153":1,"54154":1,"54158":1,"54159":1,"54914":1,"54915":1,"54916":1,"54917":1,"54918":1,"54930":2,"54931":2,"54932":2,"54933":2,"54934":2,"54942":2,"54943":2,"54944":2,"55076":2,"55077":2,"55078":2,"55079":2,"55080":2,"55081":2,"55082":2,"55083":2,"55084":2,"55087":2,"55088":2,"55175":2,"55176":2,"55177":2,"55178":2,"55197":1,"55198":1,"55199":1,"55200":1,"55201":1,"55202":1,"55203":1,"55204":1,"55205":1,"55206":1,"55207":1,"55208":1,"55209":1,"55214":1,"55215":1,"55216":1,"55971":1,"55972":1,"55973":1,"55974":1,"55983":2,"55984":2,"55985":2,"55989":2,"55990":2,"55999":2,"56000":2,"56001":2,"56002":2,"56003":2,"56130":2,"56131":2,"56132":2,"56133":2,"56134":2,"56135":2,"56136":2,"56137":2,"56138":2,"56139":2,"56140":2,"56143":2,"56144":2,"56252":1,"56253":1,"56254":1,"56255":1,"56257":1,"56258":1,"56259":1,"56260":1,"56261":1,"56262":1,"56263":1,"56264":1,"56265":1,"56266":1,"56270":1,"56271":1,"56272":1,"56273":1,"57027":1,"57028":1,"57029":1,"57030":1,"57038":2,"57039":2,"57040":2,"57041":2,"57045":2,"57046":2,"57056":2,"57057":2,"57058":2,"57059":2,"57180":2,"57185":2,"57186":2,"57187":2,"57188":2,"57189":2,"57190":2,"57191":2,"57192":2,"57193":2,"57194":2,"57195":2,"57196":2,"57197":2,"57198":2,"57199":2,"57308":1,"57309":1,"57310":1,"57315":1,"57316":1,"57317":1,"57318":1,"57319":1,"57320":1,"57321":1,"57322":1,"57323":1,"57325":1,"57326":1,"57327":1,"57328":1,"57329":1,"58083":1,"58084":1,"58085":1,"58086":1,"58087":1,"58094":2,"58095":2,"58096":2,"58097":2,"58098":2,"58099":2,"58100":2,"58101":2,"58102":2,"58112":2,"58113":2,"58114":2,"58115":2,"58235":2,"58236":2,"58237":2,"58238":2,"58239":2,"58240":2,"58242":2,"58243":2,"58244":2,"58245":2,"58246":2,"58247":2,"58248":2,"58249":2,"58250":2,"58251":2,"58252":2,"58253":2,"58254":2,"58364":1,"58365":1,"58366":1,"58367":1,"58372":1,"58373":1,"58374":1,"58375":1,"58376":1,"58377":1,"58378":1,"58379":1,"58380":1,"58381":1,"58382":1,"58383":1,"58384":1,"58385":1,"59140":1,"59141":1,"59142":1,"59143":1,"59144":1,"59145":1,"59153":2,"59154":2,"59155":2,"59156":2,"59157":2,"59158":2,"59159":2,"59168":2,"59169":2,"59170":2,"59171":2,"59290":2,"59291":2,"59292":2,"59293":2,"59294":2,"59295":2,"59296":2,"59298":2,"59299":2,"59300":2,"59301":2,"59302":2,"59303":2,"59304":2,"59305":2,"59420":1,"59421":1,"59422":1,"59423":1,"59424":1,"59431":1,"59432":1,"59433":1,"59434":1,"59435":1,"59440":1,"59441":1,"60197":1,"60198":1,"60199":1,"60200":1,"60201":1,"60202":1,"60214":2,"60215":2,"60216":2,"60224":2,"60227":2,"60346":2,"60347":2,"60348":2,"60349":2,"60350":2,"60351":2,"60352":2,"60353":2,"60354":2,"60355":2,"60356":2,"60357":2,"60358":2,"60359":2,"60360":2,"60476":1,"60477":1,"60478":1,"60479":1,"60480":1,"60488":1,"60489":1,"60490":1,"60497":1,"61254":1,"61255":1,"61256":1,"61257":1,"61258":1,"61259":1,"61271":2,"61279":2,"61280":2,"61283":2,"61284":2,"61403":2,"61404":2,"61405":2,"61406":2,"61407":2,"61408":2,"61409":2,"61410":2,"61411":2,"61412":2,"61413":2,"61414":2,"61415":2,"61416":2,"61483":1,"61494":1,"61495":1,"61504":1,"61532":1,"61533":1,"61534":1,"61535":1,"61552":1,"61553":1,"61554":1,"62310":1,"62311":1,"62312":1,"62313":1,"62314":1,"62315":1,"62335":2,"62336":2,"62337":2,"62338":2,"62339":2,"62340":2,"62341":2,"62460":2,"62461":2,"62462":2,"62463":2,"62464":2,"62465":2,"62466":2,"62467":2,"62468":2,"62469":2,"62470":2,"62471":2,"62472":2,"62538":1,"62539":1,"62540":1,"62549":1,"62550":1,"62551":1,"62552":1,"62559":1,"62560":1,"62561":1,"62562":1,"62563":1,"62589":1,"62590":1,"62591":1,"62594":2,"62595":2,"62607":1,"62608":1,"62609":1,"62610":1,"62611":1,"63366":1,"63367":1,"63368":1,"63369":1,"63370":1,"63392":2,"63393":2,"63394":2,"63395":2,"63396":2,"63397":2,"63398":2,"63517":2,"63518":2,"63519":2,"63520":2,"63521":2,"63522":2,"63523":2,"63524":2,"63525":2,"63526":2,"63527":2,"63593":1,"63594":1,"63595":1,"63596":1,"63597":1,"63598":1,"63599":1,"63600":1,"63601":1,"63602":1,"63603":1,"63604":1,"63605":1,"63606":1,"63607":1,"63608":1,"63609":1,"63610":1,"63611":1,"63612":1,"63613":1,"63614":1,"63615":1,"63616":1,"63617":1,"63618":1,"63619":1,"63620":1,"63646":1,"63647":1,"63649":2,"63650":2,"63651":2,"63652":2,"63655":2,"63656":2,"63657":2,"63660":1,"63661":1,"63662":1,"63663":1,"63664":1,"63665":1,"63666":1,"63667":1,"64422":1,"64423":1,"64424":1,"64425":1,"64449":2,"64450":2,"64451":2,"64454":2,"64455":2,"64456":2,"64457":2,"64464":2,"64573":2,"64574":2,"64575":2,"64576":2,"64577":2,"64578":2,"64579":2,"64580":2,"64600":1,"64649":1,"64650":1,"64651":1,"64652":1,"64653":1,"64654":1,"64655":1,"64656":1,"64657":1,"64658":1,"64659":1,"64660":1,"64661":1,"64662":1,"64663":1,"64664":1,"64665":1,"64666":1,"64667":1,"64668":1,"64669":1,"64670":1,"64671":1,"64672":1,"64674":1,"64675":1,"64676":1,"64677":1,"64697":1,"64698":1,"64703":1,"64705":2,"64706":2,"64707":2,"64708":2,"64709":2,"64710":2,"64711":2,"64712":2,"64713":2,"64714":2,"64716":1,"64717":1,"64720":1,"64721":1,"64722":1,"64723":1,"65478":1,"65479":1,"65480":1,"65481":1,"65505":2,"65506":2,"65507":2,"65510":2,"65511":2,"65512":2,"65513":2,"65516":2,"65517":2,"65518":2,"65519":2,"65520":2,"65521":2,"65629":2,"65630":2,"65631":2,"65632":2,"65633":2,"65634":2,"65635":2,"65655":1,"65656":1,"65657":1,"65658":1,"65705":1,"65706":1,"65708":1,"65709":1,"65710":1,"65711":1,"65712":1,"65713":1,"65714":1,"65715":1,"65716":1,"65717":1,"65718":1,"65719":1,"65720":1,"65721":1,"65722":1,"65723":1,"65724":1,"65725":1,"65726":1,"65727":1,"65728":1,"65729":1,"65730":1,"65731":1,"65732":1,"65733":1,"65752":1,"65753":1,"65754":1,"65759":1,"65761":2,"65762":2,"65763":2,"65768":2,"65769":2,"65770":2,"65777":1,"65778":1,"66535":1,"66536":1,"66537":1,"66561":2,"66562":2,"66563":2,"66564":2,"66565":2,"66566":2,"66567":2,"66568":2,"66569":2,"66570":2,"66571":2,"66572":2,"66573":2,"66574":2,"66577":2,"66685":2,"66686":2,"66687":2,"66688":2,"66689":2,"66690":2,"66691":2,"66710":1,"66711":1,"66712":1,"66713":1,"66714":1,"66715":1,"66723":1,"66761":1,"66762":1,"66763":1,"66764":1,"66765":1,"66766":1,"66767":1,"66768":1,"66769":1,"66770":1,"66771":1,"66772":1,"66773":1,"66774":1,"66775":1,"66776":1,"66777":1,"66778":1,"66779":1,"66780":1,"66781":1,"66782":1,"66783":1,"66784":1,"66785":1,"66786":1,"66787":1,"66788":1,"66807":1,"66808":1,"66809":1,"66810":1,"66817":2,"66818":2,"66825":2,"66826":2,"66833":1,"67591":1,"67592":1,"67593":1,"67617":2,"67618":2,"67619":2,"67620":2,"67621":2,"67622":2,"67623":2,"67624":2,"67625":2,"67626":2,"67627":2,"67628":2,"67629":2,"67630":2,"67633":2,"67741":2,"67742":2,"67743":2,"67744":2,"67745":2,"67746":2,"67747":2,"67766":1,"67767":1,"67768":1,"67769":1,"67770":1,"67771":1,"67772":1,"67773":1,"67774":1,"67775":1,"67776":1,"67777":1,"67778":1,"67779":1,"67780":1,"67817":1,"67818":1,"67819":1,"67820":1,"67821":1,"67822":1,"67823":1,"67824":1,"67825":1,"67826":1,"67827":1,"67828":1,"67829":1,"67830":1,"67831":1,"67832":1,"67833":1,"67834":1,"67835":1,"67836":1,"67837":1,"67838":1,"67839":1,"67840":1,"67841":1,"67842":1,"67843":1,"67863":1,"67864":1,"67865":1,"67866":1,"67873":2,"67882":2,"67888":1,"67889":1,"68647":1,"68648":1,"68649":1,"68673":2,"68674":2,"68675":2,"68682":2,"68683":2,"68684":2,"68685":2,"68686":2,"68687":2,"68688":2,"68689":2,"68796":2,"68797":2,"68798":2,"68799":2,"68800":2,"68801":2,"68802":2,"68803":2,"68817":1,"68818":1,"68822":1,"68823":1,"68824":1,"68825":1,"68826":1,"68827":1,"68828":1,"68829":1,"68830":1,"68831":1,"68832":1,"68833":1,"68834":1,"68835":1,"68836":1,"68837":1,"68838":1,"68872":1,"68873":1,"68874":1,"68875":1,"68876":1,"68877":1,"68878":1,"68879":1,"68880":1,"68881":1,"68882":1,"68883":1,"68884":1,"68885":1,"68886":1,"68887":1,"68888":1,"68889":1,"68890":1,"68891":1,"68892":1,"68893":1,"68894":1,"68895":1,"68896":1,"68897":1,"68898":1,"68899":1,"68919":1,"68920":1,"68921":1,"68922":1,"68923":1,"68928":2,"68929":2,"68938":2,"68939":2,"68942":1,"68943":1,"68944":1,"68945":1,"69703":1,"69704":1,"69705":1,"69706":1,"69729":2,"69730":2,"69733":1,"69734":1,"69735":1,"69736":1,"69739":2,"69740":2,"69741":2,"69742":2,"69743":2,"69744":2,"69745":2,"69746":2,"69850":2,"69851":2,"69852":2,"69853":2,"69854":2,"69855":2,"69856":2,"69857":2,"69858":2,"69859":2,"69872":1,"69873":1,"69874":1,"69875":1,"69876":1,"69877":1,"69878":1,"69880":1,"69881":1,"69882":1,"69884":1,"69885":1,"69886":1,"69887":1,"69888":1,"69889":1,"69890":1,"69891":1,"69892":1,"69893":1,"69894":1,"69895":1,"69927":1,"69928":1,"69929":1,"69930":1,"69931":1,"69932":1,"69933":1,"69934":1,"69935":1,"69936":1,"69937":1,"69938":1,"69939":1,"69940":1,"69941":1,"69942":1,"69943":1,"69944":1,"69945":1,"69946":1,"69947":1,"69948":1,"69949":1,"69950":1,"69951":1,"69952":1,"69953":1,"69954":1,"69955":1,"69975":1,"69976":1,"69977":1,"69978":1,"69979":1,"69984":2,"69985":2,"69994":2,"69995":2,"69998":1,"69999":1,"70000":1,"70001":1,"70759":1,"70760":1,"70761":1,"70762":1,"70763":1,"70785":2,"70788":1,"70789":1,"70790":1,"70791":1,"70792":1,"70793":1,"70795":2,"70796":2,"70797":2,"70798":2,"70799":2,"70800":2,"70801":2,"70802":2,"70803":2,"70905":2,"70906":2,"70907":2,"70908":2,"70909":2,"70910":2,"70911":2,"70912":2,"70913":2,"70914":2,"70915":2,"70916":2,"70927":1,"70928":1,"70929":1,"70930":1,"70931":1,"70932":1,"70933":1,"70934":1,"70935":1,"70936":1,"70937":1,"70938":1,"70939":1,"70940":1,"70941":1,"70942":1,"70943":1,"70944":1,"70945":1,"70946":1,"70947":1,"70948":1,"70949":1,"70950":1,"70951":1,"70952":1,"70982":1,"70983":1,"70984":1,"70985":1,"70986":1,"70987":1,"70988":1,"70989":1,"70990":1,"70991":1,"70992":1,"70993":1,"70994":1,"70995":1,"70996":1,"70997":1,"70998":1,"70999":1,"71000":1,"71001":1,"71002":1,"71003":1,"71004":1,"71005":1,"71006":1,"71007":1,"71008":1,"71009":1,"71010":1,"71011":1,"71030":1,"71031":1,"71032":1,"71033":1,"71034":1,"71035":1,"71041":2,"71042":2,"71050":2,"71051":2,"71053":1,"71054":1,"71055":1,"71056":1,"71057":1,"71814":1,"71815":1,"71816":1,"71817":1,"71818":1,"71819":1,"71840":2,"71841":2,"71843":1,"71844":1,"71845":1,"71846":1,"71847":1,"71848":1,"71849":1,"71852":2,"71853":2,"71854":2,"71855":2,"71856":2,"71857":2,"71858":2,"71859":2,"71860":2,"71861":2,"71862":2,"71960":2,"71961":2,"71962":2,"71963":2,"71964":2,"71965":2,"71966":2,"71967":2,"71968":2,"71969":2,"71970":2,"71971":2,"71972":2,"71973":2,"71981":1,"71982":1,"71983":1,"71984":1,"71985":1,"71986":1,"71987":1,"71988":1,"71989":1,"71990":1,"71991":1,"71992":1,"71993":1,"71994":1,"71995":1,"71996":1,"71997":1,"71998":1,"71999":1,"72000":1,"72001":1,"72002":1,"72003":1,"72006":1,"72007":1,"72008":1,"72037":1,"72038":1,"72039":1,"72040":1,"72041":1,"72042":1,"72043":1,"72044":1,"72045":1,"72046":1,"72047":1,"72048":1,"72049":1,"72050":1,"72051":1,"72052":1,"72053":1,"72055":1,"72056":1,"72057":1,"72058":1,"72059":1,"72060":1,"72061":1,"72062":1,"72063":1,"72064":1,"72065":1,"72066":1,"72067":1,"72068":1,"72085":1,"72086":1,"72087":1,"72088":1,"72089":1,"72090":1,"72091":1,"72093":2,"72097":2,"72098":2,"72099":2,"72106":2,"72107":2,"72109":1,"72110":1,"72111":1,"72112":1,"72113":1,"72869":1,"72870":1,"72871":1,"72872":1,"72873":1,"72874":1,"72875":1,"72895":2,"72896":2,"72897":2,"72900":1,"72901":1,"72902":1,"72903":1,"72904":1,"72905":1,"72906":1,"72909":2,"72910":2,"72911":2,"72912":2,"72913":2,"72914":2,"72915":2,"72916":2,"72917":2,"72918":2,"72919":2,"72920":2,"73016":2,"73019":2,"73020":2,"73021":2,"73022":2,"73023":2,"73024":2,"73025":2,"73026":2,"73027":2,"73028":2,"73029":2,"73036":1,"73037":1,"73040":1,"73041":1,"73042":1,"73043":1,"73045":1,"73046":1,"73047":1,"73048":1,"73049":1,"73050":1,"73051":1,"73052":1,"73053":1,"73055":1,"73056":1,"73057":1,"73058":1,"73059":1,"73062":1,"73063":1,"73064":1,"73065":1,"73093":1,"73094":1,"73095":1,"73096":1,"73097":1,"73098":1,"73099":1,"73100":1,"73101":1,"73102":1,"73103":1,"73104":1,"73105":1,"73106":1,"73107":1,"73108":1,"73109":1,"73110":1,"73111":1,"73112":1,"73113":1,"73114":1,"73115":1,"73116":1,"73117":1,"73118":1,"73119":1,"73120":1,"73121":1,"73123":1,"73124":1,"73125":1,"73142":1,"73143":1,"73144":1,"73145":1,"73146":1,"73147":1,"73149":2,"73154":2,"73155":2,"73156":2,"73160":2,"73161":2,"73162":2,"73165":1,"73166":1,"73167":1,"73168":1,"73925":1,"73926":1,"73927":1,"73930":1,"73931":1,"73951":2,"73952":2,"73953":2,"73957":1,"73960":1,"73961":1,"73962":1,"73963":1,"73965":2,"73966":2,"73967":2,"73968":2,"73969":2,"73970":2,"73971":2,"73972":2,"73973":2,"73974":2,"73977":2,"74073":2,"74074":2,"74075":2,"74076":2,"74077":2,"74078":2,"74083":2,"74084":2,"74092":1,"74093":1,"74096":1,"74097":1,"74098":1,"74099":1,"74100":1,"74101":1,"74102":1,"74103":1,"74104":1,"74105":1,"74106":1,"74107":1,"74108":1,"74109":1,"74110":1,"74111":1,"74112":1,"74113":1,"74114":1,"74115":1,"74116":1,"74117":1,"74118":1,"74119":1,"74120":1,"74121":1,"74122":1,"74150":1,"74151":1,"74152":1,"74153":1,"74154":1,"74155":1,"74156":1,"74157":1,"74158":1,"74159":1,"74160":1,"74161":1,"74162":1,"74163":1,"74164":1,"74165":1,"74166":1,"74167":1,"74168":1,"74169":1,"74170":1,"74171":1,"74172":1,"74173":1,"74174":1,"74175":1,"74176":1,"74177":1,"74178":1,"74179":1,"74180":1,"74181":1,"74199":1,"74200":1,"74201":1,"74202":1,"74203":1,"74205":2,"74211":2,"74212":2,"74213":2,"74214":2,"74215":2,"74216":2,"74217":2,"74220":1,"74221":1,"74222":1,"74223":1,"74224":1,"74982":1,"74983":1,"74986":1,"75007":2,"75008":2,"75009":2,"75010":2,"75013":1,"75016":1,"75017":1,"75018":1,"75021":2,"75022":2,"75023":2,"75024":2,"75025":2,"75026":2,"75027":2,"75028":2,"75029":2,"75030":2,"75033":2,"75130":2,"75131":2,"75132":2,"75133":2,"75139":2,"75140":2,"75149":1,"75150":1,"75151":1,"75152":1,"75153":1,"75154":1,"75155":1,"75156":1,"75157":1,"75158":1,"75159":1,"75160":1,"75161":1,"75162":1,"75163":1,"75164":1,"75165":1,"75166":1,"75167":1,"75168":1,"75169":1,"75170":1,"75171":1,"75172":1,"75173":1,"75174":1,"75175":1,"75176":1,"75177":1,"75178":1,"75207":1,"75208":1,"75209":1,"75210":1,"75211":1,"75212":1,"75213":1,"75214":1,"75215":1,"75216":1,"75217":1,"75218":1,"75219":1,"75220":1,"75221":1,"75222":1,"75223":1,"75224":1,"75225":1,"75226":1,"75227":1,"75228":1,"75229":1,"75230":1,"75231":1,"75232":1,"75233":1,"75234":1,"75235":1,"75236":1,"75256":1,"75257":1,"75258":1,"75259":1,"75261":2,"75262":2,"75263":2,"75270":2,"75271":2,"75272":2,"75273":2,"75276":1,"75277":1,"75278":1,"75279":1,"75280":1,"76039":1,"76040":1,"76041":1,"76063":2,"76064":2,"76065":2,"76066":2,"76067":2,"76070":1,"76071":1,"76072":1,"76073":1,"76077":2,"76078":2,"76079":2,"76080":2,"76081":2,"76082":2,"76083":2,"76084":2,"76085":2,"76086":2,"76087":2,"76088":2,"76089":2,"76187":2,"76188":2,"76195":2,"76196":2,"76206":1,"76207":1,"76208":1,"76209":1,"76210":1,"76211":1,"76212":1,"76213":1,"76214":1,"76215":1,"76216":1,"76217":1,"76218":1,"76219":1,"76220":1,"76221":1,"76222":1,"76223":1,"76224":1,"76227":1,"76228":1,"76229":1,"76230":1,"76231":1,"76232":1,"76233":1,"76263":1,"76264":1,"76265":1,"76266":1,"76267":1,"76268":1,"76269":1,"76270":1,"76271":1,"76272":1,"76273":1,"76274":1,"76275":1,"76276":1,"76277":1,"76278":1,"76279":1,"76280":1,"76281":1,"76282":1,"76283":1,"76284":1,"76285":1,"76286":1,"76287":1,"76288":1,"76289":1,"76290":1,"76291":1,"76308":1,"76313":1,"76314":1,"76315":1,"76318":2,"76319":2,"76322":1,"76323":1,"76324":1,"76327":2,"76328":2,"76332":1,"76333":1,"76334":1,"76335":1,"77095":1,"77096":1,"77097":1,"77119":2,"77120":2,"77121":2,"77122":2,"77123":2,"77132":2,"77133":2,"77134":2,"77135":2,"77136":2,"77137":2,"77138":2,"77141":2,"77142":2,"77143":2,"77144":2,"77251":2,"77252":2,"77265":1,"77266":1,"77267":1,"77268":1,"77269":1,"77270":1,"77272":1,"77273":1,"77274":1,"77276":1,"77277":1,"77278":1,"77279":1,"77280":1,"77281":1,"77282":1,"77283":1,"77284":1,"77285":1,"77286":1,"77287":1,"77288":1,"77319":1,"77320":1,"77321":1,"77322":1,"77323":1,"77324":1,"77325":1,"77326":1,"77327":1,"77328":1,"77329":1,"77330":1,"77331":1,"77332":1,"77333":1,"77334":1,"77335":1,"77336":1,"77337":1,"77338":1,"77339":1,"77340":1,"77341":1,"77342":1,"77343":1,"77344":1,"77363":1,"77364":1,"77369":1,"77370":1,"77371":1,"77377":1,"77378":1,"77379":1,"77380":1,"77381":1,"77390":1,"77391":1,"78151":1,"78152":1,"78153":1,"78175":2,"78176":2,"78177":2,"78178":2,"78179":2,"78180":2,"78187":2,"78188":2,"78189":2,"78190":2,"78191":2,"78192":2,"78193":2,"78194":2,"78197":2,"78198":2,"78199":2,"78307":2,"78308":2,"78322":1,"78323":1,"78324":1,"78325":1,"78326":1,"78327":1,"78328":1,"78329":1,"78330":1,"78331":1,"78332":1,"78333":1,"78334":1,"78335":1,"78336":1,"78337":1,"78338":1,"78339":1,"78376":1,"78377":1,"78378":1,"78379":1,"78380":1,"78381":1,"78382":1,"78383":1,"78384":1,"78385":1,"78386":1,"78387":1,"78388":1,"78389":1,"78390":1,"78391":1,"78392":1,"78393":1,"78394":1,"78395":1,"78396":1,"78397":1,"78398":1,"78399":1,"78419":1,"78420":1,"78421":1,"78425":1,"78426":1,"78431":1,"78432":1,"78433":1,"78434":1,"78435":1,"78436":1,"78437":1,"78438":1,"78446":1,"79207":1,"79208":1,"79209":1,"79232":2,"79233":2,"79234":2,"79235":2,"79236":2,"79237":2,"79238":2,"79239":2,"79240":2,"79242":2,"79243":2,"79244":2,"79245":2,"79246":2,"79247":2,"79248":2,"79249":2,"79250":2,"79251":2,"79252":2,"79253":2,"79254":2,"79363":2,"79364":2,"79366":2,"79367":2,"79368":2,"79378":1,"79381":1,"79382":1,"79383":1,"79384":1,"79385":1,"79386":1,"79387":1,"79388":1,"79389":1,"79390":1,"79391":1,"79392":1,"79393":1,"79394":1,"79433":1,"79434":1,"79435":1,"79437":1,"79438":1,"79439":1,"79440":1,"79441":1,"79442":1,"79443":1,"79444":1,"79445":1,"79446":1,"79447":1,"79448":1,"79449":1,"79450":1,"79451":1,"79453":1,"79454":1,"79455":1,"79475":1,"79476":1,"79477":1,"79478":1,"79479":1,"79480":1,"79481":1,"79482":1,"79487":1,"79488":1,"79489":1,"79490":1,"79491":1,"79492":1,"79493":1,"79494":1,"79495":1,"79496":1,"79497":1,"80262":1,"80263":1,"80264":1,"80289":2,"80290":2,"80291":2,"80292":2,"80293":2,"80294":2,"80295":2,"80296":2,"80297":2,"80298":2,"80299":2,"80303":2,"80304":2,"80305":2,"80306":2,"80307":2,"80308":2,"80309":2,"80310":2,"80419":2,"80420":2,"80421":2,"80422":2,"80423":2,"80424":2,"80425":2,"80434":1,"80435":1,"80436":1,"80437":1,"80438":1,"80439":1,"80440":1,"80441":1,"80442":1,"80443":1,"80444":1,"80445":1,"80446":1,"80447":1,"80448":1,"80449":1,"80450":1,"80489":1,"80490":1,"80491":1,"80492":1,"80493":1,"80494":1,"80495":1,"80496":1,"80497":1,"80498":1,"80499":1,"80500":1,"80501":1,"80502":1,"80503":1,"80504":1,"80505":1,"80506":1,"80507":1,"80508":1,"80509":1,"80510":1,"80511":1,"80531":1,"80532":1,"80533":1,"80534":1,"80535":1,"80536":1,"80537":1,"80538":1,"80539":1,"80540":1,"80542":1,"80543":1,"80544":1,"80545":1,"80546":1,"80547":1,"80548":1,"80554":1,"80555":1,"80556":1,"81317":1,"81318":1,"81319":1,"81345":2,"81346":2,"81347":2,"81348":2,"81349":2,"81350":2,"81351":2,"81352":2,"81353":2,"81354":2,"81360":2,"81361":2,"81362":2,"81363":2,"81364":2,"81365":2,"81366":2,"81472":2,"81475":2,"81476":2,"81477":2,"81478":2,"81481":2,"81482":2,"81490":1,"81491":1,"81492":1,"81493":1,"81494":1,"81495":1,"81496":1,"81497":1,"81498":1,"81499":1,"81500":1,"81501":1,"81502":1,"81503":1,"81504":1,"81505":1,"81506":1,"81545":1,"81546":1,"81547":1,"81548":1,"81549":1,"81550":1,"81551":1,"81552":1,"81553":1,"81554":1,"81559":1,"81560":1,"81561":1,"81562":1,"81563":1,"81564":1,"81565":1,"81566":1,"81588":1,"81589":1,"81590":1,"81591":1,"81595":1,"81596":1,"81597":1,"81598":1,"81599":1,"81610":1,"81611":1,"82372":1,"82373":1,"82374":1,"82375":1,"82401":2,"82402":2,"82405":2,"82406":2,"82407":2,"82408":2,"82417":2,"82418":2,"82419":2,"82420":2,"82421":2,"82422":2,"82527":2,"82528":2,"82529":2,"82530":2,"82531":2,"82532":2,"82533":2,"82534":2,"82537":2,"82538":2,"82546":1,"82547":1,"82548":1,"82549":1,"82550":1,"82551":1,"82552":1,"82553":1,"82554":1,"82555":1,"82556":1,"82557":1,"82558":1,"82559":1,"82560":1,"82561":1,"82562":1,"82602":1,"82603":1,"82604":1,"82605":1,"82606":1,"82607":1,"82620":1,"82621":1,"82645":1,"82646":1,"82651":1,"82652":1,"82653":1,"82654":1,"82664":1,"82665":1,"82666":1,"82667":1,"83428":1,"83429":1,"83430":1,"83431":1,"83457":2,"83458":2,"83461":2,"83462":2,"83463":2,"83474":2,"83475":2,"83476":2,"83477":2,"83478":2,"83584":2,"83585":2,"83586":2,"83587":2,"83588":2,"83589":2,"83590":2,"83591":2,"83592":2,"83593":2,"83603":1,"83604":1,"83605":1,"83606":1,"83607":1,"83608":1,"83609":1,"83610":1,"83611":1,"83612":1,"83613":1,"83614":1,"83615":1,"83616":1,"83617":1,"83618":1,"83619":1,"83659":1,"83660":1,"83701":1,"83702":1,"83719":1,"83720":1,"83721":1,"83722":1,"84484":1,"84485":1,"84486":1,"84487":1,"84513":2,"84514":2,"84515":2,"84516":2,"84517":2,"84518":2,"84530":2,"84531":2,"84532":2,"84533":2,"84534":2,"84535":2,"84641":2,"84642":2,"84643":2,"84644":2,"84645":2,"84646":2,"84647":2,"84648":2,"84660":1,"84661":1,"84664":1,"84665":1,"84666":1,"84667":1,"84668":1,"84669":1,"84670":1,"84671":1,"84672":1,"84673":1,"84674":1,"84675":1,"84676":1,"85540":1,"85541":1,"85542":1,"85543":1,"85568":2,"85569":2,"85570":2,"85571":2,"85572":2,"85573":2,"85574":2,"85586":2,"85587":2,"85588":2,"85589":2,"85590":2,"85591":2,"85697":2,"85698":2,"85699":2,"85700":2,"85701":2,"85702":2,"85703":2,"85704":2,"85716":1,"85717":1,"85720":1,"85721":1,"85722":1,"85723":1,"85724":1,"85725":1,"85726":1,"85727":1,"85728":1,"85729":1,"85730":1,"85731":1,"85732":1,"85733":1,"86595":1,"86596":1,"86597":1,"86598":1,"86599":1,"86623":2,"86624":2,"86625":2,"86626":2,"86627":2,"86628":2,"86629":2,"86630":2,"86642":2,"86643":2,"86644":2,"86645":2,"86646":2,"86647":2,"86753":2,"86754":2,"86755":2,"86756":2,"86757":2,"86758":2,"86759":2,"86760":2,"86772":1,"86773":1,"86774":1,"86775":1,"86776":1,"86777":1,"86778":1,"86779":1,"86780":1,"86781":1,"86782":1,"86783":1,"86784":1,"86785":1,"86786":1,"86787":1,"86788":1,"86789":1,"87650":1,"87651":1,"87652":1,"87653":1,"87654":1,"87655":1,"87679":2,"87680":2,"87681":2,"87682":2,"87683":2,"87684":2,"87685":2,"87698":2,"87699":2,"87700":2,"87701":2,"87702":2,"87703":2,"87809":2,"87810":2,"87811":2,"87812":2,"87813":2,"87814":2,"87815":2,"87816":2,"87817":2,"87818":2,"87819":2,"87820":2,"87821":2,"87827":1,"87828":1,"87829":1,"87830":1,"87831":1,"87832":1,"87833":1,"87834":1,"87835":1,"87836":1,"87837":1,"87838":1,"87839":1,"87840":1,"87841":1,"87842":1,"87843":1,"87844":1,"87845":1,"88704":1,"88705":1,"88706":1,"88707":1,"88708":1,"88709":1,"88712":1,"88735":2,"88736":2,"88737":2,"88738":2,"88753":2,"88754":2,"88755":2,"88756":2,"88759":2,"88865":2,"88866":2,"88867":2,"88868":2,"88869":2,"88870":2,"88871":2,"88872":2,"88873":2,"88874":2,"88875":2,"88876":2,"88877":2,"88883":1,"88884":1,"88885":1,"88886":1,"88887":1,"88888":1,"88889":1,"88890":1,"88891":1,"88892":1,"88893":1,"88894":1,"88895":1,"88896":1,"88897":1,"88898":1,"88901":1,"88902":1,"89760":1,"89761":1,"89762":1,"89763":1,"89764":1,"89765":1,"89768":1,"89769":1,"89791":2,"89792":2,"89793":2,"89808":2,"89809":2,"89810":2,"89811":2,"89812":2,"89815":2,"89921":2,"89922":2,"89923":2,"89924":2,"89925":2,"89926":2,"89927":2,"89929":2,"89939":1,"89940":1,"89941":1,"89942":1,"89943":1,"89944":1,"89945":1,"89946":1,"89947":1,"89948":1,"89949":1,"89950":1,"89951":1,"89952":1,"89953":1,"89954":1,"89955":1,"89956":1,"89957":1,"89958":1,"89959":1,"90816":1,"90817":1,"90818":1,"90819":1,"90820":1,"90821":1,"90822":1,"90823":1,"90824":1,"90825":1,"90846":2,"90847":2,"90848":2,"90864":2,"90865":2,"90866":2,"90867":2,"90868":2,"90869":2,"90870":2,"90976":2,"90977":2,"90978":2,"90979":2,"90980":2,"90981":2,"90982":2,"90983":2,"90985":2,"90994":1,"90995":1,"90996":1,"90997":1,"90998":1,"90999":1,"91000":1,"91001":1,"91002":1,"91003":1,"91004":1,"91005":1,"91006":1,"91007":1,"91008":1,"91009":1,"91010":1,"91011":1,"91012":1,"91013":1,"91014":1,"91872":1,"91873":1,"91874":1,"91875":1,"91876":1,"91877":1,"91878":1,"91879":1,"91880":1,"91881":1,"91901":2,"91902":2,"91903":2,"91904":2,"91920":2,"91921":2,"91922":2,"91923":2,"91924":2,"91925":2,"91926":2,"92031":2,"92032":2,"92033":2,"92036":2,"92037":2,"92038":2,"92039":2,"92040":2,"92041":2,"92042":2,"92050":1,"92051":1,"92053":1,"92054":1,"92055":1,"92056":1,"92057":1,"92058":1,"92059":1,"92060":1,"92061":1,"92062":1,"92065":1,"92066":1,"92067":1,"92068":1,"92069":1,"92928":1,"92929":1,"92930":1,"92931":1,"92932":1,"92933":1,"92934":1,"92935":1,"92936":1,"92937":1,"92957":2,"92958":2,"92959":2,"92960":2,"92976":2,"92977":2,"92978":2,"92979":2,"92980":2,"92981":2,"92982":2,"93088":2,"93089":2,"93092":2,"93093":2,"93094":2,"93095":2,"93096":2,"93097":2,"93098":2,"93107":1,"93109":1,"93110":1,"93111":1,"93112":1,"93113":1,"93114":1,"93115":1,"93116":1,"93117":1,"93118":1,"93121":1,"93122":1,"93123":1,"93124":1,"93125":1,"93984":1,"93985":1,"93986":1,"93987":1,"93988":1,"93989":1,"93990":1,"93991":1,"93992":1,"94014":2,"94015":2,"94031":2,"94032":2,"94033":2,"94034":2,"94035":2,"94036":2,"94037":2,"94145":2,"94146":2,"94147":2,"94148":2,"94149":2,"94150":2,"94151":2,"94152":2,"94153":2,"94164":1,"94165":1,"94166":1,"94167":1,"94168":1,"94169":1,"94170":1,"94171":1,"94172":1,"94173":1,"94174":1,"94175":1,"94176":1,"94177":1,"94178":1,"94179":1,"94180":1,"95040":1,"95041":1,"95042":1,"95043":1,"95044":1,"95045":1,"95046":1,"95047":1,"95086":2,"95087":2,"95090":2,"95091":2,"95092":2,"95093":2,"95201":2,"95202":2,"95203":2,"95204":2,"95205":2,"95206":2,"95207":2,"95208":2,"95221":1,"95222":1,"95223":1,"95224":1,"95225":1,"95226":1,"95227":1,"95228":1,"95229":1,"95230":1,"95231":1,"95232":1,"95233":1,"95234":1,"95235":1,"96096":1,"96099":1,"96100":1,"96101":1,"96102":1,"96103":1,"96139":2,"96140":2,"96141":2,"96142":2,"96143":2,"96146":2,"96147":2,"96148":2,"96149":2,"96258":2,"96259":2,"96260":2,"96261":2,"96282":1,"96283":1,"96288":1,"96289":1,"96290":1,"96291":1,"97155":1,"97156":1,"97157":1,"97158":1,"97159":1,"97194":2,"97195":2,"97196":2,"97197":2,"97198":2,"97199":2,"97200":2,"97201":2,"97202":2,"97203":2,"97204":2,"97205":2,"97345":1,"97346":1,"98208":1,"98209":1,"98210":1,"98211":1,"98212":1,"98213":1,"98214":1,"98215":1,"98250":2,"98251":2,"98254":2,"98255":2,"98256":2,"98257":2,"98258":2,"98259":2,"98260":2,"98261":2,"99264":1,"99265":1,"99266":1,"99267":1,"99268":1,"99269":1,"99270":1,"99271":1,"99306":2,"99307":2,"99310":2,"99311":2,"99312":2,"99313":2,"99314":2,"99315":2,"99318":2,"100320":1,"100321":1,"100322":1,"100323":1,"100324":1,"100325":1,"100326":1,"100327":1,"100362":2,"100363":2,"100364":2,"100365":2,"100366":2,"100367":2,"100368":2,"100369":2,"100370":2,"100371":2,"100374":2,"100375":2,"100376":2,"101376":1,"101377":1,"101378":1,"101379":1,"101380":1,"101381":1,"101382":1,"101383":1,"101417":2,"101418":2,"101419":2,"101420":2,"101421":2,"101422":2,"101423":2,"101424":2,"101425":2,"101426":2,"101427":2,"101428":2,"101429":2,"101430":2,"101431":2,"101432":2,"102432":1,"102433":1,"102434":1,"102435":1,"102436":1,"102437":1,"102438":1,"102439":1,"102440":1,"102468":2,"102469":2,"102470":2,"102471":2,"102472":2,"102473":2,"102474":2,"102475":2,"102476":2,"102477":2,"102478":2,"102479":2,"102480":2,"102481":2,"102482":2,"102483":2,"102484":2,"102485":2,"102486":2,"102487":2,"102488":2,"103488":1,"103489":1,"103490":1,"103491":1,"103492":1,"103493":1,"103494":1,"103495":1,"103496":1,"103497":1,"103525":2,"103526":2,"103527":2,"103528":2,"103529":2,"103530":2,"103531":2,"103532":2,"103533":2,"103534":2,"103535":2,"103536":2,"103537":2,"103538":2,"103539":2,"103540":2,"104544":1,"104545":1,"104546":1,"104547":1,"104548":1,"104549":1,"104550":1,"104553":1,"104581":2,"104582":2,"104583":2,"104584":2,"104585":2,"104586":2,"104587":2,"104588":2,"104589":2,"104590":2,"104591":2,"104592":2,"104593":2,"104594":2,"104595":2,"104655":1,"104656":1,"105600":1,"105601":1,"105602":1,"105603":1,"105604":1,"105605":1,"105606":1,"105609":1,"105639":2,"105640":2,"105641":2,"105642":2,"105643":2,"105644":2,"105645":2,"105646":2,"105647":2,"105648":2,"105649":2,"105650":2,"105710":1,"105711":1,"105712":1,"105713":1,"106656":1,"106657":1,"106658":1,"106659":1,"106660":1,"106661":1,"106662":1,"106663":1,"106664":1,"106665":1,"106696":2,"106697":2,"106698":2,"106699":2,"106700":2,"106701":2,"106702":2,"106703":2,"106704":2,"106705":2,"106706":2,"106765":1,"106766":1,"106767":1,"106768":1,"106769":1,"106770":1,"106771":1,"106772":1,"107720":1,"107721":1,"107753":2,"107754":2,"107755":2,"107756":2,"107757":2,"107758":2,"107759":2,"107760":2,"107761":2,"107819":1,"107820":1,"107821":1,"107822":1,"107823":1,"107824":1,"107825":1,"107826":1,"107827":1,"107828":1,"107829":1,"108776":1,"108777":1,"108778":1,"108809":2,"108810":2,"108811":2,"108812":2,"108813":2,"108814":2,"108815":2,"108816":2,"108874":1,"108875":1,"108876":1,"108877":1,"108878":1,"108879":1,"108880":1,"108881":1,"108882":1,"108883":1,"108884":1,"108885":1,"108886":1,"109832":1,"109833":1,"109834":1,"109835":1,"109865":2,"109866":2,"109867":2,"109868":2,"109869":2,"109870":2,"109871":2,"109872":2,"109929":1,"109930":1,"109931":1,"109932":1,"109933":1,"109934":1,"109935":1,"109936":1,"109937":1,"109938":1,"109939":1,"109940":1,"109941":1,"110888":1,"110889":1,"110890":1,"110891":1,"110921":2,"110922":2,"110923":2,"110924":2,"110925":2,"110926":2,"110927":2,"110928":2,"110985":1,"110986":1,"110987":1,"110988":1,"110989":1,"110990":1,"110991":1,"110992":1,"110993":1,"110994":1,"110995":1,"111944":1,"111945":1,"111946":1,"111978":2,"111979":2,"111980":2,"111981":2,"111982":2,"111983":2,"112041":1,"112042":1,"112043":1,"112044":1,"112045":1,"112046":1,"112047":1,"112048":1,"112049":1,"113000":1,"113001":1,"113034":2,"113035":2,"113036":2,"113037":2,"113038":2,"113096":1,"113097":1,"113098":1,"113099":1,"113100":1,"113101":1,"113102":1,"113103":1,"114090":2,"114091":2,"114092":2,"114093":2,"114094":2,"114151":1,"114152":1,"114153":1,"114154":1,"114155":1,"114156":1,"114157":1,"114158":1,"115146":2,"115147":2,"115148":2,"115149":2,"115150":2,"115207":1,"115208":1,"115209":1,"115210":1,"115211":1,"115212":1,"115213":1,"115214":1,"115461":1,"115462":1,"116202":2,"116203":2,"116204":2,"116205":2,"116206":2,"116263":1,"116264":1,"116265":1,"116266":1,"116267":1,"116268":1,"116269":1,"116270":1,"116485":1,"116486":1,"116487":1,"116488":1,"116497":1,"116498":1,"116514":1,"116515":1,"116516":1,"116517":1,"116518":1,"116519":1,"117258":2,"117259":2,"117260":2,"117261":2,"117262":2,"117319":1,"117320":1,"117321":1,"117322":1,"117323":1,"117324":1,"117325":1,"117326":1,"117538":1,"117539":1,"117540":1,"117541":1,"117542":1,"117543":1,"117544":1,"117545":1,"117550":1,"117551":1,"117552":1,"117553":1,"117554":1,"117555":1,"117569":1,"117570":1,"117571":1,"117572":1,"117573":1,"117574":1,"117575":1,"117576":1,"118376":1,"118377":1,"118378":1,"118379":1,"118380":1,"118381":1,"118382":1,"118593":1,"118594":1,"118595":1,"118596":1,"118597":1,"118598":1,"118599":1,"118600":1,"118601":1,"118602":1,"118603":1,"118604":1,"118605":1,"118606":1,"118607":1,"118608":1,"118609":1,"118610":1,"118611":1,"118612":1,"118625":1,"118626":1,"118627":1,"118628":1,"118629":1,"118630":1,"118631":1,"118632":1,"118633":1,"118681":1,"118682":1,"119433":1,"119434":1,"119435":1,"119436":1,"119437":1,"119438":1,"119649":1,"119650":1,"119651":1,"119652":1,"119654":1,"119655":1,"119656":1,"119657":1,"119658":1,"119659":1,"119660":1,"119663":1,"119664":1,"119665":1,"119666":1,"119667":1,"119668":1,"119681":1,"119682":1,"119683":1,"119685":1,"119686":1,"119687":1,"119688":1,"119689":1,"119690":1,"119728":1,"119736":1,"119737":1,"119738":1,"119739":1,"119740":1,"119741":1,"120394":1,"120395":1,"120489":1,"120490":1,"120491":1,"120492":1,"120493":1,"120494":1,"120705":1,"120706":1,"120707":1,"120708":1,"120710":1,"120711":1,"120712":1,"120713":1,"120714":1,"120715":1,"120716":1,"120717":1,"120718":1,"120719":1,"120720":1,"120722":1,"120723":1,"120724":1,"120736":1,"120737":1,"120738":1,"120739":1,"120741":1,"120742":1,"120743":1,"120744":1,"120745":1,"120746":1,"120747":1,"120748":1,"120749":1,"120750":1,"120751":1,"120752":1,"120753":1,"120754":1,"120755":1,"120762":1,"120763":1,"120764":1,"120765":1,"120783":1,"120784":1,"120785":1,"120791":1,"120792":1,"120793":1,"120794":1,"120795":1,"120796":1,"120797":1,"120798":1,"121448":1,"121449":1,"121450":1,"121545":1,"121546":1,"121547":1,"121548":1,"121549":1,"121550":1,"121760":1,"121761":1,"121762":1,"121763":1,"121764":1,"121765":1,"121766":1,"121767":1,"121768":1,"121769":1,"121770":1,"121771":1,"121772":1,"121773":1,"121774":1,"121775":1,"121776":1,"121777":1,"121778":1,"121779":1,"121780":1,"121791":1,"121792":1,"121793":1,"121794":1,"121795":1,"121796":1,"121797":1,"121798":1,"121799":1,"121800":1,"121801":1,"121802":1,"121803":1,"121804":1,"121805":1,"121806":1,"121807":1,"121808":1,"121809":1,"121810":1,"121811":1,"121812":1,"121817":1,"121818":1,"121819":1,"121820":1,"121821":1,"121822":1,"121838":1,"121839":1,"121841":1,"121842":1,"121843":1,"121844":1,"121845":1,"121846":1,"121847":1,"121848":1,"121849":1,"121850":1,"121851":1,"121852":1,"121853":1,"121854":1,"121855":1,"122504":1,"122505":1,"122601":1,"122602":1,"122603":1,"122604":1,"122605":1,"122606":1,"122661":3,"122664":3,"122665":3,"122666":3,"122667":3,"122668":3,"122669":3,"122815":1,"122816":1,"122817":1,"122818":1,"122819":1,"122820":1,"122821":1,"122822":1,"122823":1,"122824":1,"122825":1,"122826":1,"122827":1,"122828":1,"122829":1,"122830":1,"122831":1,"122832":1,"122833":1,"122834":1,"122835":1,"122836":1,"122837":1,"122846":1,"122847":1,"122848":1,"122849":1,"122850":1,"122851":1,"122852":1,"122853":1,"122854":1,"122855":1,"122856":1,"122857":1,"122858":1,"122859":1,"122860":1,"122861":1,"122862":1,"122863":1,"122864":1,"122865":1,"122866":1,"122867":1,"122868":1,"122869":1,"122870":1,"122871":1,"122872":1,"122873":1,"122874":1,"122875":1,"122877":1,"122878":1,"122894":1,"122895":1,"122897":1,"122898":1,"122899":1,"122900":1,"122901":1,"122902":1,"122903":1,"122904":1,"122905":1,"122906":1,"122907":1,"122908":1,"122909":1,"122910":1,"122911":1,"122912":1,"123560":1,"123561":1,"123657":1,"123658":1,"123659":1,"123660":1,"123661":1,"123662":1,"123717":3,"123720":3,"123721":3,"123722":3,"123723":3,"123724":3,"123725":3,"123872":1,"123873":1,"123874":1,"123875":1,"123876":1,"123877":1,"123878":1,"123879":1,"123880":1,"123881":1,"123882":1,"123883":1,"123884":1,"123885":1,"123886":1,"123887":1,"123888":1,"123889":1,"123890":1,"123891":1,"123892":1,"123893":1,"123894":1,"123899":1,"123900":1,"123901":1,"123902":1,"123903":1,"123904":1,"123905":1,"123906":1,"123907":1,"123908":1,"123909":1,"123910":1,"123911":1,"123912":1,"123913":1,"123914":1,"123915":1,"123916":1,"123917":1,"123918":1,"123919":1,"123920":1,"123921":1,"123922":1,"123923":1,"123924":1,"123925":1,"123926":1,"123927":1,"123928":1,"123929":1,"123930":1,"123931":1,"123933":1,"123934":1,"123951":1,"123952":1,"123953":1,"123954":1,"123955":1,"123956":1,"123957":1,"123958":1,"123959":1,"123960":1,"123961":1,"123962":1,"123964":1,"123965":1,"123966":1,"123967":1,"123968":1,"123969":1,"124616":1,"124617":1,"124712":1,"124713":1,"124714":1,"124715":1,"124716":1,"124717":1,"124718":1,"124773":3,"124774":3,"124775":3,"124776":3,"124777":3,"124778":3,"124779":3,"124780":3,"124781":3,"124929":1,"124930":1,"124931":1,"124932":1,"124933":1,"124934":1,"124935":1,"124936":1,"124937":1,"124938":1,"124939":1,"124940":1,"124941":1,"124942":1,"124943":1,"124944":1,"124945":1,"124946":1,"124947":1,"124948":1,"124949":1,"124950":1,"124951":1,"124952":1,"124953":1,"124954":1,"124955":1,"124956":1,"124957":1,"124958":1,"124959":1,"124960":1,"124961":1,"124962":1,"124963":1,"124964":1,"124965":1,"124966":1,"124967":1,"124968":1,"124969":1,"124970":1,"124971":1,"124972":1,"124973":1,"124974":1,"124975":1,"124976":1,"124977":1,"124978":1,"124979":1,"124980":1,"124981":1,"124982":1,"124983":1,"124984":1,"124985":1,"124986":1,"124987":1,"124988":1,"124989":1,"124990":1,"124991":1,"125008":1,"125009":1,"125010":1,"125011":1,"125012":1,"125013":1,"125014":1,"125015":1,"125016":1,"125017":1,"125018":1,"125019":1,"125020":1,"125021":1,"125022":1,"125023":1,"125024":1,"125025":1,"125672":1,"125673":1,"125767":1,"125768":1,"125770":1,"125771":1,"125772":1,"125773":1,"125774":1,"125829":3,"125830":3,"125831":3,"125832":3,"125833":3,"125834":3,"125835":3,"125836":3,"125837":3,"125985":1,"125986":1,"125987":1,"125988":1,"125989":1,"125990":1,"125991":1,"125992":1,"125993":1,"125994":1,"125995":1,"125996":1,"125997":1,"125998":1,"125999":1,"126000":1,"126001":1,"126002":1,"126003":1,"126004":1,"126005":1,"126006":1,"126007":1,"126008":1,"126009":1,"126010":1,"126011":1,"126012":1,"126013":1,"126014":1,"126015":1,"126016":1,"126017":1,"126018":1,"126019":1,"126020":1,"126021":1,"126022":1,"126023":1,"126024":1,"126025":1,"126026":1,"126027":1,"126028":1,"126029":1,"126030":1,"126031":1,"126032":1,"126033":1,"126034":1,"126035":1,"126036":1,"126038":1,"126039":1,"126040":1,"126041":1,"126042":1,"126043":1,"126044":1,"126045":1,"126046":1,"126047":1,"126048":1,"126064":1,"126065":1,"126066":1,"126067":1,"126068":1,"126069":1,"126070":1,"126071":1,"126072":1,"126073":1,"126074":1,"126075":1,"126076":1,"126077":1,"126078":1,"126079":1,"126080":1,"126727":1,"126728":1,"126729":1,"126823":1,"126824":1,"126826":1,"126827":1,"126828":1,"126829":1,"126875":2,"126876":2,"126885":3,"126886":3,"126887":3,"126888":3,"126889":3,"126890":3,"126891":3,"127041":1,"127042":1,"127043":1,"127044":1,"127045":1,"127046":1,"127047":1,"127048":1,"127049":1,"127050":1,"127051":1,"127052":1,"127053":1,"127054":1,"127055":1,"127056":1,"127057":1,"127058":1,"127059":1,"127060":1,"127061":1,"127062":1,"127063":1,"127064":1,"127065":1,"127066":1,"127067":1,"127068":1,"127069":1,"127070":1,"127071":1,"127072":1,"127073":1,"127074":1,"127075":1,"127076":1,"127077":1,"127078":1,"127079":1,"127080":1,"127081":1,"127082":1,"127083":1,"127084":1,"127085":1,"127086":1,"127087":1,"127088":1,"127089":1,"127090":1,"127091":1,"127092":1,"127093":1,"127094":1,"127095":1,"127096":1,"127097":1,"127098":1,"127099":1,"127100":1,"127101":1,"127102":1,"127103":1,"127104":1,"127120":1,"127121":1,"127122":1,"127123":1,"127124":1,"127125":1,"127126":1,"127127":1,"127128":1,"127129":1,"127130":1,"127131":1,"127132":1,"127133":1,"127134":1,"127135":1,"127783":1,"127784":1,"127785":1,"127786":1,"127880":1,"127881":1,"127882":1,"127883":1,"127884":1,"127928":2,"127929":2,"127930":2,"127931":2,"127932":2,"127933":2,"127941":3,"127942":3,"127943":3,"127944":3,"127945":3,"127946":3,"127947":3,"128098":1,"128099":1,"128100":1,"128101":1,"128102":1,"128103":1,"128104":1,"128105":1,"128106":1,"128107":1,"128108":1,"128109":1,"128110":1,"128111":1,"128112":1,"128113":1,"128114":1,"128115":1,"128116":1,"128117":1,"128118":1,"128119":1,"128120":1,"128121":1,"128122":1,"128123":1,"128124":1,"128125":1,"128126":1,"128127":1,"128128":1,"128129":1,"128130":1,"128131":1,"128132":1,"128133":1,"128134":1,"128135":1,"128136":1,"128137":1,"128138":1,"128142":1,"128143":1,"128144":1,"128145":1,"128146":1,"128147":1,"128148":1,"128149":1,"128150":1,"128151":1,"128152":1,"128153":1,"128154":1,"128155":1,"128156":1,"128157":1,"128158":1,"128159":1,"128160":1,"128176":1,"128177":1,"128178":1,"128179":1,"128180":1,"128181":1,"128182":1,"128183":1,"128184":1,"128185":1,"128186":1,"128187":1,"128188":1,"128189":1,"128190":1,"128191":1,"128839":1,"128840":1,"128841":1,"128842":1,"128843":1,"128936":1,"128937":1,"128938":1,"128939":1,"128983":2,"128984":2,"128985":2,"128989":2,"128990":2,"128997":3,"128998":3,"128999":3,"129000":3,"129001":3,"129002":3,"129003":3,"129155":1,"129156":1,"129157":1,"129158":1,"129159":1,"129160":1,"129161":1,"129162":1,"129163":1,"129164":1,"129165":1,"129166":1,"129167":1,"129168":1,"129169":1,"129170":1,"129171":1,"129172":1,"129173":1,"129174":1,"129175":1,"129176":1,"129177":1,"129178":1,"129179":1,"129180":1,"129181":1,"129182":1,"129183":1,"129184":1,"129185":1,"129186":1,"129187":1,"129188":1,"129189":1,"129190":1,"129191":1,"129192":1,"129193":1,"129199":1,"129200":1,"129201":1,"129202":1,"129203":1,"129204":1,"129205":1,"129206":1,"129207":1,"129208":1,"129209":1,"129210":1,"129211":1,"129212":1,"129213":1,"129214":1,"129215":1,"129216":1,"129217":1,"129231":1,"129232":1,"129233":1,"129234":1,"129235":1,"129236":1,"129237":1,"129238":1,"129239":1,"129240":1,"129241":1,"129242":1,"129243":1,"129244":1,"129245":1,"129246":1,"129247":1,"129895":1,"129896":1,"129897":1,"129898":1,"129899":1,"129992":1,"129993":1,"129994":1,"129995":1,"130038":2,"130039":2,"130040":2,"130041":2,"130045":2,"130046":2,"130054":3,"130055":3,"130056":3,"130057":3,"130058":3,"130059":3,"130060":3,"130211":1,"130212":1,"130213":1,"130214":1,"130215":1,"130216":1,"130217":1,"130218":1,"130219":1,"130220":1,"130221":1,"130222":1,"130223":1,"130224":1,"130225":1,"130226":1,"130227":1,"130228":1,"130229":1,"130230":1,"130231":1,"130232":1,"130233":1,"130234":1,"130235":1,"130236":1,"130237":1,"130238":1,"130239":1,"130240":1,"130241":1,"130242":1,"130243":1,"130244":1,"130245":1,"130246":1,"130247":1,"130248":1,"130258":1,"130259":1,"130260":1,"130261":1,"130265":1,"130266":1,"130267":1,"130268":1,"130269":1,"130270":1,"130271":1,"130272":1,"130273":1,"130274":1,"130286":1,"130287":1,"130288":1,"130289":1,"130290":1,"130291":1,"130292":1,"130293":1,"130294":1,"130295":1,"130296":1,"130297":1,"130298":1,"130299":1,"130300":1,"130301":1,"130302":1,"130303":1,"130951":1,"130952":1,"130953":1,"130954":1,"130955":1,"131048":1,"131049":1,"131050":1,"131094":2,"131095":2,"131096":2,"131097":2,"131098":2,"131099":2,"131100":2,"131101":2,"131102":2,"131111":3,"131112":3,"131113":3,"131114":3,"131115":3,"131116":3,"131267":1,"131268":1,"131269":1,"131270":1,"131271":1,"131272":1,"131273":1,"131274":1,"131275":1,"131276":1,"131277":1,"131278":1,"131279":1,"131284":1,"131285":1,"131286":1,"131288":1,"131289":1,"131290":1,"131291":1,"131292":1,"131293":1,"131294":1,"131295":1,"131296":1,"131297":1,"131298":1,"131299":1,"131300":1,"131301":1,"131302":1,"131303":1,"131304":1,"131315":1,"131316":1,"131322":1,"131323":1,"131324":1,"131325":1,"131326":1,"131327":1,"131328":1,"131329":1,"131330":1,"131342":1,"131343":1,"131344":1,"131345":1,"131346":1,"131347":1,"131348":1,"131349":1,"131350":1,"131351":1,"131352":1,"131353":1,"131354":1,"131355":1,"131356":1,"131357":1,"131358":1,"132007":1,"132008":1,"132009":1,"132010":1,"132011":1,"132104":1,"132105":1,"132150":2,"132151":2,"132152":2,"132153":2,"132154":2,"132155":2,"132156":2,"132157":2,"132158":2,"132159":2,"132164":2,"132165":2,"132174":1,"132323":1,"132324":1,"132325":1,"132326":1,"132327":1,"132328":1,"132329":1,"132330":1,"132331":1,"132332":1,"132333":1,"132334":1,"132341":1,"132342":1,"132344":1,"132345":1,"132350":1,"132351":1,"132352":1,"132359":1,"132360":1,"132379":1,"132380":1,"132381":1,"132382":1,"132383":1,"132384":1,"132385":1,"132386":1,"132398":1,"132399":1,"132400":1,"132401":1,"132402":1,"132403":1,"132404":1,"132405":1,"132406":1,"132407":1,"132409":1,"132410":1,"132411":1,"132412":1,"132413":1,"133063":1,"133064":1,"133065":1,"133066":1,"133159":1,"133160":1,"133205":2,"133206":2,"133207":2,"133208":2,"133209":2,"133210":2,"133211":2,"133212":2,"133213":2,"133214":2,"133215":2,"133216":2,"133220":2,"133221":2,"133222":2,"133229":1,"133230":1,"133231":1,"133232":1,"133379":1,"133380":1,"133381":1,"133383":1,"133384":1,"133385":1,"133386":1,"133387":1,"133388":1,"133389":1,"133398":1,"133399":1,"133400":1,"133407":1,"133436":1,"133437":1,"133438":1,"133439":1,"133440":1,"133441":1,"133442":1,"133443":1,"133454":1,"133455":1,"133456":1,"133457":1,"133458":1,"133459":1,"133460":1,"133461":1,"133462":1,"133463":1,"133465":1,"133466":1,"133467":1,"133468":1,"133469":1,"134119":1,"134120":1,"134121":1,"134260":2,"134261":2,"134262":2,"134263":2,"134264":2,"134265":2,"134266":2,"134267":2,"134268":2,"134269":2,"134270":2,"134271":2,"134272":2,"134273":2,"134274":2,"134275":2,"134276":2,"134277":2,"134278":2,"134285":1,"134286":1,"134287":1,"134288":1,"134289":1,"134400":1,"134401":1,"134434":1,"134435":1,"134436":1,"134437":1,"134438":1,"134439":1,"134440":1,"134441":1,"134442":1,"134443":1,"134444":1,"134445":1,"134492":1,"134493":1,"134494":1,"134495":1,"134496":1,"134497":1,"134498":1,"134499":1,"134500":1,"134511":1,"134512":1,"134513":1,"134514":1,"134515":1,"134516":1,"134517":1,"134518":1,"134519":1,"134520":1,"134521":1,"134522":1,"134523":1,"134524":1,"134525":1,"135175":1,"135176":1,"135177":1,"135237":1,"135238":1,"135239":1,"135240":1,"135241":1,"135316":2,"135317":2,"135318":2,"135319":2,"135323":2,"135324":2,"135325":2,"135326":2,"135327":2,"135328":2,"135329":2,"135330":2,"135331":2,"135332":2,"135333":2,"135334":2,"135341":1,"135342":1,"135343":1,"135344":1,"135345":1,"135346":1,"135456":1,"135457":1,"135466":1,"135467":1,"135468":1,"135489":1,"135490":1,"135491":1,"135492":1,"135493":1,"135494":1,"135495":1,"135496":1,"135497":1,"135498":1,"135499":1,"135500":1,"135501":1,"135548":1,"135549":1,"135551":1,"135552":1,"135553":1,"135554":1,"135555":1,"135556":1,"135568":1,"135569":1,"135570":1,"135571":1,"135572":1,"135573":1,"135574":1,"135575":1,"135576":1,"135577":1,"135578":1,"135579":1,"135580":1,"135581":1,"136231":1,"136232":1,"136233":1,"136292":1,"136293":1,"136294":1,"136295":1,"136296":1,"136297":1,"136298":1,"136372":2,"136373":2,"136374":2,"136375":2,"136379":2,"136380":2,"136381":2,"136382":2,"136383":2,"136384":2,"136385":2,"136386":2,"136387":2,"136388":2,"136389":2,"136398":1,"136399":1,"136400":1,"136401":1,"136402":1,"136512":1,"136513":1,"136521":1,"136522":1,"136523":1,"136524":1,"136525":1,"136545":1,"136546":1,"136547":1,"136548":1,"136549":1,"136550":1,"136551":1,"136552":1,"136553":1,"136554":1,"136555":1,"136556":1,"136557":1,"136604":1,"136605":1,"136607":1,"136608":1,"136609":1,"136610":1,"136611":1,"136612":1,"136624":1,"136625":1,"136626":1,"136627":1,"136628":1,"136629":1,"136630":1,"136631":1,"136632":1,"136633":1,"136634":1,"136635":1,"136636":1,"136637":1,"137287":1,"137288":1,"137289":1,"137347":1,"137348":1,"137349":1,"137350":1,"137351":1,"137352":1,"137353":1,"137354":1,"137355":1,"137356":1,"137429":2,"137430":2,"137431":2,"137432":2,"137433":2,"137434":2,"137435":2,"137436":2,"137437":2,"137438":2,"137439":2,"137440":2,"137441":2,"137442":2,"137443":2,"137444":2,"137445":2,"137454":1,"137455":1,"137456":1,"137457":1,"137458":1,"137568":1,"137569":1,"137577":1,"137578":1,"137579":1,"137580":1,"137602":1,"137603":1,"137604":1,"137605":1,"137606":1,"137607":1,"137608":1,"137609":1,"137610":1,"137611":1,"137612":1,"137613":1,"137660":1,"137661":1,"137662":1,"137663":1,"137664":1,"137665":1,"137666":1,"137667":1,"137668":1,"137680":1,"137681":1,"137682":1,"137683":1,"137684":1,"137685":1,"137686":1,"137687":1,"137688":1,"137689":1,"137690":1,"137691":1,"137692":1,"137693":1,"138343":1,"138344":1,"138345":1,"138402":1,"138403":1,"138404":1,"138405":1,"138406":1,"138407":1,"138408":1,"138409":1,"138410":1,"138411":1,"138412":1,"138413":1,"138488":2,"138489":2,"138490":2,"138491":2,"138492":2,"138493":2,"138494":2,"138496":2,"138497":2,"138498":2,"138499":2,"138500":2,"138501":2,"138510":1,"138511":1,"138512":1,"138513":1,"138514":1,"138515":1,"138624":1,"138625":1,"138633":1,"138634":1,"138635":1,"138658":1,"138659":1,"138660":1,"138661":1,"138662":1,"138663":1,"138664":1,"138665":1,"138666":1,"138667":1,"138668":1,"138715":1,"138716":1,"138717":1,"138718":1,"138719":1,"138720":1,"138721":1,"138722":1,"138723":1,"138724":1,"138725":1,"138736":1,"138737":1,"138738":1,"138739":1,"138740":1,"138741":1,"138742":1,"138743":1,"138744":1,"138745":1,"138746":1,"138747":1,"138748":1,"138749":1,"138750":1,"139399":1,"139400":1,"139401":1,"139402":1,"139457":1,"139458":1,"139459":1,"139460":1,"139461":1,"139462":1,"139463":1,"139464":1,"139465":1,"139466":1,"139467":1,"139468":1,"139469":1,"139470":1,"139549":2,"139550":2,"139551":2,"139552":2,"139553":2,"139554":2,"139555":2,"139556":2,"139566":1,"139567":1,"139568":1,"139569":1,"139570":1,"139571":1,"139572":1,"139681":1,"139682":1,"139689":1,"139690":1,"139691":1,"139715":1,"139716":1,"139717":1,"139718":1,"139719":1,"139720":1,"139721":1,"139722":1,"139723":1,"139770":1,"139771":1,"139772":1,"139773":1,"139774":1,"139775":1,"139776":1,"139777":1,"139778":1,"139779":1,"139780":1,"139781":1,"139782":1,"139792":1,"139793":1,"139794":1,"139796":1,"139797":1,"139798":1,"139799":1,"139800":1,"139801":1,"139802":1,"139803":1,"139804":1,"139805":1,"139806":1,"139807":1,"140455":1,"140456":1,"140457":1,"140458":1,"140459":1,"140509":1,"140510":1,"140511":1,"140512":1,"140513":1,"140514":1,"140515":1,"140516":1,"140517":1,"140518":1,"140520":1,"140521":1,"140522":1,"140523":1,"140524":1,"140525":1,"140526":1,"140609":2,"140610":2,"140611":2,"140621":1,"140622":1,"140623":1,"140624":1,"140625":1,"140626":1,"140627":1,"140628":1,"140738":1,"140739":1,"140744":1,"140745":1,"140746":1,"140747":1,"140772":1,"140773":1,"140774":1,"140775":1,"140776":1,"140777":1,"140778":1,"140779":1,"140826":1,"140827":1,"140828":1,"140829":1,"140830":1,"140831":1,"140832":1,"140833":1,"140834":1,"140835":1,"140836":1,"140837":1,"140849":1,"140850":1,"140851":1,"140852":1,"140853":1,"140854":1,"140855":1,"140856":1,"140857":1,"140858":1,"140859":1,"140860":1,"140861":1,"140862":1,"140863":1,"141511":1,"141512":1,"141513":1,"141514":1,"141515":1,"141564":1,"141565":1,"141566":1,"141567":1,"141568":1,"141569":1,"141570":1,"141571":1,"141572":1,"141573":1,"141574":1,"141576":1,"141577":1,"141578":1,"141579":1,"141580":1,"141581":1,"141582":1,"141583":1,"141676":1,"141677":1,"141678":1,"141679":1,"141680":1,"141681":1,"141682":1,"141683":1,"141684":1,"141794":1,"141795":1,"141796":1,"141797":1,"141798":1,"141799":1,"141800":1,"141801":1,"141802":1,"141803":1,"141828":1,"141829":1,"141830":1,"141831":1,"141832":1,"141833":1,"141834":1,"141835":1,"141859":1,"141860":1,"141861":1,"141868":1,"141869":1,"141870":1,"141883":1,"141884":1,"141885":1,"141886":1,"141887":1,"141888":1,"141889":1,"141890":1,"141891":1,"141892":1,"141906":1,"141907":1,"141908":1,"141909":1,"141910":1,"141911":1,"141912":1,"141913":1,"141914":1,"141915":1,"141916":1,"141917":1,"141918":1,"142567":1,"142568":1,"142569":1,"142570":1,"142619":1,"142620":1,"142621":1,"142622":1,"142623":1,"142624":1,"142625":1,"142626":1,"142627":1,"142628":1,"142629":1,"142630":1,"142631":1,"142632":1,"142633":1,"142634":1,"142635":1,"142636":1,"142637":1,"142638":1,"142639":1,"142640":1,"142665":1,"142732":1,"142733":1,"142734":1,"142735":1,"142739":1,"142740":1,"142851":1,"142852":1,"142853":1,"142854":1,"142855":1,"142856":1,"142857":1,"142858":1,"142859":1,"142860":1,"142884":1,"142885":1,"142886":1,"142887":1,"142888":1,"142889":1,"142890":1,"142891":1,"142914":1,"142915":1,"142916":1,"142917":1,"142918":1,"142923":1,"142924":1,"142925":1,"142926":1,"142927":1,"142940":1,"142941":1,"142942":1,"142943":1,"142944":1,"142945":1,"142946":1,"142947":1,"142948":1,"142962":1,"142963":1,"142964":1,"142965":1,"142966":1,"142967":1,"142968":1,"142969":1,"142970":1,"142971":1,"142972":1,"142973":1,"143623":1,"143624":1,"143625":1,"143674":1,"143675":1,"143676":1,"143677":1,"143678":1,"143679":1,"143680":1,"143681":1,"143682":1,"143683":1,"143684":1,"143685":1,"143686":1,"143687":1,"143688":1,"143689":1,"143690":1,"143691":1,"143692":1,"143693":1,"143694":1,"143695":1,"143696":1,"143720":1,"143721":1,"143789":1,"143790":1,"143791":1,"143795":1,"143796":1,"143797":1,"143908":1,"143909":1,"143910":1,"143911":1,"143912":1,"143913":1,"143914":1,"143915":1,"143916":1,"143917":1,"143941":1,"143942":1,"143943":1,"143944":1,"143945":1,"143946":1,"143947":1,"143967":1,"143968":1,"143969":1,"143970":1,"143971":1,"143972":1,"143973":1,"143974":1,"143975":1,"143976":1,"143977":1,"143978":1,"143979":1,"143980":1,"143981":1,"143982":1,"143983":1,"143984":1,"143996":1,"143997":1,"143998":1,"143999":1,"144001":1,"144002":1,"144003":1,"144004":1,"144018":1,"144019":1,"144020":1,"144021":1,"144022":1,"144023":1,"144024":1,"144025":1,"144026":1,"144027":1,"144028":1,"144029":1,"144679":1,"144680":1,"144730":1,"144731":1,"144732":1,"144733":1,"144734":1,"144735":1,"144737":1,"144738":1,"144739":1,"144740":1,"144741":1,"144742":1,"144743":1,"144744":1,"144745":1,"144746":1,"144747":1,"144748":1,"144749":1,"144750":1,"144751":1,"144775":1,"144776":1,"144777":1,"144845":1,"144846":1,"144847":1,"144848":1,"144849":1,"144850":1,"144851":1,"144852":1,"144853":1,"144854":1,"144964":1,"144965":1,"144966":1,"144969":1,"144970":1,"144971":1,"144972":1,"144998":1,"144999":1,"145000":1,"145001":1,"145002":1,"145003":1,"145004":1,"145022":1,"145023":1,"145024":1,"145025":1,"145026":1,"145027":1,"145028":1,"145029":1,"145030":1,"145031":1,"145032":1,"145033":1,"145034":1,"145035":1,"145036":1,"145037":1,"145038":1,"145039":1,"145040":1,"145052":1,"145053":1,"145054":1,"145055":1,"145056":1,"145057":1,"145058":1,"145059":1,"145060":1,"145074":1,"145075":1,"145076":1,"145077":1,"145078":1,"145079":1,"145080":1,"145081":1,"145082":1,"145083":1,"145084":1,"145085":1,"145735":1,"145787":1,"145788":1,"145789":1,"145790":1,"145791":1,"145793":1,"145794":1,"145795":1,"145796":1,"145797":1,"145798":1,"145799":1,"145800":1,"145801":1,"145802":1,"145803":1,"145804":1,"145805":1,"145806":1,"145828":1,"145829":1,"145830":1,"145831":1,"145832":1,"145833":1,"145901":1,"145902":1,"145903":1,"145904":1,"145905":1,"145906":1,"145907":1,"145908":1,"145909":1,"145910":1,"145917":1,"145918":1,"146020":1,"146021":1,"146022":1,"146025":1,"146026":1,"146027":1,"146028":1,"146054":1,"146055":1,"146056":1,"146057":1,"146058":1,"146059":1,"146060":1,"146061":1,"146077":1,"146078":1,"146079":1,"146080":1,"146081":1,"146082":1,"146083":1,"146084":1,"146085":1,"146086":1,"146087":1,"146093":1,"146094":1,"146095":1,"146096":1,"146108":1,"146109":1,"146110":1,"146111":1,"146112":1,"146113":1,"146114":1,"146115":1,"146116":1,"146129":1,"146130":1,"146131":1,"146132":1,"146133":1,"146134":1,"146135":1,"146136":1,"146137":1,"146138":1,"146139":1,"146140":1,"146141":1,"146844":1,"146845":1,"146846":1,"146847":1,"146848":1,"146849":1,"146850":1,"146851":1,"146852":1,"146853":1,"146854":1,"146855":1,"146856":1,"146857":1,"146858":1,"146859":1,"146860":1,"146861":1,"146862":1,"146883":1,"146884":1,"146885":1,"146886":1,"146887":1,"146888":1,"146889":1,"146950":1,"146957":1,"146958":1,"146959":1,"146960":1,"146961":1,"146962":1,"146963":1,"146964":1,"146965":1,"146966":1,"146967":1,"146972":1,"146973":1,"146974":1,"146975":1,"147077":1,"147078":1,"147079":1,"147080":1,"147081":1,"147082":1,"147083":1,"147084":1,"147110":1,"147111":1,"147112":1,"147113":1,"147114":1,"147115":1,"147116":1,"147117":1,"147118":1,"147133":1,"147134":1,"147135":1,"147136":1,"147137":1,"147138":1,"147139":1,"147140":1,"147141":1,"147142":1,"147143":1,"147149":1,"147150":1,"147151":1,"147152":1,"147164":1,"147165":1,"147166":1,"147167":1,"147168":1,"147169":1,"147170":1,"147171":1,"147172":1,"147184":1,"147185":1,"147186":1,"147187":1,"147188":1,"147189":1,"147190":1,"147191":1,"147192":1,"147193":1,"147194":1,"147195":1,"147196":1,"147197":1,"147903":1,"147904":1,"147905":1,"147906":1,"147907":1,"147908":1,"147909":1,"147910":1,"147911":1,"147912":1,"147913":1,"147914":1,"147915":1,"147916":1,"147917":1,"147918":1,"147938":1,"147939":1,"147940":1,"147941":1,"147942":1,"148005":1,"148006":1,"148007":1,"148012":1,"148013":1,"148014":1,"148015":1,"148016":1,"148017":1,"148018":1,"148019":1,"148020":1,"148021":1,"148022":1,"148023":1,"148024":1,"148025":1,"148026":1,"148027":1,"148028":1,"148029":1,"148030":1,"148031":1,"148032":1,"148033":1,"148034":1,"148035":1,"148134":1,"148135":1,"148136":1,"148137":1,"148138":1,"148139":1,"148166":1,"148167":1,"148168":1,"148169":1,"148170":1,"148171":1,"148172":1,"148173":1,"148174":1,"148175":1,"148189":1,"148190":1,"148191":1,"148192":1,"148193":1,"148194":1,"148195":1,"148196":1,"148197":1,"148198":1,"148199":1,"148205":1,"148206":1,"148207":1,"148208":1,"148219":1,"148220":1,"148221":1,"148222":1,"148223":1,"148224":1,"148225":1,"148226":1,"148227":1,"148228":1,"148240":1,"148241":1,"148242":1,"148243":1,"148244":1,"148245":1,"148246":1,"148247":1,"148248":1,"148249":1,"148250":1,"148251":1,"148252":1,"148253":1,"148960":1,"148961":1,"148962":1,"148963":1,"148964":1,"148965":1,"148966":1,"148967":1,"148968":1,"148969":1,"148970":1,"148971":1,"148972":1,"148973":1,"148994":1,"148995":1,"148996":1,"148997":1,"148998":1,"149062":1,"149063":1,"149064":1,"149065":1,"149066":1,"149067":1,"149068":1,"149069":1,"149070":1,"149071":1,"149072":1,"149073":1,"149074":1,"149075":1,"149076":1,"149077":1,"149078":1,"149079":1,"149080":1,"149081":1,"149082":1,"149083":1,"149084":1,"149085":1,"149086":1,"149087":1,"149088":1,"149089":1,"149090":1,"149091":1,"149092":1,"149118":2,"149119":2,"149120":2,"149121":2,"149122":2,"149190":1,"149191":1,"149192":1,"149193":1,"149194":1,"149195":1,"149222":1,"149223":1,"149224":1,"149225":1,"149226":1,"149227":1,"149228":1,"149229":1,"149230":1,"149244":1,"149245":1,"149246":1,"149247":1,"149248":1,"149249":1,"149250":1,"149251":1,"149252":1,"149253":1,"149254":1,"149255":1,"149261":1,"149262":1,"149263":1,"149264":1,"149265":1,"149274":1,"149275":1,"149276":1,"149277":1,"149278":1,"149279":1,"149280":1,"149281":1,"149282":1,"149283":1,"149296":1,"149297":1,"149298":1,"149299":1,"149300":1,"149301":1,"149302":1,"149303":1,"149304":1,"149305":1,"149306":1,"149307":1,"149308":1,"149309":1,"149310":1,"150017":1,"150018":1,"150019":1,"150020":1,"150025":1,"150026":1,"150027":1,"150028":1,"150051":1,"150052":1,"150053":1,"150054":1,"150119":1,"150120":1,"150121":1,"150122":1,"150123":1,"150124":1,"150125":1,"150126":1,"150127":1,"150128":1,"150129":1,"150130":1,"150131":1,"150136":1,"150137":1,"150138":1,"150139":1,"150140":1,"150141":1,"150142":1,"150143":1,"150144":1,"150145":1,"150146":1,"150147":1,"150173":2,"150174":2,"150175":2,"150176":2,"150177":2,"150178":2,"150179":2,"150180":2,"150200":1,"150201":1,"150246":1,"150247":1,"150248":1,"150249":1,"150250":1,"150251":1,"150277":1,"150278":1,"150279":1,"150280":1,"150281":1,"150282":1,"150283":1,"150284":1,"150285":1,"150298":1,"150299":1,"150300":1,"150301":1,"150302":1,"150303":1,"150304":1,"150305":1,"150306":1,"150307":1,"150308":1,"150309":1,"150310":1,"150311":1,"150317":1,"150318":1,"150319":1,"150320":1,"150321":1,"150322":1,"150329":1,"150330":1,"150331":1,"150333":1,"150334":1,"150335":1,"150336":1,"150337":1,"150338":1,"150353":1,"150354":1,"150355":1,"150356":1,"150357":1,"150358":1,"150359":1,"150360":1,"150361":1,"150362":1,"150363":1,"150364":1,"150365":1,"150366":1,"150367":1,"150368":1,"150369":1,"151108":1,"151109":1,"151110":1,"151175":1,"151176":1,"151177":1,"151178":1,"151179":1,"151180":1,"151181":1,"151182":1,"151183":1,"151184":1,"151185":1,"151186":1,"151193":1,"151194":1,"151195":1,"151196":1,"151197":1,"151200":1,"151201":1,"151202":1,"151229":2,"151230":2,"151231":2,"151236":2,"151237":2,"151255":1,"151256":1,"151257":1,"151258":1,"151259":1,"151260":1,"151261":1,"151303":1,"151304":1,"151305":1,"151306":1,"151307":1,"151332":1,"151333":1,"151334":1,"151335":1,"151336":1,"151337":1,"151338":1,"151340":1,"151341":1,"151353":1,"151354":1,"151355":1,"151356":1,"151357":1,"151358":1,"151359":1,"151360":1,"151361":1,"151362":1,"151363":1,"151364":1,"151365":1,"151366":1,"151367":1,"151368":1,"151369":1,"151370":1,"151371":1,"151372":1,"151373":1,"151374":1,"151375":1,"151376":1,"151377":1,"151378":1,"151379":1,"151385":1,"151386":1,"151387":1,"151389":1,"151390":1,"151391":1,"151392":1,"151393":1,"151394":1,"151410":1,"151411":1,"151412":1,"151413":1,"151414":1,"151415":1,"151416":1,"151417":1,"151418":1,"151419":1,"151420":1,"151421":1,"151422":1,"151423":1,"151424":1,"151425":1,"151426":1,"152165":1,"152166":1,"152231":1,"152232":1,"152233":1,"152234":1,"152235":1,"152236":1,"152237":1,"152238":1,"152239":1,"152240":1,"152241":1,"152242":1,"152249":1,"152250":1,"152251":1,"152252":1,"152253":1,"152256":1,"152257":1,"152258":1,"152285":2,"152286":2,"152287":2,"152288":2,"152291":2,"152292":2,"152293":2,"152311":1,"152314":1,"152315":1,"152316":1,"152317":1,"152318":1,"152319":1,"152360":1,"152361":1,"152362":1,"152363":1,"152388":1,"152389":1,"152390":1,"152391":1,"152392":1,"152393":1,"152394":1,"152396":1,"152397":1,"152408":1,"152409":1,"152410":1,"152411":1,"152412":1,"152413":1,"152414":1,"152415":1,"152416":1,"152417":1,"152418":1,"152419":1,"152420":1,"152421":1,"152422":1,"152423":1,"152424":1,"152425":1,"152426":1,"152427":1,"152428":1,"152429":1,"152430":1,"152431":1,"152432":1,"152433":1,"152434":1,"152435":1,"152442":1,"152443":1,"152444":1,"152445":1,"152446":1,"152447":1,"152448":1,"152449":1,"152450":1,"152466":1,"152467":1,"152469":1,"152470":1,"152471":1,"152472":1,"152473":1,"152474":1,"152475":1,"152476":1,"152477":1,"152478":1,"152479":1,"152480":1,"152481":1,"152482":1,"152483":1,"153222":1,"153287":1,"153288":1,"153289":1,"153290":1,"153291":1,"153292":1,"153293":1,"153294":1,"153295":1,"153296":1,"153297":1,"153298":1,"153305":1,"153306":1,"153307":1,"153308":1,"153309":1,"153310":1,"153311":1,"153312":1,"153313":1,"153314":1,"153341":2,"153342":2,"153343":2,"153344":2,"153345":2,"153346":2,"153347":2,"153348":2,"153349":2,"153367":1,"153370":1,"153371":1,"153372":1,"153373":1,"153374":1,"153375":1,"153376":1,"153416":1,"153417":1,"153418":1,"153419":1,"153445":1,"153446":1,"153447":1,"153448":1,"153449":1,"153450":1,"153451":1,"153452":1,"153453":1,"153463":1,"153464":1,"153465":1,"153467":1,"153468":1,"153469":1,"153470":1,"153471":1,"153472":1,"153473":1,"153474":1,"153475":1,"153476":1,"153477":1,"153478":1,"153479":1,"153480":1,"153481":1,"153482":1,"153483":1,"153484":1,"153485":1,"153486":1,"153487":1,"153488":1,"153489":1,"153490":1,"153499":1,"153500":1,"153501":1,"153502":1,"153503":1,"153504":1,"153505":1,"153506":1,"153522":1,"153523":1,"153525":1,"153526":1,"153527":1,"153528":1,"153529":1,"153530":1,"153531":1,"153532":1,"153533":1,"153534":1,"153535":1,"153536":1,"153537":1,"153538":1,"153539":1,"154344":1,"154345":1,"154346":1,"154347":1,"154348":1,"154349":1,"154350":1,"154351":1,"154352":1,"154353":1,"154354":1,"154362":1,"154363":1,"154364":1,"154365":1,"154366":1,"154367":1,"154368":1,"154369":1,"154370":1,"154396":2,"154397":2,"154398":2,"154399":2,"154400":2,"154401":2,"154402":2,"154403":2,"154404":2,"154405":2,"154424":1,"154425":1,"154426":1,"154427":1,"154428":1,"154429":1,"154430":1,"154431":1,"154432":1,"154433":1,"154472":1,"154473":1,"154474":1,"154475":1,"154502":1,"154503":1,"154504":1,"154505":1,"154506":1,"154507":1,"154508":1,"154509":1,"154519":1,"154520":1,"154521":1,"154523":1,"154524":1,"154525":1,"154526":1,"154527":1,"154528":1,"154529":1,"154530":1,"154531":1,"154532":1,"154533":1,"154534":1,"154535":1,"154536":1,"154537":1,"154538":1,"154539":1,"154540":1,"154541":1,"154542":1,"154543":1,"154544":1,"154545":1,"154546":1,"154555":1,"154556":1,"154557":1,"154558":1,"154559":1,"154560":1,"154561":1,"154562":1,"154563":1,"154578":1,"154579":1,"154580":1,"154581":1,"154582":1,"154583":1,"154584":1,"154585":1,"154586":1,"154587":1,"154588":1,"154589":1,"154591":1,"154592":1,"154593":1,"154594":1,"154671":1,"154672":1,"154673":1,"154674":1,"155401":1,"155402":1,"155403":1,"155404":1,"155405":1,"155406":1,"155407":1,"155408":1,"155409":1,"155420":1,"155421":1,"155425":1,"155426":1,"155452":2,"155453":2,"155454":2,"155455":2,"155456":2,"155457":2,"155458":2,"155459":2,"155460":2,"155461":2,"155462":2,"155481":1,"155482":1,"155483":1,"155484":1,"155485":1,"155486":1,"155487":1,"155488":1,"155489":1,"155491":2,"155492":2,"155493":2,"155494":2,"155495":2,"155528":1,"155529":1,"155530":1,"155531":1,"155532":1,"155558":1,"155559":1,"155560":1,"155561":1,"155562":1,"155563":1,"155564":1,"155565":1,"155566":1,"155576":1,"155577":1,"155578":1,"155579":1,"155580":1,"155581":1,"155582":1,"155583":1,"155584":1,"155585":1,"155586":1,"155588":1,"155589":1,"155590":1,"155591":1,"155592":1,"155593":1,"155594":1,"155595":1,"155596":1,"155597":1,"155598":1,"155599":1,"155600":1,"155601":1,"155602":1,"155611":1,"155612":1,"155613":1,"155614":1,"155615":1,"155616":1,"155617":1,"155618":1,"155619":1,"155620":1,"155634":1,"155635":1,"155636":1,"155637":1,"155638":1,"155639":1,"155640":1,"155641":1,"155642":1,"155643":1,"155644":1,"155645":1,"155646":1,"155647":1,"155648":1,"155649":1,"155726":1,"155727":1,"155728":1,"155729":1,"155730":1,"155731":1,"155735":1,"155736":1,"156457":1,"156458":1,"156459":1,"156460":1,"156461":1,"156462":1,"156463":1,"156464":1,"156476":1,"156477":1,"156481":1,"156482":1,"156483":1,"156508":2,"156509":2,"156510":2,"156511":2,"156512":2,"156513":2,"156514":2,"156515":2,"156516":2,"156517":2,"156518":2,"156519":2,"156537":1,"156538":1,"156539":1,"156540":1,"156541":1,"156542":1,"156543":1,"156544":1,"156547":2,"156548":2,"156550":2,"156551":2,"156584":1,"156585":1,"156586":1,"156587":1,"156588":1,"156589":1,"156614":1,"156615":1,"156616":1,"156617":1,"156618":1,"156619":1,"156620":1,"156621":1,"156622":1,"156623":1,"156633":1,"156634":1,"156635":1,"156636":1,"156637":1,"156638":1,"156640":1,"156641":1,"156642":1,"156643":1,"156644":1,"156645":1,"156646":1,"156647":1,"156648":1,"156649":1,"156650":1,"156651":1,"156652":1,"156653":1,"156654":1,"156655":1,"156656":1,"156657":1,"156658":1,"156667":1,"156668":1,"156669":1,"156670":1,"156671":1,"156672":1,"156673":1,"156674":1,"156675":1,"156676":1,"156677":1,"156678":1,"156679":1,"156691":1,"156692":1,"156693":1,"156694":1,"156695":1,"156696":1,"156697":1,"156698":1,"156699":1,"156700":1,"156701":1,"156702":1,"156703":1,"156704":1,"156705":1,"156782":1,"156783":1,"156784":1,"156785":1,"156786":1,"156787":1,"156788":1,"156789":1,"156790":1,"156791":1,"156792":1,"156793":1,"156794":1,"157513":1,"157514":1,"157515":1,"157516":1,"157517":1,"157518":1,"157519":1,"157520":1,"157532":1,"157533":1,"157534":1,"157535":1,"157536":1,"157537":1,"157538":1,"157539":1,"157564":2,"157565":2,"157566":2,"157567":2,"157568":2,"157569":2,"157570":2,"157571":2,"157572":2,"157573":2,"157574":2,"157593":1,"157594":1,"157595":1,"157596":1,"157597":1,"157598":1,"157599":1,"157603":2,"157604":2,"157605":2,"157606":2,"157639":1,"157640":1,"157641":1,"157642":1,"157643":1,"157644":1,"157645":1,"157670":1,"157671":1,"157672":1,"157673":1,"157674":1,"157675":1,"157676":1,"157677":1,"157678":1,"157692":1,"157693":1,"157694":1,"157695":1,"157696":1,"157697":1,"157698":1,"157699":1,"157700":1,"157701":1,"157702":1,"157703":1,"157704":1,"157705":1,"157706":1,"157707":1,"157708":1,"157709":1,"157710":1,"157711":1,"157712":1,"157713":1,"157714":1,"157715":1,"157723":1,"157724":1,"157725":1,"157726":1,"157727":1,"157728":1,"157729":1,"157730":1,"157731":1,"157732":1,"157733":1,"157734":1,"157735":1,"157736":1,"157748":1,"157749":1,"157750":1,"157751":1,"157752":1,"157753":1,"157754":1,"157755":1,"157756":1,"157757":1,"157758":1,"157759":1,"157760":1,"157761":1,"157837":1,"157838":1,"157839":1,"157840":1,"157841":1,"157842":1,"157843":1,"157844":1,"157845":1,"157846":1,"157847":1,"157848":1,"157849":1,"157850":1,"157851":1,"158569":1,"158570":1,"158571":1,"158572":1,"158573":1,"158574":1,"158575":1,"158576":1,"158588":1,"158589":1,"158590":1,"158591":1,"158592":1,"158621":2,"158622":2,"158623":2,"158627":2,"158628":2,"158629":2,"158630":2,"158648":1,"158649":1,"158650":1,"158651":1,"158652":1,"158653":1,"158654":1,"158655":1,"158658":2,"158659":2,"158660":2,"158661":2,"158662":2,"158694":1,"158695":1,"158696":1,"158697":1,"158698":1,"158699":1,"158700":1,"158701":1,"158726":1,"158727":1,"158728":1,"158729":1,"158730":1,"158731":1,"158732":1,"158733":1,"158749":1,"158750":1,"158751":1,"158752":1,"158753":1,"158754":1,"158755":1,"158756":1,"158757":1,"158758":1,"158759":1,"158760":1,"158761":1,"158762":1,"158763":1,"158764":1,"158765":1,"158766":1,"158767":1,"158768":1,"158769":1,"158770":1,"158771":1,"158772":1,"158779":1,"158780":1,"158781":1,"158782":1,"158783":1,"158784":1,"158785":1,"158786":1,"158787":1,"158788":1,"158789":1,"158790":1,"158791":1,"158792":1,"158804":1,"158805":1,"158806":1,"158807":1,"158808":1,"158809":1,"158810":1,"158811":1,"158812":1,"158813":1,"158814":1,"158815":1,"158816":1,"158817":1,"158893":1,"158894":1,"158895":1,"158896":1,"158897":1,"158898":1,"158899":1,"158900":1,"158901":1,"158902":1,"158903":1,"158904":1,"158905":1,"158906":1,"158907":1,"158908":1,"159609":1,"159626":1,"159627":1,"159628":1,"159629":1,"159632":1,"159645":1,"159646":1,"159647":1,"159648":1,"159678":2,"159679":2,"159683":2,"159684":2,"159685":2,"159686":2,"159702":1,"159703":1,"159704":1,"159705":1,"159706":1,"159707":1,"159708":1,"159709":1,"159710":1,"159711":1,"159713":2,"159714":2,"159715":2,"159716":2,"159717":2,"159718":2,"159745":1,"159746":1,"159747":1,"159748":1,"159749":1,"159750":1,"159751":1,"159752":1,"159753":1,"159754":1,"159755":1,"159756":1,"159757":1,"159782":1,"159783":1,"159784":1,"159785":1,"159786":1,"159787":1,"159788":1,"159789":1,"159805":1,"159806":1,"159807":1,"159808":1,"159809":1,"159810":1,"159811":1,"159812":1,"159813":1,"159814":1,"159815":1,"159816":1,"159817":1,"159818":1,"159819":1,"159820":1,"159821":1,"159822":1,"159823":1,"159824":1,"159825":1,"159826":1,"159827":1,"159828":1,"159836":1,"159837":1,"159838":1,"159839":1,"159840":1,"159841":1,"159842":1,"159843":1,"159844":1,"159845":1,"159846":1,"159847":1,"159848":1,"159860":1,"159861":1,"159862":1,"159863":1,"159864":1,"159865":1,"159866":1,"159867":1,"159868":1,"159869":1,"159870":1,"159871":1,"159872":1,"159873":1,"159874":1,"159952":1,"159953":1,"159954":1,"159955":1,"159956":1,"159957":1,"159958":1,"159961":1,"159962":1,"159963":1,"160664":1,"160665":1,"160666":1,"160670":1,"160671":1,"160672":1,"160682":1,"160683":1,"160684":1,"160685":1,"160688":1,"160689":1,"160702":1,"160703":1,"160735":2,"160736":2,"160737":2,"160738":2,"160739":2,"160740":2,"160741":2,"160742":2,"160757":1,"160758":1,"160759":1,"160760":1,"160761":1,"160762":1,"160763":1,"160764":1,"160765":1,"160766":1,"160767":1,"160769":2,"160770":2,"160771":2,"160772":2,"160773":2,"160800":1,"160801":1,"160802":1,"160803":1,"160804":1,"160805":1,"160806":1,"160807":1,"160808":1,"160809":1,"160810":1,"160811":1,"160812":1,"160813":1,"160814":1,"160838":1,"160839":1,"160840":1,"160841":1,"160842":1,"160843":1,"160844":1,"160845":1,"160861":1,"160862":1,"160863":1,"160864":1,"160865":1,"160866":1,"160867":1,"160868":1,"160869":1,"160870":1,"160871":1,"160872":1,"160873":1,"160874":1,"160876":1,"160877":1,"160878":1,"160879":1,"160880":1,"160881":1,"160882":1,"160883":1,"160892":1,"160893":1,"160894":1,"160895":1,"160896":1,"160897":1,"160898":1,"160899":1,"160900":1,"160901":1,"160902":1,"160903":1,"160916":1,"160917":1,"160918":1,"160919":1,"160920":1,"160921":1,"160922":1,"160923":1,"160924":1,"160925":1,"160926":1,"160927":1,"160928":1,"160929":1,"160930":1,"160931":1,"161009":1,"161010":1,"161011":1,"161012":1,"161013":1,"161014":1,"161015":1,"161016":1,"161017":1,"161018":1,"161720":1,"161721":1,"161722":1,"161723":1,"161724":1,"161725":1,"161726":1,"161727":1,"161728":1,"161729":1,"161738":1,"161739":1,"161740":1,"161741":1,"161742":1,"161743":1,"161744":1,"161745":1,"161746":1,"161778":1,"161779":1,"161791":2,"161792":2,"161793":2,"161794":2,"161795":2,"161796":2,"161797":2,"161798":2,"161811":1,"161812":1,"161813":1,"161814":1,"161815":1,"161816":1,"161817":1,"161818":1,"161819":1,"161820":1,"161821":1,"161822":1,"161825":2,"161826":2,"161827":2,"161828":2,"161829":2,"161853":1,"161854":1,"161855":1,"161856":1,"161857":1,"161858":1,"161859":1,"161860":1,"161861":1,"161862":1,"161863":1,"161864":1,"161865":1,"161866":1,"161867":1,"161868":1,"161869":1,"161870":1,"161871":1,"161893":1,"161894":1,"161895":1,"161896":1,"161897":1,"161898":1,"161899":1,"161900":1,"161901":1,"161917":1,"161918":1,"161919":1,"161920":1,"161921":1,"161922":1,"161923":1,"161924":1,"161925":1,"161926":1,"161927":1,"161928":1,"161929":1,"161930":1,"161932":1,"161933":1,"161934":1,"161935":1,"161936":1,"161937":1,"161938":1,"161948":1,"161949":1,"161950":1,"161951":1,"161952":1,"161953":1,"161954":1,"161955":1,"161956":1,"161957":1,"161958":1,"161971":1,"161972":1,"161973":1,"161974":1,"161975":1,"161976":1,"161977":1,"161978":1,"161979":1,"161980":1,"161981":1,"161982":1,"161983":1,"161984":1,"161985":1,"161986":1,"161987":1,"162065":1,"162069":1,"162070":1,"162071":1,"162072":1,"162073":1,"162074":1,"162777":1,"162781":1,"162782":1,"162783":1,"162784":1,"162785":1,"162786":1,"162787":1,"162788":1,"162794":1,"162795":1,"162796":1,"162797":1,"162798":1,"162799":1,"162800":1,"162801":1,"162802":1,"162833":1,"162834":1,"162835":1,"162836":1,"162847":2,"162848":2,"162849":2,"162850":2,"162851":2,"162852":2,"162853":2,"162854":2,"162855":2,"162866":1,"162867":1,"162868":1,"162869":1,"162870":1,"162871":1,"162872":1,"162873":1,"162874":1,"162877":1,"162881":2,"162882":2,"162883":2,"162884":2,"162885":2,"162908":1,"162909":1,"162910":1,"162911":1,"162912":1,"162913":1,"162914":1,"162915":1,"162916":1,"162917":1,"162918":1,"162919":1,"162920":1,"162921":1,"162922":1,"162923":1,"162924":1,"162925":1,"162926":1,"162927":1,"162948":1,"162949":1,"162950":1,"162951":1,"162952":1,"162953":1,"162954":1,"162955":1,"162956":1,"162957":1,"162973":1,"162974":1,"162975":1,"162976":1,"162977":1,"162978":1,"162979":1,"162980":1,"162981":1,"162982":1,"162983":1,"162984":1,"162985":1,"162986":1,"162987":1,"162988":1,"162989":1,"162990":1,"162991":1,"162992":1,"162993":1,"162994":1,"163004":1,"163005":1,"163006":1,"163007":1,"163008":1,"163009":1,"163010":1,"163011":1,"163012":1,"163026":1,"163027":1,"163028":1,"163029":1,"163030":1,"163031":1,"163032":1,"163033":1,"163034":1,"163035":1,"163036":1,"163037":1,"163038":1,"163039":1,"163040":1,"163041":1,"163042":1,"163043":1,"163121":1,"163125":1,"163126":1,"163127":1,"163128":1,"163129":1,"163130":1,"163834":1,"163835":1,"163836":1,"163837":1,"163838":1,"163839":1,"163840":1,"163841":1,"163842":1,"163843":1,"163844":1,"163845":1,"163849":1,"163850":1,"163851":1,"163852":1,"163853":1,"163854":1,"163855":1,"163856":1,"163857":1,"163858":1,"163859":1,"163885":1,"163889":1,"163890":1,"163891":1,"163892":1,"163903":2,"163904":2,"163905":2,"163906":2,"163907":2,"163908":2,"163909":2,"163910":2,"163911":2,"163912":2,"163922":1,"163923":1,"163924":1,"163925":1,"163926":1,"163927":1,"163928":1,"163929":1,"163930":1,"163933":1,"163936":2,"163937":2,"163938":2,"163939":2,"163940":2,"163941":2,"163964":1,"163965":1,"163968":1,"163969":1,"163970":1,"163971":1,"163972":1,"163973":1,"163974":1,"163975":1,"163976":1,"163977":1,"163978":1,"163979":1,"163980":1,"163981":1,"163982":1,"163983":1,"164004":1,"164005":1,"164006":1,"164007":1,"164008":1,"164009":1,"164010":1,"164011":1,"164012":1,"164013":1,"164029":1,"164030":1,"164031":1,"164032":1,"164033":1,"164034":1,"164035":1,"164036":1,"164037":1,"164038":1,"164039":1,"164040":1,"164041":1,"164042":1,"164043":1,"164044":1,"164045":1,"164046":1,"164047":1,"164048":1,"164049":1,"164050":1,"164060":1,"164061":1,"164062":1,"164064":1,"164065":1,"164066":1,"164067":1,"164082":1,"164083":1,"164084":1,"164085":1,"164086":1,"164087":1,"164088":1,"164089":1,"164090":1,"164091":1,"164092":1,"164093":1,"164094":1,"164095":1,"164096":1,"164097":1,"164098":1,"164099":1,"164100":1,"164178":1,"164179":1,"164180":1,"164181":1,"164182":1,"164183":1,"164184":1,"164185":1,"164891":1,"164892":1,"164893":1,"164894":1,"164895":1,"164896":1,"164897":1,"164898":1,"164899":1,"164900":1,"164901":1,"164902":1,"164904":1,"164905":1,"164906":1,"164907":1,"164908":1,"164909":1,"164910":1,"164911":1,"164912":1,"164913":1,"164914":1,"164915":1,"164916":1,"164940":1,"164941":1,"164942":1,"164943":1,"164944":1,"164945":1,"164946":1,"164947":1,"164948":1,"164959":2,"164960":2,"164961":2,"164962":2,"164963":2,"164964":2,"164965":2,"164966":2,"164967":2,"164979":1,"164980":1,"164981":1,"164982":1,"164983":1,"164984":1,"164985":1,"164986":1,"164987":1,"164988":1,"164989":1,"164991":2,"164992":2,"164993":2,"164994":2,"164995":2,"164996":2,"164997":2,"165020":1,"165021":1,"165024":1,"165025":1,"165026":1,"165027":1,"165028":1,"165029":1,"165030":1,"165031":1,"165032":1,"165035":1,"165036":1,"165037":1,"165038":1,"165039":1,"165040":1,"165061":1,"165062":1,"165063":1,"165064":1,"165065":1,"165066":1,"165067":1,"165068":1,"165069":1,"165084":1,"165085":1,"165086":1,"165087":1,"165088":1,"165089":1,"165090":1,"165091":1,"165092":1,"165093":1,"165094":1,"165095":1,"165096":1,"165097":1,"165098":1,"165099":1,"165100":1,"165101":1,"165102":1,"165103":1,"165104":1,"165105":1,"165106":1,"165116":1,"165117":1,"165118":1,"165119":1,"165120":1,"165121":1,"165122":1,"165123":1,"165138":1,"165139":1,"165140":1,"165141":1,"165142":1,"165143":1,"165144":1,"165145":1,"165146":1,"165147":1,"165148":1,"165149":1,"165150":1,"165151":1,"165152":1,"165153":1,"165154":1,"165155":1,"165156":1,"165157":1,"165235":1,"165236":1,"165948":1,"165949":1,"165950":1,"165951":1,"165952":1,"165953":1,"165954":1,"165955":1,"165956":1,"165957":1,"165958":1,"165959":1,"165960":1,"165961":1,"165962":1,"165963":1,"165964":1,"165965":1,"165966":1,"165967":1,"165968":1,"165969":1,"165970":1,"165971":1,"165972":1,"165995":1,"165996":1,"165997":1,"165998":1,"165999":1,"166000":1,"166001":1,"166002":1,"166003":1,"166004":1,"166005":1,"166017":2,"166019":2,"166020":2,"166021":2,"166022":2,"166023":2,"166036":1,"166037":1,"166038":1,"166039":1,"166040":1,"166041":1,"166042":1,"166043":1,"166044":1,"166045":1,"166048":2,"166049":2,"166050":2,"166051":2,"166052":2,"166053":2,"166076":1,"166077":1,"166080":1,"166081":1,"166082":1,"166083":1,"166084":1,"166085":1,"166086":1,"166087":1,"166088":1,"166091":1,"166092":1,"166093":1,"166094":1,"166095":1,"166096":1,"166097":1,"166102":1,"166103":1,"166118":1,"166119":1,"166120":1,"166121":1,"166122":1,"166123":1,"166124":1,"166125":1,"166126":1,"166139":1,"166140":1,"166141":1,"166142":1,"166143":1,"166144":1,"166145":1,"166146":1,"166148":1,"166149":1,"166150":1,"166151":1,"166152":1,"166153":1,"166154":1,"166155":1,"166156":1,"166157":1,"166158":1,"166159":1,"166160":1,"166161":1,"166162":1,"166172":1,"166173":1,"166174":1,"166175":1,"166176":1,"166177":1,"166178":1,"166179":1,"166194":1,"166195":1,"166196":1,"166197":1,"166198":1,"166199":1,"166200":1,"166201":1,"166202":1,"166203":1,"166204":1,"166205":1,"166206":1,"166207":1,"166208":1,"166209":1,"166210":1,"166211":1,"166212":1,"166213":1,"167004":1,"167005":1,"167006":1,"167007":1,"167008":1,"167009":1,"167010":1,"167011":1,"167012":1,"167013":1,"167014":1,"167015":1,"167016":1,"167017":1,"167018":1,"167019":1,"167020":1,"167021":1,"167022":1,"167023":1,"167024":1,"167025":1,"167026":1,"167027":1,"167051":1,"167052":1,"167053":1,"167054":1,"167055":1,"167056":1,"167057":1,"167058":1,"167059":1,"167060":1,"167061":1,"167062":1,"167063":1,"167092":1,"167093":1,"167094":1,"167095":1,"167096":1,"167097":1,"167098":1,"167099":1,"167100":1,"167101":1,"167102":1,"167105":2,"167106":2,"167107":2,"167108":2,"167109":2,"167110":2,"167131":1,"167132":1,"167133":1,"167134":1,"167135":1,"167136":1,"167137":1,"167138":1,"167139":1,"167140":1,"167141":1,"167142":1,"167143":1,"167144":1,"167145":1,"167146":1,"167147":1,"167148":1,"167149":1,"167150":1,"167151":1,"167152":1,"167153":1,"167154":1,"167155":1,"167156":1,"167157":1,"167158":1,"167159":1,"167160":1,"167174":1,"167175":1,"167176":1,"167177":1,"167178":1,"167179":1,"167180":1,"167181":1,"167182":1,"167183":1,"167194":1,"167195":1,"167196":1,"167197":1,"167198":1,"167199":1,"167200":1,"167201":1,"167202":1,"167204":1,"167205":1,"167206":1,"167207":1,"167208":1,"167209":1,"167210":1,"167211":1,"167212":1,"167213":1,"167214":1,"167215":1,"167216":1,"167217":1,"167218":1,"167227":1,"167228":1,"167229":1,"167230":1,"167231":1,"167232":1,"167233":1,"167234":1,"167251":1,"167252":1,"167253":1,"167254":1,"167255":1,"167256":1,"167257":1,"167258":1,"167259":1,"167260":1,"167261":1,"167262":1,"167263":1,"167265":1,"167266":1,"167267":1,"167268":1,"167269":1,"168060":1,"168061":1,"168062":1,"168063":1,"168064":1,"168065":1,"168066":1,"168067":1,"168068":1,"168069":1,"168070":1,"168071":1,"168072":1,"168073":1,"168074":1,"168076":1,"168077":1,"168078":1,"168079":1,"168080":1,"168081":1,"168082":1,"168108":1,"168109":1,"168110":1,"168111":1,"168112":1,"168113":1,"168114":1,"168115":1,"168116":1,"168117":1,"168118":1,"168119":1,"168120":1,"168148":1,"168149":1,"168150":1,"168151":1,"168152":1,"168153":1,"168154":1,"168155":1,"168156":1,"168157":1,"168158":1,"168159":1,"168161":2,"168162":2,"168163":2,"168164":2,"168165":2,"168166":2,"168167":2,"168168":2,"168186":1,"168187":1,"168188":1,"168189":1,"168190":1,"168191":1,"168192":1,"168193":1,"168194":1,"168195":1,"168196":1,"168197":1,"168198":1,"168199":1,"168200":1,"168201":1,"168202":1,"168203":1,"168204":1,"168209":1,"168210":1,"168211":1,"168212":1,"168213":1,"168214":1,"168215":1,"168216":1,"168217":1,"168218":1,"168219":1,"168230":1,"168231":1,"168233":1,"168234":1,"168235":1,"168236":1,"168237":1,"168238":1,"168239":1,"168250":1,"168252":1,"168253":1,"168254":1,"168255":1,"168256":1,"168257":1,"168258":1,"168259":1,"168260":1,"168261":1,"168262":1,"168263":1,"168264":1,"168265":1,"168266":1,"168267":1,"168268":1,"168269":1,"168270":1,"168271":1,"168272":1,"168273":1,"168274":1,"168275":1,"168282":1,"168283":1,"168284":1,"168285":1,"168286":1,"168287":1,"168288":1,"168289":1,"168308":1,"168309":1,"168310":1,"168311":1,"168312":1,"168313":1,"168314":1,"168315":1,"168316":1,"168317":1,"168318":1,"168319":1,"168321":1,"168322":1,"168323":1,"168324":1,"168325":1,"169116":1,"169117":1,"169128":1,"169129":1,"169130":1,"169132":1,"169133":1,"169134":1,"169135":1,"169136":1,"169137":1,"169167":1,"169168":1,"169169":1,"169170":1,"169171":1,"169172":1,"169173":1,"169174":1,"169175":1,"169176":1,"169185":2,"169186":2,"169187":2,"169188":2,"169189":2,"169204":1,"169205":1,"169206":1,"169207":1,"169208":1,"169209":1,"169210":1,"169211":1,"169212":1,"169213":1,"169214":1,"169217":2,"169218":2,"169219":2,"169220":2,"169242":1,"169243":1,"169244":1,"169245":1,"169246":1,"169247":1,"169248":1,"169249":1,"169250":1,"169251":1,"169252":1,"169253":1,"169254":1,"169255":1,"169256":1,"169257":1,"169258":1,"169259":1,"169266":1,"169267":1,"169268":1,"169269":1,"169270":1,"169271":1,"169272":1,"169273":1,"169274":1,"169275":1,"169286":1,"169287":1,"169288":1,"169289":1,"169290":1,"169291":1,"169292":1,"169293":1,"169294":1,"169295":1,"169307":1,"169308":1,"169309":1,"169310":1,"169311":1,"169312":1,"169313":1,"169314":1,"169315":1,"169316":1,"169317":1,"169318":1,"169319":1,"169320":1,"169321":1,"169322":1,"169323":1,"169324":1,"169325":1,"169326":1,"169327":1,"169328":1,"169329":1,"169330":1,"169331":1,"169332":1,"169338":1,"169339":1,"169340":1,"169341":1,"169342":1,"169343":1,"169344":1,"169345":1,"169364":1,"169365":1,"169366":1,"169367":1,"169368":1,"169369":1,"169370":1,"169371":1,"169372":1,"169373":1,"169374":1,"169375":1,"169376":1,"169377":1,"169378":1,"169379":1,"169380":1,"170172":1,"170173":1,"170184":1,"170185":1,"170186":1,"170187":1,"170188":1,"170189":1,"170190":1,"170191":1,"170192":1,"170193":1,"170203":1,"170204":1,"170224":1,"170225":1,"170226":1,"170227":1,"170228":1,"170229":1,"170230":1,"170232":1,"170241":2,"170242":2,"170243":2,"170244":2,"170245":2,"170259":1,"170260":1,"170261":1,"170262":1,"170263":1,"170264":1,"170265":1,"170266":1,"170267":1,"170268":1,"170269":1,"170273":2,"170274":2,"170275":2,"170299":1,"170300":1,"170301":1,"170302":1,"170303":1,"170304":1,"170305":1,"170306":1,"170307":1,"170308":1,"170309":1,"170310":1,"170311":1,"170312":1,"170313":1,"170314":1,"170315":1,"170323":1,"170324":1,"170325":1,"170326":1,"170329":1,"170330":1,"170342":1,"170343":1,"170344":1,"170345":1,"170346":1,"170347":1,"170348":1,"170349":1,"170350":1,"170351":1,"170352":1,"170364":1,"170365":1,"170366":1,"170367":1,"170368":1,"170369":1,"170370":1,"170371":1,"170372":1,"170373":1,"170374":1,"170375":1,"170376":1,"170377":1,"170378":1,"170379":1,"170380":1,"170381":1,"170382":1,"170383":1,"170384":1,"170385":1,"170386":1,"170387":1,"170388":1,"170394":1,"170395":1,"170396":1,"170397":1,"170398":1,"170399":1,"170400":1,"170401":1,"170420":1,"170421":1,"170422":1,"170423":1,"170424":1,"170425":1,"170426":1,"170427":1,"170428":1,"170429":1,"170430":1,"170431":1,"170432":1,"170433":1,"170434":1,"170435":1,"171227":1,"171228":1,"171229":1,"171240":1,"171241":1,"171242":1,"171243":1,"171244":1,"171245":1,"171246":1,"171247":1,"171248":1,"171249":1,"171258":1,"171259":1,"171260":1,"171261":1,"171262":1,"171263":1,"171264":1,"171265":1,"171280":1,"171281":1,"171282":1,"171283":1,"171284":1,"171285":1,"171286":1,"171288":1,"171289":1,"171298":2,"171299":2,"171300":2,"171312":1,"171313":1,"171314":1,"171315":1,"171316":1,"171317":1,"171318":1,"171319":1,"171320":1,"171321":1,"171322":1,"171329":2,"171356":1,"171357":1,"171358":1,"171359":1,"171360":1,"171367":1,"171368":1,"171369":1,"171370":1,"171371":1,"171379":1,"171380":1,"171381":1,"171382":1,"171385":1,"171397":1,"171398":1,"171399":1,"171400":1,"171401":1,"171402":1,"171403":1,"171404":1,"171405":1,"171406":1,"171407":1,"171408":1,"171409":1,"171420":1,"171421":1,"171422":1,"171423":1,"171424":1,"171425":1,"171426":1,"171427":1,"171428":1,"171429":1,"171430":1,"171431":1,"171432":1,"171433":1,"171434":1,"171435":1,"171436":1,"171437":1,"171438":1,"171439":1,"171440":1,"171441":1,"171443":1,"171451":1,"171452":1,"171453":1,"171454":1,"171455":1,"171456":1,"171457":1,"171476":1,"171477":1,"171478":1,"171479":1,"171480":1,"171481":1,"171482":1,"171483":1,"171484":1,"171485":1,"171486":1,"171487":1,"171488":1,"172284":1,"172285":1,"172288":1,"172292":1,"172296":1,"172297":1,"172298":1,"172299":1,"172300":1,"172301":1,"172302":1,"172303":1,"172304":1,"172305":1,"172314":1,"172315":1,"172316":1,"172317":1,"172318":1,"172319":1,"172320":1,"172321":1,"172322":1,"172336":1,"172337":1,"172338":1,"172339":1,"172340":1,"172341":1,"172342":1,"172343":1,"172344":1,"172345":1,"172346":1,"172367":1,"172368":1,"172369":1,"172370":1,"172371":1,"172372":1,"172373":1,"172374":1,"172375":1,"172376":1,"172377":1,"172412":1,"172413":1,"172414":1,"172415":1,"172424":1,"172425":1,"172426":1,"172435":1,"172436":1,"172437":1,"172438":1,"172452":1,"172453":1,"172454":1,"172455":1,"172456":1,"172457":1,"172458":1,"172459":1,"172460":1,"172461":1,"172462":1,"172463":1,"172464":1,"172476":1,"172477":1,"172478":1,"172479":1,"172480":1,"172481":1,"172482":1,"172483":1,"172484":1,"172485":1,"172486":1,"172487":1,"172488":1,"172489":1,"172490":1,"172491":1,"172492":1,"172493":1,"172494":1,"172495":1,"172496":1,"172497":1,"172498":1,"172508":1,"172509":1,"172510":1,"172511":1,"172512":1,"172513":1,"172532":1,"172533":1,"172534":1,"172535":1,"172536":1,"172537":1,"172538":1,"172539":1,"172540":1,"172541":1,"172542":1,"172543":1,"173341":1,"173342":1,"173343":1,"173344":1,"173345":1,"173346":1,"173347":1,"173348":1,"173349":1,"173350":1,"173351":1,"173352":1,"173353":1,"173354":1,"173355":1,"173356":1,"173357":1,"173358":1,"173359":1,"173360":1,"173361":1,"173369":1,"173370":1,"173371":1,"173372":1,"173373":1,"173374":1,"173375":1,"173376":1,"173377":1,"173378":1,"173392":1,"173393":1,"173394":1,"173395":1,"173396":1,"173397":1,"173398":1,"173399":1,"173400":1,"173401":1,"173402":1,"173423":1,"173424":1,"173425":1,"173426":1,"173427":1,"173428":1,"173429":1,"173430":1,"173431":1,"173432":1,"173433":1,"173468":1,"173469":1,"173470":1,"173492":1,"173493":1,"173508":1,"173509":1,"173510":1,"173511":1,"173512":1,"173513":1,"173514":1,"173515":1,"173516":1,"173517":1,"173518":1,"173519":1,"173533":1,"173534":1,"173535":1,"173536":1,"173537":1,"173538":1,"173539":1,"173540":1,"173541":1,"173543":1,"173544":1,"173545":1,"173546":1,"173547":1,"173548":1,"173549":1,"173550":1,"173551":1,"173552":1,"173553":1,"173554":1,"173564":1,"173565":1,"173566":1,"173567":1,"173568":1,"173569":1,"173570":1,"173588":1,"173589":1,"173590":1,"173591":1,"173592":1,"173593":1,"173594":1,"173595":1,"173596":1,"173597":1,"173598":1,"173599":1,"174400":1,"174401":1,"174402":1,"174403":1,"174404":1,"174405":1,"174406":1,"174407":1,"174408":1,"174409":1,"174410":1,"174411":1,"174412":1,"174413":1,"174414":1,"174415":1,"174416":1,"174417":1,"174423":1,"174424":1,"174425":1,"174426":1,"174427":1,"174428":1,"174429":1,"174432":1,"174433":1,"174447":1,"174448":1,"174449":1,"174450":1,"174457":1,"174458":1,"174479":1,"174480":1,"174481":1,"174482":1,"174483":1,"174484":1,"174485":1,"174486":1,"174487":1,"174488":1,"174489":1,"174524":1,"174525":1,"174526":1,"174564":1,"174565":1,"174566":1,"174567":1,"174568":1,"174569":1,"174570":1,"174571":1,"174572":1,"174573":1,"174574":1,"174575":1,"174590":1,"174591":1,"174592":1,"174593":1,"174594":1,"174595":1,"174596":1,"174597":1,"174600":1,"174601":1,"174602":1,"174603":1,"174604":1,"174605":1,"174606":1,"174607":1,"174608":1,"174609":1,"174610":1,"174620":1,"174621":1,"174622":1,"174623":1,"174624":1,"174625":1,"174626":1,"174627":1,"174643":1,"174644":1,"174645":1,"174646":1,"174647":1,"174648":1,"174649":1,"174650":1,"174651":1,"174652":1,"174653":1,"174654":1,"174655":1,"175457":1,"175458":1,"175459":1,"175460":1,"175461":1,"175462":1,"175463":1,"175464":1,"175465":1,"175466":1,"175467":1,"175468":1,"175469":1,"175470":1,"175471":1,"175472":1,"175473":1,"175474":1,"175478":1,"175479":1,"175480":1,"175481":1,"175482":1,"175483":1,"175484":1,"175485":1,"175488":1,"175501":1,"175502":1,"175503":1,"175504":1,"175505":1,"175508":2,"175509":2,"175510":2,"175511":2,"175514":1,"175515":1,"175534":1,"175535":1,"175536":1,"175537":1,"175538":1,"175539":1,"175540":1,"175541":1,"175542":1,"175543":1,"175544":1,"175545":1,"175580":1,"175581":1,"175582":1,"175620":1,"175621":1,"175622":1,"175623":1,"175624":1,"175625":1,"175626":1,"175627":1,"175628":1,"175629":1,"175630":1,"175631":1,"175647":1,"175648":1,"175649":1,"175650":1,"175651":1,"175652":1,"175657":1,"175658":1,"175659":1,"175660":1,"175661":1,"175662":1,"175663":1,"175664":1,"175665":1,"175676":1,"175677":1,"175678":1,"175679":1,"175680":1,"175681":1,"175682":1,"175683":1,"175698":1,"175699":1,"175700":1,"175702":1,"175703":1,"175704":1,"175705":1,"175706":1,"175707":1,"175708":1,"175709":1,"175710":1,"176513":1,"176514":1,"176515":1,"176516":1,"176517":1,"176518":1,"176519":1,"176520":1,"176521":1,"176522":1,"176523":1,"176524":1,"176525":1,"176526":1,"176527":1,"176528":1,"176529":1,"176530":1,"176531":1,"176532":1,"176533":1,"176534":1,"176535":1,"176536":1,"176537":1,"176538":1,"176539":1,"176540":1,"176541":1,"176542":1,"176543":1,"176544":1,"176556":1,"176557":1,"176558":1,"176559":1,"176560":1,"176561":1,"176563":2,"176564":2,"176565":2,"176566":2,"176567":2,"176568":2,"176571":1,"176572":1,"176573":1,"176577":1,"176578":1,"176587":1,"176588":1,"176589":1,"176590":1,"176591":1,"176592":1,"176593":1,"176594":1,"176595":1,"176596":1,"176597":1,"176598":1,"176599":1,"176600":1,"176635":1,"176636":1,"176637":1,"176638":1,"176677":1,"176678":1,"176679":1,"176680":1,"176681":1,"176682":1,"176683":1,"176684":1,"176685":1,"176686":1,"176704":1,"176705":1,"176706":1,"176707":1,"176714":1,"176715":1,"176716":1,"176717":1,"176718":1,"176719":1,"176720":1,"176732":1,"176733":1,"176734":1,"176735":1,"176736":1,"176738":1,"176739":1,"176754":1,"176755":1,"176756":1,"176757":1,"176758":1,"176759":1,"176760":1,"176761":1,"176762":1,"176763":1,"176764":1,"176765":1,"177569":1,"177570":1,"177571":1,"177572":1,"177573":1,"177574":1,"177575":1,"177576":1,"177577":1,"177578":1,"177579":1,"177580":1,"177581":1,"177582":1,"177583":1,"177584":1,"177585":1,"177586":1,"177587":1,"177588":1,"177589":1,"177590":1,"177591":1,"177592":1,"177593":1,"177594":1,"177595":1,"177596":1,"177597":1,"177598":1,"177599":1,"177612":1,"177613":1,"177614":1,"177615":1,"177616":1,"177617":1,"177620":2,"177621":2,"177622":2,"177623":2,"177624":2,"177625":2,"177627":1,"177628":1,"177629":1,"177630":1,"177631":1,"177632":1,"177633":1,"177634":1,"177635":1,"177642":1,"177643":1,"177644":1,"177645":1,"177646":1,"177647":1,"177648":1,"177649":1,"177650":1,"177651":1,"177652":1,"177653":1,"177654":1,"177655":1,"177656":1,"177690":1,"177691":1,"177692":1,"177693":1,"177694":1,"177734":1,"177735":1,"177736":1,"177737":1,"177738":1,"177739":1,"177740":1,"177741":1,"177771":1,"177773":1,"177774":1,"177775":1,"177776":1,"177787":1,"177788":1,"177789":1,"177790":1,"177791":1,"177792":1,"177794":1,"177811":1,"177812":1,"177813":1,"177814":1,"177815":1,"177816":1,"177817":1,"177818":1,"177819":1,"177820":1,"177821":1,"178625":1,"178626":1,"178627":1,"178628":1,"178629":1,"178630":1,"178631":1,"178632":1,"178633":1,"178634":1,"178635":1,"178636":1,"178637":1,"178638":1,"178639":1,"178640":1,"178641":1,"178642":1,"178644":1,"178645":1,"178646":1,"178647":1,"178648":1,"178649":1,"178650":1,"178668":1,"178669":1,"178671":1,"178672":1,"178673":1,"178678":2,"178679":2,"178680":2,"178683":1,"178684":1,"178685":1,"178686":1,"178687":1,"178688":1,"178689":1,"178690":1,"178691":1,"178698":1,"178699":1,"178700":1,"178701":1,"178702":1,"178703":1,"178704":1,"178705":1,"178706":1,"178707":1,"178708":1,"178709":1,"178710":1,"178711":1,"178712":1,"178745":1,"178746":1,"178747":1,"178748":1,"178749":1,"178750":1,"178751":1,"178790":1,"178791":1,"178792":1,"178793":1,"178794":1,"178795":1,"178796":1,"178797":1,"178829":1,"178830":1,"178831":1,"178832":1,"178842":1,"178843":1,"178844":1,"178845":1,"178846":1,"178847":1,"178848":1,"178849":1,"178868":1,"178869":1,"178870":1,"178871":1,"178872":1,"178873":1,"178874":1,"178875":1,"178876":1,"178877":1,"179681":1,"179682":1,"179683":1,"179684":1,"179685":1,"179686":1,"179687":1,"179688":1,"179689":1,"179690":1,"179691":1,"179692":1,"179693":1,"179694":1,"179695":1,"179696":1,"179697":1,"179698":1,"179700":1,"179701":1,"179702":1,"179703":1,"179704":1,"179705":1,"179725":1,"179726":1,"179727":1,"179728":1,"179729":1,"179730":1,"179739":1,"179740":1,"179741":1,"179742":1,"179743":1,"179744":1,"179745":1,"179746":1,"179747":1,"179748":1,"179753":1,"179754":1,"179755":1,"179756":1,"179757":1,"179758":1,"179759":1,"179760":1,"179761":1,"179762":1,"179763":1,"179764":1,"179765":1,"179766":1,"179767":1,"179801":1,"179802":1,"179803":1,"179804":1,"179805":1,"179806":1,"179807":1,"179808":1,"179846":1,"179847":1,"179848":1,"179849":1,"179850":1,"179851":1,"179852":1,"179853":1,"179886":1,"179887":1,"179899":1,"179900":1,"179901":1,"179902":1,"179903":1,"179904":1,"179905":1,"179924":1,"179925":1,"179926":1,"179927":1,"179928":1,"179929":1,"179930":1,"179931":1,"179932":1,"179933":1,"180736":1,"180737":1,"180738":1,"180739":1,"180740":1,"180741":1,"180742":1,"180743":1,"180744":1,"180745":1,"180747":1,"180748":1,"180749":1,"180750":1,"180751":1,"180752":1,"180753":1,"180754":1,"180755":1,"180756":1,"180757":1,"180758":1,"180759":1,"180760":1,"180761":1,"180782":1,"180783":1,"180784":1,"180785":1,"180786":1,"180787":1,"180788":1,"180794":1,"180795":1,"180796":1,"180797":1,"180798":1,"180799":1,"180800":1,"180801":1,"180802":1,"180803":1,"180804":1,"180805":1,"180806":1,"180807":1,"180808":1,"180809":1,"180810":1,"180811":1,"180812":1,"180813":1,"180814":1,"180815":1,"180816":1,"180817":1,"180818":1,"180857":1,"180858":1,"180859":1,"180860":1,"180861":1,"180862":1,"180863":1,"180902":1,"180903":1,"180904":1,"180905":1,"180906":1,"180907":1,"180908":1,"180909":1,"180956":1,"180957":1,"180958":1,"180959":1,"180960":1,"180961":1,"180980":1,"180981":1,"180982":1,"180983":1,"180984":1,"180985":1,"180986":1,"180987":1,"180988":1,"180989":1,"180990":1,"181791":1,"181792":1,"181793":1,"181794":1,"181795":1,"181796":1,"181797":1,"181798":1,"181799":1,"181800":1,"181801":1,"181803":1,"181804":1,"181805":1,"181806":1,"181807":1,"181808":1,"181809":1,"181810":1,"181811":1,"181812":1,"181813":1,"181814":1,"181815":1,"181816":1,"181843":1,"181844":1,"181845":1,"181846":1,"181847":1,"181848":1,"181849":1,"181850":1,"181851":1,"181852":1,"181853":1,"181854":1,"181856":1,"181857":1,"181858":1,"181859":1,"181860":1,"181861":1,"181862":1,"181863":1,"181864":1,"181865":1,"181866":1,"181867":1,"181868":1,"181869":1,"181870":1,"181871":1,"181872":1,"181873":1,"181913":1,"181914":1,"181915":1,"181916":1,"181917":1,"181918":1,"181919":1,"181958":1,"181959":1,"181960":1,"181961":1,"181962":1,"181963":1,"181964":1,"181965":1,"182012":1,"182013":1,"182014":1,"182015":1,"182016":1,"182017":1,"182036":1,"182037":1,"182038":1,"182039":1,"182040":1,"182041":1,"182042":1,"182043":1,"182044":1,"182045":1,"182046":1,"182047":1,"182848":1,"182849":1,"182850":1,"182851":1,"182852":1,"182853":1,"182854":1,"182855":1,"182856":1,"182857":1,"182858":1,"182859":1,"182860":1,"182861":1,"182862":1,"182863":1,"182864":1,"182865":1,"182866":1,"182867":1,"182900":1,"182901":1,"182902":1,"182903":1,"182904":1,"182905":1,"182906":1,"182907":1,"182908":1,"182909":1,"182910":1,"182911":1,"182912":1,"182913":1,"182914":1,"182915":1,"182916":1,"182917":1,"182918":1,"182919":1,"182920":1,"182921":1,"182922":1,"182923":1,"182924":1,"182925":1,"182926":1,"182927":1,"182928":1,"182929":1,"182968":1,"182969":1,"182970":1,"182971":1,"182972":1,"182973":1,"182974":1,"182975":1,"183013":1,"183014":1,"183015":1,"183016":1,"183017":1,"183018":1,"183019":1,"183020":1,"183021":1,"183068":1,"183069":1,"183070":1,"183071":1,"183072":1,"183073":1,"183091":1,"183092":1,"183093":1,"183094":1,"183095":1,"183096":1,"183097":1,"183098":1,"183099":1,"183100":1,"183101":1,"183102":1,"183103":1,"183909":1,"183910":1,"183911":1,"183912":1,"183913":1,"183914":1,"183915":1,"183916":1,"183917":1,"183918":1,"183919":1,"183920":1,"183921":1,"183922":1,"183956":1,"183957":1,"183958":1,"183959":1,"183960":1,"183961":1,"183966":1,"183967":1,"183968":1,"183969":1,"183970":1,"183971":1,"183972":1,"183973":1,"183974":1,"183975":1,"183976":1,"183977":1,"183978":1,"183979":1,"183980":1,"183981":1,"183982":1,"183983":1,"183984":1,"184023":1,"184024":1,"184025":1,"184026":1,"184027":1,"184028":1,"184029":1,"184030":1,"184068":1,"184069":1,"184070":1,"184071":1,"184072":1,"184073":1,"184074":1,"184075":1,"184076":1,"184077":1,"184124":1,"184125":1,"184126":1,"184127":1,"184128":1,"184129":1,"184130":1,"184146":1,"184147":1,"184148":1,"184149":1,"184151":1,"184152":1,"184153":1,"184154":1,"184155":1,"184156":1,"184157":1,"184158":1,"184966":1,"184967":1,"184968":1,"184969":1,"184970":1,"184971":1,"184972":1,"184973":1,"184974":1,"184975":1,"184976":1,"184977":1,"184978":1,"185012":1,"185013":1,"185014":1,"185015":1,"185016":1,"185025":1,"185026":1,"185027":1,"185028":1,"185029":1,"185030":1,"185031":1,"185032":1,"185033":1,"185034":1,"185035":1,"185036":1,"185037":1,"185079":1,"185080":1,"185081":1,"185082":1,"185083":1,"185084":1,"185097":1,"185098":1,"185122":1,"185123":1,"185124":1,"185125":1,"185126":1,"185127":1,"185128":1,"185129":1,"185130":1,"185132":1,"185133":1,"185134":1,"185180":1,"185181":1,"185182":1,"185183":1,"185184":1,"185202":1,"185203":1,"185204":1,"185205":1,"185207":1,"185208":1,"185209":1,"185210":1,"185211":1,"185212":1,"185213":1,"186022":1,"186023":1,"186024":1,"186025":1,"186026":1,"186027":1,"186028":1,"186029":1,"186030":1,"186031":1,"186032":1,"186033":1,"186034":1,"186068":1,"186069":1,"186070":1,"186071":1,"186072":1,"186081":1,"186082":1,"186083":1,"186084":1,"186085":1,"186086":1,"186087":1,"186088":1,"186089":1,"186090":1,"186091":1,"186092":1,"186136":1,"186137":1,"186138":1,"186139":1,"186152":1,"186153":1,"186154":1,"186155":1,"186178":1,"186179":1,"186180":1,"186181":1,"186182":1,"186183":1,"186184":1,"186185":1,"186186":1,"186187":1,"186188":1,"186189":1,"186190":1,"186191":1,"186236":1,"186237":1,"186238":1,"186239":1,"186240":1,"186241":1,"186242":1,"186259":1,"186260":1,"186261":1,"186262":1,"186263":1,"186264":1,"186265":1,"186266":1,"186267":1,"186268":1,"186269":1,"187078":1,"187079":1,"187080":1,"187081":1,"187082":1,"187083":1,"187084":1,"187085":1,"187086":1,"187087":1,"187088":1,"187089":1,"187125":1,"187126":1,"187127":1,"187128":1,"187137":1,"187138":1,"187139":1,"187140":1,"187141":1,"187142":1,"187143":1,"187144":1,"187147":1,"187148":1,"187207":1,"187208":1,"187209":1,"187210":1,"187211":1,"187212":1,"187233":1,"187234":1,"187235":1,"187236":1,"187237":1,"187238":1,"187239":1,"187240":1,"187241":1,"187242":1,"187243":1,"187244":1,"187245":1,"187246":1,"187247":1,"187292":1,"187293":1,"187294":1,"187295":1,"187296":1,"187297":1,"187316":1,"187317":1,"187318":1,"187319":1,"187320":1,"187321":1,"187322":1,"187323":1,"187324":1,"187325":1,"188135":1,"188136":1,"188137":1,"188138":1,"188139":1,"188140":1,"188141":1,"188142":1,"188143":1,"188144":1,"188182":1,"188183":1,"188193":1,"188194":1,"188195":1,"188196":1,"188197":1,"188198":1,"188199":1,"188200":1,"188203":1,"188263":1,"188264":1,"188265":1,"188266":1,"188267":1,"188268":1,"188289":1,"188290":1,"188291":1,"188292":1,"188293":1,"188294":1,"188295":1,"188296":1,"188297":1,"188298":1,"188299":1,"188300":1,"188301":1,"188302":1,"188303":1,"188347":1,"188348":1,"188349":1,"188350":1,"188351":1,"188352":1,"188372":1,"188373":1,"188374":1,"188375":1,"188376":1,"188377":1,"188378":1,"188379":1,"188380":1,"189192":1,"189193":1,"189194":1,"189195":1,"189198":1,"189199":1,"189200":1,"189250":1,"189251":1,"189252":1,"189253":1,"189254":1,"189255":1,"189256":1,"189257":1,"189258":1,"189318":1,"189319":1,"189320":1,"189321":1,"189322":1,"189323":1,"189324":1,"189345":1,"189346":1,"189347":1,"189348":1,"189349":1,"189350":1,"189351":1,"189352":1,"189353":1,"189354":1,"189355":1,"189356":1,"189357":1,"189359":1,"189360":1,"189402":1,"189403":1,"189404":1,"189405":1,"189406":1,"189407":1,"189408":1,"189428":1,"189429":1,"189430":1,"189431":1,"189432":1,"189433":1,"189434":1,"189435":1,"190251":1,"190254":1,"190255":1,"190256":1,"190307":1,"190308":1,"190309":1,"190310":1,"190311":1,"190372":1,"190373":1,"190374":1,"190375":1,"190376":1,"190377":1,"190378":1,"190379":1,"190380":1,"190400":1,"190401":1,"190402":1,"190403":1,"190404":1,"190405":1,"190406":1,"190407":1,"190408":1,"190409":1,"190410":1,"190411":1,"190412":1,"190413":1,"190414":1,"190415":1,"190416":1,"190417":1,"190422":1,"190458":1,"190459":1,"190460":1,"190461":1,"190462":1,"190463":1,"190464":1,"190484":1,"190485":1,"190486":1,"190487":1,"190488":1,"190489":1,"190490":1,"190491":1,"191308":1,"191309":1,"191310":1,"191311":1,"191363":1,"191364":1,"191365":1,"191366":1,"191427":1,"191428":1,"191429":1,"191430":1,"191431":1,"191432":1,"191436":1,"191437":1,"191456":1,"191457":1,"191458":1,"191459":1,"191460":1,"191461":1,"191462":1,"191463":1,"191464":1,"191465":1,"191466":1,"191467":1,"191468":1,"191469":1,"191470":1,"191471":1,"191472":1,"191473":1,"191474":1,"191475":1,"191476":1,"191477":1,"191478":1,"191514":1,"191515":1,"191516":1,"191517":1,"191518":1,"191519":1,"191520":1,"191539":1,"191540":1,"191541":1,"191542":1,"191543":1,"191544":1,"191545":1,"191546":1,"191547":1,"192419":1,"192420":1,"192421":1,"192422":1,"192484":1,"192485":1,"192486":1,"192487":1,"192493":1,"192494":1,"192512":1,"192513":1,"192514":1,"192515":1,"192516":1,"192517":1,"192518":1,"192519":1,"192520":1,"192521":1,"192522":1,"192523":1,"192524":1,"192525":1,"192526":1,"192527":1,"192528":1,"192529":1,"192530":1,"192531":1,"192532":1,"192533":1,"192534":1,"192569":1,"192570":1,"192571":1,"192572":1,"192573":1,"192574":1,"192575":1,"192576":1,"192594":1,"192595":1,"192596":1,"192597":1,"192598":1,"192599":1,"192600":1,"192601":1,"192602":1,"192603":1,"193475":1,"193476":1,"193477":1,"193478":1,"193541":1,"193542":1,"193543":1,"193549":1,"193550":1,"193551":1,"193552":1,"193567":1,"193568":1,"193569":1,"193570":1,"193571":1,"193572":1,"193573":1,"193574":1,"193575":1,"193576":1,"193577":1,"193578":1,"193579":1,"193580":1,"193581":1,"193582":1,"193583":1,"193584":1,"193585":1,"193586":1,"193587":1,"193588":1,"193589":1,"193590":1,"193591":1,"193624":1,"193625":1,"193626":1,"193627":1,"193628":1,"193629":1,"193630":1,"193631":1,"193632":1,"193633":1,"193650":1,"193651":1,"193652":1,"193653":1,"193654":1,"193655":1,"193656":1,"193657":1,"193658":1,"193659":1,"193660":1,"194532":1,"194533":1,"194597":1,"194598":1,"194599":1,"194605":1,"194606":1,"194607":1,"194608":1,"194609":1,"194623":1,"194624":1,"194625":1,"194626":1,"194627":1,"194628":1,"194629":1,"194630":1,"194631":1,"194632":1,"194633":1,"194634":1,"194635":1,"194636":1,"194637":1,"194638":1,"194639":1,"194640":1,"194641":1,"194642":1,"194643":1,"194644":1,"194645":1,"194646":1,"194647":1,"194680":1,"194681":1,"194682":1,"194683":1,"194684":1,"194685":1,"194686":1,"194687":1,"194688":1,"194689":1,"194690":1,"194706":1,"194707":1,"194708":1,"194709":1,"194710":1,"194711":1,"194712":1,"194713":1,"194714":1,"194715":1,"194716":1,"194717":1,"195653":1,"195654":1,"195655":1,"195662":1,"195663":1,"195664":1,"195665":1,"195666":1,"195679":1,"195680":1,"195681":1,"195682":1,"195683":1,"195684":1,"195685":1,"195686":1,"195687":1,"195688":1,"195689":1,"195690":1,"195691":1,"195692":1,"195693":1,"195694":1,"195695":1,"195696":1,"195697":1,"195698":1,"195699":1,"195700":1,"195701":1,"195702":1,"195703":1,"195704":1,"195736":1,"195737":1,"195738":1,"195739":1,"195740":1,"195741":1,"195742":1,"195743":1,"195744":1,"195745":1,"195746":1,"195747":1,"195748":1,"195749":1,"195761":1,"195762":1,"195763":1,"195764":1,"195765":1,"195766":1,"195767":1,"195768":1,"195769":1,"195770":1,"195771":1,"195772":1,"195773":1,"196709":1,"196710":1,"196711":1,"196718":1,"196719":1,"196720":1,"196721":1,"196722":1,"196735":1,"196736":1,"196737":1,"196738":1,"196739":1,"196740":1,"196742":1,"196743":1,"196744":1,"196745":1,"196746":1,"196747":1,"196748":1,"196749":1,"196750":1,"196751":1,"196752":1,"196753":1,"196754":1,"196755":1,"196756":1,"196757":1,"196758":1,"196759":1,"196760":1,"196761":1,"196791":1,"196792":1,"196793":1,"196794":1,"196795":1,"196796":1,"196797":1,"196798":1,"196799":1,"196800":1,"196801":1,"196802":1,"196803":1,"196804":1,"196805":1,"196806":1,"196816":1,"196817":1,"196818":1,"196819":1,"196820":1,"196821":1,"196822":1,"196823":1,"196824":1,"196826":1,"196827":1,"196828":1,"197765":1,"197766":1,"197767":1,"197768":1,"197774":1,"197775":1,"197776":1,"197777":1,"197778":1,"197779":1,"197792":1,"197793":1,"197794":1,"197795":1,"197796":1,"197798":1,"197799":1,"197800":1,"197801":1,"197802":1,"197803":1,"197804":1,"197805":1,"197806":1,"197807":1,"197808":1,"197809":1,"197810":1,"197811":1,"197812":1,"197813":1,"197814":1,"197815":1,"197816":1,"197817":1,"197846":1,"197847":1,"197848":1,"197849":1,"197850":1,"197851":1,"197852":1,"197853":1,"197854":1,"197855":1,"197856":1,"197857":1,"197858":1,"197859":1,"197860":1,"197861":1,"197862":1,"197872":1,"197873":1,"197875":1,"197876":1,"197877":1,"197878":1,"197879":1,"197880":1,"197881":1,"197882":1,"197883":1,"198822":1,"198823":1,"198824":1,"198830":1,"198831":1,"198832":1,"198833":1,"198834":1,"198835":1,"198836":1,"198849":1,"198850":1,"198851":1,"198852":1,"198853":1,"198854":1,"198855":1,"198856":1,"198857":1,"198858":1,"198859":1,"198860":1,"198861":1,"198862":1,"198863":1,"198864":1,"198865":1,"198866":1,"198867":1,"198868":1,"198869":1,"198870":1,"198871":1,"198872":1,"198873":1,"198902":1,"198903":1,"198904":1,"198905":1,"198906":1,"198907":1,"198908":1,"198909":1,"198910":1,"198911":1,"198912":1,"198913":1,"198914":1,"198915":1,"198916":1,"198917":1,"198918":1,"198928":1,"198929":1,"198931":1,"198932":1,"198933":1,"198934":1,"198935":1,"198936":1,"198937":1,"198938":1,"198939":1,"199879":1,"199880":1,"199886":1,"199887":1,"199888":1,"199889":1,"199890":1,"199891":1,"199906":1,"199907":1,"199908":1,"199909":1,"199910":1,"199911":1,"199912":1,"199913":1,"199914":1,"199915":1,"199916":1,"199917":1,"199918":1,"199919":1,"199920":1,"199921":1,"199922":1,"199923":1,"199924":1,"199925":1,"199926":1,"199927":1,"199928":1,"199929":1,"199958":1,"199959":1,"199960":1,"199961":1,"199962":1,"199963":1,"199964":1,"199965":1,"199966":1,"199967":1,"199968":1,"199969":1,"199970":1,"199971":1,"199972":1,"199973":1,"199974":1,"199975":1,"199984":1,"199985":1,"199986":1,"199987":1,"199988":1,"199989":1,"199990":1,"199991":1,"199992":1,"199993":1,"199994":1,"199995":1,"200935":1,"200936":1,"200937":1,"200942":1,"200943":1,"200944":1,"200945":1,"200946":1,"200963":1,"200964":1,"200965":1,"200966":1,"200967":1,"200968":1,"200969":1,"200970":1,"200971":1,"200972":1,"200973":1,"200974":1,"200975":1,"200976":1,"200977":1,"200978":1,"200979":1,"200980":1,"200981":1,"200982":1,"200983":1,"200984":1,"200985":1,"200986":1,"201013":1,"201014":1,"201015":1,"201016":1,"201017":1,"201018":1,"201019":1,"201020":1,"201021":1,"201022":1,"201023":1,"201024":1,"201025":1,"201026":1,"201027":1,"201028":1,"201029":1,"201030":1,"201031":1,"201032":1,"201041":1,"201042":1,"201043":1,"201044":1,"201045":1,"201046":1,"201047":1,"201048":1,"201049":1,"201050":1,"201051":1,"201991":1,"201992":1,"201993":1,"201994":1,"201999":1,"202019":1,"202020":1,"202021":1,"202022":1,"202023":1,"202024":1,"202025":1,"202026":1,"202027":1,"202028":1,"202029":1,"202030":1,"202031":1,"202032":1,"202033":1,"202034":1,"202035":1,"202036":1,"202037":1,"202038":1,"202039":1,"202040":1,"202041":1,"202042":1,"202043":1,"202068":1,"202069":1,"202070":1,"202071":1,"202072":1,"202073":1,"202074":1,"202075":1,"202076":1,"202077":1,"202078":1,"202080":1,"202081":1,"202082":1,"202083":1,"202084":1,"202085":1,"202086":1,"202087":1,"202088":1,"202098":1,"202099":1,"202100":1,"202101":1,"202102":1,"202103":1,"202104":1,"202105":1,"202106":1,"202107":1,"203047":1,"203048":1,"203049":1,"203050":1,"203068":1,"203075":1,"203076":1,"203077":1,"203078":1,"203079":1,"203080":1,"203081":1,"203082":1,"203083":1,"203084":1,"203085":1,"203086":1,"203087":1,"203088":1,"203089":1,"203090":1,"203091":1,"203092":1,"203093":1,"203094":1,"203095":1,"203096":1,"203097":1,"203098":1,"203099":1,"203100":1,"203101":1,"203102":1,"203121":1,"203122":1,"203123":1,"203124":1,"203125":1,"203126":1,"203127":1,"203128":1,"203129":1,"203130":1,"203131":1,"203132":1,"203133":1,"203134":1,"203136":1,"203137":1,"203138":1,"203139":1,"203140":1,"203141":1,"203142":1,"203143":1,"203144":1,"203154":1,"203155":1,"203156":1,"203157":1,"203158":1,"203159":1,"203160":1,"203161":1,"203162":1,"203163":1,"204102":1,"204103":1,"204104":1,"204105":1,"204106":1,"204124":1,"204131":1,"204132":1,"204133":1,"204134":1,"204135":1,"204136":1,"204137":1,"204138":1,"204139":1,"204140":1,"204141":1,"204142":1,"204143":1,"204144":1,"204145":1,"204146":1,"204147":1,"204148":1,"204149":1,"204150":1,"204151":1,"204152":1,"204153":1,"204154":1,"204155":1,"204156":1,"204157":1,"204158":1,"204159":1,"204164":1,"204165":1,"204166":1,"204167":1,"204176":1,"204177":1,"204179":1,"204180":1,"204181":1,"204182":1,"204183":1,"204184":1,"204185":1,"204186":1,"204187":1,"204188":1,"204189":1,"204190":1,"204191":1,"204192":1,"204193":1,"204194":1,"204195":1,"204196":1,"204197":1,"204198":1,"204199":1,"204210":1,"204211":1,"204212":1,"204213":1,"204214":1,"204215":1,"204216":1,"204217":1,"204218":1,"204219":1,"204220":1,"205157":1,"205158":1,"205159":1,"205160":1,"205161":1,"205162":1,"205180":1,"205199":1,"205200":1,"205201":1,"205202":1,"205203":1,"205204":1,"205205":1,"205206":1,"205207":1,"205208":1,"205209":1,"205210":1,"205211":1,"205212":1,"205213":1,"205214":1,"205215":1,"205216":1,"205217":1,"205218":1,"205219":1,"205220":1,"205221":1,"205222":1,"205223":1,"205224":1,"205231":1,"205232":1,"205233":1,"205235":1,"205236":1,"205237":1,"205238":1,"205239":1,"205240":1,"205241":1,"205242":1,"205243":1,"205244":1,"205245":1,"205246":1,"205247":1,"205248":1,"205249":1,"205250":1,"205251":1,"205252":1,"205253":1,"205254":1,"205266":1,"205267":1,"205268":1,"205269":1,"205270":1,"205271":1,"205272":1,"205273":1,"205274":1,"205275":1,"205276":1,"205277":1,"206212":1,"206213":1,"206214":1,"206215":1,"206216":1,"206217":1,"206218":1,"206236":1,"206237":1,"206256":1,"206257":1,"206258":1,"206259":1,"206261":1,"206262":1,"206263":1,"206264":1,"206265":1,"206266":1,"206267":1,"206268":1,"206269":1,"206270":1,"206271":1,"206272":1,"206273":1,"206274":1,"206275":1,"206276":1,"206277":1,"206278":1,"206279":1,"206280":1,"206281":1,"206286":1,"206287":1,"206288":1,"206289":1,"206290":1,"206291":1,"206292":1,"206293":1,"206294":1,"206295":1,"206296":1,"206297":1,"206298":1,"206299":1,"206300":1,"206301":1,"206302":1,"206303":1,"206304":1,"206305":1,"206306":1,"206307":1,"206308":1,"206322":1,"206323":1,"206324":1,"206325":1,"206326":1,"206327":1,"206328":1,"206329":1,"206330":1,"206331":1,"206332":1,"206333":1,"207267":1,"207268":1,"207269":1,"207270":1,"207271":1,"207272":1,"207273":1,"207292":1,"207313":1,"207314":1,"207315":1,"207316":1,"207317":1,"207318":1,"207319":1,"207320":1,"207321":1,"207322":1,"207323":1,"207324":1,"207325":1,"207326":1,"207327":1,"207328":1,"207329":1,"207330":1,"207331":1,"207332":1,"207333":1,"207334":1,"207335":1,"207336":1,"207337":1,"207338":1,"207339":1,"207340":1,"207341":1,"207342":1,"207343":1,"207344":1,"207345":1,"207346":1,"207347":1,"207348":1,"207349":1,"207350":1,"207351":1,"207352":1,"207353":1,"207354":1,"207355":1,"207356":1,"207357":1,"207358":1,"207359":1,"207360":1,"207361":1,"207362":1,"207363":1,"207378":1,"207379":1,"207380":1,"207381":1,"207382":1,"207383":1,"207384":1,"207385":1,"207386":1,"207387":1,"207388":1,"208324":1,"208325":1,"208326":1,"208327":1,"208328":1,"208329":1,"208370":1,"208371":1,"208372":1,"208373":1,"208374":1,"208375":1,"208376":1,"208377":1,"208378":1,"208379":1,"208380":1,"208381":1,"208382":1,"208383":1,"208384":1,"208385":1,"208386":1,"208387":1,"208388":1,"208389":1,"208390":1,"208391":1,"208392":1,"208393":1,"208394":1,"208395":1,"208396":1,"208397":1,"208398":1,"208399":1,"208400":1,"208401":1,"208402":1,"208403":1,"208404":1,"208405":1,"208406":1,"208407":1,"208408":1,"208409":1,"208410":1,"208411":1,"208412":1,"208413":1,"208414":1,"208433":1,"208434":1,"208435":1,"208436":1,"208437":1,"208438":1,"208439":1,"208440":1,"208441":1,"208442":1,"208443":1,"209381":1,"209382":1,"209383":1,"209384":1,"209427":1,"209428":1,"209429":1,"209430":1,"209431":1,"209432":1,"209433":1,"209434":1,"209435":1,"209436":1,"209437":1,"209438":1,"209439":1,"209440":1,"209441":1,"209442":1,"209443":1,"209444":1,"209445":1,"209446":1,"209447":1,"209448":1,"209449":1,"209450":1,"209451":1,"209452":1,"209453":1,"209454":1,"209455":1,"209456":1,"209457":1,"209458":1,"209459":1,"209460":1,"209461":1,"209462":1,"209463":1,"209464":1,"209465":1,"209466":1,"209467":1,"209468":1,"209469":1,"209487":1,"209488":1,"209489":1,"209490":1,"209491":1,"209492":1,"209493":1,"209494":1,"209495":1,"209496":1,"209497":1,"209498":1,"209499":1,"210484":1,"210485":1,"210486":1,"210487":1,"210488":1,"210489":1,"210490":1,"210491":1,"210492":1,"210493":1,"210494":1,"210495":1,"210496":1,"210497":1,"210498":1,"210499":1,"210501":1,"210502":1,"210503":1,"210504":1,"210505":1,"210506":1,"210507":1,"210508":1,"210509":1,"210510":1,"210511":1,"210512":1,"210513":1,"210514":1,"210515":1,"210516":1,"210517":1,"210518":1,"210519":1,"210520":1,"210521":1,"210522":1,"210523":1,"210524":1,"210542":1,"210543":1,"210544":1,"210545":1,"210546":1,"210547":1,"210548":1,"210549":1,"210550":1,"210551":1,"210552":1,"210553":1,"210554":1,"210555":1,"211540":1,"211541":1,"211542":1,"211543":1,"211544":1,"211545":1,"211546":1,"211547":1,"211548":1,"211549":1,"211550":1,"211551":1,"211552":1,"211553":1,"211554":1,"211555":1,"211557":1,"211558":1,"211559":1,"211560":1,"211561":1,"211562":1,"211563":1,"211564":1,"211565":1,"211566":1,"211567":1,"211568":1,"211569":1,"211570":1,"211571":1,"211572":1,"211573":1,"211574":1,"211575":1,"211576":1,"211577":1,"211578":1,"211579":1,"211597":1,"211598":1,"211599":1,"211600":1,"211601":1,"211602":1,"211603":1,"211604":1,"211605":1,"211606":1,"211607":1,"211608":1,"211609":1,"211610":1,"212596":1,"212597":1,"212598":1,"212599":1,"212600":1,"212601":1,"212602":1,"212603":1,"212604":1,"212605":1,"212606":1,"212607":1,"212608":1,"212609":1,"212610":1,"212611":1,"212612":1,"212613":1,"212614":1,"212615":1,"212616":1,"212617":1,"212618":1,"212619":1,"212620":1,"212621":1,"212622":1,"212623":1,"212624":1,"212625":1,"212626":1,"212627":1,"212628":1,"212629":1,"212631":1,"212632":1,"212633":1,"212634":1,"212635":1,"212653":1,"212654":1,"212655":1,"212656":1,"212657":1,"212658":1,"212659":1,"212660":1,"212661":1,"212662":1,"212663":1,"212664":1,"212665":1,"213652":1,"213653":1,"213654":1,"213655":1,"213656":1,"213657":1,"213659":1,"213660":1,"213661":1,"213662":1,"213663":1,"213664":1,"213665":1,"213666":1,"213667":1,"213668":1,"213669":1,"213670":1,"213671":1,"213672":1,"213673":1,"213674":1,"213675":1,"213676":1,"213677":1,"213678":1,"213679":1,"213680":1,"213681":1,"213682":1,"213683":1,"213684":1,"213685":1,"213687":1,"213688":1,"213689":1,"213690":1,"213691":1,"213709":1,"213710":1,"213711":1,"213712":1,"213713":1,"213714":1,"213715":1,"213716":1,"213717":1,"213718":1,"213719":1,"213720":1,"214708":1,"214709":1,"214710":1,"214711":1,"214712":1,"214713":1,"214714":1,"214715":1,"214716":1,"214717":1,"214718":1,"214719":1,"214720":1,"214721":1,"214722":1,"214723":1,"214724":1,"214725":1,"214726":1,"214727":1,"214728":1,"214729":1,"214730":1,"214731":1,"214732":1,"214733":1,"214734":1,"214735":1,"214736":1,"214737":1,"214738":1,"214739":1,"214740":1,"214741":1,"214742":1,"214743":1,"214744":1,"214745":1,"214746":1,"214747":1,"214764":1,"214765":1,"214766":1,"214767":1,"214768":1,"214769":1,"214770":1,"214771":1,"214772":1,"214773":1,"214774":1,"214775":1,"214776":1,"215764":1,"215765":1,"215766":1,"215767":1,"215768":1,"215769":1,"215770":1,"215771":1,"215772":1,"215773":1,"215774":1,"215775":1,"215776":1,"215777":1,"215778":1,"215779":1,"215780":1,"215781":1,"215782":1,"215783":1,"215784":1,"215785":1,"215786":1,"215787":1,"215788":1,"215789":1,"215790":1,"215791":1,"215792":1,"215793":1,"215794":1,"215795":1,"215796":1,"215797":1,"215798":1,"215799":1,"215800":1,"215801":1,"215802":1,"215817":1,"215818":1,"215819":1,"215820":1,"215821":1,"215822":1,"215823":1,"215824":1,"215825":1,"215826":1,"215827":1,"215828":1,"215830":1,"215831":1,"215832":1,"216572":1,"216820":1,"216821":1,"216822":1,"216823":1,"216824":1,"216825":1,"216826":1,"216827":1,"216828":1,"216829":1,"216830":1,"216831":1,"216832":1,"216833":1,"216834":1,"216835":1,"216836":1,"216837":1,"216838":1,"216839":1,"216840":1,"216841":1,"216842":1,"216843":1,"216844":1,"216845":1,"216846":1,"216847":1,"216848":1,"216849":1,"216850":1,"216851":1,"216852":1,"216853":1,"216854":1,"216855":1,"216856":1,"216857":1,"216872":1,"216873":1,"216874":1,"216875":1,"216876":1,"216877":1,"216878":1,"216879":1,"216880":1,"216881":1,"216882":1,"216883":1,"216884":1,"216886":1,"216887":1,"216888":1,"217619":1,"217620":1,"217621":1,"217622":1,"217627":1,"217628":1,"217629":1,"217630":1,"217876":1,"217877":1,"217878":1,"217879":1,"217880":1,"217881":1,"217882":1,"217883":1,"217884":1,"217885":1,"217886":1,"217887":1,"217888":1,"217889":1,"217890":1,"217891":1,"217892":1,"217893":1,"217894":1,"217895":1,"217896":1,"217897":1,"217898":1,"217899":1,"217900":1,"217901":1,"217902":1,"217903":1,"217904":1,"217905":1,"217906":1,"217907":1,"217908":1,"217909":1,"217910":1,"217911":1,"217912":1,"217913":1,"217927":1,"217928":1,"217929":1,"217930":1,"217931":1,"217932":1,"217933":1,"217934":1,"217935":1,"217936":1,"217937":1,"217938":1,"217939":1,"217940":1,"217941":1,"217942":1,"217943":1,"218672":1,"218673":1,"218674":1,"218676":1,"218677":1,"218678":1,"218679":1,"218680":1,"218681":1,"218683":1,"218684":1,"218685":1,"218686":1,"218687":1,"218928":1,"218929":1,"218930":1,"218931":1,"218932":1,"218933":1,"218934":1,"218935":1,"218936":1,"218937":1,"218938":1,"218939":1,"218940":1,"218941":1,"218942":1,"218943":1,"218945":1,"218946":1,"218947":1,"218948":1,"218949":1,"218950":1,"218951":1,"218952":1,"218953":1,"218954":1,"218955":1,"218956":1,"218957":1,"218958":1,"218959":1,"218960":1,"218961":1,"218962":1,"218963":1,"218964":1,"218965":1,"218966":1,"218967":1,"218968":1,"218969":1,"218982":1,"218983":1,"218984":1,"218985":1,"218986":1,"218987":1,"218988":1,"218989":1,"218990":1,"218991":1,"218992":1,"218993":1,"218994":1,"218995":1,"218996":1,"218997":1,"218998":1,"219727":1,"219728":1,"219729":1,"219730":1,"219731":1,"219732":1,"219733":1,"219734":1,"219735":1,"219736":1,"219737":1,"219738":1,"219739":1,"219740":1,"219741":1,"219742":1,"219743":1,"219985":1,"219986":1,"219987":1,"219988":1,"219989":1,"219990":1,"219991":1,"219992":1,"219993":1,"219994":1,"219995":1,"219996":1,"219997":1,"219998":1,"219999":1,"220001":1,"220002":1,"220003":1,"220004":1,"220005":1,"220006":1,"220007":1,"220008":1,"220009":1,"220010":1,"220011":1,"220012":1,"220013":1,"220014":1,"220015":1,"220016":1,"220017":1,"220018":1,"220019":1,"220020":1,"220021":1,"220022":1,"220023":1,"220024":1,"220025":1,"220037":1,"220038":1,"220039":1,"220040":1,"220041":1,"220042":1,"220043":1,"220044":1,"220045":1,"220046":1,"220047":1,"220048":1,"220049":1,"220783":1,"220784":1,"220785":1,"220786":1,"220787":1,"220788":1,"220789":1,"220790":1,"220791":1,"220792":1,"220793":1,"220794":1,"220795":1,"220796":1,"220797":1,"220798":1,"220799":1,"221042":1,"221043":1,"221044":1,"221045":1,"221046":1,"221047":1,"221048":1,"221049":1,"221050":1,"221051":1,"221052":1,"221053":1,"221054":1,"221055":1,"221056":1,"221057":1,"221058":1,"221059":1,"221060":1,"221061":1,"221062":1,"221064":1,"221065":1,"221066":1,"221067":1,"221068":1,"221069":1,"221070":1,"221071":1,"221072":1,"221073":1,"221074":1,"221075":1,"221076":1,"221077":1,"221078":1,"221079":1,"221080":1,"221081":1,"221093":1,"221094":1,"221095":1,"221096":1,"221097":1,"221098":1,"221099":1,"221100":1,"221101":1,"221102":1,"221103":1,"221104":1,"221838":1,"221839":1,"221840":1,"221841":1,"221842":1,"221843":1,"221844":1,"221845":1,"221846":1,"221847":1,"221848":1,"221849":1,"221850":1,"221852":1,"221853":1,"221854":1,"221855":1,"222098":1,"222099":1,"222100":1,"222101":1,"222102":1,"222103":1,"222104":1,"222105":1,"222106":1,"222107":1,"222108":1,"222109":1,"222110":1,"222111":1,"222112":1,"222113":1,"222114":1,"222115":1,"222116":1,"222117":1,"222118":1,"222119":1,"222120":1,"222121":1,"222122":1,"222123":1,"222124":1,"222125":1,"222126":1,"222127":1,"222128":1,"222129":1,"222130":1,"222131":1,"222132":1,"222133":1,"222134":1,"222135":1,"222136":1,"222137":1,"222150":1,"222151":1,"222152":1,"222153":1,"222154":1,"222155":1,"222156":1,"222157":1,"222158":1,"222159":1,"222891":1,"222892":1,"222893":1,"222894":1,"222895":1,"222896":1,"222897":1,"222898":1,"222899":1,"222900":1,"222901":1,"222902":1,"222903":1,"222904":1,"222905":1,"222906":1,"222907":1,"222908":1,"222909":1,"222910":1,"222911":1,"223154":1,"223155":1,"223156":1,"223157":1,"223158":1,"223159":1,"223160":1,"223161":1,"223162":1,"223163":1,"223164":1,"223165":1,"223166":1,"223167":1,"223168":1,"223169":1,"223170":1,"223171":1,"223172":1,"223173":1,"223174":1,"223175":1,"223176":1,"223177":1,"223178":1,"223179":1,"223180":1,"223181":1,"223182":1,"223183":1,"223184":1,"223185":1,"223186":1,"223187":1,"223188":1,"223189":1,"223190":1,"223191":1,"223192":1,"223193":1,"223207":1,"223208":1,"223209":1,"223210":1,"223211":1,"223212":1,"223213":1,"223214":1,"223380":1,"223381":1,"223382":1,"223383":1,"223384":1,"223385":1,"223388":1,"223389":1,"223390":1,"223391":1,"223392":1,"223393":1,"223394":1,"223395":1,"223946":1,"223947":1,"223949":1,"223950":1,"223951":1,"223952":1,"223953":1,"223954":1,"223955":1,"223956":1,"223957":1,"223958":1,"223960":1,"223961":1,"223962":1,"223963":1,"223964":1,"223965":1,"223966":1,"223967":1,"224209":1,"224210":1,"224211":1,"224212":1,"224213":1,"224214":1,"224215":1,"224216":1,"224217":1,"224218":1,"224219":1,"224220":1,"224221":1,"224222":1,"224223":1,"224224":1,"224225":1,"224226":1,"224227":1,"224228":1,"224229":1,"224230":1,"224231":1,"224232":1,"224233":1,"224234":1,"224235":1,"224236":1,"224237":1,"224238":1,"224239":1,"224240":1,"224241":1,"224242":1,"224243":1,"224244":1,"224245":1,"224246":1,"224247":1,"224248":1,"224249":1,"224250":1,"224436":1,"224437":1,"224438":1,"224439":1,"224440":1,"224441":1,"224444":1,"224445":1,"224446":1,"224447":1,"224448":1,"224449":1,"224450":1,"224451":1,"224997":1,"224998":1,"224999":1,"225000":1,"225001":1,"225002":1,"225003":1,"225004":1,"225005":1,"225006":1,"225007":1,"225008":1,"225009":1,"225010":1,"225011":1,"225012":1,"225013":1,"225014":1,"225015":1,"225016":1,"225017":1,"225018":1,"225019":1,"225020":1,"225021":1,"225022":1,"225023":1,"225024":1,"225264":1,"225265":1,"225266":1,"225267":1,"225268":1,"225269":1,"225270":1,"225271":1,"225272":1,"225274":1,"225275":1,"225276":1,"225277":1,"225278":1,"225279":1,"225280":1,"225281":1,"225282":1,"225283":1,"225284":1,"225285":1,"225286":1,"225287":1,"225288":1,"225289":1,"225290":1,"225291":1,"225292":1,"225293":1,"225295":1,"225296":1,"225297":1,"225298":1,"225299":1,"225300":1,"225301":1,"225302":1,"225303":1,"225304":1,"225305":1,"225306":1,"225307":1,"225495":1,"225496":1,"225497":1,"225498":1,"225499":1,"225500":1,"225501":1,"225502":1,"225503":1,"225504":1,"225507":1,"226052":1,"226053":1,"226054":1,"226055":1,"226056":1,"226057":1,"226058":1,"226059":1,"226060":1,"226061":1,"226062":1,"226063":1,"226064":1,"226065":1,"226066":1,"226067":1,"226068":1,"226069":1,"226070":1,"226071":1,"226072":1,"226073":1,"226074":1,"226075":1,"226076":1,"226077":1,"226078":1,"226079":1,"226080":1,"226081":1,"226320":1,"226321":1,"226322":1,"226323":1,"226324":1,"226325":1,"226326":1,"226327":1,"226328":1,"226330":1,"226331":1,"226332":1,"226333":1,"226334":1,"226335":1,"226336":1,"226337":1,"226338":1,"226339":1,"226340":1,"226341":1,"226342":1,"226343":1,"226344":1,"226345":1,"226346":1,"226347":1,"226348":1,"226349":1,"226351":1,"226352":1,"226353":1,"226354":1,"226355":1,"226356":1,"226357":1,"226358":1,"226359":1,"226360":1,"226361":1,"226362":1,"226363":1,"226551":1,"226552":1,"226553":1,"226554":1,"226555":1,"226556":1,"226557":1,"226558":1,"226559":1,"226560":1,"226563":1,"226568":1,"227108":1,"227109":1,"227110":1,"227111":1,"227112":1,"227113":1,"227114":1,"227115":1,"227116":1,"227117":1,"227118":1,"227119":1,"227120":1,"227121":1,"227122":1,"227123":1,"227124":1,"227125":1,"227126":1,"227127":1,"227128":1,"227129":1,"227130":1,"227131":1,"227132":1,"227133":1,"227134":1,"227135":1,"227136":1,"227137":1,"227138":1,"227139":1,"227140":1,"227376":1,"227377":1,"227378":1,"227379":1,"227380":1,"227381":1,"227382":1,"227383":1,"227384":1,"227385":1,"227386":1,"227387":1,"227388":1,"227389":1,"227390":1,"227391":1,"227392":1,"227393":1,"227394":1,"227395":1,"227396":1,"227397":1,"227398":1,"227399":1,"227400":1,"227401":1,"227402":1,"227403":1,"227404":1,"227405":1,"227406":1,"227407":1,"227408":1,"227409":1,"227410":1,"227411":1,"227412":1,"227413":1,"227414":1,"227415":1,"227416":1,"227417":1,"227418":1,"227419":1,"227607":1,"227608":1,"227609":1,"227610":1,"227611":1,"227612":1,"227613":1,"227614":1,"227615":1,"227616":1,"227617":1,"227618":1,"227619":1,"227620":1,"227621":1,"227622":1,"227623":1,"227624":1,"228164":1,"228165":1,"228166":1,"228167":1,"228168":1,"228169":1,"228170":1,"228171":1,"228172":1,"228173":1,"228174":1,"228175":1,"228176":1,"228177":1,"228178":1,"228179":1,"228180":1,"228181":1,"228182":1,"228183":1,"228184":1,"228185":1,"228186":1,"228187":1,"228188":1,"228189":1,"228190":1,"228191":1,"228192":1,"228193":1,"228194":1,"228195":1,"228196":1,"228268":1,"228269":1,"228431":1,"228432":1,"228433":1,"228434":1,"228435":1,"228436":1,"228437":1,"228438":1,"228439":1,"228440":1,"228441":1,"228442":1,"228443":1,"228444":1,"228445":1,"228446":1,"228447":1,"228448":1,"228449":1,"228450":1,"228451":1,"228452":1,"228453":1,"228454":1,"228455":1,"228456":1,"228457":1,"228458":1,"228459":1,"228460":1,"228461":1,"228462":1,"228463":1,"228464":1,"228465":1,"228466":1,"228467":1,"228468":1,"228469":1,"228470":1,"228471":1,"228472":1,"228473":1,"228474":1,"228475":1,"228661":1,"228662":1,"228663":1,"228664":1,"228665":1,"228666":1,"228667":1,"228668":1,"228669":1,"228670":1,"228671":1,"228672":1,"228673":1,"228674":1,"228675":1,"228676":1,"228677":1,"228678":1,"228679":1,"228680":1,"229220":1,"229221":1,"229222":1,"229223":1,"229224":1,"229225":1,"229226":1,"229227":1,"229228":1,"229229":1,"229230":1,"229231":1,"229232":1,"229233":1,"229234":1,"229238":1,"229239":1,"229240":1,"229241":1,"229242":1,"229243":1,"229244":1,"229245":1,"229246":1,"229247":1,"229248":1,"229249":1,"229250":1,"229251":1,"229252":1,"229317":1,"229318":1,"229319":1,"229320":1,"229321":1,"229322":1,"229323":1,"229324":1,"229325":1,"229478":1,"229479":1,"229486":1,"229487":1,"229488":1,"229489":1,"229490":1,"229491":1,"229492":1,"229493":1,"229494":1,"229495":1,"229496":1,"229497":1,"229498":1,"229499":1,"229500":1,"229501":1,"229502":1,"229503":1,"229504":1,"229505":1,"229506":1,"229507":1,"229508":1,"229509":1,"229510":1,"229511":1,"229512":1,"229513":1,"229514":1,"229515":1,"229516":1,"229517":1,"229518":1,"229521":1,"229522":1,"229523":1,"229524":1,"229525":1,"229526":1,"229527":1,"229528":1,"229529":1,"229530":1,"229531":1,"229717":1,"229718":1,"229719":1,"229720":1,"229721":1,"229722":1,"229723":1,"229724":1,"229725":1,"229726":1,"229727":1,"229728":1,"229729":1,"229730":1,"229731":1,"229732":1,"229735":1,"229736":1,"230275":1,"230276":1,"230278":1,"230279":1,"230280":1,"230281":1,"230282":1,"230283":1,"230284":1,"230285":1,"230286":1,"230287":1,"230288":1,"230289":1,"230290":1,"230291":1,"230292":1,"230293":1,"230294":1,"230295":1,"230296":1,"230297":1,"230298":1,"230299":1,"230300":1,"230301":1,"230302":1,"230303":1,"230304":1,"230305":1,"230306":1,"230307":1,"230308":1,"230370":1,"230371":1,"230372":1,"230373":1,"230374":1,"230375":1,"230376":1,"230377":1,"230378":1,"230379":1,"230380":1,"230381":1,"230533":1,"230534":1,"230535":1,"230536":1,"230537":1,"230538":1,"230539":1,"230542":1,"230543":1,"230544":1,"230545":1,"230546":1,"230547":1,"230548":1,"230549":1,"230550":1,"230551":1,"230552":1,"230553":1,"230554":1,"230555":1,"230556":1,"230557":1,"230558":1,"230559":1,"230560":1,"230561":1,"230562":1,"230563":1,"230564":1,"230565":1,"230566":1,"230567":1,"230568":1,"230569":1,"230570":1,"230571":1,"230572":1,"230573":1,"230574":1,"230577":1,"230578":1,"230579":1,"230580":1,"230581":1,"230582":1,"230583":1,"230584":1,"230585":1,"230586":1,"230587":1,"230588":1,"230773":1,"230774":1,"230775":1,"230776":1,"230777":1,"230778":1,"230779":1,"230780":1,"230781":1,"230782":1,"230783":1,"230784":1,"230785":1,"230786":1,"230787":1,"230788":1,"230791":1,"231330":1,"231331":1,"231332":1,"231333":1,"231334":1,"231335":1,"231336":1,"231337":1,"231338":1,"231339":1,"231340":1,"231341":1,"231342":1,"231343":1,"231344":1,"231345":1,"231346":1,"231347":1,"231348":1,"231349":1,"231350":1,"231351":1,"231352":1,"231353":1,"231354":1,"231355":1,"231356":1,"231357":1,"231358":1,"231359":1,"231360":1,"231361":1,"231362":1,"231363":1,"231426":1,"231427":1,"231428":1,"231429":1,"231430":1,"231431":1,"231435":1,"231436":1,"231437":1,"231589":1,"231590":1,"231591":1,"231592":1,"231593":1,"231594":1,"231595":1,"231598":1,"231599":1,"231600":1,"231601":1,"231602":1,"231603":1,"231604":1,"231605":1,"231606":1,"231607":1,"231608":1,"231609":1,"231610":1,"231611":1,"231612":1,"231613":1,"231614":1,"231615":1,"231616":1,"231617":1,"231618":1,"231619":1,"231620":1,"231621":1,"231622":1,"231623":1,"231624":1,"231625":1,"231626":1,"231627":1,"231628":1,"231629":1,"231630":1,"231631":1,"231632":1,"231633":1,"231634":1,"231635":1,"231636":1,"231637":1,"231638":1,"231639":1,"231640":1,"231641":1,"231642":1,"231643":1,"231644":1,"231645":1,"231829":1,"231830":1,"231831":1,"231832":1,"231833":1,"231834":1,"231835":1,"231836":1,"231837":1,"231838":1,"231839":1,"231840":1,"231841":1,"231842":1,"231843":1,"231844":1,"231845":1,"231846":1,"231847":1,"232386":1,"232387":1,"232388":1,"232389":1,"232390":1,"232391":1,"232396":1,"232397":1,"232398":1,"232399":1,"232400":1,"232401":1,"232402":1,"232403":1,"232404":1,"232405":1,"232406":1,"232407":1,"232408":1,"232409":1,"232410":1,"232411":1,"232412":1,"232413":1,"232414":1,"232415":1,"232416":1,"232417":1,"232418":1,"232419":1,"232645":1,"232646":1,"232647":1,"232648":1,"232649":1,"232650":1,"232651":1,"232652":1,"232653":1,"232654":1,"232655":1,"232656":1,"232657":1,"232658":1,"232659":1,"232660":1,"232661":1,"232662":1,"232663":1,"232664":1,"232665":1,"232666":1,"232667":1,"232668":1,"232669":1,"232670":1,"232671":1,"232672":1,"232673":1,"232674":1,"232675":1,"232676":1,"232677":1,"232678":1,"232679":1,"232680":1,"232681":1,"232682":1,"232683":1,"232684":1,"232685":1,"232686":1,"232687":1,"232688":1,"232689":1,"232690":1,"232691":1,"232692":1,"232693":1,"232694":1,"232695":1,"232696":1,"232697":1,"232698":1,"232699":1,"232700":1,"232701":1,"232886":1,"232887":1,"232888":1,"232889":1,"232890":1,"232891":1,"232892":1,"232893":1,"232894":1,"232895":1,"232896":1,"232897":1,"232898":1,"232899":1,"232900":1,"232901":1,"232902":1,"232903":1,"233443":1,"233444":1,"233445":1,"233446":1,"233453":1,"233454":1,"233455":1,"233456":1,"233457":1,"233458":1,"233459":1,"233460":1,"233461":1,"233462":1,"233463":1,"233464":1,"233465":1,"233466":1,"233467":1,"233468":1,"233469":1,"233470":1,"233471":1,"233472":1,"233473":1,"233474":1,"233700":1,"233701":1,"233702":1,"233703":1,"233704":1,"233705":1,"233706":1,"233707":1,"233708":1,"233709":1,"233710":1,"233711":1,"233712":1,"233713":1,"233714":1,"233715":1,"233716":1,"233717":1,"233718":1,"233719":1,"233720":1,"233721":1,"233722":1,"233723":1,"233724":1,"233725":1,"233726":1,"233727":1,"233728":1,"233729":1,"233730":1,"233731":1,"233732":1,"233733":1,"233734":1,"233735":1,"233736":1,"233737":1,"233738":1,"233739":1,"233740":1,"233741":1,"233742":1,"233743":1,"233744":1,"233745":1,"233746":1,"233747":1,"233748":1,"233749":1,"233750":1,"233752":1,"233753":1,"233754":1,"233755":1,"233756":1,"233757":1,"233943":1,"233944":1,"233945":1,"233946":1,"233947":1,"233948":1,"233949":1,"233950":1,"233953":1,"233954":1,"233955":1,"233956":1,"233957":1,"233958":1,"234511":1,"234512":1,"234513":1,"234514":1,"234515":1,"234516":1,"234517":1,"234518":1,"234519":1,"234520":1,"234521":1,"234522":1,"234523":1,"234528":1,"234529":1,"234755":1,"234756":1,"234757":1,"234758":1,"234759":1,"234761":1,"234762":1,"234763":1,"234764":1,"234765":1,"234766":1,"234767":1,"234768":1,"234769":1,"234770":1,"234771":1,"234772":1,"234773":1,"234774":1,"234777":1,"234778":1,"234779":1,"234780":1,"234781":1,"234782":1,"234783":1,"234784":1,"234785":1,"234786":1,"234787":1,"234788":1,"234789":1,"234790":1,"234791":1,"234792":1,"234793":1,"234794":1,"234795":1,"234796":1,"234797":1,"234798":1,"234799":1,"234800":1,"234801":1,"234802":1,"234803":1,"234804":1,"234805":1,"234806":1,"234808":1,"234809":1,"234810":1,"234811":1,"234812":1,"234813":1,"234814":1,"234999":1,"235000":1,"235001":1,"235002":1,"235003":1,"235004":1,"235005":1,"235006":1,"235009":1,"235010":1,"235011":1,"235012":1,"235013":1,"235014":1,"235568":1,"235569":1,"235570":1,"235571":1,"235575":1,"235576":1,"235810":1,"235811":1,"235812":1,"235813":1,"235814":1,"235815":1,"235816":1,"235817":1,"235818":1,"235819":1,"235820":1,"235821":1,"235822":1,"235823":1,"235824":1,"235825":1,"235826":1,"235827":1,"235828":1,"235829":1,"235830":1,"235833":1,"235834":1,"235835":1,"235836":1,"235837":1,"235838":1,"235839":1,"235840":1,"235841":1,"235842":1,"235843":1,"235844":1,"235845":1,"235846":1,"235847":1,"235849":1,"235850":1,"235851":1,"235852":1,"235853":1,"235854":1,"235855":1,"235856":1,"235857":1,"235858":1,"235859":1,"235860":1,"235861":1,"235862":1,"235863":1,"235864":1,"235865":1,"235866":1,"235867":1,"235868":1,"235869":1,"235870":1,"235871":1,"236055":1,"236058":1,"236059":1,"236060":1,"236061":1,"236062":1,"236063":1,"236064":1,"236065":1,"236066":1,"236067":1,"236068":1,"236069":1,"236070":1,"236866":1,"236867":1,"236868":1,"236869":1,"236870":1,"236871":1,"236872":1,"236873":1,"236874":1,"236875":1,"236876":1,"236877":1,"236878":1,"236879":1,"236880":1,"236881":1,"236882":1,"236883":1,"236884":1,"236885":1,"236886":1,"236887":1,"236888":1,"236889":1,"236890":1,"236891":1,"236892":1,"236893":1,"236894":1,"236895":1,"236896":1,"236897":1,"236898":1,"236899":1,"236900":1,"236901":1,"236902":1,"236903":1,"236904":1,"236905":1,"236906":1,"236907":1,"236908":1,"236909":1,"236910":1,"236911":1,"236912":1,"236913":1,"236914":1,"236915":1,"236916":1,"236917":1,"236918":1,"236919":1,"236920":1,"236921":1,"236922":1,"236923":1,"236924":1,"236925":1,"236926":1,"236927":1,"237111":1,"237114":1,"237115":1,"237116":1,"237117":1,"237118":1,"237119":1,"237120":1,"237121":1,"237122":1,"237123":1,"237124":1,"237125":1,"237126":1,"237127":1,"237922":1,"237923":1,"237924":1,"237925":1,"237926":1,"237927":1,"237928":1,"237929":1,"237930":1,"237931":1,"237932":1,"237933":1,"237941":1,"237942":1,"237943":1,"237944":1,"237945":1,"237946":1,"237947":1,"237948":1,"237949":1,"237950":1,"237951":1,"237952":1,"237953":1,"237954":1,"237955":1,"237956":1,"237957":1,"237958":1,"237959":1,"237960":1,"237961":1,"237962":1,"237963":1,"237964":1,"237965":1,"237966":1,"237967":1,"237968":1,"237969":1,"237970":1,"237971":1,"237972":1,"237973":1,"237974":1,"237975":1,"237976":1,"237977":1,"237978":1,"237979":1,"237980":1,"237981":1,"237982":1,"237983":1,"238134":1,"238167":1,"238168":1,"238169":1,"238170":1,"238171":1,"238172":1,"238173":1,"238174":1,"238175":1,"238176":1,"238177":1,"238178":1,"238179":1,"238180":1,"238181":1,"238182":1,"238183":1,"238184":1,"238978":1,"238979":1,"238980":1,"238981":1,"238982":1,"238983":1,"238984":1,"238985":1,"238986":1,"238987":1,"238988":1,"238989":1,"238997":1,"238998":1,"238999":1,"239000":1,"239001":1,"239002":1,"239003":1,"239004":1,"239005":1,"239006":1,"239007":1,"239008":1,"239009":1,"239010":1,"239011":1,"239012":1,"239013":1,"239014":1,"239015":1,"239016":1,"239017":1,"239018":1,"239019":1,"239020":1,"239021":1,"239022":1,"239023":1,"239024":1,"239025":1,"239026":1,"239027":1,"239028":1,"239029":1,"239030":1,"239031":1,"239032":1,"239033":1,"239034":1,"239035":1,"239036":1,"239037":1,"239038":1,"239189":1,"239190":1,"239191":1,"239192":1,"239193":1,"239222":1,"239223":1,"239224":1,"239225":1,"239226":1,"239227":1,"239228":1,"239229":1,"239230":1,"239231":1,"239232":1,"239233":1,"239234":1,"239235":1,"239236":1,"239237":1,"239238":1,"239239":1,"239240":1,"240034":1,"240035":1,"240036":1,"240037":1,"240038":1,"240039":1,"240040":1,"240043":1,"240044":1,"240045":1,"240053":1,"240054":1,"240055":1,"240056":1,"240057":1,"240058":1,"240059":1,"240060":1,"240061":1,"240062":1,"240063":1,"240064":1,"240065":1,"240066":1,"240067":1,"240068":1,"240069":1,"240070":1,"240071":1,"240072":1,"240073":1,"240074":1,"240075":1,"240076":1,"240077":1,"240078":1,"240079":1,"240080":1,"240081":1,"240082":1,"240083":1,"240084":1,"240085":1,"240086":1,"240087":1,"240088":1,"240089":1,"240090":1,"240091":1,"240092":1,"240245":1,"240246":1,"240247":1,"240248":1,"240249":1,"240250":1,"240251":1,"240252":1,"240277":1,"240278":1,"240279":1,"240280":1,"240281":1,"240282":1,"240283":1,"240284":1,"240285":1,"240286":1,"240287":1,"240288":1,"240289":1,"240290":1,"240291":1,"240292":1,"240293":1,"240296":1,"241090":1,"241091":1,"241092":1,"241093":1,"241094":1,"241095":1,"241096":1,"241099":1,"241100":1,"241101":1,"241109":1,"241110":1,"241111":1,"241112":1,"241113":1,"241114":1,"241115":1,"241116":1,"241117":1,"241118":1,"241119":1,"241120":1,"241121":1,"241122":1,"241123":1,"241124":1,"241125":1,"241126":1,"241127":1,"241128":1,"241129":1,"241130":1,"241131":1,"241132":1,"241133":1,"241134":1,"241135":1,"241136":1,"241137":1,"241138":1,"241139":1,"241140":1,"241141":1,"241142":1,"241143":1,"241144":1,"241145":1,"241146":1,"241147":1,"241301":1,"241302":1,"241303":1,"241304":1,"241305":1,"241306":1,"241307":1,"241308":1,"241309":1,"241333":1,"241334":1,"241335":1,"241336":1,"241337":1,"241338":1,"241339":1,"241340":1,"241341":1,"241342":1,"241343":1,"241344":1,"241345":1,"241346":1,"241347":1,"241348":1,"241349":1,"242145":1,"242146":1,"242147":1,"242148":1,"242149":1,"242150":1,"242151":1,"242152":1,"242153":1,"242154":1,"242155":1,"242156":1,"242157":1,"242165":1,"242166":1,"242167":1,"242168":1,"242170":1,"242171":1,"242172":1,"242173":1,"242174":1,"242175":1,"242176":1,"242177":1,"242178":1,"242179":1,"242180":1,"242181":1,"242182":1,"242183":1,"242184":1,"242185":1,"242186":1,"242187":1,"242188":1,"242189":1,"242190":1,"242191":1,"242192":1,"242193":1,"242194":1,"242195":1,"242196":1,"242197":1,"242198":1,"242199":1,"242200":1,"242201":1,"242202":1,"242337":1,"242338":1,"242357":1,"242358":1,"242359":1,"242360":1,"242361":1,"242362":1,"242363":1,"242364":1,"242365":1,"242366":1,"242389":1,"242390":1,"242391":1,"242392":1,"242393":1,"242394":1,"242395":1,"242396":1,"242397":1,"242398":1,"242399":1,"242400":1,"242401":1,"242402":1,"242403":1,"242404":1,"242405":1,"242406":1,"242407":1,"243201":1,"243202":1,"243203":1,"243204":1,"243205":1,"243206":1,"243207":1,"243208":1,"243209":1,"243210":1,"243211":1,"243212":1,"243213":1,"243221":1,"243222":1,"243223":1,"243224":1,"243225":1,"243226":1,"243227":1,"243228":1,"243229":1,"243230":1,"243231":1,"243232":1,"243233":1,"243234":1,"243235":1,"243236":1,"243237":1,"243238":1,"243239":1,"243240":1,"243241":1,"243242":1,"243243":1,"243244":1,"243245":1,"243246":1,"243247":1,"243248":1,"243249":1,"243250":1,"243251":1,"243252":1,"243253":1,"243254":1,"243255":1,"243256":1,"243257":1,"243258":1,"243392":1,"243393":1,"243394":1,"243395":1,"243396":1,"243412":1,"243413":1,"243414":1,"243415":1,"243416":1,"243417":1,"243418":1,"243419":1,"243420":1,"243421":1,"243422":1,"243444":1,"243445":1,"243446":1,"243447":1,"243448":1,"243449":1,"243450":1,"243451":1,"243452":1,"243453":1,"243454":1,"243455":1,"243456":1,"243457":1,"243458":1,"243459":1,"243460":1,"243461":1,"243462":1,"243463":1,"244257":1,"244258":1,"244259":1,"244260":1,"244261":1,"244262":1,"244263":1,"244264":1,"244265":1,"244266":1,"244267":1,"244268":1,"244269":1,"244270":1,"244271":1,"244272":1,"244273":1,"244274":1,"244275":1,"244276":1,"244277":1,"244278":1,"244279":1,"244280":1,"244281":1,"244282":1,"244283":1,"244284":1,"244285":1,"244286":1,"244287":1,"244288":1,"244289":1,"244290":1,"244291":1,"244292":1,"244293":1,"244294":1,"244295":1,"244296":1,"244297":1,"244298":1,"244299":1,"244300":1,"244301":1,"244302":1,"244303":1,"244304":1,"244305":1,"244306":1,"244307":1,"244308":1,"244309":1,"244310":1,"244311":1,"244312":1,"244313":1,"244314":1,"244446":1,"244447":1,"244448":1,"244449":1,"244450":1,"244451":1,"244452":1,"244453":1,"244466":1,"244467":1,"244468":1,"244469":1,"244470":1,"244472":1,"244473":1,"244474":1,"244475":1,"244476":1,"244477":1,"244498":1,"244499":1,"244500":1,"244501":1,"244502":1,"244503":1,"244504":1,"244505":1,"244506":1,"244507":1,"244508":1,"244509":1,"244510":1,"244511":1,"244514":1,"244515":1,"244516":1,"244517":1,"244518":1,"244519":1,"245313":1,"245314":1,"245315":1,"245316":1,"245317":1,"245318":1,"245319":1,"245320":1,"245321":1,"245322":1,"245323":1,"245324":1,"245325":1,"245326":1,"245327":1,"245328":1,"245329":1,"245330":1,"245331":1,"245332":1,"245333":1,"245334":1,"245335":1,"245336":1,"245337":1,"245338":1,"245339":1,"245340":1,"245341":1,"245342":1,"245344":1,"245345":1,"245346":1,"245347":1,"245348":1,"245349":1,"245350":1,"245351":1,"245352":1,"245353":1,"245354":1,"245355":1,"245356":1,"245357":1,"245358":1,"245359":1,"245360":1,"245361":1,"245362":1,"245363":1,"245364":1,"245365":1,"245366":1,"245367":1,"245501":1,"245502":1,"245503":1,"245504":1,"245505":1,"245506":1,"245507":1,"245508":1,"245509":1,"245510":1,"245511":1,"245512":1,"245513":1,"245514":1,"245515":1,"245516":1,"245517":1,"245518":1,"245519":1,"245520":1,"245521":1,"245522":1,"245523":1,"245524":1,"245525":1,"245526":1,"245527":1,"245528":1,"245529":1,"245530":1,"245531":1,"245532":1,"245553":1,"245554":1,"245555":1,"245556":1,"245559":1,"245560":1,"245561":1,"245562":1,"245563":1,"245564":1,"245565":1,"245566":1,"245567":1,"245570":1,"245571":1,"245572":1,"245573":1,"245574":1,"245575":1,"245576":1,"246369":1,"246370":1,"246371":1,"246372":1,"246373":1,"246374":1,"246375":1,"246376":1,"246377":1,"246378":1,"246379":1,"246380":1,"246381":1,"246382":1,"246383":1,"246384":1,"246385":1,"246386":1,"246387":1,"246388":1,"246389":1,"246390":1,"246391":1,"246392":1,"246393":1,"246394":1,"246395":1,"246396":1,"246397":1,"246398":1,"246399":1,"246400":1,"246401":1,"246402":1,"246403":1,"246404":1,"246405":1,"246406":1,"246407":1,"246408":1,"246409":1,"246410":1,"246411":1,"246412":1,"246413":1,"246414":1,"246415":1,"246416":1,"246417":1,"246418":1,"246419":1,"246420":1,"246421":1,"246422":1,"246554":1,"246555":1,"246556":1,"246557":1,"246559":1,"246560":1,"246561":1,"246562":1,"246563":1,"246564":1,"246565":1,"246566":1,"246567":1,"246568":1,"246569":1,"246570":1,"246571":1,"246572":1,"246573":1,"246574":1,"246575":1,"246576":1,"246577":1,"246578":1,"246579":1,"246580":1,"246581":1,"246582":1,"246583":1,"246584":1,"246585":1,"246586":1,"246587":1,"246588":1,"246609":1,"246610":1,"246611":1,"246612":1,"246615":1,"246616":1,"246617":1,"246618":1,"246619":1,"246620":1,"246621":1,"246622":1,"246623":1,"246624":1,"246625":1,"246626":1,"246627":1,"246628":1,"246629":1,"246630":1,"247425":1,"247426":1,"247427":1,"247428":1,"247429":1,"247430":1,"247431":1,"247432":1,"247433":1,"247434":1,"247435":1,"247436":1,"247437":1,"247438":1,"247439":1,"247440":1,"247441":1,"247442":1,"247443":1,"247444":1,"247445":1,"247446":1,"247450":1,"247451":1,"247452":1,"247453":1,"247454":1,"247455":1,"247456":1,"247457":1,"247458":1,"247459":1,"247460":1,"247461":1,"247462":1,"247463":1,"247464":1,"247465":1,"247466":1,"247467":1,"247468":1,"247469":1,"247470":1,"247471":1,"247472":1,"247473":1,"247474":1,"247475":1,"247476":1,"247477":1,"247609":1,"247610":1,"247611":1,"247612":1,"247613":1,"247614":1,"247615":1,"247616":1,"247617":1,"247618":1,"247619":1,"247620":1,"247621":1,"247633":1,"247634":1,"247635":1,"247636":1,"247637":1,"247638":1,"247639":1,"247640":1,"247641":1,"247642":1,"247643":1,"247665":1,"247666":1,"247667":1,"247668":1,"247669":1,"247670":1,"247671":1,"247672":1,"247673":1,"247674":1,"247675":1,"247676":1,"247677":1,"247678":1,"247679":1,"247680":1,"247681":1,"247682":1,"247683":1,"247684":1,"247685":1,"247686":1,"248481":1,"248482":1,"248483":1,"248484":1,"248485":1,"248486":1,"248487":1,"248488":1,"248489":1,"248490":1,"248491":1,"248492":1,"248493":1,"248494":1,"248495":1,"248496":1,"248497":1,"248498":1,"248499":1,"248500":1,"248501":1,"248502":1,"248506":1,"248507":1,"248508":1,"248509":1,"248510":1,"248511":1,"248512":1,"248513":1,"248514":1,"248515":1,"248516":1,"248517":1,"248518":1,"248519":1,"248520":1,"248521":1,"248522":1,"248523":1,"248524":1,"248525":1,"248526":1,"248527":1,"248528":1,"248529":1,"248530":1,"248666":1,"248667":1,"248668":1,"248669":1,"248670":1,"248671":1,"248672":1,"248673":1,"248674":1,"248675":1,"248676":1,"248677":1,"248688":1,"248689":1,"248690":1,"248691":1,"248692":1,"248693":1,"248694":1,"248695":1,"248696":1,"248723":1,"248724":1,"248725":1,"248726":1,"248727":1,"248728":1,"248729":1,"248730":1,"248731":1,"248732":1,"248733":1,"248734":1,"248735":1,"248736":1,"248737":1,"248738":1,"248739":1,"248740":1,"248741":1,"248742":1,"249537":1,"249538":1,"249539":1,"249540":1,"249541":1,"249542":1,"249543":1,"249544":1,"249545":1,"249546":1,"249547":1,"249548":1,"249549":1,"249550":1,"249551":1,"249552":1,"249553":1,"249554":1,"249555":1,"249556":1,"249557":1,"249558":1,"249562":1,"249563":1,"249564":1,"249565":1,"249566":1,"249567":1,"249568":1,"249569":1,"249570":1,"249571":1,"249572":1,"249573":1,"249574":1,"249575":1,"249576":1,"249577":1,"249578":1,"249579":1,"249580":1,"249581":1,"249582":1,"249583":1,"249584":1,"249585":1,"249723":1,"249724":1,"249729":1,"249730":1,"249731":1,"249732":1,"249733":1,"249744":1,"249745":1,"249746":1,"249747":1,"249748":1,"249749":1,"249780":1,"249781":1,"249782":1,"249783":1,"249784":1,"249785":1,"249786":1,"249787":1,"249788":1,"249789":1,"249790":1,"249791":1,"249792":1,"249793":1,"249794":1,"249795":1,"249796":1,"249797":1,"250593":1,"250594":1,"250595":1,"250596":1,"250598":1,"250599":1,"250600":1,"250601":1,"250602":1,"250603":1,"250604":1,"250605":1,"250606":1,"250607":1,"250608":1,"250609":1,"250612":1,"250613":1,"250614":1,"250615":1,"250616":1,"250617":1,"250618":1,"250619":1,"250620":1,"250621":1,"250622":1,"250623":1,"250624":1,"250625":1,"250626":1,"250627":1,"250628":1,"250629":1,"250630":1,"250631":1,"250632":1,"250633":1,"250634":1,"250635":1,"250636":1,"250637":1,"250638":1,"250639":1,"250640":1,"250786":1,"250787":1,"250788":1,"250801":1,"250802":1,"250803":1,"250804":1,"250837":1,"250838":1,"250839":1,"250840":1,"250841":1,"250842":1,"250843":1,"250844":1,"250845":1,"250848":1,"250849":1,"250850":1,"250851":1,"250852":1,"251649":1,"251650":1,"251651":1,"251652":1,"251654":1,"251663":1,"251664":1,"251665":1,"251668":1,"251669":1,"251670":1,"251671":1,"251672":1,"251673":1,"251674":1,"251675":1,"251676":1,"251677":1,"251678":1,"251679":1,"251680":1,"251681":1,"251682":1,"251683":1,"251684":1,"251685":1,"251686":1,"251687":1,"251688":1,"251689":1,"251690":1,"251691":1,"251692":1,"251693":1,"251694":1,"251695":1,"251696":1,"251894":1,"251895":1,"251896":1,"251897":1,"251898":1,"251899":1,"251900":1,"251901":1,"251904":1,"251905":1,"251906":1,"251907":1,"251908":1,"252705":1,"252706":1,"252707":1,"252708":1,"252709":1,"252710":1,"252720":1,"252721":1,"252722":1,"252723":1,"252724":1,"252725":1,"252726":1,"252727":1,"252728":1,"252729":1,"252730":1,"252731":1,"252732":1,"252733":1,"252734":1,"252739":1,"252740":1,"252741":1,"252742":1,"252743":1,"252744":1,"252745":1,"252746":1,"252747":1,"252748":1,"252749":1,"252750":1,"252751":1,"252752":1,"252951":1,"252952":1,"252953":1,"252954":1,"252955":1,"252956":1,"252957":1,"252958":1,"252959":1,"252960":1,"252961":1,"252962":1,"252963":1,"252964":1,"253778":1,"253779":1,"253780":1,"253781":1,"253782":1,"253783":1,"253784":1,"253785":1,"253786":1,"253787":1,"253788":1,"253789":1,"253796":1,"253797":1,"253798":1,"253799":1,"253800":1,"253801":1,"253802":1,"253803":1,"253804":1,"253805":1,"253806":1,"253807":1,"253808":1,"254008":1,"254013":1,"254014":1,"254015":1,"254016":1,"254017":1,"254018":1,"254019":1,"254835":1,"254836":1,"254837":1,"254838":1,"254839":1,"254840":1,"254841":1,"254842":1,"254843":1,"254844":1,"254852":1,"254853":1,"254854":1,"254855":1,"254856":1,"254857":1,"254858":1,"254859":1,"254860":1,"254861":1,"254862":1,"254863":1,"254864":1,"255908":1,"255909":1,"255910":1,"255911":1,"255912":1,"255913":1,"255914":1,"255915":1,"255916":1,"255917":1,"255918":1,"255919":1,"255920":1,"256965":1,"256966":1,"256967":1,"256968":1,"256969":1,"256970":1,"256971":1,"256972":1,"256973":1,"256974":1,"256975":1,"256976":1,"260872":1,"260873":1,"261248":1,"261249":1,"261250":1,"261251":1,"261252":1,"261253":1,"261928":1,"261929":1,"261930":1,"261935":1,"261936":1,"261937":1,"261938":1,"262304":1,"262305":1,"262306":1,"262307":1,"262308":1,"262309":1,"262984":1,"262985":1,"262986":1,"262987":1,"262988":1,"262989":1,"262990":1,"262991":1,"262992":1,"262993":1,"262994":1,"262995":1,"263359":1,"263360":1,"263361":1,"263362":1,"263363":1,"263364":1,"263365":1,"263366":1,"264027":1,"264028":1,"264033":1,"264034":1,"264039":1,"264040":1,"264041":1,"264042":1,"264043":1,"264044":1,"264045":1,"264046":1,"264047":1,"264048":1,"264049":1,"264050":1,"264051":1,"264415":1,"264416":1,"264417":1,"264418":1,"264419":1,"264420":1,"264421":1,"264422":1,"264423":1,"265082":1,"265084":1,"265085":1,"265086":1,"265087":1,"265088":1,"265089":1,"265090":1,"265091":1,"265092":1,"265093":1,"265094":1,"265095":1,"265096":1,"265097":1,"265098":1,"265099":1,"265100":1,"265101":1,"265102":1,"265103":1,"265104":1,"265105":1,"265106":1,"265107":1,"265108":1,"265149":1,"265150":1,"265151":1,"265152":1,"265470":1,"265471":1,"265472":1,"265473":1,"265474":1,"265475":1,"265476":1,"265477":1,"265478":1,"265479":1,"265480":1,"265481":1,"265482":1,"265483":1,"265484":1,"266138":1,"266139":1,"266140":1,"266141":1,"266142":1,"266143":1,"266144":1,"266145":1,"266146":1,"266147":1,"266148":1,"266149":1,"266150":1,"266151":1,"266152":1,"266153":1,"266154":1,"266155":1,"266156":1,"266157":1,"266158":1,"266159":1,"266160":1,"266161":1,"266162":1,"266163":1,"266164":1,"266165":1,"266202":1,"266203":1,"266204":1,"266205":1,"266206":1,"266207":1,"266208":1,"266209":1,"266527":1,"266528":1,"266529":1,"266530":1,"266531":1,"266532":1,"266533":1,"266534":1,"266535":1,"266536":1,"266537":1,"266538":1,"266539":1,"266540":1,"266541":1,"267195":1,"267196":1,"267197":1,"267198":1,"267199":1,"267200":1,"267201":1,"267202":1,"267203":1,"267204":1,"267205":1,"267206":1,"267207":1,"267208":1,"267209":1,"267210":1,"267211":1,"267212":1,"267213":1,"267214":1,"267215":1,"267216":1,"267217":1,"267218":1,"267219":1,"267220":1,"267221":1,"267222":1,"267223":1,"267224":1,"267251":1,"267252":1,"267253":1,"267254":1,"267255":1,"267256":1,"267257":1,"267258":1,"267259":1,"267260":1,"267261":1,"267262":1,"267263":1,"267264":1,"267265":1,"267266":1,"267267":1,"267268":1,"267585":1,"267586":1,"267587":1,"267588":1,"267589":1,"267590":1,"267591":1,"267592":1,"267593":1,"267594":1,"267595":1,"267596":1,"268252":1,"268253":1,"268254":1,"268255":1,"268256":1,"268257":1,"268258":1,"268259":1,"268260":1,"268261":1,"268262":1,"268263":1,"268264":1,"268265":1,"268266":1,"268267":1,"268268":1,"268269":1,"268270":1,"268271":1,"268272":1,"268273":1,"268274":1,"268275":1,"268276":1,"268277":1,"268278":1,"268279":1,"268280":1,"268281":1,"268304":1,"268305":1,"268306":1,"268307":1,"268308":1,"268309":1,"268310":1,"268311":1,"268312":1,"268313":1,"268314":1,"268315":1,"268316":1,"268317":1,"268318":1,"268319":1,"268320":1,"268321":1,"268322":1,"268323":1,"268324":1,"268325":1,"268642":1,"268643":1,"268644":1,"268645":1,"268646":1,"268647":1,"268648":1,"268649":1,"268650":1,"268651":1,"269308":1,"269309":1,"269310":1,"269311":1,"269312":1,"269313":1,"269314":1,"269315":1,"269316":1,"269317":1,"269318":1,"269319":1,"269320":1,"269321":1,"269322":1,"269323":1,"269324":1,"269325":1,"269326":1,"269327":1,"269328":1,"269329":1,"269330":1,"269331":1,"269332":1,"269333":1,"269334":1,"269335":1,"269336":1,"269359":1,"269360":1,"269361":1,"269362":1,"269364":1,"269365":1,"269366":1,"269367":1,"269368":1,"269369":1,"269370":1,"269371":1,"269372":1,"269373":1,"269374":1,"269375":1,"269376":1,"269377":1,"269378":1,"269379":1,"269380":1,"269381":1,"269382":1,"269699":1,"269700":1,"269701":1,"269702":1,"269703":1,"269704":1,"269705":1,"269706":1,"269707":1,"269721":1,"269722":1,"269726":1,"269727":1,"270364":1,"270365":1,"270366":1,"270367":1,"270368":1,"270369":1,"270370":1,"270371":1,"270372":1,"270373":1,"270374":1,"270375":1,"270376":1,"270377":1,"270378":1,"270379":1,"270380":1,"270381":1,"270382":1,"270383":1,"270384":1,"270385":1,"270386":1,"270387":1,"270388":1,"270389":1,"270390":1,"270391":1,"270392":1,"270415":1,"270416":1,"270417":1,"270418":1,"270419":1,"270420":1,"270421":1,"270422":1,"270423":1,"270424":1,"270425":1,"270426":1,"270427":1,"270428":1,"270429":1,"270430":1,"270431":1,"270432":1,"270433":1,"270434":1,"270435":1,"270436":1,"270437":1,"270438":1,"270755":1,"270756":1,"270757":1,"270758":1,"270759":1,"270760":1,"270761":1,"270762":1,"270763":1,"270776":1,"270777":1,"270778":1,"270779":1,"270780":1,"270781":1,"270782":1,"270783":1,"270784":1,"271420":1,"271421":1,"271422":1,"271423":1,"271424":1,"271425":1,"271426":1,"271427":1,"271428":1,"271429":1,"271430":1,"271431":1,"271432":1,"271433":1,"271434":1,"271435":1,"271436":1,"271437":1,"271438":1,"271439":1,"271440":1,"271441":1,"271442":1,"271443":1,"271444":1,"271445":1,"271446":1,"271447":1,"271470":1,"271471":1,"271472":1,"271473":1,"271474":1,"271475":1,"271476":1,"271477":1,"271478":1,"271479":1,"271480":1,"271481":1,"271482":1,"271483":1,"271484":1,"271485":1,"271486":1,"271487":1,"271488":1,"271489":1,"271490":1,"271491":1,"271492":1,"271493":1,"271494":1,"271811":1,"271812":1,"271813":1,"271814":1,"271815":1,"271816":1,"271817":1,"271818":1,"271819":1,"271831":1,"271832":1,"271833":1,"271834":1,"271835":1,"271836":1,"271837":1,"271838":1,"271839":1,"271840":1,"272475":1,"272476":1,"272477":1,"272478":1,"272479":1,"272480":1,"272481":1,"272482":1,"272483":1,"272484":1,"272485":1,"272487":1,"272488":1,"272489":1,"272490":1,"272491":1,"272492":1,"272497":1,"272498":1,"272499":1,"272500":1,"272501":1,"272502":1,"272503":1,"272525":1,"272526":1,"272527":1,"272528":1,"272529":1,"272530":1,"272531":1,"272532":1,"272533":1,"272534":1,"272536":1,"272537":1,"272538":1,"272539":1,"272540":1,"272541":1,"272542":1,"272543":1,"272544":1,"272545":1,"272546":1,"272547":1,"272548":1,"272549":1,"272868":1,"272869":1,"272870":1,"272871":1,"272872":1,"272873":1,"272874":1,"272875":1,"272887":1,"272888":1,"272889":1,"272890":1,"272891":1,"272892":1,"272893":1,"272894":1,"272895":1,"272896":1,"273530":1,"273531":1,"273532":1,"273533":1,"273534":1,"273535":1,"273536":1,"273537":1,"273538":1,"273539":1,"273540":1,"273541":1,"273542":1,"273543":1,"273544":1,"273545":1,"273546":1,"273547":1,"273556":1,"273557":1,"273558":1,"273559":1,"273581":1,"273582":1,"273583":1,"273584":1,"273585":1,"273586":1,"273587":1,"273588":1,"273589":1,"273590":1,"273591":1,"273592":1,"273593":1,"273594":1,"273595":1,"273596":1,"273597":1,"273598":1,"273599":1,"273600":1,"273601":1,"273602":1,"273603":1,"273604":1,"273925":1,"273926":1,"273927":1,"273928":1,"273929":1,"273930":1,"273931":1,"273932":1,"273944":1,"273945":1,"273946":1,"273947":1,"273948":1,"273949":1,"273950":1,"273951":1,"273952":1,"273953":1,"274586":1,"274587":1,"274588":1,"274589":1,"274590":1,"274591":1,"274592":1,"274593":1,"274594":1,"274595":1,"274596":1,"274597":1,"274598":1,"274613":1,"274614":1,"274637":1,"274638":1,"274639":1,"274640":1,"274641":1,"274642":1,"274643":1,"274644":1,"274645":1,"274646":1,"274647":1,"274648":1,"274649":1,"274650":1,"274651":1,"274652":1,"274653":1,"274654":1,"274655":1,"274656":1,"274657":1,"274658":1,"274659":1,"274660":1,"274981":1,"274982":1,"274983":1,"274984":1,"274985":1,"274986":1,"274987":1,"274988":1,"274989":1,"275001":1,"275002":1,"275003":1,"275004":1,"275005":1,"275006":1,"275007":1,"275008":1,"275009":1,"275010":1,"275643":1,"275644":1,"275645":1,"275646":1,"275647":1,"275648":1,"275653":1,"275694":1,"275695":1,"275696":1,"275697":1,"275698":1,"275699":1,"275700":1,"275701":1,"275702":1,"275703":1,"275704":1,"275705":1,"275706":1,"275707":1,"275708":1,"275709":1,"275710":1,"275711":1,"275712":1,"275713":1,"275714":1,"275715":1,"275716":1,"276037":1,"276038":1,"276039":1,"276040":1,"276041":1,"276042":1,"276043":1,"276044":1,"276045":1,"276057":1,"276058":1,"276059":1,"276060":1,"276061":1,"276062":1,"276063":1,"276064":1,"276065":1,"276066":1,"276067":1,"276068":1,"276069":1,"276700":1,"276701":1,"276702":1,"276703":1,"276753":1,"276754":1,"276755":1,"276756":1,"276757":1,"276758":1,"276759":1,"276760":1,"276761":1,"276768":1,"276769":1,"276770":1,"276771":1,"277093":1,"277094":1,"277095":1,"277096":1,"277097":1,"277098":1,"277099":1,"277100":1,"277101":1,"277113":1,"277114":1,"277115":1,"277116":1,"277117":1,"277118":1,"277119":1,"277120":1,"277121":1,"277122":1,"277123":1,"277124":1,"277125":1,"277126":1,"277139":1,"277140":1,"277810":1,"277811":1,"277812":1,"277813":1,"277814":1,"277825":1,"277826":1,"278149":1,"278150":1,"278151":1,"278152":1,"278153":1,"278154":1,"278155":1,"278156":1,"278170":1,"278171":1,"278172":1,"278173":1,"278174":1,"278175":1,"278176":1,"278177":1,"278178":1,"278179":1,"278180":1,"278181":1,"278195":1,"278196":1,"278197":1,"278198":1,"278867":1,"278868":1,"278869":1,"279205":1,"279206":1,"279207":1,"279208":1,"279209":1,"279210":1,"279211":1,"279212":1,"279228":1,"279229":1,"279230":1,"279231":1,"279232":1,"279233":1,"279234":1,"279235":1,"279236":1,"279251":1,"279252":1,"279253":1,"279254":1,"279923":1,"279924":1,"279925":1,"280260":1,"280261":1,"280262":1,"280263":1,"280264":1,"280265":1,"280266":1,"280267":1,"280268":1,"280285":1,"280286":1,"280287":1,"280288":1,"280289":1,"280290":1,"280291":1,"280292":1,"280306":1,"280307":1,"280308":1,"280309":1,"280310":1,"280980":1,"281312":1,"281313":1,"281314":1,"281315":1,"281316":1,"281317":1,"281318":1,"281319":1,"281320":1,"281321":1,"281322":1,"281323":1,"281324":1,"281342":1,"281343":1,"281344":1,"281345":1,"281346":1,"281347":1,"281348":1,"281361":1,"281362":1,"281363":1,"281364":1,"281365":1,"281366":1,"282367":1,"282368":1,"282369":1,"282370":1,"282371":1,"282372":1,"282373":1,"282374":1,"282375":1,"282376":1,"282377":1,"282378":1,"282379":1,"282380":1,"282398":1,"282399":1,"282400":1,"282401":1,"282402":1,"282403":1,"282404":1,"282418":1,"282419":1,"282420":1,"282421":1,"282422":1,"282423":1,"283424":1,"283425":1,"283426":1,"283427":1,"283428":1,"283429":1,"283430":1,"283431":1,"283432":1,"283433":1,"283434":1,"283435":1,"283436":1,"283437":1,"283454":1,"283455":1,"283456":1,"283457":1,"283458":1,"283459":1,"283460":1,"283475":1,"283476":1,"283477":1,"283478":1,"283479":1,"283480":1,"284481":1,"284482":1,"284483":1,"284484":1,"284485":1,"284486":1,"284487":1,"284492":1,"284493":1,"284494":1,"284495":1,"284496":1,"284511":1,"284512":1,"284513":1,"284514":1,"284515":1,"284516":1,"284517":1,"284531":1,"284532":1,"284533":1,"284534":1,"284535":1,"284536":1,"285537":1,"285538":1,"285539":1,"285540":1,"285541":1,"285549":1,"285550":1,"285551":1,"285552":1,"285553":1,"285568":1,"285569":1,"285570":1,"285571":1,"285572":1,"285573":1,"285574":1,"285587":1,"285588":1,"285589":1,"285590":1,"285591":1,"285592":1,"286593":1,"286594":1,"286595":1,"286596":1,"286605":1,"286606":1,"286607":1,"286608":1,"286609":1,"286624":1,"286625":1,"286626":1,"286627":1,"286628":1,"286629":1,"286630":1,"286643":1,"286644":1,"286645":1,"286646":1,"286647":1,"286648":1,"286649":1,"287649":1,"287650":1,"287651":1,"287661":1,"287662":1,"287663":1,"287664":1,"287665":1,"287680":1,"287681":1,"287682":1,"287683":1,"287684":1,"287685":1,"287686":1,"287698":1,"287699":1,"287700":1,"287701":1,"287702":1,"287703":1,"287704":1,"287705":1,"287706":1,"288705":1,"288706":1,"288707":1,"288717":1,"288718":1,"288719":1,"288720":1,"288721":1,"288722":1,"288737":1,"288738":1,"288739":1,"288740":1,"288741":1,"288742":1,"288743":1,"288753":1,"288754":1,"288755":1,"288756":1,"288757":1,"288758":1,"288759":1,"288760":1,"288761":1,"288762":1,"289760":1,"289761":1,"289762":1,"289763":1,"289774":1,"289775":1,"289776":1,"289777":1,"289778":1,"289779":1,"289795":1,"289796":1,"289797":1,"289798":1,"289799":1,"289800":1,"289809":1,"289810":1,"289811":1,"289812":1,"289813":1,"289814":1,"289815":1,"289816":1,"289817":1,"290815":1,"290816":1,"290817":1,"290818":1,"290819":1,"290831":1,"290832":1,"290833":1,"290834":1,"290835":1,"290836":1,"290852":1,"290853":1,"290854":1,"290855":1,"290856":1,"290865":1,"290866":1,"290867":1,"290868":1,"290869":1,"290870":1,"290871":1,"291872":1,"291873":1,"291874":1,"291875":1,"291887":1,"291888":1,"291889":1,"291890":1,"291891":1,"291892":1,"291909":1,"291910":1,"291911":1,"291912":1,"291913":1,"291920":1,"291921":1,"291922":1,"291923":1,"291924":1,"291925":1,"291926":1,"292929":1,"292930":1,"292931":1,"292932":1,"292943":1,"292944":1,"292945":1,"292946":1,"292947":1,"292948":1,"292949":1,"292965":1,"292966":1,"292967":1,"292968":1,"292969":1,"292970":1,"292975":1,"292976":1,"292977":1,"292978":1,"292979":1,"292980":1,"292981":1,"293601":1,"293602":1,"293603":1,"293985":1,"293986":1,"293987":1,"293988":1,"293989":1,"294000":1,"294001":1,"294002":1,"294003":1,"294004":1,"294005":1,"294006":1,"294021":1,"294022":1,"294023":1,"294024":1,"294025":1,"294026":1,"294027":1,"294028":1,"294029":1,"294030":1,"294031":1,"294032":1,"294033":1,"294034":1,"294035":1,"294036":1,"294037":1,"294656":1,"294657":1,"294658":1,"294659":1,"294660":1,"294661":1,"294662":1,"295041":1,"295042":1,"295043":1,"295044":1,"295045":1,"295058":1,"295059":1,"295060":1,"295061":1,"295062":1,"295077":1,"295078":1,"295079":1,"295080":1,"295081":1,"295082":1,"295083":1,"295084":1,"295085":1,"295086":1,"295087":1,"295088":1,"295089":1,"295090":1,"295091":1,"295092":1,"295093":1,"295712":1,"295713":1,"295714":1,"295715":1,"295716":1,"295717":1,"295718":1,"295719":1,"295735":1,"295736":1,"295741":1,"296097":1,"296098":1,"296099":1,"296100":1,"296101":1,"296102":1,"296115":1,"296116":1,"296117":1,"296118":1,"296119":1,"296133":1,"296134":1,"296135":1,"296136":1,"296137":1,"296138":1,"296139":1,"296140":1,"296141":1,"296142":1,"296143":1,"296148":1,"296767":1,"296768":1,"296769":1,"296770":1,"296771":1,"296772":1,"296773":1,"296774":1,"296775":1,"296776":1,"296790":1,"296791":1,"296792":1,"296793":1,"296794":1,"296795":1,"296796":1,"296797":1,"296798":1,"296799":1,"297153":1,"297154":1,"297155":1,"297156":1,"297157":1,"297158":1,"297159":1,"297172":1,"297173":1,"297174":1,"297175":1,"297176":1,"297189":1,"297190":1,"297191":1,"297192":1,"297193":1,"297194":1,"297195":1,"297196":1,"297197":1,"297198":1,"297822":1,"297823":1,"297824":1,"297825":1,"297826":1,"297827":1,"297828":1,"297829":1,"297830":1,"297831":1,"297832":1,"297844":1,"297845":1,"297846":1,"297847":1,"297848":1,"297849":1,"297850":1,"297851":1,"297852":1,"297853":1,"297854":1,"297855":1,"297856":1,"297867":1,"297871":1,"297872":1,"298208":1,"298209":1,"298210":1,"298211":1,"298212":1,"298213":1,"298214":1,"298215":1,"298216":1,"298217":1,"298218":1,"298228":1,"298229":1,"298230":1,"298231":1,"298232":1,"298244":1,"298245":1,"298246":1,"298247":1,"298248":1,"298249":1,"298250":1,"298251":1,"298878":1,"298879":1,"298880":1,"298881":1,"298882":1,"298883":1,"298884":1,"298885":1,"298886":1,"298887":1,"298888":1,"298899":1,"298900":1,"298901":1,"298902":1,"298903":1,"298904":1,"298905":1,"298906":1,"298907":1,"298908":1,"298909":1,"298910":1,"298911":1,"298912":1,"298913":1,"298921":1,"298922":1,"298923":1,"298924":1,"298925":1,"298926":1,"298927":1,"298928":1,"298929":1,"298930":1,"298942":1,"298943":1,"298947":1,"298948":1,"298949":1,"298950":1,"299263":1,"299264":1,"299265":1,"299266":1,"299267":1,"299268":1,"299269":1,"299270":1,"299271":1,"299272":1,"299273":1,"299274":1,"299275":1,"299284":1,"299285":1,"299286":1,"299287":1,"299288":1,"299299":1,"299300":1,"299301":1,"299302":1,"299303":1,"299304":1,"299933":1,"299934":1,"299935":1,"299936":1,"299937":1,"299938":1,"299939":1,"299940":1,"299941":1,"299942":1,"299943":1,"299944":1,"299945":1,"299954":1,"299955":1,"299956":1,"299957":1,"299958":1,"299959":1,"299960":1,"299961":1,"299962":1,"299963":1,"299964":1,"299965":1,"299966":1,"299967":1,"299968":1,"299976":1,"299977":1,"299978":1,"299979":1,"299980":1,"299981":1,"299982":1,"299983":1,"299984":1,"299985":1,"299986":1,"299987":1,"299997":1,"299998":1,"299999":1,"300000":1,"300001":1,"300002":1,"300003":1,"300004":1,"300005":1,"300006":1,"300007":1,"300316":1,"300317":1,"300318":1,"300319":1,"300320":1,"300321":1,"300322":1,"300323":1,"300324":1,"300325":1,"300326":1,"300327":1,"300328":1,"300329":1,"300330":1,"300331":1,"300340":1,"300341":1,"300342":1,"300343":1,"300344":1,"300355":1,"300356":1,"300357":1,"300358":1,"300359":1,"300990":1,"300991":1,"300992":1,"300993":1,"300994":1,"300995":1,"300996":1,"300997":1,"300998":1,"300999":1,"301000":1,"301001":1,"301010":1,"301011":1,"301012":1,"301013":1,"301014":1,"301015":1,"301016":1,"301017":1,"301018":1,"301019":1,"301020":1,"301021":1,"301022":1,"301023":1,"301032":1,"301033":1,"301034":1,"301035":1,"301036":1,"301037":1,"301038":1,"301039":1,"301040":1,"301041":1,"301042":1,"301043":1,"301053":1,"301054":1,"301055":1,"301056":1,"301057":1,"301058":1,"301059":1,"301060":1,"301061":1,"301062":1,"301063":1,"301064":1,"301371":1,"301372":1,"301373":1,"301374":1,"301375":1,"301376":1,"301377":1,"301378":1,"301379":1,"301380":1,"301381":1,"301382":1,"301383":1,"301384":1,"301385":1,"301386":1,"301387":1,"301396":1,"301397":1,"301398":1,"301399":1,"301400":1,"301401":1,"301410":1,"301411":1,"301412":1,"301413":1,"301414":1,"302047":1,"302048":1,"302049":1,"302050":1,"302051":1,"302052":1,"302053":1,"302054":1,"302055":1,"302056":1,"302067":1,"302068":1,"302069":1,"302070":1,"302071":1,"302072":1,"302073":1,"302074":1,"302075":1,"302076":1,"302077":1,"302078":1,"302079":1,"302089":1,"302090":1,"302091":1,"302092":1,"302093":1,"302094":1,"302095":1,"302096":1,"302097":1,"302098":1,"302099":1,"302100":1,"302108":1,"302109":1,"302110":1,"302111":1,"302112":1,"302113":1,"302114":1,"302115":1,"302116":1,"302117":1,"302118":1,"302119":1,"302120":1,"302121":1,"302428":1,"302429":1,"302430":1,"302431":1,"302432":1,"302433":1,"302434":1,"302435":1,"302436":1,"302437":1,"302438":1,"302439":1,"302440":1,"302441":1,"302442":1,"302443":1,"302444":1,"302451":1,"302452":1,"302453":1,"302454":1,"302455":1,"302456":1,"302457":1,"302458":1,"302465":1,"302466":1,"302467":1,"302468":1,"302469":1,"302470":1,"303106":1,"303107":1,"303126":1,"303127":1,"303132":1,"303133":1,"303134":1,"303135":1,"303146":1,"303147":1,"303148":1,"303149":1,"303150":1,"303151":1,"303152":1,"303153":1,"303154":1,"303155":1,"303164":1,"303165":1,"303166":1,"303167":1,"303168":1,"303169":1,"303170":1,"303171":1,"303172":1,"303173":1,"303174":1,"303175":1,"303176":1,"303177":1,"303485":1,"303486":1,"303487":1,"303488":1,"303489":1,"303490":1,"303491":1,"303492":1,"303493":1,"303494":1,"303495":1,"303496":1,"303497":1,"303498":1,"303499":1,"303500":1,"303501":1,"303506":1,"303507":1,"303508":1,"303509":1,"303510":1,"303511":1,"303512":1,"303513":1,"303514":1,"303515":1,"303516":1,"303517":1,"303518":1,"303519":1,"303520":1,"303521":1,"303522":1,"303523":1,"303524":1,"303525":1,"303526":1,"304189":1,"304190":1,"304205":1,"304206":1,"304221":1,"304222":1,"304223":1,"304224":1,"304225":1,"304226":1,"304227":1,"304228":1,"304229":1,"304230":1,"304231":1,"304232":1,"304541":1,"304542":1,"304543":1,"304544":1,"304545":1,"304546":1,"304547":1,"304548":1,"304549":1,"304554":1,"304555":1,"304556":1,"304557":1,"304558":1,"304559":1,"304560":1,"304561":1,"304562":1,"304563":1,"304564":1,"304565":1,"304566":1,"304567":1,"304568":1,"304569":1,"304570":1,"304571":1,"304572":1,"304573":1,"304574":1,"304575":1,"304576":1,"304577":1,"304578":1,"304579":1,"304580":1,"304581":1,"305278":1,"305279":1,"305284":1,"305285":1,"305286":1,"305287":1,"305597":1,"305598":1,"305599":1,"305600":1,"305601":1,"305602":1,"305603":1,"305604":1,"305611":1,"305612":1,"305613":1,"305614":1,"305615":1,"305616":1,"305617":1,"305618":1,"305619":1,"305620":1,"305625":1,"305626":1,"305627":1,"305632":1,"305633":1,"305634":1,"306654":1,"306655":1,"306656":1,"306657":1,"306658":1,"306659":1,"306670":1,"306671":1,"306672":1,"306673":1,"306674":1,"306675":1,"306682":1,"306689":1,"307711":1,"307712":1,"307713":1,"307714":1,"307715":1,"307727":1,"307728":1,"307729":1,"307730":1,"308769":1,"308770":1,"308771":1,"309826":1,"322124":1,"322125":1,"322126":1,"322127":1,"322128":1,"322129":1,"322130":1,"322131":1,"322132":1,"322133":1,"322134":1,"322135":1,"322136":1,"322137":1,"322138":1,"322139":1,"322140":1,"322141":1,"322142":1,"323180":1,"323181":1,"323182":1,"323183":1,"323184":1,"323185":1,"323186":1,"323187":1,"323188":1,"323189":1,"323190":1,"323191":1,"323192":1,"323193":1,"323194":1,"323195":1,"323197":1,"323198":1,"324237":1,"324238":1,"324239":1,"324240":1,"324241":1,"324242":1,"324243":1,"324244":1,"324245":1,"324246":1,"324247":1,"324248":1,"324249":1,"324250":1,"324251":1,"324252":1,"324253":1,"324254":1,"325292":1,"325293":1,"325294":1,"325295":1,"325296":1,"325297":1,"325298":1,"325299":1,"325300":1,"325301":1,"325302":1,"325303":1,"325304":1,"325305":1,"325306":1,"325307":1,"325308":1,"325309":1,"325310":1,"325327":1,"325328":1,"325329":1,"325330":1,"325331":1,"325332":1,"325333":1,"325334":1,"325335":1,"325336":1,"326348":1,"326349":1,"326350":1,"326351":1,"326352":1,"326353":1,"326354":1,"326355":1,"326360":1,"326361":1,"326362":1,"326363":1,"326364":1,"326365":1,"326383":1,"326384":1,"326385":1,"326386":1,"326387":1,"326388":1,"326389":1,"326390":1,"326391":1,"326392":1,"327405":1,"327406":1,"327407":1,"327408":1,"327417":1,"327418":1,"327419":1,"327420":1,"327439":1,"327440":1,"327441":1,"327442":1,"327443":1,"327444":1,"327445":1,"327446":1,"327447":1,"328495":1,"328496":1,"328497":1,"328498":1,"328499":1,"328500":1,"328501":1,"328502":1,"329552":1,"329553":1,"329554":1,"329555":1,"329556":1,"329557":1,"330609":1,"330610":1,"330611":1,"330612":1,"611504":1,"611506":1,"611507":1,"612560":1,"612561":1,"612562":1,"612563":1,"612564":1,"613617":1,"613618":1,"613619":1,"613620":1,"614673":1,"614674":1,"614675":1,"614676":1,"615729":1,"615730":1,"615731":1,"615732":1,"616785":1,"616786":1,"616787":1,"616788":1,"616789":1,"617841":1,"617842":1,"617843":1,"617844":1,"617845":1,"636719":1,"636720":1,"636721":1,"636722":1,"636723":1,"636724":1,"636725":1,"636726":1,"636727":1,"636728":1,"637775":1,"637776":1,"637777":1,"637778":1,"637779":1,"637780":1,"637781":1,"637782":1,"637783":1,"637784":1,"637785":1,"637786":1,"637787":1,"637788":1,"637789":1,"637790":1,"637791":1,"637792":1,"637793":1,"637794":1,"637795":1,"637796":1,"637797":1,"637798":1,"637799":1,"637800":1,"637801":1,"637802":1,"637803":1,"637804":1,"637805":1,"637806":1,"637807":1,"637808":1,"637809":1,"638831":1,"638832":1,"638833":1,"638834":1,"638835":1,"638836":1,"638837":1,"638838":1,"638839":1,"638840":1,"638841":1,"638842":1,"638843":1,"638844":1,"638845":1,"638846":1,"638847":1,"638848":1,"638849":1,"638850":1,"638851":1,"638852":1,"638853":1,"638854":1,"638855":1,"638856":1,"638857":1,"638858":1,"638859":1,"638860":1,"638861":1,"638862":1,"638863":1,"638864":1,"638865":1,"638866":1,"639887":1,"639888":1,"639890":1,"639891":1,"639892":1,"639893":1,"639894":1,"639895":1,"639898":1,"639899":1,"639900":1,"639901":1,"639902":1,"639903":1,"639904":1,"639905":1,"639906":1,"639907":1,"639908":1,"639909":1,"639910":1,"639911":1,"639912":1,"639913":1,"639914":1,"639915":1,"639916":1,"639917":1,"639918":1,"639919":1,"639920":1,"639921":1,"639922":1,"640943":1,"640947":1,"640948":1,"640950":1,"640955":1,"640958":1,"640959":1,"640965":1,"640966":1,"640967":1,"640968":1,"640969":1,"640970":1,"640971":1,"640972":1,"640975":1,"640976":1,"640977":1,"640978":1,"642025":1,"642026":1,"642031":1,"642032":1,"643087":1,"646210":1,"646211":1,"646212":1,"646213":1,"646214":1,"646215":1,"646216":1,"646217":1,"646218":1,"646219":1,"646220":1,"647266":1,"647267":1,"647268":1,"647269":1,"647270":1,"647271":1,"647272":1,"647273":1,"647274":1,"647275":1,"647276":1,"648322":1,"648323":1,"649378":1,"649379":1,"650431":1,"650432":1,"650433":1,"650434":1,"650435":1,"651487":1,"651488":1,"651489":1,"651490":1,"651491":1,"652543":1,"652546":1,"652547":1,"653602":1,"653603":1,"654658":1,"654659":1,"654669":2,"654670":2,"654695":2,"655714":1,"655715":1,"655722":2,"655723":2,"655724":2,"655725":2,"655726":2,"655750":2,"655751":2,"656778":2,"656779":2,"656780":2,"656781":2,"656782":2,"656783":2,"656784":2,"656785":2,"656786":2,"656787":2,"656788":2,"656789":2,"656790":2,"656791":2,"656792":2,"656793":2,"656794":2,"656795":2,"656796":2,"656797":2,"656798":2,"656799":2,"656800":2,"656801":2,"656802":2,"656803":2,"656804":2,"656805":2,"656806":2,"656807":2,"657837":2,"657838":2,"657862":2,"657863":2,"658893":2,"658894":2,"658918":2,"658919":2,"659949":2,"659950":2,"659951":2,"659952":2,"659953":2,"659954":2,"659955":2,"659956":2,"659957":2,"659958":2,"659959":2,"659960":2,"659961":2,"659962":2,"659963":2,"659964":2,"659965":2,"659966":2,"659967":2,"659968":2,"659969":2,"659970":2,"659971":2,"659972":2,"659973":2,"659974":2,"659975":2,"678218":1,"678219":1,"678220":1,"678221":1,"679272":1,"679273":1,"679274":1,"679275":1,"679276":1,"679277":1,"680327":1,"680328":1,"680329":1,"680330":1,"680331":1,"681383":1,"681384":1,"681385":1,"681386":1,"681387":1,"681401":1,"681402":1,"682439":1,"682440":1,"682441":1,"682442":1,"682443":1,"682456":1,"682457":1,"682458":1,"682459":1,"683494":1,"683495":1,"683496":1,"683497":1,"683498":1,"683511":1,"683512":1,"683513":1,"683514":1,"683515":1,"684549":1,"684550":1,"684551":1,"684552":1,"684553":1,"684554":1,"684567":1,"684568":1,"684569":1,"684570":1,"684571":1,"684572":1,"685605":1,"685606":1,"685607":1,"685608":1,"685609":1,"685610":1,"685623":1,"685624":1,"685625":1,"685626":1,"685627":1,"685628":1,"686660":1,"686661":1,"686662":1,"686663":1,"686664":1,"686665":1,"686666":1,"686667":1,"686668":1,"686679":1,"686680":1,"686681":1,"686682":1,"686683":1,"686684":1,"687715":1,"687716":1,"687717":1,"687718":1,"687719":1,"687720":1,"687721":1,"687722":1,"687723":1,"687724":1,"687725":1,"687736":1,"687737":1,"687738":1,"687739":1,"687740":1,"688771":1,"688772":1,"688773":1,"688774":1,"688775":1,"688776":1,"688777":1,"688778":1,"688793":1,"688794":1,"688795":1,"688796":1,"689827":1,"689828":1,"689829":1,"689830":1,"689831":1,"689832":1,"689833":1,"689851":1,"690883":1,"690884":1,"690885":1,"690886":1,"690887":1,"690888":1,"690889":1,"691940":1,"691941":1,"691942":1,"691943":1,"691944":1,"691945":1,"692448":4,"692449":4,"692450":4,"692451":4,"692452":4,"692453":4,"693503":4,"693504":4,"693505":4,"693506":4,"693507":4,"693508":4,"694546":1,"694547":1,"694548":1,"694558":4,"694559":4,"694560":4,"694561":4,"694562":4,"694563":4,"695601":1,"695602":1,"695603":1,"695604":1,"695605":1,"695615":4,"695616":4,"695617":4,"695618":4,"696658":1,"696659":1,"696660":1,"696661":1,"696662":1,"696672":4,"696673":4,"696674":4,"697715":1,"697716":1,"697717":1,"697718":1,"698771":1,"698772":1,"698773":1,"699827":1,"699828":1,"700883":1,"700884":1,"700896":2,"700897":2,"700898":2,"700899":2,"701939":1,"701952":2,"701953":2,"701954":2,"701955":2,"701956":2,"701961":2,"701962":2,"701965":3,"701966":3,"701971":3,"701972":3,"703007":2,"703008":2,"703009":2,"703010":2,"703011":2,"703012":2,"703013":2,"703014":2,"703015":2,"703016":2,"703018":2,"703021":3,"703022":3,"703023":3,"703024":3,"703025":3,"703026":3,"703027":3,"703028":3,"703029":3,"704062":2,"704063":2,"704064":2,"704065":2,"704066":2,"704067":2,"704068":2,"704069":2,"704070":2,"704071":2,"704072":2,"704077":3,"704078":3,"704079":3,"704080":3,"704081":3,"704082":3,"704083":3,"704084":3,"705115":2,"705116":2,"705117":2,"705118":2,"705119":2,"705120":2,"705124":2,"705125":2,"705126":2,"705127":2,"705134":3,"705135":3,"705136":3,"705137":3,"705138":3,"706170":2,"706172":2,"706173":2,"706174":2,"706175":2,"706191":3,"706192":3,"706193":3,"707227":2,"707228":2,"707229":2,"707230":2,"707247":3,"707248":3,"708071":1,"708072":1,"708073":1,"708077":1,"708081":1,"709126":1,"709127":1,"709128":1,"709129":1,"709130":1,"709131":1,"709132":1,"709133":1,"709134":1,"709135":1,"709136":1,"709137":1,"709138":1,"710181":1,"710182":1,"710183":1,"710184":1,"710185":1,"710186":1,"710187":1,"710188":1,"710189":1,"710190":1,"710191":1,"710192":1,"710193":1,"710194":1,"710195":1,"710415":1,"710416":1,"711237":1,"711238":1,"711239":1,"711240":1,"711241":1,"711242":1,"711243":1,"711244":1,"711245":1,"711246":1,"711247":1,"711248":1,"711249":1,"711250":1,"711251":1,"711471":1,"711472":1,"712294":1,"712295":1,"712296":1,"712297":1,"712298":1,"712299":1,"712300":1,"712301":1,"712302":1,"712303":1,"712304":1,"712305":1,"712306":1,"712307":1,"712526":1,"712527":1,"712528":1,"712529":1,"713351":1,"713352":1,"713353":1,"713354":1,"713355":1,"713356":1,"713357":1,"713358":1,"713359":1,"713360":1,"713361":1,"713362":1,"713363":1,"713364":1,"713581":1,"713582":1,"713583":1,"713584":1,"713585":1,"713586":1,"714407":1,"714408":1,"714409":1,"714410":1,"714411":1,"714412":1,"714413":1,"714414":1,"714415":1,"714416":1,"714417":1,"714418":1,"714419":1,"714420":1,"714421":1,"714422":1,"714611":1,"714613":1,"714633":1,"714634":1,"714635":1,"714636":1,"714637":1,"714638":1,"714639":1,"714640":1,"714641":1,"714642":1,"714643":1,"714644":1,"714645":1,"714854":1,"714855":1,"714856":1,"714857":1,"714858":1,"714859":1,"714860":1,"714861":1,"714862":1,"714863":1,"714864":1,"714865":1,"714866":1,"714867":1,"714868":1,"714869":1,"714874":1,"714875":1,"714876":1,"714877":1,"714878":1,"714879":1,"714880":1,"714881":1,"714882":1,"714883":1,"715463":1,"715464":1,"715465":1,"715466":1,"715467":1,"715468":1,"715469":1,"715470":1,"715471":1,"715472":1,"715473":1,"715474":1,"715475":1,"715476":1,"715477":1,"715478":1,"715666":1,"715667":1,"715668":1,"715669":1,"715670":1,"715677":1,"715678":1,"715685":2,"715689":1,"715691":1,"715692":1,"715693":1,"715694":1,"715695":1,"715696":1,"715697":1,"715698":1,"715699":1,"715700":1,"715701":1,"715702":1,"715910":1,"715911":1,"715912":1,"715913":1,"715914":1,"715915":1,"715916":1,"715917":1,"715918":1,"715919":1,"715920":1,"715921":1,"715922":1,"715923":1,"715924":1,"715925":1,"715930":1,"715931":1,"715932":1,"715933":1,"715934":1,"715935":1,"715936":1,"715937":1,"715938":1,"715939":1,"715991":1,"715992":1,"716520":1,"716521":1,"716522":1,"716523":1,"716524":1,"716525":1,"716526":1,"716527":1,"716528":1,"716529":1,"716530":1,"716531":1,"716721":1,"716722":1,"716723":1,"716724":1,"716725":1,"716726":1,"716727":1,"716728":1,"716729":1,"716730":1,"716731":1,"716732":1,"716733":1,"716734":1,"716737":2,"716738":2,"716739":2,"716740":2,"716741":2,"716745":1,"716746":1,"716747":1,"716748":1,"716749":1,"716750":1,"716751":1,"716755":1,"716756":1,"716757":1,"716966":1,"716967":1,"716968":1,"716969":1,"716970":1,"716971":1,"716972":1,"716973":1,"716974":1,"716975":1,"716976":1,"716977":1,"716978":1,"716979":1,"716980":1,"716981":1,"716986":1,"716987":1,"716988":1,"716989":1,"716990":1,"716991":1,"716992":1,"716993":1,"716994":1,"716995":1,"717046":1,"717047":1,"717048":1,"717049":1,"717050":1,"717051":1,"717577":1,"717578":1,"717579":1,"717580":1,"717581":1,"717582":1,"717583":1,"717584":1,"717585":1,"717586":1,"717777":1,"717778":1,"717779":1,"717780":1,"717781":1,"717782":1,"717783":1,"717784":1,"717785":1,"717786":1,"717787":1,"717788":1,"717789":1,"717790":1,"717793":2,"717794":2,"717795":2,"717796":2,"717805":1,"717806":1,"718022":1,"718023":1,"718024":1,"718025":1,"718026":1,"718027":1,"718028":1,"718029":1,"718030":1,"718031":1,"718032":1,"718033":1,"718034":1,"718035":1,"718036":1,"718037":1,"718042":1,"718043":1,"718044":1,"718045":1,"718046":1,"718047":1,"718048":1,"718049":1,"718050":1,"718051":1,"718099":1,"718100":1,"718101":1,"718102":1,"718103":1,"718104":1,"718105":1,"718106":1,"718107":1,"718108":1,"718109":1,"718637":1,"718638":1,"718834":1,"718835":1,"718836":1,"718837":1,"718838":1,"718839":1,"718840":1,"718841":1,"718842":1,"718848":2,"718849":2,"718850":2,"718851":2,"718852":2,"718853":2,"718854":2,"718855":2,"719154":1,"719155":1,"719156":1,"719157":1,"719158":1,"719159":1,"719160":1,"719161":1,"719162":1,"719163":1,"719164":1,"719165":1,"719166":1,"719693":1,"719694":1,"719893":1,"719894":1,"719895":1,"719896":1,"719897":1,"719906":2,"719907":2,"719908":2,"719909":2,"719910":2,"720209":1,"720210":1,"720211":1,"720212":1,"720213":1,"720214":1,"720215":1,"720216":1,"720218":1,"720219":1,"720220":1,"720221":1,"720222":1,"720223":1,"720224":1,"720749":1,"720750":1,"720950":1,"720951":1,"720952":1,"720963":2,"720964":2,"720965":2,"720966":2,"721190":2,"721191":2,"721192":2,"721193":2,"721194":2,"721195":2,"721196":2,"721197":2,"721198":2,"721199":2,"721200":2,"721201":2,"721202":2,"721203":2,"721204":2,"721205":2,"721206":2,"721207":2,"721208":2,"721209":2,"721210":2,"721211":2,"721212":2,"721213":2,"721214":2,"721215":2,"721216":2,"721217":2,"721218":2,"721219":2,"721265":1,"721266":1,"721267":1,"721268":1,"721269":1,"721270":1,"721271":1,"721272":1,"721273":1,"721274":1,"721275":1,"721276":1,"721277":1,"721278":1,"721279":1,"721280":1,"721281":1,"722007":1,"722008":1,"722020":2,"722021":2,"722022":2,"722246":2,"722247":2,"722248":2,"722249":2,"722250":2,"722251":2,"722252":2,"722253":2,"722254":2,"722255":2,"722256":2,"722257":2,"722258":2,"722259":2,"722260":2,"722261":2,"722262":2,"722263":2,"722264":2,"722265":2,"722266":2,"722267":2,"722268":2,"722269":2,"722270":2,"722271":2,"722272":2,"722273":2,"722274":2,"722275":2,"722320":1,"722321":1,"722322":1,"722323":1,"722324":1,"722325":1,"722326":1,"722327":1,"722328":1,"722329":1,"722330":1,"722331":1,"722332":1,"722333":1,"722334":1,"722335":1,"722336":1,"723064":1,"723077":2,"723078":2,"723302":2,"723303":2,"723304":2,"723305":2,"723306":2,"723307":2,"723308":2,"723309":2,"723310":2,"723311":2,"723312":2,"723313":2,"723314":2,"723315":2,"723316":2,"723317":2,"723318":2,"723319":2,"723320":2,"723321":2,"723322":2,"723323":2,"723324":2,"723325":2,"723326":2,"723327":2,"723328":2,"723329":2,"723330":2,"723331":2,"723376":1,"723377":1,"723378":1,"723379":1,"723380":1,"723381":1,"723382":1,"723383":1,"723384":1,"723385":1,"723386":1,"723387":1,"723388":1,"723389":1,"723390":1,"723391":1,"724120":1,"724133":2,"724358":2,"724359":2,"724360":2,"724361":2,"724362":2,"724363":2,"724364":2,"724365":2,"724366":2,"724367":2,"724368":2,"724369":2,"724370":2,"724371":2,"724372":2,"724373":2,"724374":2,"724375":2,"724376":2,"724377":2,"724378":2,"724379":2,"724380":2,"724381":2,"724382":2,"724383":2,"724384":2,"724385":2,"724386":2,"724387":2,"724433":1,"724434":1,"724435":1,"724436":1,"724437":1,"724438":1,"724439":1,"724440":1,"724441":1,"724442":1,"724443":1,"724444":1,"724445":1,"724446":1,"724447":1,"724454":2,"724455":2,"724456":2,"724460":2,"724461":2,"725176":1,"725414":2,"725415":2,"725416":2,"725417":2,"725418":2,"725419":2,"725420":2,"725421":2,"725422":2,"725423":2,"725424":2,"725425":2,"725426":2,"725427":2,"725428":2,"725429":2,"725430":2,"725431":2,"725432":2,"725433":2,"725434":2,"725435":2,"725436":2,"725437":2,"725438":2,"725439":2,"725440":2,"725441":2,"725442":2,"725443":2,"725490":1,"725491":1,"725492":1,"725493":1,"725494":1,"725495":1,"725496":1,"725497":1,"725498":1,"725499":1,"725500":1,"725501":1,"725502":1,"725503":1,"725509":2,"725510":2,"725511":2,"725512":2,"725513":2,"725515":2,"725516":2,"725517":2,"725518":2,"726471":2,"726472":2,"726473":2,"726474":2,"726475":2,"726476":2,"726477":2,"726478":2,"726479":2,"726480":2,"726481":2,"726482":2,"726483":2,"726484":2,"726485":2,"726486":2,"726487":2,"726488":2,"726489":2,"726490":2,"726491":2,"726492":2,"726493":2,"726494":2,"726495":2,"726496":2,"726497":2,"726498":2,"726499":2,"726546":1,"726547":1,"726548":1,"726549":1,"726550":1,"726551":1,"726552":1,"726553":1,"726554":1,"726555":1,"726556":1,"726557":1,"726558":1,"726559":1,"726560":1,"726566":2,"726567":2,"726568":2,"726569":2,"726570":2,"726571":2,"726572":2,"726573":2,"726574":2,"726575":2,"726576":2,"726577":2,"726578":2,"726580":2,"726581":2,"726582":2,"726583":2,"727300":3,"727301":3,"727303":3,"727304":3,"727527":2,"727528":2,"727529":2,"727530":2,"727531":2,"727532":2,"727533":2,"727534":2,"727535":2,"727536":2,"727537":2,"727538":2,"727539":2,"727540":2,"727541":2,"727542":2,"727545":2,"727546":2,"727547":2,"727548":2,"727549":2,"727550":2,"727551":2,"727552":2,"727553":2,"727554":2,"727555":2,"727602":1,"727603":1,"727604":1,"727605":1,"727606":1,"727607":1,"727608":1,"727609":1,"727610":1,"727611":1,"727612":1,"727613":1,"727614":1,"727615":1,"727616":1,"727617":1,"727625":2,"727626":2,"727627":2,"727628":2,"727633":2,"727634":2,"727635":2,"727636":2,"727637":2,"727638":2,"727639":2,"728347":3,"728349":3,"728350":3,"728355":3,"728356":3,"728357":3,"728358":3,"728359":3,"728585":2,"728586":2,"728587":2,"728588":2,"728589":2,"728590":2,"728591":2,"728592":2,"728593":2,"728594":2,"728595":2,"728596":2,"728604":2,"728605":2,"728606":2,"728607":2,"728608":2,"728609":2,"728658":1,"728659":1,"728660":1,"728661":1,"728662":1,"728663":1,"728664":1,"728665":1,"728666":1,"728667":1,"728668":1,"728669":1,"728670":1,"728671":1,"728672":1,"728673":1,"728682":2,"728683":2,"728690":2,"728691":2,"728692":2,"728693":2,"728694":2,"728695":2,"729403":3,"729404":3,"729405":3,"729406":3,"729407":3,"729408":3,"729409":3,"729410":3,"729411":3,"729412":3,"729413":3,"729414":3,"729415":3,"729642":2,"729643":2,"729644":2,"729645":2,"729646":2,"729647":2,"729648":2,"729649":2,"729650":2,"729662":2,"729663":2,"729715":1,"729716":1,"729717":1,"729718":1,"729719":1,"729720":1,"729721":1,"729722":1,"729723":1,"729724":1,"729725":1,"729726":1,"729727":1,"729728":1,"729750":2,"729751":2,"730283":1,"730284":1,"730463":3,"730464":3,"730465":3,"730466":3,"730467":3,"730468":3,"730469":3,"730470":3,"730471":3,"730700":2,"730701":2,"730702":2,"730703":2,"730704":2,"730772":1,"730773":1,"730774":1,"730775":1,"730776":1,"730777":1,"730778":1,"730779":1,"730780":1,"730781":1,"730782":1,"730783":1,"730807":2,"731339":1,"731340":1,"731520":3,"731521":3,"731526":3,"731757":2,"731758":2,"731828":1,"731829":1,"731830":1,"731831":1,"731832":1,"731833":1,"731834":1,"731835":1,"731836":1,"731837":1,"731838":1,"731839":1,"732395":1,"732396":1,"732884":1,"732885":1,"732886":1,"732887":1,"732888":1,"732889":1,"732890":1,"732891":1,"732892":1,"732893":1,"732894":1,"732895":1,"733449":1,"733450":1,"733451":1,"733452":1,"733453":1,"733454":1,"733940":1,"733941":1,"733942":1,"733943":1,"733944":1,"733945":1,"733946":1,"733947":1,"733948":1,"733949":1,"733950":1,"733951":1,"734502":1,"734503":1,"734504":1,"734505":1,"734506":1,"734507":1,"734508":1,"734509":1,"734510":1,"734511":1,"734512":1,"734995":1,"734996":1,"734997":1,"734998":1,"734999":1,"735000":1,"735001":1,"735002":1,"735003":1,"735004":1,"735005":1,"735006":1,"735007":1,"735008":1,"735557":1,"735558":1,"735559":1,"735560":1,"735561":1,"735562":1,"735563":1,"735564":1,"735565":1,"735566":1,"735567":1,"735568":1,"735569":1,"736049":1,"736050":1,"736051":1,"736052":1,"736053":1,"736054":1,"736055":1,"736056":1,"736057":1,"736058":1,"736059":1,"736060":1,"736061":1,"736062":1,"736063":1,"736064":1,"736065":1,"736612":1,"736613":1,"736614":1,"736615":1,"736616":1,"736617":1,"736618":1,"736619":1,"736620":1,"736621":1,"736622":1,"736623":1,"736624":1,"736625":1,"737104":1,"737105":1,"737106":1,"737107":1,"737108":1,"737109":1,"737110":1,"737111":1,"737112":1,"737113":1,"737114":1,"737115":1,"737116":1,"737117":1,"737118":1,"737119":1,"737120":1,"737668":1,"737669":1,"737670":1,"737671":1,"737672":1,"737673":1,"737674":1,"737675":1,"737676":1,"737677":1,"737678":1,"737679":1,"737680":1,"737681":1,"737682":1,"738159":1,"738160":1,"738161":1,"738162":1,"738163":1,"738164":1,"738165":1,"738166":1,"738167":1,"738168":1,"738169":1,"738170":1,"738171":1,"738172":1,"738173":1,"738174":1,"738175":1,"738500":1,"738501":1,"738723":1,"738724":1,"738725":1,"738726":1,"738727":1,"738728":1,"738729":1,"738730":1,"738731":1,"738732":1,"738733":1,"738734":1,"738735":1,"738736":1,"738737":1,"739133":2,"739134":2,"739135":2,"739136":2,"739137":2,"739215":1,"739216":1,"739217":1,"739218":1,"739219":1,"739220":1,"739221":1,"739222":1,"739223":1,"739224":1,"739225":1,"739226":1,"739227":1,"739228":1,"739229":1,"739230":1,"739231":1,"739555":1,"739557":1,"739558":1,"739559":1,"739561":1,"739562":1,"739777":1,"739778":1,"739779":1,"739780":1,"739781":1,"739782":1,"739783":1,"739784":1,"739785":1,"739786":1,"739787":1,"739788":1,"739789":1,"739790":1,"739791":1,"739792":1,"739793":1,"740187":2,"740188":2,"740189":2,"740190":2,"740191":2,"740192":2,"740193":2,"740194":2,"740195":2,"740196":2,"740197":2,"740198":2,"740271":1,"740272":1,"740273":1,"740274":1,"740275":1,"740276":1,"740277":1,"740278":1,"740279":1,"740280":1,"740281":1,"740282":1,"740283":1,"740284":1,"740285":1,"740286":1,"740287":1,"740611":1,"740612":1,"740613":1,"740614":1,"740615":1,"740616":1,"740617":1,"740618":1,"740619":1,"740833":1,"740834":1,"740835":1,"740836":1,"740837":1,"740838":1,"740839":1,"740840":1,"740841":1,"740842":1,"740843":1,"740844":1,"740845":1,"740846":1,"740847":1,"740848":1,"740849":1,"741243":2,"741244":2,"741245":2,"741246":2,"741247":2,"741248":2,"741249":2,"741250":2,"741251":2,"741252":2,"741253":2,"741254":2,"741255":2,"741256":2,"741257":2,"741297":2,"741298":2,"741299":2,"741300":2,"741326":1,"741327":1,"741328":1,"741329":1,"741330":1,"741331":1,"741332":1,"741333":1,"741334":1,"741335":1,"741336":1,"741337":1,"741338":1,"741339":1,"741340":1,"741341":1,"741342":1,"741343":1,"741666":1,"741667":1,"741668":1,"741669":1,"741670":1,"741671":1,"741672":1,"741673":1,"741674":1,"741675":1,"741676":1,"741677":1,"741891":1,"741892":1,"741893":1,"741894":1,"741895":1,"741896":1,"741897":1,"741898":1,"741899":1,"741900":1,"741901":1,"741902":1,"741903":1,"741904":1,"742299":2,"742300":2,"742301":2,"742302":2,"742303":2,"742304":2,"742305":2,"742306":2,"742307":2,"742308":2,"742309":2,"742310":2,"742311":2,"742312":2,"742313":2,"742353":2,"742354":2,"742355":2,"742356":2,"742382":1,"742383":1,"742384":1,"742385":1,"742386":1,"742387":1,"742388":1,"742389":1,"742390":1,"742391":1,"742392":1,"742393":1,"742394":1,"742395":1,"742396":1,"742397":1,"742398":1,"742399":1,"742400":1,"742721":1,"742722":1,"742723":1,"742724":1,"742725":1,"742726":1,"742727":1,"742728":1,"742729":1,"742730":1,"742732":1,"742733":1,"742734":1,"742735":1,"742737":1,"742739":1,"742948":1,"742949":1,"742950":1,"742951":1,"742952":1,"742953":1,"742954":1,"742955":1,"742956":1,"742957":1,"742958":1,"742959":1,"743356":2,"743357":2,"743358":2,"743359":2,"743360":2,"743361":2,"743362":2,"743363":2,"743364":2,"743365":2,"743366":2,"743367":2,"743368":2,"743369":2,"743409":2,"743410":2,"743411":2,"743412":2,"743439":1,"743440":1,"743441":1,"743442":1,"743443":1,"743444":1,"743445":1,"743446":1,"743447":1,"743448":1,"743450":1,"743451":1,"743452":1,"743453":1,"743454":1,"743455":1,"743775":1,"743776":1,"743777":1,"743778":1,"743779":1,"743780":1,"743781":1,"743782":1,"743783":1,"743784":1,"743785":1,"743786":1,"743787":1,"743788":1,"743789":1,"743791":1,"743792":1,"743793":1,"743794":1,"743795":1,"743796":1,"744005":1,"744006":1,"744007":1,"744008":1,"744009":1,"744010":1,"744011":1,"744012":1,"744013":1,"744014":1,"744414":2,"744415":2,"744416":2,"744417":2,"744418":2,"744419":2,"744420":2,"744421":2,"744422":2,"744423":2,"744454":2,"744455":2,"744456":2,"744457":2,"744458":2,"744459":2,"744460":2,"744496":1,"744497":1,"744504":1,"744505":1,"744506":1,"744507":1,"744508":1,"744829":1,"744830":1,"744831":1,"744832":1,"744833":1,"744834":1,"744835":1,"744836":1,"744837":1,"744838":1,"744839":1,"744840":1,"744841":1,"744842":1,"744843":1,"744844":1,"744845":1,"744846":1,"744847":1,"744848":1,"744850":1,"744851":1,"744852":1,"745062":1,"745063":1,"745064":1,"745065":1,"745066":1,"745067":1,"745471":2,"745472":2,"745473":2,"745474":2,"745475":2,"745476":2,"745477":2,"745478":2,"745509":2,"745510":2,"745511":2,"745512":2,"745513":2,"745514":2,"745515":2,"745516":2,"745517":2,"745561":1,"745876":1,"745877":1,"745884":1,"745885":1,"745886":1,"745887":1,"745888":1,"745889":1,"745890":1,"745892":1,"745893":1,"745894":1,"745896":1,"745897":1,"745898":1,"745899":1,"745900":1,"745901":1,"745902":1,"745903":1,"745904":1,"745905":1,"745906":1,"745907":1,"745908":1,"745909":1,"746121":1,"746122":1,"746530":2,"746531":2,"746532":2,"746533":2,"746534":2,"746565":2,"746566":2,"746567":2,"746568":2,"746569":2,"746570":2,"746571":2,"746572":2,"746573":2,"746931":1,"746933":1,"746934":1,"746935":1,"746936":1,"746937":1,"746938":1,"746939":1,"746940":1,"746941":1,"746942":1,"746943":1,"746944":1,"746945":1,"746946":1,"746947":1,"746948":1,"746949":1,"746950":1,"746952":1,"746953":1,"746954":1,"746955":2,"746957":1,"746958":1,"746959":1,"746960":1,"746961":1,"746962":1,"746963":1,"746964":1,"746965":1,"746966":1,"747586":2,"747587":2,"747588":2,"747589":2,"747590":2,"747622":2,"747623":2,"747624":2,"747625":2,"747626":2,"747627":2,"747628":2,"747629":2,"747987":1,"747988":1,"747989":1,"747990":1,"747991":1,"747992":1,"747994":1,"747995":1,"747996":1,"747997":1,"747998":1,"747999":1,"748000":1,"748001":1,"748002":1,"748003":1,"748004":1,"748005":1,"748008":2,"748009":2,"748010":2,"748011":2,"748014":1,"748015":1,"748016":1,"748017":1,"748018":1,"748020":1,"748021":1,"748022":1,"748023":1,"748024":1,"748025":1,"748642":2,"748643":2,"748644":2,"748645":2,"748646":2,"748680":2,"748681":2,"748682":2,"748683":2,"748684":2,"749043":1,"749044":1,"749045":1,"749046":1,"749047":1,"749048":1,"749049":1,"749050":1,"749051":1,"749052":1,"749053":1,"749054":1,"749055":1,"749056":1,"749057":1,"749058":1,"749059":1,"749060":1,"749064":2,"749065":2,"749066":2,"749067":2,"749071":1,"749072":1,"749073":1,"749074":1,"749075":1,"749076":1,"749077":1,"749078":1,"749079":1,"749080":1,"749081":1,"749082":1,"749698":2,"749699":2,"749700":2,"749701":2,"749702":2,"750098":1,"750099":1,"750100":1,"750101":1,"750102":1,"750103":1,"750104":1,"750105":1,"750106":1,"750107":1,"750108":1,"750111":1,"750113":1,"750115":1,"750120":2,"750121":2,"750122":2,"750123":2,"750124":2,"750127":1,"750129":1,"750130":1,"750131":1,"750132":1,"750133":1,"750134":1,"750135":1,"750136":1,"750138":1,"750754":2,"750755":2,"750756":2,"750757":2,"750758":2,"751151":1,"751152":1,"751153":1,"751155":1,"751156":1,"751157":1,"751158":1,"751159":1,"751160":1,"751161":1,"751162":1,"751163":1,"751168":1,"751169":1,"751170":1,"751171":1,"751174":2,"751175":2,"751176":2,"751177":2,"751178":2,"751179":2,"751181":2,"751183":1,"751184":1,"751185":1,"751186":1,"751187":1,"751188":1,"751189":1,"751190":1,"751191":1,"751192":1,"751193":1,"751840":1,"751841":1,"751842":1,"751843":1,"751844":1,"751845":1,"752206":1,"752207":1,"752208":1,"752209":1,"752210":1,"752211":1,"752212":1,"752213":1,"752214":1,"752215":1,"752216":1,"752230":2,"752231":2,"752232":2,"752233":2,"752234":2,"752235":2,"752236":2,"752237":2,"752239":1,"752240":1,"752241":1,"752242":1,"752243":1,"752244":1,"752245":1,"752246":1,"752247":1,"752248":1,"752886":2,"752887":2,"752888":2,"752889":2,"752892":1,"752893":1,"752894":1,"752895":1,"752896":1,"752897":1,"752898":1,"752899":1,"752900":1,"752901":1,"752902":1,"752903":1,"752904":1,"752905":1,"753261":1,"753262":1,"753263":1,"753264":1,"753265":1,"753266":1,"753267":1,"753268":1,"753269":1,"753277":2,"753278":2,"753285":2,"753286":2,"753287":2,"753288":2,"753289":2,"753290":2,"753291":2,"753292":2,"753295":1,"753296":1,"753297":1,"753298":1,"753299":1,"753300":1,"753301":1,"753302":1,"753303":1,"753304":1,"753940":2,"753941":2,"753942":2,"753943":2,"753944":2,"753945":2,"753948":1,"753949":1,"753950":1,"753951":1,"753952":1,"753953":1,"753954":1,"753955":1,"753956":1,"753957":1,"753958":1,"753959":1,"753960":1,"753961":1,"753962":1,"753963":1,"753964":1,"753965":1,"753966":1,"753967":1,"753968":1,"753969":1,"753970":1,"753971":1,"753972":1,"753973":1,"753974":1,"753975":1,"753976":1,"753977":1,"754318":1,"754320":1,"754321":1,"754322":1,"754323":1,"754324":1,"754330":2,"754331":2,"754332":2,"754334":2,"754335":2,"754340":2,"754341":2,"754342":2,"754343":2,"754344":2,"754345":2,"754346":2,"754347":2,"754348":2,"754350":1,"754351":1,"754352":1,"754353":1,"754354":1,"754355":1,"754356":1,"754357":1,"754358":1,"754360":1,"754996":2,"754997":2,"754998":2,"754999":2,"755000":2,"755001":2,"755004":1,"755005":1,"755006":1,"755007":1,"755008":1,"755009":1,"755010":1,"755011":1,"755012":1,"755013":1,"755014":1,"755015":1,"755016":1,"755017":1,"755018":1,"755019":1,"755020":1,"755021":1,"755022":1,"755023":1,"755024":1,"755025":1,"755026":1,"755027":1,"755031":1,"755032":1,"755033":1,"755034":1,"755035":1,"755374":1,"755375":1,"755376":1,"755377":1,"755378":1,"755379":1,"755380":1,"755383":2,"755384":2,"755385":2,"755386":2,"755387":2,"755388":2,"755389":2,"755390":2,"755391":2,"755392":2,"755393":2,"755394":2,"755395":2,"755397":2,"755398":2,"755399":2,"755400":2,"755401":2,"755402":2,"755403":2,"755404":2,"755406":1,"755409":1,"755410":1,"755411":1,"755412":1,"755413":1,"755414":1,"755415":1,"755416":1,"756003":1,"756004":1,"756005":1,"756006":1,"756007":1,"756008":1,"756009":1,"756010":1,"756011":1,"756012":1,"756013":1,"756014":1,"756052":2,"756053":2,"756054":2,"756055":2,"756056":2,"756057":2,"756060":1,"756061":1,"756062":1,"756063":1,"756064":1,"756065":1,"756066":1,"756067":1,"756068":1,"756069":1,"756070":1,"756071":1,"756072":1,"756073":1,"756074":1,"756075":1,"756076":1,"756077":1,"756087":1,"756088":1,"756089":1,"756090":1,"756091":1,"756092":1,"756093":1,"756430":1,"756431":1,"756432":1,"756433":1,"756434":1,"756435":1,"756436":1,"756438":2,"756439":2,"756440":2,"756441":2,"756442":2,"756443":2,"756444":2,"756445":2,"756446":2,"756447":2,"756448":2,"756449":2,"756450":2,"756451":2,"756452":2,"756453":2,"756454":2,"756455":2,"756456":2,"756457":2,"756458":2,"756459":2,"756460":2,"756463":1,"756464":1,"756465":1,"756466":1,"756467":1,"756468":1,"756469":1,"756470":1,"756471":1,"756472":1,"756473":1,"757059":1,"757060":1,"757061":1,"757062":1,"757063":1,"757064":1,"757065":1,"757066":1,"757067":1,"757068":1,"757069":1,"757070":1,"757110":2,"757111":2,"757112":2,"757116":1,"757117":1,"757118":1,"757119":1,"757120":1,"757121":1,"757122":1,"757123":1,"757124":1,"757125":1,"757126":1,"757127":1,"757128":1,"757129":1,"757130":1,"757131":1,"757143":1,"757144":1,"757145":1,"757146":1,"757147":1,"757148":1,"757149":1,"757486":1,"757487":1,"757488":1,"757489":1,"757490":1,"757491":1,"757492":1,"757495":2,"757496":2,"757497":2,"757498":2,"757499":2,"757500":2,"757501":2,"757502":2,"757503":2,"757504":2,"757505":2,"757506":2,"757507":2,"757508":2,"757509":2,"757510":2,"757511":2,"757512":2,"757513":2,"757514":2,"757515":2,"757516":2,"757524":1,"757525":1,"757526":1,"757527":1,"757528":1,"757530":1,"758115":1,"758116":1,"758117":1,"758126":1,"758175":1,"758176":1,"758177":1,"758178":1,"758179":1,"758180":1,"758181":1,"758182":1,"758183":1,"758199":1,"758200":1,"758201":1,"758202":1,"758542":1,"758543":1,"758544":1,"758545":1,"758546":1,"758547":1,"758549":1,"758553":2,"758554":2,"758555":2,"758556":2,"758557":2,"758558":2,"758559":2,"758560":2,"758561":2,"758562":2,"758563":2,"758564":2,"758565":2,"758566":2,"758567":2,"758568":2,"758569":2,"758570":2,"758571":2,"758573":2,"758581":1,"758582":1,"758583":1,"758584":1,"758585":1,"758586":1,"759171":1,"759172":1,"759182":1,"759231":1,"759232":1,"759233":1,"759234":1,"759235":1,"759236":1,"759237":1,"759238":1,"759239":1,"759255":1,"759256":1,"759257":1,"759258":1,"759599":1,"759600":1,"759601":1,"759602":1,"759603":1,"759604":1,"759605":1,"759606":1,"759607":1,"759610":2,"759611":2,"759612":2,"759613":2,"759614":2,"759615":2,"759616":2,"759617":2,"759618":2,"759619":2,"759620":2,"759621":2,"759622":2,"759623":2,"759624":2,"759625":2,"759626":2,"759627":2,"759628":2,"759629":2,"759630":2,"759631":2,"759632":2,"759633":2,"759634":2,"759637":1,"759638":1,"759639":1,"759640":1,"759641":1,"759642":1,"760227":1,"760228":1,"760238":1,"760263":1,"760264":1,"760265":1,"760266":1,"760267":1,"760268":1,"760269":1,"760270":1,"760271":1,"760272":1,"760273":1,"760274":1,"760311":1,"760312":1,"760655":1,"760656":1,"760658":1,"760659":1,"760660":1,"760661":1,"760662":1,"760663":1,"760664":1,"760667":2,"760668":2,"760669":2,"760670":2,"760671":2,"760672":2,"760673":2,"760674":2,"760675":2,"760676":2,"760677":2,"760678":2,"760679":2,"760680":2,"760681":2,"760682":2,"760683":2,"760684":2,"760685":2,"760686":2,"760687":2,"760688":2,"760689":2,"760690":2,"760691":2,"760694":1,"760695":1,"760696":1,"760697":1,"760698":1,"761283":1,"761284":1,"761289":4,"761290":4,"761291":4,"761294":1,"761319":1,"761320":1,"761321":1,"761322":1,"761323":1,"761324":1,"761325":1,"761326":1,"761327":1,"761328":1,"761329":1,"761330":1,"761331":1,"761332":1,"761711":1,"761712":1,"761713":1,"761714":1,"761715":1,"761716":1,"761717":1,"761718":1,"761720":1,"761721":1,"761723":2,"761724":2,"761725":2,"761726":2,"761727":2,"761728":2,"761729":2,"761730":2,"761731":2,"761732":2,"761733":2,"761734":2,"761735":2,"761736":2,"761737":2,"761738":2,"761739":2,"761740":2,"761741":2,"761742":2,"761743":2,"761744":2,"761745":2,"761746":2,"761747":2,"761751":1,"761752":1,"761753":1,"761754":1,"761755":1,"762339":1,"762340":1,"762345":4,"762347":4,"762350":1,"762379":1,"762380":1,"762381":1,"762382":1,"762383":1,"762384":1,"762385":1,"762386":1,"762387":1,"762388":1,"762389":1,"762390":1,"762391":1,"762392":1,"762393":1,"762425":3,"762426":3,"762427":3,"762768":1,"762769":1,"762770":1,"762771":1,"762772":1,"762773":1,"762774":1,"762776":1,"762779":2,"762780":2,"762781":2,"762782":2,"762783":2,"762784":2,"762785":2,"762786":2,"762787":2,"762788":2,"762789":2,"762790":2,"762791":2,"762792":2,"762793":2,"762794":2,"762795":2,"762796":2,"762797":2,"762798":2,"762799":2,"762800":2,"762801":2,"762802":2,"762803":2,"762804":2,"762807":1,"762808":1,"762809":1,"762810":1,"762811":1,"762812":1,"763395":1,"763396":1,"763401":4,"763402":4,"763403":4,"763406":1,"763440":1,"763441":1,"763442":1,"763443":1,"763444":1,"763445":1,"763446":1,"763447":1,"763448":1,"763449":1,"763477":3,"763478":3,"763479":3,"763480":3,"763481":3,"763482":3,"763483":3,"763825":1,"763826":1,"763827":1,"763828":1,"763829":1,"763830":1,"763831":1,"763836":2,"763837":2,"763838":2,"763839":2,"763840":2,"763841":2,"763842":2,"763843":2,"763844":2,"763845":2,"763846":2,"763847":2,"763848":2,"763849":2,"763850":2,"763851":2,"763852":2,"763853":2,"763854":2,"763855":2,"763856":2,"763857":2,"763858":2,"763859":2,"763861":2,"763863":1,"763864":1,"763865":1,"763867":1,"763868":1,"764451":1,"764462":1,"764496":1,"764497":1,"764498":1,"764499":1,"764500":1,"764501":1,"764502":1,"764503":1,"764504":1,"764505":1,"764529":3,"764530":3,"764531":3,"764532":3,"764533":3,"764534":3,"764535":3,"764536":3,"764537":3,"764538":3,"764539":3,"764882":1,"764883":1,"764884":1,"764885":1,"764886":1,"764887":1,"764890":2,"764891":2,"764892":2,"764893":2,"764894":2,"764895":2,"764896":2,"764897":2,"764898":2,"764899":2,"764900":2,"764901":2,"764902":2,"764903":2,"764904":2,"764905":2,"764906":2,"764907":2,"764908":2,"764909":2,"764910":2,"764911":2,"764912":2,"764913":2,"764914":2,"764915":2,"764916":2,"764917":2,"764919":1,"764920":1,"764921":1,"764922":1,"764923":1,"764924":1,"765507":1,"765518":1,"765553":1,"765554":1,"765555":1,"765556":1,"765557":1,"765558":1,"765559":1,"765560":1,"765561":1,"765583":3,"765584":3,"765585":3,"765586":3,"765587":3,"765588":3,"765589":3,"765590":3,"765591":3,"765592":3,"765593":3,"765594":3,"765595":3,"765938":1,"765939":1,"765940":1,"765941":1,"765942":1,"765943":1,"765945":2,"765946":2,"765947":2,"765948":2,"765949":2,"765950":2,"765951":2,"765952":2,"765953":2,"765954":2,"765955":2,"765956":2,"765957":2,"765958":2,"765959":2,"765960":2,"765961":2,"765962":2,"765963":2,"765964":2,"765965":2,"765966":2,"765967":2,"765968":2,"765969":2,"765970":2,"765971":2,"765972":2,"765975":1,"765976":1,"765977":1,"765978":1,"765979":1,"765980":1,"765981":1,"766563":1,"766574":1,"766639":3,"766640":3,"766641":3,"766642":3,"766643":3,"766644":3,"766645":3,"766646":3,"766647":3,"766648":3,"766994":1,"766995":1,"766996":1,"766997":1,"766998":1,"766999":1,"767002":2,"767003":2,"767004":2,"767005":2,"767006":2,"767007":2,"767008":2,"767009":2,"767010":2,"767011":2,"767012":2,"767013":2,"767014":2,"767015":2,"767016":2,"767017":2,"767018":2,"767019":2,"767020":2,"767021":2,"767022":2,"767023":2,"767024":2,"767025":2,"767026":2,"767027":2,"767030":1,"767031":1,"767032":1,"767033":1,"767034":1,"767035":1,"767036":1,"767038":1,"767619":1,"767620":1,"767621":1,"767622":1,"767623":1,"767624":1,"767625":1,"767626":1,"767627":1,"767628":1,"767629":1,"767630":1,"767695":3,"767696":3,"767697":3,"767698":3,"767699":3,"767700":3,"767701":3,"767702":3,"768050":1,"768051":1,"768052":1,"768053":1,"768054":1,"768056":1,"768058":2,"768059":2,"768060":2,"768061":2,"768062":2,"768063":2,"768064":2,"768065":2,"768066":2,"768067":2,"768068":2,"768069":2,"768070":2,"768071":2,"768072":2,"768073":2,"768074":2,"768075":2,"768076":2,"768077":2,"768078":2,"768079":2,"768080":2,"768081":2,"768082":2,"768083":2,"768085":1,"768086":1,"768087":1,"768088":1,"768089":1,"768090":1,"768091":1,"768092":1,"768093":1,"768752":3,"768753":3,"768754":3,"768755":3,"768756":3,"768757":3,"768758":3,"769105":1,"769106":1,"769107":1,"769108":1,"769109":1,"769110":1,"769111":1,"769114":2,"769115":2,"769116":2,"769117":2,"769118":2,"769119":2,"769120":2,"769121":2,"769122":2,"769123":2,"769124":2,"769125":2,"769126":2,"769127":2,"769128":2,"769129":2,"769130":2,"769131":2,"769132":2,"769133":2,"769134":2,"769135":2,"769136":2,"769137":2,"769138":2,"769139":2,"769141":1,"769143":1,"769144":1,"769145":1,"769146":1,"769147":1,"769148":1,"769809":3,"769810":3,"769811":3,"769812":3,"769813":3,"769814":3,"770160":1,"770163":1,"770164":1,"770165":1,"770166":1,"770170":2,"770171":2,"770172":2,"770173":2,"770174":2,"770175":2,"770176":2,"770177":2,"770178":2,"770179":2,"770180":2,"770181":2,"770182":2,"770183":2,"770184":2,"770185":2,"770186":2,"770187":2,"770188":2,"770189":2,"770190":2,"770191":2,"770192":2,"770193":2,"770194":2,"770195":2,"770198":1,"770199":1,"770200":1,"770201":1,"770202":1,"770203":1,"770204":1,"770865":3,"770866":3,"770867":3,"770868":3,"770869":3,"771217":1,"771218":1,"771219":1,"771220":1,"771221":1,"771222":1,"771225":2,"771226":2,"771228":2,"771229":2,"771230":2,"771231":2,"771232":2,"771233":2,"771234":2,"771235":2,"771236":2,"771237":2,"771238":2,"771239":2,"771240":2,"771241":2,"771242":2,"771243":2,"771244":2,"771245":2,"771246":2,"771247":2,"771248":2,"771249":2,"771250":2,"771251":2,"771255":1,"771256":1,"771257":1,"771258":1,"771259":1,"771260":1,"771922":3,"771923":3,"771924":3,"771925":3,"772274":1,"772275":1,"772276":1,"772277":1,"772278":1,"772280":2,"772281":2,"772282":2,"772283":2,"772284":2,"772285":2,"772286":2,"772287":2,"772288":2,"772289":2,"772290":2,"772291":2,"772292":2,"772293":2,"772294":2,"772295":2,"772296":2,"772297":2,"772298":2,"772299":2,"772300":2,"772301":2,"772302":2,"772303":2,"772304":2,"772305":2,"772306":2,"772307":2,"772308":2,"772311":1,"772312":1,"772313":1,"772314":1,"772315":1,"772426":1,"772427":1,"772428":1,"772429":1,"772430":1,"772431":1,"772432":1,"772433":1,"772434":1,"772435":1,"773330":1,"773331":1,"773332":1,"773333":1,"773334":1,"773337":2,"773338":2,"773339":2,"773340":2,"773341":2,"773342":2,"773343":2,"773344":2,"773345":2,"773346":2,"773347":2,"773348":2,"773349":2,"773350":2,"773351":2,"773352":2,"773353":2,"773354":2,"773355":2,"773356":2,"773357":2,"773358":2,"773359":2,"773360":2,"773361":2,"773362":2,"773363":2,"773364":2,"773365":2,"773367":1,"773368":1,"773369":1,"773370":1,"773371":1,"773482":1,"773483":1,"773484":1,"773485":1,"773486":1,"773487":1,"773488":1,"773489":1,"773490":1,"773491":1,"774386":1,"774387":1,"774388":1,"774389":1,"774390":1,"774391":1,"774395":2,"774396":2,"774397":2,"774398":2,"774399":2,"774400":2,"774401":2,"774402":2,"774403":2,"774404":2,"774405":2,"774406":2,"774407":2,"774408":2,"774409":2,"774410":2,"774411":2,"774412":2,"774413":2,"774414":2,"774415":2,"774416":2,"774417":2,"774418":2,"774419":2,"774420":2,"774424":1,"774425":1,"774426":1,"774427":1,"774538":1,"774539":1,"774540":1,"774541":1,"774542":1,"774543":1,"774544":1,"774545":1,"774546":1,"774547":1,"775442":1,"775443":1,"775444":1,"775445":1,"775446":1,"775447":1,"775448":1,"775449":1,"775452":2,"775453":2,"775454":2,"775455":2,"775456":2,"775457":2,"775458":2,"775459":2,"775460":2,"775461":2,"775462":2,"775463":2,"775464":2,"775465":2,"775466":2,"775467":2,"775468":2,"775469":2,"775470":2,"775471":2,"775472":2,"775473":2,"775474":2,"775475":2,"775476":2,"775480":1,"775481":1,"775482":1,"775594":1,"775595":1,"775596":1,"775597":1,"775598":1,"775599":1,"775600":1,"775601":1,"775602":1,"775603":1,"776144":2,"776498":1,"776499":1,"776500":1,"776501":1,"776502":1,"776503":1,"776504":1,"776506":1,"776509":2,"776510":2,"776512":2,"776513":2,"776514":2,"776515":2,"776516":2,"776517":2,"776518":2,"776519":2,"776520":2,"776521":2,"776522":2,"776523":2,"776524":2,"776525":2,"776526":2,"776527":2,"776528":2,"776529":2,"776530":2,"776532":2,"776535":1,"776536":1,"776537":1,"776538":1,"776650":1,"776651":1,"776652":1,"776653":1,"776654":1,"776655":1,"776656":1,"776657":1,"776658":1,"776659":1,"777200":2,"777201":2,"777555":1,"777556":1,"777557":1,"777558":1,"777559":1,"777560":1,"777561":1,"777562":1,"777563":1,"777565":2,"777566":2,"777567":2,"777568":2,"777573":2,"777574":2,"777575":2,"777576":2,"777577":2,"777578":2,"777579":2,"777580":2,"777581":2,"777582":2,"777583":2,"777584":2,"777585":2,"777586":2,"777587":2,"777590":1,"777591":1,"777592":1,"777593":1,"777594":1,"777706":1,"777707":1,"777708":1,"777709":1,"777710":1,"777711":1,"777712":1,"777713":1,"777714":1,"777715":1,"778241":2,"778242":2,"778243":2,"778244":2,"778245":2,"778246":2,"778247":2,"778248":2,"778249":2,"778250":2,"778251":2,"778257":2,"778258":2,"778259":2,"778613":1,"778614":1,"778615":1,"778616":1,"778617":1,"778618":1,"778619":1,"778621":2,"778626":1,"778627":1,"778630":2,"778631":2,"778632":2,"778633":2,"778634":2,"778635":2,"778636":2,"778637":2,"778638":2,"778639":2,"778640":2,"778641":2,"778642":2,"778645":1,"778646":1,"778647":1,"778648":1,"778649":1,"778650":1,"778761":1,"778762":1,"778763":1,"778764":1,"778765":1,"778766":1,"778767":1,"778768":1,"778769":1,"778770":1,"778771":1,"778772":1,"779271":2,"779272":2,"779273":2,"779274":2,"779297":2,"779298":2,"779299":2,"779300":2,"779301":2,"779302":2,"779303":2,"779304":2,"779305":2,"779306":2,"779307":2,"779670":1,"779671":1,"779672":1,"779673":1,"779674":1,"779675":1,"779679":1,"779680":1,"779681":1,"779683":1,"779684":1,"779686":2,"779688":2,"779689":2,"779690":2,"779691":2,"779692":2,"779693":2,"779694":2,"779695":2,"779696":2,"779697":2,"779700":1,"779701":1,"779702":1,"779703":1,"779704":1,"779705":1,"779706":1,"779816":1,"779817":1,"779818":1,"779819":1,"779820":1,"779821":1,"779822":1,"779823":1,"779824":1,"779825":1,"779826":1,"779827":1,"779828":1,"779829":1,"780326":2,"780327":2,"780328":2,"780329":2,"780330":2,"780355":2,"780356":2,"780357":2,"780358":2,"780359":2,"780360":2,"780365":3,"780366":3,"780727":1,"780728":1,"780729":1,"780730":1,"780731":1,"780732":1,"780733":1,"780734":1,"780736":1,"780737":1,"780739":1,"780740":1,"780742":2,"780743":2,"780744":2,"780745":2,"780746":2,"780747":2,"780748":2,"780749":2,"780750":2,"780751":2,"780752":2,"780753":2,"780755":1,"780756":1,"780757":1,"780758":1,"780759":1,"780760":1,"780761":1,"780871":1,"780872":1,"780873":1,"780874":1,"780875":1,"780876":1,"780877":1,"780878":1,"780879":1,"780880":1,"780881":1,"780882":1,"780883":1,"780884":1,"780885":1,"780886":1,"781382":2,"781383":2,"781384":2,"781385":2,"781386":2,"781387":2,"781411":2,"781412":2,"781413":2,"781414":2,"781415":2,"781416":2,"781421":3,"781422":3,"781783":1,"781784":1,"781785":1,"781786":1,"781787":1,"781788":1,"781789":1,"781790":1,"781791":1,"781792":1,"781793":1,"781794":1,"781795":1,"781796":1,"781799":2,"781800":2,"781801":2,"781802":2,"781803":2,"781804":2,"781805":2,"781806":2,"781807":2,"781808":2,"781809":2,"781811":1,"781812":1,"781813":1,"781814":1,"781815":1,"781926":1,"781927":1,"781928":1,"781929":1,"781930":1,"781931":1,"781932":1,"781933":1,"781934":1,"781935":1,"781936":1,"781937":1,"781938":1,"781939":1,"781940":1,"781941":1,"781942":1,"781943":1,"782438":2,"782439":2,"782440":2,"782441":2,"782442":2,"782469":2,"782470":2,"782839":1,"782841":1,"782842":1,"782843":1,"782844":1,"782845":1,"782846":1,"782847":1,"782848":1,"782849":1,"782850":1,"782851":1,"782852":1,"782853":1,"782856":2,"782857":2,"782858":2,"782859":2,"782860":2,"782861":2,"782862":2,"782863":2,"782864":2,"782867":1,"782868":1,"782869":1,"782870":1,"782981":1,"782982":1,"782983":1,"782984":1,"782985":1,"782986":1,"782987":1,"782988":1,"782989":1,"782990":1,"782991":1,"782992":1,"782993":1,"782994":1,"782995":1,"782996":1,"782997":1,"782998":1,"782999":1,"783000":1,"783496":2,"783497":2,"783896":1,"783901":1,"783902":1,"783903":1,"783904":1,"783905":1,"783906":1,"783907":1,"783908":1,"783909":1,"783913":2,"783914":2,"783915":2,"783916":2,"783917":2,"783918":2,"783920":2,"783922":1,"783923":1,"783924":1,"783925":1,"784037":1,"784038":1,"784039":1,"784040":1,"784041":1,"784042":1,"784043":1,"784044":1,"784045":1,"784046":1,"784047":1,"784048":1,"784049":1,"784050":1,"784051":1,"784052":1,"784053":1,"784054":1,"784055":1,"784056":1,"784958":1,"784959":1,"784960":1,"784961":1,"784962":1,"784963":1,"784964":1,"784965":1,"784966":1,"784967":1,"784970":2,"784974":2,"784975":2,"784976":2,"784978":1,"784979":1,"784980":1,"784981":1,"785093":1,"785094":1,"785095":1,"785096":1,"785097":1,"785098":1,"785099":1,"785100":1,"785101":1,"785102":1,"785103":1,"785104":1,"785105":1,"785106":1,"785107":1,"785108":1,"785109":1,"785110":1,"785111":1,"785112":1,"786016":1,"786017":1,"786018":1,"786019":1,"786020":1,"786021":1,"786022":1,"786023":1,"786024":1,"786028":1,"786031":2,"786034":1,"786035":1,"786036":1,"786037":1,"786149":1,"786150":1,"786151":1,"786152":1,"786153":1,"786154":1,"786155":1,"786156":1,"786157":1,"786158":1,"786159":1,"786160":1,"786161":1,"786162":1,"786163":1,"786164":1,"786165":1,"786166":1,"786167":1,"786168":1,"787072":1,"787073":1,"787074":1,"787076":1,"787077":1,"787078":1,"787079":1,"787080":1,"787081":1,"787082":1,"787083":1,"787084":1,"787085":1,"787089":1,"787090":1,"787091":1,"787092":1,"787205":1,"787206":1,"787207":1,"787208":1,"787209":1,"787210":1,"787211":1,"787212":1,"787213":1,"787214":1,"787215":1,"787216":1,"787217":1,"787218":1,"787219":1,"787220":1,"787221":1,"787222":1,"787223":1,"787224":1,"788128":1,"788129":1,"788130":1,"788131":1,"788132":1,"788136":1,"788137":1,"788138":1,"788139":1,"788140":1,"788141":1,"788142":1,"788143":1,"788144":1,"788145":1,"788146":1,"788147":1,"788148":1,"788261":1,"788262":1,"788263":1,"788264":1,"788265":1,"788266":1,"788267":1,"788268":1,"788269":1,"788270":1,"788271":1,"788272":1,"788273":1,"788274":1,"788275":1,"788276":1,"788277":1,"788278":1,"788279":1,"788280":1,"789192":1,"789193":1,"789194":1,"789195":1,"789196":1,"789197":1,"789198":1,"789199":1,"789200":1,"789201":1,"789202":1,"789203":1,"789204":1,"789317":1,"789318":1,"789319":1,"789320":1,"789321":1,"789322":1,"789323":1,"789324":1,"789325":1,"789326":1,"789327":1,"789328":1,"789329":1,"789330":1,"789331":1,"789332":1,"789333":1,"789334":1,"789335":1,"789336":1,"790251":1,"790252":1,"790253":1,"790254":1,"790255":1,"790256":1,"790258":1,"790259":1,"790260":1,"790373":1,"790374":1,"790375":1,"790376":1,"790377":1,"790378":1,"790379":1,"790380":1,"790381":1,"790382":1,"790383":1,"790384":1,"790385":1,"790386":1,"790387":1,"790388":1,"790389":1,"790390":1,"790391":1,"790392":1,"791313":1,"791314":1,"791315":1,"791316":1,"791317":1,"791429":1,"791430":1,"791431":1,"791432":1,"791433":1,"791434":1,"791435":1,"791436":1,"791437":1,"791438":1,"791439":1,"791440":1,"791441":1,"791442":1,"791443":1,"791444":1,"791445":1,"791446":1,"791447":1,"791448":1,"792372":1,"792374":1,"792485":1,"792486":1,"792487":1,"792488":1,"792489":1,"792490":1,"792491":1,"792492":1,"792493":1,"792494":1,"792495":1,"792496":1,"792497":1,"792498":1,"792499":1,"792500":1,"792501":1,"792502":1,"792503":1,"792504":1,"793429":1,"793542":1,"793543":1,"793544":1,"793545":1,"793546":1,"793547":1,"793548":1,"793549":1,"793550":1,"793551":1,"793552":1,"793553":1,"793554":1,"793555":1,"793556":1,"793557":1,"793558":1,"793559":1,"794599":1,"794600":1,"794601":1,"794602":1,"794603":1,"794604":1,"794605":1,"794606":1,"794607":1,"794608":1,"794609":1,"794610":1,"794611":1,"794612":1,"794613":1,"794614":1,"796196":2,"796213":2,"796214":2,"797243":2,"797244":2,"797245":2,"797251":2,"797252":2,"797253":2,"797267":2,"797268":2,"797269":2,"797270":2,"798299":2,"798300":2,"798301":2,"798307":2,"798308":2,"798309":2,"798322":2,"798323":2,"798324":2,"798325":2,"798326":2,"799355":2,"799356":2,"799357":2,"799377":2,"799378":2,"799379":2,"799380":2,"799381":2,"799382":2,"800411":2,"800412":2,"800413":2,"800433":2,"800434":2,"800435":2,"800436":2,"800437":2,"801468":2,"801469":2,"801470":2,"801471":2,"802525":2,"802526":2,"802527":2,"802528":2,"802529":2,"802530":2,"803582":2,"803583":2,"803584":2,"803585":2,"803586":2,"804639":2,"804640":2,"804641":2,"804642":2},"high":[5,18,19,20,132,133,134,135,136,137,138,139,185,186,187,193,196,197,198,199,200,201,202,203,321,646,647,648,653,654,655,656,709,710,711,712,713,717,718,719,720,739,740,772,773,774,775,776,777,778,781,782,783,784,802,803,804,805,845,848,865,866,867,868,869,870,897,898,928,929,930,931,932,933,934,935,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,961,962,1036,1037,1100,1101,1109,1110,1111,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1173,1174,1175,1217,1218,1219,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1281,1282,1283,1434,1435,1437,1438,1439,1446,1447,1448,1510,1511,1512,1525,1526,1527,1537,1538,1589,1590,1591,1592,1653,1654,1655,1656,1665,1711,1712,1714,1715,1717,1718,1719,1720,1793,1901,1914,1915,1916,1921,1922,1923,1938,1939,1941,1942,1943,1985,1986,1987,2001,2002,2003,2004,2005,2006,2007,2021,2022,2023,2065,2066,2067,2068,2069,2070,2071,2085,2086,2087,2089,2133,2158,2160,2217,2221,2222,2223,2224,2225,2241,2242,2243,2244,2285,2286,2287,2288,2289,2290,2291,2305,2306,2307,2308,2349,2350,2351,2352,2353,2354,2355,2369,2370,2371,2372,2385,2386,2387,2389,2390,2391,2429,2430,2431,2432,2453,2454,2455,2493,2494,2495,2496,2497,2498,2499,2500,2511,2549,2550,2551,2557,2558,2559,2560,2561,2562,2564,2574,2575,2576,2613,2614,2615,2616,2638,2639,2640,2671,2673,2677,2678,2679,2680,2709,2710,2711,2712,2734,2735,2736,2737,2738,2741,2742,2743,2744,2773,2774,2775,2776,2793,2794,2796,2797,2798,2799,2800,2801,2802,2821,2822,2823,2837,2838,2839,2840,2857,2858,2860,2861,2862,2863,2864,2865,2866,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2979,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,3042,3043,3044,3106,3107,3108,3113,3114,3115,3177,3178,3179,3289,3290,3291,3433,3434,3561,3562,3710,3711,3712,3774,3775,3776,3897,3898,3900,3901,3996,3998,3999,4028,4029,4570,4571,4572,4573,4579,4580,4581,4582,4583,4584,4585,4586,4587,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4634,4635,4636,4637,4638,4643,4660,4667,4698,4699,4700,4701,4702,4707,4724,4731,4771,4788,4795,4835,4852,4859,4916,4923,4980,4987,5023,5024,5025,5026,5078,5079,5080,5081,5082,5083,5084,5085,5146,5150,5151,5152,5154,5173,5174,5175,5176,5177,5178,5179,5199,5200,5237,5238,5239,5240,5241,5242,5243,5262,5263,5264,5265,5271,5272,5274,5275,5276,5277,5278,5279,5280,5281,5282,5325,5326,5327,5328,5329,5330,5335,5336,5388,5389,5390,5391,5392,5393,5394,5395,5397,5399,5525,5526,5527,5569,5570,5571,5633,5634,5635,5653,5654,5655,5697,5698,5699,5781,5782,5783,5784,5906,5907,5908,5970,5971,5972,6401,6402,6403,6465,6466,6467,6481,6482,6483,6529,6530,6531,6593,7110,7111,7112,7126,7127,7128,7129,7134,7135,7136,7137,7138,7139,7140,7141,7144,7173,7174,7175,7176,7190,7191,7192,7193,7198,7199,7200,7201,7202,7203,7204,7205,7237,7238,7239,7240,7241,7242,7243,7244,7369,7370,7371,7372,7433,7434,7435,7436,7497,7498,7499,7500,7621,7685,7693,7749,7757,9723,9788,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9852,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9908,9909,9916,9974,9980,10038,10044,10102,10108,10172,10230,10236,10294,10300,10358,10425,10427,10489,10490,10491,12329,12330,12331,12332,12333,12355,12356,12393,12394,12395,12396,12397,12417,12418,12419,12420,12421,12422,12457,12458,12459,12460,12461,12481,12482,12483,12484,12485,12486,12521,12522,12523,12524,12525,12545,12546,12547,12548,12549,12609,12610,12611,12612,12613,12943,12944,12998,13128,13129,13130,13131,13132,13133,13134,13135,13192,13193,13194,13195,13196,13197,13198,13199,13256,13257,13258,13259,13260,13320,13321,13322,13323,13398,13399,13461,13462,13463,13464,13465,13466,13467,13468,13525,13526,13527,13528,13529,13530,13531,13532,13534,13535,13536,13538,13539,13540,13541,13569,13570,13571,13572,13573,13574,13575,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13633,13634,13635,13636,13637,13638,13639,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13697,13698,13699,13700,13701,13702,13703,13725,13729,13730,13731,13732,13733,13921,13922,13923,13924,13925,13926,13985,13986,13987,13988,13989,14049,14050,14051,14052,14113,14116,14209,14210,14211,14273,14274,14275,14294,14295,14298,14299,14302,14358,14359,14361,14362,14363,14364,14365,14366,14367,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14467,14468,14469,14470,14471,14472,14473,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14531,14532,14533,14534,14535,14536,14537,14538,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14657,14658,14666,14667,14669,14670,14819,14820,14821,14925,14926,14927,14928,14929,14930,14931,14932,14989,14990,14991,14992,14993,14994,14995,14996,15005,15006,15007,15008,15009,15069,15070,15071,15072,15073,15117,15120,15121,15124,15206,15207,15208,15309,15310,15311,15746,15747,15810,15811,15820,15821,15822,15873,15874,15875,15876,15877,15878,15879,15880,15882,15883,15884,15885,15886,15887,15937,15938,15939,15940,15941,15942,15943,15944,15946,15947,15948,15949,15950,15951,16010,16011,16012,16013,16014,16647,16648,16649,16664,16665,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16702,16710,16711,16712,16713,16714,16728,16729,16767,16773,16774,16775,16776,16777,16778,16779,16792,16793,16830,16837,16838,16839,16840,16841,16842,16843,16895,17495,17511,17559,19462,19463,19526,19527,19528],"objects":[846,847,910,911,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1385,1386,1387,1388,1389,1390,1391,1392,1393,1513,1515,1517,1519,1521,1575,1639,1782,1783,2130,2131,2134,2194,2195,2198,2703,2767,2806,2807,3171,3235,3753,4060,4154,4155,4156,6035,6099,6594,6658,7319,7320,7383,7384,12301,12302,12307,12308,12523,12587,13124,13261,13262,13263,13322,13325,13326,13327,13386,13444,13731,13732,13795,13796,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16766,16894,19397,19398,19399,19400,19654,19655,19656,19658,20300,20361],"cursors":{"846":"axe","847":"axe","910":"axe","911":"axe","1193":"pickaxe","1194":"pickaxe","1195":"pickaxe","1196":"pickaxe","1197":"pickaxe","1198":"pickaxe","1199":"pickaxe","1200":"pickaxe","1201":"pickaxe","1202":"pickaxe","1203":"pickaxe","1204":"pickaxe","1385":"pickaxe","1386":"pickaxe","1387":"pickaxe","1388":"pickaxe","1389":"pickaxe","1390":"pickaxe","1391":"pickaxe","1392":"pickaxe","1393":"pickaxe","1513":"pickaxe","1515":"pickaxe","1517":"pickaxe","1519":"pickaxe","1521":"pickaxe","1575":"axe","1639":"axe","1782":"axe","1783":"axe","2130":"axe","2131":"axe","2134":"axe","2194":"axe","2195":"axe","2198":"axe","2703":"axe","2767":"axe","2806":"axe","2807":"axe","3171":"axe","3235":"axe","6035":"axe","6099":"axe","6594":"axe","6658":"axe","7319":"axe","7320":"axe","7383":"axe","7384":"axe","12301":"fishing","12302":"fishing","12307":"fishing","12308":"fishing","12523":"axe","12587":"axe","13261":"axe","13262":"axe","13263":"axe","13322":"axe","13325":"axe","13326":"axe","13327":"axe","13386":"axe","13731":"axe","13732":"axe","13795":"axe","13796":"axe","16753":"foraging","16754":"foraging","16755":"foraging","16756":"foraging","16757":"foraging","16758":"foraging","16759":"foraging","16760":"foraging","16761":"foraging","16762":"foraging","16763":"foraging","16764":"foraging","16766":"foraging","16894":"foraging","19397":"crafting","19398":"crafting","19399":"crafting","19400":"crafting","19654":"smelting","19655":"smelting","19656":"smelting","19658":"smithing","20300":"smithing","20361":"cooking"},"entities":{"5890":"sorcerer","5919":"villagegirl","7923":"crab","7926":"crab","8460":"goblin","8501":"bat","8758":"deathknight","8890":"redstoremannpc","8918":"purplestoremannpc","8925":"bluestoremannpc","8977":"crab","8984":"crab","8987":"crab","9632":"rat","10035":"crab","10038":"crab","10046":"crab","10088":"coder","10648":"rat","10762":"cactus","10869":"deathknight","11095":"crab","11240":"oldlady","11697":"bat","11775":"ogre","11780":"ogre","11809":"desertscorpion","12058":"vendingmachine","12145":"crab","12690":"skeleton","12695":"goblin","12838":"cactus","12974":"spectre","13737":"goblin","13857":"rat","13931":"desertscorpion","14006":"preta","14012":"preta","14014":"adherer","14015":"preta","14028":"spectre","14042":"spectre","14798":"skeleton","14800":"skeleton","14806":"rat","14965":"cactus","15083":"spectre","15462":"rat","15468":"rat","15897":"rat","16128":"preta","16156":"deathknight","16384":"guard","16957":"rat","16990":"bat","17005":"bat","17084":"cactus","17168":"preta","17578":"rat","18125":"cactus","18150":"desertscorpion","18232":"preta","18629":"rat","19078":"boxingman","19128":"villager","19162":"cactus","19201":"cactus","20223":"ogre","20273":"cactus","20372":"spectre","20425":"king","21135":"rat","21159":"rat","21348":"eye","22197":"goblin","22203":"goblin","22304":"rat","22310":"rat","22326":"snek","23242":"goblin","23309":"rat","23410":"desertscorpion","23420":"cactus","23441":"snek","23466":"eye","23538":"golem","23591":"royalguard2","23595":"royalguard3","24324":"rat","24347":"rat","24370":"rat","24386":"rat","24442":"ogre","24471":"cactus","24494":"desertscorpion","25588":"spectre","25637":"golem","26413":"goblin","26416":"rat","26446":"rat","26513":"rat","26564":"ogre","26638":"eye","26808":"coder","27491":"goblin","27526":"rat","27592":"bat","27629":"snek","27742":"adherer","28526":"rat","28534":"goblin","28667":"snek","28693":"cactus","28707":"cactus","28713":"snek","28720":"cactus","28763":"eye","29595":"rat","29628":"bat","29690":"bat","29782":"cactus","29826":"spectre","30642":"goblin","30658":"rat","30774":"snek","31709":"goblin","31870":"cactus","31885":"snek","31966":"spectre","31990":"golem","32039":"redstoremannpc","32043":"redstoremannpc","32750":"rat","32787":"rat","32812":"rat","32890":"desertscorpion","32904":"oldogre","32933":"snek","33032":"adherer","33812":"goblin","33819":"rat","33970":"snek","34029":"eye","34056":"eye","34886":"rat","34951":"rat","35105":"spectre","35130":"ironogre","35376":"rat","35929":"goblin","35972":"rat","35992":"bat","36206":"adherer","36433":"rat","37270":"spectre","37490":"rat","38252":"eye","38544":"rat","39193":"rat","39253":"cactus","39285":"cactus","39331":"eye","39592":"sorcerer","39602":"rat","40179":"rat","40275":"snek","40289":"snek","40320":"lavanpc","40426":"adherer","40657":"rat","41206":"rat","41337":"cactus","41386":"vulture","41416":"eye","41489":"adherer","41714":"rat","42279":"rat","42554":"golem","42771":"rat","43315":"goblin","43341":"rat","43550":"spectre","43598":"adherer","44543":"snek","44593":"spectre","45454":"bat","45562":"snek","45571":"snek","45595":"cactus","45621":"desertscorpion","45653":"eye","45978":"guard","46474":"goblin","46594":"rat","46671":"desertscorpion","47535":"goblin","47700":"snek","47783":"spectre","47808":"ironogre","48682":"rat","48712":"guard","48724":"snek","48750":"cactus","49656":"rat","49798":"snek","49940":"golem","50704":"goblin","50715":"goblin","50741":"bat","50926":"ironogre","51942":"snek","52046":"golem","52840":"villagegirl2","52846":"rat","52959":"snek","53006":"cactus","53982":"rat","54047":"cactus","54065":"snek","55007":"bat","55060":"snek","55106":"desertscorpion","55207":"adherer","55983":"oddeyecat","56018":"bat","57040":"rat","57058":"goblin","57193":"snek","57209":"cactus","57235":"snek","58226":"cactus","58261":"snek","58284":"cactus","58294":"cactus","59158":"goblin","59194":"rat","59218":"rat","59421":"adherer","59494":"guildnpc","60234":"rat","60348":"cactus","60395":"desertscorpion","61279":"goblin","61311":"bat","62355":"rat","62502":"cactus","62522":"cactus","62660":"guard2","62664":"guard2","62705":"picklenpc","63374":"rat","63541":"snek","63666":"golem","64497":"rat","64568":"cactus","64713":"deathknight","65511":"goblin","65599":"rat","65762":"blackwizard","66557":"bat","66563":"goblin","66592":"bat","66618":"rat","66677":"snek","66700":"snek","66706":"vulture","66808":"spectre","67709":"bat","68659":"bat","68832":"cactus","68849":"desertscorpion","68921":"preta","69801":"bat","69995":"blackwizard","70000":"spectre","70910":"snek","70934":"ogre","70937":"ogre","70958":"cactus","71857":"goblin","71861":"bat","71948":"snek","72022":"cactus","72051":"ogrelord","72989":"rat","73052":"ogre","74066":"snek","74126":"cactus","74213":"deathknight","74222":"adherer","75161":"ogre","76055":"bat","76066":"goblin","76201":"desertscorpion","77370":"spectre","78176":"rat","78282":"snek","78286":"cactus","79241":"agent","79259":"bat","79489":"spectre","80534":"preta","81417":"rat","82439":"goblin","82491":"bat","82667":"preta","84497":"rat","84548":"rat","85546":"bat","85573":"goblin","85691":"snek","85711":"cactus","86667":"rat","86735":"desertscorpion","86792":"snek","86798":"cactus","86807":"cactus","86819":"miner","87197":"icegolem","87797":"snek","88735":"rat","88754":"rat","88841":"cactus","88891":"snek","89296":"icegolem","89972":"cactus","91894":"rat","92442":"icegolem","92953":"bat","92986":"bat","93044":"rat","93075":"cactus","93111":"snek","93132":"cactus","93489":"icegolem","94561":"icegolem","95216":"desertscorpion","95626":"icegolem","95634":"icegolem","96217":"bat","96643":"icegolem","96658":"icegolem","97190":"bat","97209":"rat","97761":"icegolem","98219":"bat","98310":"rat","98314":"bat","98387":"cactus","98777":"icegolem","99324":"bat","99346":"rat","100368":"rat","100411":"rat","101540":"snek","101584":"snek","101930":"icegolem","102549":"bat","103034":"icegolem","103564":"rat","103594":"rat","103628":"skeleton2","103664":"desertscorpion","103954":"bluepreta","103983":"bluepreta","104574":"bat","105075":"icegolem","105082":"icegolem","105649":"bat","105681":"bat","105742":"skeleton","105746":"skeleton","106038":"bluepreta","106676":"rat","106835":"desertscorpion","107089":"icevulture","107754":"crab","107778":"rat","107908":"snek","108247":"icegolem","108320":"icegolem","108911":"skeleton","109207":"icevulture","109264":"bluepreta","109840":"rat","109923":"rat","109963":"skeleton","109985":"desertscorpion","110265":"icevulture","110287":"bluepreta","111027":"skeleton2","111080":"desertscorpion","111365":"bluepreta","111370":"bluepreta","111424":"icegolem","111987":"rat","111996":"crab","112011":"rat","112120":"cactus","112379":"bluepreta","112407":"icevulture","113470":"bluepreta","113493":"bluepreta","114083":"rat","114142":"goblin","115195":"goblin","115560":"bluepreta","116187":"crab","116320":"rooster","117387":"rooster","117685":"icevulture","117792":"darkregion","118720":"icevulture","119865":"icegolem","119937":"icegolem","120445":"crab","121462":"crab","121471":"crab","121494":"crab","121541":"crab","121617":"rooster","121940":"icevulture","122540":"crab","122565":"crab","122857":"whitebear","122973":"icevulture","122987":"bluepreta","123721":"rooster","124779":"orc","124932":"snowrabbit","124937":"whitebear","124963":"snowwolf","124985":"snowrabbit","125067":"icevulture","125682":"crab","125704":"crab","125743":"crab","126033":"snowwolf","126100":"bluepreta","126102":"bluepreta","126745":"crab","126803":"crab","126885":"orc","127056":"snowrabbit","127101":"snowwolf","127167":"icevulture","127326":"icegolem","127843":"crab","127871":"crab","127976":"wolf","128127":"snowrabbit","128148":"snowrabbit","128180":"snowwolf","128229":"icevulture","128320":"icegolem","128875":"crab","128932":"crab","129002":"orc","129302":"icevulture","129903":"crab","129948":"crab","129968":"crab","129978":"crab","130142":"orc","130169":"wolf","130192":"wolf","131015":"crab","131092":"hobgoblin","131127":"orc","131168":"wolf","131480":"icegolem","132031":"crab","132047":"crab","132054":"crab","132208":"orc","132494":"bluepreta","132510":"bluepreta","133081":"crab","133201":"rooster","133262":"rooster","133441":"snowrabbit","134148":"crab","134665":"icegolem","135254":"crab","135338":"wolf","135366":"orc","135384":"rooster","135648":"bluepreta","136305":"crab","136319":"crab","136419":"wolf","136475":"wolf","136493":"icevulture","136666":"bluepreta","136685":"bluepreta","136711":"icevulture","137294":"crab","137343":"crab","137456":"wolf","137527":"rooster","137557":"wolf","137628":"whitebear","137634":"snowrabbit","137647":"snowwolf","137732":"bluepreta","137783":"bluepreta","137888":"icegolem","138357":"crab","138422":"crab","138483":"wolf","138505":"rooster","138554":"hobgoblin","139461":"skeleton","139651":"orc","139704":"wolf","139719":"snowrabbit","139889":"bluepreta","139899":"icevulture","140615":"orc","140788":"snowwolf","141596":"crab","141726":"orc","141751":"orc","141889":"whitebear","142068":"icegolem","142086":"icegolem","142585":"beachnpc","142599":"crab","142611":"crab","142714":"orc","142744":"rooster","142748":"wolf","142758":"hobgoblin","142770":"hobgoblin","142970":"snowwolf","143001":"icevulture","143161":"icegolem","143868":"rooster","144836":"wolf","144921":"wolf","144931":"orc","145882":"wolf","145942":"orc","146035":"wolf","146059":"whitebear","146851":"skeleton","146859":"skeleton","146962":"wolf","147026":"orc","147139":"snowrabbit","147170":"snowrabbit","148038":"orc","148092":"orc","148415":"icegolem","148423":"icegolem","149057":"rooster","149132":"orc","149140":"rooster","149171":"wolf","149204":"icevulture","149236":"snowrabbit","150102":"rooster","150139":"wolf","150146":"wolf","150156":"rooster","150207":"wolf","150549":"icegolem","151177":"wolf","151248":"rooster","151292":"icevulture","152281":"orc","152305":"orc","152327":"orc","152417":"whitebear","152668":"icegolem","153274":"rooster","153295":"wolf","153357":"rooster","154365":"wolf","154648":"icerat","155379":"orc","155470":"orc","155477":"wolf","155599":"snowrabbit","155615":"snowrabbit","155818":"icegolem","156447":"orc","156470":"orc","156529":"rooster","156607":"wolf","156618":"snowwolf","156663":"snowwolf","156881":"icegolem","157559":"orc","157702":"snowwolf","157794":"icerat","157832":"icerat","157861":"icebat","158601":"orc","158786":"snowwolf","159606":"wolf","159715":"icegolem","159727":"wolf","159942":"icevulture","159969":"icebat","160718":"orc","160864":"snowrabbit","160976":"icerat","160996":"icerat","161788":"hobgoblin","161896":"snowrabbit","161910":"snowwolf","162022":"icebat","162090":"icebat","163066":"icerat","163114":"icebat","163867":"orc","164996":"icegolem","165111":"snowrabbit","165144":"snowwolf","165967":"hobgoblin","165977":"rooster","165983":"rooster","166029":"orc","166040":"wolf","166069":"wolf","166275":"icerat","166286":"icebat","166327":"icerat","167044":"orc","167057":"wolf","167215":"snowwolf","167317":"icebat","168087":"orc","168420":"icegoblin","169343":"snowrabbit","169401":"icerat","169484":"icevulture","170277":"rooster","170310":"ancientmanumentnpc","171294":"rooster","171435":"snowrabbit","171565":"icerat","171568":"icebat","171584":"icegoblin","171621":"icebat","172315":"hobgoblin","172327":"rooster","172360":"hobgoblin","172391":"orc","172460":"snowwolf","172471":"whitebear","172482":"snowwolf","173387":"orc","173440":"orc","173457":"wolf","173685":"icerat","173728":"icerat","174765":"icebat","174798":"icerat","175464":"orc","175483":"hobgoblin","175537":"wolf","175671":"snowwolf","175748":"icerat","175779":"icevulture","175828":"icebat","175870":"icebat","176527":"hobgoblin","176644":"icevulture","176655":"wolf","177606":"orc","177749":"snowwolf","178720":"wolf","178747":"infectedguard","178905":"icerat","179014":"icerat","179024":"icerat","179684":"orc","179806":"infectedguard","180029":"icebat","180837":"hobgoblin","180878":"wolf","180882":"wolf","181820":"wolf","181846":"babyspider","181848":"babyspider","181944":"wolf","181960":"snowrabbit","182015":"snowrabbit","182159":"icebat","182211":"icebat","182842":"wolf","182945":"rooster","183045":"snowwolf","183261":"icerat","183920":"wolf","184006":"orc","184026":"infectedguard","184116":"snowrabbit","184187":"icebat","184194":"icebat","184234":"icerat","184312":"icebat","185210":"snowwolf","186025":"hobgoblin","186082":"wolf","186394":"icerat","186409":"icebat","187110":"wolf","187161":"orc","187259":"snowwolf","187294":"snowwolf","187354":"icerat","187395":"icebat","188170":"wolf","188221":"wolf","188336":"snowwolf","189182":"wolf","189213":"wolf","189582":"icebat","190331":"rooster","190354":"icevulture","190437":"snowwolf","190444":"whitebear","190535":"icebat","191346":"rooster","191609":"icebat","191714":"icebat","192411":"wolf","192451":"orc","192524":"snowrabbit","192634":"icerat","192731":"icevulture","193404":"rooster","193432":"wolf","193460":"orc","193489":"hobgoblin","193491":"hobgoblin","193500":"wolf","193558":"wolf","193757":"icebat","194465":"hobgoblin","194467":"wolf","194819":"icebat","194832":"icebat","194869":"icerat","195563":"fisherman","195566":"redguard","195599":"hobgoblin","195929":"icebat","196574":"hobgoblin","196597":"rooster","196752":"snowwolf","196772":"snowrabbit","196780":"snowwolf","197644":"wolf","197651":"hobgoblin","197724":"wolf","197852":"snowrabbit","197954":"icerat","197992":"icerat","198690":"hobgoblin","198811":"icevulture","198857":"snowrabbit","199066":"icerat","199810":"orc","199825":"orc","199828":"rooster","199899":"icevulture","200051":"icebat","200076":"icebat","201722":"sponge","201900":"redguard","201925":"wolf","201930":"hobgoblin","201946":"orc","202084":"snowwolf","202151":"icebat","202209":"icebat","202264":"icerat","202773":"greenfish","202790":"yellowfish","202912":"wolf","202925":"hobgoblin","203009":"hobgoblin","203093":"snowrabbit","203253":"icerat","203891":"greenfish","204044":"orc","204053":"wolf","204361":"icerat","205139":"wolf","205239":"snowwolf","205401":"icerat","206150":"rooster","206208":"wolf","206267":"snowrabbit","206363":"icebat","206415":"icebat","206464":"icebat","206993":"mermaid","207011":"redfish","207016":"mermaid","207356":"snowrabbit","208055":"redfish","208291":"hobgoblin","208437":"snowwolf","208589":"icerat","209454":"snowrabbit","209550":"icebat","209600":"icebat","209624":"icerat","209666":"icebat","210218":"redfish","210237":"redfish","210497":"snowman","210614":"icebat","211287":"redfish","211479":"wolf","211683":"icebat","212338":"mermaid","212456":"cowwarrior","212560":"wolf","212568":"wolf","212698":"icerat","213410":"greenfish","213673":"snowrabbit","213886":"iceelfnpc","214380":"mermaid","214434":"greenfish","214659":"icevulture","214669":"wolf","214681":"wolf","214717":"snowwolf","214735":"snowwolf","214767":"snowshepherdboy","215905":"icebat","216503":"yellowfish","216509":"mermaid","216519":"redfish","216524":"mermaid","216533":"redfish","217610":"yellowfish","217688":"frog","217878":"whitebear","218692":"greenfish","218781":"frog","218825":"slime","218901":"wolf","218950":"snowrabbit","219714":"yellowfish","219894":"slime","219938":"wolf","220043":"snowwolf","220099":"icebat","220149":"clam","220156":"clam","220163":"clam","220172":"clam","220185":"clam","220741":"yellowfish","220907":"frog","220985":"wolf","221069":"snowrabbit","221200":"clam","221819":"yellowfish","221948":"cowwarrior","221953":"slime","222058":"wolf","222279":"icecrab","222303":"clam","222846":"redfish","222867":"mermaid","222921":"mermaid","223189":"whitebear","223257":"icebat","223282":"icevulture","223371":"clam","224302":"icebat","224375":"icecrab","224388":"clam","225362":"icerat","225409":"icerat","225502":"miniknight5","226205":"slime","226338":"whitebear","226485":"clam","226493":"miniseadragon","226522":"icecrab","226535":"clam","226554":"skyelf","227252":"slime","227280":"shepherdboy","227329":"wolf","227401":"snowwolf","227568":"miniseadragon","228124":"yellowfish","228150":"yellowfish","228158":"mermaid","228292":"slime","228343":"slime","228387":"wolf","228562":"icerat","228594":"clam","228608":"icecrab","229168":"mermaid","229439":"wolf","229626":"icerat","230249":"mermaid","230253":"yellowfish","230375":"blackwizard","230379":"blackwizard","230437":"slime","230447":"slime","230688":"icebat","230780":"miniknight4","231299":"mermaid","231456":"cowwarrior","231471":"slime","231806":"clam","232345":"mermaid","232375":"redfish","232667":"snowrabbit","232827":"clam","232850":"clam","233388":"yellowfish","233622":"frog","233808":"icegoblin","233816":"icerat","233830":"icerat","233845":"icerat","233926":"clam","234496":"greenfish","234586":"slime","234619":"frog","234646":"frog","234670":"cowwarrior","234766":"snowrabbit","234894":"icebat","234945":"blackpirateskeleton","234986":"clam","235005":"miniknight1","235514":"redfish","235522":"mermaid","235534":"mermaid","235595":"yellowfish","235917":"icegoblin","235990":"icecrab","236647":"yellowfish","236747":"slime","237025":"icerat","237058":"blackpirateskeleton","237061":"blackpirateskeleton","237063":"blackpirateskeleton","237822":"slime","237831":"frog","237846":"slime","238178":"skyelf","238675":"mermaid","238750":"greenfish","238899":"cowwarrior","238904":"frog","238945":"wolf","239211":"bluebikinigirlnpc","239780":"greenfish","239791":"redfish","239872":"cowwarrior","240069":"snowrabbit","240088":"whitebear","240280":"pinkelf","240285":"pinkelf","240794":"mermaid","240853":"greenfish","240953":"slime","241196":"icebat","241208":"icebat","241253":"icerat","242016":"slime","242113":"wolf","242192":"snowrabbit","242258":"icebat","242903":"mermaid","242932":"yellowfish","242951":"redfish","243049":"miniiceknight5","243054":"slime","243111":"slime","243123":"frog","243205":"snowrabbit","243324":"icerat","243460":"skyelf","243972":"greenfish","243997":"mermaid","244018":"redfish","244033":"yellowfish","244042":"redfish","244408":"icerat","244419":"icerat","245049":"mermaid","246137":"greenfish","246277":"cowwarrior","246291":"cowwarrior","246394":"snowrabbit","247261":"slime","247349":"slime","247438":"snowrabbit","247566":"icevulture","247581":"icebat","247673":"miniknight2","248395":"frog","248602":"icerat","248607":"icerat","248726":"skyelf","249406":"cowwarrior","250336":"greenfish","250353":"redfish","250851":"skyelf","251398":"greenfish","251481":"cowwarrior","251494":"cowwarrior","251501":"frog","251511":"cowwarrior","251521":"slime","251555":"slime","251572":"frog","252415":"mermaid","252583":"frog","252621":"cowwarrior","252744":"whitebear","252855":"icerat","253590":"cowwarrior","253784":"snowman","253857":"miniiceknight1","253860":"miniiceknight1","254651":"frog","254747":"cowwarrior","254927":"miniiceknight3","255652":"mermaid","255781":"cowwarrior","256652":"yellowfish","256673":"greenfish","256679":"mermaid","256799":"cowwarrior","256855":"slime","257020":"miniiceknight3","257027":"miniiceknight5","257691":"greenfish","257743":"mermaid","257756":"mermaid","257768":"yellowfish","257896":"slime","258076":"miniiceknight5","258240":"miniknight4","258754":"greenfish","258817":"greenfish","258882":"frog","259150":"miniiceknight1","259836":"pirateskeleton","259862":"mermaid","260030":"frog","261018":"slime","261071":"slime","261403":"pinkelf","261958":"redfish","261967":"yellowfish","261990":"mermaid","262088":"slime","262135":"cowwarrior","262308":"minidragon","262328":"miniiceknight3","262346":"miniiceknight2","262374":"miniiceknight1","262408":"miniknight1","263005":"greenfish","263010":"pirateskeleton","263181":"cowwarrior","263189":"slime","263355":"miniiceknight5","263473":"miniknight1","263491":"skyelf","263503":"pinkelf","264063":"pirateskeleton","264106":"yellowfish","264151":"frog","264159":"slime","264445":"miniiceknight3","264520":"pinkelf","265099":"clam","265123":"pirateskeleton","265284":"slime","265313":"blackwizard","265505":"miniiceknight2","265530":"miniiceknight2","265567":"pinkelf","265593":"pinkelf","265623":"miniknight3","266222":"mermaid","266303":"frog","266325":"cowwarrior","266333":"slime","266352":"slime","266566":"miniiceknight2","266596":"miniiceknight2","266603":"miniiceknight3","266661":"miniknight5","267198":"clam","267205":"clam","267218":"clam","267350":"cowwarrior","267376":"frog","267421":"blackwizard","267588":"miniiceknight1","267602":"miniiceknight3","267629":"miniiceknight4","267645":"miniiceknight5","267696":"miniknight1","268314":"clam","268323":"clam","268387":"slime","268455":"slime","268463":"cowwarrior","268632":"miniiceknight1","268705":"miniiceknight2","269305":"redfish","269389":"greenfish","269439":"cowwarrior","269452":"frog","269477":"cowwarrior","269482":"frog","269501":"cowwarrior","269688":"miniiceknight5","269732":"miniiceknight1","269747":"miniiceknight3","269822":"miniknight4","269840":"miniknight1","269849":"pinkelf","269857":"miniknight3","270491":"slime","270761":"minidragon","270783":"minidragon","270843":"miniknight3","270852":"miniknight1","271569":"frog","271577":"frog","271857":"miniiceknight1","272490":"clam","272502":"clam","272698":"blackwizard","272895":"miniiceknight3","272927":"miniiceknight1","272935":"miniiceknight3","272994":"miniknight6","273569":"redfish","273577":"mermaid","273584":"clam","273596":"clam","273617":"redfish","273697":"cowwarrior","273718":"cowwarrior","273722":"frog","273907":"miniiceknight4","273916":"miniiceknight4","273926":"minidragon","273945":"miniiceknight1","274017":"pinkelf","274027":"miniknight4","274589":"clam","274770":"frog","274782":"slime","274789":"slime","275021":"miniiceknight5","275713":"clam","275724":"mermaid","275819":"cowwarrior","276017":"miniiceknight3","276019":"miniiceknight3","276033":"miniiceknight2","276090":"miniiceknight2","276102":"miniiceknight5","277119":"miniiceknight2","277124":"miniiceknight1","277141":"miniiceknight1","277180":"miniknight6","277926":"frog","278138":"miniiceknight4","278805":"mermaid","278868":"clam","279302":"skyelf","279330":"miniknight4","279335":"pinkelf","279947":"mermaid","280264":"miniiceknight4","280287":"minidragon","280317":"miniiceknight2","280353":"miniknight3","280407":"pinkelf","280947":"mermaid","280970":"greenfish","280987":"greenfish","281355":"miniiceknight1","281453":"pinkelf","281986":"greenfish","281995":"greenfish","282357":"miniiceknight4","282379":"minidragon","282422":"miniiceknight1","282468":"pinkelf","282481":"miniknight3","283070":"yellowfish","283116":"redfish","283407":"miniiceknight5","283470":"miniiceknight1","283483":"miniiceknight5","283490":"miniiceknight4","283582":"pinkelf","284556":"miniiceknight2","285209":"yellowfish","285539":"miniiceknight5","285577":"miniiceknight5","285605":"miniiceknight3","286252":"mermaid","286274":"yellowfish","286581":"miniiceknight5","286645":"minidragon","286686":"miniknight1","287699":"miniiceknight4","287762":"miniknight4","287765":"skyelf","287797":"miniknight4","288340":"greenfish","288697":"miniiceknight4","288741":"minidragon","288839":"miniknight1","289870":"miniknight3","289903":"miniknight6","290833":"miniiceknight3","290886":"miniiceknight3","291856":"miniiceknight3","291924":"miniiceknight5","291970":"miniknight4","291977":"miniknight1","292011":"pinkelf","292021":"pinkelf","292025":"miniknight6","292562":"yellowfish","292992":"miniiceknight3","294034":"minidragon","294043":"miniiceknight5","294117":"miniknight4","294652":"redfish","294696":"redfish","295024":"miniiceknight5","295036":"miniiceknight1","295084":"miniiceknight4","295130":"skyelf","295137":"miniknight2","295770":"mermaid","296099":"minidragon","296138":"minidragon","296174":"miniiceknight1","297901":"greenfish","298230":"minidragon","298268":"miniiceknight5","298304":"miniknight2","299254":"miniiceknight5","299316":"miniiceknight3","299376":"pinkelf","299412":"pinkelf","299992":"yellowfish","301383":"miniiceknight5","301480":"miniknight6","302039":"redfish","302419":"miniiceknight1","302468":"miniiceknight5","302476":"miniiceknight4","302488":"miniiceknight2","302548":"skyelf","302556":"skyelf","302572":"miniknight5","303118":"yellowfish","303554":"miniiceknight3","303559":"miniiceknight2","303584":"skyelf","303616":"miniknight4","304238":"yellowfish","304545":"minidragon","304570":"minidragon","304577":"minidragon","304655":"miniknight2","305252":"greenfish","305598":"miniiceknight1","305648":"miniiceknight1","306673":"miniiceknight3","307753":"miniiceknight5","308400":"darkskeleton","308753":"miniiceknight3","308760":"miniiceknight4","309437":"darkskeleton","309472":"darkskeleton","309510":"yellowfish","309835":"miniiceknight1","309860":"miniiceknight4","310886":"miniiceknight4","310907":"miniiceknight2","311617":"darkskeleton","311977":"miniiceknight5","312985":"miniiceknight5","313010":"miniiceknight5","313022":"miniiceknight2","313734":"darkskeleton","314036":"miniiceknight3","315120":"miniiceknight4","316182":"miniiceknight2","316186":"miniiceknight1","316197":"miniiceknight4","317210":"miniiceknight2","317216":"miniiceknight1","319319":"miniiceknight1","319335":"miniiceknight5","320402":"miniiceknight4","321465":"miniiceknight2","323189":"miniseadragon","325335":"zombiegf","326386":"darkskeleton","335925":"darkskeleton","336908":"darkskeleton","336926":"zombie","336958":"darkskeleton","341112":"darkskeleton","342252":"darkskeleton","343238":"zombie","344336":"darkskeleton","348570":"zombie","348578":"darkskeleton","349652":"darkskeleton","351686":"darkskeleton","351703":"darkskeleton","351757":"zombie","352727":"zombie","352774":"darkskeleton","353808":"darkskeleton","354899":"darkskeleton","354908":"darkskeleton","356956":"zombie","358004":"darkskeleton","358033":"zombie","359077":"darkskeleton","362304":"darkskeleton","365431":"darkskeleton","365442":"darkskeleton","366455":"darkskeleton","366507":"zombie","366518":"darkskeleton","367525":"darkskeleton","368642":"zombie","368652":"darkskeleton","369647":"darkskeleton","370668":"darkskeleton","370771":"darkskeleton","372794":"zombie","372799":"darkskeleton","372842":"darkskeleton","374934":"darkskeleton","377075":"zombie","377093":"darkskeleton","378086":"darkskeleton","380176":"zombie","380211":"zombie","380220":"darkskeleton","380232":"darkskeleton","382365":"darkskeleton","385546":"zombie","386531":"zombie","387595":"darkskeleton","390823":"darkskeleton","391835":"darkskeleton","392865":"darkskeleton","480026":"doctor","511887":"miniiceknight","512762":"redstoremannpc","512769":"elfnpc","513991":"icewizard","516107":"crystalscorpion","516111":"icewizard","517183":"miniiceknight","520333":"snowman2","520337":"crystalscorpion","520355":"miniiceknight","521386":"icewizard","522459":"crystalscorpion","522487":"oldlady2","523477":"miniiceknight","523527":"crystalscorpion","523531":"crystalscorpion","524548":"icewizard","526661":"snowman2","526678":"miniiceknight","527586":"santaelf","527591":"santaelf","528691":"guardmace","528701":"guardmace","528707":"guardsword","528747":"crystalscorpion","528750":"icewizard","529693":"santaelf","529700":"santaelf","529709":"santaelfnpc","529741":"guardmace","529750":"guard2","529752":"guardsword","529755":"royalguard","529873":"crystalscorpion","530885":"crystalscorpion","530899":"icewizard","530916":"crystalscorpion","531815":"santaelf","531857":"guardsword","531862":"guard2","531867":"royalguard","531872":"guardsword","531877":"guardmace","531921":"miniiceknight","531925":"icewizard","531968":"miniiceknight","532864":"santaelf","532907":"guardmace","532921":"guardmace","533915":"santaelf","534062":"miniiceknight","534100":"miniiceknight","534988":"santaelf","537098":"santaelf","538255":"crystalscorpion","538305":"crystalscorpion","539326":"icewizard","540228":"redstoremannpc","541278":"iamverycoldnpc","541453":"miniiceknight","542477":"icewizard","542502":"miniiceknight","542516":"snowman2","543384":"snowpotion","543396":"snowpotion","543586":"crystalscorpion","543603":"crystalscorpion","544666":"miniiceknight","546741":"miniiceknight","546751":"miniiceknight","546765":"icewizard","548891":"icewizard","549877":"crystalscorpion","549878":"crystalscorpion","550946":"icewizard","551971":"icewizard","554975":"redstoremannpc","555204":"crystalscorpion","556220":"icewizard","558344":"snowman2","558359":"crystalscorpion","559399":"crystalscorpion","560425":"miniiceknight","560445":"icewizard","560499":"icewizard","562537":"icewizard","563415":"bat","563616":"miniiceknight","563617":"crystalscorpion","564705":"miniiceknight","565520":"rat","565699":"icewizard","565716":"icewizard","565747":"crystalscorpion","565778":"icewizard","566572":"bat","568733":"adherer","568944":"icewizard","569748":"bat","569882":"adherer","569974":"crystalscorpion","569986":"crystalscorpion","570850":"golem","570903":"spectre","571011":"icewizard","571850":"rat","571943":"spectre","572056":"icewizard","572114":"crystalscorpion","573051":"adherer","573149":"icewizard","573956":"rat","573970":"rat","574061":"eye","574068":"spectre","575129":"eye","575248":"icewizard","575272":"icewizard","576263":"snowman2","577221":"eye","577274":"adherer","578241":"deathknight","578373":"crystalscorpion","578377":"icewizard","578381":"crystalscorpion","579484":"crystalscorpion","580439":"ironogre","580522":"icewizard","581345":"bat","581367":"rat","581587":"miniiceknight","582012":"hermitcrab","582461":"deathknight","582554":"ironogre","582560":"ironogre","582618":"icewizard","582676":"icewizard","583660":"snowman2","583687":"snowman2","584142":"crab","585179":"crab","585841":"icewizard","586572":"soldierant","587690":"rat","587909":"crystalscorpion","588349":"hermitcrab","588366":"hermitcrab","588939":"icewizard","589006":"miniiceknight","589011":"crystalscorpion","589425":"crab","591071":"icewizard","591128":"miniiceknight","591820":"ant","591833":"ant","591967":"golem","592158":"icewizard","592835":"ant","592856":"ant","592901":"ant","595143":"deathknight","595333":"crystalscorpion","595351":"icewizard","595745":"crab","596079":"ant","596192":"deathknight","596345":"icewizard","596371":"icewizard","597099":"soldierant","597423":"snowman2","598447":"crystalscorpion","598454":"snowman2","598476":"crystalscorpion","598502":"miniiceknight","598895":"crab","599170":"ant","599880":"rat","600569":"crystalscorpion","600584":"icewizard","600593":"miniiceknight","600633":"icewizard","600927":"rat","600940":"rat","601028":"hermitcrab","601031":"crab","601294":"soldierant","601336":"ant","601369":"ant","601645":"crystalscorpion","602057":"crab","602062":"crab","602360":"ant","602369":"ant","602676":"icewizard","602698":"snowman2","603045":"rat","603056":"rat","603162":"hermitcrab","603458":"ant","603719":"snowman2","603727":"miniiceknight","603799":"miniiceknight","604527":"ant","604779":"crystalscorpion","604819":"icewizard","605147":"rat","605161":"rat","605226":"crab","605230":"crab","605866":"crystalscorpion","605869":"snowman2","606608":"ant","606635":"soldierant","606957":"miniiceknight","607157":"bat","607267":"rat","607621":"ant","607668":"ant","608312":"rat","609456":"crab","609752":"ant","610088":"crystalscorpion","610326":"slime","610335":"bat","610515":"crab","610529":"crab","610674":"rat","610865":"ant","611588":"crab","611874":"ant","611931":"ant","611938":"soldierant","612548":"rat","612563":"rat","613502":"slime","613717":"hermitcrab","614554":"orc","615157":"blackwizard","615165":"blackwizard","615891":"greenstoremannpc","615912":"redstoremannpc","616073":"ant","616117":"ant","616131":"soldierant","616229":"blackwizard","616654":"orc","616749":"rat","616759":"rat","616868":"hermitcrab","616880":"crab","616998":"redstoremannpc","617118":"ant","617160":"ant","617698":"orc","617718":"slime","617808":"rat","617844":"rat","617906":"hermitcrab","618164":"soldierant","618752":"slime","618875":"rat","618898":"rat","619376":"blackwizard","620007":"hermitcrab","620185":"rat","620458":"redguard","620902":"bat","620977":"rat","621368":"ant","621920":"orc","621929":"slime","621942":"bat","622063":"rat","622135":"hobgoblin","622287":"rat","622454":"ant","623198":"hobgoblin","623334":"rat","623348":"rat","623594":"blackwizard","624016":"slime","624021":"slime","624027":"slime","624062":"slime","624178":"rat","624512":"ant","625557":"ant","625601":"ant","625699":"adherer","626407":"skeleton2","626712":"soldierant","626723":"ant","627209":"slime","627219":"smalldevil","627758":"ant","628289":"smalldevil","628403":"rat","628443":"skeleton","628516":"skeleton2","629332":"slime","629809":"ant","629934":"blackwizard","630352":"slime","630368":"slime","630558":"skeleton","630572":"skeleton","630888":"soldierant","631022":"redguard","631434":"slime","631454":"slime","631671":"crab","631914":"ant","631956":"ant","631966":"ant","632620":"rat","632675":"skeleton","633088":"ironogre","633123":"blackwizard","633682":"rat","633759":"hobgoblin","633779":"hermitcrab","633799":"skeleton","634615":"smalldevil","634727":"rat","634796":"skeleton","635842":"skeleton","635848":"skeleton","636129":"soldierant","636265":"ironogre","636286":"golem","636297":"redguard","636703":"ratnpc","636712":"slime","636724":"smalldevil","636946":"hermitcrab","637768":"slime","637776":"smalldevil","637975":"skeleton2","637998":"crab","638018":"skeleton","638272":"ant","638315":"ant","638807":"slime","638845":"smalldevil","638862":"smalldevil","639429":"adherer","639481":"redguard","639690":"blackpirateskeleton","639910":"smalldevil","640014":"rat","640098":"hermitcrab","640451":"ant","640502":"golem","640739":"redfish","640911":"slime","641160":"hermitcrab","641784":"pirateskeleton","641797":"pirateskeleton","641832":"pirateskeleton","641847":"blackpirateskeleton","641961":"slime","641971":"slime","642196":"skeleton2","642455":"ant","642516":"ant","642553":"soldierant","642652":"redguard","642940":"bluepreta","643057":"skeleton","643562":"ant","643916":"pirateskeleton","644599":"ant","644955":"greenfish","646015":"greenpirateskeleton","646026":"greenfish","646056":"yellowfish","646193":"slime","646201":"slime","646214":"skeleton","646237":"slime","646462":"skeleton","646838":"golem","646865":"vampire","647307":"slime","647371":"wizard","647474":"skeleton2","648168":"redpirateskeleton","648172":"pirateskeleton","648177":"redpirateskeleton","648350":"slime","649641":"yellowmouse","649934":"ant","650406":"slime","650457":"slime","650467":"slime","650648":"skeleton2","650905":"soldierant","650917":"ant","651072":"golem","651290":"pirateskeleton","651295":"yellowfish","651504":"skeleton","651538":"slime","651545":"slime","651737":"skeleton","651759":"yellowmouse","652118":"golem","652146":"golem","652155":"golem","652402":"redpirateskeleton","652415":"pirateskeleton","652531":"slime","652778":"wizard","653030":"soldierant","654080":"ant","654139":"ant","654225":"golem","654506":"pirateskeleton","654659":"slime","654753":"wizard","655146":"ant","655155":"ant","655171":"ant","655179":"ant","655520":"pirateskeleton","655586":"blackpirateskeleton","655803":"wizard","655940":"skeleton","655974":"yellowmouse","656261":"ant","656354":"oldogre","656638":"redpirateskeleton","656818":"king2","657686":"pirateskeleton","657862":"slime","658063":"wizard","658076":"yellowmouse","658366":"ant","658494":"golem","659096":"skeleton2","659534":"golem","659949":"slime","660072":"crab","660515":"ant","660556":"golem","660567":"oldogre","661562":"soldierant","662181":"crab","662306":"yellowmouse","662460":"babyspider","662964":"redpirateskeleton","663345":"wizard","663434":"brownmouse","663743":"golem","664252":"wizard","664364":"skeleton2","664560":"hellspider","664655":"soldierant","664701":"soldierant","664809":"golem","665086":"pirateskeleton","665444":"skeleton","665542":"brownmouse","665621":"firespider","665731":"soldierant","665775":"ant","665843":"golem","666369":"wizard","666433":"crab","666480":"skeleton2","666690":"spider","666943":"oldogre","667989":"oldogre","668164":"blackwizard","668255":"blackpirateskeleton","668519":"crab","668552":"hermitcrab","668645":"redguard","668773":"spider","668799":"poisonspider","668900":"ant","669571":"crab","669764":"brownmouse","669771":"brownmouse","669837":"poisonspider","670094":"oldogre","670266":"blackwizard","670275":"earthworm","670977":"soldierant","670991":"ant","671062":"ant","671327":"earthworm","671689":"crab","671711":"crab","672375":"earthworm","672753":"crab","673888":"skeleton","673990":"brownmouse","674050":"spider","674053":"babyspider","674089":"hellspider","674497":"earthworm","674875":"crab","675371":"oldogre","675909":"crab","675995":"skeleton","676177":"hellspider","677269":"babyspider","677663":"earthworm","678036":"crab","678111":"skeleton","678304":"firespider","678331":"blazespider","678708":"blackwizard","679096":"crab","679275":"wizard","680355":"ironogre","680813":"earthworm","680829":"blackwizard","681484":"poisonspider","681890":"earthworm","682546":"firespider","682930":"earthworm","683513":"golem","683566":"poisonspider","683576":"poisonspider","684550":"wizard","684619":"spider","685615":"redguard","686490":"crab","686753":"babyspider","686757":"spider","687722":"wizard","687739":"golem","688841":"babyspider","688883":"spider","689841":"redguard","689947":"hellspider","690351":"poisonspider","690885":"wizard","690972":"hellspider","691454":"piratecaptain","693068":"spider","694561":"babyspider","695110":"smalldevil","695217":"hellspider","696245":"poisonspider","696660":"redcockroach","697298":"hellspider","697325":"poisonspider","698896":"santa","699338":"skeleton","699420":"babyspider","699441":"blazespider","700482":"hellspider","700510":"babyspider","701445":"smalldevil","701545":"firespider","702617":"poisonspider","702751":"ant","703009":"redcockroach","703027":"poisonspider","703718":"ant","704070":"redcockroach","704622":"smalldevil","704861":"ant","705056":"slime","705867":"ant","706174":"redcockroach","706883":"ant","706965":"ant","707119":"darkogre","707930":"ant","708843":"skeleton","709041":"ant","709265":"snowwolf","710337":"whitemouse","710589":"hellhound","710960":"skeleton","711199":"soldierant","711331":"darkogre","711340":"darkogre","711353":"livingarmor","713477":"infectedguard","714115":"skeleton","714311":"ant","714356":"ant","714640":"goldgolem","715576":"livingarmor","715620":"smalldevil","716235":"skeleton","716473":"ant","716739":"rat","717283":"skeleton","717676":"oldogre","717727":"livingarmor","717779":"whitemouse","717783":"whitemouse","718802":"slime","718806":"whitemouse","718841":"whitemouse","719651":"ant","719801":"livingarmor","719852":"whitemouse","720879":"infectedguard","720891":"whitemouse","720912":"infectedguard","720963":"rat","720966":"rat","721208":"darkwolf","721899":"oldogre","722248":"minidragon","722407":"rat","722757":"ant","722975":"livingarmor","722979":"infectedguard","723129":"santaelf","723330":"darkskeleton","723385":"skeletonking","723862":"soldierant","724016":"oldogre","724020":"livingarmor","724367":"darkskeleton","724383":"darkwolf","724870":"soldierant","725116":"slime","725415":"darkwolf","725510":"spectre","726157":"infectedguard","726309":"santaelf","726313":"santaelf","726476":"minidragon","727034":"ant","727552":"darkwolf","727627":"spectre","727638":"spectre","728287":"whitemouse","728405":"santaelf","729296":"oldogre","729407":"smalldevil","729411":"smalldevil","729511":"earthworm","729517":"bluepreta","729521":"earthworm","729645":"darkwolf","730351":"oldogre","730470":"smalldevil","730539":"santaelf","731521":"smalldevil","731830":"wizard","732820":"minidragon","733694":"santaelf","733701":"santaelf","733887":"minidragon","734574":"infectedguard","734744":"santaelf","735856":"earthworm","736061":"wizard","736746":"slime","736875":"santaelf","738095":"minidragon","738841":"whitemouse","739026":"bluepreta","740022":"santaelf","740093":"darkogre","740414":"yellowfish","740424":"greenfish","740968":"whitemouse","740975":"whitemouse","741248":"darkscorpion","741986":"slime","742213":"darkogre","742300":"darkwolf","742311":"darkwolf","742335":"minidragon","742543":"livingarmor","742557":"greenfish","742728":"minidragon","743029":"infectedguard","743186":"santaelf","743203":"santaelf","743254":"darkogre","743609":"infectedguard","743623":"greenfish","743777":"minidragon","744433":"minidragon","745144":"livingarmor","745476":"darkscorpion","745903":"minidragon","746193":"smalldevil","746221":"whitemouse","746242":"whitemouse","747407":"santaelf","747636":"smalldevil","747991":"minidragon","747999":"minidragon","748343":"slime","748347":"infectedguard","748880":"infectedguard","749078":"minidragon","749341":"smalldevil","749355":"smalldevil","749588":"darkogre","749699":"darkwolf","749706":"minidragon","749746":"darkskeleton","750416":"slime","750565":"icegolem","751481":"smalldevil","751859":"darkskeleton","752130":"ogre","752372":"ant","752505":"slime","752674":"icegolem","752753":"earthworm","752892":"darkskeleton","753120":"livingarmor","753205":"ogre","753573":"smalldevil","753954":"darkskeleton","754232":"ogre","754323":"minidragon","754355":"minidragon","754403":"ant","754476":"ant","755016":"darkskeleton","755023":"darkskeleton","755491":"ant","755734":"whitemouse","755840":"icegolem","755925":"earthworm","755938":"earthworm","756004":"darkskeleton","756023":"darkscorpion","756035":"darkscorpion","756063":"darkskeleton","756089":"darkskeleton","756306":"greenfish","756594":"ant","756921":"icevulture","757070":"darkskeleton","757148":"smalldevil","757332":"greenfish","757821":"smalldevil","757864":"iceknight","757984":"icerat","758181":"darkskeleton","758646":"ant","760026":"picklemob","760100":"icevulture","760603":"ogre","760611":"ogre","761014":"slime","761124":"icegolem","761132":"icegolem","761150":"miniiceknight4","761310":"darkwolf","761753":"minidragon","762201":"icerat","762605":"livingarmor","762870":"ant","762925":"soldierant","762929":"soldierant","763314":"blazespider","763679":"infectedguard","763751":"ogre","763829":"minidragon","763937":"ant","764522":"darkscorpion","764538":"darkscorpion","764731":"clam","764746":"infectedguard","764836":"ogre","765547":"blackwizard","765551":"blackwizard","765584":"darkscorpion","766484":"earthworm","766574":"darkskeleton","766604":"blackwizard","766903":"ogre","766937":"ogre","767078":"ant","767462":"icegolem","767544":"blazespider","768071":"forestdragon","768755":"darkscorpion","769609":"icerat","769778":"darkscorpion","769794":"darkscorpion","771076":"greenfish","771258":"minidragon","771864":"darkskeleton","771870":"darkscorpion","772765":"icevulture","773799":"icerat","774388":"minidragon","774890":"miniiceknight5","775013":"darkwolf","775365":"ogre","776331":"darkskeleton","776342":"darkskeleton","777128":"darkwolf","777465":"ogre","777494":"ogre","778027":"icerat","778191":"blackwizard","778263":"darkwolf","778648":"minidragon","779109":"miniiceknight1","779235":"blackwizard","779525":"clam","779597":"ogre","780306":"darkskeleton","780341":"darkwolf","781201":"icerat","781226":"icerat","781368":"darkwolf","781623":"redfish","781787":"minidragon","782429":"darkskeleton","782851":"minidragon","783091":"gold","783481":"darkskeleton","783640":"rat","783827":"ogre","784119":"blackwizard","784132":"skeleton","784146":"gold","784147":"picklenpc","784586":"darkwolf","784955":"minidragon","785840":"darkskeleton","785919":"ogre","786234":"skeleton","786240":"livingarmor","786469":"icerat","786791":"ogre","786805":"bat","786908":"livingarmor","787091":"minidragon","787767":"darkwolf","788362":"skeleton","788751":"darkskeleton","789186":"minidragon","789196":"minidragon","789837":"darkwolf","789852":"darkwolf","789868":"darkwolf","790094":"darkskeleton","790383":"queenant","791030":"rat","791142":"infectedguard","791301":"minidragon","791916":"darkskeleton","792820":"icerat","792958":"darkskeleton","794056":"darkwolf","794923":"icerat","795094":"darkskeleton","795234":"goblin","795239":"bat","796138":"darkskeleton","796153":"darkwolf","796165":"darkskeleton","796420":"darkskeleton","797185":"darkskeleton","797215":"darkskeleton","797346":"rat","797358":"rat","797361":"bat","797494":"darkskeleton","797860":"mermaid","800468":"skeleton2","800478":"skeleton2","801437":"darkwolf","803380":"icerat","803625":"skeleton2","803629":"skeleton2","805733":"skeleton2"},"trees":[{"data":[653,654,655,656,717,718,719,720,781,782,783,784,845,846,847,848,909,910,911,912,974,975],"base":[846,847,910,911],"depleted":[651,652,715,716],"type":"oak"},{"data":[1446,1447,1448,1510,1511,1512,1574,1575,1576,1639],"base":[1575,1639],"depleted":[2141,2205],"type":"oak2"},{"data":[1525,1526,1527,1589,1590,1591,1592,1653,1654,1655,1656,1717,1718,1719,1720,1781,1782,1783,1784,1845,1846,1847,1848],"base":[1718,1719,1782,1783,1846,1847],"depleted":[1714,1715,1778,1779,1842,1843],"type":"oak5"},{"data":[2549,2550,2551,2613,2614,2615,2616,2677,2678,2679,2680,2741,2742,2743,2744,2805,2806,2807,2808,2869,2870,2871,2872],"base":[2742,2743,2806,2807,2870,2871],"depleted":[1711,1712,1775,1776,1839,1840],"type":"iceoak"},{"data":[1938,1939,2001,2002,2003,2004,2065,2066,2067,2068,2129,2130,2131,2132,2194,2195],"base":[2130,2131,2194,2195],"depleted":[2143,2144,2207,2208],"type":"oak3"},{"data":[1941,1942,1943,2005,2006,2007,2020,2069,2070,2071,2072,2084,2134,2136,2198],"base":[2134,2198],"depleted":[2035,2099],"type":"palm"},{"data":[2511,2574,2575,2576,2638,2639,2640,2702,2703,2704,2767],"base":[2703,2767],"depleted":[2142,2206],"type":"oak4"},{"data":[2979,3042,3043,3044,3106,3107,3108,3170,3171,3172,3235],"base":[3171,3235],"depleted":[2175,2239],"type":"iceoak2"},{"data":[6401,6402,6403,6465,6466,6467,6529,6530,6531,6532,6533,6593,6594,6595,6596,6597,6658],"base":[6594,6658],"depleted":[2176,2240],"type":"icepalm"},{"data":[5906,5907,5908,5970,5971,5972,6034,6035,6036,6099],"base":[6035,6099],"depleted":[2301,2365],"type":"iceoak3"},{"data":[7126,7127,7128,7129,7190,7191,7192,7193,7254,7255,7256,7257,7318,7319,7320,7321,7382,7383,7384,7385,7447,7448],"base":[7319,7320,7383,7384],"depleted":[7522,7523,7586,7587],"type":"bloodwood"},{"data":[12329,12330,12331,12332,12333,12393,12394,12395,12396,12397,12457,12458,12459,12460,12461,12521,12522,12523,12524,12525,12585,12586,12587,12588,12589,12650,12651,12652],"base":[12522,12523,12524,12586,12587,12588],"depleted":[12462,12463,12464,12526,12527,12528],"type":"tutorialsnowoak"},{"data":[13128,13129,13130,13131,13132,13192,13193,13194,13195,13196,13256,13257,13258,13259,13260,13320,13321,13322,13323,13324,13384,13385,13386,13387,13388,13449,13450,13451],"base":[13321,13322,13323,13385,13386,13387],"depleted":[12334,12335,12336,12398,12399,12400],"type":"snowoak"},{"data":[13133,13134,13135,13197,13198,13199,13261,13262,13263,13325,13326,13327],"base":[13326],"depleted":[13328],"type":"pine"},{"data":[13538,13539,13540,13541,13602,13603,13604,13605,13606,13666,13667,13668,13669,13670,13730,13731,13732,13733,13734,13794,13795,13796,13797,13858,13859,13860,13861],"base":[13731,13732,13795,13796],"depleted":[13164,13165,13228,13229],"type":"willow"}],"rocks":[{"data":[1129,1130,1193,1194],"base":[1193,1194],"depleted":[1321,1322],"type":"nisoc"},{"data":[1131,1132,1195,1196],"base":[1131,1132,1195,1196],"depleted":[1259,1260,1323,1324],"type":"cinnabar"},{"data":[1133,1134,1197,1198],"base":[1133,1134,1197,1198],"depleted":[1261,1262,1325,1326],"type":"pythar"},{"data":[1137,1138,1201,1202],"base":[1137,1138,1201,1202],"depleted":[1265,1266,1329,1330],"type":"ibo"},{"data":[1139,1140,1203,1204],"base":[1139,1140,1203,1204],"depleted":[1267,1268,1331,1332],"type":"moonrock"},{"data":[1199,1200],"base":[1199,1200],"depleted":[1327,1328],"type":"gold"},{"data":[1385],"base":[1385],"depleted":[1449],"type":"topaz"},{"data":[1386],"base":[1386],"depleted":[1450],"type":"copper"},{"data":[1387],"base":[1387],"depleted":[1451],"type":"beryl"},{"data":[1388],"base":[1388],"depleted":[1452],"type":"tin"},{"data":[1389],"base":[1389],"depleted":[1453],"type":"lapislazuli"},{"data":[1390],"base":[1390],"depleted":[1454],"type":"coal"},{"data":[1391],"base":[1391],"depleted":[1455],"type":"citrine"},{"data":[1392],"base":[1392],"depleted":[1456],"type":"iron"},{"data":[1393],"base":[1393],"depleted":[1457],"type":"taaffeite"},{"data":[1513],"base":[1513],"depleted":[1577],"type":"ruby"},{"data":[1515],"base":[1515],"depleted":[1579],"type":"peridot"},{"data":[1517],"base":[1517],"depleted":[1581],"type":"opal"},{"data":[1519],"base":[1519],"depleted":[1583],"type":"emerald"},{"data":[1521],"base":[1521],"depleted":[1585],"type":"amethyst"}],"fishSpots":[{"data":[12301],"base":[12301],"depleted":[12734],"type":"shrimp"},{"data":[12302],"base":[12302],"depleted":[12736],"type":"tuna"},{"data":[12307],"base":[12307],"depleted":[12735],"type":"jellyfish"},{"data":[12308],"base":[12308],"depleted":[12798],"type":"clam"}],"foraging":[{"data":[16689,16690,16753,16754],"base":[16689,16690,16753,16754],"depleted":[16691,16692,16755,16756],"type":"corn"},{"data":[16693,16694,16757,16758],"base":[16693,16694,16757,16758],"depleted":[16695,16696,16759,16760],"type":"bluelily"},{"data":[16761],"base":[16761],"depleted":[16762],"type":"tomato"},{"data":[16764],"base":[16764],"depleted":[16763],"type":"peach"},{"data":[16894],"base":[16894],"depleted":[16766],"type":"blueberry"}]} \ No newline at end of file +{"version":1695981410504,"width":1152,"height":1008,"tileSize":16,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,4996],[403,4997],[403,4998],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9321],[403,9322],[403,9323],[403,9324],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,4996],[403,9303,4997],[403,9304,4998],[403,9305],[403,9306],403,403,403,403,403,403,403,403,[403,9303],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,4996],[403,4997],[403,9303,4998],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,5092],5093,5094,[403,9323,5095],[403,9324],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9321],[403,9324],403,403,403,403,403,[403,9415],[403,9416],[3919,9417],[3919,9418],[3918,9419],[3919,9420],[403,9421],403,403,403,[403,6718],[403,9321,6719],[403,9322],[403,9323],[403,9324],403,403,403,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398,5092],5093,5094,[3456,9401,5095],[3394,9402],[403,9403],403,403,403,403,403,[403,9397],[403,9398],[3392,9399],[3521,9402],[403,9403],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,[403,9397,5092],5093,5094,[3456,9402,5095],[403,9403],403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],[403,9398,5188],5189,5190,[3457,9419,5191],[3456,9420],[403,9518],403,403,403,[403,9321],[403,9322],[403,9323],[403,9324],[403,9321],[403,9322],[403,9323],[403,9324],403,403,403,403,403,[403,9321,6718],[403,9322,6719],[403,9323],[403,9324],403,403,403,403,403,403,[403,9321],[403,9322],[403,9323],[403,9324],403,403,403,403,403,[403,9415],[403,9416],[3917,9417],[3917,9420],[403,9421],[403,9321],[403,9322],[403,9323],[403,9324],[403,9511],[2832,3854,9512],3919,3919,3981,3919,[3919,9517],[403,9421],[403,9321],[403,9324,6813],[403,9416,6814],[3917,9417,6815],[3919,9418,6816],[3918,9419],[3918,9420],[403,9421],[403,9321],[403,9322],[403,9323],[403,9324],403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3394,9494,5188],5189,5190,[3456,5191],3394,[3908,9499],[403,9500],[403,9303],[403,9304],[403,9305],[403,9306],[403,9493],[3458,9494],3522,3969,[3908,9499],[403,9403],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3522,9399],[3522,9400],[3394,9401],[3458,9402],[403,9403],403,403,403,403,403,[403,9493,5188],5189,5190,[3521,5191],[3458,9499],[403,9500],403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3906,9399],[3907,9400],[3394,9401],[3456,9402],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,[403,9303,4996],[403,9304,4997],[403,9305,4998],[403,9306],[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,[403,9397],[403,9398],[3905,9399],[3906,9400],[3905,9401],[3905,9402],[3522,9494,5284],[3458,5285],[3908,5286],[3905,5287],[3906,9709],[3458,9710],[403,9323,9515],[403,9324],[403,9416,6718],[3918,9417,6719],[2768,3793,9418],[2768,9419],[2829,9420],[2830,9417],[2829,9418],[2829,4044,9419],[3981,9420],[403,9421],[403,9321],[403,9322],[403,9324],[403,9416,6813],[3920,9417,6814],[3983,9418,6815],[3919,9419,6816],[3917,9420],[403,9421],403,403,403,403,[403,9416],[3918,9417],[3919,9418],[3917,9419],[2767,3985,9420],[403,9421],[403,9321],[403,9322],[403,9323],[403,9324],[403,9511],[3981,9512],3981,3918,[3920,9517],[3920,9417],[2767,3793,9418],[2765,9419],[2765,9420],[2765,9512],[2830,3789],3917,3918,3920,3981,3981,[3917,9517],[3920,9417],[3917,9420,6909],[3917,9512,6910],[3917,6911],[3920,6912],3919,3917,[3917,9517],[3920,9417],[3981,9418],[3981,9419],[3917,9420],[403,9421],403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3456,9589],[3392,9590,5284],[3456,5285],[3457,5286],[3392,5287],3392,3458,[3521,9499],[3393,9399],[3907,9400],[3908,9401],[3522,9402],[3392,9494],3969,3456,3456,3908,[3456,9499],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9306],403,403,403,403,403,[403,9496],[3458,9589],[3393,9590],3456,3393,3394,[3906,9499],[403,9403],[403,9303],[403,9304],[403,9306],[403,9493],[3457,9494,5284],[3905,5285],[3456,5286],[3456,5287],[3521,9595],[3520,9596],[403,9497],403,403,403,403,403,403,403,403,403,403,[403,9493],[3392,9494],3969,3393,3905,3906,[3906,9499],[3393,9399],[3392,9400],[3521,9401],[3458,9402],[403,9403],[403,4996],[403,4997],[403,4998],403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3907,9399],[3520,9402],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,[403,9397],[403,9398],[3521,9399],[3521,9400],[3393,9401],[3908,9402],[403,9403],403,403,403,[403,9397,4996],[403,9398,4997],[3393,9399,4998],[3394,9400],[3392,9401],[3456,9402],[403,9403],403,403,403,403,[403,9397],[403,9398],[3392,9399,5092],5093,5094,[3456,9402,5095],[3521,9399],[3457,9400],[3969,9401],[3907,9402],[403,9403],403,403,403,403,403,403,403,403,[403,9397,4996],[403,9398,4997],[3456,9399,4998],[3905,9400],[3969,9401],[3908,9402],[403,9403],[403,9303],[403,9306],[403,9493],[3457,9494],3393,3969,3969,3457,[3457,5380],[3393,5381],[3908,5382],[3521,5383],[3392,9805],[3457,9806],[3919,9419,9611],[3981,9420,6813],[3919,9512,6814],[3918,6815],[2831,3857,6816],2766,2766,2829,2830,2832,[2765,4044],[3917,9517],[3920,9417],[3919,9418],[3919,9420],[3917,9512,6909],[3920,6910],[3917,6911],[3920,6912],3919,[3917,9517],[403,9421],[403,9321],[403,9324],[403,9416],[3981,9512],3920,3981,3918,[2829,4049],[2766,9517],[2766,9417],[2765,9418],[2768,3789,9419],[3919,9420],[3919,9512],[3920,6718],[3917,6719],3983,3919,3918,[2765,3857],2767,2831,2832,[2768,4044],3983,3917,3981,3981,3983,3918,3920,[3918,7005],[3920,7006],[3981,7007],[3918,7008],3917,3919,3918,3919,3919,3918,3981,[3983,9517],[403,9518],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3457,9685],[3907,9686,5380],[3907,5381],[3905,5382],[3969,5383],3520,3969,3906,3456,3522,3969,3907,3393,3458,3456,3521,3521,3393,[3458,9499],[3392,9399],[3456,9400],[3969,9401],[3908,9402],[403,9403],403,403,403,403,403,[403,9397],[403,9398],[3905,9399],[3907,9400],[3393,9402],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],[403,9493],[3906,9494],3522,3392,3393,3393,[3520,4996],[3394,9499,4997],[3907,9399,4998],[3392,9400],[3393,9402],[3907,9494],[3458,5380],[3521,5381],[3521,5382],[3456,5383],[3905,9691],[3394,9692],[403,9593],403,403,403,403,403,403,403,403,403,[403,9496],[3457,9589],[3458,9590],3457,3521,3393,3522,3393,3520,3458,3908,3392,[3521,9499],[403,9403,5092],5093,5094,[403,9304,5095],[403,9305],[403,9306],403,403,403,403,403,403,403,[403,9493],[3908,9494],3456,3458,[3392,9499],[3907,9399],[3392,9400,4996],[3521,9401,4997],[3392,9402,4998],[403,9403],403,403,403,403,403,[403,9397],[403,9398],[3906,9494],3394,3456,3520,3456,[3393,9499],[403,9403],[403,9303],[403,9306],[403,9493,5092],5093,5094,[3907,5095],3520,3393,[3521,9499],[403,9403],[403,9303],[403,9304],[403,9306],[403,9493],[3394,9494],[3906,5188],5189,5190,[3521,5191],3908,3457,3393,3393,[3457,9499],[403,9500],403,403,403,403,403,403,403,[403,9493,5092],5093,5094,[3393,5095],3521,3907,[3394,9499],[3457,9399,4996],[3456,9402,4997],[3908,9494,4998],3394,3458,3457,3907,3905,[3905,5476],[3393,5477],[3908,5478],[3393,9805,5479],[3969,9901],9902,[3981,9707],[3920,6909],[3917,6910],[3983,6911],[2830,3921,6912],2768,2768,2829,2831,2832,2768,[2830,3853],3983,3917,3920,[3981,7005],[3918,7006],[3981,7007],[3920,7008],3983,3920,[3917,9517],[3917,9417],[3919,9420],[3917,9512],3983,3981,3983,[2831,3855],2832,2831,[2831,3724],[2765,3725],3920,3919,[3981,6813],[3920,6814],[3917,6815],[3981,6816],3920,3981,[2765,3921],2832,2830,2831,2831,[2831,3853],3917,3983,3920,3981,3983,3917,[3920,7101],[3981,7102],[3919,7103],[3918,7104],3919,3919,3981,3917,3919,3917,3918,[3981,9613],[3981,9614],9515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3907,9781],[3905,9782,5476],[3457,5477],[3520,5478],[3521,5479],3520,3905,3394,3907,3520,3522,3521,3392,3456,3458,3394,3457,3908,3456,3458,3458,3456,3456,[3521,9499],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],[403,9493],[3906,9494,4996],[3394,4997],[3521,4998],3394,[3522,9499],[3520,9399],[3907,9400],[3394,9401],[3969,9402],[3905,9494],3521,3907,3456,3969,3393,[3456,5092],5093,5094,[3969,5095],3521,3458,[3907,5476],[3969,5477],[3458,5478],[3394,5479],3456,[3521,9499],[403,9500],[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,[403,9398],[3907,9494],[3456,4996],[3457,4997],[3394,4998],3456,3521,3393,3393,3456,3521,3393,3521,[3908,9499,5188],5189,5190,[3520,9400,5191],[3458,9401],[3458,9402],[403,9403],403,403,403,403,403,[403,9496],[3907,9589],[3393,9590],3522,3908,3907,3394,[3521,5092],5093,5094,[3458,9499,5095],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],[403,9493],[3456,9494],[3908,4996],[3456,4997],[3906,4998],3458,3905,3905,[3521,9499],[3905,9399],[3905,9402],[3520,9494,5188],5189,5190,[3907,5191],3394,3521,3458,[3908,9499],[3969,9399],[3906,9400],[3456,9402],[3908,9494],3457,[3907,5284],[3908,5285],[3456,5286],[3521,5287],3457,3392,3458,3906,[3521,9595],[3907,9596],[403,9497],403,403,403,403,403,403,[3520,9589,5188],5189,5190,[3521,5191],3905,3456,3907,[3392,5092],5093,5094,[3456,5095],3521,3457,3521,3969,[3458,9805],[3457,9897],[3458,9898],[3458,9901],9997,[3983,9998],[3983,9803],[3981,7005],[3981,7006],[3920,7007],[3919,7008],[2765,3791],2767,2766,2767,2831,2768,2765,[2832,3788],3920,3983,[3918,7101],[3920,7102],[3983,7103],[3920,7104],3919,3983,3920,3919,3919,3918,3918,3920,[2831,3793],2766,2832,2832,[2832,3853],3919,3981,3981,[3919,6909],[3981,6910],[3917,6911],[3918,6912],3917,3983,[2829,3985],2768,2831,2767,2831,2768,[2765,3980],3983,3918,3918,3981,3920,3920,[3981,7198],[3918,7199],3918,3918,3981,3919,3918,3920,3983,3981,[3920,9709],[3917,9710],9611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3908,9878],[3457,9782],3907,3908,3521,3456,3456,3908,3456,3457,3394,3907,3456,3456,3521,3969,3905,[3457,4996],[3393,4997],[3456,4998],3906,3457,3969,[3908,9499],[3521,9399],[3456,9400],[3908,9401],[3394,9402],[3521,9494],[3905,5092],5093,5094,[3458,5095],3521,3456,3456,3456,3457,3522,3394,3905,3521,3520,3393,[3969,5188],5189,5190,[3458,5191],3906,3456,3906,3458,3456,3908,3907,3393,[3521,9499],[3457,9399,4996],[3458,9400,4997],[3907,9401,4998],[3907,9402],[403,9403],[403,9303],[403,9304],[403,9306],[403,9493],[3393,9494],3520,[3522,5092],5093,5094,[3456,5095],3905,3521,3393,3457,3457,3908,3456,[3907,5284],[3905,5285],[3392,5286],[3392,5287],3393,3520,[3906,9499],[403,9500],[403,9303],[403,9306],403,403,[403,9592],[3907,9685],[3456,9686],3906,3392,3392,3521,[3905,5188],5189,5190,[3457,5191],[3392,9499],[3456,9399],[3458,9400],[3906,9401],[3394,9402],[3456,9494],3908,[3456,5092],5093,5094,[3521,5095],3907,3522,3394,3520,3457,[3392,5284],[3458,5285],[3456,5286],[3393,5287],3393,3907,3906,3522,3392,3521,3905,3907,3393,[3393,5380],[3458,5381],[3521,5382],[3521,5383],3458,3906,3456,3458,[3908,9691],[3393,9692],[403,9593],403,403,403,403,[403,9397],[403,9398],[3905,9494,5284],[3393,5285],[3520,5286],[3521,5287],3458,3392,3457,[3458,5188],5189,5190,[3392,5191],3906,3521,3905,[3908,9805],[3905,9901],9993,9994,9997,[2768,3980,10093],3918,3918,[3920,7101],[3920,7102],[3917,7103],[3983,7104],3919,[2830,3725],[2830,3792],2766,2831,2831,2768,[2765,3852],3983,3981,3919,[3917,7198],[3920,7199],3981,3919,3919,3981,3983,3919,3919,3920,3917,[2830,3857],2829,2830,2831,2767,[2768,3980],3920,3981,[3920,7005],[3917,7006],[3917,7007],[3918,7008],3918,3917,3981,[2766,3729],2768,2832,2829,[2765,3789],3920,3920,3981,3917,3920,3920,3919,3918,3917,3917,3981,3983,3920,3918,3983,3983,3919,[3918,9805],[3918,9806],9611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],9974,[3394,9878],[3908,9782],3907,3392,3457,3521,[3456,4996],[3908,4997],[3905,4998],3905,3456,3457,3392,3394,3457,3906,[3456,5092],5093,5094,[3521,5095],3908,3521,3905,3908,3392,3969,3457,3458,[3969,5188],5189,5190,[3394,5191],3521,3520,3457,3969,3908,3457,3458,3393,3457,3458,3521,[3392,5284],[3394,5285],[3456,5286],[3456,5287],3908,3522,3456,3906,3458,3520,3457,3456,3457,[3521,5092],5093,5094,[3458,5095],[3457,9499],[3521,9399],[3908,9400],[3908,9402],[3520,9494],3521,3520,[3522,5188],5189,5190,[3394,5191],3392,3907,3521,3522,3456,3456,3458,[3456,5380],[3458,5381],[3521,5382],[3457,5383],3907,3906,3521,[3521,9499],[3905,9399],[3456,9402],[403,9403],[403,9303,4996],[403,9688,9306,4997],[3456,9589,4998],[3520,9590],3394,3393,3908,3457,[3908,5284],[3393,5285],[3908,5286],[3456,5287],3456,3908,3394,3520,3457,3392,3906,[3456,5188],5189,5190,[3457,5191],3906,3456,3906,3520,3908,[3907,5380],[3393,5381],[3393,5382],[3521,5383],3457,3521,3907,3393,3905,3520,3521,3905,3393,[3457,5476],[3457,5477],[3907,5478],[3905,5479],3907,3522,3393,3458,3969,[3520,9499],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],[403,9493],[3456,9494],[3521,5380],[3456,5381],[3457,5382],[3522,5383],3906,3457,3393,[3907,5284],[3907,5285],[3393,5286],[3456,5287],3457,3908,[3457,9805],[3393,9901],9997,[3981,10089,6718],[3917,10090,6719],[2766,3793,10093],[2830,3853],3918,3917,3919,[3920,7198],[3919,7199],3981,3919,3919,[2767,3855],2766,2768,2767,2832,[2765,3916],3919,3983,3917,3918,3981,3981,3917,3918,3920,3919,3981,3983,3918,3917,[2766,3921],2768,2832,2832,[2765,3789],3981,3920,3919,[3917,7101],[3920,7102],[3919,7103],[3919,7104],3920,3920,3917,[2766,3855],2768,2768,2766,[2830,3788],3917,3983,3917,3983,3983,3917,3919,3918,3919,3920,3981,3918,[2829,4045],[2831,4046],[2767,4047],3917,[3983,9805],[3919,9901],9902,9707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],9974,[3458,9878],[3458,9782],3458,3908,3521,[3522,5092],5093,5094,[3520,5095],3456,3458,3457,3520,3907,3392,[3458,5188],5189,5190,[3393,5191],3457,3521,3521,3392,3456,3906,3458,3393,[3522,5284],[3393,5285],[3394,5286],[3521,5287],3905,3907,3457,3457,3456,3522,3521,3521,3456,3457,3458,[3521,5380],[3907,5381],[3520,5382],[3456,5383],3905,3392,3393,3905,3906,3393,3520,3392,3907,[3392,5188],5189,5190,[3392,5191],3906,3908,3456,3969,3521,3521,3521,[3456,5284],[3394,5285],[3908,5286],[3906,5287],3908,3522,3520,3457,3457,3908,3522,[3907,5476],[3908,5477],[3458,5478],[3521,5479],3456,3458,3908,3456,3906,3457,[3458,9499],[3457,9399,5092],5093,5094,[3521,5095],3905,3456,3521,3457,[3521,5380],[3907,5381],[3522,5382],[3456,5383],3905,3521,3908,3908,3392,3456,3393,[3457,5284],[3907,5285],[3907,5286],[3907,5287],3521,3393,3394,3522,3522,[3392,5476],[3908,5477],[3457,5478],[3392,5479],3908,3456,3908,[3458,4996],[3456,4997],[3521,4998],3905,3457,3456,3908,3521,3521,3969,3393,3394,3907,3908,3457,3521,[3520,9499],[3905,9399],[3520,9400],[3905,9401],[3522,9402],[3521,9494],3521,[3521,5476],[3906,5477],[3392,5478],[3969,5479],3905,3969,3908,[3457,5380],[3521,5381],[3905,5382],[3458,5383],3521,[3521,9805],[3458,9901],9997,[3917,10093,6813],[3981,10185,6814],[3918,10186,6815],[2766,3921,6816],2829,[2766,4044],3981,3918,3920,3918,3920,3920,[2768,3985],2829,2829,2831,2765,2831,[2768,3980],3920,3983,3919,3981,3981,[2831,4046],3918,3917,3917,3983,3918,3917,3920,3917,[2830,3985],2767,[2766,3724],[2831,3725],3983,3981,3917,3919,3917,[3983,7198],[3918,7199],3918,3917,3981,[2766,3793],2829,2829,2830,2831,[2830,3980],3920,3981,3919,3918,3917,3918,3920,3917,3920,[2831,4047],[2831,4048],[2768,3855],2766,2766,2832,[2832,3854,9613],[2765,4045,9614],[9997,9515],9998,9803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],[9974,9496],[3392,9589],[3392,9590],3457,3457,[3457,5188],5189,5190,[3457,5191],3457,3521,3393,3521,3392,3907,[3908,5284],[3905,5285],[3521,5286],[3906,5287],3521,3456,3394,3456,3521,3905,3907,3456,[3521,5380],[3456,5381],[3521,5382],[3456,5383],3394,3906,3908,3521,[3456,4996],[3457,4997],[3908,4998],3906,3521,3521,3969,[3521,5476],[3520,5477],[3392,5478],[3907,5479],3394,3456,3393,3906,3392,3907,3458,3458,3457,[3456,5284],[3906,5285],[3907,5286],[3456,5287],3906,3457,3393,3394,3907,3392,3458,[3392,5380],[3906,5381],[3393,5382],[3458,5383],3521,3394,3394,3969,3457,3521,3521,3393,3521,3908,3393,3458,3969,3521,3456,3908,3908,3394,[3906,5188],5189,5190,[3457,5191],3457,3392,3457,3521,[3521,5476],[3393,5477],[3458,5478],[3520,5479],3456,3522,3969,3456,3456,3908,3393,[3905,5380],[3906,5381],[3520,5382],[3905,5383],3521,3392,3522,3456,3907,3456,3457,3522,3458,3456,3908,3522,[3456,5092],5093,5094,[3456,5095],3907,3458,3394,3457,3394,3906,3521,[3457,4996],[3908,4997],[3392,4998],3907,3521,3908,3392,3520,3456,3392,3392,3908,3393,3457,3522,3521,3907,3969,3458,[3458,5476],[3456,5477],[3907,5478],[3456,5479],[3456,9613],[3905,9614],[9997,9515],[3917,10093],[3917,6909],[3917,6910],[3919,6911],[3983,6912],[2831,3791],[2767,3789],3918,3981,3917,3981,3918,3919,3983,[2829,3727],[2831,3728],[2830,3792],2767,2832,[2767,4044],3983,3919,3920,3983,[2765,3985],2766,[2767,3853],3918,3920,3918,3918,3917,3918,3917,[2832,4049],2831,[2830,3853],3983,3983,3983,3983,3918,3918,3917,3983,3917,3917,3983,[2767,3985],2829,2765,2767,[2766,3789],3920,3920,[3920,6718],[3983,6719],3918,3919,3920,3920,3919,[2830,3855],2768,2766,2832,2767,2830,[2831,3790,6718],[2829,3725,9709,6719],[2831,3726,9710],[10093,9611],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3521,9685],[3394,9686],3907,3393,[3393,5284],[3394,5285],[3394,5286],[3457,5287],3520,3394,3457,3906,3905,3907,[3456,5380],[3521,5381],[3392,5382],[3393,5383],3906,3392,3392,3908,3969,3393,3521,3393,[3392,5476],[3456,5477],[3520,5478],[3907,5479],3456,3905,3908,3394,[3393,5092],5093,5094,[3458,5095],3907,3520,3521,3522,3457,3908,3905,3907,3458,3907,[3394,4996],[3456,4997],[3521,4998],3907,3969,3456,[3521,5380],[3393,5381],[3394,5382],[3907,5383],3905,3521,3458,3907,3392,3908,3456,[3907,5476],[3908,5477],[3908,5478],[3969,5479],3393,3458,3457,3520,3393,3457,3458,3521,3393,3906,3458,3521,3456,3456,3394,3392,3458,3908,[3522,5284],[3458,5285],[3394,5286],[3908,5287],3521,3907,3457,3393,3394,3969,3458,3906,3905,3907,3458,3969,3908,3906,3908,[3906,5476],[3906,5477],[3458,5478],[3521,5479],3907,3907,3521,3392,3456,3521,3393,3906,3456,3456,3905,3907,[3969,5188],5189,5190,[3907,5191],3456,3908,3969,3905,3458,3521,3521,[3456,5092],5093,5094,[3394,5095],3520,3905,3521,3521,3522,3458,3907,3457,3392,3458,3456,3905,3394,3458,3521,3393,3458,3456,3393,[3457,9709],[3521,9710],[3917,10093,9611],3917,[3983,7005],[3917,7006],[3919,7007],[3918,7008],[2832,3855],[2765,3852],3918,3983,3920,3920,3983,[3983,6718],[3918,6719],3983,3920,[2765,3921],2832,2768,2766,[2831,3854],3983,3920,3917,3917,[2766,3792],2829,[2767,4044],[2765,4045],3920,3983,3917,[2766,4046],[2830,3856],2830,2767,2829,[2768,4044],[2831,4047],[2766,4048],3918,3920,3983,3919,3918,3918,3983,3917,[2767,3856],2768,2766,2832,[2766,3852],3919,[3920,6813],[3983,6814],[3981,6815],[3920,6816],3920,3983,3983,[2765,3985],2768,2766,2830,[2768,3790],[2765,3727],[2832,3728,6813],[3918,6814],[3919,6815],[3919,9517,6816],9421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3521,9494],3456,3456,3521,[3521,5380],[3522,5381],[3457,5382],[3394,5383],3907,3458,3392,3908,3907,3456,[3905,5476],[3392,5477],[3908,5478],[3520,5479],3908,3392,3394,3456,3521,3522,3392,3458,3456,3392,3908,3905,3906,3906,3458,3458,[3456,5188],5189,5190,[3907,5191],3969,3907,3521,3457,3457,3521,3905,3458,3907,3456,[3393,5092],5093,5094,[3521,5095],3393,3457,[3392,5476],[3457,5477],[3908,5478],[3458,5479],3969,3907,3457,3393,3394,3907,3969,3392,3906,3393,3458,3521,[3394,9321],[3906,9322],[3458,9323],[3394,9324],3907,3908,3907,3458,[3456,9321],[3907,9324],3520,3908,3458,3906,3905,3458,3394,[3457,5380],[3520,5381],[3522,5382],[3392,5383],3521,3392,3969,3457,3908,3908,3457,3456,3458,3522,3908,3520,3393,3907,3456,3521,3907,3394,3458,3393,3907,3521,3456,3457,3905,3392,3906,3521,3905,3969,3908,[3458,5284],[3520,5285],[3393,5286],[3456,5287],3394,3907,3905,3392,3458,3392,3520,[3394,5188],5189,5190,[3393,5191],3521,3457,3908,3906,3905,3458,3907,3907,3906,3457,3392,3392,3456,3522,3458,3908,3520,3392,3906,3521,[3522,9517],[3917,9421],3983,[3919,7101],[3920,7102],[3920,7103],[2766,3985,7104],2831,[2831,3916],3919,3918,3917,3917,[3983,6813],[3919,6814],[3920,6815],[3917,6816],3919,[2832,3793],2768,2766,2766,[2831,3789],3920,3918,3981,3920,[2768,3985],[2830,6718],[2768,6719],2766,[2830,3854],[2829,4045],[2832,3855],2829,2767,2768,[2830,3789],[2829,3729],2765,[2768,6718],[2765,6719],[2765,3853],3918,3917,3917,3981,3918,3983,[2832,3985],2768,2831,2830,2832,[2768,3916],3981,[3918,6909],[3981,6910],[3983,6911],[3981,6912],3920,3918,3920,[2767,3856],2829,[2765,3724],[2831,3725],3983,3919,[3918,6909],[3981,6910],[3983,6911],[3917,6912],[3983,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3907,9494],3521,3456,3392,3907,[3905,5476],[3458,5477],[3456,5478],[3907,5479],3906,3392,3393,3394,3908,3456,3458,3458,3906,3522,3907,3907,3456,3394,3907,3392,3520,3458,3393,3521,3392,3908,3457,3521,3908,3907,[3458,5284],[3907,5285],[3905,5286],[3393,5287],3906,3907,3394,3457,3969,3456,3522,3905,3394,3521,[3520,5188],5189,5190,[3456,5191],3456,3969,3456,3520,3456,3521,3393,3457,3458,3393,3907,3521,3907,3457,3456,3908,[3521,9415],[3520,9416],[3528,9417],[3527,9418],[3530,9419],[3591,9420],[3907,9421],[3393,9321],[3521,9324],[3458,9416],[3592,9417],[3530,9420],[3521,9421],[3394,9321],[3457,9322],[3456,9323],[3905,9324],3393,3907,[3457,5476],[3392,5477],[3457,5478],[3456,5479],3456,3521,3521,3393,3457,3521,3520,3520,3392,3393,3969,3906,3458,3908,3520,3908,3394,3456,3458,3908,3905,3521,3905,3905,3521,3394,3908,3458,3908,3905,3456,[3521,5380],[3969,5381],[3908,5382],[3456,5383],3908,3906,3456,3905,3907,3456,3392,[3907,5284],[3907,5285],[3393,5286],[3458,5287],3457,3907,3520,3906,3905,3394,3522,3522,3908,3393,3908,3457,3520,3521,3458,3907,3392,[3458,4996],[3907,4997],[3907,4998],3907,[3907,9517],[3918,9518],3981,[3920,7198],[3917,7199],[2766,3855],2767,[2765,3980],3981,3920,3917,3920,[3919,6909],[3981,6910],[3983,6911],[3917,6912],3917,[2832,3857],2767,[2768,3724],[2829,3725],3981,3918,3981,3919,3918,[3919,6813],[2829,3791,6814],[2766,6815],[2829,6816],2766,2830,2832,2830,2767,[2765,3724],3917,3983,[2768,3725,6813],[2767,3791,6814],[2767,6815],[2832,6816],[2830,4044],[2766,4045],3917,3981,3983,3920,[2830,4049],2766,2767,2765,2832,[2765,3980],3919,[3981,7005],[3918,7006],[3917,7007],[3917,7008],3983,3981,[2831,3856],2829,2765,[2767,3980],3920,3920,3920,[3918,7005],[3917,7006],[3981,7007],[3983,7008],[3917,9613],[3919,9614],9515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3521,9494,4996],[3906,4997],[3907,4998],3394,3520,3905,3908,3522,3907,3906,3906,3457,3394,3456,3392,3393,3457,3456,3520,3521,3905,3520,3906,3457,3393,3456,[3906,4996],[3908,4997],[3394,4998],3969,3905,3907,3905,3906,3905,3394,[3521,5380],[3392,5381],[3393,5382],[3392,5383],3457,3906,3458,3520,3520,3394,3522,3392,3457,3969,[3392,5284],[3458,5285],[3393,5286],[3521,5287],3521,3908,3393,3394,3521,[3906,4996],[3908,4997],[3905,4998],3393,3908,3458,3908,3394,3520,3521,3908,[3908,9511],[3528,9512],3528,3593,3529,3528,[3521,3595,9517],[3905,9417],[3908,9420],[3393,3464,9512],3528,3528,[3528,9517],[3530,9417],[3593,9418],[3592,9419],[3908,3402,9420],[3392,9421],3393,3457,3393,3393,3907,3394,3456,3394,3457,3392,[3905,4996],[3521,4997],[3521,4998],3392,3521,3905,3456,3906,3457,3393,3521,3458,3458,3394,3522,3393,3394,3905,3906,[3905,4996],[3394,4997],[3456,4998],3520,3521,3457,3908,[3905,5476],[3392,5477],[3456,5478],[3907,5479],3394,3908,3521,3393,3907,3393,3521,[3392,5380],[3394,5381],[3458,5382],[3457,5383],3907,3394,3906,3392,3458,3456,3457,3393,3456,3394,3393,3456,3458,3907,3393,3906,3457,[3521,5092],5093,5094,[3458,5095],[3521,9613],[3392,9614],[2767,4047,9515],[2829,4048],[2832,3856],2832,2766,[2832,4044],3920,3917,3918,3917,[3918,7005],[3981,7006],[3920,7007],[3917,7008],3983,[2765,3921],2830,[2830,4044],3918,3917,3920,3917,3981,3919,[3920,6909],[3919,6910],[2768,3725,6911],[2767,3726,6912],[2768,3727],[2829,3728],[2768,3792],2765,2767,[2831,3788],3917,3981,[3917,6909],[3983,6910],[2830,3725,6911],[2767,3728,6912],[2768,3792],2830,[2832,3853],3917,3983,[2765,3985],2830,2829,2830,2766,[2766,3724],3920,3919,[3919,7101],[3918,7102],[3918,7103],[3919,7104],3981,[2832,3985],2767,2832,[2765,3789],3920,3918,3919,3983,[3919,7101],[3920,7102],[3918,7103],[3919,7104],[3917,9709],[3919,9710],9611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3521,9494],[3393,5092],5093,5094,[3458,5095],3457,3393,3393,3457,3908,3393,3908,3393,3456,3969,3394,3393,3908,3458,3458,3521,3908,3392,3458,3392,3456,3394,[3394,5092],5093,5094,[3907,5095],3908,3522,3393,3521,3392,3394,[3522,5476],[3522,5477],[3457,5478],[3522,5479],3394,3905,3392,3393,3393,3905,3905,3908,3521,3969,[3394,5380],[3392,5381],[3969,5382],[3457,5383],3907,3457,3393,3520,3907,[3393,5092],5093,5094,[3969,5095],3394,3394,3522,3456,3394,3456,[3907,9514],[3530,9607],[3529,9608],3594,3594,3527,3527,3594,[3969,3401],3906,3971,[3457,3398],3528,3527,3530,3594,3530,[3520,3595],[3908,9517],[3394,9518],3908,3392,3520,3457,3969,3456,3907,3457,3908,[3457,5092],5093,5094,[3521,5095],3522,3907,3458,3394,3521,3394,3520,3520,3392,3969,3394,3969,3905,3905,3458,[3458,5092],5093,5094,[3458,5095],3520,3907,3907,3520,3905,3907,3392,3456,3458,3907,3393,3458,3521,3521,[3521,5476],[3393,5477],[3392,5478],[3907,5479],3392,3521,3905,3456,[3457,4996],[3456,4997],[3393,4998],3456,3906,3458,3456,3394,3969,3908,3521,3521,3907,[3520,5188],5189,5190,[3908,5191],[3520,9709],[3456,9710],[2766,9611],2832,2768,2830,2766,2766,[2765,3853],3918,3983,3918,[3983,7101],[3981,7102],[3918,7103],[3981,7104],3918,3920,[2831,3791],2768,[2766,3854],[2768,4045],3920,3919,3981,3981,[3920,7005],[3920,7006],[3983,7007],[3983,7008],3918,3918,[2768,3793],2766,2832,[2765,3852],3981,3917,[3920,7005],[3917,7006],[3981,7007],[3920,7008],3983,[2768,3729],2765,[2766,3852],3918,[2832,3857],2832,2765,2831,2767,[2768,3853],3983,3918,3983,[3919,7198],[3919,7199],3981,3920,3920,[2832,3729],2765,[2829,3788],3918,3983,3920,3981,3919,[3917,7198],[3919,7199],3983,[3981,9613],[3917,9614],9611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3521,9589],[3908,9590],[3393,5188],5189,5190,[3458,5191],3394,3907,3521,3456,3907,3522,3458,3522,3905,3905,3521,3456,3521,3907,3457,3521,3456,3456,3393,3520,3905,3392,[3458,5188],5189,5190,[3521,5191],3522,3908,3457,3520,3905,3394,3392,3907,3522,3906,3522,3394,3458,3457,3457,3521,3908,3456,3457,3457,[3907,5476],[3392,5477],[3520,5478],[3520,5479],3908,3520,3908,3520,3456,[3907,5188],5189,5190,[3522,5191],3907,3394,3394,3969,3456,3908,[3393,9610],[3527,9703],[3594,9704],3594,3592,3591,3594,3593,3593,[3393,3338,4996],[3458,3402,4997],[3906,3462,4998],3593,3528,3593,3594,3529,3527,[3906,3402,9613],[3907,9614],[3392,9515],3906,3906,[3906,4996],[3521,4997],[3393,4998],3522,3908,3392,[3521,5188],5189,5190,[3969,5191],3907,3521,3457,[3393,4996],[3905,4997],[3457,4998],3907,3908,3392,3520,3456,3907,3457,3394,3908,[3906,5188],5189,5190,[3908,5191],3521,3908,3456,3457,3908,3457,3969,[3458,4996],[3393,4997],[3457,4998],3457,3907,3456,3521,3905,3392,3520,3456,3906,3907,3520,3969,[3456,5092],5093,5094,[3394,5095],3394,3392,3905,[3457,4996],[3520,4997],[3456,4998],3456,3393,3456,[3969,5284],[3457,5285],[3521,5286],[3520,5287],3456,[3907,9517],[2768,3789,9421],[2831,3725,9422],[2765,3726],[2831,3727],[2831,3728],[2767,3729],2830,[2832,3854],3983,3981,3918,[3917,7198],[3981,7199],3917,3917,3983,[2767,3985],2768,[2766,6718],[2831,6719],[2830,4044],3917,3920,3983,[3981,7101],[3918,7102],[3917,7103],[3983,7104],3920,3919,[2765,3857],2767,2831,[2765,3916],3983,3981,[3917,7101],[3981,7102],[3983,7103],[3918,7104],3983,[2768,3793],2831,[2832,3916],3919,[2829,3921],2829,2829,2831,2829,2832,[2766,3980],3919,3919,3918,3917,3917,3919,3981,[2829,3856],2765,[2765,3852],3919,3983,3917,3918,3981,3920,3919,3983,[3919,9709],[3920,9710],9611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2561,8915],8916,[2560,8917],[3063,8960],8961,[4023,8962],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3969,9685],[3522,9686],[3905,5284],[3521,5285],[3520,5286],[3458,5287],3907,3458,3520,3394,3908,[3392,4996],[3908,4997],[3908,4998],3907,3522,3905,3393,3456,3457,3521,3520,3392,3458,3969,3521,3906,3394,[3907,5284],[3393,5285],[3521,5286],[3392,5287],3520,3906,3907,3905,3907,3392,3905,3456,3908,3905,3522,3456,3456,3456,3906,[3456,4996],[3394,4997],[3521,4998],3907,3456,3906,3457,3908,3969,3906,3908,3456,3393,3906,[3522,5284],[3520,5285],[3521,5286],[3521,5287],3906,3520,3907,3906,3394,3392,[3907,9610],[3529,9799],[3529,9800],3527,3591,3527,3529,3528,3527,[3529,5092],5093,5094,[3527,5095],3593,3594,3528,3594,3592,[3593,9709],[3521,3401,9710],[3392,9611],3906,3969,[3393,5092],5093,5094,[3906,5095],3908,3456,[3456,5284],[3522,5285],[3906,5286],[3907,5287],3522,3969,3908,[3905,5092],5093,5094,[3456,5095],3520,3392,3908,3394,3521,3522,3458,3458,[3457,5284],[3905,5285],[3458,5286],[3457,5287],3906,3456,3908,3394,3907,3456,3908,[3908,5092],5093,5094,[3521,5095],3456,3457,3393,3457,3520,3905,3458,3394,3456,3392,3521,[3394,5188],5189,5190,[3905,5191],3907,3394,3394,[3394,5092],5093,5094,[3907,5095],3457,3520,[3521,5380],[3458,5381],[3905,5382],[3457,5383],3907,3906,[3393,9517],[3917,9421],[3983,9422],3917,[2768,4045],[2768,4049],2830,2765,[2829,3853],[2767,4046],[2767,4045],3919,3981,3919,3919,3919,3983,[2768,3725,6813],[2768,3729,6814],[2832,6815],[2768,6816],[2831,4044],3920,3981,3981,[3920,7198],[3981,7199],3983,3983,3981,[2767,3921],2829,2832,[2766,3980],3920,[2768,4045],3918,[3917,7198],[3919,7199],3917,3981,[2829,3985],2832,[2766,3980],3919,[2830,3985],2830,2832,2765,2832,2766,[2832,4044],[2766,4045],3920,3981,3918,3981,[2829,4048],[2831,3855],2767,2829,[2767,3916],3983,3917,[3918,6718],[3981,6719],3918,3920,3919,3917,[3917,9805],[3920,9806],9611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2497,9011],9012,[2561,9013],[3062,9056],9057,[3577,9058],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3906,9781],[3905,9782],[3394,5380],[3908,5381],[3392,5382],[3458,5383],3905,3905,3457,3969,3458,[3456,5092],5093,5094,[3457,5095],3456,3392,3520,3392,3456,3907,3907,3905,3907,3906,3906,3457,3458,[3908,5380],[3908,5381],[3521,5382],[3905,5383],3907,3393,3458,3907,3520,3394,3522,3458,3392,3394,3393,3520,3906,3457,3905,[3522,5092],5093,5094,[3458,5095],3457,3458,3908,3392,3520,3458,3969,3457,3907,3456,[3456,5380],[3457,5381],[3457,5382],[3521,5383],3392,3394,3520,3456,3905,3394,[3908,9706],9895,[3530,9896],[3591,9897],[3593,9898],[3593,9800],3530,3594,3527,[3971,3403,5188],5189,5190,[3529,5191],3529,3527,3594,3527,3591,[3593,9805],[3593,9806],[3521,9611],3393,3969,[3520,5188],5189,5190,[3521,5191],3457,3905,[3457,5380],[3908,5381],[3457,5382],[3457,5383],3458,3908,3908,[3456,5188],5189,5190,[3907,5191],3392,3393,3392,3458,3392,3521,3458,3456,[3394,5380],[3521,5381],[3456,5382],[3907,5383],3458,3393,3907,3457,3905,3906,3905,[3394,5188],5189,5190,[3908,5191],3969,3521,3392,3456,3521,3905,3520,3457,3394,3456,3392,[3905,5284],[3392,5285],[3908,5286],[3394,5287],3906,3457,3908,[3907,5188],5189,5190,[3393,5191],3520,3905,[3907,5476],[3908,5477],[3522,5478],[3907,5479],3392,3394,3906,[3907,9517],[3981,9518],[2830,3855],2768,2832,[2829,3724],[2832,3729],2766,2767,2832,[2830,3853],[2831,4047],[2832,4048],3983,3918,3919,[3920,6909],[3981,6910],[2768,3791,6911],[2766,6912],2830,[2830,3853],3917,3917,3983,3920,3919,3983,3981,3920,[2765,3792],2830,[2832,4044],[2829,3855],2831,[2768,3853],[2829,4045],[2830,4046],[2765,4047],[2830,4048],[2829,3855],2831,[2767,3853],[2829,4045],[2765,3855],2829,2765,[2766,3724,6718],[2831,3725,6719],[2829,3791],2829,2830,[2830,3853],3918,3917,[2768,3985],2830,2768,2765,2766,[2831,3980],3981,[3919,6813],[3917,6814],[3917,6815],[3983,6816],3983,3983,[3981,9805],[3920,9901],9902,9707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2560,9107],[2560,9108],[2497,9109],[3063,9152],[3512,9153],[3577,9154],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3394,9878],[3969,9782,5476],[3456,5477],[3457,5478],[3905,5479],3394,3457,3907,3521,3394,[3969,5188],5189,5190,[3905,5191],3907,3522,3906,3908,3908,3456,3521,3456,3458,3907,3394,3393,3907,[3906,5476],[3520,5477],[3907,5478],[3907,5479],3457,3394,3457,3393,3908,3457,3969,3521,3969,3393,3908,3392,3458,3905,3457,[3521,5188],5189,5190,[3905,5191],3908,3457,3457,3905,3905,3969,3521,3392,3908,3394,[3458,5476],[3522,5477],[3906,5478],[3906,5479],3456,3457,3392,3908,3456,3394,[3458,9802],[3907,9991],9992,9993,9994,[3593,9896],[3527,9800],3592,3592,[3907,3467,5284],[3521,5285],[3905,3463,5286],[3905,3655,5287],[3457,3656],3529,[3527,9805],[3592,9899],[3593,9900],[3530,9901],9902,[3394,9707],3522,3394,[3521,5284],[3521,5285],[3906,5286],[3521,5287],3457,3908,[3907,5476],[3393,5477],[3906,5478],[3522,5479],3456,3392,3458,[3520,5284],[3394,5285],[3907,5286],[3458,5287],3394,3457,3456,3908,3457,3905,3458,3456,[3458,5476],[3392,5477],[3457,5478],[3520,5479],3908,3456,3521,3906,3906,3906,3907,[3905,5284],[3520,5285],[3392,5286],[3906,5287],3458,3521,3392,3521,[3522,4996],[3969,4997],[3394,4998],3907,3907,3907,3520,[3905,5380],[3905,5381],[3392,5382],[3456,5383],3907,3458,3393,[3905,5284],[3521,5285],[3457,5286],[3457,5287],3521,3456,3522,3458,3392,3457,3906,3392,3394,[3521,9613],[3456,9614],[2766,9515],2831,[2832,3789],3983,3983,[2829,3725],[2829,3791],2832,2830,2831,2829,[2768,3854],[2829,4045],3920,[3917,7005],[3920,7006],[3920,7007],[2765,3728,7008],[2766,3729],2766,[2830,3916],3918,3983,3918,3981,3918,3920,3981,[2766,3985],2831,2766,2765,2768,2831,2767,2767,2831,2831,2831,2766,2765,2765,2767,2829,[2831,3789,6813],[3917,6814],[3983,6815],[3981,6816],[2766,3729],2765,2765,[2765,3980],3917,[2768,3856],2768,2765,[2766,3790],[2830,3725],3920,3918,[3919,6909],[3918,6910],[3917,6911],[3983,6912],3917,[3917,9613],[3920,9614],[9997,9515],9998,9803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2561,9487],[2496,9790],[2496,9791],[2999,3828,9532],[3447,9721],[3578,9722],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3907,9589],[3457,9590],3457,3457,3908,3521,3522,3907,3393,[3906,5284],[3520,5285],[3393,5286],[3458,5287],3456,3522,3521,3394,3521,3458,3456,3907,3456,3907,3458,3521,3393,3907,3394,3457,3907,3906,3521,3520,3456,3457,3393,3520,3520,3520,3907,3907,3457,3394,3908,3456,[3458,5284],[3392,5285],[3456,5286],[3394,5287],3907,3392,3393,[3908,4996],[3522,4997],[3456,4998],3520,3906,3458,3521,3393,3521,3457,3969,3457,3522,3394,3907,3520,3905,3457,3393,[3521,10088],[3907,10089],[3394,10090],[9992,9514],[3592,9607],[3529,9608],3530,[3971,3531,5380],[3458,5381],[3907,5382],[3520,5383],3458,[3457,3464,9805],[3529,9901],9995,9996,9997,[3908,9998],[3521,9803],3394,3907,[3969,5380],[3456,5381],[3458,5382],[3907,5383],3458,3907,3393,3392,3906,3457,3969,3457,3393,[3457,5380],[3969,5381],[3906,5382],[3393,5383],3456,3394,3906,[3457,4996],[3456,4997],[3520,4998],3458,3520,3521,3907,3457,3520,3394,3456,3908,3458,3907,3907,3969,[3908,5380],[3393,5381],[3906,5382],[3520,5383],3521,3907,3969,3457,[3456,5092],5093,5094,[3906,5095],3522,3907,3456,[3394,5476],[3908,5477],[3456,5478],[3520,5479],3907,3521,3457,[3906,5380],[3908,5381],[3905,5382],[3394,5383],3393,3908,3394,3457,3458,3522,3521,3908,3457,[3907,9709],[3456,9710],[2766,9422,9611],2768,[2830,3788],3983,3918,3917,3920,[2829,3726],[2766,3727],[2831,3728],[2768,3791],2765,2830,[2831,3854],[3920,7101],[3981,7102],[3981,7103],[3919,7104],[2831,3856],2831,[2768,3980],3917,3920,3920,3919,3920,3981,3920,3981,[2766,3725],[2766,3726],[2832,3725],[2830,3726],[2829,3727],[2767,3728],[2830,3792],2766,2767,2831,2768,[2832,3724],[2829,3725],[2768,3726],[2765,3727],[3981,6909],[3981,6910],[3983,6911],[3919,6912],3983,[2831,3792],2767,[2767,3853],[2765,4049],2767,2768,2832,[2765,3980],3981,3981,3917,[3917,7005],[3917,7006],[3981,7007],[3919,7008],3919,[3919,9709],[3983,9710],[10093,9611],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9059,9060,9061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3520,9685],[3969,9686],3906,3905,3907,3456,3394,3457,3521,[3969,5380],[3393,5381],[3905,5382],[3908,5383],3457,3906,[3458,4996],[3392,4997],[3392,4998],3907,3520,3521,3393,3394,3393,3521,3521,3394,3907,3522,3393,3520,3457,3457,3908,[3457,4996],[3521,4997],[3456,4998],3905,3394,3458,3521,3521,3458,3520,3457,[3393,5380],[3457,5381],[3521,5382],[3457,5383],3456,3392,3456,[3393,5092],5093,5094,[3908,5095],3393,3457,3521,3522,3521,3520,3458,3906,3456,3905,3394,3458,3394,[3394,4996],[3456,4997],[3908,4998],[3521,10185],[3456,10186],[3457,10088,9610],[3530,9703],[3593,9704],3530,[3530,5476],[3905,3401,5477],[3905,5478],[3522,5479],[3520,3400,9613],[3335,9614],[9997,9515,4996],[3457,10091,4997],[3905,10092,4998],[3457,10093],3969,3907,3906,3394,[3969,5476],[3458,5477],[3521,5478],[3393,5479],3520,3458,3456,3458,3457,3907,3908,3457,3458,[3456,5476],[3457,5477],[3457,5478],[3393,5479],3457,3905,3907,[3456,5092],5093,5094,[3907,5095],3456,3458,3907,3907,3458,3520,3905,3522,3969,3908,3521,3394,[3521,5476],[3456,5477],[3969,5478],[3521,5479],3458,3905,3907,3521,[3521,5188],5189,5190,[3908,5191],3392,3906,3392,3905,3394,3393,3522,3457,3456,3905,[3458,5476],[3522,5477],[3456,5478],[3458,5479],3393,3905,3521,3522,3392,3521,3456,3907,3908,3457,[3920,3909,9517],[2767,9518],[2829,3789],3981,3918,3920,3983,3920,3918,3918,3917,3917,[2831,3725],[2767,3729],2765,[2831,3980],[3918,7198],[3917,7199],[2767,3985],2767,[2830,3789],3919,3983,3919,3919,3920,3920,3919,[3919,6718],[3983,6719],3917,3919,3917,3981,3918,3918,3917,[2831,3729],2766,2832,[2768,3789],3919,3920,3983,3917,[3983,7005],[3983,7006],[3917,7007],[3981,7008],3920,3919,[2832,3792],2832,2765,2832,2831,[2832,3789],3918,3917,3920,3920,[3981,7101],[3983,7102],[3920,7103],[3981,7104],3918,[3920,9709],[3981,9710],9611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3547,9155],[3547,9156],[3611,9157],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3393,9494],3393,3457,3905,3907,3393,3969,3458,3908,[3392,5476],[3458,5477],[3908,5478],[3520,5479],3458,3522,[3458,5092],5093,5094,[3520,5095],3522,3458,3907,3521,[3907,4996],[3908,4997],[3905,4998],3520,3520,3521,3908,3906,3458,3458,3907,[3907,5092],5093,5094,[3905,5095],3521,3457,3457,3906,3907,3393,3458,[3392,5476],[3456,5477],[3907,5478],[3906,5479],3457,3907,3458,[3521,5188],5189,5190,[3393,5191],3456,3392,3520,[3906,4996],[3392,4997],[3457,4998],3907,3521,3393,3521,3457,3907,3392,[3907,5092],5093,5094,[3457,5095],3394,[3906,9610],[3591,9799],[3529,9800],3592,3529,3593,[3906,3337],[3906,3338],[3530,9709],[3592,9710],[3906,10093,9611,5092],5093,5094,[3908,5095],3906,3905,3456,3521,3394,3394,3908,3457,3458,3521,3457,3457,3522,3456,3393,3521,3520,3521,3905,3521,3394,3458,3456,3456,[3521,5188],5189,5190,[3906,5191],3907,3521,3521,3458,3457,3393,3457,3522,[3456,4996],[3520,4997],[3520,4998],3456,3908,3522,3907,3906,3520,3520,3905,3905,[3456,5284],[3456,5285],[3522,5286],[3520,5287],3522,3393,3520,3521,3456,3457,3908,3394,3394,3392,3520,3905,3457,3906,3392,3392,3521,3458,3908,3394,3907,3394,3969,3456,[3919,3973],[3919,9517],[3981,9421],3919,3983,3919,3983,3920,3918,3983,3920,3917,3919,3981,[2767,3791],[2829,3853],[2768,4045],[2766,4046],[2766,3855],2766,[2766,3853],[2768,4046],[2767,4047],[2766,4048],3981,3917,3917,[3983,6813],[3919,6814],[3919,6815],[3917,6816],3981,3983,3918,3983,3981,3917,[2767,3985],2767,2832,[2830,3854],3917,3920,3920,3920,[3919,7101],[3981,7102],[3918,7103],[3920,7104],3981,3917,[2765,3985],2830,2768,2831,2765,[2766,3980],3920,3981,3917,3981,3919,[3981,7198],[3983,7199],3981,[2830,4045],[2765,4046,9613],[2765,4045,9614],9611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3609,10214],3545,[3609,10213],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3908,9494],3905,3520,[3907,4996],[3456,4997],[3969,4998],3521,3520,3394,3908,3908,3522,3907,3905,3905,3456,[3905,5188],5189,5190,[3969,5191],3394,3521,3907,3458,[3907,5092],5093,5094,[3905,5095],3969,3907,3907,3971,3394,3905,3906,[3908,5188],5189,5190,[3971,5191],3906,3458,3522,3907,3394,3969,3522,3905,3969,3969,3908,3394,3905,3907,[3908,5284],[3907,5285],[3906,5286],[3908,5287],3971,3906,3905,[3908,5092],5093,5094,[3907,5095],3908,3905,3457,3907,3907,3969,[3907,5188],5189,5190,[3971,5191],3521,[3971,9706],9895,[3593,9896],[3593,9800],3528,3529,3530,3530,[3528,9805],[3528,9806],[3971,9611,5188],5189,5190,[3907,5191],3969,3969,[3969,9787],[3521,8918],[3908,8919],[3969,8920],[3969,9882],[3908,9782],3906,3456,[3521,4996],[3906,4997],[3908,4998],3969,3969,3906,3907,3906,3905,3906,3908,3456,3971,3969,[3908,5284],[3393,5285],[3971,5286],[3908,5287],3908,3907,3392,3393,3969,3907,3905,3908,[3906,5092],5093,5094,[3906,5095],3907,3969,3521,3907,3908,3969,3906,3907,[3907,5380],[3908,5381],[3906,5382],[3906,5383],3971,3905,3908,3971,3905,[3908,4996],[3392,4997],[3908,4998],3393,3971,3522,3971,3908,3907,3905,3905,3392,3969,3969,3392,3971,3907,3907,3907,[3920,3973],3919,[3920,9517],[3918,9518],3918,3918,3920,3920,3920,3919,3983,3983,3920,3981,[2766,3985],2831,2830,2832,2832,2767,2765,2831,2768,2765,[2767,3980],3918,3983,[3920,6909],[3983,6910],[3919,6911],[3919,6912],3983,3919,3920,3981,3920,[2767,4048],[2830,3856],2830,[2830,6718],[2765,6719],[2831,3980],3920,3920,3919,3983,[3920,7198],[3919,7199],3920,3920,3920,[2832,3793],2829,2768,2766,2765,[2832,4044],3917,3983,3919,3919,3983,3920,3983,[2830,3985],2768,[2768,9709],[2767,3790,9710],9707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[15005,16602],16607,16608,[15132,16605],[3252,9912],[3393,230,6],8,[403,9],0,0,0,0,0,[2766,3725,2020],2021,[3918,2022],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3394,9589],[3907,9590],3520,3908,[3392,5092],5093,5094,[3457,5095],3458,3908,3907,3392,3457,3456,3906,3456,3456,[3907,5284],[3969,5285],[3458,5286],[3971,5287],3907,3458,3971,3908,[3905,5188],5189,5190,[3971,5191],3971,3907,3457,3394,3906,3905,3906,[3908,5284],[3908,5285],[3969,5286],[3971,5287],3907,3906,[3969,9796],[3971,9888],[3969,9889],[3906,9888],[3908,9889],[3906,9890],[3905,9891],[3969,9888],[3907,9889],[3456,9890],[3908,9791],3907,[3906,5380],[3969,5381],[3907,5382],[3971,5383],3905,3969,3906,[3969,5188],5189,5190,[3971,5191],3520,3457,3908,3908,3907,3458,[3394,5284],[3905,5285],[3906,5286],[3971,5287],3905,[3908,9802],[3906,9991],9992,[3527,9896,4996],[3592,9897,4997],[3593,9898,4998],[3594,9899],[3594,9900],[3594,9901],9902,[3971,9707,5284],[3456,5285],[3971,5286],[3394,5287],3907,[3906,9787],[3456,9883],9014,9015,9016,9978,[3908,9878],[3905,9782],3969,[3969,5092],5093,5094,[3969,5095],3522,3907,3969,3908,3905,3969,3905,3908,3908,3908,[3905,5380],[3522,5381],[3907,5382],[3906,5383],3905,3971,3908,3969,3905,3969,3907,3908,[3905,5188],5189,5190,[3971,5191],3908,3458,3905,3456,3393,3905,3907,3906,[3969,5476],[3907,5477],[3394,5478],[3907,5479],3521,3522,3906,3969,3457,[3908,5092],5093,5094,[3907,5095],3906,3908,3905,3908,3908,3906,3906,3908,3908,3971,3969,3969,3908,3971,3971,3908,[3983,3713],[3920,3717,9613],[3983,9614],[3919,9515],3920,3920,3920,3920,3920,3917,3920,3919,3918,3920,[2829,3791],2832,2765,2767,2768,2829,2829,2831,[2831,3790],3919,3983,3983,[3983,7005],[3920,7006],[3919,7007],[3983,7008],3920,3983,3918,3918,[2768,3856],2767,2832,[2768,6813],[2829,3724,6814],[2766,3725,6815],[3920,6816],3919,3919,3920,3920,3983,3983,3920,3981,3920,[2830,3921],2768,2767,2829,2830,2767,[2768,3853],3919,3983,3919,3918,[2832,4047],[2830,4048],[2766,3856],2765,[2830,3724],[3919,9517],9421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,9814,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[15133,16666],16671,16672,[15069,16669],10008,[403,6],8,[403,9],[3906,405,6],8,[3906,407,9],3063,3959,[3919,2084],2085,[3920,2086],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3392,9685],[3907,9686],3520,3521,[3394,5188],5189,5190,[3458,5191],3907,3907,3458,3906,3969,3905,3456,3520,3393,[3392,5380],[3907,5381],[3522,5382],[3906,5383],3969,3908,3394,3521,[3907,5284],[3906,5285],[3907,5286],[3905,5287],3906,3394,3908,3971,[3392,9787],[3905,9881],[3457,9882],[3521,9782,5380],[3971,5381],[3907,5382],[3907,5383],3907,[3392,9778],[3906,9892],9984,9985,9984,9985,9986,9987,9984,9985,9986,[3905,9887],[3969,9791],[3907,5476],[3393,5477],[3907,5478],[3905,5479],3908,3521,3906,[3906,5284],[3905,5285],[3971,5286],[3969,5287],3906,3458,3908,[3908,9787],[3905,9879],[3969,9782],[3969,5380],[3520,5381],[3906,5382],[3908,5383],3971,3906,3907,[3908,10088],[9992,5092],5093,5094,[9995,5095],9996,9997,[3971,9998],[3908,9803,5380],[3907,5381],[3969,5382],[3969,5383],[3907,9787],[3907,9883],9979,[3905,9110],[3908,9111],[3908,9112],[3905,10074],[9974,9496],[3908,9589],[3969,9590],[3906,5188],5189,5190,[3906,5191],3905,3969,3905,[3907,4996],[3908,4997],[3905,4998],3906,3521,3906,3971,[3971,5476],[3905,5477],[3971,5478],[3394,5479],3971,3969,3971,3905,3521,3393,3971,3905,[3969,5284],[3905,5285],[3907,5286],[3969,5287],3905,3971,3906,[3906,4996],[3905,4997],[3908,4998],3906,3969,3907,3905,3907,3969,3906,3906,3907,3908,3971,[3971,5188],5189,5190,[3908,5191],3394,3908,3905,[3971,4996],[3906,4997],[3521,4998],3905,3969,3971,3394,3906,3969,3908,3971,3971,3971,3969,[3983,3781,9709],[3920,9710],[3918,9611],3920,3919,[3919,6718],[3919,6719],3919,3983,3919,3983,3920,3919,3919,[2831,3792],2832,2829,2766,2831,[2766,3724],[2830,3725],3920,3920,3983,3983,[3983,7101],[3983,7102],[3920,7103],[3919,7104],3920,3919,3919,[2768,4049],2829,2768,2768,[2830,6909],[2767,3980,6910],[3920,6911],[3920,6912],3983,3920,3919,3918,3920,3983,3983,3919,3919,3920,[2831,3792],2768,2832,2765,2767,2768,[2829,3854],[2829,4047],[2830,4048],[2765,4049],2830,2831,2832,2767,[2765,3980],3920,[3919,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,9905,9809,0,0,9814,9910,10002,10003,9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[15068,16730],[15004,16735],[15004,16736],[15068,16733],[3250,10104],[403,6],8,[403,9],[403,6],8,[403,9],3062,3577,[3983,2148],[3920,2149],[3919,2150],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3456,9781],[3456,9782],3521,3458,[3906,5284],[3392,5285],[3456,5286],[3458,5287],3521,3458,3905,3907,3521,3456,3908,3392,3456,[3907,5476],[3905,5477],[3905,5478],[3907,5479],3907,[3906,9787],[3392,9879],[3969,9880],[3971,9782,5380],[3907,5381],[3971,5382],[3908,5383],3906,3905,3393,[3394,9787],[3456,9883],9977,9978,[3906,9878,5476],[3908,9782,5477],[3905,5478],[3520,5479],[3908,9787],[3458,9874],9988,10080,10081,10080,10081,10082,10083,10080,10081,10082,9983,[3908,9887],[3907,9782],3907,3908,3394,3905,3908,3905,[3908,5380],[3906,5381],[3906,5382],[3906,5383],3521,3907,[3971,9787],[3908,9883],9975,[3907,9878],[3908,9782,5476],[3906,5477],[3971,5478],[3908,5479],3908,3906,3908,3971,[3392,10088,5188],5189,5190,[3906,10091,5191],[3907,10092],[3906,10093],3908,[3969,5476],[3971,5477],[3905,5478],[3908,9691,5479],[3907,9692],[9979,9497],[3457,10075],[3907,9206],[3521,9207],[3905,9208],[3969,10170],[3905,10070,9592],[3457,9781],[3969,9782],[3522,5284],[3907,5285],[3906,5286],[3971,5287],3969,3908,3906,[3905,5092],5093,5094,[3971,5095],3969,3905,3522,3522,3969,3969,3392,3905,3522,3969,3905,3908,3907,3969,3907,[3906,5380],[3521,5381],[3905,5382],[3906,5383],3969,3969,3906,[3521,5092],5093,5094,[3905,5095],3906,3905,3969,3908,3905,3971,3971,3458,3393,3906,[3905,5284],[3908,5285],[3969,5286],[3971,5287],3905,3908,3521,[3905,5092],5093,5094,[3906,5095],3969,3905,3971,3905,3906,3905,3969,3905,3906,3906,[3983,3845,9805],[3919,9806],[3917,9611],3920,[3983,6813],[3920,6814],[3917,6815],[3920,6816],3920,3920,3920,3981,3920,3920,[2832,4049],2765,2767,2765,2767,[2767,3853],3919,3918,3919,3983,3919,3918,[3983,7198],[3920,7199],3919,3920,3920,[2830,3985],2830,2765,2766,2832,[2765,3790,7005],[3919,7006],[3983,7007],[3983,7008],3919,3919,3920,3920,3983,3983,[2765,4047],[2768,4048],3983,3920,3920,[2830,3726],[2831,3728],[2766,3792,6718],[2766,6719],2766,2830,2766,2766,2767,2765,2767,2831,[2766,3790],3919,3918,[2767,3855,9613],[2829,9614],9515,0,0,0,0,9814,9906,9907,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9910,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,0,0,0,0,9814,9908,9909,9910,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,9622,9623,10006,[4097,10098],[4097,10099],10001,9905,9908,9909,9910,10006,[3911,10098],[4097,10099],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,666,667,668,667,668,669,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,660,661,662,661,661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3250,10200],[403,6],8,[403,9],[3908,598,6],8,[3905,600,9],3063,3446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3905,9878],[3392,9782],3521,[3906,5380],[3458,5381],[3907,5382],[3520,5383],3458,3905,3456,3458,3457,3521,3457,3393,3521,3456,3907,3905,3905,[3907,9787],[3971,9883],9975,9976,[3905,9878,5476],[3520,9782,5477],[3906,5478],[3907,5479],3908,3393,[3908,9787],[3456,9883],9979,[3983,10073],[3919,10074],9974,[3969,9878],[3521,9879],[3907,9880],[3969,9883],9970,10084,10176,10177,[10176,645],[10177,646],[10178,647],10179,10176,10177,10178,10079,9983,[3905,9878],[3906,9782],3906,3969,[3969,9787],[3905,9879],[3906,9880],[3908,9782,5476],[3971,5477],[3905,5478],[3906,5479],3908,[3905,9787],[3905,9883],9979,[3969,10071],9974,[3969,9878],[3907,9879],[3969,9782],3908,3906,[3908,9787],[3521,9882],[3393,9782],[3908,5284],[3906,10185,5285],[3971,10186,5286],[3905,10187,5287],[3908,10188],3906,3906,3906,3906,3907,[3907,9787],[3969,9788],[3458,10075,9593],3905,3908,3908,3971,3520,[3521,9688],9877,[3908,9878],[3971,9782,5380],[3905,5381],[3971,5382],[3971,5383],3393,3907,3908,[3906,5188],5189,5190,[3521,5191],3908,3971,3971,3907,3907,3392,3907,3522,3908,3908,3971,[3908,4996],[3906,4997],[3969,4998],3907,[3907,5476],[3971,5477],[3521,5478],[3971,5479],3905,3908,3971,[3907,5188],5189,5190,[3908,5191],3394,3905,3905,3906,3908,[3392,9787],[3969,9879],[3908,9880],[3969,9881],[3907,9882],[3456,9782,5380],[3907,5381],[3908,5382],[3969,5383],3905,3908,3969,[3905,5188],5189,5190,[3907,5191],3969,3393,3908,3971,3908,3971,3905,3906,3906,[3906,9613],[3920,3909,9614],[9902,9515],[3917,9707],3983,[3983,6909],[3983,6910],[3983,6911],[3918,6912],3920,3918,3919,[3919,9805],[3919,8936],[2832,3985,8937],[2830,8938],[2767,9898],[2829,9899],[2831,9900],[2831,9800],[2765,3789],3983,3920,3920,3918,3919,3919,3983,3920,3919,3919,[2767,4047],[2831,3855],2829,2768,[2832,3789],[2830,3725],[3981,7101],[3919,7102],[3919,7103],[3919,7104],3919,3981,3919,3983,[2767,4045],[2765,3855],2830,2767,[2765,3788],3919,3981,3919,[3983,6813],[2768,3985,6814],[2766,6815],[2830,6816],2767,2768,2765,2831,2768,2768,[2831,3789],3983,3983,[2766,3856],[2766,9709],[2768,9710],9611,0,9814,9908,9909,9910,10002,10003,10004,10005,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,10006,[3978,10098],[3978,10099],10001,9905,9906,9907,9908,9909,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,9814,9906,9907,[3978,9910],10002,10003,10004,10005,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,9905,9906,9907,9908,9909,9906,9907,9908,9909,9910,10004,10005,10006,[4097,3915,10098],[4097,10099],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,9718,9719,[4097,3979,10102,9524],[4097,10194],[4097,3784,10195],[3976,10097],10001,10004,10005,10006,[3914,10102],[4097,3979,10194],[4097,10195],[4097,3846,10000],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,730,731,732,731,732,733,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,724,725,726,725,725,726,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3906,6],8,[3971,39,9],0,[3063,64],0,0,0,2435,2370,2370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],9974,[3520,9878],[3905,9782],[3392,5476],[3394,5477],[3394,5478],[3522,5479],3394,3907,3394,3456,3908,3458,3908,3521,3906,3905,3905,3908,[3969,9595],[3521,9596],[9979,9497],[3522,10071],[3456,10072],9974,[3905,9878],[3906,9879],[3905,9880],[3906,9881],[3907,9882],[3907,9883],9979,[3920,10075],[3918,10169],[3919,10170],[3983,10070],9974,9975,9976,9979,[3969,468,10066],[3971,469],[3522,470],[3971,471,708],[3522,472,709],710,[3522,597,711],[3520,598,712],[3906,599],[3457,600],[3971,468],[3969,469],10079,9974,[3971,9878],[3969,9879],[3908,9880],[3905,9883],9975,9976,[3971,9878],[3969,9879],[3907,9880],[3908,9881],[3908,9882],[3907,9883],9979,[3522,10075],[3969,10167],[3458,10070],9974,9975,[3906,9878],[3971,9879],[3969,9880],[3392,9883],9978,[3906,9878],[3969,9782,5380],[3969,5381],[3906,5382],[3908,5383],3971,3907,3969,3906,3905,[3971,9787],[3907,9883],9884,[3520,9689],3394,3521,3969,3457,3969,[3907,9784],[3522,9973],9974,[3907,9878,5476],[3907,9879,5477],[3969,9880,5478],[3905,9881,5479],[3906,9882],[3971,9782],3394,[3908,5284],[3969,5285],[3969,5286],[3907,5287],3971,3969,3971,3394,3908,3907,3906,3394,3908,3456,3969,[3908,5092],5093,5094,[3906,5095],3906,3971,3971,3905,3908,3969,3908,[3907,5284],[3457,5285],[3906,5286],[3520,5287],3907,3521,3905,3906,[3906,9787],[3908,9883],9975,9976,9977,9978,[3905,9878,5476],[3907,9782,5477],[3905,5478],[3905,5479],3907,3457,3908,[3907,5284],[3905,5285],[3969,5286],[3393,5287],3971,3905,3906,3969,3905,[3906,4996],[3969,4997],[3907,4998],3906,[3908,9709],[3971,9710],[3983,3780,9998,9611],[3917,9803],3920,[3919,7005],[3919,7006],[3917,7007],[3920,7008],3920,3920,[3920,9805],[3919,9901],9032,9033,9034,9994,9995,9996,[2829,9896],[2830,3980,9800],3920,3919,[3983,9805],[3917,9897],[3920,9898],[3981,9899],[3920,9900],[3917,9800],3920,[2831,3985],2765,2829,2832,[2765,3790],3918,3983,3920,[3919,7198],[3919,7199],[2832,4045],[2831,4046],[2768,4047],[2768,4048],[2765,3855],2767,2766,2766,2829,[2766,3916],3981,3983,3920,[3919,6909],[3920,6910],[2767,3792,6911],[2765,6912],2829,2768,2831,2832,2829,[2829,3724],3983,3920,[2829,3985],2767,[2766,9613],[2831,9614],9611,9814,9910,10004,10005,10006,[3978,10098],[3978,10099],[3978,10100],[3978,10101],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9910,10002,10003,9905,9906,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,9905,9809,0,0,0,0,0,0,0,0,9814,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3977,10098],[3977,10099],[3913,10102],[3977,10194],[3913,10195],[3978,10097],10001,10002,10003,10004,10005,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,0,9814,9910,10002,10003,9905,9906,9907,9910,10002,10003,10006,[3913,10098],[4097,3851,10099],[4097,10100],[4097,10101],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3978,10098],[3978,10099],10001,10002,10003,10004,10005,10002,10003,10004,10005,10006,10100,10101,[3977,10102],[4097,3787,10194],[4097,10195],[4097,10097,9523],9616,9617,0,0,0,9814,9906,9907,9809,0,0,0,9718,9719,[4097,3849,9620],4097,[4097,3974],3914,[3914,10097],[3977,10100],[3911,10101],[4097,4039,10102],[4097,4040],[4097,3850],4097,[4097,3910],[3977,10097,9523],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,794,795,796,795,796,797,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[789,15057],790,789,789,790,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3919,64],[3913,64],[3529,64],0,0,0,2434,1922,2435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],[9974,9496],[3521,9589],[3521,9590],3394,3458,3392,3456,3457,3906,3393,3457,3521,3457,3521,3905,3908,3969,3971,[3393,9691],[3393,9692],[3520,10075,9593],[3520,10167],[3906,10168],[3969,10070],9974,9975,9976,9977,9978,9979,[3983,10075],3920,3917,3983,3983,[3983,3968,10070],[3907,10071],[3971,10072],[3456,10075],3521,3458,[3458,771],[3905,772],773,774,775,[3393,776],[3907,777],3393,3969,3393,3458,[3907,10070],9974,9975,9976,9979,[3522,10071],[3905,10072],9974,9975,9976,9977,9978,9979,[3907,10075],3458,3971,3907,[3521,10070],[3905,10071],9974,9975,9976,9979,[3906,10074],9974,[3906,9878,5476],[3906,9879,5477],[3907,9880,5478],[3907,9881,5479],[3971,9882],[3907,9879],[3521,9880],[3907,9881],[3520,9882],[3969,9883],9979,[3905,9980],[3520,9785],3907,3905,3908,3907,3906,3906,3458,[3907,10070],9974,9975,9976,9977,9978,[3522,9878],[3906,9782],[3971,5380],[3906,5381],[3458,5382],[3905,5383],3906,3907,3969,3971,3907,3906,3908,3905,3906,3908,3458,[3905,5188],5189,5190,[3908,5191],3908,3907,3394,3908,3906,3393,3906,[3907,5380],[3907,5381],[3969,5382],[3906,5383],3905,3969,3907,[3906,9787],[3906,9883],9979,[3522,10071],[3521,10072],[3456,10073],[3458,10074],9974,[3906,9878],[3905,9782],3969,3907,3392,3520,[3905,5380],[3522,5381],[3908,5382],[3520,5383],3905,3905,3971,3905,3456,[3907,5092],5093,5094,[3907,5095],3520,[3906,9517],[3920,3781,9421],3919,3919,[3983,7101],[3920,7102],[3919,7103],[3919,7104],3919,[3919,9709],[3920,9710],[9997,9515],[3920,9128],[3920,9129],[3918,9130],[3983,10090],[3919,10091],[3727,10092],9992,[3983,9896],[3983,9897],[3919,9898],[3919,9901],9993,9994,9995,9996,[3983,9896],[2766,4047,9800],[2830,3856],2830,[2829,3790],[2831,3725],3983,3983,[2830,4046],[2766,4047],[2768,4048],[2766,3856],[2831,9805],[2765,9899],[2766,9900],[2829,9800],2831,2768,2829,2831,2767,[2832,3853],3918,3920,3920,[3918,7005],[3920,7006],[3920,7007],[2767,3725,7008],[2767,3729],2768,2830,2765,2767,[2765,3854],[2829,4047],[2831,4048],[2832,3856],2767,[2765,9709],[2765,9710],[9611,9814],9910,10006,10100,[3978,10101],[3978,10102],[3913,10194],[3978,10195],[3913,10196],[3978,10197],[3913,10097],10001,9905,9809,0,0,0,0,9814,9906,9907,9809,0,0,9814,9910,10004,10005,10006,[4097,10098],[4097,10099],10001,10002,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,[3978,9910],10006,10098,10099,10001,9905,9906,9907,9908,9909,9906,9907,9908,9909,9910,10004,10005,9905,9809,0,0,0,0,0,0,0,0,0,0,9622,9623,10006,[3977,10102],[3913,10194],[3978,10195],3914,3914,3978,3914,[3977,10097],[3978,10098],[3913,10099],[3913,10100],[3978,10101],[3914,10098],[3914,10099],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9910,10002,10003,9905,9906,9907,9908,9909,9909,9910,10006,[4097,10098],[4097,10099],10001,10002,10003,10006,[4097,10098],[4097,3782,10099],[3913,10102],[3914,10194],[4097,3915,10195],[4097,10196],[4097,3783,10197],[3976,10097],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,9622,9623,10006,[3977,10102],[3977,10194],[3978,10195],[3911,10097],[4097,10098],[4097,10099],[4097,10100],[4097,3782,10101],[3914,10098],[3978,10099],[3978,10100],[4097,3787,10101],[4097,4038,10102],[3912,10196],[3977,10197],3914,[4097,3851],4097,[4097,3718,9619],9808,9809,0,0,9814,9910,10002,10003,9905,9809,0,0,9814,9815,[4097,9620],[4097,3784],3976,3911,[4097,4039],[4097,4040,10196],[4097,3849,10197],[4097,10198],4097,4097,4097,[4097,3974],[3914,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,795,796,795,796,861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,853,854,853,853,853,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3521,9685],[3392,9686],3906,3457,3907,3969,3457,[3907,4996],[3394,4997],[3908,4998],3392,3392,3907,[3457,4996],[3906,4997],[3905,4998],3906,[3906,9595],[3522,9596],[3522,9593],3456,3458,3905,[3522,10070],[3458,10071],[3908,10072],[3906,10073],[3905,10074],[3919,3909,10075],3920,3919,3920,3983,3920,[3919,3841],[3905,10167],[3520,10168],3521,3907,[3456,3461],[3905,835],836,837,838,839,840,[3457,841],3969,3905,3969,3522,3520,[3969,10070],[3520,10071,9787],[3969,10072,9879],[3907,10075,9880],[3394,10167,9782],[3458,10168],[3521,10070],[3971,10071],[3969,10072],[3520,10073],[3458,10074],[3907,10075],3907,3907,3971,3457,3908,[3522,10167],[3522,10070],[3908,10071],[3458,10072],[3458,10075],[3522,10170],[3906,10070],9974,9975,9976,9977,9978,9975,9976,9977,9978,9979,[3971,10075],3521,3969,3522,3906,3456,3457,3520,3456,3521,3908,[3520,10070],[3394,10071],[3456,10072],[3908,10073],[3394,10074],9974,[3971,9878],[3971,9782,5476],[3907,5477],[3969,5478],[3969,5479],3907,3971,3905,3905,3907,3907,3393,3906,3971,3971,3905,[3908,5284],[3905,5285],[3907,5286],[3969,5287],3906,3908,3907,3908,3907,3393,3905,[3971,5476],[3969,5477],[3969,5478],[3907,5479],3908,3457,[3908,9691],[3908,9692],[9979,9497],[3521,10075],[3969,10167],[3521,10168],[3908,10169],[3905,10170],[3520,10070],9974,[3905,9878],[3908,9782],3971,3905,3908,[3905,5476],[3520,5477],[3906,5478],[3905,5479],3908,3907,3905,3908,3969,[3905,5188],5189,5190,[3520,5191],3908,3458,[3983,3845,9517],[3920,9518],3983,3983,[3983,7198],[3917,7199],3918,3919,[3983,9805],[3983,9806],[3920,10093,9611],[3919,9224],[3919,9225],[3917,9226],[3920,10186],[3920,10187],[3983,10188],[3919,10088],9992,9993,9994,9997,[3919,10089],[3919,10090],[3920,10091],[3983,10092],9992,[2831,9607],[2767,9608],2831,[2832,3854],[2767,4047],[2768,4048],[2767,3855,9805],[2765,9897],[2768,9898],[2766,9899],[2768,9900],[2767,9901],9995,9996,[2829,9896],[2767,9897],[2830,9898],[2832,9800],2829,2765,2830,[2768,3854],3983,3919,[3918,7101],[3919,7102],[3983,7103],[3983,7104],[2765,3793],2767,2831,2765,2831,2832,2832,2768,2829,2829,[2766,9613,9805],[2832,9806,9814],[9707,9910],10006,[4097,10102],[4097,10196],[4097,3782,10197],3978,3914,3977,3977,3914,3977,[3911,10097],10001,9905,9809,0,0,9814,9910,10002,10003,9905,9906,9907,9910,10006,[3914,10100],[3977,10101],[4097,3851,10102],[4097,10194],[4097,10195],[4097,10097],[3912,10098],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3913,10102],[3911,10194],[4096,10195],[4097,10097],10001,10002,10003,10004,10005,10002,10003,10004,10005,10006,[3978,10100],[3977,10101],10001,9905,9809,0,0,9814,9906,9907,9809,0,0,0,9718,9719,[4097,4041,10102,9524],[4097,4042],3912,3911,[4097,4040],3912,3977,3977,3977,[3978,10194],[3914,10195],[3977,10196],[3914,10197],[3977,10194],[3977,10195],[3913,10097],10001,9905,9809,0,0,0,0,0,0,0,0,9814,9906,9907,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,10006,[3914,10098],[3978,10099],10001,10002,10003,10004,10005,10005,10006,[4097,3849,10102],[4097,10194],[4097,10195],[4097,3974,10097],[3914,10098],[3977,10099],[4097,3979,10102],[4097,10194],[4097,3846,10195],3913,3978,[4097,3979],4097,[4097,3974],3914,[3978,10097,9523],9712,9713,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[4097,4039,10102,9524],3912,3911,[4097,4042],[4097,3850],[4097,10194],[4192,10195],[4097,10196],[4097,3846,10197],[3977,10194],[3913,10195],[3913,10196],[4097,3851,10197],4097,[4097,3782],3913,3913,[4097,3915],4097,[4097,3782,9715],9904,9905,9906,9907,9910,10006,[4097,3979,10098],[4097,10099],10001,9905,9908,9909,9910,9911,[4097,3722,9716],3976,3911,[4097,3849],4097,4097,4097,4097,4192,4097,[4097,3783],3976,[3978,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,858,859,[859,1789],[860,1790],[859,1791],861,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,789,790,790,789,790,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,3972,3906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3969,9494],3393,3458,3520,3458,3907,3393,[3520,5092],5093,5094,[3908,5095],3908,3393,[3906,5092],5093,5094,[3905,5095],[3969,9691],[3456,9692],[3456,9689],3586,3587,3907,3906,[3908,10167],[3456,10168],[3907,10169],[3906,10170],[3919,3973],3919,3919,[3983,4249],3917,3983,[3920,3712],3908,3457,3971,3907,3456,[3969,899],900,901,902,903,904,[3969,905],3907,3906,3907,3521,3520,[3969,9787],[3458,10167,9883],9975,9976,[3906,9878],[3458,9782],3971,[3908,10167],[3969,10168],[3908,10169],[3457,10170],3906,3907,3907,3392,3908,3971,3457,3522,[3456,10167],[3456,10168],3588,3589,3969,[3522,10070],[3908,10071],[3520,10072],[3905,10073],[3456,10074],[3969,10071],[3906,10072],[3971,10073],[3393,10074],[3906,10075],3908,3520,3906,3908,3906,3971,3906,3394,3905,3588,3589,3522,[3522,10167],[3969,10168],[3457,10169],[3457,10170],[3520,10070],9974,[3906,9878],[3908,9782],3393,3969,3907,3905,3969,3908,[3971,9787],[3908,9879],[3456,9880],[3908,9881],[3969,9882],[3971,9879],[3971,9880],[3905,9782,5380],[3457,5381],[3971,5382],[3908,5383],3969,3906,3969,3906,3971,3906,3971,3522,3908,3907,3908,3908,3908,[3969,9691],[3905,9692],[3969,10075,9593],3907,3905,3392,3520,3907,3457,[3520,10070],9974,[3907,9589],[3907,9590],3969,3907,3394,3905,3906,3906,3522,3908,3458,3971,3905,[3906,5284],[3905,5285],[3971,5286],[3906,5287],3908,3969,[3920,3909,9613],[3919,9614],[3983,9515],3920,3920,3919,3983,[3919,9805],[3919,9901],9902,[3919,9707],3919,3919,3920,3981,[2768,3855],[2768,3854],3983,[3983,10088],[3919,10089],[3983,10090],[3920,10093],[3920,10185],[3920,10186],[3919,10187],[3983,10188],[3919,10088,9514],[2765,9703],[2831,9704],2830,2765,2830,[2767,9805],[2765,9901],9993,9994,9995,9996,9997,[2767,10091],[2830,10092],9992,9993,9994,[2830,9896],[2765,9897],[2832,9898],[2766,9899],[2832,9900],[2768,3980,9800],[2830,4048],3919,[3981,7198],[3919,7199],3983,[2767,3857],2831,2830,2831,2832,2832,2829,2831,2767,[2829,9805],[2829,9806,9814],[9902,9815],10006,[4097,10102],4096,4097,[4097,3910],3978,3978,3977,3914,3914,3911,[4097,4043],[4097,10097],10001,9905,9906,9907,9910,10006,[3914,10098],[3977,10099],10001,10002,10003,10006,[3913,10102],[3977,10196],[3914,10197],[4097,3915],4097,4097,4097,[4097,3847,10194],[3912,10097],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,9622,9623,10006,[3978,10102],3913,[4097,3979],4097,4097,[4097,10097],[4097,3782,10098],[3913,10099],[3914,10100],[4097,3787,10101],[4097,10098],[4097,3974,10099],[3977,10100],[3913,10101],[3977,10102],[3911,10196],[4097,4041,10197],[4097,4042,10097],10001,9905,9906,9907,9910,10002,10003,9905,9809,0,0,9814,9815,[4097,9620],4097,[4097,4038],[4097,3849],4097,[4097,4038],3912,3978,3977,3978,3977,3914,3978,3913,3914,3978,[3978,10097],10001,9905,9809,0,0,0,0,0,0,9814,9910,10002,10003,10004,10005,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3912,10098],[3914,10099],[3977,10102],[3978,10194],[3914,10195],[3977,10097],[3978,10098],[4097,3787,10099],[4097,10100],[3912,10101],[3978,10101],[3975,10102],[4097,3785],4097,[4097,3783],3976,[3977,10194],[3911,10195],[4097,4043],4097,[4097,3910],3914,3911,[4097,3850],4097,[4097,4038],3912,[3913,9619],9808,9809,0,0,0,0,0,0,9814,9906,9907,9809,0,9718,9719,[4097,9620],[4097,3848],[4097,3849],4097,4097,[4097,3784],[4097,3723],4097,[4097,3910],3978,3978,3977,[4097,3915],4097,[4097,3846],3911,[4097,4041],[4097,3850],4097,[4097,3910,9811],[3914,10000],10001,10002,10003,10006,[3911,10102],[4097,4043,10194],[4097,10195],[4097,10097],10001,10004,10005,10006,[3977,10007],[3914,9812],3978,[4097,3979],4097,4097,4097,[4097,3784],[4097,3720],[4097,3721],[4097,3722],3976,3911,[4097,4039,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,[796,1853],[859,1854],[860,1855],925,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,853,[789,1427],[853,1428],[853,1429],854,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[659,14],[660,14],[661,14],[662,14],[661,14],[662,14],[661,14],[662,14],[661,14],[662,14],[661,14],[662,14],[661,14],[662,14],[663,14],[664,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9718],[2829,9719,565],[3914,9620,565],[3977,565],[4097,3915,565],[4097,565],[4097,3783,565],[3976,565],[3978,565],[3978,9523,565],[2371,9616,565],[1987,9617],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3905,9494],[3393,4996],[3907,4997],[3522,4998],3457,3908,3457,3907,[3522,5188],5189,5190,[3392,5191],3521,3392,[3456,5188],5189,5190,[3908,5191],3905,[3522,9499],[3907,9403],3650,3651,3521,3457,3456,3905,3394,[3983,4033],[3920,4037],3983,[3920,4344],[3919,4345],[3920,4346],3920,[3919,4032],3393,3907,3520,3393,3906,[3906,963],964,965,966,967,968,[3971,969],3520,3907,3521,3908,[3908,9787],[3908,9883],9979,[3906,10071],[3969,10072],9974,[3907,9589],3905,3457,3457,3392,3971,3971,3908,3521,3906,3520,3457,3971,3971,3394,3520,3652,3653,3520,3522,[3456,10167],[3969,10168],[3971,10169],[3906,10170],[3521,10167],[3906,10168],[3520,10169],[3457,10170],3906,3907,3522,3969,3392,3908,3969,3522,3522,3522,3652,3653,3908,3522,3905,3971,3456,3969,[3458,10070],9974,[3906,9878],[3907,9879],[3457,9880],[3908,9782],3907,3908,[3906,9787],[3905,9883],9975,9976,9977,9978,9975,9976,[3908,9878,5476],[3907,9879,5477],[3908,9880,5478],[3971,9881,5479],[3908,9882],[3969,9782],3522,3906,3907,3971,3908,3971,3905,3908,3456,3907,3907,[3905,9691],[3458,9692],[3906,9593],3908,3906,3458,3521,3971,3905,3393,[3969,10070,9496],[3907,9685],[3907,9686],3906,3969,3969,3393,3969,3907,3908,3905,3905,3969,3971,[3458,5380],[3906,5381],[3906,5382],[3907,5383],3971,3907,[3983,3973,9709],[3983,9710],[3920,9611],3983,3919,3983,[3919,9805],[3983,9901],9997,[3919,9998],[3919,9803],3920,3920,3920,[2766,3921],2831,[2829,3789],3917,3919,[3919,10185],[3920,10186],3920,3919,3919,3920,3920,[3919,9610],[2768,9799],[2765,9800],2768,2766,[2768,9805],[2767,3789,9901],9997,[3726,10089],[3727,10090],[3728,10091],[3918,10092],[2832,3792,10093],[2767,10187],[2831,10188],[2829,10088],[2765,10089],[2766,10090],9992,9993,9994,9995,9996,[2830,3855,9896],[2765,9800],[2831,3853],3919,3983,3919,[2765,3921],2765,2766,2830,2832,2765,2767,2829,[2829,9805],[2829,9901,9622],[9902,9623],9911,[4097,10102],4097,4097,4097,[4097,4038],3912,3914,3913,3914,3911,[4097,3849],4097,4097,[4097,10097],10001,10002,10003,10006,[4097,3782,10102],[3914,10194],[3914,10195],[3911,10097],[4097,10098],[3912,10099],[3977,10102],3978,3977,3978,3975,[4097,3786],4097,4097,4097,[4097,3974],[3978,10097],9616,9617,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,10102],3914,3911,[4097,4043],4097,4097,4097,[4097,3910,10194],[3978,10195],[3978,10196],[4097,3851,10197],[4097,10194],[4097,4038,10195],[4097,4039,10196],[4097,4040,10197],[4097,4041],[4097,3850],4097,4097,[4097,10097],10001,10002,10003,10006,[3977,10098],[3913,10099],10001,9905,9906,9907,9910,9911,[4097,9716],4097,4097,4097,4097,4097,[4097,3974],3913,3913,3977,3913,3913,3913,3977,3977,3913,3914,[3977,10097],10001,9905,9906,9907,9906,9907,9908,9909,9910,10006,[3977,10098],[4097,3787,10099],[4097,10100],[4097,3782,10101],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10004,10005,9905,9906,9907,9908,9909,9906,9907,9908,9909,9906,9907,9908,9909,9910,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,9622,[3913,9623],10006,[4097,3785,10102],[4097,4038,10194],[4097,4039,10195],3912,3913,3914,3913,[3977,10194],[4097,3915,10195],[4097,10196],[4097,3974,10197],[3914,10197],3977,[4097,3979],4097,[4097,3974],3977,3978,[4097,3787],4192,[4097,3783],3976,3977,[4097,3787],4097,4097,4097,[4097,3847],[4097,4039,9715],9904,9905,9906,9907,9809,0,0,9814,9910,10002,10003,9905,9906,9907,9815,[4097,3719,9620],[4097,3723],4097,4097,4097,[4097,3782],3975,[4097,3786],[4097,3847],3912,3978,3911,[4097,3849],4097,[4097,3910],[4097,3787],4097,4192,[4097,3783],3976,3977,[4097,3851,10097],[4097,10098],[4097,3974,10099],[3911,10102],[4097,3849],4097,[4097,3784],[4097,3723],[4097,10097],[4097,3847,10100],[3912,10101],[3913,10102],3978,3977,3911,[4097,4043],4097,4097,[4097,3718],3976,3914,3978,3978,3911,[4097,3849],[4097,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,986,987,1917,1918,1919,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,[789,1491],[790,1492],[854,1493],918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[723,14],724,725,726,725,726,725,726,725,726,725,726,725,726,727,[728,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2832,629,629,629,629,629,629,629,629,629,629,2114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3393,9589],[3393,9590],[3521,5092],5093,5094,[3456,5095],3907,3908,3456,[3906,5284],[3905,5285],[3394,5286],[3908,5287],3457,3521,[3456,5284],[3907,5285],[3906,5286],[3971,5287],3908,3969,[3458,9499],[3520,9500],3971,3971,3521,3905,3520,[3983,3844],3919,3983,3920,3920,3983,3920,3919,3920,[3983,3841],3971,3907,3905,3971,[3393,1027],1028,1029,1030,1031,1032,[3971,1033],3906,3907,3971,3969,[3969,9692],9979,[3969,10075],[3527,3972,10167],[3906,167,10168],[403,10070],[3907,9685],3906,3906,3971,3969,[3456,131],[3907,132],[3907,133],[3908,134],[3905,135],[3908,136],[3969,137],3520,3969,3971,3971,3969,3969,3458,3908,3906,3969,[3458,131],[3458,132],[3971,133],[3522,134],[3458,135],[3905,136],[3971,137],3520,3971,3521,3457,3392,3907,[3905,3461],3520,3520,3971,3456,3523,3456,3971,3520,3456,3969,3456,[3522,10070],9974,9975,9976,[3907,9878],[3394,9879],[3971,9880],[3522,9883],9979,[3908,10071],[3458,10072],[3522,10073],[3458,10074],[3907,10071],[3969,10072],9974,9975,9976,9977,9978,[3905,9878],[3906,9782],3971,[3906,4996],[3907,4997],[3969,4998],3905,3907,3907,3456,3906,3969,[3971,9787],[3905,9788],[3458,9593],3908,3969,3971,3520,3905,3521,3908,[3906,9592],[3907,9589],[3905,9590],3971,3971,3971,3908,3457,3906,3906,[3908,9787],[3906,9881],[3905,9882],[3906,9782],[3969,5476],[3905,5477],[3908,5478],[3971,5479],3520,3969,[3920,3973,9805],[3981,9806],[3920,9611],3983,3983,[3983,9613],[3920,9614],9997,[3983,10093],3918,3919,3919,3917,3983,[2768,3985],2766,[2829,3788],3920,3917,3920,3919,3983,3919,3920,3919,3919,[3919,9706],9895,[2831,9896],[2829,9897],[2832,9898],[2829,9901],9997,[3920,10093],[3919,10185],[3981,10186],[3983,10187],[3983,10188],3981,[2767,3729],2831,2767,[2830,10185],[2829,10186],[2831,3724,10088],[3983,10089],[3920,10090],[3983,10091],[3917,10092],9992,[2767,9607],[2768,9608],[2765,3854],3917,3919,[2832,3793],2767,2829,2829,2765,[2832,3724],[2765,3725],[2829,3791,9805],[2829,9901],[9997,9718],[3978,9998,9719],[4097,10007,9524],4097,4097,[4097,3718],[4097,3723],4097,[4097,3847],3912,3914,3977,[4097,3979],4097,4097,4097,[4097,3783],[3976,10097],[3913,10098],[4097,3979,10099],[4097,10102],[4097,3846],3914,3977,[4097,3979],[4097,10194],[4097,3847,10195],[4097,4039],3912,3977,3977,3977,3975,[4097,3720],[4097,3721],[4097,3722],3976,3913,9712,9713,0,0,0,0,0,0,0,0,0,0,0,9814,9815,3914,3978,[4097,3979],4097,4192,4097,[4097,3783],3976,3913,3977,[4097,3915],4097,4097,4097,4097,4097,4097,[4097,3783],[4097,3720],[4097,3722],[4097,3786,10097],[4097,10098],[4097,10099],[3912,10102],[3913,10194],[3913,10195],[3978,10097],10001,10002,10003,10006,[3975,10007],[4097,3722,9812],[4097,3723],4097,4097,4097,[4097,3783],3976,3913,3978,3911,[4097,4040],3912,3978,3914,3913,3913,3914,3978,[3977,10097],10001,10002,10003,10002,10003,10004,10005,10006,[3978,10102],[3914,10194],[4097,3851,10195],[4097,10196],[4097,3910,10197],[3977,10097],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3977,10100],[3977,10101],10001,10002,10003,10004,10005,10002,10003,10004,10005,10002,10003,10004,10005,10006,[4097,10098],[4097,10099],10001,9905,9809,0,0,9814,9906,9907,9809,0,0,0,9718,[3913,9719],[3977,10102,9524],3975,[4097,3786],4097,[4097,3847],3912,3911,[4097,4041],[4097,4042],[4097,3850],[4097,3783],3976,3978,3911,[4097,3850],4097,[4097,3974],3977,3913,[4097,3915],4097,[4097,3782],3977,3913,[4097,3851],4097,4097,[4097,3784],[4097,3720],[4097,3721,9811],[3976,10000],10001,10002,10003,9905,9906,9907,9910,10006,10098,10099,10001,10002,10003,9911,[3911,9716],[4097,4043],4097,4097,4097,[4097,3910],3978,[4097,3787],4097,[4097,4038],[4097,4039],[4097,4043],4097,4097,[4097,3974],[4097,3851],4097,4097,[4097,4038],[4097,4039],3912,[4097,3915],[4097,10194],[4097,4038,10195],[4097,3849],4097,[4097,3718],3976,[4097,3787],4097,[4097,10196],[4097,3782,10197],[3914,10198],3977,3911,[4097,3850],4097,4097,[4097,3783],3976,3978,3914,3913,3913,[4097,3979],4097,[4097,9811],[4097,3783,10000],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,1555,1556,1557,982,983,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[787,14],788,789,790,789,790,789,790,789,790,789,790,789,790,791,[792,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2766,693,693,693,693,693,693,693,693,693,693,2371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3906,9685],[3456,9686],[3905,5188],5189,5190,[3457,5191],3392,3521,3456,[3907,5380],[3520,5381],[3393,5382],[3458,5383],3521,3458,[3458,5380],[3905,5381],[3907,5382],[3969,5383],3907,3906,3969,[3457,9499],[3520,9500],3456,3908,3522,[3920,3781],3983,3920,3983,3920,3920,3983,3920,3983,3983,3981,[3919,3968],3971,3905,3906,[3905,1091],1092,1093,1094,1095,1096,[3905,1097],3907,3905,3969,[3907,9595],[3971,9596],[3528,3970,10075],3392,[3906,173],[3906,231],[403,9496],[3907,9589],[3908,9590],3969,3521,3971,[3971,195],196,197,198,199,200,[3905,201],3908,3906,3906,3522,3521,3908,3457,3971,3521,3969,[3520,195],196,197,198,199,200,[3971,201],3457,3969,3971,3971,3457,3906,3907,3457,3520,3969,3522,3905,3456,3971,3522,3457,3971,3905,3969,[3969,10070],[3907,10071],[3908,10072],9974,9975,9976,9979,[3905,10075],[3457,10167],[3907,10168],[3907,10169],[3456,10170],[3906,10167],[3522,10168],[3969,10070],[3458,10071],[3971,10072],[3392,10073],[3969,10074],9974,[3969,9878],[3969,9782],[3906,5092],5093,5094,[3905,5095],3969,3969,3521,3905,[3905,9787],[3905,9883],9884,[3522,9689],3457,3392,3520,3457,3520,3908,3907,[3971,9592],[3969,9781],[3392,9782],3520,3905,3908,3905,[3906,9787],[3908,9879],[3969,9880],[3906,9883],9977,9978,[3392,9878],[3907,9800],3392,3971,3521,3907,[3971,9805],[3983,3843,9901],9902,[3920,9707],3920,3918,[3983,9613],[3920,9614],[3919,10093,9515],3919,3920,3920,3919,3981,[2831,4045],[2829,4049],2766,[2766,3852],3920,3981,3983,3981,3918,3983,3920,3983,3918,[3919,9802],[2766,3793,9991],9992,9993,9994,9997,[2829,3916,10093],3920,3918,3983,3919,3983,3919,[2829,3793],2829,2829,2830,[2768,3790],3920,[3983,10185],[3920,10186],[3983,10187],[3983,10188],[3983,10088,9514],[2765,3729,9703],[2765,9704],2765,[2765,4044],3919,[2831,3857],2832,2766,2830,2766,[2768,3788],[3919,9805],[3919,9901],9997,[3978,10093,9718],[3978,9719],[4097,3719,9620],[4097,3785],[4097,3783],3976,[4097,3787],4097,[4097,3783],3976,3978,3913,3975,[4097,3785],4097,[4097,3784],3976,3977,[3911,10194],[4097,3849,10195],4097,[4097,3910],3911,[4097,4039],[4097,3849],4097,4097,4097,[4097,4038],3912,3977,3978,3911,3912,3977,3914,3914,3911,9808,9809,0,0,0,0,9814,9906,9907,9906,9907,9908,9909,9910,9911,3914,3911,[4097,3849],4097,[4097,3718],[4097,3719],3976,3978,3978,3978,3975,[4097,3719],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3719],3976,3977,3977,[4097,3787],[4097,10194],[4097,10195],[4097,3848],3912,3978,3977,[4097,3787,10097],[4097,10098],[4097,10099],[3912,10102],3914,3977,3975,[4097,3720],[4097,3721],[4097,3722],3976,3977,3978,3911,[4097,3849],4097,[4097,3782],3913,3914,3914,3978,3913,3977,3978,[3977,10097],[3977,10098],[4097,3915,10099],[4097,10098],[4097,10099],[4097,10100],[3974,10101],[3913,10102],3978,3978,[4097,3915],4097,[4097,3974],3978,[3978,10097],9616,9617,0,0,0,0,0,0,0,0,0,0,0,9718,9719,10006,[3977,10102],[3977,10196],[3978,10197],[4097,3979,10097],[4097,10098],[4097,10099],[4097,10100],[4097,3782,10101],[3978,10098],[3978,10099],[3913,10100],[3977,10101],[3977,10098],[3913,10099],[3978,10100],[4097,3787,10101],[4097,10102],[4097,10194],[4097,3783,10195],[3976,10097],10001,9905,9906,9907,9910,10002,10003,9905,9809,0,0,9814,[3913,9815],[3978,9620],3978,3975,[4097,3722],[4097,3723],[4097,4038],[4097,3849],4097,4097,[4097,3783],3976,3978,3913,[3975,9330],[4097,3785,9331],[4097,9332],[4097,3974,9333],3977,3978,[4097,3979],4097,[4097,3910,9330],[3913,9331],[3913,9332],[4097,3915,9333],4097,4097,[4097,3974],3914,3914,3911,[4097,3849,10097],[3912,10098],[3977,10099],10001,10002,10003,10006,[4097,3846,10102],[4097,3787,10194],[4097,10195],[4097,10097],[4097,3782,10098],[3978,10099],[3911,10007],[4097,3850,9812],4097,4192,[4097,3784],[4097,3719],3976,3978,[4097,3915],4097,4097,4097,4097,4096,[4097,3783],3976,[4097,3915],4097,4097,4097,4097,[4097,3848],[4097,4043],4097,4097,4097,4097,[4097,3974],3914,[4097,3915],4097,4096,[4097,3846],3977,3913,[4097,3787],4097,4096,[4097,3784],3976,3914,3913,3977,3913,3978,[4097,3979],4097,4097,[4097,3974],[3914,10097],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[851,14],852,853,[854,448],[853,449],854,853,854,853,854,853,854,853,854,855,[856,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9814],[2766,9815,757],[4097,9620,757],[4097,757],[4097,757],[4097,757],[4096,757],[4097,757],[4097,757],[4097,9619,757],[2370,9712,757],[2434,9713],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3969,9781],[3906,9782],[3908,5284],[3969,5285],[3456,5286],[3520,5287],3908,3394,3394,[3457,5476],[3905,5477],[3520,5478],[3394,5479],3908,3457,[3456,5476],[3969,5477],[3393,5478],[3905,5479],3906,3907,3907,3906,[3907,9499],[3522,9500],3520,3971,[3983,3845],3920,3920,3919,3981,3919,3919,3919,3919,3920,3920,[3920,3904],3521,3394,3971,[3522,1155],[3906,1156],[3971,1157],1158,[3969,1159],[3907,1160],[3907,1161],3906,[3905,3461],3971,3908,[3906,9499],[3908,173,9500],[3393,102],[3906,231],403,[403,9592],[3908,9685],[3908,9686],3906,3907,3908,[3907,259],260,261,262,263,264,[3971,265],3520,3969,3908,3459,3457,3521,3908,3457,3908,3522,[3969,259],260,261,262,263,264,[3905,265],3458,3905,3456,3458,3522,3392,3906,3456,3906,3907,3971,3908,3584,3585,3971,[3969,645],[3908,646],[3521,647],3457,3908,[3522,10167],[3521,10168],[3456,10070],[3392,10071],[3906,10072],[3969,10075],3905,3457,3906,3458,3906,3906,3521,3969,[3907,10167],[3907,10168],[3521,10169],[3458,10170],[3457,10070],9974,[3907,9589],[3969,9590,5188],5189,5190,[3906,5191],3906,3969,3905,[3905,9787],[3522,9883],9979,[3907,9980],[3521,9785],3521,3521,3457,3969,3458,3905,3971,[3520,9688],9877,[3905,9878],[3393,9879],[3906,9880],[3971,9881],[3907,9882],[3971,9883],9975,9976,9979,[3907,10073],[3908,10074],9974,[3907,9799],[3971,9897],[3394,9898],[3907,9899],[3920,4033,9900],[3920,3843,9901,9800],9997,[3983,9998],[3918,9803],3919,3983,[3919,9709],[3983,9710],[3919,9611],3920,3981,3919,3981,[2829,3856,566],[2767,567],2767,2831,[2829,3916],3919,3920,3983,3919,3983,3920,3918,3919,3983,3920,[2765,3857],[2831,10088],[2767,10089],[2768,10090],[2765,3789,10093],3920,3920,3919,3918,3983,3920,3919,[2829,3921],2830,2832,2765,[2767,3980],3919,3920,3920,3983,3918,[3983,9610],[2766,3985,9799],[2766,9800],2832,2767,[2830,3980],[2829,3921],[2829,9805],[2768,9897],[2765,9898],[2831,9899],[2768,3852,9900],[3920,9901,9809],9997,[3978,10093],[3978,9814],[3978,9815],[3977,9620],3975,3976,3978,[4097,3915],4097,[4097,3847],3912,3978,3914,3913,3975,[4097,3719],3976,3978,3913,3975,[4097,3723],4097,[4097,4038],[4097,3849],4097,4097,4097,4097,4097,4097,[4097,3782],3914,3911,[4097,3849],[4097,4038],3912,3914,3911,[4097,4043],9904,9905,9906,9907,9908,9909,9910,10002,10003,10002,10003,10004,10005,10006,[4097,4041,10007],[4097,4042],[4097,3850],4097,[4097,3784],3976,3914,3911,[4097,4039],3912,3914,3978,3913,3914,3978,3914,3914,3977,3914,3978,3978,[4097,3851],4097,4097,4097,[4097,3974],3978,3914,[4097,3851],[4097,10194],[4097,10195],[4097,3974],3913,3977,3977,3977,3914,3913,3914,3913,3977,[4097,3979],4097,4097,[4097,3846],3913,3978,3978,3977,3978,3978,3914,3977,[3914,10194],[4097,3979,10195],[4097,10194],[4097,10195],[4097,3783,10196],[3976,10197],3914,3913,3911,[4097,3850],4097,[4097,4038],3912,3914,[3914,9712],9713,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,10102,9524],3914,3977,3911,[4097,3849],[4097,10194],[4097,10195],[4097,10196],[4097,3846,10197],[3977,10194],[3913,10195],[3978,10196],[3977,10197],[3913,10194],[3977,10195],[3978,10196],[4097,3851,10197],[4097,10198],4097,[4097,3782],3977,[3914,10097],10001,10002,10003,10006,[3913,10098],[3914,10099],10001,9905,9906,9907,9910,9911,[3912,9716],3914,3914,3977,[4097,3787],4097,4097,4096,[4097,3718],3976,3977,3977,[3978,9425],[2434,9426],[2435,9427],[2370,9428],[2370,9429],[3911,9430],[4097,4040,9330],[4097,3850,9333],[4097,9425],[2371,9426],[2434,9427],[2370,9428],[2370,9429],[4097,9430],[4097,3783],3976,3913,3914,[4097,3787],4097,[4097,3782,10194],[3977,10195],[3913,10097],[4097,3915,10098],[4097,10099],[4097,10102],[4097,3910],[4097,3851],4097,4097,[4097,3846,10194],[3978,10195],[4097,3979],4097,[4097,3783],[4097,3719],3976,3913,3978,[3977,9330],[4097,3979,9331],[4097,9331],[4097,9332],[4097,9333],4097,[4097,3783],3976,3978,3975,[4097,3785],4097,[4097,3718],[4097,3720],[4097,3721],[4097,3722],[4097,3785],4097,4096,4097,[4097,3782],3977,3975,[4097,3785],4097,[4097,3910],3978,3914,[4097,3851],[4097,3718],[4097,3719],3976,3914,3914,3914,3913,3911,[4097,4042],[4097,4043],4097,4192,[4097,3974],3978,[3977,10097],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[787,14],788,789,[790,512],[789,513],790,789,790,789,790,789,790,789,790,791,[792,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3456,9878],[3969,9782,5380],[3908,5381],[3906,5382],[3907,5383],3520,3908,3394,3522,3907,3969,3456,3969,3520,3520,3969,3908,3456,3971,3906,3908,3456,[3908,9595],[3394,9596],[3521,9497],3520,[3983,3909],3981,3920,3983,3981,3983,3920,3920,3918,3918,3919,[3983,3968],3969,3969,3908,3908,3522,[3908,1221],[3908,1222],[3905,1223],3905,3971,3520,3907,3908,3520,[3905,9595],[3907,9596],[403,9497],403,403,[403,9592],[3908,9589],[3906,9590],3394,3908,3456,[3456,323],324,325,326,327,328,[3394,329],3456,3458,3907,3521,3906,3520,3520,3392,3521,3457,[3522,323],324,325,326,327,328,[3456,329],3521,3906,3521,3456,3971,3521,3522,3908,3906,3971,3521,3521,3648,3649,[3457,708],[3521,709],710,[3969,711],[3905,712],3457,3520,3969,3905,[3522,10167],[3906,10168],3971,3906,3457,3520,3458,3521,3522,3458,3457,3908,3458,3586,3587,3906,[3522,10070,9496],[3907,9685],[3969,9686,5284],[3906,5285],[3906,5286],[3905,5287],3907,[3905,9595],[3971,9787],[3969,9883],9979,[3906,10075],3971,3456,3521,3520,3456,3520,3907,3520,3971,[3969,9784],[3908,9973],9974,9975,9976,9977,9978,9979,[3905,10071],[3908,10072],[3905,10075],[3457,10169],[3394,10170],[3522,10070],9895,9993,9994,9995,9996,[9997,9896],[3983,10093,9800],3983,3920,3920,3919,[3920,9805],[3920,9806],[3920,9611],3917,3983,3983,[2767,3855],[2767,630],[2765,631],2767,[2768,3789],3919,3919,3920,3919,3920,3919,3918,3920,3919,3920,3918,[2767,3921,566],[2767,567],[2768,10185],[2831,10186],[2766,3980],3920,3983,3919,3919,3983,3920,3918,[2829,3855],2766,2829,[2831,3724],3920,3920,3919,3920,3920,3983,[3983,9706],9895,[2831,3792,9896],[2767,9897],[2831,9898],[2831,3980,9899],[2830,3856,9900],[2765,9901],9993,9994,9995,9996,[9997,9905],[3978,10093,9906],[3978,9907],[3978,9910,9622],[9911,9623],[3978,9716],3977,3914,3913,3975,[4097,3785],[4097,3718],3976,3913,3978,3914,3914,3913,3978,3977,3913,3977,[4097,3979],4097,4097,4097,4097,[4097,3783],[4097,3723],4097,4097,4097,[4097,3846],3913,3975,[4097,3785],[4097,3718],3976,3911,[4097,3849],[4097,3783],[4097,3719,10000],10001,10002,10003,10004,10005,10006,[3977,10098],[3977,10099],[3913,10098],[3913,10099],[4097,3787,10100],[4097,10101],[4097,10102],4097,4097,4097,4097,[4097,3782],3914,3911,[4097,3849],4097,[4097,3782],3977,3914,3911,[4097,4039],[4097,4040],3912,3914,3914,3977,3913,3914,[4097,3915],[4097,3784],[4097,3719],[4097,3785],[4097,3847],[4097,4039],3912,[4097,3915],4097,[4097,3718],3976,3978,3978,3978,[3913,9814],[3978,9906],[3914,9907],[3978,9809],3911,[4097,4042],[4097,4043],4097,4097,[4097,3910],3977,3977,3977,3914,3978,3977,3914,3914,3977,[4097,3787],4097,[4097,9330],[4097,3974,9333],[3914,9330],[3913,9331],[3978,9332],[4097,3979,9333],4097,4097,[4097,3783],3976,3978,[3913,9808],9809,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3913,9620],3977,3977,3975,[4097,3785],4097,4097,4097,[4097,3910],3977,3977,3978,3913,3913,3978,3977,[4097,3915],4097,4097,[4097,3910],3978,3977,[4097,3787,10097],[4097,10098],[4097,3847,10099],[3912,10102],[3914,10194],[3914,10195],[4098,3979,10097],10001,10002,10003,10006,[4097,10007],[4097,3782,9812],3978,3978,3913,[4097,3915],4097,4097,4097,[4097,3847],[3912,9330],[3977,9333],[3978,9425],[2435,3183,9521],2114,2371,2371,2371,[2434,9526],[2370,9426],[2370,9429],[2370,9521],2434,1923,2114,2434,[2435,9526],[3976,9527],3913,3914,3914,[4097,3915],4192,[4097,3846],3977,3978,[4097,3979,10194],[4097,10195],[4097,3783],3976,[4097,3915],4097,4097,[4097,3910],3911,[4097,3849],4097,[4097,3974],3914,[3978,9330],[3978,9333],[3978,9425],[2434,9426],[2371,9427],[2370,9427],[2434,9428],[2435,9429],[4097,3783,9527],3976,3978,3978,3977,[4097,3979],4097,[4097,3847],3912,3978,3978,[3975,9330],[4097,3785,9331],[4097,9332],[4097,9333],[4097,3846],3977,3977,[4097,3787],4097,[4097,3847,9329],[3912,9330],[3977,9333],[4097,3915],[4097,3782],3978,3914,3914,3914,3913,3914,[4097,3787],4097,4097,4097,[4097,3784],3976,3977,3977,[4097,3979,10097,9523],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[851,14],852,853,[854,576],[853,577],854,853,854,853,854,853,854,853,854,855,[856,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],9974,[3393,9878,5476],[3393,9782,5477],[3394,5478],[3521,5479],3521,3905,3521,3907,3457,3520,3458,3521,3458,3393,3907,3971,3907,3971,3905,3971,3906,[3521,9691],[3906,9692],[3394,9593],3521,[3983,3843],3920,3919,3983,3983,3920,3917,3919,3983,3919,3920,[3919,3776],3907,3971,3906,3905,3521,3908,3907,3907,3905,3905,3394,3971,3908,3906,[3905,9691],[3971,9692],[403,9593],595,403,[403,9592],[3520,9589],[3971,9590],3908,3971,3971,[3458,387],388,389,390,391,392,[3458,393],3905,3906,3520,3906,3971,3905,3971,3394,3906,3906,[3522,387],388,389,390,391,392,[3521,393],3906,3906,3907,3523,3457,3969,3522,3971,3908,3969,3522,3971,3905,[3521,771],[3457,772],773,774,775,[3457,776],[3458,777],3522,3971,3458,3457,3521,3520,3522,3906,3521,3969,3456,3521,3458,3456,3907,3521,3650,3651,3457,[3971,9592],[3908,9589],[3971,9590,5380],[3907,5381],[3969,5382],[3971,5383],3905,[3520,9691],[3457,9692],[9979,9497],[3457,10075],3520,3456,3522,3458,3907,3905,3456,3458,3971,3971,3906,3456,[3907,10070],[3521,10071],[3920,3781,10072],[3919,10073],[3981,10074],[3983,3968,10075],[3520,10167],[3906,10168],3905,3908,3393,[3908,9613],[3971,10070,9614],[3969,10089,9515],[3906,10090],[3983,4037,10091],[3983,10092],9992,[3983,9896],[3983,9897],[3920,9898],[3983,9899],[3920,9900],[3983,9901],9902,[3920,9707],3919,3920,[2831,4049],2832,[2765,694],[2830,695],[2829,3790],3920,3983,3919,3920,3920,3918,3983,[2767,4045],3917,3918,3983,3919,[2768,3856,630],[2765,631],2765,[2765,3724],3919,3919,3919,3983,[2766,3855],[2767,3853],[2830,4045],[2765,4049],2768,2766,[2832,3789],3917,3983,3919,3981,3983,3920,3919,[3919,9802],[3919,9991],9992,9993,9994,9995,9996,9997,[2831,10089],[2829,10090],[2768,10091],[2767,3980,10092],10001,10002,10003,[10006,9718],[3978,10007,9719],[3978,9812],3978,3977,3911,3912,3975,3976,3913,3913,3913,3914,3978,3978,3977,3911,[4097,4041],[4097,4042],[4097,3849],4097,4097,[4097,3718],[4097,3719],3976,[4097,3787],4097,4097,4097,[4097,3910],3977,3913,3975,3976,3978,[4097,3979],4097,[4097,3782],3977,[3914,10097],[3977,10098],[3911,10099],[4097,10100],[4097,10101],[4097,3846,10102],[3914,10194],[3913,10195],[3977,10194],[3913,10195],[4097,3915,10196],[4097,10197],4097,4097,[4097,3783],[4097,3723],4097,[4097,3910],3978,[4097,3787],4097,4097,[4097,3910],3977,3911,[4097,3849],4097,4097,[4097,3847],[4097,4041],[4097,4042],3912,3977,3913,3975,3976,3978,[4097,3979],4097,4097,[4097,3848],[4097,4043],4097,[4097,3974],3913,3977,3977,[3914,9814],[3977,9910],10002,10003,[3978,9905],[4097,3787,9809],4097,4097,4097,[4097,3784],3976,3977,3978,3914,3978,3978,3914,3977,3978,3913,[4097,3915],[4097,9425],[2435,9426],[2434,9429],[2370,9426],[2435,9427],[2371,9428],[2370,9429],[4097,9430],[4097,3783,9330],3976,3978,3977,9904,9905,9906,9907,9809,0,0,9814,9908,9909,9906,9907,9906,9907,9815,[3978,9620],3913,3914,3978,3975,[4097,3786],[4097,9330],[4097,3784,9333],3976,3914,3913,3978,3977,3913,3977,3911,[4097,3850],4097,[4097,3783],3976,3977,3978,[4097,3851],[4097,10194],[4097,10195],[4097,3782],3913,3911,[4098,3850],[4098,3782,10097],[3913,10098],[4097,3979,10099],[4097,10102],4097,[4097,3910],3978,3911,[4097,4042],[4097,3850],4097,[4097,3783],[4097,3723],[4097,9425],[2371,9426],[2434,9429],[2371,3242,9521],[2435,3247],2371,2434,2370,2371,2435,2370,2434,2434,1922,2434,2370,2370,[2435,9622],[2434,9623],3978,3911,[4097,4042],[4097,4043],4097,[4097,3910],3913,3911,[4097,4043],4097,[4097,3782],3914,3975,[4097,3785],[4097,9330],[4097,3974,9331],[4097,3979,9332],[4097,3783,9333],[4097,3719],3976,[3977,9425],[2435,9426],[2371,9429],[2370,9521],2435,2435,2370,2434,[2371,9622],[2435,3052,9623],[3978,9330],[3978,9331],[3913,9332],[3913,9333],3975,[4097,3785],4097,[4097,3782],3914,[3977,9425],[2370,9426],[2434,9427],[2370,9428],[2370,9429],[4097,3846,9527],3977,3914,[4097,3915,9330],[4097,9333],[4097,9425],[2435,9426],[2434,9429],[4097,3787,9527],[4097,3846],3978,3911,[4097,4039],[4097,4040],3912,3913,[4097,3915],4097,[4097,3783],[4097,3719],3976,3978,3914,3911,[4097,4043,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[787,14],788,789,790,789,790,789,790,789,790,789,790,789,790,791,[792,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],[9974,9496],[3908,9589],[3521,9590],3520,3457,3456,3393,3457,3394,3907,3905,3905,3394,3458,[3908,4996],[3905,4997],[3908,4998],3457,3906,3906,[3905,9787],[3457,9788],[3456,9788],[3458,9593],[3920,3844],3920,3919,3919,3920,3983,3981,3983,3919,3919,3918,3983,[3920,3840],3908,3457,3394,3905,3908,3393,3906,3971,3522,3457,3905,3969,3906,3907,[3971,9691],[3521,9692],[403,9593],403,403,[3907,37,9592],[3458,9685],[3456,9686],3969,3907,3905,[3458,451],452,1536,1537,1538,456,[3458,457],3522,3521,3456,3908,3906,3908,3906,3521,3969,3392,[3521,451],452,1536,1537,1538,456,[3908,457],3906,3907,3456,3905,3905,3456,3969,3521,3906,3458,3907,3971,3522,[3521,835],836,837,838,839,840,[3520,841],3458,3908,3908,3906,3908,3971,3456,3969,3456,3907,[3394,15184],[3969,15185],[3520,15186],3906,3520,3971,3522,3905,3971,[3969,9592],[3907,9781],[3971,9686,5476],[3521,5477],[3906,5478],[3907,5479],3908,[3457,9787],[3521,9788],[3971,10075,9593],3521,3971,3521,3522,3969,3908,3522,3458,3908,3395,3905,3905,3906,3458,[3906,10167],[3919,3845,10168],[3919,10169],[3983,10170],[3920,3776],3522,3907,3588,3589,3393,[3906,9709],[3907,9710],[3969,10185,9611],[3920,3844,10186],[3983,10187],[3919,10188],[3920,10088],9992,9993,9994,9995,9996,9997,[3919,9998],[3919,9803],3920,[2765,3855],2765,[2829,3789],[2767,3726],[2832,3728],3917,3920,3919,3920,3983,3981,3983,[2829,3855],2767,[2767,3980],3920,3919,[2830,4049],[2765,694],[2768,695],[2766,3790],3919,3919,3920,3920,[2766,3985],2832,2830,2765,[2765,9516],2765,2829,[2830,3980],3918,[3983,9513],3983,3919,3919,3917,3920,3920,3983,[3983,10088],[2765,3855,10089],[2768,10090],[2766,3980,10091],[2768,3793,10092],[2830,10093],[2767,10185],[2831,10186],[2768,3789,10187],[3983,10188],[3983,10097],[3919,10098],[3917,10099],[2766,3855,10102,9718],[2831,9719],[3913,9524],3977,3911,[4097,3849],[4097,3848],3912,3978,3978,3914,3914,[3977,9330],[3978,9330],[3914,9333],3911,[4097,3849],4097,4097,[4097,3718],[4097,3785],[4097,3783],3976,3977,3913,[4097,3851],4097,4097,4097,[4097,4038],3912,3977,3977,3978,3911,[4097,3849],4097,[4097,3910],3977,3977,[3911,10194],[4097,3849,10195],[4097,10196],[4097,10197],[4097,3910],3914,3914,3913,3913,[4097,3979],4097,[4097,3718],[4097,3719],3976,3975,[4097,3719],3976,3914,[4097,3915],4097,[4097,3784],3976,3914,3975,[4097,3785],4097,4097,4096,4096,4097,[4097,3848],3912,3978,3913,3978,3913,3975,[4097,3719],[4097,3786],4097,4097,[4097,3783],3976,3977,3913,[3977,9814],[3977,9910],10006,[4097,10098],[3912,10099],10001,[4097,9905],[4097,9809],[4097,3784],[4097,3719],3976,3978,3911,3912,3978,3914,3977,3913,3913,3914,3977,[4097,3979,9520],[2435,9521],2371,2371,2370,2370,2435,2371,[2435,9526],[2435,9426],[3914,9430],3913,3913,[3977,10000],10001,10002,10003,9905,9906,9907,9910,10004,10005,10002,10003,10002,10003,9911,[3914,9716],3977,3914,3977,3978,[3787,9425],[2371,9426],[2370,9429],[3977,9430],3914,3977,3914,3913,[3913,9330],[3914,9333],[3975,9330],[4097,9331],[4097,9332],[4097,3974,9333],3977,3913,3914,[4097,3915],[4097,9330],[4097,9331],[4097,3846,9332],[3913,9333],[4098,3979],4098,[4098,3846],[3913,10194],[3975,10195],[4097,3785],4097,[4097,3847],[4097,4039],[4097,3849],4097,[4097,3718],[4097,3719],3976,[3975,9520],[2370,9521],2370,1923,[2370,3050],3179,[2371,2987],[2370,3054],2435,2371,2434,2434,2370,2434,2371,2434,2114,1987,2370,[2370,9526],[3911,9527],[4097,3849],4097,[4097,9330],[4097,9331],[4097,3974,9332],[3911,9333],[4097,3849],4097,4097,[4097,3910],[3977,9330],[3913,9333],[3979,9425],[2371,9426],[2435,9427],[2370,9428],[2370,9429],[3977,9430],[3914,9425],[2435,9521],2434,2435,1987,2370,2370,2435,2371,[1986,3052],[3246,9526],[2371,9426],[2434,9427],[2434,9428],[2370,3178,9429],[3914,9430],[4097,3787],4097,[4097,3910,9330],[3914,9333],[2370,9616],[2370,9617],2434,2371,2371,[2370,9526],[3977,9527],[3913,9425],[2435,9426],[2435,9429],[2435,9521],2434,[2370,9718],[2435,9719],[4097,3846,9330],[3911,9333],[4097,3849],4097,4097,[4097,3848],[4097,4042],[4097,4043],4097,[4097,3974],3913,3914,3914,3978,[4097,3979],[4097,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[851,14],852,853,854,853,854,853,854,853,854,853,854,853,854,855,[856,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3520,9685],[3522,9686],3393,3906,3905,3908,3522,3458,3394,3457,3458,3457,3905,[3969,5092],5093,5094,[3907,5095],3971,[3971,9787],[3905,9883],9884,9884,[3983,3973,9689],3920,3920,3919,3920,3917,3920,3920,3983,3919,3917,3983,3983,[3919,3904],3906,3907,3908,3905,3521,3521,3905,3971,3906,3969,3969,3971,3906,3971,[3522,9595],[3971,9596],[403,9593],403,[3522,37],[3969,9688],[3905,9589],[3906,9590],3392,3906,3907,[3969,515],516,1600,1601,1602,520,[3458,521],3906,3456,3522,3520,3905,3908,3457,3521,3906,3522,[3522,515],516,1600,1601,1602,520,[3521,521],3393,3969,3906,3458,3908,3457,3456,3907,3456,3521,3457,3520,3522,[3520,899],900,901,902,903,904,[3906,905],3458,3458,3458,3520,3522,3908,3905,3458,3908,3522,[3905,15248],[3522,15249],[3456,15250],[3394,15251],[3969,15252],3522,3906,3521,3908,[3521,9688],9877,[3969,9878],[3908,9879],[3971,9880],[3905,9881],[3905,9882],[3522,9883],9884,[3521,9689],3394,3395,3522,3521,3521,3458,3521,3457,3908,3456,3905,3969,3456,3392,3457,[3919,3909],3919,3919,[3920,3840],3456,3908,3652,3653,3393,[3905,9805],[3905,9806],[3983,3973,9611],3920,3917,3919,3917,[3920,10088],[2766,3921,10089],[2831,10090],[2766,3980,10091],[3919,10092],[3919,10093],3919,3983,3919,[2765,3791],2831,[2831,3980],3983,3983,3919,3983,3919,3981,3918,3983,[2831,3985],2766,2765,[2831,3788],3920,3983,[2830,3726],[2829,3727],[2830,3728],3983,3983,[3920,4249],3920,3920,[2766,3921],2830,2767,2765,[2766,9612],[2829,9515],2766,[2830,3854],[2830,4045,9514],[2831,4046,9609],3919,3919,3919,3920,3919,3919,3983,[2766,3793],[2766,10185],[2766,10186],[2766,3788,10187],[2831,3857,10188],2766,2766,2766,[2830,3980],3920,3983,[3920,10194],[2766,3855,10195],[2831,9718],[2768,9719],[3913,9620],3914,[4097,3787],4097,4097,[4097,3974],3978,3913,3978,[3978,9425],[2435,9426],[2370,9426],[2435,9429],[3975,9430],[4097,3785],4097,4097,[4097,3782],3975,3976,3913,3913,3913,[4097,3915],4097,[4097,3718],[4097,3785,9330],[4097,9331],[4097,3782,9332],[3978,9333],[3913,9330],[3914,9331],[4097,3979,9332],[4097,9333],[4097,3783],3976,3914,3914,[4097,3787],4097,4097,4097,[4097,3848],3912,3978,3978,3978,[4097,3979],4097,[4097,3974],3978,3977,3914,3914,3977,3977,3975,[4097,3719],3976,3913,3914,3914,3975,[4097,3722],[4097,3719],[4097,3786],4097,4097,[4097,3783],3976,3914,3977,3977,3978,3913,3914,[4097,3787],[4097,3718],[4097,3719],3976,3914,3914,[3913,9622],[3977,9623],10006,[4097,10102],[4097,10194],[4097,3974,10195],[3977,10097],10001,[4097,9905],[4097,3974,9906],[3914,9907],[3978,9809],3914,[4097,3979],[4097,3847],3912,3913,3914,3977,3914,3977,3978,[2435,9616],[2435,9617],2434,2434,2370,2371,2435,2370,2435,2371,[2370,9526],[3913,9527],3914,3978,[3913,10097],[3914,10098],[3914,10099],10001,10002,10003,10006,[3977,10100],[3914,10101],[3977,10098],[3785,10099],[4097,10098],[4097,4038,10099],[4097,4039,10007],[3912,9812],3977,3978,3977,[3977,9520],[2435,9521],2371,2435,[2371,9526],[3978,9527],3978,3977,[3978,9425],[2371,3183,9426],[2435,9429],[2435,9426],[2370,9427],[2371,9428],[2434,9429],[3978,9430],3914,3978,[4097,3979,9425],[2370,9426],[2370,9427],[2434,9428],[2434,9429],[4098,3850,9430],4098,[4098,3910],3914,3913,3975,[4097,3785],4097,4097,4097,4097,[4097,3974],3914,[3914,9523],[3977,9712],[2434,9713],2434,2370,[2371,3114],3243,3245,[2434,3247],2371,2371,2435,2371,2370,2434,2435,2435,2371,2435,2114,2371,[2434,9526],[4097,9430],[4097,9425],[2370,9426],[2370,9427],[2435,9428],[2370,9429],[4097,9430],4097,[4097,3783],[3976,9520],[2434,9426],[2371,9429],[2371,9521],2371,2370,2434,2371,[2371,9526],[2434,9521],2371,2434,2370,2371,2370,2435,2370,2371,[2435,3050],[2434,3055],2434,2371,2434,[2435,3050],[3243,9526],[4097,3851,9527],[4097,9425],[2370,9426],[2434,9429],[2434,9521],2370,2434,2370,2434,2434,[2370,9526],[2370,9521],2371,2371,2435,2435,2435,[2434,9526],[2370,9426],[2435,9429],[4097,9527],4097,4097,4097,4097,4097,4097,[4097,4038],[4097,4039],[4097,4040],[4097,4041],[4097,4042],[4097,4043],[4097,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[787,14],788,789,790,789,790,789,790,789,790,789,790,789,790,791,[792,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3456,9494],3905,3458,3520,3393,3907,[3393,4996],[3907,4997],[3522,4998],3457,3907,3393,3907,[3907,5188],5189,5190,[3522,5191],[3906,9595],[3907,9596],[9979,9497],[3521,9980],[3905,9980],[3981,3844,9785],3920,3920,3919,3920,3983,3919,3920,3920,3983,3919,3983,3983,[3919,3968],3906,3905,3906,3588,3589,3906,3905,3456,3907,3394,3908,3971,3908,3907,[3969,9787],[3905,9788],[3907,38,9593],[3907,38],3905,[3520,9784],[3908,9685],[3521,9686],3908,3971,3908,[3908,579],[3969,580],[3530,1664],[3530,1665],[3594,1666],[3907,584],[3393,585],3522,3971,3520,3969,3969,3520,3521,3905,3522,3456,[3520,579],[3907,580],[3530,3973,1664],[3530,1665],[3594,3968,1666],[3457,584],[3908,585],3520,3520,3456,3908,3521,3520,3457,3971,3457,3458,3971,3969,3906,[3521,963],964,965,966,967,968,[3971,969],3392,3908,3971,3457,3394,3906,3520,3394,3456,3905,[3458,15312],[3456,15313],[3458,15314],[3521,15315],[3393,15316],3520,3457,3457,3522,[3522,9784],[3456,9973],9974,9975,9976,9977,9978,9979,[3521,9980],[3457,9785],3908,3969,3457,3457,3521,3457,3458,3458,3969,3521,3905,3584,3585,3521,3905,[3920,3973],3983,[3971,3982],[3983,3904],3905,3969,3520,3906,[3906,9805],[3522,9901],9902,[3920,4037,9707],3920,3918,3919,3983,3919,[2765,3985,10185],[2831,10186],[2768,3853,10187],[3920,10188],3983,3920,3918,3919,3919,[2765,3725],3918,3919,3983,3920,3983,3981,3920,3983,3920,[2831,4049],2831,2768,[2767,3916],3920,3983,3919,3919,3920,3920,[3983,4344],[3919,4345],[3983,4346],3983,[2768,3985],[2767,9805],[2832,9897],[2829,9898],[2830,9806],[2831,9611],2831,2829,[2766,9610],[2832,9799],[2829,3980,9897],[3919,9898],[3983,9800],3983,3919,3920,3983,[2831,3857],2767,2768,[2766,3852],[2832,3921],2830,2832,2767,[2766,4044],[2766,4045],[2766,4045],[2766,3985],2765,[2831,9622],[2829,9623],[3914,9620],3914,[4097,3851],4097,4097,[4097,3974],3913,3914,[3978,9520],[2435,9521],2370,2435,2370,[2435,9526],[4097,3979,9527],[4097,9330],[4097,9333],[4097,3846],3978,3914,3977,3911,[4097,4042],[4097,3850],4097,[4097,3974,9520],[2370,9426],[2434,9427],[2371,9428],[2434,9429],[2435,9426],[2435,9427],[2371,9428],[2435,9429],[4097,3974,9527],3914,3977,3914,[4097,3851],4097,4097,4097,[4097,3783],3976,3913,3913,3911,[4097,4043],4097,[4097,4038],3912,3978,[3914,9330],[3914,9333],3978,3914,3977,3913,3978,3978,3914,3914,3914,3978,3977,[4097,3979],4097,4097,[4097,3782],3914,3978,3977,3914,3911,[4097,4040],3912,[4097,3915],[4097,3782],3913,3913,3914,3978,[3977,9718],[3913,9719],[3975,10102,9524],[4097,3719],[4097,3786],[4097,3848],3912,[3978,10097],10001,10002,10003,[3914,9905],[3911,9809],[4097,4043],4097,[4097,3974],3977,3977,3978,3913,3978,[3914,9520],[2435,9521],2434,2370,2371,2434,2371,2370,2435,2435,2371,[2434,9622],[2371,9623],[3977,9524],3913,3911,[4097,4039,10194],[4097,4040,10195],[4097,3850,10097],[4097,3974,10098],[3914,10099],[3914,10102],[3913,10196],[3913,10197],[3914,10194],[4097,3787,10195],[4097,10194],[4097,10195],4097,[4097,3848],3912,3913,[3977,9523],[2371,9616],[2435,9617],2435,2370,2434,[2434,9526],[3913,9527],[3978,9520],[3181,9521],[2371,3055],2371,2434,2434,2371,2434,[2434,9526],[3977,9527],[3978,9520],[2434,9521],2371,2435,2370,2370,[2370,9526],[4098,9527],[4098,3974],3978,3977,3978,3975,[4097,3723],4097,4097,[4097,3784],3976,3914,[3913,9619],[3913,9808],[2370,9809],2371,2370,[2370,3178],3244,3181,[2370,3117],2371,2371,2371,2435,2435,2370,2371,2435,1923,2434,2371,2434,[2435,3114],[2434,3119,9526],[2434,9521],2371,2370,2371,2371,[2371,9526],[4097,9527],[4097,3974,9520],[2435,9521],2370,2435,2371,2371,2370,2370,2435,2435,2370,2434,2435,2371,2434,2435,2435,2370,1923,[2370,3114],[2371,3119],2370,2435,2370,[2435,3114],[2435,3055],[2370,9526],[2434,9521],2434,2434,2435,2371,2371,2435,2434,2434,2370,2434,2434,2435,2435,2370,2434,2371,2434,[2435,9622],[2435,9623],[4097,9524],4192,4097,4097,4097,4097,4097,4097,4096,4097,4097,[4097,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[851,14],852,853,854,853,854,853,[853,1427],[853,1428],[853,1429],853,854,853,[854,15057],855,[856,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3905,9494],3905,3457,3394,3394,3906,3456,[3522,5092],5093,5094,[3907,5095],3456,3521,3456,[3907,5284],[3969,5285],[3907,5286],[3908,5287],[3969,9691],[3905,9692],[3906,10075,9593],3458,[3983,3781],3919,3920,3919,3983,3920,3917,3918,3919,3920,3919,3919,3919,[3920,3777],3971,3969,3459,3969,3652,3653,3457,3907,3906,3521,3971,3971,3392,3906,[3392,9787],[3520,9883],9884,[3456,9689],3969,3906,[3906,9493],[3393,9494],3908,3906,3969,3971,3521,3969,[3592,3779],3528,[3530,3777],3458,3908,3520,3907,3584,3585,3520,3520,3907,3459,3520,3908,3521,3907,[3529,4037],3530,[3594,3968],3905,3521,3908,3907,3588,3589,3906,3456,3907,3971,3521,3907,3522,3971,3908,[3905,1027],1028,1029,1030,1031,1032,[3969,1033],3458,3971,3458,3394,3905,3907,3458,3458,3969,3521,[3521,15376],[3969,15377],[3522,15378],[3456,15379],[3908,15380],3458,3971,3520,3521,3458,3969,[3521,10070],[3907,10071],[3457,10072],[3908,10073],[3969,10074],[3908,10075],3522,3908,3905,3522,3456,3456,3522,3456,3521,3907,3971,3521,3456,3648,3649,3457,3906,[3920,3844],3919,3919,[3920,3968],3906,3906,3971,[3908,9613],[3905,9614],[9997,9515],[3983,9998],[3983,9803],3983,3919,3920,3920,3917,[2831,4049],2768,2831,[2765,3980],3983,3983,3983,3919,3983,3919,3983,3919,3920,3919,3919,3919,3919,3983,[2829,3855],2766,2830,[2767,3789],3919,3983,3918,3983,3919,3920,3920,3983,3919,3983,3920,[3983,9805],[2765,3791,9901],9993,9994,9902,[2831,9707],2765,2829,[2830,9706],9895,9993,9994,[3983,9896],[3920,9800],3918,3983,3983,[2830,3921],2767,2832,[2829,3916],[2832,3985],2829,2765,2766,2767,2766,[2830,3790],[2767,3985],2765,[2768,9718],[2829,9719],[3914,9620],3977,[4097,3915],4097,[4097,3783],3976,3978,[3978,9523],[2371,9616],[1987,9617],2370,2371,2371,2370,[2370,9526],[2435,9426],[2371,9429],[4097,3910,9430],3914,3914,3911,[4097,3849],4097,4097,[4097,3783],[2370,9616],[2435,9617],2435,[2434,9330],[2434,9331],[2435,9333],2434,2435,[2435,9622],[2434,9623],[3913,9524],3978,3978,[4097,3915],4097,4097,4097,[4097,3782],3977,3977,3913,[4097,3979],4097,4097,4097,[4097,3847,9424],[3912,9425],[3977,9426],[3978,9429],[3914,9430],3977,3978,3977,3977,3914,3913,3913,3911,[4097,4042],[4097,4039],[4097,3850],4097,4097,[4097,3846],3913,[3914,9814],[3977,9903],[3977,9909],[4097,3979,9809],4097,[4097,3848],[4097,3850],[4097,3846],3913,3913,3978,3913,[3977,9814],[3914,9815],[3914,9620],3977,[4097,3787],4097,[4097,3974],3913,[3914,10097],[3913,10098],[3978,10099],10001,[4097,3849,9616],[4097,9617],[4097,3783],3976,3914,3914,3913,3978,[3914,9523],[2435,9616],[2435,9617],2371,2370,[2371,3051],[2371,2987],[2435,3053],1986,2370,2434,2370,[2435,9718],[2434,9719],[4097,4041,9620],[4097,4042],[4097,4043],4097,4097,[4097,3783],[3976,10194],[3977,10195],3978,3977,3977,3977,[4097,3851],4097,4097,4097,4097,[4097,3974],3978,[3978,9715,9330],[2435,9712],[2435,9713],2434,2434,2434,[2371,3178],[3244,9526],[3180,9521],3181,[2371,3183],2371,1986,2434,2434,2434,2435,[2434,9526],[2434,9521],2434,2370,2370,2370,2371,[2371,9622],[2371,9623],[3976,9524],3977,3978,3978,3911,[4097,3849],4097,[4097,3783],3976,3914,3977,[3911,9715],9904,[2434,9905],[2434,9809],2370,[2370,3115],3182,[2434,3055],2371,2371,2435,2434,2434,2435,2371,2435,2435,2435,2434,2434,2434,[2370,3178],[2434,3183],2370,2434,2435,2434,2434,[2370,3114],[3245,9526],[2370,3119,9521],2371,2370,2114,2371,2370,2371,2371,2050,2434,2371,2435,2434,2370,2434,2370,2434,2434,2370,[2370,3178],[2435,3183],2434,2434,2434,[2435,3178],[2435,3183],2371,2435,2371,2434,2371,[2371,9525],2370,2370,2371,1922,2434,2371,2371,2371,2371,2435,2370,2435,2435,[2371,9718],[2435,9719],[4097,3719,9716],[4097,3785],4097,4097,4097,[4097,3783],[4097,3719],[4097,3719],[4097,3720],[4097,3721],[4097,3722,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[915,14],916,917,918,917,918,917,[853,1491],[853,1492],[853,1493],917,918,917,918,919,[920,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3907,9589],[3908,9590],3393,3906,3458,3456,3521,3394,[3907,5188],5189,5190,[3969,5191],3905,3458,3456,[3907,5380],[3907,5381],[3905,5382],[3971,5383],[3905,9787],[3392,9788],[3907,230,9593],[3456,230],[3920,3845,166],[3983,174],3918,3920,3920,3920,3983,3919,3919,3919,3919,3920,[3919,3712],3907,3907,3521,3393,3971,3971,3908,3969,3394,3905,3392,[3919,4033],[3983,4034],[3919,4035],[3969,9595],[3392,9596],9979,[3458,9980],[3522,9785],3905,[3907,9496],[3907,9685],[3393,9686],3395,3457,3971,3906,3905,3908,[3592,3781],3332,[3592,3968],3907,3905,3520,3456,3648,3649,3521,3905,3971,3520,3969,3905,3522,[3528,3973],3529,[3593,3778],3907,3520,3908,3907,3969,3652,3653,3521,3971,3521,3521,3969,3908,3906,3969,3906,[3908,1091],1092,1152,1153,1154,1096,[3969,1097],3522,3907,3394,3905,3520,3522,3971,3520,3906,3905,3521,3969,3907,3908,3393,3521,3905,3905,3969,3521,3521,3522,[3522,10167],[3907,10168],[3971,10169],[3456,10170],3456,3521,3394,3905,3457,3971,3392,3457,3521,3521,3456,3522,3969,3971,3521,[3920,4033],[3983,4034],[3919,3843],3983,3920,3920,[3983,3841],[3920,4033],[3920,4034],3908,[3969,9709],[3457,9710],[3920,10093,9611],3983,3983,3920,3981,3983,3983,3981,[2831,3792],2832,2830,[2829,3853],[2829,4045,566],[3918,567],3920,3919,3983,3919,3919,3920,3983,3920,3919,3983,3983,[2830,3855],2767,2767,[2765,3724],3918,3920,3920,3920,3983,[3983,566],[3983,567],3918,3917,3919,3920,[3983,9805],[3920,9901],9997,[2766,3729,10089],[2829,10090],[2766,9998],[2767,9803],2766,2767,[2830,9802],[2768,3790,9991],[3919,10089],[3917,10090],[9992,9514],[3919,9607],[3917,9608],3983,3920,[2832,3856],2767,2830,[2767,3980],[2830,3985],2767,2768,2832,[2829,3790],[2830,3725],3920,[2830,4049],2829,[2832,9622],[2831,9623],[4097,4041,9620],[4097,4042],[4097,4043],4097,[4097,4038],[4097,4041],[4097,4042],[4097,4040,9619],[2371,9712],[2114,9713],2370,2371,2370,2434,2435,2370,2435,[2370,9526],[3977,9430],[3914,9330],[4097,3787,9333],4097,4097,4096,[4097,3782,9520],[2434,9521],2371,[2371,9520],[3977,9426],[3914,9427],[3913,9429],[2371,9527],2371,[2370,9622],[2434,9623],[3977,9620],3913,3978,3975,[4097,3786],4097,4097,[4097,3846],3913,3977,3914,3975,[4097,3785],[4097,3784],[4097,3785],[4097,3783,9520],[3976,9521],3913,3977,[3978,9526],[3978,9527],3914,3913,3978,3977,3977,3977,[4097,3979],4097,4097,4097,4097,[4097,9814],[4097,3910,9906],[3913,9907],[3914,9910],9999,10005,[4097,3979,9905],[4097,9809],4097,4097,[4097,3910],3977,[3913,9814],[3913,9906],[3977,9907],[3977,9910],9911,[3913,9716],3977,[4097,3915],4097,[4097,3847],3912,3977,[3977,10194],[3978,10195],[3978,10097],[4097,9712],[4097,9713],[4097,3848],3912,3977,3978,3914,3913,[3977,9619],[3180,9712],[2435,2988,9713],[2370,2989],[2370,2990],3181,3179,3245,[2434,2991],2371,2435,2434,[2434,9718],[2434,9719],[4097,9620],4097,4097,4097,4097,[4097,3974],3978,3978,3913,3914,3914,3978,[4097,3915],4097,[4097,9330],[4097,9331],[4097,3783,9332],[3976,9333],[3977,9425],[2370,9426],[2434,9521],2435,2434,2435,2434,[2371,3242],3181,3246,3182,[2435,3247],2371,2370,2371,2370,2371,2434,2370,2435,1987,2371,2371,2434,2434,[2370,9718],[2371,9719],[3913,9620],3913,3914,3911,[4097,4043],4097,4192,[4097,3974],3978,3978,3978,[4097,3787,9811],[4097,10000],10001,[2435,9616],[2371,9617],2371,[2371,3242],[2371,3119],2370,2371,2435,2370,2371,2371,2434,2371,2434,2371,2370,2435,2370,[2434,3050],[2371,3055],2370,2371,2434,2371,2370,[2370,3178],3182,[2435,3183],2434,2435,2434,2371,2434,2370,2371,2435,2371,2435,2435,2435,2435,2434,2370,2371,2434,[2371,3052],3179,3243,[2370,3053],2435,[2434,3052],3243,[2370,3247],2435,2435,2434,2434,2434,[2435,9621],[2371,9524],2434,2434,2371,2434,2371,2371,2371,2435,2371,2370,2434,2370,2370,[2434,9526],[3914,9527],3975,[4097,3720],[4097,3721],[4097,3722],3976,3913,3977,3978,3914,[3977,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[979,14],[980,14],[981,14],[982,14],[981,14],[982,14],[981,14],[1555,14],[1556,14],[1557,14],[981,14],[982,14],[981,14],[982,14],[983,14],[984,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3522,9685],[3393,9686],3908,3393,3456,3457,3458,3907,[3907,5284],[3905,5285],[3456,5286],[3905,5287],3393,3522,3908,[3906,5476],[3907,5477],[3907,5478],[3907,9787,5479],[3908,9883],9884,[403,9689],403,403,[3983,101],3983,3983,3983,3920,3920,3920,3983,3917,3919,3919,[3920,3841],3907,3971,3521,3906,3905,3522,3969,3969,3458,3907,[3983,3973],3919,3919,3917,[3920,3776,9691],[3907,9692],[3969,10075],3905,3907,3905,[3969,9592],[3907,9781],[3522,9782],3457,3906,3905,3907,3456,3458,[3593,3845],3594,[3529,3776],3907,3969,3521,3907,3522,3521,3522,3522,3907,3969,[3527,3972],3520,3456,[3592,4037],[3594,3777],3520,3456,3971,[3530,3972],3520,3907,3905,3905,3906,3906,3456,3459,3969,3969,3907,3906,3522,[3457,1155],[3969,1156],[3458,1216],1217,[3456,1218],[3908,1160],[3522,1161],3392,3586,3587,3458,3394,3906,3907,3905,3908,3907,3458,3457,3395,3456,[3971,3461],3905,3521,3908,3520,3906,3969,3908,3969,3520,3908,3457,3457,3905,3971,3907,3971,3458,3971,3458,3907,3456,3971,3457,3458,[3983,4033],[3919,3843],3920,3919,3920,3919,3917,3919,3983,3919,3983,[3981,4032],[3906,9613],[3457,9614],[3920,9611],3920,3920,3983,3919,3920,3983,3920,3920,[2768,3725],[2766,3792],2768,[2767,630],[2766,3854,631],3920,3983,3920,3920,3919,3919,3920,3983,3983,3917,[2831,3855],2832,2829,2767,[2768,3788],3983,3983,3919,3919,3919,[2768,4045,630],[2830,4047,631],3920,3919,3981,[3983,9709],[3920,9710],[9997,9515],[3919,10093],[2765,3855,10185],[2768,10186],2765,[2830,3790],[2832,3726],[2829,3727],[2830,3728],3983,[3920,10185],[3920,10186],[3920,10088,9706],[3918,9703],[3983,9704],3983,[2765,3985],2768,2829,2831,[2766,3788],3920,[2768,3791],2765,[2831,3790],3983,3919,[2766,3856],2829,2832,[2766,9718],[2768,9719],[4097,9620],4097,4097,4097,4097,4097,4097,[4097,9619],[2371,9616],[2371,9617],2371,2370,2435,1987,2435,2434,2435,2371,[2370,9526],[2370,9426],[2371,9429],[4097,9430],[4097,9330],[4097,9523,9333],[2434,9616],[2371,9617],[2370,9523],[3913,9712],[3977,9713],3978,[3977,9718],[3914,9719],[2435,9524],[2434,9718],[2435,9719],[3978,9620],3978,3978,3911,[4097,3849],4097,4097,[4097,3910],3913,3914,3978,3913,3975,3976,[3975,9523],[3976,9616],[3913,9617],3914,3913,[3913,8948],8949,[3977,8950],3913,3978,3913,3977,3914,[4097,3979,9814],[4097,9906],[4097,9907],[4097,9908],[4097,9909],[4097,9910],10002,10003,10006,[3977,10095],[3914,10101],10001,[4097,9905],[4097,9906],[4097,9907],[4097,3974,9908],[3913,9909],[3977,9910],10002,10003,10006,[4097,4038,10007],[3912,9812],3978,3975,[4097,3785],4097,[4097,3974],3977,3978,3914,[3978,9425],[4097,9521],4097,4097,[4097,3848],3912,3914,3977,3913,[3914,9715],[3244,9808],[3244,9809],3179,[2370,3307],[2370,3308],3246,3181,3243,[2434,3053],2370,2370,[1987,9718],[2435,9719],[4097,3720,9620],[4097,3721],[4097,3722],[4097,3723],4097,[4097,3847],3912,[3977,9330],[3977,9333],3977,3978,3978,[4097,3979],[4097,9425],[2370,9426],[2435,9427],[2371,3051,9428],[3180,9429],[2435,3247,9521],1986,2434,2370,2434,2178,2434,[2435,3115],3181,3246,3181,[2370,3118],2371,2371,2434,2371,2371,2434,2434,2370,2371,2435,2370,2435,2434,2371,[2435,9526],[3913,9430],3914,3911,[4097,3850],4097,4097,[4097,3784],3976,3913,3913,3914,[4097,3851],4096,[4097,10097],[2435,9712],[2434,9713],[2371,3051],3181,[2435,3183],2434,2435,2435,2371,2435,2434,1987,2435,2370,2371,2434,2370,2434,[2370,3114],[2370,3119],2370,2434,2434,2371,2435,[2371,3050],3244,[2371,3055],1922,2371,2371,2435,2370,2370,2435,2435,2371,2370,2371,2434,2370,2370,2370,2371,[2434,3051],3182,3180,3243,3181,[2434,2987],3179,3180,3179,[2371,3054],2370,2370,2435,[2434,9718],[2434,9719],[2435,9620],2435,2434,[2370,9522],2434,1923,2370,2434,1922,2435,2435,2434,2434,2371,[2370,9622],[2370,9623],[3914,9524],3977,3914,3978,3914,3978,3978,3913,3913,[3978,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3457,9589],[3392,9590],3905,3458,3908,3907,3908,3907,[3521,5380],[3520,5381],[3969,5382],[3394,5383],3394,3394,3394,3907,3905,[3971,9787],[3905,9883],9979,[3907,9980],[403,9785],403,403,[3983,101],3919,3983,3919,3919,3918,3981,3983,3920,3983,3920,3920,[3920,3968],3907,3906,3394,3907,3907,3905,3969,[3983,3843],[3983,3842],[3983,4037],3920,3983,3919,[3919,3840,9595],[3908,9596],3906,3969,3908,3971,[3905,9688],9877,[3971,9878],[3971,9782],3969,3907,3908,3520,3969,[3528,3909],3269,[3593,3840],[3591,3972],3908,3969,3522,3457,3456,3969,3522,3905,3458,3906,3521,[3594,3844],3530,[3530,3841],3457,3908,3908,3521,3457,3905,3520,3908,3907,3908,3908,3907,3521,3457,3522,[3530,4033],[3530,4034],[3593,4035],[3528,4036],[3594,3844,1221],[3594,1222],[3529,4032,1223],3905,3971,3971,3650,3651,3908,3969,3457,3908,3456,3906,[3530,4033],3457,3908,3906,3908,3522,3971,3522,3971,3906,3520,3456,3908,3520,3906,3457,3908,3969,3521,3971,3521,3905,3521,3456,3969,3908,3906,3905,3908,[3919,3973],3919,3920,3918,3981,3920,[3919,3712],[3983,3780],3919,3983,[3456,3984],3920,3919,[3920,3841,9709],[3457,9710],[3918,9707],3920,3919,3983,3919,3919,3919,3983,3919,3983,3919,[2768,3791],[2831,694],[2765,695],[2830,3980],3983,3919,3920,3920,3983,3919,3919,3920,[2765,3855],2767,2767,2765,2830,[2766,3852],3983,3920,3919,3919,[2832,3855],[2765,694],[2831,695],[2832,3853],[2766,4045],[2766,4046],[2765,4047,9709],[2831,4048,9710],[3920,10093,9611],[2831,3985],2832,[2767,3724],[2830,3725,9805],[3917,9897],[3981,9898],[3983,9800],3920,3920,3917,3983,[3919,9511],[3983,9512],3983,3983,3983,[2830,3792],2832,2765,[2765,3916],3983,3920,[2829,3725],[2831,3856],[2765,3854],[2830,4049],2768,2766,2767,[2766,9814],[2766,9815],[4097,9620],4097,4097,4097,4096,4097,4097,[4097,9619],[2370,9712],[2434,9713],2371,1986,2435,2370,2434,2434,1986,2435,2370,2434,2371,[2371,9526],[2371,9426],[2435,9429],[2370,9521],2371,[2370,9619],[3977,9808],[3978,8945],[3977,8946],[3913,8947],[3913,9815],[2371,9620],[2434,9622],[2371,9623],[3913,9620],3977,3913,[4097,3787],4097,4097,[4097,3783],3976,3914,3913,3977,3914,3977,3913,[3978,9619],[3977,9616],[3914,9617],3977,3978,[3977,9044],9045,[3914,9046],3914,3913,3977,3913,[3913,9814],[3914,9910],10002,10003,10004,10005,10006,[3914,10098],[3914,10099],[3977,10102],[3913,10191],[3913,10197],[3913,10097],10001,10002,10003,10004,10005,10006,[3913,10098],[3975,10099],[4097,3785,10102],4097,[4097,3847],3912,3978,3975,[4097,3719],3976,3978,3914,[3977,9523],[4097,3720,9616],[4097,3721,9617],[4097,3722],[4097,3786],4097,[4097,4038],[4097,4039],[4097,4040],[4097,4041],[4097,4039,9811],9904,[3246,9905],[2371,3117,9809],2435,2434,[2370,3115],3180,3244,3246,[2434,2987],[2435,3053],[2371,9814],[2435,9815],[3913,9620],3913,3977,3975,[4097,3785],4097,[4097,4038,9425],[2370,9426],[2371,9429],[3977,9430],[3914,9330],[3977,9333],[3979,9520],[2371,9521],1987,1922,[1923,3242],3180,[2370,3311],2435,2371,2370,2435,2370,2435,2371,[2371,3050],3243,[2370,3055],2434,2434,2435,2435,2434,2370,2435,2435,2370,2371,2370,2434,2370,2371,2435,2370,[2434,9526],[3978,9527],[4097,3979,9333],4097,4097,[4097,3718],3976,3978,3911,3912,3913,[4097,3915],4097,[4097,9520],[2371,9521],2371,[2370,3242],3245,3246,[2370,3053],2371,[2434,3051],[2370,2987],[2371,3054],2370,2434,2371,2435,2434,2435,2371,2371,[2370,3178],[2434,3183],2434,2371,2371,2434,2434,[1986,3114],3179,[2371,3119],2435,2371,2435,2434,2435,2370,2370,2434,2371,2435,2371,2371,2434,2435,2370,2435,[1987,3242],3181,3179,3246,3181,3179,3182,[2435,3307],3246,[2370,3247],2051,2435,2371,[2371,9814],[2434,9815],[2434,9620],2435,[2434,9523],[2435,9618],2371,2370,2434,2435,2371,2051,1987,2435,2435,2370,[2435,9718],[2434,9719],[3978,9620,9330],[3913,9333],3914,3977,3977,3914,3914,3977,3914,[3914,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688,4996],[3520,9685,4997],[3905,9686,4998],3456,3969,3392,3520,3905,3908,[3969,5476],[3456,5477],[3907,5478],[3906,5479],3520,3907,3394,3907,[3908,9595],[3969,9596],[9979,9497],[3907,10075,4996],[3907,4997],[3521,38,4998],[3521,39],403,[3917,165],3920,3919,3917,3983,3983,3981,3983,3920,3983,[3920,3712],[3919,3713],3907,3906,3905,[3906,3461],3907,3906,3905,[3919,3843],3920,3983,3917,3919,3983,3920,[3983,3904,9691],[3908,9692],3908,3908,3588,3589,[3971,9784],[3905,9973],9974,[3905,9589],[3521,9590],3908,3906,3393,3905,[3530,3973],3332,[3594,3904],3969,3520,3906,3522,3521,3456,3522,3459,3457,3521,3971,[3592,3970],[3528,3780],3268,3593,[3530,4032],3969,[3591,3970],3457,3969,3905,3906,3907,3969,3907,3906,3905,3971,3908,[3530,3844],3528,3592,3529,3592,3594,3269,3529,[3594,3841],3521,3458,[3592,4033],[3592,4033],[3592,4034],[3594,4035],[3530,4036],3520,3906,[3528,3844],3592,[3530,3841],3520,3906,3905,3908,3520,3456,3907,3456,3520,3457,3522,3520,3457,3458,3520,3457,3522,3907,3907,3908,3392,3907,3458,3969,3908,[3920,4035],[3920,4036],[3983,4037],3920,3920,3983,[3920,3778],[3918,3713],3392,3971,[3919,3713],[3917,3713],[3919,3714],[3981,3715],[3983,3716],[3919,3713],[3458,9517],[3918,9421],3920,3920,3920,3919,3983,3919,3920,3983,3983,3983,[2830,3985],2766,[2768,3789],3920,3920,3918,3920,3919,3920,3919,3919,3983,[2767,3791],2768,[2765,3790],[2831,3791],2829,[2831,3916],3920,3920,3919,[2829,3793],2768,2765,2829,2832,2830,2767,[2765,9805],[2767,9806],[2767,3854,9611],[2832,3856],2831,[2832,3980,9805],[3918,9901],9993,9994,[3919,9896],[3919,9800],3983,3918,[3983,9514],[3920,9607],[3920,9608],[2831,4045],[2830,4046],[2830,4047],[2829,4049],2832,[2765,3789],3983,[2766,4045],[2831,4046],[2831,4049],2768,2768,2765,2765,2767,[2829,9814],[2830,9910],9911,[4097,3785,9716],[4097,3784],[4097,3785],4097,4097,[4097,3783],[4097,3719],[3976,9619],[2370,9808],[2435,9809],2370,2434,2434,2435,2050,2371,2434,2371,2371,2435,2371,2370,2371,2371,2371,2434,[2435,9715],9904,9041,9042,9043,9911,[2435,9716],[2435,9718],[2371,9719],[3978,9716,9330],[3978,9333],3977,[4097,3851],4097,4097,[4097,3974],3914,3914,3914,3913,3913,3913,3913,[3914,9619],[3978,9712],[3978,9713],3914,3977,[3913,9140],[3978,9141],[3914,9142],3913,3913,3913,[3977,9814],[3977,9910],10006,[4097,10098],[4097,10099],[4097,10100],[4097,3782,10101],[3977,10102],[3977,10194],[3977,10195],3914,3914,3914,3977,[3978,10097],[3913,10098],[3977,10099],[3913,10100],[3978,10101],[3913,10102],[3978,10194],[3914,10195],[4097,3979],4097,4097,[4097,3974],3977,3913,3914,3978,3978,3978,[3914,9619],[3978,9712],[3914,9713],3913,3975,[4097,3785],4097,4097,4097,4097,4097,[4097,10000],10001,[2371,9905],[2434,9906],[2371,9907],[1987,9809],[2434,3242],3180,3244,3245,[3180,9622],[2435,2987,9623],9911,[3913,9716],3913,3914,3977,3975,[4097,3723,9425],[2371,9521],2371,2435,[2370,9526],[2371,9426],[2370,9429],[2371,9521],2435,2435,[2434,3051],3245,[2435,3055],2050,2371,2434,2371,2371,2371,2370,2371,[2371,3114],3246,[2434,3119],2370,2435,2435,2371,2371,2371,2371,2435,2370,2435,2371,2435,1922,2434,2435,2370,2435,[2434,9429],[2435,9429],[4097,9430],[4097,3783],3976,3978,3911,[4097,3850],[4097,3848],3912,[4097,3979],[4097,9520],[2370,9521],2435,2435,[2370,3115],3243,3246,3179,[2434,2987],3181,3246,[2435,3055],2435,2371,2371,2434,2370,2371,2434,2371,[2371,3115],3244,[2434,3053],2435,2434,2371,2371,[2435,3178],3243,[2371,3183],2371,2435,2435,2371,2435,2371,2435,2371,2434,2370,2435,2435,2370,2371,2371,2435,[2434,3115],3180,3244,3243,3181,[2434,3307],[2434,3117],2434,[2370,3116],3245,[2371,3054],2371,[2435,9814],[2434,3051,9910],9911,[2370,2987,9716],[2370,2989],[2435,3054,9619],[2371,9808],[2435,9809],2435,1987,2435,2371,2434,2370,2435,2371,2370,2371,[2435,9526],[2370,9426],[2435,9429],[3914,9430],3978,3977,3914,3978,3977,3978,[3977,9811],[3914,10000],10001,9905,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398,5092],5093,5094,[3905,5095],3906,3394,3457,3458,3456,3522,3908,3520,3456,3520,[3908,4996],[3457,4997],[3969,4998],[3906,9691],[3907,9692],[3971,10075,9593],[3457,5092],5093,5094,[3971,103,5095],403,[3983,229],[3919,166],[3983,174],3983,3983,3983,3983,3920,3920,3983,[3983,4032],3905,3392,3394,3393,3971,3520,3458,[3983,3973],3983,3983,3919,3919,3919,3983,3983,[3919,3841],[3971,9499],[3908,9500],3969,3652,3653,3969,3906,[3520,10070],[3908,9685],[3908,9686],3908,3395,3971,3971,[3593,3973],3332,[3593,3968],3908,3522,3905,[3908,3461],3522,3905,3456,3905,3905,3905,3905,3907,3520,[3530,3713],[3593,3780],3332,[3594,3776],3458,3971,3905,3521,3908,3908,3520,3906,3457,3521,[3593,4033],[3593,3844],3530,3269,3530,[3528,3777],[3529,3714],[3594,3715],[3530,3716],[3593,3779],3592,[3592,3968],[3592,3973],3529,3529,3268,3268,3592,[3528,3841],[3529,4037],3530,3333,3593,[3530,4032],[3528,4033],3456,3907,3520,3520,3908,3906,3905,3906,3456,3522,3522,3906,3457,3457,3458,3457,3907,3969,3522,3456,3905,3394,[3920,3973],3920,3981,3919,[3905,3984],3919,[3920,3777],3456,3457,3969,3907,3522,3908,3906,3458,3521,3457,[3907,9613],[3969,9614],[3919,9515],3917,3919,3983,3919,3983,3983,3920,3917,3919,3919,[2765,3725],3920,3983,3920,3981,3920,3919,3983,3920,3983,3919,3920,[2831,3725],3918,[2831,4049],2832,[2766,3980],3983,3918,3920,[2829,3857],2768,2831,2766,2831,2829,[2765,9805],[2830,9901],9902,[2765,9707],2832,[2832,3789,9613],[3983,9614],9997,[4097,10089],[4097,10090],9992,[3918,9896],[3983,9800],3919,[3983,9610],[2765,4046,9703],[2768,3855,9704],2830,2832,2767,2831,2767,[2765,4044],[2766,3856],2832,2766,2766,2832,2829,2831,2832,[2831,9622],[2768,9623],10006,[3914,10007],[3975,9812],3976,3975,[4097,3723],4097,[4097,3847],3912,[3913,9715],9904,[2370,9905],[2370,9906],[2370,9907],[2435,9908],[2435,9909],[2371,9809],2371,2434,2370,2435,2371,2434,2434,2371,2434,2434,2371,[2435,9811],[2371,10000],[2435,9137],[2371,9138],[2435,9139],[2371,10007],[2434,9812],2371,[2435,9526],[2434,9426],[2435,9429],[3978,9430],[4097,3915,9330],[4097,9331],[4097,9332],[4097,4038,9333],[3912,9330],[3913,9331],[3977,9332],[3978,9333],3977,3914,3913,[3978,9619],[3978,9808],[3978,9809],3978,3978,[3978,9814],[3978,9815],[4097,4039,9524],[4097,4041],3912,[3977,9814],[3913,9910],10006,[4097,3979,10102],[4097,10194],[4192,10195],[4097,10196],[4097,3910,10197],3977,3978,3911,[4097,4039],3912,3913,3978,3914,[3978,10194],[3914,10195],[3978,10196],[3977,10197],3977,3914,3977,3975,[4097,3720],[4097,3722],3976,3978,3978,3978,3911,[4097,4039],3912,[3977,9619],[3977,9808],[3977,9809],3977,3978,3975,[4097,3719],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3723],[4097,10097],10001,10002,10003,[2371,3051,9616],[3243,9617],[2370,3307],[2371,3308],[2371,3309],[2435,3310,9718],[2435,3117,9719],[3978,10007],[3913,9812],3977,3914,3913,[3914,9520],[2435,9521],2242,2243,2370,2434,2435,2435,2434,[2434,3052],[2370,2987],3181,3243,[2371,3183],2435,2370,2371,2371,2371,2371,2435,1986,[2435,3178],3180,[2435,3183],2435,2435,2370,2434,2370,2435,2371,2371,2370,2370,2435,2050,2435,2371,2435,2370,2370,2435,2371,[2435,9526],[3976,9527],3914,3914,[4097,3979],4097,4097,[4097,3974],[3787,9425],[2371,9521],2370,2434,2434,2434,[2370,3050],3181,3244,3179,3179,3179,[2435,3119],2370,2370,1986,2371,2370,2435,2370,2434,2435,[2370,3050],[2435,3055],2434,2370,2435,2434,[2434,3115],3179,[2371,3247],2370,2371,2434,2435,2434,2435,2370,2050,2435,1922,2435,2435,2435,2434,2370,2370,2370,[1986,3050],3180,3245,[2371,3118],2435,2435,2434,2434,[2371,3050],[2371,3055],2370,[2434,3051,9910],10006,[3180,10007],[3179,9812],3245,[3244,9715],9904,[2371,9905],[2434,9809],2370,2435,2435,2434,2370,2435,2435,2434,2371,2371,2370,2371,[2370,9526],[3913,9527],3978,3914,3914,3914,3911,[4097,4041],[4097,4042],[4097,3850,10097],10001,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3393,9494,5188],5189,5190,[3457,5191],3905,3458,3456,3521,3908,3456,3458,3456,3393,3521,[3522,5092],5093,5094,[3521,5095],[3907,9596],[3905,9593],[3522,5188],5189,5190,[3456,167,5191],403,403,403,[3920,101],3919,3920,3983,3919,3920,3981,3983,3983,[3920,3968],3457,3906,3905,3905,3906,3906,[3918,4037],3920,3983,3983,3919,3920,3983,3920,3981,[3983,3968,9595],[3971,9596],[3905,9497],3906,3908,3905,3906,[3905,9493],[3520,9494],3907,3905,3908,3520,3969,[3593,3973],3268,[3528,3841],3521,3458,3458,3905,3457,3971,3905,3908,3906,3521,3907,3457,3457,3522,[3528,3781],3528,[3594,3840],3456,3905,3392,3457,3969,3457,3457,3908,3520,[3593,3973],3530,3593,3592,[3592,3712],[3593,3713],3907,3906,3907,3520,3522,[3528,3780],[3530,4032],[3594,3844],[3529,3777],[3594,3713],[3530,3714],[3529,3715],[3528,3716],[3592,3779],[3594,3778],[3592,3713],[3528,3717],3593,3269,3594,[3528,3968],3456,3458,3521,3456,3971,3907,3906,3969,3458,3458,3907,3522,3522,3456,3969,3395,3458,3971,3908,[3983,3843],[3983,3842],[3920,4037],3983,3920,3920,[3919,3777],[3983,3713],3906,3907,3907,3523,3971,3520,3584,3585,3522,3971,3457,[3458,9709],[3908,9710],[3920,9611],3983,3983,3919,3920,3919,3920,3983,3918,3920,3919,3983,3983,3919,3920,3920,3981,3917,3983,3920,3983,3920,3919,3981,[2832,3855],2768,2831,[2766,3980],3983,3918,3920,[2832,3921],2767,2768,2768,2765,[2830,9613],[2766,9614],[9997,9515],[2768,9998],[2832,9803],2832,[2765,3852,9709],[3920,9710],[4097,10093,9515],[4097,10185],[4097,10186],[4097,10088],[9992,9514],[3919,9607],[3920,9608],[2765,3855,9610],[2767,9607],[2830,9608],2768,2832,2766,2766,2765,2829,2829,2829,2765,2832,2767,2766,2829,2765,[2832,9718],[2768,9719],[3977,10102,9524],3913,3913,3978,3978,3975,[4097,3785],[4097,3784],3976,[3977,9811],[3977,10000],10001,10002,10003,10004,10005,[2434,9905],[2371,9809],2371,2370,2371,2371,2435,2434,2370,1987,2434,2370,2435,2371,[2370,9233],[2370,9234],[2435,9235],2435,2371,2434,2370,2434,2434,[2434,9526],[2371,9426],[2371,9427],[2434,9428],[2434,9429],[2370,9426],[2370,9427],[2435,9428],[2370,9429],[3913,9430],3913,3913,[3913,9715],9904,[3914,9905],[3977,9906],[3914,9907],[3912,9910],9911,[4097,9716],4097,[4097,3848,9622],[4097,4039,9623],10006,[3914,10102],3975,[4097,3723],4097,4097,[4097,3847],3912,3914,[4097,3979],4097,[4097,3847],[4097,4039],3912,3914,3978,3913,3911,[4097,4039],3912,3977,3977,3913,3913,3913,3978,3978,3914,3914,[4097,3787],4097,[4097,3974],[3977,9715],9904,[3977,9905],[3978,9809],3914,3913,3913,3977,3977,3913,3913,[4097,3979],4097,[4097,3783,10097],[3913,10098],[3914,10099,9523],[3246,9712],[2434,3117,9713],2370,2434,2435,2435,[2371,9526],[3978,9527],3914,3977,3911,[4097,4039,9523],[2435,9616],[2434,9617],2306,2307,2371,2371,2370,2434,2370,[2371,3050],3243,3244,3246,[2370,3117],2371,2434,2371,2370,2370,2370,2371,2434,[2434,3242],3244,[2370,3247],2435,2435,2435,2370,2050,2370,2178,2371,[2435,9522],2370,2434,2434,[2370,2986],[2370,2987],[2114,2991],2434,2435,2370,2370,[2435,9622],[3913,9623],[3913,9524],3913,3975,[4097,3786],4097,[4097,3782,9520],[1923,9521],2371,2434,2370,2371,2434,[2370,3114],3243,3179,3181,3182,3181,[2370,3183],1922,2371,2371,2435,1987,2434,2371,2370,2435,[2371,3114],[2371,3119],2370,2435,2435,2434,2370,[2434,3242],[2371,3117],2435,2435,1987,2370,2434,2371,2370,2370,2434,2435,2371,2370,2435,2435,2370,2435,2371,[2435,3114],3182,[2434,3055],2434,2371,2435,2434,2434,[2370,3114],[2371,3119,9622],[2371,9623],10006,[3182,10102],3182,3243,3181,[3182,9811],[2435,3054,10000],10001,[2434,9616],[2370,9617],2435,2371,2370,2370,2435,2435,2435,2435,1986,2435,2370,[2371,9622],[2434,9623],[3913,9524],3977,3911,[4097,4041],[4097,3849],4192,4097,4097,[4097,3974,10097],[3978,10098],[3913,10099],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3906,9589],[3456,9590,5284],[3522,5285],[3394,5286],[3394,5287],3393,3457,3907,3521,3393,3521,3458,3522,3520,3522,[3907,5188],5189,5190,[3908,5191],[3520,9692],[3905,9593],[3908,5284],[3969,5285],[3520,5286],[3908,5287],[3457,39],403,403,[3920,165],3920,3983,3983,3917,3920,3917,3920,3920,[3920,3841],3969,3908,3907,3908,3908,[3920,3781],3981,3919,3920,3919,3920,3983,3920,3983,[3919,3777],[3908,9691],[3908,9692],[3905,9593],3905,3907,3971,[3908,9493],[3905,9494],3392,3906,3969,3905,3908,3522,3908,[3269,3717],3593,[3529,3968],3521,3522,3456,3907,3522,3907,3969,3520,3457,3458,3520,3907,3520,[3593,3845],3593,[3530,3904],3971,3457,3969,3905,3457,3907,3457,[3529,4035],[3530,4034],[3530,3844],3528,3332,3528,[3593,3968],3908,3393,3907,3907,3521,3457,3971,[3593,3779],3594,[3593,3968],3971,3908,3521,3456,3522,3906,3969,3457,[3592,3713],[3594,3780],3592,[3530,4032],[3594,4033],3969,3522,3908,3456,3906,3907,3458,3908,3971,3969,3520,3520,3907,3520,3522,3458,3906,[3920,3844],3920,3920,[3918,3778],[3983,3714],[3983,3715],[3919,3716],3522,3458,3521,3971,3520,3907,3971,3521,3648,3649,3907,3971,3907,[3969,9805],[3971,9806],[3981,9611],3918,3920,3920,3919,3920,3920,3920,3920,3983,3919,3983,3983,3981,3919,3920,3918,3919,3983,3920,3920,3919,3920,3919,[2829,3791],2767,[2767,3724],3983,3983,3919,3920,[2768,3985],2765,2767,2830,2829,[2832,9709],[2767,9710],[2765,10093,9611],2829,[2829,1703],[2830,1704],[2768,3916,9613,1705],[3983,9614],[4097,9611],4097,4097,4097,[4097,10088,9706],[3920,9703],[2831,4049,9704],[2832,9706],[2832,9703],[2768,9704],2832,2767,2767,2767,2767,2831,2768,2765,2768,2768,2830,2765,2767,2831,[2832,9622],[2765,9623],[3914,9716,9330],[3978,9333],3914,3914,3913,3913,3975,3976,3977,3913,3913,[3977,10097],[3914,10098],[3978,10099],[3913,10100],[3911,10101],10001,[2371,9905],[2435,9809],2370,2371,1922,2370,2370,2435,1986,2435,2434,2434,2434,[2435,9525],2434,[2435,3052],[2370,2987],[2435,3053],[2435,2986],[2434,2987],[1987,3054],2371,2434,2370,2371,2370,2435,2435,2371,2370,2371,[2434,9526],[3913,9527],3913,[3914,9811],[3911,10000],10001,10002,10003,10006,[3977,10007],[4097,3785,9812],4097,[4097,9718],[4097,9719],[3978,10102,9524],3913,3913,[4097,3979],4097,4097,[4097,3783],3976,3977,3975,[4097,3785],4097,4097,[4097,3974],3914,3913,3911,[4097,3849],4097,[4097,3847],3912,[3977,9814],[3977,9906],[3977,9907],[3978,9903],[3977,9909],[3913,9809],3914,3978,[4097,3915],4192,[4097,3848],[4097,4039,9811],[4097,4040,10000],10001,[3914,9616],[3977,9617],3977,3913,3978,3913,3911,[4097,4039],[4097,4043],4097,[4097,3974],[3914,10194],[3914,10195,9619],[2435,9712],[2434,9713],2370,2435,2435,2434,[2434,9622],[2370,9623],[3911,9524],[4097,4039],[4097,3849],[4097,9619],[2434,9712],[2435,9713],2371,2435,2370,2370,2435,2435,2371,[2371,3114],3244,3246,[2434,3247],2371,2434,2178,2371,[2435,3051],[2435,2987],[2370,3054],2434,[2434,3052],3180,3246,[2370,3247],2434,2434,2370,2371,2370,2435,2435,[2434,9523],[2434,9618],2435,2434,2435,[2434,3242],3244,3180,[2370,3053],2370,2435,2371,[2435,9718],[3977,9719],[3913,9620],3914,3914,[4097,3979],[4097,9523],[2435,9616],[2435,9617],2370,2370,2370,2434,2370,[2434,3178],3244,3182,3246,3246,3246,[2434,3118],1987,2434,2435,2434,2370,2435,2371,2434,2370,[2370,3178],[2370,3183],1986,2370,2370,2435,[2435,3051],3244,[2370,3053],2434,2435,2435,2371,2435,2371,[2434,9525],2370,2371,2435,[2370,3052],[2370,3054,9523],[2435,9809],2370,2435,2370,2371,[2435,3178],3180,[2435,3119],2242,2243,2371,2371,2435,[2370,3178],[2435,3183,9718],[2371,9719],[3245,10102,9524],3181,3179,3180,3246,3180,[2434,3055],[2371,10097],[2434,9712],[2434,9713],2371,2435,2371,2178,2050,2371,2371,2435,2371,2370,2434,[2435,9718],[2370,9719],[4097,4041,9620],[4097,4042],[4097,3849],4097,4097,4097,4097,[4097,3783],3976,[3977,10194],[3913,10195],[3978,10097],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3457,9685],[3457,9686,5380],[3456,5381],[3457,5382],[3908,5383],3456,3456,3907,3905,[3520,4996],[3908,4997],[3969,4998],3520,3908,3969,[3908,5284],[3394,5285],[3907,5286],[3907,9595,5287],[3905,9596],[3969,9593],[3905,5380],[3969,5381],[3969,5382],[3520,173,5383],[3905,231],403,403,[3920,3713,229],[3981,3714,174],[3919,3715],[3983,3716],[3920,3713],[3983,3780],3917,3920,3919,3983,[3919,3776],3906,3905,3971,3908,[3983,3909],3983,3919,3983,3983,3920,3919,3983,[3920,3712],3456,[3906,9595],[3908,9596],[3394,9593],3908,3971,[3905,9493],[3971,9494],3908,3523,3971,3905,3521,3905,3521,3456,[3594,3973],3269,[3530,3841],3906,[3529,3970],3456,3522,3459,3522,3906,3905,3586,3587,3907,3457,3520,[3528,3909],3528,[3530,3968],3521,[3530,3972],3905,3522,3520,3969,[3593,3973],3594,3594,[3593,3712],[3529,3779],3594,[3593,3777],3907,3456,3906,3905,3521,3905,3522,3969,3906,[3530,3713,131],[3969,132],[3907,133],[3906,134],[3969,135],[3458,136],[3906,137],3906,3458,3908,3908,3522,[3528,3780],3592,3529,[3594,3841],[3593,4033],3520,3521,3907,3393,3906,3969,3907,3521,3457,3458,3971,3521,3458,3457,[3981,3781],3920,3920,[3920,3778],3908,3906,3456,3906,3458,3971,3520,3522,3971,3521,3971,3520,3905,3456,3457,3908,[3906,9805],[3969,9901],9902,[3920,9707],3919,3920,3983,3983,3920,3983,3983,3918,3920,3920,3983,3983,3919,3920,3919,3918,3983,3920,3920,3920,3920,3920,3920,3981,[2832,3725],3920,3918,3920,3919,3920,3919,[2768,3791],2831,2766,2829,[2766,9709],[2765,9710],[2832,9611],2767,[2766,1767],1768,[3983,9709,1769],[3917,9710],[4097,9707],4097,4097,4097,[4097,9416],[2829,3855,9512],2829,[2832,9511],[2829,9512],2832,2767,2829,2831,2767,2765,2766,2829,2830,2831,2829,2829,2829,2831,2766,2832,[2832,9526],[2831,9426],[2832,9429],[3978,9527],3914,3978,3977,3978,3978,3977,3978,3978,3978,[3914,10194],[3913,10195],[3911,10196],[4097,4043,10197],[4097,10097],10001,[2434,9616],[2371,9617],2435,2435,2371,2371,2434,2370,2434,2370,2435,1987,[2435,3052,9621],[2370,2987,9524],3180,3181,3244,3180,3182,[2371,3055],2370,2371,2434,2371,2371,2370,2435,2370,2434,[1923,4249],2370,[2370,9526],[3913,9527],3977,[4097,3787],[4097,10097],[4097,10098],[4097,10099],[4097,3846,10102],3913,3975,[4097,3719],[4097,3719,9622],[4097,3720,9623],[3978,9620],3977,3977,3975,[4097,3722],[4097,3719],3976,3913,3977,3978,[4097,3979],4097,4096,[4097,4038],[4097,4039],[4097,4040],[4097,4043,9814],[4097,9906],[4097,9907],[4097,9908],[4097,3847,9909],[3977,9910],10002,10003,9999,10005,[3978,9905],[3978,9809],3914,3975,[4097,3785],4097,4097,4097,[4097,10097,9523],[3914,9712],[3914,9713],3913,3913,3913,3911,[4097,3849],4097,4097,4097,[4097,3974],3914,[3914,9715],[2435,9808],[2371,9809],2434,2370,2371,2370,[2435,9718],[2371,9719],[4097,3850,9620],4097,4097,[4097,3718,9619],[2434,9808],[2434,9809],2370,2434,2434,2435,2434,2434,2370,[2370,3178],3244,3181,[2370,3118],2371,2434,1986,[2371,3052],3246,3246,3181,[2370,2987],3182,3246,3243,[2434,3117,9525],2435,2370,2434,1987,2370,2370,2435,[2371,9619],[2434,9808],[2435,9809],2370,[2435,3051],3243,3181,3182,[2434,3118],2435,2370,2371,[2371,9814],[3978,9815],[3913,9620],3978,3911,[4097,3849],[4097,9619],[2371,9712],[2371,9713],2434,2434,2370,2435,2434,[2435,3242],3246,3182,3179,3179,[2434,3311],2371,2371,2370,2370,2434,2371,2371,2435,2435,2370,[2371,3242],[2370,3247],2435,2435,2370,2371,[2434,3050],3182,[2370,3055],2435,2434,2371,2371,2434,2371,[2435,9621],[2370,3052,9524],[2370,2987],[2434,3053],[2435,3242],[3179,9619],[2434,9905],[2435,9809],2370,2435,2371,[2371,3242],3179,[2371,3183],2306,2307,2435,2435,2434,[2435,3242],[2435,3247,9814],[2371,9815],[3244,9620],3181,3243,3245,3243,3179,[2435,3183],[2371,9520],[2371,9521],2435,2371,2434,2370,2435,2435,2435,2435,2435,2435,2435,2370,[2371,9814],[2434,9815],[4097,9620],4097,4097,4097,4097,[4097,3784],[4097,3719],3976,3978,3978,3977,3911,[4097,4039,10097,9523],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3906,9781],[3457,9782,5476],[3394,5477],[3394,5478],[3392,5479],3457,3393,3394,3521,[3905,5092],5093,5094,[3907,5095],3458,3394,[3392,5380],[3522,5381],[3971,5382],[3907,9595,5383],[3905,9596],[3907,9593],[3906,5476],[3971,5477],[3458,5478],[3908,103,5479],403,403,403,403,[3905,101],3971,3969,3971,3908,[3919,3717],3917,3920,3920,[3920,3840],3971,3906,3392,3905,[3920,3844],3920,3920,3918,3983,3919,3919,3920,[3983,3968],3905,[3392,9595],[3907,9596],[3906,9593],3457,[3905,9496],[3907,9589],[3906,9590],3907,3905,3392,3584,3585,3971,3907,3906,[3530,3973],3530,3268,[3594,3968],3906,3905,3969,3906,3520,3521,3907,3650,3651,3969,3457,3907,[3594,3844],3594,[3594,3776],3393,3520,3522,3521,3457,3908,3907,[3594,3779],3530,[3593,3968],3521,[3528,3713],3971,3521,3907,3971,3458,3969,3908,3971,3907,3521,[3905,195],196,197,198,199,200,[3905,201],3458,3521,3907,3456,3457,3969,[3594,3779],3528,3592,3528,[3592,4032],3458,3458,3971,3522,3458,3971,3906,3969,3522,3907,3971,3522,3457,[3920,3845],3983,3920,[3919,3776],3908,3520,3905,[3522,3461],3458,3520,3456,3522,3522,3457,3521,3906,3456,3520,3906,[3908,9805],[3906,9901],9997,[3919,9998],[3981,9803],3918,3983,3918,3919,3918,3919,3981,3920,3981,3983,3919,3983,3920,3919,3919,3983,3919,3918,3919,3919,[3919,9321],[3983,9321],[3919,9322],[3919,9323],[3919,9324],[3920,9321],[3919,9322],[3920,9323],[3919,9324],3983,3920,[2831,3793],[2830,566],[2767,567],2832,[2767,9613],[2830,9614],[2830,9611],[2832,3789],[2766,3725,1831],1832,[3981,1833],[3919,9517],[4097,9421],[4097,9321],[4097,9324],[4097,9416],[2766,3855,9512],2831,[2766,9514],[2767,9607],[2767,9608],2832,2832,2832,2766,2832,2832,2831,2832,2830,2832,2830,2829,2768,2832,2765,2832,2767,2765,[2829,9622],[2832,9623],[3978,9524],3978,3911,3912,3978,3913,3977,3913,3914,3914,3913,[4097,3787],4097,4097,[4097,10097],[2434,9712],[2434,9713],2434,2370,2371,2435,2434,2435,2435,2371,2114,[2370,9814],[3246,9815],[3181,9620],3182,3245,3181,3245,[3245,9522],[2435,3119],2370,2370,2050,1923,2434,2435,2371,2435,[2370,4344],[2370,4345],[2371,4346],[2435,9622],[2434,9623],[3913,9524],[4097,3915],4097,[4097,3784],[4097,3785],[4097,3910],3977,3913,3978,[3914,9718],[3977,9719],[3914,9716],3914,3977,3913,3914,3913,3978,3914,3914,3914,3975,[4097,3786],4097,4097,4097,[4097,9814],[4097,9910],10002,10003,10004,10005,10006,[3977,10098],[3913,10099],[3913,10095],[3913,10101],10001,[3914,9905],[3914,9809],3977,3975,[4097,3785],4097,4097,[4097,9619],[3978,9712],[3977,9713],3913,3914,3977,[4097,3979],4097,4097,4097,[4097,3784],3976,3911,[4097,4040,9811],9904,[2371,9905],[2370,9809],2370,2434,2371,[2434,9718],[2435,9719],[4097,3785,9620],4097,4097,[4097,3974,9715],9904,[2435,9905],2435,2371,2370,2435,2371,2435,2370,[2371,3050],3180,3179,[2435,3053],2434,[2370,3052],[2370,2987],3180,3179,[2371,3309],[2370,3310],3180,3181,3179,3245,[2435,3054,9621],[2370,9524],2435,2371,2371,2435,2434,2435,[2370,9715],9904,[2434,9905],[2370,9809],[2371,3050],3181,3244,[2371,3247],2435,2371,2435,[2371,9814],[2371,9910],9911,[3977,9716],3914,[4097,3979],4192,[4097,9619],[2371,9808],[2370,9809],2434,2435,2371,2434,2435,[2434,3306],[2434,3307],3180,3243,[2435,3117],2242,2243,2371,2370,2434,2435,2371,2435,2435,2371,[2370,3051],3245,[2370,3117],2434,2051,2435,2371,[2370,3114],3245,[2434,3183],2370,2370,2435,2435,2370,[2371,9622],[2435,9623],[3246,9620],3181,3179,3180,[3245,9715],10001,[2435,9905],[2370,9906],[2435,9907],[2435,3052,9809],3182,[2434,3307],[2370,3117],2435,2434,1986,2371,2435,[2435,3115,9814],[3179,9910],9911,[3180,9716],3182,3244,3245,3246,3180,[2435,3247,9523],[2371,9616],[2434,9617],2435,2371,2434,2370,2370,2370,2370,2435,2371,2434,2434,[2435,9814],[2371,9910],9911,[4192,9716],4097,[4097,3784],[4097,3720],[4097,3722],3976,3913,3978,3977,3914,3911,[4097,3849],[4097,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3906,9878],[3908,9879],[3393,9880],[3521,9782],3521,3456,3908,3393,[3906,5188],5189,5190,[3457,5191],3458,3457,[3457,5476],[3392,5477],[3971,5478],[3393,9691,5479],[3906,9692],[3907,9689],3521,3392,3520,[3971,167],403,403,403,403,[3905,165],3908,3969,3905,3908,3907,[3920,3780],3919,3983,[3919,3904],3905,3908,3457,[3919,3844],3983,3983,3919,3983,3919,3920,3917,[3920,3777],3522,3906,[3908,9691],[3907,9692],[3907,9593],3905,[3969,9592],[3393,9589],[3906,9590],3905,3969,3969,3648,3649,3971,3908,3908,3521,[3594,3780],3269,[3593,4032],3521,3520,3969,3971,3907,3458,3521,3969,3520,3905,3521,[3528,3973],3592,3332,[3594,3840],3907,3521,3971,3522,3458,3908,[3529,4033],[3530,3843],[3529,3712],3520,3458,3905,3456,3456,3908,3971,3969,3521,3971,3969,3906,3520,[3457,259],260,261,262,263,264,[3908,265],3522,3907,3907,3907,3457,3521,[3592,3973],3268,3332,3268,[3594,3777],3457,3456,3520,3520,3586,3587,3969,3905,3520,3520,3906,3521,3907,[3920,3909],[3457,3984],3920,[3919,3840],3456,3905,3907,3908,3458,3456,3457,3458,3395,3521,3969,3520,[3919,3843],[3983,3841],[3969,9805],[3905,9901],9997,[3918,10093],3919,3983,3983,3983,3920,3919,3983,3919,3919,3920,3919,3920,[2830,4046,566],[2767,4047,567],3920,3920,3917,3919,3919,3920,3983,[3919,9416],[3983,9417],[3919,9417],[3920,9418],[3920,9419],[3918,9420],[3920,9417],[3918,9418],[3920,9419],[3920,9420],[3920,9421],3919,[2829,3857],[2766,630],[2831,631],2830,[2768,9709],[2830,3724,9710],[2831,3725,9707],3983,[3919,1895],1896,[3920,1897],3919,[3918,9517],[3919,9417],[3919,9420],[2831,3985,9512],2768,2832,[2832,9706],[2768,9703],[2829,9704],2766,2830,[2829,3790],[2765,3726],[2768,3727],[2767,3728],[2831,3729],2768,2830,2830,2768,2768,2832,2768,2765,2766,2768,2832,[2765,9622],[2832,9623],[3978,9620],3911,[4097,3849],[4097,4038],3912,3977,3913,3913,3914,3913,3977,[4097,3915],4097,4097,[4097,9520],[2371,9521],2434,2435,2434,2435,2435,2370,1987,2371,2434,[1987,9814],[1922,9910],9911,[3912,3116,9716],3245,3181,3246,[3246,9523],[3246,9618],[1986,3183],2370,2371,2371,2371,2370,2435,2435,2370,2371,2370,2435,[2435,9718],[2370,9719],[3977,9716],3975,[4097,3719],3976,3975,3976,3914,3913,3978,3914,[3913,9526],[3913,9430],3911,[4097,4039],[4097,4040],[4097,4039],3912,3977,3913,3913,3978,3978,[4097,3979],[4097,9814],[4097,9906],[4097,9907],[4097,9910],10006,[3911,10098],[4097,10099],[4097,10100],[4097,3974,10101],[3977,10102],[3914,10194],[3913,10195],[3977,10191],[3978,10197],[3978,10097],10001,[3977,9616],[3978,9617],3977,3975,[4097,3719],[4097,3720],[4097,3721,9619],[3977,9808],[3913,9809],3911,[4097,4039],[4097,4040],[4097,3850],4097,[4097,3783],[4097,3719],3976,3911,[4097,3849],4097,[4097,10000],10001,[2435,9905],[2370,9906],[2434,9907],[2435,9908],[2434,9909],[2371,9815],[3975,9620],[4097,3785],[4097,3784],[3976,9811],[3913,10000],10001,[2370,9616],[2370,9617],2371,2434,2051,2434,2435,[1987,3178],3180,3179,3245,[2434,2987],3181,3179,3245,[2434,3117],2371,2434,[2371,3116],[2434,3307],[2435,3308],[3246,9814],[2370,3118,9815],[2051,9620],2435,2434,2434,2371,2371,2371,[2371,9811],[2370,10000],[10001,9523],[2370,9616],[2370,3114,9617],3180,3181,[2370,3117],2434,2434,[2435,9622],[2434,9623],10006,[3978,10007],[3977,9812],3977,3975,[4097,3785],[4097,9715],9904,[2435,9905],[2370,9809],2435,2371,2371,2434,2435,2051,[2434,3116],[2370,3117],2434,2306,2307,2434,2434,2435,2435,2434,2434,2370,2434,[2434,3050],3245,[2370,3053],2434,2435,2435,2434,[2435,3178],3182,[2371,3247],2434,2371,2434,2370,2371,[2371,9718],[2435,9719],[3246,9620],3181,3244,3245,[3181,9811],[2435,3118,10097],10001,10002,10003,[3182,9616],[2370,3117,9617],2370,2370,2435,2434,2435,2371,[2371,9718],[2434,9719],10006,[2434,3051,10007],[3246,9812],3182,3179,3179,3180,3181,[2434,3311,9619],[2435,9712],[2370,9713],2435,2370,2434,2434,2434,2434,2435,2371,2435,2435,[2370,9622],[2371,9623],10006,[4097,3720,10007],[4097,3721,9812],[4097,3722],3976,3977,3977,3977,3977,3977,3977,3914,[4097,3979],4096,[4097,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],9974,9975,9976,[3393,9878],[3457,9782],3907,3969,3458,[3907,5284],[3521,5285],[3522,5286],[3457,5287],3522,3456,3907,3907,3969,3905,[3906,9499],[3908,9403],3906,3522,3969,3584,[3585,39],403,403,[3971,37],3969,3394,3971,3908,[3969,4153],3907,[3919,3973],3983,3920,[3981,4032],[3983,4033],[3981,4034],[3920,3843],3919,3919,3919,3920,3920,3920,3920,3983,[3920,3968],3908,3971,[3908,9787],[3456,9788],[3907,9593],3969,[3905,9592],[3905,9781],[3520,9782],3971,3907,3969,3907,3971,3393,[3594,3970],3971,3458,[3530,3973],3269,3268,[3528,3841],3522,3908,3456,3521,3908,3521,3458,3520,[3593,4033],[3594,4034],[3592,3843],3593,3529,[3529,3904],3521,3906,3905,3907,3908,[3594,3843],3530,3593,[3594,3968],3458,3458,[3594,3970],3908,3905,3521,[3592,4033],3969,3457,3907,3906,3971,3969,[3907,323],324,325,326,327,328,[3394,329],3908,3457,3586,3587,3906,3456,3522,[3530,3780],[3529,3777],[3593,3713],3907,3969,3905,3522,3969,3650,3651,3907,3971,3908,3458,3908,3522,3457,[3920,3973],3983,3983,[3918,3904],3456,3521,3906,3971,3392,3971,3969,3458,3907,3908,[3920,4033],[3920,3843],3920,[3920,9613],[3920,9614],[9997,9515],[3920,10093],3920,3983,3983,3920,3919,3983,3918,3920,3920,3920,[2767,4049],[2829,3853],[2768,3855],[2832,630],[2829,631],[2766,3788],3983,[3920,9321],[3919,9322],[3919,9323],[3981,9324],[3919,9511],[3920,9512],3983,3920,3983,3919,3983,3919,3983,3919,3983,[3983,9517],[3983,9518],[2830,3921],[2765,694],[2829,695],2830,2829,[2829,3788,9517],[3919,9518],3919,[3983,1959],[3920,1960],[3919,1961],[3919,4156],3919,3919,[2767,4047],[2831,3856],2832,[2830,9415],[2829,9416],[2768,9512],2832,[2767,3789],[2832,3725],3920,3983,3983,3920,3983,[2831,3725],[2766,3729],2766,2768,2831,2830,2829,2829,2765,2766,2830,[2831,9718],[2832,9719],[3977,9620],[4097,3979],4097,4097,[4097,3847],3912,3978,3977,3913,3914,3911,[4097,3850],4097,[4097,9523],[2370,9616],[2435,9617],2370,2434,2371,2434,2370,2435,2435,2434,[1922,9814],[1987,9910],10006,[4097,3718,10007],[3976,9812],[3913,3306],[3913,3309],[3914,3310],[3911,3311,9619],[3245,9616],[1986,3311,9617],2371,2434,2371,2370,2435,2371,2370,2435,2434,2435,2371,2371,[2434,9526],[3913,9430],3913,3977,3978,3977,3911,[4097,4040],3912,3978,3978,3913,[3978,9526],[4097,3850,9527],4097,4097,4097,[4097,3847],3912,3914,3978,3914,3977,[3975,9814],[4097,3719,9910],10002,10003,10006,[3978,10102],[3975,10194],[4097,3723,10195],[4097,10196],[4097,4038,10197],[4097,4039],[4097,4040],[4097,4039],3912,3978,3913,[3914,10097],[3978,9712],[3914,9713],3977,3978,3914,3914,[3977,9715],9904,[3913,9905],[4097,3979,9809],4097,4097,4097,4097,[4097,3974],3911,[4097,4039],[4097,4043],4097,4097,4097,[4097,3784,10097],10001,10002,10003,10004,10005,9911,[4097,3974,9716],3975,3976,3913,3914,[3977,10097],[2371,9712],[2434,9713],2435,2371,2434,2371,2435,[2370,3116],[1987,3307],[2371,3307],3245,3243,3244,3244,[2435,3247],2371,2370,2434,2435,2371,[2371,9814],[2371,3116,9910],9911,[2370,9716],2370,2434,2370,2434,2371,2435,2434,2371,[2370,10097,9619],[2371,9712],[2435,3178,9713],3244,[2370,3055],1986,2371,2371,[2435,9718],[2370,9719],[3914,10102],3914,3977,3978,3978,3975,[4097,3785,9811],[4097,10000],10001,[2434,9616],[2435,9617],2435,2370,2371,2370,2371,2434,2435,2435,2435,2371,2434,2371,2434,2370,2370,2435,2435,2370,[2435,3114],3179,[2370,3055],2371,2371,2370,2434,[2371,3116],3179,[2434,3117],2435,2371,2435,2370,2434,[2435,9814],[2435,9815],[3245,9620],3244,3243,3179,[2435,3247],2370,[2435,10097],[2370,10098],[2434,10099,9523],[2371,9808],[2371,9809],2371,2434,2435,2371,2435,2434,[2435,9814],[2435,9815],[2435,10102,9524],[2370,3242],3182,3180,3245,3180,3246,[2434,3118],[2371,9619],[2435,9616],[2434,9617],2370,2435,2370,2435,2370,2371,2434,2434,2435,2371,[2370,9718],[2370,9719],[3977,10102],3977,3913,3913,3913,3913,3911,[4097,4041],[4097,4042],3912,3977,3914,3975,[4097,3785],[4097,9811],[4097,10000],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],[403,10071],[403,10072],9974,[3520,9589],[3521,9590],3906,3457,[3907,5380],[3521,5381],[3456,5382],[3907,5383],3456,3521,3456,3908,3907,3522,3908,[3908,9499],[3906,9500],[3522,9303],3969,3648,[3649,167],403,403,[3908,101],3906,3906,3907,1610616321,1610616385,3906,3907,[3919,3780],3919,3983,3983,3983,3919,3983,3917,3983,3983,3920,3919,[3920,3712],[3919,3713],[3521,9787],[3457,9879],[3522,9882],[3906,9883],9884,[3523,9689],3908,[3395,9688],9877,[3905,9878],[3908,9782],3521,3521,3908,3906,3394,3908,3971,3521,3458,[3529,3717],3530,3529,[3530,4032],3522,3521,3905,3906,3458,3971,[3594,3843],3530,3530,3530,3332,3594,[3530,3968],3521,3908,3458,3456,[3529,3781],3593,[3528,3777],[3594,3713],[3530,4033],[3528,4034],3907,3521,[3594,4033],[3592,4034],[3594,3843],3594,[3593,3968],3456,3908,3905,3969,3908,[3905,387],388,389,390,391,392,[3521,393],3906,3908,3650,3651,3457,3457,3521,3520,3456,3522,3521,3969,3908,3908,3395,3905,3971,3971,3969,3458,3458,3457,3971,3969,[3920,3781],3983,3920,[3920,3968],3971,3907,3456,3520,3907,3905,3522,3456,[3920,4033],[3983,4037],3919,3920,3920,[3920,9709],[3917,9710],[3983,10093,9611],3919,3919,3920,3919,3917,3983,3920,3920,3920,3920,[2768,3793],2766,2830,2765,[2768,694],[2829,695],[2768,3852],[3920,9416],[3919,9417],[3981,9418],[3983,9419],[3918,9420],[3917,9512],3918,3983,3981,3919,3919,3983,3920,3919,3918,3983,[3920,9709],[2765,4047,9710],[2830,3855,9515],2829,2829,2767,2766,[2829,3852,9613],[3983,9614],[3983,9515],3919,3919,3918,3981,3919,[2832,3793],2830,2829,[2765,9321],[2768,9511],[2767,9512],2765,2830,[2829,3980],3983,3983,3919,3983,3919,3983,3920,3919,[2832,3792],2767,2830,2832,2766,2831,2766,2765,2830,[2832,9622],[2832,9623],[3978,9620],3975,[4097,3785],4097,4097,[4097,3974],3977,3914,3977,3914,[4097,3979],4097,4097,[4097,9715],[2370,9712],[2370,9713],1922,2435,2371,2435,2435,2370,2371,[2434,9814],[2371,9910],10006,[4097,10102],[4097,3974],3913,3913,3977,3911,[4098,3849,9715],[1922,3247,9808],[1986,9809],2370,2370,2371,1987,2435,2371,2370,2435,2435,2435,2242,2243,2435,[2435,9526],[3911,9527],[4097,4039],[4097,4041],[4097,4042],[4097,4043],4097,[4097,4038],[4097,4041],[4097,4042],3912,[3978,9622],[3914,9623],[4097,9524],4097,4096,4097,[4097,3974],3977,3977,3914,[3914,9814],[3913,9910],10006,[4097,10098],[4097,3847,10099],[4097,4039,10102],3912,3913,3975,[4097,3785],4097,4096,4097,4097,[4097,3974],3914,3914,[3911,9520],[4097,4039,9521],[4097,4041],3912,3914,3978,3914,[3914,9811],[3914,10000],10001,[4097,4043,9616],[4096,9617],4097,4097,4097,[4097,4038],[4097,3850],4097,[4097,9330],[4097,9333],[4097,3784],[4097,3719],3976,[3977,10097],[3978,10098],[3913,10099],[3913,10100],[3913,10101],[4097,3723,10007],[4097,4038,9812],3912,3913,3914,3913,[3913,9425],[2371,9521],2371,2370,2434,2435,2370,2434,2370,2434,2435,[2435,3115],3179,3246,3243,[2434,3118],2371,2371,2370,2370,[2371,9814],[2434,9910],10006,[2434,10007],[2371,9812],2370,2435,2370,2371,2435,2371,2434,1987,[2371,9619],[2434,9616],[2371,3242,9617],3244,[2370,3119],2435,2371,2435,2434,[2435,9526],[3914,9527],3914,3978,3977,3978,3978,3975,[4097,3719],[3719,10097],[2434,9712],[2434,9713],2371,2434,2435,2435,2435,2435,2370,2370,2435,2370,2370,2434,2371,2434,2434,2434,2370,2370,[2370,3178],3179,[2370,3183],2370,2434,2371,2435,[2434,3051],[2371,3247],2370,2434,2370,2434,2434,[2435,9814],[2435,9910],9911,[2370,3309,9716],[2370,3310],3181,3179,3243,[2435,2988],[2435,2990],[2370,2987,10194],[2435,3054,10195,9715],9904,[2370,9905],[2370,9906],[2435,9907],[2434,9908],[2434,9909],[2434,9906],[2371,9907],[2435,9910],9911,[2370,3052,9716],3182,3181,3179,3181,3244,[2371,3055],2371,[2370,9715],[2371,9712],[2370,9713],2370,2435,2370,2435,2434,2371,2434,2371,2434,2371,2370,[2370,9526],[3914,9527],3914,3977,3914,3914,3911,[4097,3849],4097,4097,[4097,3848],3912,3978,3913,3975,[4097,3719],[4097,3785],[4097,10097],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10167],[403,10168],[403,9592,10070],[3393,9685],[3393,9686],3906,3522,[3458,5476],[3392,5477],[3969,5478],[3457,5479],3458,3456,3457,3458,3969,3907,3905,[3906,4996],[3906,9499,4997],[3971,9399,4998],[3457,230,9500],[3906,230],[3456,231],403,403,[3971,165],3456,3908,3457,1610616320,1610616384,3905,3908,[3920,3973],3919,3919,3919,3920,3920,3919,3919,3920,3981,3917,3919,[3920,3776],[3969,9787],[3971,9883],9975,9978,9979,[3907,9980],[3971,9785],3907,[3905,9784],[3908,9973],9974,[3905,9878],[3905,9782],3908,3520,3394,3971,3906,3394,3458,3971,3521,[3593,3779],3593,3594,[3530,3841],[3594,4033],[3594,4034],[3528,4035],[3529,4036],[3593,4037],3592,3333,[3529,3778],[3529,3717],3528,[3530,3777],3458,3905,3457,3969,3520,[3593,3845],3528,[3529,3841],[3530,3843],3332,3528,[3529,3841],[3528,3843],3594,3594,3594,[3593,3777],3906,3908,3969,3458,3522,3458,[3908,451],452,453,454,455,456,[3522,457],3456,3457,3458,3905,3969,3520,3905,3905,3457,3457,3457,3393,3458,3906,3458,3521,3906,3392,3905,3456,3907,3521,3457,3971,[3983,3845],3917,3918,[3920,3842],3905,3586,3587,3457,3969,3907,3907,[3919,3844],3983,3920,3919,[3920,3712],[3920,3713],[3918,3714,9613],[3919,3713,9614],[3919,9611],3920,3919,3919,3919,3920,3983,3919,3983,3919,3919,[2832,3921],2767,2768,2830,2765,2830,[2829,3916,9511],[3920,9512],3919,3920,3919,3919,3920,3920,3919,3919,3920,3983,3920,3917,3919,3983,3920,[2829,3793,9805],[2766,9806],[2830,9611],2766,[2829,3789],[2767,3729],2829,[2830,3916,9709],[3920,9710],[3983,9707,9321],[3981,9324],3983,3920,3920,3981,[2765,3857],2830,[2832,9416],[2831,9417],[2831,9512],2831,2830,[2768,3790],3917,3920,3917,3919,3920,3920,3920,3919,3919,3920,[2766,3791],2767,2832,2830,2832,2830,2832,2832,[2831,9718],[2832,9719],[3914,9620],3914,3975,[4097,3785],[4097,3718],3976,3978,3978,3977,3977,[4097,3979],[4097,9330],[4097,9333],[4097,9520],[2434,9521],2370,2370,2371,2434,2370,2370,2435,[2371,9814],[2371,9910],10006,[4097,10102],[4097,3783],3976,3914,3914,3977,3975,[4098,3785,9811],9904,[1987,9905],[2370,9809],2434,2370,2371,2371,2434,2434,2434,1923,2370,2306,2307,1923,[2370,9622],[2435,9623],[4097,9524],4097,4097,4097,4097,4192,4097,4097,[4097,3848],[4097,4039,9718],[3912,9719],[4097,3721,9620],[4097,3722],[4097,3785],[4097,3784],3976,3978,3978,[3977,9622],[3913,9623],[10006,9524],[4097,10102],[4096,10194],[4097,10195],4097,[4097,3847],3912,3977,3975,[4097,3719],[4097,3723],4097,4097,[4097,3848],3912,[3978,9520],[4097,3849,9521],4097,4097,[4097,3847],3912,3978,3913,3914,3978,[3977,10097],[4097,9712],[4097,9713],[4097,3783],[4097,3785],4097,4097,4097,[4097,9425],[2370,9426],[2435,9429],[3976,9430],3914,3977,3913,[3977,10194],[3977,10195],[3914,10196],[3913,10197],[4097,3979],4097,[4097,3848],[4097,4039,9330],[3913,9333],[3913,9520],[2370,9521],2370,2435,2370,2370,2435,2434,2370,2435,2434,2434,2371,[2370,3050],3180,[2434,3247],2435,2434,2434,2434,[2371,9718],[2434,9719],[10006,9524],[2434,10102],2370,2435,2435,2434,2435,2371,2370,2435,2371,2434,[2434,9619],[2370,3051,9712],[3243,9713],3179,[2371,3183],2370,2435,2435,2434,[2434,9622],[2370,9623],[3978,9524],3914,3911,[4097,4041],[4097,4042],3912,3978,[3978,9520],[2371,9521],1986,2435,2371,2371,2435,2435,2435,2434,2434,2434,2435,2371,2434,2370,2371,2371,2435,2370,2370,[2370,3115],3181,3182,[2435,3053],2370,[2435,3052],[2370,2987],3180,3243,[2371,3053],2370,2435,2371,1922,[2435,9910],10006,[2434,10007],[2371,9812],2435,[2434,3242],3245,3181,3246,3245,3244,[3244,9811],[2987,10000],10001,10002,10003,10004,10005,10002,10003,10006,[2434,2987,10007],[3244,9812],3245,3181,3179,3246,3243,[2370,3183],2371,[2371,9520],[2370,9521],2371,2435,2434,2434,2370,2434,2434,2434,2434,2370,2371,2435,2435,[2370,9526],[3913,9527],3977,3977,3977,[4097,3979],4097,4097,4097,4097,[4097,3974],3913,3913,3914,3978,[4097,3979],[4097,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3456,9589],[3457,9590],3907,3521,3392,3458,3394,3522,3907,3520,3457,3457,3969,3457,3908,[3392,5092],5093,5094,[3905,9499,5095],[403,9500],403,403,[3905,37],3971,3907,3522,3969,3971,3971,3906,3907,3905,[3920,3780],3920,3920,3919,3920,3983,3920,3981,3920,3983,3920,[3919,3840,9595],[3907,9596],[9979,9497],[3971,10071],[3457,10074],[3971,10075],3906,3907,3907,3906,3907,[3906,10070],9974,[3905,9589],[3969,9590],3905,3908,3458,3394,3522,3456,3907,3457,[3530,3844],[3528,3712],[3530,3779],3528,3528,3594,3332,3529,3332,3529,[3592,3777],3969,3906,[3528,3713],3458,3521,3457,3969,3905,3971,[3529,3909],3529,3527,3592,3592,3529,[3593,3778],[3593,3779],3592,3592,3332,[3530,3968],3971,3520,3457,3969,3905,3456,[3907,515],516,517,518,519,520,[3905,521],3905,3906,3458,3906,3522,3907,3905,3908,3456,3969,3905,3906,3908,3457,3458,3906,3908,3458,3522,3522,3906,3458,3520,3456,[3983,3909],3981,3981,3983,[3983,3968],3650,3651,3456,[3983,4033],[3919,4034],[3918,4037],3919,3920,3920,3919,[3919,3776],3905,[3458,9709],[3458,9710],[3917,9707],3920,3983,3920,3983,3981,3983,3920,3919,3919,[2766,4045],[2829,3856],2765,2765,2829,2768,[2768,3790,9514],[3920,9607],[3917,9608],3920,3920,3920,3917,3919,3920,3920,3920,3919,3983,3919,3919,3919,3919,[3919,9805],[3857,9901],9902,[2832,9707],2829,[2829,3980],3919,[2830,3725],3981,[3919,9517],[3920,9417],[3983,9420],[3920,9518],[3920,9321],[3983,9322],[3983,9323],[2766,3921,9324],[2830,9416],[2830,9512],2831,2766,[2767,3724],[2767,3725],3920,3920,3983,3983,3983,3983,3983,3983,3919,3920,3981,[2832,3793],2766,2832,2830,2830,2767,2832,2832,[2767,9814],[2832,9815],[3978,9620],3978,3977,3975,3976,3914,3977,3914,3977,3977,[3979,9425],[2371,9426],[2434,9429],[2371,9521],2435,2371,2371,2370,2371,2435,2434,[2371,9718],[2370,9719],[10006,9524],[4097,10102],4097,[4097,3974],3914,3913,3913,3914,3914,3975,[3719,10000],10001,[2370,9616],[2434,9617],2434,2434,2434,2371,2371,2434,2371,2370,2371,2435,2370,[2371,9718],[2435,9719],[4097,9620],4097,[4097,3718],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3723],4097,[4097,9814],[4097,9815],[3913,9620],3914,3975,3976,3977,3913,3977,[3978,9718],[3977,9719],[3975,10102,9620],[4097,3720],[4097,3721],[4097,3722],[4097,3723],4097,[4097,3974],3914,3977,3977,3975,[4097,3719],[4097,3785],[4097,3783],[3976,9523],[4097,9808],[4097,9809],4097,4097,4097,[4097,3974],3914,3911,[4097,4039],3912,[3914,9520],[4097,3721,9521],[4097,3722],3976,3975,[4097,3719],[4097,3723],[4097,9520],[2371,9521],2435,2434,[2435,9526],[3978,9527],3914,3978,3914,3913,3977,3978,3975,[4097,3785],[4097,9425],[2370,9426],[2371,9429],[2435,9521],2370,2434,2371,2434,2435,2370,2435,2435,2435,2435,2371,2370,[2371,3114],3243,3181,[2371,3054],2371,2434,2435,[2434,9814],[2435,9815],[2371,10102,9620],2435,2370,2435,2371,2435,2434,2370,2435,2435,2370,2371,[2434,9619],[3243,9616],[2434,3309,9617],[2434,3310],[2370,3311],2435,2371,2370,1922,[2371,9718],[2435,9719],[4097,4041,9620],[4097,4042],[4097,3849],4097,4097,[4097,3847],[3912,9520],[2434,9521],2370,2370,2371,2370,2370,2434,2434,2370,2370,2371,2371,2434,2371,2435,2434,2114,2370,2370,2371,2435,1986,[2370,3242],3180,3180,[1986,2987],3180,3179,3180,3181,3180,[2435,2988],[2434,2989],[2370,2990,9622],[2435,3053,9623],10006,[2435,10102],2435,2371,2370,[2434,3306],[2370,3307],3181,3243,3243,3246,3245,3182,[3180,10097],[3179,10098],[3245,10099],[3179,10100],[3181,10101],[3181,10098],[3244,10099],[3179,10102],3245,3246,3179,3182,3182,3181,3243,[2435,3117],[2370,9523],[2370,9616],[2435,9617],2370,2435,2435,2371,2371,2371,2435,2435,2371,2434,2434,2434,2434,[2435,9622],[2371,9623],[4097,4040,9524],[4097,4041],[4097,4042],[4097,3849],4097,4192,4097,4097,[4097,4038],[4097,4039],[4097,4040],[4097,4041],[4097,4042],[4097,4043,9523],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9688,9306],[3521,9685],[3456,9686],3521,3456,3457,3905,3907,3908,3520,3458,3457,3457,3457,3907,3969,[3905,5188],5189,5190,[3908,9595,5191],[3969,9596],[3393,37,9497],[3907,38],3905,3905,3908,3969,3908,3907,3969,3906,3905,3520,[3917,3781],3919,3983,3983,3919,3981,3983,3983,3920,3983,3983,[3920,3904,9595],[3907,9596],[3969,10075,9593],[3971,10167],[3906,10170],3394,3905,3907,3908,3457,3969,3971,[3971,10070,9496],[3907,9685],[3905,9686],3457,3969,3906,3457,3520,3522,3906,[3592,4037],3530,[3529,3968],3522,[3592,3713],[3528,3714],[3592,3715],[3529,3716],[3528,3779],3594,[3528,3778],3905,3520,3969,3906,3458,3906,3520,3456,3522,[3528,4033],[3594,3843],3528,3591,3268,[3593,3712],[3594,3713],3458,3971,[3592,3713],[3594,3779],[3593,3777],3456,3969,3907,3906,3458,3521,3456,[3905,579],[3908,580],[3971,581],[3392,582],[3521,583],[3906,584],[3971,585],3456,3521,3521,3522,3905,3907,3522,3907,3906,3520,3392,3971,3456,3522,3522,3971,3522,3969,3971,3457,3520,3908,3523,3905,[3983,3973],3983,3983,3919,[3919,3776],3521,3906,[3983,3844],3919,3919,3919,3919,3919,[3969,3984],3983,[3920,3904],3457,3521,[3907,9517],[3920,9421],3919,3920,3920,3983,3919,3919,3919,3981,3919,[2830,3792],2768,[2766,3789],[2830,3726],[2831,3727],[2766,3728],[3920,9610],[3920,9703],[3983,9704],3983,3920,3983,3919,3983,3919,3920,3919,3983,3920,3983,3920,3920,[3920,9613],[3920,9614],9997,[2832,9998],[2765,3724,9803],[2831,3725],3920,3919,3920,3920,3983,3983,3919,[3983,9517],[3920,9417],[3920,9418],[2831,4048,9419],[2829,3855,9420],[2831,9512],2768,2831,2767,[2831,4044],3983,3917,3983,3920,[3920,9321],[3920,9324],[3920,9321],[3918,9322],[3983,9323],[3920,9324],3983,3920,[2768,3857],2767,2766,2830,2830,2767,2766,[2830,9814],[2832,9910],9911,[3978,9716],3978,3978,3977,3978,3913,3913,3913,3978,[3978,9520],[2370,9521],2370,2435,2370,1923,2435,2371,2370,2371,2370,2435,[2434,9718],[2371,9719],[4097,10102,9620],4097,[4097,3718],3976,3978,3978,3913,3977,3977,3911,[4097,4039],[4097,3849,9523,10097],[2371,9712],[1923,9713],2370,2435,2370,2371,2371,2434,2371,2371,2435,2434,2434,[2371,9718],[2370,9719],[4097,9620],4097,[4097,4038],[4097,4039],[4097,4040],[4097,4039],3912,3975,[4097,3785,9814],[4097,9910],9911,[3913,9716],3914,3977,3978,3978,3978,3913,[3978,9622],[3913,9623],[3913,9620],3978,3978,3914,3975,[4097,3719],3976,3977,3913,3977,3977,3978,3975,3976,[3978,9715],9904,[4097,9905],[4097,9809],4097,[4097,3783],3976,3914,[4097,3979],4097,[4097,3848,9523],[3912,9616],[3914,9617],3914,3977,3978,3977,[4097,3979,9523],[2370,9616],[2370,9617],2370,2370,2370,[2434,9526],[3977,9430],3978,3911,[4097,4039],[4097,4040],[3912,9330],[3977,9333],[3979,9520],[2434,9521],2370,2435,2435,2370,2435,2434,2435,2435,2371,2371,1923,2371,2371,2435,2435,[2370,3178],3244,3245,3246,[2434,2991],2370,[2370,9814],[2370,9910],9911,[2434,2991,9716],2434,2435,2370,1987,2371,2370,2434,2371,2434,2370,2370,[2371,9715],[2435,9712],[2434,9713],2434,2434,2370,2370,2435,2370,[2371,9814],[2434,9815],[4097,9620],4097,4097,4097,4192,[4097,9523],[2371,9616],[2371,9617],2434,2371,2371,2371,2370,2435,2434,2371,2435,2435,2371,2435,2371,2435,2435,2371,2434,2051,[2435,3051],[2434,2988],[2435,2990],3181,3182,3244,[2434,3307],[2435,3308],[2434,3309],[2435,3310],3245,3180,3180,3243,[3181,9718],[3244,9719],[2435,10102,9524],2370,2435,2434,2434,2435,2370,[2435,3306],3244,3180,3243,3181,3180,[2371,3309],[3180,10194],[3179,10195],[3181,10196],[3246,10197],[3246,10194],[3243,10195],3182,3245,3182,3244,3180,3180,3246,[2371,3247],2371,[2434,9715],[2371,9712],[2370,9713],2370,2434,2370,2371,1922,2371,2434,2434,2434,2434,2370,2435,2370,[2435,9718],[2435,9719],[4097,3785,9620],4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3392,9399,4996],[3456,9402,4997],[3969,9494,4998],3906,3907,3908,3905,3908,3521,3522,3521,3456,3457,3907,3907,3907,3906,[3521,5284],[3905,5285],[3907,5286],[3522,9595,5287],[3393,9596],[3456,9593],3908,3908,3905,3908,3971,3971,3907,3521,3969,3969,3908,[3919,3845],3920,3920,3917,3983,3920,3983,3919,3981,3920,3920,[3919,3968,9691],[3907,9692],[3905,9593],3907,3908,3907,3908,3906,3905,3908,3905,3907,[3969,9592],[3459,9589],[3393,9590],3394,3393,3522,3522,3905,3457,[3594,3844],3592,[3530,3777],3522,3971,3906,3907,3905,3908,3969,[3593,3713],3520,3458,3458,3522,3971,3395,3905,3457,[3528,4033],[3594,3843],3528,[3528,3778],[3592,3779],3594,3528,[3592,3841],[3593,4033],[3528,4034],3456,3905,3971,3969,3457,3971,3520,3394,3905,3522,3905,3906,3908,3458,3905,3520,3458,3458,3521,3971,3908,3969,3907,3908,3908,3905,3520,3907,3457,3906,3969,3392,3908,3522,3907,3457,3521,3906,3520,3907,3971,3908,3458,[3920,3717],3981,3917,[3919,3840],3458,[3920,3843],3920,3918,[3983,3777],[3983,3713],[3919,3780],3983,3919,[3917,3777],3907,3906,3392,[3907,9613],[3458,9614],[3983,9515],3920,3919,3983,3983,3983,3919,3919,3917,[2832,3856],2768,[2830,3980],3981,3983,3920,[3919,9610],[3919,9799],[3983,9800],3983,3919,3920,3920,3920,3920,3919,3920,3917,3919,3983,3919,3920,[3983,9709],[2829,4047,9710],[2765,3856,10093,9515],2832,[2768,3788],3981,3983,3983,3983,3983,3983,3920,3918,3920,3920,[2829,4049],2829,2829,2765,[2832,3724],[2831,3729],2829,2831,[2829,3980],3981,3919,[3920,9416],[2829,4048,9417],[3919,9420],[3983,9417],[3919,9418],[2832,3985,9419],[2829,9420],[2830,3788,9421],3920,[2830,3921],2831,2829,2765,2765,2765,[2767,9718],[2832,9719],10006,[3978,10007],[3977,9812],3913,3977,3911,3912,3977,3978,3914,[3914,9523],[2434,9616],[2435,9617],2434,2435,2371,2435,2434,2370,2435,2435,2434,2371,2370,[2370,9526],[4097,9430],4097,[4097,3974],3978,3978,3977,3977,3914,3977,[4097,3979],4097,[4097,9619],[2371,9616],[2434,9617],2435,2434,2435,2371,2371,2371,2371,2435,2370,2371,2371,[2371,9814],[2371,9815],[4097,3785,9620],4096,4097,4097,4097,4097,[4097,3974],[3978,9622],[3977,9623],10006,[3977,10007],[3914,9812],3977,3977,3911,[4097,4039],3912,3913,[3977,9718],[3977,9719],[3913,9716,9330],[3914,9331],[3977,9332],[3914,9333],3977,3977,3911,[4097,4039],[4097,4040],3912,3913,[3978,4249],3913,3977,[3913,9811],[3911,10000],10001,[4097,3719,9905],[4097,3719,9906],[3976,9809],3978,3914,[4097,3979],4096,[4097,9619],[3978,9712],[3977,9713],3978,3977,3914,3977,[3975,9619],[2434,9808],[2371,9809],2434,2371,2434,2435,[2434,9526],[3911,9527],[4097,4043,9330],[4097,9333],[4097,9425],[2371,9426],[2434,9429],[2435,3242,9521],[2370,3183],2371,2434,2435,2371,2371,2434,2370,2434,2371,2370,2435,2435,2434,2051,[2371,3051],3180,3246,[2435,3308],[2435,3309],[2371,3310],[2435,3054,9814],[2434,9910],10006,[3182,10007],[3243,9812],[2370,3054],2370,2435,2435,2435,2370,2434,2371,2434,2371,2435,[2371,9520],[2435,9521],2371,2434,2371,2435,2434,2370,[2371,9814],[2435,9910],9911,[4097,9716],[4097,3784],[4097,3719],[4097,3785],4097,[4097,9619],[2435,9712],[2434,9713],2434,2371,2370,2371,2435,2371,2435,2114,2371,2434,2435,2370,2370,2114,2370,2435,[2370,2986],[2435,2987],3246,3243,3182,3179,3244,[2370,3117],2371,2371,2370,2370,[2435,3115],[2435,3308],[1986,3309],[2370,3310],[2435,3117,9622],[2370,9623],[2435,9620],2435,2435,2435,2435,2370,2370,2434,[2371,3242],3179,3246,[3180,9330],[2434,3247,9332],[2435,9333],[2370,3116],3246,3244,3245,3181,[3243,9330],[3245,9331],[3244,9332],[3244,9333],[2371,3307],[2371,3308],[2371,3309],[2371,3310],[2371,3118,9330],[2370,9333],[2435,9520],[2370,9521],2435,2434,2434,2434,2114,2435,2435,2370,2434,2371,[2435,9814],[2370,9906],[2434,9907],[2434,9908],[2434,9909],[2371,9815],[3975,9620],[4097,3720],[4097,3722],[4097,3720],[4097,3721],[4097,3722],[4097,3723],4097,[4097,3783],[4097,3719],[4097,3720],[4097,3721],[4097,3722,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3456,9494],[3456,5092],5093,5094,[3521,5095],3520,3393,3520,3394,3458,3522,3522,3456,[3392,4996],[3907,4997],[3971,4998],3908,3969,[3908,5380],[3521,5381],[3905,5382],[3971,9691,5383],[3521,9692],[3521,9593],3458,3908,3908,3907,3908,3520,3969,3906,3392,3971,3907,[3919,3909],3919,3920,3920,3917,3920,3919,3919,3920,3920,[3920,3777],[3905,9595],[3907,9596],[3907,9593],3586,3587,3905,3906,3908,3969,3908,3969,3971,[3907,9688],[3969,9685],[3908,9686],3969,3520,3906,3456,3521,[3530,3844],3530,3268,[3593,3841],3521,3907,3521,3905,3906,3906,3521,3969,3392,3394,3520,3520,3971,3521,3520,[3592,3781],3594,3269,3528,[3593,3968],3905,[3593,3713],[3530,3716],[3528,3779],3529,3593,[3528,3968],3971,3522,3522,3458,3969,3458,3907,3907,3521,3456,3520,3905,3457,3906,3908,3522,3521,3458,3459,3907,3908,3522,3522,3520,3905,3905,3905,3458,3458,3906,3457,3456,3971,3521,3969,3521,3907,3905,3908,3969,3907,3969,[3920,3973],3919,3983,[3983,3904],[3983,3973],3919,3983,3920,[3920,3968],3457,3908,[3920,3713],[3920,3713],3520,3521,3971,3520,[3907,9709],[3458,9710],[3920,9611],3919,3919,3918,3919,3920,3919,3983,[2832,3793],2768,2830,[2767,3853],3919,3919,3920,[3920,9706],9895,[3920,9896],[3919,9800],3919,3920,3919,3919,3919,3983,3983,3919,3919,3920,3919,3918,[2767,3793,9805],[2765,9806],[2831,9611],2832,[2768,3852],3920,3919,3920,3920,3983,3920,3981,3919,[2765,4048],[2766,3856],2829,2765,2766,2832,[2766,3980],3919,[2832,3792,9321],[2765,9324],[2831,3854,9321],[3920,9324],[3920,9511],[2768,3793,9512],2765,[2768,3980],3920,3919,[2831,3856],2829,[2832,3852,9517],[3919,9421],3919,[2768,3791],2829,2830,2766,2767,[2829,9622],[2832,9623],[3914,10102,9524],3977,3978,3911,[4097,4040],[4097,3849],[4097,3847],3912,3977,3913,[3914,9619],[2370,9712],[2371,9713],2435,2371,2434,2371,2435,2434,2435,2434,2371,2435,2370,2370,[2370,9526],[4097,3719,9527],3976,3914,3914,3913,3914,3913,3911,[4097,4043],4097,[4097,9715],[2371,9712],[2371,9713],2435,2371,2435,2371,2434,2370,2434,2371,2371,2370,[2371,9622],[2371,9623],9911,[3975,9716],[4097,3720],[4097,3722],[4097,3723],4097,4097,[4097,3847],[4097,4039,9718],[4097,3849,9719],[3977,10102,9524],[3977,4249],3978,3977,3911,[4097,3849],4097,[4097,3847],3912,3978,[3913,9526],[3977,9426],[3913,9427],[4097,3979,9428],[4097,3974,9429],[4097,4039,9430],[4097,4040],[4097,3849],4097,4097,[4097,3974],[3977,4344],[3913,4345],[3913,4346],3914,3911,[4097,3849],[4097,10097],10001,10002,[3978,9808],[3914,9809],3914,3975,[4097,3785],[4097,9619],[3977,9808],[3914,9809],3978,3914,3914,3914,[3914,9715],9904,[2371,9905],[2435,9809],2370,2435,2435,2371,[2371,9526],[2434,9426],[2434,9429],[2371,9521],2435,1923,[2435,3050],[2434,3247],2051,2370,2370,2371,2370,2434,2371,2435,2434,2434,2370,2371,2051,2434,[2370,3242],3244,[2434,3117],2371,2371,[2370,9622],[2434,3116,9623],[10006,9524],[3180,10102],3182,3179,[2370,3055],2434,2371,2435,1923,2435,1923,2435,2435,[2371,9330],[2371,9523,9333],[2371,9712],[2371,9713],2370,2434,2435,2371,2434,[2435,9622],[2435,9623],10006,[3975,10007],[4097,3719,9812],3976,3977,3975,[4097,3719],[4097,3720,9619],[2370,9712],[1922,9713],2435,2435,2371,2434,2371,2435,2435,2370,2370,2370,2435,2435,2370,2370,2435,2371,[2370,3242],3182,[2434,3307],[2370,3308],[2370,3309],[2371,3310],[2370,3118],2434,2371,2435,2435,2370,2371,1923,2371,2434,[2050,9718],[2371,9719],[2371,9716],2435,2435,2435,2435,2435,2435,2434,[2435,3115],3180,[3243,9425],[2371,9426],[2435,9428],[2371,9429],[2370,9430],[2371,3242],3243,3244,[3179,9425],[2370,9426],[2370,9427],[2371,9428],[2371,9429],[2434,9430],[2370,9330],[2370,9333],[2435,9425],[2370,9426],[2371,9429],[2434,9521],2370,2051,2371,2370,1986,2434,2370,2371,1987,2370,[2434,9814],[2435,9910],10002,10003,10004,10005,9911,[3913,9716],3977,3914,3914,3978,3977,3975,[4097,3719],3976,3977,3911,[4097,4041],[4097,4042,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3907,9589],[3457,9590],[3521,5188],5189,5190,[3905,5191],3521,3905,3458,3905,3393,3456,3521,3457,[3907,5092],5093,5094,[3971,5095],3969,[3521,5476],[3906,5477],[3906,5478],[3908,9595,5479],[3906,9596],[3457,9593],3971,3906,3395,3906,3457,3521,3905,[3905,3461],3908,3971,3969,[3920,3844],3983,3920,3919,3920,3919,3919,3917,3983,3917,[3919,3776],[3392,9787],[3905,9788],[3908,9593],3650,3651,3456,3393,3908,3906,3905,[3907,9303],[3908,9306],[3458,9493],[3522,9494],3906,3971,3905,3969,3905,3457,[3593,3780],3530,3593,[3594,3777],3907,3905,[3591,3972],3457,3906,3969,3458,3457,3457,3520,3588,3589,3457,3520,3456,[3594,3845],3268,3528,[3529,3777],3456,3969,3457,3969,3906,[3528,3713],[3592,3779],[3594,3841],[3529,4033],[3528,4034],[3530,4035],[3528,3844],[3529,3842],3906,3906,3908,3457,3521,3907,3520,3458,3457,3522,3520,3456,3906,3905,3908,3520,3969,3905,3971,3458,3969,3521,3457,3522,3969,3456,3457,3522,3522,3521,3456,3522,3456,3971,3908,3907,3969,[3918,3973],3983,3917,[3919,4032],[3983,4037],3983,3920,3983,[3919,3968],3906,3457,3905,3521,3458,3905,3907,3521,[3520,9613],[3969,9614],[3920,9611],3920,3917,3920,3983,3983,3983,3917,[2832,3857],2766,2767,2767,[2829,4044],3918,3919,[3920,9802],[3920,9991],9992,[3920,9896],[3920,9897],[3983,9898],[3919,9800],3983,3919,3983,3920,3983,3919,3919,3919,[3919,9805],[3921,9901],9902,[2830,9707],2832,[2768,3916],3920,3983,3920,3919,3919,3919,3983,[2768,3793],2832,2765,2767,2768,2829,[2765,3790],3983,[3919,9416],[3983,9417],[3983,9420],[3983,9417],[3983,9420],[3983,9512],[2767,3857],2767,[2765,4044],[2768,4045],[2767,3856],2766,2765,[2766,3916],[3919,9517],[3920,9518],[2830,3985],2768,2830,2830,2765,[2768,9718],[2832,9719],[3977,9716],3911,[4097,4042],[4097,3849],4097,4097,4097,[4097,4038],3912,3913,[3914,9619],[2434,9712],[2371,9713],2435,2371,2370,2435,2371,2434,2370,[2370,3051],[2434,3054],2371,2434,2435,[1987,9622],[1987,9623],[3912,9524],3913,[3977,4347],[3978,4348],[3978,4349],3911,[4097,3849],4097,4097,[4097,9425],[2434,9521],2435,2371,2371,2435,2371,2434,2371,2370,2434,2371,1986,[2435,9718],[2371,9719],[3914,10007],[3914,9812],3913,3978,3975,[4097,3785],4097,4097,[4097,9622],[4097,9623],[3977,9620,4344],[3977,4345],[3977,4346],3914,[4097,3787],4097,4097,4097,[4097,3974],3978,3977,3911,[4097,4039],[4097,4043],[4097,3782],[3913,9526],[4097,9527],4097,4097,[4097,3718],3976,3977,3978,3911,[4097,4039],[4097,4043],4097,4097,[4097,3782,10097],[3914,10098],9904,[3978,9616],[3977,9617],3913,3975,[4097,3719,9715],[9904,9523],[3913,9616],[3978,9617],3913,3914,3913,[3911,9811],[4097,4043,10000],10001,[2370,9616],[2371,9617],2435,2371,2435,2370,2371,2370,2434,2435,2435,[2370,3114],3246,[2434,2987],[2370,3054],2434,2371,2435,2434,2371,2370,2435,2434,1987,1986,2370,[2435,3051],3179,[2434,3247],2371,2435,2434,[2434,9718],[2434,9719],[3179,10102,9620],3182,3180,3245,[2435,3119],2434,2434,2434,2371,2370,2434,2370,[1923,9425],[2435,9426],[2370,9429],[2371,9521],2370,2370,2435,2434,2370,2435,[2371,9718],[2435,9719],[3978,10102,9524],3913,3977,3911,[4097,4039],[4097,4040],[4097,4041],[4097,4042,9619],[2370,9808],[2434,9809],2435,2434,1987,2370,2370,2371,1922,2434,2371,2434,2434,2371,2434,1987,2370,[2370,3051],3246,[2434,3118],2435,2371,2370,2371,1987,2434,2370,2370,2371,2370,2371,2434,2435,2371,2371,[2370,9526],[2370,9430],2435,2435,2435,2435,2435,2435,[2435,9330],[2371,9333],[2434,3116,9425],[2435,9521],2371,2371,[2370,9622],[2435,9623],[2370,3242,9524,9330],[3245,9333],[3179,9520],[2370,9521],2434,2435,2435,2434,[2435,9526],[2435,9426],[2371,9429],[2435,9521],2370,1922,2435,2434,2371,2434,2434,2371,2434,2434,2434,2434,[2371,9814],[2370,9910],10006,[3913,10098],[3913,10099],10100,[4098,10101],[4098,3846,10007],[3977,9812],3977,3914,3914,3978,3914,3911,[4097,4040],[4097,4041],[4097,4042],[4097,3849],4097,[4097,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3458,9685],[3905,9686],[3520,5284],[3456,5285],[3521,5286],[3907,5287],3521,3520,3905,3520,3393,3392,3521,3458,[3521,5188],5189,5190,[3907,5191],3969,3907,3971,3907,[3969,9691],[3905,9692],[3907,9593],3907,3394,3969,3393,3906,3906,3907,3907,3906,3969,[3983,3843],3920,3920,3919,[3919,3712],[3983,3714],[3920,3715],[3919,3716],[3920,3779],3920,3919,[3918,3840,9787],[3969,9883],9884,[3521,9689],3905,3905,3907,3971,3907,3906,[3907,9398],[3907,9399],[3908,9402],[3905,9494],3969,3971,3908,3395,3906,3522,3394,[3529,3973],3268,[3592,3712],3458,3908,3969,3969,3906,3908,3907,3522,3457,3908,3521,3652,3653,3458,3969,3907,[3594,3909],3529,[3528,3712],3969,3458,3521,3905,3907,3905,3971,3457,[3530,3713],[3530,3779],3530,3594,3333,[3528,3778],3521,3522,3907,3971,3456,3458,3456,3521,3907,3520,3521,[3457,9796],[3971,9888],[3971,9889],[3522,9890],[3908,9891],[3907,9791],3520,3969,[3456,9796],[3520,9890],[3458,9891],[3522,9888],[3969,9889],[3522,9791],3969,3906,3908,3907,3521,3522,3522,3908,3971,3905,3522,3458,[3919,4037],3920,3919,3983,[3983,3777],[3918,3714],[3983,3715],[3919,3716],3521,[3905,3461],3969,3905,3458,3905,3908,3971,3458,[3971,9709],[3905,9710],[3919,9611],3919,3920,3919,3919,3920,3919,3983,[2765,3921],2766,2765,2830,2765,[2831,3854],3919,3981,3983,[3919,10088],9992,9993,9994,[3920,9896],[3920,9897],[3920,9898],[3919,9800],3981,3917,3920,3981,[3920,9613],[2766,4047,9614],9997,[2830,9998],[2766,9803],[2768,3724],3983,3919,3920,3919,3920,3920,3983,3919,[2767,3857],2766,2831,2830,[2829,3790],[2768,3725],3983,[3917,9511],[3920,9512],3920,3919,3920,3983,3983,[2830,3921],2830,2830,2766,[2830,3789],[2768,3792],[2767,3789],3919,[3919,9613],[3919,9614],[2831,3793,9515],2831,2768,2831,2832,2832,[2765,9526],[3914,9430],[4097,3979],4097,4096,4097,[4097,3783],[4097,3723],4097,[4097,3847],3912,[3913,9619],[2370,9808],[2434,9809],2371,2050,1987,2371,2370,2371,[2370,3052],3180,[2434,3247],2434,2434,2370,[2435,9718],[2371,9719],[4097,4038,9716],[4097,4041],[4097,4042],3912,3977,[4097,3979],4097,4097,[4097,9425],[1987,9521],2435,2435,1922,2435,2434,2435,2371,2370,2435,2434,2371,2435,2435,[2434,9526],[3913,9527],3977,3913,3978,3913,[4097,3787],[4097,3784],[4097,3721],[4097,3722,9718],[4097,3719,9719],[3976,9716,9330],[3913,9331],[3914,9332],[3914,9333],[4097,3915],4097,4097,[4097,3783],3976,3914,3911,[4097,3849],4096,4097,[4097,3910],[3914,9718],[3913,9719],[4097,3784,9524],[4097,3719],3976,3978,3914,3911,[4097,3849],4097,[4097,3718],[4097,3785],4097,[4097,3910],[3914,10194],[3914,10000],[3913,9712],[3911,9713],[4097,4039],3912,[3978,9811],[3913,10000,9619],[3914,9712],[3913,9713],3978,3911,[4097,4040],[4097,3849],4097,[4097,10097],[2371,9712],[2435,9713],2370,2434,2435,2434,2435,2434,2435,2435,2435,[2435,3178],3179,3246,[2371,3055],2371,2371,2370,2370,2371,2434,2434,2370,2435,2434,2434,[2371,3306],[2370,3310],[2370,3311],2435,2371,2434,2434,[2371,9526],[3180,9527],[3180,9330],[3180,9331],[3245,9332],[2370,3183,9333],2434,2370,2435,2370,2370,[2370,9424],[2435,9425],[2371,9521],2371,2370,2434,2434,2435,1922,2370,2434,2370,[2434,9718],[2370,9719],[3977,9716],3913,3911,[4097,3849],4097,4097,4097,[4097,9715],9904,[2434,9808],[2434,9809],2370,2434,2435,2371,2435,2370,2370,2434,2434,2371,[2370,3051],[2370,2988],[2370,2989],[2434,2990],3246,[2434,3247],2371,2370,2435,2434,2434,2370,2435,2370,2435,2435,2434,2051,2371,2435,2434,2435,2435,[2371,9526],[2434,9430],2434,2435,2435,2435,[2370,9425],[2371,9426],[2435,9429],[2371,9521],2371,2370,2370,2370,[2434,9526],[2371,9426],[2370,9429],[2370,9521],2435,2435,2434,2370,2434,2435,2435,2434,2370,2434,2434,2370,2434,2435,2370,2370,2435,2370,2370,2434,[2371,9814],[2434,9910],10006,[3978,10102],[3913,10194],[3978,10195],[4098,3851,10196],[4098,10197],[4098,3910,9330],[3977,9331],[3913,9332],[3977,9333],3914,3914,3911,[4097,4043],4097,4097,4097,4097,4097,[4097,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3969,9781],[3458,9782],[3905,5380],[3456,5381],[3521,5382],[3906,5383],3393,3393,3392,3456,3457,3393,3457,3520,[3394,5284],[3522,5285],[3971,5286],[3908,5287],3907,3521,3907,3907,[3969,9787],[3907,9788],[3907,9593],3521,3971,3521,3971,3971,3908,3905,3456,3971,[3920,3844],3917,3919,3919,3919,[3919,3776],3907,[3905,3461],3458,3905,[3919,3713],[3919,3779,9787],[3919,3904,9883],9979,[3458,9980],[3971,9785],3908,3908,[3522,9303],[3971,9305],[3907,9306],[3907,9493],[3905,9494],3906,3586,3587,3907,3969,3906,3971,3971,3969,3969,[3528,3843],[3530,3777],3520,3905,3457,3459,3969,3906,3906,3969,3908,3522,3906,3906,3906,3905,[3530,3843],[3592,3842],[3594,4036],[3593,4037],[3529,3777],3907,3458,3457,3393,3521,3522,3971,3456,3906,3905,3458,[3528,3713,9796],[3594,3779,9888],[3528,3777,9889],[3456,9890],[3971,9891],[3905,9791],3906,3969,3906,3521,3458,3969,3522,3907,[3457,9796],[3456,9892],9984,9985,9986,9987,[3907,9887,6],7,8,[3906,9892,9],9986,9987,9984,9985,[3971,9887],[3458,9888],[3457,9889],[3456,9791],3905,3520,3458,3458,3457,3457,3395,3520,[3983,3973],3920,3920,3918,3919,[3983,3776],3906,3908,3456,3521,3906,3905,3908,3906,3521,3969,3908,3906,[3908,9805],[3971,9806],[3920,9611],3920,3919,3920,3919,3983,3983,3919,[2767,3985],2768,2766,2768,2768,[2830,3789],3920,3983,3920,3919,[3983,10088],[3981,10089],[3917,10090],9992,9993,9994,[3920,9896],[3983,9800],3920,3920,3919,[2830,3793,9709],[2768,9710],[2832,10093,9515],2831,[2766,3724],3919,3920,3920,3983,3917,3983,3917,3919,3983,[2830,3921],2829,2832,2831,[2831,3854],3920,3983,[3983,9607],[3919,9608],3919,3983,3983,3919,3920,[2829,3985],2831,2765,2831,[2832,3980],3983,3983,3920,[3920,9613],[3919,9614],[2765,3857,9611],2830,2768,2829,2831,2830,2768,[2768,9526],[4097,3849,9527],4097,4097,4097,[4097,4038],[4097,4043],4097,4097,[4097,4038],[4097,4041,9715],[9904,9523],[2370,9616],[2371,9617],2435,2370,2370,2371,2435,[2371,3242],3182,[2370,3118],2434,2435,[2370,2986],[2434,3053],[2370,9526],[4097,9430],4097,4097,[4097,4038,9330],[3912,9331],[4097,3787,9332],[4097,9333],[4097,9520],[2371,9521],2434,2178,2434,2371,2370,2370,2435,2435,2434,2434,2371,2371,2371,2371,[2435,9622],[2371,9623],[3914,9524],3914,3914,3914,[4097,3915],[4097,3974],3977,3977,[3977,9526],[3978,9426],[3914,9427],[4097,3787,9428],[4097,9429],[4097,3979,9430],4097,[4097,3784],3976,3913,3914,[4097,3787],4097,4097,[4097,3783],3976,[3977,9814],[3978,9815],[3914,9620],3913,3977,3914,3913,3975,[4097,3785],4192,[4097,3974],3975,[4097,3719],3976,3978,[3977,9520],[4097,4042,9521],[4097,3849],4097,[4097,3974],3914,[3977,9520],[3978,9521],3978,3911,[4097,3849],4097,4097,4097,[4097,9425],[2435,9521],2434,2435,2370,2435,2370,2434,2371,2371,2371,[2370,3051],3182,[2370,3310],3243,[1922,3183],2434,2434,2434,2371,2434,2370,2370,2434,2371,2435,2050,2370,2434,2434,2370,2371,2434,2371,2371,[2435,9526],[2435,9426],[2434,9427],[2434,9428],[2435,9429],[2435,9430],[2370,9330],[2370,9331],[2435,9332],[2435,9333],[2435,9520],[2371,9521],2434,2370,2434,2370,2178,2434,1987,2370,2371,2435,2370,[2434,9526],[3913,9527],[3978,9330],[3975,9333],[4097,3786],[4097,3784],[4097,3720],[4097,3721],[4097,3722,9811],[3978,10000],9904,[2435,9905],[1987,9809],2370,2371,2435,2370,[2434,9814],[2370,9906],[2434,9907],[2371,9809],[2370,3052],3179,3179,3179,3179,3245,[2370,3118],2114,2434,2370,2434,2434,1922,2434,1923,2370,2370,2371,2371,2434,2370,1987,2434,1923,2435,[2434,9526],[2371,9430],[2435,9330],[2435,9333],[2371,9425],[2434,9521],2435,2370,2434,2435,2435,2435,2371,2371,2434,2370,2434,2434,2435,2371,2370,2435,2371,2434,2370,2371,2434,2434,2371,2434,2435,2435,2435,2434,2371,2435,[2435,9622],[2434,9623],10006,[3977,10102],3978,3978,[3978,9330],[4098,3915,9333],[4098,9520],[2371,9426],[2435,9427],[2370,9428],[2370,3050,9429],[3978,9430],3911,[4097,3849],4097,[4097,3784],[4097,3719],[4097,3785],4097,4097,[4097,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3521,9878],[3456,9782,5476],[3458,5477],[3392,5478],[3521,5479],3520,3908,3392,3521,3520,3392,3908,3394,[3521,5380],[3392,5381],[3969,5382],[3905,5383],3908,[3907,9787],[3521,9881],[3906,9882],[3906,9883],9884,[3394,9689],3971,3971,3394,3905,3905,3908,[3919,4033],[3919,4034],[3983,4037],3918,3919,3919,3919,3983,[3919,3904],3905,3908,3907,3393,[3906,9787],[3969,9883],9979,[3971,10075],3908,3908,3971,[3969,9398],[3907,9399],[3908,9401],[3906,9402],[3908,9494],3905,3907,3650,3651,3969,3971,3907,3906,3971,3906,[3594,3781],3529,[3592,3776],3521,[3906,3461],3458,3905,3905,[3530,3843],[3594,4032],[3593,4033],[3528,4034],[3593,4035],3521,3906,3456,[3530,3844],3594,3530,3592,3593,[3593,3776],3905,3458,3522,3520,3971,3905,3521,3908,3908,3905,[3907,9796],[3906,9892],9984,9985,9986,9987,[3908,9887],[3969,9888],[3522,9889],[3456,9890],[3521,9891],[3969,9888],[3456,9889],[3458,9890],[3971,9891],[3971,9892],9988,10080,10081,10082,10083,[9983,6],7,8,[9988,9],10082,10083,10080,10081,9983,9984,9985,[3457,9887],[3905,9888],[3521,9889],[3905,9890],[3457,9891],[3522,9791],3522,3457,3907,3521,[3919,3780],3983,[3969,3984],3919,[3920,3904],3971,3969,3456,3456,3457,3457,[3983,4033],[3917,3844],[3919,3842],[3920,4034],[3919,4035],[3919,4036,9805],[3983,3844,9901],9902,[3920,9707],3920,3919,3919,3983,3920,3920,3983,[2768,3793],2767,2767,2767,2767,[2829,3788],3919,3919,3983,3920,3919,[3983,10185],[3917,10186],[3920,10088],[3983,10089],[2765,4045,10090],9992,[3920,9896],[4048,9897],[3983,9898],[3981,9899],[2765,3857,9900],[2829,9806],[2829,9611],2830,[2832,3980],3920,3920,3983,3920,3920,3919,3920,3983,3920,[2830,4049],2766,2768,2831,[2830,3789],3917,[3917,8942],8943,[3919,8944],3920,3917,3983,3983,[2768,4048],[2829,3856],2829,2768,[2832,3789],3981,3920,3983,3983,[3920,9709],[3920,9710],[2832,3921,9611],2768,2829,2766,2768,2830,2829,[2765,9622],[2767,9623],[4097,3783,9524],[4097,3719],[4097,3723],4097,4097,[4097,3783],[4097,3719],[4097,3723],[4097,9811],[4097,10000,9619],[3182,9712],[2371,3054,9713],2434,2371,2370,2435,[2434,3051],3181,[2434,3118],2434,2370,[2370,3052],3245,3246,[2371,2987],[2435,2990,9526],[4097,3053,9527],[4097,9425],[1986,9426],[1923,9427],[1986,9428],[2370,9429],[2434,9521],2370,2434,2370,2371,2435,2435,2435,2434,2371,2435,2434,2371,2435,2371,2435,[1923,9622],[2434,9623],[3913,9620],3913,3911,[4097,4042],[4097,4043],[4097,3847],[4097,4040],3912,3914,3978,3914,[4097,3851],4097,[4097,3846,9526],[4097,9527],[4097,3974,9330],[3978,9333],3977,3914,[4097,3851],4097,[4097,3783],3976,[3977,9814],[3913,9910],9911,[3913,9716],3978,3911,[4097,4039],3912,3913,3975,[4097,3719],3976,3913,3978,3977,[3913,9523],[4097,9616],[4097,9617],4097,[4097,3783],3976,[3977,9523],[4097,4039,9616],[4097,4041,9617],[4097,4042],[4097,4043],4097,4097,4096,[4097,9520],[2434,2987,9521],[2435,2988],[2434,2989],[2434,2990],[2435,3053],2371,2435,2371,2371,[2435,3051],[2435,2987],3181,[2370,3117],2370,[2371,3115],[2371,3247],2434,2435,2435,2434,2178,2435,2051,2178,2371,2435,1987,2435,2435,2434,2370,2371,2435,2371,2434,2371,2370,2435,2435,2434,[2371,9526],[2434,9426],[2435,9427],[2371,9428],[2371,9429],[1987,9521],2434,2435,2370,2371,1922,2434,2435,2371,2371,2370,1986,2371,2434,[2434,9526],[2435,9426],[2434,9429],[4097,3979,9527],[4097,3974],3977,3978,3978,3978,[3914,10000],10001,[2434,9905],[2371,9906],[2434,9907],[2435,9908],[2370,9909],[2434,9910],10002,10003,[2434,3052,9905],[3245,9906],[3245,9907],[3179,9908],[3182,9909],[3181,9809],[2370,3247],2370,2434,2371,2435,2434,2435,2435,2371,2435,2435,1922,2435,2434,2370,2370,2434,2371,2371,2371,2370,[2435,9526],[2435,9426],[2435,9429],[2435,9521],2435,2434,2370,2435,2435,2434,2435,2434,2370,2435,2371,2435,2371,2371,2435,2370,2370,2371,2434,2435,2370,2435,2435,2435,2435,2434,2371,2051,1923,2434,2371,[2434,9718],[2370,9719],[3978,10102],3913,[3977,9330],[3913,9425],[2434,9426],[2434,9429],[2434,9521],2435,2370,2370,[2370,3114],[3246,9526],[4097,3849,9527],4097,[4097,3783],3976,3977,3975,[4097,3719],[4097,3720],[4097,3721,9811],[3976,10000],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3392,9589],[3969,9590],3394,3393,3456,3456,[3394,4996],[3905,4997],[3393,4998],3394,3969,3392,[3905,5476],[3906,5477],[3907,5478],[3971,5479],[3456,9787],[3458,9883],9977,9978,9979,[3458,9980],[3908,9785],3520,3905,3908,3969,3905,[3920,3844],3983,3919,3919,3983,3920,3983,3920,[3919,3777],3908,3521,3906,3969,[3905,9787],[3971,9883],9979,[3906,10075],3908,3905,3971,[3906,9493],[3906,9494],3907,3907,3908,3907,[3905,3461],3457,3905,3969,3906,3971,3393,3394,[3591,3970],3392,[3530,3845],3594,[3593,3840],3456,3906,3457,3522,[3593,3973],3593,3530,3530,3594,3592,[3592,3841],[3593,4034],[3529,3844],3529,3593,3332,[3592,3778],[3528,3779],[3593,3904],3520,3521,3521,3456,3522,3521,3521,[3521,9796],[3522,9890],[3521,9891],[3520,9892],9988,10080,10081,10082,10083,9983,9984,9985,9986,9987,9984,9985,9986,9987,9988,10084,10176,10177,10178,10179,[10079,6],7,8,[10084,9],10178,10179,10176,10177,10079,10080,10081,9983,9984,9985,9986,9987,[3908,9887],[3907,9791],3907,3971,3520,[3983,3973],3920,3983,[3983,3712],3457,3908,3456,3521,3971,3905,[3919,4037],3919,[3457,3982],3983,3917,[3919,9613],[3920,9614],[9997,9515],[3919,9998],[3920,9803],3920,3919,3919,3919,3920,3983,3919,[2768,3857],2831,2765,2766,2831,[2830,3852],3919,3920,3983,3983,3920,[2829,3855],[2830,4044],[2766,4048],[2831,3856,10185],[2830,10186],[2765,10088],9992,9993,9994,9995,9996,9902,[2829,9707],[2832,3789],3920,3920,3981,3918,3919,3919,3920,3920,3917,[2768,3793],2832,2832,[2831,3790],[2766,3725],3983,3983,[3919,9038],9039,[3919,9040],3919,3919,[2768,4047],[2830,3855],2832,2829,2767,[2831,3789],3983,3919,3983,3920,3983,[3917,9709],[3919,9710],[2829,3985,9611],2832,2766,2829,2768,2766,2768,[2767,9718],[2767,9719],[3976,9620],3977,3975,[4097,3720],[4097,3722],3976,3978,3975,[4097,3719],[4097,3719,9520],[3246,9521],3180,[2435,2987],[2370,2988],[2370,2989],[2434,2990],3244,3181,[2434,3053],[2435,3051],[2434,2987],3243,[2371,3307],3179,3245,3180,[2370,3247,9526],[2434,9521],2370,2371,2434,[2371,3334],[2371,3335],[2435,3401],2435,2370,2434,2434,2370,2370,2242,2243,2435,2434,2434,2370,2371,2435,[2370,9718],[2434,9719],[3913,9620],3911,[4097,3849],4097,4097,4097,[4097,3784],3976,3977,3914,3913,[4097,3915],4097,[4097,3910],[3913,9526],[3914,9426],[3914,9429],[3978,9527],3914,[4097,3915],4097,[4097,3974],[3913,9814],[3914,9910],10006,[3978,10007],[3913,9812],3914,[4097,3787],4097,[4097,3782],3978,3913,3977,3914,3914,3913,3977,[3914,9715],[4097,9712],[4097,9713],[4097,3783],3976,3978,[3914,9619],[4097,9712],[4097,9713],4097,4097,4097,[4097,3784],[4097,3723,9523],[2370,3309,9616],[2434,3310,9617],[2434,3117],[2434,3115],3244,3246,[2371,2987],[2435,2988],[2371,2989],[2434,2990],3245,3181,[1987,3247],2435,2371,2435,[2434,3050],[2435,3053],2435,2371,2371,2435,2371,2370,2370,2371,1922,2370,2050,2435,2370,2435,2371,2370,2370,2434,2435,2371,2370,2370,2434,2371,2370,[2370,3050],[2434,3055],2370,2434,2434,2371,2435,2434,2435,2371,1923,2371,2370,2371,2370,2435,2370,2434,2370,[2370,9718],[2370,9719],[3976,9524],3977,3913,3977,3977,3911,[4097,4043,10097],10001,10002,10003,10004,10005,10006,[4097,10098],[4097,10099],10001,10002,10003,10004,10005,[3310,9905],[2371,3311,9809],2371,2370,2435,2371,2434,2434,2371,2434,2370,2370,1922,2370,2371,2371,2371,2435,2434,2370,2434,2435,2435,2371,2370,2371,2370,2370,2370,2371,2370,2370,2434,2371,2371,2370,2434,2371,2435,2371,2435,2435,2370,2371,2370,2371,1923,2178,2370,2370,2435,2435,2434,2434,2370,2434,2434,2371,[2435,3051,9526],[3977,9430],[3978,9520],[2370,3247,9426],[2370,9521],2370,2434,2370,2370,2435,2370,[2371,3178],[3243,9622],[3246,9623],[4097,3719,9524],3976,3913,3978,3977,3913,3914,3978,3977,[3978,10097,9523],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3905,9685],[3394,9686],3905,3905,3521,3905,[3456,5092],5093,5094,[3907,5095],3458,3394,3457,3521,3908,[3969,9787],[3456,9883],9979,[3521,10073],[3969,10074],[3969,10075],3969,3971,3906,3969,3905,3908,[3920,3973],3919,3919,3919,3919,3919,3981,3919,[3983,3712],3906,3971,[3905,9787],[3457,9881],[3971,9882],[3971,9883],9979,[3969,404,10075],[3906,405],[3906,406],[3906,407],[3393,532,9496],[3906,9589],[3907,9590],3907,3969,3520,3969,3393,3905,3971,3905,3522,3456,3906,3905,3971,3906,[3592,3909],3594,[3528,3904],3905,3522,[3528,4033],[3528,4034],[3592,3843],3529,3333,3529,3530,3528,3332,3592,3594,3593,3529,3530,[3594,3968],3456,3908,3457,3522,3971,3906,3521,3457,[3907,9796],[3520,9892],9986,9987,9988,10084,10176,10177,10178,10179,10079,10080,10081,10082,10083,10080,10081,10082,10083,10084,10180,403,403,403,403,[10175,6],7,8,[403,9],403,403,403,403,10175,10176,10177,10079,10080,10081,10082,10083,[9983,9505],[3521,9598],[3907,9599],3908,3456,3458,[3983,3779],[3919,3778],3457,3520,3456,3393,3456,3907,[3983,3973],3920,3919,[3920,3712],[3983,3713],[3919,3713],[3983,3779,9709],[3983,9710],[3983,10093,9611],3920,3919,3981,3920,3917,3920,3983,3983,3920,[2830,3921],2831,2766,2830,2766,[2765,3916],3919,3981,3920,[2830,4048],[2768,4049],2765,2765,2829,2768,2767,2766,[2766,10088],[2766,10089],[2832,3854,10090],[2768,4047,10091],[2767,4049,10092],[2830,9998],[2766,3724,9803],3983,3917,3919,3919,3919,3919,3919,3919,3918,3917,[2768,3857],2831,2829,[2768,3980],3917,3919,3983,[3920,9134],[3919,9135],[3919,9136],3919,[2831,3855],2830,2830,2830,2830,2767,[2768,3980],3920,3919,3983,3918,3919,[3919,9805],[3919,9806],[2767,3985,9611],2767,2829,2829,2765,2831,2831,[2832,9718],[2767,9719],[3912,9620],3977,3914,3914,3913,3978,3977,3913,[3914,9523],[3246,9616],[3179,9617],3181,3246,3245,3180,3179,3179,3182,3244,3182,3180,[2371,3117],2370,[2435,3115],[2371,3307],[2371,3308],[2371,3311],2434,2435,2434,2371,[2371,3590],3593,3592,[2435,3401],2435,2371,2371,2435,2435,2306,2307,2370,2435,2371,2435,2371,2371,[2370,9622],[2434,9623],[4097,4038,9620],[4097,4043],4097,[4097,3718],[4097,3720],[4097,3722],3976,3914,3913,3914,3911,[4097,3849],4097,[4097,3847],3912,3914,[3978,9622],[3978,9623],[3914,9524],3975,[4097,3719],[3976,9814],[3978,9910],10006,[3913,10102],3913,3977,3913,[4097,3851],4097,[4097,3910],3977,3914,3914,3977,3978,3914,3914,[3913,9425],[4097,3721,9521],[4097,3722],3976,3978,3978,[3978,9520],[4097,9521],4097,[4097,3784],[4097,3719],[4097,3722],3976,[3979,9619],[2435,9712],[2370,9713],1923,[2370,3051],3181,[1986,3307],[2435,3308],[2370,3309],[2371,3310],3180,3180,3244,[2371,3117],2371,2434,2434,[2370,3114],3245,[2434,2988],[2370,2989],[2435,2990],[2371,2991],2370,2371,2434,2434,2370,2434,2371,2371,2435,2370,2435,2435,2371,2434,2434,2435,2370,2370,2370,2370,2370,[2435,3114],[2370,3119],2434,2370,2434,2435,2370,2370,2371,2434,2370,2435,2435,2371,2435,2371,2370,2435,2370,[2435,9622],[2370,9623],[3913,9620],3977,3913,3977,3911,[4097,3849],4097,[4097,3783,10097],[3913,10098],[3913,10099],[3914,10100],[4097,3979,10101],[4097,10102],[4097,10194],[4097,10195],[4097,10097],[4097,3783,10098],[3913,10099],[3913,10100],[3914,10101],10001,[2370,9905],[2370,9809],2435,1922,2371,2370,2371,2370,2435,2434,2370,2435,2370,2370,2434,[2434,3052],[2435,2987],[2371,3054],2371,2114,2435,2370,2435,2434,2370,2434,2434,2435,2434,2370,2435,2435,2435,2370,2371,2370,2370,2371,2371,2434,2435,2371,2370,2435,2370,[2371,9814],[2435,9906],[2435,9809],2434,2178,2435,2371,2435,2371,2371,2434,2434,[2435,3050],[3181,9526],[3246,9521],[2435,3055],2435,2435,2371,2434,2371,2371,2434,[2370,3242],[3179,9718],[3182,9719],[4097,4039,9620],3912,3977,3977,3977,3913,3913,3914,[3914,9330],[3977,9619,9333],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3458,9494],3521,3393,3907,3905,3457,[3908,5188],5189,5190,[3906,5191],3520,3906,3456,3392,[3522,9595],[3907,9596],[9979,9497],[3908,10075],[3971,10169],[3457,10170],3521,3971,3458,3393,3907,3969,3908,[3919,3844],3983,3920,3920,3983,3919,3919,[3920,3777],3905,3905,[3907,9787],[3907,9883],9977,9978,9979,[403,10075],403,403,531,403,[403,9688],[3906,9685],[3969,9686],[3906,131],[3906,132],[3969,133],[3907,134],[3908,135],[3969,136],[3906,137],3908,3969,3971,3520,3969,3456,3456,[3592,3973],3332,[3594,4032],[3528,4033],[3592,3843],3530,3269,3530,[3529,2881],[3530,2882,896],[3593,2883,897],[3594,2884],[3528,2885],3528,3268,3530,[3528,3777],[3529,3779],[3529,3777],3457,3520,3522,3907,3971,3456,3906,3522,[3905,9796],[3458,9892],9988,10082,10083,10084,10180,403,403,403,403,10175,10176,10177,10178,10179,10176,10177,10178,10179,10180,403,403,403,403,403,[403,6],7,8,[403,9],403,403,403,403,403,403,403,10175,10176,10177,10178,10179,[10079,9601],[3969,9598],[3971,9599],3908,3588,3589,3458,3458,3520,3905,3906,3905,3908,3906,[3981,3844],3919,3983,[3983,3776],3456,3969,[3521,9613],[3919,3713,9614],[3920,9611],3920,3920,3920,3983,3983,3920,3920,3919,3920,[2765,3985],2768,2829,[2831,3789],[2830,3725],3919,3983,3983,[2830,3985],2830,2832,2830,2832,[2767,3789],[2829,3725],[2831,3729],2766,2765,[2829,10185],[2767,10186],[2831,10187],[2767,10188],2766,[2766,3980],3983,3983,3983,3917,3983,3919,3920,3919,3920,3920,[2765,3921],2765,2832,[2831,3980],3920,3920,[3983,9321],[3917,9416],[3983,9512],3983,[2765,3855],2832,2765,2830,2830,[2831,3789],[2830,3725],3981,3917,3917,3983,3919,[3983,9805],[3920,9901],9902,[2767,4049,9707],2832,2831,2767,2832,2831,2831,[2832,9814],[2767,9815],[4097,4038,9620],3912,3978,3978,3978,3978,3977,3978,[3913,9619],[3179,9712],[3245,9713],3244,3180,3246,3243,[2434,3308],[2435,3309],3181,3181,3244,[2371,3247],2370,2434,2435,2370,2370,2434,2371,2435,2371,2371,[2435,3463],3594,3592,3528,[2434,3335],[2434,3336],[2371,3337],[2435,3338],[2435,3401],2371,2371,2370,2434,2435,2434,[2370,3399],[2370,3336],[2370,3337,9718],[2371,3338,9719],[4097,9620],4097,4097,[4097,3974],3977,3914,3913,3978,3914,3978,3975,[4097,3785],4097,[4097,3784],3976,3914,[3914,9622],[3978,9623],[3913,9620],3913,[3978,9718],[3977,9719],[10006,9524],[3978,10102],3913,3913,3914,3913,[4097,3915],4097,[4097,3847],3912,3914,[3978,9330],[3913,9331],[3914,9332],[3977,9333],[3978,9520],[3912,9521],3977,3978,3913,3913,[3914,9523],[3975,9616],[4097,3719,9617],[4097,3722],3914,3977,3977,3977,[3979,9619],[2434,9808],[2435,3052,9809],[2371,2987],3182,[2371,3117],2370,2371,2370,2435,[2434,3116],3245,[2370,3117],2371,2370,2434,2371,[2371,3178],3180,[2434,3307],[2434,3308],3179,[2434,3247],1923,2371,[2370,9814],[2435,9906],[2435,9907],[2435,9809],2370,2370,2370,2434,2370,2435,2435,2434,2435,2371,[2435,3052],[2434,3053],2434,2371,2434,[2435,3178],[2370,3183],2434,2370,2435,2371,2371,1986,2435,2050,[2435,3051],[2434,2991],2370,2371,2370,2371,2370,2371,2434,[2434,9718],[2435,9719],[4097,4039,9620],[4097,4040],[4097,4041],[4097,4042],[4097,3849],4097,4097,[4097,3782],[3914,10194],[3978,10195],[3914,10196],[3975,10197],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[3976,10194],[3977,10195],[3977,10196],[3978,10197],[4097,3787,10097],10001,[2371,9616],[2435,9617],2434,2371,2435,2371,2370,2371,2434,2371,2371,1987,[2371,3052],[2370,2987],3245,3180,3181,[2370,3053],2435,2435,2371,2371,2371,2434,2370,2435,2434,2435,2370,2371,2371,2434,2371,2435,1922,2370,2370,2435,[2370,9814],[2435,9906],[2434,9907],[2434,9908],[2370,9908],[2434,9909],[2371,9910],10002,[2435,9905],[2370,9809],2371,2370,2435,2370,2434,2434,2434,2434,[2435,3114],3181,3180,[2434,3119],2435,2434,2242,2243,2435,2370,2371,[2435,3116],[3245,9814],[3246,9815],[4097,9620],[4097,3847],[4097,4039],[4097,4040],3912,[3913,9330],[3913,9333],[3914,9425],9426,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3521,9494],3907,3394,3392,3905,3458,3907,[3522,5284],[3522,5285],[3908,5286],[3394,5287],3392,3394,3456,3907,[3521,9691],[3969,9692],[3520,10075,9593],3520,3905,3586,3587,3520,3907,3457,3907,3969,[3919,3843],3919,3918,3920,3919,3919,3920,[3983,3712],3906,3907,[3971,9787],[3905,9883],9979,[3969,10073],[3457,10074],[3907,471,10075],[3971,596],[3905,597],[3908,598],[3905,599],[3905,600],[3971,468,9493],[3908,9494],3457,[3908,195],196,197,198,199,200,[3908,201],3457,3907,3908,3969,3971,3969,3521,[3593,3973],3592,3594,3530,3530,3592,3332,3528,[3528,2945],[2946,960],[2947,961],[2948,962],[3593,2949],3530,3530,3593,[3594,3841],[3528,4033],3522,3521,3520,3458,3908,3971,3971,3906,[3905,9604],[3969,9605],9988,10084,10178,10179,10180,403,403,403,403,285,403,403,403,403,403,403,403,403,403,403,403,403,595,403,403,[9312,6],7,8,[9315,9],403,403,403,403,403,403,403,403,403,403,403,403,[10175,9601],[3907,9694],[3456,9695],3905,3652,3653,3520,3520,3458,3971,3906,3907,3458,[3920,4037],3983,3983,[3918,3777],3392,3907,3458,[3520,9709],[3908,9710],[3981,9707],3983,3919,3920,3920,3981,3983,3920,3919,3920,[2767,3856],2765,2829,[2830,3980],3920,3919,3920,[2832,4048],[2768,3856],2829,2765,[2831,3724],[2768,3725],3983,3983,3919,[2766,3791],2829,2767,2767,2830,2767,2765,[2766,3853],3983,3983,3917,3983,3919,3983,3983,3919,3919,3920,[2831,3985],2832,2766,[2830,4044],3920,[3981,9416],[3918,9417],[3919,9512],3919,3983,[2766,3725],[2829,3725],[2767,3726],[2765,3727],[2767,3728],3983,3983,3920,3920,3983,3983,[2829,3855,9805],[2832,4044,9901],9997,[2831,9998],[2768,9803],2829,2765,2767,2832,2765,[2767,9814],[2767,9910],9911,[4097,9716],[4097,3848],3912,3977,3914,3911,[4097,4040],[4097,4041],[4097,4042,9619],[3245,9616],[3180,9617],3244,[2434,3307],[2434,3308],[2370,3311],2435,2434,[2435,3115],[2370,3309],[2371,3310],[2371,3117],2371,2435,2435,2371,2370,2435,2370,2435,1986,2371,2435,[2434,3590],3528,[3913,3655],[3977,3656],[3913,3657],[3978,3658],3528,3530,[2370,3335],[2371,3402],2370,2370,[2370,3334],[2370,3335],3594,3528,[3594,9718],[3592,9719],[4097,9620],4097,[4097,3783],3976,3914,3977,3913,3913,3914,3977,3977,[4097,3979],4097,[4097,3974],3978,3913,[3977,9814],[3978,9815],[3977,9620],3914,[3978,9622],[3913,9623],[3914,9524,10102,9620],3914,3977,3913,3914,3977,3975,[4097,3785],4097,[4097,3974],[3977,9520],[4097,3910,9426],[3977,9427],[3913,9428],[4097,3979,9429],[4097,9521],[4097,3974],3913,3914,3913,[3978,9330],[3977,9715,9333],[3914,9712],[3977,9713],3913,3978,3911,[4097,4040],3912,[3975,9715],9904,[3179,9905],[3181,9809],[2434,3247],2371,1922,2370,2371,2242,2243,[2434,3050],[2435,3053],2434,2434,2435,[2435,3052],3246,[2434,3118],2371,2435,[2434,3116],3180,[2370,2987],[2370,3053,9814],[2434,9910],10002,10003,[2370,9905],[2371,9809],2434,2435,2435,2178,2370,2370,2370,2435,2435,[2435,3242],[2435,3055],2434,2370,[2371,3051],3180,[2434,3247],2370,2371,2371,2435,2435,2435,2370,2434,[2371,3050],[2435,3247],2370,2435,2371,2434,2371,2434,2370,[2435,9814],[2371,9815],[4097,9620],4097,4097,4097,4097,4097,4097,[4097,3910],3977,3914,3914,3978,3913,3978,3913,3913,3914,3913,3914,3913,[4097,3851],[4097,10097],[2371,9712],[2434,9713],2370,2371,2434,2370,2371,2435,2434,2371,2434,2434,[2434,3050],3180,[3244,9814],[3244,9906],[3245,9907],[2434,3247,9809],2435,2434,2370,2370,2435,2435,1986,2434,2370,2434,2435,2370,2370,2434,2434,2434,2435,2371,2434,[2371,9814],[2435,9910],10002,10003,10004,10004,10005,10006,[4097,3851,10098],10001,[2371,9905],[2435,9906],[2434,9907],[2371,9809],2434,2435,2435,2370,2371,[2371,3178],3243,3182,[2370,3183],2435,2370,2306,2307,2434,2435,2370,[2370,9814],[2434,3306,9910],9911,[4097,3785,9716],4097,4097,4097,[4097,3847,9425],9426,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3392,9589],[3905,9590],3521,3457,3521,3907,3457,3908,[3392,5380],[3457,5381],[3520,5382],[3906,5383],3908,3969,3458,3456,[3906,9595],[3392,9596],[3457,9593],3457,3520,3650,3651,3522,3907,3969,3908,[3919,4037],3983,3983,3983,3983,3918,3919,3918,[3918,3776],3906,[3906,9595],[3906,9596],9979,[3522,10075],[3907,10169],[3969,10170],[3905,4153],3971,3969,3907,3905,[3907,9496],[3969,9589],[3971,9590],3908,[3905,259],260,261,262,263,264,[3969,265],3907,3908,3906,3908,3906,3908,3907,[3592,4037],3528,3592,[3593,3778],[3594,3713],[3528,3780],3529,[3528,3008],[3594,3009],[3010,1024],1025,[3012,1026],[3594,3013],[3528,3778],[3594,3779],3528,3529,3529,[3530,3776],3908,3522,3522,3394,3520,3456,3458,[3905,9700],[3521,9701],[10084,9506],10180,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[3905,9407],[3906,9408,6],7,8,[3907,9411,9],[3522,9412],403,403,9312,9313,9314,9315,9315,403,403,285,403,[403,9601],[3907,9790],[3457,9791],3522,3520,3971,3971,3457,[3983,4033],[3983,4034],3522,3458,[3983,3844],3983,3919,[3920,3712],3520,[3906,9513],3457,3521,3522,[3983,3973,9517],[3919,9518],3983,3920,3920,3917,3983,3983,3917,3920,[2766,3793],[2831,566],[2829,567],2765,[2831,4044],[2767,4047],[2768,4048],[2830,3855],2829,2767,2832,[2765,3789],3981,3983,3919,3918,3983,3919,[2829,3792],2830,2765,2832,2768,2832,2767,[2768,3853],3920,3919,3920,3983,3920,3920,3917,3983,3920,[2767,4049],2766,2832,2768,[2767,3853,9511],[3919,9512],3983,3920,3920,3920,3983,3919,3983,3919,3983,3919,3983,3919,3919,3919,[3983,9613],[2766,3792,9614],9997,[2832,10093],2832,2768,2832,2766,2765,2765,[2767,9622],[2767,9623],10006,[4097,3783,10007],[4097,3719,9812],[4097,3785],[4097,4038],[4097,4040],[4097,4042],[4097,3849],4097,4097,[4097,9619],[3180,9712],[3180,9713],[2434,3118],2370,2370,2370,2371,2371,2371,2371,2370,2435,2435,2434,2370,1923,2434,2435,2434,2435,2371,2371,2370,[2435,3398],[3978,3465],3913,3978,3911,[4097,4039],[3912,3654],3530,3529,3592,[2370,3401],[2434,3400],3593,3528,[2435,3655],[2371,3655],[3593,9814],[3594,9815],[4097,3786,9620],4097,[4097,4038],[4097,4041],[4097,4042],3912,3978,3977,3977,3977,3913,3975,[4097,3785],[4097,3847,9814],[3914,9908],[3977,9909],[3913,9910],9911,[3978,9716],3914,[3978,9718],[3978,9719],[3913,9716,9330],[3913,9333],3914,3977,3914,3913,3914,[4097,3787],4096,[4097,4038,9523],[4097,9616],[4097,3974,9617],3913,3911,[4097,3850],4097,[4097,3974],3913,3913,[3913,9425],[3977,9426],[3978,9429],[3977,9521],3914,3978,3911,[4097,3849],4097,[4097,3848],[4097,4041,9811],[4097,4043,10000],10001,[2434,3310,9616],[1922,3311,9617],2435,2371,2370,2371,2306,2307,[2371,3178],3181,[2371,2988],[2371,2989],[2371,2990],3180,[2114,3247],2434,1922,2435,[2371,9814],[2370,3242,9908],[3179,9909],[3179,9910],10006,[4097,3910,10098],[3914,10099],10001,[2434,9808],[2370,9809],2435,2435,2370,2435,2435,2435,2434,[2371,3052],3181,[2434,3119],2050,2434,[2370,3242],3244,[2434,3118],2434,2434,2435,2435,2434,2434,2435,2434,[2371,3114],3180,[2434,3054],2370,2435,2435,2435,2370,[2370,9814],[2434,9910],9911,[4097,3786,9716],4097,4097,4097,4097,4097,[4097,3784],3976,3978,3913,3913,3978,3913,3914,3978,3913,3914,3977,3977,3913,[4097,3915],[4097,9520],[2435,9521],2435,1922,2434,2371,2435,2371,2435,2370,2435,2434,2435,[2370,3114,9814],[3181,9909],[3244,9910],10002,10003,[2371,3247,9905],[2371,9809],2371,2435,2434,2435,2434,2370,[2435,9814],[2434,9906],[2435,9907],[2371,9809],2435,2435,2370,[2435,6],7,8,[2435,9906,9],[2370,9907],[2370,9910],10006,[3977,10098],[3911,10099],[4098,10100],[3912,10100],[3914,10101],[3914,10102],[4097,3915,10194],[4097,10097],10001,10002,10003,[2434,9905],[2371,9809],2370,1922,2435,2371,[2371,3242,9814],[3179,9906],[3244,9907],[2435,3247,9809],2370,2370,2370,2435,2435,2435,[2435,9814],[2434,9910],10006,[3913,10007],[3975,9812],[4097,3719],[4097,3785,9333],[4097,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3906,9685],[3394,9686],3521,[3393,4996],[3521,4997],[3393,4998],3969,3520,[3906,5476],[3392,5477],[3456,5478],[3394,5479],3907,3456,3906,3456,[3908,9691],[3905,9692],[3522,9689],3971,3456,3905,3907,3907,3458,3458,[3983,3973],3920,3983,3983,3983,3983,3983,3919,3983,[3920,3840],3969,[3907,9691],[3522,9692],[3393,10075,9497],3456,3586,3587,3908,3457,3906,3907,[3905,9303],[3393,9592,9306],[3907,9685],[3971,9686],3969,[3971,323],324,325,326,327,328,[3971,329],3905,3969,3906,3906,[3593,4035],[3592,4036],[3593,4037],3529,[3594,3778],[3529,3713],3971,3905,[3592,4037],3592,[3593,3072],[3594,3073],[3074,1088],[3075,1089],[3076,1090],[3594,3077],[3530,3776],3905,[3528,3713],[3592,3780],3594,[3528,3840],3907,3520,3907,3969,3394,3905,3392,[3907,9604],[3969,9605],[10180,9602],403,403,403,403,403,403,403,403,403,403,9312,9313,9315,403,403,403,403,403,403,9312,9313,9315,[3457,9407],[3906,9503],3907,3458,3521,3906,[3906,9508],[3969,9412],[3458,9407],[3520,9408],[3906,9409],[3456,9410],[3457,9410],[3908,9411],[3906,9412],403,403,403,[403,9697],9886,[3456,9887],[3520,9791],3520,3456,3392,[3919,3973],3917,3918,[3983,3842],[3920,3843],3983,3983,[3919,3778],3521,[3520,9514],[3969,9609],3457,3908,[3983,4033],[3983,3844,9709],[3919,9710],[3919,9515],3919,3983,3919,3919,3981,3920,3920,[2831,3857],[2829,630],[2832,631],2829,2829,2831,2768,2831,2766,[2831,3790],[2831,3725],3983,3919,3919,3920,3983,3983,3983,3983,[2766,3726],[2832,3728],[2831,3729],2765,2768,2766,2765,[2831,4044],3983,3919,3983,3920,3920,3919,3920,[2830,3855],2832,2765,2767,[2829,9514],[2766,9607],[2767,3788,9608],3920,3983,3918,3919,3920,3983,3919,3983,3920,3920,3919,3919,3983,3920,[3983,9709],[3919,9710],[2768,3791,10093,9515],2832,2765,2766,2765,2768,2765,2768,[2766,9718],[2767,9719],[3975,10102,9524],3976,3914,[4097,3979],4097,4097,4097,4097,4097,4097,[4097,3783,9619],[3180,9808],[2435,3118,9809],2435,2370,2370,2370,2371,2371,2370,1922,2371,2370,2370,1922,2435,2435,2178,2434,2371,2435,2370,2371,2371,[2371,3462],[3914,3402],3914,3911,[4097,3849],4097,[4097,3847],[3912,3463],3529,3593,3529,3592,3529,[2371,3465],2371,[2371,9622],[2371,9623],9911,[3975,9716],[4097,3719],[4097,3786],4097,4097,[4097,3782],3914,3978,3977,3977,3913,3978,[3975,9814],[4097,3719,9910],10004,10005,10006,[3914,10007],[3914,9812],3978,3913,[3977,9526],[3978,9426],[3914,9429],[3978,9430],3978,3977,3977,3978,[4097,3915],4097,[4097,9425],[4097,3783,9521],3976,3914,[4097,3787],4097,[4097,3783],3976,3913,[3914,9520],[4097,3974,9521],3978,3977,3913,3977,3911,[4097,4043],4097,4097,4097,4097,4097,[4097,10097],[2371,9712],[2434,9713],2371,2434,2370,2435,2370,2370,[2434,3115],[2370,3307],[2371,3308],3180,3179,3181,[2434,3118],2434,2370,[2370,9814],[2371,9910],10004,10005,10006,[4097,10102],[4097,3974,10194],[3978,10195],[3978,10097],9904,[2434,9905],[2370,9809],2370,2435,2435,2370,1987,2371,[2435,3242],3245,[2370,3183],2434,2371,[2434,3116],[2371,3055],2435,2371,2435,2371,2434,2434,2371,2434,2371,[2435,3178],3245,3180,[2435,2987],[2434,3054],2435,2370,[2371,9622],[2370,9623],10006,[3914,10007],[4097,3787,9812],4097,4192,4097,[4097,3783],[4097,3719],3976,3913,3913,3914,[3913,9330],[3913,9332],[3977,9333],3977,3913,3978,3914,3914,3914,3914,[3975,9523],[2435,9616],[2370,9617],2435,2435,2434,2371,2435,2370,2370,2435,2371,2434,[2371,9814],[2370,9910],10005,10006,10098,[3977,10099],10001,[2371,9905],[2371,9809],2371,2370,2435,2435,[2434,9814],[2434,9910],10002,10003,[2434,9905],[2370,9906],[2434,9907],[2435,9908],[2370,9909,6],7,8,[10002,9],10003,10006,[3912,10102],[3913,10194],[3975,10195],[4098,3719,10196],[3976,10196],[3914,10197],3911,[4097,3850],4097,[4097,3782,10097],[3977,10098],[3977,10099],10001,[2370,9905],[2435,9906],[2371,9907,6],7,8,[2435,3115,9910,9],10002,10003,[2370,3118,9905],[2371,9809],2371,2371,2371,2371,[2370,9622],[2434,9623],10006,[3977,10102],3978,3913,[3914,9425],9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3520,9781],[3393,9782],3457,[3394,5092],5093,5094,[3520,5095],3521,3457,3907,3457,3456,3905,3458,3520,[3520,4996],[3905,4997],[3969,9499,4998],[3907,9403],3907,3458,3521,3969,3520,3521,3394,3521,[3920,3779],3919,[3919,3712],[3919,3779],3919,3919,3919,3920,[3983,3904],3520,[3907,9787],[3908,9788],[3969,9593],3969,3650,3651,3971,3969,3969,[3908,9398],[3905,9399],[3971,9402],[3905,9494],3905,3906,[3905,387],388,389,390,391,392,[3907,393],3906,3971,3971,[3592,3844],3332,3594,3592,3594,[3592,3841],[3528,4033],3908,[3528,3973],3529,3594,3528,[3528,3137],3138,3139,[3530,3140],[3594,3141],[3529,3840],3906,3907,[3592,3781],3529,[3530,3904],3905,3521,3521,3971,3457,3457,3521,[3907,9700],[3456,9701],[403,9698],403,403,403,403,403,9312,9313,9314,9315,[3908,9407],[3457,9408],[3905,9409],[3394,9411],[3393,9412],403,403,9312,9315,[3971,9407],[3458,9408],[3969,9409],[3458,9411],[3458,9503],3907,[3594,3970],3520,3520,3456,3969,[3522,9508],[3394,9503],3905,3905,3394,3393,3905,[3905,9508],[3457,9509],403,403,[403,9793],9982,9983,[3971,9887],[3907,9791],3908,3458,[3983,3973],3981,3919,3919,3920,3920,3920,[3983,3968],3905,[3456,9610],[3971,9799],[3908,9800],[3918,3845],3920,[3920,9805],[3983,9806],[3983,9611],3919,3983,3920,3919,3917,3983,3919,[2832,3921],[2831,694],[2768,695],2831,2831,[2765,3789],[2768,3726],[2767,3727],[2768,3728],3920,3918,3920,3919,3919,3981,3983,3983,3918,3983,3918,3983,[2830,3985,9321],[2767,9322],[2765,9323],[2830,9324],[2830,9324],2766,[2766,3853],3983,3920,3920,3983,3919,[2830,3793],2767,2767,2830,2829,[2768,9610],[2768,9703],[2831,3852,9704],3983,3919,3917,3919,3983,[3983,9805],[3983,9897],[3918,9898],[3919,9800],3919,3920,3919,3920,3919,[3983,9613],[2832,4045,9614],[2831,4049,9611],2768,2830,2768,2832,2829,2765,2831,[2830,9622],[2765,9623],[3914,9620],3914,3914,[4097,3787],4097,[4097,3784],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[3976,9715],9904,[2435,9712],[2370,9713],1987,2370,2371,2435,2435,2370,2434,2370,2434,2434,[2435,4249],2434,2434,2435,2371,2434,2370,2434,2371,2371,[2434,3526],3530,[3978,3339],[4097,3787],4097,4097,4097,[4097,3974],[3913,3398],3593,3594,3530,[2435,3595],2370,2435,[2434,9718],[2371,9719],[3978,10007],[3914,9812],3914,3975,[4097,3723],4097,[4097,3846],3914,3914,3978,3977,3913,[3913,9814],[3913,9910],10006,[3913,10100],[3978,10101],[3978,10102],3913,3977,3978,3977,3978,3911,[4097,4040],[3912,9526],[3977,9430],[3977,9330],[3977,8276],[3978,8277],8278,[4097,3785,9523,9333],[4097,9616],[4097,3974,9617],3978,3978,[4097,3851],4097,[4097,3782],3913,[3977,9523],[4097,9616],[4097,3848,9617],[4097,4039],[4097,4039],3912,3911,[4097,3849],4097,4097,[4097,3784],[4097,3786],4097,4097,[4097,9520],[2435,9521],2370,2434,2435,2370,2370,2371,2371,2371,2434,2371,[2435,3115],3179,[2434,3247],2371,2370,[2371,9622],[2434,9623],10006,[3978,10100],[4097,3787,10101],[4097,10102],4097,[4097,3847],[4097,4039],[4097,4040],[3912,10000],10001,[2435,9712],[2434,9713],2371,2434,2370,2434,[2435,3051],3180,3182,[2370,3117],2370,2434,[2435,3052],[2242,3183],2243,2434,2435,2434,2371,2435,2435,2435,2371,[2435,3242],3179,3179,3181,[2370,3247],2371,2434,[2434,9718],[2370,9719],[3978,10102,9524],3977,[4097,3915],4097,4097,4097,[4097,4038],[4097,4039],[4097,4040],3912,3978,[3913,9425],[2370,9426],[2371,9428],[2371,9429],[3914,9430],[3913,9330],[3978,9333],3914,3978,3978,3913,[3978,9619],[2435,9712],[2435,9713],2371,2434,2434,2370,2434,2435,2434,2371,2435,[2371,9814],[2370,9910],10006,[4097,3787,10101],[4097,10102],[4097,3782,10194],[3977,10195],[3914,10097],10001,[2371,9905],[2435,9906],[2435,9907],[2370,9908],[2435,9909],[2434,9910],10006,[3977,10098],[3978,10099],10001,10002,10003,10004,[10005,6],7,8,[4097,10098,9],[4097,10099],[4097,10102],[4097,3847],3912,3977,3914,3978,3978,[4097,3979],4097,4097,[4097,3910],[3914,10194],[3977,10195],[3914,10097],10001,10002,[10003,6],7,8,[10006,9],[3978,10098],[3913,10099],10001,[2435,9905],[2435,9809],2434,2434,2435,[2371,9718],[2371,9719],[3978,10102],3913,3914,[3977,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3458,9878],[3392,9782],[3520,5188],5189,5190,[3908,5191],3969,3456,3908,3457,3394,3393,3520,3907,[3520,5092],5093,5094,[3906,9499,5095],[3969,9500],3969,3908,3971,3457,3456,3522,3907,3520,[3983,3713],3906,3522,[3983,3713],[3920,3714],[3983,3715],[3920,3716],[3520,9787],[3456,9879],[3908,9883],9884,[3457,9689],3520,3971,3969,3457,3906,[3456,9496],[3908,9781],[3459,9782],3522,3522,3458,3456,[3521,451],452,453,454,455,456,[3458,457],3907,3907,[3592,3973],3592,3530,3593,3332,3530,3592,3594,[3529,3842],3908,[3593,3779],3593,3332,3530,[3528,3202],[3530,3203],[3528,3204],3594,[3592,3904],3458,3522,[3528,3845],3530,[3530,3968],3905,3908,3905,3457,3908,3905,3969,3394,[3969,9508],[3908,9509],403,403,403,403,[3971,9407],[3908,9408],[3394,9409],[3521,9410],[3905,9411],[3458,9503],3392,3393,3908,[3520,9508],[3908,9509],[3971,9407],[3969,9408],[3522,9411],[3971,9503],3456,3906,3906,3907,3521,3905,3969,3908,3456,3971,3908,3908,3394,3394,3908,3520,3905,[3392,9604],[3969,9605],[403,9506],403,403,403,10079,9983,[3906,9694],[3522,9695],3520,3458,[3983,3780],3917,3983,3917,3919,[3917,3778],3522,3456,[3908,9706],9895,[3906,9896],[3983,3909,9897],[3919,9898],[3919,9901],9902,[3981,9707],3919,3983,3983,3983,3920,3920,3920,3983,[2830,3791],2766,2766,[2766,3724],3920,3920,3919,3919,3919,3917,3919,3983,3983,3919,3983,3983,3983,3919,3983,[3919,9416],[2830,9417],[2830,9418],[2767,9419],[2766,9420],[2831,9420],[2768,9421],2768,[2830,4044],3917,3920,3920,3983,[2768,3857],2765,2767,2832,2830,[2767,9610],[2829,9799],[2766,3916,9800],3983,3920,3983,3983,[3919,9805],[3983,9901],9993,9994,[3919,9896],[3918,9897],[3919,9898],[3919,9800],3983,3919,[2831,3855,9805],[2767,9806],[2768,9611],[2765,3789],[2765,3726],[2829,3727],[2765,3728],[2765,3792],2830,2765,[2768,9718],[2767,9719],[3977,9716,9330],[3977,9331],[3914,9332],[4097,3851,9333],4097,[4097,3974],3913,3914,3914,3977,[3978,9811],[3978,10000,9523],[2435,9808],[2434,9809],2371,2435,2435,2371,2434,2434,2434,2434,2435,[2370,4344],[2370,4345],[2370,4346],2434,2371,2434,2435,2371,2434,2371,2371,[2434,3463],3594,[3914,3595],[4097,3915],4097,4096,4097,[4097,3782],[3913,3462],3593,3529,[2370,3655],[2370,3659],2434,2435,[2370,9622],[2370,9623],3977,3914,3914,3978,[4097,3787],4097,[4097,3910],3977,3978,3914,3914,[3911,9622],[4097,4039,9623],10006,[3914,10102],[3913,10196],[3913,10197],3911,3912,3913,3977,3913,3914,[4097,3979],4097,[4097,3848],[4097,4039,9526],[4097,4040,9426],[3912,8372],8373,[4097,3786,8374],[4097,9429],[4097,9521],[4097,3782],3978,3978,[4097,3915],4097,[4097,3910],3913,[3978,9619],[4097,9712],[4097,9713],4097,4097,[4097,4038],[4097,4043],4097,[4097,3784],[4097,3719],3976,[4097,3979],4097,[4097,9520],[2371,9521],2434,2435,2370,2435,2434,2434,2370,2371,2370,2370,2435,2435,[2434,3050],[2371,3055],2371,2434,[2435,9718],[2435,9719],[3977,10102,9524],[3977,10196],[4097,3851,10197],4097,4097,4097,4097,4097,[4097,3848],[4097,4040,10097,9523],[2370,9808],[2371,9809],2371,2434,2370,2435,[2435,3242],3180,3179,[2371,3053],[2370,3051],[2435,2987],3182,[2306,3118],2307,2434,2370,2370,2370,2370,2371,2370,2370,[2370,3115],[2370,3307],3181,3181,[2434,3117],[2434,9814],[2178,9908],[2371,9909],[2371,9815],[3977,9620],3911,[4097,3849],4097,4097,4097,4097,4097,4097,[4097,3847],[3913,9520],[2371,9521],2371,2434,2370,[2371,3050,9526],[3245,9426],[3246,9429],[3911,9527],[4097,4039],[4097,4040],[4097,4041],[4097,4042,9619],[2434,9616],[2370,9617],2370,2371,2051,2434,2370,2435,2370,2370,[2370,9814],[2371,9910],10006,[3914,10102],[4097,3851,10197],[4097,10198],[4097,3846],3978,3911,[4097,3849,10097],10001,10002,10003,10004,10005,10006,[4098,3846,10102],[3913,10194],[3914,10195],[4097,3787,10097],[4097,10098],[4097,10099],[4097,10100],[4097,10101,6],7,8,[4097,3719,10194,9],[4097,3785,10195],4097,4097,[4097,3782],3978,3913,3978,3911,[4097,3850],4097,[4097,3783],3976,3978,3977,3977,[3978,10097],[3911,10098],[4097,10099,6],7,8,[4097,3847,10102,9],[3912,10194],[3977,10195],[3914,10097],10001,[2434,9616],[2370,9617],2370,2050,2435,[2435,9526],[3914,9527],3978,3978,[3914,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3393,9589],[3456,9590,5284],[3906,5285],[3458,5286],[3521,5287],3456,3393,3520,3392,3393,3393,3905,3520,[3907,5188],5189,5190,[3907,5191],[3907,9499],[3456,9500],3971,3906,3457,3971,3522,3458,3908,3908,3521,3971,3393,3458,3969,[3906,9787],[3906,9883],9975,9979,[3906,9980],[3458,9785],3456,3520,3905,3458,3456,[3906,9688],9877,[3969,9878],[3392,9879],[3908,9880],[3458,9782],3908,[3969,515],516,517,518,519,520,[3458,521],3520,[3593,4036],[3530,4037],3593,[3530,3777],[3594,3713],[3529,3714],[3528,3716],[3594,3780],3594,[3592,3778],3907,3456,[3530,3713],[3593,3714],[3592,3715],[3529,3716],[3530,3713],[3594,3779],[3530,3777],3458,3969,3458,[3528,3909],3593,[3592,4032],3521,3521,3908,3458,3906,3907,3458,3458,[3906,9604],[3969,9605],[403,9506],403,403,[3521,9502],[3908,9503],3521,3907,3906,3969,3971,3971,3522,3906,3521,[3520,9508],[3521,9503],3971,3456,3969,3905,3522,3906,3905,3520,3456,3908,3908,3392,3458,3394,3522,3905,3522,3908,3906,3458,[3971,9700],[3521,9701],[403,9602],403,403,403,10175,[10079,9505],[3907,9598],[3456,9599],3907,3456,3521,[3920,3713],[3981,3717],3983,3983,[3919,4032],[3920,4033],[3920,4034],[3522,9802],[3908,9991],9992,9993,9994,9997,[3918,9998,58],[3983,9803,59],3920,3919,3920,3983,3920,3983,3919,3983,[2829,3856],2830,2765,[2829,3788],3920,3983,3919,3983,3981,3983,3919,3983,3919,3983,[3983,9321],[3920,9322],[3983,9323],[3983,9324],[3919,9416],[2830,9512],2831,[2830,3789],[2829,3725],[2831,3729],2767,[2831,9517],[2832,9421],2830,[2829,4044],3920,3919,3983,[2831,3921],2829,2768,2765,2829,[2832,9706],9895,[3920,9896],[3919,9897],[3983,9898],[3983,9899],[3983,9900],[3919,9901],9997,[3983,10089],[3985,10090],9992,9993,9994,[2768,3980,9896],[3983,9899],[2768,3793,9900],[2829,9901],9902,[2829,9707],[2766,3980],3983,3920,3919,[2767,3793],2829,2767,2830,[2829,9526],[2765,9426],[2767,9427],[2765,9428],[2768,9429],[4097,3783,9430],3976,3978,3977,3913,3913,3978,[3911,9715],9904,[2371,9905],[2435,9906],[2371,9907],[2434,9908],[2434,9909],[2370,9809],2435,2371,2370,2434,1922,2435,[2370,9814],[2434,9906],[2434,9907],[2370,9908],[2371,9909],[2370,9809],2371,2370,2434,2371,[2371,3590],[3978,3595],[4097,3979,9814],[4097,9906],[4097,9907],[4097,9908],[4097,3846,9909],[3914,3526,9809],3594,[2370,3466],2434,2434,2435,2371,2434,[2371,9526],[4097,4039,9527],[4097,4039],3912,3913,[4097,3915],4097,[4097,3847],3912,3978,3978,3911,[4097,3850,9718],[4097,9719],[3978,10102],3913,3977,3911,[4097,3849],[4097,3847],3912,3978,3913,3911,[4097,3849],4097,4097,4097,4097,[4097,3974],3977,3975,[4097,3723],4097,[4097,3846],3913,3977,3975,[4097,3719],3976,3913,[3914,9619],[3975,9712],[4097,3719,9713],[4097,3719],[4097,3785],4097,4097,4192,[4097,4038],[4097,4040],[4097,4039],[4097,4043],[4097,9520],[2435,9521],2370,2370,2435,2435,2370,2434,1922,2435,2371,[2434,9814,6],7,8,[2434,9809,9],[2434,3114],[2435,3119],2435,2370,[2435,9814],[2370,9815],[3914,9620],3977,[4097,3915],4097,4097,[4097,3783],[4097,3719],[4097,3785],4097,[4097,9715],9904,[2371,9905],[2434,9809],2371,2434,2434,[2434,3115],3182,3181,3244,3179,3181,[2435,3117],2371,2434,2435,2371,2434,2435,2434,2435,2371,2435,2371,2434,[2371,3306],3244,[2435,3053,9814],[2434,9910],10004,10005,9911,[3977,9716],3975,[4097,3785],4097,4097,4097,4097,4097,4097,[4097,9523],[3179,9712],[2434,2987,9713],[2435,3054],2434,2434,[2435,3114],3180,[3180,9622],[3180,9623,565],[4097,9524,565],[4097,565],[4097,565],[4097,9715,565],[2435,9712,565],[2435,9713],2435,2434,2370,2435,2434,2370,1987,[2370,9622],[2371,9623],10006,[3977,10102],3978,[4097,3915],4097,[4097,3910],3913,[4097,3787],4097,[4097,10097],[4097,3846,10098],[3978,10099],[3913,10100],[4098,3979,10101],[4098,10102],[4098,3910],3913,3978,[4097,3851],[4097,10194],[4097,10195],[4097,10196],[4097,10197,6],7,8,[3977,9],[4097,3787],4097,4096,[4097,3846],3977,3914,3914,[4097,3787],4097,[4097,3783],3976,3913,3978,3977,3977,3977,[4097,3787,10194],[4097,10195,6],7,8,[4097,9],[4097,3782],3914,3978,[3914,10097,9523],[2371,9712],[1923,9713],2434,2371,2371,[2434,9622],[2371,9623],[3977,9524],3978,[3914,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3457,9685],[3392,9686,5380],[3969,5381],[3458,5382],[3458,5383],3393,3906,3522,3521,3457,3457,3456,3458,[3908,5284],[3905,5285],[3906,5286],[3907,5287],[3905,9595],[3971,9596],[3905,9497],3456,[3522,3461],3969,3905,3906,3457,3905,3907,3907,3969,3522,[3971,9787],[3905,9883],9979,[3906,10071],[3906,10075],3906,3522,3520,3969,3522,3522,3907,[3969,9784],[3971,9973],9974,9975,9976,[3969,9878],[3521,9782],[3971,579],[3456,580],[3530,3973,581],[3528,582],[3592,3968,583],[3456,584],[3908,585],[3593,3844],3529,3530,[3592,3778],3905,[3528,3972],3521,3394,[3594,3843],3593,[3592,3776],3969,3522,3907,3907,3905,3522,3456,3522,3458,3908,3393,3456,[3530,3973],3269,3592,[3592,3841],3393,3971,3908,3393,[3520,3461],3906,3907,[3522,9796],[3907,9797],[403,9602],285,[403,9505],[3907,9598],[3392,9599],3905,3522,3969,3905,[3528,3970],3456,3586,3587,3520,3520,3906,3907,3520,3392,3969,3905,[3969,1431],1432,1433,1434,1435,1436,[3522,1437],3520,3456,3520,3908,3907,3456,3908,3969,[3457,9796],[3908,9797],[403,9602],403,40,41,403,[403,9601],[3971,9694],[3905,9695],3458,3457,3458,3456,[3920,3781],3983,3983,3920,3919,3981,[3918,4032],[3983,4035],[3920,4037,10088],[2830,3856,10089],[2832,3854,10090],[2832,4045,10093],[2829,4046,122],[2832,4047,123],[2831,4048],3983,3983,3919,3983,[2831,3982],3919,[2766,3855],2830,2767,2767,[2832,3916],3983,3920,3983,3983,3920,3919,3919,3917,3983,[3983,9416],[2830,9417],[2829,9418],[2766,9419],[2768,9420],[2768,9512],[2830,3789],[2829,3725],3919,3920,3981,[2768,3791],[2831,9613],[2765,9614],[2830,9515],2766,[2832,3853],3919,3920,[2829,3985],2830,2767,2767,2767,[2832,9802],[2768,3853,9991],9992,9993,9994,9995,9996,9997,[3919,10093],[3920,10185],[2830,3793,10186],[2767,10088],[2767,10089],[2768,3790,10090],9992,9995,9996,9997,[2766,9998],[2766,9803],[2768,3788],3920,3919,3983,[2767,3857],2765,2767,2767,2768,2829,2768,2830,2765,[2829,9526],[3977,9527],3914,3977,3914,3978,3977,[4097,3979,9811],[4097,10000],10001,10002,10003,10004,10005,[2435,9905],[2435,9809],2435,2435,2435,2435,[2371,9814],[2370,9910],10002,10003,10004,10005,[2371,9905],[2370,9809],2435,2371,[2371,9814],[2371,3590,9906],[3978,3595,9907],[3913,9910],10002,10003,10004,10005,[3528,9905],[2435,3659,9809],2371,2435,2434,2435,2051,1922,[2371,9622],[2371,9623],[4097,9524],[4097,3848],[4097,4042],[4097,4043],4097,4097,[4097,3848],[4097,4039],[4097,4040],[4097,3849],[4097,9622],[4097,9623],3914,3978,3911,[4097,4043],4097,[4097,3783],3976,3978,3913,[4097,3979],4097,[4097,3783],[4097,3720],[4097,3721],[4097,3722],3976,3978,3914,[4097,3787],4097,[4097,3910],3977,3913,3913,3978,3914,3977,[3914,9619],[3977,9616],[3913,9617],3978,3975,[4097,3723],4097,4097,4097,4097,4097,[4097,9523],[2434,9616],[2371,9617],2371,2434,2435,2435,2370,2371,2435,2371,[2371,9814],[2435,9910,6],7,8,[2370,9905,9],[2435,9906],[2371,3183,9907],[2434,9908],[2434,9909],[2434,9910],9911,[3913,9716],3978,[4097,3979],4097,4097,[4097,3782],3977,3975,[4097,3720],[4097,3721,9811],[4097,3722,10000],10001,[2370,9616],[2370,9617],2370,2371,2370,[2370,3242],3244,3180,3182,[2370,3055],2371,2435,2434,2435,2434,2370,2434,2370,2434,2371,2370,2435,2371,2371,[2371,3050,9718],[3246,9719],10006,[4097,3846,10100],[3978,10101],[3914,10007],[3914,9812],3913,3975,[4097,3720],[4097,3721],[4097,3722],[4097,3785],4097,4097,[4097,9619],[3245,9616],[3181,9617],3243,[2434,2987],[2370,2991],[2435,3178],3179,3246,629,629,629,629,629,629,2434,2434,2371,2435,2371,2370,2434,2435,[2434,9718],[2435,9719],[3977,10102,9524],3913,3911,[4097,3849],[4097,3783],3976,3978,[4097,3851],4097,4096,[4097,3910,10194],[3914,10195],[3911,10196],[4098,3849,10197],4098,[4098,3974],3978,3913,[4097,3915],4097,4097,4097,[4097,6],7,8,[3978,9],[4097,3915],4097,4097,[4097,3910],3978,3978,3978,[4097,3851],[4097,9330],[4097,3974,9331],[3978,9332],[3913,9333],3977,3914,3914,3914,[4097,3915],[4097,6],7,8,[4097,9333,9],[4097,3910],3978,3913,[3978,9619],[2371,9616],[2435,9617],2371,2371,2371,[2370,9718],[2371,9719],[3978,9620],3977,[3913,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3908,9589],[3457,9590,5476],[3908,5477],[3907,5478],[3905,5479],3907,3394,3522,3908,3522,3457,3394,3457,[3393,5380],[3905,5381],[3908,5382],[3906,5383],[3969,9595],[3971,9596],[3908,9593],3457,3458,3905,3521,3457,3905,3458,3456,[3969,9787],[3520,9881],[3521,9882],[3458,9883],9979,[3521,10075],[3522,10167],3907,3906,3520,[3969,9303],[3521,9304],[3457,9305],[3969,9306],3906,3971,3521,[3908,10070],[3457,10071],[3456,10072],9974,[3906,9878],[3908,9782],3458,3520,[3592,3780],[3530,4032],3907,[3529,3973],3594,[3528,3778],[3594,3713],3456,3520,3908,3905,[3530,3781],3530,3332,[3594,3840],3907,3588,3589,3905,3522,3521,3458,3969,3971,3907,3520,3521,3906,[3528,3780],3592,3528,[3268,3776],3969,3906,3969,[3521,9796],[3906,9890],[3458,9891],[3907,9892],9893,[403,9698],403,[403,9697],[3971,9694],[3522,9695],3458,3520,3456,3905,3458,3520,3650,3651,3905,3458,3908,3521,3458,3456,3457,3392,[3969,1495],1496,1497,1498,1499,1500,[3906,1501],3969,3456,3971,3969,3905,3905,3458,[3971,9796],[3908,9892],9893,[403,9698],403,104,105,403,[403,9601],[3908,9598],[3908,9599],3971,3458,3969,3908,[3983,3845],3920,3919,3920,[3969,3984],3919,3983,3919,3983,[2829,3791,10185],[2832,10186],2768,2831,2765,2829,[2829,3980],3919,3920,3983,3983,[2765,4049],2829,2767,[2831,3724],[2768,3792],[2768,3854],[2829,4046],3983,3918,3983,3919,3918,3919,3981,[3983,9514],[2829,9607],[2829,9608],2830,2768,2765,2829,[2829,3980],3918,3983,3919,3919,3920,[2766,3725,9709],[3729,9710],[2765,9611],2831,2829,[2831,4044],3981,3919,[2831,3791],2830,2768,2831,2830,2767,[2831,4044,10088],[2767,3855,10089],[2832,3788,10090],[3920,10091],[3919,10092],[3920,10093],3917,3983,[2830,3857],2767,[2767,10185],[2829,4044,10186],[3917,10088],[3919,10091],[2832,3921,10092],[2831,10093],2829,2830,[2831,3852],3981,3983,3918,[2765,3921],2766,2831,2830,2830,2829,2765,2832,2765,[2768,9622],[2830,9623],[3978,9524],3978,3977,3911,[4097,4039],[4097,3849],4097,[4097,3783,10097],[3976,10098],[3913,10099],[3978,10100],[3977,10101],10001,[2435,9905],[2370,9906],[2370,9907],[2370,9908],[2370,9909],[2371,9910],10006,[3914,10098],[3913,10099],[3914,10100],[3913,10101],10001,[2370,9905],[2371,9906],[2371,9907],[2371,9910],10002,10003,10006,[4097,3787,10098],[4097,10099],[4097,10100],[3912,10101],10001,[2370,9905],[2371,9809],2370,2371,2371,2371,2370,[2370,9718],[2371,9719],[4097,9620],4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,3784],[4097,3719,9526],[3914,9430],3911,[4097,3849],4192,4097,[4097,3974],3977,3914,3978,3975,[4097,3719],3976,3978,3914,3914,3913,3914,3978,[4097,3915],4097,[4097,3782],3978,3914,3911,[4098,4039],[4098,4040],[4098,4041],[3912,9715],[3914,9712],[3978,9713],3978,3978,3975,[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3720],[4097,3721,9619],[2435,9616],[2371,9617],2371,2371,2434,2371,2434,2434,2371,[2371,9814],[2370,9910],[10006,6],7,8,[10001,9],10002,10003,10004,10005,10006,[3978,10007],[3914,9812],3911,[4097,3849],4097,4097,[4097,3910],3913,3978,3978,3913,3914,[3978,10097],[2435,9712],[2370,9713],2371,2434,2434,[2434,3306],3179,3180,3181,[2371,3119],2435,2435,2370,2435,2370,2435,2370,2434,2435,2370,2434,2434,2434,2370,[2434,3114,9814],[3244,9815],[4097,10102,9524],[4097,3910,10196],[3914,10197],3978,3914,3978,3978,3978,3978,3977,[3975,9330],[4097,3719,9331],[4097,3785,9332],[4097,9715,9333],[3180,9712],[3179,9713],3182,3246,[2435,3118],[2435,3115],3246,[3244,9814],[3181,9815,757],[4097,9620,757],[4097,757],[4097,757],[4097,9619,757],[2435,9712,757],[2371,9713],1923,2371,2435,2371,2434,2434,2371,[2371,9622],[2435,9623],[3978,9620],3978,[4097,3787],4097,[4097,3974],3977,3914,[4097,3915],4097,4097,[4097,3974],3977,[4098,3979],4098,[4098,3718],3976,3914,3913,3975,[4097,3785,9330],[4097,9331],[4097,9332],[4097,9333,6],7,8,[3977,9],[4097,3979],[4097,9330],[4097,9333],[4097,3974],3914,3977,3978,[4097,3915,9425],[2434,9426],[2371,9427],[2435,9428],[2435,9429],[3977,9527],[3913,9330],[3977,9331],[3914,9332],[3975,9333],[4097,3723,9425,6],7,8,[2434,9429,9],[3976,9430],3978,3914,[3913,9715],[2435,9808],[2371,9809],2435,2434,2435,[2434,9814],[2370,9815],[4097,4040,9620],[4097,4041],[4097,4042,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],[3905,9685],[3521,9686],3521,3458,3392,3393,3394,3394,3520,3908,3457,3969,3908,[3458,5476],[3393,5477],[3906,5478],[3908,5479],[3905,9691],[3906,9692],[3907,9689],3906,3520,3907,3905,3522,3392,3520,[3908,9787],[3905,9883],9977,9978,9979,[3969,10075],3457,3969,3971,3521,[3522,9493],[3520,9399],[3905,9400],[3969,9401],[3521,9402],[3906,9403],3971,3906,3971,[3456,10167],[3907,10168],[3458,10070],9974,[3908,9878],[3522,9782],3520,[3530,3844],3530,[3529,3842],[3529,3844],3528,[3592,3968],3907,3971,3456,3908,3969,[3592,3845],3594,3528,[3528,3904],3458,3652,3653,3457,3969,3458,3458,3457,3971,3907,3969,3907,3906,[3592,3844],3592,3530,[3268,3840],3394,3392,[3458,9700],[3969,9701],9986,9987,9988,9989,[403,9794],403,[3394,9407],[3908,9503],3456,3521,3457,3971,3520,3907,3908,3521,3457,3521,3457,3395,3971,3522,3393,3520,3521,[3906,1559],1560,1561,1562,1563,1564,[3457,1565],3522,3907,3522,3456,3971,3908,[3907,9796],[3457,9892],9988,9989,[403,9794],403,403,403,403,[403,9697],[3907,9694],[3969,9695],3969,3969,3522,3905,[3981,3909],[3969,3982],3920,3919,3983,[3920,3777],[3919,3713],[3983,3714],[3981,3715],[3920,3780],[2829,3725],[2765,3725],[2831,3792],2832,2768,[2832,3853],[2766,4047],3919,3920,[2829,3793],2831,2767,[2765,3790],3919,[2767,3856],2768,2766,[2765,3788],3920,3983,3983,3920,3983,3920,[3920,9706],[2768,9703],[2832,9704],2832,2830,[2830,3724],[2766,3725],3983,3983,3920,3983,3920,3920,[3920,9613],[3985,9614],[2768,9611],2765,2829,[2767,3790],3983,3981,[2768,3855],2829,2832,2831,2766,2766,2767,[2768,10185],[2832,3852,10186],[3981,10187],[3919,10188],3920,3920,3983,[2832,3921],2829,2830,2830,[2768,3854],[2830,4046,10187],[2768,3855,10188],2830,2767,2832,[2832,3916],3983,3983,3920,3920,[2832,3792],2768,2831,2829,2831,2766,2831,2832,[2830,9718],[2830,9719],[4097,4039,9620],[4097,4040],[4097,4041],[4097,4043],4097,[4097,3718],[4097,3719],3976,[3978,10194],[3913,10195],[3914,10196],[3914,10197],[4097,3787,10097],10001,10002,10003,10004,10005,10006,[3978,10102],[3913,10194],[3914,10195],[3913,10196],[3978,10197],[3977,10097],10001,10002,10003,10006,[3913,10098],[3978,10099],[3913,10102],[4097,3851,10194],[4192,10195],[4097,3783,10196],[3976,10197],[3977,10097],10001,[2371,9905],[2370,9809],2434,2435,2434,2371,[2435,9814],[2370,9815],[4097,9620],4097,4097,4097,4097,[4097,3718],[4097,3719],[4097,3720],[4097,3721],[4097,3722],3976,3977,[3911,9526],[3975,9527],[4097,3719],[4097,3785],[4097,3783],3976,3913,3913,3977,3977,3978,3913,3914,3914,3978,3978,3978,3911,[4097,3849],4192,[4097,3846],3977,3913,[4098,3979],4098,4098,4098,[4098,3782,9425],[4098,4039,9521],3912,3978,3978,3911,[4097,4039],[4097,4040],3912,3914,3978,[3977,9619],[2434,9712],[2434,9713],2435,2371,2434,2371,[2370,9814],[2434,9908],[2370,9909],[2435,9910],10006,[3914,10102,6],7,8,[3978,10097,9],[3978,10098],[3911,10099],[4097,10100],[4097,3847,10101],[3912,10102],3977,3911,[4097,3849],4097,4097,4097,[4097,3974],3978,3978,3911,[4097,4040],[4097,4041],[3912,9520],[2370,9521],2370,2371,2434,2370,2371,[2370,3115],3182,3179,[2435,3183],2434,2435,2434,2370,2371,2370,2051,2370,2434,2435,1923,2371,2371,[2435,9814],[2434,9910],9911,[4097,9716],[4097,3974],3914,3911,[4097,4039],[4097,4040],3912,3914,3913,[3913,9425],[2370,3247,9426],[2370,9427],[3245,9428],[3244,9429],[3246,9521],3246,3243,[2370,3247],2371,2435,[2435,3306,9814],[3246,9910],9911,[4097,3785,9716],4097,[4097,3718],[4097,3719,9715],[2371,9808],[2434,9809],2371,2371,2434,2370,2370,2370,2435,[2370,9718],[2435,9719],[3977,9620],3914,[4097,3851],4097,[4097,3847],3912,3914,3975,[4097,3786],4097,[4097,3974,9330],[3911,9333],[4098,3849],[4098,3783],3976,3977,3977,3913,[3913,9425],[2371,9426],[2435,3050,9427],[3243,9428],[3245,9429,6],7,8,[3913,9333,9],[3979,9425],[3246,9426],[3245,9429],[3974,9430],[3913,9330],[3978,9333],[3977,9425],[2435,9521],2435,2371,2370,2434,[2435,9526],[2371,9426],[2435,9427],[2435,9428],[2434,9429],[2371,9521],2370,2370,2435,[2434,9526],[4042,9527],[4097,4041],[4097,3849,9811],9904,[2434,9905],[2434,9906],[2435,9907],[2371,9907],[2371,9910],9911,[4097,9716],4097,[4097,9811],[4097,10000],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3905,9494],3907,3456,3457,3457,3394,3393,3394,3906,3905,3908,3521,3905,3457,[3530,3972],3969,3907,3521,[3971,9499],[3971,9403],3905,3906,3521,3457,3905,3457,[3521,9787],[3458,9883],9979,[3969,10073],[3905,10074],[3520,10075],3456,3456,3969,3906,[3458,9496],[3907,9685],[3394,9686],3394,3457,3456,[3907,9499],[3971,9403],3520,3459,3906,3458,3457,[3908,10070],[9974,9496],[3905,9589],[3529,3843,9590],3592,3592,3269,3529,[3529,3712],3522,3908,3520,3905,[3971,3461],3908,[3592,3909],3530,3592,[3593,3968],3521,3969,3457,3908,3520,3393,3908,3458,3457,3522,3394,3905,[3593,3973],3529,3333,3529,[3268,3904],3522,3908,[3458,9796],[3456,9797],[10082,9506],10083,10084,403,403,[3906,9502],[3969,9503],3456,3457,3521,3971,3969,3456,3456,3458,3907,3521,3522,3907,3522,3905,[3456,3461],3971,3520,3907,[3906,1623],1624,1625,1626,1627,1628,[3906,1629],3908,3458,3458,3457,3520,[3521,9604],[3906,9605],9988,10084,403,403,403,403,403,403,[3971,9502],[3907,9503],3908,3456,3908,3456,3457,3456,[3920,3717],3920,3918,[3920,3778],3521,3521,3906,3906,[3981,3781],3981,3919,3919,[2832,3726],[2768,3727],[2768,3728],[2829,3729],[2829,3980],3920,[2830,3921],2768,[2767,3790],3920,[2765,3985],2766,2831,2830,[2832,3916],3920,3919,3983,3920,3919,3917,[3920,9416],[2829,9512],2830,2831,2830,[2767,3980],3983,3919,3983,3983,3983,3919,3920,[3983,9709],[3983,9710],[2767,3725,9611],[2766,3791],2832,[2831,3980],3920,3983,[2766,3792],2830,2830,2767,2765,[2768,3789],[2766,3792],2768,[2832,3916],3983,3919,3919,3919,3920,3919,[2830,3791],2831,2830,2830,2766,2766,2831,2829,2832,[2766,4044],[2831,3855],[2831,3854],[2832,4045],[2830,4046],[2765,4049],2832,2767,2768,2765,2768,2829,2766,[2767,9814],[2831,9815],[4097,9620],4097,4097,4096,4097,[4097,3974],3913,3977,3913,3913,3978,3978,[4097,3851],[4097,10097],[4097,10098],[4097,3846,10099],[3977,10100],[3978,10101],[3977,10102],3914,3978,3914,3977,3977,3977,[3977,10097],[4097,3787,10098],[4097,10099],[4097,4038,10102],[4097,4040,10194],[3912,10195],3978,[4097,3915],4097,[4097,3974],3913,3914,[3978,10097],10001,[2370,9905],[2370,9906],[2434,9907],[2434,9908],[2370,9909],[2435,9910],9911,[4097,3785,9716],4097,4097,4097,[4097,3784],3976,3913,3978,3978,3914,3913,3911,[4097,3850],[4097,9526],[3977,9527],3975,3976,3914,3977,3977,3914,3913,3978,3977,3978,3913,3913,3913,3977,[4097,3979],4097,4097,[4097,3910],3978,3978,3975,[4098,3785],4098,[4098,9520],[4098,3851,9521],4098,[4098,3848],3912,3913,[4097,3979],4097,4097,[4097,4038],3912,3914,[3978,9619],[2434,9808],[2435,9809],2435,2371,2371,[2371,9814],[2435,9910],10004,10005,10006,[3913,10102],[3978,6],7,8,[3914,9],[3911,10194],[4097,3849,10195],[4097,10196],[4097,10197],[4097,4038],[4097,4039],[4097,4043],4097,[4097,9330],[4097,9332],[4097,3783,9333],3976,3911,[4097,4040],[4097,3849],4097,[4097,3784,9523],[2435,9712],[2435,9713],2370,2435,2371,2370,2370,2371,[2435,3242],3179,3243,[2434,3053],2434,2435,2434,2371,2435,2434,2370,2178,2371,2434,2434,[2370,9814],[2435,9815],10006,[4097,10007],[4097,9812],[4097,4038],[4097,4039],[4097,3849],4097,4097,[4097,3847],3912,[3914,9520],[3179,9521],[2434,3247],2370,[2370,3115],3243,3243,3179,3246,3180,[2370,3053],[2435,9622],[2435,9623],10006,[3977,10007],[4097,3979,9812],4097,[4097,3847],[4097,4039,9811],9904,[2434,9905],[2434,9809],1922,2371,2370,1987,2370,2434,[2435,9622],[2435,9623],[3913,9716],3977,[4097,3915],4097,4096,[4097,3782],3978,3914,3975,[4097,3723,9425],[2435,9426],[2371,9429],[4098,3784,9527],[3976,9330],[3977,9331],[3914,9332],[3914,9333],[3914,9520],[2434,9521],2434,[2370,3114],3182,[3243,6],7,8,[3179,9429,9],[3244,9521],3243,3181,[3181,9526],[3245,9426],[3244,9429],[3244,9521],[2435,3054],2371,2435,2435,2370,2371,2434,2370,2434,2371,2435,2370,2370,2370,[2435,9622],[2370,9623],[4097,9524],4097,[4097,3784,10000],10001,10002,10003,10003,10006,[3975,10007],[4097,3723,9812],4097,4097,4097,[4097,10097],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3522,9494],3456,3522,3392,3394,3520,3969,3456,3905,3457,[3906,4996],[3458,4997],[3908,4998],3521,3521,3908,3908,3907,3908,3905,[3907,9499],[3905,9500],3458,3908,3584,3585,[3392,9595],[3458,9596],9979,[3522,10075],[3905,10169],[3905,10170],3908,3521,3521,3584,3585,[3908,9592],[3458,9781],[3908,9782],3522,3906,3905,3908,[3520,9499],[3906,9403],3906,3969,3520,3456,3520,[3457,10070,9592],[3907,9685],[3528,3779,9686],3333,3594,3530,[3530,3777],3908,3521,3456,3969,3392,3969,3906,3969,[3529,3717],3594,[3592,3841],3521,3971,3521,3456,3907,3520,3971,3905,3969,3521,3457,3906,3520,[3592,3780],3593,[3594,3777],3905,3520,[3907,9796],[3908,9892],9893,[10178,9698],10179,10180,403,[403,9505],[3906,9598],[3456,9599],3971,3457,3905,3456,[3520,17],[3457,18],[3907,19],3905,3969,3971,3458,3394,3458,3907,3459,3905,3971,3905,[3907,1687],1688,1689,1751,1691,1692,[3520,1693],3521,3906,3908,3520,3521,[3458,9700],[3520,9701],[10084,9506],10180,403,403,531,403,403,[403,9505],[3905,9598],[3908,9599],3906,3457,3906,3905,3907,3969,3907,[3919,3779],[3919,3777],3393,3906,3520,[3908,9516],3520,[3983,3909],3919,3918,3920,3919,3920,[2832,3982],[2767,3856],[2767,3854],[2768,4047],[2832,3856],2829,[2829,3980],3919,3920,[2765,3791],2766,[2830,3790],3983,3983,3983,[3919,9322],[3917,9323],[3919,9324],[3983,9416],[2829,9512],2767,2829,2766,[2768,3790],3920,3919,3983,3920,3920,3920,3983,3983,[3983,9805],[3920,9806],[3983,9611],3919,[2765,3725],3919,3919,3919,[2832,3793],2766,2767,2831,2766,[2767,3788],3983,[2829,3725],3983,3983,3983,3918,3983,3983,3919,3983,[2831,3725],[2829,3729],2765,2768,2829,2766,2829,2767,2830,2829,2829,2766,2832,2831,2767,2768,2831,2831,2832,2831,[2766,9814],[2831,9910],9911,[4097,3785,9716],[4097,3783],[4097,3722],[4097,3723],4097,[4097,3847],3912,3914,3977,3914,3911,3912,[4097,3915],4097,[4097,10194],[4097,3910,10195],[3977,10196],[3977,10197],3913,3913,3913,3914,3913,3914,3978,3913,[4097,3915,10194],[4097,10195],4097,4097,[4097,3848],[4097,4041],[4097,3850],4097,[4097,3974],3914,3977,3914,[3914,10097],10001,10002,10003,10004,10005,10006,[3913,10007],[3975,9812],[4097,3720],[4097,3721],[4097,3722],3976,3913,3978,3978,3977,3914,3914,[4097,3979],4097,[4097,9622],[4097,9623],[3977,9524],3977,3978,3911,[4097,4039],3912,3978,3913,3913,3977,3913,3978,3978,3913,3975,[4097,3785],4097,[4097,3974],3978,3913,3978,3975,[4098,3719,9523],[3978,9616],[4098,3915,9617],4098,4098,[4098,3974],3914,3975,[4097,3785],4097,[4097,3784],3976,3978,[3977,9715],9904,[2371,9905],[2370,9906],[2434,9908],[2370,9909],[2434,9910],10006,[4097,10100],[4097,3847,10101],[3912,10102],3977,[3978,6],7,8,[3978,9],[4097,3787],4097,4097,4097,4097,4097,4097,[4097,9425],[3182,9426],[3243,9428],[3243,9429],[3978,9430],[4097,3787],4097,4097,[4097,3718],[3976,9619],[2371,9808],[2370,9809],2434,2371,2370,2434,2371,2370,[2434,3115,9814],[3243,9906],[3182,9907],[2435,3247,9809],2435,2371,2435,2370,2435,2370,[2435,9814],[2370,9906],[2435,9907],[2435,9908],[2371,9909],[2370,9910],9911,[3975,10102],[4097,3722],[4097,3723],4097,4097,4097,4097,4097,4097,[4097,3974,9523],[3244,9616],[3181,9617],3180,[2434,3054],2435,[2371,3050],3181,3244,3246,3181,[2434,3055],[2370,9718],[2434,9719],[3978,10102],3978,3975,[4097,3785],4097,4096,[4097,10000],[10001,9523],[2370,9616],[2434,9617],2370,2371,2434,2370,2371,2371,[2371,9526],[3914,9527],3913,[4097,3979],4097,4097,[4097,3846],3913,3913,[3913,9520],[2434,9521],2370,2371,[2371,9526],[2370,9426],[2434,9427],[2370,9428],[2434,9429],[2370,9521],2435,2371,[2434,3178],3179,3246,[2434,3117],[2435,3115],3180,3244,3244,3244,3245,3243,3245,3181,[2435,3055],2371,2370,2371,2434,2435,2434,2434,2370,2371,2435,2371,2435,2434,[2435,9718],[2370,9719],[4097,3784,9620],[4097,3719],3976,[3977,10097],[3913,10098],[3977,10099],[3977,10099],[3914,10102],3914,3975,[4097,3719],[4097,3720],[4097,3786],[4097,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398,4996],[3458,9494,4997],[3457,4998],3908,3907,3457,3521,3393,3393,3906,3522,3392,[3521,5092],5093,5094,[3393,5095],3392,3905,3908,3969,3906,3394,[3905,9595],[3971,9596],[3907,9497],3971,3648,3649,[3392,9691],[3906,9692],[3907,9593,10075],3969,3458,3457,3521,3907,3906,3648,3649,[3907,9688],9877,[3908,9878],[3520,9882],[3457,9782],3908,3456,3522,[3520,9499],[3458,9500],3456,3907,3969,3905,[3522,9592],[3520,9589],[3971,9590],[3594,3714],[3529,3715],[3529,3716],3522,3971,3969,3456,3908,3522,3521,3905,3456,[3528,3781],3592,[3594,3778],3520,3520,3458,3457,3522,3908,3456,3457,3521,3907,3456,3908,3522,3520,[3530,3713],3522,3905,[3969,9796],[3906,9892],9988,9989,[403,9794],403,403,403,[403,9697],[3906,9694],[3457,9695],3907,3458,3457,3395,[3907,81],82,[3520,83],3392,3520,3521,3522,3394,3969,3458,3969,3520,[3529,3970],3522,3969,[3528,4033],[3333,4037,1753],[3593,1754],[3529,3778,1755],[3529,3713],3457,3458,3907,3907,3907,3906,[3458,9604],[3458,9605],[10180,9602],403,403,403,403,403,403,[403,9697],[3971,9694],[3969,9695],3456,3905,3457,3907,3521,3907,3458,3457,3457,3457,3520,[3908,9709],[3521,9612],[3456,9515],[3983,3844],3917,3983,3920,3983,3983,[2765,3793],2831,2768,2765,2829,[2767,3724],3919,3920,3983,[2766,3856],[2830,9321],[2767,4044,9322],[3918,9323],[3919,9324],[3917,9416],[2766,9418],[2766,9419,566],[2830,9420,567],[2766,9512],2766,2766,[2831,3724],[2831,3725],3920,3919,3919,3983,3920,3981,3917,3918,[3919,9805],[3920,9901],9902,[3981,9707],3919,3983,3983,3920,3920,[2829,3857],2765,2768,2832,2831,[2831,3852],3920,3919,3918,3919,3919,3983,3983,3920,3920,3919,3983,3983,[2767,3792],2829,2830,2829,2831,2832,2768,2831,2829,2765,2766,2768,2831,2831,2765,2766,2767,[2768,9622],[2831,9623],10006,[3977,10007],[3975,9812],3976,3913,[4097,3979],4097,4097,[4097,3974],3914,3978,3914,[4097,3979],[4097,3848],[4097,3850],4097,[4097,3783],3976,3914,3914,3977,3913,3977,3913,3913,3977,3914,3913,3975,[4097,3719],[4097,3786],4097,4097,4097,[4097,3784],[4097,3719],3976,3978,3913,3977,3911,[4097,4039,10097],[4097,10098],[4097,10099],[4097,10100],[4097,3782,10101],[3977,10102],3913,3978,3977,3913,3978,3914,3913,3978,3978,3911,[4097,4041],[4097,4042],[4097,3849],4097,[4097,9718],[4097,9719],[3977,9620],3914,3913,[4097,3979],4097,[4097,3847],[4097,4039],3912,3978,3914,3913,3913,3977,3914,3914,3975,[4097,3719],3976,3978,3913,3914,3914,[3977,9619],[3914,9712],[3975,9713],[4098,3786],4098,[4098,3847],[4098,4039],3912,3975,[4097,3719],3976,3914,3977,[3911,9811],[4097,3850,10000],10001,10002,10004,10005,10006,[4097,10102],[4097,10196],[4097,10197],[4097,4038],3912,[3977,6],7,8,[3913,9],[4097,3915],4097,[4097,3784],[4097,3720],[4097,3721],[4097,3722],[4097,3785,9520],[3245,9521],3182,3180,3179,[3245,9526],[4097,3851,9527],4097,4097,[4097,3974],[3914,9715],9904,[2435,9905],[2371,9809],2370,2435,[2435,9814,6],7,8,[2435,9910,9],10002,10003,[2371,3118,9905],[2434,9809],2434,2434,[2434,9814],[2434,9906],[2371,9907],[2434,9910],10002,10003,10004,10005,10006,[4097,3782,10007],3913,3978,[4097,3979],4097,4097,4097,4097,4096,4097,[4097,4038,9715],[3179,9712],[3182,9713],3246,3246,[2371,3053],[2434,3114],3181,3243,3245,3181,[2370,3183],2370,[2371,9526],[3978,9527],3978,3914,[4097,3787],4097,4097,[4097,3718],[3719,10097,9619],[2435,9712],[2371,3052,9713],[2370,2987],[1987,2990],[2434,3053],2371,2371,2435,[2434,9622],[2371,9623],[4097,4042,9524],[4097,3849],4097,4097,[4097,3910],3914,[3913,9523],[2435,9616],[2371,9617],2370,2434,2370,[2370,3051],[2434,2987],[2435,3053],2434,2370,2370,2434,[2435,3242],3245,[2370,3055],2434,2434,[2434,3242],3243,3244,3179,3182,3246,3245,3244,[2434,3119],2435,2435,2434,2435,2435,2371,2434,2435,2435,2434,2434,2370,2371,[2435,9814],[2434,9815],[3976,9620],3978,3914,3913,[3978,10194],[3978,10195],[3913,10195],3914,3978,3913,3978,3914,[4097,3979,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3457,9494,5092],5093,5094,[3457,5095],3458,3969,3905,3457,3521,3908,3392,3456,[3456,5188],5189,5190,[3392,9304,5191],[3906,9305],[3969,9304],[3530,3972,9305],[3393,9306],3905,3905,[3969,9691],[3905,9692],[3969,9593],3906,3393,3456,[3393,9595],[3456,9596],[3458,9689],3969,3521,3906,3456,3522,3456,3457,3906,[3456,9784],[3969,9973],9974,9978,[3458,9878],[3458,9782],3520,3905,[3520,9595],[3969,9596],[3971,9497],3458,3908,3521,[3458,9592],[3969,9685],[3908,9686],3971,3394,3520,3905,3908,3522,3522,3971,3969,3908,3908,3458,[3594,3909],3269,[3529,3841],3969,3906,3905,[3527,3970],3907,3522,3456,3457,3456,3457,3969,3456,3906,3456,3908,3971,[3907,9604],[3971,9605],9988,10084,10180,403,403,403,9312,[3908,9407],[3458,9503],3906,3521,3906,3521,3521,[3907,3264],3265,[3392,3266],3458,3907,3907,3392,3906,3906,3906,3521,3458,3907,3458,3907,[3528,3780],3528,[3529,3777],3907,3907,3457,3520,3908,3457,3908,3456,[3971,9700],[3907,9701],[403,9698],403,403,403,403,403,403,[3907,9407],[3521,9503],3458,3969,3457,3521,[3456,3461],3906,3522,3905,3905,3457,3906,3522,[3458,9805],[3907,9806],[3920,3844,9611],3920,3983,3919,3918,3920,3983,[2768,3857],2830,2766,2829,[2766,3790],3983,3919,3919,[2830,3855],[2831,9416],[2766,9417],[2830,9418],[2832,9419],[2765,9420],[2767,9512],2831,[2767,630],[2766,631],2830,2765,2767,[2830,3788],3919,3981,3983,3983,[3983,9805],[3920,9897],[3919,9898],[3983,9899],[3920,9900],[3983,9901],9997,[3981,9998],[3919,9803],3919,3981,3920,3920,3983,[2768,3921],2766,2832,2832,2830,[2766,3916],3919,3983,3983,3919,3920,3920,3983,3983,3983,3919,3919,[2766,4046],[2829,3856],2830,2766,2766,2765,2766,2829,2768,2832,2831,2829,2831,2768,2829,2831,2766,2830,[2767,9718],[2831,9719],[3914,10102],3914,3977,3978,3913,3975,[4097,3723],4097,[4097,4038],[4097,4039],[4097,4040],[4097,4041],[4097,3850],4097,4097,[4097,3718],3976,3977,3978,3977,3978,3914,3977,3913,3913,3914,3914,3911,[4097,4041],[4097,4042],[4097,3849],4097,4097,[4097,3783],3976,3978,3914,3913,3914,3911,[4097,3849],4097,[4097,10194],[4097,10195],[4097,10196],[4097,3846,10197],3978,3977,3913,3977,3914,3913,3913,3913,3911,[4097,4039],[4097,4043],4097,4097,[4097,3783],[4097,3719],[4097,3723,9622],[4097,9623],[3978,9620],3978,3914,3975,[4097,3785],4097,4097,[4097,3782],[3914,9814],[3978,9906],[3978,9809],3977,3978,3977,3978,3978,3913,3978,3911,3912,3913,3913,[3913,9619],[3978,9616],[3978,9617],3975,[4098,3719],[4098,3785],4098,[4098,3974],3914,3978,3913,3913,3978,[4097,3979],4097,[4097,10097],[4097,10098],[3912,3974,10100],[3975,10101],[4097,3719,10102],[4097,3785],4097,4097,4097,[4097,3848],[3912,9520,6],7,8,[3913,9330,9],[4097,3979,9333],[4097,9334],[4097,3782],3977,3913,[3977,9523],[2434,3306,9616],[3246,9617],3243,3243,3179,[3246,9622],[3246,9623],[4097,9524],[4097,3783],3976,[3977,9811],[3913,10000],10001,[2435,9905],[2434,9906],[2435,9907],[2371,9910,6],7,8,[10006,9],[3977,10098],[3911,10099],10001,[2370,9905],[2370,9906],[2435,9907],[2370,9910],10002,10003,10006,[4097,10098],[4097,10099],[4097,10100],[4097,10101],[4097,10102],[4097,3846],3914,3978,3975,[4097,3786],4097,4097,4097,4097,4097,[4097,9520],[3181,9521],3245,3182,3245,[2434,3247],[2434,3178],3182,3182,3182,[2370,3310],[2434,3311],2434,2370,[2370,3052,9526],[3978,9527],3978,[4097,3851],4097,[4097,3783],3976,[3914,9619],[2435,3052,9808],[3243,9809],3245,3182,3246,[2370,2991],2371,2371,[2435,9718],[2370,9719],[4097,9620],4097,4097,[4097,3783],3976,3914,[3914,9619],[2435,9712],[2370,9713],2434,2434,[2370,3052],3179,3179,3179,[2435,2987],[2434,2988],[2434,2989],[2371,2990],3179,3182,[2434,3119],2434,2178,[2371,3115],3244,3245,3246,3182,3182,3179,3243,[2435,3183],2371,2434,2434,2371,2370,2370,2435,2370,2370,2435,[2371,9814],[2370,9906],[2371,9907],[2371,9910],9911,[4097,4039,9716],[4097,4040],[4097,4041],[4097,4042],3912,3978,3978,3978,3911,[4097,4039],[4097,4040],[4097,4041],[4097,4043,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3392,9589],[3458,9590,5188],5189,5190,[3457,5191],3908,3394,3392,3905,3908,3905,3456,3905,[3392,9398,5284],[3907,9399,5285],[3522,9399,5286],[3394,9400,5287],[3906,9401],[3971,9400],[3905,9401],[3906,9402],[3969,9403],3971,[3907,9595],[3906,9596],[3905,9689],3971,3906,3394,3458,[3971,9499],[3458,9403],3906,3906,3456,[3457,9303],[3905,9304],[3394,9306],3457,3906,3971,3905,[3905,10070],[3969,10074],9974,[3905,9685],[3522,9686],3521,[3971,9691],[3457,9692],[3520,9593],3969,3522,3456,[3907,9592],[3971,9781],[3906,9782],3458,3907,3906,3521,3522,3457,3521,3520,3908,3392,3393,3907,3969,[3594,3780],3594,[3529,3842],3908,3456,3907,3907,3907,3905,3907,3458,3971,3971,[3908,3461],3906,3458,3522,3969,[3521,9700],[3907,9701],[10084,9506],10180,403,146,9312,[3969,9407],[3457,9408],[3907,9503],3393,3971,3906,3905,3905,3521,[3457,3328],[3906,3329],[3969,3330],3458,3456,3521,3520,3905,3588,3589,3520,3908,3522,3458,3907,3457,[3530,3717],[3269,3841],3907,3906,3458,[3457,3461],3908,3969,3456,3907,3906,[3457,9508],[3458,9412],403,403,403,403,403,[3907,9502],[3906,9503],3905,3908,3907,3969,3971,3458,3458,3522,3521,3457,[3458,9805],[3522,9897],[3908,9898],[3457,9901],9902,[3920,9707],3983,3983,3919,3920,3983,3920,[2829,3921],2829,2831,2829,[2765,3788],3919,3983,3919,[2767,3791,9416],[2831,9512],2831,2766,2829,2829,2832,2830,[2829,694],[2831,695],2832,2767,2832,[2829,3852],3983,3983,3919,[3920,9805],[3920,9901],9993,9994,9995,9996,9997,[3983,10093],3919,3919,3920,3983,3918,3981,3920,3983,[2766,3791],2832,2829,2768,[2768,3853],[2832,4047],[2830,4048],3920,3983,3919,3920,3983,3919,3920,3983,[2829,4049],2767,2767,2768,2766,2768,2832,2765,2765,2765,2768,2765,2768,2831,2830,2830,2829,2829,2768,2766,[2830,9526],[3978,9527],3914,3978,3914,3913,3911,[4097,4043],4097,4097,4097,4097,[4097,3783],[4097,3719],[4097,3785],4097,[4097,3847],3912,3978,3978,3977,3978,3977,3913,3978,3914,3977,3978,[4097,3979],4097,4097,4097,[4097,3783],[4097,3719],3976,3913,3977,3977,3914,3977,[4097,3787],4097,4097,4097,4097,4097,[4097,3910],3978,3977,3911,[4097,4039],[4097,4040],3912,3978,3911,[4097,3849],4097,4097,[4097,3783],[4097,3719],3976,3914,[3975,9622],[3976,9623],[3977,9620],3914,3978,3978,3975,[4097,3785,9814],[4097,9908],[4097,3910,9909],[3977,9910],10002,[3978,9905],[3914,8945],[3914,8946],[3913,8947],[3978,9809],3911,[4097,4039],[4097,4042],[4097,3849],[4097,4038],3912,3977,[3913,9619],[3978,9712],[3977,9713],3978,3913,3975,[4098,3719],3976,3913,3914,3914,3978,3911,[4097,3850],4097,4097,[4097,3783,10194],[3976,10196],[3914,10197],3914,3975,[4097,3719],[4097,3785],[4097,3784],[4097,3719],[2435,9616,6],7,8,[2371,9426,9],[2370,9429],[4097,9430],[4097,3846],3913,3978,[3978,9715],[2370,9712],[2434,3116,9713],[2435,3307],[2370,3308],[2370,3309],[2434,3310,9718],[2434,3310,9719],[4097,9620],[4097,4038],[4097,4039],[4097,4040],[4097,4041],[4097,4042,10097],10001,10002,10003,[10006,6],7,8,[3978,10102,9],[3978,10194],[4097,3979,10195],[4097,10097],10001,10002,10003,10006,[3911,10098],[4097,10099],[4097,10102],[4097,10194],[4096,10195],[4097,10196],[4097,10197],4097,[4097,3910],3978,3978,3913,[4097,3787],4097,4097,4097,4097,[4097,9523],[3181,9616],[3181,9617],3182,3243,3246,[2434,3118],[2370,3242],3243,[2370,3310],[2434,3118],2434,2371,1923,[2435,2986],[3180,9622],[3179,9623],[3978,9524],[4097,3915],4097,[4097,3782],3913,[3913,9715],9904,[3245,9905],[3244,9809],3181,3181,3181,[2370,3054],2370,[2435,9622],[2371,9623],[4097,3719,9620],[4097,3720],[4097,3722],3976,3914,3914,[3913,9619],[2371,9616],[2434,9617],2434,2434,[2371,3050],3182,3181,3245,3243,3246,3246,3243,3246,3181,[2371,3183],2435,2370,2370,[2434,3306],[2371,3307],[2434,3308],[2371,3309],[2370,3310],3179,3181,3245,[2434,3054],2371,2371,2435,2370,2370,2371,2434,2371,[2435,9814],[2434,9910],10002,10003,10006,[4097,10007],[4097,9812],4097,4097,4097,[4097,3848],3912,3978,3911,[4097,4043],4097,4097,4097,[4097,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3969,9685],[3522,9686,5284],[3907,5285],[3908,5286],[3521,5287],3905,3456,3521,3522,3521,3456,[3458,9397],[3908,9398],[3456,9494,5380],[3457,5381],[3908,5382],[3521,5383],3906,[3530,4034],[3528,4035],[3530,3844],[3530,9499],[3908,9500,4996],[3905,4997],[3458,9499,4998],[3971,9500],[3908,9303],3969,3971,3392,3521,[3907,9499],[3908,9403],[3969,9303],[3522,9398],[3457,9399],[3906,9400],[3592,4034,9402],[3969,9403],3521,3969,3905,3969,[3522,10170],[3908,10070],[3908,9685],[3908,9686],3456,[3521,9787],[3907,9788],[3908,9593],3584,3585,3458,[3522,9688],9877,[3969,9878],[3907,9879],[3522,9880],[3456,9881],[3520,9882],[3521,9782],3905,3520,3969,3969,3458,3456,3457,3457,3906,[3592,3717],3528,[3594,3776],3907,3969,3458,3969,3457,3588,3589,3458,3969,3908,3969,3521,3456,3520,[3456,9604],[3971,9605],[10180,9602],403,403,[3908,9407],[3908,9408],[3907,9503],3521,3456,3458,3906,3456,3907,3457,3908,3521,3456,3969,3907,3971,3906,3969,3458,3652,3653,3520,3905,3458,3521,3905,3908,[3594,3781],3332,[3592,3776],3907,3905,3969,3908,3456,3521,3520,3905,3907,[3456,9508],[3393,9509],403,403,403,[403,9505],[3971,9598],[3905,9599],3586,3587,3456,3905,3457,3971,3908,3907,3522,[3522,9805],[3969,9901],9993,9994,9997,[3919,9998],[3920,9803],3919,3920,3920,3983,3983,3920,3983,[2829,3791],2767,2832,[2767,3852],3983,3983,[3920,9514],[2766,4049,9607],[2765,9608],2832,2829,2767,2767,2765,2765,2767,2831,[2829,3789],[2768,3725],[2767,3791],[2766,3916],3983,3983,[3983,9613],[3920,9614],9997,[3919,10089],[3919,10090],[3983,10091],[3983,10092],[3919,10093],3920,3983,3983,3983,3983,3920,3920,3919,3919,3920,[2829,3725],[2832,3725],[2832,3729],2768,2829,2831,[2766,3980],3920,3920,3920,3919,[2829,4047],[2829,4048],[2830,3856],2830,2831,2831,2767,2765,2832,2767,2829,2829,2768,2766,2767,2829,2831,2767,2830,2768,2832,2829,2831,[2830,9622],[2830,9623],[3977,9524],3977,3914,3978,[4097,3979],4097,[4097,3783],[4097,3722],[4097,3719],[4097,3720],3976,[3914,9330],[4097,3979,9331],[4097,9332],[4097,9333],[4097,3974],3978,3913,3913,3978,3977,3913,3978,[3913,9330],[3913,9331],[3977,9332],[4097,4043,9333],4097,4096,4097,[4097,3974],3978,3914,[3978,9330],[3977,9333],3977,3913,3913,[4097,3851],4097,4097,4097,4097,4097,[4097,3974],3913,3978,[4097,3787],4097,4097,[4097,3782],3978,[4097,3979],4097,[4097,3718],[4097,3719],3976,3978,3914,3914,[3913,9814],[3913,9815],[3978,9620],3914,3977,3914,[3914,9814],[3913,9910],10004,10005,10006,[4097,10098],10001,9041,9042,9043,[3911,9905],[4097,3849,9809],4097,4097,4097,4097,[4097,3974],3977,[3977,9619],[3978,9808],[3978,9809],3913,3978,3978,3911,[4097,4039],[4097,4040],3912,3978,3977,[4097,3979],4097,4097,[4097,3783],3976,3913,3978,3978,3978,3977,3975,3976,3978,[2434,9712],[2434,9713],2370,2435,2371,[2370,9526],[3910,9527],[3914,9330],[3977,9333],[3977,9520],[2435,9521],2050,2434,2370,2435,[2434,9622],[2371,9623],[4097,9716],4097,4097,4097,4097,4097,[4097,3783,10097],[3913,10098],[3977,10099],[4097,3979,10102,6],7,8,[3911,9],[4097,4039],[4097,4043],4097,[4097,10097],[3974,10098],[3977,10099],[3913,10102],[3975,10194],[4097,3719,10195],[4097,3786],4097,4097,4097,4097,4097,[4097,3974],3977,3913,3914,[4097,3851],4097,[4097,9330],[4097,9331],[4097,9332],[4097,9715,9333],[3182,9712],[3182,9713],3243,3246,[2371,3055],2435,[2370,3306],[2370,3311],2371,2371,2371,[2371,2986],[2370,2987],3245,[3179,9718],[3246,9719],[4097,4042,9620],[4097,4043],4097,[4097,3910],3977,[3977,9811],[3914,10000],10001,[3182,9905],[3244,9809],3181,3246,3244,[2371,2987],[1987,3054,9814],[2371,9815],[3914,9620],3914,3914,3977,3913,3977,[4097,3787,9715],[2435,9808],[2434,9809],2371,2435,[2434,3114],3243,3181,3181,3246,3244,3181,3180,[2370,3309],[2434,3310],[2435,3311],2370,1986,2370,2435,2435,2435,2434,2371,[2371,3115],3243,3245,3244,[2370,2987],[2370,2988],[2370,2989],[2435,2990],[2435,3054],2435,2434,[2435,9814],[2435,9910],10006,[4097,10098],[4097,10099],[4097,10102],[4097,3784],[4097,3720],[4097,3721],[4097,3722],[4097,3785],4097,[4097,4038],[4097,4039],[4097,3849],4097,[4097,3784],[4097,3719],[4097,3720,9523],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3392,9781],[3969,9782,5380],[3392,5381],[3907,5382],[3392,5383],3907,3393,3458,3394,3521,3522,[3394,9493],[3458,9494],[3592,4033,5476],[3592,4034,5477],[3594,4035,5478],[3527,4036,5479],[3333,3843],3529,3529,3593,[3592,3778,9595],[3972,9596,5092],5093,5094,[3907,9499,5095],[3971,9399],[3971,9403],3907,3906,3908,3520,[3971,9499],[3969,9399],[3457,9494],3971,[3528,3781],3593,[3269,3841,9499],[3908,9500],[3969,9303],[3907,9304],[3457,9305],[3969,9306],[3520,9398],[3394,9494],3521,[3458,9787],[3521,9883],9884,[3456,9689],3648,3649,3521,[3906,9784],[3520,9973],9974,9975,9976,9977,9978,[3457,9878],[3522,9879],[3907,9880],[3458,9881],[3971,9882],[3458,9782],3908,3969,3457,3969,[3592,3973],3529,[3530,3840],3522,3522,3971,3457,3907,3652,3653,3907,3393,3392,3522,3456,3392,3969,[3522,9700],[3969,9701],[403,9602],403,[3905,9502],[3971,9503],3520,3520,3907,3521,3522,3520,3456,[3458,1442],1443,1444,1445,[3907,1446],3522,3969,3458,3457,3907,3906,3520,3908,3458,3906,3969,3969,3456,3971,[3530,3909],3528,[3592,3840],3521,3908,3908,3458,3971,3457,3907,3392,3971,[3521,9604],[3521,9605],[403,9506],403,403,[403,9601],[3905,9598],[3521,9599],3650,3651,3906,3907,3908,3905,3908,3458,[3906,9613],[3520,9614],9997,[3920,10089],[3983,10090],[3919,10093],3919,3983,3983,3919,3918,3920,3981,3920,[2830,3984],[2766,3985],2832,2832,[2831,3916],3920,[2831,3982],[2829,3855,9610],[2831,9703],[2831,9704],2829,2768,2768,2766,2829,2832,2830,[2831,3790],3983,3920,3918,3920,3919,3919,[3920,9709],[3920,9710],[3920,10093,9515],[3917,10185],[3918,10186],[3920,10187],[3983,10188],3983,3920,3918,3919,[2765,4047],3983,3919,3983,3917,3920,3920,3919,3983,3917,[2832,3791],2831,2766,[2766,3853],[2830,4047],3919,3919,[2831,3856],2768,2767,2831,2831,2766,2767,2766,2766,[2766,3790],[2768,3729],2832,2765,2830,2832,2832,2767,2830,2767,2767,2766,2766,2766,2830,[2830,9622],[2768,9623],[4097,4039,9620],[4097,4040],[4097,4041],[4097,4042],[4097,3849],4097,[4097,3782],3913,3978,3978,[3978,9520],[2434,9426],[2370,9427],[2370,9428],[2371,9429],[3976,9430],3913,3977,3914,3914,3978,3977,[3914,9425],[2435,9426],[2435,9427],[2434,9428],[2435,9429],[4097,3722,9430],[4097,3723],4097,[4097,4038],3912,[3914,9425],[2371,9426],[2370,9429],[3913,9527],[3913,9330],[3977,9333],[4097,3915],4097,4097,4097,4097,[4097,3783],3976,3977,3977,[4097,3851],4096,4097,[4097,3846],3978,[4097,3787],4097,[4097,3974],3978,3914,3913,3914,[3913,9814],[3914,9910],9911,[3912,9716],3913,3914,[3978,9814],[3913,9910],10006,[3913,10100],[3977,10101],[4097,3787,10102],[4192,10194],[4097,10097],[4097,3846,9137],[3914,9138],[3914,9139],10001,[4097,9616],[4097,9617],4097,4097,[4097,3783],3976,3978,[3977,9715],9904,[3913,9905],[3914,9809],3911,[4097,4041],[4097,3849],4097,4097,[4097,3974],3914,3911,[4097,4043],4097,4097,[4097,3974],3977,3914,3914,3914,3913,3978,3914,3977,[3913,9520],[2371,9521],2371,2434,2435,2370,2434,[2435,9526],[2371,9426],[2370,9429],[2434,9521],2371,2371,2371,2435,1986,[2434,9718],[2371,9719],[4097,9716,9330],[4097,3718,9333],[4097,3719],[4097,3720],[4097,3721],[4097,3722],3976,[3977,10194],[3911,10195],[4097,3850,6],7,8,[4097,3849,9],4097,4097,4097,4097,[4097,3847,10194],[3912,10195],3977,3913,3914,[4097,3979],4097,4097,4097,[4097,3783],[4097,3719],3976,3977,3913,3913,[4097,3915,9424],[4097,9425],[3243,9426],[3181,9427],[3179,9428],[3245,9429],[3181,9521],3243,3181,3246,[2370,3119],2434,2435,2434,[2435,3052],[2371,2988],[2434,2990],3245,3180,3244,3245,[3181,9526],[4097,9430],4097,[4097,3783],3976,3977,3913,3914,[3911,10097],10001,[3179,9905],[3181,9906],[3179,9907],[3182,9908],[3182,9909],[3179,9910],9911,[4097,4042,9716],3912,3913,3977,3978,3914,[4097,3851,9811],9904,[2371,9905],[2371,9809],2434,[2435,3178],3180,3243,3181,3246,[2435,3309],[2435,3310],[2371,3311],2370,2370,2435,2371,2434,2434,2434,2434,2370,2371,2434,2435,[2434,3050],3181,3179,3246,3245,3245,3243,[2434,3055],2435,[2434,9622],[2371,9623],10006,[4097,3785,10102],[4097,10194],[4097,10195],4097,[4097,3974],3914,3978,3914,[4097,3979],4097,4097,4097,[4097,3783],[4097,3719],3976,3977,[3914,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3458,9878,5476],[3905,9782,5477],[3457,5478],[3392,5479],3906,3521,3521,3392,3394,3908,[3529,4036,9685],[3529,3844,9686],3530,3528,3592,3528,3530,[3528,3714],[3594,3715],[3594,3716],[3971,9691],[3969,9692,5188],5189,5190,[3907,5191],3905,[3521,9499],[3969,9500],3906,3969,3522,3969,3969,3458,3969,[3530,3845],3593,[3529,3777],[3457,9499],[3906,9399],[3520,9400],[3456,9401],[3906,9402],[3906,9494],3457,[3521,9595],[3969,9596],9979,[3908,9980],[3521,9785],3969,3392,3906,3907,3522,[3520,10070],[3971,10071],[3971,10072],[3971,10073],[3971,10074],9974,9975,9976,9977,9978,[3971,9878],[3907,9782],3456,3907,3521,[3592,3844],3593,[3528,3904],3907,3521,3520,3906,3457,3907,3522,3393,3456,3457,3521,3520,3520,3971,[3521,9604],[3905,9605],[403,9602],[403,9505],[3906,9598],[3971,9599],3908,3906,3456,3521,3908,3458,3457,[3521,1506],1507,1508,1509,[3971,1510],3908,3521,3394,3906,3969,[3529,4033],[3592,4034],3907,3521,[3530,4033],[3529,4034],[3594,4035],[3528,4036],[3529,4035],[3333,3844],3593,[3592,3904],3522,3969,3457,[3592,3970],3905,3522,3521,3905,3456,[3905,9700],[3520,9701],[403,9602],403,403,[403,9601],[3907,9694],[3520,9695],3394,3522,3969,3522,3457,3907,3520,3906,[3969,9613],[3456,9614],[3919,10093,9515],[3919,10185],[3981,10186],3919,3983,3919,3983,3983,3983,3983,3918,3920,[2831,4047],[2766,3856],2832,2830,[2768,3980],3983,3920,[2831,3791,9610],[2831,9799],[2831,9800],2767,[2767,3790],[2832,3725],[2829,3725],[2829,3726],[2831,3727],[2765,3728],3920,3920,3920,3983,3920,3920,3920,[3920,9805],[3983,9806],[3920,9611],3919,3983,3983,3917,3983,3919,3920,[2831,3855],2832,[2831,3980],3920,3920,3983,3920,3983,3919,3920,3920,[2767,3793],2768,2767,2767,2768,[2831,3980],[2832,3985],2765,2831,2831,2765,[2765,3724],[2766,3725],[2767,3791],2831,[2768,3789],3983,3920,[2830,3791],2830,2829,2830,2765,[2765,3790],[2829,3791],2832,2832,2832,2767,2766,2829,[2829,9718],[2765,9719],[4097,9620],4097,4097,4097,4097,4097,[4097,3910],3978,3914,[3914,9523],[2434,9616],[2435,9617],2370,2434,2371,[2371,3242,9526],[3913,9430],[3913,9330],[3913,9331],[3977,9332],[3977,9333],[3914,9520],[2370,9521],2435,2435,2435,2434,[2370,9526],[4097,3787,9430],[4097,9330],[4097,9333],[4097,3974,9520],[2370,9521],2371,2434,[2435,9526],[2371,9426],[2370,9429],[4097,3787,9430],4097,[4097,3784],[4097,3720],[4097,3721],3976,3978,3977,3978,[4097,3915],4097,4097,[4097,3910],3913,[4097,3851],4097,[4097,3847],3912,3914,3978,[3914,9814],[3914,9910],10006,[4097,10007],[4097,3974,9812],3914,[3977,9622],[3978,9623],10006,[3914,10102],[3977,10196],[3913,10197],[4097,3915],4097,4097,[4097,3910,9233],[3914,9234],[3978,9235],[3913,10097,8951],8952,[4097,3720,8953],[4097,3721],[4097,3722],3976,3977,3914,[3978,9811],[3978,10000],[10001,9523],[3911,9616],[4097,3850,9617],4097,4097,[4097,3718],[4097,3722],3976,3914,[4097,3979],4097,4097,4097,[4097,3847],3912,3913,3978,3977,3977,3913,3913,3913,[2434,9616],[2435,9617],2371,2371,2435,2370,2435,2371,2370,2371,2371,2371,2434,2370,2435,2371,2435,[2434,9526],[2371,9426],[2371,9429],[3913,9430],3978,3977,3913,3978,3913,[4097,3787],[4097,6],7,8,[4097,9],4097,[4097,3718],[4097,3785],4097,4097,[4097,3782],3914,3978,3913,3975,[4097,3720],[4097,3721],[4097,3722],3976,3977,3913,3914,3914,3914,[3975,9520],[3245,9521],3179,3246,3179,3246,3245,3181,3182,3245,[2434,3183],2371,2435,[2435,2986],3179,3245,3180,3180,3245,[2370,3309],3246,[2370,3247],[2371,9526],[4097,3783,9527],3976,3914,3913,3977,3977,[4097,3979],[4097,10097],10001,10002,10003,10004,10005,10006,[4097,10007],[4097,9812],[4097,3782],3977,3914,3978,3977,[4097,3915],[4097,10000],10001,[2370,9616],[2434,9617],[2435,3115],[2434,3308],[2370,3309],[2370,3310],[2371,3118],2370,2434,2371,2371,2435,2370,2370,2370,2435,[2371,9525],2435,2434,2434,2434,2434,[2435,3114],3244,3181,3179,3182,3181,3179,[2370,3119],2371,[2434,9718],[2435,9719],[3977,10102,9524],3975,[4097,3720],[4097,3721],[4097,3722],3976,3978,3978,3978,3975,[4097,3785],4097,4096,[4097,3848],[4097,4039],[4097,4040],3912,[3978,9811],[3914,10000],10001,9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3392,9589],[3969,9590],3393,3394,3520,3394,3521,3394,3521,[3593,9781],[3591,9782],3591,3528,3529,3530,3594,[3594,3841],[3530,3972],[3530,3970],[3530,3970,9595],[3971,9596,5284],[3908,9593,5285],[3908,5286],[3458,5287],3907,[3907,9595],[3906,9596],[3906,9497],3907,3969,3522,3969,[3593,4033],3907,[3530,3909],3592,[3528,3968],3521,3969,3522,3458,3906,3521,3907,[3906,9691],[3520,9692],[3521,10075,9497],3456,3522,3456,3456,3522,3521,3522,3907,3906,3906,3521,3456,[3971,10070],[3971,10071],[3971,10072],[3971,10073],[3971,10074],9974,[3971,9878],[3520,9782],3522,[3528,3973],3530,[3529,3777],3522,3457,3521,3456,3456,3908,3520,3522,3456,3969,3458,3971,3457,3520,[3394,565],[3393,9700,565],[3969,9701,565],[403,9698,565],[403,9601,565],[3969,9694,565],[3522,9695,565],3908,3971,3458,3906,3457,3971,[3456,3461],[3522,1570],1571,1572,1573,[3522,1574],3907,3905,3908,3906,[3592,3843],3332,3528,[3528,4032],[3593,3843],3528,3593,3529,3528,3529,3528,3530,[3530,3968],3521,3521,3908,3905,3456,3458,3522,3520,3520,[3908,9796],[3971,9797],[403,9602],403,403,[403,9601],[3905,9790],[3393,9791],3907,3905,3457,3969,3520,3906,3969,3521,[3522,9709],[3456,9710],[3920,9611],3920,3983,[3905,3982],3920,3919,3983,3983,3919,3920,3920,[2830,3985],[2765,566],[2765,567],2767,2768,[2831,3788],3918,3919,[2767,3856,9706],9895,[2768,9896],[2767,9800],[2768,3853],3920,3919,3983,3919,3920,3983,3917,3918,3920,[3919,9805],[3919,9897],[3920,9898],[3920,9901],9902,[3919,9707],3983,3919,3981,3983,3983,3918,[2765,3855],2767,[2829,3789],3920,3920,3983,3981,3918,3919,3920,3920,3919,[2829,3857],2831,2831,2766,2829,[2832,3854],[2765,4049],2767,2766,2829,[2829,3790],3919,3983,3981,[2768,3725],3920,3917,3918,[2765,3793],2829,2829,2768,[2768,3790],3983,3918,[2831,3729],2831,2766,2829,2832,2830,[2765,9814],[2768,9815],[4097,3719,9620],[4097,3720],[4097,3721],[4097,3722],[4097,3785],[4097,3783],3976,3978,3914,[3914,9619],[2434,9712],[2434,9713],2370,2435,2434,[2434,3115],[3179,9526],[3182,9426],[3243,9427],[3246,9428],[3179,9429],[3179,9521],[2371,3054],2370,1986,2370,2371,[2371,3052],[3180,9526],[2371,3183,9426],[2434,9429],[2434,9521],2370,2371,2435,2371,2370,[2370,4249],[2435,9526],[4097,3784,9527],3976,3913,3913,3913,3913,3914,3913,3975,[4097,3785],[4097,3784],3976,3914,[4097,3915],4097,4097,[4097,3974],3913,[3914,9814],[3914,9910],10006,[4097,3785,10102],4097,[4097,3847],[4097,4039],[3912,9718],[3977,9719],[3978,10102],3977,3913,3978,3975,[4097,3720],[4097,3722],3976,3914,3978,[3913,9047],9048,[3913,9049],3977,3913,3913,3978,3913,3914,3977,[3978,10097,9619],[4097,3979,9712],[4097,9713],4097,[4097,3784],3976,3911,[4097,4039],[4097,4039],[4097,3849],4097,4097,4097,4097,[4097,3974],3978,3914,3977,3913,3978,3911,3912,[2434,9712],[2370,9713],2434,2370,2434,2370,2435,2434,2435,2435,2435,2435,2435,2435,2370,2371,2370,2434,2434,1987,[2370,9526],[3913,9527],3977,3977,3913,3978,[4097,3851],[4097,6],7,8,[4097,3723,9],4097,[4097,3782],[4097,3787],4097,4097,[4097,3910],3977,3914,3978,3913,3914,3978,3977,3978,3913,3977,3978,3978,[3914,9523],[3913,9712],[3181,9713],3180,3243,3244,3246,3180,3179,3180,3179,[2435,3247],2051,[2435,3051],3182,3181,3244,3182,3180,[2434,3311],2434,[2371,3116],[2435,3311],[2435,9622],[2370,3242,9623],[3977,9524],3978,3978,3914,3911,[4097,3850],[4097,3783],[3976,10097],[3978,10098],[3913,10099],[3913,10100],[3914,10101],[4097,3787,10102],4097,4097,[4097,3846],3913,3913,3913,3977,[4097,3979],4097,[4097,10097,9523],[2371,9616],[2370,9617],1986,2371,2435,2370,2434,2434,2435,2242,2243,2435,2434,1923,2371,2434,[2178,9621],[2434,9524],2435,2434,2434,2435,[2370,3178],3182,3179,3243,3244,3181,3182,[2371,3183],2370,[2434,9718],[2435,9719],[3914,9716],3913,3978,3978,3911,[4097,4039],3912,3978,3978,3914,[4097,3979],4097,4097,4097,4097,4097,[4097,3848],[4097,4039],[4097,4040],[4097,4041,10097,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3907,9685],[3393,9686],3393,3521,3457,3520,3521,3521,3521,9877,[3591,3713,9878],[3527,3714,9782],[3593,3715],[3592,3716],[3592,3717],3527,3528,[3592,3968],3906,[3906,9691],[3971,9692,5380],[3971,9689,5381],[3906,5382],[3522,5383],3521,[3908,9691],[3969,9692],[3393,9689],3969,3906,3971,[3594,3844],3592,[3529,3841],[3528,4037],[3528,3778],3457,3520,3522,3906,3969,3907,3457,3971,[3456,9595],[3395,9596],[3908,9497,9593],3908,3969,3969,3907,3908,3457,3969,3905,3393,3906,3906,3586,3587,[3458,10167],[3908,10168],[3907,10169],[3905,10170],[3969,10070],9974,[3971,9878],[3529,4036,9879],[3528,3844,9880],[3528,3777,9782],3971,3906,3395,3907,3457,3907,3907,3520,3456,3969,3458,3907,3971,3458,3522,629,629,629,629,629,629,629,3520,3458,3907,3457,3522,3521,3522,[3457,1634],1635,1751,1637,[3969,1638],3905,3521,3457,3907,[3594,3717],3528,3268,[3594,3777],[3592,3714],[3592,3716],[3528,3717],3269,3530,3269,[3593,3777],[3594,3713],3905,3392,3906,3907,3969,3522,3908,3456,[3521,3461],[3906,9700],[3456,9701],9893,[403,9698],403,403,[403,9697],9886,[3971,9598],[3522,9599],3905,3906,3971,3969,3458,3906,3456,3456,[3520,9517],[3983,9421],3981,3920,3983,3983,3919,3920,3919,3983,3983,3919,[2830,4049],[2765,630],[2768,631],2832,2767,[2831,3852],3983,[2832,3985],[2768,9802],[2831,9991],9992,[2832,9607],[2768,9608],[2765,3980],3983,3920,3919,3919,3983,3981,3981,[3919,9805],[3919,9901],9993,9994,9997,[3919,9998],[3920,9803],3918,3920,3918,3919,3919,[2829,3793],2767,2832,[2765,3788],3983,3983,3983,3983,3919,3917,3983,3920,3983,[2766,3921],2768,2829,2767,2830,2829,2832,2829,2767,[2830,3789],3920,3919,3919,3918,3920,3919,3981,3917,[2830,3857],2768,2831,2767,[2766,4044],3919,3919,[2830,3793],2765,2830,[2768,9814],[2765,9908],[2830,9903],[2765,9910],9911,[3913,9716],3978,3913,3913,3975,3976,3977,3911,[4098,4039],[3912,9619],[2434,9616],[2435,9617],2435,2371,2435,2371,[2435,3306],[2434,3309],[2371,3310],3245,3244,3182,[2370,3055],2371,2370,2435,2434,[2434,3050],3243,3179,[2435,3053],2435,2371,2434,2434,2371,[2371,4344],[2371,4345],[2370,9718,4346],[2370,9719],[3914,9524],3977,3913,3977,3978,3977,3978,3977,3975,3976,3978,3914,3975,[4097,3785],4097,[4097,3848],[3912,9814],[3914,9910],10006,[3913,10102],3975,[4097,3786],4097,4097,[4097,3782,8948],8949,[3978,8950],3977,3913,3978,3913,3977,3913,3914,3978,3913,[3913,9143],[3978,9144],[3978,9145],3911,[4097,4039],[4097,4040],3912,3978,3977,3913,[3914,9425],[4097,3849,9521],4097,[4097,3718],3976,3978,[4097,3979],4097,4097,4097,4097,4097,4097,[4097,3784],3976,3913,3977,3914,3911,[4097,4039],[4097,4043],[4097,3848,9520],[2370,9521],2371,2435,2434,2435,1986,2435,2434,2370,2434,2434,2434,2371,2371,2435,2434,2371,2370,2435,2434,[2371,9622],[2370,9623],[4097,4042,9524],[4097,4039],[4097,4040],3912,[4097,3915],[4097,6],7,8,[4097,3979,9],4097,[4097,3846],[4097,3851,9330],[4097,9333],[4097,3718],3976,3911,[4097,4039],3912,3913,3977,3913,3914,3914,3978,3913,3977,3978,[3977,9619],[3977,9808],[3182,9809],3243,3181,3180,3245,3244,3243,3179,[2434,3309],[2371,3117],2434,[2435,3306],[2371,3307],[2434,3308],[2434,3309],[2371,3310],[2435,3117],2435,2370,2434,2370,[2371,3051,9718],[3180,9719],[3978,9620,9330],[3914,9333],3978,3914,[4097,3787],4097,[4097,3974],3913,[3977,10194],[3913,10195],[3977,10196],[3977,10197],[4097,3915],4096,4097,[4097,3910],3913,3913,3977,[3911,9330],[4097,3849,9331],[4097,9332],[4097,9619,9333],[2370,3053,9712],[2370,9713],2435,2434,2370,2370,2434,2371,2370,2306,2307,2370,2370,2370,2435,[2435,9718],[2371,9719],[2435,9620],2371,2435,2434,[2371,3051],3246,3179,3243,[2370,3307],[2370,3308],[2434,3309],[2435,3310],[2371,3311],2371,2435,[2371,9526],[3914,9527],3911,[4097,4039],[4097,4040],[4097,4043],4097,[4097,3848],[4097,4039],[4097,4040],[4097,4042],[4097,4043],[4097,3784],[4097,3719],[4097,3719],[4097,3785],4097,4097,4097,4097,[4097,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3905,9494,4996],[3908,4997],[3905,4998],3457,3969,3392,3521,3393,3457,[3393,9973],9974,[3969,9685],[3457,9686],3521,[3591,3781],3594,3593,[3529,3841],[3529,4033],[3530,4034],[3528,4037,9499,5476],[3969,9403,5477],[3394,5478],[3908,5479],3908,[3971,8921],8922,[3529,4033,9785,8923],[3530,4034],[3530,4035],[3530,4037],3530,3333,[3592,3778],[3592,3713],3521,3521,3906,3971,3520,3971,3521,3458,3522,[3969,9691],[3522,9692],[3521,9593,9689],3969,3520,3456,3457,3456,3969,3522,3905,3458,3907,3971,3650,3651,3521,3521,3521,3908,3457,[3905,10070],9974,9975,9976,[3594,3968,9878],[3969,9782],3457,3969,3969,3393,3907,3905,3520,3908,3522,3971,3905,3906,3907,3907,693,693,693,693,693,693,693,3456,3905,3456,[3593,3972],3457,3459,3908,[3593,3781],[3333,1753],[3530,1754],[3594,3776,1755],3906,3969,3906,3521,3908,[3594,4037],3592,[3592,3712],3456,3458,3395,3458,[3530,3714],[3593,3715],[3530,3716],3906,3969,3908,3906,3520,3969,3394,3395,3457,3458,3521,[3969,9700,565],[3969,9701,565],[9989,565],[403,9794,565],[403,565],[403,565],[403,9793,565],[9982,565],[3908,9694,565],[3971,9695,565],3522,3457,3907,3457,3969,3969,3459,3908,3521,[3522,9517],[3920,9421],3917,3919,3981,3983,3917,3918,3919,3920,[2766,3793],2830,[2765,694],[2768,695],2767,2768,[2829,3916],3920,3981,[2768,3791],2766,[2767,10088],[2831,9703],[2832,3789,9704],3983,3920,3983,3917,3917,3920,3920,[3919,9805],[3983,9901],9997,[3981,10089],[3919,10090],[3919,10093],3983,3983,3920,3919,3919,3983,3920,[2829,3857],2829,2832,[2767,3852],3920,3920,3918,3919,3919,3919,3919,3983,3983,3919,[2765,3791],2829,2765,2832,2829,2768,[2765,3724],[2768,3725],3981,3983,3918,3920,3920,3920,3983,3983,3983,[2767,3921],2832,2830,2767,2830,[2830,3980],3920,[2832,3857],2832,[2767,9622],[2767,9623],10004,9999,10006,[3913,10007],[3914,9812],3913,3913,3977,3978,3913,3977,[4098,3979],4098,[4098,4038,9619],[2434,9712],[2434,9713],2435,2434,2435,1987,2371,2371,2434,[2371,3050],3246,3179,[2435,3119],2434,2435,1923,2370,[2434,3114],3244,3179,3181,[2370,2991],2242,2243,2434,2371,2370,2371,[2371,9622],[2371,9623],[3914,9620],3977,3977,3977,3913,3913,3913,3914,3978,3913,3914,3913,3978,3975,[4097,3719],[4097,3786,9622],[4097,9623],10006,[3977,10102],3978,3977,[4097,3787],4097,4097,[4097,3846,9044],9045,[3978,9046],3977,3913,3911,[4097,4039],[4097,4040],[4097,4041],[4097,4042],3912,3914,[3977,9523],[3977,9808],[3978,9906],[4097,3850,9809],4097,4192,[4097,3848],3912,3978,[3978,9520],[4097,9521],4097,4097,[4097,3974],3914,3913,[4097,3979],4097,4097,4097,4097,4097,[4097,3783],3976,3977,3978,[3914,9330],[3911,9333],[4097,3849],4097,4097,[2370,9616],[2370,9617],2370,2371,2370,2371,2371,2371,2370,2370,2435,2434,2435,2370,2434,2435,2370,2371,2371,2370,2435,[2435,9718],[2370,9719],[4097,9620],4097,4097,[4097,3848],[4097,4043],[4097,6],7,8,[3975,9],[4097,3785],[4097,3910,9425],[2371,9426],[2370,9429],[4097,3782,9430],3913,[4097,3979],4097,[4097,3847],3912,3977,3977,3914,3978,3978,3978,3914,3913,[3911,9715],9904,[3243,9905],[3179,9809],3243,3246,3244,3244,3246,[2434,3117],2434,2435,2435,2370,2371,2435,2370,1922,2371,[2435,3052],[2434,2988],[2371,2989],[2370,2990],3245,[3243,9526],[3245,9426],[3246,9429],[3978,9430],3914,[4097,3851],4097,[4097,3847],3912,3978,3914,3913,3913,[4097,3979],4097,[4097,3784],3976,3977,3977,[3913,9425],[3182,9426],[3181,9427],[3181,9428],[3181,9429],[2371,3055,9521],2371,2434,2434,2434,2435,2371,2371,2435,2370,2371,2435,2434,2370,2371,[2435,9814],[2434,9815],[2370,9620],2370,1986,2371,[2371,3242],3180,[2370,3310],[2434,3117],2370,2370,2434,2371,2434,2371,2435,2434,[2371,9526],[4097,3850,9527],4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,3847],3912,3977,3975,[4097,3720],[4097,3721],[4097,3722],[4097,3785],[4097,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3456,9494],[3521,5092],5093,5094,[3521,5095],3522,[3392,4996],[3521,4997],[3393,4998],3905,3392,[3392,10070],[3521,9781],[3905,9782],3908,[3594,3845],3594,3592,3592,3530,3594,3592,[3530,9499],[3908,9500],3905,3908,[3907,9017],9018,[3528,9019],3593,3269,3594,3530,3529,[3592,3968],3905,3906,3456,3905,3906,3521,3969,3523,3969,3908,3458,[3905,9499],[3520,9403],3457,3906,[3907,3461],3908,3969,3971,3456,3458,3905,3520,3969,[3592,4033],[3592,4034],3908,3457,3520,3908,3520,[3528,3781],[3594,10070],[3333,10071],[3594,10072],[9974,9496],[3522,9589],[3908,9590],3907,3971,3522,3392,3584,3585,3905,3457,3521,3905,3458,3971,3969,[3908,9796,757],[3908,9797,757],[403,9602,757],[403,757],[403,9505,757],[3906,9694,757],[3393,9695,757],3969,3456,3907,3905,3905,3905,3969,[3593,3845],3268,3529,[3528,3904],[3593,3972],3971,3969,3905,[3594,3843],3592,3269,[3530,4032],[3528,4033],3521,3905,3521,3905,3392,3588,3589,3457,3971,3908,3520,3908,3520,3456,3457,3393,3521,629,629,629,629,629,629,629,629,629,629,3457,3458,3458,3458,3969,3458,3969,3969,3906,3905,[3906,9517],[3983,9421],3918,3983,3983,3981,3920,3919,3917,[2829,3857],2768,2831,2766,2768,[2768,3789],3920,3919,3983,3983,[2831,3729],[2832,9416],[2832,3790,9512],3919,3920,3983,3983,3983,3919,3919,3919,[3983,9614],9997,[3981,10093],[3920,10185],[3983,10186],3983,3983,3919,3920,3983,3920,3919,3920,[2766,3921],2830,2831,[2830,3916],3983,3920,3983,3920,3983,3917,3983,3919,3919,3981,[2765,3793],2765,2765,2768,2765,2765,[2765,3980],3920,3981,3983,3919,3920,3983,3983,3919,3920,3983,[2831,3793],2765,2832,[2832,3724],[2767,3725],3920,3981,[2831,3921],2767,[2829,9718],[2831,9719],[3913,10100,9524],[3978,10095],[3914,10102],3978,3914,3977,3914,3978,3978,3911,[4098,4041],[4098,4043],4098,[4098,9715],[2434,9616],[2371,9617],2434,2371,2370,2371,2434,2435,2434,[2435,3178],3245,3245,[2435,3183],2371,2370,2434,2370,[2371,3178],3246,3244,3181,[2371,3117],2306,2307,1923,2370,2371,2370,[2371,9718],[2434,9719],[3977,9620],3913,3914,3978,3977,3978,3911,[4098,4040],[4098,4041],3912,3978,3913,3914,3914,3913,[3975,9718],[3978,9719],[3913,10102,9524],3977,3977,3977,[4097,3851],4097,4097,[4097,3910,9814],[3913,9815],[3913,9142],3977,3911,[4097,4043],4097,4097,[4097,3784],[4097,3786],[4097,3848],3912,[3913,9715],9904,10002,[4097,9905],[4097,9809],4097,[4097,3783],3976,[3978,9523],[3977,9616],[4097,3720,9617],[4097,3721],[4097,3722],3976,3978,3914,3975,[4097,3786],4097,[4097,9330],[4097,9333],4097,[4097,3974],[3977,9330],[3978,9333],[3914,9425],[2371,9426],[2370,9429],[4097,9430],[4097,9330],[4097,9333],[1923,9712],[2434,9713],2370,2371,2435,2435,2371,2370,2435,2371,1922,2370,2114,2434,2370,2434,2370,2370,2435,[2370,9814],[1986,9906],[2370,9907],[2370,9815],[4097,9620],4097,4097,4097,4097,[4097,6],7,8,[3977,9],[3977,9520],[2371,9521],2371,2435,[2435,9526],[3977,9527],3975,[4097,3785],4097,[4097,3974],3977,3977,3914,3911,[4097,4039],[4097,4040],[4097,4041],[4097,4042],[4097,3850,9811],[4097,10000],10001,[3245,9905],[3181,9809],3244,3179,3182,[2371,3247],2435,[2434,3051],[2435,2987],[2435,2988],[2435,2989],[2371,2990],[2371,2987],[2435,2988],[2370,2989],[2434,2990],3244,3244,3246,3182,3246,3182,3246,3246,[2435,3118,9526],[3978,9527],[4097,3915],4097,4097,[4097,3974],3977,3913,3914,3911,[4097,3850],4097,[4097,3974],3977,3978,[3978,9425],[3243,9521],3246,3179,3180,3180,[2371,3119],2435,2435,2370,2435,2370,2371,1987,2435,2434,2370,2435,[2435,9814],[2371,9908],[2370,9909],[2371,9910],9911,[2434,2991,9716],1986,2370,[2371,3052],[3246,9522],[2435,3117],2371,2435,2434,2371,2434,2370,2371,2434,2435,2370,[2370,9622],[2370,9623],[4097,9524],[4097,3784],[4097,3719],[4097,3785],4097,4097,4097,4097,4097,4097,[4097,3782],3977,3977,3913,3978,3977,[3914,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3457,9589],[3906,9590],[3521,5188],5189,5190,[3520,5191],3969,[3907,5092],5093,5094,[3456,5095],3457,3457,9877,[3394,9878],[3906,9782],[3528,3909],3333,3529,3592,3593,3593,3528,[3594,9595],[3594,9596],[3907,9497],3908,[3906,9113],[3906,9114],[3530,9115],3592,3593,3593,[3528,3777],[3594,3779],[3592,3841],3456,3521,3392,3457,3906,3458,3456,3520,3456,3971,3905,3906,[3456,9499],[3905,9500],3458,3907,3905,3971,3522,3905,[3592,4033],[3529,4033],[3592,4034],[3529,3844],3593,3594,[3594,3841],[3529,4033],[3593,4034],3905,3971,[3530,3845],3529,[3529,10167],[3530,10168],[3593,10070,9592],[3593,3842,9685],[3905,9686],3969,3907,3908,3969,3648,3649,3969,3906,3969,3908,[3971,9796],[3907,9890],[3969,9891],[3971,9892],9893,[403,9698],403,[403,9601],[3969,9790],[3521,9791],3457,3969,3520,3521,3907,3521,3969,[3528,3909],3593,[3530,3777],3522,3520,3521,[3529,4034],[3528,3844],3594,3529,3594,3269,3530,[3529,3968],3521,3456,3905,3456,3652,3653,3458,3971,3969,3394,3906,3520,3522,3394,3908,3969,693,693,693,693,693,693,693,693,693,693,3905,3969,3522,3521,3969,3907,3971,3457,3905,3908,[3393,9613],[3393,9614],[3919,9515],3919,3919,3983,3919,3918,3920,[2766,3921],2832,2829,2832,2767,[2767,3980],3919,3919,3917,3920,[3985,9416],[2768,9512],[2765,3788],3920,3920,3920,3920,3919,3983,3920,[3920,9613],[3983,9614],[3983,10093],3917,3920,3919,3917,3983,3983,3983,3920,3919,3981,3919,3920,[2768,3791],[2767,3789,9321],[3983,9324],3983,3920,3920,3920,3983,3983,[3918,9321],[3917,9323],[3983,9324],3983,[2831,3857],2765,2829,2766,[2767,3789],[2767,3725],3920,3920,3920,3919,3918,3983,3983,3983,3919,3920,3983,[2765,3857],2832,2830,[2768,3788],3919,3919,3919,[2768,3985],2765,[2767,9622],[2832,9623],[3978,9620],[3913,10191],3978,3978,3978,3978,3978,3913,3911,[4098,3850],4098,4098,4098,[4098,9425],[2370,9521],2371,1923,2434,2434,2371,2370,2370,2370,[2371,3116],3246,3179,3180,[2434,3054],2435,2370,2434,[2435,3116],3180,3246,[2435,3055],2370,2370,2435,[2435,3052],[2371,2988],[2435,2989],[2435,2990],[2435,3053,9814],[2371,9815],[4097,3847,9620],3912,3913,3977,3914,3911,[4098,3849],4098,4098,[4098,3848],3912,3914,3978,3913,3977,[3978,9814],[3978,9815],[3978,9620],3978,3914,3978,[4097,3915],4097,[4097,9814],[4097,3974,9910],9911,[3977,9524],3914,[4097,3787],4097,4097,[4097,3718],3976,[4097,3787],4097,[4097,3782],[3977,9811],[4098,3979,10000],[4098,10098],10001,[4097,3721,9616],[4097,3722,9617],3976,3914,[3913,9619],[3913,9712],[3978,9713],3913,3978,3977,3978,3977,3913,3975,[4097,3723,9425],[2434,9426],[2435,9429],[4097,9430],[4097,3782,9425],[2435,9426],[2370,9429],[2434,9521],2370,2434,[2434,3178,9526],[3180,9426],[2434,3053,9429],[2242,9521],2243,2370,2371,2435,2435,2371,2434,2435,2370,2371,2435,2370,2370,2435,2371,2371,2435,[2371,9814],[2371,9910],10002,10003,9911,[4097,3719,9716],[4097,3720],[4097,3722],[4097,3723],4097,[4097,6],7,8,[3914,9520,9],[3179,9521],[2371,3053],2434,[2371,3051],[2371,2987,9622],[3977,9623],3914,3975,[4097,3719],3976,3911,[4097,4039],[4097,4040],[4097,3849],4097,4097,4097,4097,4097,4097,[4097,10097],10001,[3180,9616],[3179,9617],3244,3244,[2370,3118],2434,[2371,3242],3245,3180,3243,3244,3246,3246,3180,3246,3179,3182,3180,3245,3243,3243,3246,[2370,3055],[2435,9622],[2435,9623],[3975,9524],[4097,3785,9330],[4097,9331],[4097,3974,9332],[3913,9333],3977,3911,[4097,4043],4097,[4097,3783],[3976,9330],[3978,9333],[3913,9425],[3179,9521],3180,3181,3244,3245,3182,[2435,3183],2434,2370,2434,2371,2370,2435,2435,2371,2435,2371,[2371,9814],[2371,9910],10004,10005,10006,[3179,10007],[2370,3117,9812],2370,2370,[2370,3242,9523],[3246,9618],[2435,3053],2370,2434,2435,2434,2435,2370,2435,2371,2434,2370,[2434,9718],[2370,9719],[4097,3722,9620],3976,3913,3975,[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3786],4097,[4097,3910],3978,3913,3913,3978,[3978,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3908,9685],[3908,9686],[3521,5284],[3393,5285],[3521,5286],[3908,5287],3522,[3458,5188],5189,5190,[3520,5191],3907,3522,[3393,9973],9974,[3592,4036,9589],[3591,3844,9590],3530,3269,3528,3594,3592,3592,[3593,9691],[3594,9692],[3969,9593,4996],[3908,4997],[3908,9595,4998],[3907,9596],[3592,3713,9497],[3529,3714],[3594,3715],[3593,3716],3905,[3528,3973],3528,[3528,3841],[3528,4033],3908,3971,3520,3522,3457,3522,[3592,4034],[3593,4035],[3592,4036],3520,[3456,9595],[3971,9596],[3908,9497],3907,3971,3906,3522,[3528,3843],[3594,9303],[3529,9304],[3530,9305],[3530,9306],3333,3593,3529,3528,3594,[3528,3841],3906,[3530,3909],3530,[3594,3777],[3593,3713],[3593,3780,9592],[3529,9589],[3528,3842,9590],[3530,4034],3969,3457,3969,3908,3457,3522,3908,3520,[3457,9796],[3905,9892],9986,9987,9988,9989,[403,9794],403,[403,9697],9886,[3969,9887],[3458,9791],3522,3522,3907,3522,3906,3458,3457,[3594,3780],[3594,3841],[3592,3843],[3594,3842],[3529,3844],3592,3530,3269,3529,[3592,3778],[3593,3717],3528,[3530,3841],3971,3458,3522,3907,3521,3456,3908,3521,3456,3907,3458,3905,3907,3971,3907,[3971,9604],[3971,9605,757],[403,9506,757],[403,757],[403,757],[403,757],[403,757],[403,9505,757],[3971,9598,757],[3971,9599,757],[3908,757],3907,3907,3907,3522,3395,3905,3456,3907,3584,3585,[3906,9709],[3393,9710],[3919,9611],3919,3920,3919,3983,3918,3920,3919,[2766,3791],2829,2768,2832,[2832,3788],3983,3920,3920,[2767,3855,9416],[2768,9512],2767,[2831,3852],3983,3920,3920,3983,3919,3983,[2831,4048],[3920,9709],[3918,9710],[3919,9321],[3920,9324],3920,3920,3981,3983,3920,3983,3920,[3983,9321],[3981,9322],[3981,9323],[3920,9324],[3919,9416],[3919,9417],[3920,9420],[3919,9421],[3920,9321],[3919,9322],[3920,9323],[3919,9324],[3981,9416],[3920,9417],[3919,9419],[3919,9420],[3920,9518],[2768,3921],2830,2830,2832,[2768,3788],3920,3920,3920,3918,3983,3983,3983,3919,3983,3981,3920,3983,[2767,3921],2831,2830,[2768,3852],3919,[2767,4047],[2830,4048],[2766,3856],2831,[2767,9718],[2830,9719],[3978,9716],3913,3913,3913,3914,3914,3913,3914,3975,[4098,3785],4098,4098,[4098,9425],[2370,9521],2371,2434,2371,2242,2243,1986,2435,2435,2371,2370,[2370,3115],3244,3181,3244,[2435,2987],[2434,2991],2434,2371,[2434,3306],3246,[2435,3119],2370,[2434,2986],[2434,2987],3179,3244,[2434,3307],[2434,3308,9622],[2371,3308,9623],9911,[4097,9716],[4097,3782],3978,3914,3914,[4098,3787],4098,4098,4098,[4098,3783],3976,3977,3978,3977,[3977,9814],[3914,9910],9911,[3978,9716],3978,3978,3977,3975,[4097,3719,9814],[4097,3785,9910],10006,[3912,10007],[3914,9812],3913,[4097,3915],4097,[4097,3783],3976,3914,[4097,3915],4097,[4097,3846],3914,3975,[4098,3785,10194],[4098,10097,9523],[3913,9712],[3913,9713],3977,3977,[3977,9619],[3913,9808],[3914,9809],3977,3913,3977,3914,3978,3911,[4097,4039,9523],[2435,9616],[2434,9617],2051,[2370,9526],[2370,9521],2435,2370,2434,2435,2371,[2370,3242],3244,[2371,3247],2306,2307,2434,2371,2435,2434,2434,2370,2371,2370,2435,2371,2434,2435,2435,2370,2371,[2370,9814],[2434,9910],10006,[4097,3787,10098],[4097,10099],[4097,3974,10007],[3914,9812],3978,3914,3975,[4097,3785],[4097,9520,6],7,8,[2370,3309,9521,9],[2434,3307],[2434,3308],[2371,2987],3180,[2370,3055],[2434,9526],[3913,9430],3978,3911,[4097,4042],[4097,4043],4097,4097,4097,4097,4097,4096,4097,4097,[4097,3784],[4097,3723],[4097,10097,9523],[3244,9712],[3245,9713],3245,[2435,3055],2435,[2435,3051],3246,3179,3246,3244,3181,3243,3245,3182,3246,[2435,3307],[2434,3308],[2435,3309],[2434,3310],3182,3182,3244,[2435,3119],[2435,9718],[1986,9719],[3914,9620,9425],[2435,3178,9426],[3181,9427],[3182,9428],[3181,9429],[3913,9430],[4097,3979],4097,4097,[4097,3974,9425],[3182,9426],[3243,9429],[3246,9521],3181,3182,3179,3180,[2434,3309],[2371,3310],[2434,3118],2371,2434,2371,2371,2371,[2371,9814],[2434,9906],[2370,9907],[2370,9908],[2371,9909],[2371,9910],10006,[3181,10100],[3182,10101],[3244,10102],[2371,3055],2434,2370,[2371,3052],[3245,9619],[3245,9808],[3182,9809],[2434,3054],2435,2370,2370,2370,[2435,3051],[2434,2987],[2434,2988],[2370,2990],[2371,2991],[2435,9814],[2370,9815],[3914,9620],3914,3977,3977,3913,3978,3914,3914,[4097,3787],4097,[4097,3847],3912,3913,3914,3914,[3978,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3394,9781],[3907,9782],[3458,5380],[3521,5381],[3907,5382],[3394,5383],3907,[3392,5284],[3393,5285],[3457,5286],[3907,5287],3908,3521,3908,[3458,10070],[3527,9685],[3591,9686],3527,3591,3528,3528,3530,3592,[3530,9787],[3594,9788],[3969,9593,5092],5093,5094,[3906,9499,5095],[3908,9500],3969,3969,3969,3905,3522,[3529,3780],3528,3593,[3594,3968],3520,3457,3907,3521,[3594,3973],3528,3530,3528,[3592,3841],[3592,4037,9691],[3530,4032,9692],[3520,9593],3907,3520,3969,[3592,3844],[3592,9398],[3528,9399],[3593,3778,9400],[3529,3713,9401],[3593,3780,9402],[3593,9403],[3530,3777],[3594,3714],[3594,3715],[3594,3780],3593,[3593,4032],[3528,3844],3530,[3594,3968],3905,[3594,3973,9688],[3594,9685],[3529,9686],3593,[3592,3968],3969,3457,3907,3457,3908,3520,[3906,9796],[3905,9892],9988,10082,10083,10084,403,403,403,[403,9793],9982,9983,[3392,9598],[3908,9599],3457,3971,3521,3906,3584,3585,3971,[3529,3779],3593,3593,3333,[3593,3778],[3593,3714],[3593,3715],[3594,3716],3456,[3594,3973],3592,3592,[3594,3776],3907,3393,3522,3908,3458,3969,3522,3392,3520,3521,3520,3906,3905,3457,[3457,9700],[3458,9701],[403,9602],403,40,41,403,[403,9601],[3969,9694],[3458,9695],3905,3456,3905,3520,3458,3521,3457,3969,3521,3648,3649,[3905,9613],[3393,9614],[3919,9611],3981,3919,3920,3919,3920,[2768,3984],3918,3920,[2765,3792],2765,2829,[2766,3852],3919,3920,[2832,3793,9511],[2831,9512],2766,2766,[2830,3916],3919,3920,3983,3919,3920,[2831,3793],2829,[2768,3980],[3920,9517],[3920,9417],[3919,9420],[3983,9421],3983,3983,3920,3983,3919,[3920,9416],[3919,9417],[3981,9418],[3919,9419],[3983,9420],[3983,9512],3981,3983,[3920,9517],[3919,9417],[3920,9418],[3983,9419],[3983,9420],[3919,9512],3919,3919,3981,[3920,9517],[2832,3985,9518],[2829,9321],[2768,9322],[2830,9323],[2830,3852,9324],[3919,9321],[3920,9324],3920,3920,3920,3919,3920,3983,3920,3983,3920,[2766,4048],[2829,3856],2765,2765,[2767,3916],[2832,3985],2767,2765,2830,2829,2765,[2830,9526],[3913,9527],3914,3913,3977,3978,3978,3977,3913,3914,3975,[4098,3723],[4098,9520],[2435,9521],2371,2435,2435,2370,2306,2307,2434,2435,2370,2435,2370,2434,[2371,3242],3246,3243,[2434,3310],[2434,3118],2371,2370,2434,[2434,3050],[2370,3183],2435,[2434,3050],3182,3182,[2435,3117],2370,[2371,9718],[2371,9719],[4097,10007,9524],[4097,9812],[4097,3846],3978,3977,3913,[4098,3851],4098,4098,4098,[4098,3974],3978,3914,3978,[3977,9718],[3914,9719],10006,[3977,10007],[3913,9812],3913,3914,3977,[3913,9622],[3913,9623],[10006,9524],[4097,10102],[4097,3847],3912,3914,[4097,3979],4097,[4097,3847],[4097,4039],[4097,4040],[4097,3849],4097,[4097,3910],3914,3978,3975,[4098,3719,9619],[3913,9616],[3914,9617],3913,3978,[3913,9715],9904,[3978,9905],[3978,9809],3913,3977,3977,3914,[4097,3787],[4097,9619],[2435,9712],[2434,9713],2370,2370,2435,2370,2370,2435,2370,2370,[2370,3115],3243,3181,[2434,3054],2434,2371,2371,2050,2370,2371,2370,2370,2435,2434,2371,2371,2371,2435,2434,[2435,9814],[2434,9910],10006,[3978,10102],[4097,3915,10194],[4097,10195],[4097,4038],3912,3913,3913,3913,[4097,3979,9523],[2435,9616,6],7,8,[2435,9],2370,2371,[2434,3116],3244,[2434,3119],2435,[2434,9526],[3914,9527],[4097,3850],4097,4097,4097,4097,4097,4097,4097,4097,[4097,3783],[4097,3719],3976,[3975,9330],[4097,3786,9619,9333],[3181,9712],[3179,9713],3182,[2370,3119],2435,[2434,3115],3182,3243,3245,3244,3243,3246,3246,3181,[2435,3118],2434,2434,2371,2370,[2370,3116],3244,3244,[2434,3183],2435,[1922,9526],[2370,9521],[2371,3050],3244,3243,3246,[3182,9526],[4097,3979,9430],[4097,9330],[4097,9425],[3182,9521],3245,3245,3180,3181,3180,3245,[2435,3117],2371,2371,2371,[2370,2986],[2435,2987],[2435,2988],[2435,2989],[2371,3053,9814],[2371,9910],10002,10003,10004,10005,10006,[3245,10102],[3181,10196],[3244,10197],3245,[2434,3183],2434,2371,[2371,3050],[3246,9715],9904,[3246,9905],[3246,9809],[2434,2987],[2371,2988],[2371,2989],[2435,2990],3244,3182,3181,3245,[3180,9814],[2370,9910],9911,[3912,9716],3914,3977,3913,3914,3914,3914,3913,[4097,3851],4097,4097,[4097,4038],3912,3913,3913,[3913,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3521,9878],[3393,9782,5476],[3520,5477],[3456,5478],[3906,5479],3394,[3458,5380],[3393,5381],[3393,5382],[3969,5383],3456,3521,3393,3905,[3269,9589],[3591,9590],3591,3528,3530,3530,3528,[3530,9787],[3530,9883],9884,[3969,9689,5188],5189,5190,[3906,5191],[3971,9499],[3908,9500],3969,3971,3456,3521,[3593,3973],3594,3528,[3592,3842],[3528,4033],[3528,4034],[3529,4035],[3529,4036],[3594,3843],[3594,3777],[3594,3713],[3528,3780],3594,[3530,9595],[3527,9596],[3528,3841,9593],[3530,4034],[3592,4035],[3529,4037],[3529,9493],[3592,3777,9494],[3592,3713],3906,3971,[3593,3973],[3529,9499],[3528,3841,9500],3457,3521,3456,[3528,3779],3529,3529,[3530,3778],3520,3521,[3521,9493],[3529,3717,9494],3594,3594,[3529,3842],[3594,4033],3458,3393,3521,3521,[3520,9604],[3520,9605],9988,10084,10178,10179,10180,403,403,403,403,403,[10079,9505],[3907,9694],[3906,9695],3907,3458,3457,3522,3648,3649,3971,[3592,3973],3528,[3530,3712],[3592,3713],3457,3908,3458,3521,3907,3456,[3592,3780],3332,[3530,3840],[3593,3970],3522,3969,3520,3395,3458,3907,3456,3520,[3907,5608],[3907,5609],3908,3971,3522,[3971,9796],[3969,9797],[403,9602],403,104,105,403,[403,9697],[3971,9694],[3969,9695],3457,3456,3969,3522,3908,3457,3905,3522,3520,3908,3905,[3522,9709],[3393,9710],[3920,9611],3919,3918,3920,3919,3920,3920,3983,3920,[2766,4049],2766,2765,[2768,3916],3920,[3981,9514],[2832,3857,9607],[2829,9608],2767,2765,[2829,3853],3983,3920,3920,3919,3981,[2831,3921],2832,[2765,3853],[2830,4047],3983,3920,[3917,9517],[3919,9518],3920,3919,3983,[3920,9511],[3983,9512],3919,3920,3920,3920,3983,3983,3920,3919,3983,3983,3918,3919,3920,3983,3917,3917,3983,[3919,9517],[2831,3792,9417],[2766,9418],[2829,9419],[2829,3916,9420],[3920,9417],[3919,9420],[3920,9421],[3983,9321],[3920,9322],[3981,9323],[3920,9324],3920,3918,3920,[2829,3985],2832,2831,2766,2765,[2830,4044],[2830,3855],2768,2768,2830,2768,2830,[2829,9622],[2832,9623],[3914,9524],3913,3914,3978,3913,3977,3913,3978,3977,[3975,9523],[2435,9616],[2435,9617],2371,2435,2434,2371,2435,2370,2371,2371,2434,2370,2435,[2434,3051],3182,3181,[2434,3118],2371,2371,2434,1922,2434,[2435,3114],3244,[2435,3053],[2370,3178],3181,[2370,3055],2434,2434,[2371,9718],[2370,9719],[4097,9716],4097,[4097,3910],3914,3913,3978,[4098,3915],4098,4098,[4098,3784],3976,3914,3977,3977,[3977,9622],[3913,9623],[3978,10102,9524],3977,3978,3913,3913,3914,[3914,9718],[3913,9719],[3975,10102,9620],[4097,3785],4097,[4097,3974],3914,3975,[4097,3785],4097,4097,4097,4192,4097,[4097,3974],3913,3914,3914,[3914,9715],[3914,9712],[3977,9713],3913,3978,[3978,9811],[3913,10000],[10001,9523],[4097,4039,9616],[3912,9617],3913,3978,3913,[4097,3915],[4097,9619],[2370,9808],[2178,9809],2371,2435,2435,2434,2371,2434,2434,2434,2435,[2434,3242],3179,[2371,3247],2434,2434,2370,2435,2370,2371,2434,2371,2435,2370,2435,2434,2370,2434,[2370,9622],[2435,9623],10006,[3914,10102],3977,[4097,3979],4097,4097,[4097,3847],3912,3977,3914,[3978,9425],[2435,9521],2435,2435,2370,2434,2371,2370,[2371,3050],[2434,3183],2435,2435,[2371,9526],[4097,3718,9527],[4097,3719],[4097,3785],4097,4097,4097,4097,[4097,3718],[4097,3719],3976,3914,[3977,9520],[2434,3178,9426],[3244,9429],[3245,9521],3245,3244,[2371,3183],2435,2370,[2370,3306],[2371,3307],3182,3181,3244,3246,3180,[2370,3055],2370,2434,2370,2434,2371,2370,[2370,3050],3182,[2371,3247],2434,2435,2434,[2371,3178],3179,3245,3246,3179,[3246,9526],[3245,9426],[3243,9521],3179,3181,3243,3246,3182,[2435,3310],[2371,3311],2434,2434,1987,[2434,3051],3246,3245,3179,[3182,9814],[3245,9910],10006,[2371,10098],[3244,10099],[3245,10100],[3181,10101],[3182,10102],3180,3244,[2370,3307],[2435,3308],[2370,3311],2370,2371,[2434,3178],[3243,9811],[2434,3117,10000],10001,[3181,9616],[3246,9617],3243,3246,3180,3180,3181,3180,[3179,9622],[3182,9623],10006,[4097,10007],[4097,3974,9812],3913,3913,3913,3978,3977,3977,3914,[4097,3915],4097,4097,4097,[4097,3847],[4097,4039],[4040,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3521,9589],[3392,9590],3392,3520,3905,[3907,5476],[3907,5477],[3908,5478],[3520,5479],3969,3905,3905,3522,[3593,9685],[3593,9686],3592,3530,3528,3593,[3594,9787],[3530,9883],9979,[3456,9980],[3969,9785,5284],[3392,5285],[3907,5286],[3971,5287],[3905,9595],[3907,9596],3520,3906,3906,3907,3393,[3528,3780],3528,3332,3594,3530,3592,3594,3268,[3592,3968],3456,3905,[3528,3713],[3528,3713,9691],[3906,9692],[3530,9593],3592,3529,[3529,3777,9496],[3592,3713,9589],[3905,9590],3905,3458,3522,3522,[3592,3780,9595],[3593,9596],[3529,3968,9497],3908,3458,3456,[3529,3714],[3592,3716],3521,3457,[3907,9496],[3905,9589],[3906,9590],[3529,3780],3593,3594,3528,[3528,3776],3458,3907,3456,[3457,9700],[3521,9701],[10084,9506],10180,403,403,403,403,403,403,403,403,[10175,9601],[3906,9790],[3522,9791],3907,3392,3908,3456,3458,3458,[3530,4035],[3594,3844],3333,[3592,3842],3520,3971,3456,3905,3521,3520,3907,[3529,3844],3592,[3528,3904],3971,3969,3907,3971,3905,3521,[3908,5701],[3456,5702],[3522,5703],[3969,5704],[3457,5705],3521,3456,[3906,9796],[3906,9892],9893,[403,9698],403,403,403,403,[3971,9502],[3908,9503],3520,3456,3971,3392,3458,3969,3520,[3920,3843],[3920,3842],3522,3906,3905,[3457,9805],[3393,9806],[3920,9611],3917,3919,3919,3920,3919,3983,3983,[2832,3985],2767,2768,[2830,3789],3981,3919,[3983,9610],[2768,3921,9703],[2829,9704],[2767,566],[2766,567],2765,[2832,3788],3920,3983,3919,[3920,9805],[3920,9898],[2832,3792,9800],2767,2831,[2767,3980],3919,[3983,9805],[3920,9806],[3983,9515],3983,[3983,9514],[3919,9703],[3919,9704],3983,3983,3919,3919,3917,3919,3920,3983,3983,3919,3919,3983,3983,3983,3920,3920,3917,3917,[2830,3793],2829,2766,[2831,3980],3983,3983,[3983,9517],[3981,9417],[3983,9418],[3917,9419],[3919,9420],[2832,4046,9421],[2829,4047],[2765,4048],[2765,3856],2830,2830,2766,2832,2766,2768,2830,2829,2768,2768,2767,[2767,9718],[2767,9719],[4097,4040,9620],[4097,4041],3912,3977,3913,3914,3978,3913,3914,[3977,9619],[2370,9712],[1987,9713],2435,2434,2434,1986,2435,2371,2434,2434,2434,[2435,2986],[2434,2987],3182,3243,[2435,3247],2370,2434,2370,2370,2435,2371,[2371,3178],3179,3182,3243,3181,[2434,3119],2434,2371,2435,[2435,9526],[4097,9527],4097,[4097,3974],3913,3977,3911,[4098,4043],4098,[4098,3718],3976,3978,3914,3914,3978,[3914,9718],[3913,9719],[3912,9620],3977,3978,3978,3977,3978,[3914,9718],[3913,9719],[3913,9716],[4097,3787],4097,[4097,3847],3912,3914,3975,[4097,3785],4097,4097,4097,[4097,3783],3976,3913,3978,3913,[3913,9425],[3978,9521],3913,3913,3911,[4097,4039],3912,[3978,10097,9619],[4097,9712],[4097,4038,9713],[4097,4040],[4097,4041],[4097,4042],[4097,4043],[4097,9715],9904,[2370,9905],[2435,9809],1986,2371,2178,2435,2434,2434,2434,2435,[2435,3306],3244,3180,[2371,3053],2370,2434,2371,2435,2371,2435,2434,2434,2370,2371,2370,2370,2435,[2435,9718],[2435,9719],[3914,10102],3914,3978,3975,[4097,3723],4097,4097,[4097,3974],3913,[3914,9520],[2434,9521],2435,2434,2435,2434,2434,2371,2434,[2434,3114],3245,[2370,3053],2370,2050,[2434,9526],[3977,9527],3975,[4097,3722],[4097,3723],4097,4097,[4097,3974],3978,3978,[3978,9523],[2434,9616],[2370,3242,9617],3179,3181,3246,3244,3246,[2434,3053],2371,2435,2370,[2370,3242],3244,3180,3244,3243,[2434,3119],2371,2050,2434,2370,2435,2371,[2434,3114],3245,[2434,3055],2370,2371,[2435,3052],3243,3243,3182,3245,3181,3179,3246,3180,3181,3244,3244,3180,[2435,3117],2435,2435,2434,[2371,3051],[2370,2987],3243,3182,3243,[3182,9814],[3181,9910],10006,[2371,10102],[2371,10194],[2371,3242,10195],[3180,10196],[3180,10197],3244,3246,[2371,3117],2434,2371,2370,2435,[2371,3052],3180,[2371,3247],2371,[2371,10097,9523],[3180,9712],[3244,9713],3182,3181,3182,3181,3180,[2435,3309],[2371,3310,9718],[2371,3307,9719],[4097,10102,9524],4097,[4097,3847],3912,3978,3978,3914,3977,3913,3978,3975,[4097,3785],[4097,9330],[4097,9331],[4097,9332],[4097,9523,9333],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3394,9685],[3907,9686],3908,3969,3393,3522,3456,3393,3520,3520,[3393,9303],[3521,9306],[3394,9398],[3592,9494],3592,3269,3592,3592,[3529,3777,9691],[3593,3713,9692],9979,[3907,10075],3905,[3969,5380],[3907,5381],[3971,5382],[3969,5383],[3905,9787],[3906,9788],3521,3908,3392,3456,3521,3905,[3530,3713],[3529,3714],[3592,3715],[3593,3716],[3594,3713],[3593,3717],[3530,3777],3907,3905,3906,3520,[3908,9787],[3906,9788],[3594,3714,9593],[3529,3715],[3530,3716],[3458,9592],[3906,9685],[3521,9686],3969,3906,3907,3907,[3592,3781],[3529,9499],[3529,3841,9500],3458,3588,3589,3906,3971,3905,3908,[3906,9592],[3907,9685],[3456,9686],3456,[3529,3713],[3529,3780],3594,[3529,3840],3457,3458,3392,[3908,9604],[3521,9605],[10180,9602],403,146,403,403,403,403,403,403,403,[403,9697],9886,[3458,9598],[3905,9599],3456,3522,3907,[3529,4035],[3529,3843],3530,3269,3593,[3593,3777],3906,3458,3521,3521,3906,3971,[3529,3781],3592,3528,[3594,3968],3520,3905,3456,3907,3522,[3906,5796],[3906,5797],5798,[3522,5799],[3906,5800],[3907,5801],3520,[3520,9604],[3905,9605],9988,9989,[403,9794],403,403,403,[3521,9502],[3458,9503],3969,3457,3392,3908,3969,3522,[3919,4033],[3919,3844],3983,3981,[3983,3776],3907,[3907,9805],[3906,9901],9902,[3983,9707],3920,3920,3919,3983,3918,3920,3981,[2765,3856],2768,2832,[2832,3980],3917,[2832,3982],[3920,9610],[2768,3856,9607],[2768,9608],[2832,630],[2768,631],2765,[2831,3852],3983,3920,[3920,9805],[3983,9901],9994,[2832,4049,9896],[2768,9800],2829,[2765,4044],[2830,4045,9805],[3920,9901],9902,[3920,9707],3920,[3919,9610],[3983,9607],[3983,9608],3920,3920,3983,3920,3983,3983,3919,3983,3919,3983,3918,3919,3920,3918,3919,3983,3983,3920,[2766,3857],2768,2765,[2768,3980],3920,3920,3983,3983,3919,[2766,4047],[2829,3855],[2831,9517],[2832,9518],2830,2829,2829,2768,2768,2831,2829,2767,2765,2829,2832,2832,2831,[2831,9622],[2832,9623],[4097,9620],4097,[4097,4038],[4097,4039],[4097,4040],3912,3914,3913,3913,[3978,9619],[2370,9616],[2435,9617],2435,2434,2435,2435,2435,2371,1986,2435,2370,[2435,3116],3246,3244,3182,3181,[2435,3054],2370,2371,2434,2434,[2371,3052],3245,3244,3246,3244,3181,[2435,3183],2371,2435,2434,[2434,9718],[2434,9719],[4097,3722,9524],3976,3913,3913,[4098,3979],4098,[4098,3784],3976,3978,3977,3913,3913,3913,[3913,9718],[3913,9719],[4097,3848,9620],3912,3978,3914,3914,3977,3977,[3977,9526],[3914,9430],[4097,3915],4097,4097,[4097,3974],3913,3914,3975,[4097,3720],[4097,3721],[4097,3722],3976,3978,3914,3913,[3914,9520],[3977,9521],3913,3913,3978,[4097,3979],4097,[4097,3782],[3977,9425],[4097,9521],4097,4097,4097,4097,4097,[4097,9811],[4097,10000],10001,[2370,9616],[2435,9617],2435,2434,2434,2371,2435,2434,2370,2435,[2371,3116],3180,3245,[2434,2987],[2370,2991],2434,2370,2178,2434,2434,2370,2371,2371,2370,2434,2370,2370,[2371,9526],[3913,9527],3913,3978,3913,3975,[4097,3785],4097,[4097,3974,9330],[3914,9333],[2434,9616],[2370,9617],2371,2435,1922,2434,2370,2435,2370,[2435,3178],3182,[2435,3247],2371,2435,[2371,9622],[2370,9623],[3913,9524],3913,[4097,3787],4097,4097,[4097,3782],3914,3913,[3978,9520],[2435,9521],[2371,3306],[2434,3307],3243,3243,3243,3181,3181,[2371,2991],2370,2435,[2371,3115],3246,3179,3180,3182,[2435,3183],2370,2371,2370,2434,2435,2371,[2370,3178],3181,[2435,3119],2434,2435,[2371,3050],3245,3246,3245,3180,3181,3181,3181,3182,3182,3245,3181,[2370,3247],2435,2371,2370,2370,[2370,3242],3180,3182,3243,[3182,9718],[3244,9719],10006,[2370,10102],2371,2370,[2370,3115],3244,3179,3245,[2371,3247],2434,2371,2434,2434,2371,[2371,3242],3245,3181,[2371,3054],[2371,9619],[3243,9616],[3246,9617],3243,3244,3244,[2370,3309],[2435,3311],2435,[2371,9718],[2371,9719],[4097,3722,9620],[4097,3785],4097,[4097,4038],[4097,4039],3912,3977,3913,3978,3978,3913,[3978,9425],9426,9427,9428,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,4996],[403,4997],[403,9398,4998],[3394,9494],3906,3907,3521,3457,3907,3457,3394,[3907,4996],[3394,9398,4997],[3393,9399,4998],[3907,9402],[3527,3973,9494],3528,3269,3593,[3593,3712,4996],[3594,3713,4997],[3907,9691,4998],[3905,9692],[3905,10075],3971,3907,[3906,5476],[3971,5477],[3906,5478],[3905,9787,5479],[3906,9883],9884,3457,3458,3456,3907,3969,3906,3520,3520,3457,3458,3457,3908,3457,3457,3906,3969,[3520,9787],[3907,9883],9884,[3456,9689],3908,3521,[3905,9592],[3969,9781],[3521,9782],3908,3458,3456,3520,[3593,3909],[3528,9691],[3594,9692],[3592,3776,9497],3652,3653,3905,3905,3969,3394,[3457,9592],[3456,9685],[3971,9686],3586,3587,[3592,3781],3530,[3528,3904],3969,3522,3907,[3520,9700],[3907,9701],[403,9602],403,403,403,403,403,403,403,403,403,[403,9793],9982,[3907,9694],[3907,9695],3457,[3593,4036],[3529,3843],3594,[3268,3778],[3593,3714],[3593,3715],[3594,3716],3520,3971,3969,3520,3905,3969,3907,[3592,3845],[3529,3712],[3530,3713],3521,3905,3520,3969,3905,3905,[3456,5892],5893,5894,5895,[3905,5896],3907,3457,[3521,9700],[3971,9701],[10084,9506],10180,403,403,403,[403,9505],[3905,9598],[3906,9599],3971,3969,3969,3394,3456,[3919,4037],3983,3983,3983,3920,[3919,3840],[3906,9709],[3906,9710],9997,[3919,9998],[3919,9803],3919,3919,3920,3920,3983,3983,[2767,3985],2829,2765,[2767,3789],3919,3918,3918,[2767,3855,9610],[2768,9703],[2765,9704],[2830,694],[2832,695],2831,[2829,3916],3920,[3983,9805],[3919,9901],9997,[3919,10090],9992,[2767,9896,6],7,8,[2767,9901,9],9997,[3920,9998],[3981,9803],3920,[3919,9610],[3920,9703],[3917,9704],3983,3981,[2767,4045],3918,3919,3920,3919,3920,3918,3983,3920,3918,3920,3983,3983,3920,3983,3981,[2768,3921],2765,2829,[2832,3854],3920,3918,3919,3919,[2830,3856],2829,2767,[2831,9613],[2766,9614],[2829,9515],2832,2830,2832,[2831,3724],[2830,3728],[2831,3729],2767,2766,2832,2829,2829,2831,[2765,9718],[2766,9719],[4097,3979,9620],4097,4097,4192,4097,[4097,3848],3912,3913,3914,[3914,9619],[2370,9808],[2434,9809],2435,2370,2435,2434,2370,2371,2435,2434,2371,2371,[2434,3242],3243,3243,3181,[2435,3055],2434,2371,[2370,2986],[2434,2987],3180,3244,3181,3179,3243,3243,[2370,3247],2434,2371,2435,[2434,9622],[2434,9623],[3914,9620],3914,3913,3911,[4098,3849],4098,[4098,3974],3914,3978,3913,3978,3913,3978,[3977,9814],[3913,9815],[4097,9620],[4097,3974],3914,3977,3913,3977,3914,3914,[3913,9526],[3975,9430],[4097,3719],[4097,3785],[4097,3848],[4097,4039],3912,3914,3914,3914,3914,3977,3913,[3977,9330],[3914,9523,9333],[3978,9616],[3978,9617],3914,3977,3913,[4097,3979],4097,[4097,9520],[4097,3783,9521],[4097,3720],[4097,3721],[4097,3722],[4097,3785],4097,4097,[4097,3783],[4097,3721],[3785,10097],[2370,9712],[2371,9713],2434,2371,2371,2434,2051,2370,2435,2370,2371,[2434,3115],3180,3243,[2434,3055],2435,2371,2434,2435,2434,2370,2371,2434,2371,2434,2434,2370,[2370,9718],[2434,9719],[3911,9524],3912,3978,3913,3975,[4097,3719,9425],[2370,9426],[2371,9429],[2435,9521],2434,2370,2434,2435,2370,2435,2435,2434,[2370,3242],3243,3181,[2435,3053],2435,[2435,9718],[2434,9719],[3913,9620],3914,[4097,3915],4097,4097,[4097,3846],3978,[3914,9523],[2371,9616],[2370,9617],2435,2370,[2434,3115],3244,3180,3180,3181,3244,[2370,3053],2434,2370,[2371,3306],3245,3180,3245,3179,[2434,2987],[2371,2987],[2435,3054],2434,2371,[2434,3052],3181,3245,[2370,3183],2370,2370,[2434,3114],3181,3179,3243,3246,3182,3245,3180,3244,3244,[2435,3309],[2434,3310],[2435,3311],2370,1922,2371,[2370,3051],3180,3179,3245,3243,[3245,9622],[3244,9623],[2370,10102,9524],2370,2371,2050,1923,[2435,3306],[2370,3307],[2370,3308],[2434,3311],2371,2370,2370,2434,[2370,3051],3246,3244,[2371,3307],[2371,3311],[2435,9715],[3179,9616],[3243,9617],3245,3243,[2370,3118],2371,2370,2434,[2434,9814],[2434,9815],[3913,9620],3975,[4097,3723],4097,4097,[4097,3847],3912,3913,3913,3978,[3978,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397,5092],5093,5094,[3906,5095],3457,3907,3906,3969,3908,3906,[3520,9397],[3969,9398,5092],5093,5094,[3520,5095],3907,[3594,3779],3529,3594,[3530,3776,5092],5093,5094,[3971,9499,5095],[3905,9403],3906,3905,3969,3906,[3971,9787],[3906,9883],9979,[3905,9980],3521,3908,3521,3520,3456,3520,3457,3908,3906,3907,3905,3521,3456,3522,3971,[3908,9595],[3456,9596],[9979,9497],[3908,9980],[3907,9785],3458,3520,[3457,9688],9877,[3456,9878],[3969,9782],3971,3908,3908,3458,[3529,3717,9787],[3530,9788],[3529,3840,9593],3907,3522,3906,3907,3458,3456,[3458,9592],[3969,9589],[3971,9590],3650,3651,[3528,3845],3528,[3530,3968],3394,3393,3456,[3456,9796],[3458,9797],[403,9602],403,403,403,403,[403,131],[403,132],[403,133],[403,134],[403,135],[9312,136],[3456,9407,137],[3520,9503],3905,[3592,3844],3594,[3594,3712],[3592,3713],3458,3908,3907,3458,[3593,3972],3906,3457,3520,3907,3908,3908,[3528,3909],[3528,3841],3457,3969,3522,3521,3456,3522,3521,[3457,2881,5988],5989,5990,5991,[3906,2884,5992],3908,3906,[3908,9604],[3907,9605],[10180,9602],403,29,93,403,[403,9601],[3458,9694],[3908,9695],3905,3905,3905,3456,[3983,3781],3920,3920,3983,[3919,3778],[3920,3717],[3983,3904],[3522,9805],[3906,9806],[3981,10093,9515],3920,3920,3919,3919,3983,3983,3983,3919,[2830,3856],2766,[2766,3790],3920,3920,3983,[2832,3985],[2767,9610],[2829,9799],[2829,3790,9800],[2830,3791],2832,[2767,3790],3983,[3920,9805],[3919,9901],9997,[3919,10093],[3983,103,10186],[403,10088],[9992,6],7,8,[9997,9],[2830,165,10093],[2766,3788],3919,3983,[3983,9610],[3919,9799],[3919,9800],3983,[2829,3985],2768,[2765,3788],3919,3920,3919,3983,3983,3919,3920,3920,3920,3919,3919,3983,3981,3919,[2766,3855],2766,2831,2766,[2831,3980],3920,3919,[2831,3855],2768,2768,2765,[2829,3724,9709],[2765,3726,9710],[2766,3727,9611],[2765,3728],[2768,3792],2768,[2832,3854],3919,[2830,3985],2832,2766,2767,2767,2768,2766,[2765,9622],[2766,9623],[3975,9620],[4097,3785],4097,4097,4097,4097,[4097,4038],3912,3977,[3911,9715],9904,[2435,9905],[2370,9809],1922,2434,2370,2371,2371,2434,2370,2370,[2434,3051],3246,3180,3246,3179,[2371,3183],2371,2371,[2370,3050],3179,3181,3245,3245,3181,[2434,3307],[2370,3308],[2371,3117],2370,2434,2371,[2435,9718],[2435,9719],[3913,9620],3914,3978,3975,[4098,3785],[4098,3783],3976,3914,3978,3978,3913,3978,[3914,9814],[3913,9910],9911,[4097,9716],[4097,4038],[4097,4039],3912,3977,3978,3978,3913,3978,[3978,9429],[3913,9430],[4097,3979,9330],[4097,9333],4097,[4097,3782],3977,3914,3977,3914,3977,[3913,9425],[3914,9426],[3914,9429],[3914,9521],3978,3978,3977,3911,[4097,3849],[4097,9523],[4097,9616],[4097,3847,9617],[4097,4039],[4097,4040],[4097,4041],[4097,3850],4097,4097,[4097,3974],3978,[3977,9520],[2435,9521],2435,2434,2371,2434,2434,2370,2434,2371,2371,2434,2435,[2434,3242],3243,[2371,3183],2435,2435,2434,2435,[2371,9814],[2371,9906],[2434,9907],[2371,9809],2434,2114,2434,2370,[2371,9814],[2434,9815],[4097,3849,9620],[4097,3847],[4097,4039],[4097,4040],[3849,9425],[2435,9521],2434,2434,2434,2370,2370,2435,2051,2434,2371,2370,[2435,3052],3180,3244,3245,3244,[2370,2987],[2435,3053,9814],[2434,9815],[3914,9620],3913,[4097,3979],4097,4097,[4097,3910],3913,[3913,9520],[2370,9521],2370,2371,2371,2051,[2371,3050],3244,3179,3246,3180,[2371,3247],2370,2434,2371,[2370,3242],3181,3244,3182,3244,3180,3245,[2370,3053],[2434,3051],3182,3181,3179,[2435,3247],2435,2371,[2371,3178],3246,3245,3179,3245,3246,3243,3245,[2370,3307],[2371,3117],2434,2435,[2434,2986],[2435,3054],2435,2435,[2434,3306],3244,3182,3180,3246,[3244,9718],[3245,9719],[2435,9620],2435,2434,2370,2371,2435,2370,2434,2114,2435,2371,2435,2435,[2371,3242],3246,[2371,3247],2370,2370,[2370,9811],[3182,9712],[3182,9713],3246,[2370,3055],2371,2435,2370,[2371,9814],[2434,9910],9911,[3978,9716],3977,[4097,3979],4097,4096,4097,[4097,3974],3978,3978,[3913,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493,5188],5189,5190,[3905,5191],3905,3521,3906,3520,3392,3521,[3394,9493],[3520,9494,5188],5189,5190,[3520,5191],3456,3456,[3592,3780],3269,[3530,3840,5188],5189,5190,[3908,5191],[3907,9499],[3905,9500],3905,3394,[3906,9595],[3905,9596],[9979,9497],[3969,10075],3906,3969,3908,3908,3456,3522,3457,3969,3458,3456,3521,3457,3456,3907,3456,3908,[3969,9691],[3969,9692],[3522,10075,9593],3458,3520,3906,3907,[3456,9784],[3906,9973],9974,[3906,9878],[3905,8918],[3907,8919],[3456,8920],[3905,9882],[3529,9883],9884,[3594,3904,9689],3907,3456,3520,3906,3905,3458,[3522,9688],[3969,9685],[3520,9686],3906,3456,[3592,3909],3528,[3594,3776],3905,3520,[3522,9700],[3907,9701],[9893,9506],[403,9698],403,403,403,9312,[9312,195],196,197,198,199,200,[3458,9503,201],3458,[3530,3781],3593,3333,[3593,3841],3522,3522,3522,3457,3521,3907,3905,3457,3905,3905,3456,[3594,4036],[3529,4037],3530,[3530,3968],3971,3523,3908,3907,3521,3522,[3456,2945],6085,[2947,6086],6087,2948,[3969,2949],3459,[3457,9700],[3906,9701],[403,9698],403,157,221,403,[403,9601],[3908,9790],[3457,9791],3457,3905,3457,3905,[3983,3845],3919,3983,[3983,3712],[3905,9805],[3521,9897],[3905,9898],[3969,9901],9902,[3917,9707],3983,3983,3919,3920,3919,3920,[2831,4047],[2832,3855],2832,2831,[2831,3980],3981,[2768,4047],[2831,4048,566],[2831,3855,567],[2831,9706],9895,[3920,9896],[3919,9897],[2766,3792,9898],[2832,3980,9899],[3983,9900],[3983,9901],9997,[3919,10093],3920,[3983,167],403,[403,10088,6],7,8,[403,10093,9],[2767,229],[2831,3852,230],[3920,174],3919,[3919,9706],9895,[3919,9896],[3920,9897],[2832,3855,9898],[2831,9800],[2831,3852],3920,3919,[2766,4046],[2768,4047],[2830,4048],3920,3983,3919,3919,3983,3919,3920,3918,3983,[2830,3792],2829,2829,2765,[2765,3853],[2832,4047],[2832,3855],2767,2830,2767,2831,[2832,3980,9805],[3919,9806],[3981,9611],3983,3983,[2832,3729],[2768,3790],3920,3918,[2829,3792],[2767,3790],[2831,3729],2766,2831,2766,[2768,9718],[2766,9719],[3977,9716],3975,[4097,3720],[4097,3721],[4097,3722],[4097,3785],4097,[4097,3974],3913,[4097,3787,9811],[4097,10000],10001,[2370,9616],[2370,9617],2370,2370,2371,2371,2371,2371,[2371,2986],3246,3179,3179,3245,[2370,3309],[2434,3311],2434,2435,[2434,3178],3243,3181,3244,3180,[2370,3117],2370,2370,2371,2371,[2371,9814],[2435,9908],[2435,9909],[2434,9815],[3977,9620],3913,3914,3978,3975,3976,3914,3911,[4097,4039],[4097,4040],[4097,4041],[4097,4042,9622],[4097,4039,9623],10006,[3975,10007],[4097,3786,9812],4097,4097,[4097,3974],3978,3977,3914,3913,3913,3977,[3977,9526],[3914,9426],[3978,9429],[4097,9430],[4097,3846],3913,3977,3978,3978,[3914,9520],[4097,3847,9521],3912,3977,3911,3912,3977,3913,[4097,3979],4097,[4097,9715],[4097,9712],[4097,9713],4097,4097,4097,4097,4097,4097,[4097,3974],3977,[2371,9712],[2434,9713],2434,2370,2370,2370,2435,2370,2371,2435,2435,2371,2434,[2434,3306],3243,[3182,9814],[2435,3053,9906],[2435,9907],[2434,9908],[2435,9909],[2434,9910],10002,10003,[2370,9905],[2370,9906],[2434,9907],[2435,9908],[2371,9909],[2370,9910],9911,[4097,3785,9716],4097,4097,[4097,9520],[2435,9521],2371,2434,2435,2370,2371,1987,2435,2370,2370,2371,[2435,3051],3246,3245,[2434,3307],[1923,3308],[1986,3309],[2434,3310,9814],[3244,9910],9911,[4097,3847,9716],[4097,4042],[4097,4043],4097,4097,[4097,3974],[3978,9523],[2370,9616],[2370,9617],2434,2434,2371,2434,[2371,3114],3180,3243,3245,3180,3181,[2370,3053],2371,2370,[2370,3115],[2434,3307],3244,3181,3244,3179,3245,3245,3245,3179,3182,[2435,3310],[2435,3118],2370,[2370,3051],3180,3180,3180,3246,3179,3244,[2371,3310],[2434,3117],1987,2434,2435,2435,[2435,3050],[2370,3055],2435,2371,2371,[2370,3115],[2434,3309],3182,3179,[3245,9814],[3180,9815],[2370,9620],2434,2371,2371,2370,2435,2371,2371,2050,1922,2371,2434,2435,[2435,3306],[2370,3307],[2434,3117],2435,2435,[2434,9425],[3182,9521],3246,3244,[2371,3183],2371,2434,[2435,9718],[2434,9719],10006,[4097,3847,10007],[3912,9812],3978,3975,[4097,3785],4097,4097,[4097,3848],[4097,4040],[4097,4041],[4097,4042,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3908,9589,5284],[3521,9590,5285],[3908,5286],[3907,5287],3908,3458,3522,3520,3456,3392,[3394,9589],[3458,9590,5284],[3392,5285],[3458,5286],[3456,5287],3393,3456,[3269,3844],3333,[3593,3904,5284],[3907,5285],[3529,3970,5286],[3906,5287],[3906,9595],[3905,9596],[3907,9497],3969,[3971,9691],[3394,9692],[3905,10075,9593],3457,3520,3456,3969,3908,3392,3456,3907,3521,3905,3905,3520,3908,3971,3907,3906,3522,[3908,9595],[3908,9596],[3906,9593],3394,3521,3908,3457,3458,3907,[3905,10070],9974,9014,9015,9016,9978,9979,[3530,9980],[3592,4032,9785],3971,3906,3905,3908,3907,3907,[3520,9493],[3969,9494],3907,3908,3457,[3594,3973],3592,[3593,3840],3456,3971,[3905,9796],[3908,9797],[9989,9602],[403,9794],403,403,[3906,9407],[3905,9408],[3969,9408,259],260,261,262,263,264,[3971,265],3392,[3593,3909],3530,3529,[3529,3777],3969,3907,3905,3520,3588,3589,3521,3458,3457,3907,[3530,3844],3530,3332,[3594,3777],3971,3971,3521,3906,3457,3456,[3908,3008],[3905,3009],[3010,6181],[3011,6182],[3012,6183],3076,[3905,3077],3457,3458,[3906,9508],[3521,9412],403,403,403,403,[403,9697],9886,[3906,9887],[3907,9791],3520,3521,3906,[3920,3909],3920,[3983,3778],[3905,9805],[3906,9901],9993,9994,9997,[3983,9998],[3920,9803],3917,3983,3919,3983,3919,[2767,3985],2768,2767,2829,2831,[2767,4044],[2831,3855],2765,[2829,630],[2765,631],[2766,3790,9802],[3920,9991],9992,9993,9994,9995,9996,9997,[3919,10093],3919,3919,3919,[3919,39],[403,6],7,8,[403,9],403,403,[3919,101],3917,[3918,9802],[3919,9991],9992,9993,9994,[2831,9896],[2767,3916,9800],3918,[2832,3856],2768,2831,2768,[2768,3788],3983,3920,3919,3983,3983,3983,3919,3983,3917,[2830,3791],2768,2829,2829,2765,[2766,9805],[2767,9897],[2831,9898],[2768,9899],[2829,3790,9900],[3919,9901],9902,[3920,9707],3983,3983,3920,3919,[2765,4047],[2765,4048],3919,3920,[2829,3793],2831,2831,2831,2830,[2831,9526],[3913,9812,9527],3977,3914,3914,3914,3975,[4097,3719],3976,3914,[4097,3851],4097,[4097,10097,9523],[2371,9712],[2371,9713],2371,2371,2370,2434,2435,2435,[2370,3050],3244,3180,3245,[2370,3118],2434,2434,2370,2435,[2371,3115],[2371,3307],[2371,3308],3246,[2371,3247],2371,2371,1923,2370,[2434,9814],[2434,9910],10004,10005,9911,[3912,9716],3977,3978,3977,3977,3911,[4097,4040],[4097,3849],4097,4097,4097,[4097,9718],[4097,9719],[3914,10102,9524],3913,[4097,3979],4097,4097,[4097,3847],3912,3977,3977,3911,[4097,4039],[4097,4039],3912,3914,[3913,9718],[3977,9719],[4097,3910,9524,9330],[3977,8276],[3977,8277],8278,[3977,9523,9333],[4097,9616],[4097,9617],[4097,3848],[4097,4039],[4097,3849],[4097,3974],3978,3911,[4097,3850],4097,[4097,9425],[4097,9521],4097,[4097,3718],[4097,3785],4097,4097,4097,[4097,3783],3976,[3913,9425],[2370,9521],2371,2371,2434,2434,2370,2370,2371,2434,2371,2370,2371,2435,2434,[2434,3116,9814],[3246,9910],10002,10003,10004,10005,10006,[4097,10098],[4097,10099],10001,10002,10003,10004,10005,10006,[3978,10007],[3975,9812],[4097,3723],[4097,9523],[3977,9616],[2371,9617],2370,2434,2370,2371,2435,2370,2434,2371,2434,2434,[2435,3050],3246,[2371,3118],2370,2435,[2370,9622],[2435,9623],10006,[4097,10007],[4097,9812],4097,4097,4097,[4097,3783],3976,[3913,9619],[2370,9712],[2370,9713],2370,2434,2435,2435,[2434,3178],3182,3181,3243,3180,3246,[2371,3247],2370,2434,2370,2370,[2371,3306],[2435,3309],3244,3181,3179,3244,3179,3182,[2370,3118],2371,2371,2370,[2435,3242],3245,3244,3180,3244,[2435,3308],[2434,3311],2434,2371,2370,2435,2371,2370,[2371,3178],[2370,3119],2435,[2434,3051],[2435,3053],2434,2370,[2435,3115],[3244,9814],[3182,9910],9911,[2434,9716],2370,2435,2434,2370,2370,2434,2435,2370,2434,2370,2434,2370,[2434,9330],[2371,9331],[2371,9332],[2435,9333],[2371,9520],[3246,9521],3246,3182,3245,3245,[2434,3053],2371,[2434,9622],[2435,9623],[4097,10102,9524],4097,[4097,3974],3978,3913,3975,[4097,3719],[4097,3785],4097,4097,4097,[4097,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3458,9685,5380],[3908,9686,5381],[3521,5382],[3907,5383],3521,3458,3969,3393,3456,3394,[3394,9685],[3907,9686,5380],[3907,5381],[3907,5382],[3456,5383],3392,[3593,3781],3527,3528,[3593,3968,5380],[3907,5381],[3529,3972,5382],[3908,5383],[3907,9691],[3905,9692],[3394,9593],3971,[3969,9595],[3521,9596],[3908,9593],3521,3905,3908,3586,3587,3905,3456,3456,[3457,3461],3907,3458,3457,3971,3908,3907,3907,3521,[3521,9691],[3459,9692],[3456,9593],3907,3522,3458,3907,3908,3905,3969,[3969,10070],[3521,9110],[3969,9111],[3905,9112],[3456,10074],[3530,3779,10075],3593,3268,[3528,3776],3456,3908,3906,3520,[3520,9496],[3522,9589],[3457,9590],3969,3908,3521,[3528,3843],3530,[3593,3904],3908,[3907,9796],[3456,9892],9893,[403,9698],403,403,[3905,9502],[3905,9503],3522,[3971,323],324,325,326,327,328,[3905,329],[3593,4035],[3530,3844],[3529,3777],[3592,3713],3969,3905,3906,3908,3458,3652,3653,3457,3969,3458,3521,[3530,3780],3332,3530,[3594,3841],[3593,4033],[3530,4034],[3529,4035],[3529,4036],[3528,4033],3520,[3521,3072],[3458,3073],3074,3075,3076,[3969,3140],[3456,3141],3456,3907,3905,[3906,9508],[3969,9509],403,403,403,[403,9793],9982,9983,[3905,9598],[3458,9599],3522,3969,3520,[3920,3713],[3908,9805],[3908,9901],9997,[3918,10089],[3983,10090],[3919,10093],3983,3919,3920,3919,3920,3983,3920,3919,[2832,3792],2830,2832,2831,2832,2766,2829,[2768,694],[2831,695],[2766,3788],3918,[3918,10088],[3919,10089],[3983,10090],[3919,10091],[3983,10092],[3920,10093],3920,3983,3919,3983,[3983,167],[403,6],7,8,[403,9],403,403,[3983,165],3919,3983,3919,[2829,3856,10088],[2832,10089],[2831,10090],9992,[3919,9896],[2765,3855,9800],2767,2830,2766,2832,[2829,3852],3920,3983,3919,3983,3919,3920,3920,3919,3920,[2766,3985],2830,2768,2766,[2829,9805],[2829,9901],9993,9994,9995,9996,9997,[3920,9998],[3918,9803],3917,3920,3983,[2831,3856],[2831,953],[2830,954],[2767,3854,955],3919,[2830,3857],2767,2831,2832,2830,[2767,9622],[2765,9623],[3914,9524],3914,3977,3977,3914,3913,3914,3913,[4097,3915],4097,[4097,9619],[2435,9808],[2370,9809],2370,2435,2370,2371,2370,2434,[2370,3178],3245,3182,[2434,3055],2435,2370,2371,2371,2435,2434,2435,2435,[2370,3115],[2435,3311],2371,2434,2434,[2434,9814],[2434,9910],10006,[4097,10100],[4097,10101],[4097,10007],[4097,3847,9812],3912,3977,3914,3914,[4097,3787],4097,[4097,3783],[4097,3719],[4097,3720],[4097,3722],[4097,3723,9622],[4097,9623],[3978,9620],3977,3975,[4097,3719],[4097,3720],[4097,3722],3976,3978,3911,[4097,3849],4097,[4097,3784],3976,3978,3914,[3978,9526],[3914,9426],[3911,8372],8373,[3913,8374],[3977,9429],[3975,9521],[4097,3785],4097,4097,4097,[4097,3974],3913,[4097,3979],4097,[4097,9520],[4097,3719,9521],[4097,3785],[4097,3783],3976,3975,[4097,3720],[4097,3721],[4097,3722],3976,[3914,9520],[2434,9521],2370,2051,2435,2434,2370,2371,2434,2371,2371,1986,2434,[2371,6],7,8,[2371,9910,9],10006,[3913,10098],[3914,10099],[3914,10100],[3914,10101],[4097,3851,10102],[4097,10194],[4097,10195],[4097,3782,10097],[3913,10098],[3978,10099],[3977,10100],[3913,10101],[3913,10102],3913,3913,3975,[4097,3719,9619],[2435,9712],[2371,9713],2370,2434,2370,2434,2435,2435,2435,2371,2434,2370,[2370,3114],[2434,3055],2050,2371,2434,[2051,9718],[2371,9719],[4097,10102,9524],4097,4097,4097,4097,4097,[4097,3782],3913,[3913,9619],[2435,9616],[2370,9617],2371,2434,2434,2371,[2370,3242],3246,3181,3245,3246,3180,3179,[2370,2988],[2435,2989],[2435,2990],[2435,3053],2434,2435,[2435,3306],[2371,3307],3246,3245,3182,3180,[2435,3054],2435,2434,[2371,3052],3182,3244,3243,3245,[2434,3117],2435,2371,2371,2371,2435,[2370,3051],[2434,2988],[2370,2990],3243,[2371,3183],2371,[2434,3050],3182,[2371,2987],[2435,3054],[2434,3051,9622],[3181,9623],10006,[2371,10007],[2370,9812],2371,2371,2371,2434,2370,2371,2435,2434,2434,2435,2371,[2435,9425],[3180,9426],[3244,9427],[3180,9428],[2370,9429],[2371,3114,9521],3182,3180,3243,3179,3179,3246,[2435,2987],[2371,3053,9718],[2435,9719],[4097,9620],4097,[4097,4038],[4097,4039],3912,3913,3914,3975,[4097,3719],[4097,3785],[4097,3784,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3908,9781,5476],[3457,9782,5477],[3907,5478],[3907,5479],3907,3906,3907,3521,3907,3457,[3393,9781],[3907,9782,5476],[3393,5477],[3394,5478],[3908,5479],3393,[3592,3845],3594,3594,[3594,3841,5476],[3529,3972,5477],[3529,3972,5478],[3907,5479],[3907,9787],[3907,9788],[3907,9593],3392,[3906,9691],[3969,9692],[3906,9593],3520,3969,3905,3650,3651,3969,3971,3458,3906,3458,3908,3457,3905,3907,3457,3457,3522,[3971,9595],[3908,9596],[3969,9593],3456,3908,3908,3456,3456,3906,3520,3907,[3906,9206],[3457,9207],[3969,9208],[3456,10170],3522,[3529,3717],3530,[3530,3840],3522,3457,3458,3520,[3905,9592],[3522,9685],[3971,9686],3392,3522,[3593,3781],3528,3593,[3529,3968],[3456,9796],[3520,9892],9988,9989,[403,9794],403,[403,9505],[3905,9598],[3907,9599],3457,[3907,387],388,389,390,391,392,[3593,3781,393],3593,3594,[3332,3776],3457,3520,3520,3522,3457,3971,3969,3971,3969,3522,3521,[3593,3970],3907,[3530,3713],[3529,3717],3528,3529,3530,3528,3528,3592,[3593,3968],3906,[3594,4035,3137],3138,3139,[3907,3140],[3907,3204],3907,3906,3969,3520,[3908,9604],[3971,9605],[403,9506],403,403,403,403,[10079,9505],[3905,9694],[3456,9695],3971,[3520,3461],3457,[3906,9613],[3969,9614],9997,[3981,10093],[3983,10185],[3919,10186],3983,3918,3919,3920,3918,3919,3983,3983,[2766,4047],[2832,4049],2829,2765,2765,2832,2831,2831,2831,2830,[2768,3916],3983,3920,[3919,10185],[3983,10186],[3983,10187],[3919,10188],3920,3983,3981,3920,3919,[3983,103],[403,6],7,8,[403,9],403,403,[3920,165,9321],[3920,9324],3920,[2829,3855],2831,[2830,10185],[2765,10186],[2832,10088],9992,[2768,9703],[2768,9704],2831,2766,2767,[2832,3916],3919,3919,3917,3919,3917,3983,3920,3983,[2765,4046],[2831,4049],2831,[2767,3724],[2767,3791,9805],[2829,9901],9997,[2829,3727,10089],[2829,3728,10090],[3983,10091],[3919,10092],[3983,10093],3919,3920,3919,3919,3983,[2832,3725],[2767,3729,1017],1018,[2831,1019],[2829,3788],[2765,3921],2767,2831,2766,2832,[2767,9718],[2767,9719],[3978,9620],3914,3978,3913,3978,3977,3911,[4097,4041],[4097,3849],4097,[4097,3718,9715],9904,[2435,9905],[2435,9809],2371,2434,2435,2371,[2435,3051],3180,3182,3181,[2370,3183],2435,2370,2371,1986,2434,2371,2370,2434,2435,2434,2371,2371,[2370,9814],[2434,9910],10006,[3975,10102],[4097,3785,10196],[4097,10197],4097,4097,[4097,3782],3978,3914,3914,[4097,3851],4097,[4097,3974],3977,3914,3978,[3975,9718],[3914,9719],[3978,9716],3977,3978,3977,3913,3913,3978,3913,3975,[4097,3786],4096,[4097,3974],3978,3914,3978,3978,3977,[4097,3979],4097,[4097,3974],3913,3914,3975,[4097,3720],[4097,3721],[4097,3722],3976,3914,3975,[4097,3785,9523],[3914,9616],[3914,9617],3975,3976,3914,3914,3977,3913,3914,[3914,9523],[2370,9712],[2435,9713],2434,2435,2435,2370,2434,2370,2371,2370,2371,2370,2371,[2371,9814,6],7,8,[10006,9],[3977,10102],[3913,10194],[3977,10195],[3978,10196],[3914,10197],[4097,3915],4097,4097,[4097,3846],[3977,10194],[3977,10195],[3913,10196],[3978,10197],3913,3977,3977,3914,[3913,9619],[2371,9616],[2434,9617],2434,2371,2435,2371,2435,2434,2434,2370,2051,2371,[2434,3178],[2371,3119],2371,2371,2370,[2434,9718],[2434,9719],[4097,3719,9620],[4097,3720],[4097,3721],[4097,3722],[4097,3723],4097,[4097,3910],3978,[3978,9715],[2370,9712],[2370,9713],2435,2370,2435,[2370,3051],3181,3182,3245,3245,3180,3246,3245,3179,3179,3244,3243,[2435,2987],[2434,3054],2434,2434,[2371,3115],[2370,3308],[2370,3309],[2434,3310],[2434,3311],2434,[2370,2986],3245,3243,3179,[2435,3310],[2370,3311],2435,2371,2435,2435,[2434,2986],[2371,2987],3180,3182,3180,3245,[2435,3055],2434,[2434,3114],3244,3245,3243,[3179,9718],[3179,9719],[2434,10102],2434,2371,2114,2435,2371,2370,2434,2371,2434,2370,[2371,9330],[2371,9333],[2434,9520],[3179,9521],3246,3246,[2371,3055],2371,[2370,3178],3243,3246,3244,3182,3181,3244,3243,3246,[3246,9526],[4097,9527],4097,4097,4097,[4097,3974],3977,3978,3978,3914,3975,[3976,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3521,9878],[3521,9782],3905,3521,3908,3906,3906,3907,3456,9877,[3969,9878],[3458,9879],[3456,9880],[3394,9782],3457,[3591,3909],3269,3592,3529,[3594,3842],3971,[3905,9787],[3907,9883],9884,[3458,9689],3521,[3907,9595],[3908,9596],[3908,9593],3907,3522,3458,3458,3907,3457,3521,3908,3456,3907,3522,3456,3458,3458,3971,3905,3906,[3969,9691],[3521,9692],[3521,9689],3971,3969,3907,3905,[3905,3461],3906,3969,3906,3458,3969,3522,3908,3456,[3528,4037],3594,[3528,3904],3907,3588,3589,3522,[3971,9592],[3906,9589],[3905,9590],3906,3969,[3592,3909],3594,[3592,3777],[3522,9604],[3908,9605],9988,10084,403,403,403,[403,9697],[3522,9694],[3522,9695],3971,[3522,451],452,1536,1537,1538,456,[3592,3909,457],3594,3594,[3593,3840],3459,[3593,3972],3394,3458,3522,3456,3521,3905,3521,3905,3459,3907,3522,3906,3969,[3529,3713],[3530,3779],3594,3268,3592,3593,[3594,4032],[3530,4037],3592,[3592,3712,3202],[3907,3203],[3906,3204],3971,3520,3521,3908,3458,[3456,9700],[3969,9701],[403,9602],403,403,146,403,[403,9505,9601],[3906,9598],[3457,9599],3908,3520,3522,[3971,9709],[3908,9710],[3981,10093,9515],3983,3920,3920,3983,3919,3919,3919,3920,3981,3981,[2768,3855],2768,2768,2830,2765,2829,2832,[2831,3790],[2765,3725],[2830,3726],[2765,3727],3920,3981,3983,3919,3983,3919,3919,3919,3920,3918,[3983,9321],[3919,9324],[3919,167],[403,6],7,8,[403,9],403,[403,9416],[3920,9417],[3920,9420],[3919,9518],[2831,3791],2829,2766,2830,2830,[2765,10088],[2765,9607],[2766,9608],2768,2830,[2831,3790],3919,3919,3919,3919,3920,3919,3920,3920,[2767,3793],2830,2765,2766,[2766,3788,9709],[3920,9710],9997,[3919,10093],[3917,10185],[3983,10186],[3920,10187],[3983,10188],3920,3983,3919,3919,3983,3917,3919,[2765,3793,1081],1082,[2768,1083],[2830,3852],3983,[2829,3729],2832,2767,2765,[2832,9622],[2766,9623],[3977,9620],3977,3913,3914,3914,3911,[4097,3849],4097,4096,4097,[4097,3974,9811],[3978,10000],10001,[2370,9712],[2370,9713],2434,2435,2371,[2434,3116],[2434,3308],[2435,3309],[2435,3310],[2435,3311],2435,[2434,9814],[2434,9809],2434,2370,2370,2435,2371,2435,2434,2435,[2435,9622],[2371,9623],10006,[4097,4040,10102],[4097,4041],[4097,4043],4097,4097,4097,[4097,3910],3913,3914,3978,[4097,3915],4097,[4097,4038],[4097,4039],3912,3977,3978,[3978,9526],[3914,9527],3977,3914,3913,3977,3978,3977,3913,3914,3975,[4097,3719],3976,3977,3913,3914,3978,3977,[4097,3979],4097,[4097,4038],[4097,4039],[4097,4040],3912,3977,3978,3913,[3913,9330],[3977,9331],[3977,9332],[3975,9715,9333],[3977,9712],[3977,9713],3977,3911,[4097,4039],[4097,4040],[4097,4039],[4097,4040],[4097,4041],[4097,4042,9619],[2370,9808],[2435,9809],2370,2370,2434,2371,2434,2435,2435,2435,2370,2435,[2434,9814],[2371,9910,6],7,8,[3978,10102,9],3977,3977,3914,[3914,9330],[3914,9333],[4097,3979],4097,4097,[4097,3910],[3913,9330],[3913,9332],[3978,9333],3914,3977,3911,[4097,4040],[4097,4041],[4097,4042,9619],[2435,9712],[2435,9713],2435,2435,2435,2371,2370,2434,2370,2371,2435,[2435,3052],3246,[2370,3183],2434,2434,2371,[2370,9718],[2435,9719],[3914,9620],3978,3914,3977,[4097,3787],4097,[4097,4038],[4097,4039],[4097,3849,9520],[2435,9521],2370,2371,2370,2371,[2371,3242],3179,3245,3180,3182,3179,3179,3246,3243,3180,3182,3243,[2434,3307],[2371,3311],2371,2435,2370,2370,2370,2370,2434,2371,[2371,3306],[2371,3307],[2371,3308],[2371,3117],2371,2370,2370,2435,[2370,3051],[2370,2987],3179,3180,3181,3182,3179,3243,[2434,3119],2371,[2370,3178],3182,3180,3244,3246,[3245,9429],[2435,9430],2434,2370,2434,2434,2371,2371,2435,2370,2371,[2371,9425],[2370,9426],[2435,9429],[2371,3114,9521],3246,3244,3180,[2370,3183],2370,[2434,3242],3181,3243,3182,3182,3181,3181,3244,3179,3180,[3243,9526],[4097,9527],4097,[4097,3783],3976,3914,3913,3977,3911,[4097,4041],[4097,4042,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3521,9589],[3907,9590],3456,3393,3392,3521,3393,3521,[3522,9973,4996],[9974,4997],[9975,4998],9976,[3521,9878],3458,[3529,3973],3594,3529,3593,3528,[3529,3968,9691],[3907,9692],[9979,9497],[3908,9980],[3969,9785],3971,[3522,9691],[3971,9692],[3905,9593],3907,3522,3457,3907,3905,3456,3523,3521,3456,3908,3969,3520,3456,3522,3521,3971,3905,3458,[3908,9499],[3520,9500],3457,3969,3905,3520,3520,3969,3907,3521,3906,3969,3522,3969,[3593,3844],3594,3528,[3528,3968],3969,3652,3653,3521,[3971,9592],[3456,9685],[3521,9686],3971,[3593,4035],[3530,3844],3530,[3530,3968],[3520,9700],[3457,9701],[10084,9506],403,403,285,403,[3906,9407],[3521,9503],3907,3969,[3521,515],516,1600,1601,1602,520,[3529,3844,521],3530,3332,[3528,3904],3969,3520,3971,3392,3456,3907,3969,3971,3520,3456,3456,3908,3906,3521,3522,3522,3520,[3530,3713],[3594,3717],3593,3528,3528,3594,3594,[3593,4032],3522,3908,3458,3969,3906,3456,3522,[3969,9604],[3908,9605],[403,9602],403,403,403,403,[403,9697,9697],[3907,9694],[3520,9695],3458,3394,3521,[3919,4033,9709],[3908,9710],[3920,9611,9321],[3983,9324],3919,3920,3917,3920,3920,3983,3983,[2829,4047],[2767,3856],2767,2831,[2765,3789],[2829,3729],2765,2829,2830,[2830,3980],3983,3918,3983,3983,3920,3920,3920,3983,3919,3983,3919,3983,[3919,9416],[3983,9417],[3920,9420],[3983,167,9421],[403,9321,6],7,8,[403,9324,9],[403,9511],[3983,9512],3918,[3919,9709],[3919,9710],[2829,3793,9515],2765,2767,2830,2832,2767,[2768,9703],[2832,9704],2831,2767,[2830,3980],3919,3919,3919,3919,3983,3918,3918,3920,[2765,3857],2768,2830,2829,[2830,3852,9613],[3920,9614],[3920,10093,9515],3920,3981,3983,3920,3920,3920,3917,3918,3920,3983,3920,3983,[2766,3921,1145],[2767,1146],[2767,1147],[2766,3916],3983,[2831,3793],2768,2765,2767,[2766,9718],[2767,9719],[4097,4041,9620],[4097,4042],3912,3978,3914,[4097,3787],4097,4097,4097,[4097,3784],[3976,4249],3913,[3914,10097,9523],[2435,9616],[2371,9617],2371,2434,2370,2371,2370,2435,[2434,9814],[2371,9906],[2370,9907],[2434,9910],[2434,9905],[2434,9906],[2370,9907],[2435,9908],[2434,9909],[2370,9809],2435,1923,2434,[2371,9718],[2434,9719],[4097,10102,9524],4097,4097,4097,4097,[4097,3718],[4097,3719],3976,3978,3914,3914,3975,[4097,3785],4097,4097,[4097,3848],[4097,4040],[4097,4041],[4097,4042,9622],[3914,9623],[3978,9524],3977,3914,3978,3911,[4097,4039],3912,3913,3914,3978,3978,3977,3977,3977,[3977,9330],[3913,9331],[4097,3787,9332],[4097,9333],4097,4097,[4097,3784],3976,3913,3914,[3977,9425],[4097,3910,9426],[3977,9427],[3913,9428],[3977,9429],[3913,9521],3913,3914,[4097,3979],4097,4097,4097,4097,4097,[4097,9715],9904,[2434,9712],[2371,9713],2435,2435,2434,2434,2435,2435,2370,2435,[2370,9622],[2435,9623],[10006,6],7,8,[4097,4039,9],3912,3913,[3914,9520],[2434,9426],[2435,9429],[4097,3849,9527],[4097,9330],[4097,9333],[4097,3974,9425],[2371,9426],[2435,9428],[2434,9429],[3913,9430],3911,[4097,3849],4097,4097,[4097,9619],[2371,9808],[2371,9809],2370,2051,2370,2371,2435,[2435,3051],[2371,2988],[2371,2989],[2435,2990],3243,3180,3179,[2370,3053],2371,2434,[2371,9814],[2435,9815],[3914,9620],3978,3978,3914,[4097,3915],4097,4097,[4097,9523],[2370,9616],[2371,9617],2435,2371,2434,[2434,3052],3180,3244,3180,3244,3246,3243,3181,[2434,3307],[2370,3308],[2434,3309],[2434,3310],[2371,3117],2434,2370,[2434,3051],[2434,2987],[2434,3053],2370,2371,2178,2370,2434,2370,2435,2434,2370,[2370,3051],[2370,2987],[2370,3053],2371,[2435,3306],3181,3245,3182,3182,3244,3182,3243,[2435,3183],2435,[2435,3242],3243,3179,3246,3245,3180,[3245,9526],[2370,9527],[2370,9330],[2435,9332],[2370,9333],[2370,9330],[2371,9331],[2370,9332],[2371,9333],[2371,9425],[2434,3183,9521],2370,2434,[2434,3178],3180,3181,3244,3246,[2434,3054],[2370,3306],[2371,3309],[2435,3310],3180,3244,3179,3179,3245,3246,3245,[2370,3055,9622],[2371,9623],[4097,3784,9524],3976,3977,3913,3978,3911,[4097,3850],4097,[4097,9715],9904,9905,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3456,9685],[3520,9686],3907,3907,3392,3392,3521,3521,[3521,5092],5093,5094,[3520,10072,5095],9974,[3593,4036,9589],[3528,4037,9590],3527,3528,3593,[3528,3777],[3905,9595],[3907,9596],[3907,10075,9593],3969,3971,3971,[3971,9787],[3456,9788],[3906,9593],3969,3458,3971,3457,3521,3457,3520,3520,3458,3905,3521,3969,3394,3906,3971,3905,3908,3908,3521,[3906,9499],[3457,9500],3907,3971,3520,3969,3458,3456,3907,3971,3908,3907,[3529,3781,9303],[3592,9304],[3333,9305],[3592,9306],[3529,3841],[3592,4033],[3594,4034],3522,3971,[3530,4034,9592],[3592,4035,9781],[3528,4036,9782],[3594,3844],3594,3530,[3529,3712],3971,[3971,9604],[3521,9605],[403,9602],403,403,403,[3908,9502],[3905,9503],3393,3969,3456,[3529,3843,579],[3594,580],[3529,1664],[3268,1665],[3592,1666],[3593,584],[3530,585],3268,3528,[3528,3968],3907,3522,3907,3522,3971,3521,[3520,3461],3521,3905,[3457,9796],[3905,9890],[3522,9891],[3458,9791],3907,3457,3457,3521,3971,3456,[3594,3780],[3592,3778],[3592,3713],[3528,3717],3332,3528,[3529,3968],3907,3456,3394,3969,3905,3458,[3905,9700],[3392,9701],[403,9602],403,403,403,403,[3908,9502],[3456,9503],3969,3521,3908,[3983,3781],3920,[3983,3968,9517],[3520,9417],[3520,9420],[3983,9421],3918,3919,3917,3983,3920,[2768,3793],[2831,566],[2829,567],2767,2832,[2767,3980],[2832,3985],2830,2829,[2829,3789],3919,3920,3920,3917,3983,3983,3920,3917,3981,3920,3920,3983,[3920,9416],[3919,9512],3920,3919,[3983,9517],[3981,9417,6],7,8,[3983,9420,9],[3920,9512],3983,3920,[3981,9805],[3981,9806],[2831,3857,9611],2765,2831,2767,2767,2765,[2831,9799],[2831,9800],2767,[2831,3724],3920,3920,3919,3920,3983,3919,3920,3983,3920,[2768,3921],2768,2768,2829,[2765,3916,9709],[3920,9710],[3918,9611],3920,3981,3920,3920,3919,3981,3981,3983,3983,3981,3917,3983,3919,[2832,3791],[2766,3724],3919,3919,[2765,3857],2831,2768,2831,[2832,9814],[2767,9815],[4097,9620],4097,[4097,3847],3912,3913,[4097,3915],4097,[4097,3784],[4097,3719],[3976,4344],[3913,4345],[3977,4346],[3977,9619],[2435,9712],[2370,9713],1986,2371,2371,[2435,9814],[2371,9906],[2435,9907],[2434,9910],10002,10003,10006,10001,10002,10003,10004,10005,[2434,9905],[2434,9906],[2434,9907],[2435,9908],[2371,9909],[2434,9815],[4097,9620],4097,4097,4097,[4097,3784],3976,3978,3913,3913,3913,3977,3913,3975,[4097,3723],4096,4097,4097,4097,[4097,9718],[4097,9719],[3914,9716],3913,3914,3911,[4097,3849],4097,[4097,3974],3913,3977,3977,3977,3978,3977,[3978,9425],[3977,9426],[3914,9427],[3914,9428],[4097,3786,9429],[4097,3783,9430],[4097,3719,9330],[3976,9331],[3913,9332],[3977,9333],[3913,9520],[4097,9521],[4097,3974],3978,3913,3914,3913,3977,3911,[4097,3849],4097,4097,[4097,3784],[4097,3719],[4097,3785],[4097,9811],[4097,3784,10000],[2435,9712],[2371,9713],1922,2434,2370,2435,2434,2434,2178,2435,[2434,9718],[2435,9719],[3914,10102,6],7,8,[4097,9],[4097,4038],[4097,4040,9523],[2371,9616],[2370,9617],2434,[2370,9526],[2371,9426],[2434,9429],[2435,9521],2370,2051,2370,[2434,9526],[4097,3979,9527],4097,4096,4097,[4097,3784,9715],9904,[2370,9905],[2435,9809],2434,2370,2434,2371,[2371,3242],3246,3182,[2371,3309],[2370,3310],[2435,3307],[2370,3308],3244,[2435,2987],[2435,3053,9622],[2434,9623],9911,[3914,9716],3978,3913,3911,[4097,3849],4097,4097,[4097,9619],[2371,9712],[2371,2987,9713],[2435,2988],[2435,2989],[2371,2990],3243,3182,3243,3244,3179,3246,3180,[2370,3247],2371,2371,2371,2435,2114,2371,2435,[2370,3242],3244,3246,[2370,2987],[2370,2988],[2435,2989],[2371,2990],[2434,3053],2435,2371,2434,[2371,2986],3245,3243,3180,[2435,3054],2370,[2434,3115],3181,3244,3245,3243,3245,3243,[2434,3247],2435,[2434,3115],[2371,3307],[2371,3310],3246,3245,3246,3181,[3182,9526],[3181,9426],[3181,9428],[2371,3311,9429],[2370,9426],[2434,9427],[2370,9428],[3245,9429],[3244,9521],[2435,3247],2371,2435,[2434,3242],3245,3179,3181,3180,[2370,3247],2370,2434,2371,[2371,3306],3245,3180,3243,3181,3244,3243,[2434,3119,9718],[2370,9719],[3977,9620],3977,3914,3911,[4097,4039],[4097,4043],4097,4097,[4097,3783,9811],[3976,10000],10001,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3458,9589],[3905,9590],3392,3907,3458,3520,3969,3394,[3906,5188],5189,5190,[3905,10168,5191],[3458,10070],[3591,9685],[3591,9686],3594,3593,[3594,3712],[3529,3970],[3905,9691],[3905,9692],[3392,9593],3907,3907,[3969,9787],[3971,9883],9884,[3456,9689],3906,3905,3457,3969,3971,3458,3521,3521,3456,3458,3520,3457,3908,3971,3520,3456,3521,3520,3520,[3906,9595],[3458,9596],[3521,9497],3969,3908,3393,3908,3906,3971,3458,3969,[3905,9493],[3907,9399],[3971,9400],[3969,9401],[3522,9402],[3530,9403],[3530,9303],3528,[3593,3842],[3529,3843],[3594,9688],9877,[3594,9878],[3592,9782],3593,[3594,3777],3907,3457,[3971,9700],[3906,9701],[403,9698],403,403,[3905,9502],[3907,9503],3456,3969,3969,3969,[3530,3780],3593,3333,3593,3530,3593,3593,3530,[3528,3778],3522,3905,3522,3522,3905,3907,3969,[3457,9796],[3520,9890],[3908,9891],[3969,9892],9986,9987,[3456,9887],[3521,9791],3457,3907,3971,3907,3905,3521,3520,3969,3906,[3530,3780],[3593,3778],3520,3392,3905,3458,3522,3906,3905,[3907,9796],[3392,9797],[403,9602],403,403,403,[403,9505,9505],[3907,9598],[3457,9599],3908,3905,3456,[3920,3845],3919,[3919,3842],[3920,4033],[3520,9613],[3520,9614],[3917,9515],3920,3983,3919,3920,[2830,3857],[2767,630],[2831,631],2831,[2766,3790],3920,[2768,3793],2832,2831,[2765,3788],3983,3983,3983,3920,3983,3918,3917,3919,3981,3983,3983,[3920,9511],[3983,9512],3919,3919,3919,3920,3920,3983,3919,3983,3920,3920,[3919,9805],[3918,9901],9902,[2831,3921,9707],2829,[2768,4249],2829,2831,2831,9895,[2832,9896],[2766,9800],[2767,3980],3919,3919,3981,3917,3983,3920,3919,3920,3983,[2768,3985],2767,2830,2765,[2829,3853],[2765,4045,9517],[3983,9421],3920,3983,3919,3983,3919,3983,3920,3917,3983,3919,3919,3920,3983,3920,3920,3920,3920,[2829,3921],2767,2829,[2832,9814],[2765,9910],9911,[4097,3720,9716],[4097,3722],[4097,3723],[4097,4038],3912,3975,[4097,3719],3976,3977,3978,3914,3911,[4097,4041,9619],[2434,9808],[2435,9906],[2370,9907],[2435,9908],[2435,9909],[2434,9910],10002,10003,10006,[3913,10098],[3914,10099],[3978,10102],[4097,3787,10097],[4097,10098],[4097,10099],[3912,10100],[3913,10101],10001,10002,10003,10004,10005,9911,[4097,9716],4097,[4097,3718],[4097,3719],3976,3977,3977,3914,3914,3914,3913,3913,3977,[4097,3979],4097,[4097,3718],[4097,3720],[4097,3722],[4097,3785],[4097,9526],[3914,9527],3978,3978,[4097,3979],4097,[4097,3784],3976,3913,[3977,9330],[3978,9331],[3914,9332],[3978,9333],[3978,9520],[3978,9521],3977,3913,3913,[4097,3979],[4097,9526],[4097,9426],[4097,9427],[4097,9428],[4097,9429],[4097,9521],4097,[4097,3848],3912,3978,3977,3978,3911,[4097,4043],4097,[4097,3718,9330],[4097,3719,9330],[3976,9331],[3913,9332],[4097,3850,9333],4097,[4097,3847,9520],[2371,9521],2435,2371,2435,2371,2434,2370,2370,2371,2435,[2434,9718],[2435,9719],[3914,6],7,8,[4097,3786,9],4192,[4097,9715],[2371,9712],[2371,9713],2371,2370,2434,1987,2434,2370,2435,2370,2434,[2371,9526],[4097,9527],[4097,3784],[4097,3719],[3976,9811],[3977,10000],10001,[2435,3051,9712],[2435,2987,9713],[2434,2988],[2371,2989],[2370,2990],3182,3244,[2434,3118],2370,2370,2114,2370,[2370,3116],[2371,3307],[2434,3308,9718],[2370,9719],[3977,10007,9524],[3913,9812],3914,3978,[4097,3787],4097,4192,4097,[4097,3718,9619],[2371,9808],[3179,9809],3180,3181,3245,3180,3245,3244,3244,[2370,3308],[2371,3309],[2435,3310],[2370,3118],2435,2371,[2371,3051],[2370,2987],[2370,2988],[2371,2989],[2434,2990],3244,3243,3179,3245,3179,3180,3244,[2434,3247],2371,2370,[2370,3052],3179,3182,3181,3180,[2434,3055],2434,2370,[2435,3242],3244,3180,3245,3245,3179,[2434,3247],2371,2435,2371,2371,[2370,3115],3181,3243,3179,3180,3181,[2371,3117],2371,2371,2371,[2371,3114],3246,3182,3179,[2434,3054],2435,[2371,3115],3181,3180,3245,3180,3179,[2435,2988],[2434,2990],[2435,2991],2370,[2435,3116],[2370,3309],[2370,3310],3182,3182,3246,[2434,3183,9718],[2435,9719],[4097,4040,9620],[4097,4041],[4097,4042],[4097,3849],4097,4097,4097,[4097,3718],3976,3977,[3975,10097],[4097,3785,10098],[4097,10099],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],[3457,9685,4996],[3907,9686,4997],[3392,4998],3905,3393,3969,3905,3520,[3907,5284],[3392,5285],[3393,5286],[3521,5287],3392,[3527,9781],[3527,3778,9782],[3528,3716],[3592,3780],[3592,3841],3906,[3905,9787],[3907,9788],[3906,9593],3969,[3971,9595],[3969,9596],[9979,9497],[3905,9980],[3905,9785],3457,3395,3458,3905,3908,3457,3457,3908,3907,3458,3971,3457,3969,3905,3458,3457,3392,3969,3458,[3971,9691],[3971,9692],[3520,9593],3969,3907,3521,3520,3908,3456,3905,[3907,9398],[3969,9494],3906,3394,3907,3907,[3971,9499],[3528,3716,9399],[3592,3780,9403],3529,3530,[3592,9784],[3593,3777,9973],9974,[3528,3717,9589],[3530,3778,9590],3907,3908,3522,3521,[3907,9508],[3971,9509],403,[403,9505],[3905,9598],[3969,9599],3971,3521,3906,3522,[3530,3973],3594,3530,3593,3528,3268,3593,3333,[3591,3968],3971,3456,3456,3971,3906,3969,[3457,9796],[3908,9892],9986,9987,9988,10082,10083,9983,[3905,9887],[3520,9888],[3521,9889,6],7,8,[3458,9791,9],3520,3522,3971,3908,3456,[3458,9796],[3908,9888],[3394,9889],[3906,9791],3520,3456,3458,[3905,9796],[3971,9892],9893,[403,9698],403,403,403,[403,9697,9697],[3907,9694],[3905,9695],3521,3907,3969,[3919,3909],3983,3983,3920,[3983,3841,9709],[3919,9710],[3983,9707],3919,3919,3920,3983,[2832,3921],[2831,694],[2829,695],2832,[2766,3788],3983,[2830,3857],2767,2831,[2832,3852],3919,3917,3920,3983,3983,3983,3920,3919,3920,3983,[3920,9514],[3920,9607],[3983,9608],3919,3983,3983,3983,3919,3920,3983,3983,3983,[3983,9613],[3919,9614],[9997,9515],[3981,9998],[3919,9803],[2768,3791,4344],[2765,4345],[2829,4346],2832,2766,[2766,9991],[9992,9514],[2830,9703],[2765,3788,9704],3983,3983,3919,3983,3920,3983,3917,3920,3983,3920,[2767,3792],2765,2766,2766,2767,[2829,3980,9517],[3918,9518],[3919,9321],[3920,9322],[3917,9323],[3983,9324],[3983,9324],3983,3983,3919,[2765,4049],[2829,3854],3983,3919,3919,3981,3918,[2832,4047],[2765,3856],2832,[2830,9622],[2768,9623],10006,[3978,10007],[3977,9812],3977,[4097,3979],4097,[4097,3974],3977,3977,3914,3913,3911,[4097,4039],[4097,3849],[4097,9715],9904,10002,10003,10004,10005,10006,[4097,10098],[3912,10099],[3914,10102],[3911,10194],[4097,4039,10195],3912,[4097,3915],[4097,10194],[4097,3783,10195],[3976,10196],[3914,10197],[3977,10097],[3911,10098],[4098,10099],[4098,3782,10100],[3913,10101],[4097,3915,10007],[4097,9812],4097,[4097,3974],3978,3977,3914,3914,3913,3977,3977,3914,3914,3911,[4097,3850],4097,[4097,3847],3912,3977,[4097,3787],4097,[4097,3974,9526],[3978,9527],3911,[4097,3849],4097,[4097,3782],3914,[3913,9425],[3912,9426],[3914,9427],[4097,3787,9428],[4097,9429],[4097,3847,9521],3912,3978,3978,3911,[4097,3850],4097,4097,4097,4097,4097,[4097,3718],[4097,3785],4097,[4097,3782],3914,3977,3913,[4097,3979],4097,[4097,9520],[2435,9426],[2434,9426],[2371,9427],[2370,9428],[2434,9429],[4097,9430],[2435,9712],[2371,9713],2434,2371,2434,2371,2370,2370,2434,2435,2435,[2435,9814],[2434,9815],[3977,6],7,8,[3975,9],[4097,3785],[4097,9520],[2371,9521],2371,2434,2371,2435,2370,2371,2371,2370,2114,2434,[2370,9622],[3975,9623],3976,3977,3913,3978,[4097,3979,10097],[3245,9808],[3182,9809],3246,[2370,3309],[2435,3310],3180,[2434,3055],2435,2371,2370,2371,2371,2370,2434,[2435,9622],[2370,9623],[3914,9620],3913,3977,3914,[4097,3915],4097,4097,4097,[4097,3974,9715],9904,[3179,9905],[3244,9809],3246,3181,3245,3182,[2434,3308],[2435,3117],2434,2435,2434,2434,2370,[2434,2986],3243,3180,3182,3179,3244,3243,3245,3246,3243,3243,3179,3179,[2434,3117],2370,2370,[2370,3242],3244,3246,3181,3244,[2370,3183],2434,2435,[2371,3306],[2434,3307],3246,3182,3243,[2434,3309],[2371,3311],1986,2435,2435,2371,2434,[2435,3050],3182,3246,3243,[2370,3247],2371,2434,2435,2434,[2434,3178],3246,3245,3181,[2371,3055],2370,2435,[2434,3242],3243,3246,3179,3246,3244,3244,[2435,3247],2371,2371,2370,2371,[2370,3115],[2371,3307],[2370,3310],[2370,3118,9622],[2434,9623],[4097,9620],4097,4097,4097,4097,[4097,3783],[4097,3719],3976,3913,3914,3913,3975,[4097,3719],[4097,3785,10097],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3394,9494,5092],5093,5094,[3907,5095],3393,3457,3908,3393,[3458,5380],[3520,5381],[3392,5382],[3906,5383],3521,9877,[3393,9878],[3907,9879],[3456,9880],[3529,3713,9881],[3905,9882],[3905,9883],9884,[3906,9689],3969,[3457,9691],[3908,9692],[3456,10075,9593],[3458,10076],3908,3908,3906,3906,3908,3969,3521,3908,3971,3458,3520,3971,3908,3908,3456,3905,3907,3907,3907,3458,[3969,9787],[3971,9788],[3521,9593],3458,3521,3520,3522,3457,3458,[3521,9493],[3969,9494],3906,3908,3971,3458,3522,3456,[3906,9595],[3908,9596],[3592,3714,9497],[3528,3715],[3594,3716],3969,[3522,10070,9496],[3521,9685],[3522,9686],3457,3457,[3969,3461],3907,[3905,9604],[3456,9605],[403,9506],[403,9601],[3971,9598],[3458,9599],[3593,3970],3586,3587,3456,3521,[3594,3713],[3530,3713],[3593,3779],3268,3333,[3529,3777],[3528,3713],3523,3520,3456,3456,3457,3908,[3908,9796],[3520,9892],9988,10082,10083,10084,10178,10179,10079,9983,9984,[9985,6],7,8,[3907,9887,9],[3907,9791],3905,3521,3457,[3458,9796],[3457,9892],9984,9985,[3520,9887],[3905,9888],[3969,9889],[3908,9890],[3907,9892],9988,9989,[403,9794],403,403,403,[3908,9407],[3907,9503],3906,3392,3522,3392,3905,[3920,3713],[3983,3780],3920,3920,[3983,3968,9517],[3919,9421],3981,3983,3983,3920,[2829,3985],2765,2829,2767,[2765,3852],3919,[2832,3921],2766,2766,[2767,3916],3919,3920,3920,3983,3920,3920,3920,3920,3920,3919,[3919,9610],[3983,9703],[3920,9704],3919,3920,3983,3918,3920,3983,3983,3983,3919,[3981,9709],[3920,9710],[3981,10093,9611],3981,3919,[2829,3985],2831,2767,2831,2766,2766,[2831,10088,9610],[2765,9607],[2830,3852,9608],3983,3983,3918,3919,3983,3919,3919,3920,3983,3981,3983,[2766,3725],[2830,3792],2832,2766,[2829,3853],[3917,9517],[3983,9417],[3920,9418],[3919,9419],[3983,9420],[3983,9420],[3981,9518],3983,[2832,3985],2832,2830,[2767,3980],3920,3919,3919,[2767,3856],2832,2768,2829,[2766,9718],[2765,9719],[3977,10102,9524],3914,3978,3978,[4097,3787],4097,[4097,3782],3913,3977,3977,3914,[4097,3787],4097,4097,[4097,9811],[4097,10000],[4097,3783,10098],[3977,10099],[3785,10100],[4097,10101],[4097,10102],[4097,10194],[4097,4038,10195],[4097,4039],[4097,3850],4097,[4097,3848],[4097,3850],4097,[4097,3974],3977,3913,3911,[4098,3850,10194],[4098,10195],[4098,3846,10196],[3911,10197],[4097,4043],4097,[4097,3783],3976,3913,3913,3913,3914,3977,3977,3914,3914,3978,[4097,3787],4097,4097,4097,[4097,3782],3977,[4097,3915],[4097,3784],[3976,9718],[3914,9719],[4097,3979,9524,9330],[4097,9331],[4097,9332],[4097,3846,9333],[3913,9520],[4097,9521],[4097,3782],3977,[4097,3851],4097,4097,[4097,3974],3913,3978,[4097,3979],4097,4097,4097,[4097,3784],[4097,3785],4097,[4097,3782],[4097,3979],4097,[4097,3910],3978,3978,3911,[4097,3850],[4097,9523],[2370,9616],[2434,9617],2434,2435,2371,2370,[2435,9526],[2434,9521],2050,2370,2435,2371,2435,2370,2434,[2434,9814],[2435,9906],[2371,9907],[2371,9910],9911,[4097,4039,6],7,8,[3977,9],[3975,9523],[2371,9616],[2370,9617],2370,2434,2435,1986,2242,2243,2371,2435,2434,2434,[2370,9718],[3978,9719],3914,3978,3978,3914,[4097,3979],9904,[3180,9905],[2370,3118,9809],2371,2434,[2434,3115],[2435,3183],2434,2370,2371,2371,2051,2370,2370,[2435,9718],[2434,9719],[3978,9716],3978,[3977,9330],[3977,9330],[4097,3979,9331],[4097,9332],[4097,9333],[4097,3783],[3976,9811],[3914,10000],[10001,9523],[3246,9712],[3179,9713],3244,3181,[2435,3311],2435,2434,[2434,3052],[2370,2987],[2370,2988],[2435,2989],[2434,2990],3244,3246,3246,3244,3244,3182,3246,3245,3246,3246,3180,3180,[2370,3247],2371,2435,[2371,3051],3244,3179,3243,3182,3180,3179,[2370,3054],2435,2371,2370,[2435,3242],3182,[2434,3118],2434,2435,[2435,2986],[2434,3054],2434,2114,2370,[2371,3178],3182,3245,3244,3246,[2370,3053],2371,2434,2435,[2371,3242],3182,3244,3244,[2370,3183],2434,[2434,3051],3243,3182,3245,3181,3182,3180,3182,3246,[2371,3054],2371,1987,2434,2051,2370,2435,[2435,9718],[2370,9719],[4097,3785,9620],[4097,3783],[4097,3720],[4097,3721],[4097,3722],3976,3977,3913,3977,3977,3978,3977,3977,3975,[3976,10097],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3908,9494],[3456,5188],5189,5190,[3456,5191],3906,3907,3908,3520,[3521,5476],[3456,5477],[3458,5478],[3908,5479],3394,[3905,9973],9974,9975,9976,9977,9978,9979,[3969,9980],[3905,9785],3394,[3521,9595],[3908,9596],[3522,9593],3971,3971,3522,3522,3457,3905,3971,3971,3908,3905,3521,3456,3971,3969,3522,3905,3907,3522,3522,3905,[3459,9787],[3908,9883],9884,[3908,9689],3971,3458,3906,3907,3905,[3593,4034,9496],[3906,9589],[3907,9590],3906,3907,3971,3458,3522,3907,[3456,9787],[3905,9788],[3456,9593],3522,3522,3520,[3908,9592],[3905,9589],[3457,9590],3522,3906,3522,3969,[3969,9700],[3905,9701],[403,9602],[403,9601],[3906,9694],[3521,9695],3521,3650,3651,3971,3907,3520,3905,3905,[3528,3714],[3593,3716],3457,3521,3456,3521,3969,3457,3907,[3520,9796],[3971,9892],9988,10084,10178,10179,10180,403,403,10175,10079,10080,[10081,6],7,8,[9983,9],[3905,9887],[3971,9888],[3905,9889],[3457,9891],[3971,9892],9988,10080,10081,9983,9984,9985,9986,9988,10084,403,403,403,403,[3907,9502],[3971,9503],3521,3456,3908,3969,3906,3906,3521,[3919,3844],3919,[3983,3778],3520,[3457,9517],[3919,9421],3919,3983,3920,[2830,3793],2766,2830,2765,[2830,3916],3920,[2831,4049],2765,2765,[2831,3980],3981,3983,3919,3919,3983,3919,3920,3918,3981,3983,[3919,9610],[3920,9799],[3983,9800],3920,3920,3983,3920,3919,3983,3919,3920,3919,[3983,9709],[3983,9710,565],[3919,404,9707,565],[3919,405,565],[2830,4047,406,565],[2831,4049,407,565],[2830,408,565],[2768,532,565],[2829,533,565],[2831,534,565],[2832,535,565],[2829,536,9706,565],[2768,9703,565],[2765,3916,9704],3920,3920,3919,3983,3919,3983,3919,3920,3920,3920,3981,3920,[2768,3793],2767,2829,2767,[2767,4044],3983,3983,3983,3919,[3919,9613],[3919,9614],[2831,4047,9515],[2829,3856],2768,2832,[2768,3853],[2830,4046],3919,[2829,3985],2830,2766,2766,2831,[2767,9622],[2765,9623],[3913,9620],3914,3914,3913,[4097,3851],4096,[4097,3846],3914,3914,3914,3978,[4097,3851],4097,[4097,3783],[4097,3719],[4097,3722],[3976,10194],[3978,10195],[4097,3979,10196],[4097,10197],4097,4097,4097,4097,4097,4097,4097,4097,[4097,3784],3976,3914,3911,[4098,4043],4098,4098,[4098,3910],3975,[4097,3719],[4097,3722],3976,3913,3978,3978,3911,[4097,4039],[4097,4040],3912,3977,3978,3914,[4097,3915],4097,4097,4097,[4097,3846],3913,3975,3976,3977,[3913,9526],[3977,9426],[3978,9427],[3978,9428],[4097,3979,9429],[4097,9521],4096,[4097,3846],3977,[4097,3915],4097,4097,[4097,4038],[4097,4040],[4097,4041],[4097,3849],4097,[4097,3784],[4097,3719],3976,[4097,3787],4097,[4097,3910],[4097,3979],4097,[4097,4038],3912,3914,[4097,3979],4097,[4097,9619],[2434,9712],[2434,9713],2434,2371,2435,2434,1923,2370,2371,2435,2370,2435,[2371,9814],[2434,9906],[2370,9907],[2371,9910],10002,10003,10006,[4097,10007],[4097,6],7,8,[3914,9],[3913,9619],[2435,9616],[1987,9617],2371,2370,2371,2370,2306,2307,2370,2371,2434,2370,2371,[2434,9526],[3977,9527],3914,3911,[4097,4040],[4097,4043],[4097,10000],10001,[2435,9616],[2434,9617],2370,2371,[2370,3242],[2435,3053],2370,2434,2434,2371,2371,2434,2434,[2435,9526],[3914,9527],[3914,9425],[2371,9426],[2434,9426],[2434,9427],[2371,9428],[2370,9429],[3974,9527],3914,3977,[3978,10097,9619],[3181,9808],[3179,9809],3179,3179,[2371,3054],[2434,3051],[2371,2987],[3181,9814],[3244,9906],[3180,9907],[3246,9809],3246,3244,3245,3246,3243,3246,3181,3244,3244,3244,3180,3243,3181,[2371,3118],2435,2370,[2370,3242],3181,3244,3180,3182,3244,3245,[2434,3247],2435,2370,2371,[2371,3115],[2371,3311],2051,2370,2371,[2370,3242],3245,[2434,2987],[2370,3053],2370,[2371,3306],3245,3245,3179,3179,3180,[2370,2988],[2435,2989],[2371,2990],3181,3244,3245,3243,[2434,3118],2371,[2371,3242],3182,3179,3180,3245,3245,3182,3181,3246,3179,[2435,2988],[2371,2989],[2435,2990],[2371,3054],2434,2435,[2371,9814],[2371,9815],[3975,9620],3976,3913,3914,3977,3977,3914,3911,3912,3913,3977,3913,3913,3914,3977,[3977,10097],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3521,9685],[3908,9686],[3456,5284],[3907,5285],[3907,5286],[3905,5287],3392,3457,3457,3394,3393,3394,3456,3394,3907,3457,[3520,10070],[3458,10071],[3905,10072,4996],[3907,10073,4997],[3908,10074,4998],[3907,10075],3394,3908,3908,[3908,9691],[3906,9692],[3907,9689],3906,3457,3458,3969,3456,3458,3522,3907,3969,3905,3456,3456,3520,3969,3521,3971,3520,3392,3521,[3456,9595],[3908,9596],9979,[3457,9980],[3522,9785],3907,3456,3458,[3529,4035],[3593,3844],[3530,9592],[3971,9685],[3969,9686],3521,3969,3971,3906,3906,[3907,9787],[3969,9883],9884,[3456,9689],3457,3905,3905,[3457,9592],[3971,9685],[3458,9686],3907,3908,3520,3456,[3907,9796],[3521,9797],[403,9602],[403,9601],[3905,9790],[3457,9791],3969,3522,3905,3969,3522,[3593,3972],[3969,9796],[3458,9888],[3458,9889],[3521,9890],[3971,9891],[3456,9791],3908,3905,3906,3522,[3907,9796],[3969,9892],9988,10084,10180,403,403,403,403,146,403,10175,10176,[10177,6],7,8,[10079,9],9983,9984,9985,9987,9988,10084,10176,10177,10079,10080,10081,10082,10084,10180,403,403,403,[403,9505],[3522,9598],[3906,9599],3905,3969,3522,3908,3520,3456,[3919,4037],3918,[3919,3778],3522,3908,3521,[3907,9517],[3983,9421],3919,3919,[2767,3857],2768,2829,2830,[2765,3853],[2832,3855],2832,2831,2829,[2830,4044],3920,[3919,566],[3919,567],3981,3920,3983,3983,3919,3919,3919,[3983,9706],9895,[3983,9896],[3920,9800],3919,3983,3919,3917,3919,3920,3920,3919,3919,629,629,629,629,629,629,629,629,629,629,629,629,3983,3983,3917,3919,3983,3919,3983,3919,3983,3919,3920,3983,3919,[2831,3857],2832,2766,2830,2766,[2766,3853],3920,3919,3918,[3917,9709],[2829,3855,9710],[2768,9611],2831,2765,2830,2765,2765,[2832,3854],[2830,4049],2765,2768,2765,2829,[2829,9718],[2829,9719],[3977,9716],3914,3913,3913,[4097,3915],4097,[4097,3910],3978,3978,3977,3978,[4097,3915],4097,[4097,3782],3914,3977,3978,3914,[4097,3787],4097,4097,4097,4097,4097,4097,4097,[4097,3718],[4097,3719],3976,3978,3978,[4098,3787],4098,4098,[4098,3783],3976,3977,3977,3977,3978,3978,3913,3911,[4097,3850],4097,4097,[4097,3782],3914,3977,3913,3975,[4097,3785],4097,4097,[4097,3910],3914,[3978,9330],[3977,9333],3977,3913,3913,3978,3911,[4097,3850],4097,4097,[4097,3910],3913,3975,[4097,3786],4097,4097,4097,4097,4097,[4097,3783],3976,3977,3978,[4097,3915],4097,[4097,3974],3975,[4097,3786],4097,[4097,3974],3978,3975,[4097,3786],[4097,9520],[2435,9521],2371,2434,2371,2434,2370,2434,2435,2434,2434,2434,[2370,9814],[2371,9910],10002,10003,10006,[3913,10098],[3719,10099],[4097,3720,10102],[4097,3721],[4097,3722,6],7,8,[3913,9],[3914,9619],[2370,9712],[2370,9713],2434,1987,2371,2370,2435,2370,2435,2371,2434,2434,2371,[2371,9622],[2371,9623],[3911,9524],[4097,3849],4097,4097,4097,[4097,10097],[2435,9712],[2371,9713],2371,[2435,3051],3246,[1987,3247],2370,2371,2370,2370,2434,1986,2371,2371,[2370,9526],[2435,9521],2371,2435,2434,2371,[2370,9718],[2371,9719],3978,3914,[3913,9715],9904,[3245,9905],[3179,9809],3246,3179,3179,[3182,9814],[3181,9910],10002,10003,[3181,9905],[3246,9809],3245,3179,3245,3244,3181,3246,3180,3181,3245,3180,3179,[2371,3118],2371,[2371,2986],[2435,2987],3179,3245,3245,3182,3243,3243,3180,3182,[2434,3054],2434,2371,2371,2370,2371,2050,[2434,3051],3181,3244,3244,[2434,3247],2434,2435,[2434,3242],3245,3179,3244,3246,3179,3181,3180,3181,3181,[2371,3308],[2370,3311],2370,2371,[2370,3115],[2370,3307],3182,3244,3246,3179,3182,3244,3182,3244,3244,[3179,9814],[3243,9906],[2371,3247,9907],[2434,9908],[2434,9909],[2371,9910],9911,[4097,3847,9716],3912,3914,3978,3978,3914,3911,[4097,3849],[4097,3848],3912,3914,3911,[4097,4039],3912,3913,3913,[3977,10097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3908,9781],[3906,9782],[3394,5380],[3905,5381],[3905,5382],[3908,5383],3520,3521,3393,3392,[3905,4996],[3969,4997],[3393,4998],3907,3458,3392,3458,[3458,10167],[3969,10168,5092],5093,5094,[3969,5095],3905,3905,3908,3971,[3907,9499],[3905,9500],3907,3908,3907,3457,[3458,1988],1989,1990,1991,1992,1993,[3905,1994],3905,3458,3971,3907,3971,3971,3457,3908,[3906,9691],[3969,9692],[3520,10075,9497],3520,3458,[3592,4035],[3528,4036],[3594,3844],3593,3529,[3529,9688],[3392,9589],[3522,9590],3520,3908,3521,3457,[3520,9595],[3521,9596],[9979,9497],[3522,9980],[3521,9785],3971,3905,3520,[3971,9398],[3971,9494],3456,3905,3908,3969,[3969,9796],[3971,9892],9893,[403,9698],[403,9697],9886,[3907,9887],[3522,9888],[3971,9889],[3456,9890],[3520,9891],[3969,9890],[3906,9891],[3906,9892],9984,9985,9986,9987,[3971,9887],[3969,9888],[3392,9889],[3908,9890],[3907,9891],[3908,9892],9988,10084,10180,403,403,403,403,403,403,403,403,403,[403,6],7,8,[10175,9],10079,10080,10081,10083,10084,10180,403,403,10175,10176,10177,10178,10180,403,403,349,403,[403,9697],[3969,9694],[3456,9695],3906,3521,3456,3906,3457,[3920,3844],3919,[3917,3777],3907,3588,3589,3520,[3907,9613],[3394,9614],[3983,9515],3920,[2766,3921],2832,2768,2832,2765,2830,2832,2829,2832,2831,[2832,3854],[2830,4047,630],[2767,4048,631],3919,3920,3919,3918,3981,3920,[3920,566],[2829,3855,9802,567],[2832,3854,9991],9992,[3918,9896],[3918,9800],3919,3919,3919,3919,3981,3919,3920,3983,693,693,693,693,693,693,693,693,693,693,693,693,3920,3919,3983,3920,3919,3983,3919,3919,3983,3920,3920,3920,3920,[2767,3921],2766,2829,2831,2829,[2829,3789],3920,3919,3983,[3983,9805],[2766,3791,9806],[2768,9611],2765,2767,2765,2765,2831,2765,2765,2830,2829,2831,2768,2829,[2831,9526],[3914,9430],[3914,9431],3911,[4097,4039],[4097,3849],[4097,3783],3976,3914,3911,[4097,4040],[4097,4041],[4097,3850],4097,[4097,3846],3914,3978,3913,3977,[4097,3915],4097,4097,4096,4097,4097,4097,[4097,3783],3976,3914,3914,3913,3978,[4098,3915],4098,4098,[4098,3782],3914,3914,3914,3913,3914,3914,3911,[4097,4043],4097,4096,4097,[4097,3910],3977,3913,3913,3914,[4097,3787],4097,[4097,3783],3976,[3978,9425],[3243,9426],[3245,9429],[3978,9527],[3978,9330],[3978,9331],[3978,9332],[4097,3787,9333],4097,4097,[4097,3783],3976,3913,3978,3975,[4097,3719],[4097,3785],4097,4097,[4097,3718],3976,3978,3978,3913,3975,[4097,3785],[4097,4038],3912,3975,[4097,3719],3976,3978,3977,[3975,9520],[2434,9521],2434,2435,2371,2371,2370,2371,2370,1923,2435,2370,[2370,9814],[2371,9910],10006,[4097,3787,10098],[4097,10099],[4097,4038,10102],[4097,4039,10194],[4097,4040,10195],3912,3977,[3977,6],7,8,[4097,4039,9],[4097,4040,9619],[2370,9712],[2371,9713],2371,2371,2434,[2370,9814],[2371,9906],[2434,9907],[2370,9809],2435,2370,2370,2435,[1987,9718],[2434,9719],[4097,3849,9620],4097,4097,4097,4097,[4097,9425],[2370,9521],2371,2434,[2371,3050],3246,[2371,3118],2434,2434,2371,2371,2435,2434,2434,2434,2434,2434,2434,2370,2370,2370,[2435,9814],[2371,9815],3977,3913,[3914,9811],[4097,3851,10000],10001,[3179,9905,6],7,8,[3179,9909,9],[3181,9910],10006,[3978,10098],[3914,10099],10001,[3181,9905],[3243,9809],3181,3246,3245,3246,3182,3181,3245,3180,3246,[2435,3055],2434,2370,[2434,3242],3181,3180,3180,3179,3179,3180,3243,3246,3243,3244,[2435,2987],[2434,3053],2371,1987,[2371,2986],[2370,2987],3179,3246,3180,3243,3246,[2370,3053],1923,[2370,3115],3180,3245,3244,3244,3182,3180,3179,[2371,3310],[2371,3117],2370,2370,2371,2370,2371,2434,[2370,3306],3180,3243,3179,3182,3243,[3180,9814],[3182,9906],[3181,9907],[3245,9910],10002,10003,10004,10005,10006,[4097,3851,10007],[4097,9812],[4097,3974],3977,3978,3914,3977,[4097,3979],4097,4097,[4097,3782],3911,[4097,3849],4097,[4097,4038],[4097,4039],[4097,4040],[4097,4041,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3522,9878],[3393,9782,5476],[3457,5477],[3394,5478],[3393,5479],3393,3520,3907,3520,[3393,5092],5093,5094,[3392,5095],3520,3905,3908,3456,[3906,5188],5189,5190,[3907,5191],3971,3905,3969,3906,[3969,9595],[3908,9596],[3971,9497],3905,3521,3458,[3969,2052],2053,2054,2055,2056,2057,[3458,2058],3520,3520,3456,3905,3521,3907,3392,3969,[3907,9787],[3907,9788],[3593,3843,9497,9593],[3528,3842],[3530,3843],3530,3528,3529,[3529,3778],[3528,3713,9303],[3529,3713,9784,9306],[3458,9685],[3907,9686],3971,3908,3905,3522,[3458,9691],[3521,9692],[3521,10075,9593],3906,3520,3969,3971,[3908,9493],[3971,9494],3457,3456,3906,3520,[3457,9604],[3458,9605],9988,9989,[403,9794],[403,9793],9982,9983,9984,9985,9986,9987,9986,9987,9988,10080,10081,10082,10083,9983,9984,9985,9986,9987,9988,10084,10180,403,403,403,403,9312,9313,9314,9315,403,403,[403,6],7,8,[403,9],10175,10176,10177,10179,10180,403,403,403,403,403,403,403,403,403,403,403,403,[3971,9407],[3456,9503],3521,3906,3906,3522,3522,[3919,3973],3919,[3981,3778],3456,3905,3652,3653,3521,[3522,9709],[3969,9710],[3983,9611],3919,[2830,3985],2767,2832,2831,2768,[2832,3790],[2767,3726],[2766,3727],[2831,3728],[2766,3729],2767,[2766,694],[2768,695],[2766,3980],3919,3920,3919,3920,3981,[2829,3856,630],[2830,631],2832,[2831,3788,10088],9992,[3983,9607],[3919,9608],3981,3919,3919,3983,3919,3920,3983,[3919,757],[3919,9517,757],[403,9518,757],[403,757],[403,757],[403,757],[403,757],[403,757],[403,757],[403,757],[403,9514,757],[2830,3852,9607,757],[3920,9608],3983,3983,3920,3920,3983,3920,3919,3920,3983,3919,3919,3919,3917,[2829,3729],2768,2766,[2832,3724],3983,[3983,9805],[3919,9899],[3919,9900],[3981,9901],9902,[2830,9707],2829,2765,2765,2768,2830,2831,2829,2765,2832,2768,2832,2766,2768,[2766,9526],[3914,9527],[4097,3787,9330],[4097,9331],[4097,9332],[4097,3974,9333],3911,[4097,4039],[4097,3849],4097,4097,4097,4097,[4097,3910],3913,3913,3913,3978,3975,[4097,3723],4097,4097,4097,4097,[4097,3718],3976,3977,3913,3911,[4098,4039],3912,[4098,3979],4098,4098,[4098,3910],3978,3978,3914,3977,3914,3911,[4097,3850],4097,4097,4097,[4097,3783],3976,3913,3914,3978,3914,[4097,3851],4097,[4097,4038],[4039,9520],[3181,9521],3182,3243,[3245,9526],[3180,9426],[3244,9427],[3244,9428],[3244,9429],[4097,9430],[4097,3783],3976,3978,3977,3911,3912,3978,3975,[4097,3786],4097,[4097,4038],3912,3913,3978,3978,3977,[4097,3787],4097,[4097,3848],3912,3977,3978,3914,[3978,9523],[2435,9616],[2434,9617],2435,2371,2434,2370,2434,1986,2434,2434,2435,[2435,9622],[2435,9623],10006,[3913,10102],[4097,3851,10194],[4097,10195],4097,4192,4097,[4097,4038],3912,[3978,6],7,8,[4097,9],[4097,3783,9715],[2435,9808],[2435,9906],[2371,9907],[2434,9908],[2435,9909],[2435,9910],10002,10003,[2434,9905],[2434,9809],2370,2370,1986,[2434,9718],[2371,9719],[4097,9620],4097,4097,4097,[4097,9520],[2371,9521],2370,2371,2370,[2434,3114],[2434,3055],2434,2434,2370,2435,2435,2371,2371,2435,2434,2178,2370,2435,2434,2371,2434,[2435,9910],9911,3912,3978,3914,[4097,3915],[4097,10097],[10001,6],7,8,[10005,9],10006,[3914,10102],[3914,10194],[3913,10195],[4097,3979,10097],10001,[3181,9905],[2370,3307,9809],[2434,3308],[2371,3309],[2371,3310],3182,3243,3180,3246,[3243,9814],[2370,3183,9906],[2370,9907],[2370,3051],3179,3179,3244,3180,3182,3179,3243,3243,3246,3244,3244,3182,[2435,3247],2370,[2434,3051],3179,3179,3244,3180,3244,3246,3245,3244,[2370,2987],[2371,2991],[2435,3050],3246,[3244,9814],[3244,9906],[3244,9907],[3245,9908],[2434,3118,9909],[2434,9809],2434,2435,2371,2371,2435,2370,[2370,9814],[2435,9908],[2435,3116,9909],[3182,9906],[3182,9907],[3182,9908],[3244,9909],[3182,9910],10002,10003,10006,[3977,10098],[3914,10099],[3977,10100],[3914,10101],[3914,10102],[4097,3915],4097,[4097,3782],3913,3977,3913,3978,3975,[4097,3785],4097,[4097,3846],[4097,3979],4097,4097,4097,4097,4097,[4097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3520,9589],[3521,9590],3521,3457,3906,3907,3520,3969,[3907,5188],5189,5190,[3908,5191],3392,3908,3457,3907,[3907,5284],[3971,5285],[3907,5286],[3905,5287],3908,3908,3971,3971,[3907,9691],[3907,9692],[3908,9593],3969,3522,3907,[3457,2116],2117,2118,2119,2120,2121,[3522,2122],3521,3522,3908,3906,3905,3905,3905,[3522,9787],[3907,9883],9884,[3528,9689],3594,3592,3528,[3528,3777],[3528,3713],[3969,9493],[3521,9399],[3522,9402],[3907,9494],3969,3907,3905,3457,3522,[3971,9595],[3520,9596],[3522,9593],3520,3971,3522,[3907,9496],[3971,9589],[3908,9590],3905,3456,3971,3456,[3905,9700],[3456,9701],10084,403,403,403,403,10079,10080,10081,10082,10083,10082,10083,10084,10176,10177,10178,10179,10079,10080,10081,10082,10083,10084,10180,403,403,403,403,[3905,9407],[3905,9408],[3520,9409],[3908,9410],[3456,9411],[3969,9412],403,[403,6],7,8,[403,9],403,403,403,403,403,403,403,403,403,403,9312,9313,9314,9315,403,403,[3905,9407],[3522,9503],3905,3521,3971,3971,3907,3522,3458,[3983,3713],3457,3908,3458,3520,3908,3520,[3971,9805],[3969,9806],[3920,9611],3920,3920,[2831,3792],2832,2768,[2831,3789],3983,3983,3983,3917,3983,[2831,3791],2830,2767,[2829,3854],[2767,4045],[2829,4047],3919,3919,[2830,3985],[2830,694],[2832,695],2768,[2832,3852],[3919,10088,9514],[3920,9703],[3983,9704],3919,3983,3920,3919,3920,3983,3920,3920,[3919,9613],[2766,3985,9614],[2832,38,9515],[2767,39],[2829,596],[2830,597],[2831,598],[2766,599],[2767,600],[2832,600,9610],[2829,3916,9607],[3920,9608],3919,3919,3920,3920,3983,3917,3919,3920,3919,3919,3918,3917,3918,[2829,3985],2765,2832,[2767,3853],[2767,4045,9805],[2830,4046,9901],9995,9996,9997,[2832,9998],[2829,9803],2765,2829,2829,2832,2768,2768,2768,[2829,3790],[2765,3725],[2832,3726],[2765,3727],[2831,3728],[2766,3726],[2829,3727],[2830,3728,9526],[3919,9426],[3919,9427],[3920,9428],[3983,9429],[4097,3979,9527],4097,4097,[4097,3784],[4097,3723],4096,4097,[4097,4038],3912,3978,3977,3977,3911,[4097,4043],4097,4097,4097,4097,[4097,3974],3978,3978,3977,[4098,3787],4098,[4098,4038],[4098,4043],4098,4098,[4098,4038],3912,3913,3977,3977,3914,[4097,3787],4097,4097,[4097,3718],[4097,3719],3976,3914,3913,3914,3914,3977,[4097,3915],4097,[4097,9523],[3181,9616],[3181,9617],3182,3179,3246,3245,3244,3181,3244,[3180,9526],[3976,9527],3914,3914,3911,[4097,4043],[4097,3848],3912,3978,[4097,3979],4097,4097,[4097,3782],3914,3913,3977,3913,[4097,3851],4097,4097,[4097,3782],3911,[4097,4039],3912,[3913,9619],[2371,9712],[2370,9713],2434,2370,2371,2434,2370,2435,2371,2371,2434,[2435,9718],[2371,9719],[3914,10102,9524],3978,[4097,3915],4097,4097,4097,4097,4097,[4097,3848],[4097,4042,6],7,8,[4097,9],[4097,3974,9811],9904,10002,10003,10004,10005,10006,[3978,10098],[3913,10099],10001,[2434,9905],[2370,9906],[2370,9907],[2371,9908],[2370,9909],[2434,9815],[4097,3785,9620],4097,4097,[4097,9523],[2435,9616],[2435,9617],2370,2371,2370,[2370,3178],[2370,3119],2371,2371,2435,2371,2370,2242,2243,2435,2371,2371,2435,2434,2370,[2371,9622],[2435,9623],10006,[4097,10007],[4097,3974],3977,3914,[4097,3979],4097,[4097,10097,6],7,8,[4097,3847,10101,9],[3912,10102],3977,3978,3911,[4097,4043],[4097,10097],[10001,9523],[2434,9616],[2178,9617],2435,2370,[2371,3115],3246,3180,[3181,9814],[3180,9910],10002,10003,[3182,9905],[3180,9809],3179,3244,3180,3246,3179,3246,3182,3182,3181,3243,3180,[2370,3311],2371,[2434,3242],3181,3181,3182,3245,3180,3244,3180,3243,3182,[2370,3118],[2435,3178],[3181,9814],[3179,9910],10002,10003,10004,10005,[2371,9905],[2370,9809],[2371,3052],[2434,2987],[2370,2988],[2434,2989],[2371,2990,9814],[2434,2991,9910],10004,10005,10002,10003,10004,10005,10006,[4097,3851,10098],[4097,10099],[4097,3847,10102],[3912,10194],[3977,10195],[3978,10196],[3914,10197],3977,[4097,3979],4097,[4097,3846],3913,3978,3978,3914,3977,[4097,3979],4097,[4097,3910],3975,[4097,3785],4097,4097,4097,[4097,3784],[4097,3719,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3905,9685],[3905,9686],3458,3969,3906,3457,3520,3457,[3394,5284],[3392,5285],[3457,5286],[3905,5287],3905,3906,3456,3905,[3457,5380],[3908,5381],[3969,5382],[3907,5383],3971,3393,3906,3908,3905,[3907,9499],[3969,9500],3907,3906,3458,[3520,2180],[3521,2181],[3456,2182],[3593,2183],[3522,2184],[3971,2185],[3969,2186],3456,3906,3520,3906,3522,3905,[3908,9595],[3971,9596],[9979,9497],[3530,3778,9980],[3528,3713,9785],[3594,3714],[3530,3715],[3592,3716],3906,[3456,9496],[3521,9589],[3969,9590],3521,3908,3393,3395,3522,3969,3971,[3907,9787],[3969,9788],[3456,9593],3457,3907,3971,[3907,9592],[3522,9685],[3520,9686],3457,3520,3906,3457,3905,[3456,9508],[3971,9509],403,403,403,403,10175,10176,10177,10178,10179,10178,10179,10180,403,403,531,403,10175,10176,10177,10178,10179,10180,403,403,403,403,[3969,9502],[3520,9503],3908,[3521,4347],[3907,4348],[3906,4349],[3905,9508],[3969,9412],[9312,6],7,8,[9312,9],9313,9314,9315,403,403,403,285,403,403,[3907,9407],[3457,9408],[3905,9409],[3907,9410],[3908,9411],[3905,9412],[3908,9407],[3906,9503],3906,3908,3457,3907,3392,3458,3586,3587,3458,3905,3520,3906,3392,3907,[3520,9805],[3522,9901],9902,[3919,9707],3981,3919,[2765,3793],2830,2765,[2765,4044],[2831,4047],[2830,4048],3983,3920,3920,[2831,3855],2830,2768,2829,2831,2831,[2765,3980],3920,[2832,4049],2765,2831,2767,[2766,3916],[3983,9610],[3920,9799],[3919,9800],3919,3919,3983,3981,3920,3919,3919,3920,[3920,9709],[3983,9710],[2831,3729,9611],2767,2831,2766,2768,2767,2832,[2768,9706],[2831,3980,9703],[3920,9704],3983,3983,3919,3919,3920,3983,3983,3920,3920,3983,3917,3983,3981,3919,[2832,3791],2831,[2832,9805],[2767,9901],9997,[2832,10091],[2767,10092],[2765,10093],2765,2832,2765,2767,2766,[2832,3789],[2831,3726],[2832,3727],[2831,3728],3983,3919,3983,3983,3919,3918,3917,3981,3920,3981,3917,[3918,9622],[3917,9623],[4097,3783,9524],[4097,3719],3976,3975,[4097,3785],4097,4097,[4097,3782],3913,3913,3911,[4097,3850],4097,4097,[4097,3718],[4097,3785],[4097,3783],3976,3914,3978,3978,[4098,3915],4098,4098,4098,4098,4098,4098,[4098,3974],3914,3914,3914,3977,[4097,3851],4097,[4097,9330],[4097,3782,9333],3977,3977,3913,3914,3978,3978,3911,[4097,4043],4097,[4097,9619],[3180,9712],[3245,9713],3181,3180,3246,3180,3245,3181,3182,[3182,9718],[3914,9719],[3913,9524],3914,[4097,3787],4097,4097,[4097,3974],3913,3975,[4097,3786],[4097,9330],[4097,3846,9331],[3978,9332],[3978,9333],3978,3913,[4097,3915],4097,4097,[4097,3846],[4097,3787],4097,[4097,3974],[3978,9619],[2435,9712],[2371,9713],2434,2435,1986,2435,2371,2371,2370,2371,2434,[2434,9622],[2435,9623],[3977,9620],3978,[4097,3979],4097,[4097,3784],[4097,3720],[4097,3721],[4097,3722],[4097,3785],[4097,6],7,8,[4097,3783,9],3976,[4097,3979,10000],[4097,10098],[4097,10099],[4097,10100],[4097,10101],[4097,3974,10102],[3977,10194],[3977,10195],[3977,10097],10001,10002,10003,10004,10005,9911,[3975,9716],[4097,3719],[4097,3720],[4097,3721,9619],[2370,9712],[2435,9713],2434,2371,2434,[2370,9814],[2371,9906],[2371,9907],[2434,9809],2371,2370,2371,2306,2307,2371,2370,2434,2371,2370,2434,[2371,9718],[2434,9719],[4097,10102],4097,[4097,3847],3912,3978,3975,[4097,3786],[4097,6],7,8,[4097,10197,9],[4097,3782],3914,3913,[4097,3979],4097,4097,[4097,10097,9619],[2371,9712],[2434,9713],2435,2114,2434,[2435,3050],[3246,9814],[3244,9910],10006,[3977,10098],[3978,10099],10001,[3180,9905],[3246,9809],3246,3179,3180,3245,3179,3243,3243,3246,3181,[2371,3118],2435,[2434,3051],3182,3181,3182,3182,3245,3182,3244,3180,3181,[2434,3247,9814],[2434,9908],[2371,3242,9909],[3181,9910],10006,[3914,10098],[3978,10099],[3913,10100],[3913,10101],10001,[2435,9905],[2435,3242,9809],3243,3246,[3179,9814],[3245,9910],10006,[3915,10100],[4097,10101],[4097,10098],[4097,10099],[3912,10100],[3978,10101],[3914,10102],[4097,3915,10194],[4097,10195],4097,[4097,3974],3977,3978,3914,3977,3975,[4097,3786],[4097,3910],3914,3911,[4097,4040],[4097,4041],[4097,4042],[4097,4043],4097,[4097,3974],3914,3975,[4097,3720],[4097,3721],[4097,3722],3976,[3977,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3521,9589],[3520,9590,4996],[3969,4997],[3456,4998],3393,3392,3456,3908,[3905,5380],[3456,5381],[3907,5382],[3907,5383],3905,3456,3908,3521,[3521,5476],[3971,5477],[3971,5478],[3971,5479],3908,3906,3392,3969,3969,[3906,9595],[3908,9596],[3522,9497],3905,3907,3458,3971,[3528,3844],3593,[3529,3840],3522,3520,3458,3394,3522,3522,[3592,4033],[3593,4034],[3530,4035,9691],[3530,3843,9692],[3530,10075,9593],[3592,3841],3906,3969,3908,3457,3969,[3520,9688],[3906,9685],[3905,9686],3971,3520,3457,3456,[3456,9787],[3969,9881],[3457,9882],[3905,9883],9884,[3520,9689],3969,3905,3907,[3456,9592],[3521,9589],[3522,9590],3520,3907,3522,3971,3520,3908,[3908,9508],[3908,9412],9312,9315,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[3456,9598],[3971,9599],3522,3971,3971,3521,3458,[3522,9508],[3520,9408,6],7,8,[3522,9408,9],[3521,9409],[3908,9410],[3907,9411],[3969,9412],403,403,403,403,[3969,9407],[3521,9503],3907,3458,3906,3458,[3456,9508],[3458,9503],3971,3520,3458,3908,3457,3394,3521,3650,3651,3906,3969,3907,3456,3457,[3457,9613],[3905,9614],9997,[3983,9998],[3919,9803],3981,3983,[2766,3921],2829,2767,2765,2766,2767,[2829,3788],3920,[2765,3793],2830,2765,2766,2830,2832,2768,[2832,3854],[2768,3856],2829,2766,[2830,3724],[2768,3725],3983,[3920,9706],9895,[3983,9607],[3983,9608],3920,3920,3983,3918,3919,3919,3920,[3920,9709],[3919,9710],[2768,3856,9611],2831,2829,2829,2831,2768,2830,[2831,3724,9511],[3983,9512],3919,3919,3919,3920,3920,3917,3919,3919,3919,3919,3920,3919,3920,3919,3919,3983,[2766,3726,9805],[2832,3727,9901],9997,[2767,10093],[2768,10187],[2832,10188],2766,2767,2767,2768,2765,2831,[2766,3980],3983,3920,3919,3919,3983,3919,3920,3920,3918,3920,3983,3920,3983,3919,[3918,9622],[3918,9623],[3976,9620],3977,3914,3914,[4097,3787],4097,4097,[4097,3846],3978,3913,[4097,3787],4097,4097,4097,[4097,3974],3975,3976,3977,3977,3978,[3914,9330],[3975,9331],[4098,9333],[4098,3784],[4098,3720],[4098,3721],[4098,3785],[4098,3783],3976,3978,3977,3978,3978,[4097,3915],[4097,9425],[3919,9426],[3918,9429],[3914,9430],[3914,9330],[3913,9331],[3978,9332],[3914,9333],3911,[4097,3850],4097,4097,[4097,9619],[3180,9616],[3180,9617],3244,3244,3182,3181,3245,[3246,9814],[3179,9908],[3244,9909],[3911,9815],[3912,9620],3977,[4097,3915],4097,4097,[4097,4038],[4097,4041],3912,[3975,9425],[3918,9426],[3917,9427],[3919,9428],[3981,9429],[3914,9430],[3978,9330],[3975,9333],[4097,3786],4097,[4097,3910],[4097,3851],4097,[4097,3848],[3912,9619],[2434,9808],[2435,9809],2370,2435,2435,2434,2370,2434,2435,2435,2370,[2370,9718],[2435,9719],[3914,9716],3911,[4097,4043],4097,[4097,3782],3913,3978,3978,3975,[4097,3719,6],7,8,[3976,9],3977,3975,[4097,3785,10194],[4097,10195],[4097,10196],[4097,10197],[4097,3782],3914,3978,3914,[3913,10097],[4097,3979,10098],[4097,10099],[4097,3974,10100],[3913,10101],[3978,10007],[3913,9812],3913,3914,[3914,9715],[2370,9808],[2371,9906],[2435,9907],[2434,9908],[2370,9909],[2371,9910],10002,10003,[2371,9905],[2434,9809],2435,2435,2370,2434,2370,2435,2434,2435,2370,2371,2434,[2370,9526],[4097,9527],4097,4097,[4097,3782],3978,3914,[4097,3787],[4097,6],7,8,[4097,9],[4097,3846],3914,3911,[4097,3849],4097,[4097,3784],[4097,3719,9619],[2434,9712],[2434,9713],2434,2434,2370,[2371,3114,9814],[3179,9910],10006,[3978,10102],[3913,10194],[3977,10195],[3913,10097],[10001,9523],[3180,9712],[3182,9713],3245,3245,3243,3180,3182,3244,3182,[2434,3055],2435,[2434,2986],3243,3182,3244,3180,3179,3245,3180,3180,3245,[3180,9814],[3245,9910],10004,10005,10006,[4097,3848,10102],[4097,4039,10194],[4097,4040,10195],[3912,10196],[3977,10197],[3913,10097],10001,[3244,9905],[3180,9906],[3246,9907],[3246,9910],10006,[3914,10102],[4097,3979,10196],[4097,10197],[4097,10194],[4097,3784,10195],[3976,10196],[3913,10197],3914,[4097,3979],4097,4097,[4097,3782],3977,3913,3911,[4097,4041],[4097,4042],[4097,4043],[4097,4038],[4097,4039],[4097,3849],4097,4097,4097,4097,[4097,3783],3976,3977,3977,3978,3977,3977,3911,[4097,4040,9811],[4097,3849,10000],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],[3907,9685],[3458,9686,5092],5093,5094,[3522,5095],3521,3908,3393,[3906,5476],[3393,5477],[3392,5478],[3906,5479],3906,3969,3456,3906,3393,3905,3907,3971,3908,3906,3971,3905,3906,[3907,9691],[3905,9692],[3908,9593],3522,3522,3906,[3592,3781],3528,3269,[3530,3904],3456,3907,3907,3392,3456,[3593,4037],3594,3593,[3593,9595],[3593,9596],[3269,9593],3529,[3530,3968],3969,3969,3457,3521,[3907,9398],[3522,9494],3971,3907,3905,3905,[3520,9787],[3522,9883],9977,9978,9979,[3522,9980],[3458,9785],3971,3905,3520,[3456,9688],[3905,9685],[3969,9686],3522,3905,3908,3908,3906,3522,3905,[3908,9508],[3522,9408],[3456,9411],[3971,9412],403,403,531,403,403,403,403,403,403,403,403,403,403,403,9312,9313,9314,9315,9312,9313,9314,9315,[3907,9694],[3458,9695],3457,3971,3394,3458,3907,3456,3906,3457,3522,3522,3971,3906,3907,[3907,9508],[3905,9509],9312,9315,[3521,9407],[3971,9503],3394,3584,3585,3521,3905,3906,3907,3521,3520,3522,3969,3456,3905,3969,3908,3969,3906,3457,3969,3908,3458,[3456,9709],[3906,9710],[3920,10093,9515],3983,3920,3983,[2829,4048],[2768,3856],2831,[2831,566],[2767,567],2767,2768,[2767,3852],3981,[2768,3857],2767,2830,2832,[2831,3789],[2766,3729],2830,2832,2829,2767,2765,[2766,3788],3983,3983,[3920,9802],[3920,9991,9514],[3983,9703],[3983,9704],3920,3983,3919,3919,3920,3919,3919,[3920,9805],[3919,9806],[2767,3791,9611],2766,2830,2765,2832,2832,[2767,9514],9799,[3919,9800],3919,3983,3919,3920,3920,3983,3983,3920,3920,3983,3919,3920,3920,3918,3981,[3920,9613],[3983,9614],9997,[3919,10093],[2831,3726],[2766,3727],[2766,3728],[2765,3791],2766,2829,2830,2832,[2832,3789],3920,3983,3919,3919,3920,3919,3920,3919,3918,3918,3983,3918,3920,3920,3918,[3919,9718],[3919,9719],[3913,9716],3914,3977,3913,[4097,3915],4097,[4097,9330],[4097,3910,9333],3914,3913,[4097,3915],4097,4097,4097,[4097,4038],3912,3978,3913,3977,[3914,9425],[3918,9426],[3918,9427],[3920,9429],[3976,9430],3914,3977,3975,3976,3977,3978,3977,3914,3914,[3787,9520],[3981,9521],3920,3981,[3981,9526],[3983,9426],[3981,9427],[3981,9428],[3981,9429],[4097,3849,9430],4097,[4097,3718],[4097,3719],[4097,3720,9619],[3182,9808],[3182,9809],3181,3245,3244,3182,[3180,9814],[3245,9910],10004,10005,9911,[4097,3847,9716],3912,3975,[4097,3786],4097,4097,4097,[4097,3848,9523],[3918,9616],[3919,9617],3983,3918,3920,[3920,9526],[3920,9426],[3981,9429],[4097,4043,9430],4097,[4097,3974],[4097,3915],4097,4192,[4097,3974,9715],9904,[2371,9616],[2370,9617],2434,2434,2434,2435,2370,2370,2434,2370,2435,[2370,9526],[3911,9430],[4097,3849],4097,4097,[4097,3910],3913,3911,3912,3914,[3914,9330,6],7,8,[3977,9333,9],3914,3914,[4097,3979],4097,4097,4097,[4097,3846],3914,3978,3911,[4097,4042],[4097,4043,10194],[4097,10195],[4097,4038,10196],[4097,4039,10197],3912,3977,3914,3977,[3911,9811],9904,10002,10003,10004,10005,10006,[3977,10098],[3977,10099],10001,[2371,9712],[2371,9713],2434,2434,2435,2370,2435,2434,2370,2370,2370,2435,[2371,9622],[2435,9623],[4097,9524],4097,[4097,3846],3913,3914,[4097,3851],[4096,6],7,8,[4097,9],[4097,3910],3911,[4097,4043],[4097,3784],[4097,3719],3976,[3914,9619],[2434,9808],[2434,9906],[2371,9907],[2370,9908],[2370,9909],[2434,9910],10006,[3977,10102],3977,3914,3978,3913,[3911,10097,9619],[3912,9808],[3245,9809],3179,3244,3179,3244,[3244,9814],[3182,9906],[3245,9907],[2370,3119,9809],2434,[2434,3050],3180,3179,3182,3179,3243,3244,3181,3244,[3244,9814],[3180,9910],10006,[3913,10100],[4097,3851,10101],[4097,10102],4097,4097,4097,[4097,3848],[4097,4041],[4097,4042],[4097,4043,10097],10001,10002,10003,10006,[3914,10102],3913,3975,[4097,3785],4097,[4097,4038],3912,3914,3978,3975,[4097,3786],4097,[4097,3910],3913,3911,[4097,3849],4097,4097,4097,4097,4097,4097,[4097,3784],[4097,3723],4097,[4097,3718],3976,3977,3977,3914,3913,3914,3911,[4097,4043],4097,4097,[4097,10097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3520,9494],[3969,5188],5189,5190,[3520,5191],3393,3457,3907,3458,3456,3393,3520,3908,3905,3393,3520,3394,3906,3456,3971,3969,3908,3908,3393,3908,[3908,9787],[3908,9788],[3456,9593],3458,3522,3907,[3530,3845],3332,[3593,3777],3905,3457,3906,3971,[3592,4034],[3592,3844],3332,3593,3530,[3593,3777,9691],[3530,3714,9692],[3593,3715,9689],[3530,3716],3907,3521,3907,3456,[3456,9398],[3522,9494],3457,3456,3457,3971,[3522,9595],[3521,9596],[9979,9497],[3905,10073],[3458,10074],[3908,10075],3971,3907,3584,3585,3458,[3456,9398],[3971,9494],3905,3458,3905,3971,3456,3458,3905,3522,3521,3905,3521,[3522,9508],[3458,9412],403,403,403,403,9312,9315,403,403,403,403,403,403,[3969,9407],[3457,9408],[3905,9409],[3522,9410],[3456,9411],[3971,9408],[3969,9409],[3907,9410],[3905,9411],[3969,9503],3971,3971,3458,3456,3907,3907,3458,3522,3971,3908,3522,3393,3456,3522,3971,[3969,9508],[3969,9408],[3521,9411],[3969,9503],3906,3456,3648,3649,3522,3457,3456,3457,3969,3905,3521,3458,3520,3522,3971,3905,3457,3969,3456,3394,3520,3521,[3906,9805],[3906,9806],[3983,9611],3919,3981,[2768,3793],2767,2765,2832,[2832,630],[2829,631],2832,2831,[2767,3916],3919,[2767,3921],2767,2767,[2832,3724],3920,[2765,3985],2765,2766,2768,2832,2829,[2765,3916],3919,3919,3983,[3920,9610],9799,[3919,9800],3919,3983,3917,3919,[3920,9805],[3983,9897],[3920,9898],[3920,9901],9902,[2766,3985,9707],2830,2766,2829,2830,2829,[2829,9706],9895,9896,[3920,9897],[3919,9898],[3920,9899],[3920,9900],[3919,9800],3919,3919,3983,3981,[3919,9805],[3983,9897],[3920,9800],3920,3983,3983,[3919,9709],[3920,9710],[3983,10093,9515],3983,3920,3983,3919,3920,[2768,3725],[2765,3791],[2765,3790],[2765,3725],3983,3918,3919,3918,3918,3983,3983,3919,3983,3920,3919,3918,3917,3981,3983,3917,3917,[3920,9526],[3914,9812,9527],3914,3977,3978,3975,[4097,3785,9425],[3918,9426],[3919,9429],[3911,9430],[4097,4042],[4097,4043],4097,4097,4097,4097,[4097,3974],3913,3913,[3913,9520],[3917,9521],3919,3920,3920,[3920,9526],[3978,9527],[3978,9330],[3978,9331],[3914,9332],[3913,9333],3978,3977,3913,[3914,9523],[3919,9616],[3920,9617],3983,3917,3981,3919,3917,3918,3981,[3981,9526],[4097,9527],[4097,3974],3977,[3978,9715],9904,[3243,9905],[3180,9906],[3244,9907],[3243,9908],[3246,9909],[3245,9910],10006,[3978,10100],[4097,3787,10101],[4097,10007],[4097,9812],[4097,3782],3977,3975,[4097,3719],[4097,3722],[4097,3786],[4097,9715],[3983,9712],[3918,9713],3919,3981,3918,3919,3920,3917,[3919,9526],[4097,3783,9527],3976,3975,[4097,3723],4097,[4097,3847,9811],[4097,4039,10000,9523],[2371,9712],[2371,9713],2371,2371,2371,2370,2370,2435,2370,2370,2370,2435,[2435,9526],[4097,9527],4096,4097,[4097,4038],[4097,4039],[4097,3850],[4097,3974],[3914,9425],[2435,9426,6],7,8,[2434,9429,9],[3913,9430],3977,3975,[4097,3785],4097,4097,[4097,3910],3978,3911,[4097,3850],4097,4097,4097,4097,4097,[4097,3847],3912,3978,3978,[4097,3787],[4097,10000],[4097,10098],[4097,10099],[4097,10100],[4097,3846,10101],[3914,10102],[3978,10194],[3914,10195],[3977,10097],[2371,9808],[2371,9809],2371,2370,2435,2435,[2371,9814],[2434,9809],2370,2434,2370,2434,[2435,9718],[2435,9719],[4097,9620],4097,[4097,3910],3977,3914,[4097,3915],[4097,6],7,8,[4097,9],[4097,4038],[4097,3849],4097,[4097,3974],3913,3914,[3914,9715],9904,10002,10003,10004,10005,10006,[3978,10102],3977,3978,3913,3913,3913,[4097,3979,9715],9904,[3182,9905],[3182,9906],[3243,9907],[3245,9908],[3246,9909],[3245,9910],10002,10003,[2434,9905],[2434,9906],[2434,3114,9907],[3182,9809],3179,3179,3246,3246,3245,3182,[3244,9622],[3245,9623],[10006,9524],[3977,10102],[3914,10196],[4097,3915,10197],4097,4097,4192,4097,4097,4097,4097,4097,[4097,10097],[4097,10098],[4097,10099],[4097,3848,10102],3912,3978,3978,[4097,3787],4097,4097,[4097,3847],3912,3977,3911,[4097,4043],4097,[4097,4038],[4097,4039],[4097,3849],4097,4097,4097,[4097,3784],[4097,3720],[4097,3721],[4097,3722],3976,[4097,3787],4097,[4097,3782],3914,3914,3914,3978,3977,3911,[4097,3850],4097,4097,4097,[4097,9715],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3393,9589],[3906,9590],[3908,5284],[3521,5285],[3394,5286],[3522,5287],3457,3906,3458,3521,3521,3521,3457,3521,3521,3520,3393,3456,3908,3905,[3906,4996],[3907,4997],[3906,4998],3969,3906,[3907,9787],[3908,9883],9884,[3907,9689],3458,3906,3971,[3529,3909],3592,[3530,3968],3456,3908,3522,[3594,3973],3594,3528,3530,[3593,3712],[3528,3713],3457,[3521,9499],[3908,9500],[3456,9303],[3908,9304],[3521,9305],[3969,9306],[3907,9398],[3908,9494],3456,3458,[3907,9495],3457,3521,[3907,9691],[3969,9692],[3907,10075,9593],[3457,10169],[3971,10170],3458,3905,3905,3648,3649,[3906,9493],[3905,9494],3457,3392,[3971,9498],3456,3907,3906,3908,3456,3908,3393,3458,3908,3971,[3520,9508],[3907,9412],9312,9315,[3906,9407],[3969,9408],[3457,9411],[3521,9412],9312,9313,9314,9315,[3906,9407],[3906,9503],3520,3456,3584,3585,3906,3907,3456,3521,3520,3908,3908,3969,3521,3906,3906,3458,3393,3971,3520,3971,3458,3522,3521,3457,3906,3521,3520,3520,3906,3456,3905,3521,3971,3906,3906,3457,3521,3969,3457,3971,3907,3457,3458,3906,3907,3393,3969,3906,3905,[3457,9805],[3969,9901],9902,[3920,9707],3920,3919,[2832,3857],2830,2767,2766,[2765,694],[2768,695],2767,[2832,3789],3919,3919,3983,[2767,3791],[2832,3790],3920,3981,3920,[2767,3725],[2768,3791],2832,2767,2767,[2767,3980],3983,3918,3983,[3983,9706],9895,[3919,9896],[3983,9897],[3983,9898],[3981,9899],[3981,9900],[3983,9901],9993,9994,9997,[3983,9998],[3920,9803],[2765,3791],2832,2766,2831,2830,[2768,9802],[2830,9991],9992,9993,9994,9995,9996,9896,[3983,9897],[3919,9898],[3983,9899],[3919,9900],9901,9993,[3919,9896],[3983,9800],3919,3983,[3920,9805],[3983,9806],[3919,9611],3919,3919,3919,3983,3920,3919,3919,3983,3920,3983,3983,3983,3983,3983,3919,3919,3983,3919,3919,3918,3981,3920,3918,3983,3981,3981,3920,[3918,9526],[3914,9527],[3977,9330],[3977,9333],[3978,9425],[3920,9521],3918,3919,[3983,9526],[4097,9527],4097,[4097,3718],[4097,3720],[4097,3722],[4097,3723],[4097,3847],[4097,4041],[3912,9523],[3983,9712],[3983,9713],3919,3917,3917,3917,[3918,9526],[3981,9426],[3983,9427],[3917,9428],[3917,9429],[3914,9430],3978,3977,[3914,9715,9330],[3917,9712],[3919,9713],3918,3918,3981,3983,3919,3920,3983,[3981,9622],[3981,9623],[3976,9524],3913,[3911,9811],[4097,3850,10000],10001,10002,10003,10004,10005,10006,[3977,10102],[3977,10196],[4097,3851,10197],[4097,9330],[4097,9333],[4097,3910],3978,3913,3913,3913,3975,[4097,3719,9425],[3918,9521],3920,3917,3918,3919,3917,3981,3918,[3983,9622],[3913,9623],[3978,9524],3978,3975,[4097,3785],4097,[4097,9619],[2371,9808],[2434,9809],2434,2435,2370,2435,2434,2434,2371,2435,2435,2434,[2435,9622],[2435,9623],[4097,9524],4097,4097,4097,4097,[4097,3848,9520],[2434,9521],2434,2434,2371,2434,[2434,9526],[3977,9527],3977,3975,[4097,3719],[4097,3785],[4097,3974,9330],[3914,9333],[4097,3979],4097,4097,[4097,3783],[4097,3719],[4097,3723],4097,4097,[4097,3782],3977,3977,[4097,3851],4097,[4097,10194],[4097,10195],[4097,10196],[4097,3910,10197],3977,3913,3977,3977,9904,[2371,9905],[2434,9906],[2370,9907],[2371,9908],[2371,9909],[2371,9910],[2371,9905],[2371,9809],2434,2371,2370,[2371,9718],[2371,9719],[4097,9620],4097,[4097,3974],[3977,9330],[3978,9333],[4097,3979],[4097,6],7,8,[4097,9],4097,4097,[4097,3783],3976,3913,3913,[3977,9811],[3914,10000],[3913,10098],[3914,10099],[3979,10100],[4097,10101],[4097,3847,10102],3912,3978,3977,3978,3911,[4097,4042],[4097,4043,9811],[4097,10000],10001,10002,10003,10004,10005,10006,[3913,10098],[3977,10099],10001,10002,10003,[3246,9905],[3180,9809],3180,3246,3179,3181,3245,[3180,9718],[2434,3310,9719],[3977,10102,9620],3914,3914,[4097,3979],4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,10194],[4097,10195],4097,[4097,3782],3978,3913,[4097,3915],4097,4097,4097,[4097,3782],3913,[4097,3787],4097,4097,4097,4097,4097,4097,[4097,3783],[4097,3719],3976,3977,3978,3978,3977,[4097,3915],4097,[4097,3846],3914,3913,3977,3977,3913,[4097,3787],4192,[4097,3718],[4097,3719],[4097,3720],[4097,3721,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3458,9685],[3520,9686],[3393,5380],[3905,5381],[3522,5382],[3905,5383],3520,3457,3394,3521,[3521,4996],[3520,4997],[3521,4998],3522,3521,3521,3393,3908,3969,3908,[3906,5092],5093,5094,[3392,5095],[3969,9595],[3905,9596],[9979,9497],[3522,9980],[3971,9785],3520,3905,3905,[3593,3973],3528,[3529,4032],[3529,4034],[3594,4035],[3529,4036],[3528,4037],3529,3332,3594,[3530,3968],3971,3971,3971,[3521,9499],[3456,9399],[3905,9400],[3457,9401],[3522,9402],[3969,9494],3457,3457,[3458,9496],[3458,9591],[3905,9590],3457,[3907,9595],[3969,9596],[3456,9593],3458,3457,3969,3456,3457,3520,[3457,9496],[3456,9589],[3971,9590],3907,3458,[3457,9594],[3522,9497],3907,3520,3907,3458,3907,3971,3908,3458,3905,3522,[3969,9508],[3908,9408],[3520,9411],[3908,9503],3520,3521,[3971,9508],[3456,9408],[3457,9409],[3458,9410],[3458,9411],[3521,9503],3906,3522,3458,3648,3649,3908,3521,3905,3520,3971,3458,3520,3392,3907,3456,3971,3521,3908,3522,3521,3908,3458,3522,3458,3521,3457,3907,3969,3908,3969,3522,3456,3969,3969,3458,3905,3907,3521,3908,3521,3969,3458,3906,3458,3456,3969,3522,3908,3905,[3457,9613],[3522,9614],9997,[3983,9998],[3919,9803],3920,3920,[2829,3921],2831,[2829,3790],[2830,3791],2767,2768,2765,[2830,3980],3920,3919,3920,3983,3983,3920,3917,3920,3983,3983,[2832,3726],[2832,3727],[2768,3728],3919,3983,3920,3983,[3983,9802],[3918,9991],9992,9993,9994,9995,9996,9997,[3919,10089],[3983,10090],[3919,10093],3919,3983,3919,[2831,3726],[2832,3727],[2766,3728],[2831,3729],2830,2767,[2767,10088],[2831,10089],[2829,3980,10090],[3920,10091],[3920,10092],9992,9993,9994,9995,9996,9997,[2830,4047,10089],9992,[3918,9896],[3919,9897],[3983,9898],[3919,9901],9902,[3917,9707],3983,3920,3983,3920,3920,3983,3920,3919,3919,3918,3920,3920,3919,3919,3919,3920,3919,3920,[3917,566],[3919,567],[2768,4048],[2766,4046],3920,3981,3920,3919,3917,3981,[3983,9526],[3919,9426],[3918,9429],[3917,9521],3920,3983,3917,[3917,9622],[3920,9623],[4097,3783,9524],3976,3913,3911,[4097,3850],4097,4097,[4097,3974,9520],[3917,9521],3983,3918,3919,3918,3981,3983,3920,3919,3981,3919,[3920,9526],[3913,9527],[3977,9425],[3981,9426],[3983,9521],3919,3981,3983,3919,3920,3981,3918,3981,[3918,9718],[3918,9719],[3914,9620],3978,[4097,3979],4097,[4097,10097],[4097,3782,10098],[4097,3915,10099],[4097,10100],[4097,3848,10101],[4097,4040,10102],[4097,4041],3912,[3851,9425],[3920,9426],[3983,9429],[3976,9430],3914,3977,3913,3977,[3914,9425],[3983,9521],3919,3920,3918,3983,3981,3983,3920,3983,[3919,9718],[3978,9719],[3914,9716],3914,3914,[4097,3979],4097,[4097,9715],9904,[2370,9905],[2371,9809],2434,2434,2434,2435,2435,2371,2371,2050,2435,[2434,9718],[2371,9719],[4097,3719,9620],[4097,3720],[4097,3721],[4097,3722],[4097,3722],[2434,9616],[2434,9617],2435,2371,2435,2370,2434,[2370,9526],[3977,9527],[3977,9330],[3978,9333],[3977,9425],[2370,9426],[2434,9429],[4097,3849,9430],[4097,3718],[4097,3719],3976,3914,[4097,3787],4096,4097,[4097,3910],3914,3978,[4097,3915],4097,4097,4097,4097,[4097,3974],3914,3977,3978,3911,[4097,3849,10000],10001,10002,10003,10004,10005,10006,10001,[2371,9905],[2371,9906],[2371,9907],[2371,9908],[2371,9909],[2371,9815],[4097,3719,9620],[4097,3785],[4097,3974,9520],[3244,9426],[3246,9429],[4097,3787,9430],[4097,9330,6],7,8,[4097,9333,9],4097,4097,[4097,3974],3977,3913,3913,3913,3913,[3911,10194],[4097,4042,10195],[4097,4043,10196],[4097,10197],4097,[4097,4038],[4097,4040],[4097,4041],[4097,4042],[4097,3849],4097,4192,4097,[4097,3846,10097],[3977,10098],[3913,10099],[3911,10100],[4097,10101],[3912,10102],[3978,10194],[3913,10195],[3914,10097],[4097,3787,10098],[4097,10099],10001,[3246,9905],[3182,9809],3243,3245,3244,[2434,3309],[2371,3117,9622],[2435,9623],[3978,9620],3978,3978,3975,[4097,3723],4097,4097,[4097,3718],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3785],4097,4097,4097,[4097,3846],3977,3978,[4097,3979],4097,4192,4097,[4097,3846],3977,[4097,3915],4097,4097,4097,4097,4097,4097,[4097,3847],[4097,4039],[4097,4040],3912,3913,3914,3911,[4097,3850],4097,[4097,3910],3977,3978,3914,3977,3914,[4097,3851],4097,[4097,3782],3978,[3913,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3907,9781],[3392,9782],[3521,5476],[3907,5477],[3457,5478],[3907,5479],3456,3458,3907,3905,[3456,5092],5093,5094,[3521,5095],3457,3521,3394,3456,3969,3456,[3908,5188],5189,5190,[3906,5191],[3908,9691],[3908,9692],[3456,10075,9593],3456,3522,3906,3907,3458,3456,[3528,3780],3530,3530,3269,3593,[3529,3777],[3528,3713],[3529,3779],[3592,3778],3520,3908,3456,3969,3906,3522,3522,3905,3969,3522,3520,3457,[3971,9592],[3906,9685],[3522,9686],3458,[3520,9787],[3908,9788],[3522,9593],3456,3456,3969,3457,3520,3456,[3905,9592],[3969,9685],[3521,9686],3394,[3456,9787],[3908,9788],[3906,9593],3905,3456,3393,3905,3906,3456,3906,3520,3908,3906,3521,3971,3521,3520,3520,3457,3458,3458,3392,3456,3458,3521,3520,3971,3907,3971,3969,3971,3458,3522,3905,3456,3458,3522,3905,3520,3908,3458,3907,3907,3457,3458,3907,3522,3908,3906,3458,3969,3905,3588,3589,3905,3969,3906,3906,3520,3458,3905,3392,3971,3458,3906,3520,3522,3521,3908,3905,3908,3905,[3917,3843],[3918,3841],[3522,9613],[3522,9614],[3919,10093,9515],3983,3920,3983,3920,3919,[2831,3725],3918,3919,[2768,3726],[2768,3727],[2830,3728],3919,3983,3981,3983,3919,3918,3917,3917,3919,3919,3983,3919,3983,3919,3920,3983,3983,3920,3917,3983,[3919,10088],[3983,10089],[3919,10090],[3919,10091],[3919,10092],[3983,10093],[3983,10185],[3983,10186],3920,3983,3919,3920,3920,3919,3919,[2831,3793],2766,2766,2765,[2765,10185],[2829,3853,10186],[2832,4045,10187],[2831,4046,10188],[2768,4047,10088],[2830,4048,10089],[2768,3855,10090],[2766,10091],[2831,10092],[2829,10093],[2832,10185],[2829,3854,10088],9992,9993,9994,9997,[3983,9998],[3920,9803],3919,3919,3983,3920,3919,3920,3919,3983,3919,3983,3919,3983,3917,3920,3983,3920,[2766,3985],[2765,3854],[2768,4048,630],[2765,3855,631],2829,[2766,3724],3920,3920,3981,3918,3983,3981,3918,3918,3983,3983,3918,3981,3983,[3920,9718],[3920,9719],[3976,9716],3914,3914,3975,[4097,3723,9330],[4097,9333],[4097,9523],[4097,9616],[3983,9617],3917,3919,3918,3919,3917,3920,3983,3917,3983,3917,3917,[3917,9526],[3918,9521],3920,3983,3919,3983,3918,3981,3918,3919,3917,3919,[3983,9622],[3920,9623],[3978,9620],3911,[4097,4043],4096,4097,[4097,3910,10194],[4097,3979,10195],[4097,10196],[4097,10197],4097,4097,[4097,3974,9520],[3920,9521],3983,3918,[3983,9526],[3977,9527],[3914,9330],[3977,9333],[3977,9425],[3919,9521],3981,3919,3983,3917,3919,3917,3918,3920,3920,3918,[3917,9526],[3914,9527],3913,3914,3975,[4097,3719],[4097,3720,9811],[4097,3721,10000],10001,[2371,9616],[2371,9617],2435,2370,2435,2370,2434,2371,2050,2435,[2371,9814],[2435,9815],[3977,9620],3913,3978,[3913,9330],[3913,9333],[2434,9712],[2371,3052,9713],[2434,3054],2435,2371,2435,2435,2434,[2434,9526],[2435,9426],[2434,9429],[2434,9521],2370,2434,[2371,9526],[3976,9527],3914,3913,3913,[4097,3851],4097,[4097,3783],3976,3914,3977,[4097,3979],4097,4097,4097,[4097,3783],3976,3913,3977,3911,[4097,4043],4097,[4097,3718,10097],[3976,10098],[3977,10099],[3911,10100],[4097,10101],[4097,10102],[4097,10097],10001,10002,10003,10004,10005,9911,[3914,9716],[3975,9523],[3244,9712],[3180,9713],3244,[3243,9526],[3180,9426,6],7,8,[2434,9429,9],[4097,9430],[4097,3783],3976,3913,3977,3978,3977,3911,[4097,3850],4097,4097,4192,4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,3910],[3913,10194],[3978,10195],[4097,3787,10196],[4097,10197],[4097,3847],3912,3913,3913,[4097,3851,10194],[4097,10195],[4097,3910,10097],10001,[3179,9905],[2371,3309,9809],[2435,3310],[2435,3117],2434,[2434,9718],[2435,9719],[4097,4039,9620],3912,3977,3977,3975,[4097,3785],4097,[4097,3847],3912,3913,3914,3977,[4097,3787],4097,4097,4097,[4097,3910],3913,3911,[4097,4043],4097,4097,4097,[4097,3910],3913,3975,[4097,3785],4097,4097,4097,4097,4097,4097,4097,4097,[4097,3847],3912,3978,[4097,3787],4097,4097,[4097,3974],3977,3978,3977,3913,3914,[4097,3915],4097,[4097,3910],3978,[3977,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],[9877,9496],[3457,9589],[3521,9590],3394,3908,3392,3907,3521,3392,3394,[3457,5188],5189,5190,[3392,5191],3907,3905,3906,3521,3908,3969,[3907,5284],[3969,5285],[3907,5286],[3908,5287],[3908,9595],[3971,9596],[3392,9593],3521,3456,3456,3393,3586,3587,3520,[3593,3713],[3593,3714],[3530,3715],[3530,3716],3520,3906,3457,3522,3905,3522,3522,3905,3458,3458,3458,3908,3905,[3906,3461],3908,3458,[3907,9592],[3456,9781],[3458,9881],[3522,9882],[3456,9883],9884,[3520,9689],3456,3905,3907,3456,3521,3522,[3905,9592],[3971,9781],[3456,9881],[3520,9882],[3908,9883],9884,[3521,9689],3520,3457,3521,3520,3907,3520,3520,3908,3521,3456,3520,3906,3969,3458,3458,3456,3906,3393,3905,3456,3905,3906,3520,3521,3971,3906,3521,3906,3521,3908,3905,3394,3520,3456,3394,3907,3906,3908,3392,3458,3908,3906,3456,3971,3457,3971,3457,3456,3457,3652,3653,3905,3522,3971,3971,3969,3907,3907,3906,3908,3520,3969,3969,3969,3520,3905,3971,3521,[3920,3781],3983,3919,[3983,3968,9709],[3521,9710],[3917,9707],3920,3983,3917,3920,3919,3983,3920,3983,3920,3920,3983,3983,3919,3920,3920,3919,3919,3920,3983,3917,3920,3920,3919,3983,3983,3919,3920,3920,3920,3919,3919,3918,[3920,10185],[3920,10186],[3919,10187],[3983,10188],3919,3983,3919,3920,3983,3919,3917,3981,3919,3920,[2832,3857],2831,2832,2766,2765,2765,2830,2768,2832,[2768,10185],[2829,10186],[2830,10187],[2830,10188],2832,2767,[2831,3790],[3920,10088],[3983,10089],[3983,10090],[3919,10093],3983,3981,3919,3920,3981,[3918,566],[3983,567],3983,3981,3981,3920,3919,3918,3919,[3919,566],[3919,567],3983,3919,[2765,3856],2830,[2830,694],[2831,695],[2830,3790],3919,3981,3920,3981,3983,3981,3983,3918,3917,3917,3920,3917,3920,3920,3981,[3917,9526],[3913,9527],3978,3978,[3978,9425],[3919,9426],[3920,9429],[4097,9619,9430],[3917,9712],[3919,9713],3918,3920,3918,3918,3983,3919,3917,3983,3920,3918,3918,3920,3983,3917,3919,3920,3919,[2766,4046],3920,3981,3919,3917,3917,[3918,9718],[3919,9719],[3913,9716],[4097,3787],4097,4097,[4097,3784],3976,3975,[4097,3720],[4097,3721],[4097,3786],[4097,9523],[3981,9616],[3917,9617],3981,3981,3917,[3920,9526],[3918,9426],[3920,9429],[3919,9521],3917,3920,3917,3983,3918,3919,3983,3919,3919,3983,3918,3983,[3983,9526],[3913,9527],[3913,9330],[3914,9333],3913,3977,3977,[3914,10097],[2370,9712],[2434,9713],2051,2371,2434,2371,2370,2370,2434,[2434,9814],[2434,9910],9911,[3977,9716],3978,[3978,9425],[3180,9426],[2371,2990,9429],[2435,2987,9521],3244,[2370,3055],2435,2371,2370,2371,2435,2371,2370,2370,2435,2371,2371,[2371,9622],[2371,9623],[3978,9524],3977,3978,[4097,3915],4097,[4097,3974],3913,3978,3914,[3975,9330],[4097,3785,9333],4097,4097,[4097,3974,9330],[3913,9333],3977,3913,[4097,3979],4097,4096,[4097,3974],[3978,10194],[3913,10195],[4097,3787,10196],[4097,10197],4097,[4097,3718],[3976,10097],[3977,10098],[4097,3915,10099],[4097,10100],[4097,3847,10101],[3912,10007],[3977,9812],[3978,9520],[3181,9521],3246,3246,3181,[3244,6],7,8,[2434,9],[2434,9526],[3976,9527],3978,3977,3913,3977,3911,[4097,4043],4097,4097,4097,4097,[4097,3783],[4097,3723],4097,4097,4097,[4097,3718],[4097,3720],[4097,3721],[4097,3722],3976,3978,3913,[4097,3851],4096,4097,[4097,3974],3914,3914,[4097,3915],4097,[4097,3974],[3914,10097],10001,[2371,9905],[2435,9809],2434,2371,[2434,9814],[2370,9815],[4097,9620],[4097,3782],3978,3978,3913,[4097,3787],4097,4097,[4097,3974],3978,3978,3914,[4097,3851],4097,4097,4097,[4097,4038],[4097,4039],[4097,3849],4097,4097,4097,[4097,3783],3976,3978,3977,3975,[4097,3720],[4097,3721],[4097,3722],[4097,3723],4097,4097,4097,4097,4097,[4097,3782],3913,[4097,3915],4097,4097,[4097,3847],3912,3977,3978,3911,[4097,4042],[4097,4043],4097,[4097,3847],[4097,4039],[3912,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973,9592],[3908,9685],[3521,9686,4996],[3521,4997],[3394,4998],3457,3520,3392,3456,3908,[3907,5284],[3908,5285],[3905,5286],[3907,5287],3521,3908,3520,3457,3969,3907,[3522,5380],[3906,5381],[3520,5382],[3969,5383],[3392,9691],[3394,9692],[3457,9689],3520,3457,3907,3908,3650,3651,3456,3905,3522,3457,3457,3906,3457,3458,3456,3520,3905,3520,3971,3907,3908,3521,3456,3458,3969,3905,3520,[3908,9688],9877,9977,9978,9979,[3393,9980],[3905,9785],3905,3457,3906,3969,3457,3905,[3456,9688],9877,9977,9978,9979,[3971,9980],[3392,9785],3458,3969,3521,3458,3908,3969,3521,3393,3458,3522,3905,3456,3392,3907,3906,3908,3522,3905,3520,3905,3458,3457,3906,3969,3393,3908,3521,3522,3971,3456,3458,3908,3908,3908,3456,3521,3522,3457,3456,3520,3907,3456,3906,3907,3522,3456,3522,3457,3905,3908,3907,3908,3458,3905,3457,3456,3907,3458,3457,3908,3971,3522,[3522,3461],3456,3522,3458,3521,3521,[3981,3845],3983,3919,[3919,3776],[3521,9517],[3919,9421],3920,3919,3920,3983,3920,3920,3919,3920,[3919,193],3919,[3920,193],3983,[3919,321],3917,[3920,321],3919,[3983,193],3919,[3919,321],3981,[3919,193],3919,[3920,321],3983,3920,3983,3920,3920,3919,3983,3919,3983,3920,3919,3919,3983,3919,3918,3983,3919,3983,3920,3919,3918,3919,3920,[2768,3921],2766,[2766,3724],[2767,3725],[2830,3726],[2829,3727],[2768,3728],[2768,3791],2831,2830,2832,[2831,3790],[2765,3726],[2832,3727],[2830,3728],3919,3920,[3983,10185],[3983,10186],3918,3983,3983,[2829,3793],[2831,3854],[2832,4048],[2831,4047,630],[2765,4047,631],3920,3981,3919,3919,3919,3919,[2768,4048],[2766,4047,630],[2767,4047,631],[2830,4045],3983,[2832,3792],2768,[2830,3790],[2830,3726],3918,3981,3919,3983,3918,3920,3920,3981,3981,3918,3919,3981,3920,3920,3917,3918,3918,[3917,9526],[3978,9527],[3978,9520],[3981,9521],3983,3917,[3919,9526],[3918,9521],3981,3918,[3983,566],[3917,567],3983,3983,3918,3983,3983,3918,3918,3983,3918,3983,3920,3917,3917,[2766,3793],2765,[2767,3980],3918,3918,3918,3919,3920,[3919,9526],[3913,9527],[4097,3915,9330],[4097,9331],[4097,9332],[4097,3782,9333],3914,3977,3977,3978,3975,[4097,3719,9520],[3920,9521],3919,3917,3919,3920,3919,3919,3981,3919,3917,3983,3917,3983,3919,3918,3918,3917,3920,3918,3919,3918,3917,[3917,9526],[3919,9426],[3918,9429],[3913,9527],3977,3914,[3977,9520],[2370,9521],2370,2434,2371,2435,2435,2435,2435,[2435,9622],[2371,9623],10006,[3914,10007],[3913,9812],[3913,9520],[3246,9521],3182,3245,3246,3180,[2434,3183],2435,2435,2370,2371,2434,2434,2434,2370,2434,2371,2371,[2371,9718],[2370,9719],[3978,9620],3978,3977,[4097,3979],4097,[4097,3847,9330],[3914,9330],[3977,9333],[3978,9425],[2435,9426],[2370,9429],[4097,9430],[4097,9425],[2435,9426],[2435,9429],[4040,9430],[4097,4042],[4097,3850],4097,[4097,3783],3976,3977,3913,[4097,3851],4097,[4097,3783],3976,3913,[3914,10194],[4097,3979,10195],[4097,10196],[4097,10197],[4097,3974],[3913,9520],[3179,9521],[2370,3116],[2434,3308],[2371,3310],3245,3181,3179,[2434,3247],2242,[2243,9718],[2434,9719],[3913,9524],3977,3914,3911,[4097,3850],4097,[4097,3718],[4097,3720],[4097,3721],[4097,3722],3976,[4097,3787],4097,4097,4097,[4097,3974],3913,3914,3977,3913,3914,3914,[4097,3915],4097,4097,[4097,4038],3912,3911,[4097,3850],[4097,3784],3976,3977,[3911,10097],10001,[2371,9905],[2434,9908],[2371,9909],[2370,9910],9911,[4097,9716],[4097,3846],3977,3913,3913,[4097,3851],4097,4097,[4097,4038],[4097,4039],3912,3978,[4097,3915],4097,4097,4097,4097,4097,4097,4097,4097,[4097,3784],3976,3913,3978,3913,3913,3914,3913,3914,[4097,3979],4097,4097,4192,4097,4097,[4097,3910],3914,[4097,3979],4097,4097,4097,[4097,3782],3977,3911,[4097,3849],4097,4097,4097,4097,[4097,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3905,9494],[3520,5092],5093,5094,[3394,5095],3458,3392,3456,3522,[3908,5380],[3520,5381],[3393,5382],[3907,5383],3907,3457,3394,3520,3971,3971,[3906,5476],[3969,5477],[3908,5478],[3905,5479],3971,[3908,9499],[3908,9500],3905,3457,3969,3905,3906,3969,3520,3522,3521,3908,3971,3392,3522,3522,3908,3907,3457,3521,3905,3907,3520,3905,3971,3907,3971,3457,3906,[3393,9784],[3456,9973],[3393,10073],[3905,10074],[3456,10075],3522,3522,3906,3908,3393,3521,3520,3521,[3458,9784],[3971,9973],[3459,10073],[3456,10074],[3905,10075],3908,3906,3457,3905,3521,3969,3906,3969,3522,3971,3458,3905,3457,3969,3522,3905,3908,3520,3908,3908,3456,3905,3522,3393,3521,3969,3908,3907,3906,3456,3521,3521,3522,3908,3457,3588,3589,3905,3458,3907,3971,3520,3456,3520,3457,3971,3908,3522,3906,3969,3458,3971,3906,3456,3905,3456,3905,3520,3522,3520,3520,3907,3905,3458,3908,3907,3971,3907,3456,3971,[3920,3909],3920,3983,[3983,3840],[3521,9613],[3969,9614],[3983,9515],3983,3981,3983,3919,3919,3920,3920,[3917,256],3919,[3920,256],3981,[3918,384],3983,[3919,384],3917,[3920,256],3920,[3919,384],3983,[3918,256],3919,[3920,384],3920,3919,3919,3918,3920,3919,3917,3983,3919,3983,3920,3919,3920,3920,3919,3983,3919,3919,3917,3983,3983,3920,3920,[2765,3985],2767,[2768,3980],3920,3919,3983,3918,3983,[2766,3726],[2829,3727],[2830,3728],3983,3920,3919,3920,3918,3918,3917,3983,3981,3918,3917,[2767,3921],2831,2831,[2768,694],[2830,695],[2765,3980],3920,3983,3919,3918,3983,[2765,3729],[2829,694],[2767,695],2832,[2829,4044],[2768,3855],[2767,3789],3981,3983,3981,3981,3981,3919,3981,3920,3919,3918,3918,3983,3983,3918,3919,3981,3919,3981,3981,3918,[3919,9526],[3918,9521],3920,3920,3920,3918,3983,3919,[2767,4046],[2768,4047,630],[2767,4048,631],[2831,4045],3920,3983,3917,3981,3917,3919,3919,3917,3981,3919,3981,3981,[2830,3857],2831,[2766,3980],3919,3983,3917,3983,3981,3981,[3917,9526],[3983,9426],[3919,9427],[3983,9428],[3983,9429],[3914,9527],3978,3977,3977,[3977,9523],[3917,9616],[3918,9617],3917,3918,3919,3983,3917,3981,3981,3918,3920,3918,3919,3981,3917,3919,3919,3920,3983,3983,3983,3920,3919,3918,3983,[3918,9622],[3919,9623],[3977,9524],[3978,9523],[2371,9616],[2434,9617],2371,2371,2434,2434,2370,2435,2434,[2434,9718],[2434,9719],[3911,10102,9524],[4097,4039],[4097,4040,9523],[3245,9616],[3246,9617],3181,3182,3243,3179,[2371,3118],2435,2370,2435,2370,2370,2434,2370,2434,2435,2435,2435,[2434,9622],[2435,9623],[3913,9620],3978,3913,3975,[4097,3785,9520],[2370,9426],[2434,9426],[2434,9429],[2371,9521],2434,2435,[2434,9526],[2370,9521],2371,[2435,9622],[2435,9623],[4097,9524],4097,[4097,3718],3976,3913,3978,3977,[4097,3915],4097,[4097,3782],3914,3978,3911,[4097,3850],4097,[4097,3783],[3976,9523],[3245,9616],[2435,3055,9617],2434,2371,1923,[2434,3116],3246,3246,[2370,3247],2306,[2307,9622],[2434,9623],[3977,9620],3914,3914,[4097,3787],4097,[4097,3783],3976,3913,3977,3977,3913,[4097,3915],4097,4097,[4097,3783],3976,3978,3977,3978,3978,3978,3977,3975,[4097,3719],[4097,3785],4097,[4097,3974],[4097,3979],4097,[4097,3974],3977,3911,[4097,4043],[4097,10097],10001,10004,10005,10006,[4097,10007],[4097,9812],[4097,3910],3913,3914,3914,[4097,3915],4097,4097,4097,4097,[4097,3847],3912,3975,[4097,3785],4097,4097,4097,4097,4097,[4097,3718],[4097,3719],3976,3914,3914,3977,3913,3978,3978,3977,3977,3975,[4097,3785],4097,4097,4097,4097,[4097,3974],3913,3975,[4097,3786],4097,4097,[4097,3846],3913,[4097,3979],4097,4097,4097,4097,[4097,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3394,9494],3520,[3456,5188],5189,5190,[3392,5191],3458,3392,3394,3906,[3521,5476],[3393,5477],[3908,5478],[3905,5479],3522,3520,3457,3969,3457,3521,3907,3905,3907,3905,3906,3457,[3906,9499],[3905,9500],3521,3969,3457,3456,3906,3906,3908,3520,3456,3522,3969,3907,3520,3457,3457,3456,3458,3521,3907,3969,3520,3458,3907,3969,3908,3520,3907,3971,[3457,10169],[3395,10170],3457,3907,3456,3906,3969,3907,3588,3589,3457,3969,3456,[3522,10169],[3458,10170],3905,3393,3521,3908,3969,3969,3905,3457,3394,3520,3907,3971,3522,3905,3457,3971,3907,3906,3521,3971,3520,3457,3458,3905,3905,3905,3393,3906,3971,3907,3456,3520,3521,3969,3907,3969,3652,3653,3456,3522,3907,3458,3457,3522,3520,3520,3456,3456,3908,3969,3521,3907,3905,3905,3905,3971,3520,3520,3906,3905,3908,3456,3971,3908,[3458,9787],[3520,9879],[3520,9880],[3457,9782],3456,3520,3458,3457,3983,3920,[3920,3904],[3457,9709],[3905,9710],[3919,9611],3919,3983,3983,3919,3983,3919,3983,3920,[3983,193],3983,[3983,321],3920,[3918,321],3983,[3920,321],3983,[3983,193],[3530,4048],[3920,321],3919,[3919,193],3983,3981,3983,3920,3983,3918,3919,[2766,3855],[2831,3854],3983,3920,3918,3920,3981,3919,3983,3919,3918,3919,3919,3920,3983,3920,3983,3983,[2766,3725],3918,3983,3919,3919,3983,3983,3983,3983,3983,3919,3918,3917,3919,3983,3918,3919,[2832,4045],[2765,4045],3920,3917,[2765,3985],2766,2768,2765,[2766,3790],3919,3917,3919,3920,3983,3917,[2766,3985],2765,2830,2832,2765,[2767,3789],3918,3919,3917,3983,3920,3917,3919,3920,3919,3981,3920,3983,3919,3983,3919,3983,3981,3983,3981,3983,3918,3983,3918,3920,3983,3983,3981,3920,3983,[2831,3791],[2832,694],[2829,695],[2832,3724],3919,3981,3981,3918,3918,3918,3919,3981,3919,3983,3918,3917,[2768,3921],2832,[2767,3853],3920,3981,3920,3983,3917,3981,3983,3917,3983,3981,[3917,9622],[3917,9623],[3914,9524,9330],[3978,9331],[3914,9332],[3977,9619,9333],[3918,9712],[3918,9713],3981,3981,3981,3918,3919,[2826,4045],[2825,4046],[2825,4047],[2826,4048],[2824,4048],3920,3920,3983,3917,3919,3983,3981,3981,3918,3981,3983,3918,3920,[3917,9718],[3919,9719],[3978,9620],[3978,9619],[2435,9712],[2435,9713],2370,2435,2371,2242,2243,2434,2435,[2435,9622],[2435,9623],[4097,3850,9620],4097,[4097,9619],[3245,9712],[3244,9713],3179,3181,3245,[2371,3247],2371,2370,2370,2370,2370,2435,2050,2435,2434,1987,2370,[2435,565],[2435,9718,565],[2435,9719,565],[3977,9716,565],[3913,565],[3978,565],[3978,9523,565],[2434,9616,565],[2434,9617],2435,2371,2370,2435,2370,2371,2370,2371,2370,[2370,9526],[4097,9527,565],[4097,3783,565],[3976,565],[3978,565],[3978,565],[3977,565],[3911,565],[4097,3849,565],[4097,565],[4097,3910,565],[3913,565],[3913,565],[4097,3979,565],[4097,565],[4097,565],[4097,3974,565],[3977,9619,565],[3181,9712,565],[2370,3183,9713],1986,2370,2371,2370,[2434,3050],3245,3246,[2435,2988],[2370,2990,9718],[2435,3054,9719],[3978,9620],3913,3977,[4097,3851],4097,[4097,3782],3914,3978,3978,3977,3911,[4097,3849],4097,4097,[4097,3974],3977,3913,3913,3913,3914,3977,3978,3914,3977,[4097,3787],4097,[4097,3848],[4097,4043],4097,[4097,4038],[4097,4039],[4097,3850],4097,[4097,3718],[3976,10097],[3978,10100],[3977,10101],[4097,3915,10102],4097,4097,[4097,3974],3977,3914,3977,[4097,3979],4097,4097,4097,4097,4097,[4097,3974],3914,3975,[4097,3719],[4097,3722],[4097,3723],4097,4097,[4097,3782],3978,3978,3978,3977,3911,[4097,4039],[4097,4040],[4097,4041],[4097,4042],3912,3978,[4097,3979,9330],[4097,9331],[4097,9332],[4097,9333],[4097,3783],3976,3914,3914,[4097,3787],4097,4097,[4097,3910],3977,3975,[4097,3720],[4097,3721],[4097,3722],[4097,3785],[4097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9496],[3907,9589],[3908,9590],3907,[3908,5284],[3457,5285],[3908,5286],[3908,5287],3392,3908,3969,3458,3907,3521,3905,3458,3393,3908,3394,3905,3907,3906,3906,3908,3907,3905,3908,3907,[3905,9595],[3908,9596],[3907,9497],3971,3392,3522,3520,3906,3907,3457,3906,3522,3521,3969,3971,3522,3907,3456,3456,3521,3458,3458,3522,3907,[2755,3970],3457,3521,3586,3587,3457,3520,[2561,4033],[2496,4034],3969,3908,3905,[2752,3970],3908,3652,3653,3520,3969,3520,3458,3971,3907,3458,3520,3521,3392,3907,3521,3520,3458,3456,3905,3457,3457,3522,3457,3458,3458,3522,3969,3457,3905,3907,3520,3522,3971,3456,3905,3456,3905,3908,3906,3907,3971,3521,3908,3520,3905,3456,3908,3969,3457,3906,3520,3456,3456,3907,3907,3522,3907,3906,3522,3456,3520,3522,3908,3456,3522,3969,[3392,3461],3905,3457,3458,3971,[3522,9787],[3905,9883],9975,9976,[3906,9878],[3457,9782],3394,3905,[3919,3781],3919,3983,[3920,3776],[3906,9613],[3906,9614],[3920,9611],3983,3981,3919,3919,3981,3920,3919,3983,[3920,256],3983,[3919,384],3983,[3983,384],[3528,3793],[3530,3853,384],[3593,4045],[3530,3856,256],3529,[3592,4044,384],3983,[3920,256],3983,3919,3981,3920,3983,3920,[2768,3985],2832,2830,[2829,3980],3920,3920,3920,3917,3983,3920,3919,3983,3981,3983,3983,3920,3983,3917,3919,3919,3920,3983,3919,3919,3919,3919,3919,3917,3920,3920,3920,3919,3983,3918,3983,[2767,3985],2767,2831,[2831,4044],3920,[2831,3985,566],[2767,567],2768,2832,[2766,3980],3981,3919,[2765,3856],[2831,3854],[2830,4045],[2831,4048],[2767,4049],2831,[2832,3790],[2831,3729],2831,[2765,3853],[2829,4048],[2768,4046],[2829,4045],[2830,4045],3919,3981,3917,3919,3917,3918,3917,3983,3919,[2766,4048],3981,3920,3919,3917,3917,3917,3981,3917,3919,3919,3917,3918,3919,3983,3920,3983,[2830,3729],2830,[2832,3854],3920,3917,3917,3920,3918,3917,3918,3983,3919,3981,3918,3919,[2831,4049],2766,[2765,3724],3919,3983,3920,3917,3919,3917,3918,3918,3983,3917,3917,[3981,9526],[3919,9426],[3983,9427],[3917,9428],[3919,9429],[3917,9521],3919,[2762,4045],[2826,4046],[2826,4047],[2760,4048],[2762,4049],2824,2760,2824,2823,2825,[2759,3854],[2824,4045],[2826,4046],[2825,4047],[2759,4048],[2823,4045],3920,3919,[2759,4047],3918,3919,3918,3981,[3920,9622],[3919,9623],[3914,9620],[3977,9715],[2371,9808],[2370,9809],2370,2435,2371,2306,2307,2371,2370,[2370,9718],[2371,9719],[4097,9716],[4097,3783],[4097,3719,9619],[3245,9712],[3182,9713],3181,[2434,3307],[2371,3308],[2370,3311],2435,2370,2434,2435,2050,2370,2371,2370,[2435,3052],[2435,2991],2370,629,629,629,629,629,629,629,629,2370,2435,2434,1922,2435,2435,2435,2370,2371,2435,2434,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,3182,[2435,3053],[2435,3052],[2371,2991],1987,[2435,3114],3182,3182,3246,[3182,9814],[3180,9815],[3913,9620],3914,3978,[4097,3915],4097,[4097,3846],3914,3914,3978,3911,[4097,4043],4097,[4097,3783],[4097,3719],3976,3913,3978,[3978,9330],[3914,9331],[3978,9333],3978,3978,3914,3977,[4097,3851],4097,4097,4097,4097,4097,4097,4097,[4097,3783],3976,3914,[3977,10196],[3914,10197],[4097,3979],4097,[4097,3783],3976,3913,3913,3977,3975,[4097,3785],4097,4097,4097,[4097,9330],[4097,3848,9331],[3913,9332],[3977,9333],3914,3978,[4097,3787],4097,4097,[4097,3910],3978,3977,3977,3911,[4097,3849],4097,4097,4097,4097,[4097,3848],[3912,9425],[4023,9426],[3511,9427],[3448,9428],[4025,9429],[3976,9527],3978,3914,3977,[4097,3851,9330],[4097,9333],[4097,3784],3976,3914,3978,3913,3914,3911,[4097,4043],[4097,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3521,9685],[3394,9686],3394,[3907,5380],[3393,5381],[3908,5382],[3393,5383],3906,3907,3908,3394,3521,3457,3905,3394,3905,3905,3457,[3907,4996],[3908,4997],[3971,4998],3905,3908,3456,3905,3969,3907,[3907,9691],[3971,9692],[3969,9593],3456,3392,3969,3908,3457,3456,3907,3520,3906,3522,3458,3394,3458,3458,3458,3522,3459,3906,3908,3907,3520,3907,3907,3908,3650,3651,3522,[2561,4037],2818,2754,[2818,3968],3458,3522,[2754,4034],[2560,4035],3907,3458,3522,3905,3457,[3457,3461],3522,3908,3969,3905,3907,3908,3520,3457,3908,3908,3520,3522,3907,3456,3969,3905,3456,3969,3907,3905,3521,3971,3458,3969,3908,3456,3456,3522,3458,3908,3456,3394,3971,3456,3520,3521,3905,3458,3907,3522,3908,3457,3457,3458,3969,3458,3908,3457,3458,3522,3971,3905,3522,3971,3520,3905,3908,3907,3971,[3908,9787],[3905,9879],[3908,9880],[3908,9881],[3520,9882],[3394,9883],9979,[3458,10071],[3907,10072],9974,[3906,9589],[3521,9590],3971,[3983,3845],3920,[3920,3777],3905,[3969,9709],[3907,9710],[3919,9611],3919,3983,3983,3981,3983,3920,3920,[3981,193],3920,[3983,193],3981,[3592,4045,321],3983,[3594,3921,193],3594,[3592,193],3528,[3594,321],3529,[3528,3788,193],3918,[3919,193],3920,3919,3920,3920,[2768,4047],[2829,3855,566],[2832,567],[2767,3789],3919,3920,3983,3920,3981,3918,3920,3983,3919,3983,3983,3920,3981,3919,3919,3920,3983,3920,3983,3919,3920,3920,3920,3920,3919,3983,3920,3919,3920,3919,3918,3920,3983,[2767,3728],[2829,3792],2768,[2830,3853],[2766,4049,630],[2832,631],2767,2829,[2766,3853],[2831,4045],[2765,3855],2829,2830,2768,2768,2768,[2830,3724],3918,3983,[2767,3792],2766,2766,[2768,3790],[2832,3792],[2767,3789],3917,3920,3983,3981,3919,[2765,4045],[2831,4048],[2832,4045],[2829,4049],2768,[2765,3788],3918,3981,3983,3917,3917,3983,3983,3983,3917,3920,3981,3918,3920,3917,3919,[2829,4049],2765,2829,[2766,3980],3919,3918,3917,3919,3917,3917,3981,3919,3983,3920,[2832,3793],2830,2831,[2829,4044],3920,3983,3981,3981,3918,3983,3918,3983,3983,3919,3918,3918,3918,3918,3918,3919,3917,[2762,3985],2826,2823,2762,2762,2759,2760,2762,2823,2826,2760,2762,2823,2762,2761,2759,2825,[2760,3854],[2824,3856],[2762,3789],3919,3918,3981,3983,[3920,9718],[3981,9719],[4097,4039,9620],[3912,9811],9904,[2435,9905],[2370,9809],2370,2434,2435,2435,2435,2434,2434,[2434,9526],[4097,3784,9527],3976,[3913,9715],[3180,9808],[2435,3307,9809],[2371,3118],2370,2434,2435,2434,2371,2434,2371,2371,1923,[2435,3051],[2371,2987],3182,3246,[2435,3054,9622],[2370,9623,757],[3977,9524,757],[3978,757],[3978,757],[3913,757],[3978,757],[3978,9619,757],[2435,9808,757],[2370,9809],2370,2371,2435,2435,2370,2371,2435,2370,2435,[2370,9622],[2435,9623,757],[3978,9524,757],[3977,757],[3978,757],[3911,757],[4097,3849,757],[4097,757],[4097,3783,757],[3976,757],[3977,757],[3977,757],[3914,757],[3978,757],[3978,757],[3978,757],[3977,757],[3978,9619,757],[3243,9616,757],[3244,9617],3181,3182,[2370,3055],2371,[2371,3178],[3180,9814],[3179,9908],[3245,9909],[3179,9910],9911,[4097,3847,9716],[4097,4039],3912,[4097,3979],[4097,9330],[4097,3910,9333],3978,3978,3911,[4097,3850],4097,[4097,3783],3976,3914,3913,3977,[3914,9425],[3960,9426],[3510,9427],[3960,9429],[3977,9430],[3978,9330],[3913,9333],3977,[4097,3915],4097,4097,[4097,3718],[4097,3719],[4097,3720],[4097,3721],[4097,3722],3976,3978,3913,3913,3911,[4097,4043],4097,[4097,4038],[4097,4039],[4097,4040],3912,3978,3914,3975,[4097,3720],[4097,3721],[4097,3722,9425],[3576,9426],[3574,9427],[3961,9428],[3447,9429],[3914,9430],[3913,9330],[4097,3851,9333],4097,4097,[4097,3974],3913,3977,3914,[4097,3787],4097,4097,4097,4097,4097,[4097,9520],[3962,9521],4023,3962,3962,[3577,9622],[4024,9623],[3914,9524,9330],[3978,9333],[3914,9425],[3962,9426],[3960,9429],[3976,9430],3978,3978,3977,3913,3978,3975,[4097,3785],[4097,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3457,9781],[3457,9782],3457,[3906,5476],[3907,5477],[3906,5478],[3521,5479],3969,3457,3457,3908,3458,3456,3907,3456,3520,3969,3520,[3458,5092],5093,5094,[3908,5095],3522,3905,3908,3907,3969,[3905,9787],[3907,9788],[3905,9593],3522,3457,3907,3908,3906,3905,3456,3905,3906,3905,3457,3905,3905,3521,[2497,4033],3392,3908,3906,3520,3456,3522,3456,3456,3457,3520,3969,[2496,3843],2624,2625,2818,[2560,4032],[2818,4033],[2497,3843],2624,2625,[2496,3841],3394,3521,3906,3969,3905,3394,3456,3458,3907,3457,3969,3520,3395,3905,3521,3392,3458,3906,3907,3969,3457,3458,3971,3522,3907,3457,3586,3587,3521,3522,3905,3969,3908,3908,3906,3907,3522,3456,[3456,3461],3521,3971,3907,3905,3456,3520,3456,3906,3521,3907,3522,3458,3971,3458,3458,3971,3522,3458,3907,3905,3521,3456,3456,3971,[3905,9787],[3907,9883],9975,9976,9977,9978,9979,[3522,10075],[3458,10167],[3907,10168],[3520,10070,9496],[3905,9685],[3908,9686],3971,[3983,3909],3983,[3983,3968],3908,[3907,9805],[3908,9806],[3983,9611],3983,3919,3920,3983,3919,3983,3983,[3983,256],3919,[3919,256],[3530,3856],[3529,384],[3529,4044],[3528,3856,256],3594,[3592,256],3593,[3593,384],3593,[3529,3916,256],3983,[3920,256],3918,3919,3917,[2765,3793],2830,[2765,630],[2766,631],[2765,3788],3920,3983,3917,3919,3919,3919,3920,3919,3917,3918,3917,3920,3918,3919,3920,3917,3983,3920,3983,3920,3917,3919,3918,3920,3920,3981,3920,3919,3983,3919,3917,3920,3918,3919,[2829,3985],2765,2766,[2830,694],[2831,695],2768,2832,2768,2767,2765,2830,2765,[2831,3724],[2829,3727],[2766,3727],3981,3919,3920,3983,[2765,3729],2767,[2832,3854],[2768,4049],[2831,3980],3981,3981,[3919,566],[2766,4046,567],[2829,3856],2767,2832,2768,2768,2829,[2765,3916],3917,3920,3918,3983,3919,3919,3981,3920,3981,3917,3919,3920,3918,3983,3983,[2766,3725],[2830,3729],2768,[2766,3854],3920,3917,3981,3917,3981,3919,3917,3919,3920,3981,[2766,3921],2831,2767,2832,[2766,3980],3917,3919,3983,3983,3981,3917,3918,3918,3981,3981,3917,3981,3918,3918,3983,3981,3983,[2823,3725],[2825,3725],[2760,3792],2826,2826,2825,2824,2826,2825,2823,2823,2826,2824,2824,2824,2824,2824,[2825,3789],3919,3917,3981,3918,3920,[3983,9814],[3919,9815],[4097,9620],[4097,3848],[3912,10000],10001,[2370,9616],[2435,9617],2371,2435,2370,2434,2370,2371,[2371,9622],[2371,9623],[3913,9524],[3913,9811],9904,[2435,9905],[2370,9809],2435,2370,2435,2435,2435,2371,2370,2371,2370,[2435,3242],3246,3245,3181,[3182,9718],[2370,2987,9719],[3914,9620],3978,3913,3913,3978,[3911,9715],9904,[2434,9905],[2434,9906],[2435,9907],[2371,9809],2435,2435,2370,2370,2434,2371,[2371,9718],[2435,9719],[3913,9620],3977,3914,[4097,3979],4097,4097,[4097,3974],3913,3913,3978,3978,3911,[4097,4039],[4097,4040],3912,[3978,9715],[3180,9808],[3182,9809],3180,3181,[2434,3119,9814],[2370,9906],[2434,3116,9907],[3181,9910],10004,10005,10006,[4097,10007],[4097,9812],4097,[4097,3847],[4043,9425],[4024,9426],[3960,9429],[3914,9430],3913,[4097,3979],4097,4097,[4097,3782],3977,3914,3977,[3914,9523],[4023,9616],[3577,9617],3448,4025,[3574,9526],[3961,9426],[3961,9429],[3913,9430],[4097,3979],4097,[4097,3784],3976,3914,3914,3977,3913,3913,3914,3914,3911,[4097,3849],4097,4097,4097,4097,4097,[4097,3847],3912,3977,3914,3914,[3914,9523],[3576,9616],[3576,9617],3575,3576,3446,[3510,9526],[4023,9426],[4024,9429],[4097,9430],[4097,3784],3976,3977,3977,3978,[4097,3851],4097,4097,4097,4097,[4097,9523],[3510,9616],[4024,9617],3577,3962,3511,3578,[4026,9526],[3510,9426],[4023,9429],[3959,9521],4023,4025,[3959,9526],[3914,9527],3978,3914,3911,[4097,4042],[4097,4040],[4097,3849],[4097,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],9877,[3394,9878],[3907,9782],3907,3457,3456,3458,3907,3521,3907,3521,[3456,4996],[3905,4997],[3906,4998],3393,3393,3457,3969,[3520,5188],5189,5190,[3906,5191],3905,3392,3969,3906,[3907,9595],[3905,9596],[9884,9497],[3458,9689],3457,3969,3905,3456,3522,3905,3458,3906,3905,3521,3908,3456,3458,[2496,3843],2560,[2560,3841],3969,3971,3905,3457,3969,[2496,4033],3522,3969,3520,[2496,3973],2496,2688,2689,2754,2624,2625,2754,2688,2689,2560,[2754,3968],3522,3393,3522,3457,3520,3521,3456,3457,3907,3907,3907,3457,3969,3522,[2560,4033],3393,3907,3520,3908,3906,3907,3520,3906,3520,3521,3650,3651,3906,3520,3905,3521,3521,3458,3906,3521,3906,3522,3906,3522,3908,3458,3458,3520,3969,3395,3458,3908,3522,[3969,3461],3458,3906,3971,3969,3971,3458,3908,3456,3520,3908,3908,3908,[3906,9787],[3906,9788],9979,[3969,10071],[3905,10072],[3969,10073],[3908,10074],[3906,10075],3906,3456,3456,[3908,9592],[3905,9781],3906,3906,[3983,3973],[3983,3777,9805],[3907,9897],[3906,9898],[3906,9901],9902,[3983,9707],3983,3920,3983,3983,3920,3983,3920,3981,[3983,321],[3593,3985],[3594,193],3528,[3594,321],3529,[3594,193],3529,[3592,193],3530,[3593,3790,321],3983,[3920,321],3918,3983,3917,3919,[2768,3857],2766,[2831,694],[2766,695],[2829,3852],3983,3983,3917,3983,3919,3919,3920,3919,[2767,4045],[2832,4046],[2829,4047],[2832,4048],[2766,4048],[2766,3855],[2768,3980],3917,3918,3983,3983,3919,3919,3983,3983,3919,3920,3983,3920,[2832,4045],[2767,4046],[2832,4047],3917,3917,3919,3920,3983,[2766,3726],[2766,3727],[2832,3726],[2832,3727],[2830,3728],[2768,3725],[2766,3729],2831,2832,[2829,3790],[2830,3727],3983,3920,3981,3981,3981,3920,[2767,4048],[2829,3855],2832,2831,2767,[2766,3854],3920,3919,[2766,3855,630],[2768,631],2767,[2830,3790],[2832,3728],[2832,3728],[2830,3726],[2768,3729],[2830,3980],3918,3981,3919,3920,3918,3917,3983,3981,3920,3918,3983,3918,3983,3917,3983,3917,3983,[2767,3729],2830,[2829,4044],3920,3981,3917,3920,3919,3918,[2830,3985],[2768,3854],[2768,4046],[2765,3856],2768,2832,2765,[2768,3854],[2829,4046],3920,3983,3919,3983,3920,3920,3918,3981,3983,3920,3981,3917,3917,3920,3920,3919,3917,3920,3983,[2760,3792],2824,2759,2760,2826,2824,2824,2824,2762,2824,2759,2824,2824,2759,[2826,3788],3917,3981,3981,3983,[3917,9814],[3918,9910],9911,[4097,9716],4097,[4097,4038],[4097,4039,10097,9523],[2371,9712],[2371,9713],2370,2371,2434,2434,2434,2435,[2371,9718],[2434,9719],[3913,9620],3913,[3914,10000],10001,[2370,9905],[2370,9809],2371,2434,2371,2371,[2435,9814],[2435,9906],[2371,9907],[2371,3051,9809],3179,3181,3246,3245,[3182,9814],[3245,9815],[3914,9620],3914,3914,3978,3914,[4097,3979,9811],[4097,10000],10001,10002,10003,[2434,9905],[2370,9809],2370,2371,2371,[2434,9814],[2434,9906],[2435,9907],[2435,9815],[4097,3847,9620],[4097,4039],[4097,4040],[4097,4043],4097,[4097,3783],3976,3914,3911,[4097,4039],[4097,4040],[4097,3850],4097,4097,[4097,3847],[4097,4039,9811],9904,[3243,9905],[3180,9906],[3182,9907],[3245,9910],10002,10003,10006,[3913,10100],[3977,10101],[4097,3785,10102],4097,4097,4097,[4097,9520],[4025,9521],3447,4025,[4026,9526],[3977,9527],[4097,3979,9330],[4097,9331],[4097,9332],[4097,3846,9333],3977,3914,3977,[3914,9619],[3962,9712],[3962,9713],4024,3575,3446,3448,3447,[3576,9526],[4097,3979,9527],4097,[4097,3974],3978,3914,3911,[4097,4039],[4097,4040],[4097,4040],[4097,4041],[4097,4042],[4097,4043],4097,4192,4097,4097,4097,4097,4097,[4097,3974],3913,3977,3913,[3978,9619],[3959,9712],[3447,9713],3446,3446,4025,3578,3961,4026,[3447,9526],[3976,9527],3913,3913,3913,3914,[4097,3915],4097,4097,4097,4097,[4097,9619],[4023,9712],[4023,9713],4023,3577,4024,4026,4026,4025,4023,4024,4026,3512,[3960,9622],[4025,9623],[3913,9524],3978,[4097,3979],4097,4097,4097,[4097,3784,9811],[3976,10000],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3456,9589,4996],[3394,9590,4997],[3456,4998],3907,3456,3908,3393,3905,3908,[3394,5092],5093,5094,[3906,5095],3907,3457,3905,[3457,5284],[3906,5285],[3971,5286],[3969,5287],3969,3521,3458,3907,[3971,9691],[3971,9692],[3971,9980,9593],[3456,9785],3905,3521,3456,[2754,3970],3971,3522,3906,3522,3908,3458,3906,3971,[2560,3973],2497,2624,2625,[2754,3842],[2560,4034],[2561,4035],[2560,4036],[2496,3843],2754,[2754,3776],3456,3457,3457,[2497,3780],2752,2753,2818,2688,2689,2496,2752,2753,2754,[2496,4032],3456,3520,3969,3456,3521,3908,3971,3908,3456,3906,3458,3521,3521,[2497,3843],2496,[2496,3968],3522,3522,3906,3392,3522,3908,3971,3906,3969,3905,3458,3522,3522,3393,3457,3908,3905,3908,3906,3522,3521,3907,3520,3456,3522,3520,3458,3521,3971,3457,3907,3969,3906,3907,3908,3971,3971,3905,3971,3457,3906,3971,[3907,9787],[3971,9879],[3906,9880],[3971,9883],9884,[3908,10075],[3971,10167],[3907,10168],[3907,10169],[3907,10170],3908,3908,3908,3458,[3907,9688],9877,[3906,9878],[3905,9879],[3971,9880],[3905,9788],[9993,9515],9994,9997,[3918,9998],[3919,9803],3983,3983,3920,3919,3919,3920,3983,3918,[3919,384],[3592,3985],[3529,256],3530,[3529,384],3592,[3529,256],3593,[3528,256],3528,[3529,3788,384],3983,[3917,384],3981,3919,3919,3919,[2765,3921],2829,2767,2765,[2765,3916],3919,3919,3983,3981,3919,[2831,3985],[2766,4044],[2766,4049],2830,2767,2767,2766,2768,2832,[2829,3854,566],[2768,4046,567],3920,3917,3919,3920,[2832,4046],[2766,4047],[2829,4048],3919,3983,3983,[2767,3855],2832,2767,2765,[2767,3788],3920,3981,3919,3918,3983,3981,3919,3981,3983,3919,[2830,3856],2768,[2768,3790],3919,3918,3917,3920,3919,3918,3918,[2830,4049],[2830,3724],[2768,3726],[2768,3727],[2832,3792],2829,2767,[2767,4044],[2830,4049],[2765,694],[2767,695],[2766,3790],3983,3919,3918,[2829,4048],[2767,4049],[2765,3980],3918,3983,3920,3981,3917,3983,3917,3981,3918,3920,3983,3920,3919,3917,3917,3983,3919,[2767,3985],2767,2830,[2765,3854],3920,3917,3919,[2829,4047],[2765,4046],[2832,4049],2830,2830,2767,[2765,3789],[2829,3792],2832,2767,2829,[2829,4044],[2766,4047],3920,3983,3983,3983,3918,3919,3920,3919,3919,3917,3917,3981,3981,3918,3919,3918,3981,3983,[2826,3725],[2825,3792],2759,2826,2761,2823,2759,2761,2762,2762,2824,2824,2759,[2759,3852],3983,3920,3920,[3918,9622],[3981,9623],10006,[4097,3786,10007],[4097,9812],4192,4097,[4097,9715],[2434,9808],[2371,9809],2434,2370,2371,2434,2371,2371,[2371,9622],[2370,9623],[3913,9620],3978,3913,[4097,3851,10097],10001,[2370,9905],[2434,9906],[2371,9907],[2435,9908],[2371,9909],[2435,9910],10002,10003,[3245,9905],[3244,9906],[3181,9907],[3243,9908],[3244,9909],[3243,9910],9911,[4097,4039,9716],[4097,4040],3912,3914,3911,[4097,3850],4097,[4097,3783,10097],[3913,10098],[3977,10099],10001,[2370,9905],[2434,9906],[2371,9908],[2434,9909],[2371,9910],10002,10003,9911,[4097,9716],4097,4097,4097,4097,[4097,4038],[4097,4039],[4097,4040],[4097,3850],4097,4097,4097,4097,4097,4097,4097,[4097,10000],10001,10002,10003,10006,[4097,10098],[4097,10099],[4097,3848,10102],[3912,10196],[3978,10197],3975,[4097,3719],[4097,3785],[4097,9523],[3448,9616],[3578,9617],3511,3576,3448,[3512,9526],[4026,9426],[3447,9427],[3574,9428],[3512,9429],[3914,9430],[3977,9330],[3914,9333],[3914,9425],[3447,9521],3446,3446,4025,3511,4024,4026,[3447,9622],[3511,9623],[4097,9524],[4097,4038],[4097,4039],[4097,4042],[4097,4043],4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,9330],[4097,9333],[4097,3783],3976,3913,3913,3977,[3913,9619],[3961,9616],[3448,9617],3447,3446,3578,4023,3577,3577,[4023,9622],[3960,9623],[3977,9524],3914,3914,3914,[4097,3979],4097,4097,4097,[4097,9330],[4097,9425],[3961,9521],3959,4026,3448,3447,4024,4025,4024,3577,3447,3577,4023,[3512,9718],[3960,9719],[3914,9716],3914,3975,[4097,3786],4097,4097,[4097,3974],3914,[3977,9619,10097],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070,9592],[3393,9685,5092],5093,5094,[3907,5095],3521,3907,3456,3521,3394,[3521,5188],5189,5190,[3908,5191],3908,3906,3458,[3905,5380],[3907,5381],[3969,5382],[3969,5383],3522,3905,3906,3971,[3908,9691],[3906,9692],[3520,9593],3907,3906,3907,3457,3969,3907,3394,3522,3907,3908,3969,3458,3906,[2560,3843],2561,2688,2689,2561,2754,2496,2561,2754,2561,[2754,3840],3457,3906,[3908,3461],3907,[2560,3714],[2497,3715],[2560,3716],[2752,3779],2753,2560,2561,2818,2496,2754,[2497,3776],3458,3971,3969,3908,3908,3905,3521,3457,3456,3908,3456,[2561,3973],2560,2754,[2754,3842],3520,3907,3971,3520,3521,3458,3905,3905,3906,3969,3907,3969,3908,3520,3908,3908,3394,3906,3520,3969,3905,3905,3906,3969,3393,3969,3907,3907,3971,3908,3907,3520,3905,3457,3969,3394,3457,3971,3458,3522,3906,[3969,9787],[3905,9883],9975,9976,9979,[3969,9980],3908,3971,3908,3908,3971,3969,3905,3971,3906,[3969,9784],[3908,9973],9974,9975,[9976,9805],[9884,9806],[3919,10089,9611],[3983,10090],[3981,10093],3983,3919,3983,3983,3919,3917,3983,3920,3917,[3919,321],3919,[3983,193],[3592,3729],[3594,321],3530,[3592,193],3593,[3528,193],3594,[3594,321],[3592,3916],[3920,193],3919,[3920,193],3920,3920,3920,[2829,3856],2831,2765,2832,[2832,3980],3920,3983,3919,3917,3919,3983,[2767,3791],2767,[2830,3790],[2832,3725],[2831,3727],[2831,3728],[2766,3729],2765,[2766,630],[2765,631],[2767,3788],3981,3920,[2831,3985],2767,2767,2766,[2831,3854],3919,[2830,3856],2765,2766,2767,2765,[2832,3916],3981,3920,3981,3918,3919,3917,3917,3983,3981,[2832,3985],2829,2765,[2829,3980],3919,3981,3920,3983,3920,3919,3919,[2767,3792],[2766,3980],3983,3919,3983,[2765,3729],2831,2768,2768,[2832,3789],[2768,3728],3919,3918,3983,3917,[2830,3792],[2830,3790],3920,3917,3919,3919,3920,3918,3920,3983,3919,3917,3983,3919,3917,3920,3981,3918,3917,3918,3983,[2768,3725],[2767,3792],2765,[2832,3853],[2829,4047],[2767,4049],2831,2830,2768,[2829,3724],[2830,3726],[2829,3728],3981,[2831,3985],2831,[2767,3789],[2767,3792],2766,2765,[2768,3853],3920,3919,3983,3918,3983,3918,3920,3983,3919,3917,3920,3981,3919,3981,3983,3918,3981,3981,3983,[2824,3725],[2761,3728],[2759,3791],2762,2759,2759,2760,2760,[2823,3724],[2762,3792],2761,[2826,3916],3918,3981,3918,[3981,9718],[3983,9719],[3977,10102,9524],3975,[4097,3723],4097,4097,[4097,9811],9904,[2435,9905],[2370,9906],[2371,9907],[2371,9809],2434,2371,2434,[2050,9718],[2371,9719],[3978,9620],3978,3977,[4097,3915],[4097,10097],10001,10002,10003,10004,10005,10006,[4097,10098],[4097,10099],10001,10002,10003,10004,10005,10006,[4097,3786,10007],[4097,9812],4097,[4097,3847],[4097,4042],[4097,4043],4097,4097,[4097,3782],[3978,10194],[3911,10195],[4097,3850,10097],10001,10002,10004,10005,10006,[3911,10098],[4097,10099],[4097,10007],[4097,3718,9812],[4097,3719],[4097,3786],4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,3784],[4097,3723],4097,4097,4097,[4097,3783,10097],[3978,10098],[3914,10099],[4097,3851,10102],[4097,10194],[4097,10195],4097,[4097,3974],3913,3977,3914,[4097,3979],[4097,9619],[3446,9712],[4024,9713],3448,3447,3510,4024,3959,3577,4024,4025,[3575,9526],[4026,9426],[3960,9429],[3511,9521],4024,4023,4026,4023,3578,3510,3447,[3446,9718],[3510,9719],[4097,9620],4097,4097,4097,4097,4097,[4097,3718],[4097,3785],4097,[4097,3783],[4097,3720],[4097,3721],[4097,3722],[4097,3785],[4097,9425],[3960,9426],[3960,9429],[3976,9527],3977,3977,3914,3913,[3977,9715,9330],[3448,9712],[3446,9713],3575,3577,4023,3446,3577,3447,[4024,9718],[3960,9719],[3978,9620],3914,3913,3913,3975,[4097,3785,9330],[4097,9333],[4097,9425],[3576,9426],[3446,9521],3961,3577,4026,4024,3576,4023,3447,4024,3446,3577,3962,3447,4025,[4026,9526],[3914,9430],3978,3913,[4097,3787],4097,[4097,3784],3976,3978,[3977,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3392,9589,5188],5189,5190,[3520,5191],3457,3522,3907,3907,3392,[3907,5284],[3908,5285],[3457,5286],[3520,5287],3458,3456,3905,[3394,5476],[3908,5477],[3971,5478],[3907,5479],3908,3457,3908,3908,[3908,9787],[3908,9788],[3905,9689],3905,3969,3457,3906,3907,[3969,3461],3521,3521,3458,3395,3907,3906,[2496,3973],2754,2497,2752,2753,2561,2560,2497,2497,2754,2754,[2496,3904],3520,3457,3456,3969,3458,[2755,3972],3521,3456,[2818,3713],[2497,3779],2496,[2560,9486],2497,2497,[2497,3840],3908,3906,3969,3522,3522,3522,3521,3969,3522,3969,[2754,4033],[2561,4037],2496,2561,2561,[2496,3968],3522,3457,3393,3456,3905,3906,3522,3905,3522,3969,3520,3456,3393,3906,3969,3522,3969,3522,3907,3905,3906,3908,3521,3908,3520,3906,3456,3521,3395,3520,3521,3908,3969,3969,3457,3905,3457,3969,3907,[3905,9595],[3906,9596],9979,[3907,10071],[3906,10072],[3905,10075],3905,3905,3907,3969,3908,3906,3905,3908,3906,3969,3907,3908,[3905,3789,10070],[3983,10071,9805],[3919,10072,9901],9902,[3920,10185,9707],[3983,10186],3919,3981,3920,3919,3983,3919,3919,3920,3917,3919,[3919,384],3983,[3983,256],[3592,3985],[3530,384],3594,[3592,256],3593,[3592,256],3530,[3594,3789,384],3920,[3981,256],3920,[3983,256],3919,3983,3918,[2831,3729],2768,2766,2832,[2830,3980],3983,3919,3983,3919,3920,3917,[2831,3793],2829,[2829,3980],3917,3919,3981,[2766,3985],2830,[2832,694],[2830,695],[2767,3852],3983,3920,3983,[2768,3725],[2768,3792],2768,2767,[2767,3980],[2832,3791],2765,2765,2831,[2768,3789],3919,3983,3917,3919,3917,3981,3981,3919,3920,3919,[2767,3855],2830,2768,3918,3918,3918,3983,3918,3917,3917,3981,3920,3981,3919,3920,3920,3983,[2768,3791],2766,[2767,3789],3981,3981,3918,3920,3918,3981,3918,3981,3917,3981,3981,3983,3918,3981,3981,3983,3981,3917,3983,3983,3918,3981,3918,3918,3918,3981,3983,3919,[2830,4049],2830,2766,2832,2765,[2829,3724],[2830,3727],[2831,3728],3918,3983,3981,3920,3983,[2831,3725],3917,3983,[2832,3725],[2768,3729],2829,[2829,4044],3920,3920,3917,3918,3983,3920,3919,3920,3983,3983,3919,3919,3981,3983,3983,3919,3983,3920,3919,3981,3919,[2762,3726],[2760,3792],2826,2761,[2826,3724],3917,[2825,3985],2825,[2762,3788],3918,3981,3920,[3920,9622],[3920,9623],[3914,9620],3977,3975,[4097,3719],[4097,3720],[4097,3721],[3976,10000],10001,10002,10003,[2434,9905],[2435,9906],[2370,9907],[2434,9908],[2435,9909],[2434,9815],[4097,4041,9620],[4097,4042],3912,[4097,3979],4097,[4097,3910,10097],[3977,10098],[3978,10099],[3978,10100],[3977,10101],[3719,10102],[4097,3719,10194],[4097,3785,10195],[4097,10097],[4097,3910,10098],[3913,10099],[3914,10100],[3978,10101],[3913,10102],3975,[4097,3719],[4097,3723],4097,4097,4097,4097,4097,[4097,3910],3978,[4097,3979],4097,[4097,3783,10097],[3978,10098],[3911,10100],[4097,10101],[4097,3974,10102],[3975,10194],[4097,3785,10195],[4097,3783],3976,3913,[4097,3787],4097,4097,4097,[4097,3718],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3722],3976,[4097,3787],4097,4097,4097,[4097,3782],[3977,10194],[3978,10195],[4097,3915],4097,4097,[4097,3783],[3976,9330],[3914,9333],3977,3913,[4097,3787,9330],[4097,9715,9333],[4026,9712],[4026,9713],3447,4024,4025,4024,4023,4026,3578,3448,4024,3447,4024,3575,3961,4026,3447,4024,3578,3448,3578,[3448,9622],[3511,9623],[4097,9620],4097,4097,4097,4097,[4097,3783],3976,3975,[4097,3719],3976,3913,3977,3977,[3975,9520],[3511,9521],3511,3577,[3959,9526],[3913,9430],[3978,9330],[3914,9333],[3978,9425],[3446,9426],[4026,9521],4024,3447,3448,4025,4026,3574,3578,4023,[4025,9526],[3914,9430],3914,3914,3914,[3914,9425],[3574,9426],[3511,9429],[4026,9521],3574,3447,3446,4024,3575,3578,3446,4024,4026,3578,3447,3446,3447,3447,3959,3576,[3576,9526],[3914,9527],3914,[4097,3915],4097,[4097,3974],3978,3977,[3977,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3907,9685,5284],[3456,9686,5285],[3969,5286],[3457,5287],3392,3908,3457,3520,3908,[3458,5380],[3456,5381],[3458,5382],[3905,5383],3457,3907,3457,3394,3906,3906,3905,3969,[3457,9787],[3908,9879],[3908,9880],[3908,9883],[9884,9772],[3969,9773,9785],3906,3905,3456,3457,3905,3971,3457,3971,3906,3456,3971,3457,3458,[2754,3779],2561,2496,2497,2560,2561,2560,2561,2497,[2561,3778],3905,3905,3907,3522,3458,3521,3457,3457,3971,3456,3908,[2561,3717,9487],[2560,9582],2496,2496,[2561,3904],3522,3522,3457,3907,3908,3969,3971,3520,3456,[2497,3844],2754,2496,2560,2754,2561,[2560,3968],3906,[2818,3972],3907,3969,3457,3969,3906,3908,3522,3520,3971,3969,3457,3588,3589,3522,3520,3908,3906,3971,3522,3522,3458,3969,3907,3906,3456,3906,3457,3457,3971,3456,3456,3905,3520,3907,3905,3456,3458,[3905,9691],[3906,9692],[3905,10075,9497],[3971,10167],[3969,10168],3905,3907,3969,3971,3971,3395,3907,3906,3907,3908,3906,3969,[3908,3790],[3919,9613],[3983,10167,9614],9997,[3920,9998],[3981,9803],3918,3983,3920,3920,3983,3919,3920,3983,3981,3919,3983,3920,[3919,193],3919,[3920,321],[3592,3792],[3528,193],3529,[3594,193],3528,[3594,3724,321],3919,[3920,321],3919,[3920,193],3983,3919,3920,3920,3918,[2766,3792],2767,2767,[2767,3853],3919,3919,3918,3919,3981,3920,[2765,3921],2830,[2829,4044],[2831,4045],[2830,4048],[2832,4045],[2765,3855],[2765,3789],[2765,3792],2831,[2831,3916],3919,3919,3983,3983,3983,[2830,3729],2831,[2765,3854],[2831,3855],2766,2767,2832,[2829,3980],3919,3920,3981,3917,3919,3920,3983,3983,3920,[2831,3985],2766,2767,2767,[2768,3980],3920,3920,3918,3917,3920,3919,3919,3919,3919,3983,3919,3920,3920,[2765,3793],2829,[2832,3788],3919,3919,3983,3919,3920,3918,3919,[2831,4047],[2768,4045],[2765,4047],[2829,4046],[2832,4047],[2767,4048],3983,[2829,4045],[2767,4046],[2767,4047],3920,3919,3920,3983,3918,3981,3918,3981,3920,3919,[2831,3855],2831,2829,[2766,3724],[2829,3728],[2766,3728],3917,3981,3917,3919,3981,3981,3983,3917,3917,3918,3919,3920,3983,[2829,3729],2766,[2830,3853],[2765,4047,566],[2768,4045,567],3920,3917,3917,3918,3920,3920,3983,3983,3920,3919,3981,3920,3981,3920,3983,3983,3917,3920,3983,3983,[2759,3791],2761,[2759,3980],3919,[2826,4049],[2824,3724],3920,3918,3983,3917,[3981,9718],[3983,9719],[3978,9716],3914,3978,3913,3977,3978,3977,[3913,10097],[4097,3787,10098],[4097,10099],10001,10002,10003,10004,10005,9911,[4097,9716],4097,[4097,3848],[4097,4043],4097,[4097,3974],[3977,10194],[3914,10195],[3977,10196],[3977,10197],3977,3977,[4097,3787],4097,[4097,3782,10194],[3978,10195],[3913,10196],[3913,10197],3978,3913,3911,[4097,3850],4097,4097,4097,4096,4097,[4097,4038],[4097,4039],[4097,3849],4097,[4097,3974],[3911,10194],[4097,3849,10196],[4097,10197],[4097,4038],3912,3975,3976,3914,3978,[4097,3851],4097,4097,4097,[4097,3974],3978,3978,3978,3977,3913,3978,[4097,3915],4097,4097,4097,[4097,3846],3978,3914,[4097,3979],4097,4097,[4097,3974,9425],[3511,9426],[3575,9429],[3977,9430],[3978,9425],[4025,9426],[3448,9429],[3962,9521],3447,3577,4023,3574,3511,4024,3574,3512,3962,4023,3962,3447,3448,3578,3446,3447,3448,4025,4026,3446,[3576,9718],[3962,9719],[4097,9716,9330],[4097,9331],[4097,9332],[4097,9333],4097,[4097,3782],3914,3913,3978,3978,3977,3913,[3913,9523],[3446,9616],[3511,9617],3512,3578,3959,[3961,9526],[3962,9426],[3511,9429],[3447,9521],3447,4024,3510,3578,3446,3578,3575,3577,3446,3511,3578,[3448,9526],[3914,9430],[3977,9330],[3914,9425],[3574,9521],4026,4026,3578,3961,3448,4025,4026,4026,3577,3578,3577,3574,3577,3577,4023,4025,4026,4025,3448,3578,[3574,9526],[3914,9527],[4097,3979,9330],[4097,9331],[4097,3974,9332],[3914,9333],[3977,9631,9520],[3578,9632,9521],9533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9592],[3457,9781,5380],[3908,9782,5381],[3906,5382],[3522,5383],3522,3458,[3457,9787],[3456,9879],[3908,9880],[3522,9881,5476],[3521,9882,5477],[3456,9782,5478],[3393,5479],3458,3907,3969,[3456,9787],[3907,9879],[3971,9880],[3908,9881],[3905,9882],[3905,9883],9975,9976,9979,9868,[3906,9869],[3971,9773],3522,3969,3520,3457,3392,3522,3905,3520,3971,3969,3456,[2755,3972],3456,[2560,3714],[2497,3779],2754,2560,2561,2497,[2496,3778],[2496,3713],3906,3907,3906,3907,3905,3908,3457,3456,[3969,9489],3520,3907,3457,[2754,3973,9583],[2496,9676],[2496,9677],[2561,3778],3969,3908,3969,3522,3457,3906,3906,[2816,3970],3969,[2754,3781],2497,2624,2625,2496,2560,[2496,3778],3456,3521,3522,3522,[3971,3461],3971,3520,3906,3907,3906,3907,3520,3521,3522,3652,3653,3456,3457,3520,3971,3392,3457,3971,3520,3905,3457,3392,3908,3520,3520,3458,3969,3457,3521,3456,3907,3521,3458,3457,3394,[3908,9787],[3907,9788],[3907,9593],3971,3906,3906,3905,3971,3969,3969,3906,3971,3906,3969,3905,3908,[3907,3790],3920,[3983,9709],[3983,9710],[3919,10093,9515],3919,3919,3983,3919,3981,3920,3919,3920,3983,3917,3983,3919,3983,3983,[3920,256],3983,[3983,384],3981,[3529,3725,256],[3529,3726],[3529,3727,256],[3528,3728],[3983,384],3919,[3919,384],3920,[3919,256],3920,3983,3983,3983,3920,3983,[2832,3791],2832,[2830,3790],3920,3919,3918,3919,3983,3981,3983,[2765,3729],2768,2765,2830,2830,2765,[2766,3788],3983,[2768,3725],3920,3918,3917,3920,3983,3919,[2768,3985],2766,2767,2767,2768,2830,2767,[2765,3853],3920,3919,3919,3917,3918,3981,3918,3919,[2831,4047],[2765,3855],2831,2768,2829,[2831,3853],3918,3918,3919,3981,3917,3917,3919,3920,3983,3917,3920,3917,3918,[2767,3921],2830,[2832,3916],3919,3918,3918,[2766,3985],[2830,3854],[2830,4045],[2829,4049],2832,2832,2767,2768,2829,2765,2766,2831,2830,2766,[2832,3853],[2830,4049],[2766,3854],3920,3983,3918,3919,3919,[2831,4046,566],[2765,3855,567],2830,[2765,3789],[2767,3791],[2766,3980],3981,3981,3981,3920,3983,3920,3983,3918,3920,3919,3917,3917,3983,3983,3917,3983,[2830,3729],2829,[2765,630],[2768,631],[2766,3853],3920,3981,3983,3919,3983,3917,3983,3983,3917,3917,[2824,4046],[2823,3855],[2762,3854],3981,3919,3920,3919,3920,3920,[2759,3855],2760,[2823,4044],[2762,4049],[2762,3790],3918,3917,3981,3918,3981,3917,[3917,9526],[3913,9527],3913,3978,3977,3913,3914,3977,3978,[4097,3851,10194],[4097,10195],[4097,10097],[4097,3782,10098],[3914,10099],[3977,10100],[3975,10101],[4097,3722,10007],[4097,3723,9812],4097,4097,4192,4097,[4097,3847],3912,3914,3914,3978,3977,3913,[4097,3851],4097,[4097,3846],3978,3914,3977,3977,3914,[4097,3979],4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,3718],3976,3975,[4097,3785],4096,4097,[4097,3847],3912,3914,3977,3913,[4097,3915],4097,4097,[4097,3783],3976,3977,3914,3913,3978,3914,3911,[4097,3849],4097,4097,4097,[4097,3910],3914,3978,3975,[4097,3785],[4097,9523,9330],[3447,9616],[3446,9617],3575,[4025,9526],[4024,9521],4026,3959,3448,3446,4026,3448,4025,3447,3578,4024,3576,4026,3447,4025,4025,4025,3446,3577,3959,4024,4023,3512,3960,3448,[4026,9526],[3959,9426],[3575,9427],[4025,9428],[3575,9429],[4097,9430],[4097,3910],3913,3913,3978,3913,3914,3977,[3978,9425],[4026,9521],4026,3578,3578,4025,3576,3512,3448,3446,3511,3961,4023,3574,3447,3578,4023,[4024,3515],4025,3962,4025,3578,[3574,9526],[3575,9426],[3447,9521],4026,4025,3574,3577,4023,4024,4023,4024,4024,3574,3447,3578,4023,3962,4026,3448,4023,4025,3448,3447,4025,3512,[3511,9526],[3960,9426],[3961,9427],[3448,9428],[3447,9429],[3574,9631,9521],[4025,9632],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9688],[9877,5476],[3521,9878,5477],[3908,9879,5478],[3908,9880,5479],[3456,9881],[3522,9882],[3521,9883],9975,9976,9977,9978,[3969,9878],[3905,9879],[3458,9880],[3907,9881],[3394,9882],[3457,9883],9975,9976,9977,9978,9979,[3969,10071],[3522,10072],[3906,10075],[3969,9964],9965,[3908,9869],[3458,9870],[2497,4033,9773],[2560,4034],[2497,4035],[2754,4036],3908,3458,3908,3521,3906,3457,3521,3392,3520,[2690,3973,9778],[2561,8909],[2561,8910],[2561,8911],[2561,9873],[2688,3968,9773],3457,3520,3908,3906,3907,3908,3457,3969,3522,[3522,9585],3394,3520,3523,[2496,3843,9583],[2560,3778,9772],[2561,3713,9773],3456,3971,3971,3522,3521,3457,3523,3906,3521,3905,[2496,3845,9489],2497,2688,2689,[2754,3712],[2754,3713],3908,3522,3969,3458,3906,3458,3971,3971,3907,3456,3522,3905,3908,3457,3522,3456,3908,3458,3907,3521,3908,3520,3520,3456,3522,3522,3458,3521,3969,3905,3905,3520,3906,3907,3520,3907,3586,3587,3457,3457,[3969,9787],[3907,9883],9884,[3905,9689],3905,3908,3971,3907,3906,3905,3971,3905,3905,3971,3908,3971,[3969,3790],3983,3920,[3983,9613],[3920,9614],[3981,9611],3983,3920,3983,3983,3920,3919,3920,3917,3920,3983,3920,3918,3983,[3918,321],3920,[3920,193],3983,[3983,321],3919,[3983,193],3983,[3919,321],3919,[3920,193],3917,[3919,321],3981,[3920,193],3920,3920,3981,3983,3919,3919,[2765,3725],3983,3920,3920,3920,3919,3918,3920,[2831,4048],[2829,4049],2831,2830,2768,2766,2765,[2767,3852],3919,3919,3918,3920,3983,3917,3920,3919,[2830,3856],2768,2768,2831,[2768,3789],[2830,3726],[2768,3727],[2768,3728],3981,3920,3920,3920,3918,3918,3919,[2829,3855],2766,2830,2768,2831,2768,2832,[2829,3980],3983,3917,3917,3920,3983,3981,3919,3920,3983,3919,3917,3919,[2830,3855],2765,[2830,4044],[2829,4047],[2829,4045],[2829,4046],[2768,3856],2768,2767,2829,[2830,3789],[2768,3726],[2767,3727],[2831,3726],[2766,3729],[2768,3790],[2831,3725],[2829,3725],[2830,3726],[2766,3791],2830,2765,2830,[2765,3854],[2766,4046],[2765,4048],[2830,4045],[2768,3855],[2829,630],[2830,631],[2765,3724],3919,3983,3917,3918,3917,3919,3981,3919,3918,3919,3918,3919,3981,3920,3920,3918,3917,3981,3917,3983,[2830,3791],[2767,694],[2829,695],2830,[2829,3916],3917,3920,3983,3983,3920,[2823,4046],3920,3983,[2759,3855],2823,2760,[2761,3790],3920,3981,[2824,4046],3919,3920,3983,[2824,3791],2824,2762,[2823,3789],3983,3919,3918,3920,3920,3918,3919,3919,[3920,9526],[3913,9527],3914,3978,3914,3978,3914,3913,[4097,3915],4097,4097,[4097,3846,10194],[3913,10195],[3977,10196],[3978,10197],3977,3975,[4097,3785],4097,4097,4097,[4097,3783],3976,3977,[3977,9330],[3913,9331],[3913,9332],[3913,9333],[4097,3915],4097,[4097,3910],3978,3978,3977,3911,[4097,4042],[4097,4043],4097,[4097,3783],[4097,3719],[4097,3723],4097,4097,4097,[4097,3718],[4097,3719],3976,3913,3978,3975,[4097,3719],[4097,3723],4097,[4097,4038],3912,3913,3978,[4097,3979],[4097,9330],[4097,9331],[4097,3974,9332],[3977,9333],3913,3913,3978,3978,3978,[4097,3979],4097,4097,4097,[4097,3783],3976,3914,3977,3978,[3979,9425],[3575,9426],[3961,9521],4024,4025,4023,4023,3448,4025,3446,4023,3961,4024,4026,3959,4026,3447,3959,3578,3578,3577,3578,4023,3512,4026,3448,4025,3578,3447,3447,4023,4024,3576,3961,3448,3446,[3960,9526],[3974,9527],3978,3978,3914,3914,3914,[3914,9425],[3511,9521],3447,4023,3448,3446,3446,3578,4023,4023,4026,3446,4025,3448,3578,3511,4025,4023,4026,3578,4023,4024,4023,3448,3578,3577,4024,3959,4025,3446,3447,3960,3448,3447,3962,3960,4025,3578,4023,4026,3575,3511,4024,3510,3577,4023,4024,4025,3447,3446,3578,3576,3574,[3511,9727],[4023,9728],9725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2819,2560,[2497,9784],[2497,9973],9974,9975,9976,9977,9978,9979,[2689,10071],[2753,10072],[2561,10073],[2755,10074],9974,9975,9976,9977,9978,9979,[3908,10071],[3971,10072],[3971,10073],[3969,10074],[3969,10075],[3907,10167],[3522,10168],3458,3908,[3908,10061],9965,9966,[2624,9869],[2625,9870],[2561,9871],[2561,9773],[2496,3841],3908,3457,3969,3456,3458,3908,3906,[3458,9778],[3969,9874],9005,9006,9007,9969,[3456,9869],[3457,9773],3969,3521,3456,3458,3457,3908,3456,3520,[3969,9490],[3456,9491],3905,[2496,4037],[2818,9679],9868,[3392,9869],[3521,9773],3456,3456,3971,3456,3522,3458,3522,3520,3457,[2561,3909,9585],[2754,9488],2752,2753,[2496,3968],[3906,9486],3522,3394,3458,3458,3522,3908,3521,3905,3907,3905,3392,3969,3969,3971,3457,3457,3908,3908,3394,3456,3969,3520,3969,3457,3971,3521,3458,3458,3971,3522,3456,3971,3456,3905,3521,3520,3650,3651,3521,[3905,9595],[3971,9596],9979,[3971,9980],[3905,9785],3971,3971,3908,3906,3907,3971,3906,3907,3908,3908,3908,[3969,3789],3983,3983,3920,[3919,9709],[3983,9710],[3983,9707],3919,3983,3983,3983,3983,3919,3919,3981,3981,3983,3983,3919,3919,[3920,384],3919,[3920,256],3917,[3917,384],3919,[3983,256],3983,[3920,384],3920,[3920,256],3920,[3917,384],3919,[3919,256],3983,3983,3919,3919,3919,3919,3920,3983,3983,3918,3920,3983,3920,3920,[2767,3725],[2766,3726],[2767,3729],2830,2767,2767,2829,[2832,3916],3919,3920,3919,3920,3919,3918,3983,[2831,3855],2831,[2768,3724],[2831,3791],[2766,3790],3983,3983,3920,3919,3918,3983,3981,3981,3919,[2767,4045],[2767,4049],2829,2768,2766,2830,[2832,566],[2829,567],[2829,3789],3983,3981,3981,3918,3981,3920,3918,3983,3919,3919,3920,3981,3983,[2766,3792],2767,2831,2831,[2829,566],[2767,567],2829,2768,2767,[2765,3789],3919,3917,3983,3920,3983,3918,3981,3918,3918,3983,[2829,3792],2767,2767,2766,2831,2768,2829,2767,[2767,694],[2830,695],[2832,3853],3917,3919,3917,3917,3920,3983,3920,3983,3983,3918,3920,3983,3918,3919,3917,3981,3917,3918,3918,3919,[2830,4049],2765,2765,[2767,3790],3918,3981,3919,3918,3918,[2760,3985],2761,[2826,3788],[2759,3793],[2826,1076],[2760,1077],[2761,1078],[2824,3980],3983,[2824,3921],2826,[2761,3853],3983,3919,3983,[2823,3729],2759,[2760,4044],[2760,4048],3920,3917,3919,3919,3981,3983,3919,3981,[3917,9526],[3913,9527],[3977,9330],[3913,9331],[3913,9332],[3914,9333],3911,[4097,3850],4097,4097,[4097,3910],[3914,9330],[3978,9333],3978,3977,3978,3975,[4097,3719],[4097,3785],4097,[4097,4038],[4097,4039],[4097,4040,9425],[3575,9426],[3447,9427],[3576,9428],[3447,9429],[4097,3979,9430],4097,[4097,3847],3912,3914,3911,[4097,3850],4097,4097,[4097,3718],3976,3978,[4097,3787],4097,4097,4097,[4097,3847],3912,3914,3914,3914,3977,3911,[4097,4043],4097,4097,[4097,3847],3912,3977,[3979,9425],[4026,9426],[4026,9427],[3511,9428],[3448,9429],[3913,9430],3977,3911,[4097,4039],[4097,4040],[4097,4043],4097,4097,4097,[4097,3974],3913,3977,3914,[3914,9520],[4026,9521],4026,4023,3510,3448,4024,3576,3446,3448,3576,3578,3511,3578,3578,3578,4023,3578,3448,3446,4025,3447,4026,3446,3447,3510,3638,3639,3447,4025,3577,3447,3448,3576,3577,4025,3446,[4023,9718],[4026,9719],[3914,9524,9330],[3978,9331],[3978,9332],[3977,9333],[3977,9520],[3512,9521],3577,3962,3448,3510,3577,4023,4024,3447,4024,4024,3578,3448,4025,4025,4025,4026,3962,3574,3960,3577,3575,3447,4025,3576,4024,3577,4023,3446,4023,3447,3962,3640,3641,3447,3512,3577,3578,3446,3577,4025,3960,3447,3578,4023,3446,4024,3446,4025,3578,4026,4023,3510,3578,[3576,9535],9536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2816,2754,2497,2752,[2818,10070],[2818,10071],[2560,10072],[2625,10073],[2816,10074],[2560,10075],[2560,10167],[2819,10168],[2497,10169],[2816,10170],[2497,10070],[2816,10071],[2753,10072],[2818,10073],[2817,10074],[2817,10075],[2561,3841,10167],[3907,10168],[3392,10169],[3905,10170],3905,3907,3905,3908,3905,3907,[3456,10061],[3520,10062,9778],[9965,9779],9966,9967,[2497,9869],[2496,9773],[2561,3968],3971,3906,3520,[3457,9778],[3520,9870],[3521,9871],[3969,9874],9970,[2496,9101],[2497,9102],[2497,9103],[2560,10065],9965,[3905,9869],[3908,9773],3907,3456,3971,3906,3969,3520,3522,[3907,9682],[3392,9683],[2497,3843,9488],2497,[2754,9775],[2561,9964],9965,[3456,9580],[3908,9581],3457,3458,3458,3907,3458,3456,3457,[3969,9682],[2754,3973,9683],[2496,9488,9584],2561,2496,[2754,4032,9487],[3971,9582],3907,3457,3521,3457,3907,3457,3908,3456,3522,3457,3906,3456,3522,3908,3969,3457,3457,3456,3456,3395,3971,3908,3520,3458,3969,3522,3522,3908,3458,3969,3907,3521,3458,3969,3905,3906,3458,3908,3520,[3458,9691],[3969,9692],[3905,10075],3906,3908,3906,3906,3907,3906,3908,3906,3906,3969,3906,3969,[3905,3790],3920,3920,3918,3919,3920,[3920,9517],[3919,9421],3920,3920,3983,3919,3919,3920,3919,3920,3983,3983,3920,3919,3919,3920,[2765,3985],[2765,3853],[2830,4048],[2832,4047],[2768,4048],3920,3918,3920,3983,3919,3918,3920,3981,3920,3983,3920,3919,3983,3983,3920,3919,3983,3920,3983,3919,3920,3920,3919,[2766,4048],3920,3983,[2830,3791],2767,2831,2830,[2767,4044],3920,3981,3918,3983,3983,3983,3919,[2766,3791],[2832,3789],3983,3920,3919,3983,3917,3919,3918,3918,3919,[2830,4045],[2767,4047],[2829,4049],2765,2832,2767,2766,2832,2831,[2832,630],[2765,631],[2832,3788],3918,3917,3983,3920,3918,3917,3983,3983,3919,3920,3983,3981,3918,[2832,3793],2765,2829,2767,[2832,630],[2767,631],2768,2829,2829,[2766,3788],3919,3919,3919,3917,3981,3918,3918,3981,3920,3920,[2830,3985,566],[2829,567],2768,2766,2832,[2766,3790],[2829,3725],[2765,3729],2832,2766,2830,[2829,3788],3919,3983,3917,3918,3920,3983,3983,3920,3981,3920,3917,3918,3919,3919,3981,3918,3920,3919,[2831,3855],2830,2831,2768,[2831,3980],3919,3919,3983,3983,[2824,4045],[2760,4049],2824,[2759,3852],[2761,3857],[2823,1140],[2825,1141],[2823,1142],[2823,3853],3983,[2823,3985],2825,2825,[2823,4044],3920,3919,3983,[2762,3729],2762,2823,[2759,3916],3919,3917,3917,3919,3917,3920,3920,3981,[3981,9526],[3981,9426],[3920,9427],[3918,9428],[3920,9429],[4097,3787,9527],4097,4097,4097,[4097,3974,9425],[3962,9426],[3447,9429],[3914,9430],[3913,9330],[3978,9333],3977,3913,[4097,3787],4097,4097,[4097,9523],[3961,9808],[4026,9809],3448,4023,4024,[3962,9526],[4097,9527],[4097,9330],[4097,3974,9333],3977,[4097,3979],4097,4097,[4097,3783],3976,3914,3914,[4097,3851],4097,4097,4097,4097,[4097,3974],3978,3978,3914,3911,[4097,3850],4097,4097,4097,4097,[4097,3974],[3977,9520],[3510,9521],4023,3574,3574,3578,[3960,9526],[3911,9430],[4097,3849],4097,4097,4097,4097,4097,4097,[4097,4038],[4097,4039],3912,[3978,9523],[3511,9616],[3446,9617],4023,3449,3510,3577,3448,4023,3447,3577,4025,3578,3512,4026,3576,3448,3578,3574,3447,4026,3578,3576,4023,3960,3578,3576,3702,3703,4025,3960,3578,4026,4026,4023,4026,3448,3575,4023,[3576,9526],[3574,9426],[3446,9427],[3959,9428],[3962,9429],[3512,9521],4026,4023,4023,3448,3447,3447,4024,3578,3961,3960,3511,3447,4026,4026,4023,3578,3578,3448,3578,3577,3511,4023,3446,4023,3577,3577,3446,3448,4024,3575,3577,4023,3704,3705,3577,4026,3575,3448,3446,3448,3576,3511,3960,4026,4025,4026,4026,4025,3576,4024,3446,3511,3960,3446,4025,[3446,9535],9536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2689,2819,2561,2497,2818,[2624,10167],[2752,10168],[2688,10169],[2755,10170],2561,2755,2689,2561,2817,2624,[2818,10167],[2561,10168],[2754,10169],[2816,10170],2624,2818,[2754,3968],3905,3971,3971,3908,3907,3392,3905,3906,[3392,9778],[3906,10158,9874],9875,[2753,10062],[2754,10063],9965,[2496,9869],[2753,3968,9870],[3522,9871],[3906,9872],[3520,9873],[3907,9874],9966,9967,9970,[2497,10066],[2560,9197],[2560,9198],[2496,9199],[2560,10161],[2560,10061],9965,[3906,9580],[3969,9581],3520,3906,3906,3906,3907,3905,[3392,9778],[2497,3843,9779],[2818,9584],2496,2561,2818,[2754,10061,9487],[3392,9676],[3971,9677],3969,3906,3908,3521,3521,3458,3520,[3456,9778],[2497,3844,9779],[2497,9584],2496,2561,[2496,9583,9487],[2496,3841,9772],[3457,9773],3520,3521,3458,3969,3456,3906,3907,3521,3905,3905,3456,3456,3908,3456,3906,3456,3905,3456,3907,3908,3458,3457,3908,3521,3906,3457,3971,3971,3520,3458,[3905,9778],[3522,9870],[3457,9871],[3457,9872],[3971,9873],[3905,9773],3908,3456,[3456,9778],[3971,9779],[3969,9773],3905,3969,3907,3905,3971,3908,3906,3905,3906,3908,[3969,3790,3717],[3906,3725],3919,3919,3919,3919,3983,3920,3983,[3983,9517],[3920,9518],3920,3920,3919,3920,3920,3983,3920,3920,3919,3983,3920,3920,3983,[2830,3985],2767,2767,2829,2767,[2767,3853],3920,3920,3919,3983,[2767,4046],[2829,4047],[2767,4048],3920,3983,3981,3919,3919,3919,3981,3920,3919,3983,3983,3919,3983,3920,3981,[2765,3791],[2830,3853,566],[2767,4045,567],[2767,4049],2767,2830,[2765,3790],[2768,3725],3919,3920,3919,3920,3983,3919,3920,3917,3919,3983,3983,3981,3919,3917,3917,3919,[2765,4045],[2765,3855],2829,2832,2766,[2831,3724],[2768,3729],2831,2830,2829,2832,[2767,694],[2766,695],[2831,3916],3920,3983,3917,3983,3917,3917,3981,3917,3920,3920,3919,3920,3983,[2830,3921],2829,2831,2766,[2767,694],[2767,695],2832,2765,2765,[2767,3916],3919,3981,3917,3919,3919,3983,3918,3981,3920,3917,[2830,4049,630],[2832,631],2832,2766,2766,[2767,3980],3981,[2767,3985],2767,2768,2768,[2768,3916],3919,3917,3918,3983,3918,3981,3983,3983,3917,3919,3918,3983,3920,3918,3981,3981,3983,[2832,3793],2829,2765,[2831,3724],[2832,3728],3981,[2826,4047],3919,3983,[2824,3856],2761,2761,2824,[2759,3916],[2823,3921],2759,2759,2825,[2760,3789],3920,[2759,3856],2761,2761,2824,[2823,3788],3983,3919,[2761,3856],2759,[2761,3790],3918,3920,3918,3983,3981,3918,3920,3981,3917,3920,3917,3918,3981,[3920,9622],[3920,9623],[4097,9524,9330],[4097,9333],[4097,9425],[3575,9521],3511,3961,[4024,9526],[3446,9426],[4026,9429],[3977,9430],3914,[4097,3915],4097,[4097,3783],[4097,3719,9715],9904,[3510,9712],[4026,9713],3513,3448,4025,[4026,9526],[4024,9426],[3448,9429],[3911,9430],[4097,3849],4097,4097,[4097,3974],3913,3978,3913,[4097,3915],4097,4097,4097,4097,[4097,3847],3912,3913,3978,[4097,3787],4097,[4097,3783],[4097,3723],4097,4097,[4097,4038,9523],[3448,9616],[3577,9617],4026,3446,3577,4026,3446,[3447,9526],[4097,9527],[4097,3718],[4097,3785],4097,[4097,3784],[4097,3785],4097,4097,4097,[4097,3848],[4097,4039,9715],[3510,9712],[3446,9713],3446,4025,3578,3578,4023,4023,3448,4025,4024,3448,3959,3961,3447,3961,3446,3512,3961,3447,3577,3446,4026,3959,3448,3448,4026,3577,3578,3575,3578,4026,3962,3575,4025,4025,3577,3577,3959,4023,3448,4026,3448,3575,3577,4023,3578,3448,3447,3448,3447,3446,3577,4025,3447,4025,4024,4024,4025,4023,3577,3578,4023,3577,4025,3578,4026,3574,3960,4025,3577,3510,3448,3578,3446,3447,3511,4025,3959,3960,3959,3447,3959,3448,4025,4025,3574,4023,3576,3960,4024,3510,3578,3446,3446,3961,4023,4023,4023,[3578,9631],[3448,9632],9533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9366,9368,9369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2496,2560,2497,2752,2819,2624,2560,2561,2497,2496,2818,2816,2689,2754,2754,2561,2817,2689,2752,2752,2817,[2497,3841],[2496,4033],[2561,3843],[2754,3841],3907,3907,3905,3458,[3457,9586],[3781,9587],[9970,9488],[2496,9971],[2496,10158],[2561,10159],[2496,10061],9965,9966,9967,9968,9969,9970,[2560,10062],[2497,10063],[2497,10066],2497,2497,2561,2497,2560,2497,[2561,10061,9487],[3458,9676],[3394,9677],3908,3906,3458,3457,3521,[3969,9778],[3969,9874],9875,[2497,9680],2497,2497,2560,[2496,9583],[3907,9772],[3908,9773],3906,[3971,3461],3905,3393,[3520,9778],[3907,9872],[3905,9873],[3520,9874],9875,[2561,9680],2497,2560,[2496,9679,9679],9868,[2754,3968,9869],[3907,9870],[3905,9871],[3969,9773],3906,3908,3457,3969,[3906,9778],[3908,9870],[3522,9871],[3394,9773],3971,3392,3521,3522,3908,3905,3456,3456,3520,3456,3456,3908,3969,3908,3457,3584,3585,3458,[3969,9778],[3971,9874],9966,9967,9968,9969,[3457,9869],[3457,9870],[3456,9871],[3394,9874],9875,[4034,9869],[2561,4035,9773],[2819,4036],3908,3906,3906,3969,3969,3905,3905,3906,[3919,3973],3983,3920,3983,3919,3920,3919,3917,3919,[3918,9613],[3919,9614],[3919,9515],3917,3918,3983,3920,3920,3920,3920,3920,3919,3919,3919,3920,3983,[2766,3725],[2829,3729],2831,2829,[2830,3790],3919,3920,3920,[2831,3855],2831,2830,2829,[2829,3854],3920,3920,3983,3920,3983,3983,3983,3983,3920,3981,3920,3919,3919,3920,[2829,3793],[2767,630],[2768,631],2766,2767,[2767,3789],3919,3920,3920,3920,3981,3983,3983,3918,3981,3917,3917,3918,3981,3917,3983,3919,[2832,4048],[2830,3856],2831,2767,2767,2829,2830,[2765,3854],3920,[2829,3726],[2766,3727],[2768,3728],[2765,3791],2765,[2832,3789],3920,3983,3917,3918,3919,3920,3919,3920,3920,3918,3983,3919,3919,3919,[2829,3855],2768,2831,2829,2765,2829,2829,2768,[2831,3789],3918,3917,3917,3920,3919,3983,3919,3918,3981,3917,[2766,3793],[2829,694],[2765,695],2765,2831,[2766,3789],3983,3917,3918,[2829,3792],2831,2767,[2830,3853],3981,3919,3920,3919,3920,3981,3981,3918,3983,3983,3920,3920,3919,3983,3919,3917,3918,[2829,3857],2765,2768,[2767,3980],3918,[2761,3855],[2760,3790],3920,[2823,3985],2823,2762,2759,[2824,3790],3920,[2762,3985],2823,2823,2823,[2760,3853],[2824,4049],2762,2760,2760,[2826,3789],3983,3919,3983,[2762,3791],2761,[2825,3853],[2823,4047],[2826,4045],[2762,4045],3920,3983,3920,3918,3919,3919,3917,3981,3917,3917,[3917,9805],[3981,9806],[3447,9426,9515],[4023,9429],[3576,9521],4024,3510,3960,4024,3511,3576,[3511,9526],[3977,9430],3975,[4097,3719],3976,3977,[3978,10000,9523],[3962,9616],[3960,9617],3962,4026,3959,4025,4025,3578,[4026,9526],[4097,9527],[4097,3783],[4097,3719],3976,3914,3913,3911,[4097,3850],4097,4097,4097,4097,4097,[4097,3974],3913,[3977,9330],[4097,3915,9333],[4097,3783],3976,3975,[4097,3785],4097,[4097,9715],[3959,9712],[3448,9713],4025,4026,4025,3578,3961,[4023,9622],[3575,9623],[3976,9524],3975,[4097,3719],3976,[4097,3979],4097,4097,4097,4097,[4097,9520],[3959,9521],3576,4024,4025,3447,3960,4026,3578,4026,3446,3960,3512,4024,4026,3446,3577,3578,3448,4025,3962,3447,3448,3577,3577,3574,3447,4023,3447,4024,3575,3578,3446,4023,3578,4024,3578,4025,4026,3960,3577,3575,3577,3447,3447,3578,4025,3447,3962,3575,4023,3447,3577,4024,3446,3577,3446,3962,3447,4025,4023,3448,3446,3447,4026,3446,4023,3577,4026,3578,3447,3446,4025,3447,3578,4025,4025,3960,3446,3577,4025,3574,3448,3448,3446,4023,3576,4023,3446,4023,3447,3447,3959,4024,4024,4023,3962,3511,3577,3576,[4025,9727],[4026,9728],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9460,9461,[3164,9462],[3227,9464],[3228,9465],9466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2688,2497,2689,2754,2497,2819,2496,2752,2818,2688,2754,2561,2818,2688,2819,2561,2755,2688,2496,2497,2689,2752,2754,2688,2624,[2560,3968],3458,3971,3905,[3905,9682],[2754,3845,9683],[2497,10066,9584],2754,2560,2561,2496,[2497,10061],[2560,10062],[2496,10063],[2561,10064],[2561,10065],[2496,10066],[2560,10158],[2496,10159],2560,2497,2497,2560,2561,2561,2560,[2497,9583],[3521,9772],[3520,9773],3522,3522,3906,3969,[3969,9778],[3905,9874],9970,[2497,9971],[2561,9776],2560,2560,2496,[2497,9679],9868,[3393,9869],[3905,9870],[3393,9871],[3905,9872],[3905,9873],[3521,9874],9968,9969,9970,[2560,9971],[2496,9776],2496,2497,[2560,9775,9775],[2496,9964],9965,9966,9967,[3392,9869],[3522,9870],[3906,9871],[3908,9872],[3392,9873],[3457,9874],9966,9967,[3971,9869],[3905,9773],3906,3457,3906,3906,3458,3520,3969,3971,3393,3907,3456,3905,3905,3520,3648,3649,[3905,9586],[3520,9587],9970,[2560,10062],[2560,10063],[2560,10064],[2560,10065],9965,9966,9967,9970,[2560,9971],9965,[2819,9869],[2560,9773],[2496,4032],3908,3908,3907,[2496,4033],[2496,4034],[2497,4035],[2819,4036],[2560,4037],[2755,3788],3919,3919,3920,3920,3920,3917,3983,[3919,9709],[3917,9710],[3920,9611],3920,3919,3920,3918,3918,3919,3983,3919,3919,3981,3917,3918,3920,3919,[2765,3855,566],[2767,567],2829,[2830,3980],3981,3920,3983,[2767,3725],[2831,3729],2830,2766,2832,[2768,3853],3920,3981,3919,3981,3983,3981,3917,3919,3918,3918,3920,3919,3920,[2766,3921],[2766,694],[2768,695],2766,2829,[2767,3980],3983,3917,3917,3981,3919,[2767,4045],[2767,4046,566],[2767,4045,567],3920,3919,[2830,4047],[2767,4047],[2829,4046],[3920,566],[3919,567],[2765,3855],2832,2766,2830,2767,2765,2832,2765,2830,[2832,3788],3983,3983,3981,3918,[2830,3725],3983,3920,3920,3981,3918,3920,3918,3920,3917,3920,3983,3918,3983,3919,[2767,4049],2829,2767,2832,2832,2829,2766,[2766,3789],[2766,3725],3918,3917,3917,3918,3920,3917,3919,3917,3920,3981,3920,[2830,3921],2831,2832,2766,2831,[2832,3980],3981,3919,3981,[2831,3793],2831,2832,2768,[2830,3980],[2767,3985],[2830,4044],[2829,3856],[2766,3853],[2767,4045],[2829,4047],3920,3918,[3918,566],[3919,567],3981,3981,3981,3919,3918,3917,[2832,3921],2765,2766,[2832,3788],3918,[2760,3725],3919,3919,3981,[2761,3791],2825,[2825,3789],3919,3920,3981,[2762,3792],2762,2826,2762,2823,2824,[2762,3789],[2824,3725],3920,3983,3983,3920,3983,[2826,3728],[2826,3791],2823,2760,[2761,3789],3919,3917,3981,3983,3917,3981,3918,3920,3917,[3981,9805],[3918,9901],9902,[4026,9707],3577,4023,3447,3510,3448,3960,3960,3577,3448,[3575,9526],[3977,9527],[3914,9330],[3978,9331],[3977,9332],[3914,9619,9333],[3962,9712],[4025,9713],3448,3446,4023,3577,3575,3577,[3577,9622],[3961,9623],[3976,9524],3977,3977,3913,3913,[4097,3979],4097,4097,[4097,3718],[4097,3786],4097,4097,[4097,4038],[4039,9425],[3959,9426],[3446,9429],[4097,3974,9430],3913,3914,3975,[4097,3719],[4097,3719,9425],[3961,9521],4024,3578,3960,4026,3446,3446,[3447,9718],[4025,9719],[3913,9716,9330],[3913,9333],3977,3977,3975,[4097,3785],4097,4097,[4097,9523],[4023,9616],[4026,9617],3446,3578,3961,3449,4025,3578,3448,3512,3578,3959,4025,3578,4023,4025,3577,3447,3577,4023,3578,3578,3578,3960,3446,3578,3577,4026,3577,3511,3446,3447,3511,3448,3577,4024,3578,3447,3446,4025,3577,4023,4023,3447,4024,3512,3513,3577,3574,3578,3574,3578,3446,3575,3447,3447,3448,3448,3446,3959,4025,3960,3960,3446,3577,3578,4023,4024,3446,3577,3510,3513,3448,4025,3578,3578,3960,4026,3512,3510,3577,4023,3575,3446,4026,3510,4025,4026,3448,3577,3448,3447,3448,3578,3446,3511,3576,3447,4023,3577,[3575,9823],[4026,9824],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9556,[3163,9557],3228,3227,3163,[3164,9562],9563,9366,9367,9368,9369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2817,2753,2624,2497,2497,2689,2816,2560,2752,2754,2817,2496,2816,2624,2624,2560,2689,2497,2819,2496,2819,2754,2497,2496,2688,[2497,4032],[2560,4033],[2754,4034],[2754,4035],[3908,9586],[2561,3909,9587],[2497,9584],2560,2561,2561,2496,2497,[2560,10158],[2496,10159],[2561,10160],[2497,10161],2561,2497,2496,2819,2497,2496,2561,2561,2497,2496,[2560,9679],9868,[3522,9869],[3522,9870],[3521,9871],[3520,9872],[3906,9873],[3458,9874],9970,[2560,10066],2497,2497,2497,2818,2561,[2561,9775],[2561,9964],9965,9966,9967,9968,9969,9970,[2497,10064],[2497,10065],[2497,10066],2496,2497,2560,2560,2561,2497,[2561,10061],[2561,10062],[2560,10063],9965,9966,9967,9968,9969,9970,[2755,10062],[2560,10063],9965,[3521,9869],[3522,9870],[3394,9871],[3969,9872],[3906,9873],[3521,9773],3906,3905,3522,3907,3393,3905,3520,3459,3394,3906,3456,[3971,9682],[3906,9683],[2560,10066,9488],2624,2625,2497,2560,[2496,10061],[2497,10062],[2560,10063],[2497,10066],2688,[2754,10061],9965,[2497,9580],[2818,9581],[2496,3841],[2561,4033],[2755,3844],2818,2755,2561,2497,2497,[2755,3852],3920,3919,3917,3981,3919,3920,3983,[3981,9805],[3919,9806],[3919,9611],3917,3983,3918,3920,3917,3920,3983,3983,3919,[2830,4047],3920,3919,[2767,4046],[2767,3856],[2832,630],[2830,631],[2767,3724],3983,3917,3920,3981,3917,3983,[2831,3726],[2765,3791],2767,2765,[2767,3853],3920,3918,3919,3983,3919,3920,3981,3917,3918,3920,[2768,3855],[2829,4044],[2831,4049],2831,2766,2768,[2832,3789],3920,3919,3981,3920,3981,[2829,3985],2765,[2831,630],[2765,631],[2830,4044],[2829,4049],2831,2765,2832,[2767,3854,630],[2831,3855,631],2831,2830,[2830,3724],[2832,3792],2768,2765,2831,2831,2766,[2766,3852],3917,3920,3918,3918,3920,3920,3981,3917,3983,3918,3920,3917,3983,3983,3919,3918,[2768,3985],[2765,3854],[2768,3856],2768,[2832,3724],[2830,3725],[2766,3792],2832,2766,2768,[2831,3980],3981,3919,3981,3981,3981,3917,3918,3981,3918,3983,3983,3918,[2832,4049],2829,2830,2767,[2829,3789],3918,3920,3981,3918,[2830,3857],2829,2829,2829,[2832,3853],[2831,3856],2831,2829,2831,2829,2766,[2766,3853],[2767,4046],[2829,4045,630],[2765,4046,631],3917,3918,3917,3919,3917,3920,3983,[2832,3729],2830,[2831,3852],3920,3983,3983,3919,3920,[2762,3985],2823,[2761,4044],3919,3919,3920,[2825,4049],[2826,3724],[2823,3792],2823,2761,[2826,3724],3983,3983,3983,3917,3920,3919,3918,3919,[2826,3856],2760,2762,[2826,3980],3918,3981,3919,3920,3917,3920,[3919,9805],[3917,9897],[3920,9898],[3919,9901],9997,[3574,9998],[4026,9803],4025,4024,3576,4026,4024,3513,3510,4023,3574,3446,[3510,9526],[4025,9426],[3961,9427],[4024,9428],[3448,9429],[3962,9521],4026,3448,3577,3447,3578,4026,3578,[3577,9718],[3961,9719],[3914,9716],3978,3914,3911,[4097,4042],[4097,3849],4097,[4097,3783],3976,3975,[4097,3719],[4097,3786],[4097,9523,9330],[3447,9712],[4024,9713],3574,[4023,9526],[3914,9527],[3914,9330],[3978,9333],[3978,9425],[3447,9521],3510,4025,3447,3447,3577,3962,3959,3578,[4026,9526],[3960,9426],[3448,9429],[3978,9430],3913,3911,[4097,3849],4097,4097,[4097,9715],[3575,9712],[3577,9713],4026,3578,3962,3446,4024,4025,3960,4024,4025,3447,3448,4025,3574,4026,3512,3577,3446,4025,4025,3959,4025,3576,3577,3447,4026,4025,3577,4025,4025,3577,3446,3574,4024,3577,3446,4025,3577,3576,3448,4025,3447,4025,4024,3446,3578,3447,3448,3446,4023,3447,3960,4024,3447,4025,3448,3448,4024,4026,3512,3578,3960,4023,3577,4025,3577,3447,4025,4026,4023,4023,3576,3448,3577,3446,3446,3446,3962,4023,4024,3574,3446,3576,4024,4024,3574,4026,3961,3959,3449,3511,3448,4025,3446,3961,4025,4023,4026,[4023,9823],[4023,9919],9920,9725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9366,9369,0,0,0,0,0,9559,[4289,3289,9652],[3162,9653],3228,3164,3228,3227,[3227,9562],[3228,9462],[3163,9463],[3227,9464],[3227,9465],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2817,2752,2496,2497,2818,2819,2819,2560,2816,2624,2560,2688,2497,2496,2819,2819,2624,2497,2754,2497,2818,2755,2753,2560,2755,2560,2561,2561,2819,[2561,4032,9682],[2754,3843,9683],[2561,9680],2560,2497,2560,2496,2496,2497,2560,2496,2497,2496,2497,2497,2561,2561,2496,2497,2497,2496,2496,[2496,9775],[2497,9964],9965,9966,9967,9968,9969,9970,[2496,10066],2496,2560,2496,[2560,2691],2497,2560,2497,2561,[2497,10061],[2561,10062],[2496,10063],[2560,10064],[2560,10065],[2496,10066],[2496,10160],[2560,10161],2496,2561,2561,2561,2496,2561,2497,2560,[2560,10158],[2561,10159],[2496,10061],[2497,10062],[2560,10063],[2561,10064],[2561,10065],[2497,10066],[2561,10158],[2560,10159],[2688,10061],9965,9966,9967,9968,9969,[3969,9869],[3457,9773],3908,3520,3458,3457,3971,3969,3456,3906,3458,3456,[3969,9778],[3457,9779],[2496,9584],2688,2689,2497,2496,2560,[2560,10158],[2560,10159],[2496,10162],2496,2625,[2496,10061,9487],[2561,9676],[2561,9677],2819,2754,2497,2496,2818,2754,2819,2496,[2754,3916],3920,3920,3919,3919,3981,3920,[3983,9805],[3917,9901],9902,[3917,9707],3983,3983,3920,3981,3983,3919,3920,3919,[2832,3793],2832,[2765,3980],3983,[2831,3729],2765,[2765,694],[2766,695],[2767,3853],3920,3917,3919,3983,3983,3918,3919,3983,[2767,3725],[2768,3729],2765,[2768,3980],3917,3983,3920,3919,3917,3983,3919,3918,[2766,3985],[2766,3790],[2768,3729],2767,2832,2831,[2768,3789],3919,3983,3920,3981,3920,3981,3983,[2830,3792],[2767,694],[2768,695],2831,2832,[2830,3790],[2831,3728],[2832,3791],[2766,694],[2766,695],[2830,3789],[2766,3726],3917,[2768,3793],2766,2830,2829,2831,2829,[2766,3916],3920,3981,3981,3917,3918,3918,3983,3983,3981,3920,3981,3917,3917,3920,3919,3919,[2768,4049],2765,2830,[2766,3724],3981,3919,[2832,3985],2830,2832,2832,[2829,3853],3981,3983,3919,3920,3919,3918,3918,3920,3917,3983,3920,[2832,3793],2830,2832,2765,2767,[2765,3980],3920,3920,3918,3917,[2829,3921],2832,2829,2768,2832,2831,[2766,3724],[2768,3725],[2831,3728],[2832,3729],2831,2830,2832,[2766,694],[2766,695],[2830,4044],3920,3983,3918,3918,3919,3917,[2829,3985],2832,[2767,3916],3983,3983,3983,3919,3919,3920,[2761,3791],2760,[2762,3980],3983,[2759,3856],2760,[2760,3788],[2826,3985],2825,[2759,3789],3920,3919,3919,3920,3983,3917,3920,3920,[2759,3985],2825,2823,2823,[2760,4044],3920,3919,3983,3920,3983,[3919,9805],[3981,9901],9993,9994,9997,[3959,10093],4024,3962,4023,3511,3578,4023,3960,3448,3577,3962,4025,3447,3447,3578,3448,4024,3447,4026,3577,3578,3510,4025,4025,3446,3447,4024,[3512,9526],[3913,9430],3913,3978,[4097,3787],4097,[4097,3718],[4097,3719],3976,3914,3913,3978,[3979,9425],[4023,9426],[3960,9521],3575,3446,3578,[3510,9526],[3576,9426],[3959,9429],[4023,9521],3576,3578,3447,3638,3639,4026,3447,4026,3578,3447,3578,4023,[4025,9526],[3977,9527],[4097,3979,9330],[4097,9331],[4097,9332],[4097,9333],[4097,9425],[3512,9521],3448,3446,3448,4025,4024,3448,3576,3578,3577,3578,3578,3446,4024,3447,4024,3446,4023,3578,3448,3446,3512,4024,4025,3510,3577,3577,3448,3448,4026,4024,3448,4023,3446,3447,3447,3578,3447,4025,3447,3578,3448,4024,4026,3447,4025,3446,4025,3446,3446,4024,3446,3578,3962,4024,3448,3448,3446,3512,4024,3578,4024,3449,4026,4024,3512,3512,3448,3510,4023,4024,3578,3961,4024,3446,4024,4023,4025,3448,3959,4023,4026,3577,3446,3448,3446,4025,3578,3511,4023,4023,4023,3448,3959,3578,3446,4023,4025,[3577,9727],[4023,9728],[10015,9533],10016,9821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9460,9461,[3163,9462],[3164,9465],9466,0,0,0,0,9556,[4289,9557],[4289,3224],3228,3164,3228,3228,3227,3164,3163,3164,3227,[3164,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2755,2689,2755,2755,2816,2755,2689,2816,2819,2819,2755,2755,2624,2816,2754,2497,2561,2561,2497,2817,2754,2496,2754,2754,2819,2818,2560,2755,2819,2755,[2496,9490],[2818,9491],2560,2496,2560,2560,2561,2561,2561,2496,2497,2497,2497,2497,2561,2560,2561,2560,2496,2560,2561,2561,2496,[2496,10061],[2561,10062],[2497,10063],[2561,10064],[2561,10065],[2560,10066],2496,2497,2560,2496,2496,2496,2560,2496,2561,2497,[2560,10158],[2560,10159],[2561,10160],[2496,10161],2496,2560,2497,2560,2497,2497,[2560,2691],2496,2496,2496,2561,2497,2497,2560,[2560,10158],[2497,10159],[2560,10160],[2496,10161],2496,2560,2561,2561,[2496,10061],[2497,10062],[2560,10063],[2560,10064],[2561,10065],9965,[3971,9869],[3908,9773],3521,3456,3969,3969,3522,3971,3969,3908,[3907,9778],[3905,9874],9875,[2496,9680],2752,2753,2496,2496,2560,2496,2497,2497,2561,2497,[2755,9583],[2496,9580],[2754,9581],2754,2561,2819,2496,2560,2754,2755,2819,[2819,3980],3920,3983,3920,3918,3920,[3983,9613],[3919,9614],9997,[3917,9998],[3917,9803],3983,3917,3919,3981,3983,3918,3920,3917,[2765,3857],[2832,953],[2766,3853,954],[2768,4045,955],[2832,4049],2768,2768,2766,2831,[2768,3980],3918,3917,3920,3917,3981,[3918,9321],[3919,9322],[3919,9323],[2831,3856,9324],2829,[2830,3980],3981,3917,3920,3919,3917,3981,3920,3917,3918,3983,[2830,3985],2830,[2768,3790],[2765,3725],3917,3983,3981,3983,3981,3983,3981,3920,3983,[2829,3728],[2766,3791],2831,[2765,3724],3918,3920,3983,[2829,3728],[2767,3728],3919,3920,3919,[2765,3857],2831,2831,2830,2832,2768,[2765,3980],3918,3981,3920,3983,3918,3918,3920,3918,3920,3919,[3917,566],[3919,567],3917,3981,3919,[2829,4049],2831,2766,[2829,3724],3981,3983,3981,[2832,3793],2831,2768,2830,2767,[2767,3788],3983,3981,3981,3983,3917,3981,3918,3919,3919,3983,[2765,3857],2765,2768,2767,[2768,3789],3920,3918,3920,3918,[2831,4048],[2766,3856],2830,2830,2766,2832,[2768,3789],3919,3981,3981,3983,[2766,3726],[2765,3791],2768,2829,2767,2832,[2768,3980],3983,3919,3918,3917,3919,[2768,3856],2768,[2829,3980],3920,3919,3919,3919,3983,3920,3918,[2761,3725],3919,[2760,3985],2823,2760,[2823,3852],3920,[2826,3725],3918,3920,3983,3920,3983,3983,3983,3920,3983,3983,[2761,3727],[2826,3727],[2824,3792],2762,[2825,3980],3918,3981,3917,[3917,9613],[3917,9614],[9997,9515],[4024,10089],[3446,10090],[3576,10093],4025,4023,3959,4026,3574,4025,3575,3512,3446,3578,4025,4023,4025,4024,3446,4026,3448,4023,4024,3961,3959,3447,3510,3577,4026,4025,3446,4026,[3446,9526],[3977,9527],[3913,9330],[4097,3851,9333],4097,[4097,3974],3913,3913,3913,3978,[3978,9520],[3574,9521],3574,4023,4024,4024,3959,4026,3448,3577,4024,3576,3446,3447,3702,3703,4025,4025,3574,4026,3576,3447,3577,3962,[3447,9526],[3511,9426],[4023,9427],[3575,9428],[3961,9429],[3576,9521],4024,3513,4025,4025,3959,3510,4023,4023,4024,3960,3448,3578,3447,3959,4025,3578,3448,4024,4025,3578,4025,3447,3448,4026,3446,4024,3446,3447,4024,3446,3578,3448,3446,3446,3446,3578,3447,4023,4025,3577,4025,3574,3446,3575,3448,3578,4026,3447,4025,4026,4025,3447,3962,3961,4026,3578,4024,4026,4024,4023,3576,3447,4025,4024,4024,4025,3447,3511,4023,4025,3577,4025,3575,3447,4023,3577,4025,3448,3574,4025,4023,3446,3511,4023,4026,3574,3574,3448,3511,3577,3577,3959,3448,3447,4023,3577,3962,4026,[4026,9823],[4023,9824],[10111,9629],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9556,[3227,9557],3228,3227,[3227,9562],9563,9366,9369,9556,[4289,3229,9557],4289,[4289,3097],[4289,3289],[4289,3290],3162,3161,[4289,3289],3162,3228,3228,3163,[3227,9658],[3163,9659],9560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2689,2688,2816,2560,2689,2818,2624,2818,2819,2624,2816,2816,2752,2561,2496,2560,2816,2497,2497,2688,2561,2496,2561,2496,2754,2497,2755,2818,2561,2819,[2819,9586],[2496,9587],[2561,9488],2561,2561,2561,2561,2560,2496,2560,2561,2560,2497,2497,2819,2818,2754,2819,2560,2561,2497,2561,2497,2561,[2560,10158],[2560,10159],[2560,10160],[2561,10161],2497,2560,2560,2496,2560,2496,2497,2496,2561,2497,2497,2496,2496,2560,2560,2496,2561,2561,2497,2496,2497,2561,2561,2496,2560,2497,2496,2561,2560,2497,2496,2561,2496,2561,2560,2560,2560,2497,[2560,10158],[2561,10159],[2561,10160],[2496,10161],[2561,10061],9965,[3908,9869],[3971,9870],[3971,9871],[3520,9872],[3521,9873],[3457,9773],3457,3906,[3520,9778],[3520,9874],9970,[2497,9971],[2497,9776],2561,2561,2497,2496,2560,2496,2497,2496,2496,2560,[2561,9679],[2755,9676],[2755,9677],2818,2496,2754,2818,2497,2496,2560,2819,[2754,3853],[2819,4045],3983,3920,3920,3920,[3920,9709],[3920,9710],[3919,10093,9515],3920,3919,3983,3920,3918,3920,3917,3917,3918,3920,[2832,3921],[2767,1017],1018,[2829,1019],2767,[2766,3789],[2831,3791],2767,2831,[2831,3980],3917,3983,3917,3918,[3983,9416],[3920,9417],[3919,9418],[3983,9419],[2830,3729,9420],[2832,9421],[2765,3853],3920,3919,3981,3917,3983,3917,3919,[2766,4045],[2831,4046],[2768,4047],[2767,3855],2765,[2832,3853],[2768,4047],[2829,4046],[2832,4045],3920,3981,3983,3918,3981,3918,3981,3918,[2831,3793],2766,[2765,3980],3981,3919,3981,3918,3919,3920,3981,3918,[2768,3921],2829,2829,2765,2829,[2768,3724],3917,3918,3983,3918,3919,3919,3920,3920,3919,[2829,4046],[2832,4045],[2832,4046,630],[2831,4047,631],[2766,4048],[2768,4047],[2831,3855],2765,[2766,3789],[2830,3725],3981,3919,3919,3983,[2768,3857],2765,2768,2829,2830,[2767,3916],3920,3920,3918,3983,3981,3920,3920,3983,3983,3918,[2767,3921],2767,2829,[2832,3724],3920,3917,3917,3981,[2766,3985],2767,2832,2830,2831,2767,[2766,3724],3983,3981,3918,3920,3981,3981,3983,[2830,3725],[2829,3727],[2832,3792],2768,[2765,3854],3920,3917,3917,3917,[2832,3793],2768,[2831,3724],3918,3919,3918,3918,3983,3983,3920,3983,3919,3920,3919,[2761,3791],2761,[2826,3980],3920,3919,3919,3919,3919,3920,3983,3983,3983,3917,3981,3920,3919,3981,[2825,3985],2826,[2825,3854],3920,3981,3917,[3981,9709],[3917,9710],[3448,10093,9611],[3448,10185],[4023,10186],3447,3447,3578,3959,3578,3577,3448,3577,3577,3512,3448,3577,3446,4026,3578,4026,3575,4026,3577,3447,3448,4025,3961,3577,3578,3513,3575,3448,3574,3961,[3959,9526],[3960,9426],[3447,9429],[4097,3783,9430],3976,3913,3978,3913,[3978,9523],[3574,9616],[4023,9617],3576,3446,4026,4024,4023,3578,3511,3578,4026,3446,3577,3447,3578,3448,3578,3961,3448,3960,4023,4024,4024,3446,3577,4023,3446,4023,3577,3447,3959,3448,4023,3578,4024,3448,3448,3577,4023,4023,3577,3447,3574,3446,3447,4025,4025,4026,4025,3511,4023,4023,4024,4023,3576,3512,4023,3577,4024,3576,4025,3448,4023,3577,3448,3446,3448,3448,3575,4023,3574,3576,3447,4025,3577,4026,3446,3577,3446,3578,4025,3448,3578,3446,4026,3447,3448,4024,4024,4026,4026,3577,4023,4023,3577,3578,3448,4026,4026,3448,4025,3577,3577,3577,3575,3447,4023,4026,3577,3575,3448,3576,3448,3449,3512,3962,3577,4023,4026,4026,3447,4023,3960,4024,3446,[3448,9823],[4025,9915],[4023,9916],[3577,9919],9920,9725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9366,9367,9369,0,0,0,0,9366,9367,9368,9369,0,0,0,0,9366,9367,9369,0,0,0,9460,9461,[3227,9557],3227,3228,3227,3227,[3164,9562],[3228,9462],[3227,9465],[3164,9557],3225,[4289,3035],4289,4288,4289,[4289,3288],[4289,3099],4289,[4289,3224],3164,3163,3164,[3164,9754],[3228,9755],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2560,2496,2752,2624,2689,2689,2818,2752,2496,2689,2560,2818,2625,2496,2624,2561,2561,2497,2816,2816,2497,2754,2561,2755,2819,2497,2819,2819,2560,2496,[2497,9682],[2497,9683],[2560,9584],2496,2561,2561,2496,2497,2560,2818,2755,2496,2497,2818,2754,2819,2754,2560,2561,2624,2625,2561,2496,2497,2497,2561,2497,2496,2561,2497,2561,2496,2560,2561,2497,2497,2496,2561,2560,2496,2560,2560,2497,2560,2497,2560,2497,2560,2496,2561,2497,2496,2497,2561,2496,2624,2625,2561,2497,2497,2561,2496,2496,2497,2496,2561,2496,2561,2561,2496,2497,[2496,10061],9965,9966,9967,9968,9969,[3905,9869],[3907,9870],[3394,9871],[3521,9874],9970,[2624,10066],2625,2497,2497,2754,2496,2755,2560,2560,2561,2496,2560,2496,[2755,9389],[2561,9485],2496,2819,2755,2819,2496,2818,2561,2818,2818,2755,2818,[2818,3853],3919,3983,3919,[3983,9613],[3983,9614],[3919,9611],3918,3917,3920,3981,3918,3981,3918,3983,3918,3918,[2829,3793],[2831,1081],1082,[2767,1083],[2831,3790],3920,3983,[2832,3791],2829,[2832,4044],3920,3983,3983,[3983,9511],[3920,9512],3981,3920,3920,3983,[2767,3729,9517],[2829,9518],[2766,3853,9321],[3920,9322],[3981,9323],[3919,9324],[3919,9321],[2832,4048,9322],[2765,4049,9323],[2765,9324],[2768,9321],[2765,9322],[2832,9323],[2766,9324],2768,2765,2832,2768,[2765,3980],3983,3983,3983,3917,3920,3920,3919,[2765,3857],2766,[2831,3788],3918,3981,3981,3917,3919,3983,3983,3983,[2831,3985],2765,2767,2767,2832,[2832,3980],3917,3983,3983,3983,3917,3919,3983,3918,[2829,3793],2766,2831,[2830,694],[2765,695],2767,2831,2766,2829,[2765,3980],3981,3917,3983,3918,3983,[2766,3921],2829,2767,2831,2767,[2766,4044],[2829,4046],[2831,4048],[2830,4046],3920,3983,3983,3983,3917,3919,[2766,4045],[2768,3856],[2829,3724],[2831,3725],3920,3918,3981,3983,3983,3983,[2765,3726],[2832,3792],2829,2767,2831,[2829,3853],3918,3917,3983,3919,3920,3918,3981,3983,3983,3983,[2831,3791],2768,[2830,3853],3920,3918,3981,[2831,3921],2829,[2831,3980],3917,3983,3983,3918,3983,3917,3919,3919,3920,3983,3919,3983,[2762,3725],3983,3920,3983,3918,3981,3983,3983,3920,3920,3919,3918,3919,3920,3983,3918,[2826,3793],2823,2824,[2823,3980],3917,3983,[3917,9613],[3920,9614],[3446,9611],3446,3510,4023,4025,4023,3511,3577,4024,3575,3510,3578,4026,3960,4025,[4026,3515],3575,3447,3446,3446,3446,4023,3577,3574,4026,3577,3447,3446,3578,3574,4025,4026,4024,4024,3446,3513,[3961,9526],[3978,9527],[3978,9330],[3913,9331],[3977,9332],[3913,9715,9333],[3447,9712],[3574,9713],3447,3577,3447,3961,4025,4026,4024,4025,4025,3449,4024,4025,3448,3578,3448,4025,3448,4024,3449,3575,3448,3961,3510,3511,4024,4025,3577,4023,4026,4024,3578,4024,3962,3577,3578,4025,4024,3959,4024,3962,3512,4023,4025,3578,4024,4023,4025,3578,4023,3959,4024,4024,4026,3962,4024,4024,3446,4026,4024,3448,3448,3448,4023,3447,3961,4025,4024,3577,3448,4025,3447,4024,4024,3574,3512,4024,3578,3512,3577,3959,3962,3577,4026,3447,4024,3446,3510,3961,3962,4023,3447,4024,4026,3959,4023,3447,3578,3446,3510,3448,4025,3512,3446,4025,3512,3577,4026,3448,4024,4026,4024,4025,3447,3512,4024,4023,4023,3446,3578,3575,3448,3447,[3960,9823],[4025,9919],10011,10012,10015,10016,9821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9460,9461,[3163,9462],[3227,9463],[3228,9465],9466,0,9460,9461,[4289,9462],[4289,9463],[4289,9464],[4289,9465],9563,9366,9369,9461,[3164,9462],[3164,9463],[3164,9465],9563,9366,9369,9556,[3163,9557],3164,3163,3164,3164,3164,3227,3228,3228,3227,3164,3225,[4289,2969],[4289,3036],4289,4289,4289,[4289,3033],3226,3164,3227,3227,[3228,9658],[3163,9659],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2689,2625,2560,2496,2624,2497,2754,2755,2624,2688,2496,2496,2496,2819,2816,2755,2561,2561,2818,2688,2755,2560,2560,2496,2624,2625,2755,2819,2497,2497,[2496,9778],[2497,9779],[2496,9584],2496,2496,2497,2561,2560,2624,2625,2754,2496,2755,2754,2496,2496,2754,[2496,2626],2754,2688,2689,2497,2497,2561,2561,2560,2561,2560,2561,2497,2754,2818,2819,2624,2625,2497,2497,2496,2497,2497,2560,2561,2561,2497,2497,2754,2560,2497,2755,2496,2561,2561,2561,2497,2560,2688,2689,2560,2561,2497,2561,2496,2560,2561,2561,2496,2560,2560,2496,2560,2496,2561,[2497,10061],[2561,10062],[2561,10063],[2496,10064],[2497,10065],9965,9966,9967,9970,[2560,10066],2688,2689,2561,2496,2496,2561,2818,2755,2497,2561,2561,2560,[2755,9484],[2561,9485],2755,2819,2496,2818,2819,2754,2754,2754,2819,2755,2755,2754,2497,[2496,3980],3920,3919,[3920,9709],[3918,9710],[3918,9707],3917,3917,3919,3918,3918,3917,3920,3983,3920,3918,[2766,3857],[2768,1145],[2829,1146],[2765,3789,1147],3919,3983,3920,3983,[2767,3792],2767,[2832,3980],3919,[2832,3856,9514],[2766,3980,9607],[3983,9608],3917,3918,3920,3981,3983,[2767,3791,9517],[2831,9417],[2831,4044,9418],[3920,9419],[3981,9420],[2768,3985,9417],[2830,9418,566],[2766,9419,567],[2766,3789,9420],[2768,3725,9417],[2830,3726,9418],[2830,3727,9419],[2829,3728,9420],[2830,3725,9421],[2830,3726],[2829,3727],[2767,3728],3920,3983,3981,3981,3981,3918,3920,3920,[2768,3921],2767,[2832,3916],3920,3983,3917,3920,3919,[2831,4047],[2831,4047],[2829,4048],[2767,3856],2765,2829,2768,[2767,3789],3920,3983,3918,3981,3920,3918,3917,3919,3917,[2829,3921],2767,[2832,3790],[2765,3725],[2765,3726],[2832,3725],[2768,3725],[2767,3791],2832,[2767,4044],3920,3917,3983,3917,3917,3919,[2765,3791],2768,2767,2831,2766,2767,2768,2831,[2768,3980],3919,3981,3919,[2766,4048],[2830,3855,566],[2829,567],2765,[2831,3788],3919,3920,3983,3983,3983,3920,3919,3918,[2765,3985],2765,[2766,3790],[2765,3725],[2767,3725],3919,3981,3983,3920,3983,3983,3981,3918,3918,3918,3983,[2766,3791],2829,[2768,3854],3920,3919,[2829,4049],2768,[2829,3854],3920,3917,3919,3983,3919,3981,3981,3983,3920,3920,3919,3919,3983,3920,3981,3981,3920,3918,3917,3920,3983,3920,3919,3918,3983,3920,3917,3917,[2762,3857],2759,[2761,3790],3917,3919,3981,[3983,9709],[3920,9710],[4023,9611],3446,3512,3446,3578,3448,4024,4026,3512,3510,3447,3577,3577,3960,3578,3961,4026,3960,4024,4023,3578,3577,3577,3959,3512,4024,3448,3962,3447,3446,4024,3578,3448,3510,4024,4023,3577,[3511,9526],[3447,9426],[3575,9427],[3574,9428],[3447,9429],[3511,9521],4026,4023,4023,4026,3578,3446,3960,4026,3962,3576,4025,3959,3959,3447,3446,4024,3578,3446,3574,4025,4024,3510,3510,3448,4026,4023,3446,3446,3446,4023,4023,4023,3446,3575,3448,4025,4025,3576,3578,4025,3447,3447,4024,4024,4026,3578,3510,4026,4024,4024,3510,3447,3448,4023,4023,3448,3576,3511,4026,3578,4025,3446,3960,3578,3578,3446,3961,3446,3577,3448,4025,3961,4026,3447,4023,3577,3578,3577,4025,3960,3446,4026,3960,3448,4023,4024,4023,4026,4023,4023,3448,3578,4023,4023,3577,3447,4024,3575,4026,3512,4023,3576,4026,4023,4025,4023,3576,3511,3576,4024,3446,4023,3578,[4023,3515],3578,3510,3959,3574,3959,3511,3960,3446,[4023,9631],[3511,9632],[10015,9533],10107,10108,10111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9556,[3164,9557],3228,3163,3163,[3228,9562],9466,9556,[4289,9557],4289,4289,4289,4289,[4289,9562],[4289,9462],[4289,9465],[4289,3224,9557],3227,3164,3227,[4289,3165,9562],[4289,9462],[4289,3160,9465],[3227,9557],3227,3164,3163,3164,3164,3228,3227,3228,3164,3164,3164,3164,3163,3225,[4289,2970],[4289,2971],[4289,2972],3226,3228,3227,3228,3164,[3163,9754],[3227,9755],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,2816,2689,2624,2754,2496,2624,2752,2496,2752,2818,2818,2755,2819,2496,2560,2688,2816,2818,2496,2497,2819,2818,2819,2688,2689,2819,2818,2496,[2497,9778],[2497,9874],9875,[2561,9680],2497,2497,2560,2561,2561,2688,2689,2755,2497,2818,2497,2496,2755,2496,2497,2561,2752,2753,2560,2561,2497,2561,2496,2561,2560,2496,2561,2561,2755,2560,2688,2689,2755,2496,2561,2755,2560,2496,2497,2561,2496,2755,2819,2496,2561,2497,2561,2497,2561,2560,2560,2497,2752,2753,2624,2625,2496,2496,2496,2755,2755,2755,2561,2560,2496,[2497,2627],2561,2560,2561,2560,[2561,10158],[2497,10159],[2497,10160],[2496,10161],[2561,10061],[2496,10062],[2561,10063],[2496,10066],2560,2752,2753,2560,2561,2755,2754,[2819,2627],2819,2560,2561,2496,[2754,9487],[2496,9580],[2754,9581],2818,2560,2755,2755,2754,2561,2818,2818,2561,2755,2496,2560,[2561,3724],3919,3983,3983,3983,[3983,9517],[3918,9518],3919,3920,3920,3918,3920,3919,3918,3981,3920,3981,[2829,3921],2832,2766,[2765,3788],3917,3981,3918,3981,[2830,3985],2765,[2830,3853],[2829,3856],[2766,9706],[2829,3853,9703],[3920,9704],3918,3918,3919,3983,3920,3983,[2766,3791],2830,[2766,3854],[2831,4045],[2830,4049],[2767,630],[2831,631],[2829,4044],3920,3917,3919,3919,[3918,9517],[3981,9518],3919,3917,3919,3920,3981,3917,3983,3920,3981,3917,[2831,3985],2766,[2766,4044],3920,3981,3919,3919,[2831,4049],2832,2765,2829,2832,2765,2767,2767,[2767,3980],[3981,566],[3917,567],3919,3920,3919,3920,3920,3983,3917,3983,[2765,3727],3919,3919,3918,3983,3919,[2829,4049],2765,2766,[2767,3853],3920,3917,3918,3917,3918,[2765,3985],2765,2766,2829,2829,[2830,3790],[2768,3726],[2830,3728],3917,3917,3983,[2830,3985],2767,[2830,630],[2831,631],2832,[2829,3852],3917,3918,3920,3917,[3918,566],[3981,567],3920,3919,[2767,4049],2832,[2832,3980],3920,3918,3919,3920,3981,3919,3917,3917,3917,3981,3981,3919,3919,3983,[2832,3791],2830,[2768,3854],[2767,3856],2831,2830,[2765,3790],3917,3919,3919,3917,3983,3918,3919,3918,3917,3920,3981,3920,3918,3919,3917,3983,3981,3981,3920,3981,3919,3981,3983,3918,3981,3919,3917,3918,[2823,3921],2760,[2760,3788],3917,3917,3920,[3981,9613],[3920,9614],[3512,9611],3511,3446,3447,4025,4026,3578,3642,3643,3961,3960,4025,3578,3447,3577,4024,3512,3577,3577,3578,3578,3962,4023,3575,4024,3574,3446,3577,3578,3447,3577,3448,4026,3447,4026,3446,3447,3510,3577,3578,3446,4023,3446,3447,3446,3575,4024,3447,4025,4024,3578,4024,4023,4026,3961,3961,3447,3446,3446,4025,3448,3448,3962,[4024,3515],4025,3447,4023,4026,3961,3447,3577,3448,3575,3578,3448,4026,3446,3578,4024,3577,3512,3448,3512,3960,4023,3577,3575,3447,3446,4024,3510,3447,3447,4024,4023,3962,3511,4023,3960,3446,3575,3575,4026,3446,3577,3446,4025,3576,3447,3447,4023,3960,3577,3960,4026,4024,3577,3576,3576,4024,4026,3961,3446,3578,3448,3960,3446,3446,3448,4025,3578,3578,4026,3448,3447,3447,4025,3962,3578,4023,3578,3447,4023,3574,3577,3510,3578,4023,3959,3578,3578,3577,4026,3578,3577,3446,4026,3574,3448,4026,3511,3446,3447,3577,3510,[3511,9727],[4025,9728],[10111,9629],10203,10204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9559,[3228,9652],[3163,9653],3228,3163,3164,3164,[3228,9562],[3227,9557],[4289,2969],[4289,2970],[4289,2971],[4289,2972],[4289,2973],4289,4289,[4289,3033],3226,3163,3228,3164,[4289,3037],4289,[4289,3032],3163,3163,3164,3227,3228,3228,3228,3228,3228,3164,3163,3228,3163,3227,3228,3228,3164,3164,3228,3164,3164,3163,3164,[3227,9850],[3164,9851],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2497,2819,2816,2818,2497,2560,2689,2560,2689,2818,2817,2496,2754,2624,2819,2754,2816,2819,2688,2817,2818,2560,2755,2560,2752,2753,2496,2497,[2754,9586],[2560,9587],[9970,9488],[2497,9971],[2497,9776],2496,2497,2497,2497,2497,2752,2753,2561,2818,2819,2754,2497,2496,2755,2496,2497,2497,2497,2561,2497,2496,2496,2561,2560,2496,2496,2560,2561,2818,2560,2752,2753,2496,2496,2819,2560,2497,2497,2561,2819,2755,2497,2496,2755,2497,2560,2561,2755,2818,2755,2560,2496,2688,[2689,2626],2688,2689,2755,2560,2818,2818,2754,2561,2561,2496,2560,2496,2560,2561,2560,2497,2496,2560,2561,2496,2496,[2496,10158],[2561,10159],2497,2497,2560,2560,2496,2496,2561,[2560,124],[2561,125],[2496,126],2496,2561,2497,[2560,9679],[2818,9676],[2497,9677],2560,2497,2754,2624,2625,2624,2625,2561,2561,2496,2819,2561,[2755,3980],3981,3919,3919,3919,3919,[3918,9517],[3920,9421],[3917,9321],[3983,9322],[3920,9323],[3917,9324],3919,3918,3920,3918,3918,3983,[2832,3792],2829,[2767,3916],3920,3920,3917,3919,[2766,3856],2830,[2829,9321],[2832,9324],[2765,9416],[2829,9512],[2767,3854],[2832,4048],[2829,4048],3920,3917,3919,[2831,4046],[2832,3855],2766,2768,2831,2829,[2768,694],[2830,695],2832,[2829,3854],[2767,4045],3920,3981,[3918,9613],[3981,9614],[3918,9515],3917,3920,3919,3920,3983,3917,3918,3919,3920,3983,[2829,3727],[2831,3725],3919,3919,[2766,4048],[2768,3856],2830,2829,2765,2765,2829,2767,2765,2832,[2765,4044],[2766,4047,630],[2768,4047,631],[2831,4049],[2832,3980],3981,3983,3983,3919,3920,3919,3919,3920,3919,3918,3920,3983,[2767,3729],2830,2768,2765,[2832,3854],3920,3919,3981,3919,[2766,4049],2765,2830,[2765,3790],[2765,3725],3918,3981,3919,3918,3919,3920,3983,[2766,3791],[2766,694],[2768,695],2766,[2765,3916],3981,3917,3919,3919,[2830,4045,630],[2766,4048,631],[2767,4047],[2768,3855],2767,2766,[2768,3853],3920,3918,3983,3918,3917,3917,3919,3919,3981,3918,3919,3918,3920,3918,3983,[2829,3792],2832,2766,[2768,3789],[2832,3725],3918,3920,3919,3919,3920,3918,3983,3917,3920,3983,3917,3981,3983,3918,3983,3981,3918,3917,3918,3919,3920,3919,3918,3981,3981,3918,3920,3918,3918,[2826,3985],2762,[2759,3852],3917,3983,3981,[3918,9709],[3919,9710],[3962,9611],4024,4023,3448,4024,3447,3578,3706,3707,4026,3962,3959,3510,3578,3578,3960,3578,4026,3959,3446,3448,4024,3510,3511,4024,3577,3960,3447,4023,3959,3578,4023,3447,3447,3446,4023,3511,3446,4025,3577,3448,3578,4026,3578,3447,3578,4023,3578,4024,4025,3446,3447,4023,3576,3447,4023,3574,4026,3578,3446,3448,3578,3962,4024,3577,3960,4024,3447,3446,4026,3578,3512,3961,3447,3574,3446,4023,4024,4026,3576,3446,3446,3640,3641,3577,3961,3446,4024,3959,4023,3446,3962,4023,3959,4023,4026,3447,3446,3511,3448,4026,3962,4024,4025,4025,4025,4024,3962,3447,3577,3448,3578,3578,4025,4025,3446,3448,3447,3511,3446,3577,3447,3578,3448,3577,3510,4025,3511,3446,3447,3446,3448,3446,3578,4024,3577,3577,4025,3578,3447,3578,3575,3446,3448,3574,4024,4023,3575,4026,3577,4024,3960,3446,3448,3961,3962,4024,4026,4024,3574,4026,3512,3446,4026,3576,[3575,9631],[3446,9632],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9366,9367,9369,0,0,9556,[3163,9557],3164,3227,3164,3228,3228,3164,3164,3227,3164,3164,3161,[4289,3100],[4289,3033],[4289,2969],3226,3228,3163,3227,3227,[4289,3101],4289,[4289,3160],3227,3228,3164,3228,3163,3163,3228,3163,3163,3163,3164,3227,3227,3163,3227,3161,[4289,3291],[4289,3292],3162,3227,3164,3164,[3164,9850],[3227,9946],9947,9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,2497,2752,2754,2560,2754,2496,2624,2560,2817,2689,2624,2624,2755,2496,2752,2752,2560,2560,2689,2560,2561,2818,2819,2561,2497,2755,2819,[2754,9682],[2755,9683],[2819,10066,9584],2819,2496,2560,2496,2560,2561,2496,2497,2497,2819,2754,2497,2560,2819,2755,2560,2818,2496,2818,2496,2496,2561,2496,2496,2560,2560,2560,2496,2497,2560,2497,2497,2819,2561,2754,2497,2496,2754,2819,2754,2497,2818,2496,2818,2560,2496,2819,2754,2497,2496,2754,2755,2755,2496,2752,2753,2752,2753,2818,2755,2497,2755,2755,2560,2496,2496,2561,2561,2561,2624,2625,2561,2497,2560,2496,2497,2496,2496,2561,2496,2496,2496,2560,2754,2754,2818,[2754,188],189,[2561,190],2560,2496,2561,[2560,9484],[2560,9485],2624,2625,2754,2561,2688,2689,2688,2689,2818,2497,2496,2560,2496,[2497,3853],[2496,4045],3983,3920,3983,3920,3917,[3920,9517],[3983,9417],[3920,9418],[3981,9419],[3981,9420],[3917,9421],3919,3918,3981,[2830,4048],[2831,4048],[2832,3855],2831,[2830,3854],[2766,4048],3920,3981,[2767,3985],2768,[2829,9416],[2765,9417],[2766,3724,9420],[2829,3727,9512],[2768,3792],2768,2829,2766,[2832,3853],[2832,4046],[2830,3856],2766,2765,2831,2832,[2768,3724],[2766,3728],[2765,3727],[2768,3726],[2768,3729],2832,2765,[2830,3853],[2829,4045],[3920,9709],[3917,9710],[3983,9707],3919,[2832,4047],[2767,4049],[2767,4044],[2766,4045,566],[2768,3856,567],[2765,3980],3983,3983,3981,3919,[2766,4047],[2829,4046],[2767,4049],2832,2766,2832,2831,2768,2767,2832,2830,2767,2767,2766,[2768,694],[2765,695],2768,[2765,3980],3919,3918,3983,3981,3919,3983,3983,3920,3917,3983,3919,3981,[2765,3985],2766,2830,2832,2765,[2766,3854],[2767,4047],[2829,4048],[2832,3855],2831,[2767,3789],[2829,3725],3917,3917,3919,3920,3918,3918,3983,3983,3981,[2768,3985],2768,2831,2829,[2767,3854],[2768,4046],[2765,4048],[2831,4045],[2768,4049],[2831,694],[2832,695],2767,2765,[2829,3790],[2832,3725],[2768,3729],[2829,3980],3920,3920,3983,3981,3981,3917,3919,3918,3917,3983,3918,3918,3919,[2768,4048],[2765,4049],2765,2768,[2832,3980],3920,3981,3918,3919,3920,3983,3919,[2826,4045],[2823,4046],[2823,4047],[2761,4048],[2826,4048],3920,3918,3919,3920,3919,3918,3920,3917,3920,3920,3983,3981,3918,3981,3918,3919,3920,3919,[2760,4049],2762,[2823,3916],3917,3920,3981,[3919,9613],[3918,9614],[3448,9611],3960,3446,4025,4026,3447,3446,3577,4024,3960,3446,3577,3448,3448,4024,4024,3578,4026,4025,3575,4026,4023,3447,3574,3446,3960,4026,4026,3577,4026,3575,3962,3448,3448,4025,4024,4026,3577,4025,3448,4025,3448,3576,4026,4024,3577,4025,4025,3578,3961,3577,4024,4025,3447,3447,3578,4025,3961,3961,4024,3447,4025,3962,3448,4025,3448,4026,4024,3448,3446,3448,3959,4026,4025,3959,4024,3448,3577,4023,3510,4026,4026,3704,3705,3962,3448,3578,4024,3578,3448,3578,3447,3578,4025,4026,4024,3448,3577,4023,4023,4024,3446,3447,3446,3511,4024,4024,3574,3578,4026,3960,3578,4023,4023,3577,4023,4024,4025,3577,3446,3574,3448,3577,3447,3448,3577,3447,3447,4026,4026,3446,3574,3578,3446,4025,4026,3578,4026,3959,3961,3510,3447,3446,3448,3448,4026,4025,3574,3577,3578,3447,3510,3447,4023,3448,3574,3447,3578,3446,3512,3446,4026,4023,3448,4024,[4024,9727],[3448,9728],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9366,9367,9368,9369,0,0,0,0,0,0,0,0,0,9460,9461,[3163,9462],[3227,9463],[3228,9465],9466,9556,[4289,3165,9557],[4289,3097],[4289,3289],3162,3228,3227,3164,3228,3164,3227,3163,3163,[4289,3037],4289,[4289,3097],3162,3228,3227,3228,3164,3228,[4289,3165],4288,[4289,3097],3162,3163,3163,3163,3227,3164,3163,3227,3227,3163,3164,3227,3163,3227,3163,[4289,3037],4289,4289,[4289,3097],3162,3163,[3161,9658],[4289,3290,9659],[10042,9560],10043,9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2819,2754,2496,2560,2752,2625,2752,2496,2497,2819,2816,2818,2817,2755,2755,2496,2754,2496,2754,2816,2755,2753,2755,2755,2755,2754,2496,2755,[2818,9586],[2819,9587],[2819,9584],2560,2497,2560,2496,2560,2496,2560,2560,2818,2560,2496,2755,2818,2754,2560,2560,2819,2496,2497,2560,2496,2496,2560,2560,2561,2497,2496,2561,2497,2755,2819,2755,2560,2560,2818,2496,2561,2819,2819,2754,2496,2754,2818,2561,2496,2755,2819,2755,2497,2755,2496,2819,2561,2496,2818,2819,2818,2818,2496,2560,2818,2818,2497,2755,2496,2819,2497,2818,2560,2688,2689,2496,2497,2496,2561,2496,2755,2560,2497,2561,2561,2561,2624,2625,2754,2818,[2497,252],[2560,253],[2561,254],2561,2496,[2497,9487],[2688,9580],[2561,9581],2688,2689,2754,2818,2752,2753,2752,2753,2818,2497,2560,2755,2560,2561,2561,[2496,3853],3918,3920,3983,3983,3919,3920,3920,3918,3917,[3920,9517],[3917,9518],3983,[2830,3793],[2831,3789],[2830,3792],[2767,3724],[2768,3729],2831,2830,[2767,4044],[2829,4046],[2830,3856],[2768,9511],[2829,3789,9512],[2767,3728],3918,3920,3983,[2768,3725],[2768,3728],[2768,3791],2831,2768,2767,[2832,3789],[2767,3727],[2829,3726],[2768,3725],3983,3981,3917,3920,3983,[2831,3727],[2766,3792],2832,2766,[2830,4044],[2831,4047,9517],[2766,4047,9518],[2765,3855],2767,2767,2829,[2830,630],[2766,631],[2765,3854],[2768,4046],[2766,4048],[2768,4047],[2832,3855],2765,2831,2766,[2832,3789],[2832,3727],[2766,3729],2766,2767,2830,2831,2832,2767,2766,2832,2829,2830,[2766,3724],3919,3918,3981,3917,3919,3917,3920,3917,3919,3981,3919,3983,3917,[2832,3856],2767,2831,2831,2832,2831,2765,2831,2832,[2831,3724],3918,3918,3920,3918,3919,3919,3983,3918,3917,3920,3919,[2768,3856],2829,[2766,3790],[2765,3791],2765,2766,2766,2767,2765,2832,[2766,3790],[2766,3726],[2765,3727],3981,3983,3983,3981,3917,3919,3981,3917,3917,3918,3919,3920,3983,3918,3919,[2829,4045],[2831,4049],2767,2831,2766,[2765,2631],[2760,3854],[2759,4045],[2825,4046],3920,[2759,3985],[2823,3854],3918,3983,[2762,3729],2823,2826,2825,2762,[2759,3980],3918,3983,3918,3920,3919,3919,3919,3920,3920,3983,3919,3919,3981,3983,[2761,3856],[2825,3853],[2762,3856],2824,[2826,3789],3918,3919,3920,3920,[3919,9709],[3983,9710],[3446,9611],4024,4025,4024,3510,3961,3960,3447,3448,3962,3959,3513,3447,4024,3577,3448,3448,4023,4024,3959,3510,3962,3962,4026,3578,3577,4025,3640,3641,3448,4023,3960,3578,3578,3575,[4024,429],[3578,358],[3448,486],[4024,422],[3578,430],3578,3447,3578,3448,3578,3447,4025,4023,3959,3447,3448,3446,4023,3446,4026,4026,3447,3446,3448,4025,3447,3513,3510,3575,4024,3576,4025,4024,3577,3448,3511,3510,3447,3577,3577,3447,3574,3578,3448,3448,3447,4023,3578,3449,3574,3512,4024,4025,4026,3962,3575,3448,3961,3578,4024,3446,4024,3446,3577,3447,4023,4025,3961,4025,3446,3578,4024,3578,3448,3447,3578,3578,3510,3577,4024,4026,4025,3577,3962,3447,3448,3577,3448,3640,3641,3575,4025,3577,4024,4025,3511,4023,3448,3446,3961,4024,3448,3446,3512,3959,4024,3962,3578,4026,3446,4026,3513,3512,4025,4025,3576,3448,3448,3447,3448,3446,4026,4025,3577,4026,3574,4025,3577,4026,3575,[3446,9823],[4026,9824],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9460,9461,[3227,9462],[3164,9463],[3228,9464],[3164,9465],9563,0,0,0,0,0,0,0,0,9556,[3227,9557],3163,3163,3227,[3163,9562],[3228,9557],[4289,3229],4289,4289,[4289,3097],3162,3227,3228,3163,3163,3163,3227,3227,[4289,3101],4289,4289,[4289,3224],3164,3228,3164,3164,3163,3225,[4289,3035],4289,[4289,3224],3228,3227,3164,3227,3163,3164,3227,3163,3161,[4289,3289],3162,3227,3227,3163,[4289,3101],4289,4289,4289,[4289,3288],[4289,3289],[4289,3099,9754],[4289,9755],[10138,9752],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2818,2561,2496,2817,2752,2816,2752,2755,2816,2624,2625,2754,2561,2819,2688,2624,2688,2819,2625,2817,2496,2497,2755,2819,2754,2496,2624,2625,[2819,9682],[2754,9683],[2754,9680,9294],2497,2497,2497,2497,2561,2497,2560,2497,2496,2819,2497,2497,2819,2561,2754,2496,2819,2755,2561,2819,2560,2561,2561,2561,2496,2561,2560,2561,2496,2561,2496,2496,2819,2496,2496,2560,2560,2561,2818,2818,2560,2818,2496,2496,2561,2497,2624,2625,2561,2754,2496,2755,2560,2497,2561,2496,2496,2560,2818,2755,2497,2755,2755,2754,2819,2818,2560,2624,2625,2752,2753,2819,2754,2496,2496,2560,2496,2560,2497,2497,2561,2624,2688,2689,2818,2754,2560,2497,2496,2560,2497,[2561,9583],[2560,9676],[2624,9677],2625,2753,2755,2755,2754,2755,2561,2819,2561,2561,2560,2755,2755,2497,2560,2560,[2560,4044],[2560,4045],3918,3983,3918,3919,3981,3918,3919,[3917,9613],[3917,9614],[3917,9515],[2831,3921],[2831,4044],[2831,3855],[2829,4044],[2768,3856],2766,2830,2766,2767,[2832,9514],[2768,3790,9607],[3920,9608],3981,3981,3918,[3983,566],[3920,567],3919,[2829,3855],2766,2830,2765,[2829,3853],3920,3920,3919,3917,3917,3918,3920,3918,3981,3983,[2765,3725],[2767,3729],2829,[2832,9613],[2768,9614],[2766,9515],2829,[2829,3724],[2767,3792],[2767,694],[2765,695],2831,2832,2832,2832,2765,[2830,3724],[2831,3726],[2768,3791],[2768,3980],3919,[2765,3856],2768,2829,2829,2767,2765,2767,2829,2767,2830,2767,[2829,4044],3920,3920,3981,3920,3983,3917,3981,3917,3920,3919,3917,3920,[2831,3985],2829,2765,2766,2765,2765,2767,2832,2766,2830,[2765,3980],3919,3919,3920,3981,3917,3919,3918,3918,3918,3918,[2829,3985],2829,[2830,3789],3920,[2830,3985],[2829,3724],[2832,3727],[2768,3727],[2767,3728],[2830,3729],2829,[2830,3788],3919,3981,3981,3919,3981,3917,3917,3983,3920,3981,3918,3917,3919,3918,3919,3917,[2768,3793],2829,2768,2832,2768,[2766,3790],[2760,3792],2825,2824,2760,[2762,4044],[2824,3855],[2759,3724],3920,3919,[2759,3856],2826,2826,2826,2826,[2762,3853],3920,3918,3983,3981,3919,3983,3919,3917,3983,3917,3981,3917,3920,3917,[2761,3727],[2823,3791],2762,[2760,3724],3981,3919,3919,3983,3981,[3918,9613],[3981,9614],[3960,9611],3447,3448,4023,3446,4023,3575,4023,3577,4026,3447,3449,4024,3447,3578,4024,3448,3962,3574,3576,3512,3446,3578,4024,3446,3960,4024,3704,3705,3446,3447,3511,3577,3959,4023,[3511,359],409,409,409,[4025,421],4026,3446,3578,3962,3577,4025,4023,3448,3576,3960,3578,4023,3577,3576,4025,3578,3448,4026,3448,3448,4023,4024,3510,3577,4026,3513,4026,4025,4025,3574,3578,3446,4025,3962,4025,3446,3448,3578,3510,3576,3512,4026,3575,3448,4025,3448,3577,3577,3576,3577,3446,4026,4023,4024,4023,3448,4025,3578,3962,3446,3959,4026,4026,3576,4024,3446,4025,3510,4023,3578,3511,3446,3578,[4025,429],[3446,486],[3510,486],[4025,422],[3448,430],3512,3578,3577,3960,3446,3704,3705,4025,4024,4023,4024,3512,4023,3961,3961,4026,3446,4023,3577,3446,3446,4026,3448,3446,4023,4023,4023,4025,3446,3446,4024,3574,3578,3447,4023,3447,3447,4026,3448,3447,3447,3448,4026,3578,4026,3960,[3447,9823],[3576,9919],9920,9725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9366,9367,9368,9369,0,0,0,0,9366,9367,9368,9369,9366,9367,9368,9369,0,0,0,0,0,0,0,0,9556,[3227,9557],3228,3163,3164,[3228,9754],[3163,9755],[9560,9366],9369,0,0,0,0,0,9559,[3228,9652],[3227,9653],3227,3228,3228,3164,3164,3225,[4289,2973],4289,4384,[4289,3224],3164,3163,3227,3163,3227,3228,3227,[4289,3165],4384,[4289,3033],3226,3163,3163,3164,3227,3163,3163,[4289,3229],4289,[4289,3288],3162,3163,3227,3164,3163,3227,3227,3164,[4289,3037],4289,[4289,3097],3162,3228,3227,[4289,3165],4289,4289,4289,4289,4289,4289,[4289,9562],9466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2753,2752,2561,2818,2689,2560,2755,2496,2496,2755,2624,2817,2497,2624,2755,2754,2754,2816,2561,2689,2755,2560,2560,2819,2497,2818,2688,2689,2496,[2755,9490],[2819,9390],[2754,9491],2561,2496,2561,2560,2496,2561,2497,2497,2818,2819,2497,2754,2497,2561,2624,2625,2497,2818,2755,2497,2754,2560,2497,2755,2496,2496,2818,2561,2755,2624,2625,2755,2755,2560,2819,2496,2754,2561,2496,2496,2755,2561,2497,2561,2497,2688,2689,2560,2561,2755,2496,2497,2561,2560,2754,2561,2496,2497,2754,2561,2561,2560,2560,2561,2561,2497,2688,2689,2561,2496,2754,2496,2818,2497,2496,2819,2561,2496,2560,2624,2625,2752,2753,2755,2755,2496,2561,2561,2561,2496,[2561,9583],[2496,9772],[2688,9773],2689,2818,2819,2560,2754,2818,2561,2561,2819,2754,2819,2755,2561,2497,2819,2754,2819,2755,[2560,4044],3983,3981,3920,3981,3981,3918,[3983,9709],[3918,9710],[3917,9611],[2768,3793],[2766,3724],[2831,3791],2829,2767,[2830,3789],[2829,3725],[2831,3726],[2832,3727],[2768,3726,9610],[3919,9703],[3917,9704],3981,3981,3919,[2832,4046,630],[2831,4045,631],[2830,4049],2829,2831,[2765,3790],[2831,3729],2830,[2832,3854],3920,3917,3981,3919,3983,3918,3919,3983,3917,3920,3983,[2829,3727],[2765,3725,9709],[2832,3728,9710],[2829,3726,9611],[2831,3727],3917,3983,[2768,3727],[2767,3727],[2768,3729],2768,[2766,3789],[2767,3725],[2768,3727],3919,3983,3983,3918,3917,[2832,3792],2832,2829,2829,2767,2832,2767,2829,[2832,3790],[2765,3725],[2830,3792],2830,[2831,3854],3920,3919,3918,3981,3920,3918,3983,3983,3917,3983,3919,[2830,3793],2832,2766,2768,2829,2829,2831,2829,2831,[2829,3724],3981,3981,3920,3981,3981,3981,3981,3918,3917,3981,3919,[2766,4049],2765,[2829,3788],3920,3983,3919,3918,3983,3917,[2829,3793],2766,[2767,3852],3983,3919,3920,3919,3983,3919,3917,3983,3981,3918,3983,3917,3981,3981,3981,3917,[2831,3921],2830,[2765,566],[2766,3790,567],[2765,3726],3920,3983,[2825,3727],[2762,3791],2761,2826,2824,[2759,3980],3919,[2823,4049],2826,2824,2760,2760,2825,2762,[2824,3980],3981,3918,3981,3920,3983,3981,3917,3981,3919,3919,3920,3983,3919,[2823,4045],[2761,3855],2762,[2823,3980],3981,3920,3917,3917,3919,[3983,9709],[3983,9710],[4023,9707],3578,3447,4023,3447,3446,4025,3448,3512,3578,3446,3578,3578,4024,3961,4023,4023,3578,4026,3959,3512,3448,3447,3448,3961,3961,4026,4023,3446,4024,3447,3447,3961,4025,3577,[4025,423],409,409,409,[3446,485],[4023,486],[4025,486],[3577,422],[4023,430],4024,3447,3577,4024,4023,4024,3448,3575,3448,3961,3512,3577,4025,4025,3959,3447,3447,4025,4024,3578,3446,4023,4023,4023,3960,4026,3961,3448,3512,3960,4025,3448,3446,3961,4024,3446,3446,4026,4025,4026,4023,3447,3574,3577,4026,3447,3961,4024,3576,4026,3575,3960,3577,3578,3578,4023,3447,4026,3447,3576,4024,4025,3448,4023,3578,3576,[3577,429],[3511,486],[4023,486],[3577,487],409,409,409,[3446,421],4024,4026,3446,3512,4023,4024,4023,3448,3511,4026,4026,3511,3447,3446,3446,3960,3446,4023,4024,3575,3577,3577,3448,4026,3578,4026,4025,3574,4023,3446,4025,3448,3446,3578,3446,3448,3575,3512,3511,3510,4023,3447,4023,3447,4023,[3448,9631],[4025,9632],[10015,9533],10016,9821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9366,9369,0,0,0,9460,9461,[3227,9462],[3163,9463],[3228,9464],[3164,9465],9466,9366,9369,9461,[3163,9462],[3228,9463],[3163,9464],[3228,9465],[3163,9462],[3227,9463],[3227,9464],[3164,9465,9460],9563,0,0,0,0,0,0,9559,[4289,3290,9652],[3162,9653],3163,3163,3163,3163,[3163,9562],[3163,9462],[3163,9465],9466,0,0,0,0,9461,[3227,9557],3164,3164,3164,3163,3164,3163,3228,[4289,3229],4289,4289,[4289,3097],[4289,3289],3162,3228,3163,3227,3228,3164,3225,[4289,2969],3226,3163,3163,3228,3228,3227,3227,3228,[4289,3229],4289,4289,[4289,3097],3162,3164,3227,3164,3228,3164,3228,[4289,3165],4289,4289,[4289,3288],3162,3164,[4289,3229],4289,4384,4289,4289,4289,4289,4289,[4289,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2754,2752,2496,2561,2755,2496,2689,2497,2496,2816,2624,2688,2688,2755,2561,2689,2689,2560,2816,2755,2819,2754,2497,2560,2755,2819,2624,2625,2818,2755,2497,[2755,9683],[2496,9488],2560,2497,2561,2497,2561,2754,2561,2560,2754,2755,2561,2819,2819,2688,2689,2497,2561,2560,2561,2754,2561,2561,[2497,2627],2560,2818,2497,2560,2560,2688,2689,2754,2497,2496,2497,2560,2497,2818,2755,[2561,2627],2754,2819,2561,2497,2561,2752,2753,2561,2560,2560,2497,2560,2497,2561,2754,2496,2560,2496,2496,2560,2496,2497,2560,2497,2496,2818,2752,2753,2496,2819,[2497,2626],2755,2560,2561,2819,2819,2819,2624,2625,2688,2689,2753,2624,2625,2496,2561,2560,2497,2561,2560,[2496,9679],9868,[2752,9869],[2753,9773],2496,2754,2819,2818,2496,2818,2560,2819,2497,2496,2819,2561,2818,2561,2561,2754,2560,2560,[2560,3980],3983,3918,3919,3919,3917,[3919,9805],[3920,9806],[3981,9611],[2829,3921],[2765,3853],[2832,3855],2768,[2831,3790],3917,3917,3983,3981,[3981,9610],[3917,9799],[3918,9800],3919,3920,[2765,3985],[2829,694],[2831,695],2831,2831,[2831,3790],3981,[2832,3985],2765,2766,[2768,3854],3920,3918,3917,3983,3918,3983,3920,3917,3919,3981,3917,[3919,9613],[3920,9614],[3918,9611],3981,3919,3920,3919,3919,[2832,4049],2832,[2830,3980],3919,3981,3918,3918,3920,3920,3920,3920,[2768,3725],[2830,3726],[2766,3727],[2829,3728],[2766,3792],2832,[2830,3724],3983,3981,3983,[2766,3792],2765,[2830,4044],3920,3917,3917,3920,3918,3920,3919,3917,3918,3917,[2766,3857],2832,2767,2766,2830,2830,2830,2832,[2831,3789],3920,3981,3919,3917,3918,3920,3983,3917,3919,3919,[2768,4048],[2831,4049],2832,2765,[2768,3916],3917,3983,3920,3917,3981,3917,[2829,3857],2767,[2831,3916],3919,3918,3981,3919,3918,3917,3919,3918,3917,3918,3917,3918,3983,3918,3919,[2829,4047],[2766,3855],2829,[2829,630],[2832,3854,631],3920,3918,3981,3983,3983,[2825,3727],[2825,3729],2824,[2826,3854],[2761,3855],2762,2760,2823,2761,2760,2761,[2760,3790],3917,3981,3917,3917,3919,3919,3981,3917,3983,3920,3917,3918,3981,3983,[2826,3791],2824,[2824,3790],3981,3918,3917,3983,3917,3981,3920,[3983,9517],[3575,9421],[4024,9422],4024,4026,4024,3513,3448,3446,4026,4023,4026,3447,4023,3511,4025,3578,4025,3960,4025,4026,4023,4023,3962,3512,3446,4023,3447,4025,3576,3959,4025,[3961,429],[4026,358],[3447,486],[3447,486],[4025,487],409,409,409,409,409,409,409,[3962,357],3449,4024,4025,3576,3447,3447,4026,3448,3447,4023,3962,4024,4023,3448,3578,3447,3578,3446,3578,3447,3448,4025,3577,4026,3576,4026,4025,4023,4026,3446,3448,3448,4023,4025,3447,3447,4023,3574,4026,3447,4023,3577,4024,3448,4026,4025,3448,3448,3447,3448,4024,4024,3447,4023,4025,3448,3959,3578,3960,4025,3512,4025,4024,3448,4024,4026,[4025,359],409,409,409,409,409,409,[4026,485],[3578,410],[3511,411],[3576,412],[3512,486],[4025,422],[4024,430],4026,3577,3578,3446,3447,3447,4026,3446,3578,3447,3446,4023,4025,3447,4026,4026,3959,3448,4023,4026,3446,4023,3578,4024,3446,4025,3577,3446,3447,3962,4023,3959,3446,3578,3962,3448,3577,4026,3511,[3576,9727],[3577,9728],[10111,9629],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9460,9461,[3227,9462],[3227,9465],9466,9366,9369,9556,[3227,9557],3227,3227,3164,3164,[3163,9562],[3228,9462],[3227,9465],[3228,9557],3163,3163,3228,3164,3228,3228,3228,[3163,9556],[3227,9562,9557],9466,0,0,0,0,0,9556,[4289,9557],[4289,3032],3227,3164,3227,3227,3228,3164,3228,[3227,9562],9466,9366,9369,9461,[3163,9557],3163,3228,3227,3163,3164,3164,3164,3227,3225,[4289,3036],4289,4289,4289,[4289,3288],3162,3164,3228,3228,3227,3227,3164,3228,3228,3163,3163,3227,3228,3228,3163,3225,[4289,3035],4289,4289,[4289,3288],3162,3163,3163,3228,3164,3227,3225,[4289,2973],4289,4289,[4289,3098],[4289,3292],[4289,3293],4289,4289,4289,[4289,3033],[4289,2973],4289,4289,4289,[4289,9562],9466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2561,2818,2818,2624,2755,2819,2496,2819,2689,2818,2497,2816,2817,2818,2754,2560,2689,2561,2624,2689,2497,2560,2754,2818,2497,2560,2688,2689,2560,2497,[2497,9778],[2755,9779],[2561,9584],2496,2496,2497,2497,2496,2560,2561,2561,2818,2497,2497,2497,2755,2752,2753,2561,2755,2818,2496,2496,2496,2496,2561,2497,2755,2561,2754,2818,2752,2753,2496,2754,2755,2497,2755,2561,2561,2561,2497,2496,2754,2560,2561,2496,2560,2497,2497,2560,2560,2496,2496,2496,2496,2561,2497,2497,2497,2496,2497,2496,2561,2496,2496,2560,2496,2496,2496,2497,2818,2755,2818,2560,2560,2561,2819,2818,2688,2689,2752,2753,2819,2688,2689,2755,2560,2561,2496,2560,2560,[2497,9775],[2624,9964],9965,[2560,9580],[2496,9581],2755,2560,2819,2819,2755,2755,2754,2755,2819,2560,2755,2818,2754,2561,2755,2496,[2496,3789],3981,3917,3983,3919,3918,[3981,9805],[3918,9901],9902,[3918,9707],[2830,3985],2768,2768,[2831,3724],3917,3919,3917,3983,3981,[3981,9706],9895,[3983,9896],[2767,3793,9800],[2829,3853],[2766,3855],2830,[2832,3789],[2766,3725],[2768,3792],[2830,3854],3981,3983,[2830,3726],[2830,3791],2766,[2832,4044],3920,3981,3983,3918,3918,3919,3983,3920,3917,3919,[3981,9709],[3920,9710],[3920,9611],3981,3917,3981,3919,[2765,4049],2767,[2766,3789],3920,3918,3983,3919,3917,3983,3981,3983,3919,3917,3920,3918,3983,3920,[2767,3725],3920,3983,3983,3919,3983,[2830,3792],2765,[2830,4044],[2830,4048],3920,3917,3920,3983,3918,3918,3920,3918,[2768,3921],2765,2765,2767,2767,2832,2832,[2766,3789],3919,3920,3917,3983,3981,3919,3920,3920,3919,[2766,4048],[2832,3855],2765,2767,2767,[2831,3724],3918,3918,3983,3920,3918,3983,3981,[2768,3921],2766,[2766,3980],3981,3918,3981,3983,3919,3981,3917,3920,3981,3981,3919,[2765,4047,566],[2767,4045,567],[2832,4047],[2766,3855],2832,2767,2765,[2830,694],[2765,695],[2830,3980],3983,3917,3920,3920,3981,3983,[2825,3791],2824,2824,2824,2761,2761,2825,2825,[2761,3790],3920,3917,3918,3920,3920,3918,3919,3920,3917,3917,3983,3983,3981,3918,3919,[2824,4049],2759,[2761,3980],3920,3918,3917,3981,3983,3919,3918,3919,[3918,9517],[3511,9518],3510,[3448,429],[3578,358],[4025,486],[3448,422],[4025,430],3447,3447,3574,3575,3575,3446,4025,3511,3446,4025,4026,3448,3575,3578,3447,3447,4024,3448,3577,3576,3574,4025,3576,[4024,359],409,601,409,409,409,409,409,409,409,353,[4024,293],3448,4026,4026,3446,3511,4023,4025,4026,3577,3446,3446,3448,3959,4026,3446,3448,3447,3577,3577,3512,3962,4026,4023,3446,3960,4026,3446,4026,3577,3446,4023,4025,3960,3577,4024,3575,3574,4026,3577,3448,3578,3577,4025,4024,3959,4025,4023,3578,3448,4024,3446,3447,3577,3962,4023,3446,3447,3578,3961,4026,4025,3512,4025,4024,3578,3574,3512,[3577,423],409,409,409,409,409,409,409,409,409,409,409,409,[4025,357],4025,4025,3446,3510,3961,3446,3578,4025,4026,3448,3577,3449,3959,3512,4026,3512,4025,3447,3447,3578,3578,3959,3448,3446,3578,3575,4024,4025,3448,3961,3962,4023,3578,3959,3512,3959,3446,3448,3576,[4025,9823],[3448,9824],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9556,[3227,9557],3164,3163,[3227,9562],[3163,9462],[3164,9465],[3228,9557],3227,3228,3228,3227,3163,3228,3228,3163,3228,3164,3228,3228,3164,3228,3228,[3228,9559],[3228,9652],[3227,9653],[3228,9562],9563,9366,9367,9369,9556,[4289,9557],4289,[4289,3096],3227,3228,3227,3163,3228,3164,3228,3228,[3227,9562],[3227,9462],[3227,9465],[3164,9557],3228,3227,3164,3227,3227,3227,3164,3164,3164,3163,3225,[4289,2969],[4289,3035],4289,4289,[4289,3098],[4289,3289],3162,3227,3164,3228,3164,3164,3164,3163,3163,3228,3164,3163,3227,3228,3225,[4289,2973],4289,4289,[4289,3224],3228,3164,3163,3227,3228,3163,3225,[4289,3035],4289,4289,4289,4289,4289,4289,4289,[4289,3224],[4289,3229],4289,4289,[4289,3034],[4289,2969],[3226,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2496,2819,2625,2624,2755,2818,2496,2819,2688,2755,2561,2496,2689,2752,2688,2752,2496,2688,2561,2561,2754,2560,2497,2560,2818,2497,2752,2753,2755,[2819,9778],[2755,9874],9875,[2561,9680],2496,2560,2560,2497,2497,2561,2561,2561,2497,2496,2560,2496,2496,2754,2496,2755,2561,2496,2560,2497,2497,2560,2497,2561,2560,2754,2755,2561,2755,2754,2561,2497,2561,2818,2497,2497,2818,2819,2497,2560,2560,2755,2819,2496,2560,2496,2497,2496,2496,2497,2497,2561,2497,2560,2497,2561,2497,2560,2561,2497,2560,2496,[2560,9294],[2497,9295],[2496,9296],[2496,9297],[2561,9294],[2755,9295],[2496,9296],[2561,9297],2561,2818,2496,2496,2496,2624,2625,2753,2560,2497,2754,2752,2753,2754,2496,2561,2560,2497,2497,2560,2688,[2689,10061,9487],[2561,9676],[2755,9677],2496,2496,2819,2496,2560,2755,2818,2818,2497,2819,2818,2496,2497,2561,2818,2560,[2754,3788],3981,3920,3920,3918,[3917,9613],[3983,9614],9997,[3981,9998],[3919,9803,566],[2830,3855,567],2766,[2768,3789],3983,3917,3983,3981,3917,3918,[3983,9802],[3919,9991],9992,[2765,3857,9896],[2768,9800],2765,[2831,3790],3981,3981,3983,[2829,3729],[2831,3980],3981,3920,[2768,3985],2765,2832,[2766,3980],3918,3917,3920,3981,3919,3981,3920,3919,3917,[3919,9805],[3920,9806],[3981,9611],3918,3920,3919,[2768,3855],2767,2831,[2765,3980],3983,3981,3983,3917,3920,3918,3918,3918,3917,3981,3981,3918,3981,3981,3918,3919,3917,3918,3983,3920,3983,[2832,3791],2831,2767,[2768,4044],3920,3981,[3983,566],[3918,567],3983,3917,3917,[2829,3985],2768,2829,[2768,566],[2765,567],2831,2829,[2831,3980],3983,3981,3981,3981,3920,[2832,3985],[2765,3854],[2832,4046],[2765,3856],2832,2830,[2830,3724],[2766,3728],[2830,3791],[2829,3980],3918,3981,3917,3917,3983,3919,3920,[2831,3985],2765,[2767,3980],3917,3920,3981,3920,3920,3917,3981,3981,3917,3919,[2831,4049],[2765,630],[2766,631],2829,2829,2768,2831,2765,2832,[2765,3724],3981,3981,3919,3918,3917,3919,3919,[2823,3855],[2759,3790],[2760,3729],2760,2759,2824,2760,2826,[2762,3854],[2824,4045],[2826,4046],[2762,4045],[2762,4046],[2759,4047],[2760,4048],[2826,4049],[2762,4044],[2759,4048],3920,3919,3920,3983,3983,[2823,3985],2824,[2760,3789],3983,3983,3917,3919,3917,3917,3920,3981,3981,[3981,9613],[3919,9614],[4026,9515],[3446,423],409,409,409,[4026,357],4025,3448,3577,3512,3511,4023,3574,4024,3574,3574,3578,4026,3578,3962,4025,3446,4024,3577,4023,3446,4024,3959,4023,[4026,423],409,409,409,409,409,289,409,409,409,409,[4024,357],3446,3577,4025,3511,4023,3446,4023,4024,4025,3448,4024,4026,3574,3574,3960,3510,4024,3961,3446,4024,4025,3446,3578,3959,3447,3578,4024,3961,3448,4024,3447,3577,4024,4025,3447,3448,3448,3577,4026,3512,4025,3448,3574,4023,3578,4025,4023,3512,3447,3447,3576,3446,4025,3448,3512,3512,3960,4024,4023,3510,4024,3578,3446,4026,[4024,429],[3577,358],[3448,486],[4023,487],409,409,409,409,409,289,409,409,[3578,293],[3577,295],409,409,[4025,421],4023,3510,3510,3446,3446,3577,4024,4023,3447,3448,3448,4026,3960,3578,3447,3960,3446,4024,3578,3577,3447,3578,3574,3448,3577,3447,3577,3447,4024,4023,[3511,9850],[4024,9942],[3961,9943],[3512,9845],3446,4026,4026,3577,[3960,9823],[4025,9919],9920,9725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9850,9942,9943,9944,9945,9845,0,0,0,0,0,0,0,0,0,0,0,0,9559,[3163,9652],[3228,9653],3227,3164,3228,3227,3227,3164,3228,3164,3164,3228,3163,3228,3163,3164,3227,3164,3228,3228,3227,3163,3227,[3164,9655],[3164,9748],[3164,9749],3163,[3227,9562],[3227,9462],[3164,9463],[3227,9465],[3164,9557],[4289,2973],4289,[4289,3160],3227,3227,3163,3163,3163,3163,3227,3228,3227,3227,3227,3228,3228,3164,3228,3227,3163,3163,3227,3163,3163,3227,3228,3163,3225,[4289,2969],[4289,2973],4289,4289,[4289,3032],3164,3163,3227,3227,3163,3228,3161,[4289,3289],3162,3227,3228,3228,3227,3164,[4289,3229],4289,[4289,3034],3226,3227,3164,3163,3163,3164,3164,3228,3225,[4289,2969],[4289,3035],4289,4289,4289,4289,[4289,3033],3226,3225,[4289,2970],[4289,2971],3226,3228,[3163,9754],[3228,9755],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2625,2817,2497,2624,2755,2689,2560,2689,2497,2817,2754,2497,2818,2816,2560,2624,2752,2752,2624,2818,2496,2755,2497,2819,2818,2496,2819,2496,[2819,9586],[2497,9587],9970,[2497,9971],[2497,9776],2561,2497,2497,2497,2497,2497,2818,[2754,2626],2818,2561,2497,2560,2497,2496,2496,2560,2560,2560,2818,2819,2497,2497,2561,2561,2497,2754,2561,2497,2561,2561,2754,2561,2818,2560,2818,2754,2755,2819,2560,2755,2496,2560,2560,2561,2496,2560,2497,2497,2496,2561,2496,2497,2497,2496,2561,2561,2497,2561,2561,2496,2561,[2561,9389],[2497,9390],[2560,9391],[2560,9392],[2561,9393],[2560,9390],[2560,9391],[2560,9392],[2496,9393],[2819,9394],2754,2496,2818,2497,2688,2689,2561,2560,2754,2818,2497,2755,2497,2496,2561,2496,2560,2497,2560,2752,[2753,9583],[2497,9580],[2819,9581],2818,2497,2497,2755,2496,2496,2818,2755,2819,2560,2561,2754,2754,2754,2561,2560,[2561,3916],3920,3917,3981,3981,[3983,9709],[3918,9710],[3920,10093,9515],3919,[2831,3855,630],[2831,631],[2767,3789],3917,3918,3920,3920,3981,3981,3919,3917,3918,[3983,10088],9992,[2768,9896],[2829,3724,9800],3983,3917,3919,3919,3983,3919,3919,3983,3983,[2829,3792],2831,[2830,3853],[3920,9805],[3919,9897],[3920,9898],[3981,9899],[3920,9900],[3981,9897],[3983,9898],[3918,9899],[3981,9900],[3920,9901],9902,[3918,9707],3919,[2829,4048],[2767,4049],2832,2831,2766,[2766,3853],[2766,4048],3920,3918,3917,3918,3918,3918,3919,3917,3920,3981,3917,3981,3918,3917,3919,3983,3983,3918,3917,3918,3983,[2766,3728],[2767,3729],2829,[2829,3853],[2767,4046],[2766,4045,630],[2768,4046,631],[2829,4047],[2768,4048],[2767,4047],[2829,4049],2829,2832,[2765,630],[2766,631],2767,[2767,3790],3981,3917,3918,3981,3917,3918,3983,[2830,3729],2767,2830,[2832,3724],[2768,3791],[2767,3980],3917,3983,3983,3983,3918,3920,3920,3983,3918,3981,[2766,3793],2831,[2766,4044],3920,3920,3981,3917,3981,3918,3917,3920,3919,[2765,4049],2829,[2829,694],[2768,695],2831,2765,2766,2830,2767,[2768,3790],3981,3919,3983,3983,3981,3918,3917,[2826,3985],[2825,3789],3983,3983,[2823,3728],[2762,3791],2826,2760,2826,2824,2760,2825,2824,2826,2823,2761,2761,2825,2759,[2824,3854],[2824,3855],[2824,3854],[2761,4045],[2824,4045],[2824,4049],2759,[2759,3980],3918,3919,3919,3920,3919,3919,3983,3917,3981,[3981,9709],[3983,9710],[3446,486,9611],[3448,487],409,409,409,[3577,421],3448,4023,4025,3447,3448,3448,4023,3577,3511,3578,3447,3578,4025,3448,3576,3578,3447,4023,3575,3447,3511,3959,4026,3962,[3962,295],409,409,409,409,409,409,409,409,[3447,293],4024,4024,3577,3576,4025,3577,4025,3448,4026,3961,4024,3578,3578,3446,4023,3578,3510,3577,3960,4026,3962,3959,4023,3578,4026,4026,3577,4025,4025,3510,3577,3448,3446,3577,3446,3446,4024,3446,3512,4023,3446,3448,3578,4024,4026,3961,4025,3577,3959,3446,4024,3962,4025,4025,4025,4025,4025,4026,3962,4023,3513,4024,3448,4025,3510,[3446,359],409,409,409,289,409,409,409,409,409,409,409,[4026,357],[4023,359],409,409,[3446,485],[3511,486],[3448,422],[3446,430],3448,4024,3449,3960,4026,3575,3578,3578,4026,3577,3578,3577,4026,4023,4024,3510,4024,3446,[3448,9850],[3961,9942],[3512,9943],[3446,9944],[3512,9945],[4026,9942],[4026,9943],[4025,9944],[3512,9945],[3510,9946],10038,10039,[3510,9941],[3447,9845],3577,3448,[3961,9727],[3574,9728],[10015,9533],10016,9821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9850,9942,9943,9845,0,0,0,0,0,0,0,0,0,9850,9946,10038,10039,10040,10041,9941,9944,9945,9845,0,0,0,0,9850,9942,9943,9845,9460,9461,[3227,9557],3228,3163,3163,3228,3228,3228,3228,3164,3163,3227,3227,3227,3163,3228,3227,3163,3164,3163,3228,3164,3227,[3163,9460],[3227,9461],[3228,9557],3164,3228,3164,3163,3164,3228,3164,[4289,3037],4289,[4289,3098],3162,3163,3164,3164,3227,3164,3227,3227,3227,3164,3228,3164,3228,3228,3163,3163,3227,3164,3227,3228,3163,3163,3164,3227,3163,3227,3225,[4289,3035],4289,[4289,3160],3164,3163,3227,3164,3164,3161,[4289,3293],4289,[4289,3032],3163,3164,3163,3228,3227,3225,[4289,2969],3226,3163,3163,3164,3228,3163,3164,3164,3164,3228,3164,3225,[4289,2969],[4289,2970],[4289,2971],[4289,2972],3226,3163,3163,3163,3227,3227,3228,3163,[3163,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2816,2818,2688,2752,2816,2624,2624,2560,2752,2817,2688,2816,2816,2818,2496,2754,2624,2496,2754,2816,2755,2496,2818,2560,2819,2560,2496,2561,[2561,9682],[2560,9683],[2561,10066,9488],2690,2561,2561,2497,2560,2497,2496,2561,2819,2560,2497,2755,2754,2560,2754,2561,2818,2819,2818,2496,2496,2496,2560,2496,2497,2561,2561,2496,2818,2819,2561,2818,2496,2561,2624,2625,2496,2754,2497,2754,2496,2561,2497,2497,2561,2560,2496,2561,2561,2561,2560,2560,2497,2561,2497,2496,2496,2496,2496,2496,2560,2496,[2561,9484],[2496,9485],2496,2561,2496,2497,2497,2497,2497,2561,[2496,9490],[2754,9491],2497,2819,2496,2752,2753,2561,2560,2819,2755,2496,2560,2496,2754,2819,2818,2560,2560,2496,2819,[2818,9583],[2819,9676],[2496,9677],2818,2496,2560,2560,2560,2561,2496,2561,2819,2496,2496,2496,2561,[2819,3724],[2819,3792],[2561,3789],3917,3920,3920,3981,3917,[3920,9613],[3919,9614],[3917,9611],[2832,3793],[2830,694],[2766,695],[2767,3980],3917,3981,3920,3919,3981,3981,3983,3983,3917,3919,[2767,3855,10088],9992,[2829,3788,9607],[3917,9608],3918,3917,3981,3920,3920,3981,3981,3920,[2767,3985],2829,[2830,9805],[2765,3980,9901],9993,9994,9995,9996,9993,9994,9995,9996,9997,[3917,9998],[3917,9803],[2831,3985],2767,2830,[2766,3790],[2767,3727],[2831,3729],2767,2832,[2768,4044],3920,3918,3981,3919,3920,3917,3981,3983,3981,3918,3981,3918,3920,3981,3919,[2831,4046],3920,3918,3920,3981,3917,3983,[2765,3791],2831,2767,[2768,694],[2767,695],2829,2829,2829,2830,2831,2832,[2766,694],[2831,695],2767,[2767,4044],[2768,4046],[2768,4047],3920,3918,3919,3917,3918,[2830,3985],2768,2765,[2832,3980],3983,3919,3920,3981,3981,3920,3917,3919,3919,3918,3918,3917,[2768,3921],2767,[2829,3789],3919,3920,3983,3983,3920,3919,3981,3920,[2767,3985],2767,2767,2768,2830,[2832,3724],[2765,3726],[2830,3725],[2768,3792],[2766,3724],3981,3918,3983,3983,3981,3917,3917,3919,3983,3981,3919,3981,3917,3983,[2760,3725],[2824,3726],[2760,3727],[2762,3728],[2823,3727],[2761,3728],[2824,3725],[2825,3726],[2824,3727],[2823,3728],[2824,3728],[2762,3729],2825,2824,2824,2761,2824,2826,2762,[2759,3790],3919,3919,3983,3918,3918,3919,3917,3919,3920,3981,[3919,9805],[3920,9806],[409,9611],409,409,409,409,[4024,485],[3578,486],[3577,422],[3447,430],3447,3576,4025,3642,3643,4023,4024,4024,3961,3577,3448,3577,3448,3578,3512,3960,3448,4023,3960,3447,3511,3448,[4024,294],[3446,294],[4023,295],409,409,409,409,409,[3448,357],4026,4026,3446,4023,4025,4024,3576,3578,4023,3448,3577,3510,3577,3638,3639,3574,3577,3578,4023,3577,3446,4024,4026,4026,3578,3447,3446,4024,3447,3511,3577,3960,3578,3446,3962,3512,4023,3961,4025,3446,4024,3446,3447,4026,3511,4023,4026,3959,4025,3577,3577,3578,3959,3577,4024,3960,3446,4026,4024,3448,3638,3639,3960,3448,3448,[3510,423],409,409,409,409,409,409,409,409,409,409,409,[3577,421],[3447,423],409,409,409,409,409,[3576,357],4023,3448,4024,3578,4024,3576,3447,4026,3447,3577,3448,3575,4023,3448,3574,3578,3577,[3448,9850],[3448,9946],10038,10039,10040,10041,10038,10039,10040,10041,10042,[3208,10134],[3144,10135],10037,[4024,9941],[3962,9942],[3448,9943],[3448,9631,9845],[4025,9632],[10111,9629],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9850,9944,9945,9845,0,0,0,0,0,0,0,0,0,0,9850,9946,10038,10039,9941,9845,0,0,0,0,0,0,0,9850,9946,10042,[3209,10134],[3146,10135],[3144,10136],[3209,10137],10037,10040,10041,9941,9942,9943,9944,9945,9946,10038,10039,9941,[9556,9845],[3163,9557],3163,3228,3164,3228,3164,3163,3228,3163,3163,3164,3163,3228,3228,3227,3164,3164,3228,3227,[3227,9366],[3227,9367],[3227,9368],[3163,9369],[3227,9556],[3227,9557],3228,3228,3227,3164,3227,3228,3164,3228,[4289,3165],4289,4289,[4289,3288],3162,3164,3164,3227,3163,3163,3164,3228,3228,3227,3164,3161,[4289,3289],3162,3164,3164,3228,3164,3228,3228,3164,3227,3163,3163,3164,3228,3225,[4289,2969],3226,3228,3227,3227,3164,3161,[4289,3100],4384,4289,[4289,3160],3228,3163,3228,3163,3164,3164,3228,3164,3164,3227,3228,3228,3227,3163,3164,3163,3227,3228,3163,3227,3164,3164,3227,3227,3163,3227,3164,3228,3163,3163,3163,3228,[3228,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2753,2752,2624,2818,2752,2753,2752,2817,2754,2689,2497,2497,2753,2688,2496,2818,2816,2689,2560,2816,2561,2818,2755,2819,2754,2754,2560,2497,[2497,9586],[2755,9587],[2561,9584],2561,2496,2496,2496,2497,2497,2561,2560,2561,2496,2755,2560,2497,2497,2497,2496,2560,2496,2560,2561,2496,2496,2624,2625,2561,2497,2560,2496,2496,2497,2560,2560,2497,2560,2688,2689,2497,2560,2560,2497,2497,2496,2497,2560,2561,2624,2625,2497,2561,[2561,9294],[2496,9295],[2497,9296],[2560,9297],[2561,9389],[2560,9394],2497,2560,2496,2497,2561,2560,[2497,9389],[2560,9485],2560,2561,2561,2560,2496,2497,2497,2560,2560,[2561,9586],[2754,9587],[2755,9488],2560,2818,2560,2754,2818,2560,2818,2754,2561,2754,2561,2496,2497,2561,2496,2497,2497,2560,[2560,9583],[2754,9580],[2497,9581],2755,2560,2819,2819,2754,2561,2561,2755,2560,2561,2754,2561,2755,[2754,3788],3983,3981,3917,3918,3981,3917,3918,[3919,9709],[3919,9710],[3918,9707],[2765,3921],2831,[2767,3790],3983,3981,3983,3919,3920,3981,3917,3920,3920,3918,3983,[2829,3729],[2832,10088,9514],[2768,3916,9703],[3983,9704],3983,3919,3983,3918,3918,3983,3920,3920,3983,[2831,3729,9613],[2831,9614],[9997,9515],[3920,10089],[3917,10090],[3918,10091],[3917,10092],[3920,10089],[3920,10090],[3983,10091],[3981,10092],[3983,10093],3917,3919,[2768,3856],2765,[2830,3789],3919,3983,[2765,3985],[2829,3790],[2830,3792],2765,[2768,4044],3920,3917,3920,3983,3919,3919,3981,3981,3917,3917,3983,3918,3917,[2766,3985],2831,[2768,3788],3919,3917,3981,3918,3983,3983,[2765,3725],[2765,3728],[2765,3725],[2829,3729],2767,2768,2768,2832,2829,2829,2831,2830,2766,2831,2830,2768,[2830,4044],3920,3919,3920,3919,[2768,3856],2829,[2829,3790],3917,3919,3917,3981,3918,3919,3983,3981,3918,3918,3920,3981,3920,[2831,3985],2765,[2767,4044],3920,3917,3918,3981,3919,3918,3981,3919,3983,[2768,3727],[2768,3792],2832,[2768,3724],3919,3917,3920,3983,3981,3920,3981,3918,3983,3919,3983,3919,3919,3917,3981,3917,3981,3981,3981,3920,3917,3981,3981,3918,3918,3981,3919,3981,3981,3919,[2824,3855],2760,[2825,3724],[2762,3726],[2761,3725],[2824,3792],2824,2826,[2826,3980],3981,3918,3920,3981,3983,3981,3983,3983,3983,[3920,9805],[3981,9901],9902,[409,9707],409,409,409,409,409,409,409,[4026,421],3446,3448,4025,3706,3707,3447,4026,3449,4023,3447,3448,3446,3512,3577,3447,4023,4024,3446,3578,4024,3574,3512,3447,3577,[3578,359],409,409,409,409,409,[4025,421],4025,4024,4026,3574,4025,3447,3577,4024,3574,3577,3447,4026,3448,3702,3703,3447,4023,3446,3447,3448,3448,3578,3446,4023,3578,3448,3959,4023,3447,3577,4026,3447,3447,3510,3574,4025,3576,3446,4026,4026,3447,3574,3446,3960,4024,3446,3959,3962,3447,3574,3511,4026,3960,3577,3511,3578,3575,3578,3578,4023,3702,3703,4023,3959,4025,3446,[3575,294],[3447,295],409,409,409,409,409,409,409,[3962,293],[4025,294],3448,4025,[4025,295],409,409,409,409,[3447,421],3574,3448,4023,4024,3446,3446,3512,4024,3448,3447,3962,3960,4024,3446,3577,3446,[3577,9850],[3574,9946],10042,[3144,10134],[3144,10135],[3145,10136],[3145,10137],[3210,10134],[3144,10135],[3145,10136],[3145,10137],[3209,10138],[3145,10230],[3208,10231],[3210,10133],10037,10038,10039,[3448,9727,9941],[3447,9728,9845],9725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9850,9946,10040,10041,9941,9845,0,0,0,0,0,0,0,0,9850,9946,10042,[3210,10134],[3209,10135],[10037,9559],9652,9653,0,0,0,0,0,9658,9659,[10042,9560],[3210,10138],[3209,10230],[3145,10231],[3210,10232],[3146,10233],[3208,10133],[3146,10136],[3210,10137],10037,10038,10039,10040,10041,10042,[3145,10134],[3145,10135],10037,[3163,9941],[3228,9845],3164,3164,3163,3163,3164,3163,3227,3163,3227,3164,3228,3164,3228,3228,3227,3227,[3227,9460],[3164,9461],[3227,9462],[3227,9463],[3163,9464],[3228,9465],[3227,9557],3227,3164,3227,3228,3164,3164,3228,3163,3164,3225,[4289,3035],4289,4288,[4289,3097],3162,3164,3164,3163,3228,3227,3227,3163,3163,3163,[4289,3037],4289,[4289,3098],3162,3164,3228,3227,3163,3227,3227,3163,3164,3163,3228,3164,3164,3164,3228,3164,3228,3227,3228,[4289,3229],4289,4289,[4289,3033],3226,3164,3164,3164,3163,3227,3164,3164,3227,3227,3164,3164,3227,3228,3163,3163,3163,3227,3228,3164,3227,3228,3163,3228,3227,3227,3227,3228,3164,3163,3228,3163,3227,[3163,9850],[3164,9851],9560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,2560,2818,2496,2561,2496,2496,2497,2755,2754,2818,2560,2816,2689,2818,2816,2755,2497,2689,2625,2754,2754,2819,2755,2497,2754,2755,2561,[2754,9682],[2818,9683],[2560,9680],2496,2497,2496,2560,2561,2496,2496,2497,2496,2755,2496,2496,2496,2561,2561,2560,2497,2496,2560,2497,2496,2561,2688,2689,2496,2496,2496,2561,2561,2496,2560,2496,2497,2496,2624,2625,2560,2561,2497,2560,2560,2497,2560,2561,2561,2688,2689,2496,[2561,9389],[2561,9390],[2560,9391],[2497,9392],[2561,9393],[2497,9485],[2496,9490],[2560,9491],[2497,9294],[2496,9295],[2497,9296],[2560,9297],[2560,9484],[2560,9485],2561,2560,2497,2560,2496,2497,2496,2560,2496,2560,[2560,9682],[2497,9683],[2560,9584],2755,2755,2560,2497,2755,2818,2497,2496,2755,2561,2560,2561,2560,2561,2496,2496,2560,2496,[2818,9679],[2754,9676],[2497,9677],2496,2561,2818,2754,2754,2560,2755,2561,2754,2819,2560,2755,2497,[2754,3852],3981,3918,3981,3920,3918,3981,3981,3920,[3981,9517],[3981,9518],[3983,9321],[2766,3725,9324],3918,3918,3920,3919,3917,3917,3981,3920,3917,3919,3917,3918,3983,[2767,3727,9610],[3920,9799],[3983,9800],3919,3917,3920,3983,3920,3919,3919,3981,3917,[2768,3985,9709],[2831,9710],[2768,3853,10093,9611],[3920,10185],[3919,10186],[3917,10187,124],[3917,10188,125],[3918,10185,126],[3919,10186],[3919,10187],[2830,4047,10188],[2830,4046],[2765,4048],[2832,4049],2832,[2831,3724],3917,3918,3919,3983,3981,3983,[2832,3791],2765,[2766,3853],3920,3981,3981,3919,3918,3983,3917,3919,3919,3918,3981,3919,[2829,4049],2832,[2832,3916],3917,3918,3917,3981,3981,3920,3917,3918,3919,[2831,3856],2829,2829,2830,2830,2766,2830,2766,2831,2829,[2830,3790],[2766,3791],2766,2831,[2831,3980],3981,3981,[2768,3793],2831,2768,[2831,3853],3920,3917,3918,3983,3918,3919,3918,3918,3983,3917,3981,3981,3981,3983,[2766,3792],2830,[2830,3980],3918,3917,3981,3917,3983,3920,3917,3918,3918,3983,[2831,3727],3983,3981,3983,3920,3919,3917,3920,3983,3918,3919,3920,3983,3981,3920,3917,3983,3918,3981,3920,3919,3983,3918,3981,3981,3918,3920,3983,3920,3981,3919,[2824,3985],2823,2826,[2823,3980],3917,3981,3983,[2824,3729],2760,[2759,4044],3920,3983,3917,3918,3920,3920,3919,3983,[3983,9805],[3920,9901],9997,[409,9998],[409,9803],409,409,210,409,409,409,[3448,293],4023,3512,4023,4025,4025,3513,3577,3446,4023,3446,3577,3577,3578,3577,4024,3446,4024,4025,4024,3446,4024,3960,3447,3962,4025,4025,[3447,295],409,210,409,[3578,293],4023,4025,3510,3577,4026,4023,4023,3574,3449,3448,3577,4025,3961,3447,3575,3446,3447,3446,3577,3447,4024,3446,3448,4025,3577,4026,4024,3447,3578,4026,4023,3446,3577,4024,3448,4023,3447,3578,3575,3578,3578,4023,3510,3578,4024,4026,3512,3578,4025,4024,4023,3575,3448,[3577,3515],3446,4025,4023,3576,4024,4023,3577,4024,3578,4026,3448,3578,3578,3577,[4024,359],409,409,409,409,409,409,[3962,293],3448,4025,3448,3447,[4023,359],409,409,409,409,[3511,485],[3448,422],[4025,430],4025,4026,3577,3578,3577,3448,4025,4025,4023,3447,4023,3574,4025,[3511,9850],[3575,9946],10042,[3144,10138],[3208,10230],[3210,10231],[3144,10232],[3209,10233],[3145,10230],[3143,10231],[3210,10232],[3145,10233],3146,3210,3146,3210,[3145,10133],[3209,10134],[3208,10135],10037,[9728,9941],[9821,9845],0,0,0,0,0,0,0,0,0,0,0,9850,9942,9943,9946,10042,[3208,10136],[3145,10137],10037,9941,9942,9943,9944,9945,9942,9943,9944,9945,9946,10042,[3209,10138],[3145,10230],[3146,10231],[3209,10133,9655],9748,9749,0,0,0,0,0,9754,9755,[3210,10138,9656],3209,3210,3144,3144,3145,3208,[3209,10232],[3208,10233],[3144,10133],[3208,10134],[3144,10135],[3209,10136],[3144,10137],[3144,10138],[3209,10230],[3146,10231],[3210,10133],[10037,9559],[3228,9652],[3227,9653],3164,3163,3228,3163,3164,3164,3227,3164,3228,3227,3164,3164,3227,3164,3228,[3228,9556],[3227,9557],3227,3227,3163,3164,3164,3228,3228,3164,3163,3164,3164,3228,3227,3227,3164,3225,[4289,2973],4289,4289,[4289,3098],3162,3163,3228,3227,3163,3164,3164,3164,3164,[4289,3165],4289,4288,[4289,3288],[4289,3292],3162,3164,3164,3163,3228,3227,3164,3228,3228,3164,3228,3164,3164,3164,3228,3164,3161,[4289,3293],4289,[4289,2968],3226,3163,3164,3227,3227,3164,3227,3163,3164,3228,3164,3163,3163,3163,3228,3228,3228,3161,[4289,3289],3162,3164,3164,3164,3164,3164,3164,3228,3164,3161,[4289,3289],[4289,3290],[4289,3291],3162,[3227,9850],[3163,9946],9947,9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2497,2819,2497,2496,2497,2819,2817,2561,2561,2754,2496,2497,2688,2755,2755,2561,2819,2817,2624,2689,2496,2561,2496,2497,2496,2754,2497,2497,2818,[2561,9490],[2755,9491],2755,2496,2496,2496,2497,2560,2624,2625,2624,2625,2624,2625,2561,2497,2497,2496,2560,2561,2497,2497,2561,2496,2752,2753,2625,2561,2561,2496,2497,2561,2561,2561,2561,2496,2688,2689,2496,2497,2496,2497,2496,2497,2496,2624,2625,2752,2753,[2560,9484],[2561,9485],2497,2561,2496,2497,2561,2560,[2560,9490],[2497,9390],[2560,9391],[2561,9392],[2560,9393],[2560,9485],2755,2561,2497,2496,2497,2496,2560,2561,2497,2496,2497,[2497,9778],[2560,9779],[2561,9584],2818,2560,2496,2819,2560,2754,2497,2754,2497,2497,2497,2561,2560,2497,2497,2496,2560,2561,[2496,9484],[2754,9485],2755,2560,2496,2755,2755,2561,2754,2496,2560,2496,2754,2560,2819,2755,[2819,3916],3919,3981,3920,3920,3981,3919,3983,3918,3919,[3920,9517],[3920,9417],[3920,9420],[3918,9421],3983,3917,3918,3981,3920,3920,3919,3920,3920,3983,3920,3981,[3919,9706],9895,[3918,9896],[3919,9897],[3920,9898],[3920,9899],[3983,9900],[3920,9800],3919,3920,3920,3917,[3983,9805],[2832,3791,9806],[2767,9611],[2766,3788],3918,[3981,188],189,[3983,190],3919,[2831,4049],2768,2830,2829,2831,2767,[2831,3788],3917,3918,3919,3919,3983,3919,3983,[2830,3729],2768,[2767,4044],3920,3983,3918,3920,3917,3920,3920,3919,3919,3920,[2765,3985],2830,[2768,3789],3920,3918,3981,3919,3917,3919,3918,3920,3919,3981,[2829,3725],[2832,3791],2767,2768,2832,2829,2765,2830,2830,[2765,3724],3920,3983,[2829,3728],[2829,3725],3920,3919,3981,[2829,3857],2830,[2765,3789],[2766,3729],[2766,3980],3920,3920,3919,3919,3920,3919,3917,3981,3919,3918,3920,3920,3919,[2832,3855],2830,[2832,3788],3917,3983,3981,3981,3917,3917,3917,3917,3920,3920,3917,3917,3983,3920,3918,3918,3983,3920,3918,3919,3918,3917,3917,3920,3918,3983,3919,3917,3920,3920,3920,3983,3983,3917,3917,3920,3920,[2826,4045],[2761,4046],[2826,4047],[2762,4048],[2825,4049],2823,[2826,3789],3919,3919,3920,3981,3983,[2760,3729],2762,[2823,3853],3920,3983,3917,3918,3918,3919,[3919,9613],[3920,9614],[9997,9515],[409,10093],409,409,409,409,409,409,409,409,[3447,357],4025,3447,3576,3578,3448,3447,4023,3577,3446,3959,4026,3574,4025,3447,3511,4024,3448,3576,4026,3577,4023,3446,3577,4023,3448,3447,4025,[3510,294],[3960,294],[3960,294],4024,3960,4025,3447,4025,4023,4024,4026,3446,4026,3960,3577,4026,4025,4026,3575,3510,3578,3510,3577,4026,4026,3447,3449,4023,3960,3576,4024,3446,3448,4023,3959,4024,4025,3578,3577,3447,4023,3577,4026,3511,4024,4023,3448,3446,3446,4023,3446,3962,3576,3447,3446,3510,3576,4025,3578,4026,3511,4026,4025,3447,3577,3446,3575,3960,3577,3446,3447,3575,[4023,423],409,409,409,409,409,409,[3578,357],3512,4023,4026,3960,3577,[3960,294],[3577,294],[3575,295],409,537,409,[4025,357],3577,4025,4023,3578,3577,3578,3578,3574,3578,3513,4026,3577,[3511,9658],[4025,9659],[10042,9560],[3208,10138],3208,3208,3145,3209,3144,3146,3208,3209,3209,3210,3208,3145,3210,3209,[3144,10230],[3209,10231],[3210,10133],[10037,9559],9652,9653,0,0,0,0,0,0,0,0,0,9850,9946,10038,10039,10042,[3144,10138],[3208,10232],[3146,10233],[3209,10133],10037,10038,10039,10040,10041,10038,10039,10040,10041,10042,[3209,10138],3146,3146,3210,[3144,9655],9652,9653,0,0,0,0,0,9850,9851,[3145,9656],3210,3209,3146,[3150,3273],3209,3209,3210,3210,3146,[3145,10230],[3145,10231],[3146,10232],[3209,10233],3208,3144,3145,3210,[3209,10133,9655],[3163,9748],[3227,9749],3163,3227,3227,3228,3228,3228,3163,3227,3164,3163,3228,3164,3228,[3227,9460],[3163,9461],[3164,9557],3164,3227,3164,3164,3227,3163,3163,3163,3227,3164,3164,3163,3228,3163,3164,3228,3163,3225,[4289,3036],4289,4289,[4289,3224],3164,3227,3163,3164,3227,3164,3164,3164,3225,[4289,3035],4289,4289,4289,[4289,3098],3162,3163,3164,3163,3163,3228,3228,3227,3164,3227,3227,3228,3161,[4289,3289],[4289,3290],[4289,3099],4289,4289,[4289,3224],3227,3228,3164,3228,3163,3228,3228,3227,3164,3228,3164,3164,3227,3161,[4289,3290],[4289,3291],[4289,3292],[4289,3099],4289,[4289,3032],3163,3164,3228,3164,3164,3164,3164,3161,[4289,3099],4289,4289,4289,[4289,3098,9658],[4289,3290,9659],[10042,9560],10043,9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2817,2561,2752,2496,2816,2754,2560,2561,2819,2497,2688,2624,2560,2752,2624,2560,2818,2755,2560,2561,2561,2755,2818,2754,2624,2625,2624,2625,2497,[2560,9586],[2561,9587],[2560,9488],2497,2561,2624,2625,2560,2624,2625,2624,2624,2625,2689,2497,2496,2560,2496,2561,2497,2561,2496,2497,2496,2496,2688,2689,2497,2561,2561,2497,2561,2560,2497,2624,2625,2752,2753,2560,2560,2561,[2497,2691],2561,2560,2497,2688,2689,2496,[2561,9487],[2496,9580],[2560,9581],2496,2496,2561,2496,2561,2496,2497,2496,2561,2755,2497,2497,2561,2497,2561,2497,2560,2497,2561,2497,2560,2560,[2497,9778],[2496,9874],9875,[2496,9680],2560,2819,2560,[2561,2626],2755,2497,2819,2755,2496,2497,2561,2560,2497,2560,2560,2497,2560,[2560,9487],[2560,9580],[2755,9581],2561,2624,2625,2496,2754,2754,2561,2561,2560,2497,2754,2560,2754,2819,[2819,3788],3981,3918,3920,3917,3918,3917,3918,3920,3917,3981,3983,3920,[3983,9517],[3919,9518],3981,3920,3920,3983,3983,3983,3981,3919,3918,3917,3983,[3918,9802],[3920,9991],9992,9993,9994,9995,9996,[3917,9896],[3983,9897],[3917,9898],[3983,9899],[3917,9900],[3919,9901],9902,[2768,9707],[2768,3852],3918,[3917,252],[3919,253],[2831,4048,254],[2831,3856],2766,[2768,3724],[2765,3725],[2829,3792],2829,2829,[2765,3916],3918,3919,3983,3919,3917,3919,3917,3983,[2767,3791],2767,[2829,3854],3920,3919,3920,3919,3920,3917,3983,[2830,3793],[2830,3854],[2832,4049],2830,[2767,3980],3919,3981,3918,3919,3920,3917,3983,3917,3920,3983,3918,[2766,3985],2767,2767,2767,2767,2765,2830,[2832,3789],3917,3920,3983,3918,3917,3917,3918,3920,[2765,3921],2765,[2832,3980],3983,3918,3917,3919,3917,3981,3981,3981,3981,3920,3919,3918,3917,3920,[2831,3985],2767,[2832,3724],3920,3919,3981,3918,3983,3983,3981,3920,3920,3920,3919,3983,3920,3983,3919,[3981,9767],[3918,9859],[3983,9860],[3981,9762],3981,3983,3917,3981,3983,3919,3920,3918,3919,3917,3919,3918,3919,3983,3983,3920,3983,3981,3918,[2760,3727],[2761,3729],2825,2824,2823,[2823,3790],3981,3919,3983,3920,3917,3918,[2825,3985],2762,2759,[2825,3980],3919,3918,3918,3920,3918,[3983,9709],[3919,9710],[409,10093,9611],409,409,409,409,409,409,409,353,409,[3510,421],3448,3448,4023,4025,3578,4026,3446,3576,3578,3578,3447,3447,3577,4023,3447,4024,3962,3578,3578,4024,3446,3447,4025,4025,3578,3512,4026,3446,3512,4025,4025,3574,3513,3510,4024,4024,3961,3961,3448,3959,4024,3575,4025,3576,4026,3512,3447,4025,3447,4023,4026,3448,3576,4025,3446,3512,3446,3447,3446,3448,4024,3578,3447,3510,3447,3960,4026,4026,4026,4025,3577,3510,4023,3446,3446,3960,3959,4023,3578,4025,3960,3512,3575,3574,3447,3960,3577,4023,3578,3448,4024,4024,4026,3578,3448,4026,4025,3446,3448,3962,[3446,295],409,409,409,601,409,[3448,421],4026,3448,3961,3578,4023,3448,3448,[3577,359],409,409,409,[4026,421],4024,3448,3511,4023,3446,3448,3575,4024,3960,3577,3574,3447,[3446,9754],[4025,9755],[3144,10138,9656],3146,3208,3209,3209,3210,3145,3210,3144,3209,3210,3144,3144,3146,3208,3146,3210,3208,3208,[3209,10133,9655],9748,9749,0,0,0,0,9850,9942,9943,9944,9945,9946,10042,[3210,10134],[3144,10135],[3144,10138],3209,3145,3144,3145,[3145,10133],[3209,10134],[3208,10135],[3144,10136],[3208,10137],[3208,10134],[3144,10135],[3145,10136],[3144,10137],[3210,10138],3144,3146,3145,3146,[3144,9655],9844,9845,0,0,9850,9944,9945,9946,9947,[3210,9752],3144,3209,[3151,3211],3214,[3216,3079],3144,3145,3144,3210,3144,3209,3144,3210,3209,3210,3145,3146,[3208,9655],[3144,9652],[3163,9653],3164,3163,3228,3163,3163,3227,3163,3164,3163,3163,3164,3164,3228,[3227,9556],[3164,9557],3164,3163,3228,3164,3163,3164,3163,3164,3228,3227,3228,3227,3163,3227,3164,3163,3163,3164,3163,3225,[4289,3035],4289,[4289,3032],3228,3164,3164,3163,3227,3163,3228,3164,3164,3225,[4289,2972],[4289,2973],4289,4289,[4289,3032],3163,3228,3164,[3164,9366],[3164,9367],[3163,9368],[3227,9369],[3228,9366],[3164,9367],[3227,9368],[3227,9369],[4289,3229],4289,4289,4289,4289,[4289,3033],3226,3228,3164,3164,3164,3228,3164,3164,3227,3228,3228,3228,3164,3161,[4289,3099],4289,4289,4289,4288,4289,[4289,3096],3228,3228,3163,3163,3164,3228,3228,[4289,3037],4289,[4289,3033],[4289,2970],[4289,2972],[4289,3036,9754],[4289,9755],[10138,9752],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2753,2817,2755,2496,2688,2497,2561,2689,2754,2496,2689,2755,2625,2752,2561,2497,2496,2624,2752,2497,2560,2561,2818,2755,2688,2689,2625,2689,2755,[2754,9682],[2754,9683],[2496,9584],2497,2497,2688,2689,2497,2688,2689,2688,2688,2689,2753,2560,2496,2560,[2560,2627],2496,2560,2496,2497,2560,2496,2496,2752,2753,2561,2561,2497,2496,2561,2497,2561,2688,2689,2561,2497,2496,2561,2560,2560,2497,2496,2560,2752,2753,2496,[2497,9583],[2496,9676],[2561,9677],2561,2496,2497,2561,2497,2497,2560,2497,2754,2560,2497,2496,2496,2497,2754,2496,2560,2496,2496,2496,2496,[2560,9586],[2560,9587],[9970,9488],[2497,9971],[2560,9776],2497,2560,2561,2755,2497,2818,2819,2818,2497,2560,2560,2497,2560,2560,2560,2560,2496,[2496,9679],[2497,9676],[2496,9677],2754,2688,2689,2496,2755,2497,2561,2819,2755,2560,2819,2496,2560,2496,[2754,3916],3917,3918,3981,3983,3983,3917,3917,3917,3918,3983,3919,3917,[3920,9613],[3981,9614],[3918,9515],3919,3983,3983,3919,3983,3919,3919,3981,3920,3981,3918,3917,[3981,10088],[3917,10089],[3983,10090],[3919,10091],[3919,10092],9992,9993,9994,9995,9996,9997,[2767,9998],[2832,9803],[2767,3916],3981,3919,[2831,3855],2768,2831,[2768,3724],3983,3918,[2831,3985],2829,[2767,3790],3918,3981,3983,3918,3983,3981,3920,3920,3919,3983,[2767,3791],2768,[2765,3854],[2831,4049],[2765,4044],[2829,3855],[2831,3980],3917,3920,[2831,3921],2829,2832,[2766,3789],3920,3919,3983,3983,3983,3983,3981,3917,3918,3917,3981,3919,[2830,3855],2829,[2766,3724],[2831,3725],[2832,3726],[2832,3727],[2766,3728],3981,3918,3983,3917,3981,3981,[3918,566],[3919,567],[2765,4046],[2766,3855],2832,[2766,4044],3920,3981,3983,3919,3917,3920,3920,3917,3981,3983,3983,3918,3917,3918,3983,[2830,3792],[2832,3980],3918,3920,3919,3919,3918,3917,3919,3981,[3919,9767],[3918,9859],[3917,9860],[3981,9861],[3983,9862],[3919,9859],[3918,9860],[3981,9863],9955,9956,[3981,9858],[3983,9762],3918,3920,3918,3917,3918,3919,3917,3918,3981,3919,3918,3983,3919,3920,3983,3917,3981,3917,3983,[2826,3985],2762,2762,[2762,3789],3919,3983,3917,3920,3917,3919,3981,3983,[2762,3792],2823,[2762,3854],3920,3981,3983,3919,3918,[3917,9805],[3983,9806],[3512,294,9611],[3446,295],409,409,[3578,293],[4023,294],[3446,295],409,409,[3511,293],3577,4024,3577,4023,4026,3510,4024,3578,3577,4024,3446,4026,4026,3959,4024,3578,3574,4025,4026,4023,4023,3448,4026,3574,4026,3578,4024,4024,4026,4026,4023,3959,3512,4026,3448,3577,3960,4025,[3448,9339],[3446,9342],3448,4026,3575,3448,4025,3510,4025,3448,4023,4024,3577,3577,[4024,9339],[3448,9342],3577,3578,3446,3577,4023,3446,3962,3448,3448,3447,3959,3575,4023,4025,3960,4025,3446,4023,3446,3512,3575,3447,4026,3575,4024,4023,4025,4026,3577,4025,3577,3574,4023,3448,3448,3448,3959,4024,3448,4026,3578,3448,3961,3447,3448,4024,3575,4026,[3578,294],[4025,295],[409,9339],[409,9342],[3577,293],3962,3959,3511,3578,3447,3448,4026,3448,[3448,423],409,409,409,[3448,357],3510,4023,3446,4024,3446,3961,4023,3962,3510,3448,3578,3959,3961,[3448,9562],[3208,9466],3144,3208,3208,3208,3146,3146,3146,3208,3144,[3151,3273],[3213,3274],3144,3144,3145,3146,3209,3209,3209,[3209,9655],9652,9653,0,0,0,9850,9946,10038,10039,10040,10041,10042,[3144,10138],[3210,10230],[3209,10231],3144,3145,3145,3210,3144,3208,[3208,10230],[3208,10231],[3144,10232],[3146,10233],[3208,10230],[3210,10231],[3144,10232],[3210,10233],3145,3208,3209,3145,3145,[3146,9751],9940,9941,9942,9943,9946,10040,10041,10042,[3145,10043],[3208,9848],3209,3144,3210,[3214,3017],3216,[3152,3270],3210,3144,3209,3210,3208,3146,3209,3144,3146,3209,3208,[3210,9655],[3210,9844],[3228,9845],3228,3164,3163,3164,3228,3163,3164,3227,3163,3227,3164,3164,[3163,9559],[3163,9652],[3228,9653],3164,3163,3228,3164,3228,3163,3163,3227,3227,3227,3164,3227,3163,3164,3164,3227,3227,3164,3228,3227,[4289,3037],4289,[4289,3096],3163,3164,3164,3227,3228,3164,3163,3228,3164,3163,3164,3225,[4289,3035],4289,[4289,3160],3228,3163,[3163,9461],[3228,9462],[3163,9463],[3163,9464],[3227,9465],[3164,9462],[3164,9463],[3227,9464],[3163,9465],[3225,9563],[4289,3036],4288,[4289,3033],[4289,2969],3226,3228,3163,3164,3228,3163,3164,3163,3228,3227,3164,3227,3161,[4289,3291],[4289,3293],4289,4289,4289,4289,4289,4289,[4289,3160],3163,3227,3164,3227,3228,3228,3228,[4289,3101],4289,[4289,3288],3162,3164,3225,[4289,2969,9562],9466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2816,2818,2497,2561,2561,2689,2560,2819,2688,2817,2497,2752,2818,2496,2497,2816,2624,2560,2496,2496,2818,2560,2497,2624,2752,2753,2689,2753,2497,[2818,9778],[2754,9779],[2561,9584],2560,2497,2752,2753,2497,2752,2753,2752,2752,2753,2496,2497,2496,2497,2496,2561,2561,2561,2560,2497,2496,2496,2561,2560,2560,2560,2561,2496,2560,2560,2496,2752,2753,2497,2497,2497,2496,2496,2496,2496,2497,2560,2560,2496,2497,[2560,9583],[2560,9694],[2497,9695],2497,2496,[2560,4249],2560,2561,2561,2561,2624,2625,2497,2561,2496,2818,2560,2497,2497,2496,2496,2497,2496,2560,[2497,9682],[2497,9683],[2560,10066,9584],2496,2496,2497,2496,2496,2497,2561,2819,2818,2560,2560,2496,2497,2497,2561,2496,2496,2497,2561,[2561,9484],[2496,9485],2819,2624,2752,2753,2560,2755,2561,2818,2561,2496,2754,2819,2496,2819,2754,[2755,4044],[2754,4045],3919,3918,3917,3918,3918,3983,3983,3919,3983,3917,3981,[3919,9709],[3920,9710],[3920,9611],3918,3981,3983,3919,3983,3919,3918,3983,3919,3983,3917,3918,3920,[3919,10185],[3920,10186],[2768,3985,10187],[2831,3788,10188],[3919,10088],[2830,4048,10089],[2829,4049,10090],[2832,3853,10091],[2830,4048,10092],[2768,3856,10093],2767,2768,[2829,4044],[2767,4046],[2765,4049],2830,2830,[2829,3790],3917,3920,3918,[2765,3985],2832,[2829,4044],3920,3981,3917,3917,3981,3918,3918,3919,3917,3919,3983,[2831,3729],2832,2829,2766,[2830,566],[2831,3853,567],[2768,4046],[2832,4048],[2832,3855],2765,2831,[2832,3788],3918,3981,3919,3920,3917,3919,3917,3920,3917,3919,[2767,4048],[2832,3855],2766,2767,[2830,3980],3983,3981,3917,3920,3917,3981,3983,3917,3919,[2767,4045],[2765,4048,630],[2767,3856,631],2831,2766,2829,2767,[2830,4044],[2766,4048],[2767,4048],3920,3917,3917,3917,3918,3981,3919,3981,3983,3919,3981,3917,3983,3918,3919,3917,3920,[3917,9767],[3983,9859],[3917,9860],[3981,9861],[3919,9862],[3983,9863],9955,9956,9957,9958,9955,9956,9959,[3956,10051],[3955,10052],[9954,9476],[3919,9569],[3983,9570],3918,3920,3920,3919,3983,3917,3983,3919,3919,3981,3919,3919,3920,3918,3917,3981,3983,3920,3983,[2826,3726],[2826,3728],3917,3918,3918,3918,3983,3917,3920,3983,3918,3983,[2823,3729],2824,[2826,3788],3920,3920,3918,[3920,9805],[3917,9901],9902,[3960,9707],3448,[3511,294],[3577,294],4026,4023,3961,[4025,294],[4026,294],3448,3574,3512,3577,3447,3577,3511,3575,3448,3578,3962,3447,3577,3513,3446,3446,4023,4026,3447,4025,3578,3574,4024,3577,3578,3576,3577,4025,4024,4023,4026,3962,3578,3446,4026,4025,3578,3510,[3576,9529],[3250,9435],[3186,9438],[3511,9439],[3959,9339],[4026,9340],[3959,9341],[3960,9342],4025,4025,3577,3961,[3961,9339],[3960,9342],[3446,9434],[3186,9435,5490],[3188,9438,5491],[3448,9439,5492],[3575,9339],[3512,9342],4025,3448,4023,3578,3578,3575,3577,3574,3961,3575,3959,3575,[3962,9339],[3960,9340],[3960,9341],[4025,9342],[4025,9339],[3510,9342],3446,3446,3577,3577,4024,4025,4024,4026,3446,3446,3578,4026,3576,3446,3447,3962,4024,3512,4026,4025,3448,4026,4024,3510,3446,3961,3448,4025,[3446,9529],[3186,9435],[3187,9438],[3446,9439],[3448,9339],[3446,9342],3961,4024,4023,3574,3448,3578,3961,[4026,295,9339],[409,9342],[3448,293],4025,4023,4023,4026,3510,3577,3448,3578,3574,[3574,9339],[3574,9342],4026,3576,3576,4026,[4024,9562],[3144,9466],[3146,9366],3209,3208,3144,3208,3146,3210,[3216,3211],3150,3214,[3149,3206],3144,3146,3210,3209,3208,3209,[3209,9655],9844,9845,0,0,9850,9946,10042,[3144,10134],[3144,10135],[3210,10136],[3208,10137],[3145,10138],3144,3209,3144,3209,3210,3208,3144,3209,3208,3208,3210,3144,3209,3210,3146,3209,3145,3144,3144,3144,3208,3209,[3208,9847],[3146,10036],10037,10038,10039,10042,[3210,10136],[3145,10137],[3145,10138],3144,3210,3144,3208,3145,[3214,3211],3213,3149,[3149,3079],3146,3210,3210,3210,3143,3209,3208,3146,3144,3146,[3145,9751],9940,[3228,9941],[3164,9845],3164,3228,3163,3164,3164,3227,3228,3164,3227,3163,3163,[3227,9655],[3164,9748],[3163,9749],3163,3227,3164,3227,3228,3228,3164,3228,3164,3161,[4289,3291],[4289,3292],3162,3163,3228,3164,3227,3164,3163,3163,[4289,3101],4289,[4289,3160],3163,3164,3164,3163,3227,3228,3164,3164,3228,3163,3227,3228,[4289,3229],4289,[4289,3097],3162,3163,[3228,9652],[3227,9653],3227,3227,3163,3164,3163,3228,3227,[3164,9562],[4289,3229,9466],4289,[4289,3032],3164,3227,3163,3164,3164,3163,3164,[3164,9366],[3228,9367],[3228,9368],[3228,9369],3161,[4289,3289],[4289,3099],4289,4289,4289,[4289,3033],[4289,2969],[4289,2970],[4289,2971],[4289,2972],3226,3164,3228,3227,3228,3227,3163,3228,[4289,3165],4289,4288,[4289,3098],3162,3164,3163,[3164,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,2816,2755,2624,2819,2816,2560,2497,2752,2816,2818,2561,2754,2819,2688,2496,2496,2754,2561,2560,2818,2754,2560,2688,2688,2752,2753,2818,[2561,9778],[2819,9874],9875,[2561,9680],2561,2497,2560,2497,2497,2560,2496,2561,2561,2561,2497,2496,2561,2496,2496,2497,2560,2497,2560,2496,2560,2497,2560,2496,2497,2561,2560,2561,2497,2561,2497,2560,2561,2496,2497,2561,2497,2497,2496,2497,2497,2561,2497,2561,2496,[2561,9583],[2496,9790],[2496,9791],2561,[2560,4344],[2560,4345],[2560,4346],2819,2754,2819,2688,2689,2624,2625,2496,2561,2561,2560,2755,2496,2560,2496,2496,2496,[2496,9700],[2497,9701],[2497,9584],2496,2497,2496,2561,2561,2754,2754,2754,2496,2497,2496,2496,2560,2560,[2497,9294],[2560,9295],[2497,9296],[2560,9297],[2496,9484],[2561,9485],2755,2754,2688,2689,2754,2561,2496,2819,2497,2497,2497,2754,2561,2561,2755,2819,2754,2496,[2818,3853],3981,3917,3981,3981,3981,3981,3981,3918,3983,3981,[3981,9805],[3919,9806],[3917,9611],3981,3983,3918,3917,3981,3919,3983,3983,3918,3981,3919,3917,3920,[2831,3793],[2767,4044],[2766,4049],[2831,3916],[2829,3985],[2829,3790,10185],[2832,3791,10186],[2830,10187],[2832,10188],2766,2832,2829,2768,2768,2766,2829,[2767,3789],3917,3981,3918,3920,3983,[2768,3791],[2832,566],[2830,3980,567],3919,3919,3919,3981,3983,3918,3919,3981,3983,3918,3983,[2766,3727],[2768,3728],[2830,3729],[2768,630],[2830,631],2829,2829,2766,2829,2830,[2832,3852],3917,3920,3920,3983,3918,3918,3983,3981,3917,[2830,3985],2830,2832,2830,2768,[2829,3853],3920,3919,3917,3918,3917,3918,3917,3918,[2765,3985],2766,[2765,694],[2765,695],[2768,3790],[2832,3729],[2766,3789],[2767,3791],2831,2767,2765,[2832,4044],3920,3918,3920,3919,3920,3918,3917,3917,3919,3920,3983,3918,3983,3981,3983,[3919,9767],[3917,9863],9955,9956,9957,9958,9959,[3956,10051],[3954,10052],[3954,10053],[4019,10054],[3953,10051],[3956,10052],[4020,10055],[3954,10147],[4017,10148],[3955,10050,9572],[3920,9665],[3920,9666],3983,3920,3918,3983,3918,3920,3983,3917,3919,3918,3918,[3917,9767],[3983,9859],[3981,9860],[3983,9762],3983,3918,3918,3919,3919,3918,3981,3981,3917,3981,3920,3918,3918,3918,3917,3981,[2762,3985],2762,[2823,3852],3919,3983,[3918,9613],[3917,9614],[9997,9515],[3959,9998],[3575,9803],4024,4025,4023,4026,4026,4024,3960,4023,4025,3574,3577,3512,3962,4026,3446,3447,3446,4025,3448,3578,3446,3448,4025,3446,3575,3961,3574,3578,3446,[4023,3515],3574,4026,3447,[3961,9339],[3962,9340],[4025,9341],[3961,9342],[3960,9339],[3576,9342],4025,3447,3447,4024,3447,[4026,9433],[3512,9434],[3187,9530],3188,3185,[3249,9535],[3249,9435],[3185,9436],[3251,9437],[3251,9438],[3448,9439],[3962,9339],[4024,9342],[3961,9434],[3249,9435],[3188,9438],[3185,9530],[3186,5586],[3188,5587],[3185,9535,5588],[3252,9435],[3252,9438],[3575,9439],[4024,9339],[3959,9340],[3961,9341],[3959,9342],3575,4024,4026,4025,3577,3447,[4024,9434],[3252,9435],[3252,9436],[3251,9437],[3250,9438],[3252,9435],[3250,9438],[4023,9439],3448,3512,3448,3447,3446,3578,3446,3448,[4023,9339],[4025,9342],4023,4026,3577,4024,4025,4024,3578,3447,4025,3511,4026,3446,3574,3577,3447,3447,[3960,9434],[3187,9530],3252,3185,[3252,9535],[3186,9435],[3251,9438],[3576,9439],4025,3578,3447,3962,4026,[3510,9529],[3250,9435],[3186,9438],[3959,9439],4025,3446,4025,4023,4024,3960,[3961,9339],[3447,9342],[4024,9434],[3251,9435],[3250,9438],[3962,9439],[3447,9339],[3961,9342],3961,3574,[3574,9562],[4024,9462],[3209,9466],3210,3209,3210,3145,3207,3208,[3215,3017],3150,[3214,3079],3146,3209,3145,3209,3145,3208,[3145,9751],9940,9941,9942,9943,9946,10042,[3209,10138],[3208,10230],[3209,10231],[3209,10232],[3208,10233],3208,3145,3145,3209,[3214,3274],3210,3146,3209,3209,3145,3210,3146,3210,3208,3208,3209,3209,3144,3146,3210,3146,3207,3144,3208,3146,[3208,10133],[3145,10134],[3145,10135],[3146,10138],[3208,10232],[3146,10233],3208,3210,3146,3209,3208,3144,3210,[3215,3017],3151,3150,[3151,3014],3144,3208,3146,3144,3210,3145,[3152,3272],3210,3210,[3208,9847],[3209,10036],10037,[3163,9941],[3163,9942],[3164,9943],[3227,9845],3163,3164,3163,3163,3228,3227,3227,3228,[3228,9655],[3164,9844],[3227,9845],3228,3227,3227,3227,3228,3227,3163,3227,3161,[4289,3100],4289,4289,[4289,3224],3227,3164,3227,3227,3228,3163,3228,[4289,3165],4288,[4289,3224],3164,3227,3163,3164,3161,[4289,3289],[4289,3290],3162,3163,3228,3227,3161,[4289,3100],4289,4289,[4289,3032],3228,[3228,9748],[3163,9749],3228,3163,3164,3227,3161,[4289,3289],3162,3228,[3227,9562],[4289,9563],[4289,3096],3227,3164,[3227,9366],[3227,9367],[3228,9368],[3163,9369],[3164,9461],[3164,9462],[3227,9463],[3227,9464],[3227,9465],[4289,3229,9466],4289,4384,[4289,2968],[4289,2970],[4289,2971],3226,3163,3228,3228,3227,3227,3163,3228,3228,3228,3164,3163,3163,[4289,3229],4289,4289,4289,[4289,3288],3162,3227,[3228,9754],[3163,9755],9560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2688,2688,2496,2816,2497,2816,2755,2560,2560,2689,2818,2624,2816,2818,2497,2752,2818,2561,2561,2560,2818,2755,2754,2752,2752,2753,2754,[2755,9778],[2754,9874],9970,[4672,9971],[4672,9776],4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,[4672,9679],9886,[2496,9887],[2561,9791],2560,2560,2560,2754,2819,2819,2752,2753,2688,2689,2819,2819,2561,2496,2496,2497,2497,2497,2497,2497,[2561,9796],[2560,9797],[2561,9584],2561,2497,2496,2560,2497,2497,2561,2561,2497,2561,[2497,2691],2497,2561,[2497,9484],[2497,9390],[2561,9391],[2560,9392],[2561,9393],[2561,9485],2755,2754,2754,2752,2753,2497,2818,2497,2818,2819,2496,2496,2818,2560,2561,2497,2497,2560,2496,2819,[2561,3980],3983,3983,3918,3917,3917,3919,3981,3919,[3981,9805],[3983,9901],9902,[3920,9707],3983,3917,3919,3981,3920,3983,3981,3917,3920,3920,3920,3983,3918,[2831,3857],2767,2767,[2767,3854],[2766,4049],[2768,3853],[2765,3856],2766,2829,[2765,3724],[2766,3728],[2832,3725],[2830,3792],[2831,566],[2768,3724,567],[2829,3725],3983,3919,3920,3983,3983,3920,[2830,3985],[2831,630],[2830,3853,631],[2831,4046],[2831,3856],[2829,3788],3920,3920,3981,3917,3917,3983,3920,3917,3919,3920,[2831,3985],[2831,694],[2766,695],2829,[2832,3724],[2830,3791],2766,2767,[2830,3916],[3918,566],[3918,567],3917,3917,3918,3983,3918,3919,[2765,4045],[2830,4049],2768,[2831,3789],[2766,3792],2766,2832,[2767,3854],3920,3981,3983,3919,3918,3983,3983,3983,[2765,3725],[2831,3791],[2830,3789],3981,3920,3919,3983,[2832,3727],[2767,3726],[2768,3791],2831,[2768,3854],3920,3918,3917,3983,3918,3918,3919,3918,3917,3981,3920,3981,3918,[3920,9767],[3918,9863],9959,[3953,10051],[3953,10052],[3954,10053],[4018,10054],[3955,10055],[4020,10147],[4019,10148],[3953,10149],[3955,10150],[4020,10147],[3955,10148],3955,3955,4020,[3953,9572],[3918,9569],[3918,9570],3919,3918,3918,3981,3918,3918,[3920,9767],[3920,9859],[3918,9860],[3981,9861],[3920,9862],[3920,9863],9955,9956,[3983,9858],[3920,9762],3917,3918,3981,3918,3920,3917,3983,3983,3917,3981,3919,3918,3920,3917,3919,[2759,3855],2761,[2762,3916],3919,3920,[3917,9709],[3983,9710],[4025,10093,9611],3960,3446,3959,3447,3640,3641,3575,3446,4026,3446,3577,3447,4024,3577,3447,3448,3960,3574,3447,3446,3510,3578,3578,3578,3446,3448,4023,4023,3448,3578,3447,3577,3577,[3448,9433],[3961,9434],[3188,9435],[3186,9436,5490],[3188,9437,5491],[3252,9438,5492],[3252,9435],[3251,9438],[4026,9439],[3511,9339],[3574,9340],[4025,9341],[3574,9342],[4026,9529],[3249,9530],3186,3186,3188,3252,3250,3250,3186,3187,[3252,9535],[3188,9435],[3186,9438],[3251,9530],3188,3251,3188,[3250,5682],[3185,5683],[3187,5684],3187,3251,[3185,9535],[3251,9435],[3252,9436],[3186,9437],[3186,9438],[3961,9439],[3511,9339],[4025,9340],[3511,9341],[3446,9342],[3574,9434],[3188,9530],3185,3251,3185,3186,3186,3187,[3188,9535],[3448,9536],[3959,9339],[4026,9340],[3447,9341],[3448,9342],[3511,9339],[3960,9342],[3962,9434],[3187,9435],[3251,9438],[3961,9439],[3448,9339],[4025,9340],[3574,9341],[4023,9342],[3961,9434],[3960,9439],[3446,9339],[3961,9340],[3575,9341],[3574,9342],[3448,9339],[3446,9340],[3512,9341],[3448,9342],[3448,9529],[3185,9530],3252,3251,3188,3185,3250,3252,[3187,9535],[3448,9536],[4023,9339],[3512,9340],[3448,9341],[4026,9342],[3188,9625],[3186,9626],3252,[3252,9535],[3510,9536],[4026,9339],[3961,9340],[3960,9341],[4023,9342],[3962,9434],[3252,9435],[3185,9438],[3250,9530],3187,3185,[3187,9535],[3251,9435],[3249,9438],[3575,9439],3446,4026,4026,[3962,9562],[3209,9563],3145,3208,3145,3144,3146,3208,[3216,2955],3213,[3149,3206],3210,3144,3210,3209,3144,[3208,9847],[3210,10036],10037,10038,10039,10042,[3210,10138],3209,3209,3145,3209,3209,3208,3208,3145,[3149,3081],3215,[3216,3206],3209,3145,3145,3143,3145,3208,3209,3146,3208,3146,3144,3144,3209,3210,3208,3209,3209,3210,3210,3210,[3210,10230],[3208,10231],3210,3144,3210,3146,3210,3144,3210,3208,3144,3145,3144,[3149,2955],3151,[3215,3142],3209,3210,3210,3209,3210,[3149,3081],3152,[3215,3014],3208,3208,3208,[3208,10133],10037,10038,10039,[3227,9941],[3164,9845],3228,3228,3228,3164,3227,3227,3228,[3163,9751],9940,[3227,9941],[3163,9845],3227,3161,[4289,3290],[4289,3291],[4289,3292],3162,3161,[4289,3293],4289,4289,[4289,2968],3226,3164,3228,3163,3163,3227,3227,3227,[4289,3229],4289,[4289,3224],3228,3163,3228,3164,[4289,3037],4289,4289,[4289,3224],3163,3163,3228,[4289,3037],[4289,9366],[4289,9367],[4289,9368],[4289,3096,9369],[3227,9461],[3227,9557],3164,3164,3164,3228,3161,[4289,3293],4289,[4289,3224],3228,[3227,9658],[3227,9659],[4289,3160,9366],[3164,9369],[3227,9461],[3228,9462],[3227,9463],[3228,9464],[3164,9465],[3228,9557],3227,3228,3164,3227,[3164,9562],[4289,9466],4289,[4289,3032],3227,3163,3228,3164,3227,3164,3164,3228,3227,3163,3228,3227,3227,3227,3228,3225,[4289,2970],[4289,2971],[4289,3035],4289,[4289,3098],3162,[3163,9658],[3164,9659],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2625,2817,2497,2497,2818,2561,2752,2818,2624,2819,2497,2817,2819,2560,2754,2818,2755,2496,2688,2497,2496,2496,2561,2819,2688,2689,[2819,9586],[2754,9587],[9970,9488],[4768,10066],4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,[4768,9775],9982,9983,[2496,9887],[2560,9888],[2496,9889],[2497,9791],2496,2560,2497,2497,2497,2752,2753,2496,2496,2561,2497,2560,2561,2560,[2561,9796],[2561,9888],[2497,9889],[2560,9892],9893,[4672,9680],4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,4672,[4672,9487],[2560,9580],[2560,9581],2496,2818,2754,2755,2561,2561,2754,2560,2755,2560,2818,2497,2497,2560,2561,2818,2560,2497,2560,2755,2818,2561,2754,2496,[2818,3788],3983,3919,3919,3919,3983,3918,3981,[3918,9613],[3917,9614],9997,[3919,9998],[3983,9803],3920,3920,3917,3917,3920,3917,3918,3917,3918,3919,3917,3983,3917,[2766,3921],2765,2829,2829,2831,2831,2766,[2832,3724],[2830,3725],3983,3918,3919,[2830,3793],[2831,630],[2829,4044,631],3920,3919,3919,3918,3918,3919,[2831,4048],[2831,3856],[2832,694],[2831,695],[2766,3790],[2829,3792],[2831,3916],3981,3918,3917,3983,3983,3917,3981,3918,[2830,3985],[2766,4044],[2831,4049],2766,2829,[2768,3789],3920,[2765,3793],2765,2766,[2768,4044],[2768,4045,630],[2768,4046,631],[2832,4047],[2766,4048],[2766,4046],[2829,4047],[2831,4048],[2765,4049],2831,2830,[2765,3724],3983,3983,[2766,3726],[2765,3791],2830,[2766,3854],3920,3981,3918,3920,3981,3917,3981,3920,3983,3919,3918,3917,3981,3918,3918,3981,3983,[2829,3729],2831,[2829,3854],3920,3919,[2830,4046],[2829,4047],3920,3918,3983,3918,3919,3981,3917,[3981,9767],[3981,9863],9959,[3955,10055],[4017,10147],[3636,10148],[3637,10149],[4020,10150],4017,4020,3441,3955,4019,3954,4018,4020,4020,4017,[3954,9572],[3919,9665],[3917,9666],3920,3918,3919,3983,3920,[3919,9767],[3918,9863],9955,9956,9957,9958,9959,[3953,10051],[3954,10052],9954,[3981,9858],[3981,9762],3918,3981,3919,3920,3917,3918,3983,3981,3920,3981,3920,3983,3920,[2824,3793],2762,2760,[2761,3980],3981,3920,3983,[3981,9517],[4024,9421],3578,3960,3961,3448,3704,3705,4025,3447,3576,[3446,3515],4023,4025,3578,4023,4026,3577,3959,3578,4024,3576,3577,3447,3448,4024,3446,3578,4024,3577,3446,4025,3578,3962,4024,[4023,9529],[3250,9530],3188,[3249,5586],[3251,5587],[3250,5588],3252,3186,[3187,9535],[3185,9435],[3250,9436,5485],[3185,9437,5486],[3186,9438,5487],[3249,9530,5488],[3251,5489],3185,3187,3251,3249,3252,3185,3188,3186,3188,3188,3185,3249,3185,3187,3186,[3187,5778],[3252,5779],[3251,5780],3251,3252,3251,[3188,5485],[3185,5486],[3186,5487],[3188,5488],[3187,9535,5489],[3187,9435],[3251,9436],[3186,9437],[3249,9438],[3186,9530],3249,3252,3249,[3249,5490],[3250,5491],[3252,5492],3187,3252,[3186,9535,5485],[3249,9435,5486],[3249,9436,5487],[3185,9437,5488],[3250,9438,5489],[3250,9435],[3252,9438],[3251,9530],3251,3188,[3186,9535],[3249,9435],[3185,9436],[3250,9437],[3252,9438],[3250,9530],[3185,9535],[3187,9435],[3185,9436],[3186,9437],[3187,9438],[3249,9435],[3187,9436],[3185,9437],[3185,9438],[3252,9530],3251,3252,3252,3185,3249,3186,3250,3188,[3188,9535],[3250,9435],[3252,9436],[3188,9437],[3186,9438],[3250,9530],3186,3251,3188,[3249,9535],[3188,9435],[3252,9436],[3251,9437],[3187,9438],[3251,9530],3187,3185,3249,3252,3185,3188,3186,3251,[3186,9535],[3510,9536],[3959,9339],[3510,9340],[3512,9341,9658],[4026,9342,9659],[3145,9560],3145,3145,3144,3144,3144,[3215,3019],3150,[3151,3079],3210,3208,3144,3145,3208,3210,3210,[3146,10133],[3146,10134],[3209,10135],[3144,10138],3144,3209,3145,3210,3210,3145,3208,3145,[3216,3019],3152,[3215,3015],3144,3144,3145,3146,3144,3145,3144,3209,3210,3144,3145,3208,3208,3208,3210,3210,3144,3144,3145,3144,3146,3210,3145,3144,3208,3146,3145,3208,3208,3146,3208,3210,3144,3146,3209,[3151,3018],[3213,3079],[3214,3272],3146,3208,3208,[3152,3019],3150,3152,[3150,3142],3144,3145,3144,3209,[3146,10133],[3146,10134],[3146,10135],[10037,9559],[3227,9652],[3163,9653],3228,3164,3228,3227,3227,3164,[3228,9847],[3164,10036],[10037,9559],[3163,9652],[3161,9653],[4289,3099],4289,4289,4289,[4289,3288],[4289,3099],4288,4289,[4289,3033],3226,3164,3163,3228,3164,3164,3227,3163,3227,3225,[4289,2969],3226,3163,3163,3227,3228,[4289,3101],4289,[4289,3033],3226,3228,3228,[3228,9366],[4289,3101,9461],[3227,9462],[3164,9463],[3163,9464],[3164,9465],[3227,9557],3164,3163,3227,3227,3161,[4289,3100],4289,4384,[4289,3224],3164,3227,[3163,9562],[3163,9462],[3228,9465],[3163,9557],3164,3227,3227,3163,3164,3163,3227,3228,3227,3227,[3163,9562],[4289,9563],[4289,3160],3163,3227,3228,3164,3163,3228,3228,3164,3228,3164,3164,3164,3228,3228,3227,3227,3228,3164,[4289,3229],4289,4289,[4289,3224],[3227,9754],[3227,9755],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2625,2818,2497,2755,2561,2752,2753,2560,2817,2688,2688,2817,2560,2817,2752,2688,2624,2497,2819,2818,2561,2561,2497,2496,2752,2753,[2496,9682],[2819,9683],[403,10066,9584],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,10079,9983,9984,9985,[2560,9887],[2497,9791],2560,2496,2560,2755,[2755,9796],[2561,9888],[2497,9889],[2496,9791],2497,2497,2496,2560,[2561,9796],[2496,9892],9984,9985,9988,9989,[4768,9776],4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,4768,[4768,9583],[2496,9694],[2497,9695],2496,2818,2754,2818,2819,2755,2560,2560,2497,2560,2496,2818,2560,2496,2754,2497,2561,2819,2561,2819,2497,2561,2561,2818,[2755,3852],3917,3917,3919,3983,3919,3919,3918,[3917,9709],[3981,9710],[3918,10093,9515],3919,3981,3920,3981,3919,3920,3918,3918,3981,3981,3917,3918,3920,3917,3918,3983,[2832,3725],[2831,3728],[2831,3725],[2829,3729],[2832,3789],[2767,3728],3918,3917,3981,3919,3918,[2832,3921],[2766,694],[2767,695],[2768,3853],3920,3918,3920,3983,[2765,3793],[2768,3789],[2765,3728],[2830,3728],[2831,3728],3983,3983,3919,3920,3981,3983,3918,3983,3981,3917,3919,[2768,3856],2766,2766,[2832,3790],[2767,3725],3917,3918,[2767,3921],2767,2766,2768,[2832,694],[2829,695],2829,2766,2767,2768,2830,2832,[2829,3724],[2830,3728],3919,3917,3920,3981,[2829,3985],2829,2766,[2765,3980],3918,3981,3920,3918,3920,3981,3918,3917,3919,3919,3917,3918,3919,3983,3981,3918,[2767,3793],2768,2830,[2831,3854],[2831,3855],2829,2765,[2831,4044],3920,3917,3920,3919,3981,[3918,9575],[3981,9576],[9959,9477],[3955,10055],3954,4017,3700,3701,4019,3954,4018,3954,4019,4018,4020,3953,4020,3953,4018,[4017,9572],[3917,9761],[3919,9762],3919,3983,[3919,9767],[3918,9859],[3917,9860],[3981,9863],9959,[3956,10051],[4017,10052],[4017,10053],[4017,10054],[4019,10055],[3956,10147],[3954,10148],[3955,10050],9954,[3917,9858],[3920,9859],[3917,9860],[3919,9762],3981,3919,3983,3981,3919,3918,3917,3919,3917,3981,[2760,3921],2824,[2759,3790],3983,3983,3917,3983,3920,[3917,9517],[4024,9518],3448,4024,3577,4024,3447,4024,3961,4025,3575,4026,3959,3446,3448,3448,3578,3577,3575,3960,3446,4025,3577,4023,3449,3578,3446,4023,3578,3578,3446,3578,3574,[3511,9529],[3252,9530],3249,3186,[3249,5682],[3252,5683],[3251,5684],3185,3249,3187,3185,[3250,5581],[3250,5582],[3187,5583],[3188,5584],[3251,5585],3187,3188,3186,3251,3186,3188,3250,3187,3251,3186,3251,[3252,5485],[3188,5486],[3249,5487],[3250,5488],[3188,5489],3186,3251,3188,3249,3250,[3185,5581],[3250,5582],[3250,5583],[3186,5584],[3185,5585],3250,3187,3186,3251,3186,3252,3249,3185,[3250,5586],[3187,5587],[3187,5588],3188,3252,[3188,5581],[3249,5582],[3188,5583],[3249,5584],[3251,5585],3249,3185,3188,3251,3252,3252,3188,3185,3186,3187,3185,3188,3251,3187,3187,3185,3186,[3188,5485],[3188,5486],[3188,5487],[3188,5488],[3250,5489],3250,3188,3249,3186,3251,3252,3251,[3251,5490],[3185,5491],[3251,5492],3252,3251,3252,3251,3249,3185,3249,3251,3187,3250,3251,3252,3250,3251,3249,3185,3252,3249,3250,3252,3249,[3188,9535],[3186,9435,5490],[3250,9436,5491],[3188,9437,9754,5492],[3186,9438,9755],[3208,9656],3146,3146,3144,3209,3146,[3149,3147],3215,3214,[3213,3014],3210,3208,3208,3144,3145,3145,3144,[3208,10230],[3146,10231],3146,3209,3208,3145,3145,3145,3208,3146,3145,[3216,3147],3149,[3149,3206],3209,3208,3209,3144,[3216,3273],3145,3144,3209,3144,3145,3145,3144,3145,3208,3209,3210,3144,3208,3210,3208,3209,3208,3146,3209,3144,3145,3146,3145,3210,3208,3209,3210,3144,3144,3210,3208,[3150,3017],3215,[3149,3014],3209,3210,[3152,3147],3216,[3215,3015],3145,3146,3208,3145,3143,3209,[3145,10230],[3145,10231],[3146,10133,9655],[3227,9748],[3228,9749],3227,3228,3164,3227,3164,3164,3163,3163,[3163,10133,9655],[4289,3289,9748],[4289,3293,9749],4289,[4289,2968],[4289,3035],4289,4289,4289,[4289,3033],[4289,2969],3226,3163,3227,3227,3163,3228,3163,3161,[4289,3289],3162,3227,3228,3164,3164,3164,3163,3228,[4289,3165],4289,[4289,3032],3163,[3164,9460],[3163,9461],[3227,9462],[3227,9557],3228,3227,3163,3228,3227,3163,3163,3161,[4289,3289],[4289,3099],4289,[4289,3033],[4289,2969],3226,3227,3228,3227,3228,3227,3163,3227,3228,3164,3163,3163,3163,3228,3227,3227,3228,[3163,9658],[3225,9659],3226,3227,3163,3163,3227,3228,3164,3228,3227,3163,3161,[4289,3290],3162,3163,3163,3164,3228,3163,3164,3225,[4289,3035],4289,[4289,3097],[4289,3289,9850],[3163,9851],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2689,2752,2624,2752,2819,2561,2817,2816,2497,2560,2496,2624,2689,2752,2754,2689,2624,2497,2754,2819,2819,2818,2754,2819,2754,2819,[2818,9604],[2561,9605],[403,9584],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,10175,10079,10080,10081,9983,[2496,9887],[2561,9888],[2496,9889],[2496,9890],[2560,9891],[2496,9892],9984,9985,[2497,9887],[2561,9888],[2496,9889],[2561,9890],[2561,9891],[2496,9892],9988,10080,10081,10084,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9583],[2497,9790],[2754,9791],2819,2755,2755,2497,2754,2754,2497,2561,2560,2496,2755,2561,2561,2496,2754,2496,2755,2819,2496,2818,2754,2754,2561,2755,[2496,3916],3920,3983,3983,3981,3918,3981,3981,[3919,9613],[3919,9614],[3919,9611],3983,3918,3920,3918,3917,3918,3917,3918,3919,3918,3919,3917,3918,3917,3917,3981,3917,3981,3917,3983,3917,3981,3918,3918,3920,3917,3917,3983,[2768,3728],[2767,3729],2829,[2765,3980],3981,3981,3983,3918,3917,3981,3920,3920,3983,3919,3919,3920,3917,3983,3917,3981,3919,[2768,4048],[2832,3855],2767,[2765,3789],[2830,3726],3919,3917,3917,3983,3983,[2765,3725],[2829,3727],[2768,3791],2768,[2768,3724],[2831,3726],[2765,3725],[2829,3792],[2829,3790],[2830,3725],[2768,3729],[2768,3980],3918,3918,3918,3917,3919,3983,[2765,3792],2766,[2829,3853],3920,3920,3917,3918,3983,3917,3920,3919,3919,3918,3920,3917,3983,3920,3918,3981,[2830,3921],2830,2768,2830,2831,2765,2765,2768,[2832,3854],3920,3917,3920,3917,[3919,9671],[3919,9672],[3953,10055,9573],3954,3954,4020,3954,4020,3953,3955,4019,3956,4017,3954,3956,4018,4018,3954,4020,[3953,9668],9857,[3983,9858],[3981,9859],[3917,9860],[3983,9863],9955,9956,9959,[3953,10055],[3954,10147],[3953,10148],[3955,10149],[4018,10150],4020,4018,3956,4020,[4019,10050],9954,9955,9956,[3919,9858],[3919,9762],3917,3981,3983,3983,3981,3918,3917,3917,3919,[2823,3855],[2762,3790],3920,3919,3981,3981,3983,3917,[3917,9613],[3981,9614],[3575,9515],3578,3962,3446,4025,3575,3575,3576,3446,3577,4025,4026,4025,3577,4025,3961,3577,3446,3577,3447,3577,3447,3578,3447,3512,3448,3578,3962,3447,3512,3448,9721,[3252,9722],3252,3249,[3187,5778],[3251,5779],[3187,5780],3185,3249,3249,3186,[3188,5677],[3249,5678],[3186,5679],[3251,5680],[3187,5681],3249,3252,3249,3249,3185,[3187,5490],[3249,5491],[3186,5492],3252,3187,3188,[3187,5581],[3249,5582],[3188,5583],[3187,5584],[3186,5585],3251,3251,3188,3187,3251,[3251,5677],[3250,5678],[3185,5679],[3185,5680],[3185,5681],3252,3187,3188,3186,3187,3252,3250,3252,[3187,5682],[3250,5683],[3187,5684],3185,3249,[3250,5677],[3251,5678],[3250,5679],[3186,5680],[3187,5681],3185,3252,3249,3188,3249,3249,3250,3251,3185,3188,3188,3188,3250,3249,3186,3188,3252,[3251,5581],[3188,5582],[3252,5583],[3249,5584],[3249,5585],3188,3185,3186,3251,3185,3188,3188,[3251,5586],[3249,5587],[3252,5588],3251,3185,3186,3252,3187,3252,3250,3186,3185,3250,3251,3251,3252,3185,3188,3187,3251,3185,3250,3185,3185,3251,[3187,5586],[3250,5587],[3186,5588],[3252,9562],[3146,9563],3144,3144,3145,3146,3209,3208,[3214,3018],3150,[3151,3142],3144,3207,3208,3210,3145,3210,3146,3145,3146,3146,3208,3209,3145,3146,3210,3146,3210,3210,[3150,3275],[3152,3015],3210,3146,3208,3145,[3149,3081],3215,[3215,3014],3209,3146,3209,3210,3144,3209,3207,3146,3144,3146,3209,3208,3210,3210,3207,3145,3209,3208,[3152,3273],[3215,3274],3208,3144,3144,3145,3146,3209,3145,3146,3210,3209,[3149,3019],3215,[3150,3078],3146,3145,[3152,3082],3151,[3150,3014],3210,3146,3209,3209,3146,3144,3145,3209,[3208,9655],[3210,9652],[3163,9653],3228,3163,3227,3228,3164,3164,3164,3161,[4289,3291,9655],[4289,9652],[4289,9653],4289,[4289,3224],3225,[4289,2970],[4289,2971],[4289,2972],3226,3164,3163,3163,3163,3164,3161,[4289,3289],[4289,3290],[4289,3099],4289,[4289,3032],3164,3163,3227,3163,3163,3227,3228,[4289,3229],4384,[4289,3096],3163,[3163,9556],[3228,9557],3228,3227,3163,3163,3163,3164,3164,3161,[4289,3289],[4289,3100],4289,4289,[4289,2968],3226,3164,3164,3164,3227,3164,3164,3227,3164,3163,3228,3228,3227,3227,3163,3228,3227,3227,3228,3228,[3228,9562],[3163,9563],[3164,9366],[3163,9367],[3164,9368],[3227,9369],3227,3164,3161,[4289,3289],[4289,3290],[4289,3099],4289,[4289,3098],3162,3164,3227,3163,3228,3227,3227,3225,[4289,2972],[4289,2973,9658],[4289,9659],[9947,9560],9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2625,2688,2561,2624,2560,2818,2816,2688,2752,2688,2755,2816,2755,2624,2561,2688,2754,2817,2561,2496,2754,2497,2754,2496,2497,2819,[2560,9700],[2496,9701],[403,9680],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,10176,10177,10079,9983,9984,9985,9986,9987,9988,10080,10081,9983,9984,9985,9986,9987,9988,10084,10176,10177,10180,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9679],9886,[2497,9887],[2560,9791],2497,2560,2755,2818,2755,2497,2560,2560,2754,2497,2819,2560,2560,2496,2561,2818,2560,2819,2497,2497,2818,[2754,3724],[2561,3725],3917,3919,3917,3920,3920,3919,3917,3981,[3981,9709],[3918,9710],[3981,9707],3983,3917,3983,3983,3919,3919,3918,3917,3983,3918,3919,3918,3983,3919,3920,3920,3983,3919,3919,3920,3983,3917,3918,3917,3919,3981,3917,3981,3920,3983,[2832,3725],3983,3917,3918,3981,3918,3919,3920,3918,3917,3919,3917,3918,3919,3919,3919,3919,[2832,4046],[2766,3855],2766,2768,[2832,3789],3917,3920,3981,3981,3981,3917,3920,3920,3918,[2765,3985],2832,[2829,4044],3920,3981,3983,3983,3920,3983,3917,3983,3983,3981,3917,3918,3918,3983,[2768,3729],2768,[2767,3980],3917,3918,3919,3981,3917,3918,3920,3920,3918,3920,3920,3920,3918,3919,[2830,4048],[2829,3855],2768,2766,[2832,3789],[2829,3726],[2767,3728],[2831,3725],[2766,3729],2832,[2829,3980],3917,3920,3920,[3918,9767],[3918,9768],[3955,9573],3956,3953,4019,4020,4019,3954,3572,3953,4020,3954,3953,4018,4017,3954,4017,3956,[3955,9764],[4019,9953],9954,9955,9956,9959,[4018,10051],[4018,10052],[3954,10055],4017,3953,4019,4020,3954,3953,4020,3953,4017,3440,[4017,10050],[3954,10051],[3956,10052],9954,[3919,9858],[3920,9762],3983,3919,3917,3981,3983,3918,3918,[2762,3793],2823,[2760,3788],3917,3981,3918,3918,3981,3983,[3920,9805],[3920,9806],[3446,9611],3960,3959,3446,3446,3448,3448,3448,4026,4025,3578,3576,4026,3578,3577,3960,4024,3448,4025,3448,4026,3446,3446,3640,3641,3447,3446,4026,4023,3447,3574,9817,[3250,9818],3185,3250,3249,3187,3188,3249,3250,3251,3188,[3252,5773],[3252,5774],[3186,5775],[3250,5776],[3249,5777],3250,3251,3251,3187,3250,[3252,5586],[3250,5587],[3188,5588],3251,3252,3251,[3250,5677],[3251,5678],[3249,5679],[3187,5680],[3252,5681],3252,3249,3250,3186,3250,[3251,5773],[3252,5774],[3250,5775],[3185,5776],[3185,5777],3252,3251,3188,3252,3188,3188,3250,3249,[3186,5778],[3249,5779],[3249,5780],3250,3252,[3186,5773],[3187,5774],[3188,5775],[3249,5776],[2928,3313,5777],3185,3185,3185,3250,3186,3252,3252,3185,3249,[3249,5490],[3185,5491],[3187,5492],3186,3251,3187,3251,3252,[3188,5677],[3187,5678],[3188,5679],[3252,5680],[3251,5681],3250,3188,3185,3185,3251,3188,3188,[3252,5682],[3252,5683],[3250,5684],3185,3249,3251,3186,3187,3249,3252,3249,3187,3185,3252,3186,3186,3252,3252,3188,3250,3185,3188,3187,3186,3187,[3188,5682],[3185,5683],[3250,5684],3252,[3250,9562],[3146,9563],3144,3209,3146,3209,3208,[3149,3019],3213,[3215,3079],3208,3208,3145,3209,3208,3146,[3214,3273],[3216,3274],3145,3210,3144,3145,3144,3144,3146,3209,3210,[3216,3019],3214,[3150,3014],3210,3146,3208,[3214,3019],3152,3149,[3213,3142],3146,3145,3209,3144,3210,3146,3210,3146,3209,3209,3210,3208,3145,3146,3209,3208,3209,[3151,3082],3151,3213,[3150,3014],3146,3210,3210,3144,3208,3208,3209,3145,3209,[3151,3083],3150,[3152,3142],3146,[3214,3211],3216,3151,[3150,3078],3144,3145,3145,3208,3145,3145,3144,3145,[3144,9655],[3144,9844],[3164,9845],3163,3164,3228,3164,3161,[4289,3291],[4289,3292],[4289,3099],[4289,9655],[4289,2969,9748],[4289,2971,9749],[4289,2972],3226,3164,3227,3227,3163,3163,3163,3227,3228,3163,3164,[4289,3037],4289,4289,4288,4289,[4289,3160],3163,3163,3163,3228,3228,3164,3163,[4289,3037],4289,[4289,3160],3163,[3164,9652],[3228,9653],3164,3227,3163,3227,3228,3228,3228,[4289,3229],4289,4289,4288,[4289,3034],3226,3227,3227,3228,3227,3227,3227,3164,3163,3227,3227,3163,3228,3163,3163,3227,3164,3164,3227,3164,3228,3163,[3228,9562],[3228,9462],[3228,9463],[3164,9464],[3163,9465],[4289,3292,9466],[4289,3291],[4289,3099],4289,4289,4289,4289,4289,[4289,3224],3227,3228,3164,3164,3163,3228,3164,3164,[3225,9754],[3226,9755],[10043,9656],9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2755,2817,2752,2816,2497,2496,2688,2755,2754,2497,2561,2817,2496,2752,2819,2819,2755,2496,2819,2624,2819,2755,2754,2819,2754,2497,2560,[2497,9508],[2755,9412],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,10175,10079,10080,10081,10082,10083,10084,10176,10177,10079,10080,10081,10082,10083,10084,10180,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9775],9982,9983,[2818,9887],[2818,9791],2561,2560,2497,2819,2561,2818,2497,2496,2561,2755,2496,2560,2818,2560,2497,2755,2754,2560,2818,[2819,3789],3917,3917,3919,3918,3981,3983,3918,3918,3917,3981,3917,[3919,9517],[3981,9421],3920,3919,3983,3983,3919,3919,3919,3917,3981,3918,3983,3983,3919,3920,3918,3918,3918,3983,3919,3919,3917,3917,3918,3981,3983,3918,3920,3919,3981,3983,3917,3981,3918,3919,3919,3917,3983,3917,3919,3983,3919,3917,3918,3917,3981,3981,[2829,3793],2830,2832,[2766,3724],[2831,3727],3920,3981,3918,3917,3983,3981,3920,3920,3981,[2768,4047],[2768,3856],2830,2765,[2831,3788],3919,3919,3983,3917,3917,3981,3918,3920,3981,3918,3917,3918,3917,[2767,3985],2832,[2765,3854],3920,3981,3981,3917,3919,3918,3981,3918,3981,3917,3983,3919,[2832,4045],[2829,3856],2767,2830,[2767,3789],[2832,3726],3917,3981,3917,3983,3983,[2767,3728],3917,3920,3981,[3917,9767],[3917,9863],9864,[3955,9669],3953,4017,4018,3955,3955,3953,4018,3953,4020,4017,4020,3956,3954,3956,3442,3953,3956,4019,[3955,10050],[4018,10051],[3956,10052],[4017,10055],[3953,10147],[4018,10148],4019,4020,4017,3956,3955,4020,4019,3954,4019,3954,3954,3443,[4017,10147],[3956,10148],[3954,10050],9954,[3919,9858],[3983,9762],3920,3919,3919,3981,3917,3918,[2762,3857],2825,[2825,3852],3920,3981,3919,3918,3920,[3917,9805],[3983,9901],9902,[3960,9707],4024,4026,4026,3447,4024,4024,3577,3448,4026,3577,3577,3578,3959,3578,3960,3512,4023,3511,4026,3446,3961,4023,3704,3705,4024,3962,3576,3447,4023,3446,9913,9914,[3187,9818],3249,3249,3187,3252,3252,3188,3186,3185,[3252,5869],[3186,5870],[3249,5871],[3187,5872],[3188,5873],3250,3252,3187,3250,3251,[3188,5682],[3251,5683],[3188,5684],3251,3251,3249,[3252,5773],[3251,5774],[3252,5775],[3250,5776],[3249,5777],3185,3185,3187,3186,3185,[3188,5869],[3250,5870],[3187,5871],[3188,5872],[3187,5873],3188,3185,3252,3186,3187,3185,3187,3188,3185,3188,3187,3250,3188,[3187,5869],[3186,5870],[3252,5871],[2928,3123,5872],[2928,5873],[2928,3056],3187,3252,3186,3187,3188,3187,3249,3249,[3186,5586],[3185,5587],[3186,5588],3251,3185,3188,3187,3187,[3250,5773],[3188,5774],[3185,5775],[3250,5776],[3187,5777],3187,3188,3252,3188,3250,3251,3250,[3186,5778],[3185,5779],[3185,5780],3186,3250,[2928,3316],3188,3251,3249,3187,3188,3252,3186,3188,3251,3251,3250,3250,3187,3251,3186,3187,3186,3251,3252,[3251,5778],[3185,5779],[3187,5780],3187,[3252,9658],[3188,9659],[3210,9560],3210,3146,3208,3144,[3150,3147],3152,3215,[3151,3206],3210,3210,[3151,3273],[3149,3274],[3151,3081],3152,3215,[3214,3206],3209,3209,3145,3144,3208,3209,3145,3146,[3149,3083],3213,[3213,3078],3144,3144,3145,[3216,3147],3216,3149,[3149,3270],3209,3146,3209,[3216,3272],[3213,3273],[3216,3274],3146,3210,3145,3210,3209,3145,3210,3144,3145,3145,[3216,3019],3149,3216,3149,[3152,3142],3146,3208,3208,3210,3144,3209,3145,3145,3145,[3215,3147],3149,[3150,3206],3208,3144,[3214,3018],3151,[3151,3142],3208,3144,3144,[3149,3272],[3213,3273],[3215,3274],3145,3209,[3210,9751],9940,[3228,9941],[3164,9845],3161,[4289,3289],[4289,3290],[4289,3099],4289,4289,4289,[4289,9655],[3227,9844],[3163,9845],3227,3227,3227,3227,3228,3164,3228,3164,3228,3164,3228,3164,[4289,3101],4289,4289,4289,[4289,3034],3226,3164,3228,3163,3228,3228,3228,3228,[4289,3101],4289,[4289,3288],3162,[3228,9748],[3163,9749],3164,3227,3227,3164,3164,3163,3228,3225,[4289,2970],[4289,2971],[4289,2972],3226,3227,3164,3227,3228,3228,3227,3161,[4289,3289],3162,3228,3163,3164,3227,3227,3228,3227,3163,3163,3228,3227,3228,3228,3164,3228,3163,3163,3163,[3228,9562],[4289,9466],4289,4289,4289,4289,4289,[4289,3034],3226,3164,3228,3164,3227,3227,3228,3227,3164,[3228,9850],[3164,9851],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2561,2819,2689,2752,2497,2755,2754,2755,2752,2496,2819,2752,2497,2561,2560,2625,2624,2818,2561,2689,2818,2560,2755,2819,2819,2754,2561,2561,[2819,9508],[2496,9509],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,10175,10176,10177,10178,10179,10180,403,403,10175,10176,10177,10178,10179,10180,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,10079,9983,[2561,9887],[2755,9791],2818,2818,2561,2754,2561,2818,2818,2819,2496,2560,2755,2496,2560,2818,2818,2561,2755,2560,[2496,3980],3983,3983,3983,3983,3917,3920,3917,3983,3918,3920,3981,3983,[3983,9517],[3917,9518],[3983,9321],[3918,9322],[3983,9323],[3981,9324],3918,3919,3983,3920,3919,3917,3918,3919,3918,3981,3919,3983,[3919,9321],[3981,9322],[3981,9323],[3981,9324],[3981,9321],[3917,9322],[3920,9323],[3917,9324],3920,3917,3917,3919,3919,3983,3920,3981,3917,3919,3981,3981,3920,3920,3983,3983,3981,3917,3981,3918,3920,[2832,3921],2767,[2767,3789],3918,3983,3983,3981,3920,3918,3917,3983,3917,3920,3981,[2767,3727],[2830,3792],2767,2832,[2829,3916],3917,3981,3981,3918,3917,3983,3983,3981,3981,3983,3918,3917,3917,3983,[2829,3729],2832,[2766,3980,566],[3919,567],3920,3918,3981,3919,3920,3920,3983,3983,3919,[2766,3855],2832,2767,2829,[2766,3789],3920,3981,3918,3920,3981,3981,3981,3919,3917,3920,[3920,9575],[3918,9576],[9959,9477],[3953,9960],[4019,3724,9765],[3956,3725],[4020,3726],[4017,3727],[4017,3728],[3953,3729],4017,3955,4017,4018,4018,3954,3956,3953,3955,3953,4018,4019,4019,4018,[3956,10147],[3956,10148],3954,4017,3953,3955,4017,3956,4020,4018,3956,4017,3953,3953,3956,4019,3954,3953,3953,4020,[3954,10050],9954,[3919,9858],[3920,9859],[3918,9860],[3983,9762],3919,3918,3919,[2823,3921],2823,[2825,3916],3918,3983,3920,3918,[3918,9613],[3917,9614],[9997,9515],[3576,9998],[4024,9803],3577,3446,3575,3577,4023,3512,3447,3512,3513,4026,4026,4023,4025,3960,3577,3578,4025,3959,3448,3961,3447,3512,4023,3510,3447,3961,3960,3447,3574,4023,[3575,10009],10010,[3187,9625],[3249,9626],3252,3185,3188,3252,3186,3250,3187,3250,[3186,5966],[3188,5967],[3188,5968],3249,3188,3186,3187,3250,3185,[3188,5778],[3188,5779],[3252,5780],3250,3250,3185,[3188,5869],[3252,5870],[3252,5871],[3250,5872],[3187,5873],3188,3249,3250,3185,3187,3251,[3250,5966],[3186,5967],[3188,5968],3186,3250,[3251,9823],[3252,9917],[3249,9918],[3185,9915],[3186,9916],[3186,9818],3185,3251,3185,3186,3250,3185,3250,[3251,5966],[2928,3317,5967],[2928,5968],2928,[2928,3184],3185,3185,[3250,5485],[3251,5486],[3249,5487],[3249,5488],[3186,5489],3187,[3250,5682],[3186,5683],[3249,5684],3250,3187,3188,3185,3185,[3186,5869],[3251,5870],[3251,5871],[3251,5872],[3249,5873],3187,3187,3186,3185,3252,[3185,9339],[3251,9340],[3250,9341],[3185,9342],[3251,9339],[3250,9340],[2928,3061,9341],[2928,9342],[2928,3056,9339],[3186,9340],[3186,9341],[3187,9342],3252,3185,3186,3251,3187,3250,3252,3188,3249,3187,3249,3251,3252,3252,3251,3252,3185,3250,3252,[3185,9754],[3251,9755],[3210,9656],3208,3209,3209,3210,3144,[3216,3017],3213,[3215,3014],3144,[3150,3082],3151,3151,3150,[3151,3015],[3214,2951],3209,3146,3208,3209,3209,3209,3145,3145,3210,[3216,3147],3213,[3150,3142],3144,3208,3146,3209,[3151,3017],3214,3151,[3216,3079],[3214,3273],[3216,3081],3214,3149,3152,[3215,3079],[3216,3273],[3149,3274],3210,3209,3208,3210,3146,3145,3210,[3152,3147],3213,[3214,2950],[3214,2951],3146,3145,3145,3144,3209,3145,3146,3208,3146,3208,[3213,3082],3150,[3149,3079],[3149,3271],[3213,3272],[3152,3275],3213,[3216,3079],[3213,3272],[3150,3273],[3216,3081],3151,3151,3151,[3152,3014],3210,[3146,9847],[3208,10036],10037,[3163,9941],[4289,3099,9845],4289,4289,4289,4289,[4289,3034],[4289,3035],[4289,3034,9751],9940,[3163,9941],[3227,9845],3227,3163,3163,3163,3227,3228,3228,3164,3228,3164,3163,[4289,3165],4288,4289,[4289,2968],3226,3164,3163,3227,3227,3163,3227,3163,3164,[4289,3165],4289,[4289,9460],[4289,3098,9461],[3164,9557],3228,3164,3227,3227,3164,3227,3227,3164,3163,3163,3164,3164,3163,3228,3228,3227,3164,3164,3228,3225,[4289,3036],[4289,3098],3162,3227,3228,3228,3227,3227,3228,3163,3164,3163,3164,3228,3163,3227,3164,3227,3163,3164,3227,[3228,9562],[4289,9563],4289,4289,[4289,2968],[4289,2969],3226,3227,3228,3228,3163,3163,3163,3227,3164,[3228,9850],[3228,9946],9947,9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2816,2560,2817,2496,2752,2496,2752,2688,2624,2560,2754,2624,2688,2624,2754,2818,2560,2752,2816,2561,2819,2819,2496,2818,2561,2819,2560,2560,2819,[2819,9508],[2561,9412],9312,9315,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,10175,10079,[9983,9505],[2496,9598],[2818,9599],2818,2819,2819,2496,2755,2497,2624,2625,2624,2625,2819,2819,2754,2497,2560,2497,2754,[2818,4044],[2754,4045],[2496,4046],[2754,4047],[2496,4048],3917,3983,3981,3918,3983,3917,3918,3920,3918,[3919,9517],[3917,9417],[3920,9418],[3917,9419],[3917,9420],[3983,9421],3983,3918,3920,3919,3917,3981,[3917,9321],[3920,9322],[3920,9323],[3919,9324],[3981,9416],[3920,9417],[3983,9418],[3918,9419],[3983,9420],[3918,9417],[3920,9418],[3918,9419],[3919,9420],[3983,9421],3920,3919,3981,3983,3919,3919,3920,3917,3983,3981,3983,3983,3981,3918,3917,3917,3917,3920,3917,3920,[2767,3985],2831,[2832,3788],3981,3920,3919,3917,3981,3981,3981,3918,3920,3920,3917,3919,[2766,3855],2829,[2829,3790],3919,3917,3920,3981,3920,3983,3981,3917,3920,3919,3920,3918,3983,3918,3920,[2830,3985],2829,[2766,3853,630],[2765,3856,631],[2766,3854],[2829,4047],[2765,4048],[2830,3855],[2765,4044],[2767,4045],[2832,4046],[2767,4047],[2831,3855],2768,2829,[2829,3790],[2830,3791],[2831,3854],3920,3981,3918,3918,3981,3983,3917,3983,3920,3981,[3981,9671],[3920,9672],[4019,10055,9573],[4018,10056],[4017,3980],3919,3920,3917,3981,[4020,3855],4018,3953,4020,4019,3636,3637,4018,3956,3955,3954,3953,4018,3956,4018,4020,3572,4017,3955,4017,3953,3956,4020,3440,3953,4017,3636,3637,3954,3953,4020,3955,3956,3955,3953,3955,[4019,10050],9954,9955,9956,[3920,9858],[3919,9762],3983,3920,[2760,3985],2825,[2825,4044],3920,3981,3919,3983,[3918,9709],[3983,9710],[4025,10093,9611],3576,3448,3512,4024,3448,3446,4025,3961,3510,3448,3578,4024,3510,3448,[3574,303],304,305,305,[3960,306],3576,3448,3960,4023,3448,4025,3449,3578,3578,4026,3448,4024,4023,4026,[3448,10106],[3186,9721],[3188,9722],3187,3187,3252,3250,3187,3249,3185,3251,3250,[3185,9823],[3187,9915],[3249,9916],[3251,9917],[3187,9918],[3252,9818],3252,3251,3186,3185,3250,3250,[3185,9823],[3185,9917],[3251,9918],[3249,9818,5966],[3252,5967],[3188,5968],3250,3188,3187,3252,3188,3249,3250,3188,3249,3188,3188,[3250,9823],[3186,9919],10013,10014,10011,10012,[3249,9914],[3249,9818],3252,3188,3249,3185,3188,3251,[2928,3124],2928,2928,[2928,3057],3188,3250,3188,[3249,5581],[3250,5582],[3252,5583],[3186,5584],[3187,5585],3187,[3188,5778],[3249,5779],[3187,5780],3188,3186,3187,3188,3251,3250,[3250,5966],[3187,5967],[3187,5968],3185,3251,3186,3188,3252,[3252,9434],[3186,9435],[3188,9436],[3251,9437],[3185,9438],[3252,9435],[3188,9436],[2928,3125,9437],[2928,9438],[2928,3184,9435],[3187,9436],[3185,9437],[3249,9438],[3187,9439],3250,3185,3251,3249,3185,3186,[2928,3315],[2928,3316],3249,3251,3252,3185,3187,[2928,3316],3187,3251,[3187,5485],[3187,5486],[3188,5487],[3251,9562,5488],[3144,9466,5489],3146,3144,3209,3210,3207,3144,[3150,2955],[3214,3142],[3149,3211],3214,3216,[3215,3015],[3214,2951],3144,3145,3209,3208,3146,3146,3209,3208,3146,3146,3144,[3216,3211],3150,[3213,3079],3145,3207,3145,3145,3145,[3152,2951],[3214,2955],3216,3150,3215,3216,[3213,3015],[3214,3017],3213,3151,3149,[3213,3079],3209,3210,3145,3210,3144,[3149,3274],[3213,3275],[3149,3015],3209,3145,3210,3145,3146,3145,3144,3146,3144,3210,3208,[3152,3019],3213,3149,3213,3214,3150,3215,3150,3152,3213,3216,3151,[3215,2950],[3151,3017],3213,[3150,3142],3145,3209,3144,[3146,10133],[10037,9559],[4289,3035,9652],[4289,9653],4289,[4289,3034],[4289,2969],3226,3225,[3226,9847],[3227,10036],[10037,9559],[3163,9652],[3164,9653],3164,3227,3228,3228,3228,3228,3161,[4289,3291],[4289,3292],3162,3225,[4289,2970],[4289,2971],3226,3228,3164,3163,3228,3163,3164,3163,3164,3163,3225,[4289,3035],[4289,9556],[3227,9557],3164,3164,3227,3164,3227,3227,3228,3163,3227,3227,3227,3164,3163,3228,3227,3164,3163,3163,3164,3228,3164,3225,[4289,2973],[4289,3288],3162,3163,3164,3228,3164,3164,3228,3163,3227,3228,3163,3228,3227,3163,3227,3164,3227,3163,3163,[3164,9562],[4289,9466],4289,[4289,3097],3162,3163,3227,3164,3161,[4289,3289],3162,3228,3164,[3163,9850],[3227,9946],10042,10043,9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2625,2816,2689,2819,2561,2752,2816,2496,2561,2755,2688,2817,2819,2496,2560,2496,2752,2561,2624,2819,2497,2560,2560,2496,2561,2561,2818,2819,2496,2561,[2755,9508],[2818,9408],[2754,9411],[2754,9412],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,10175,[10079,9601],[2561,9694],[2561,9695],2819,2561,2497,2754,2755,2496,2688,2689,2688,2689,2755,2496,2497,2754,2818,2755,2755,2496,2561,2754,2560,2818,[2819,3853],3920,3983,3983,3981,3920,3983,3917,3917,3918,3981,3983,3918,3917,[3920,9517],[3918,9518],[3918,9321],[3983,9322],[3981,9323],[3918,9324],[3920,9416],[3920,9417],[3981,9418],[3919,9419],[3981,9420],[3919,9512],3919,3919,3983,3917,3983,3981,3918,3918,[3917,9517],[3918,9421],3919,3920,3920,3981,3919,3981,3918,3917,3918,3981,3919,3983,3920,3918,3917,3917,3981,3920,3983,[2832,3793],2829,[2832,3916],3918,3918,3981,3919,3918,3919,3919,3983,3920,3918,3918,[2765,3793],2831,2767,[2766,3980],3918,3983,3919,3917,3981,3917,3920,3983,3981,3983,3981,3918,3981,3920,3917,3983,[2767,3791],[2766,694],[2767,695],2766,2765,2831,2765,2768,2768,2832,2830,2768,2830,[2831,3789],3919,[2830,3985],[2766,3790],3918,3983,3920,3917,3919,3917,3917,3983,3917,3983,[3919,9575],[3955,3793,9576],[3953,9669],[4020,3789],3983,3981,3920,3920,[4019,3855],4018,4018,3956,4018,3440,3700,3701,4020,3955,3954,4019,3954,4020,4020,3440,4017,3955,4018,3955,4018,3953,4019,3956,3953,3953,4018,3700,3701,3955,4017,3955,3955,3956,4018,3954,3956,3956,[4017,10050],[3956,10051],[4019,10052],[9954,9476],[3981,9569],[3920,9570],3983,[2826,3985],2759,2826,[2823,3980],3983,3918,3917,3983,[3983,9517],[3512,9421],3510,3962,3959,3577,3578,4024,3448,3960,[4023,429],[3962,486],[3574,486],[3446,486],[3576,486],[4024,486],[3959,486,303],304,305,305,[3574,486,306],[4023,486],[3448,486],[4024,486],[4025,486],[4025,486],[3510,422],[4024,430],4026,3577,3960,3447,4023,4024,3962,3960,[3187,9625],[3185,9626],3188,3252,3250,3187,3252,3250,[3187,9823],[3186,9915],[3249,9916],[3251,9919],10011,10012,10013,10014,[3186,9914],[3249,9818],3249,3188,[3249,9823],[3188,9915],[3186,9916],[3252,9919],10013,10014,[3251,9914],[3251,9818],3251,3250,3185,3250,3187,3251,3186,3252,3187,3186,3187,[3187,9823],[3186,9919],10015,[3187,10109],[3187,10110],[3252,10107],[3249,10108],10010,[3188,9914],[3252,9818],3186,3250,3186,3188,[2928,3061],2928,2928,[2928,2992],3249,3251,3251,3249,[3249,5677],[3249,5678],[3252,5679],[3186,5680],[3188,5681],3186,3186,3186,3250,3250,3249,3249,3188,3250,3185,3185,3185,3250,3249,3188,3252,3252,[3187,9529],[3186,9530],3252,3249,3187,3185,3249,3251,[2928,3189],2928,[2928,3121],3252,3186,3188,[3252,9535],[3252,9536],3185,3250,3250,3187,[2928,3253],2928,[2928,9339],[2928,3248,9340],[3251,9342],3188,3250,[2928,3061],2928,[2928,3121],3188,[3250,5581],[3249,5582],[3188,5583],[3249,5584],[3186,9562,5585],[3208,9466],3144,3208,3146,3210,3144,[3216,3081],[3152,3270],[3216,3275],3151,[3152,2950],3210,3145,3146,3144,3146,3145,3144,3210,3209,3146,3209,3144,3145,3210,[3216,3017],3213,[3150,3014],3146,3146,3144,3210,3208,3146,[3216,2952],[3151,2953],[3213,2954],[3149,3018],[3151,3014],3210,[3213,2951],[3151,2955],3213,3152,[3152,3080],[3215,3273],[3213,3274],3208,[3150,3211],3152,3150,[3215,3014],3210,3208,3146,3210,3210,3209,3209,3209,3208,3210,3210,[3215,3083],3216,3214,[3150,3015],[3152,2952],[3150,2953],[3214,2954],[3214,2955],3215,3152,[3216,2950],[3215,2951],3210,3146,[3213,2951],3145,3146,3146,3145,3144,[3146,10133,9655],[3225,9748],[4289,2970,9749],[4289,2971],3226,3163,3164,3163,3228,3163,[3227,10133,9655],[3164,9748],[3164,9749],3164,3163,3228,3164,3161,[4289,3291],[4289,3293],4289,4289,[4289,3224],3164,3164,3164,3228,3227,3164,3161,[4289,3289],3162,3227,3227,3163,3163,3228,[3225,9556],[3163,9557],3227,3164,3227,3163,3164,3163,3227,3227,3228,3227,3227,3227,3163,3164,3228,3164,3227,3164,3227,3163,3227,3228,3163,3225,[4289,2969],3226,3227,3163,3164,3228,3163,3228,3164,3164,3228,3228,3227,3163,3163,3228,3228,3163,3163,3227,3228,[3164,9562],[4289,9563],[4289,3033],3226,3163,3228,3161,[4289,3099],4289,[4289,3288],[4289,3289],[4289,3290,9754],[3162,9755],[10042,9560],10138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2688,2819,2560,2752,2754,2816,2816,2752,2624,2689,2818,2816,2817,2496,2819,2817,2624,2560,2689,2624,2819,2561,2497,2560,2755,2496,2560,2754,2755,2560,2819,2754,[2561,9604],[2560,9605],[403,9488],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[10175,9601],[2755,9598],[2754,9599],2560,2818,2561,2497,2496,2755,2752,2753,2752,2753,2819,2818,2561,2818,2755,2819,2818,2497,2755,2561,2561,2561,2496,[2819,3788],3981,3983,3918,3983,3917,3981,3919,3981,3917,3917,3983,3983,3918,[3983,9517],[3983,9417],[3917,9418],[3981,9419],[3981,9420],[3981,9512],3919,3981,3981,3983,3919,3917,3917,3920,3919,3917,3920,3919,3920,3918,[3983,9517],[3917,9421],3983,3918,3919,3919,3920,3919,3981,3981,3919,3917,3917,3981,3920,3983,3920,3981,3918,3920,[2765,3921],2766,[2829,3980],3918,3917,3919,3983,3918,3918,3981,3920,3983,3919,3981,[2765,3921],2768,[2830,3790],3983,3983,3918,3981,3983,3919,3981,3983,3919,3983,3919,3918,3920,3983,3917,3981,3919,3983,[2831,3725],[2768,3726],[2832,3727],[2767,3728],[2767,3725],[2767,3726],[2830,3727],[2766,3728],[2831,3725],[2830,3726],[2766,3727],[2832,3728],3981,3919,3983,3919,3918,3983,3917,3981,3981,3917,3919,3983,3981,3981,3917,[4018,3857,9479],[4018,9480],[4020,3980],3917,3917,3919,[4020,3985],3443,4019,4020,3955,3955,3955,4019,3953,4017,3572,3507,4018,4020,3953,4019,3956,4017,3954,4017,4018,3956,4019,3953,3956,3953,4018,3956,3954,3953,3955,4020,4017,4020,3955,4019,4018,4017,3954,4019,[3955,10147],[4017,10148],[4019,10050,9572],[3918,9665],[3917,9666],3918,3983,[2761,3726],[2824,3725],3981,3917,3983,3917,3919,3919,[3920,9517],[4025,410,9518],[4025,411],[3448,412],[4026,413],[4026,414],[3959,538],[4024,539],[3962,540],[3577,487],409,409,409,409,409,[409,303],304,305,305,[409,306],409,409,409,409,409,409,[4025,485],[3959,486],[4026,541],[3962,542],[3448,410],[3512,411],[4023,412],[4023,413],[3576,414],[3187,9721],[3249,9722],3187,[3187,9823],[3250,9915],[3185,9916],[3250,9917],[3251,9918],[3249,9919],10011,10012,10015,[3249,10107],[3249,10108],[3251,10109],[3249,10110],10010,[3187,9914],[3251,9915],[3250,9916],[3186,9919],10011,10012,10015,[3186,10109],[3185,10110],10010,[3250,9914],[3185,9818],3250,3187,3185,[3186,5490],[3251,5491],[3250,5492],3249,3252,3250,[3250,9823],[3187,9919],10015,[3186,10111],[3252,10205],[3187,10206],[3187,10203],[3250,10204],[3249,10106],10010,[3251,9914],[3251,9818],3249,3185,3249,[2928,3189],2928,2928,[2928,3248],3252,3249,3249,3250,[3250,5773],[3186,5774],[3251,5775],[3250,5776],[3251,5777],3251,3250,3186,3185,3185,3252,3185,3250,3251,3251,3249,3249,3252,3187,3250,[2928,3123],[2928,3248,9532],[3250,9625],[3251,9626],3252,3251,3188,3252,3185,3186,3249,[2928,3060],2928,[2928,3312],[2928,3313],3187,3185,[3252,9535],[3251,9439],3251,3186,3249,[2928,3123],[2928,9434],[2928,3057,9435],[3249,9436],[3186,9438],[3249,9439],3185,[2928,3189],2928,2928,[2928,3312],[2928,3313,5677],[3186,5678],[3188,5679],[3187,5680],[3250,5681],[3187,9562],[3208,9563],3145,3209,3210,[3151,3211],3150,3215,3213,3152,[3215,3270],3210,3210,3208,3209,3144,3145,3145,3145,3208,3208,3145,3210,3208,3146,[3215,3019],3214,[3152,3078],3146,3209,3145,3146,3210,3146,3145,3209,[3215,3274],[3149,3082],[3215,3078],3145,3209,3210,[3216,3017],3149,3215,3214,3215,[3213,3270],[3151,3082],3213,3150,[3152,3142],3146,3208,3145,3208,3209,3144,3210,3144,3209,3210,3209,[3216,3147],3216,3152,[3152,3206],3208,3145,3209,3209,[3151,3017],3215,[3150,3079],3144,3210,3208,3144,3208,3209,3144,3145,3146,[3144,9751],[3163,9748],[3163,9749],3228,3228,3164,3164,3228,3163,3163,[3163,9556],[3163,9557],3228,3227,3227,3228,3163,[4289,3229],4289,4289,4289,[4289,3033],3226,3227,3228,3163,3161,[4289,3291],[4289,3292],[4289,3099],4289,[4289,3098],[4289,3289],[4289,3290],3162,3228,3164,[3227,9652],[3163,9653],3164,3164,3164,3228,3163,3164,3227,3163,3227,3163,3164,3164,3164,3228,3227,3163,3228,3164,3228,3164,3163,3228,3227,3164,3164,3227,3228,3228,3227,3163,3163,3164,3227,3163,3163,3228,3164,3227,3163,3227,3164,3163,3228,3228,3164,[3164,9754],[3225,9755],3226,3163,3164,3228,[4289,3229],4289,4288,4289,4289,[4289,9658],[4289,3097,9659],[10138,9656],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2625,2819,2497,2689,2752,2752,2754,2688,2496,2818,2624,2816,2561,2560,2688,2752,2496,2754,2754,2816,2754,2819,2560,2561,2624,2625,2560,2755,2497,2818,2818,2754,[2754,9700],[2755,9701],[403,9584],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9601],[2818,9694],[2755,9695],2755,2754,2496,2754,2496,2560,2561,2819,2754,2497,2497,2561,2755,2497,2818,2819,2818,2497,2561,2496,2560,2754,2561,[2819,3916],3918,3917,3981,3920,3981,3918,3981,3919,3919,3981,3920,3917,3918,3917,3920,3981,3981,3918,3919,3918,3918,3918,3981,3983,3920,3917,3920,3919,3983,3981,3918,3920,3917,3919,[3981,9517],[3981,9518],3920,3919,3920,3917,3981,3918,3983,3918,3920,3981,3919,3983,3918,3983,3983,3983,3981,[2766,3985],[2832,3789],3981,3919,3919,3981,3918,3919,3983,3920,3983,3918,3918,3919,3981,[2830,3728],3919,3983,3918,3920,3919,3920,3919,3918,3919,3981,3981,3917,3983,3917,3981,3981,3981,3918,3920,3918,3981,3920,3981,3920,3981,3981,3917,3918,3981,3919,3981,3920,3920,3917,3919,3920,3918,3920,3920,3918,3919,3981,3918,3983,3920,3919,[4018,3921],[3956,9479],[3954,3980,9480],3981,3981,3981,3920,[4020,3729],4018,4018,4017,4018,4017,4018,4020,3956,3955,3953,4017,3955,3953,3953,4020,3956,4018,4020,4020,3953,3955,4019,3955,3955,4017,4020,3955,3441,4019,4019,4019,3955,4017,3956,3954,4018,3955,4017,4017,3954,[3955,9473],[3981,9474],3918,3917,3918,3920,3918,3917,3917,3918,3981,3983,3920,[3983,9575],[3981,9576],[409,9477],409,409,409,409,409,409,409,409,409,409,289,409,[409,303],304,305,305,[409,306],409,409,409,210,409,409,409,409,409,409,409,409,409,[409,9433],[409,9434],[3250,9530],3249,[3186,9823],[3252,9919],10011,10012,10013,10014,10015,[3251,10107],[3251,10108],[3185,10111],[3249,10203],[3252,10204],[3250,10205],[3249,10206],[3188,10106],10010,10011,10012,10015,[3185,10107],[3186,10108],[3249,10111],[3188,10205],[3251,10206],[3250,10106],10010,[3187,9914],[3187,9818],3250,3250,[3249,5586],[3187,5587],[3250,5588],3251,3252,[3186,9727],[3188,9728],10015,[3186,10111],3188,3249,3251,3187,3251,3185,[3186,10106],10010,[3185,9914],[3188,9818],3251,3249,3187,[2928,3059],2928,[2928,3121],3187,3187,3251,3252,[3252,5869],[3186,5870],[3249,5871],[3187,5872],[3185,5873],3251,3186,3251,3249,3250,3251,3186,3186,3251,3187,[2928,3316],3251,3188,3185,[2928,3061],2928,[2928,3121,9628],[3188,9721],[3252,9722],3186,3252,3251,3252,3249,3187,3186,[2928,3253],2928,2928,2928,[2928,3056],3186,3252,[3187,9535],[3186,9536],[3251,9339],[2928,3061,9342],[2928,9529],[2928,9530],[2928,3248],3188,3186,[3250,9535],[3188,9536],3186,[2928,2993],[2928,2997],2928,[2928,5773],[2928,3121,5774],[3186,5775],[3186,5776],[3187,5777],[3252,9658],[3185,9659],[3146,9560],3208,3210,3144,[3213,2951],[3214,2955],3213,3213,3149,[3151,3079],3208,3210,3145,3145,3146,3146,3144,3209,3210,3146,3146,3146,3146,[3152,3083],3151,[3215,3142],3146,3146,3145,3145,3209,3210,3145,[3215,3019],3215,3215,[3149,3142],3209,3208,3210,3145,[3214,2952],[3150,2953],[3149,2954],[3151,3017],3150,3151,3214,[3213,3015],3144,3144,3210,3210,3144,3208,3145,3144,3144,3145,3209,[3152,3274],[3213,3275],3213,[3150,3015],3144,3210,3146,3208,3146,3208,[3152,2955],3213,[3150,3014],3209,3144,3146,3146,3146,3145,3210,3145,[3208,9461],[3163,9557],3227,3228,3164,3227,3164,3164,3163,[3164,9559],[3228,9652],[3164,9653],3228,3164,3164,3164,3161,[4289,3100],4289,[4289,2968],[4289,2969],3226,3164,3227,3227,3161,[4289,3293],4289,4289,4289,4289,4289,4289,4289,[4289,3224],3163,3227,[3164,9748],[3227,9749],3228,3163,3227,3163,3163,3228,3164,3163,3163,3228,3163,3164,3163,3163,3164,3227,3163,3163,3228,3163,3227,3228,3163,3163,3163,3164,3164,3227,3228,3163,3228,3228,3163,3163,3228,3163,3163,3163,3163,3228,3228,3163,3227,3163,3163,[3163,9658],[3227,9659],3163,3227,3227,3228,3225,[4289,2969],[4289,2970],[4289,2971],[4289,3035],[4289,9754],[4289,9755],9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,2818,2816,2752,2689,2561,2819,2497,2816,2560,2816,2816,2754,2818,2689,2754,2624,2624,2688,2755,2496,2818,2561,2755,2688,2689,2754,2818,2818,2755,2819,2754,[2561,9796],[2561,9797],[403,9584],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9601],[2497,9790],[2497,9791],2755,2497,2560,2755,2818,2819,2755,2496,2818,2818,2818,2754,2561,2561,2819,2497,2755,2497,2496,2560,2561,2754,2819,[2561,3980],3919,3920,3981,3917,3983,3918,3920,3918,3919,3919,3983,3983,3918,3919,3981,3981,3917,3981,3983,3919,3919,3983,3918,3918,3920,3920,3919,3917,3983,3917,3983,3920,3920,3919,[3981,9613],[3983,9614],[3981,9515],3983,3983,3917,3920,3919,3919,3919,3917,3919,3919,3918,3983,3981,3917,3917,3918,3983,3919,3981,3918,3919,3919,3983,3983,3919,3920,[3920,9478],3918,3917,[4020,4045],[3954,4046],[4020,4047],[4019,4048],3918,3920,3920,3983,3919,3981,3919,3981,3981,3917,3917,3919,3917,3917,3917,3920,3917,3920,3981,3917,3919,3918,3917,3917,3919,3981,3918,3920,3919,3981,3919,[4017,4045],[4018,4046],[4018,4047],[4019,4048],[3956,4045],3917,3918,3919,3917,3920,3983,3983,3920,3918,[3954,3985],[3956,9575],[3955,9576],[3919,9477],3917,3917,3981,[3953,3855],3571,3953,4020,3953,4019,4017,4018,3954,3953,4017,4020,4020,4017,3955,3956,3956,4019,3956,3571,3955,3507,4017,3953,4018,4018,4017,3955,4018,4020,4017,4020,3954,4019,4017,3956,3507,3442,3955,3953,[3954,9476],[3981,9569],[3917,9570],3983,3981,3919,3919,3983,3918,3918,3917,3918,3981,3981,[3919,9671],[3920,9672],[409,9573],409,409,409,409,409,409,409,409,409,409,409,409,[409,303],304,305,305,[409,306],409,409,409,409,409,409,409,409,409,409,353,409,409,[409,9529],[3446,3248,9530],3187,[3250,9631],[3188,9632],[10015,9533],[3186,10107],[3252,10108],[3249,10109],10110,[3186,10111],[3252,10203],[3188,10204],3185,3252,3250,3250,3188,3186,[2928,3061,10106],[2928,10107],[2928,3056,10108],[3186,10111],[3250,10203],[3249,10204],3186,3188,3185,3185,[3251,10106],[10010,9532],[3188,9625],[3251,9626],3252,[3187,5682],[3186,5683],[3186,5684],3249,3188,[3186,9727],[3249,9728],[3251,10111,9533],3249,3187,3252,3186,3252,3188,3185,3188,[3249,10106],10010,[3251,9914],[3249,9915],[3250,9916],[3252,9917],[2928,3253,9918],[2928,9915],[2928,9916],[2928,3248,9917],[3249,9918],[3185,9818],3252,3251,[3250,5966],[3188,5967],[3249,9823,5968],[3251,9915],[3185,9916],[3186,9917],[3185,9918],[3250,9818],3252,3185,3187,3249,3185,[2928,3061],2928,[2928,3056],3185,3187,[2928,3125],2928,[2928,9628],[2928,3056,9625],[3251,9626],3252,3251,3250,3251,3249,3187,3250,3252,[2928,2993,5960],[2928,3059,5961],[2928,5962],[2928,3184],3251,3185,3252,[3251,9535],[3250,9435],[2928,3189,9438],[2928,9530],[2928,2992],3185,3188,3252,[3250,9631],[3186,9632],[3250,9533],3249,[2928,3253],2928,[2928,5869],[2928,5870],[2928,3312,5871],[3251,5872],[3252,5873],[3187,9754],[3185,9755],[3210,9656],3146,3209,3210,3145,3145,[3151,2952],[3150,2954],[3151,3017],3215,[3216,3270],[3216,3272],[3151,3273],[3152,3274],3146,3208,3144,3210,3208,3208,3209,3146,3144,[3151,3147],3213,[3215,3206],3144,3209,3144,3146,3208,3210,3145,[3216,3147],3215,3152,[3213,3206],3145,3209,3146,3144,3210,3145,3146,3144,[3216,2955],3213,3215,[3152,3270],[3213,3271],3145,3210,3210,3208,3144,3210,3144,3145,3210,[3213,3082],3213,3149,[3215,2950],3209,3208,3146,3208,3146,3144,3146,[3149,3019],3149,[3151,3078],3208,3210,3209,3146,3209,3208,3144,[3145,9556],[3228,9557],3228,3227,3228,3227,3163,3164,3163,3228,[3163,9655],[3163,9748],[3227,9749],3227,3227,3163,3163,[4289,3037],4289,[4289,3033],3226,3164,3227,3163,3227,3161,[4289,3099],4288,4289,[4289,3033],[4289,2970],[4289,2971],[4289,2972],[4289,3035],4289,[4289,3288],[4289,3289],[4289,3290],[3163,9652],[3163,9653],3163,3228,3164,3227,3228,3164,3164,3228,3227,3163,3164,3228,3163,3228,3161,[4289,3289],3162,3161,3162,3227,3227,3163,3227,3164,3228,3228,3163,3164,3163,3228,3227,3163,3228,3164,3228,3163,3164,3227,3164,3228,3227,3227,3227,3228,3228,[3228,9754],[3227,9755],3164,3163,3228,3227,3163,3228,3227,3163,3225,[4289,2969],[4289,3036,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2753,2497,2755,2817,2752,2818,2688,2818,2688,2817,2752,2818,2755,2497,2817,2816,2754,2688,2560,2755,2560,2754,2496,2496,2752,2753,2497,2497,2561,2560,2560,[2560,9604],[2560,9605],9893,[403,9680],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9697],9886,[2754,9598],[2496,9599],2754,2496,2496,2497,2818,2819,2819,2819,2755,2819,2819,2819,2561,2818,2818,2818,2497,2754,2754,2818,2754,2754,[2754,4044],[2755,4046],[2755,4047],[2818,4048],3918,3920,3918,3981,3920,3918,3981,3918,3917,3919,3983,3983,3918,3917,3981,3920,3917,3919,3918,3981,3919,3983,3983,3981,3983,3920,3919,3983,3919,3920,3983,[3919,9613],[4020,3857,9614],[3920,9611],3917,3919,3981,3920,3983,3981,3920,3983,3981,3983,[3919,9767],[3918,9861],[3918,9862],[3981,9859],[3920,9860],[3920,9861],[3919,9862],[3983,9859],[3983,9860],[3983,9762],3983,3919,3919,3983,3983,[3920,9671],[3920,9574],[3919,9477],[4019,3855],3569,3956,4018,3570,[4019,3853],3919,3919,3983,3920,3920,3919,3981,3918,3919,3919,3920,3919,3920,3920,3919,3917,3983,3983,3919,3919,3983,3920,3920,3983,3919,3920,3919,3920,[3954,4048],[3954,4049],4018,3956,4019,3953,3954,[4018,3980],3920,3917,3920,3919,3919,3920,3919,3919,[4017,4049],[3956,9671],[4019,9672],[4018,3854,9573],3981,3917,[3956,3985],3954,3953,3954,3956,3955,4018,3955,4019,3953,3955,4019,4019,3955,4017,3955,4019,3955,4018,4020,4018,4017,4019,4018,4018,4020,3954,4017,4019,4018,3956,3955,4017,3954,4019,4017,3955,4017,3956,4020,4018,[4018,9572],[3981,9665],[3917,9666],3918,3919,3918,3983,3981,3983,3920,3983,3983,3917,3918,[3918,9767],[3918,9768],[409,9573],409,601,409,409,409,409,409,409,409,409,409,[4024,602],[4023,603,303],304,305,305,[4023,474,306],[4026,475],[4023,476],[4026,477],[4023,478],409,409,409,409,409,409,409,409,[409,9532],[3577,9721,9530],[3448,3312,9722],3188,[3188,9727],[3187,9728],[3249,10111,9725],[3185,10203],[3251,10204],[3252,10205],[3251,10206],3186,3185,3251,3252,3252,3188,3251,3252,3251,[2928,3125],[2928,10203],[2928,3120,10204],3251,3252,3185,3252,3187,3188,3188,3250,[3252,10106,9628],[3251,9721],[3252,9722],3185,[3186,5778],[3187,5779],[3187,5780],3187,3186,[3251,9823],[3252,9824],[3249,9629],3251,3188,3188,3186,3252,3187,3249,3251,3188,[3252,10106],10010,10011,10012,10013,10014,10011,10012,10013,10014,[3187,9914],[3185,9818],3250,3251,[3188,9823],[3185,9919],10011,10012,10013,10014,[3249,9914],[3187,9818],3249,3185,3187,3188,[2928,3189],2928,[2928,3120],3185,3187,[2928,3189],2928,[2928,9628],[2928,3184,9721],[3187,9722],3249,3249,3250,3252,3187,3185,[3187,5152],[3187,5153],[3251,6056],[2928,3253,6057],[3187,6058],[3185,6059],3252,3250,3251,3187,3250,[2928,3123],2928,[2928,3248],3249,3185,3251,[3252,9631],[3250,9632],[3187,9629],3252,3185,[2928,2993],[2928,3060],[2928,5966],[2928,5967],[2928,3056,9850,5968],[3251,9944],[3249,9945],[3250,9851],[3208,9656],3146,3209,3144,3208,3208,3208,3145,3144,[3151,3017],3213,3151,3150,3213,[3216,3206],3145,3145,3146,3146,3146,3145,3146,3210,[3216,3211],3149,[3216,3014],3208,3210,3210,3146,3145,3146,3145,[3150,3082],[3214,2950],[3214,2951],3146,3209,3145,3208,3210,3145,3143,3210,3146,3208,[3214,2951],[3214,3018],3213,3214,[3149,3270],3144,3144,3146,3210,3208,3144,3144,3210,[3151,2955],3215,3150,[3213,3206],3146,3208,3209,3144,3145,3144,3209,[3214,3147],3214,[3152,3142],3144,3144,3145,3145,3145,3208,[3146,9559],[3227,9652],[3228,9653],3163,3163,3164,3227,3227,3163,3228,3164,[3228,9655],[3228,9844],[3227,9845],3164,3164,3163,3164,[4289,3101],4289,[4289,3032],3227,3164,3164,3228,3228,[4289,3229],4289,4289,[4289,2968],3226,3228,3227,3164,[4289,3229],4289,4289,4288,4289,[3227,9748],[3228,9749],3228,3228,3228,3164,3228,3228,3163,3164,3163,3228,3163,3227,3161,[4289,3289],[4289,3100],4288,[4289,3097],[4289,3099],[4289,3224],3164,3227,3164,3164,3164,3164,3228,3227,3228,3227,3227,3163,3163,3228,3228,3228,3164,3164,3163,3163,3227,3227,3164,3227,3163,3164,[3164,9850],[3164,9851],3228,3163,3227,3164,3163,3228,3163,3163,3228,3163,[4289,3229],[4289,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2689,2561,2752,2497,2689,2817,2625,2819,2625,2561,2755,2817,2625,2753,2625,2625,2625,2561,2819,2753,2497,2497,2497,2819,2561,2755,2560,2818,2755,2754,2560,[2754,9700],[2819,9701],9989,[403,9776],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9793],9982,[2818,9694],[2560,9695],2819,2819,2755,2497,2561,2496,2561,2818,2755,2560,2819,2496,2496,2755,2560,2819,2819,2497,2496,2561,2496,2497,2561,2754,2755,2818,[2496,3853],3917,3917,3919,3981,3981,3983,3920,3917,3983,3919,3919,3919,3918,3920,3983,3918,3920,3981,3920,3919,3919,3920,3920,3919,3983,3983,3983,3920,3920,3917,[3917,9709],[3956,3921,9710],[3981,9707],3983,3920,3920,3981,3917,3983,3919,3983,3918,[3983,9767],[3983,9863],9957,9958,9955,9956,9957,9958,9955,9956,[3918,9858],[3919,9762],3983,3919,3983,3920,[3919,9767],[3918,9768],[3955,3985,9573],3953,3504,3569,4019,3954,4017,[3955,3980],3920,3918,3983,3981,3983,3919,[3954,4047],[3956,3855],[3953,3854],[3954,4045],[3983,9767],[3920,9859],[3983,9860],[3983,9861],[3919,9862],[3919,9762],3983,3920,3920,3919,3919,3983,3983,3919,3920,3920,[4017,3985],4018,4020,3954,4019,3441,[4018,3789],[4017,3725],3983,3983,3983,3919,3919,3983,3918,[4018,4048],[3953,4049],4017,3954,[4017,9479],[4017,9383],[4017,4044],[4020,4045],[4020,3855],4017,3956,3956,3955,3956,4020,3955,4020,3955,4019,3956,3956,3955,4018,3956,3953,4020,4017,4019,3956,4019,4020,4019,4020,4019,4018,3955,4018,3954,3954,3954,3954,3954,3954,4020,4017,4018,3953,4018,4019,[3955,9572],[3920,9761],[3981,9762],3918,3918,3917,3981,3918,3917,3919,3983,3981,3981,[3919,9767],[3918,9863],9864,[3511,474,9669],[3447,475],[3448,476],[3448,477],[3447,478],409,409,409,409,[3447,293],[4023,294],[4026,294],3447,[3959,303],304,305,305,[3448,306],3578,3960,3448,3962,[4025,295],409,409,409,[4025,293],[3961,294],[3578,294],[4026,294],[3959,294,9628],[3446,9817],[3962,9818],[3575,3121],[3576,3314],[3447,3315,9535],[3185,9536],3251,3251,3252,3251,3188,3188,3250,3186,3250,3251,3186,3185,3188,[2928,3189],2928,[2928,3184],3185,3185,3185,3250,3252,3185,3249,3250,[3251,9628],[3251,9625],[3249,9626],3186,3188,3187,3188,3188,[3250,9823],[3249,9919],9920,[3185,9725],3250,3186,3252,3185,3252,3250,3249,3186,3249,3249,[3249,10106],[3185,10107],[3251,10108],[3188,10109],[3186,10110],[3250,10107],[3249,10108],[3250,10109],[3186,10110],10010,[3188,9914],[3187,9915],[3187,9916],[3185,9919],10015,[3250,10107],[3185,10108],[3251,10109],[3187,10110],10010,[3186,9914],[3250,9818],3187,3185,[2928,3316],[2928,3317],2928,[2928,3184],3185,3249,[2928,3253],2928,[2928,9628],[2928,3121,9625],[3188,9626],3251,3187,3252,3185,3249,3185,[3249,5248],5249,6152,6153,[3249,6154],[3252,6155],3185,3188,3249,3249,3252,2928,[2928,3057],3249,3185,3188,3252,[3252,9727],[3185,9728],[3251,9629],3249,3251,3188,3250,[2928,2993],[2928,3059,9850],[2928,9946],10040,10041,9947,[3144,9752],3145,3210,3209,3210,3146,3208,3210,3210,3144,[3214,2952],[3215,2953],[3215,2954],[3213,3018],[3150,3079],[3216,3271],3208,3146,3210,3145,3145,3209,3144,[3216,3019],3213,[3214,3078],3144,3208,3209,3210,3209,3144,[3216,3275],3215,[3150,3206],3145,3144,3208,3208,3210,3144,3209,3208,3210,3145,3145,3146,3209,[3150,2951],[3150,3017],3149,[3150,3080],3146,3210,3210,3209,3144,3146,[3215,3274],[3213,3275],[3214,3015],[3216,2951],3146,3209,3210,3209,3210,3209,3209,3208,3209,[3149,3018],[3149,3079],3208,3144,3209,3146,3145,3144,[3210,9655],[3228,9748],[3228,9749],3164,3227,3227,3163,3163,3228,3227,3227,[3228,9751],9940,[3163,9941],[3164,9942],[3228,9943],[3163,9845],3228,[4289,3165],4289,[4289,3096],3163,3163,3163,3228,3164,3225,[4289,3035],4289,[4289,3224],3164,3163,3228,3228,3225,[4289,2969],[4289,3035],4289,4289,[3228,9844],[3227,9845],3163,3228,3228,3163,3163,3163,3227,3164,3163,3163,3227,3161,[4289,3293],[4289,3034],[4289,2970],[4289,2970],[4289,2971],[4289,2972],3226,3227,3163,3228,3163,3163,3227,3164,3227,3227,3227,3163,3228,3228,3163,3228,3164,3227,3228,3228,3163,3164,3227,3163,3164,3227,[3228,9850],[3164,9946],9947,3163,3227,3164,3228,3164,3228,3163,3164,3227,3227,3225,[4289,3036,9754],[4289,9755],9560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9508,9509,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9601],[2819,9694],[2561,9695],2754,2560,2561,2818,2561,2496,2755,2496,2818,2560,2497,2819,2819,2497,2561,2818,2561,2560,2497,2755,2561,2496,2560,2754,2496,2560,2818,[2819,3788],3918,3919,3983,3920,3981,3917,3983,3918,3917,3920,3918,3920,3981,3920,3919,3918,3983,3919,3919,3919,3919,3920,3983,3920,3919,3920,3919,3919,[3918,9767],[3920,9709,9859],[3953,3985,9710,9860],[3918,9803,9859],[3917,9860],3919,3918,3920,3920,3981,3920,3918,[3983,9767],[3919,9863],9959,[3954,10053],[4017,10054],[4020,10051],[4017,10052],[4017,10053],[3955,10054],[4019,679,10051],[415,10052],9954,[3919,9858],[3919,9762],3920,3983,[3920,9767],[3983,9863],9864,[3953,4049,9669],3956,3569,3507,3955,3571,[4018,3789],3920,3920,3919,3983,3919,3983,[3954,3985],4020,3441,3953,[3955,9767],[4017,3788,9863],9955,9956,9957,9958,[3920,9858],[3983,9859],[3917,9860],[3983,9762],3920,3983,[3983,9767],[3983,9859],[3983,9860],[3917,9762],[3955,4046],[3954,3855],4020,4019,3953,3953,3953,[4019,3788],3919,3919,3917,3919,3918,3920,3983,[3953,3855],3956,4017,3571,4018,4018,[4020,9479],[3955,9480],3956,3956,3955,4020,4020,3955,4019,3956,3954,4019,3955,3954,4018,4020,4017,4018,3955,3955,3956,4020,4019,4018,3442,4020,3956,3955,3954,3955,3955,3955,4019,3954,4017,3954,3440,4018,3954,3954,3956,4019,3956,4020,[4018,9668],9857,[3919,9858],[3917,9859],[3920,9860],[3981,9762],3981,3917,[3918,9767],[3983,9859],[3918,9860],[3920,9861],[3983,9862],[3919,9863],9959,[3962,9960],[4025,9765],4025,3578,4023,3446,[3578,295],409,409,409,[3577,357],3447,3448,3574,3960,4026,3578,3959,3446,4024,3447,4024,3574,3446,[3961,294],[3576,294],[3577,294],4026,4026,3578,3962,[3448,9724],9913,[3962,9914],[3448,9818],3447,3446,[3961,9535],[3187,9536],3251,3186,3251,3187,3185,3249,3250,3249,3186,3186,3252,3186,[2928,3253],2928,[2928,3312],3186,3188,3249,3249,3187,3186,3252,3250,[3187,9628],[3188,9817],[3185,9818],3252,3250,[3251,9823],[3186,9917],[3188,9918],[3188,9919],10015,[3186,10016],[3249,9821],3188,3186,3186,3187,3252,3188,3252,3249,3186,3185,3252,[3250,10203],[3186,10204],[3251,10205],[3249,10206],[3185,10203],[3249,10204],[3251,10205],[3188,10206],[3187,10106],10010,10011,10012,10015,[3187,10111],[3188,10203],[3252,10204],[3186,10205],[3249,10206],[3187,10106],10010,[3252,9625],[3250,9626],[2928,3124],2928,2928,[2928,3057],3186,3185,3186,3249,[2928,2993],[2928,2997,9628],[2928,9721],[2928,3248,9722],3251,3250,3185,3250,3185,3187,[3252,5344],5345,6248,6249,[3249,6250],[3186,6251],3188,3187,3251,3185,3185,3250,[2928,3248],3250,3186,3186,3251,[3185,9823],[3249,9824],[3187,9629],3187,3249,3252,3186,[3250,9850],[3250,9946],10042,[3146,10136],[3146,10137],[3208,10043],[3144,9848],3146,3209,[3216,3274],3145,3208,3146,3146,3210,3208,3144,3145,3145,[3214,3211],3213,3152,[3215,3270],3210,3146,3208,3145,3146,3209,[3150,3147],3214,[3215,3142],3210,3146,3208,3209,3210,[3151,3211],3216,[3215,3015],3208,3145,3208,3210,3145,3210,3209,3208,3143,3210,3146,3145,3210,3146,3210,[3213,3211],3213,3214,[3151,3206],3144,3144,3210,3209,[3150,3211],3151,3149,[3215,3206],3209,3210,3145,3145,3208,3210,3208,3208,3145,3209,[3149,3019],3149,[3215,3014],3210,3210,3208,3209,3209,[3210,9655],[3163,9844],[3164,9845],3163,3163,3163,3227,3227,3228,3227,3227,[3227,9847],[3164,10036],10037,10038,10039,[3163,9941],[3161,9845],[4289,3100],4384,[4289,3160],3227,3163,3227,3164,3164,3227,3225,[4289,2969],3226,3163,3228,3163,3228,3164,3228,3225,[4289,2970],[4289,2971],9940,[3164,9941],[3163,9845],3164,3163,3227,3163,3164,3163,3227,3227,3163,3227,[4289,3229],[4289,3033],3226,3228,3228,3228,3164,3227,3164,3228,3228,3228,3228,3164,3163,3163,3163,3164,3164,3164,3228,3228,3164,3228,3164,3227,3163,3228,3228,3228,3228,3163,[3163,9658],[3163,9659],10042,[3227,10043],3164,3228,3163,3161,[4289,3291],[4289,3292],3162,3163,3228,3227,3228,[4289,3037,9658],[4289,9659],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9604,9605,[403,9506],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9601],[2497,9598],[2754,9599],2755,2496,2754,2754,2560,2819,2496,2497,2819,2560,2754,2560,2754,2561,2560,2496,2561,2819,2560,2818,2560,2754,2560,2560,2754,2818,2819,[2754,3852],3981,3983,3918,3918,3920,3983,3983,3918,3919,3981,3917,3918,3983,3920,3918,3983,3917,3919,3983,3920,3920,3919,3917,3983,3920,3919,3919,[3983,9767],[3920,9863],9955,9956,9955,9956,[3918,9761],[3983,9762],3917,3918,3981,3919,[3919,9767],[3981,9863],9959,[3953,10055],[4020,10149],[4017,10150],[3569,10147],[3570,10148],[3570,557,10149],[3956,614,10150],[3956,743,10147],[415,10148],[415,10050],9954,[3920,9858],[3983,9861],[3918,9862],[3919,9863],9959,[4020,9960],[4020,9765],3955,3569,3569,4018,3569,[3954,3980],3918,[3983,9475],3920,3983,3919,3919,[3955,3855],4017,3956,[4018,9767],[3955,9863],9959,[4018,10051],[4017,10052],[4018,10053],[4020,10054],9954,9955,9956,[3919,9858],[3983,9859],[3983,9860],[3919,9863],9955,9956,[3955,3793,9858],[3956,9762],3953,3441,[4017,9767],[3956,9859],[4019,9860],[3954,9861],[3954,3852,9862],[3920,9859],[3920,9860],[3981,9762],3981,3919,3983,3983,[3955,3729],3954,3954,4020,4018,3954,[3954,9575],[4019,9576],[4020,9477],3954,3956,4020,3956,3955,3955,4018,4017,4018,4020,4020,4020,4020,4017,4017,4018,3954,3956,3953,3953,4017,4020,3956,4017,4018,3954,3953,4020,4018,3953,4020,4017,4019,3954,4017,4019,3955,3955,4019,3953,3953,[3953,9764],[3955,9953,9532],[9954,9817],[9955,9818],9956,[3981,9858],[3919,9859],[3917,9860],[3920,9863],9955,9956,9957,9958,9959,[3511,10055],3510,3575,4023,3959,3642,3643,4026,[3577,294],[4026,294],[4025,294],3447,3577,4026,4026,3960,4023,3575,3510,3576,3578,4024,4026,4023,4024,4025,4023,3513,3447,3578,3575,3961,[4023,9820],[3576,10009],10010,[3448,9721],[3959,9722],3578,[3578,9727],[3578,9728],[3249,9533],3249,3251,3250,3185,3187,3185,3187,3187,3250,3250,3188,3252,[2928,3059],2928,[2928,3312],[2928,3313],[2928,3314],3251,3185,3186,3250,3249,[3187,9724],9913,[3186,9914],[3186,9915],[3188,9916],[3185,9919],10013,10014,10015,[3186,10111],3185,3251,3188,3185,3250,3249,3250,3252,3252,3185,3251,3186,[2928,3315],[2928,3316],[2928,3313],3252,3249,3185,3185,3249,3187,3252,[3186,10106],[3251,10107],[3250,10108],[3251,10111],3250,3185,3252,3251,3188,3186,[3251,10106,9532],[3249,9721],[2928,3253,9722],2928,2928,2928,[2928,3248],3249,[3252,5490],[3249,5491],[3250,5492],3251,[3187,9628],[2928,3059,9817],[2928,9818],3186,3186,3249,3252,3185,3186,[3249,5440],5441,5442,5443,[3250,5444],[3252,5445],3186,3186,3250,3187,3185,3252,3186,3187,3188,[2928,3313],[2928,3314,9823],[2928,3315,9919],9920,[2928,3315,9725],[2928,3316],3251,3251,[3188,9658],[3249,9659],[10042,9560],[3209,10138],[3210,10203],[3145,10204],3208,3145,3146,[3149,3019],3216,[3215,3079],3210,3209,3145,3144,3210,3209,3146,3209,3146,[3216,2955],3215,3216,[3216,3079],[3216,3273],3144,3208,3146,3146,[3213,3275],3150,[3149,3206],3208,3208,3208,3145,3210,3209,[3216,2951],3145,3208,3144,3209,3209,3208,3208,3208,3144,3146,3208,3146,3210,3146,3210,3145,3145,[3151,3018],3213,[3215,3079],[3215,3273],[3216,3274],3208,3144,[3149,3081],3150,[3150,2950],3144,3208,3144,3145,3145,3208,3145,3146,3144,3210,3145,[3150,3083],3215,[3215,3142],3145,3146,3208,3208,3208,[3145,9751],9940,[3163,9941],[3227,9942],[3227,9943],[3164,9845],3163,3163,3163,3228,3164,3227,3161,[4289,3099,10133],[4289,10134],[4289,10135],[10037,9559],[4289,3229,9652],[4289,3033,9653],[4289,2969],3226,3164,3228,3227,3164,3163,3164,3228,3164,3228,3227,3227,3164,3228,3164,3164,3227,3163,3164,[3227,10036],10037,[3228,9941],[3164,9942],[3228,9943],[3164,9944],[3228,9945],[3228,9845],3228,3163,3164,3163,3161,[4289,3293],[4289,3098],3162,3164,3228,3164,3163,3228,3161,[4289,3289],[4289,3289],3162,3228,3227,3164,3164,3163,3163,3163,3164,3164,3228,3227,3228,3227,3227,3163,3227,3163,3163,3164,3227,[3164,9754],[3163,9755],[3163,10138],3228,3227,3161,[4289,3289],[4289,3099],4288,4289,[4289,3224],3163,3227,3227,3163,[4289,3101,9754],[4289,9755],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9700,9701,[403,9602],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,9312,[403,9697,9294],[2497,9694],[2561,9695],2497,2754,2560,2497,2561,2754,2497,2754,2818,2754,2561,2819,2755,2755,2561,2497,2818,2819,2496,2496,2755,2818,2497,2496,2754,2496,2560,[2561,3916],3920,3983,3983,3918,3920,3917,3981,3920,3983,3918,3919,3919,3983,3917,3920,3983,3917,3919,3919,3920,3920,3983,3920,3919,3920,3920,[3981,9767],[3983,9863],9959,[4017,10051],[3954,10052],[3956,10051],[4018,10052],9857,[3919,9858],[3981,9859],[3918,9860],[3918,9861],[3920,9862],[3919,9863],9959,[4020,10055],3954,3506,4018,3954,4018,[3953,615],415,415,[4017,549],[4018,550],[4017,10050],9954,9957,9958,9959,[4018,10055],3572,3632,3633,4018,3956,3955,3953,[3955,4044],[4017,4045,9476],[3917,9571],3919,3920,3983,[3955,3793],4019,4017,[3956,9767],[3954,9863],9959,[3953,10055],[3953,10147],[3954,10148],[4019,10149],[4020,10150],[4019,10050],[4017,10051],[3955,10052],9954,9955,9956,9959,[4017,10051],[4019,10052],9954,[3956,9858],[3954,9859],[4017,9860],[3953,9863],9955,9956,9957,9958,9955,9956,[3919,9858],[3920,9762],3920,3919,3983,3983,[3953,3792],3955,3955,3954,4018,[4020,9671],[3954,9672],[4020,9573],4017,4017,3955,3955,4017,4017,4018,3954,3954,3956,3440,4017,4018,4019,4020,3956,3953,4018,3954,4019,4018,3956,3507,3955,3954,4018,4017,4017,4017,4017,3956,3440,4017,4018,3953,4020,3953,3953,4019,3953,3954,3956,[4019,9724],9913,[10051,9914],[4024,10052,9818],9954,9955,9956,9959,[3446,10051],[3447,10052],[3447,10053],[4023,10054],[3448,10055],3446,3510,4023,4023,3446,3706,3707,3578,3512,3576,3510,3511,3577,3510,3578,3448,3446,4025,4026,3575,3959,4025,3574,3574,3447,3447,4023,3578,4024,3446,4025,3962,3510,4023,[3510,10106],[3578,9817],[3962,9818],4026,[4025,9727],[3961,9728],[3249,9725],3249,3185,3185,3251,3251,3252,3250,3249,3250,3249,3185,3187,3188,[2928,3059],2928,2928,2928,[2928,3056],3250,3249,3249,3250,[3188,9820],[3252,10009],10010,10011,10012,10015,[3185,10109],[3185,10110],[3188,10111],3188,3188,3188,3252,[2928,3313],3250,3185,3249,3250,3251,3187,3251,[2928,3253],2928,2928,2928,[2928,3121],[2928,3313],3186,3250,3250,3252,3251,3251,[3252,10203],[3187,10204],3251,3249,3250,3185,3249,3188,3187,[3250,9628],[3186,9817],[2928,3123,9818],2928,[2928,2992],[2928,2993],3187,3251,[3187,5586],[3249,5587],[3188,5588],3251,[3252,9724],9913,[3249,9914],[3249,9818],3249,3250,3186,3185,3187,[3250,5536],5537,5538,5539,[3187,5540],[3251,5541],3187,3185,3249,3251,3187,3187,3187,3251,[2928,3123],[2928,9631],[2928,9632],10015,[2928,10016],[2928,9821],2928,[2928,3122],3187,[3188,9754],[3252,9755],[3209,10138,9656],3210,3144,3145,3209,3208,3209,[3152,3147],3151,3215,[3214,3270],3146,3209,3208,3210,3209,3144,3210,3209,[3152,3082],3152,3213,3214,3213,[3214,3079],3208,3208,[3152,3082],3214,[3152,3015],3146,3210,3208,3146,3208,3145,3144,3146,3210,3144,3209,3145,3145,3144,3146,3145,3210,3143,3209,3209,3209,3145,3210,3144,3210,3144,[3216,2955],3215,3151,3216,[3214,3206],[3149,3211],3214,3214,[3216,3206],3209,3208,3209,3209,3210,3209,3209,3144,3145,3209,3208,[3149,3147],3216,[3150,3270],3209,3210,3146,3146,3145,[3145,9847],[3145,10036],10037,10038,10039,[3163,9941],[3163,9845],3163,3163,3228,3227,3227,[4289,3229],4289,[4289,10230],[4289,10231],[4289,10133,9655],[4289,9748],[4289,3224,9749],3227,3163,3163,3227,3163,3163,3228,3227,3163,3228,3228,3163,3228,3161,[4289,3290],[4289,3289],3162,3164,3163,3228,3164,[3163,10133],10037,10038,10039,10040,10041,[3228,9941],[3227,9845],3227,3227,3228,[4289,3229],4289,4289,[4289,3224],3227,3228,3163,3227,3164,[4289,3037],4289,4289,[4289,3224],3164,3227,3227,3227,3227,3228,3164,3227,3228,3163,3228,3164,3227,3163,3228,3164,3227,3164,3228,3227,[3163,9754],[3163,9755],3228,3228,3228,[4289,3229],4289,4288,4289,[4289,2968],3226,3163,3163,3164,3228,[4289,3165,9850],[4289,9851],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9604,9605,[403,9602],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9406],9407,9408,9411,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3953,[4017,3853],[3955,4046],[4019,4047],[4018,4048],3918,3983,3919,3919,3981,3919,3981,3919,3920,3983,3920,3919,3917,3920,3920,3920,3919,3920,3917,3919,3919,3920,[3919,9575],[3919,9576],[9959,9477],[3956,10055],[3954,10147],[4018,10148],[4018,10147],[4020,10148],[3955,9953],9954,9955,9956,9957,9958,9959,[3954,10055],3569,3954,3505,3569,3507,3568,[3956,679],416,415,[4018,613],3955,4017,[4018,10050],[3956,10053],[3953,10054],[4018,10055],3956,3956,3696,3697,3569,3504,3954,4018,4020,[4018,9572],[3981,9761],[3983,9762],3920,3983,[3955,3857],3572,[4017,9767],[4019,9863],9959,[3955,677,10055],3507,[4017,557],[4020,614],[3954,745],[4020,746],[4019,558],[4019,10147],[3953,10148],[4019,10050],[4020,10051],[3955,10052],[3956,10055],[3956,10147],[4017,10148],[4020,10050],9954,9955,9956,9959,[4020,10051],[3569,10052],[3954,10053],[3569,10054],[4020,10051],[4018,10052],[9954,9476],[3919,9569],[3983,9570],3920,3919,3983,3919,[3955,3791],3441,3953,3954,[3953,9575],[3956,9576],[3955,9573],4017,3956,4019,4019,4019,3956,3956,4019,4017,3955,3954,4017,3955,3955,3571,3956,3955,4020,3954,3953,3955,3953,4017,4017,3954,4020,3955,3955,3953,4017,4018,4017,3956,3954,3443,4020,3956,4019,3956,4018,3956,3956,[4018,9820],[4019,10009],[10010,9532],[4024,10148,9625],[3959,10050,9626],[3578,9722,10051],[4026,10052],[3448,10055],[4024,10147],[4024,10148],[3448,10149],[4024,10150],3961,3448,4024,4023,4026,3448,3961,3578,4023,3446,4025,3511,4023,3577,3959,3577,3962,3961,4023,4025,3446,3961,3962,4023,3448,3577,3447,3577,3961,3447,3447,3447,3578,3446,4026,3446,9913,[4026,9914],[3511,9818],4024,[4026,9535],[3186,9439],3187,3251,3251,3250,3186,3186,[2928,3314],[2928,3315],[2928,3316],3185,3250,3249,3250,3185,[2928,2997],2928,2928,[2928,3184],3249,3188,3188,3187,3251,3186,[3186,10106],[3250,10107],[3187,10108],[3186,10111],[3251,10205],[3188,10206],3187,3185,3188,[2928,3313],[2928,3123],2928,[2928,3121],3249,3251,3187,3188,3185,3186,3187,[2928,2993],[2928,2996],[2928,2997],2928,2928,[2928,3312],[2928,3313],3250,3188,3187,3250,3186,3188,3186,3249,3252,3252,3187,3185,3251,[3252,9724],9913,[2928,9914],[2928,3057,9818],3187,3252,3249,3186,[3185,5682],[3252,5683],[3252,5684],3251,[3249,9820],[3250,10009],10010,[3250,9914],[3188,9818],3187,3250,3250,3187,[3188,5632],5633,5634,5635,[3188,5636],[3187,5637],3187,3187,3186,3188,3252,3249,3252,3249,2928,[2928,3058,9727],[2928,2994,9728],[2928,2995,10111,9533],[2928,2996],[2928,2997],2928,2928,[2928,3121],[3187,9658],[3187,9659],[3209,9656],3145,3210,3208,3146,3146,3208,3208,[3151,2951],[3151,3017],3213,[3150,3080],[3213,3274],3146,3144,3209,3144,3210,[3213,3211],3214,3214,[3152,2950],[3151,3017],3216,3216,[3214,3270],[3152,3275],3149,3213,[3214,3206],3146,3146,3208,3209,3210,3145,3209,3144,3208,3210,3208,3210,3208,3210,3209,3208,3145,3144,[3149,3271],[3215,3272],[3151,3273],[3213,3274],[3214,3271],[3152,3272],[3151,3273],[3149,3274],3146,[3152,2952],[3149,2953],[3150,3018],[3149,3080],[3215,3275],3152,[3216,3015],3208,3146,3208,3210,3209,3210,3146,3209,3208,3209,3209,3145,3210,[3216,3017],3150,[3150,3206],3145,3146,3145,3209,3146,3210,[3208,10133],[3210,10134],[3210,10135],10037,[3227,9941],[3227,9845],3228,3227,3164,3227,3225,[4289,3035],4289,4289,[4289,2968,9655],[4289,3033,9748],[3226,9749],3163,3227,3227,3163,3161,[4289,3291],[4289,3292],3162,3227,3163,3227,3163,3227,[4289,3229],4289,4289,[4289,3288],[4289,3291],[4289,3290],3162,3161,[4289,3290],[4289,3099,10133],[4289,10134],[4289,3224,10135],[3163,10136],[3227,10137],10037,[3164,9652],[3227,9653],3164,3163,[4289,3037],4384,[4289,3034],3226,3227,3164,3163,3163,3164,[4289,3101],4384,4289,[4289,3224],3163,3227,3164,3227,3164,3163,3227,3227,3163,3164,3227,3163,3163,3164,3228,3163,3163,3164,3227,3228,3164,[3163,9562],[3228,9563],[3228,9467],3163,[4289,3229],4289,4289,[4289,3034],3226,3227,3163,3164,3164,[3227,9850],[3229,9946],9947,9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9700,9701,[403,9698,9294],9315,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,9502,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3955,4017,4017,3955,4019,[3955,3853],3981,3919,3918,3917,3919,3918,3981,3983,3917,3981,3917,3919,3918,3920,3981,3917,3920,3918,3920,3983,3983,[3920,9671],[3983,9672],[4020,10055,9573],3953,3955,4018,3956,3955,4019,[4017,10050],[4019,10051],[4018,10052],[4019,10053],[4020,10054],[4018,10055],3956,4019,3506,3953,3506,3504,3570,[4018,615],415,415,[3568,613],3506,3953,4019,[3953,10149],[4019,10150],4019,3956,3507,4020,3953,4018,4018,4019,4019,3569,[3953,9668],9857,[3920,9858],[3917,9859],[3920,9860],[3954,3921,9861],[4019,9862],[3955,9863],9959,[415,10055],[3956,677],3505,[3956,679],415,[4018,549],[4019,551],[3570,741],[3506,745],[3954,746],[3954,558],[4018,10147],[3955,10148],3956,3955,[4017,557],[4019,614],[3954,745,10050],[415,10051],[3569,613,10052],[3954,10055],[3955,10147],[4020,10148],[4018,10149],[4018,10150],[4018,10147],[4020,10148],[3955,10050,9572],[3983,9665],[3919,9666],3919,3919,3919,3983,3983,[3955,3729],4019,3956,[4019,9671],[4018,9672],[3953,9573],3505,4020,4017,4019,4019,4019,4020,4018,3507,3955,4020,4017,3953,3955,3953,3955,4019,3956,4018,3955,4018,4017,4019,3956,3955,3954,4017,3953,4017,4020,3954,3956,4020,3956,3954,3954,4019,4018,4020,4017,3955,3955,4020,3954,[4019,10106,9628],[4024,9721],[3578,9722],[3959,10147],[3446,10148],4024,3959,4023,3513,4024,3962,3959,3578,3577,4025,3577,3961,3962,4025,3960,3447,3447,3446,4023,4023,3447,4023,3447,4026,4025,4025,3577,3513,3447,3577,4026,3640,3641,4025,3448,4026,3961,3578,3446,3577,3447,[3578,10009],10010,[3959,9625],[4025,9626],3962,[3574,9535],[3249,9536],3188,3185,3185,3186,[2928,3253],2928,2928,2928,[2928,3121],3250,3188,3249,[2928,3316],[2928,3317],2928,[2928,3058],3186,3187,3188,3185,3186,3188,3188,3249,[3250,10203],[3249,10204],3185,3187,3186,3187,3250,[2928,3253],2928,2928,[2928,3057],[2928,2993],3187,3249,3251,3185,3252,3185,3250,3249,3252,[2928,3124],2928,2928,2928,2928,[2928,3056],3185,3188,3188,3186,3251,3187,3249,3188,3185,3252,3252,3185,[3187,9820],[3252,10009],10010,[3188,9625],[3252,9626],3187,3250,3250,[3185,5778],[3250,5779],[3250,5780],3252,3250,3186,[3188,10106],10010,[3185,9914],[3188,9818],3185,3185,3185,[3185,5728],5729,5730,5731,[3185,5732],[3188,5733],3251,3251,3188,3250,3252,3252,3252,3252,3187,[3187,9823],[3186,9824],[3188,9629],3249,3188,[2928,3060],2928,2928,[2928,3312,9850],[3251,9851],[3210,9656],3210,3146,3144,3209,3209,3209,3210,3209,[3214,3211],3214,3213,3151,[3152,3270],3145,3144,3144,3210,[3149,3275],3213,[3152,3016],3144,3209,[3213,2951],[3149,3017],3149,3215,3215,3215,[3215,3270],[3151,3273],[3151,3274],3146,3145,3208,3146,3144,3208,3144,3209,3210,3146,3146,[3150,3272],[3214,3273],[3150,3274],[3215,3272],[3149,3081],3216,3150,3151,3213,3151,3216,3150,3213,[3213,3080],[3213,3273],[3152,3274],[3214,3275],3215,3150,3213,[3216,3270],[3215,3271],3209,3146,3144,3210,3208,3210,3146,3146,3146,3210,3144,3146,3144,[3150,2951],3145,3146,3145,3146,3209,3210,3146,3145,[3144,10230],[3208,10231],[3146,10133],[10037,9559],[3227,9652],[3227,9653],3164,3228,3163,3227,[4289,3229],4289,[4289,3033],[3226,9655],[3227,9748],[3164,9749],3164,3164,3161,[4289,3289],[4289,3100],4289,4289,[4289,3224],3228,3163,3227,3227,3164,3225,[4289,3035],[4289,3034],[4289,2973],4289,4289,[4289,3288],[4289,3099],4289,4289,[4289,3033,10230],[3226,10231],[3228,10232],[3227,10233],[3164,10133],[3227,9748],[3227,9749],3227,3163,[4289,3101],4289,[4289,3288],3162,3164,3163,3227,3227,3163,[4289,3165],4289,4289,[4289,3097],[4289,3290],[4289,3290],[4289,3291],[4289,3292],3162,3164,3227,3164,3227,3164,3164,3163,3164,3228,3161,[4289,3290],[4289,3291],[4289,3292],3162,3228,3163,3227,[3228,9562],[4289,3291,9563],[4289,3292],[4289,3293],4289,[4289,3033],3226,3163,3163,3163,3227,[3164,9658],[3228,9659],[10042,9560],10043,9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9508,9408,9411,9412,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9505],9598,9599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4018,4020,4019,3956,3955,3954,[4020,3788],3981,3981,3983,3981,3983,3920,3917,3919,3919,3918,3983,3983,3919,3920,3920,3920,3918,3920,3920,3919,[3981,9767],[4018,3985,9768],[3953,9573],3506,4017,3955,3955,4020,3954,4019,[4018,10147],[4019,10148],[3954,10149],[3955,10150],4020,3955,3953,4017,3953,3505,3954,3506,[3954,679],415,415,[3953,677],3956,4019,4018,4017,4017,3955,4017,4019,4017,3956,[3063,4081],4019,3507,4018,3506,[3569,9764],[3955,9953],9954,9955,9956,9957,9958,9959,[415,10055],415,[4018,744],[3955,745],[3955,743],415,[4019,677],3568,[3953,550],[3955,550],[4020,551],[3568,741],[3504,742],[3506,678],[3953,558],4017,[3955,679],415,415,[415,10147],[3954,613,10148],3956,3954,3954,4020,4019,4017,4017,[3956,9572],[3920,9761],[3983,9762],3983,3920,3919,3919,3920,3920,[4019,3728],[3955,3729],[4019,9767],[4017,9768],[4018,9573],3955,4020,3953,3954,4020,3954,4018,3954,4019,4017,4017,3956,4018,3954,4020,4020,3956,3954,3954,4017,3953,4020,3571,4017,4020,3953,3953,3954,3636,3637,3955,4018,3954,3953,3956,3955,3956,4018,3955,3953,4017,3956,3956,3953,[4017,9628],[3960,9625],[3575,9626],3961,3510,3447,3577,4025,3574,3960,4026,4025,3511,3447,3447,3446,4023,3578,4025,3446,3638,3639,3960,3446,3574,3448,4023,4024,4023,4024,3961,4026,3447,3961,4023,4024,3704,3705,4026,4025,3576,4025,4024,4026,3574,3577,4024,[4023,10106],[3446,9721],[3962,9722],3447,[3574,9631],[3511,9632],[3249,9533],3250,3250,3249,[2928,3124],2928,[2928,2992],[2928,3059],2928,[2928,3248],3250,[2928,3123],2928,2928,2928,[2928,3248],3250,3188,3250,3252,3249,3251,3186,3185,3188,3186,3250,3250,3185,3250,3249,[2928,3317],2928,2928,[2928,3248],3186,3185,3250,3249,3187,3188,3188,3187,3252,[2928,3123],2928,2928,[2928,3057],[2928,2997],2928,[2928,3184],3251,3252,3249,3249,3251,3186,3186,3187,3187,3185,3252,3252,3251,3186,[3188,10106,9532],[3249,9721],[3188,9722],3187,3186,3249,3188,3185,3188,3250,3249,3188,3250,[3188,10106],10010,[2928,3121,9625],[3251,9626],3250,3251,[3185,5824],[3185,5825],[3251,5826],[3250,5827],[3251,5828],3186,3250,3186,3185,3251,3186,3249,3250,3250,[3188,9823],[3249,9919],9920,[3185,9725],3187,3251,3186,[2928,2993],[2928,2997,9850],[2928,9946],9947,[3144,9752],3210,3210,3209,3208,3209,3210,3210,3209,3209,[3216,2952],[3216,2954],[3150,2951],[3152,2955],[3215,3079],[3149,3273],[3152,3274],[3214,3081],3213,[3151,3015],3210,3145,3146,3146,3210,[3152,2952],[3214,2954],[3213,3017],3216,3150,3149,3149,[3213,3270],[3150,3272],3145,3144,3145,3146,3210,3208,3145,3145,[3150,3081],3214,3152,3215,3149,[3149,3015],[3149,2952],[3216,2953],[3152,2954],[3214,2951],[3216,2952],[3214,2953],[3213,2954],[3150,3017],3152,3152,3213,3149,3152,3152,3216,3152,3213,[3150,3080],[3216,3271],[3150,3271],3146,3144,3210,3145,3145,3146,3208,3146,3145,3146,3145,3210,3145,3144,3209,3145,3208,3144,3144,3145,3144,3208,[3144,10133,9655],[3163,9748],[3228,9749],3163,3164,3163,3164,3225,[4289,2969],3226,[3164,9655],[3164,9652],[3228,9653],3161,[4289,3289],[4289,3099],4289,4289,4289,[4289,3034],3226,3163,3163,3227,3228,3164,3164,3225,3226,3225,[4289,2969],[4289,3035],4289,4289,4288,[4289,3034],3226,3228,3228,3164,3227,[3164,9844],[3227,9845],3164,3227,[4289,3165],4289,4289,[4289,3097],[4289,3289],3162,3164,3163,3161,[4289,3099],4289,[4289,3034],[4289,2969],[4289,2969],[4289,3035],4288,[4289,2968],3226,3228,3228,3228,3228,3163,3163,3164,3227,3161,[4289,3099],4289,4289,4289,[4289,3097],3162,3163,3227,[3228,9754],[4289,9755],4289,4289,[4289,2968],3226,3164,3163,3164,3227,3164,[3163,9754],[3163,9755],[10138,9656],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9508,9509,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9601],9694,9695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3955,4018,3955,3954,4017,3953,[3954,3852],3917,3920,3981,3918,3983,3920,3981,3920,3983,3917,3918,3917,3919,3920,3920,[3920,9767],[3919,9859],[3983,9860],[3981,9861],[3919,9862],[3954,4045,9863],9864,[3956,9669],3569,3504,3954,3955,3955,4020,4017,4018,3569,3570,3504,3505,3505,4017,3954,3569,3504,[3955,557],[3570,614],[4019,743],415,415,[4020,741],[3956,742],[3570,678],[3569,558],3570,3569,3505,3504,3956,4018,[3062,3891],3062,[3062,3890],3956,3953,3953,3504,3506,[4017,10050],[4017,10051],[3956,10052],[3953,10053],[3954,10054],[4020,550,10055],[3955,550],[4020,551],415,415,415,[3956,549],3506,3569,3506,3953,4019,[4017,550],[3506,550],[3506,551],[3956,741],[3954,742],[3953,743],415,415,[3954,549],4018,3954,4019,4020,3569,3505,4019,3506,[4019,9668],9857,[3919,9858],[3981,9859],[3920,9860],[3920,9861],[3919,9862],[3919,9859],[3919,9860],[3917,9861],[3955,3985,9862],[3504,9863],9864,[4020,9669],4020,3956,3956,3441,4020,4019,3956,3956,3636,3637,3956,4020,3953,4018,4020,4017,3954,3954,4018,4019,3956,4019,4020,3955,3953,3953,4020,4020,3700,3701,3954,4018,4017,3956,4020,3956,3954,4017,3953,4019,4019,3954,3571,3954,[4018,9724],[4026,9721],[4026,9722],3577,4024,4024,3578,3448,3577,4025,3576,3510,4024,3448,3574,3578,3446,3510,3511,3446,3702,3703,3510,3510,3512,3577,3446,3575,3961,3959,4025,4023,3574,3447,3511,4024,4025,3446,3576,3447,4025,3962,3959,3512,3576,3448,4025,[4025,9434],[3446,9530],4024,4025,[3446,9727],[4024,9728],[3186,9725],3186,3188,[2928,3253],2928,[2928,3057],3251,[2928,3253],2928,[2928,3312],[2928,3317],2928,2928,2928,[2928,3057],3251,3185,3249,3250,3187,3188,3249,3250,3185,3185,3187,3251,3249,3250,3249,[2928,3061],2928,2928,[2928,3058],3185,3185,3187,3187,3251,3186,3251,3249,3186,[2928,3253],2928,[2928,3057],[2928,2993],3250,3188,[2928,2993],3249,3252,3252,3185,3251,3186,3187,3185,3187,3252,3186,3249,3252,3186,3251,[3249,9628],[3187,9817],[3185,9818],3188,3252,3186,3185,3249,[2928,3314],[2928,3313],[2928,3314],[2928,3315],[2928,3316],3250,[3249,10106,9532],[2928,9721],[2928,3056,9722],3252,3185,3250,3188,3249,3252,3250,3186,3250,3252,3252,3250,3186,3250,3249,[3185,9631],[3185,9632],[10015,5490],[3251,10016,5491],[3249,9821,5492],3188,3187,3250,[3252,9850],[3249,9946],10042,[3209,10043],[3144,9848],3208,3210,3210,3210,3145,3209,3210,3208,3208,3210,3208,3144,[3150,3019],3214,3149,3215,3149,[3149,3016],3208,3209,3145,3146,3208,3145,3210,3209,3146,[3214,2951],[3216,2951],[3214,3017],3213,3152,3214,[3152,3079],[3150,3272],[3150,3273],[3216,3274],3144,3144,[3215,3274],[3214,3082],3213,3216,3151,3215,3216,[3151,3206],3144,3145,3146,3210,3209,3210,3146,3209,[3215,2952],[3214,2953],[3152,2954],[3214,2955],3215,[3216,3015],[3152,2955],3151,3149,3152,3215,3149,[3213,3079],[3150,3271],[3150,3272],3145,3210,3210,3208,3143,3208,3144,3146,3144,3146,3145,3208,3208,3209,3209,3144,3144,3146,3145,[3209,9655],[3164,9652],[3163,9653],3228,3228,3228,3227,3163,3164,3227,[3164,9655],[3164,9748],[3161,9749],[4289,3099],4289,4289,4289,4289,[4289,2968],3226,3228,3228,3227,3163,3228,3228,3164,3163,3228,3164,3228,3225,[4289,2970],[4289,2971],[4289,2972],3226,3228,3164,3228,3163,3228,9940,[3164,9941],[3227,9845],3163,3225,[4289,3036],4289,4289,4289,[4289,3097],[4289,3289],[4289,3289],[4289,3099],4289,[4289,3034],3226,3227,3163,3225,[4289,2969],3226,3228,3227,3164,3164,3228,3228,3163,3228,3161,[4289,3293],4289,4289,4289,4289,4289,[4289,3288],[4289,3289],3162,[3227,9850],[4289,9851],4289,[4289,3034],3226,3164,3164,3228,3227,3228,3164,[3164,9850],[3164,9851],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9604,9605,[403,9506],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9601],9598,9599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3955,3953,3956,4017,3955,4018,[3954,3916],3918,3920,3917,3918,3918,3981,3919,3920,3917,3917,3920,3983,3919,3920,[3919,9767],[3983,9863],9955,9956,9957,9958,9959,[3956,9960],[3953,9765],3505,3954,3955,3954,3956,4020,3953,3953,3506,3505,4020,4017,3568,3568,3953,3954,3569,[3569,615],415,415,415,415,415,415,415,[3953,613],4018,3506,3570,3568,3568,[3062,3829],3062,3063,3063,[3062,3824],4020,3570,3504,4020,4018,[4019,10147],[4020,10148],[3953,10149],[3953,10150],4017,3572,3953,[4017,550],[3953,550],[3568,550],3570,4019,3953,3568,3570,3955,3505,3569,[3568,615],415,[4018,549],[3504,550],[3505,550],[4018,550],4018,4017,3570,3505,3953,3505,4018,3956,3955,[3505,9764],[3505,9953],9954,9955,9956,9957,9958,9955,9956,9957,9958,9959,[3954,9960],[3956,9765],3506,3955,4020,4019,3955,4018,3956,3956,3700,3701,4017,4017,4017,3956,3956,4017,4019,4019,4020,3440,3954,4020,3954,3956,3955,3953,3955,4020,4018,4020,3953,3955,3955,4019,3955,3954,4019,3956,4018,3955,4019,4020,4017,4019,[4017,9434],[3577,9530],4024,4025,3961,3513,3447,3448,3962,4023,3449,3512,3960,3448,3962,3578,4023,3447,3962,4024,4025,3446,3447,4025,3447,3575,3511,3961,4026,4025,3577,3576,3447,3574,4024,3578,3448,3512,3449,3577,4023,3577,3510,3959,3960,3447,[3962,9529],[3512,9530],3576,3447,3577,3513,[3510,9535],[3187,9439],3188,3188,3249,[2928,2993],3249,3251,3249,[2928,2993],[2928,2997],2928,2928,[2928,2992],[2928,2993],3187,3188,3187,3185,3186,3249,3185,3252,3185,3250,3250,3186,3251,3252,3186,3252,[2928,3125],2928,[2928,2992],3186,3186,3185,3251,3185,3186,[3188,9338],[3187,9339],[3251,9340],[3250,9341],[3252,9342],2928,3185,3249,3188,3185,3251,3187,3188,3186,3185,3185,3187,3188,3249,3252,3187,3251,3187,3187,3186,3252,[3185,9724],9913,[3250,9914],[3187,9818],3252,3185,[2928,3316],[2928,3123],2928,2928,2928,2928,2928,[2928,3122],[2928,3061,9628],[2928,9721],[2928,3184,9722],3188,3186,3250,3187,3188,3187,3188,3186,3251,3188,3187,3249,3252,3186,3250,[3251,9727],[3186,9728],[3187,10111,9533,5586],[3187,5587],[3250,5588],3251,3249,[3249,9658],[3185,9659],[10042,9560],[3146,10138],3210,3209,3146,3208,3210,3210,3145,3210,3146,3146,3145,3146,3209,3144,[3216,3083],3149,3215,3215,[3152,3016],3144,3144,3208,3209,3146,3145,3145,3210,3145,3145,3144,3144,3146,[3151,2952],[3216,2954],[3213,3017],3151,3149,3150,3151,[3151,3270],[3215,3275],3151,3152,3152,3213,3151,[3150,2950],[3215,2951],3210,3208,3145,3145,3145,3145,3208,3208,3145,3144,3209,3209,[3214,3082],3150,[3215,3206],3146,[3214,2952],[3152,2953],[3213,2954],[3215,3017],3213,3216,3215,3152,[3149,3079],[3213,3274],3210,3210,3146,3145,3145,3210,3145,3146,3145,3210,3145,3146,3208,3210,3210,3209,3145,[3209,9655],[3163,9748],[3164,9749],3164,3163,3227,3227,3228,3163,3163,[3227,9655],[3227,9652],[4289,3037,9653],4289,4289,[4289,2968],[4289,2970],[4289,2971],3226,3228,3227,3164,3163,3164,3164,3228,3228,3228,3227,3227,3164,3164,3163,3227,3163,3164,3228,3164,3227,3163,3161,[4289,3100,10036],10037,[3163,9652],[3227,9653],3227,3225,[4289,2969],[4289,3036],4289,4289,4289,4289,[4289,3034],[4289,3036],[4289,3224],3228,3164,[3227,9850],[3228,9942],[3227,9943],[3228,9845],3163,3164,3163,3163,3164,3227,3228,3161,[4289,3100],4289,4289,4384,4289,4289,4289,4289,4289,[4289,3097,9850],[3164,9946],9947,[4289,2969],3226,3228,3163,3228,3227,3163,3227,[3164,9850],[3227,9946],9947,9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9700,9701,[403,9602],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,9312,9313,9314,9315,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9697],9694,9695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3955,3956,4017,3954,3955,3954,[3953,3853],[3954,4045],[4019,4046],[4019,4047],[4020,4048],3919,3981,3983,3917,3918,3919,3919,3920,3919,[3920,9575],[3981,9576],[9959,9477],[3956,10051],[3956,10052],[3953,10053],[3954,10054],[4018,10055],4020,3568,4020,3569,3506,3506,3955,3954,3954,4018,3505,3954,3956,3570,3569,3570,3956,3954,3632,3633,[3953,551],415,415,415,[4018,549],[3953,550],[3568,550],3504,3505,3953,3506,3570,3506,[3062,3893],2998,3063,3063,[3063,3888],3956,3955,3569,4019,3504,3956,4019,3953,3956,3955,3442,4020,4018,4017,4019,3956,4019,4019,3953,3569,4018,3568,4017,3505,[3953,550],3569,3440,3636,3637,3506,3570,3953,3568,3953,4018,4019,4018,3572,3953,3953,[4017,10050],[4018,10051],[4017,10052],[3954,10053],[4020,10054],[4019,10051],[3955,10052],[3954,10053],[3505,10054],[4020,10055],4018,3955,3505,3956,4018,3953,3956,3956,4017,3955,4020,4017,3955,4017,4018,4018,3953,3954,3953,4017,3953,4017,4018,3954,4018,3956,3956,3568,3506,3570,4019,4019,3572,4020,4017,4018,4017,3955,3953,3954,4018,3953,4018,4019,4018,[3954,9434],[4024,9530],3578,3959,4024,3574,3448,4024,3960,3447,4026,3448,3448,3447,3578,[3062,4087],4024,3962,3446,4026,3446,4024,3448,3449,4025,3512,3575,3446,3511,3446,3447,3962,4024,3960,3578,3959,3512,3574,3961,3575,3574,3962,3961,4023,4024,3574,[3510,9532],[3576,9625],[3577,9626],3577,3448,3959,3446,3446,[3577,9535],[3187,9536],3249,3251,3251,3252,3251,3187,3249,[2928,3061],2928,2928,[2928,3312],[2928,3313],3250,3186,3250,3186,3251,3251,3186,3250,3251,3185,3250,3252,3186,3252,3188,3250,[2928,3189],2928,[2928,3248],3249,3249,3249,3185,3249,3188,[3187,9434],[3186,9435],[3251,9436],[3252,9437],[2928,9438],[2928,9439],2928,3252,3188,3250,3185,3185,3187,3186,3186,3250,3186,3251,3188,3251,3188,3251,3251,3250,3249,3188,[3185,9820],[3250,10009],[10010,9532],[3186,9625],[3187,9626],[2928,3253],2928,2928,[2928,2992],[2928,2993],[2928,3059],2928,[2928,9339],[3188,9342],[2928,3125,9529],[2928,9530],[2928,3312],[2928,3313],3249,3187,3187,3187,3185,3186,3188,3249,3250,3185,3185,3250,3185,3251,[3249,9631],[3252,9632],[3249,9629,5682],[3249,5683],[3252,5684],3188,3185,[3249,9754],[3185,9755],[3210,10138,9656],3209,3146,3208,3146,3146,3145,3208,[3150,3271],[3214,3272],[3215,3273],[3151,3274],3208,3144,3146,3144,[3215,3147],3214,[3215,2950],[3151,2951],3146,3144,3209,3208,3144,3145,3145,3208,3209,3145,3210,3210,3145,3146,3210,3146,3210,[3150,2952],[3152,2953],[3152,2954],[3215,2955],3214,3149,[3216,3015],[3150,2951],[3213,2952],[3149,2953],[3215,2954],3208,3145,3145,3145,3145,3208,3144,3208,3208,3144,3208,3144,3210,[3151,3019],3215,[3149,2950],3144,3144,3209,3144,3209,3208,[3213,2952],[3213,2953],[3213,2954],[3150,3017],3152,3150,[3213,3079],[3216,3271],[3216,3272],3144,3209,3145,3208,3146,3209,3210,3145,3209,3145,3144,3144,3209,3144,[3208,9655],[3164,9652],[3227,9653],3227,3227,3164,3227,3227,3228,3227,[3228,9655],[3164,9748],[4289,3165,9749],4289,[4289,3033],3226,3227,3227,3163,3164,3164,3164,3228,3228,3163,3164,3163,3164,3163,3163,3163,3163,3228,3227,3164,3227,3227,3228,3164,3227,[4289,3037],4288,[4289,10133],[3163,9748],[3227,9749],3227,3163,3163,3225,[4289,2969],[4289,3036],4288,[4289,2968],3226,3225,3226,3228,[3228,9850],[3227,9946],10038,10039,[3163,9941],[3227,9845],3164,3163,[3163,9850],[3228,9944],[3164,9945],[3164,9845],[4289,3229],4289,4289,4289,4289,4289,4289,[4289,3034],[4289,3035],[4289,9754],[4289,9755],10042,[3228,10043],3228,3227,3164,3227,3161,[4289,3289],3162,[3163,9658],[3228,9659],[10042,9560],10043,9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9604,9605,[403,9602],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,9407,9408,9409,9410,9411,9412,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,9312,9313,9314,9315,403,403,403,403,403,403,403,403,403,403,403,403,9312,9315,9407,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3953,3956,4017,4018,4018,4019,3954,3953,4017,4017,3955,[4019,3853],3983,3919,3918,3920,3917,3981,[4020,4048],[3955,4047],[4019,4048,9671],[4019,3856,9672],[3955,10055,9573],[4017,10147],[3954,10148],[3568,10149],[3953,10150],3504,3955,4019,3955,3504,3956,4018,4020,3953,3955,4017,3569,3954,3506,4018,3569,3504,4017,3504,3696,3697,4019,[4020,551],415,[3570,549],4019,3955,4018,3568,4017,3570,4018,4018,3569,[3063,3957],3063,3062,3062,[3063,3952],3953,3955,3505,3504,3506,4017,3506,3569,3506,4017,4017,3569,4018,3955,3504,[4020,1292],[4020,1293],3955,3506,4019,3956,4020,4020,3953,3506,3504,3954,3700,3701,3505,4019,3955,3955,3953,3571,4019,3507,3956,3569,4019,3956,[3569,10147],[3569,10148],[4017,10149],[4019,10150],[3570,10147],[3506,10148],[3568,10149],[3505,10150],3569,3956,3568,3505,3505,3955,4017,4017,4019,4017,3954,3953,4020,3954,3956,3953,3953,3955,4018,4017,3956,3953,4019,4017,3956,4020,3955,3955,3956,3955,3568,3504,3953,3956,3953,4017,3956,3955,3954,3954,4019,4017,3955,4019,4020,[3956,9532],[4026,9625],[3448,9626],3577,4024,3576,3574,3578,4025,3446,3959,4026,3575,3578,3575,[3063,3897],3062,[3063,3830],3511,3577,3574,3447,3577,4024,4024,4024,3577,4023,4023,3576,3446,3446,4024,4024,3576,3962,4023,3578,3446,3446,3446,3577,3577,3578,3511,3577,4024,[3512,9628],[3962,9721],[3448,9722],4024,3446,3960,3959,4025,[3577,9631],[3575,9632],[3185,9533],3188,3188,3188,3250,3185,3249,[2928,3189],2928,2928,2928,2928,[2928,3248],3186,3252,3250,3187,[3187,9339],[3250,9340],[3186,9341],[3251,9342],3249,3188,3188,3187,3186,3249,3249,3188,[2928,2993,9339],[3251,9340],[3251,9341],[3251,9342],3185,3188,3250,[3185,9532],[3252,9625],[3187,9626],3187,3252,[2928,3125],[2928,9535],[2928,3184,9536],[3250,9339],[3252,9340],[3250,9341],[3250,9342],3249,3249,3187,3249,3185,3250,[3188,9339],[3252,9342],3187,3252,3187,3250,3186,3250,3185,3252,3186,[3187,10106,9628],[3185,9721],[3252,9722],[2928,3124],2928,[2928,3057],3252,3249,3188,[2928,2993,9529],[3186,9435],[3252,9438],[2928,3189,9530],2928,2928,2928,[2928,3122],[2928,3315],[2928,3316],3250,3249,3250,3186,3252,3249,3251,3185,3187,3187,3187,[3186,9727],[3188,9728],[3251,9725,5778],[3188,5779],[3249,5780],3188,3252,[3249,9754],[2928,3313,9755],[3208,9752],3146,3210,3146,3144,3209,3209,[3149,3211],3152,3213,3150,3213,[3151,3079],[3213,3272],[3149,3273],[3152,3274],[3151,3082],3216,[3213,3014],3144,3146,3144,3209,3210,3208,3210,3144,3208,3210,3145,3144,3209,3210,3209,3144,3146,3145,3144,3208,3210,[3215,3082],3152,3152,[3150,3206],3145,3145,3144,3210,3146,3209,3145,3145,3209,3144,3209,3145,3146,3146,3209,3145,3209,[3152,3083],3214,[3214,3014],3210,3208,3210,3208,3145,3146,3208,3146,3209,3208,[3215,2951],[3214,2955],3151,3150,3151,[3152,3079],3146,3210,3144,3144,3209,3210,3210,3208,3210,3146,3144,3210,3146,[3210,9655],[3227,9844],[3228,9845],3163,3227,3164,3164,3227,3163,3163,[3164,9655],[3164,9844],[4289,3229,9845],4289,[4289,3032],3227,3164,3164,3163,3164,3164,3228,3161,[4289,3291],3162,3228,3227,3227,3227,3161,[4289,3291],[4289,3292],3162,3164,3163,3227,3163,3163,3228,3163,[4289,3165],4289,[4289,2968],[3227,9844],[3164,9845],3228,3164,3163,3227,3164,[4289,3229],4289,[4289,3224],3161,[4289,3289],3162,[3164,9850],[3228,9946],10042,[3163,10134],[3228,10135],10037,[3227,9941],[3227,9944],[3164,9945],[3163,9946],10040,10041,[3164,9941],[4289,3100,9845],4289,4289,4289,4289,4289,4289,[4289,3224],[4289,3229],[4289,9658],[4289,9659],[3228,10138],3228,3227,3227,3163,3163,[4289,3037],4289,[4289,3224],[3163,9754],[3164,9755],[10138,9656],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9700,9701,[403,9698],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,9502,9503,0,0,0,9604,9605,[403,9506],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,9312,9313,9314,9315,403,403,403,403,403,403,403,403,9407,9408,9409,9410,9411,9412,403,403,403,403,403,403,403,403,403,[403,9406],9407,9408,9411,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3954,4018,3954,4017,3956,4018,4020,4018,4020,3953,3955,4017,[3953,4044],[4019,4045],[4020,4046],[3954,4047],[4017,4048],[4018,3856],4018,3954,[4018,9767],[3954,9768],[3570,9762,9669],3954,4017,3955,3956,3504,4019,4019,4017,3505,4018,4020,3956,4017,3954,4019,4020,3953,3955,3956,4019,3505,4020,4020,3955,3956,3505,3569,[4020,550],4020,3956,3953,3568,4020,3443,3570,3953,3953,3954,[3063,4021],3063,3062,3062,[3062,4016],4019,3569,3956,4020,[3569,9283],[3955,9286],4020,3955,3506,3569,3505,3506,4017,3569,3504,[4017,1356],[4020,1357],4018,4017,3505,3953,3504,3568,4020,3568,3505,3570,4019,3568,4018,3569,3569,3506,3504,4020,3570,3956,3570,3954,4017,4017,3955,4020,3954,3956,4018,3443,3506,4018,3568,4018,3506,3956,3570,4017,3954,3953,3955,4020,3955,3956,3953,3953,3953,3954,3954,4020,4019,4019,4019,4020,3955,3956,4019,4018,3570,3956,3956,3505,3505,3568,3954,3956,3504,3956,3505,4020,4018,3954,4018,3956,3953,3955,4018,[3956,9628],[3448,9721],[3574,9722],3448,3576,4026,4024,4024,3578,3577,3960,3448,3960,3447,[3062,4027],3063,2998,[3063,3894],3578,3577,3960,3961,[3577,9823],[3511,9915],[3578,9916],[3577,9818],3960,4026,4025,3512,3962,[4023,9823],[3962,9915],[3447,9916],[3577,9917],[2998,4088,9918],[3062,4089,9818],[3062,4090],3574,4023,3574,3577,3446,4023,4024,4025,4024,[4025,9628],[3578,9817],[3577,9818],4024,4023,3448,4023,3446,[3512,9727],[3510,9728],[3185,9629],3249,3249,3187,3251,3187,3187,3249,[2928,2993],[2928,2996],[2928,2997],2928,[2928,3121,9339],[2928,3313,9340],[3313,9341],[3187,9342],[3250,9434],[3251,9435],[3249,9436],[3188,9437],[3188,9438],[3250,9439],3187,3187,3186,3249,3251,3188,[3250,9434],[3187,9435],[3187,9436],[3185,9437],[3252,9438],[3250,9439],3185,3185,[3249,9724],[3252,9721],[3185,9722],3186,3187,[2928,3189],2928,[2928,3121,9535],[3249,9435],[3252,9436],[3187,9437],[3251,9438],[3185,9439],3251,3185,3250,3185,[3252,9434],[3249,9435],[3188,9438],[3250,9439],3250,3187,3186,[2928,3315],[2928,3316],3186,3185,3187,[3251,9628],[3187,9817],[2928,3123,9818],2928,2928,[2928,3248],3250,3188,[3186,9532],[3185,9625],[3185,9626],3250,3188,[2928,2993],[2928,2994],[2928,2995],[2928,3059],2928,2928,[2928,3248],3250,3185,3251,3187,3187,3252,3186,3250,[2928,3313],[2928,3315],3249,[3188,9535],[3252,9536],3251,3187,3187,[2928,3316],[2928,3123],[2928,9562],[3144,9466],3145,3145,3145,3209,3144,3208,3144,[3151,2952],[3214,2953],[3216,2954],[3151,3017],3150,3214,3150,3215,3215,3215,[3216,3078],3209,3210,3145,3209,3144,3144,3209,3209,3208,3208,3144,3209,3144,3145,3209,3146,3144,3208,3144,3208,[3214,3275],3213,3150,[3150,2950],3209,3210,3210,3145,3210,3144,3209,3146,3210,3145,3146,3145,3209,3207,3208,3145,3210,3208,[3151,3147],3213,[3151,3078],3209,3144,3209,3145,3146,3146,3210,3210,3210,3145,3144,[3150,3081],3152,[3215,2950],[3150,3018],3216,[3152,3080],3210,3209,3210,3145,3144,3145,3208,3145,3144,3145,3210,3145,[3209,9751],9940,[3228,9941],[3227,9845],3163,3228,3228,3227,3164,3228,[3164,9751],[9940,9559],[4289,9652],[4289,9653],[4289,3160],3164,3228,3228,3163,3228,3164,3164,[4289,3229],4289,[4289,3097],[4289,3289],[4289,3290],3162,3163,[4289,3229],4289,4289,[4289,3224],3163,3228,3163,3227,3164,3161,[4289,3290],[4289,3293],[4289,3033],3226,9940,[3164,9941],[3164,9942],[3164,9943],[3228,9845],3163,3163,3225,[4289,3035],[4289,3098],[4289,3100],[4289,3034],[3226,9850],[3227,9946],10042,[4289,3224,10138],[3164,10230],[3163,10231],[3163,10133],10037,10040,10041,10042,[4289,3160,10136],[3228,10137],10037,[4289,9941],[4289,9942],[4289,9943],[4289,9944],[4289,9945],[4289,9845],[4289,3033],3226,[4289,3229],[4289,9754],[4289,9755],3227,3227,3163,3227,3163,3227,[4289,3101],4289,[4289,3097],[3162,9754],[3164,9755],9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9508,9412,403,403,403,403,403,403,403,9312,9315,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9505],9598,9599,0,0,0,9700,9701,[403,9602],403,403,403,403,403,403,403,403,403,403,403,403,403,403,9407,9408,9409,9410,9411,9412,403,403,403,403,403,403,9502,9503,0,0,0,0,9508,9412,9312,9313,9314,9315,9312,9313,9314,9315,9502,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3953,4020,3954,3955,4019,4019,3954,4020,4017,3953,3953,3955,4019,3955,3954,4020,4019,3956,4020,[3954,9767],[3955,9863],9864,[3954,9858,9765],[4018,9762],4019,3570,4019,3569,3954,3956,3506,3568,3954,4018,3506,4019,3953,3954,4018,3954,3569,3570,4020,3568,3569,3954,3504,3953,3443,3954,4018,3505,4019,3569,3505,3569,3505,4020,3506,4020,3570,3955,[3062,3827],3063,3062,[3062,3890],4020,3441,4019,[3956,9378],[3956,9379],[3570,9382],[3505,9383],3955,4018,4020,3506,3505,3954,3954,[4018,1419],[4019,1420],[3955,1421],[4019,1422],[3504,1423],[3953,1424],[3955,1425],[3955,1426],3569,3568,3954,3504,4019,4017,3954,3955,4018,3504,3954,3506,4017,3569,3636,3637,3956,3504,3953,4020,3569,3953,3568,4020,3954,4018,4020,4019,3954,3954,3570,3954,3568,4020,3440,3569,3956,4020,4017,3953,3443,4017,4019,3954,3955,3955,3953,4019,3953,3636,3637,4019,4019,4017,4017,3506,3956,3504,3568,3504,3570,3570,3568,3953,3568,3955,3954,3953,4020,4018,4020,4019,[3955,9724],[3575,9721],[3577,9722],3578,4024,3510,3513,3447,3575,3577,3574,3446,3578,3510,4026,[3062,3834],3062,[3062,3958],4025,3447,3959,[4026,9823],[4023,9919],10011,10012,[3575,9914],[4025,9818],3447,3577,3513,[3448,9823],[3062,4089,9919],10011,10012,10013,10014,[3062,9914],[2998,9818],[3063,3895],[3063,4087],[3062,4088],4024,3576,3511,4026,4026,4024,[3447,9724],9913,[4023,9914],[4025,9818],3576,3512,4026,3447,[3511,9823],[3574,9824],[3186,9629],3251,3185,3187,3187,3186,3187,3185,3252,3250,[2928,3253],[2928,9434],[2928,9435],[2928,9436],[3250,9437],[3252,9438],[3249,9530],3186,3250,3186,3252,[3188,9535],[3186,9536],[3249,9339],[3186,9340],[3251,9341],[3186,9342],[3185,9529],[3250,9530],3251,3250,3252,3252,[3187,9535],[3187,9536],[3187,9339],[3187,9529],[3187,9530],3186,3188,3185,3186,[2928,3059],2928,[2928,3121],3252,3250,3251,[3187,9535],[3250,9536],[3250,9339],[3186,9342],[3188,9529],[3251,9530],3185,3249,[3250,9535],[2928,3315,9536],[2928,3316],[2928,3317],2928,2928,[2928,3122],[2928,3313],3251,[3186,9724],9913,[2928,9914],[2928,3058,9818],[2928,2993],3186,3185,3252,[3249,9628],[3250,9721],[3249,9722],3185,3188,3186,3185,3249,[2928,3253],2928,[2928,3057],3186,3186,3187,3249,3186,3186,3251,3252,[2928,3124],2928,2928,[2928,3312],[2928,3313],[2928,3314,9535],[2928,3315,9536],[2928,3316],[2928,3317],2928,2928,2928,[2928,3057,9562],[3146,9563],3146,3144,3208,3145,3144,3208,3144,3210,3209,3208,[3151,2951],[3149,2952],[3216,2953],[3151,2954],[3149,2955],3216,[3214,3142],3144,3210,3209,3209,3145,3146,3146,3146,3145,3208,3208,3210,3145,3144,3145,3209,3209,3209,3146,[3151,3081],3151,3214,[3149,3015],3209,3209,3145,3208,3145,3145,3210,3146,3210,3146,3145,[3149,3271],[3151,3272],[3215,3273],[3152,3274],[3214,3273],[3214,3274],3209,3210,[3150,3211],3216,[3214,3142],3144,3209,3146,3208,3209,3209,3210,3210,3208,3208,[3214,3275],3216,3149,[3214,3206],[3215,3211],3216,3213,[3216,3270],3144,3209,3210,3210,3208,3144,3144,3209,3144,3144,3209,[3208,9847],[3210,10036],[10037,9559],[3164,9652],[3227,9653],3228,3163,3164,3227,3228,[3163,9847],[3227,10036,9655],[3225,9748],[4289,2969,9749],3226,3228,3228,3228,3164,3228,3228,3163,3225,[4289,3036],4289,4289,4289,[4289,3224],3161,[4289,3099],4289,[4289,3033],3226,3227,3228,3164,3227,3227,[4289,3037],4289,4289,[4289,3224],3227,[3164,10036],10037,10038,10039,[3163,9941],[3164,9845],3228,3163,3225,[4289,2969],[4289,2969],[3226,9850],[3163,9946],10042,[4289,10138],[4289,3097],3162,3163,3228,[3227,10133],[3163,10136],[4289,3037,10137],[4289,10138],[4289,3224,10232],[3227,10233],[3164,10133],10037,10038,10039,10040,10041,[3225,9941],[3226,9845],3161,[4289,3100],[4289,9850],[4289,9851],3228,3164,3228,3163,3227,3227,[4289,3165],4289,4289,[4289,3288],[4289,3289,9562],9466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9508,9509,403,403,403,403,403,9407,9408,9411,9412,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9601],9694,9695,0,0,0,0,9508,9509,403,403,403,403,403,403,403,403,403,403,403,403,403,9502,9503,0,0,0,0,9508,9509,9312,9313,9314,9315,9502,9503,0,0,0,0,0,0,9508,9408,9409,9410,9411,9408,9409,9410,9411,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9859,9860,9861,9862,9859,[3953,9860],[4019,9861],[3954,9862],[3953,9859],[3956,9860],[4017,9861],[4017,9862],[3954,9859],[4020,9860],[4017,9861],[4019,9862],[4020,9859],[3953,9860],[4017,9861],[4020,9862],[3953,9859],[4019,9860],[4017,9861],[3953,9862],[3442,9863],9959,[415,9960],9954,[3956,9858],[3955,9859],[3955,9860],[3954,9762],4018,4019,3954,4018,4017,3956,3569,4017,3441,4019,3507,4017,3504,3954,3572,3569,3505,3570,3956,3953,3504,3506,3953,4018,4019,4019,4018,3955,3504,3955,3442,3955,3506,4018,3956,[3063,3829],3063,3062,3062,[3062,3824],4019,[3955,9473],[3954,9474],3504,4017,[3570,9479],[3505,9480],[4017,9285],[3569,9286],4019,3954,4017,3953,[3505,1483],1484,1485,1486,1487,1488,1489,[3568,1490],3955,4019,4019,3568,3505,3505,4017,4017,3569,3506,3954,3506,4017,3955,3700,3701,4020,4019,3505,4017,4019,3505,3953,3505,3953,3953,3954,4019,4019,3506,3953,3504,4020,3505,3953,3505,3506,4020,4017,4020,4019,3954,3956,3956,3953,3955,4020,3441,3954,3700,3701,3955,3570,3955,4017,4018,3505,3568,3954,3956,4018,3568,3505,4020,3955,4019,3955,4018,3568,3504,3953,4020,[3956,9434],[3512,9530],4024,3638,3639,4024,3960,3577,3512,3447,3962,3448,3448,4023,3578,[2998,3835],3062,[3063,3895],[3063,4087],3448,[3446,9631],[3446,9632],[10015,9533],[3512,10107],[4024,10108],[10010,9532],[3961,9625],[3448,9626],3577,[3446,9631],[3063,3835,9632],[10015,9533],[2999,3895,10107],[3062,4022,10108],[2999,4027,10109],[4022,10110],[10010,9532],[3062,3833,9625],[3063,9626],3062,3063,[3062,3895],4024,3578,3576,3446,3448,[4026,9820],[3575,10009],10010,[3960,9914],[4024,9818],3960,3448,[3576,9823],[3448,9919],9920,[3252,9725],3188,3185,3250,3186,3249,3188,3186,3251,3249,[3249,9532],[2928,3059,9625],[2928,9626],3187,3187,3250,3251,3188,3186,3251,3186,3252,[3249,9535],[3251,9435],[3188,9436],[3250,9437],[3252,9438],[3250,9530],3250,3185,3249,3187,3250,3250,[3252,9535],[3187,9435],[3188,9530],3188,3186,3251,3185,3249,3250,[2928,3059],2928,[2928,3056],3250,3188,3251,[3188,9535],[3251,9435],[3188,9438],[3251,9530],3252,3188,3251,[3188,9631],[3188,9632],[2928,9533],2928,[2928,2992],[2928,3059],2928,2928,[2928,3121],[3249,9820],[3188,10009],10010,[3252,9625],[3187,9626],3252,3251,3250,[3188,9628],[3252,9817],[3188,9818],3188,3188,3250,3249,3185,3185,[2928,2993],3250,3185,3252,3186,3252,3186,3185,3250,[2928,3253],2928,2928,2928,2928,2928,[2928,9631],[2928,9632],[2928,9533],2928,[2928,3057],[2928,2994],[2928,2996],[3250,9658],[3251,9659],[3209,9560,9366],[3145,9367,5490],[3145,9368,5491],[3209,9369,5492],3146,3208,3145,3145,3146,3210,3146,3208,3143,3208,[3215,3019],3150,[3150,3206],3209,3208,3208,3146,3144,3145,3210,3144,3146,3208,3146,3146,3144,3144,3210,3146,3144,3209,[3149,3211],3215,3215,3216,[3152,3206],3145,3208,3145,3144,3210,3208,3209,3144,3209,3144,[3214,3081],3152,3151,3216,3213,3149,3151,[3152,3079],[3216,3274],[3213,3275],3149,[3152,3206],3144,3209,3146,3209,3145,3144,3210,3208,3209,[3216,3211],3215,3214,[3216,3015],3145,3210,[3213,3017],3214,3149,[3152,3080],[3152,3273],3145,3146,3209,3208,3145,3144,3145,3210,3145,3144,3209,[3145,10133,9655],[3227,9748],[3164,9749],3228,3163,3227,3164,3164,3164,[3227,9655],[3163,9748],[3227,9749],3163,3228,3164,3164,3163,3164,3163,3228,3163,3225,[4289,2969],[4289,2973],4289,[4289,3097],[4289,3293],4289,4289,[4289,3224],3163,3164,3163,3163,3228,3228,[4289,3101],4289,[4289,3033],3226,3228,3164,[3228,10133],[3227,10134],[4289,3037,10135],10037,[3164,9941],[3228,9845],3163,3163,3227,[3228,9658],[3227,9659],10042,[2969,10138],[4289,3035],4289,[4289,3288],3162,3163,3164,[3227,10232],[4289,3101,10233],4289,[4289,3097],3162,3228,[3228,10133],[3164,10134],[4289,3165,10135],[4289,10136],[4289,10137],10037,[3228,9941],[4289,3099,9942],[4289,9943],[4289,9946],9947,3227,3164,3164,3163,3164,3227,3225,[4289,3036],4289,4289,4289,[4289,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9604,9605,9312,9313,9314,9315,9502,9503,0,0,9508,9509,9312,9313,9314,9315,403,403,403,403,403,403,403,403,9407,9503,0,0,0,0,0,0,9508,9412,403,403,403,403,403,403,403,403,403,403,403,[403,9505],9694,9695,0,0,0,0,0,9508,9408,9409,9410,9411,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9955,9956,9957,9958,9955,9956,9957,9958,9955,9956,9957,9958,9955,9956,9957,9958,9955,9956,9957,9958,9955,9956,9957,9958,9959,[415,10055],415,[415,10050],9954,9955,9956,[3954,9858],[3570,9762],3953,3954,4019,3568,4018,4020,3955,3955,4020,4018,3504,3953,4019,3953,4019,3569,4020,3955,3954,4019,3570,3569,4017,3955,3568,4018,4017,3440,3568,4017,3954,3953,3570,3953,[2998,3957],3062,3062,3062,[3062,3888],[3955,9473],[3505,9474],3953,3572,4019,3954,[3506,9479],[4018,9381],[3953,9382],[3568,9383],3954,3506,3505,[3504,1547],1548,1549,1550,1551,1552,1553,[4017,1554],3506,4018,3953,4017,3506,3570,3568,4019,3506,3953,4019,3568,3569,4019,4019,3570,3570,3569,3506,3956,4020,3956,3954,3955,3956,4019,3956,3956,3955,4019,3504,3954,4018,3572,4019,3568,3506,3955,3953,4020,3953,3954,4018,3953,3955,4018,3953,3443,3953,3953,4017,3954,3953,3570,3569,3570,3506,4017,4019,3506,3570,3955,3568,3955,4018,4020,3956,4020,3569,3505,3955,[4020,9434],[4024,9530],3578,3577,3702,3703,4023,4026,3577,4026,4023,3447,4023,3446,3449,4025,[3062,3963],3063,3062,3062,[2998,3895],[3062,4087,9727],[3959,9728],[4025,10111,9725],[3578,10203],[3512,10204],[3578,10106,9628],[3446,9625],[4025,9626],3448,[3511,9727],[3063,3963,9728],[3063,10111,9629],[2999,10203],[3062,4086,10204],[3062,3897,10205],[3063,3958,10206],[3961,10106,9628],[3575,9721],[3063,3767,9722],[3062,3833],3063,3063,[3062,4086],[3062,4089],[3062,4090],3511,3962,3577,4025,[4026,10106],[10010,9532],[4023,9625],[3577,9626],[3960,9631],[3447,9632],[10015,9533],[3249,10016],[3186,9821],3185,3186,3251,3250,3250,3186,3250,3185,[3250,9433],[3187,9434],[3252,9530],3185,3252,3251,3187,3186,3188,3249,3250,3252,3251,3188,3249,3187,3187,3187,3187,3188,3250,3185,3186,3186,3186,3252,3251,3187,3249,3250,3188,3251,3249,3252,[2928,3123],2928,[2928,3120],3187,3186,3250,3187,3187,3251,3252,3249,3251,3252,[3251,9727],[2994,9728],[2928,2995,9629],[2928,2996],3251,3185,[2928,3060],2928,2928,[2928,3056],3188,[3188,10106,9532],[2993,9721],[3187,9722],[3252,5485],[3250,5486],[3186,5487],[3251,9724,5488],[9913,5489],[3187,9914],[3186,9818],3186,3251,3187,3187,3251,3188,3188,3251,3186,3186,3187,3252,3185,3251,3187,[2928,3060],2928,2928,2928,[2928,3058],[2928,2993,9727],[2928,2994,9728],[2928,2995,9629],[2928,2996,5485],[3250,5486],[3249,5487],[3186,5488],[3250,5489],[3186,9562],[3250,9462],[3249,9463,5586],[3186,9464,5587],[3251,9465,5588],[3208,9563],3145,3144,3209,3146,3209,3210,3208,3209,3145,[3213,3147],3152,[3214,3079],3145,3208,3144,3146,3208,3210,3144,3144,3208,3210,3210,3208,3144,3209,3210,3208,3145,3146,[3151,3081],3216,[3151,2950],[3149,2951],3146,3145,3146,3146,3146,3145,3146,3208,3210,3210,3208,[3215,3018],[3213,3015],[3149,2952],[3216,2953],[3151,2954],[3216,3017],3215,3151,3150,3152,3152,[3151,3014],3145,3146,3208,3146,3208,3210,3209,3210,3144,[3214,3081],3149,[3213,3016],3145,3210,3210,3144,[3150,2952],[3215,2953],[3152,2954],[3214,2955],[3152,3079],[3149,3271],3210,3144,3209,3208,3146,3144,3208,3208,3146,[3145,9751],[3163,9748],[3164,9749],3163,3164,3228,3228,3228,3164,[3228,9655],[3228,9652],[3227,9653],3164,3164,3163,3164,3228,3163,3227,3164,3228,3227,3228,[4289,3037],4289,4288,4289,4289,[4289,3034],3226,3228,3228,3164,3163,3164,3163,[4289,3165],4289,[4289,3288],3162,3227,3164,3228,[3227,10230],[4289,3101,10231],[4289,10133],10037,[3228,9748],[3227,9749],3164,3228,[3164,9754],[3228,9755],[3228,10138],3227,[4289,3229],4288,4289,[4289,3097],3162,3163,3164,[4289,3165],4289,4289,[4289,3288],[4289,3291],3162,[3163,10230],[4289,3229,10231],[4289,10232],[4384,10233],[4289,10133],10037,10038,10039,10042,[4289,3097,10043],3162,3164,3228,3228,3163,3228,3227,3225,[4289,2969],[4289,2970],[4289,2971],[4289,2972,9658],[3228,9659],9560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9508,9408,9409,9410,9411,9503,0,0,0,0,9508,9408,9409,9410,9411,9412,403,403,403,403,403,403,9502,9503,0,0,0,0,0,0,0,0,9508,9509,403,403,403,403,403,403,403,403,403,403,9407,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10051,10052,10053,10054,10051,10052,10053,10054,[415,10051],[415,10052],[415,10053],[415,10054],[415,10051],[415,10052],[415,10053],[415,10054],[415,10051],[415,10052],[415,10053],[415,10054],[415,10051],[415,10052],[415,10053],[415,10054],[415,10055],415,415,415,[415,10050],[415,10051],[415,10052],[9954,9476],[4019,9569],[3953,9570],4018,3570,4019,4018,4019,4020,4018,4020,3953,4017,3953,3506,3953,3505,3569,3956,3956,4020,4020,3955,3953,3955,3570,4020,4018,3569,4017,3956,3569,3570,3568,3954,3955,3953,[3063,3828],3063,3062,[3062,3952,9476],[4017,9569],[3956,9570],4018,3506,4020,4017,3506,3505,3570,[4017,9479],[4019,9480],3953,3570,[3504,1611],1612,1613,1614,1615,1616,1617,[4020,1618],3570,3506,3505,3955,3954,3568,3569,3953,3505,3568,3505,3505,3954,3955,4017,3956,3505,4020,4019,3506,3569,3953,4019,3954,3956,3506,3505,3505,3956,3954,3570,3506,3505,3504,4019,3570,3955,3954,3956,3955,3956,3956,4017,3956,[4017,5068],[4017,5069],[4017,5070],4018,4018,3506,4019,3569,4017,3506,3568,3569,3506,3505,3954,4018,3570,4020,3505,4018,4020,3954,3953,4017,3568,4017,[4018,9532],[4026,9625],[3446,9626],4024,4023,4023,3577,4026,4024,3575,4026,3577,3578,3578,4025,3959,3642,3643,[3062,3767],[3062,3834],3063,3062,2999,[3063,3895,9535],[3577,9536],3578,3447,[3959,9628],[3962,9721],[3512,9722],4026,[3448,9823],[3511,9824],[2998,3833,9629],3062,3063,3063,[2998,4022],[4023,9628],9817,[3062,4087,9818],[3063,3897],3062,3062,3063,3063,3062,[3063,4022],4024,3446,3576,3578,[3574,10106,9628],[4026,9721],[4026,9722],[3578,9631],[3448,9632],[3188,10111,9629],3186,3249,3251,3188,3186,3250,3252,3185,3249,3185,[3186,9529],[3185,9530],3185,3250,3186,3252,3185,3249,3252,3250,3185,3251,3188,3249,3249,3188,3251,3188,3186,3187,3251,3251,3186,3188,3188,3188,3252,3252,3187,3186,3185,3188,3249,[2928,3317],2928,2928,[2928,3184],3250,3249,3185,3186,3249,3249,3249,3252,3251,3250,[3187,9823],[3187,9824],[3185,9629],3249,3187,3186,3186,[2928,2997],2928,[2928,3120],3185,[3252,9628],[3185,9625],[3186,9626],[3251,5581],[3187,5582],[3188,5583],[3249,9820,5584],[3188,10009,5585],10010,[3186,9914],[3252,9818],3186,3251,3252,3250,3188,3185,3252,3249,3188,3187,3249,3186,3251,3251,3252,[2928,3059],2928,2928,[2928,3248],[3186,9823],[3188,9824],[3250,9629],[3250,5581],[3187,5582],[3252,5583],[3252,5584],[3187,5585],3252,3185,[3251,5682],[3185,5683],[3188,9658,5684],[3187,9659],[3144,9560],3208,3146,3209,3146,3209,3146,3209,3144,3145,[3215,3017],3149,[3216,3206],3145,[3152,3272],[3216,3273],[3151,3274],3210,3146,3146,3144,3145,3209,3210,3144,3210,3209,3144,3146,[3150,3019],3214,3150,[3214,3206],3208,3146,3208,3209,3144,3209,3208,3146,3145,3146,3210,3145,3144,3209,3145,3145,3145,3145,[3151,2952],[3150,2954],[3216,2955],3213,3151,[3150,3078],3208,3145,3144,3144,3146,3145,3208,3144,[3149,3275],3151,3150,[3152,3206],3144,3208,3145,3210,3210,3209,3209,[3152,3211],3152,3152,[3150,3079],3144,3208,3210,3208,3146,3144,3146,3209,[3146,9461],[3163,9557],3163,3163,3163,3228,3227,3164,3163,[3228,9655],[3228,9748],[3227,9749],3227,3228,3228,3228,3164,3227,3227,3164,3164,3228,3227,[4289,3165],4289,4289,[4289,3033],[4289,2969],3226,3227,3164,3228,3164,3163,3163,3161,[4289,3099],4289,4289,[4289,3097],3162,3228,3163,3164,[4289,3165],4288,[4289,10133],[3163,9748],[3228,9749],3227,3228,[3163,9658],[3227,9659],3227,3228,3225,[4289,2969],[4289,2973],4289,[4289,3097],3162,3163,3225,[4289,2973],4289,4384,4289,[4289,3032],3163,3225,[4289,3035],4289,4289,[4289,3033,10133],[3164,10134],[4289,3035,10135],[4289,10138],4289,[4289,3288],3162,3227,3164,3163,3227,3164,3227,3163,3164,3227,[3228,9754],[3163,9755],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9508,9509,9312,9313,9314,9315,9407,9503,0,0,0,0,0,0,0,0,0,0,9508,9412,9312,9313,9314,9315,9312,9313,9314,9315,9502,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10147,10148,10149,10150,[415,10147],[415,10148],[415,10149],[415,10150],[415,10147],[415,10148],[415,10149],[415,10150],[415,10147],[415,10148],[415,10149],[415,10150],[415,10147],[415,10148],[415,10149],[415,10150],[415,10147],[415,10148],[415,10149],[415,10150],415,415,415,415,415,[415,10147],[415,10148],[415,10050,9572],[3568,9665],[3568,9666],3570,3504,3954,3955,4019,3954,3953,4017,3953,3568,3956,3955,3569,3955,4020,3954,4019,3504,3570,3953,3570,3506,3568,4017,3569,4018,3568,3570,3504,3506,3568,3506,4019,[3063,4084],[3063,4085],3063,3063,[3063,3824,9572],[3955,9665],[3955,9666],3568,4018,3570,4017,3569,4020,3568,[3953,9575],[4020,9576],[4020,9477],3506,[3506,1675],1676,1677,1678,1679,1680,1681,[3953,1682],3954,3506,3955,4018,3954,3569,3570,3955,4018,3954,3953,4020,4018,3953,4018,3953,3954,4017,4018,3570,3955,4017,4019,3954,4019,3953,3568,4018,4018,3954,3953,3504,3504,3569,3953,3505,3572,3568,[4018,5158],[4020,5159],[3956,5160],[4017,5161],[4018,5162],[3505,5163],[3506,5164],[4018,5165],[4019,5166],[4019,5167],[4017,5168],[4018,5169],[3956,5170],3569,3505,4020,3956,3505,4018,3504,3506,4019,4019,4017,3954,3568,4017,4017,3954,4017,3504,3955,[4017,9628],[3446,9721],[3574,9722],3512,3577,4024,3575,3960,3577,3511,3960,3577,4025,3446,3446,4026,3706,3707,3448,3576,[3063,3767],[3063,3833],2998,[3063,9631],[3062,3896,9632],[3578,9533],4026,[4025,9628],[3448,9817],[3576,9915],[3959,9916],[3446,9919],9920,[3959,9725],[3063,3768],[3063,3769],[3063,3770],4026,[4024,9724],9913,[3062,9914],[3063,3831,9818],[3063,3767],[3062,3768],[3063,3769],[3062,3770],[3063,3834],[3062,3895],[3063,4087],3960,3578,4025,[3512,9628],[3511,9625],[4024,9626],3575,[4025,9535],[3186,9536],3252,3185,3252,3186,3188,3249,3185,3249,[2928,3314],[2928,3315,9532],[2928,3316,9625],[3188,9626],3250,3251,3187,3250,3186,3185,3250,3186,3251,3188,3185,3251,3251,3249,3188,3251,3251,3187,3252,3250,3251,3185,3249,3188,3188,3188,3252,3250,3249,3188,[2928,3061],2928,2928,[2928,3058],3250,3187,3251,3252,3249,3186,3252,3185,3249,3186,[3251,9823],[3250,9919],9920,[3250,9725],3186,3185,3252,3188,[2928,3061],2928,[2928,3184],3185,[2928,3313,9628],[3187,9817],[3186,9818],[3251,5677],[3188,5678],[3252,5679],[3252,5680],[3249,5681],[3186,10106],10010,[3186,9625],[3186,9626],3249,3251,3188,3188,3250,3185,3188,3185,3188,3249,3188,3249,3187,3186,3188,[2928,2994],[2928,2996],[3187,9823],[3185,9919],9920,[3250,9725],[3251,5677],[3252,5678],[3186,5679],[3187,5680],[3186,5681],3249,3186,[3251,5778],[3188,5779],[3185,9754,5780],[3188,9755],[3145,9656],3145,3208,3209,3210,3146,3144,3208,3144,3209,[3213,3275],3216,[3150,3270],[3214,3081],3150,3214,3149,[3215,3079],3208,3207,3144,3146,3146,3146,3208,3145,3210,3144,3146,[3152,3083],3215,[3214,3015],3209,3146,3145,3144,3210,3209,3144,3209,3145,3208,3146,3210,3210,3210,3145,3145,3145,3144,3210,3144,3209,3146,[3152,3018],3151,[3151,3142],3209,3209,3209,3210,3208,3208,3210,[3214,3081],3149,[3215,2950],[3152,2951],3144,3210,3210,3146,3145,3146,3145,3144,3209,[3216,3017],3213,3213,[3150,3206],3144,3210,3209,3208,3208,3208,[3208,9556],[3228,9557],3227,3164,3227,3164,3228,3228,3228,3227,[3227,9655],[3164,9844],[3164,9845],3227,3163,3227,3227,[3227,9850],[3164,9942],[3163,9943],[3164,9845],3163,3163,3227,3225,[4289,3035],4289,[4289,3224],3163,3164,3227,3164,3161,[4289,3289],3162,3163,3225,[4289,2973],[4289,3034],[4289,3035],4289,[4289,3224],3161,[4289,3291],[4289,3292],[4289,3099],4289,4289,[3163,9844],[3163,9845],3164,3164,[3163,9850],[3164,9851],3227,3227,3163,3163,3225,[4289,3035],4289,[4289,3224],3227,3227,[4289,3037],4289,4289,4289,[4289,3160],3163,3164,3225,[4289,2972],[4289,2969],3226,[3227,10230],[3225,10231],[4289,2969],[4289,3036],4289,[4289,3098],[4289,3289],3162,3228,3164,3228,3163,3227,3163,3228,[3227,9658],[3164,9659],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9508,9408,9409,9410,9411,9503,0,0,0,0,0,0,0,0,0,0,0,0,9508,9408,9409,9410,9411,9408,9409,9410,9411,9503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3953,9761],[3570,9762],3505,3505,3568,3954,3954,4019,4018,4018,3505,3956,3570,3505,3953,4020,3955,3955,3955,3570,4017,4018,3954,4019,3443,4019,3953,3955,4018,3506,3570,3954,3504,3955,[3063,3829],3062,3063,3062,3063,[3062,3888,9572],[3954,9569],[3504,9570],3568,3569,3568,3570,4018,3505,3570,[3953,9671],[3568,9672],[3568,9573],4018,[3505,1739],1740,1741,1742,1619,1744,1745,[4020,1746],4019,3570,3954,3505,3570,3953,3570,[3955,1442],1443,1444,1445,[3956,1446],3569,4017,3568,3954,3569,3568,3568,3955,3954,3505,3953,3505,4018,3956,3570,3506,3956,4018,4018,3570,3953,3504,3568,3504,3506,4017,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,3506,3953,3504,3504,3953,3955,3569,4019,[3062,4083],3955,4020,4018,3504,4019,3955,4017,3506,3504,4018,[4018,9628],[3578,9817],[3512,9818],3959,4023,4025,4026,3447,3513,3575,3447,3578,4025,3578,3511,3447,3446,3962,3577,3577,3448,4024,[3063,3834],[3063,9727],[3063,9728],[3960,9725],3577,[3512,9724],9913,10011,10012,10015,[4023,10016],[3446,9821],4024,4026,4024,3447,[2999,3898,9820],[3063,10009],[10010,9532],[3062,4022,9625],[3961,9626],3577,3574,4023,[3063,4027],3063,3062,[3062,4086],3446,3577,[3574,9724],[4023,9721],[3513,9722],3578,[4026,9631],[4025,9632],[3188,9533],3249,3186,3188,3250,3250,[2928,3316],[2928,3317],2928,[2928,9628],[2928,9721],[2928,3121,9722],3250,3251,3188,3186,3187,3186,3187,3187,3185,3252,3187,3185,3185,3188,3187,3188,3187,3249,3249,3186,3188,3187,[3188,9339],[3187,9340],[3188,9341],[3187,9342],3186,3188,3187,3251,[2928,3125],[2928,9339],[2928,3057,9340],[3186,9341],[3252,9342],3186,3187,3252,3251,3188,3251,3251,3252,[3188,9823],[3249,9919],10015,[3185,10016],[3251,9821],3250,3249,3186,3250,[2928,3125],2928,[2928,3312],[2928,3123],[2928,9724],9913,[3252,9914],[3249,9818,5773],[3252,5774],[3187,5775],[3186,5776],[3185,5777],3251,[3251,10106,9532],[3250,9721],[3185,9722],3252,3250,3250,3186,3186,3188,3187,3187,[3185,4347],[3186,4348],[3188,4349],3249,3252,3250,3249,3250,[3185,9631],[3185,9632],10015,[3251,10016],[3250,9821],[3186,5773],[3188,5774],[3251,5775],[3186,5776],[3252,5777],3249,3188,3186,3186,[3252,9658],[3187,9659],[3145,9656],3145,3210,3144,3208,3208,3209,3208,3144,[3152,3211],3150,3151,3215,[3216,2950],[3216,2952],[3216,2954],[3150,3018],3151,[3149,3270],3145,3209,3208,3208,3146,3144,3145,3208,3209,3144,[3216,3147],3151,[3150,3206],3146,3145,3146,3146,3208,3208,3144,3144,3144,3208,3208,3210,3208,3210,3146,3210,3210,3144,3210,3210,3146,[3214,3274],[3213,3275],3214,[3151,3206],3208,3144,3146,3146,3145,3145,[3216,3019],3213,3213,[3151,3206],3146,3209,3145,3209,3208,3144,3144,3145,3145,3144,3145,[3216,2951],[3149,3017],[3216,3270],3210,3146,3145,3146,3210,[3208,9559],[3163,9652],[3227,9653],3164,3227,3227,3164,3228,3228,3164,3164,[3163,9751],9940,[3163,9941],[3227,9942],[3228,9943],[3163,9944],[3164,9945],[3164,9946],10038,10039,[3163,9941],[3227,9845],3227,3164,3228,[4289,3229],4289,[4289,3032],3227,3228,3228,3227,[4289,3037],4289,[4289,3098],3162,3163,3225,3226,[4289,3229],4289,[4289,3288],[4289,3099],4289,4289,4289,4289,4289,9940,[3227,9941],[3228,9944],[3164,9945],[3227,9946],9947,3164,3163,3164,3227,3163,3225,[4289,2969],3226,3227,3227,[4289,3165],4289,4289,4289,[4289,3224],3228,3228,3228,3163,3164,3163,3228,3163,3227,3225,[4289,2973],4288,4289,[4289,3097],[4289,3289],3162,3228,3163,3227,3163,3228,[3164,9754],[3163,9755],9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],9857,[3504,9858],[3570,9859],[3956,9860],[3504,9861],[3505,9862],[3954,9762],3571,4017,3954,3955,3954,4017,3569,4020,3504,3568,3570,3956,3568,4017,3953,4017,3568,3506,3568,3570,3953,3953,4020,3634,3635,3504,3956,[3063,3893],3063,3063,2998,3063,[3063,3952,9668],[3956,9665],[3956,9666],3954,4019,3570,3504,3632,3633,3570,[3569,9575],[4017,9576],[4017,9573],3569,[3569,1803],1804,1805,1806,1683,1808,1809,[3954,1810],3955,3953,4018,3955,3954,4017,3570,[4020,1506],1507,1508,1509,[3570,1510],3955,3954,3956,4018,3505,3505,3571,3570,3569,3440,3569,3569,4018,3569,4020,3504,3504,3505,3505,4019,3506,4017,3570,3953,4019,4020,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,3504,3956,3505,3954,4018,3506,[3062,4084],[3062,3892],3062,[3062,3824],3955,3505,3955,3504,3505,4019,3956,3505,3955,[4018,9724],9913,[3446,9914],[3574,9818],4026,3577,3577,3574,4026,3574,3448,3576,3576,4024,3962,4023,3577,3961,4024,3513,3961,4024,3448,[3062,3833],[3062,9535],[3958,9536],3447,[4024,9820],[3959,10009],[3574,10107],[3577,10108],[3574,10111],4023,4026,4023,3578,3448,[3063,3835],2998,2999,[3063,3766,10106,9628],[4024,9721],[4024,9722],4026,3961,3962,3447,[3062,3833],2998,2999,[3063,3895],3960,[3960,9529],[3576,9530],3577,3575,[4023,9727],[3578,9728],[3188,9725],3252,3249,3188,3188,[2928,3061],2928,2928,[2928,3057],[2928,2993,9628],[2928,3059,9817],[2928,9818],[2928,3248],3251,3188,3249,3252,3185,3249,3185,3249,3251,3188,3188,3251,3251,3186,3249,3252,3186,3251,3185,3185,[3187,9434],[3251,9435],[3251,9436],[3188,9437],[3252,9438],[3188,9439],3252,3188,3252,[2928,3189,9434],[2928,9435],[2928,3312,9436],[3185,9437],[3185,9438],[3249,9439],3251,3188,3252,3186,3250,3249,[3186,9631],[3188,9632],10015,[3187,10111],3251,3250,3186,3187,3187,3185,[2928,3189],2928,2928,2928,[2928,3057,9820],[3250,10009],10010,[3249,9625,5869],[3252,9626,5870],[3252,5871],[3250,5872],[3188,5873],3185,[3185,9628],[3252,9817],[3185,9818],3187,3186,3250,3251,3250,3185,3187,3250,3251,3188,3185,3250,3188,3187,3252,3186,[3249,9727],[3185,9728],[3187,10111,9533],3251,3251,[3250,5869],[3185,5870],[3252,5871],[3250,5872],[3252,5873],3186,[2928,3315],[2928,3316],3251,[3250,9850],[3252,9851],[3145,9656],3210,3209,3145,3145,3210,3208,3208,[3213,3271],[3213,3082],3149,[3149,3015],[3149,2951],3210,3144,3144,[3150,3211],3216,3215,[3149,3206],3209,3208,3210,3210,3210,3146,3146,3146,3144,3208,[3149,2951],3144,3146,3208,3145,3145,3144,3209,3208,3208,3210,3210,3144,3209,3208,3144,3209,3208,3208,3146,3144,3210,[3216,3211],3213,3216,[3216,3015],3145,3146,3210,3210,3146,3210,3209,[3215,3083],3213,[3149,3015],3209,3146,3144,3145,3208,3208,3210,3145,3210,3210,3144,3210,3144,3144,[3216,2951],3146,3210,3210,3145,3144,[3209,9655],[3228,9844],[3163,9845],3228,3227,3228,3164,3164,3227,3228,3228,[3164,9847],[3164,10036],10037,10038,10039,10040,10041,10042,[3164,10134],[3227,10135],[10037,9559],[3227,9652],[3227,9653],3227,3161,[4289,3100],4289,[4289,3096],3164,3227,3164,3164,[4289,3101],4384,4289,[4289,3224],3163,3227,3228,3225,[4289,3035],4289,4289,4289,[4289,2968],[4289,2969],[4289,2970],[4289,2971],[4289,2972,10036],10037,10040,10041,10042,[4289,3032,10043],3227,3228,3163,3163,3163,3227,3163,3228,3228,3228,3225,[4289,3035],4289,[4289,3033],3226,3164,3228,3164,3227,3228,3163,3227,3228,3228,3228,3225,[4289,3036],4289,4289,4289,[4289,3032],3164,3227,3163,3228,3228,3161,[4289,3100,9562],9466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9764],[415,9953],9954,9955,9956,9957,9958,[4019,9858],[4018,9762],3956,4018,3956,3569,3955,3953,3504,3568,3953,3568,3954,4017,3953,3506,3568,4017,3954,4018,3569,3956,3504,3570,3698,3699,3504,4019,[2998,3957],2998,3062,3062,[3063,3826,9377],[4018,9378],[3954,9474],3570,3505,3954,3506,3505,3696,3697,4018,[3063,4081,9671],[3063,4081,9672],[3063,4082,9669],[3063,4083],[3062,4084,1867],[2998,3891,1868],[3062,1869],[3063,1870],[3062,3890,1871],[3568,1872],[3506,1873],[3506,1874],3953,4017,3953,3569,4017,3504,4019,[3505,1570],1571,1572,1573,[4017,1574],3568,3955,4017,4018,3569,3505,3506,3956,3955,4018,3570,3954,4020,3954,3954,4017,3506,4019,3954,4020,4017,3570,3570,3956,4020,3504,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,3505,3570,4017,3568,3953,[3063,4021],3063,2999,3063,[2998,3952],3504,4018,4017,3954,4018,4017,3505,3636,3637,[4017,9820],[3953,10009],[10010,9532],[4024,9625],[3448,9626],3513,3962,3448,3578,3577,4025,4026,4025,3962,3513,4026,3447,3574,4024,3578,3576,3447,3446,[3063,4027],[3063,9631],[3062,3895,9632],[3962,9533],4026,3446,[3574,10203],[3448,10204],3446,3578,3449,3446,3446,3511,[3063,3899],3062,[3063,3831],[3512,9628],[4025,9625],[3512,9626],3578,3577,4025,3961,[3063,4027],3063,3062,3062,[3063,4022,9532],[3574,9625],[4024,9626],3510,3576,3448,[3448,9535],[3251,9536],3249,3185,3188,3252,[2928,3125],2928,2928,[2928,3248],[3249,9724],9913,[2928,9914],[3252,9818],3249,3186,3186,3188,3188,3250,3249,3249,3251,3252,3249,3186,3186,3185,3249,3251,3187,3188,3186,[3251,9529],[3252,9530],3188,3187,3252,[3185,9631],[3185,9632],[3252,9533,9339],[3187,9342],[3249,9434],[2928,3253,9530],2928,2928,[2928,3122],3187,[3188,9535],[3185,9536],3187,3187,3186,3188,3251,[3249,9727],[3251,9728],[3251,10111],3249,3188,3188,3251,3249,[2928,3315],[2928,3316],[2928,3124],[2928,2992],[2928,2994],[2928,2996],3185,3250,[3250,10106,9532],[3188,9721],[3249,9722,5966],[3249,5967],[3187,5968],3252,3187,[3252,9724],9913,[3249,9914],[3187,9818],3250,3188,3185,3187,3185,3187,3188,3250,3187,3250,3186,3186,3186,3250,3185,[3250,9631],[3186,9632],[3185,9629],3188,3249,3250,[3252,5966],[3185,5967],[3249,5968],3251,[2928,3123],2928,2928,[2928,3121,9850],[3187,9946],9947,[3209,9752],3145,3146,3144,3144,3208,3145,[3214,3082],3150,[3151,3015],[3151,2951],3145,3144,3210,3146,3209,3146,[3215,3018],3150,[3150,3270],[3151,3271],[3214,3272],3209,3146,3208,3210,3208,3145,3208,3144,3209,3210,3208,3145,3210,3209,3208,[3208,9558],3145,3143,3145,3210,3144,3210,3208,3208,3210,3144,3144,[3150,3272],[3152,3273],[3151,3274],[3151,3275],[3150,3015],[3150,2951],3209,3145,3144,3209,3145,3209,3210,3208,[3214,3147],3215,[3150,3206],3210,3208,3209,3210,3209,3208,3208,3144,3210,3146,3146,3146,3209,3209,3146,3144,3145,3210,3145,3146,[3209,9751],[9940,9559],[3227,9652],[3164,9653],3163,3164,3164,3163,3164,3164,3163,3164,3161,[4289,3100,10133],[4289,10134],[4289,3224,10135],[4289,3229,10136],[4289,10137],[4289,3096,10138],[3228,10230],[3227,10231],[3163,10133,9655],[3164,9748],[3228,9749],3227,[4289,3037],4289,4384,[4289,3160],[3164,9850],[3228,9942],[3227,9943],[3164,9845],[4289,3165],4289,[4289,3033],3226,3163,3163,3227,3163,3225,[4289,2970],[4289,2971],[4289,2972],3226,3227,3164,3227,3163,[3227,10133],[3164,10136],[4289,3101,10137],[4289,10138],[4289,3160],3227,3228,3163,3163,3164,3163,3228,3227,3228,3163,3164,3225,[4289,2969],3226,3227,3228,3228,3228,3227,3164,3227,3228,3227,3163,3164,3228,3225,[4289,2969],[4289,3035],4289,[4289,3160],3228,3227,3227,3228,3228,[4289,3229],4289,[4289,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10050],[415,10051],[415,10052],[415,10053],[415,10054],[9954,9476],[3956,9569],[3956,9570],3955,3955,3568,4017,3506,4020,3955,3570,3955,3953,3954,3955,4017,4018,4018,[3062,4081],3570,3956,3953,4019,3505,3505,3956,3504,[3063,4084],[3063,3891],3063,3063,[3062,3825],[3956,9473],[3953,9474],4018,3505,3570,3569,3569,3507,3955,4020,[3062,3891],3063,[3062,9479],[3062,9383],3063,3062,3062,3063,3063,[3062,3825],3568,3506,3569,3506,3506,4020,3568,3570,3955,3568,[4017,1634],1635,1751,1637,[3063,4084,1638],4017,3504,3956,3504,3570,3568,3956,4019,3504,3568,3569,3955,3505,4017,3572,3953,4017,3953,4019,3504,3955,3505,3955,3953,3570,3506,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,3505,4020,3570,4018,3504,[3063,3892],3063,3062,[3063,3760],3954,3570,4018,3506,3569,3956,3955,3506,3700,3701,4019,4018,[4017,10106,9724],[3576,9721],[3447,9722],3962,3577,3575,3511,3578,4023,3577,3447,3577,3962,4024,4025,3960,4023,4026,3578,4026,3576,3448,[3062,3833,9727],[3063,9728],[3576,9725],3576,3446,3962,4025,3575,4025,3447,3574,3577,4024,[3062,3963],3062,[3063,4022],[3960,9628],[3577,9721],[3447,9722],3576,3578,4026,3446,4025,[3063,3767],[3062,3833],3063,[3062,3896,9628],[3062,9721],[3062,3896,9722],4024,3512,3962,4025,[3578,9535],[3188,9536],3185,3188,3187,[2928,3189],2928,[2928,3057],3252,[3186,9820],[3187,10009],10010,[3188,9625],[3186,9626],3250,3187,3250,3249,3185,3188,3250,3250,3186,3188,3185,3186,3250,3252,3187,3186,3252,[3249,9532],[3186,9625],[3187,9626],3251,3186,3251,3252,[3185,9535],[3187,9435],[3252,9438],[3252,9530],3187,2928,2928,2928,3252,[3250,9727],[3186,9728],[3185,9533],3249,3249,3187,3188,3250,[3187,9535],[3185,9439],3250,3185,[2928,3315],[2928,3316],[2928,3124],2928,2928,2928,[2928,3248],3250,3188,3187,3186,[3185,9628],[2928,3121,9625],[3250,9626],3186,3249,3252,3251,[2928,3315,9820],[2928,3313,10009],10010,[3249,9914],[3185,9818],3252,3188,3251,3249,3186,3185,3251,[2928,3315],3188,3188,3187,3252,3186,3186,[3249,9727],[3188,9728],[3186,9725],3252,3252,3188,3187,3249,3188,[2928,3317],2928,2928,[2928,3057,9658],[2928,2993,9659],[10042,9560],[3208,10043],[3144,9848],3144,3210,3209,3146,3209,[3150,3211],3151,3151,[3149,3206],3146,3145,3144,3208,3208,3145,3209,3208,[3213,2951],[3149,3017],3151,3150,[3150,3206],3146,3209,3144,3210,3208,3210,3208,3210,3144,3210,3145,3210,3144,3210,[3145,9654],3209,3210,3208,3144,3146,3144,3209,3145,3146,3208,[3215,3019],3152,3213,3149,3151,[3150,3206],3208,3145,3208,3146,3146,3208,3208,3146,3144,3144,[3151,2951],3144,3145,3209,3210,3209,3209,3145,3210,3146,3208,3145,3144,3145,3144,3145,3144,3209,3209,3146,3209,3208,[3208,9847],[3146,10036,9655],[3227,9652],[3163,9653],3164,3228,3163,3163,3228,3164,3227,3164,[4289,3229],4289,[4289,10230],[4289,3288,10231],[4289,3099,10232],[4289,10233],[4289,3160],3163,3163,[3163,9655],[3163,9844],[3163,9845],3227,[4289,3165],[4289,9850],[4289,9944],[4289,3224,9945],[3164,9946],10038,10039,[3227,9941],[4289,3293,9845],4289,[4289,3032],3227,3228,3164,3164,3164,3228,3164,3164,3164,3227,3228,3227,3228,3163,3228,[3227,10232],[4289,3165,10233],4289,[4289,3097],[4289,3289],[4289,3290],3162,3228,3228,3228,3163,3228,3164,3227,3228,3164,3164,3164,3163,3163,3163,3228,3164,3228,3227,3228,3228,3227,3228,3227,3163,3228,3225,[4289,2969],3226,3228,3164,3227,3164,3161,[4289,3099],4289,[4289,9658],[4289,9659],9560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10147],[415,10148],[415,10149],[415,10150],[415,10050,9572],[4019,9665],[4020,9666],3954,3569,3953,4017,4020,3569,4020,3568,3504,4019,3568,3504,3569,3954,[3062,3829],3063,[3062,3889],4018,3504,3505,3506,4017,[3062,4081],[3062,3891],2998,3062,3063,[3063,9377],[3063,4016,9378],[4018,9474],4019,4019,3954,3953,3569,3568,3569,3955,[3062,4021],3063,3063,3063,[3063,9479],[3063,9480],2998,3063,[3063,3825],[2998,3761],3568,3504,3570,4020,4018,3956,3956,3505,4019,3505,3953,[2998,4021],[3062,1753],[3063,1754],[3063,1755],3062,[3062,4016],3956,3505,3569,3504,4017,3569,3505,3443,3569,4017,3505,3954,4017,3956,3570,3568,3953,3568,3506,3568,3955,3954,3504,3570,4019,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,3569,3569,3569,3953,[3063,3829],3063,[3063,3825],[3062,3761],3956,4018,4019,3504,4020,3954,3955,3568,3570,3953,3955,4020,4019,[3954,9820,9434],[3577,9530],4024,3578,3578,3574,3447,3512,4025,3962,4026,3447,4023,3446,3447,3574,4025,4025,3448,3578,3446,4026,4023,[3063,3768,9535],[3960,9439],3960,4024,3447,3576,3576,3575,3961,3577,4023,3511,3962,[3062,3767],3962,[3448,9628],[3578,9625],[3446,9626],4023,3960,3577,3446,3578,4025,3578,[3063,3834],[3063,9628],[3063,9817],[3062,9818],[3063,4022],3512,3447,3447,[4024,9631],[4026,9632],[3187,9533],3249,3249,[2928,3253],2928,[2928,3056],3186,3186,3249,[3250,10106,9532],[3250,9721],[3186,9722],3249,3250,3252,3250,[2928,3314],[2928,3315],[2928,3316],3187,3251,3252,3250,3187,3250,3251,3249,3186,3188,[3249,9628],[3185,9721],[3250,9722],3250,3250,3251,3188,3249,3188,3187,[3185,5058],[3185,5059],[3185,5060],3250,3188,3251,[3249,9823],[3250,9824],[3252,9629],3251,3188,3185,3186,[2928,3313],[2928,3314],[2928,3313,9535],[3252,9536],[2928,3124],2928,2928,2928,2928,[2928,3057],[2928,2993],3187,3250,3250,3251,3188,[3185,9724],[2928,9721],[2928,3312,9722],3188,3249,3251,[2928,3061],2928,2928,[2928,3248,10106],10010,[3187,9914],[3188,9818],3185,3249,3249,3186,3185,[2928,3317],[2928,3057],3250,3252,3251,3185,3188,3186,[2928,3315],[2928,3316,9535],[3186,9439],3188,3251,[2928,3314],[2928,3315],[2928,3316],[2928,3123],2928,2928,[2928,3058],[3249,9754],[3188,9755],[3146,10138,9656],3145,3210,3146,3145,3144,3145,[3150,3271],[3149,3081],[3215,3016],[3151,2951],3208,3144,3146,3144,3144,3209,3146,3209,3208,3145,3146,[3213,2952],[3214,2954],3210,3144,3146,3145,3146,3209,3146,[3145,9561],3146,3143,3144,3208,3144,[3145,3795],[3210,3797,9559],[3144,9844],[3208,9845],3208,3208,[3208,9850],[3144,9845],3145,3210,3209,3146,3208,[3214,3083],3214,[3213,3015],[3151,2952],[3215,2954],3208,3209,3210,3209,3146,3209,3145,3210,3145,3208,3209,3146,3144,3208,3144,3146,3209,3144,3210,3144,3145,3210,3210,3146,3210,3145,3208,3208,3144,3209,3145,3146,3145,3146,[3210,9460,9751],[3145,9748],[3227,9749],3163,3227,3163,3228,3228,3228,3227,3161,[4289,3293],4289,4289,4289,4289,4289,[4289,3097],3162,3227,[3163,9751],9940,[3164,9941],[3164,9944],[4289,3229,9945],[4289,9946],10040,10041,10042,[3228,10134],[3227,10135],[10037,9559],[4289,9652],[4289,9653],[4289,3096],3228,3227,3163,3228,3163,3164,3228,3163,3227,3227,3228,3228,3163,3164,3227,3163,3225,[4289,3036],4289,4289,4289,[4289,3097],3162,3228,3227,3228,3163,3164,3227,3161,[4289,3289],3162,3227,3227,3163,3163,3228,3163,3228,3227,3164,3163,3228,3228,3228,3164,3227,3228,3228,3164,3227,3164,3163,3228,[4289,3229],4289,4288,[4289,9754],[4289,9755],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3956,9761],[4018,9762],4019,3569,3953,3954,4020,4018,4018,3505,3569,3568,3955,3442,3568,3955,[3063,3893],3063,3063,[3062,4016],4018,3505,3956,[3063,4021],3063,3062,3063,3062,[2999,3760],[2998,3761,9473],[3956,9474],4019,4018,3955,3569,3442,3505,3569,3505,3570,[3062,3891],3063,3062,[3062,3826],[3062,3761],[3063,3762,9479],[3063,3763,9383],[3062,3764],4020,3569,3505,3570,4018,4020,4020,3506,4017,3956,3569,4020,[3062,4081],[3062,3891],[3063,3825],[3062,3762],[3063,3763],[3063,3764],3953,3568,3506,3569,3954,4017,4017,3504,4019,3504,3569,3442,3954,4020,3954,3955,3956,3570,4018,3953,4018,3504,3954,3953,3504,4017,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,4020,3570,3568,4017,[3063,3893],3062,[3062,3824],3569,3954,3505,3954,3504,3953,3568,3954,3568,3956,3954,3953,3955,[3956,9434],[4025,9530],3574,4024,3962,3960,3512,[3063,4087],4025,3448,3961,4024,3448,3576,3446,4026,3447,3446,4026,4024,4024,3510,3511,4026,3577,[4026,9535],[4023,9536],4023,3960,3575,4026,3512,4025,3577,4024,3510,3578,3448,3575,[4025,9724],[3447,9721],[3511,9722],3510,3962,4026,3576,4024,3575,4026,3512,[3062,3768,9724],9913,[3063,3770,9914],[3447,9818],4026,4024,4024,[3448,9727],[3577,9728],[3249,9725],3251,3188,[2928,3317],2928,[2928,3184],3249,3185,3188,[3185,9628],[3186,9817],[3185,9818],3251,3186,3250,[2928,3061],2928,2928,2928,[2928,3121],3251,3251,3250,3251,3188,3251,3185,3187,3185,[3186,9434],[3251,9530],3185,3188,3185,3186,3250,3186,[3251,5152],[3250,5153],[3187,5154],[3186,5155],[3252,5156],[3188,5157],3252,[3185,9823],[3186,9919],9920,[3250,9725],3250,3187,3185,[2928,3123],2928,2928,2928,[2928,9535],[2928,9536],[2928,2992],[2928,2994],[2928,2995],[2928,2996],3252,3186,3188,3185,3186,[3249,9339],[3251,9342],[3250,9434],[2928,9530],2928,[2928,3248],3186,3188,[2928,3189],2928,[2928,3057],3185,[3251,10106],[10010,9532],[3186,9625],[3185,9626],3249,3252,3250,[2928,3123],2928,[2928,3056],3186,3186,3188,3185,3252,2928,2928,2928,[2928,3248,9535],[3185,9536],[2928,3123],2928,2928,2928,2928,[2928,2992],[2928,2993],3250,[3252,9658],[3252,9659],[3210,9656],3208,3208,3144,3144,3145,[3215,3211],3151,3215,[3216,3206],3144,3144,3208,3207,3145,3208,3145,3145,3146,3144,3145,3144,3209,3144,3210,3208,3144,3209,3208,3209,3209,[3145,9657],3209,3144,3209,[3144,3796],[3208,3731],3925,[3923,9751],9940,[3209,9941],[3146,9944],[3146,9945],[3210,9946],[3210,9941],[3210,9845],3145,3145,3210,3208,[3216,3147],3213,[3213,3206],3209,3210,3208,3210,3208,3145,3146,3144,3144,3208,3146,3209,3146,3144,3210,3208,3208,3144,3208,3209,3209,3144,3145,3209,3208,3209,3209,3144,3209,3145,3210,3144,3208,3209,3146,3209,[3144,9556],[3228,9557],3227,3163,3163,3163,3163,3161,[4289,3291],[4289,3292],[4289,3100],4289,[4289,3033],[4289,2970],[4289,2971],[4289,2972],[4289,3036],4289,[4289,3224],3227,[3227,9847],[3227,10036],10037,10040,10041,10042,[3227,10136],[3227,10137],[3227,10138],[3163,10230],[3227,10231],[3163,10133,9655],[4289,9748],[4289,9749],[4289,3160],3163,3228,3227,3227,3228,3228,3228,3228,3161,[4289,3289],3162,3164,3228,3164,3228,3228,3163,[4289,3229],4289,4289,4289,4289,[4289,3288],3162,3164,3228,3228,3163,3227,[4289,3229],4384,[4289,3288],[4289,3289],3162,3227,3164,3163,3163,3164,3164,3163,3228,3228,3227,3228,3228,3164,3163,3164,3164,3163,3227,3228,3228,3225,[4289,3036],4289,[4289,9850],[4289,9851],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],9857,[4019,9858],[4020,9762],3953,4020,4019,4018,4018,3504,4018,4019,4020,3953,3506,[3443,9283],[3569,9284],[3953,9285],[3062,3761,9286],[3062,3761],3505,3953,3570,4019,[2998,3829],3062,3063,3062,[3063,3825],[4018,9476],[4017,9569],[3569,9570],4020,4019,3569,3953,3570,4020,4019,4017,[3062,4021],3062,3062,3062,[2998,4016],3955,3505,[3570,9479],[3954,9480],[3569,9283],[3956,9284],[3954,9285],[3504,9286],[4017,9283],[4018,9284],[4020,9285],[3505,9286],3504,3568,3568,[3062,4021],3062,3062,[3062,4016],3569,4018,4018,3954,3954,3955,3955,3954,3954,4018,4019,3570,3568,3505,4017,3954,3953,3570,3568,3955,3505,4019,4017,3569,4017,3954,3955,3570,3505,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,4017,3953,3568,3569,[3063,3957],3062,[3063,3888],3955,3506,3572,3569,3953,3954,4017,3955,4020,3953,3504,4020,[4018,9532],[3960,9625],[4026,9626],3447,4024,4023,3447,[3063,3835],3063,[3062,4086],3960,3577,3577,4023,3962,3447,3961,3578,3961,3448,3577,3577,4024,3960,3576,3962,3512,[3063,3897,9535],[4026,9536],4023,4024,3510,3448,3447,3448,4023,3962,3446,4025,3511,[3577,9529],[4024,9530],4025,3960,3448,3960,4024,3447,3578,3510,3447,[3446,9820],[3578,10009],[10010,9532],[3446,9625],[3448,9626],3447,3448,3448,[4026,9535],[3187,9439],3252,[2928,3123],2928,[2928,2992],3185,3251,3249,3188,[3186,9724],9913,[3251,9914],[3187,9818],3186,3250,[2928,3125],2928,2928,2928,2928,[2928,3056],3187,3249,3188,[3249,9339],[3252,9340],[3186,9341],[3250,9342],[3250,9529],[3186,9530],3185,3249,3252,3252,3250,3187,3251,[3188,5248],5249,5250,5251,[3186,5252],[3187,5253],[3250,9631],[3188,9632],[10015,9533],[3186,10016],[3185,9821],3185,[2928,3316],[2928,3317],2928,[2928,2992],[2928,2997],2928,[2928,9727],[2928,9728],[2928,3248,9533],3249,3250,3249,3250,3185,3185,3250,[3250,9434],[3252,9435],[3250,9438],[2928,3253,9530],2928,2928,[2928,3121],[2928,3313],[2928,3314],[2928,3124],2928,[2928,3248],3249,3250,[3187,10106,9628],[3187,9721],[3252,9722],3186,3188,[2928,3061],2928,2928,[2928,3120],3186,3250,3186,3249,3251,[2928,3059],2928,2928,[2928,3122,9727],[2928,3317,9728],[2928,9533],[2928,3057],[2928,2993],[2928,3059],2928,[2928,3121],3185,3249,[3249,9850],[3251,9851],[3145,9656],3210,3209,3146,3145,3146,3210,[3213,2952],[3215,2954],3146,3210,3210,3146,3208,3209,3210,3145,3146,3146,3146,3146,3210,3210,3144,3146,3146,3145,3210,3144,3145,[3210,9850],[3145,9851],[3144,9560],[3209,3730],[3146,3731],3925,3925,3924,[3540,9847],[3987,10036],10037,10040,10041,10042,10037,[3209,9941],[3208,9845],3208,3209,3146,3145,[3151,2951],3144,3209,3208,3144,3144,3145,3144,3146,3209,3144,3144,3144,3208,3145,3145,3210,3145,3209,3146,3146,3144,3208,3208,3145,3209,3145,3209,3209,3146,3146,3145,3208,3210,3145,3146,3209,[3146,9559],[3227,9652],[3228,9653],3164,3163,3227,3164,3161,[4289,3099],4289,4289,4289,[4289,2968],3226,3163,3164,3227,[4289,3229],4289,[4289,3224],3164,3228,3163,[3228,10133],[3163,10136],[3163,10137],[3164,10138],[3164,10232],[3163,10233],3227,3228,3227,[3228,9655],[4289,9844],[4289,3034,9845],3226,3164,3163,3163,3227,3163,3227,3164,3228,[4289,3037],4289,[4289,3098],3162,3164,3228,3163,3228,3164,3225,[4289,2969],[4289,3035],4289,4289,4289,[4289,3224],3164,3163,3164,3163,3163,3225,[4289,3035],4289,4289,[4289,3288],[4289,3290],[4289,3291],[4289,3292],3162,3163,3228,3163,3228,3164,3228,3227,3228,3164,3228,3161,[4289,3291],[4289,3292],3162,3164,3228,3228,[4289,3229],[4289,9850],[4289,9946],9947,9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9764],[415,9953],[9954,9476],[4019,9569],[4018,9570],4020,4020,3954,3953,3569,4020,4019,4017,3955,[3956,9378],[3569,9379],[3956,9380],[2998,3829,9381],[3062,9382],[3062,3824,9383],3956,3955,3504,3568,[3062,3957],3063,[3063,3826],[3063,3761],3955,[3956,9572],[4020,9665],[3505,9666],4020,3953,4019,3569,3570,3954,3506,3570,[3062,3892],3062,3063,[3062,3825],4019,3568,4018,3505,[4019,9479],[3570,9379],[3956,9380],[4019,9381],[3955,9382],[3570,9379],[3572,9380],[3568,9381],[3954,9382],[3956,9383],3956,4019,[3063,4085],3063,[3063,3825],4017,4018,3953,3955,3506,3953,4017,3570,4017,3955,3506,3506,3569,3954,3506,3504,4020,3955,3953,4019,3953,3569,3954,3572,3504,3956,3506,3636,3637,3569,[3954,5926],[3504,5927],[3956,5928],[3954,5929],[3568,5930],[3568,5931],[3568,5932],[3568,5933],[3570,5934],[4017,5935],[3505,5936],[3506,5937],[3569,5938],3506,3505,3570,3504,[2998,4021],3062,[3063,3952],3568,4018,3953,3504,3953,4019,3506,4018,3504,3570,3569,3569,[3956,9628],[3446,9721],[3512,9722],3577,3512,4026,3448,[3062,3963],3062,3063,[3063,3896],[3062,4089],[3062,4090],3447,4025,4026,3959,3511,4023,3577,4024,4026,3578,3960,3574,3448,[3062,3835],[2998,9727],[2998,3831,9728],[3961,9533],3447,3960,3448,3510,3448,4025,3448,4024,[3448,9433],[3447,9434],[3960,9530],4023,4023,4023,3446,4026,3960,3446,4025,4025,4025,3961,4023,[3448,10106,9628],[3962,9721],[3446,9722],3446,3578,4026,3447,[3576,9535],[3249,9536],2928,2928,[2928,3248],3188,3186,3188,3186,[3188,9820],[3187,10009],10010,[3186,9914],[3186,9818],3250,[2928,3189],2928,2928,2928,2928,[2928,3184],3249,3187,[3250,9434],[3186,9435],[3252,9436],[3188,9437],[3250,9438],[3185,9530],3186,3250,[2802,3316],3250,3252,3250,3186,3250,[3251,5344],5345,5346,5347,[3185,5348],[3186,5349],[3185,9727],[3185,9728],[3188,10111,9629],3250,3185,[2928,3061],2928,2928,2928,[2928,3248],3249,[2928,3059],[2928,3058,9823],[3057,9824],[3188,9629],3187,3251,3250,3249,3249,3252,[3187,9529],[3251,9530],3185,3249,3186,[2928,2993],[2928,3060],2928,2928,2928,2928,[2928,2992],3250,3250,[3185,9339],[3249,9724,9342],[3251,9721],[3188,9722],3188,3185,[2928,3125],2928,2928,[2928,3184],3188,3249,3250,3187,3186,3185,[2928,3060],2928,2928,[2928,9535],[2928,9439],[2928,3248],3186,[2928,3253],2928,2928,[2928,3056],[3186,9658],[3186,9659],[9947,9560],[3146,9752],3145,3146,3210,3145,3145,3209,3145,3210,3146,3208,3146,3146,3144,3146,3208,3210,3145,3208,3145,3210,3144,3145,3146,3208,3207,3208,3145,3146,[3208,9850],[3145,9946],9947,[3146,3731,9752],3925,3924,3926,3411,3924,3539,3926,[3925,10133],[3925,10136],[3923,10137],[3924,10138],[3987,10133],10037,[3208,9941],[3209,9845],3209,3146,3208,3145,3208,3145,3144,3210,3145,3146,3145,3208,3209,3145,3209,3209,3210,3210,3210,3146,3144,3208,3210,[3210,9850],[3208,9942],[3208,9943],[3210,9845],3145,3146,3210,3146,3208,3146,3146,3144,3144,3210,3210,3146,3144,[3209,9655],[3164,9652],[3227,9653],3227,3164,3228,3164,[4289,3037],4289,4289,[4289,2968],[4289,2969],3226,3227,3227,3227,3228,[4289,3229],4289,[4289,3097],3162,3228,3164,3227,[3228,10232],[3164,10233],3227,3227,3227,3227,3164,3163,[3164,9751],9940,[3227,9941],[3163,9845],3164,3227,3163,3164,3164,3228,3163,3164,[4289,3165],4384,4289,[4289,3224],3163,3164,3228,3227,3163,3228,3163,3225,[4289,2969],[4289,2973],4289,[4289,3097],3162,3164,3228,3228,3228,3227,3225,[4289,2969],[4289,3036],4289,4289,4289,4289,[4289,3097],[4289,3289],[4289,3290],3162,3164,3163,3228,3164,3163,3164,3228,[4289,3229],4288,4289,[4289,3032],3228,3228,3164,[3225,9658],[3226,9659],[10042,9560],10043,9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10050,9572],[3442,9665],[3956,9666],4019,4018,4020,4019,3568,3956,4018,[4019,9377],[3569,9378],[4020,9474],3570,4019,[3062,3893],3063,[2999,3952,9479],[4019,9480],3954,4019,3568,3956,[3062,3761],4018,3953,[4019,9377],[4018,9378],[3954,9474],4018,3953,4017,4018,3568,3955,3956,3570,[3063,4021],3063,[3063,3760],[3063,3761],4020,3569,3568,3506,3954,3956,3506,4018,3569,4020,4020,3505,3956,3506,[3505,9479],[3956,9480],[3062,4021],3063,2998,[3062,3824],3956,3506,4020,3505,4020,3955,3955,3956,3569,4020,3955,3568,4017,3955,3504,4018,3569,3953,3571,3569,3505,[3504,9767],[3504,8897],[3506,8898],[3954,8899],[3955,9862],[4020,9762],3700,3701,4018,4019,3506,4019,3953,3505,[3568,6027],[3063,4084,6028],[4017,6029],3506,4017,3505,3954,4019,3569,3955,3955,4019,[3062,3829],3063,[3062,4080],3954,4020,[3505,9283],[3569,9286],3570,3442,3953,3953,3569,3955,4020,3956,[4018,9628],[3577,9817],[3574,9818],3446,4024,3959,3962,3578,[3063,3767],[3062,3833],3063,3062,3062,[3062,4022],3446,4026,3511,4024,4024,3511,3446,4023,4023,3513,3448,3448,[3063,3963],[3063,9631],[3063,3830,9632],[3511,9629],4025,3447,3447,3575,3961,3577,3959,4025,[3574,9529],[4024,9530],3513,3577,4024,3446,3962,3447,3447,3578,3960,3447,4023,[3062,4090],3575,[4024,9628],[3448,9625],[3574,9626],4023,4025,3576,4026,[3961,9631],[3447,9632],[2928,9533],[2928,3058],3249,3252,3251,3250,3249,3251,3250,[3186,10106],10010,[3250,9914],[3251,9818],3250,[2928,2997],2928,[2928,2992],[2928,2993],3185,3188,[3187,9529],[3249,9530],3250,3249,3252,3185,3252,3188,[2802,3124],2931,[2931,3056],3249,3252,3249,3187,[3185,5440],5441,5442,5443,[3188,5444],[3187,5445],3185,[3185,9535],[3251,9439],3249,3252,[2928,3125],2928,[2928,2992],[2928,2993],3185,3249,[3249,9823],[3188,9919],9920,[3185,9725],3252,3186,3187,3249,3187,[3251,9532],[3250,9625],[3187,9626],[3252,5485],[3251,5486],[3186,5487],[3186,5488],[3187,5489],[2928,3059],2928,2928,2928,[2928,3056],3186,[3185,9434],[3187,9435],[3185,9438],[3250,9530],3249,3185,3186,[2928,3189],2928,2928,[2928,3248],3186,3185,3187,3252,3187,3185,3250,[2928,2994],[2928,2995],[2928,2996],[2928,3059,9535],[2928,3121,9536],3185,3188,[2928,3060],2928,[2928,3120],[3185,9754],[3186,9755],[3146,10043,9656],[3145,9848],3145,3144,3146,3208,3145,3209,3208,3209,3209,3145,3145,3209,3209,3145,3145,3209,3146,3209,3208,3209,3146,3209,3145,[3208,9850],[3210,9942],[3144,9943],[3144,9944],[3144,9945],[3209,9946],[10042,9652],[3989,10043,9653],[3987,9848],3926,3924,3987,[3145,4053],[3146,4054],3925,3989,3989,[3924,10232],[3923,10233],3539,3987,[3926,10133],10037,[3209,9844],[3209,9845],3209,3145,[3208,9850],[3209,9944],[3210,9945],[3146,9942],[3145,9943],[3144,9845],3209,3145,3146,3208,3208,3208,3210,3209,3208,3145,3209,[3209,9850],[3208,9944],[3208,9945],[3210,9946],10038,10039,[3146,9941],[3146,9845],3145,3209,3208,3144,[3210,9850],[3144,9942],[3145,9943],[3208,9845],3145,3210,[3144,9850],[3210,9942],[3144,9943,9751],[3164,9748,9845],[3227,9749],3228,3164,3164,3228,[4289,3101],4289,4289,[4289,3224],3227,3227,3227,3228,3161,[4289,3291],[4289,3099],4289,4289,[4289,3224],3164,3228,3227,3164,3164,3228,3164,3228,3164,3228,3164,[3227,9847],[3227,10036],[10037,9559],[3164,9748],[3163,9749],3163,3227,3163,3228,3164,3227,3164,3225,[4289,2973],4289,[4289,3288],3162,3163,3227,3164,3227,3228,3163,3227,3228,3225,[4289,3035],4289,[4289,3224],3164,3163,3163,3228,3163,3227,3228,3225,[4289,2970],[4289,2971],[4289,2972],[4289,2973],4289,4289,4289,[4289,3224],3228,3228,3228,3227,3163,3227,3228,[4289,3037],4289,4289,[4289,3160],3164,3228,3164,[3164,9754],[3227,9755],[10138,9656],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3955,9569],[3955,9570],4019,4020,3956,4020,3504,3506,3569,[3569,9473],[4018,9474],4017,4019,3504,[3063,3957],3062,[3062,3889],[3062,4081,9479],[3956,9383],4019,3570,3955,4018,3954,4018,[3954,9473],[3955,9474],4017,3505,3570,4018,4018,3954,3570,3955,[3063,4084],[3062,4085],3063,[2998,3824],4017,3505,3442,4020,3955,4018,3506,4019,3569,4020,3504,3953,3504,3569,3569,[3504,9575],[3955,9576],[3063,4021,9477],3062,3062,[3063,3888],3568,3956,4017,3956,3955,3568,4017,[3571,1292],[3953,1293],3955,3569,3954,3569,3505,4017,3955,3572,3955,3506,3505,[4019,9767],[3507,9863],[3955,8993],8994,[3572,8995],9958,[4020,9858],[3569,9762],3506,3569,4018,3504,3505,3506,3568,[3063,3829,6123],[3063,6124],[3063,3824,6125],4019,3955,4019,3954,4019,3442,3956,3506,3505,[3063,3957,9283],[3062,9284],[3062,9285],[3063,3890,9286],[3568,9378],[4019,9379],[4018,9382],[4017,9383],3570,4020,3505,3442,4018,3954,3506,[4017,9724],9913,[4026,9914],[4024,9818],3577,4024,4026,3511,3448,3510,[3062,3768],[2998,3770],[3063,3833],[3062,3896],[3063,4089],[3062,4090],4026,3446,3962,3512,3577,3574,3638,3639,3448,3962,[3063,3897],[3062,9727],[3062,3894,9728],[3577,9725],3576,3447,3447,4023,3961,[3448,429],[3577,430],[3448,9532],[3576,9625],[3448,9626],3961,3448,3959,3447,4024,4025,3447,3578,3447,3574,[3062,3897],3063,[3062,4022],[3962,9724],[4026,9721],[4023,9722],4024,3959,4024,4023,[3448,9727],[3448,9728],[3185,9629],3251,3250,3186,3250,3187,3249,3186,3188,3250,[3251,10106],[10010,9532],[3252,9625],[3187,9626],[2928,3061],2928,[2928,3122],3251,3251,[3251,9532],[3251,9625],[3188,9626],3185,3251,3252,3251,3252,[2931,3317],2802,2930,[2931,3184],3185,3249,3185,3185,[3186,5536],5537,5538,5539,[3186,5540],[3250,5541],3187,3249,[3249,9535],[3252,9536],3251,[2928,3189],2928,[2928,3056],3188,3188,[3188,9823],[3186,9919],10015,[3185,10016],[3188,9821],3250,3187,3186,3185,3249,[3250,9628],[3186,9721],[3185,9722],[3249,5581],[3252,5582],[3187,5583],[3252,5584],[3249,5585],3250,[2928,2993],[2928,2997],2928,[2928,3184],[3249,9529],[3187,9530],3250,3187,3249,3187,3188,3249,[2928,3317],2928,[2928,2992],3187,3185,3250,3249,3251,3188,3185,3186,3249,3249,3188,[2928,3061,9631],[2928,9632],[2928,3312,9533],[2928,3313],[2928,3123],[2928,5485],[2928,3184,5486],[3250,9658,5487],[3251,9659,5488],[3208,9752,5489],3144,3208,3144,3145,3209,3144,3208,3144,3209,3210,3144,3145,3145,3144,3144,[3144,9850],[3208,9942],[3209,9943],[3209,9845],3209,3210,3146,3210,[3209,9850],[3208,9946],10038,10039,10040,10041,10042,[3925,10138,9748],[3987,9749],3989,3989,3923,[3209,3861],3209,3209,[3209,3986],3987,3925,3926,3474,3989,3989,3540,[3923,10133],[9940,9559],[3146,9941],[3210,9942],[3146,9943],[3144,9946],10040,10041,10038,10039,[3146,9941],[3144,9845],3209,3145,3146,3145,3145,3210,3145,3210,3210,[3146,9850],[3144,9946],10040,10041,10042,[3989,10134],[3926,10135],10037,[3144,9941],[3144,9845],3210,3209,[3209,9850],[3144,9946],10038,10039,[3146,9941],[3145,9942],[3208,9943],[3145,9946],10038,[10039,9847],[3228,9652,9941],[3227,9653,9942],[3227,9943],[3163,9944],[3228,9945],[3228,9845],[4289,3165],4289,[4289,3033],3226,3227,3227,3164,3161,[4289,3099],4289,4289,4289,[4289,3034],3226,3228,3163,3164,3227,3227,3164,3227,3227,3228,3228,3164,3164,3164,[3163,10133,9655],[3163,9652],[3227,9653],3227,3163,3227,3163,3163,3227,3163,3227,3225,[4289,3035],4289,[4289,3032],3163,3164,3164,3228,3228,3227,3164,3228,3228,3225,[4289,2969],3226,3164,3163,3228,3227,3163,3164,3227,3163,3163,3163,3161,[4289,3100],[4289,3033],[4289,2969],[4289,3035],[4289,3097],3162,3163,3228,3163,3163,3228,3164,[4289,3101],4289,[4289,3033],3226,3163,3227,3163,3164,[3164,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[4017,9665],[4019,9666],3955,3956,3956,3955,3569,[4017,9377],[3506,9378],[3953,9474],3953,3953,3955,4020,[3062,4021],3062,3062,3063,[3063,4080,9479],[4018,9480],4019,4017,3955,[3568,9377],[3953,9378],[3504,9474],3954,4018,[3063,4081],[2998,4082],[3062,4083],[3062,4084],3506,4019,[3063,3829],3063,3062,3062,[3063,3952],4018,3506,3568,3506,3955,3956,3570,3570,3955,4020,3504,4018,3569,3572,3955,[3570,9671],[3568,9672],[3063,3892,9573],3062,3062,[3062,3952],3441,3443,3569,3954,4020,3569,3506,[4017,1356],[4017,1357],3569,3570,4017,3505,4017,3569,3505,3505,3569,3953,[4018,9767],[3570,9863],9959,[3441,9089],[4018,9090],[3568,9091],[3570,10054],9954,[4018,9858],[3504,9762],3953,3570,3568,3504,4019,4017,[3063,3893],2998,[3062,3888],3506,3954,3504,3953,3440,3570,4017,3956,[3505,9378],[3956,9379],[3956,9380],[4020,9381],[3063,4081,9382],[3063,4081,9474],[3062,4083],4019,[4018,9479],[4019,9480],4018,3570,3955,3569,3956,3568,[3956,9820],[3956,10009],10010,[4024,9914],[4025,9818],3577,3446,3447,4024,4023,4023,4025,[3063,4027],3062,3063,3062,[3062,4086],4026,3446,3447,4025,4023,3702,3703,4026,[3063,4091],3062,3062,[3063,3958,9535],[3577,9536],3959,3577,[3575,429],[4025,358],[3063,4089,486],[3448,487],[3574,357],[3578,9628],[4026,9721],[4025,9722],3512,3512,4026,3576,3446,3578,4026,4025,3578,[3063,3835],3063,3063,[3063,4022,9433],[3578,9434],[3575,9530],3575,3960,3448,3578,3578,[4026,9823],[3577,9824],[3188,9629],3188,3185,3188,3249,3188,3250,3252,3186,3187,3251,[3249,10106,9724],[3250,9721],[3185,9722],[2928,3189],2928,2928,[2928,3121],3188,[3186,9628],[3187,9721],[3250,9722],3187,3186,3252,3250,[2930,3061],2931,2803,[2802,3057],3186,3250,3188,3251,3185,[3188,5632],5633,5634,5635,[3250,5636],[3188,5637],[2930,3313],3249,[3249,9631],[3249,9632],[3252,9533],[2928,3123],2928,[2928,3184],3250,[3252,9823],[3249,9919],10015,[3186,10111],3186,3252,3188,3185,3185,3188,3185,[3249,9628],[3187,9625],[3250,9626],[3249,5677],[3250,5678],[3251,5679],[3185,5680],[3250,5681],3249,3185,[2928,3061],2928,[2928,3312,9532],[3313,9721],[3250,9722],3185,3249,3185,3185,3249,[2928,3061],2928,2928,[2928,3248],3185,3187,3188,3252,3188,3250,3185,3186,3187,3187,3185,[2928,3189,9727],[2928,9728],[2928,9629],2928,2928,[2928,3058,5581],[3249,5582],[3252,5583],[3186,9562,5584],[3208,9466,5585],3210,3144,3144,3209,3209,3145,3146,3145,3145,3209,3145,3210,3208,3208,[3210,9850],[3210,9946],10038,10039,[3145,9941],[3144,9845],3146,3144,[3145,9850],[3209,9946],10042,[3924,10134],[3924,10135],[3923,10136],[3925,10137],[3989,10138,9559],[3987,9748],[3924,9749],3923,3923,[3210,3991],3208,3144,3144,[3208,3859],3924,3923,3924,3987,3923,3989,3987,3989,[3926,10036,9655],[10037,9652],[10038,9653],10039,10042,[3209,10136],[3145,10137],[3210,10134],[3210,3922,10135],10037,[3145,9941],[3210,9845],3146,3209,[3144,9850],[3208,9943],[3146,9845],3208,3144,[3208,9850],[3146,9946],10042,[3924,10136],[3925,10137],[3987,10138],[3926,10230],[3926,10231],[3987,10133],10037,[3210,9941],[3144,9942],[3210,9943],[3209,9946],10042,[3410,10134],[3987,10135],10037,10038,10039,10042,[3540,10134],[3475,10135],10037,10038,10039,10040,10041,[3163,9941],[3225,9845],[4289,2969],3226,3164,3163,3164,3163,[4289,3037],4289,4289,[4289,2968],[4289,2969],3226,3228,3227,3164,3164,3227,3228,3164,3164,3164,3164,3163,3228,3228,3227,[3227,9655],[3227,9748],[3163,9749],3227,3163,3163,3164,3227,3164,3227,3163,3227,[4289,3229],4289,[4289,3096],3227,3227,3227,3164,3228,3163,3164,3163,3163,3164,3228,3163,3227,3163,3164,3163,3163,3163,3163,3164,3163,3228,[4289,3037],4289,[4289,3032],3228,[4289,3229],4289,[4289,3224],3163,3164,3164,3163,3163,3163,[4289,3165],4289,[4289,3224],3164,3228,3228,3228,3163,3164,[3227,9562],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],[4018,9665],[3953,9666],3953,3954,3953,3956,3572,[3955,9473],[3505,9474],4019,3504,3506,4020,3956,3570,[3063,3761],[3063,3827],3063,[3063,9575],[3062,9576],[3954,9477],4020,3953,[4020,9473],[3063,4083,9474],[3062,4084],4020,[2998,4021],3062,3063,3062,3063,[3063,3890],3569,[3062,3957],3063,3062,3063,[3063,3889,9767],[3062,4081,9859],[3062,4082,9860],[4017,9762],3568,4020,4017,3568,3570,3504,4020,3956,4019,3956,4017,3505,[3568,9767],[3063,3829,9768],[3062,9573],3062,3063,[3063,3889],3568,3505,3570,3569,4020,3504,[3505,1419],[3505,1420],[3505,1421],[3505,1422],[3505,1423],[4017,1424],[4017,1425],[3953,1426],3568,4018,4017,3569,[3570,9575],[3953,9576],[9959,9477],[4017,10055],[3440,9185],[3505,9186],[4020,9187],[3955,10150],[3572,10050],[9954,9476],[3505,9569],[4018,9570],3505,3569,3505,3506,3953,[3062,3957],3063,[2998,3952],3956,3956,4017,3954,3506,3506,3569,[4018,9473],[3570,9474],3504,4019,[3062,4021],3063,3063,3063,[3062,3889],[3570,9575],[3954,9576],[3954,9477],4017,3504,3954,4019,4020,3953,3504,[3955,10106],10010,[3961,9721],[3448,9722],3510,3575,3448,3448,3960,3447,3448,[3062,3767],[3062,3833],3062,3062,[3062,3895],[3063,4089],[3063,4090],3511,3447,3449,3448,[3063,3835],3062,[3063,3831],[3063,3767],[3448,9631],[3446,9632],[3511,9533],3959,[3577,359],409,409,409,[3577,421],[3510,9628],[4026,9625],[3961,9626],3446,3447,4024,3446,4026,4026,4026,3512,3577,[3063,3899],3062,[3062,3831],[3446,9529],[4026,9530],3960,4024,3446,4026,4023,[3447,9823],[4025,9919],9920,[3188,9725],3185,3187,3250,3186,3187,3185,3187,3251,3250,3251,[3249,9434],[3186,9530],3185,3187,[2928,2993],[2928,2997],2928,[2928,3122],[3251,9434],[3251,9530],3252,3188,3249,3187,3188,[2867,3189],2802,2930,[2931,3248],3186,3185,3252,3252,3249,[3187,5728],5729,5730,5731,[3185,5732],[2931,3124,5733],2931,[2931,3248],[3251,9727],[3250,9728],[3187,9629],2928,[2928,3057],3249,[3185,9823],[3188,9919],10015,[3185,10111],3188,3186,3186,3186,3249,3186,3188,3185,[3250,9628],[3250,9721],[3250,9722],[3249,5773],[3250,5774],[3185,5775],[3185,5776],[3188,5777],3187,3188,[2928,3189],2928,[2928,9628],[2928,9817],[3250,9818],3249,3251,3252,3252,3249,[2928,3189],2928,[2928,3057],3250,3252,3188,3186,3187,3185,3252,3187,3252,3249,3187,3188,[3251,9823],[2928,2993,9824],[2928,2994,9629],[2928,2995],[2928,2996],[3185,5677],[3252,5678],[3188,5679],[3187,5680],[3188,9562,5681],[3209,9563],3146,3145,3146,3210,3146,3146,3208,3210,3144,3144,3146,3146,[3208,9850],[3209,9946],10042,[3476,10134],[3540,10135],10037,[3210,9941],[3209,9942],[3209,9943],[3210,9946],10042,[3989,10138],[3539,10230],[3989,10231],[3989,10232],[3987,10233],[3989,9655],[3474,9652],[3987,9653],3474,3989,3924,[3209,3732],[3208,3734],[3208,3735],3209,[3210,4050],3924,3924,3926,3924,3539,3925,3411,[3989,9655],[3923,10133,9748],[3540,10134,9749],[3925,10135],[3925,10138],[3208,3798,10232],[3146,10233],[3146,10230],[3209,3859,10231],[3411,10133],10037,[3145,9941],[3146,9942],[3209,9943],[3210,9946],10039,[3145,9941],[3210,9942],[3208,9943],[3144,9946],10042,[3924,10138],[3924,10232],[3923,10233],3989,3926,3924,3987,[3412,10133],10037,10038,10039,10042,[3987,10138],[3924,10230],[3923,10231],[3989,10133],[3411,10134],[3987,10135],[3924,10138],[3540,10230],[3925,10231],[3926,10133],[3923,10134],[3987,10135],[3989,10136],[3924,10137],10037,[3228,9941],[3227,9845],3227,3227,3227,3163,3228,[4289,3101],4289,4289,[4289,3098],3162,3227,3228,3163,3228,3227,3163,3227,3164,3228,3227,3228,3228,3228,3228,3164,[3163,9655],[3163,9652],[3228,9653],3163,3227,3163,3228,3228,3163,3227,3227,3161,[4289,3293],4289,[4289,3160],3227,3228,3228,3227,3164,3228,3228,3228,3228,3164,3164,3227,3227,3163,3163,3164,3227,3164,3227,3228,3164,3164,[4289,3165],4289,[4289,3160],3164,3225,[4289,2969],3226,3228,3227,3164,3227,3228,3227,[4289,3229],4289,[4289,3097],[4289,3291],[4289,3292],3162,3164,3163,3164,[3228,9658],[3228,9659],9560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9283],[415,9284],[415,9285],[415,9286],[415,9283],[415,9286],[415,9473],[4018,9474],3955,3956,4017,4020,4019,[4018,9476],[3954,9569],[3504,9570],4017,3955,4017,[3505,552],[4018,553],[3570,553],[3954,554],3954,[3063,3761],[3063,3761,9671],[3062,3762,9672],[3956,9573],4020,[3953,9476],[3062,9569],[2998,9570],3063,[3063,3889],[3063,4081],[2998,3762],[3063,3763],[3062,3764],[3062,3765],3063,[3063,4080],[3062,3892],3062,[3062,3760],[3063,3761,9767],[3062,3765,9863],9955,9956,[3568,9858],[3570,9859],[4018,9860],[4020,9762],3570,3568,4017,3505,3953,3568,4020,3505,[4017,9767],[4020,9863],9864,[3062,9669],2998,3063,3063,[3062,4016],4017,3570,4018,3954,3568,[3956,1483],1484,1485,1486,1487,1488,1489,[3568,1490],3568,4019,3570,3506,[4017,9671],[3505,9672],[4019,10055,9573],3569,3954,3506,4018,4019,4018,[3506,10050,9572],[3442,9665],[3440,9666],4020,4019,4020,3570,3954,[3063,4021],3063,[3063,3889],4020,3955,3570,3506,3954,4020,[4018,9476],[3955,9569],[3954,9570],3505,3568,4020,[3062,3765],3063,2998,3062,[3062,3824,9671],[3504,9672],[3569,9573],3636,3637,3506,4019,3956,4019,3956,3953,[4019,10106,9532],[4023,9721],[3574,9722],4023,3961,3448,3574,4024,3575,3960,3448,4026,3959,[3063,3771],3062,3063,3063,[3063,4022],3962,3575,3511,[3062,3963],3062,[3063,3830],4025,[3447,9727],[3575,9728],[3448,9725],3510,[4025,423],409,409,[3063,3958,293],3446,[4024,9724],[3962,9721],[3578,9722],4024,4024,3962,4023,3446,4024,3512,3512,3446,[3062,3963],3062,[3063,3830],[3578,9721],[3448,9722],3577,3574,3578,3511,[3577,9727],[3510,9728],[10015,9533],[3186,10016],[3249,9821],3251,3249,3252,3187,3250,3187,3252,3188,3185,[3187,9529],[3250,9530],3186,3251,3187,3249,3186,[2928,3059],[2928,9529],[2928,3122,9530],3188,3252,3187,3188,3185,3188,3251,[2802,2997],2802,[2802,3312],[2930,3316],3188,3186,3188,3250,[3249,5824],[2931,3316,5825],[2931,3313,5826],[2802,3315,5827],[2867,3317,5828],2931,[2931,3057],3185,3188,[3186,9535],[3186,9536],3187,3187,[3250,9631],[3249,9632],[10015,9533],[3252,10111],3250,3188,3187,3252,3252,3185,3186,3252,3188,[3188,9628],[3186,9625],[3250,9626],[3185,5869],[3187,5870],[3250,5871],[3186,5872],[3252,5873],3185,3187,3249,[2928,3059],[2928,9724],9913,[3252,9914],[3251,9818],3187,3186,3250,3187,3185,[2928,2993],3186,3249,3251,3249,3250,3251,3249,3186,3252,3251,3188,3251,[3188,9823],[3250,9919],9920,[3188,9725],3187,3250,[3249,5773],[3186,5774],[3249,5775],[3188,5776],[3249,9658,5777],[3252,9659],[3146,9560],3146,3208,3144,3144,3209,3146,3209,3146,3210,3144,[3145,9850],[3145,9946],10042,[3987,10138],[3924,10230],[3923,10231],[3925,10133],10037,10038,10039,10042,[3412,10138],3926,3924,3411,3923,3924,[3987,9655],[3475,9748],[3989,9749],3989,3924,3475,3924,3923,[3208,3799],3146,3208,[3209,3986],3411,3923,3926,3925,3923,3989,[3987,9655],[3924,9652],[3989,10230,9653],[3923,10231],3923,[3210,3799],3209,3210,3144,[3209,3986],[3924,10133],10037,10038,10039,10042,[3987,10135],10037,10038,10039,10042,[3412,10138],3924,3926,3924,3924,3924,3987,3926,3924,[3925,10133],[3923,10134],[3926,10135],[3925,10138],3989,3926,3923,3989,[3987,10230],[3923,10231],3926,3925,3989,3989,[3926,10230],[3925,10231],[3923,10232],[3923,10233],[3924,10133],10037,[3164,9941],[3227,9845],3227,3163,3164,3163,[4289,3165],4289,4289,4289,[4289,3224],3163,3163,3228,3227,3163,3164,3228,3227,3227,3163,3227,3228,3163,3228,3163,[3227,9655],[3227,9748],[3227,9749],3227,3164,3227,3163,3227,3227,3163,3227,[4289,3037],4384,4289,[4289,3224],3163,3228,3227,3227,3228,3163,3164,3228,3163,3227,3164,3163,3227,3228,3164,3227,3227,3164,3163,3164,3163,3161,[4289,3293],4289,[4289,3097],3162,3227,3164,3163,3227,3164,3164,3228,3227,3164,3225,[4289,2973],4289,4289,4289,[4289,3097],3162,3164,3164,[3163,9754],[3228,9755],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9377],[415,9378],[4017,9379],[4017,9380],[3954,9381],[3504,9382],[4018,9379],[4019,9382],[3956,9474],4017,4020,3954,3955,3955,3956,[3953,9572],[3506,9665],[3504,9666],3505,4019,3505,[3504,616],415,417,[4017,618],3505,4018,4019,[3954,9479],[3569,9480],[4020,9283],[4019,9572,9286],[3062,3762,9665],[3063,3764,9666],2999,3062,3063,[3063,4016],4020,3569,[3063,3891],3062,3062,3062,[3062,3825],[4020,9575],[4020,9576],[9959,9477],[415,10051],[415,10052],9954,9955,9956,[4020,9858],[3954,9762],3568,3569,4017,4017,4019,3955,[4019,9767],[3570,9863],9959,[3062,3957,9960],[3062,9765],3062,3063,[3063,3825],3506,4017,3953,3568,4019,3956,[4018,1547],1548,1549,1550,1551,1552,1553,[3506,1554],4019,3953,4020,4018,[4020,9575],[3568,9576],[3569,9573],4019,3505,4019,3955,3956,3570,[3568,9572],[3442,9761],[3956,9762],3504,3955,3569,3569,4017,3568,[3063,3827],3063,[3062,4016],4018,4018,3955,4019,3504,[4019,9572],[3570,9665],[3568,9666],3956,4020,3570,3953,[3062,3827],3063,3062,[3062,3888],[4019,9479],[4020,9383],3700,3701,3505,4018,4017,4017,3570,3956,[4020,9628],[3512,9721],[3447,9722],3576,3448,3959,4025,4026,4023,3448,3448,4025,3448,3448,[3062,3771],3063,3063,[3062,4086],[3063,4087],3447,4025,[3062,3897],3063,[3062,3894],4025,3578,[3576,9535],[4025,486,9439],[3447,486],[3574,487],[3062,3963,293],[3063,294],[3063,3895],3448,[3577,9529],[3962,9530],3447,3511,3577,4024,3447,3961,3448,3510,4026,4023,[3063,4091],3062,[3062,3894],[3448,9817],[3577,9818],3510,3512,3446,4023,[3448,9631],[3961,9632],[3252,10111,9629],3250,3252,3249,3252,3185,3187,3252,3252,3186,3251,[3252,9529],[3249,9530],3187,3185,3186,3250,3187,3187,[3249,9532],[2928,2993,9625],[3185,9626],3186,3187,3185,3188,3187,3188,3250,[2930,3061],2802,2930,2930,[2931,3121],[2931,3313],3250,3250,[2930,3123],2803,2930,2866,2802,2930,[2931,3312],3249,3251,[3251,9631],[3251,9632],[3188,9533],3249,[3251,9727],[3185,9728],[3252,10111,9629],3249,3187,3187,3251,3250,3250,3251,3186,3187,3185,[3186,9628],[3188,9721],[3185,9722],3250,[3251,5966],[3250,5967],[3186,5968],3252,3187,3250,3250,3188,[2928,2994,9820],[2928,2995,10009],10010,[3185,9914],[3185,9818],3186,3250,3188,3252,3252,3188,3188,3252,3251,3188,3185,3249,3252,3251,3249,3250,[3185,9631],[3187,9632],10015,[3188,10016],[3185,9821],3188,3186,[3186,5869],[3187,5870],[3185,5871],[3249,5872],[3185,9754,5873],[3186,9755],[3210,9845,9656],3146,3210,3208,3209,[3209,9850],[3145,9944],[3209,9945],[3145,9845],3146,[3210,9754],[3144,9755],[10042,9560],[3475,10138],3926,3923,3987,3987,[3924,10133],[3989,10134],[3989,10135],[3923,10138],3476,3987,3989,3987,3925,3925,[3987,9655],[3923,9844],[3926,9845],3925,3924,3987,3412,3926,[3210,3927],3208,[3210,3795],3923,3926,3926,3926,3923,3925,3989,[3411,9751],[3925,9748],[3539,9749],3410,3987,[3209,3927],3144,3146,3144,[3209,3794],3987,[3925,10133],[3989,10134],[3925,10135],[3924,10138],[3989,10231],[3923,10133],[3476,10134],[3925,10135],[3924,10138],3410,3476,3923,3923,3923,3989,3923,3538,3476,3987,[3923,10230],[3924,10231],3926,3925,3925,3925,3476,3989,3923,3989,3925,3925,3411,3924,3923,3926,3926,3923,[3989,10133],10037,[3164,9652],[3164,9653],3228,3228,3227,3225,[4289,3035],4289,4289,[4289,3288],[4289,3289],[4289,3290],3162,3228,3227,3164,3228,3228,3227,3164,3227,3228,3163,3164,3228,[3164,9655],[3163,9844],[3163,9845],3228,3227,3227,3164,3228,3227,3227,3227,[4289,3165,9850],[4289,9942],[4289,3033,9943],[3226,9845],3227,3163,3163,3228,3228,3163,3227,3227,3227,3227,3227,3227,3227,3163,3163,3227,3161,[4289,3290],3162,3164,3228,[4289,3229],4289,4289,4289,[4289,3224],3228,3228,3227,3163,3164,3164,3164,3228,3163,3227,3225,[4289,2970],[4289,2971],[4289,3035],4289,[4289,3224],3163,3164,[3228,9850],[3228,9851],9656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[3504,9474],3956,3506,3954,4019,3954,3956,4017,4020,3956,4019,4017,3443,4020,[4018,9572],[4018,9761],[3568,9762],4018,3568,3506,[3955,680],[3956,681],[4019,681],[3956,682],4018,4018,3953,3955,[4017,9479],[3506,9379],[3506,9382],[3506,9474],4020,[3062,4021],3063,2998,[3062,3889],3570,[3062,4021],3062,3062,3062,3062,[3062,4016],[3506,9671],[4018,9672],[415,10055,9573],[415,10147],[415,10148],[415,10050],[415,10051],[415,10052],[9954,9476],[3953,9569],[4017,9570],3568,4017,3955,3954,[3569,9575],[3504,9576],[9959,9477],[3568,10055],3505,[3062,3828],3063,[3063,3760],3954,4019,4017,3505,4018,3955,3504,[3504,1611],1612,1613,1614,1615,1616,1617,[4018,1618],3504,4017,4017,3504,[3568,9671],[3506,9672],[3505,9573],4019,3569,4020,3570,3504,3954,[3568,9668],9857,[3954,9858],[3956,9859],[3955,9860],[3955,9762],4018,3954,3568,[2998,4021],3063,[3062,4080],[3063,4083],[3062,4084],3506,3956,4019,[4019,9572],[3569,9761],[3955,9762],3505,4018,3955,3955,[3062,3829],3063,3063,[3063,3952],4020,[3504,9479],[3570,9480],3506,[2998,4081],[2998,4082],3570,3956,3570,4018,[4020,9724],[3577,9721],[3446,9722],3578,4024,4024,3447,3448,3447,3574,3446,4024,4026,4023,4025,[3062,3767],[3063,3833],3062,3063,[3063,3896],[3063,4091],3063,3063,[3062,3958],3446,3962,3578,[4026,9535],[409,9536],[3447,293],[3063,4027],3063,3062,[3063,4022,9532],[3578,9721],[3578,9722],3448,4024,4024,3510,4023,3511,4023,3959,3962,[3063,3835],3062,3063,[3062,3958],9913,[3447,9914],[4026,9818],3577,4026,3959,[3448,9727],[4025,9728],[3185,9725],3252,3185,3252,3185,3187,3251,3187,3252,3185,[3252,9532],[3188,9817],[3250,9818],3185,3186,3249,3252,3188,3186,[3185,9628],[3185,9721],[3249,9722],3186,3186,3186,3250,3249,3250,3249,[2931,3189],2802,[2802,3057],[2802,2993],[2930,2997],2930,[2931,3312],[2931,3123],2802,[2931,2992],[2930,2993],[2802,2993],[2930,2994],[2931,2995],[2930,2996],3251,3185,[3252,9727],[3187,9728],[3252,9629],3252,[3187,9631],[3187,9632],[3185,9629],3252,3186,3250,3252,3249,3251,3252,3251,3249,3250,[3187,9628],[3250,9817],[3252,9818],3186,3187,3188,3187,3186,3249,3249,3252,3186,3188,3185,[3249,10106],10010,[3188,9625],[3185,9626],3252,3252,3186,3186,3186,3187,3187,3185,3188,3250,3188,3187,3251,3185,3252,[3252,9727],[3250,9728],[2928,3314,10111,9533],[2928,3315],[2928,3316],3251,3252,3250,[3252,5966],[3186,5967],[3251,5968],[3186,9850],[3185,9851],[3146,9941],[3210,9845],3209,3209,[3146,9850],[3144,9946],10040,10041,[3145,9941],[3210,9944],[3145,9945],[3144,9851],[3924,10138,9656],3926,3924,3410,3926,3925,3538,[3924,10230],[3923,10231],3924,3923,3538,3924,3924,3989,3987,[3924,9751],9940,[3925,9941],[3987,9845],3987,3987,3989,[3146,4054],[3209,4055],3209,[3207,3794],3923,3987,3923,3987,3926,3474,[3924,9460],[3987,9461],[3987,9557],3989,3989,[3145,4054],[3145,4055],3208,3145,3209,[3210,3858],3926,3926,[3987,10230],[3989,10231],3989,3926,3925,[3923,10230],[3926,10231],3925,3926,3925,3987,3925,3474,3926,3926,3925,3987,3923,3989,3989,3925,3923,3987,3925,3987,3923,3924,3923,3925,3923,3923,3987,3475,3924,3926,3923,3924,[3925,10133],[3926,9748],[3228,9749],3164,3228,3164,3228,3225,[4289,2969],[4289,2970],[4289,2971],[4289,3035],4289,[4289,3097],3162,3163,3164,3164,3228,3227,3228,3163,3228,3164,3228,3161,[4289,3099,9751],9940,[3227,9941],[3227,9942],[3163,9943],[3163,9944],[3163,9945],[3227,9942],[3227,9943],[3228,9944],[3164,9945],[3227,9946],10038,10039,[3227,9941],[3164,9942],[3163,9943],[3163,9944],[3164,9945],[3227,9845],3163,3164,3228,3228,3228,3163,3163,3161,[4289,3290],[4289,3291],[4289,3292],[4289,3099],4289,[4289,3224],3164,3161,[4289,3099],4289,[4289,2968],[4289,3035],[4289,3098],[4289,3289],3162,3163,3163,3164,3163,3228,3228,3164,3164,3164,3164,3164,[4289,3229],4289,[4289,3224],3163,[3227,9850],[3228,9946],9947,9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9476],[3956,9569],[4019,9570],3955,3955,3505,3505,4018,3956,4019,3953,3954,3955,3506,3954,3955,[3443,9668],9857,[3953,9858],[4020,9861],[3956,9862],[4019,9859],[4019,9860],[3569,9762],3505,4017,3569,3956,3570,3569,3568,3956,4019,4018,3955,3440,[3063,3765],3062,3062,[3063,4016],[2998,4021],3062,3062,3063,3063,[3062,4080],[3504,9575],[4018,9576],[415,9573],417,415,415,[415,10147],[415,10148],[415,10050,9572],[3063,3824,9665],[3506,9666],4019,3504,3505,3956,[3955,9671],[4020,9672],[3954,10055,9573],4020,3954,[3062,3829],3062,[3062,3824],4019,3569,3953,4019,3570,3504,3568,[4017,1675],1676,1677,1678,1679,1680,1681,[3956,1682],3568,4018,4019,3505,[3442,9767],[3568,9768],[4019,9573],3955,3505,3954,3504,4018,3505,[3506,9764],[3505,9953],9954,9955,9956,[3568,9858],[3505,9762],3570,4017,4018,[3062,3827],3063,3063,3063,[3063,4016],3956,3570,[3506,9668],9857,[3568,9858],[4020,9762],3570,4017,4017,[3063,3893],3063,[3062,3825],4019,3568,[3953,9575],[3569,9576],[3063,3891,9477],3062,3062,[3062,4080],[3063,4082],3569,3953,[4020,9820,9434],[3448,9530],4025,3448,3960,3959,3961,4024,4026,3960,3448,4024,4026,3962,4023,4024,4023,[3062,3834],3062,3062,3062,3063,[3063,3831],3577,3448,3960,3446,[3512,9631],[3448,9632],[3448,494,9533],3512,[3062,3834],3063,[3062,4086,9628],[3448,9625],[3961,9626],3577,3446,3575,4026,4026,3446,3575,4024,3448,[2998,3963],3062,[3063,3831],4025,[4024,10009],10010,[3448,9625],[3577,9626],4023,3448,3447,[3447,9535],[3186,9439],3186,3250,3185,3251,3250,3251,3250,3249,3251,[3250,9724],9913,[3185,9914],[3188,9818],3250,3186,3250,3249,3186,[3188,9628],[3185,9625],[3252,9626],3251,3187,3188,3186,3250,3185,3188,3251,[2930,2993],3250,3250,[2802,3061],2803,2802,2931,[2803,3058],3250,3252,3251,2800,3187,3250,3187,3251,[3252,9823],[3249,9824],[3251,9629],3187,[3188,9727],[3187,9728],[3250,9725,9339],[3186,9342],3251,3249,3185,3185,3250,3251,3186,3187,3252,[3187,9724],9913,9914,[3188,9915],[3252,9916],[3250,9818],3186,3250,3249,3188,[2928,3313],3187,3249,3249,3187,[3186,10106,9532],[3250,9721],[3252,9722],3250,3186,3249,3250,3188,3186,3250,3249,3251,3187,3252,3186,3188,3249,3249,[3185,9823],[2928,9824],[2928,9629],2928,2928,[2928,3312],[2928,3313],3185,3251,[2928,3315],[2928,3316,9850],[3188,9946],9947,10037,[3208,9941],[3145,9942],[3210,9943],[3208,9946],10042,[3925,10136],[3925,10137],10037,10040,10041,9947,[3989,9752],3989,3987,3989,3924,3987,3924,3926,3987,3987,3924,3476,3925,3989,3925,3926,[3987,9847],[3924,10036],[10037,9559],[3925,9652],[3923,9653],3923,[3209,3862],3210,3146,3210,[3145,3858],3924,3989,3923,3925,3924,3538,[3925,9556],[3989,9557],3989,3987,[3145,3799],3207,3209,[3146,3730],[3208,3797],3210,[3210,3922],3924,3923,3925,3475,3923,3989,3924,3539,3926,3924,3924,3989,3989,3987,3987,3923,3989,3989,3923,3412,3475,3538,3924,3989,3987,3924,3989,3926,3923,3989,3987,3926,3923,3539,3539,3926,3924,3989,3987,3923,[3923,9844],[3163,9845],3227,3228,3228,3227,[3163,9850],[3227,9845],3163,3164,[4289,3229],4289,4289,[4289,3224],3163,3227,3163,3227,3164,3228,3164,3163,3228,3227,[4289,3229],[4289,9847],[4289,10036],10037,10038,10039,10040,10041,10038,10039,10040,10041,10042,[3228,10134],[3228,10135],10037,10038,10039,10040,10041,[3164,9941],[3228,9845],3228,3163,3163,3228,3161,[4289,3289],[4289,3099],4289,4289,4289,4289,[4289,3034],3226,3228,[4289,3229],4289,4288,[4289,3032],[4289,3229],4289,4289,[4289,3288],[4289,3289],3162,3227,3164,3228,3227,3164,3163,3228,3228,3228,3225,[4289,3035],[4289,3098],[3162,9754],[3228,9755],[10042,9560],10043,9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[4019,9665],[3954,9666],3570,3954,3570,4018,3956,3954,3954,4019,4018,3954,4018,4017,3954,[3568,9764],[4018,9953],9954,9957,9958,9955,9956,[3953,9858],[3956,9762],3505,3570,[3062,4081],3956,3953,3953,3568,3956,4017,4017,4018,3504,[3063,3828],3062,[3063,4080],[3063,4085],3062,3063,3062,[3063,3825],[3063,3765],[3062,3889,9671],[3504,9672],[3956,550,9573],[4020,550],[4018,551],416,415,415,[415,9572],[3063,3952,9761],[4020,9762],3571,3953,3955,3954,[3505,9767],[3505,9768],[3570,9573],4018,4018,[3062,3893],3062,[3063,3888],4020,3956,3955,3506,3956,3568,3569,[4018,1739],1740,1741,1742,1743,1744,1745,[3568,1746],3955,3569,3570,[3504,9767],[4019,9863],9864,[3568,9669],3568,3956,3568,3954,3953,4019,4018,4019,[3504,10050],[3571,10051],[3505,10052],9954,[4017,9858],[4019,9762],4020,4018,[3063,4021],2998,3062,3063,[3063,4080],[3063,3891],[3062,3889],[3063,4081,9764],[4020,9953],9954,[3955,9569],[3568,9570],3953,4017,[3062,3957],3062,[3063,3824],3505,3506,[3571,9671],[3568,9672],[3063,9573],2998,3063,2999,3062,[3063,3890],[3953,9434],[3446,9530],4023,3446,3512,4024,3448,3961,3578,3576,3962,3642,3643,3961,3578,3447,4024,4023,3448,[3062,3771],3062,[2998,3766],[3062,3767],3959,3576,3448,4024,3959,[4026,9727],[3961,9728],[3446,9629],3512,[3063,4027],3062,[3062,9628],[3062,3896,9721],[3446,9722],3446,3961,4024,3577,4025,4024,4026,3578,3577,[2998,3897],2998,[3063,4022],4024,4026,[3959,10106,9532],[3578,9721],[3577,9722],4024,4023,3446,3446,[3575,9535],[3187,9536],3185,3249,3249,3251,3249,3251,3250,3250,[3188,9820],[3251,10009],10010,[3251,9914],[3187,9818],3249,3186,3185,3252,[3251,9628],[3187,9721],[3185,9722],3187,3252,3252,3188,3187,3252,3249,3252,3251,3249,3188,[2931,3125],2931,2802,[2930,3058],3185,3252,3250,3185,3186,3252,3252,3187,[3251,9631],[3249,9632],9920,[3249,9725],3250,3251,[3249,9535],[3188,9435],[3188,9438],[3185,9536],3187,3251,3251,3186,3185,3188,3185,3185,[3188,9820],[2928,3123,10009],10010,10011,10012,[3250,9914],[3187,9818],3250,3249,[2928,3124],2928,[2928,3056],3187,3249,3252,[3250,9628],[3250,9625],[3252,9626],3188,3188,3250,3251,3251,3251,3186,3186,3252,3252,3250,3187,3188,3250,[3188,9823],[3186,9919],9920,[2928,2993,9725],[2928,3059],2928,2928,2928,[2928,3121],[2928,3317],[2928,9658],[2928,9659],[10042,9560],[3924,10043],[3926,10133],10037,10038,10039,10042,[3410,10138],[3925,10232],[3926,10233],[3989,10133],[3989,10136],[3925,10137],[3989,10043],[3925,9848],3923,3926,3923,3476,3925,3540,3925,3925,3987,3411,3475,3989,3989,3989,3926,3925,3925,[3923,10133,9655],[3989,9748],[3987,9749],[3209,3799],3209,3146,3209,3209,[3207,3922],3925,3476,3923,3923,3923,[3924,9559],[3925,9652],[3923,9653],3925,3924,[3146,3863],3146,3208,[3207,3794],3989,[3145,3731],3924,3989,3411,3925,3602,3603,3924,3989,3924,3540,3926,3989,3925,3925,3411,3987,3925,[3989,9366],[3474,9367],[3989,9368],[3987,9369],3538,3987,3923,3925,3926,3604,3605,3989,3989,3926,3924,3987,3987,3924,3538,3411,3924,3989,3923,3411,9940,[3163,9941],[3164,9942],[3164,9943],[3163,9944],[3164,9945],[3164,9946],[3228,9941],[3227,9845],3228,3225,[4289,3035],[4289,3033],3226,3228,3227,3164,3228,3228,3163,3164,3227,3164,3161,[4289,3100],4289,4289,[4289,10133],[4289,10134],[4289,3032,10135],[3163,10136],[3227,10137],[4289,3037,10134],[4289,10135],[4289,3096,10136],[3228,10137],[3228,10138],[3163,10230],[3227,10231],[3227,10133],[3228,10134],[3163,10135],[3164,10136],[3163,10137],10037,[3228,9941],[3227,9942],[3227,9943],[3228,9845],3161,[4289,3099],4289,4289,[4289,3033],[4289,2969],[4289,2970],[4289,2971],3226,3227,3228,3225,[4289,3036],4289,[4289,3096],3225,[4289,3036],4289,4289,4289,[4289,3224],3164,3163,3227,3227,3164,3228,3161,[4289,3289],[4289,3290],[4289,3289],[4289,3293],4289,[4289,3097,9850],[3228,9851],[10138,9656],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9850,9942,9943,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9377],[415,9378],[3956,9474],3953,3505,4020,3504,3506,4019,3956,4020,4017,3955,3954,4017,3955,3953,3570,3954,[3954,10050],[3505,10053],[4020,10054],[3505,10051],[3955,10052],[9954,9476],[4020,9569],[4017,9570],[3062,3829],3062,[3063,3889],3954,3506,3569,3955,4018,3504,4019,4017,[2998,3829],3062,2998,3062,3063,[3062,3825],[3063,3761],3506,[3062,4021],[3062,9767],[3062,4016,9768],[3570,9573],3507,3955,[4019,550],[4017,550],[3063,3829,551],[415,9668],9857,[3505,9858],[3956,9859],[4020,9860],[3953,9861],[3570,9862],[3954,9863],9864,[4017,9669],3956,3569,[3063,3957],3062,[3062,3952],3504,3506,4019,4019,3568,3956,3954,[3569,1803],1804,1805,1806,1807,1808,1809,[3569,1810],3570,4018,[3505,9575],[3570,9576],[9959,9477],[3442,9960],[4018,9765],3953,4020,4020,4017,3955,3569,3506,3954,3956,[3953,10147],[3572,10148],[3505,10050],[9954,9476],[3504,9569],[3569,9570],3954,4019,[3062,3761],[3062,3762],[3062,3764],[3062,3765],3063,3063,3062,[3062,3889],[2998,4081,10050],[3953,9665],[3063,4084,9666],3955,3568,[3063,4085],3062,[3063,3888],3569,3506,[4017,9767],[4018,9768],[2999,3763,9573],[2998,3764],[3062,3765],2998,2998,[3063,9532],[3578,9625],[4023,9626],3961,3513,4023,4025,3578,3446,3959,4026,3578,3706,3707,3578,4025,3576,3447,3448,3574,[3062,4027],3063,[3062,3895],3511,4024,3446,3447,3449,3578,[3446,9823],[3512,9824],[3960,9629],3962,3574,[3062,3834],[3062,9628],[3063,9817],[3063,4022,9818],3513,3448,4024,3574,3961,3448,4026,3962,[3062,3898],3063,[3063,3766],[3448,429],[3446,358],[3510,486],[4023,486,9628],[3447,9625],[3578,9626],4023,3578,3447,4024,[4026,9631],[3578,9632],[3188,9533],3187,3185,3185,3252,3251,3185,3250,3187,3252,[3186,10106],[10010,9532],[3249,9721],[3252,9722],3250,3251,3185,[3249,9628],[3251,9817],[3249,9818],3249,3186,3249,3188,3186,3186,3185,3187,3188,3249,3250,[2802,3189],[2802,2992],[2930,2993],3188,3250,3187,3186,3250,3186,3251,3185,3185,[3188,9727],[3251,9728],[3252,10016],[3249,9821],3250,3249,3249,3251,[3252,9631],[3187,9632],[3186,9533],3250,3249,3252,3249,3186,3251,3187,[2928,3061],2928,[2928,2992,10106],[3251,10107],[3187,10108],10010,[3250,9914],[3250,9818],[2928,3253],2928,2928,[2928,3184],3187,3187,3250,[3185,9628],[3187,9721],[3188,9722],3250,3249,3251,3188,3252,3185,3250,3187,3185,3249,3250,3186,3250,[3188,9823],[3187,9919],10015,[3249,10016],[3187,9821],3252,[2928,2993],[2928,2997],2928,2928,2928,[2928,9754],[2928,3058,9755],[3923,10138,9656],3540,3925,[3926,10133],[3412,10134],[3987,10135],[3412,10138],3925,3924,3926,3987,[3925,10232],[3924,10233],3924,3476,3989,3987,3926,3539,3538,3539,3925,3987,3989,3924,3412,3925,3925,3926,3926,3926,3925,[3987,9655],[3926,9652],[3924,9653],[3208,3863],3145,3208,3208,3209,[3146,3986],3925,3538,3989,3925,3989,[3923,9655],[3987,9748],[3926,9749],3989,3926,[3207,3927],3209,3145,[3143,3922],3476,3989,3987,3923,3989,3926,3666,3667,3926,3925,3987,3989,3926,[3926,9366],[3926,9367],[3989,9367],[3989,9368],[3924,9369],[3924,9461],[3925,9462],[3926,9463],[3989,9464],[3987,9465],[3989,9466],3923,3411,3926,3475,3668,3669,3925,3987,3924,3539,3926,3987,3411,3989,3989,3924,3924,3926,3987,[3989,10036],10037,10038,10039,10040,10041,10042,10037,[3228,9941],[3227,9845],3228,3225,3226,3227,3163,3227,3227,3163,3163,3163,3163,3164,3164,[4289,3037],4289,4289,4289,4289,[4289,10230],[4289,3096,10231],[3228,10232],[3227,10233],[4289,3101,10230],[4289,10231],[4289,3160,10232],[3163,10233],3228,3227,3163,3227,[3228,10230],[3228,10231],[3227,10232],[3228,10233],[3227,10133],10037,10038,10039,[3163,9941],[4289,3293,9845],4289,[4289,3033],[4289,2969],3226,3163,3164,3227,3164,3163,3227,3228,[4289,3037],4289,[4289,3160],3164,3225,[4289,2969],[4289,3035],4289,[4289,3097],[4289,3289],[4289,3290],3162,3164,3164,3161,[4289,3099],4289,4289,4289,4289,[4289,9850],[4289,9946],9947,9752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9850,9946,10038,10039,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[4018,9474],4019,4020,4018,4020,3953,3570,3956,4020,4017,4020,4019,3953,3953,4020,3504,3568,3505,4018,[4018,10149],[4020,10150],[4018,10147],[3506,10148],[3568,10050,9572],[3954,9665],[4017,9666],[3063,3957],3063,3062,[3062,4016],3953,3956,3953,3955,3569,4017,3953,[2998,4021],3062,3063,[3063,3826],[3063,3761],3955,3570,3955,[3954,9767],[3062,3761,9863],9864,[3568,9669],3569,3506,4017,4020,[3062,3957],[3062,550,9764],[3062,4080,9953],9954,9955,9956,9957,9958,9959,[3954,9960],[3442,9765],3954,3504,[3063,4021],3063,[3062,4080],[2998,4081],[3063,4082],[3062,4083],[2998,4084],3955,4018,3954,[3955,1867],[3505,1868],[4020,1869],[3063,3892,1870],[3063,1871],[3063,4016,1872],[3571,1873],[3569,1874],3505,4017,[3955,9671],[3954,9672],[4018,10055,9573],4018,3954,4020,3954,3504,3953,3954,3504,3504,3440,3506,3569,3956,3505,[3953,10050,9572],[3570,9665],[3956,9666],3569,4019,3568,4017,4019,4020,[3063,3761],[3063,3762],[3063,3764,9283],[3062,3765,9286],[3063,9378],[3063,3891,9474],3063,[3063,4080],[3062,3892],3063,3062,[3062,3952],4019,[4017,9575],[3505,9576],[9864,9477],[3569,9669],3570,3504,[3063,3828],3063,[3062,9628],[3446,9721],[3577,9722],3578,3578,4026,3578,4026,4024,3512,4023,4023,3448,3447,4026,3446,3574,3578,3446,3961,3446,[3063,3834],2998,[3063,4022],[3578,9823],[3448,9915],[3577,9916],[3448,9917],[3510,9918],[3577,9919],9920,[4023,9725],4025,4025,3959,[3062,3767,9724],9913,[3063,3895,9914],[3063,4089,9818],[3063,4090],4026,4026,3448,3575,3574,[3062,3835],3062,3063,[3063,4022],[4023,423],409,409,[409,9724],[3830,9721],[3511,9722],4025,3578,4023,3448,[3574,9727],[4026,9728],[3186,9629],3249,3249,3252,3250,3252,3249,3249,3249,3252,3187,[3250,10106,9628],[3187,9625],[3252,9626],3188,3251,3188,[3249,9724],9913,[3251,9914],[3249,9915],[3250,9916],[3188,9818],3249,3186,3252,3188,3188,3188,3185,3250,[2930,3123],[2802,3121],3187,3249,3250,3188,3188,3251,3252,3188,3186,3185,3186,[3188,9535],[3186,9536],[3186,9339],[3249,9342],3251,3252,3251,[3187,9727],[3187,9728],[3252,9725],3249,3250,3252,3250,3188,3186,3250,[2928,3189],2928,[2928,3056],[3250,10203],[3252,10204],[3187,10106],10010,[3250,9914],[2928,3123,9818],2928,[2928,3057],3251,3249,3185,3252,[3186,9628],[3249,9817],[3251,9818],3187,3251,3249,3187,3187,3185,3187,3251,3250,3249,3250,3252,[3252,9823],[3187,9919],10015,[3251,10111],3185,3251,3250,3250,3249,[2928,2993],[2928,2994],[2928,2995],[2928,2996,9658],[3252,9659],[3987,9752],3923,3923,3926,[3987,10230],[3924,10231],3925,3987,3926,3923,3926,3926,3987,3926,3925,3987,3989,3924,3923,3924,3476,3923,3538,3987,3924,3926,3923,3924,3412,3924,3925,3924,[3989,9655],[3924,9748],[3989,9749],[3146,3927],3144,3146,3210,3145,[3210,3860],3923,3923,3925,3925,3989,[3540,9655],[3926,9652],[3987,9653],[3145,4053],[3208,4054],[3208,3861],3145,[3208,3795],3923,3925,3923,3539,3925,3924,3923,3925,3987,3925,3987,3926,[3989,9460],[3539,9461],[3924,9462],[3926,9463],[3412,9463],[3538,9464],[3924,9465],[3923,9557],3923,3410,3923,3989,[3926,9562],[3923,9563],3602,3603,3989,3923,3923,3923,3926,3923,3410,3411,3923,3989,3923,3989,3924,3924,3989,3412,3926,[3924,10133],[3210,3799,10134],[3208,10135],[3208,10136],[3146,3794,10137],[3989,10138],[3926,10133],10037,[3163,9652],[3164,9653],3164,3163,3163,3227,3227,3227,3227,3164,3228,3163,3163,3227,[4289,3101],4289,4289,4289,4289,4289,[4289,3160],3164,3163,[4289,3165],4289,[4289,3224],3227,3163,3227,3164,3164,3163,3164,3228,3228,3227,[3228,10133],[3163,10134],[3227,10135],10037,[4289,9941],[4289,9942],[4289,3224,9943],[3163,9845],3163,3227,3228,3228,3164,3228,3227,3227,[4289,3101],4289,[4289,3097],3162,3164,3228,3225,[4289,2973],4289,4289,4289,[4289,3224],3227,3227,[4289,3037],[4289,9850],[4289,9942],[4289,9943],[4289,9944],[4289,9945],[4289,9946,9845],10042,10043,9848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9754,9755,[10042,9560],[3925,10134],[3925,10135],10037,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9476],[3955,9569],[3955,9570],3506,3504,3568,4017,4018,3568,3953,3956,3955,3954,3954,3507,3956,3954,4017,4020,3569,3504,3634,3635,3953,3440,[3956,9378],[4019,9474],3568,4017,[3063,3828],3063,[3062,4080],[3062,4081],3954,3955,[3063,4081],[3062,4082],3506,4019,[3063,3957],3063,[3062,3825],3505,3570,3568,3955,[3568,9575],[3506,9576],[9959,9477],[3955,9960],[3568,9765],3570,3954,4018,4020,4017,[2998,3827],3062,[3063,10050],[3062,3889,10051],[3956,10052],[3570,10053],[3955,10054],[4019,10055],3956,3504,[3062,4081],[3062,4084],[3063,4085],2998,3062,3063,3062,3063,3063,[3062,3889],[3062,4081],3955,3956,4017,[3062,4021],3062,[3062,3825],4019,3955,4019,4019,3505,[3569,9575],[3956,9576],[4019,9573],3954,3505,4017,3954,3956,4019,4019,3954,3506,3505,3955,3569,3955,3953,[4020,9572],[3505,9569],[3571,9570],4017,3568,3570,3953,3504,4017,4020,[3568,9378],[3570,9379],[3955,9382],[3063,4021,9474],3063,3063,3063,3063,3063,3063,[3063,4016],3569,[3956,9671],[3062,4081,9672],[3568,9960,9573],[3504,9765],4018,4017,[2998,4021],2999,[3063,9628],[3512,9625],[3577,9626],3511,3511,3446,4023,3446,3574,3578,3511,3959,3578,3577,3574,3446,3577,4025,4024,4026,4023,[3062,3835,9823],[3062,9915],[3063,3895,9916],[3446,9919],10011,10012,10013,10014,10015,[3574,10016],[3960,9821],4026,3578,4023,[3447,9820],[3446,10009],10010,[3063,9914],[3062,9818],[3063,4022],3578,3578,3512,3961,[3062,3963],[3062,429],[3063,358],[3063,3830,486],[3576,487],409,409,[409,9529],[3959,9530],3578,3511,4026,4024,4024,[3512,9631],[4024,9632],[3186,9629],3188,3249,3251,3251,3187,3251,3187,3188,3252,3249,[3252,9724],[3250,9721],[3185,9722],3252,3252,3251,[3188,9820],[3188,10009],10010,10011,10012,[3251,9914],[3251,9818],3187,3187,3249,3186,3251,3251,[2802,3061],2802,2802,[2931,3056],3251,3185,3186,3187,3251,3250,3251,3250,3249,[2866,3315],[2802,3313],[3186,9535],[3251,9435],[3185,9438],[3185,9536],3249,3251,[2928,3315],[2928,3316,9535],[3250,9536],[2928,3313],[2928,3314],[2928,3315],[2928,3316],[2928,3316],3188,3250,[2928,3317],2928,[2928,3184],3251,3252,3251,[3186,10106],[10010,9532],[2928,9625],[2928,9626],[2928,3248],3249,3249,3188,3185,[3187,9724],9913,[3252,9914],[3252,9818],[2928,3314],[2928,3315],[2928,3316],3251,3250,3252,3187,3187,3186,3186,[3186,9823],[3249,9919],10015,[3251,10111],3251,3185,3185,3252,3249,3188,3186,3185,3249,3187,[3250,9562],[3923,9466],3987,3924,3923,3987,3926,3923,3539,3987,3925,3989,3924,3923,3923,3989,3989,3989,3925,3987,3925,3925,3926,3925,3989,3923,3925,3989,3923,3989,3924,3925,3925,[3926,9655],[3989,9652],[3989,9653],3924,[3145,3797],3145,3209,3145,3209,[3146,3986],3923,3925,3989,3926,[3925,9751],[3474,9748],[3145,3799,9749],3145,3210,3144,[3208,3730],3926,3989,3987,3924,3989,3925,3412,3987,3989,3989,3926,3989,3924,[3987,9556],[3925,9557],3987,3987,3539,3923,3987,3474,3989,3987,3474,3540,[3987,9658],[3925,9659],[3666,9560],3667,3925,3925,3475,3411,3925,3925,3923,3476,3923,3925,3924,3924,3926,3475,3411,3925,3923,3987,[3146,3863,10230],[3146,10231],[3143,10232],[3145,3858,10233],3989,3989,[3476,10133],[3926,9748],[3227,9749],3164,3163,3164,3228,3227,3228,3228,3164,3163,3228,3164,3163,[4289,3165],4289,4289,4289,4289,[4289,3033],3226,3164,3161,[4289,3099],[4289,3033],3226,3163,3164,3227,3163,3163,3228,3164,3164,3163,3163,3164,[3163,10230],[3228,10231],[3227,10133],10037,10038,10039,[3227,9941],[3164,9845],3227,3228,3164,3228,3228,3163,3228,[4289,3165],4289,4289,[4289,3224],3227,3228,3228,3225,[4289,2969],[4289,2970],[4289,2971],3226,3164,3228,[4289,3165,9850],[4289,9946],10038,10039,10040,[10041,9559],[10042,9748],[10138,9749],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9850,9851,[3989,10138,9656],[3926,10230],[3923,10231],[3989,10133],[10037,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[4017,9665],[4019,9666],3953,3570,3954,3568,3955,4019,4017,4019,4017,3955,3571,4020,4017,3953,3954,4020,4019,3505,3698,3699,4017,[3956,9473],[3568,9474],4020,3953,3505,3506,[3063,3827],3063,2999,[3063,4080],[3063,3891],3063,3062,[2998,3889],[3062,4083],[2999,3892],3062,[3062,4016],3956,3569,3956,3506,[3570,9671],[4020,9672],[3504,10055,9573],4019,3953,4019,4019,3568,3569,3954,[3063,4021],3062,3062,[3062,10147],[3063,3890,10148],[3063,4081,10149],[3062,4082,10150],[3062,4083],[3062,4084],[2999,3892],2999,3063,3063,3063,3062,3063,3062,3062,3062,3063,3062,[3062,4016],3569,3570,[3062,3892],3063,[3062,3824],3953,3504,3955,3505,3953,[3504,9671],[3568,9672],[4017,9573],3955,3506,3953,3504,4019,4018,3956,3569,3956,3505,3568,3955,4017,3953,[3955,9668],[3569,9665],[3956,9666],3956,4018,[3954,9283],[4017,9284],[3504,9285],[3955,9286],[4018,9473],[4020,9474],4017,3570,3954,[3062,3761],[3063,3764],[3063,3765],3062,3063,3062,[3062,3889],[3063,4081],[3062,3891,9767],[3063,9768],[3062,4084,9573],3955,4018,4017,3506,[2999,3761],[2999,3761,9628],[3447,9721],[3578,9722],3960,3577,3448,3574,4023,3447,3577,3511,4024,3576,4025,3574,3578,3959,4025,4023,3446,[3447,9823],[3062,3963,9919],10011,10012,10015,[3447,10107],[3578,10108],[4023,10109],[3577,10110],[4024,10111],3448,4024,4023,3447,3962,4025,4026,[3510,10106],[10010,9532],[3062,9625],[3063,3895,9626],[3062,4090],[3063,4088,429],[3574,358],[3446,486],[3063,3835,486],[3063,487],409,409,[3063,293],[3062,294],[3062,294,9532],[3831,9625],[4023,9626],3512,3959,4023,4023,3962,[3574,9727],[3448,9728],[3185,9629],3188,3185,3187,3185,3186,3185,3187,3186,3187,3252,[3186,9529],[3186,9530],3185,3185,3249,3251,3251,3186,[3185,10106],[3187,10107],[3188,10108],10010,[3188,9914],[3186,9818],3249,3185,3249,3250,3249,[2930,3125],2930,2803,[2930,3184],3251,3250,3186,3187,3249,3188,3250,3252,[2866,3253],2930,2802,[2931,3248],3250,[3186,9727],[3187,9728],[3250,9533],[2928,3061],2928,[2928,9631],[2928,9632],[2928,9533],2928,2928,2928,2928,[2928,3312],[2928,3123],2928,[2928,2992],3185,3186,3186,3188,3188,[3187,10106,9628],[2928,2995,9721],[2928,2996,9722],3185,3188,3249,3185,3250,[3251,9820],[3252,10009],10010,[2928,3123,9914],[2928,9818],2928,2928,[2928,3248],3250,3250,3187,3186,3188,[3251,9823],[3188,9919],[10015,5490],[3185,10111,5491],[3187,5492],3188,3250,3250,3251,3250,3252,3188,3252,3250,3186,3185,[3187,9562],[3924,9563],3987,3989,3989,3989,3923,3987,3923,3926,3987,3926,3987,3924,3989,3926,3923,3410,3923,3925,3475,3924,3989,3539,3926,3924,3926,3926,3925,3989,3923,3476,[3923,9751],[3924,9748],[3987,9749],3926,3412,[3210,3731],[3210,3734],[3210,3735],3207,[3146,3859],3923,3925,3989,3476,[3926,9461],[3989,9557],[3208,3863],3208,3146,3209,[3208,3986],3924,3924,3925,3989,3989,3538,3926,3410,3925,3989,3926,3924,[3926,9559],[3926,9652],[3987,9653],3925,3923,3987,3926,3926,3987,3923,3926,3925,3987,[3987,9754],[3926,9755],[3410,9656],3412,3987,3924,3925,3987,3925,3926,3410,3925,3538,3987,3925,3925,3411,3989,3923,3923,3923,3540,[3145,3927],3145,3208,[3208,3922],3923,3923,3926,[3989,9844],[3164,9845],3228,3227,3227,3164,[3227,9850],[3163,9942],[3227,9943],[3228,9845],3163,3227,3163,3164,3225,[4289,2969],[4289,2970],[4289,2971],[4289,2972],3226,3228,3227,[4289,3229],[4289,9850],[4289,3224,9942],[3228,9943],[3164,9845],3163,3163,3228,3227,3164,3164,3164,3228,3164,3163,3163,3228,3164,[3227,10133],[3164,10134],[3163,10135],10037,[3228,9941],[3228,9845],3164,3163,3227,3163,3164,3227,3225,[4289,3036],4289,[4289,3097],3162,3164,3227,3163,3228,3227,3227,3163,3228,[3227,9850],[3227,9946],10042,[3987,10134],[3924,10135],[3987,10136],[3987,10137,9655],[10042,9844],9845,0,0,0,0,0,0,0,0,9850,9942,9943,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9850,9946,9947,[3925,9752],3540,3410,3925,[3924,10133,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3956,9761],[3954,9762],3569,3506,3955,4019,3955,3569,4018,4020,4018,4020,4017,3954,3953,3956,4017,3956,3954,3955,4019,3505,[3954,9473],[3570,9474],3570,4017,3955,3956,4019,3568,[3062,3828],3062,3062,3062,3063,3063,3063,3062,3062,3063,[3063,4080],4020,3953,3956,4018,[3506,9575],[3568,9576],[3955,9573],3953,3504,3440,4017,3568,3953,3570,4018,[3062,3827],3062,3062,3062,3062,3062,3062,2998,2998,3063,3063,[3062,3826],[2998,3765],3062,3063,3063,3062,3063,3062,3063,[3062,3889],3569,[3062,4021,9283],[3063,9284],[3063,9285],[3063,3888,9286],3570,3569,3570,3955,4019,[4018,9575],[3953,9576],[3570,9573],3506,4018,3568,3569,3953,4017,3569,3955,3955,3953,3569,3570,3954,[3505,9377],[3568,9378],[3570,9474],3955,3956,[3954,9473],[3956,9379],[3569,9380],[3504,9381],[3506,9382],[3506,9474],4019,3569,3505,3570,4019,3570,3954,[3062,3827],3063,3063,2998,[3062,9767],[2998,9863],9864,[3062,9669],[2998,4016],4019,4018,3504,3956,[4018,9434],[3574,9530],3577,3448,4026,4025,3448,3446,3959,3449,4025,3511,3576,4023,3577,4024,4026,3576,3446,[4023,9823],[3578,9919],10015,[3063,10107],[2999,10108],[3062,3958,10111],[3578,10203],[4025,10204],[3578,10205],[4023,10206],3640,3641,4025,3510,4025,3512,3448,4025,3576,[3512,10106,9628],[3063,486,9721],[3063,486,9722],[3063,486],[3063,487],409,409,[3063,293],[3063,294],[3062,294],[3063,294],3062,[3063,3832],[3062,3767,9628],[4025,9721],[3959,9722],4025,3448,4023,4023,3578,[3574,9823],[3448,9824],[2928,3315,9629],[2928,3316],3249,3185,3251,3250,3188,3188,[2928,3316],3188,[3252,9434],[3251,9530],3252,3187,3187,3188,3250,3250,3251,3249,[3250,10203],[3188,10204],[3252,10106],10010,[3251,9914],[3186,9818],3252,3187,3187,3186,[2802,3189],2930,[2866,2992],3188,3187,3249,3249,3252,3250,3252,3188,3188,[2802,3124],2930,[2802,3057],3251,3250,[3185,9823],[3250,9824],[3251,9629],[2928,3125],2928,[2928,3058,9727],[3251,9728],[2928,3057,9725],[2928,2994],[2928,2995],[2928,2996],[2928,3059],2928,2928,2928,[2928,3248],3186,3187,3250,3251,3188,[3249,9434],[3251,9530],3185,3252,3185,[2928,3316],3187,3249,3251,3186,[3187,10106],10010,[2928,9625],[2928,3057,9626],[2928,2993],3185,3188,3252,3188,3249,[3250,9631],[3249,9632],10015,[3251,10111,5586],[3185,5587],[3187,5588],3185,3187,3188,3250,3188,3250,[2928,3313],[2928,3314],[2928,3315],[2928,3316],3186,3188,[3251,9562],[3923,9563],3925,3987,3987,3987,3989,3475,3410,3924,3925,3925,3989,3539,3923,3412,3989,3411,3925,3474,3989,3926,3987,3923,3925,3926,3923,3989,3989,3987,3924,[3410,9461],[3925,9557],3987,3924,3926,3475,3925,[3210,3799],3209,3146,[3209,3986],3989,3924,[3923,9556],[3410,9557],3474,[3145,3927],3146,3210,[3145,3795],3926,3925,3923,3926,3410,3924,3925,3925,3412,3987,3538,3410,3539,[3923,9655],[3925,9748],[3989,9749],3926,3925,3926,3925,3925,3924,3925,3987,3539,3924,[3924,9850],[3923,9851],[3925,9656],3923,3924,3926,3989,3925,3923,3925,3987,3924,3926,3474,3923,3987,3926,3924,3926,3410,3925,[3210,4054],[3146,4055],[3145,3730],[3208,3731],3924,3989,3925,3989,9940,[3163,9941],[3164,9942],[3163,9943],[3164,9944],[3228,9945],[3227,9946],10038,10039,[3163,9941],[3227,9845],3227,3163,3163,3163,3227,3164,3163,3164,3163,3163,3228,[4289,3229,9850],[4289,9946],10038,10039,[3228,9941],[3164,9845],3227,3164,3227,3228,3164,3228,3227,3163,3163,3227,3228,3163,3228,[3228,10230],[3163,10231],[3163,10133],[10037,9559],[3163,9652],[3164,9653],3163,3227,3227,3164,3163,3227,[4289,3037],4289,4289,[4289,3032],3164,3227,3227,3228,3163,3227,3164,[3164,9658],[3227,9659],[10042,9560],[3925,10138],[3412,10230],[3924,10231],[3926,10232],[3923,10233,9751],9940,9941,9942,9943,9845,0,0,0,0,9850,9946,10038,10039,9941,9845,0,0,0,0,0,0,0,0,0,0,9850,9942,9943,9946,10042,[3924,10043],[3411,9848],3989,3924,3413,[3924,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],9857,[4019,9858],[3568,9859],[3570,9860],[4017,9762],3953,3570,4018,3956,4017,4019,3955,3956,3956,4019,4019,4017,4017,3953,3506,3569,[3506,9476],[4017,9569],[4018,9570],3505,3506,3504,3569,3504,3954,4018,[3062,3827],3062,[3063,3826],[3063,3761],[3062,3762],[3063,3763],[3062,3764],[3063,3828],3062,3063,[3062,3890],3506,3954,3954,[4020,9671],[3955,9672],[4020,9669],3955,3442,4019,3570,4020,3956,3568,3955,4020,[3063,3762],[3063,3761],[3063,3764],[3063,3765],3063,3063,[3062,3760],[3063,3762],[3063,3763],[3062,3764],3956,3507,[3063,3828],3063,3063,[3063,3825],[3062,3761],[2999,3765],3062,3063,[3063,4080,9378],[3062,4085,9379],[3063,9380],[3062,9381],[3062,3952,9382],[4020,9383],3954,3505,3569,3506,[3953,9671],[3505,9672],[4017,9573],4020,4017,3568,4018,3954,3956,3506,3505,3956,3505,3504,4017,3953,[3506,9473],[3506,9474],3569,4018,[4018,9476],[4018,9569],[4020,9570],3506,4019,4019,4019,4018,3504,4017,3505,3954,4017,3504,3569,[3063,3761],[3062,3762],[3062,3763,9575],[3063,3764,9576],[9959,9477],[3062,9960],[2998,9765],[3062,3890],[3063,4082],[3063,4083],[3062,4084,9433],[4020,9434],[3446,9530],3448,3962,3577,4024,4024,3510,3447,4026,3578,3578,3512,4023,3959,3959,3578,3447,4026,[3448,9823],[3578,9919],10015,[409,10111],[2999,3835,293,10203],[3062,10204],[3062,4086],[3062,4087],3512,4026,4025,3704,3705,4024,3959,3577,3446,3574,3510,4023,[3577,9628],[409,9721],[409,9722],409,409,409,[2998,293],3063,3063,3063,[3063,3831],[3063,3767],3577,[3578,9628],[4026,9625],[4024,9626],4026,3447,3578,4026,[3447,9823],[4024,9919],9920,[2928,9725],2928,[2928,3248],3251,3252,3249,3252,[2928,3123],2928,[2928,9529],[3249,9530],3186,3251,3187,3250,3250,3188,3251,3249,3249,3187,3252,3252,[3250,10106],[10010,9532],[3252,9625],[3185,9626],3250,3252,3249,[2802,3253],2931,[2930,3056],3249,3186,3250,3188,3185,3250,3251,3250,[2930,3061],2931,[2931,2992],3186,3186,[3186,9823],[3188,9919],9920,[3188,9725],[2928,3189],2928,[2928,3056],[3250,9535],[3252,9536],3186,3249,3249,3252,[2928,2993],[2928,2997],2928,[2928,3312],3251,3185,[3250,9339],[3186,9342],[3186,9529],[3249,9530],3251,3251,3251,[2928,3061],2928,[2928,3122],3250,3186,3249,3187,[2928,2995,10106],[2928,2996,9721],[3187,9722],3187,3185,3185,3186,3250,3252,[3252,9727],[3249,9728],[3185,10111,9533],[3251,5682],[3187,5683],[3188,5684],3188,3185,3251,3185,3252,[2928,3317],2928,2928,2928,2928,[2928,3121],[2928,3313],[2928,3314,9658],[2928,3315,9659],[3925,9560],3475,3923,3989,3476,3926,3925,3926,3411,3926,3924,3989,3926,3602,3603,3924,3924,3476,3924,3924,3989,3926,3925,3987,3923,3923,3924,3987,[3989,9556],[3989,9557],3924,3924,3926,3926,3989,3538,[3209,3927],3210,3144,[3146,3859],3987,[3925,9559],[3924,9652],[3924,9653],[3210,4054],[3144,4055],3208,3210,[3145,3986],3987,3923,3987,3476,3924,3924,3925,3926,3925,3987,3412,3989,3923,[3989,9655],[3538,9652],[3987,9653],3926,3412,3926,3410,3923,3411,3926,3539,3987,[3923,9850],[3539,9946],9947,[3925,9752],3923,3987,3923,3924,3476,3989,3989,3987,3923,3926,3923,3926,3987,3412,3925,3540,3989,[3145,3991],3146,3145,[3145,3986],3989,3924,3924,3989,3926,[3926,10036],10037,10038,10039,10040,10041,10042,[3924,10134],[3926,10135],10037,[3164,9941],[3164,9845],3164,3227,3227,3228,3228,3164,3228,3228,3164,[3164,9850],[3163,9946],10042,[3926,10134],[3987,10135],10037,[3164,9941],[3164,9845],3163,3228,3164,3227,3228,3228,3228,3163,3228,3163,3228,3163,3163,3227,3227,[3228,10133,9655],[3228,9748],[3227,9749],3163,3227,3228,3164,3164,3163,[4289,3101],4289,4289,[4289,3096],3164,3163,3227,3228,3164,3227,3227,[3228,9850],[3164,9851],[3477,10138,9656],3923,3926,3923,3926,[3477,9847],[3924,10036],10037,10038,10039,9941,9942,9943,9944,9945,9946,10042,[3925,10134],[3925,10135],10037,9941,9942,9943,9944,9945,9845,0,0,0,0,9850,9946,10038,10039,10042,[3923,10138],3411,3540,3926,3987,3924,[3924,9655],9844,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9764],[415,9953],9954,9955,9956,[3505,9858],[3572,9762],3953,4019,4019,3954,3954,3954,4020,3956,4017,3954,3569,4019,3506,4020,4020,[3569,9572],[3504,9665],[3570,9666],3570,3506,4019,3569,3572,3568,4019,3506,[3062,3761],3955,4017,4018,4018,3505,3505,[3063,3761],[3063,3828],3062,[3062,4016],3954,4017,3504,[3570,9479],[3954,9383],[3506,9283],[4017,9286],3568,3956,3569,3953,3506,3569,3956,4017,4018,4017,[3063,3829],3063,[2999,3825],3506,3569,4017,3570,4019,3505,3953,[3062,3762],[2998,3764],3506,4019,4018,[3062,3828,9377],[3062,9378],[3063,9474],3062,3063,[3063,3825],[3569,9575],[3954,9576],[4017,9477],3954,3569,3955,[3953,9767],[4020,9768],[4017,9573],3569,3505,3506,3570,3956,3953,3506,3570,3955,3568,3506,3504,[3440,9476],[4018,9569],[3953,9570],3568,4020,[3953,9572],[3568,9665],[3956,9666],3504,4019,4017,4019,4017,4019,3504,3954,3954,4017,4020,3505,3956,3954,[4017,9671],[3954,9672],[4019,10055,9573],[3062,3761],[3062,3765],3062,3063,2999,[2999,9529],[3510,9530],3448,3578,3448,4023,3574,4024,4023,3577,4026,3446,4026,3577,3959,4025,3959,3574,4026,[4024,9631],[3448,9632],[10015,9533],[409,10111],409,[3062,3963,357],3063,3063,3062,[3063,3896],3446,3446,3446,4025,3511,3962,4025,4025,4023,3960,4024,[3446,9628],[3062,294,9817],[3062,294,9818],[3062,294],[3062,4086,294],[3063,3897,294],3062,[3062,3831,9823],[3063,3768,9915],[3063,3771,9916],[3063,3895,9818],3512,3578,[3578,9628],[4026,9721],[4025,9722],3447,3510,3447,[3447,9727],[3446,9728],[10015,9533],[2928,2994,10016],[2928,2996,9821],[2928,3060],[2928,3121],[2928,3313],3186,3249,[2928,3124],2928,[2928,9532],[2928,9721],[3252,9722],3188,3252,3188,3252,3188,3187,3250,3250,3185,3186,3188,3186,3186,[3185,10106,9628],[3187,9721],[3252,9722],3188,3188,3188,[2802,3061],2802,[2931,3184],3187,3186,3185,3185,3185,3250,3188,3249,[2930,3125],2930,[2930,3056],3252,[3188,9823],[3252,9919],10015,[3185,10016],[2928,3316,9821],[2928,3317],2928,[2928,3120],[3252,9631],[3249,9632],[3187,9533],3252,3250,3250,3251,[2928,3253],2928,2928,[2928,3122],[3185,9434],[3188,9435],[3252,9438],[3187,9530],3249,3186,3186,3187,[2928,3189],2928,2928,[2928,3248],3249,[3187,9339],[3188,9342],[3252,9434],[3188,9530],3188,3251,3251,3249,3185,3251,3250,[3252,9631],[3185,9632],[3251,9629],[3186,5778],[3187,5779],[3251,5780],3186,3187,3187,3250,[2928,3123],2928,2928,[2928,3057],[2928,2993],[2928,3060],2928,2928,[2928,9754],[2928,9755],[3987,9656],3475,3925,3989,3989,3924,3987,3987,3925,3989,3926,3923,3923,3666,3667,3926,3923,3989,3989,3925,3925,3410,3923,3926,3923,3923,3539,[3987,9461],[3925,9557],3987,3987,3987,3474,3539,3924,3987,3926,[3210,3797],3210,3209,[3208,4050],[3208,4053,9655],[3210,4054,9748],[3209,3862,9749],3145,3209,3208,[3208,3730],3924,3926,3925,3926,3926,3924,3987,3925,3923,3925,3924,3987,3477,3926,[3987,9655],[3923,9844],[3926,9845],3989,3987,3924,3987,3926,3924,3925,3923,[3987,9754],[3989,9755],10042,[3989,10043],[3987,9848],3987,3926,3926,3925,3539,3539,3924,3923,3923,3923,3926,3925,3925,3924,3925,3924,[3208,4054],[3209,4055],3210,[3210,3795],3926,3923,3926,3926,3474,3926,3989,[3989,10133],[3923,10134],[3987,10135],[3924,10136],[3924,10137],[3925,10138],[3410,10230],[3989,10231],[3987,10133],10037,[3164,9748],[3163,9749],3163,3163,3163,3228,3228,3163,3164,[3228,9658],[3227,9659],10042,[3923,10138],[3924,10230],[3926,10231],[3925,10133],10037,[3163,9652],[3228,9653],3164,3164,3164,3228,3227,3163,3227,3228,3227,3227,3164,3163,3163,3228,[3227,9655],[3227,9844],[3164,9845],3163,3227,3164,3227,3163,3164,[4289,3165],4289,[4289,9850],[4289,3160,9942],[3163,9943],[3164,9845],3163,3228,3228,3164,[3163,9850],[3228,9946],9947,[3989,9752],3926,3411,3926,3989,3924,3926,[3924,10133],[3476,10134],[3987,10135],10037,10038,10039,10040,10041,10042,[3925,10138],[3989,10230],[3475,10231],[3924,10133],10037,10038,10039,10040,10041,9941,9942,9943,9944,9945,9946,10042,[3476,10134],[3989,10135],[3987,10138],3926,3989,3474,3925,3924,3925,[3923,9751],9940,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10050],[415,10051],[415,10052],[9954,9476],[3568,9569],[3506,9570],3569,3955,4019,4019,3953,3956,4017,4017,3953,3569,3505,3570,3443,4017,[3569,9572],[3568,9761],[4019,9762],4020,3954,3953,3956,[3953,4174],[3506,4175],3507,3953,[4019,4178],[3954,4179],3955,3954,[3569,4182],4017,3571,3956,[3062,4021],2998,[3062,3889],3954,3505,3570,3953,[3507,9479],[3955,9379],[4017,9382],[3505,9383],3505,3568,3570,4018,4019,3504,3504,3505,3568,[3062,3893],3062,[2999,3824],3956,4020,[2998,4082],[3062,4083],[3062,4084],[3063,4081],[3062,4082],[3063,4083],[3062,4084],4020,3953,4020,[3569,9473],[3062,3765,9474],3062,[3063,3760],[3063,3761],3571,[3506,9671],[3953,9672],[4017,9573],3568,4017,[3505,9767],[4020,9863],9864,[3570,9669],3570,4017,4018,3504,3568,3956,3506,3956,3568,3956,3954,3954,[3570,9572],[3569,9665],[3569,9666],4017,3954,[4018,9572],[3956,9761],[3504,9762],3954,3953,3955,3505,3568,3570,3568,3504,3572,3569,4019,3568,3956,4019,[3954,9575],[4018,9576],[4020,9573],4017,[3063,3829],3063,3062,[3063,9532],[3511,9625],[3448,9626],3446,3510,4026,4024,4023,4023,4024,4024,4024,4023,3510,3510,[3063,4088],[3062,4089],[3063,4090],3510,3512,[4025,9727],[3512,9728],[409,10111,9629],409,409,[3959,421],[3062,3833],3063,3062,3063,[3063,3830],3448,4024,3578,3578,3577,3510,4025,3447,3511,3511,[3578,9724],9913,[3062,9914],[3063,9915],[3063,9916],[3063,9917],[3063,9918],[3063,4022,9919],10011,10012,[3063,9914],[3062,4086,9818],3447,[3576,9628],[4024,9817],[4023,9818],3961,3961,3959,[3577,9631],[3578,9632],[3186,10111,9629],3252,3187,[2928,3253],2928,2928,[2928,3312],[2928,3317],2928,[2928,3057],[2928,2993,9628],[3188,9817],[3252,9818],3252,3249,3250,3251,3185,3185,3186,3251,3187,3188,3186,3188,3187,[3186,9628],[3252,9625],[3185,9626],3250,3187,3252,[2931,3189],2866,[2931,3121],[2930,3313],3250,3251,3252,3252,3249,3250,3187,[2802,3189],2930,[2802,3120],[3250,9727],[3187,9728],[10015,9533],[3187,10111],[2928,3123],2928,2928,2928,[2928,3184],[3185,9727],[3249,9728],[3249,9629],3250,3251,3249,3249,3188,[2928,3059],2928,[2928,9529],[2928,3248,9530],3250,3186,3252,3250,3249,[3251,5485],[3186,5486],[3249,5487],[2928,3059,5488],[2928,5489],[2928,3122],[3249,9529],[3187,9435],[3250,9438],[3186,9530],3185,3252,3187,3188,3249,3250,3185,3188,[3252,9727],[3249,9728],[3252,9725],3185,[2928,3315],3187,3252,3188,3185,[2928,3124],2928,2928,[2928,3058],3187,3249,3249,[2928,2997],2928,[2928,3057,9658],[2928,2993,9659],[3926,9656],3987,3924,3926,3925,3925,3924,3926,3924,3925,3539,3926,3411,3926,3989,3987,3410,3924,3989,3926,3923,3987,3411,3989,3925,3926,[3989,9556],[3924,9557],3925,3987,3924,3923,3987,3923,3475,3925,3989,3989,[3145,3731],[3146,3731],[3145,3797],[3146,9655],[3146,9844],[3210,9845],[3209,3795],[3209,3732],[3208,3734],3987,3923,3925,3926,3538,3923,3926,3925,3989,3476,3925,3924,3923,3987,3989,[3924,9751],9940,[3925,9941],[3989,9942],[3923,9943],[3412,9944],[3410,9945],[3475,9845],3474,3923,3987,[3987,9850],[3924,9851],[3989,10138],3926,3923,3924,3987,3989,3989,3989,3924,3923,3925,3926,3474,3926,3924,3925,3926,3989,[3146,3799],3144,3145,[3210,3730],3412,3923,3923,3923,3987,3540,3987,3989,3926,[3989,10230],[3926,10231],[3925,10232],[3925,10233],3989,3925,3924,3923,[3987,10133],[3989,9844],[3164,9845],3164,3227,3228,3163,3163,3227,3163,[3228,9754],[3539,9755],[3923,10138],3987,3924,3412,3474,[3926,10133],[3925,9844],[3164,9845],3164,3163,[3228,9850],[3228,9942],[3163,9943],[3163,9845],3228,3163,3164,3163,3164,3163,3164,3163,[3163,9751],9940,[3228,9941],[3164,9942],[3227,9943],[3227,9944],[3228,9945],[3164,9942],[3228,9943],[4289,3229,9944],[4289,9945],[4289,9946],10038,10039,[3163,9941],[3227,9944],[3164,9945],[3163,9944],[3164,9945],[3164,9946],[10042,9560],[3926,10043],[3541,9848],3925,3412,3476,3539,3413,3987,3989,[3987,10230],[3989,10231],[3989,10133],[3925,10134],[3924,10135],[3411,10136],[3923,10137],[3989,10138],3411,3923,3477,3987,[3924,10133],[3926,10134],[3926,10135],[3924,10136],[3987,10137],10037,10038,10039,10040,10041,10042,[3926,10138],[3542,10230],[3539,10231],3475,3926,3540,3925,3474,3476,3924,[3410,9847],[3923,10036],[10037,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10147],[415,10148],[415,10050,9572],[3504,9665],[3570,9666],3504,3956,4017,3956,3441,4020,3954,4019,3953,3956,3955,4018,4018,4020,[4017,9668],9857,[3505,9858],[3953,9762],3505,4020,4020,[3506,4270],[4019,4271],3568,[3569,4273],[3505,4274],[4019,4275],[4019,4276],[4017,4277],[4018,4278],[3954,4279],3569,3569,3955,[3063,3765],3063,[3063,4080],4018,4017,4018,4019,4020,4018,[3569,9479],[3953,9480],3955,3569,3505,3505,4020,3955,4020,3954,[2998,3957],3063,[3063,3952],3506,[3062,3891],3062,3062,3062,3063,3062,3062,3063,[3063,3890],[3062,4082,9377],[3063,4083,9378],[3063,4084,9474],[3063,4085],3062,[3062,4016],3953,3570,[3570,9767],[3504,9768],[4017,9573],3568,[3570,9575],[3504,9576],[9959,9477],[415,9960],[3956,742,9765],[3953,742],[3953,678],[3953,558],3954,4018,3505,3570,3506,3570,3569,4017,4017,[3506,9572],[3505,9569],[4019,9570],3440,3505,[3504,9668],9857,[3506,9858],[3956,9762],3570,3504,3441,3504,3570,3956,3570,3569,3504,3569,3954,3955,4017,[3442,9671],[4020,9672],[3505,9669],3572,[3063,3957],3063,2998,[3063,9628],[3446,9721],[3448,9722],3511,3447,4024,3448,3959,3578,3578,3574,3962,3575,3577,[3063,4027],3062,3062,3063,[3063,3895],[3062,4088],[3062,4089,9823],[4090,9824],[409,9629],409,409,[3575,357],3446,[3062,3771],3063,3062,[3063,3958],4023,4026,3578,4025,3960,3574,3577,3575,3962,4024,[4026,9820],[3962,10009],10010,10011,10012,10013,10014,10015,[3510,10107],[3511,10108],10010,[2998,9817],[2999,4086,9818],[2998,4087,9724],9913,[3577,9914],[3577,9818],3574,3578,[3959,9727],[4025,9728],[3250,9725],3252,3187,3250,[2928,2993],[2928,2997],2928,2928,2928,[2928,3248],[3252,9724],9913,[3250,9914],[3187,9818],3252,3249,3251,3188,3251,3250,3251,3249,3249,[3251,9339],[3187,9340],[3186,9341],[3187,9724,9342],[3186,9721],[3251,9722],3251,3251,3252,3252,[2867,3059],2802,2930,[2802,3312],3185,3250,3187,3250,3185,3187,[2802,3253],2931,[2931,3184],[3251,9631],[3187,9632],[3187,10111,9629],[2928,3061],2928,2928,[2928,3058],[2928,2993],3249,[3187,9823],[3188,9824],[3250,9629],3187,3188,3249,3188,3250,3186,[2928,2997,9532],[2928,9625],[3187,9626],3188,3249,3186,3252,3185,[3250,5581],[3252,5582],[3188,5583],[2928,3253,5584],[2928,5585],[2928,9532],[2928,9625],[3252,9626],3185,3187,3252,3250,3186,3188,3188,3249,3251,3251,3251,[3187,9535],[3250,9536],[2928,3061,9339],[2928,9340],[2928,3312,9341],[3249,9342],3186,3251,2928,[2928,3057],[2928,2993],3252,3249,3187,3251,[2928,3124],2928,[2928,3248,9754],[3188,9755],[3540,9752],3926,3987,3926,3926,3923,3989,3987,3925,3924,3924,3923,[3539,9850],[3925,9942],[3924,9943],[3989,9944],[3989,9945],[3923,9845],3412,3926,3989,3924,3925,3539,3987,[3987,9559],[3926,9652],[3923,9653],3987,3925,3989,3923,3926,3925,3926,3411,3926,3925,3474,3989,[3146,3799],[3208,9751],9940,[3145,3731,9941],[3923,9845],3925,3925,3925,3924,3989,3926,3925,3987,3925,3987,3987,3987,3411,3925,3989,3924,3987,[3924,9847],[3924,10036],10037,10038,10039,10040,10041,[3926,9941],[3923,8981],[3989,8982],[3923,8983],[3989,9946],9947,3987,3412,3923,3412,3987,3926,3926,3925,3923,3989,3925,3924,3987,3924,3924,3476,3924,3924,[3208,3927],3209,3143,[3146,4050],3925,3926,3987,3926,3411,3926,3411,3923,3989,3925,3989,3925,3987,3924,3475,3924,3411,3474,9940,[3164,9941],[3227,9942],[3164,9943],[3228,9845],3227,3228,3164,3227,[3163,9850],[3924,9851],3476,3987,3924,3923,3926,3926,9940,[3164,9941],[3164,9942],[3164,9943],[3228,9946],10038,10039,[3163,9652],[3228,9653],3227,3163,3164,3163,3228,3163,3228,[3164,9847],[3163,10036],10037,10038,10039,10040,10041,10038,10039,10040,10041,10042,[4289,10134],[4289,10135],10037,10040,10041,10040,[10041,9658],[10042,9659],[3987,10138,9656],3924,3989,3923,3923,3475,3926,3923,3926,3926,3476,3476,3987,[3477,10230],[3540,10231],[3475,10232],[3540,10233],3542,3925,3923,3924,3539,3474,[3410,10230],[3989,10231],[3926,10232],[3411,10233],[3926,10133],[3925,10134],[3923,10135],[3925,10136],[3924,10137],[3989,10138],3989,3925,3475,3926,3925,3923,3539,3410,3474,3923,3923,3924,[3926,10133,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9377],[415,9378],[3505,9474],4018,4019,4018,3442,3956,4018,3953,3954,3954,4019,3955,3956,4018,3956,4018,[4020,9764],[4020,9953],9954,[4017,9858],[4020,9762],3504,[3956,4365],[3570,4366],[4018,4367],[3956,4368],[4018,4369],4370,[4019,4371],[3956,4372],[3504,4373],4374,[4020,4375],3506,3954,4017,[3062,4021],3062,3062,[3063,3889],3504,3506,3505,3634,3635,[4017,9671],[3954,9672],[3505,9477],3955,3505,3955,3953,3955,3569,4018,[3063,4021],3063,[3063,4080],[2998,4085],3063,[3062,3760],[3063,3761],[3063,3762],[3063,3763],[3063,3764],[3062,3828],3063,3062,[3062,9473],[3063,9474],3063,3062,[3063,3825],3569,4019,[3504,9767],[4018,9863],9864,[3956,9669],3953,[3506,9671],[3506,9672],[415,10055,9573],415,415,415,415,[3504,677],3572,3569,3506,3570,3956,3953,3954,3440,3954,[3570,9668],[3569,9665],[3505,9666],4017,3570,[3956,9764],[3568,9953],[9954,9476],[4017,9569],[3954,9570],3954,3954,4017,3504,3504,3955,4020,4017,3570,3954,4019,4019,4018,[3955,9479],[4018,9383],[3063,4081],[3063,4085],3062,3063,[3063,9628],[3447,9817],[3447,9818],3446,3447,3446,3511,3448,4026,3574,3577,3512,3962,3448,4025,[3063,3768],[3062,3770],[3062,3771],3063,[3062,9823],[3062,9919],9920,[409,9725],409,409,[4026,421],3510,4026,[3062,3833],3063,[3063,3896],4025,3961,3448,3446,4023,3512,4025,4025,4025,4026,3510,3513,[4023,10106],[3960,10107],[4026,10108],[4026,10109],[4026,10110],[4024,10111],[3446,10203],[3961,10204],[3449,10106],[9913,9532],[2998,9721],[2998,3831,9722,9820],[3575,10009],[10010,9532],[3446,9625],[3961,9626],3447,4026,[4024,9535],[3249,9439],3185,3249,3186,3187,3185,[2928,2994],[2928,2995],[2928,2996],3249,[3251,9820],[3251,10009],10010,[3187,9914],[3187,9818],3187,3188,3187,3188,[2928,3313],[2928,3314],[2928,3315],[2928,3316,9529],[2928,3313,9435],[3251,9436],[3187,9437],[3249,9438],[3187,9530],3186,3185,3186,3187,3251,[2930,3253],2802,2866,2802,[2930,3121],3252,3251,3252,3186,3186,[2802,3317],2867,[2931,3248],[3251,9727],[3251,9728],[3188,9725],[2928,3125],2928,[2928,2992],3251,3252,[3188,9823],[3249,9919],9920,[3186,9725],3249,3186,3250,3251,3249,[3186,9339],[3251,9724,9342],[3251,9721],[3251,9722],3187,3187,3188,3252,3186,[3250,5677],[3252,5678],[3250,5679],[3188,5680],[2928,3059,5681],[2928,9628],[2928,9721],[3185,9722],3251,3188,3187,3186,3252,3250,3186,3186,3249,3188,3249,3249,[3252,9535],[2928,3189,9435],[2928,9436],[2928,9437],[2928,3122,9438],[3188,9439],3185,3252,3188,3251,3251,3251,3252,[2928,3253],2928,[2928,3057],[3249,5490],[3186,9562,5491],[3926,9466,5492],3989,3925,3924,3925,3474,3926,3926,3987,[3989,9850],[3926,9942],[3925,9943],[3925,9946],10038,10039,10040,10041,[3923,9941],[3923,9845],3476,3989,3987,3924,3540,3926,[3924,9655],[3926,9748],[3926,9749],3411,3925,3926,3411,3987,3989,3923,3923,3923,3923,3923,3540,[3210,3863],[3209,9847],[3209,4050,10036],10037,[3924,9941],[3539,9942],[3987,9943],[3475,9845],3539,3923,3926,3989,3475,3989,3987,3925,3926,3987,3923,3923,3923,3923,3925,3926,[3924,10133],[3923,10134],[3411,10135],[3926,10136],[3926,10137],10037,9077,9078,9079,10042,[3987,10043],3987,3923,3923,3987,3926,3923,3926,3924,3925,3412,3925,3923,3989,3925,3925,3924,3925,3923,3924,[3210,3797],3209,3210,[3143,4050],3476,3989,3925,3987,3924,3925,3923,3987,3925,3989,3924,3987,3925,3923,3924,3987,3924,[3989,10036],10037,10038,10039,[3163,9941],[3163,9942],[3164,9943],[3228,9944],[3163,9945],[3163,9946],9947,3924,3924,3925,3987,3925,3926,[3924,10036],10037,10038,10039,10042,[3926,10134],[3925,10135],[3227,9748],[3164,9749],3164,3163,3163,3228,3228,3227,3227,3228,3228,[3228,10133],[3227,10134],[3164,10135],[3164,10136],[4289,3165,10137],[4289,10134],[4289,3032,10135],[3227,10136],[3164,10137],[4289,3035,10138],[4289,10230],[4289,10231],[4289,10133],[4289,10136],[4289,10137],[4289,10136],[4289,10137,9754],[4289,10138,9755],[3989,9656],3923,3410,3989,3924,3410,3926,3989,3411,3541,3477,3925,3476,3540,3475,3926,3989,3925,3412,3925,3987,3410,3476,3924,3540,3541,3539,3475,[3926,10230],[3541,10231],[3987,10232],[3924,10233],3989,3540,3923,3924,3924,3987,3540,3474,3540,3987,3412,3989,3923,[3925,9751],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[4017,9474],3505,3504,4020,3956,3956,3953,3953,3955,4020,3956,3955,3953,4018,4020,4020,4019,4018,3954,[3568,10050],[9954,9476],[4017,9569],[4018,9570],[3570,4461],4462,4463,4464,4465,4466,4467,4468,4469,4470,[3505,4471],4019,3953,3570,3570,[2998,3765],3063,3063,[3063,3824],3955,4018,3698,3699,[3953,9767],[4019,9768],[3506,9573],3954,3505,4018,3956,3570,3954,4019,[3062,3829],3062,3063,3062,3062,[3063,4016],4020,3506,3568,3955,4019,[3062,3762],[3062,3763,9476],[3063,3764,9569],[3062,3827,9570],3063,3062,[3062,3824],4017,[3568,9575],[3953,9576],[9959,9477],[3504,9960],[4019,9765],3569,[4017,9575],[3956,9576],[415,9573],415,415,415,415,[4020,741],[3568,742],[3570,678],[4020,558],4020,4018,3505,4020,4020,[4020,9377],[3955,9378],[4019,9474],4019,4018,4018,3504,3954,[3570,10050,9572],[3568,9665],[3440,9666],3505,3953,4019,4017,3504,4020,3956,3504,3954,[3063,4081],[3063,4082],[3062,4083],[3063,4084],[3062,4084],[4017,9479],[3062,9480],3062,[3062,3825],[3063,3761],[3063,3827,9724],9913,[3956,9914],[3574,9915],[4025,9916],[3577,9818],4024,3576,3574,3960,4024,4024,3448,3446,3446,4024,3447,3577,[3063,3768,9727],[3062,3769,9728],[10015,9533],[409,10016],[409,9821],409,[3577,293],3448,3446,3577,3960,[3063,3834],3062,[3063,4086],3959,3512,4023,3448,3960,3962,3510,4023,3446,4025,3448,3962,[3961,10203],[4026,10204],[4024,10205],[3962,10206],4023,4025,3447,3575,[4025,10009,9628],[2998,9625],[3063,3958,9626],3512,[3575,10106,9628],[3962,9721],[3447,9722],3511,4025,3511,[3446,9535],[3186,9536],3251,3249,3186,3187,3186,3186,3251,3186,3249,3186,[3250,10106],10010,[3186,9625],[3188,9626],[2928,3315],[2928,3316],[2928,3123],2928,2928,[2928,9532],[2928,9625],[3185,9626],3186,3251,3251,[2803,3314],3187,3249,3188,3249,3250,3188,[2930,2993],[2931,2997],2802,2931,[2802,3248],3188,3250,3249,[2931,3123],2931,[2802,3057],3252,3251,[3252,9535],[3185,9439],[2928,3189],2928,[2928,3056],3188,[3185,9823],[3186,9919],10015,[3252,10016],[3252,9821],3188,3186,3187,3251,[3251,9434],[3250,9435],[3252,9438],[3186,9530,5485],[3252,5486],[3249,5487],[3185,5488],[3252,5489],3251,3250,[3252,5773],[3250,5774],[3251,5775],[3185,5776],[3185,5777],[2928,2993,9628],[2994,9817],[3251,9818],3252,3249,3252,3249,3249,3249,3249,3185,3252,3252,3252,3251,3185,3187,[2928,3059],2928,2928,[2928,3056,9535],[3251,9536],3188,3249,3249,3249,3252,3251,[2928,3317],2928,[2928,3056],[3187,5586],[3249,5587],[3187,9562,5588],[3924,9563],3923,3989,3987,3924,3989,3926,[3926,9850],[3924,9946],10038,10039,10042,[3926,10134],[3989,10135],[3410,10136],[3924,10137],10037,[3923,9652],[3476,9653],3987,3924,3923,3924,3987,[3923,9655],[3540,9652],[3926,9653],3923,3926,3987,3923,3925,3989,3923,3924,3989,3926,3923,3987,[3209,3927],3145,3208,[3210,10133],10037,10038,10039,[3989,9941],[3989,9845],3924,3987,3923,3412,3476,3989,3923,3925,3924,3924,3989,3924,3924,3987,3989,3924,[3925,10230],[3925,10231],[3989,10232],[3987,10233],[3925,10133],9173,[3925,9174],9175,[3925,10138],3987,3924,3989,3924,3411,3989,3923,3925,3987,3539,3410,3923,3923,3924,3926,3412,3989,3538,3923,3926,3987,[3145,3735],3146,3208,[3146,3986],3923,3410,3476,3926,3411,3989,3540,3923,3926,3925,3926,3410,3989,3925,3924,3926,3925,[3987,10133],[3925,10134],[3926,10135],10037,10038,10039,10040,10041,10042,[3474,10043],3925,3923,3926,3926,3987,3926,3411,[3989,10133],[3926,10134],[3987,10135],[3987,10138],[3924,10230],[3987,10231],[3227,9748],[3164,9749],3163,3163,3227,3164,3227,3228,3228,3164,3227,3227,[3163,10230],[3164,10231],[3227,10232],[4289,3229,10233],[4289,10230],[4289,3096,10231],[3227,10232],[3164,10233],3225,[4289,2969],[4289,3035],4289,[4289,10232],[4289,10233],[4289,3034,10232],[4289,3035,10233],[4289,9659],[3411,9656],3475,3926,3538,3923,3538,3989,3410,3538,3475,3925,3989,3989,3925,3539,3923,3987,3987,3987,3926,3476,3923,3474,3989,3476,3540,3541,3989,3540,3925,3924,3924,3477,3987,3923,3925,3475,3925,3989,3989,3475,3926,3924,3410,3924,[3989,9461],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9476],[4018,9569],[4020,9570],3570,4019,3504,4020,3953,3954,4017,3953,3954,4017,3955,3954,3956,3954,4020,4018,3955,3955,4020,[3569,10050,9572],[4018,9665],[4018,9666],[3568,4557],4558,4559,4560,4561,4562,4563,4564,4565,4566,[3569,4567],4018,4020,3504,3569,3505,[3062,3828],3062,[3062,3888],3506,3506,3956,[3504,9767],[3442,9863],9864,[4017,9669],3568,4019,3505,3568,3504,3505,4020,[3063,3893],3063,[2998,3760],[3062,3762],[3063,3764],3505,3570,4019,4017,3504,3956,3504,[3953,9572],[3063,4083,9665],[4017,9666],[3063,3765],3062,[3063,3952],4019,[3954,9671],[3955,9672],[3504,10055,9573],3572,3954,3570,[4019,9671],[3568,9672],[415,9669],415,415,415,417,415,415,415,[4017,741],[3956,742],[3954,742],[4018,742],[3506,742],[3505,678],[3954,558,9473],[3504,9474],3506,3506,3505,3569,4020,3570,[3953,9572],[3954,9569],[3506,9570],3504,3572,4018,3569,3955,4017,3570,3954,[3062,4085],3063,3062,2998,3063,3062,[3063,3890,9575],[4017,9576],[2998,3761,9477],3953,4019,[3570,9820],[3063,3761,10009],10010,10011,10012,[3511,9914],[4023,9818],3959,3511,3448,3962,4024,3511,4025,4023,3447,3578,4026,[3446,9631],[3576,9632],[409,10111,9629],409,[3063,293],[3062,294],[3062,3895],[3063,4088],[3063,4089],[3063,4090],4026,[3062,4027],3062,2999,[3063,3895],3574,3959,3446,3961,[4024,429],[3577,486],[4023,486],[4025,486],[3446,422],[3962,430],4023,4026,3959,3962,3447,4025,4025,3512,[3511,9339],[3578,9724,9342],[2999,9721],[3063,4022,9722],[3578,9433],[3959,9434],[3577,9530],3576,3510,3576,3578,[3448,9631],[3578,9632],[3249,9533],3252,3251,3252,3250,3249,3250,3249,3188,3188,3185,[3251,10106,9532],[3252,9721],[2928,3123,9722],2928,2928,[2928,3058],[2928,2993],[2928,2994],[2928,2995,9628],[2996,9721],[3252,9722],3252,3188,[2930,3061],2930,[2866,3312],3185,3252,3186,3249,3250,3186,[2931,3317],2931,2930,[2802,3312],[2802,3313],[2930,3316],[2802,3317],2930,2931,[2930,3248],3250,3188,3187,[3187,9535],[2928,3253,9536],2928,[2928,3120],[3186,9727],[3250,9728],[10015,9533],[3250,10111],3185,3185,3251,3185,3188,[3250,9529],[3252,9530],3250,3251,[3251,5581],[3185,5582],[3186,5583],[3185,5584],[3252,5585],3188,3186,[3250,5869],[3249,5870],[3185,5871],[3252,5872],[3251,5873],[3252,9724],9913,[3188,9914],[3252,9818],3249,3185,3187,3252,3188,3186,3187,3252,3249,3186,3187,3188,3185,3188,[2928,2997],2928,[2928,3184,9631],[3185,9632],[3252,9533],3186,3249,3186,3186,[2928,3061],2928,2928,[2928,3120],[3252,5682],[3252,5683],[3252,9658,5684],[3249,9659],[3538,9560],3989,3926,3989,3925,[3476,9850],[3987,9946],10042,[3924,10134],[3923,10135],[3925,10138],[3538,10230],[3925,10231],[3924,10232],[3410,10233],[3926,10133],[3926,9748],[3926,9749],3926,3926,3925,3925,3924,[3926,9655],[3924,9652],[3923,9653],3926,3987,3989,3987,3924,3926,3923,3925,3475,3925,3925,3989,3925,[3144,3732],[3146,3733],[3146,3734],[3209,3797,423,10133],[409,10134],[409,10135],[10037,9559],[3926,9652],[3476,9653],3411,3987,3924,3987,3926,3924,3539,3926,3987,3989,3924,3926,3923,3476,3987,3923,3925,3924,3923,3606,3607,3989,3924,3926,3989,3923,3987,3987,3989,3926,[3145,4054],3923,3924,3923,3987,3989,3539,3924,3411,3925,3925,3925,3989,3923,3989,[3146,3799],3208,[3208,3795],3926,3923,3925,3924,3925,3925,3923,3924,3924,3925,3923,3923,3924,3926,3925,3925,3925,3923,3924,[3989,10230],[3923,10231],[3540,10133],[3926,10134],[3989,10135],[3926,10136],[3924,10137],[3926,10138],3924,3926,3412,3923,3989,3539,3987,3987,3924,3924,3926,3926,3925,3926,[3164,9748],[3228,9749],3228,3227,3164,3163,3164,3227,3227,3227,3228,3227,3161,[4289,3289],[4289,3290],[4289,3099],4289,[4289,3160],3227,3164,3227,3227,3225,[4289,2970],[4289,2971],[4289,2972],3226,[3225,9754],[4289,2969,9755],[3926,9752],3925,3538,3411,3541,3926,3924,3924,3923,3989,3924,3987,3475,3926,3924,3989,3925,3923,3923,3925,3923,3987,3540,3541,3989,3989,3987,3989,3987,3989,3926,3989,3987,3476,3924,3987,3538,3926,3926,3987,3476,3538,3923,3987,[3989,9556],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3569,9665],[3953,9666],4018,3954,3506,4020,3954,4019,3953,3954,3956,4017,4020,3955,3954,3956,4018,3954,3956,4019,4020,[3953,9572],[3504,9569],[3568,9570],[3954,4653],4654,4655,4656,4657,4658,4659,4660,4661,4662,[3506,4663],3569,3955,3505,3504,3570,[3063,3829],3063,[3062,3952],3506,4019,[3570,9767],[4017,9863],9959,[4018,9960],[4017,9765],3954,4020,3505,3505,3955,4020,4018,[3063,3957],3063,[2998,4080],3505,3505,3954,3506,3506,3955,3569,4020,4019,[3062,4085,9572],[3062,9761],[3063,3890,9762],[3062,3892],3062,[3063,4080],[3062,4081],3955,[4019,9479],[3505,9480],[3570,9283],[3505,9286],3505,3568,[4020,9479],[415,9480],415,415,415,415,415,415,415,415,415,415,415,416,[415,9476],[4020,9569],[4020,9570],3955,4019,3570,3506,4019,3568,[3954,9668],[3568,9665],[3570,9666],3506,3570,3955,3506,3954,3954,3956,[3063,3891],3062,3063,[3063,3760],[3063,3761],[3062,3762],[3063,3763],[3063,3764,9671],[3504,9672],[3504,9573],3569,3568,3569,4017,[3956,10106],[4019,10107],[4019,10108],10010,[3960,9721],[4024,9626],3512,3962,3578,3574,3510,4025,3578,4025,4023,3962,[3446,9727],[4025,9728],[409,9725],289,[3062,3833,357],2998,3063,3062,3063,3063,[3063,4022],3447,[3062,3833],3063,2998,[3063,4022],[3510,429],[3578,358],[3578,486],[4025,487],409,[3962,293],[3448,295,9339],[409,9340],[4025,357,9341],[3961,9342],3962,4026,3962,3577,4025,[3961,9433],[4025,9434],[3063,9435],[3062,9438],[2999,3831,9530],4024,[3574,9529],[3448,9530],3574,3959,3510,3576,3960,[3448,9727],[4023,9728],[3251,9629],3188,3252,3187,3251,3188,3187,3252,3187,3188,3252,[3250,9628],[2928,3061,9817],[2928,9818],2928,[2928,3057],3185,3188,3249,[3188,9628],[3188,9817],[3250,9818],3188,3249,[2931,3189],2802,2930,[2930,3121],[2930,3313],[2802,3314],[2866,3315],[2930,3316],[2930,3123],2930,2867,2867,2866,2930,2930,2931,[2930,2992],[2802,2993],3249,3188,3250,3188,3252,[3250,9535],[2928,9536],[2928,3184],[3251,9631],[3186,9632],[3251,10111,9629],3250,3187,3185,3186,3251,[3249,9532],[3187,9625],[3186,9626],3250,3186,[3187,5677],[3252,5678],[3252,5679],[3187,5680],[3251,5681],3249,3251,3252,[3188,5966],[3249,5967],[3187,5968],3185,[3186,9820],[3186,10009],10010,[3188,9914],[3185,9818],[2928,3314],[2928,3315],[2928,3316],[2928,3123],[2928,3056],3252,3187,3187,3252,3250,3188,3252,3252,[2928,3253],2928,[2928,3121,9727],[3252,9728],[3185,9629],3251,[3186,5485],[3252,5486],[3187,5487],[2928,3189,5488],[2928,5489],2928,[2928,3184],[3186,5778],[3252,5779],[3251,9754,5780],[3252,9755],[3925,9656],3475,3923,3474,[3987,9658],[3924,9659],[10042,9560],[3925,10138],[3926,10230],[3925,10231],3926,3923,3989,3989,3923,[3987,9461],[3987,9557],3476,3989,3924,3924,3476,3924,[3540,9751],[3989,9748],[3923,9749],3924,3987,3987,3925,3987,3540,3410,3989,3989,3475,3987,3989,3924,3924,3925,3987,[3540,423],[409,10230],[409,10231],[409,10133,9655],[3924,9748],[3925,9749],3925,3925,3539,3926,3926,3411,3989,3987,3987,3987,3925,3923,3987,3923,3989,3476,3925,3538,3926,3670,3671,3923,3926,3925,3925,3923,3411,3989,3925,[3208,3799],3210,[3208,3859],3925,3411,3989,3923,3926,3924,3989,3411,3924,3924,3989,3923,3924,[3208,3927],3146,[3146,3986],3924,3989,3925,3924,3923,3923,3924,3923,3989,3924,3923,3989,3926,3989,3987,3924,3923,3923,3923,3989,3924,3924,[3540,10230],[3926,10231],[3989,10232],[3987,10233],3923,3926,3925,3410,3989,3926,3538,3476,3924,3923,3925,3987,3539,3987,3989,[3164,9844],[3163,9845],3228,3227,3164,3228,[3163,9850],[3163,9845],3227,3161,[4289,3289],[4289,3290],[4289,3099],4289,4289,4289,[4289,3034],3226,3227,3228,3164,3164,3164,3228,3228,3228,3164,3228,[3163,9562],[3989,9563],3474,3987,3923,3925,3475,3476,3477,3923,3989,3539,3410,3925,3538,3926,3410,3542,3477,3924,3989,3923,3476,3924,3989,3475,3476,3476,3412,3923,3539,3410,3410,3923,3926,3412,3475,3542,3989,3987,3475,3477,3540,3925,[3924,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3569,9569],[3569,9570],4020,3954,3506,4017,3954,4017,4019,3953,4020,3953,3956,3956,3955,4020,3956,3955,3955,3506,3956,[3505,9572],[3572,9665],[3568,9666],[3955,4749],4750,4751,4752,4753,4754,4755,4756,4757,4758,[3954,4759],3568,3568,3504,3955,3956,[3062,3893],3062,[3062,4080],3953,[3956,9575],[4018,9576],[9959,9477],[3062,3889,10055],[3062,4083],[2999,4084],3954,3955,3954,3505,3568,3570,[3955,9283],[3063,4021,9284],[3063,9285],[3063,9286],[3062,3890],3504,3570,4018,4019,3504,4020,[3062,4083],[3062,3891],[3062,9668],9857,[3062,9858],[3062,9859],[3062,9860],[3062,9860],[3063,9762],[3062,3889],[3063,4081],[3506,9479],[4018,9379],[4019,9382],[3506,9383],4019,4017,[3955,9479],[415,9480],415,415,415,415,415,416,[3953,549],[3506,550],[3570,550],[3506,550],[3953,550],[4020,550,9572],[3506,9665],[3955,9666],3505,3569,3953,3956,3506,[3954,9377],[3568,9378],[4019,9474],3956,3570,3505,4018,3505,3505,3956,[3062,3829],3063,3063,2998,[3063,3890],4020,3506,4018,[4018,9767],[3955,9768],[3505,9573],3504,3568,4019,3569,4020,[3954,10203],[3955,10204],[3954,10106],[3512,9721],[3449,9722],3446,3962,4023,3577,3574,4026,3448,3960,4025,3962,3447,[3577,9535],[409,9536],409,[3959,421],[3062,3767],[3062,3833],3063,[3063,3766],[3063,3833],[3063,4086],3511,3446,[3063,3771],3062,[3063,3895],[3063,4088,359],409,409,[4024,293],[3962,294,9433],[3062,4090,9434],[3062,9435],[3062,9436],[3063,9437],[3062,3766,9438],[4026,9439],[3447,9339],[4024,9340],[3448,9341],[3447,9342],[4025,9529],[3062,9530],[3062,3832],[3063,3767],3961,[3448,9532],[3511,9625],[3448,9626],3574,3446,4024,3577,3446,[3446,9823],[3577,9824],[3249,9629],3251,3251,3188,3251,3185,3188,3249,3252,3250,3187,[3251,9724],9913,[2928,9914],[2928,2993,9818],3187,3188,3186,3249,[3186,9724],9913,[3186,9914],[3186,9818],3188,3250,[2930,3059],2930,2803,2930,2930,2930,2931,2802,2930,2802,2931,2931,2931,2931,2930,[2802,3056],3252,3185,3186,3187,3187,3251,[3185,9631],[3187,9632],[3251,9533],[3249,9727],[3252,9728],[3188,9725],3252,3249,3250,3249,3251,[3251,9628],[3185,9721],[2928,3316,9722],3251,3249,[3186,5773],[3185,5774],[3188,5775],[3185,5776],[3188,5777],3186,3185,3249,[2928,3313],[2928,3314],[2928,3315],[2928,3316],3250,3185,[3252,10106],10010,[2928,3123,9625],[2928,9626],2928,2928,2928,[2928,3184],3188,3186,3249,3249,3252,3252,3187,3252,[3249,9823],[2928,3059,9915],[2928,9916],[2928,3248,9824],[3188,9629],3249,[3252,5581],[3185,5582],[3187,5583],[3251,5584],[2928,2997,5585],2928,[2928,3248],[3185,9850],[3188,9944],[3251,9945],[3186,9851],[3925,9656],3926,3925,3926,[3925,9754],[3925,9755],[3540,10138,9656],3987,3989,3923,3925,3412,3926,3412,[3540,9556],[3474,9557],3924,3987,3926,3926,3476,3925,[3926,9460],[3924,9461],[3923,9557],3987,3474,3989,3989,3923,3989,3410,3924,3926,3412,3926,3923,3924,3925,3926,3924,3474,[3926,359],409,409,[409,9655],[3476,9652],[3924,9653],3987,3989,3926,3989,3476,3923,3924,3925,3989,3475,3987,3987,3538,3926,3410,3475,3925,3987,3923,3924,3924,3926,3987,3923,3925,3476,3987,3925,3926,[3145,3927],3145,3208,[3208,3794],3926,3412,3987,3923,3923,3925,3989,3989,3923,3923,3989,[3145,4054],[3210,4055],[3146,3730],3924,3474,3924,3925,3476,3987,3475,3923,3989,3923,3925,3476,3926,3987,3923,3538,3925,3987,3924,3923,3923,3540,3924,3989,3924,3926,3475,3923,3987,3987,3923,3987,3924,3989,3989,3925,3926,3926,3987,3925,3923,3925,9940,[3163,9941],[3228,9942],[3164,9943],[3228,9944],[3164,9945],[3164,9946],[3164,9941],[3161,9845],[4289,3099],4289,4289,4289,4289,[4289,3034],[4289,2969],3226,3163,3227,3227,3164,3164,3228,3163,3164,3163,3228,3227,[3164,9658],[3163,9659],[3923,9560],3925,3476,3923,3538,3987,3923,3926,3410,3604,3605,3925,3476,3923,3926,3925,3410,3989,3538,3925,3924,3410,3989,3539,3539,3926,3926,3476,3476,3989,3410,3989,3923,3539,3923,3412,3538,3538,3926,3926,3413,3538,[3476,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],[3504,9665],[4018,9666],3954,3506,3955,3955,3955,4018,4020,3955,3955,4017,3955,3953,4017,3955,3954,3955,3953,3953,4018,[3505,9572],[4020,9569],[3953,9570],[3955,4845],4846,4847,4848,4849,4850,4851,4852,4853,4854,[3505,4855],3505,3955,3504,3504,3568,[3062,3957],3062,3062,[3062,4016],[3955,9671],[4018,9672],[2998,10055,9669],3063,2999,2998,[2999,4016],3571,3440,[3953,9283],[4017,9286],[3953,9378],[3506,9379],[3954,9380],[3504,9381],[3569,9382],[3063,9383],[3063,3889],3569,3505,3953,3954,[3063,3891],3062,3062,[2999,3825,9764],[3062,3762,9953],9954,9955,9956,9956,[3062,9858],[3063,9762],3062,[3063,4080],[3063,4083],[4018,9575],[4018,9576],[3570,9477],3954,3953,[3506,9479],[415,9480],[3570,549],[3506,550],[4020,550],[3570,550],[3953,550],4019,3569,3505,3505,3955,[3956,9572],[3568,9569],[3570,9570],3569,4020,4018,3954,4017,[4018,9473],[4020,9474],4019,3440,4017,3953,3568,3569,3570,4017,[3063,3893],3062,3062,3062,[3062,3825],[4018,9767],[3953,9861],[3506,9862],[3505,9863],9864,[4017,9669],3572,3955,4020,3505,3955,4018,4017,[3956,9434],[4023,9530],3961,4025,4024,3578,4024,3446,3511,3574,3577,3575,4025,3448,3447,[3448,9535],[409,9439],[4024,357],3961,3962,[3062,3767],3577,[2998,4027],3063,[3062,3896],[3062,4090],[3062,4091],3062,3062,[3063,423],409,409,[3959,421],[3961,9529],[3062,9530],3062,3062,[3062,3831],3446,[4026,9535],[4023,9435],[3062,3833,9436],[3062,9437],[3063,9438],[2999,9530],2999,[2998,4022],4025,3962,[3578,9628],[4023,9721],[3959,9722],3574,4023,3960,4024,[4024,9823],[4026,9919],9920,[3185,9725],3252,3187,3185,3185,3186,3251,3187,3187,3187,3249,[3249,9820],[3251,10009],10010,[3250,9914],[3187,9818],3252,3252,3250,[3188,9820],[3187,10009],10010,[3252,9914],[3187,9818],3187,3187,[2931,2993],[2802,2994],[2931,2995],[2802,2996],[2931,3059],2930,2802,2802,2930,2931,2867,2931,2931,2802,[2930,3184],3185,3188,3250,3185,3251,3186,[3188,9823],[3188,9824],[3251,9629],3252,[3186,9535],[3186,9439],3252,3251,3250,3185,3188,[3250,9628],[2928,3253,9817],[2928,9915],[2928,9916],[3185,9818],[3188,5869],[3185,5870],[3188,5871],[3250,5872],[3185,5873],3251,3186,[2928,3253],2928,2928,2928,2928,[2928,3122],3188,3249,[3186,10106],[2928,9721],[2928,3057,9722],[2928,2994],[2928,2995],[2928,2996],3251,3188,3188,3186,3188,3251,3188,3187,[3188,9823],[3251,9919],10011,10012,9920,[2928,3316,9725],3252,[3186,5677],[3252,5678],[3251,5679],[3251,5680],[2928,3253,5681],2928,[2928,3121,9850],[3250,9946],10040,10041,9947,[3926,9752],3989,3924,3987,[3476,9658],[3987,9659],[3987,9656],3923,3925,3924,3923,3925,3924,[3989,9559],[3989,9652],[3412,9653],3602,3603,3924,3925,3989,3475,[3989,9556],[3924,9557],3411,3926,3924,3923,3923,3924,3925,3924,3989,3989,3924,3923,3989,3923,3923,3924,3926,3925,[3474,423],409,409,[409,9655],[3146,3986,9748],[3925,9749],3924,3924,3926,3924,3987,3923,3540,3989,3926,3987,3926,3989,3926,3540,3989,3539,3924,3989,3989,3474,3989,3926,3925,3925,3987,3923,3923,3926,3410,3926,[3210,3735],3146,[3210,3858],3925,3987,3923,3926,3925,3925,3475,3926,3926,3987,[3144,3799],3210,3145,[3207,3794],3923,3989,3987,3989,3987,3606,3607,3926,3989,3925,3926,3925,3412,3925,3987,3924,3925,3412,3989,3987,3925,3989,3924,3923,3923,3923,3989,3923,3989,3987,3923,3987,3987,3924,3538,3926,3604,3605,3540,3987,3989,3924,[3538,10036],10037,10038,10039,10040,10041,10042,10037,[4289,3229,9941],[4289,3034,9845],[4289,2969],[4289,2970],[4289,2971],[4289,2972],3226,3164,3163,3164,3228,3228,3228,3163,3228,3228,3163,3227,3228,3163,[3228,9658],[3227,9659],[3540,9656],3924,3542,3538,3476,3540,3538,3411,3989,3668,3669,3989,3923,3412,3539,3926,3924,3924,3924,3474,3924,3475,3925,3987,3413,3923,3923,3987,3923,3475,3412,3989,3987,3413,3987,3476,3924,3989,3926,3923,3924,3474,[3538,9655],9844,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9377],[415,9378],[3506,9474],4017,3506,3568,3570,4019,3953,3954,3955,3571,4020,4020,3572,4017,3955,4019,3953,3956,4019,4018,3568,[4020,9572],[4017,9665],[3953,9666],[3440,4941],[3955,4942],4943,4944,4945,4946,4947,4948,4949,4950,[3953,4951],3505,3954,3956,3570,3507,[3062,4021],3063,[3063,3825],3955,4017,[4020,9479],[2999,9480],2999,2999,3062,[2998,3890],[3063,4084],[3956,9378],[3505,9379],[3569,9382],[3955,9474],3955,3955,3440,4020,[3506,9479],[3063,9480],[3063,4016],3954,[3063,4084],[3063,4085],3063,[3063,3760],[3063,3761],3568,3956,[3504,557,10050],[415,10051],[415,10052],[415,10052],[9954,9476],[3063,3765,9665],[3063,9666],3063,3062,[3062,3889,9671],[4020,9672],[3953,9573],3953,3572,[3062,3891],[3062,9479],[3063,4016,9480],3506,3956,3569,3956,3955,3569,3953,3570,3568,[4018,9668],[3956,9665],[3506,9666],3954,3956,3570,3954,[4019,9476],[3954,9569],[3953,9570],3505,3505,3570,4020,3569,3568,4019,3504,[3062,3957],3062,[3063,3825],[3062,3761],[3568,9767],[3442,9863],9957,9958,9959,[3953,9960],[3954,9765],4020,4020,4018,3956,3504,3504,[4019,9532],[3960,9625],[3574,9626],3448,3574,3447,4023,3448,3447,3448,3512,4025,3578,3577,3961,3448,3574,[4023,9535],[4026,421,9536],3510,3577,3577,4024,3446,[3062,3833],[3063,9339],[3063,9340],[3063,429,9341],[3062,3766,358,9342],[3063,3833,486],[3063,487],409,[3961,293],[3960,9532],[3063,3831,9625],[3062,3767,9626],[3062,3768],[3062,3770],4026,3512,3578,4025,4025,[3062,3767],[2998,3768],[2999,3769],[2998,3770],3961,4024,4025,[3576,9628],[3446,9625],[3447,9626],4025,3578,3447,[3448,9727],[3448,9728],10015,[3187,10016],[3252,9821],3251,3250,3250,3252,3186,3185,3251,3185,3252,3252,3249,3251,[3187,10106],[10010,9532],[3185,9625],[3252,9626],3186,3187,3251,3185,[3250,10106],[10010,9532],[3188,9625],[3186,9626],3252,3251,3252,3251,3249,3251,[2931,2993],[2931,2994],[2930,2996],[2866,3059],2931,2802,2930,2930,2930,[2866,3248],3251,3250,3186,3188,3185,[3249,9823],[3188,9919],9920,[3249,9725],3251,3187,[3186,9535],[3250,9536],3185,[2928,3313],[2928,3314],[2928,3315],[2928,3316,9724],9913,10011,10012,[3251,9914],[3186,9818],[3250,5966],[3188,5967],[3252,5968],3252,3185,3252,3188,[2928,2994],[2928,2995],[2928,2996],[2928,3059],2928,[2928,3248],3251,[3251,9529],[2928,2993,9530],3252,3187,3188,3251,3252,3251,3251,3252,3187,3186,3252,[3186,9823],[3185,9919],10015,[2928,10107],[2928,10108],[2928,10016],[2928,9821],[2928,3056],[3252,5773],[3186,5774],[3249,5775],[3188,5776],[3252,5777],[2928,3060,9850],[2928,9946],10042,[3923,10136],[3926,10137],[3923,10043],[3923,9848],3926,3923,3924,[3924,9754],[3474,9755],[3926,9656],3924,3923,3989,3477,3412,3538,[3987,9655],[3925,9748],[3923,9749],3666,3667,3540,3540,3926,[3926,9559],[3923,9652],[3923,9653],3923,3926,3924,3540,3924,3925,3924,3987,3410,3923,3539,3539,3989,3926,3923,3987,3474,3987,[3987,359],409,[3209,3927,293],[3209,294,9655],[3143,3859,9844],[3925,9845],3539,3987,[3412,9850],[3923,9942],[3925,9943],[3538,9944],[3923,9945],[3923,9845],3474,3923,3987,3411,3923,3987,3923,3926,3925,3924,3923,3924,3411,3987,3923,3923,3923,3924,3926,3926,3923,3987,[3209,3861],3145,[3143,3922],3411,3926,3987,3987,3987,3926,3989,3924,3923,3926,[3209,3863],3210,3143,[3210,3858],3989,3987,3925,3987,3923,3670,3671,3926,3989,3923,3540,3925,3926,3926,3923,3923,3926,3989,3926,3924,3923,3923,3924,3987,3989,3924,3925,3987,3925,3987,3989,3924,3925,3987,3926,3989,3668,3669,3926,3538,3924,3987,3987,[3989,10133],[3538,10134],[3926,10135],[3538,10136],[3987,10137],[3926,10138],[3923,10133],10037,[3227,9941],[3227,9845],3228,3228,3164,3228,3164,3163,3228,3228,3163,3164,3163,3164,3227,3227,3164,3163,3228,[3163,9754],[3164,9755],[3923,9656],3987,3541,3540,3925,3925,3924,3924,3989,3476,3989,3539,3412,3926,3542,3475,3923,3477,3540,3412,3923,3477,3923,3925,3987,3925,3925,3475,3925,3923,3987,3925,3987,3923,3923,3477,3923,3474,3926,3411,3923,3923,[3926,9751],9940,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[3505,9474],3954,3953,4020,3505,3506,3953,4020,4020,3956,3955,3955,3956,3955,3955,3954,4019,3953,3569,3956,3505,3504,[3953,9572],[3504,9761],[3955,9859],[4019,9860],[4020,9762,5038],[3956,5039],[3506,5040],[4017,5041],5042,[3063,4082,5043],[3953,5044],[3506,5045],5046,[4019,5047],3955,3504,3506,4019,3505,[3063,3829],3062,[3062,3889],3571,4018,4018,[3506,9479],[2998,9480],[2998,9283],[3062,9284],[3062,9285],[2998,9476,9286],[3568,9569],[4018,9570],3570,4018,3506,3956,4020,4017,[3570,9575],[3505,9576],[3063,4080,9477],[3063,3891],3062,3063,3063,[3063,4016],3506,4020,3953,[4019,679],[415,10147],[415,10148],[415,10148],[415,10050,9572],[3506,9569],[3062,3761,9570],[3062,3827],3063,[3063,9575],[3062,4080,9576],[3063,4021,9573],[3063,3890],[3063,3891],2998,2998,[3062,3889,9479],[2998,4081,9383],[3570,9283],[3569,9284],[3505,9285],[3505,9286],[3504,9283],[3504,9284],[4018,9285],[4019,9286],[3570,9378],[3506,9474],4018,3955,3955,3570,3568,[3505,9572],[4018,9665],[3504,9666],4018,4020,3954,3953,4018,3505,[3063,4081],[3063,4082],[3063,4085],3062,[3063,4016],[4017,9575],[3953,9576],[9959,9477],[3954,10053],[3506,10054],[4018,10055],3570,3954,3569,3570,4018,3954,3570,4019,[4020,9628],[3576,9721],[4024,9722],4025,3575,3577,4025,3959,4023,3448,4023,3511,4025,3578,3448,3512,3511,[4023,9631],[4023,9632],[4023,9533],3447,3577,3578,[3062,4090,9433],[3063,4091,9434],[2999,9435],[2998,9436],[3062,9437],[2999,3830,9438],[409,9439],[4026,293,9339],[4023,294,9340],[3961,9341],[3961,9724,9342],[3063,4086,9721],[4023,9722],3577,3512,3448,3962,3961,4026,3446,3578,4025,3511,3961,3510,4023,3446,[3446,9628],[4023,9721],[3448,9722],4024,3446,3447,[4023,9631],[3960,9632],[3188,10111,9533],3186,3187,3186,3187,3251,3186,3250,[2928,3313],[2928,3314],[2928,3315],[2928,3316],[2928,3315],[2928,3316],3250,3186,[3250,10106,9628],[3186,9721],[3250,9722],3185,3188,3187,3187,3185,[3249,10106,9628],[3251,9721],[3185,9722],3188,3186,3185,3188,3188,3186,3186,3249,3252,3252,[2931,2993],[2867,2997],2867,[2931,2992],[2931,2993],3187,3187,3250,3252,3186,[3251,9631],[3251,9632],[10015,9533],[3251,10016],[3252,9821],3186,3186,[2928,3253],[2928,9535],[2928,3124,9536],2928,2928,2928,[2928,9820],[2928,10009],[2928,3057,10107],[2993,10108],10010,[3186,9914],[3186,9818],3186,3251,3186,3252,3186,3188,3250,3249,3186,[2928,3253],2928,[2928,3312],[3188,9529],[3251,9530],3188,3251,3250,3250,3252,3185,3187,3188,3186,3186,3251,[3251,9823],[3186,9919],10015,[2928,2995,10111],[2928,2996,10203],[2928,2996,10204],[2928,2997],2928,[2928,3184],[3185,5869],[3250,5870],[3249,5871],[3249,5872],[3187,9850,5873],[3249,9946],10042,[3143,10138],[3143,10232],[3145,3859,10233],3987,3925,3475,3475,3923,[3924,9658],[3412,9659],[3926,9656],3989,3412,3477,3925,3926,3412,[3474,9655],[3542,9652],[3987,9653],3924,3924,3987,3412,3925,[3987,9655],[3925,9748],[3923,9749],3924,3925,3925,[3925,9850],[3925,9942],[3925,9943],[3924,9845],3923,3924,3987,3923,3987,3923,3924,3410,3989,3923,3925,3989,[3989,294],[3210,3927],[3145,9751],9940,[3144,3794,9941],[3989,9942],[3924,9943],[3989,9946],10038,[10039,15441],[10040,15442],10041,[3923,9941],[3923,9845],3924,3923,3989,3925,3925,3926,3923,3924,3411,3926,3923,3923,3924,3924,3925,3989,3923,3924,3411,3925,[3208,3799],3209,3143,[3143,3986],3989,3923,3539,3989,3924,3987,3926,3925,3924,3926,[3145,3927],3146,3209,[3145,3922],3924,3926,3538,3987,3923,3987,3924,3926,3925,3987,3925,3925,3476,3989,3923,3989,3923,3606,3607,3924,3925,3926,3925,3989,3924,3925,3923,3989,3926,3923,3924,3411,3989,3923,3926,3411,3926,3987,3987,3987,3926,3924,3926,3924,[3923,10230],[3987,10231],[3987,10232],[3926,10233],3989,3925,[3412,10133],10037,[3163,9652],[3228,9653],3227,3228,3164,3227,3163,3164,3164,3227,3164,3163,3227,3163,3164,3228,[3163,9850],[3228,9942],[3228,9943],[3163,9851],[3923,9656],3923,3538,3923,3475,3540,3538,3989,3539,3926,3411,3923,3475,3989,3475,3476,3989,3541,3923,3924,3538,3542,3987,3538,3541,3924,3925,3923,3475,3926,3925,3412,3925,3538,3923,3924,3411,3925,3923,3476,3412,3477,[3989,9847],[3923,10036],[10037,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9476],[3954,9569],[3953,9570],4020,3955,4018,4018,3955,4020,3956,4018,4017,3955,4020,3953,3953,4017,3955,3441,3953,4019,3954,4020,3955,[4018,9668],9857,9955,9956,[3953,9858],[3954,9762],3568,[3062,4021,5137],[3062,5138],[3062,5139],[2998,3889],[3062,4081,5141],[3505,5142],[3955,5143],3569,[3063,4083],[3063,4084],4020,3506,[3063,3957],3063,[3062,3825],3506,3953,3506,4017,[3505,9479],[3954,9379],[3570,9380],[4017,9381],[3570,9382],[3954,9474],3569,3504,3571,3953,3568,4017,3570,[3506,9671],[3953,9672],[3063,9573],3063,3063,3062,3063,[3062,3889],[3062,4081],3505,4018,[3955,615],415,415,[415,9283],[415,9668,9286],[4018,9665],[3506,9666],[2998,3829],3063,[3063,9671],[3062,9672],[3063,4021,9669],2999,3063,3062,3062,3063,[3062,9479],[3063,3889,9379],[3063,4084,9380],[3504,9381],[3954,9382],[3568,9379],[3568,9380],[3506,9381],[3569,9382],[4019,9474],4019,4018,4019,3504,4020,3504,[4017,9572],[4019,9569],[3570,9570],3953,4018,4017,3506,3504,[3062,4021],3063,3062,[3062,3760],[3062,3761],3441,[3504,9671],[3505,9672],[3955,10055,9573],[4018,10149],[3956,10150],4017,3504,3504,3568,3954,3955,3954,4020,4019,[4020,9628],[3577,9817],[3959,9818],3448,3447,4023,3446,3510,4025,4023,3448,3511,3511,3577,3448,3576,3576,[3961,9727],[3959,9728],[3510,9629],3577,3447,[3063,3897],[3063,9529],[3063,9530],2998,3062,3062,[2999,3894],[4023,9535],[3063,4027,9435],[3063,9436],[3062,9437],[3063,9438],[3062,9530],[3062,3895],3446,3446,3446,4025,3578,3577,4026,3512,3510,4026,4023,3962,4023,4025,[3577,9628],[3578,9817],[4023,9818],3577,4024,3578,[4026,9727],[3576,9728],[3185,9629],3187,3187,3188,3186,3249,3187,[2928,3253],2928,2928,2928,2928,2928,2928,3186,3251,[3186,9628],[3252,9625],[3188,9626],3185,3185,3249,3250,3187,[3186,9628],[3251,9817],[3186,9818],3252,3188,3250,3250,3188,3188,3250,[3251,9534],3249,3186,3251,[2931,3253],2931,[2867,3056],3187,3250,3186,3249,3187,3188,[3251,9727],[3251,9728],[3187,10111,9629],3249,[2928,3313],[2928,3314],[2928,3315],[2928,3317],[2928,9727],[2928,9728],[2928,9533],[2928,2992],[2928,2994],[2928,2995],[2928,2996],[3188,10203],[3187,10204],[3186,10106],[10010,9532],[3188,9625],[3188,9626],3188,3251,3185,3252,3249,3249,3185,3187,[2928,3124],2928,[2928,9529],[2928,3122,9530],3188,3251,3188,3187,3186,3188,3249,3185,3249,3188,3251,[3251,9727],[3186,9728],[10015,9533],[3186,10111],3251,3187,3185,[2928,3253],2928,[2928,3121],3186,[3252,5966],[3188,5967],[3188,9658,5968],[3252,9659],[10042,9560],[3925,10138],[3144,3797],3207,3145,[3146,3794],3989,[3411,9558],3476,3923,[3924,9754],[3987,9755],[3987,9656],3925,3474,3987,3538,3926,3410,[3923,9655],[3923,9748],[3541,9749],3411,3476,3987,3987,3924,[3924,9655],[3411,9844],[3925,9845],3538,3987,[3989,9850],[3475,9946],10038,10039,[3989,9941],[3924,9845],3925,3412,3410,3987,3989,3923,3538,3924,3925,3476,3989,3924,3926,[3210,3735,9847],[3209,10036],10037,10038,10039,10042,[3538,2883,10134,15504],[3987,2884,10135,15505],[3011,10136,15506],[3011,10137,15507],10037,[3987,9941],[3923,9845],3925,3924,3412,3987,3989,3926,3924,3989,3474,3987,3475,3923,3924,3926,3989,3987,3926,3923,3926,[3145,3863],3145,[3145,3730],3412,3924,3989,3926,3412,3989,3923,3925,3476,3924,3989,[3146,3991],3209,3145,[3145,3986],3989,3410,3540,3926,3987,3989,3987,3926,3923,3987,3923,3923,3924,3410,3540,3924,3924,3670,3671,3412,3925,3925,3538,3539,3923,3925,3987,3925,3926,3925,3989,3924,3925,3412,3923,3540,3924,3925,3924,3924,3925,3923,3987,3410,3926,3923,3987,3989,3925,3926,3925,[3412,10133],[3164,9748],[3164,9749],3163,3163,3164,3163,3164,3163,3227,3164,3228,3227,3163,3163,3163,[3228,9850],[3164,9946],10038,10039,9947,[3925,9752],3923,3476,3538,3475,3924,3540,3410,3989,3925,3540,3924,3989,3411,3925,3412,3924,3987,3987,3924,3540,3923,3925,3925,3926,3989,3410,3923,3923,3477,3413,3476,3474,3924,3477,3411,3538,3925,3924,3987,3476,3925,3413,3989,[3923,10133,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[4017,9665],[3955,9666],3506,4019,4020,3955,3505,3955,3954,4019,4020,3953,4017,3953,3955,4017,3954,3956,4020,3955,3954,3953,4018,[4017,9764],[3954,9953],[3505,10051],[3956,10052],9954,[4020,9858],[4020,9762],4018,[3063,3827],3063,3063,3063,[2999,3889],[2998,4081],[3062,3891],3063,3062,[3062,3890],[3062,4084],[3063,3892],3063,[3063,4016],3569,4019,3955,3954,3955,3955,4019,3953,3568,3568,3956,3504,3568,3956,3505,3569,4019,[4017,9767],[3953,9768],[3063,9573],[3063,3760],[3062,3761],[3062,3827],3062,2998,3063,[3063,3889],[3062,4083],[3504,679],[415,9377],[415,9378],[4018,9379],[3506,9382],[3570,9474],4018,[2998,3893],3062,3063,[3062,3760,9479],[4020,9383],[3063,3761],[3062,3828],3062,[2998,3826],[3063,3761],[3063,3765],3063,3063,[3063,4016],4018,4019,4020,4019,4018,4017,4020,4020,3505,4020,3953,3506,[3504,9668],[3570,9665],[3956,9666],4019,3953,3954,4018,3506,[3062,4021],3062,2998,[3063,4016],3954,4019,3505,[3956,9479],[3954,9383],3954,3569,4020,3505,3954,4018,3570,3570,3955,4018,3570,[4017,9724],9913,[4025,9914],[3577,9818],3446,4025,3578,3446,3574,4026,3448,3960,3574,3962,3447,3510,4024,[3962,9631],[4023,9632],[4023,9629],4023,[3062,3898],[3062,9532],[3062,9625],[3062,3831,9626],[3062,3767],[2999,3833],3063,[2999,3958],3959,3578,[3062,3834],3063,3062,2998,3063,[3062,4022],3578,3959,4025,3512,3960,4025,3447,3578,4023,4023,3578,4026,3512,[4024,9724],9913,[4024,9914],[3447,9818],4023,4023,[3578,9631],[3512,9632],[3251,9629],3251,3186,3249,3252,3249,3186,[2928,3124],2928,[2928,2992],[2928,2993],[2928,3059],2928,2928,3251,[3251,9339],[3251,9724,9342],[3186,9721],[3186,9722],3186,3187,3252,3185,3187,[3187,9724],9913,[3252,9914],[3249,9818],3186,3185,3185,3186,3251,3188,[3185,9630],[3250,9533],3187,3186,[2802,3124],2930,[2802,3120],3186,3188,3250,3188,3186,3187,[3249,9823],[3185,9824],[3188,9629],[2928,3061],2928,2928,2928,2928,[2928,9823],[2928,9824],[2928,9629],[2928,3248],3185,3186,3249,3185,3250,3250,[3188,10106,9628],[3188,9721],[3251,9722],3249,3251,3249,3249,3252,3251,3187,[2928,3253],2928,[2928,9532],[2928,9625],[3187,9626],3186,3185,3251,3187,3250,3252,3188,3188,3185,3251,3188,[3252,9823],[3250,9824],[3186,10111,9629],3188,3186,3249,3250,3185,[2928,3059],2928,[2928,3056],3185,3250,[3186,9754],[3252,9755],[3924,10138,9656],3925,[3145,3799],3146,3208,[3145,3858],[3926,9559],[3923,9654],3987,3410,[3542,9850],[3412,9851],[3413,9656],3475,3989,3925,3989,3925,3924,[3923,9655],[3925,9652],[3989,9653],3541,3924,3989,3926,3923,[3540,9751],9940,[3924,9941],[3925,9942],[3925,9943],[3989,9946],10042,[3926,10134],[3923,10135],10037,[3987,9941],[3989,9845],3926,3476,3923,3926,3475,3987,3926,3923,3989,3926,3924,3926,[3145,3991],3210,[3208,3922,10133],[3926,10134],[3989,2945,10135],[2946,10138],[2947,10230,15568],[2948,10231,15569],15570,[2948,10233,15571,15572],[2947,10133,15573],[10037,9559,15574],[3926,9652],[3925,9653],3925,3987,3540,3987,3987,3925,3989,3923,3538,3925,3926,3989,3989,3925,3925,3926,3926,3987,[3209,3927],3146,[3145,3986],3538,3923,3989,3926,3923,3474,3987,3477,3923,3989,3925,3923,[3145,3798],3210,[3208,4050],3476,3476,3987,3926,3925,3924,3926,3987,3924,3924,3923,3923,3925,3989,3989,3925,3926,3925,3989,3987,3925,3539,3475,3989,3926,3926,3923,3987,3923,3987,3926,3923,3926,3412,3987,3924,3476,3987,3926,3989,3989,3987,3924,3923,3926,3987,3924,3989,3925,3540,3539,3926,[3227,9844],[3228,9845],3227,3227,3227,3163,3164,3164,3164,3164,3164,3164,[3228,9850],[3163,9942],[3164,9943],[3227,9946],10042,[3923,10134],[3926,10135],[3987,10043],[3989,9848],3987,3412,3477,3475,3475,3924,3923,3924,3477,3923,3410,3926,3539,3542,3924,3540,3987,3989,3925,3540,3923,3987,3923,3474,3923,3475,3926,3925,3926,3925,3925,3540,3411,3989,3476,3923,3989,3926,3538,3987,3925,3923,3989,[3926,9751],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3504,9569],[3953,9570],4019,3569,3953,3955,4017,4018,3955,3956,3955,4018,3953,4019,4017,4017,4020,3956,3955,4020,4019,3570,3956,3506,3504,[3954,10147],[3504,10148],[3956,10050],9954,[3956,9858],[3954,9762],3568,[3062,3761],[3062,3827],3063,3062,3062,3062,3063,3062,3062,3063,3063,[3063,3760],4019,3953,3570,4017,3954,4018,3956,4020,3569,3569,3571,3504,3505,3568,4017,3505,3568,[3955,9767],[4018,9863],9864,[3062,9669],[2998,4016],3572,3506,[3063,3761],[3063,3765],3063,3063,3063,[3062,4016],[3506,551,9473],[4017,9474],3956,3953,3569,4018,[3063,3957],2998,[3063,3825],3956,[3570,9479],[3953,9480],[3506,9283],[3063,3761,9284],[3956,9285],[3956,9286],[3955,9283],[3062,3828,9284],[3062,9285],[3063,4080,9286],[3063,4082],[3062,4083],[3062,4084],3504,3568,4018,3954,3569,[3569,9283],[4018,9284],[3570,9285],[3954,9286],[3568,9473],[4019,9474],4020,3569,3636,3637,3504,3568,[3063,4085],3062,3062,[3063,3889],3955,3570,4018,3505,[3955,9479],[4018,9480],3569,3955,3953,3570,3568,3568,3569,3570,4018,4018,[3954,9820],[3956,10009],10010,[3577,9721],[3959,9626],3577,4026,4026,4024,4025,4023,3576,3577,3448,3446,4026,3446,[3447,9727],[3447,9728],[4026,9725],[3062,4027],3062,[3062,9628],[3766,9721],[3575,9722],3446,3446,[2998,3767],4023,3448,3446,4024,[3062,3768],[2998,3769],[3062,3770],[3062,3771],[2998,3895],[3062,4089],[3062,4090],3576,4026,3446,3512,3447,3575,4025,3575,3447,3446,4026,[4023,9820],[3447,10009],10010,[3577,9625],[3577,9626],3577,[3961,9727],[4026,9728],[3187,9725],3249,3187,3250,3188,3185,[2928,3253],2928,[2928,3057],3252,3251,3252,[2928,2993],3186,[3188,9434],[3188,9435],[3185,9438],[3249,9530],3251,3187,3185,3185,3251,3250,[3249,9820],[3249,10009],10010,[3188,9914],[3186,9818],3250,3187,3188,3187,[3252,9823],[3251,9824],[3185,9629],3252,[2930,3253],2930,2931,[2931,3184],3186,3188,3251,3251,3252,[3185,9823],[3252,9919],9920,[3250,9725],[2928,3125],2928,[2928,3058],[2928,2993],[2928,2994,9823],[2928,9919],9920,[2928,2993,9725],3186,3185,3187,3250,3252,3251,[3188,9433],[3187,9434],[3251,9530],3251,3185,3251,[2928,3315],3187,3249,3252,3249,3185,[2928,2993],[2928,2994,9628],[2995,9721],[3250,9722],3252,3249,3185,3187,3188,3249,3250,3185,3249,3249,[3185,9823],[3186,9919],9920,[3188,9725],[2928,3316],3187,3250,3249,3249,[2928,3253],2928,[2928,3120],3249,3251,[3185,9658],[3250,9659],[3925,9656],3925,[3210,3863],3207,3145,[3146,3922],[3539,9655],[3987,9844],[3542,9944],[3476,9945],[3926,9946],9947,[3925,9752],3925,3924,3987,3924,3926,3987,[3926,9655],[3926,9748],[3411,9749],3924,3989,3987,3923,3924,[3925,9847],[3925,10036],10037,10038,10039,10042,[3924,10138,1414],[3926,10230,1415],[3925,10231,1416],[3989,10133],[10037,9559],[3540,9652],[3925,9653],3989,3539,3923,3926,3924,3923,3923,3925,3989,3987,3410,[3145,3862],3209,[3210,3986],[3924,3008,10230],[3989,3009,10231],3010,[3011,15632],[3012,15633],[3011,15634],[3012,15635,15636],[3076,15637],[3012,10133,9655,15638],[3989,9748],[3923,9749],3987,3923,3411,3923,3923,3989,3926,3926,3925,3924,3987,3925,3926,3923,3926,3989,3989,3989,[3146,4055],[3208,3795],3411,3926,3926,3923,3476,3987,3925,3926,3925,3923,3924,3925,3539,[3145,3991],3146,3145,[3209,3986],3924,3923,3925,3987,3923,3539,3924,3926,3989,3925,3476,3923,3923,3539,3539,3925,3925,3924,3925,3987,3923,3926,3924,3924,3925,3923,3475,[3146,4051],[3207,4052],[3209,4053],[3146,4054],[3210,4051],[3209,4052],[3146,4053],[3210,4054],3923,3989,[3146,4054],3926,3412,3987,3538,3989,3989,3989,3925,3924,3924,3987,3926,3923,9940,[3227,9941],[3227,9845],3164,3227,3227,3163,3228,3164,3228,3227,[3228,9850],[3163,9946],10038,10039,10042,[3476,10138],[3923,10230],[3923,10231],3925,3926,3925,3413,3924,3924,3924,3923,3923,3477,3474,3925,3926,3926,3926,3989,3474,3477,3411,3412,3926,3923,3475,3925,3926,3411,3542,3542,3925,3542,3475,3923,3923,3926,3989,3539,3926,3987,3987,3989,3924,3540,3924,3411,3989,[3989,9461],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3568,9665],[3506,9666],3954,3505,4018,3955,4020,4020,3956,3956,4019,3953,3636,3637,4019,3954,3441,3956,3955,3953,4020,4020,3956,4020,3956,4020,3506,4018,[4019,10050],[9954,9476],[3956,9569],[3505,9570],3440,4019,[3063,3762],[3063,3764],[3062,3827],3063,[3062,3825],[2998,3762],[3062,3764],[3063,3765],3063,[3062,3889],3954,3504,4017,3570,3569,3506,3953,4019,3504,4019,4020,3568,[3569,9767],[4018,9859],[3569,9860],[3956,9861],[4020,9862],[4019,9863],9959,[3062,9960],[3063,3760,9765],3956,3570,3953,3632,3633,[3062,3828],3062,3062,[3062,3824,9476],[3569,9569],[4018,9570],3954,3956,3568,3956,[3062,3892],3062,[3063,4016],[3505,9283],[3504,9284],[4018,9479,9285],[3570,9379,9286],[4019,9380],[3505,9381],[4017,9382],[3505,9379],[4017,9380],[3954,9381],[4019,9382],[3062,9383],3062,3063,[3062,3824],4017,3956,3506,[3568,9378],[3955,9379],[4019,9380],[3506,9381],[4018,9382],[4018,9474],3506,3570,3568,3700,3701,3505,[3063,4021],3062,3063,3062,3063,[3063,4016],4019,4017,3506,[4018,9575],[3955,9576],[4019,9477],3504,3570,4017,3953,3954,3568,4017,3954,3505,3954,4020,[3954,10106],[3576,9721],[3446,9722],3961,3575,3446,3446,4023,3960,3577,4025,3960,4026,3962,3960,4025,[3577,9535],[2998,4090,9536],[3063,4091,9339],[3063,9342],[3062,3832,9434],[3447,9530],4024,3577,3510,4024,3574,4024,4024,3510,3446,3447,3448,[3063,3835],3063,3063,3063,[3062,3895],3961,3447,3962,3638,3639,3577,3446,3962,3448,3447,3578,3960,[3510,10106],[3448,9721],[3447,9722],3511,3446,[3510,9535],[3187,9439],3250,3187,3186,3251,[2928,3316],[2928,3317],2928,[2928,3056],3187,3252,3251,3250,[3249,9529],[3187,9530],3185,3250,3186,3251,3187,3252,3185,3186,3187,3186,3188,[3251,10106],10010,[3187,9914],[3251,9915],[3250,9916],[3250,9917],[3250,9918],[3188,9919],9920,[3251,9725],3186,[2930,3123],2931,2930,[2866,3248],[3249,9531],[2802,3313],[2930,3123],[2930,3248],[3185,9631],[3188,9632],[10015,9533],[3251,10016],[3188,9821],[2928,3189],2928,[2928,3056],[3186,9823],[3250,9919],10015,[3187,10016],[3251,9821],3250,3188,3187,3251,3187,3188,[3252,9529],[3187,9530],3250,3251,3187,[2928,3253],2928,[2928,3056],3252,3187,3187,3185,3252,[3186,9628],[3186,9817],[3188,9818],3250,3185,3186,3187,3249,3250,3188,3186,3249,[3252,9631],[3249,9632],[10015,9533],[3187,10016],[2928,3059,9821],2928,[2928,3312],3185,3188,3185,[2928,3123],2928,[2928,3184],3249,3249,[3187,9754],[3250,9755],[3923,9656],3926,[3209,3927],3145,[3208,3795],3989,[3987,9751],9940,10040,10041,10042,[3926,10043],[3926,9848],3926,3540,3924,3923,3924,3924,[3925,9751],[3540,9652],[3412,9653],3926,3987,3925,3987,3989,3926,3923,[3987,10133],[3923,10134],[3987,10135],[3475,10138,1477],[3923,1478],1479,[3987,1480],[3987,1481],[3926,10133,9655],[3923,9748],[3989,9749],3989,3924,3926,3987,3540,3989,3925,3474,3926,3987,[3210,3991],3208,3145,[3143,3859],[3923,3072],[3926,3073],3074,3075,3076,3075,3076,3011,[3011,9655],[3989,9652],[3606,9653],3607,3924,3924,3923,3924,3989,3987,3923,3989,3923,3923,3924,3924,3926,3925,3987,3923,[3208,3991],3208,[3210,3794],3410,3987,3923,3989,3989,3926,3987,3924,3924,3925,3987,3925,3987,3926,[3145,3731],[3210,3735],[3208,3860],3925,3924,3987,3924,3412,3989,3926,3987,3926,3925,3925,3475,3987,3926,3987,3989,3924,3989,3924,3923,3923,3925,3412,3925,[3208,4053],[3208,4054],[3209,3862],3208,3208,3209,3210,3209,3208,3146,3146,[3210,3860],[3210,3862],3208,[3207,3860],3925,3924,3925,3410,3540,3924,3924,3925,3925,3923,3989,3923,[3989,10036],10037,[3164,9941],[3228,9845],3227,3227,3164,3228,[3228,9850],[3164,9942],[3164,9943],[3163,9946],10042,[3926,10134],[3925,10135],[3923,10138],3411,3539,3989,3926,3413,3925,3924,3476,3926,3539,3538,3411,3475,3987,3926,3987,3474,3987,3540,3923,3989,3989,3538,3926,3410,3474,3925,3926,3987,3924,3925,3410,3924,3476,3604,3605,3540,3987,3989,3989,3411,3923,3474,3987,3411,3987,3925,[3989,9556],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3504,9761],[3953,9762],3570,3569,3956,3569,3568,4019,3956,4018,3954,4017,3700,3701,4017,4020,3956,4020,4017,3956,4018,4019,3956,3954,3505,3955,4019,3504,4017,[4018,10050,9572],[3570,9665],[3569,9666],3569,4018,3570,3570,3506,[3062,3761],4019,3569,4018,3956,[3063,3828],2998,[3062,4016],3569,3953,3954,3953,3954,3568,3570,3955,3636,3637,[3570,9767],[4020,9863],9955,9956,9957,9958,9959,[3063,10055],[3063,3826],4020,3506,3569,3504,3696,3697,[3062,4021],2998,3062,[3062,3888,9572],[3504,9569],[3954,9570],3568,4017,3570,[3063,4021],3062,[3062,3825],[3955,9378],[3569,9379],[4019,9380],[3504,9381],[3504,9382],[3956,9383],4017,4018,4017,3954,3956,3953,[3953,9479],[3062,9383],2998,[3063,3888],3570,[3956,9377],[3954,9378],[3953,9474],3506,4020,4018,3440,4019,3956,3506,3568,3570,3953,4017,[2999,3892],3063,3063,[3062,3825],[3062,3761],3507,3570,3954,3954,[4019,9671],[4020,9672],[4018,9573],3955,4017,4020,3568,4020,4017,3505,4019,4018,3506,4018,[4017,9434],[3512,9530],3578,3448,3511,4023,4026,3512,4026,3448,3578,3962,3577,3578,3574,4024,4023,[3062,4087,9535],[3960,9435],[3959,9438],[3959,9530],3575,4026,3512,3962,3577,3447,3575,4025,3510,3448,4024,3959,[3062,3963],3063,3062,3062,3062,[3063,4086],[3062,4088],3448,3702,3703,3574,3510,3446,4023,4023,3578,3511,[3961,9529],[4023,9530],3576,3961,3447,4023,[3510,9535],[3249,9536],3251,3188,[2928,3061],2928,2928,2928,[2928,3184],3187,3185,3251,[3252,9434],[3252,9530],3249,3187,3249,3188,3250,3188,3250,3252,3249,3185,3250,3187,3251,[3250,10106],10010,10011,10012,10013,10014,10015,[3252,10016],[3252,9821],[2802,3124],2930,2931,[2931,3057],[3188,9532],[2930,3317,9627],2867,2802,[2930,3248],[3250,9727],[3250,9728],[3185,10111,9629],[2928,3315],[2928,3316],[2928,3317],2928,[2928,3120,9631],[3185,9632],[10015,9533],[3188,10111],3252,3251,3252,3251,3249,3252,3249,[3252,9529],[3249,9530],2928,[2928,3121],3252,3250,[2928,3123],2928,[2928,3120],3187,3252,3252,3252,3249,[3252,9724],9913,[3250,9914],[3252,9818],3185,3250,3252,3249,3249,3249,3249,3250,[3252,9727],[3187,9728],[3251,10111,9629],3186,[2928,3317],2928,2928,[2928,3122],[2928,3315],[2928,3317],2928,2928,[2928,3248],3186,3187,[3188,9658],[3249,9659],[3987,9656],3924,[3208,3991],3145,[3208,4050],[3208,4051],[3924,9847],[3410,10036],[3924,10136],[3477,10137],[3925,10138],3923,3410,3923,3923,3925,3926,3538,3989,[3923,9556],[3475,9557],3925,3989,3604,3605,3475,3926,3924,3410,3989,[3924,10230],[3538,10231,1540],[3923,1541],1542,1543,1544,[3987,1545],[3923,9655,1546],[3923,9652],[3926,9653],3926,3476,3987,3987,3925,3924,3474,3926,3924,3412,3987,[3210,3734],[3145,3735],3145,[3210,3794],[3538,3137],3138,3139,2947,3012,3075,3011,[3010,9655],[3923,9748],[3670,9749],3671,3924,3987,3923,3926,3924,3412,3989,3924,3989,3474,3411,3925,3474,3987,3924,3924,[3145,3862],3210,[3208,3858],3924,3989,3925,3412,3925,3987,3989,3926,3926,3476,3924,3924,3989,3924,3925,[3145,3861],3209,[3146,4050],3989,3989,3926,3989,3924,3923,3925,3923,3925,3924,3923,3474,3923,3474,3924,3410,3924,3987,3923,3925,3924,[3210,4053],[3208,3861],3146,3143,3146,3210,[3209,3730],[3143,3731],[3146,3732],[3208,3733],[3146,3734],[3210,3731],[3145,3732],[3210,3733],[3208,3797],3210,[3145,3795],3989,3989,3923,3925,3989,3923,3987,3987,3989,3924,3989,3474,3989,[3924,10133,9658],[10037,9659],[3228,9941],[3163,9942],[3164,9943],[3163,9944],[3228,9945],[3227,9946],10038,10039,10042,[3989,10138],[3989,10230],[3411,10231],3926,3989,3925,3924,3987,3540,3476,3925,3989,3410,3987,3987,3542,3411,3474,3540,3540,3925,3925,3925,3925,3924,3924,3539,3925,3539,3474,3989,3924,3410,3989,3987,3926,3474,3987,3668,3669,3925,3989,3925,3924,3538,3923,3474,3926,3923,3925,[3989,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],9857,[4020,9858],[3504,9859],[3956,9860],[3954,9762],3954,3505,3955,3953,3571,3956,4020,3954,4019,4019,3956,4018,3954,4018,3954,4019,3955,4020,4019,3505,3953,3507,3505,4018,[4020,9572],[3955,9569],[4020,9570],4019,4020,3568,3505,4017,3570,3955,4019,3953,4017,[3063,3829],3062,[3062,3889],3505,3955,3506,3506,3504,3505,3506,3505,3700,[3701,9671],[4019,9672],[9959,9477],[4020,10051],[3956,10052],[4021,10053],[2999,10054],[3062,10055],[3062,3825],3570,3568,3954,3954,3953,4020,3954,4018,[3063,3828],3062,[3062,3952,9572],[3569,9665],[3569,9666],4018,3956,3506,4018,[3063,3761],[3954,9476],[3955,9761],[3504,8897],[3955,8898],[3504,8899],[3955,9862],[3569,9768],[4020,9477],3505,3955,4017,3954,4018,4018,[3955,9479],[3063,9480],[3063,3952,9283],[3570,9286],[4019,9473],[3062,4083,9474],3506,3954,3505,3504,3956,3955,3504,3506,3570,3505,[2998,4081],[3063,3892],3062,3062,[3063,3825],3506,3955,4020,3506,[3953,9767],[3956,9859],[3506,9860],[3955,9768],[3953,9573],3506,3956,3956,3504,4017,3956,3569,3506,4019,4018,[4020,9434],[3577,9530],3960,4023,3578,3513,3577,4026,3578,3448,4023,4025,3446,3512,4023,3511,3577,[2998,3898],3062,[3062,4022],3446,3446,3447,3513,4026,4023,3959,4026,3961,3578,4024,3578,4024,3510,3446,[3063,3767],[3062,3833],3062,3062,3063,2998,[3063,3895],4025,3446,4024,3961,4023,3577,3448,3578,[3447,9532],[4023,9625],[4024,9626],3961,4026,3446,3959,[3448,9631],[4023,9632],[3188,9533],3186,[2928,3189],2928,[2928,2992],[2928,2993],3251,3251,3250,[3250,9529],[3186,9530],3187,3188,3188,3250,3250,3250,3185,3188,3187,3251,3249,3185,3185,3249,3187,[3251,10106],[3249,10107],[3185,10108],[3249,10109],[3186,10110],[3185,10111],3185,[2930,3317],2930,2802,2931,[2930,3312],[2931,3124,9628],[2867,9817],[2930,2994,9818],[2930,2996],3252,[3249,9823],[3250,9824],[2928,3123,9629],2928,2928,2928,2928,[2928,3184,9727],[3187,9728],[3185,10111,9629],3251,3187,3186,3186,3185,3188,3187,[3186,9532],[3186,9625],[2928,3253,9626],2928,2928,[2928,3122],[2928,3317],2928,2928,[2928,3184],3188,[3251,5485],[3187,5486],[3251,5487],[3250,5488],[3249,9820,5489],[3187,10009],10010,[3251,9914],[3249,9818],3188,3252,3188,3188,3187,3251,3188,3187,[3187,9535],[3185,9536],[2928,3123],2928,[2928,3058],[2928,2993],[2928,3059],2928,2928,2928,[2928,2992],3188,3188,3250,[3185,9850],[3188,9851],[3926,9656],3926,3538,[3209,3797],3209,3209,[3210,3859],[3209,4051],[3209,4052,10232],[3987,10233],3989,3987,3925,3987,3926,3924,3987,3926,[3539,9559],[3924,9652],[3926,9653],3987,3987,3668,3669,[3926,9561],3987,3926,3987,3925,3410,[3411,1604],1605,1606,1607,1608,1609,[3926,9655,1610],[3987,9844],[3987,9845],3924,3989,3926,3987,3926,3924,3923,3987,3476,3926,3987,3989,[3209,3991],3208,[3210,3858],3987,[3987,3202],[3143,3927,3203],[3209,3073],3011,2948,3075,[2948,9655],[3924,9844],[3926,9845],3926,3924,3925,3987,3923,3987,3987,3989,3925,3925,3476,3926,3989,3924,3987,3989,[3209,3991],3143,3210,[3209,3922],3476,3987,3926,3926,3926,3925,3987,3989,3926,3411,3987,3926,3925,3476,[3146,3991],3210,3210,3210,[3146,4050],3540,3476,3411,3987,3923,3989,3538,3987,3989,3987,3923,3987,3476,3987,3412,3923,3925,3926,3987,[3209,3991],3207,3208,[3146,3730],[3209,3732],[3145,3733],[3209,3734],3926,3924,3475,3925,3540,3476,3923,3923,3923,[3143,3731],3987,3924,3926,3925,3925,3602,3603,3924,3923,3925,3410,3926,3989,3989,[3987,9754],[3925,10133,9755],[10037,9560],10038,10039,10040,10041,10042,[3989,10134],[3923,10135],[3925,10138],3924,3476,3475,3923,3540,3924,3926,3989,3410,3538,3476,3539,3989,3540,3540,3410,3476,3987,3924,3989,3926,3541,3989,3538,3540,3538,3989,3476,3411,3475,3542,3987,3987,3987,3926,3474,3925,3926,3924,3925,3540,3924,3925,3924,3924,3924,3475,3923,3987,3923,[3987,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9924,9925,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9764],[415,9953],9954,9955,9956,[3955,9858],[3568,9762],3504,3955,4019,3954,4019,4018,4017,3955,3956,4017,4017,3442,3956,4017,4017,[2933,4083],3953,4019,3955,3955,3570,4019,3956,[2869,4081,9668],[4017,9665],[3570,9666],3570,3953,4019,3504,3506,3570,4018,4020,3504,3504,[2998,3893],3062,3062,[3063,4016],3504,3443,3504,3504,3504,4019,3568,4020,[3504,9767],[3569,9768],[3569,10055,9573],[3506,10147],[4018,10148],[3062,3957,10149],[3063,10150],3062,[3063,4016],3568,4019,3441,3443,3506,3506,3955,3954,3953,[3063,3765],[3063,3889,9572],[2998,4081,9761],[4020,9762],3505,3956,4020,3506,3569,[4017,9668],9857,8993,8994,8995,9958,9864,[3504,9669],3506,3504,4020,3956,4017,3506,4019,[3063,4081,9479],[3062,4081,9379],[3062,4081,9382],[3062,3891,9474],3063,[3063,3890],3953,4018,4017,3568,4020,3956,3954,3504,[3062,4021],3063,3062,[3063,3760],[3063,3761],4017,3954,3955,3506,[4019,9767],[3569,9863],9955,9956,9864,[4018,9669],3953,3505,4018,3570,4018,3570,4019,4017,3954,[3956,9532],[3512,9625],[4026,9626],3448,3448,3960,3638,3639,3961,3510,3578,3959,3448,3576,3578,3448,3577,[3063,3897],2998,[3063,3831],3961,4026,4024,3510,3448,3447,4024,4024,3448,3577,3960,3578,4026,3447,3575,3510,4025,4025,[3062,3768],[3062,3769],[3062,3834],3062,3062,[3063,4022],4023,3447,4024,[3062,4088],3578,4026,3959,[3446,9628],[4025,9721],[3574,9722],4023,3512,3447,3512,[4025,9727],[3511,9728],[2928,3315,9629],[2928,3316],[2928,3124],2928,[2928,3248],3188,3251,3250,[3249,9532],[3186,9625],[3250,9626],3185,3249,3188,3249,3187,3250,[2930,3315],3186,3185,3186,3249,3252,3186,3187,3251,3186,[3188,10203],[3250,10204],[3188,10205],[3188,10206],3251,[2930,3061],2803,2802,2802,2866,2930,[2930,9724],9913,[3252,9914],[3185,9915],[3187,9916],[3185,9919],9920,[2928,9725],2928,[2928,3057],[2928,2994],[2928,2996],3188,[3252,9535],[3188,9536],3185,3251,3186,3188,3188,3249,3250,[3251,9628],[3185,9721],[3249,9722],[2928,3059],2928,2928,2928,2928,[2928,2992],3187,3251,[3185,5581],[3250,5582],[3249,5583],[3187,5584],[3185,5585],3185,[3185,10106],[10010,9532],[3249,9625],[3252,9626],3249,3251,3187,3187,3187,3251,3251,3188,[3251,9535],[2928,9536],2928,[2928,3248],3250,3251,[2928,2997],2928,2928,[2928,3121],3251,3187,[3251,9850],[3249,9946],9947,[3989,9752],3412,3924,3474,[3146,3734],[3146,3735],3143,3145,3146,[3210,3859],3989,3987,3987,3924,3411,3923,3923,3924,[3987,9655],[3923,9748],[3923,9749],3474,3925,3474,3923,[3475,9657],[3924,9560],3926,3923,3926,3538,[3989,1668],1669,1670,1671,1672,1673,[3923,9751,1674],9940,[3924,9941],[3926,9845],3925,3925,3987,3987,3474,3987,3926,3924,3926,3923,3987,[3209,4055],3208,[3209,3922],3926,3923,3925,[3209,3735,3137],3139,2946,3010,[3012,9751],9940,[3476,9941],[3925,9845],3926,3925,3540,3926,3926,3926,3989,3924,3926,3923,3475,3412,3989,3923,3987,[3208,4055],3143,[3146,3796],3926,3925,3923,3987,3924,3923,3924,3987,3989,3923,3987,3989,3926,3989,3923,3923,[3145,3732],[3145,3734],[3145,3735],3209,[3146,3860],3924,3924,3924,3989,3476,3923,3926,3924,3923,3410,3989,3926,3923,3410,3410,3925,3926,3923,[3210,4055],3209,[3143,3795],3987,3924,3926,3924,3925,3539,3924,3923,3923,3475,3923,3925,3924,3926,3926,3989,3412,3924,3925,3666,3667,3474,3926,3989,3924,3410,3923,3926,[3474,9754],[3987,9755],[3923,10133,9656],[3924,10134],[3926,10135],[3925,10136],[3989,10137],[3923,10138],[3987,10230],[3987,10231],3410,3923,3925,3926,3411,3412,3987,3538,3410,3542,3538,3926,3987,3411,3923,3926,3989,3542,3923,3987,3925,3924,3989,3987,3924,3925,3987,3923,3542,3924,3410,3474,3924,3987,3926,3412,3925,3987,3926,3925,3477,3925,3987,3923,3924,3987,3926,3924,3989,3987,3926,[3987,9655],9844,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9924,9925,9926,9927,9928,10020,10021,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10050],[415,10051],[415,10052],9954,[3570,9858],[3568,9762],3954,3956,4018,3953,3954,3954,4018,4017,4020,4019,3953,3956,3956,[2933,3891],2933,[2932,3889],4018,3953,3953,4017,3570,[2933,3892],[2868,9473],[3955,9474],3954,4017,3504,3505,4018,4017,3570,3955,4018,3953,3504,[3063,3957],3063,3063,[3063,3889],3953,3505,3570,[3568,9767],[3955,9859],[3506,9860],[3954,9861],[4019,9862],[3504,9863],9864,[3569,9669],3568,[3063,4084],[3062,3892],[3063,3825],[3063,3761],4018,3954,3954,3504,3568,3568,3956,3570,3954,3570,[3062,3829],[2998,9668],9857,[3062,3889,9858],[4017,9859],[3956,9860],[3506,9762],4020,3956,[3506,9764],[3570,9953],[3570,9089],[3569,9090],[3956,9091],[4020,10054],[3505,9960],[4017,9765],4018,3441,3505,3955,3506,4018,[3062,3957],3063,3063,3062,3062,3063,2998,[3062,4080],[3063,4081],[3063,4082],[2998,4083],[3062,4084],[3062,4081],[3062,4082],[2998,4083],[3062,3891],3062,[3062,3825],4020,3571,3506,3440,3506,[3955,9575],[4020,9576],[9959,9477],[4018,10051],[3568,10052],[3506,9960],[4018,9765],3569,3956,3568,3568,3956,3568,3505,4020,3953,[3954,9628],[4024,9721],[3446,9722],3577,4023,3448,3702,3703,3959,3447,3511,3962,3512,3962,3446,3510,[3062,4091],3063,3063,[3062,3830],3959,3448,4024,3960,3448,3577,3961,3447,3962,3574,3575,3446,3577,3446,4024,3575,3447,4024,3512,3578,[3062,4027],3063,3063,[3063,4086],[3063,4089],[3062,4090],[3062,3897],3062,[2998,4086],3448,4023,[3575,9628],[4026,9817],[4024,9818],4025,4023,3447,3446,[3575,9823],[3577,9824],[2928,9629],2928,2928,[2928,3057],3252,3187,3187,3250,[3250,9628],[3186,9721],[3252,9722],3252,3249,3188,3249,3250,[2930,3061],2930,[2802,3122],[2930,3315],[2802,3316],3249,3186,3249,3187,3251,3252,3188,3250,3252,3252,3187,[2802,3125],2931,2930,2802,2930,[2802,2992],[2802,2993,9820],[3251,10009],10010,10011,10012,10015,[2928,3059,10016],[2928,9821],[2928,2992],3187,3188,3186,3249,3185,[3185,9535],[3187,9439],3249,3251,3188,3188,3188,3185,[3252,9628],[3186,9817],[3252,9818],3186,[2928,2993],[2928,2997],2928,2928,[2928,3121],3251,3249,[3249,5677],[3249,5678],[3186,5679],[3187,5680],[3250,5681],3188,3188,[3188,10106,9628],[3252,9721],[3250,9722],3251,3252,3188,3187,3186,3249,[2928,3315],[2928,3316],[2928,3317],[2928,3184,9535],[2928,2993,9536],3188,3186,3252,3188,[2928,3059],2928,2928,[2928,3312],[2928,3315,9658],[2928,3316,9659],[10042,9560],[3474,10043],[3987,9848],3924,3926,3923,3924,[3145,3799],3209,3146,3143,3208,[3146,3986],3925,3987,3476,3923,3989,3925,3989,[3924,9655],[3924,9844],[3924,9845],3413,3926,3412,[3476,9850],[3925,9851],[3925,9656],3989,3926,3475,3925,[3923,1732],1733,1734,1735,1736,1737,[3411,9847,1738],[3925,10036],10037,[3923,9941],[3926,9845],3989,3987,3923,3926,3989,3926,3924,3924,3412,[3210,3861],3145,3210,[3207,3986],3923,3923,3925,[3209,3862],[3208,3137],3138,3139,[3412,3140,9847],[3987,10036],10037,[3538,9941],[3925,9942],[3989,9943],[3926,9845],3987,3923,3924,3926,3925,3924,3925,3925,3925,3989,3926,[3146,3991],3146,3210,[3146,3986],3987,3923,3987,3924,3987,3475,3987,3923,3410,3989,3923,3924,3926,3926,3924,3987,3412,3475,[3146,3991],3209,3208,[3145,3859],3987,3923,3926,3924,3989,3925,3926,3924,3925,3926,3924,3989,3412,3924,3924,[3210,4054],[3210,3861],3144,3210,[3210,3986],3923,3538,3474,3924,3539,3987,3924,3925,3924,3925,3925,3926,3924,3924,3987,3989,3987,3987,3925,3926,3925,3924,3924,3926,3989,3923,[3987,9850],[3146,4054,9942],[3209,4055,9943],[3143,3860,9851],[3210,4051,9656],[3210,4052,10230],[3146,4053,10231],[3987,10232],[3926,10233],3926,3410,3925,3925,3926,3475,3411,3989,3542,3989,3477,3474,3539,3923,3987,3987,3923,3411,3539,3538,3989,3923,3926,3474,3923,3412,3476,3989,3926,3477,3542,3475,3538,3987,3989,3411,3923,3474,3923,3925,3411,3923,3926,3924,3989,3924,3926,3925,3987,3987,3924,3926,3925,3476,[3411,9751],9940,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10020,10021,10022,10023,10024,[2681,10116],[2679,10117],10019,9923,9926,9927,9924,9925,9827,0,0,0,0,9832,9924,9925,9926,9927,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10147],[415,10148],[415,10050],[9954,9476],[4018,9569],[3954,9570],3953,3954,3953,4019,3954,3956,4017,4019,3956,3956,4018,[2933,4021],2932,2933,2868,[2868,3889],4018,3956,4017,[2804,4021],[2868,9473],[3505,9474],3507,4018,4020,3571,4018,4017,3506,3568,3956,3569,3443,4019,3506,[3062,3827],3063,3062,[3062,3889],3505,[3506,9767],[4019,9863],9955,9956,9957,9958,9959,[4019,9960],[4020,9765],[3063,3829],3063,3063,[3063,3824],3568,3504,3505,3568,3506,4019,3953,3506,3570,4017,3568,[3062,3893],[3062,9764],[2999,9953],9954,9955,9956,[4018,9858],[4020,9762],4017,3955,3953,[3568,9185],[4017,9186],[4020,9187],[3570,10150],3955,3441,4017,3504,4018,3953,4018,3568,4017,[3063,3828],3062,3062,[3063,3760],[3063,3761],[3062,3828],3062,3062,3062,3062,3062,3063,3062,3062,3063,[3062,3826],4019,3570,4019,4019,4019,4020,[3954,9671],[4018,9672],[3570,10055,9573],[3505,10147],[3954,10148],4019,4020,3956,3504,3571,4019,3505,4020,3954,4018,4017,[4020,9628],[3448,9721],[4023,9722],3959,3447,4026,4024,4025,3578,3447,3576,3512,3960,4023,3574,[3062,3897],3062,3063,3063,[3062,3958],3960,3448,3574,3447,3574,3961,3962,3446,3578,4024,3578,3448,3447,3511,3574,3513,4025,3578,4025,4023,3959,[3063,3833],3062,[3062,3832],[3062,3771],3062,3062,3063,3063,[3062,4022],3446,[3446,9724],9913,[3577,9914],[3962,9915],[3447,9916],[3448,9917],[3574,9918],[4026,9919],9920,[2928,2994,9725],[2928,2995],[2928,2996],3187,3185,3187,3187,3252,[3186,9628],[3250,9817],[3187,9818],3252,3185,3249,3251,3188,[2802,3189],2930,2867,2930,2930,[2802,3248],3187,3186,3187,3252,3188,3250,3251,3186,3252,3187,[2931,3189],2802,2802,2802,[2866,3057],3187,3187,3186,[3185,10106],[3250,10107],[3188,10108],[3185,10111],3186,[2928,2993],3250,3187,3252,3185,3187,3186,3188,[3187,9535],[3188,9536],3252,3251,3188,3185,3252,[3252,9724],9913,[3188,9914],[3188,9818],3250,3252,[2928,2993],[2928,3059],2928,[2928,3056],3188,[3249,5773],[3186,5774],[3187,5775],[3188,5776],[3187,5777],3188,[3185,9339],[3188,9724,9342],[3250,9721],[3249,9722],3187,3250,3185,3188,3188,[2928,3061],2928,2928,2928,[2928,3248,9727],[3251,9728],[2928,3314,9533],[2928,3315],[2928,3316],3188,3187,[2928,2993],[2928,3059],2928,[2928,9754],[2928,9755],[3989,10138,9656],3924,3924,3926,3476,3924,3476,[3145,3863],3209,3145,3145,3210,[3210,4050],[3146,4051],3924,3926,3925,3926,3923,3475,[3475,9751],9940,[3926,9941],[3926,9942],[3987,9944],[3924,9945],[3989,9946],9947,[3924,9752],3474,3924,3926,3926,[3539,1796],1797,1798,1799,1800,1801,[3412,1802],3924,[3989,10133],[10037,9559],[3925,9652],[3926,9653],3925,3926,3987,3926,3410,3926,3410,[3146,3991],3210,[3145,3795],[3208,3731],3924,3987,3538,[3146,3991],3145,[3146,3795,3201],[3412,3202],[3926,3203],[3926,3204],3926,[3923,10133],10037,10038,10039,[3987,9941],[3926,9942],[3926,9943],[3412,9845],3987,3924,3923,3923,3924,3989,3926,3989,[3145,3861],3209,[3208,3730],3923,3923,3923,3925,3412,3924,3987,3924,3923,3926,3924,3926,3540,3923,3987,3926,3926,3924,3987,3987,[3208,3731],[3209,3798],3208,[3209,3859],3923,3989,3925,3987,3923,3924,3987,3987,3989,3987,3924,3987,3989,[3209,3799],3209,3146,3146,[3209,3730],3923,3926,3926,3924,3987,3474,3923,3412,3926,3987,3923,3925,3411,3924,3926,3923,3926,3923,3925,3540,3989,3926,3410,3538,3925,[3208,4051],[3146,4054,9850],[3143,3862,9946],10038,10039,9947,[3210,9752],3210,3207,[3207,3860],[3210,4051],[3209,4052],3923,3412,3924,3926,3926,3923,3987,3923,3923,3989,3923,3540,3987,3926,3924,3410,3412,3926,3987,3539,3987,3923,3924,3411,3410,3926,3989,3410,3987,3539,3989,3926,3542,3923,3541,3926,3926,3474,3926,3925,3987,3987,3926,3475,3541,3987,3989,3989,3538,3924,3411,3475,3926,[3538,9847],[3989,10036],[10037,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10024,[2743,10116],[2679,10117],[2679,10118],[3001,10119],[2680,10120],[2679,10212],[2745,10213],[2680,10115],10019,10022,10023,10020,10021,9923,9827,0,0,9832,9928,10020,10021,10022,10023,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10050,9572],[3569,9665],[3953,9666],3956,3955,3956,3954,4018,4020,3954,4019,4019,4018,3956,3956,[2869,3761],[2932,3827],2933,2933,[2869,4016],4018,4017,[2869,3892,9476],[3506,9761],[3507,9762],3955,4017,4019,4020,4019,3504,3504,4019,3955,4017,3568,3953,4018,4017,[3062,3761],[2998,3828],3062,[3062,3824,9767],[3569,9863],9959,[3440,10051],[3955,615,10052],[415,10053],[415,10054],[3955,677,10055],3506,3956,[3063,3957],3063,3063,[3063,3888],4019,3568,3506,3955,3956,3954,3505,4018,3953,3504,3506,[2999,3957],3063,3062,[3062,3825,10050],[3953,10051],[3954,10052],9954,[4019,9858],[3955,9762],3569,3568,4020,3955,3442,3954,4019,[3570,9767],[4019,9762],3504,3955,4019,4017,3570,3506,[2998,4021],3062,[2998,3825],4020,3442,4017,[3063,3762],[3063,3763],[3063,3764],[2998,3765],3062,3062,3062,[3063,3825],[3062,3761,9767],[3955,9859],[4018,9860],[3506,9861],[3570,9862],[3569,9762],3569,3505,[3953,9767],[4018,9768],[3443,9573],3504,4020,3955,3955,3504,4020,3955,4019,3956,3504,3954,3956,3956,[3953,9628],[3512,9817],[3962,9818],4026,3578,4025,3510,3448,4024,3512,4026,3577,3961,3962,[3062,3835],3063,[3062,3766],[3063,3767],[3063,3767],3577,4024,4026,3574,3447,3961,4023,4024,3512,3446,4023,3448,4026,3447,3960,[3578,9339],[3961,9340],[3961,9341],[3577,9342],3960,4024,3448,3510,[3062,3767],3577,[3062,4027],3063,3062,3062,3063,[3062,3895],3446,[4023,9820],[3447,10009],10010,10011,10012,10013,10014,10015,[3185,10016],[3251,9821],3250,3185,3187,3186,3186,3187,3186,[3252,9724],9913,[3252,9914],[3252,9818],3251,3250,3186,3250,3249,[2802,2994],[2931,2995],[2930,2996],[2930,3059],[2931,3312],[2931,3313],3252,3185,3251,3250,3252,3249,3251,3250,[2931,3316],[2802,3124],2930,2931,[2931,2992],3249,3252,3185,3252,3251,[3251,10203],[3185,10204],3250,3188,3250,3251,3252,3187,3251,3188,3251,3252,[3250,9631],[3187,9632],[3251,9533],3250,3188,3185,3249,[3188,9820],[3188,10009],10010,[3186,9914],[3251,9818],3187,3187,[2928,3061],2928,[2928,3184],3251,[3185,5869],[3252,5870],[3249,5871],[3185,5872],[3187,5873],[3185,9529],[3249,9435],[3186,9438],[3187,9530],3185,3252,3186,3251,3250,3249,[2928,3189],2928,2928,[2928,2992],[3186,9823],[3251,9824],[2928,9629],2928,2928,[2928,3121],[2928,3313],3186,3250,3186,[2928,3059,9658],[2928,9659],[3989,9656],3926,3925,3538,3925,3924,3923,[3145,3927],3143,[3210,3795],[3208,3735],3208,3208,3210,[3207,3859],[3209,4052],[3207,4053],[3146,4054],3923,3924,[3923,9847],[3926,10036],10037,10038,10040,10041,10042,[3144,4052,10043],[3145,4053,9848],[3209,4054],3989,3923,3925,[3989,1860],1861,1862,1863,1864,1865,[3987,1866],3926,3474,[3923,10133,9655],[3926,9748],[3925,9749],3989,3924,3924,3926,3925,[3210,4053],[3145,4054],[3209,4055],3208,[3208,4050],[3145,4051],[3145,4052],[3208,4053],[3207,4054],[3144,4055],3145,[3146,3859],[3210,4054],3924,3924,3987,3987,[3925,10133],[3538,10134],[3924,10135],10037,10038,10039,[3987,9941],[3926,9845],3476,3926,3987,3989,3926,3926,[3207,3799],3145,3210,[3210,3986],3926,3539,3924,3538,3989,3987,3925,3989,3989,3924,3987,3923,3987,3923,3925,3989,3925,3989,3923,3926,3926,[3209,3991],3144,3143,[3146,3859],3539,3989,3923,3924,3539,3925,3474,3926,[3210,4052],[3145,4053],[3208,4054],3540,[3210,3927],3209,3143,[3146,3795],3925,3924,3540,3923,3987,3989,3924,3925,3987,3539,3925,3923,3924,3923,3924,3925,3989,3987,3925,3923,3540,3924,3925,3923,[3146,4054],[3208,4055],[3208,9658],[3143,9659],[10042,9560],[3145,3991,10134],[3207,10135],[3207,10043],[3209,9848],3208,3210,3145,3209,3210,[3210,3859],3476,3925,3541,3926,3923,3926,3926,3541,3924,3474,3410,3924,3989,3542,3476,3923,3989,3475,3987,3410,3925,3925,3926,3476,3924,3923,3989,3474,3540,3923,3987,3476,3411,3923,3989,3924,3925,3410,3474,3924,3989,3925,3474,3475,3474,3926,3411,3412,3411,3925,3989,3476,3923,3924,[3923,10133,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[3001,10120],[2808,10212],[2679,10213],[2679,10214],[2872,10215],2873,2743,3001,3001,[2745,10115],[3000,10118],[2808,10119],[2679,10116],[2678,10117],10019,9923,9924,9925,9928,10024,[2680,10116],[2678,10117],[2680,10118],[2742,10119],10019,9923,9924,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9924,9925,9827,0,9832,9924,9925,9926,9927,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3956,9569],[3955,9570],3955,4019,4017,4020,3953,4017,4018,4019,4020,3953,3955,4017,3954,[2933,3829],2932,2933,[2933,4080],3955,[2932,4021],[2869,9668],9857,[3505,9858],[3442,9859],[3569,9860],[3504,9861],[3568,9862],[3505,9762],3569,3954,4020,4017,4017,4020,4017,4017,3954,3569,[3062,3829],[3063,9671],[3063,3888,9672],[9959,9477],[3570,10055],[3953,10147],[3442,615,10148],[415,10149],[415,10150],[3953,677],3955,3440,3955,[3062,3828],3063,[3063,3952],3506,4018,3505,4019,3955,3504,3506,3955,3568,4020,3956,[3062,3892],3062,[3063,3760],4017,[4019,10147],[4019,10148],[3504,10050],[9954,9476],[3956,9665],[3955,9666],4017,3568,3955,4018,3956,[4019,9767],[4018,9863],[3953,9858],[4020,9859],[4018,9860],[3953,9762],3954,3504,3570,[3063,3829],3063,[3062,3824],4020,3954,4020,4020,3954,3954,3505,[3062,3762],[3063,3763,9767],[3062,3764,9856],[4020,9862],[4017,9863],9955,9956,9957,9958,[3954,9858],[3506,9861],[3504,9862],[3953,9863],9864,[3505,9669],3504,3570,3955,4020,3955,3506,3569,3504,3953,4017,4018,4017,3505,[4018,9724],9913,[3510,9625],[3448,9626],4023,3574,3510,3577,4023,4024,3446,3960,4023,3447,[3062,3899],2998,[3062,3830],3961,3446,3574,3512,3446,4024,3446,3448,3577,3447,[3577,9339],[3447,9340],[3448,9341],[3961,9342],[3959,9339],[3577,9342],[3575,9434],[4025,9435],[3577,9436],[4026,9437],[4024,9438],[3962,9439],4026,3961,4026,4025,4023,3578,[3062,3834],3062,3062,3063,3062,[3062,3895],3960,3962,[3577,10106],[3574,10107],[3063,4027,10108],[3062,2992,10109],[3186,10110],[3185,10111],3187,3252,3187,3250,3252,3185,3251,3249,3250,[3251,9820],[3187,10009],[10010,9532],[3250,9625],[3251,9626],3188,3252,3249,3186,3186,[3252,9534],3252,[2930,3253],2930,2931,[2866,3312],[2866,3316],3252,3185,3249,[2930,3315],[2802,3316],[2803,3317],2931,2930,2931,2802,[2866,3312],[2802,3313],3251,3187,3185,3187,3250,3186,3249,3249,3250,3251,3185,3249,3251,3188,3185,3188,[3251,9727],[3186,9728],[3185,9629],3250,3186,3187,3249,3187,3249,[3188,10106],[10010,9532],[3186,9625],[3251,9626],3185,[2928,3189],2928,[2928,3312],[2928,3313],3252,[3249,5966],[3250,5967],[3251,5968],[3187,9532],[3187,9721],[3250,9722],3249,3251,3186,3250,3251,3187,[2928,3315],[2928,3316],[2928,3124],2928,2928,[2928,3122,9823],[3252,9919],9920,[2928,2995,9725],[2928,2996],[2928,2997],2928,2928,[2928,3122],3249,3251,[3252,9754],[2928,2993,9755],[3925,9656],3924,3923,3926,3925,3926,3926,3924,[3143,3731],3476,3925,[3208,3731],[3145,3731],[3144,3797],3145,3208,3210,3209,[3144,3859],3924,3924,3989,[3924,10133],[3923,10134],[3926,10136],[3924,10137],[3145,3862,10138],3208,3208,3146,[3208,3860],[3208,4051],[3207,4052],[3145,4053,1924],[3209,4054,1925],[3210,3861,1926],[3145,1927],[3144,3859,1928],[3926,1929],[3925,1930],3987,3989,[3923,9655],[3987,9652],[3923,9653],3925,3989,[3210,4053],[3207,4054],[3144,3861],3209,3210,3146,3208,3145,3210,3146,3145,3210,3143,3208,3210,3144,[3146,3859],[3208,4053],[3210,4054],[3145,4051],[3210,4052],[3987,10230],[3987,10231],[3926,10133],[3925,10134],[3926,10135],10037,[3923,9941],[3411,9845],3411,3926,3987,3926,3987,[3145,3863],3210,[3210,3795],[3926,9850],[3924,9942],[3926,9943],[3987,9845],3987,3989,3475,3926,3987,3925,3987,[3475,9561],3989,3987,3924,3987,[3540,9558],3924,3924,3987,3989,3989,[3145,3991],3208,3209,3146,[3208,3860],3412,3539,3924,3987,3923,[3208,4053],[3210,3861],3210,3210,3209,[3208,4050],[3208,3862],3207,[3209,3730],3925,3989,3926,3476,3925,3923,3924,3539,3987,3989,3925,3989,3987,3989,3474,3923,3924,3926,3989,3989,3924,3924,[3145,4054],[3145,4053],[3207,3862],3210,3210,[3146,9754],[3145,9755],[3925,10138,9656],[3145,3991,10230],[3145,10231],3145,3208,3207,[3143,3795],[3208,3731],[3143,3732],[3210,3733],[3145,3734],3540,3475,3924,3925,3411,3923,3925,3926,3475,3924,3924,3923,3987,3539,3475,3413,3989,3987,3924,3923,3989,3923,3989,3476,3925,3477,3987,3410,3538,3925,3987,3476,3989,3539,3926,3989,3541,3412,3923,3924,3924,3924,3412,3474,3989,3410,3923,3538,3989,3924,3924,3475,3410,3987,[3987,9655],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2745,10120,9638],3001,2743,3000,3000,2873,2679,2681,3001,2744,2745,[2873,10214],[2937,10215],[2743,10212],[2872,10213],[2745,10115],10019,10020,10021,10024,[3001,10120],[2873,10212],[2681,10213],[2873,10214],[2680,10215],[2745,10115],10019,10020,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9926,9927,9928,10020,10021,9923,9924,9928,10020,10021,10022,10023,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],[4019,9665],[3956,9666],4020,3955,3955,3953,3955,3954,3954,3955,4019,3954,4017,4017,4019,[2869,3893],2933,2868,2933,[2869,3889],[2933,4085],[2869,9764],[2933,3825,9953],9954,9955,9956,9957,9958,[3953,9858],[3504,9762],4018,4019,3956,3954,3955,3954,3568,3954,4018,[3063,3893],[3063,9767],[3062,3952,9768],[3505,10055,9573],3505,4017,[4018,679],415,415,[4017,741],[4019,742],[3568,745],[3570,746],[2998,4021,678],[3062,558],[3063,4016],3955,3506,3569,3506,3953,3504,3505,4020,4019,4019,[3062,4085],3062,3063,[3063,4016],3954,4019,3956,3569,[3953,10050,9572],[4020,9569],[3506,9570],4017,3955,4019,3569,[3955,9767],[3504,9863],9959,9954,9955,9956,[3570,9858],[3504,9762],3955,4017,[3062,3893],3062,[3063,3888],3505,4020,4017,3505,3504,4017,3504,[4017,9767],[3955,9863],9952,9958,9959,[4020,10051],[3955,10052],[3954,10053],[3956,10054],9954,9957,9958,9959,[3955,9960],[3506,9765],3504,3953,4017,3571,3504,3506,3505,3506,3505,3506,3570,3956,3504,[3954,9820],[4018,10009],[3959,9721],[3446,9722],3574,3510,3446,3512,3447,4024,4023,3578,3511,3578,[3063,3963],3063,[3062,3894],4024,4026,4024,4026,4025,3961,3959,4024,4024,[3512,9529],[3447,9435],[3575,9436],[4025,9437],[3446,9438],[3448,9435],[3959,9438],[4026,9530],3448,4023,3511,4025,[3960,9535],[3447,9536],4024,3576,3576,4023,3447,3446,[3063,3767],[3063,3771],3062,3062,3063,[3062,4086],[3063,4087],3577,[3959,10203],[3063,4091,10204],[3063,3312,10205],[3251,10206],3186,3251,3251,3187,3185,3188,3249,3188,3251,3249,3252,3249,[3252,10106,9628],[3188,9721],[3188,9722],3249,3250,3185,3185,3252,[3250,9630],[3186,9533],3252,[2867,2993],[2931,3059],2802,2803,[2931,3248],3251,[2931,3123],2802,2802,2930,2803,2930,[2803,2992],[2930,3059],2930,2866,[2931,3121],[2802,3314],[2931,3315],[2931,3123],[2866,3312],3188,3250,3252,3186,3186,3186,3186,3252,3250,3250,3187,[3252,9823],[3186,9824],[3188,9629],3249,3250,3188,3251,3187,3250,3188,[3249,10106,9628],[3187,9721],[3251,9722],3250,3188,[2928,3059],2928,2928,[2928,3248],3249,3185,3186,[3251,9628],[3250,9817],[3187,9818],3188,3251,3187,3251,3186,[2928,3253],2928,2928,2928,[2928,3058],[2928,2993,9727],[2928,3060,9728],[10015,9533],[3249,10016],[3185,9821,5490],[3187,5491],[3250,5492],[2928,3059],2928,2928,[2928,3056],3251,[3187,9658],[3252,9659],[3924,9752],3989,3540,3926,3924,3925,3989,3924,3924,3540,3475,3540,3924,3989,[3145,3732],[3207,3733],[3145,3734],[3145,3735],3144,[3146,3986],3924,3926,[3145,4051],[3209,4052,10230],[3146,4053,10232],[3208,4055,10233],3209,[3146,3730],[3145,3731],[3210,3798],3208,3208,3145,3208,3210,3209,3209,3209,[3210,3986],3989,3475,3924,[3987,9751],[3987,9748],[3987,9749],3539,[3209,3991],3145,3208,3145,[3210,3795],[3208,3735],3209,3210,3145,3143,3208,[3209,3796],[3208,3731],[3145,3732],[3145,3733],[3146,3734],[3146,3797],3208,3145,3210,3143,3209,[3210,3859],3926,3989,[3539,10230],[3987,10231],[3924,10133],10037,[3926,9941],[3925,9942],[3923,9943],[3925,9944],[3925,9945],[3924,9942],[3144,3927,9943],[3210,9944],[3144,3986,9945],[3410,9946],10038,10039,[3412,9941],[3540,9845],3925,3924,3925,3987,3989,3987,[3989,9657],[3926,9560],3926,3923,[3925,9559],[3925,9654],3989,3474,3410,3987,3475,3925,[3208,3731],[3145,3735],3210,3207,[3208,4050],[3146,4052],[3146,4053],[3146,4054],[3209,3861],3146,3145,3208,[3210,3730],[3210,3797],3208,3209,3209,[3209,3859],[3208,4052],3926,3925,3475,3923,3987,3923,3924,3924,3411,3989,3924,3923,3926,3987,3925,3989,3923,3924,3987,3924,[3146,3861],3144,3145,3146,3208,3143,[3146,9850],[3208,3796,9851],[3926,9656],3923,[3143,3735],3143,3208,3146,[3209,3986],3923,3925,3924,3924,3989,3538,3926,3987,3924,3987,3925,3923,3924,3542,3923,3987,3924,3541,3542,3412,3923,3542,3987,3476,3410,3475,3542,3924,3474,3924,3925,3987,3924,3925,3923,3410,3989,3924,3989,3923,3540,3989,3925,3989,3925,3926,3924,3925,3923,3411,3410,3923,3925,3924,3475,3411,3925,3925,[3538,9655],9844,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2745,9638],3000,2743,2680,2681,2679,2872,2872,2809,2743,3001,2743,2808,3001,2681,3001,[2873,10115],[3000,10116],[2678,10117],[2681,10120],2743,3000,2681,2679,2872,2936,[2745,10115],[2873,10116],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10022,10023,10024,[2744,10116],[2936,10117],10019,10020,10024,[3001,10116],[2745,10117],[2873,10118],[3000,10119],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[3956,9474],4019,4017,4017,4018,4017,3955,3956,3956,4018,4017,4018,4017,3953,4019,[2804,3957],2933,2868,2933,2932,2869,2932,[2933,3824],[4018,10050],[4019,10051],[3955,10052],[3955,10053],[3569,10054],9954,[4018,9858],[4018,9762],4020,3955,3954,3505,3504,3953,4019,3568,[3062,3957,9767],[3063,9863],9864,[4017,9669],3955,3954,3505,[3953,551],415,415,415,415,415,415,[3062,3761,741],[3505,742],[4019,678],[4020,558],3568,3569,3954,3568,3568,3570,4018,[3062,3829],3063,3063,[3063,3825],3953,4020,3955,4018,3955,[3504,9572],[4017,9665],[3505,9666],4020,3568,3506,[3570,9575],[3505,9576],[9959,9477],[3956,10055],[3568,10050],[3506,10051],[3506,10052],9954,[3570,9858],[4018,9762],3570,[3062,3957],2998,[3062,3952],3570,3506,4017,4018,4017,4018,[3954,9671],[3956,9672],[9959,9477],[3953,615,10048],[415,10054],[3506,741,10055],[3568,678,10147],[3955,558,10148],[4020,10149],[3568,10150],[3506,10050],[3956,10053],[3953,10054],[3568,10055],3505,3504,4019,4020,3569,3954,3953,3504,3956,3570,3504,4019,4019,4019,3955,3570,[3956,9434],[3446,9530],4026,4024,4026,3576,3446,3578,4023,3578,3448,[3062,4089],[3062,4090],[3063,4091],3062,[3063,3958],3447,3578,3511,3578,3448,3574,3446,3961,[4026,9532],[3511,9625],[3961,9626],3512,3578,3962,3962,3642,3643,3447,4023,3447,3962,3511,[4025,9535],[3446,9536],3961,3959,3449,3448,3448,3448,[3063,4027],3063,3062,3062,3063,3063,[3062,3896],[3063,3898],3062,3063,[3063,3056],3252,3250,3252,3188,3187,3187,3252,3187,3187,3249,3188,3251,[3186,9628],[3252,9817],[3249,9818],3186,3185,3252,3250,[3249,9823],[3186,9824],[3250,9629],3188,3186,3188,[2802,2997],2802,[2930,3121],[2930,3317],2930,2930,[2930,3058],[2802,2993],[2931,2997],2930,[2867,3121],[2802,3313],[2802,2993],[2931,2997],2802,2867,2802,2802,2802,[2802,3248],3185,3251,3251,3185,3187,3185,3188,3187,3249,[3250,9823],[3251,9919],9920,[3250,9725],3251,3250,3188,3249,3251,3249,[3251,9433],[3186,9434,5485],[3249,9530,5486],[3252,5487],[3249,5488],[3252,5489],[2928,3253],2928,2928,[2928,3121],[2928,3313],3188,3251,[3186,9724],9913,[3252,9914],[3185,9818],3250,3185,[2928,3315],[2928,3316],[2928,3317],2928,[2928,2992],[2928,2993],3188,[3249,9823],[3249,9824],[3250,10111,9629],3188,[3252,5586],[3249,5587],[3250,5588],3252,[2928,3060],2928,[2928,3120],3187,3252,[3187,9562],[3924,9466],3474,3924,3926,3923,3477,3987,3926,3989,3924,3925,3604,3605,3924,3923,3987,3925,[3209,3991],3145,[3145,4050],[3207,4051],[3208,3862],3209,3209,3145,3146,[3145,3796],3923,3925,3989,[3146,3731],[3146,3732],[3146,3733],[3209,3734],[3209,3798],3209,3143,3208,[3210,4050],[3210,4051],3923,3925,[3925,9556],[3926,9557],[3146,4053],[3207,4054],[3146,4055],3207,[3146,3730],[3207,3731],3987,[3208,3991],3208,3208,3209,3208,[3146,3730],3987,3925,3924,3924,3987,3987,[3146,3732],[3207,3733],[3146,3735],3146,3209,3209,[3208,3986],3924,3987,3538,3539,[3989,10133],10037,10038,10039,10040,10041,10038,10039,10040,10041,10042,[3143,4054,10134],[3925,10135],10037,[3210,4051,9941],[3208,4052,9942],[3210,4053,9943],[3145,4054,9845],3926,3987,[3989,9850],[3987,9851],[3987,9656],3987,3926,[3923,9655],[3926,9844],[3987,9845],3411,3926,3926,3410,3412,3923,3923,[3210,3731],[3145,3798],3208,3146,3144,3146,[3208,3796],[3208,3732],[3146,3733],[3143,3734],3925,3987,[3209,3732],[3210,3733],[3209,3734],[3143,3735],3145,[3146,3859],[3209,4051],3923,3925,3475,3926,3923,3540,3410,3924,3926,3989,3923,3987,3538,3989,3539,3987,3924,[3208,4055],3146,3208,[3209,3796],[3146,3731],[3145,3798],[3209,9850],[3210,3795,9946],9947,[3923,9752],3475,3926,[3145,3797],3146,[3143,3796],3923,3926,3926,3989,3987,3477,3987,3989,3411,3925,3926,3923,3987,3989,3925,3926,3539,3412,3926,3924,3410,3542,3926,3410,3926,3987,3540,3541,3411,3538,3538,3926,3926,3412,3412,3989,3411,3538,3923,3413,3987,3412,3924,3989,3411,3477,3925,3541,3923,3989,3412,3923,3926,3987,3989,3538,3926,3474,3413,[3926,9751],9940,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2679,9638],2872,2743,2808,2873,2745,2936,2743,2678,2936,2873,2873,3001,2936,2872,2936,2743,[2872,10212],[2873,10213],2872,2743,2936,2743,2872,2872,2681,3000,[2872,10212],[2743,10115],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10024,[2745,10118],[2808,10119],[2808,10120],[2872,10212],[3000,10213],[2681,10115],[2743,10116],[2743,10120],[2681,10212],[2936,10213],[2745,10214],[2681,10215],[3000,10115],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9476],[3440,9569],3568,4018,3953,3953,3441,4020,4017,3954,3954,3955,3954,4017,4018,4020,3953,4017,[2868,3828],2932,2804,2932,2804,2932,[2869,3952],4018,[4017,10147],[4018,10148],[3955,10149],[3506,10150],[4017,10050],9954,[3569,9858],[3955,9859],[4018,9860],[3504,9861],[3569,9862],[3953,9859],[3570,9860],[3953,9861],[3570,9862],[3570,9863],9959,[3569,9960],[3569,9765],4017,3504,3505,3568,[3569,550],[4018,550],[3955,550],[3569,550],[3955,551],415,415,415,[3569,549],3505,3504,3504,3953,4019,4017,3505,4017,[3062,3893],3063,[2999,3760],3956,3504,3506,3505,3956,3953,[3953,9572],[4017,9761],[3953,9762],3505,3571,3506,[4017,9671],[3570,9672],[3956,10055,9573],4018,3956,[3569,10147],[3568,10148],[3954,10050],[9954,9476],[4017,9569],[3063,4084,9570],[3063,3892],3062,[3063,4016],3568,4019,3504,3505,3954,3954,[3506,9767],[3506,9768],[3955,10055,9573],[4017,615,10144],[415,10150],415,415,[4018,613],3568,3570,4019,[3570,10149],[3954,10150],3956,4019,3953,4019,3568,3955,3956,3506,4017,3956,4019,3955,3568,3636,3637,4019,[4020,9434],[4025,9530],3512,3511,3510,4026,4026,3960,4023,4026,3446,[3063,3897],3062,3062,3062,[3062,3832],3447,3446,4024,3576,3574,4026,3448,4024,4023,[3961,9724],[3447,9721],[3512,9722],4023,4023,3961,3448,3706,3707,3575,3510,3578,3962,3575,[3574,9631],[3959,9632],[4024,9533],4024,3577,3575,3446,3574,3961,[3063,3833],3063,3062,3062,3063,3063,3063,3063,3063,[3063,3120],3252,3252,3187,3250,3185,3251,3186,3187,3250,3252,3251,3188,[3188,9724],9913,[3185,9914],[3249,9818],3249,3252,[3251,9823],[3249,9919],9920,[3188,9725],3250,3250,3187,[2931,3253],2802,2930,[2802,2992],[2930,3059],[2802,3057],3251,3251,3250,[2930,3059],2802,2930,[2866,3248],3251,[2930,3059],2931,2930,2802,[2931,3057],3249,3249,3186,3186,3250,3249,3185,3185,3251,[3252,9631],[3186,9632],[10015,9533],[3188,10016],[3249,9821],3249,3187,3251,3250,3186,[3251,9433],[3188,9434],[3185,9530,5581],[3252,5582],[3251,5583],[3187,5584],[3249,5585],3186,[2928,2993],[2928,2997],2928,2928,[2928,3056],3250,[3187,9820],[3187,10009],10010,[3185,9914],[2928,3316,9818],[2928,3123],2928,2928,2928,[2928,3058],3249,3185,[3252,9823],[3249,9919],9920,[3251,9725],3186,[3250,5682],[3188,5683],[3252,5684],3250,[2928,3253],2928,[2928,3184],3249,3188,3187,[3251,9562],[3989,9563],3924,3474,3926,3538,3926,3989,3987,3923,3926,3668,3669,3926,3926,3924,3923,[3145,3799],3145,3145,3208,[3210,3796],[3210,3731],[3208,3732],[3146,3733],[3210,3734],3924,3925,3923,3924,3925,3987,3540,3924,3926,[3210,3731],[3146,3797],3146,3207,3209,[3208,4050],[3208,4052,9559],[3923,9652],[3145,3991,9653],3208,3146,3209,[3145,3795],3924,3989,3987,3924,[3145,3731],[3207,3732],[3145,3733],[3208,3734],3538,3925,3926,3923,3925,3924,3926,3924,3924,3987,[3208,3797,1414],[3146,1415],[3209,1416],[3210,4050],[3209,4053],[3145,4054],3924,3989,3989,[3925,10133],[3410,10134],[3143,4053,10135],[3210,4054,10136],[3145,3861,10137],[3145,10134],[3145,10135],[3209,10136],[3145,10137],[3210,10138],[3210,10230],[3146,4050,10231],[3145,3861,10133],10037,10038,10039,[3208,9941],[3208,4050,9944],[3208,4053,9945],[3210,4054,9946],9947,[3926,9752],3925,3926,[3538,9751],9940,[3412,9941],[3926,9942],[3412,9943],[3923,9845],3987,3989,3475,3924,[3989,9850],[3210,3862,9942],[3210,9943],[3146,9944],[3209,3730,9945],[3143,3731,9845],3924,3925,3989,3924,3924,3926,3924,3987,3410,[3208,3991],3210,3145,3207,[3146,3794],3989,3924,3925,3925,3475,3923,3989,3923,3926,3475,3923,3925,3925,3926,3989,[3207,3799],3209,[3146,3730],[3210,3731],3925,3989,[3926,9850],[3210,3731,9946],10042,[3925,10043],[3474,9848],3538,3538,3540,[3143,3731],3925,3989,3474,3923,3987,3476,3987,3987,3923,3989,3923,3410,3413,3541,3923,3923,3540,3474,3606,3607,3926,3474,3477,3926,3474,3539,3539,3474,3924,3413,3924,3987,3926,3989,3923,3475,3923,3924,3987,3924,3542,3924,3476,3475,3989,3923,3926,3987,3412,3475,3987,3925,3474,3540,3989,3925,3540,3925,3924,3987,[3412,9847],[3987,10036],[10037,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[2936,9638],3001,2936,3001,2745,2936,3001,2936,2743,2681,2936,2873,3001,2873,2809,2680,2872,[3000,64],2743,3001,2744,2872,2873,2872,2679,2936,2743,3001,2936,[2681,10115],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[10024,9542],[2679,10120],[2679,10214],[2872,10215],2743,2808,2680,2872,[2679,10212],2873,3000,2936,2936,2937,2873,[2873,10115,9637],9730,9731,9832,9924,9827,0,0,0,0,9832,9926,9927,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3568,9665],[4019,9666],3954,3954,3955,4020,3955,3954,3956,4020,4017,4020,4017,3955,3954,4018,3955,3954,[2932,3761],[2932,3765],2804,2869,2932,[2932,4080],3954,4019,3956,4018,3506,4020,[4019,10050],9954,9955,9956,9957,9958,9955,9956,9957,9958,9959,[4017,10055],3569,3505,3505,3505,4019,3953,3442,3568,4017,3504,3441,[3505,550],[3505,550],[3956,550],3570,4019,4020,3955,3956,3570,3956,3568,3955,[3062,3957],3063,[3062,4080],[3063,4083],3955,4017,3568,3504,4018,[3505,9668],9857,[3505,9858],[3568,9859],[3955,9860],[3570,9861],[3568,9862],[4020,9768],[4017,9573],3506,4020,3954,4018,3953,[3955,10050,9572],[3063,3829,9665],[3063,9666],3062,[3062,3760],3568,3954,3569,3955,[3505,9767],[4017,9861],[3570,9862],[3954,9863],9864,[3956,9669],[3955,679],415,415,415,[3953,677],3953,3570,3568,4017,4017,4018,4019,3955,3568,3505,3956,3570,3956,3956,3953,4020,3954,4020,3700,3701,[3568,9532],[3962,9625],[3577,9626],3577,3448,3511,4023,4026,3578,3448,3578,[3062,4027],3063,[3063,3831],[3062,3768],[3063,3770],3577,3574,4025,3448,3447,4023,4026,3578,3448,[4025,9433],[3576,9434],[3512,9530],3512,3448,3510,3448,3576,3448,3575,3575,3446,3448,3575,3961,[3448,9727],[3448,9728],[3448,9629,9339],[3447,9340],[4025,9341],[4025,9342],4026,3512,3446,4024,[3063,3767],[3062,3834],3063,3062,3062,3063,3062,2998,[3063,3184],3186,3185,3187,3187,3188,3185,3187,3187,3252,3187,3250,3252,[3251,9820],[3187,10009],10010,[3249,9914],[3188,9917],[3249,9918],[3252,9919],10015,[3187,10016],[3186,9821],3186,3249,[2930,3316],[2930,3317],2802,2802,[2802,3248],3188,3187,3251,3185,3249,3250,[2930,2997],2930,[2931,3121],3250,3185,[2930,2994],[2802,2995],[2802,2996],3250,3249,3250,3185,3188,3249,3186,3185,3249,3187,[3252,9727],[3187,9728],[3249,10111,9629],3185,3252,3185,3249,3188,3185,3186,[3186,9529],[3252,9530],[3252,5677],[3187,5678],[3185,5679],[3186,5680],[3251,5681],3252,3251,[2928,3253],2928,2928,[2928,3184],3252,3249,3251,[3187,10106],10010,[2928,9914],[2928,9818],2928,[2928,3057],[2928,2993],3186,3249,[3249,9823],[3252,9919],10015,[3187,10016],[3250,9821],3187,[3251,5778],[3185,5779],[3188,5780],3187,[2928,3317],2928,[2928,3248],3249,3185,3188,[3185,9658],[3186,9659],[3923,9560],3925,3926,3987,3411,3987,3926,3989,3539,3925,3926,3924,3925,3475,3926,[3209,3863],3145,[3209,3795],[3210,3731],3989,3925,3926,3989,3925,3926,3987,3923,3926,3538,3987,3987,3604,3605,3923,[3208,3991],3143,3143,3209,3209,[3208,9655],[3210,3859,9748],[3146,4055,9749],3209,[3209,3795],[3207,3731],3924,3926,3987,3925,3989,3410,3924,3476,3989,3926,3923,3926,3989,3924,3412,3924,3926,3538,[3923,1477],[3926,1478],1479,[3145,3798,1480],[3209,1481],3145,3208,[3207,3859],3926,[3209,4055],[3210,3860],[3210,3861,10230],[3209,10231],[3210,10232],[3210,3795,10233],[3145,3732,10230],[3209,3733,10231],[3208,3734,10232],[3210,3798,10233],3145,[3207,3730],[3146,3731],[3146,3732],[3146,3733,10133],[3145,3734,10134],[3146,3797,10135],10037,10040,10041,10042,[3144,4050,10043],[3209,4054,9848],[3145,4053],[3146,4053],[3924,9847],[3987,10036],10037,10038,10039,[3989,9941],[3208,4051,9942],[3145,4052,9943],[3143,4053,9944],[3143,4054,9945],[3210,4055,9946],10038,10039,10040,10041,[3989,9941],[3987,9845],3987,3474,3412,3923,3412,3989,3924,3925,3989,[3146,3797],3145,3210,[3144,3858],3926,3987,3987,3926,3989,3923,3475,3987,3606,3607,3538,3924,3925,3926,3411,[3145,3863],3144,[3209,3794],3539,3925,[3987,9658],[3540,9659],[10042,9560],[3987,10138],3989,3989,3923,3924,3987,3989,3924,3412,3476,3410,3987,3412,3926,3925,3989,3541,3989,3989,3926,3989,3476,3925,3474,3475,3670,3671,3413,3539,3923,3413,3925,3926,3924,3475,3925,3540,3540,3542,3538,3925,3924,3926,3474,3411,3477,3476,3923,3924,3411,3987,3925,3411,3924,3926,3475,3924,3923,3989,3987,3926,3412,3989,3987,3926,3474,3474,3542,3925,[3926,10133,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9924,9925,9926,9927,9928,9929,[2743,9734],2679,3000,2681,2743,2872,2936,2872,2808,2743,2873,2872,3001,2679,2743,2679,2936,2679,2744,2873,2872,2681,3001,2745,3001,2745,2681,2936,2681,2745,[2679,10115],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2808,10120,9638],2743,2808,2681,2808,2872,2872,2679,3001,2743,2745,2744,2745,2744,2678,[2680,9637],9826,9924,9928,10020,9923,9827,0,0,9832,9928,10022,[10023,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9377],[415,9378],[3504,9474],4019,4020,4019,3954,4018,4020,3954,4018,3955,3955,3953,4017,3954,3956,4017,3956,4017,[2932,4084],[2869,4085],[2869,3825],[2869,3827],2868,2933,[2932,4016],3954,4019,4020,4017,3506,3506,[3570,10050],[3956,10051],[3572,10052],[3955,10053],[3505,10054],[3568,10051],[3506,10052],[3955,10053],[3953,10054],[3570,10055],3440,3569,4017,3570,3955,3570,4018,3504,3507,3955,3568,4017,4020,3955,4020,3956,3956,3570,3955,4018,4018,3504,3955,3506,3506,[3062,3827],3062,3063,[3062,3889],[3062,4083],4019,3954,3955,[3505,9764],[4017,9953],9954,9955,9956,9957,9958,9864,[3954,9669],4018,3504,4017,3572,4019,[3569,9572],[3063,3957,9569],[2998,9570],[3062,3825],4018,3569,4018,3506,[4020,9767],[3569,9863],9957,9958,9959,[4018,9960],[3505,9765],3569,[3570,551],415,415,[3506,741],[4020,742],[3568,742],[3953,678],[3954,558],4020,3953,3568,3954,3505,3953,4019,4020,4018,3956,3954,4019,3956,3953,3570,3955,[3504,9628],[4025,9721],[3962,9722],3578,3576,3512,3448,3448,3448,3447,4026,3448,[3063,3767],3511,4026,3446,3448,4023,3447,3448,3448,4023,4026,4024,3446,[3448,9529],[4023,9530],4026,3510,4024,3574,4026,3446,4024,3446,3577,3447,4025,4024,4023,3510,[3512,9535],[3578,9435],[4025,9436],[3576,9437],[3512,9438],[3959,9439],3960,4024,3447,3578,[3063,4027],3062,3062,2998,3062,3062,[3062,3057],3249,3185,3185,3185,3250,3251,3249,3249,3188,3251,3188,3250,3249,3186,3186,[3249,10106],10010,10013,10014,10015,[3186,10111],3187,3187,[2866,3316],[2931,3317],2802,2930,2802,[2802,3057],3250,3186,3185,3187,3251,3250,3252,[2803,3061],2802,2931,[2930,3122],3249,3251,3185,3187,3251,3249,3252,3252,3186,3186,3185,3188,3251,3186,[3186,9823],[3185,9824],[3249,9629],3187,3251,3186,3252,3188,3188,[3186,9532],[3249,9625],[3250,9626],[3188,5773],[3188,5774],[3187,5775],[3249,5776],[3251,5777],3187,3249,3186,[2928,3060],2928,[2928,3121],[2928,3314],3252,3185,3250,[3188,10106],10010,[2928,2994,9625],[2928,2995,9626],3186,3252,3250,[3187,9631],[3185,9632],10015,[3187,10111],3252,3186,3249,3252,3187,3186,[2928,3124],2928,[2928,3057],3249,3250,[3249,5490],[3187,5491],[3249,9754,5492],[3188,9755],[3925,9656],3924,3924,3989,3987,3924,3926,3925,3925,3474,3989,3926,3925,3924,3926,[3146,3927],3146,[3146,3794],3539,3925,3925,3925,3926,3924,3476,3987,3923,3923,3924,3923,3926,3668,3669,3474,3538,[3207,3731],[3210,3735],[3209,3796],[3208,3735],[3146,9655],[3145,9652],[3208,3730,9653],[3143,3731],3989,3411,3926,3923,3926,3476,3926,3924,3989,3923,3926,3987,3925,3989,3476,3923,3989,3926,3475,[3989,1540],[3924,1541],1542,1543,1544,[3146,3797,1545],[3210,1546],3209,3145,[3209,3986],[3146,3797],3209,3207,3144,3146,[3145,3986],3474,3925,3410,3925,[3145,3731],3923,3925,3924,3987,[3987,10230],[3926,10231],[3146,3731,10133],[3210,3797,10136],[3145,10137],[3210,10138],3146,3207,3209,3209,[3143,3859],[3210,4051],[3145,4052,10133],[3146,4053,10134],[3207,4054,10135],10037,10038,10039,10040,10041,10042,[3209,10134],[3146,10135],[3143,3794,10136],[3924,10137],10037,[3924,9941],[3987,9845],3926,3987,3989,3925,3987,3926,3926,3987,3926,[3146,3798],3146,[3145,3922],3924,3923,3925,3987,3925,3924,3925,3923,3670,3671,3923,3923,3989,3924,3926,[3146,3927],3208,[3210,3858],3926,3923,[3987,9754],[3987,9755],[3476,10138,9656],3604,3605,3926,3923,3925,3925,3926,3989,3926,3987,3923,3410,3926,3926,3539,3539,3987,3925,3925,3987,3924,3926,3989,3987,3924,3474,3924,3925,3989,3989,3987,3925,3989,3923,3987,3926,3926,3923,3538,3987,3924,3987,3926,3925,3542,3923,3923,3410,3477,3410,3987,3476,3989,3538,3474,3411,3476,3989,3926,3539,3924,3925,3924,3925,3987,3412,3412,3987,3411,[3925,9751],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10020,10021,10022,10023,10024,[3000,10025],[2744,9830],2808,2681,3000,2745,2679,2681,2743,2936,2745,2936,2745,2680,2872,2745,2872,2872,3001,2745,2873,2873,2872,2873,2743,2937,2873,2873,2745,2678,2742,2872,[2744,10115],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[2681,9638],2745,2936,2872,2744,2872,2743,3000,2678,2745,2745,2873,3000,2681,2679,[2743,9733],9922,10020,10024,[2743,10116],10019,9923,9926,9927,9928,10024,[2872,10118],[2743,10119,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[3505,9474],4017,4017,4017,3953,4018,3955,3442,3955,4020,4017,4020,4019,4017,4020,3956,3568,[2804,4083],[2868,3892],2933,2868,[2933,4016],3953,[2932,3765],2868,[2933,3889],3956,4019,3955,3568,3954,3440,3441,[3570,10147],[3570,10148],[3955,10149],[3953,10150],[4020,10147],[3570,10148],[3506,10149],[3570,10150],3953,4020,3504,3506,4020,4020,3506,4018,4019,4017,3956,3953,3955,3956,4019,[3954,8453],[4018,8545],[3956,8546],[3956,8448],4019,4020,4020,3954,3953,[3955,8164],3956,4018,[3063,3827],3063,2998,3062,[3063,3889],3954,3442,4018,4020,[3953,10050],[3569,10051],[4019,10052],[4020,10053],[3954,10054],[3953,9960],[3569,9765],3568,3505,4020,3956,3506,[4019,9572],[4020,9665],[3063,3761,9666],3954,3955,3954,3570,[3954,9767],[3953,9863],9959,[3954,10053],[3506,10054],[4018,10055],3568,3504,3506,3568,[3955,550],[3568,551],415,415,415,415,[4017,613],3569,3504,3568,3956,3954,3953,4017,3506,3568,4018,4020,3505,4018,4020,3956,3568,[3953,9628],[3962,9721],[4024,9722],4025,4025,4026,4023,3574,3959,4025,3578,4024,3574,3578,4023,3447,3448,4026,3448,3512,4025,3511,3448,3577,[3447,9532],[3447,9625],[4024,9626],3578,3960,3962,3578,3578,3575,3510,3447,4025,3447,3577,3578,3511,4024,3577,4024,3446,3578,3578,[3511,9535],[3577,9536],4023,4024,3448,3448,[3062,3771],3063,3063,3063,3062,[3063,3248],3187,3249,3250,3249,3250,3186,[2867,3315],[2802,3316],3250,3252,3188,3249,3187,3185,3187,3252,[3250,10106],[3252,10109],[3188,10110],[3185,10111],3188,3186,[2802,3061],2931,2931,[2802,2992],[2802,2994],[2930,2996],3185,3251,3251,3250,3187,3187,3252,3188,[2867,3189],2930,2930,2802,[2802,3248],3250,3251,3187,3187,[2930,3316],3251,3252,3187,3252,3252,3252,3251,[3249,9823],[3252,9919],9920,[3250,9725],3185,3249,3185,3250,3187,3186,[3186,9628],[3185,9721],[3252,9722],[3252,5869],[3251,5870],[3185,5871],[3250,5872],[3249,5873],3249,3187,3188,3188,[2928,3059],2928,2928,[2928,3248],3249,3250,3187,[3185,10106,9532],[3249,9721],[3250,9722],3252,3252,3187,[3252,9727],[3252,9728],[3250,10111],3188,3250,3251,3251,[2928,3315],[2928,3316],[2928,3123],2928,2928,[2928,3248],3187,3186,[3250,5586],[3187,5587],[3252,5588],[3249,9562],[3923,9563],3923,3925,3989,3475,3926,3923,3475,3989,3540,3989,3925,3924,3989,3923,[3145,3991],3208,[3143,3858],3926,3924,3924,3923,3925,3411,3923,3924,3923,3924,3987,3924,3926,3987,3987,3475,3989,3925,3987,3475,[3208,3799],[3209,9655],[3146,9844],[3145,3986,9845],3924,3924,3925,3989,3923,3926,3923,3412,3925,3925,3923,3925,3925,3474,3924,3925,3987,3926,3926,3987,[3926,1604],1605,1606,1607,1608,1609,[3209,3732,1610],[3145,3734],[3208,3735],[3146,4050],[3146,4055],[3207,3795],[3145,3732],[3210,3734],[3146,3798],[3210,3859],3474,3476,3926,3540,3987,3924,3925,3989,3411,3989,3926,3926,[3208,4055,10232],[3209,10233],3146,3210,3146,3209,3207,3146,3210,3210,[3143,10230],[3146,10231],[3144,10133],[3209,10134],[3145,3796,10135],[3210,3734,10136],[3210,3735,10137],[3210,10138],[3146,10230],[3146,10231],[3210,3858,10232],[3923,10233],[3924,10133],10037,[3989,9941],[3923,9845],3923,3924,3925,3540,3923,3926,3923,3926,[3146,3991],3146,[3145,4050],3412,3926,3540,3924,3925,3987,3926,3926,3926,3924,3924,3989,3926,3924,3924,[3143,3991],3144,[3145,3922],3989,3987,[3923,9850],[3926,9851],[3924,9656],3668,3669,3987,3923,3923,3540,3410,3925,3410,3413,3542,3924,3924,3989,3923,3475,3538,3989,3412,3925,3538,3411,3926,3926,3542,3924,3539,3926,3924,3538,3923,3410,3926,3410,3989,3925,3987,3926,3412,3989,3411,3540,3924,3540,3542,3987,3989,3926,3538,3924,3987,3475,3540,3926,3925,3926,3925,3987,3924,3412,3923,3476,3540,3412,3987,3538,3542,3925,3923,[3989,9461],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10024,[2681,10116],[3000,10117],[2743,10118],[3000,10119],[2936,10120],2743,2743,2936,2873,2873,2936,2808,3001,2744,3001,3001,2936,2808,2936,2681,2681,2873,3001,2873,2745,2679,2680,2681,2744,2742,2680,2679,2936,2873,2872,2743,2680,2745,[3001,10115],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9926,9927,9928,9929,[2808,9734],2872,2681,2809,2743,2936,3000,2936,2743,2872,3000,3001,2872,2873,2681,[2743,9829],[2936,10018],[2936,10116],[2681,10120],[2872,10212],[2936,10115],10019,10022,10023,10024,[2808,10120],[2872,10214],[2873,10215,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9476],[3955,9569],[3504,9570],3504,4018,3955,3954,4019,4020,4019,3955,4020,4020,3955,3956,4019,3956,3570,[2869,3891],2932,2932,2933,[2868,3825],4020,4018,3954,[2868,3827],2869,[2868,3889],3954,4017,4018,3634,3635,4019,4017,3440,3506,3570,3569,3505,3569,4017,4017,4020,3955,4017,3568,3569,3569,4017,3505,3955,3570,3954,4018,3955,[3956,8453],[3954,8549],8641,8642,[3953,8544],[4019,8448],3955,3954,4017,3956,[4017,8260],[4020,8163],3956,3505,[3063,3761],[2998,3765],2998,3063,[3062,3824],3506,4020,3570,3441,[3953,10147],[3506,10148],[3568,10149],[3955,10150],3956,4020,3570,4020,3636,3637,3569,[4020,9572],[3570,9569],[3954,9570],3955,4017,3955,[3568,9671],[3504,9672],[9959,9477],[3441,10055],[3570,10149],[3954,10150],[3954,10151],4017,4018,3506,4018,3506,3504,[3505,550],[3504,550],[4019,550],[3955,550],3504,3956,4020,3505,3568,3956,4018,3956,3506,3572,4017,3504,3505,3506,3506,3570,3506,[3570,9628],[3959,9817],[3447,9818],3959,4026,3447,3961,3577,3446,4025,3510,4023,4024,4024,4023,4024,3510,3446,3575,3574,4025,3577,3962,4023,[3962,9628],[3578,9721],[3448,9722],4025,4024,4023,3577,4026,[3575,9823],[4026,9915],[4023,9916],[3447,9818],4026,4023,3574,3448,3575,3446,3447,3512,3576,3448,3512,[3574,9535],[3576,9439],3448,4026,3447,3449,[3062,3767],[2998,3834],3063,[3062,2992],3186,3188,3188,3188,3186,3186,[2803,3061],2866,2803,[2930,3121],[2931,3313],3252,3249,3252,3251,3252,3249,3250,[3185,10205],[3249,10206],3252,3188,3252,[2802,3189],2867,2930,[2802,3056],3187,3188,3250,3186,3252,3187,3252,3186,3251,3185,3185,[2802,3060],2802,2931,[2931,3312],[2931,3313],3187,3185,[2802,3253],2931,[2802,3056],3249,3249,3249,3186,3185,[3186,9631],[3186,9632],10015,[3252,10016],[3187,9821],3185,3250,3187,3249,3252,3186,[3187,9628],[3186,9817],[3252,9818],3185,[3249,5966],[3249,5967],[3188,5968],3185,3252,3250,3187,3187,3186,[2928,2994],[2928,2996],3185,3186,3252,3250,[3186,9628],[3252,9625],[3185,9626],3250,3251,3185,3188,[3187,9535],[3249,9536],3187,3187,[2928,3316],[2928,3317],2928,2928,2928,2928,2928,[2928,3121],3250,3252,[3188,5682],[3249,5683],[3185,5684],3186,[3250,9562],[3410,9563],3924,3474,3410,3923,3924,3411,3987,3989,3989,3987,3989,3476,3926,[3209,3799],3209,[3210,3922],3539,3925,3923,3987,3539,3413,3923,3923,3474,3923,3987,3926,3924,3926,3923,3989,3925,3926,3989,3926,[3208,3927],[3145,9751],9940,[3145,3794,9941],[3926,9845],3923,3474,3987,3923,3987,3989,3475,3924,3925,3923,3923,3989,3925,3924,3989,3987,3924,3925,3925,[3926,1668],1669,1670,1671,1672,1673,[3989,1674],3476,[3208,4055],3146,[3145,3730],3923,3924,3924,[3210,3799],3208,[3146,3986],3987,3410,3989,3924,3989,3924,3925,3923,3924,3923,[3144,3991],3210,3208,[3145,3730],[3208,3731],[3146,3732],[3210,3733],[3209,3731],[3209,3732],[3145,3733],[3208,3734],[3210,3731],[3146,3732],[3210,3733],[3210,3734,10230],[3924,10231],[3987,10232],[3412,10233],[3208,3798],3210,3208,[3209,3922],3987,3924,[3925,10133],10037,[3989,9941],[3925,9942],[3923,9943],[3924,9944],[3924,9945],[3924,9845],3539,3923,3410,3926,[3209,3797],3210,[3143,3860],[3210,4054],3926,3987,3925,3475,3925,3989,3987,3925,3989,3926,3989,3925,3476,[3145,3799],3146,[3210,4050,9850],[3923,9942],[3474,9943],[3987,9946],9947,[3923,9752],3987,3923,3925,3410,3989,3987,3540,3925,3477,3926,3987,3413,3987,3539,3989,3412,3538,3924,3412,3924,3540,3923,3926,3925,3539,3989,3989,3412,3989,3412,3987,3538,3540,3538,3989,3925,3924,3989,3540,3925,3989,3476,3538,3474,3540,3923,3925,3412,3541,3987,3926,3475,3926,3924,3475,3474,3923,3924,3926,3540,3924,3926,3924,3411,3924,3411,3411,3989,[3989,9556],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[2679,10120],[2743,10212],[2681,10213],[2678,10214],[2872,10215],2679,2681,2745,2745,2743,2680,2745,3000,2679,3001,2743,2743,2681,2681,2742,2745,2745,2872,2679,2872,2936,2872,2679,2745,2743,3001,2681,2936,2681,3001,2809,2679,3000,2681,2873,[3000,10115,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10022,10023,10024,[2873,10025],[3001,9830],2745,3001,2873,2681,2743,2679,2743,2936,2680,2745,2743,3000,2936,2743,3001,2678,[2873,10212],2679,2873,2743,[2745,10115],[2679,10118],[2873,10119],[2872,10120],3000,2743,[2681,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3568,9665],[3505,9666],3955,3504,3956,3956,3955,3954,3955,3956,3953,4018,3953,4019,4018,4018,[2933,4085],2804,2932,[2932,3760],[2804,3761],4017,4019,3955,4017,[2804,3829],2868,2868,[2932,4016],4017,3953,3698,3699,3954,3504,4018,3955,3504,3506,3441,3568,3504,3442,3955,3504,3506,4020,4017,3568,3954,3568,3570,3504,4020,4018,[4020,8261],[4017,8262],[8645,9477],8737,8738,8640,[3954,8544],[4020,8545],[3953,8546],[3954,8547],[3506,8548],[3504,8454],[3507,8259],4019,4018,4018,[3063,4021],3062,3063,[3063,3888],4018,4020,3569,3506,3506,3953,4018,3954,4018,4017,3570,3953,3700,3701,3569,[4017,9572],[4017,9665],[3954,9666],4020,3570,3570,[4020,9575],[4017,9576],[4018,10055,9573],3956,3569,3955,3440,3953,3506,3953,4020,3569,3568,3955,3569,4017,3956,3568,3505,4020,3955,3506,4018,4018,3440,3570,3568,3440,4018,3506,3504,4019,3506,3953,[3570,9724],9913,[3961,9914],[3447,9818],4024,4025,3577,3447,4026,3961,4026,3446,3577,4026,4024,3578,3447,3576,3448,3575,3578,4025,3446,4023,[3578,9628],[3577,9625],[3962,9626],3511,3448,4026,3510,[3512,9823],[3962,9919],10011,10012,[4026,9914],[3575,9915],[3512,9916],[3961,9818],3578,3447,3574,4025,4026,4023,3961,4023,3578,[3511,9535],[4023,9536],4025,3959,3447,4024,[3062,4027],3063,[3063,3056],3249,3186,3251,3187,3187,3250,[2931,3189],2931,[2931,3058],[2931,2997],2866,[2931,3248],3188,3186,3252,3251,3251,3186,3186,3249,3188,3249,3252,[2866,3317],2930,2931,[2930,3184],3187,3185,3187,3185,3187,3186,3250,3249,3188,3250,3252,[2802,3253],2931,2802,2930,2930,[2866,3122],[2930,3315],[2802,3123],2802,[2931,3184],3251,3252,3187,3251,3252,[3187,9727],[3187,9728],[3188,10111,9533],3185,3251,3187,[2928,3315],3249,3249,3250,3185,[3249,9724],9913,[3252,9914],[3249,9915],[3187,9916],[3249,9818],3249,3250,[2928,3123],[2928,3056],3187,3186,3249,3185,3252,3251,3249,3249,[3251,9339],[3251,9724,9342],[3250,9721],[3186,9722],3249,3251,3186,3251,3188,[3250,9535],[3185,9439],[2928,3124],2928,2928,[2928,3057],[2928,2994],[2928,2995],[2928,2996],[2928,2997],2928,[2928,3312],3187,[3249,5778],[3251,5779],[3251,5780],3185,3250,[3249,9562],[3987,9563],3987,3989,3539,3924,3924,3924,3923,3412,3925,3989,3924,3926,[3210,3863],3146,[3207,3986],3987,3987,3923,3925,3989,3411,3924,3926,3989,3926,3925,3923,3925,3925,3924,3476,3923,3925,3989,3926,3412,[3210,3798,9847],[3145,10036],[10037,9559],[3923,9652],[3989,9653],3925,3923,3987,3926,3412,3926,3540,3924,3989,3539,3924,3989,3925,3923,3989,3924,3924,3477,[3926,1732],1733,1734,1735,1736,1737,[3926,1738],[3210,3862],3146,[3208,3795],3989,3925,3476,3926,[3210,3927],3208,[3210,4050],[3210,4051],3987,3989,3987,3989,3987,3987,3926,3411,3987,[3146,3862],3209,[3208,3795],3926,3925,3923,3987,3923,3989,3926,3923,3926,3923,3926,3923,3926,3924,3987,3987,[3144,3735],3209,[3145,3986],3989,3539,3989,[3925,10133],10037,10038,10039,10040,10041,[3987,9941],[3923,9845],3989,3989,3925,3925,[3208,3731],[3146,3798,9561],3145,[3144,3794],3925,3987,3987,3989,3925,3924,3989,3926,3538,3925,3540,3924,[3209,3927],[3209,9850],[3145,9946],10038,10039,10042,[3476,10043],[3987,9848],3989,3924,3924,3925,3923,3989,3923,3923,3924,3538,3476,3538,3923,3987,3411,3923,3538,3926,3412,3540,3475,3538,3539,3475,3987,3477,3925,3475,3475,3538,3926,3542,3411,3924,3926,3924,3475,3413,3475,3540,3925,3987,3476,3926,3474,3924,3987,3540,3987,3925,3926,3925,3987,3411,3412,3923,3987,3410,3925,3410,3475,3926,3923,3987,3989,3926,3989,[3476,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2873,10120,9638],2745,2808,2679,2808,2681,3001,2678,2936,2873,3000,2872,2808,2681,3000,2679,2743,3000,3001,2937,2872,2873,2873,2742,2743,2681,2873,2745,2873,2681,3000,2873,2743,2681,3000,2937,2873,2743,2681,2873,2872,[2679,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10024,[2742,10118],[2680,10119],[2743,10120],2745,2681,3000,2681,2745,2743,2936,2872,2872,2808,2873,2679,2679,2873,3001,2679,2744,2681,2679,2743,2873,2873,2808,[2808,10214],[2745,10215],2679,2680,2808,[2872,9733],9922,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9377],[415,9378],[3954,9474],4020,4020,4020,4019,3956,4018,4020,3953,4019,3953,3954,3955,4018,3955,3954,[2933,3827],2932,[2868,3825],4018,3954,3955,3953,4017,3954,[2869,3893],2869,2869,[2932,4016],3956,3570,4020,3954,3569,4018,3569,3954,4017,3569,3570,3506,3956,3956,3953,4017,4017,3569,4018,3569,3954,4020,4019,3506,4020,3954,[3955,8357],[4020,8358],[8741,9573],8833,8834,8736,8640,8641,8642,8643,8644,8550,[3570,683,8355],[3506,684],3505,3569,3504,[3063,3827],3063,[3063,3952],4019,4017,4018,3569,3570,4020,3442,3505,3507,4019,4020,4019,4018,4019,3504,[3954,9572],[3954,9761],[4019,9762],4017,3505,3956,[3505,9671],[4018,9672],[3569,9573],3504,4018,3955,4017,3954,3953,3953,3570,3956,4020,4020,3570,3504,4017,3568,3569,4020,3953,4018,3956,3570,4020,3572,3504,3570,3955,3953,4018,4020,3504,4018,[4020,9820],[4018,10009],10010,9625,[4025,9626],3447,4025,3578,3576,3960,3576,4025,4023,3446,3574,3511,3574,4026,3574,3577,4023,4025,3577,4023,[3448,9628],[4025,9721],[3959,9722],3577,4023,4025,[4024,9631],[3575,9632],[10015,9533],[3062,10107],[3062,10108],10010,10011,10012,[3513,9914],[3574,9818],4025,4025,3448,3575,3578,4023,4023,3449,[3449,9631],[3446,9632],[3577,9533],3576,3512,3446,[3063,3898],3062,[3063,3184],[3188,9339],[3187,9340],[3186,9341],[3252,9342],3249,3186,3251,[2802,2993],3251,[2931,3253],2931,[2931,3312],[2930,3313],3250,3250,3251,3250,3188,[2931,3316],3186,3185,3185,[2866,3123],2802,[2930,3057],[2866,2993],3249,3251,3252,3251,3185,3185,3252,3251,3188,3250,3251,3185,[2930,3124],2930,2931,[2931,2992],[2803,3059],2931,2802,2802,[2930,3057],3185,3249,3187,3186,3249,3249,[3249,9823],[3251,9824],[3250,9629],3252,3251,[2928,3061],2928,[2928,3312],3188,3185,3251,[3187,9820],[3187,10009],10010,10011,10012,[3250,9914],[2928,3316,9818],[2928,3123],2928,[2928,3184],3186,3185,3251,3186,3250,3186,[3250,9433],[3251,9434],[3251,9435],[3186,9438],[3251,9530],3251,3187,3252,3252,3252,3251,3188,[3188,9535],[2928,9536],2928,[2928,3058],3249,3249,3185,3185,[2928,3253],2928,2928,[2928,3248],3185,3185,3252,3187,3249,[3251,9658],[3185,9659],[3924,9560],3474,3923,3923,3987,3989,3474,3540,3989,3923,3924,3926,[3210,3927],3145,[3146,3859],3923,3923,3989,3923,3989,3924,3924,3923,3474,3989,3539,3925,3926,3989,3923,3926,3989,3413,3925,3924,3474,[3209,3991],3145,[3210,3922,10133,9655],[3926,9748],[3411,9749],3925,3926,3923,3923,3989,3987,3989,3923,3925,3926,3926,3987,3989,3540,3989,3923,3926,3923,[3926,1796],1797,1798,1799,1800,1801,[3207,3991,1802],3207,3210,[3207,3794],3924,3989,3925,3540,3411,[3208,3797],3146,3146,[3145,3859],[3209,4051],[3146,4052],3925,3989,3926,3987,3476,[3209,4055],3210,3208,[3143,3986],3987,3925,3924,3925,3925,3477,3924,3987,3989,3412,3412,3924,3987,3540,3989,3474,[3146,3799],3209,[3210,4050],[3207,4051],3410,3475,3924,[3540,10133],[3926,10134],[3923,10135],[3989,10136],[3989,10137],10037,[3924,9941],[3538,9845],3925,3925,3923,3925,[3207,3799,9657],[3145,9560],[3210,3858],3989,3924,3924,3923,[3925,9558],3987,3925,3989,3926,3925,3923,3989,[3926,9658],[3209,3735,9659],[10042,9560],[3923,10134],[3926,10135],[3989,10138],3923,3923,3923,3923,3925,3987,3926,3411,3539,3923,3987,3987,3925,3477,3924,3989,3541,3476,3926,3410,3926,3925,3924,3476,3989,3413,3923,3411,3987,3475,3477,3926,3987,3925,3412,3925,3926,3923,3540,3412,3989,3989,3926,3924,3926,3926,3926,3987,3926,3475,3989,3925,3540,3925,3989,3925,3923,3989,3476,3476,3475,3989,3474,3925,3540,3477,3924,3989,3539,[3924,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[3000,9638],3000,2873,2872,2872,2808,2872,2679,2743,2808,3000,2679,2936,2745,2873,2743,2873,2936,2808,2872,2679,3000,2873,2936,2679,2872,2808,2679,2873,3000,2679,2681,2742,2873,2873,2743,2745,2681,2743,2936,2678,[2873,9637],9634,9635,0,0,0,0,0,9832,9924,9925,9827,0,0,0,0,0,9736,9737,10024,[2745,10120],[2937,10214],[3001,10215],2937,2808,2873,2873,2679,2872,2679,2808,3000,2743,2681,2936,2679,2678,3000,2679,2681,2681,2681,2808,2808,2678,2808,2808,2681,2745,2744,3001,3001,[2873,9829],[2873,10018],10019,9923,9924,9925,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[3956,9474],3570,3506,4019,4017,3955,3442,4019,3955,4018,4017,3955,3956,3955,4020,3953,3953,3955,[2869,3761],4019,3955,4020,4020,4019,4018,3953,[2868,3957],2933,2869,[2804,4080],4017,3505,4020,3954,4017,3570,4019,3571,4017,3956,3955,4018,3956,4020,3570,3505,3953,3953,4018,4018,4020,3506,3569,4017,[3955,8453],[3955,8545],[4019,8546],[4020,8454],[415,9573],415,415,415,8736,8737,8738,8739,8740,8646,[415,8451],[3504,613],3505,3568,3568,3568,[3062,3761],3504,3570,3955,3506,4019,4020,3570,3568,3954,3569,3955,3955,3956,4020,3504,4017,[3953,9668],9857,[3505,9858],[4019,9762],3954,3953,[3504,9767],[3570,9768],[4019,9573],4019,3954,3504,4018,3569,3569,3505,3568,3504,3953,4018,3953,3955,3953,3953,3954,3956,4019,4020,3570,4018,4018,4019,3504,4018,4020,3506,4017,3953,4018,3954,3953,3505,[3953,10106,9532],9721,[4025,9722],3448,4025,4023,3446,3578,3448,3961,3446,3578,3447,3577,3574,3512,3448,3446,4026,3510,3446,3446,[4026,9628],[3447,9817],[3578,9818],3575,3576,4024,[3448,9727],[4025,9728],[2998,10111,9725],[3063,10203],[3062,10204],[3062,4086,10106],[3446,10107],[3962,10108],[10010,9532],[3578,9625],[3576,9626],3961,3578,3578,3511,3578,3447,4026,[3447,9727],[3578,9728],[3446,9629],4023,3448,[3063,4027],3063,[3063,3057],[3250,9434],[3251,9435,5490],[3251,9436,5491],[3251,9437,5492],[3185,9438],[3185,9439],3249,3188,3249,3185,3249,[2931,3059],2930,2803,[2802,3248],3250,3185,3187,[2802,3253],2802,[2931,3122],[2803,3315],[2930,3123],2930,[2931,2992],3186,3186,3252,3250,3186,3249,3249,3249,3185,3188,3188,3188,3251,[2802,3317],2931,2802,2930,[2802,3056],3185,[2931,2993],[2930,2994],[2803,2996],3188,3185,3249,3250,3185,3251,[3251,9823],[3186,9919],9920,[3188,9725],3186,3250,[2928,3189],2928,2928,[2928,3056],3250,3185,3185,[2928,3315],[2928,3316,10106],[2928,10107],[2928,3056,10108],10010,[2928,9914],[2928,9818],[2928,2992],3252,3188,3250,3188,3252,3249,3251,[3188,9529],[3185,9530],3252,3251,3251,3185,3249,3186,3188,3251,3249,3251,[3185,9727],[2993,9728],[2928,2993,9533],3188,3250,3187,3187,3252,3188,[2928,3060],2928,[2928,3122],3187,3252,3187,3249,3186,[3187,9754],[3250,9755],[3987,9656],3926,3410,3924,3987,3925,3926,3989,3540,3925,3989,3924,[3208,3991],3209,3210,[3209,3794],3989,3923,3924,3476,3987,3540,3987,3987,3602,3603,3924,3987,3540,3926,3926,3539,3925,3923,3923,[3143,4054],[3209,4055],3145,[3209,3986,9556],[3412,9557],3925,3538,3923,3923,3475,3989,3923,3987,3989,3989,3925,3926,3925,3924,3987,3926,3989,3987,3924,[3926,1860],1861,1862,1863,1864,1865,[3146,3862,1866],3210,3146,[3146,3858],3924,3925,3926,3926,3925,3926,[3146,3735],3210,3209,3209,3143,[3146,3859],3923,3924,3987,3925,[3144,3798],[3209,3795],[3210,3731],3923,3989,3923,3926,3926,3924,3539,3987,3989,3923,3924,3476,3923,3411,3989,3987,3923,[3209,3927],3210,3145,3209,[3210,3986],3925,3475,3987,[3925,10230],[3923,10231],[3923,10232],[3540,10233],[3926,10133],10037,[3926,9941],[3475,9942],[3925,9943],[3412,9944],[3925,9945],[3210,3863,9851],[3146,9656],[3145,3922],3926,3924,3410,[3923,9559],[3989,9654],3538,3987,3989,3987,3474,3924,3923,[3987,9754],[3145,3991,9755],[3989,10138,9656],[3410,10230],[3989,10231],3924,3924,3924,3989,3923,3925,3411,3411,3924,3989,3476,3538,3989,3411,3989,3413,3924,3923,3540,3926,3539,3539,3925,3989,3475,3476,3926,3542,3925,3925,3926,3477,3539,3412,3987,3923,3476,3987,3412,3987,3923,3923,3925,3924,3604,3605,3987,3412,3924,3987,3923,3926,3989,3926,3989,3410,3413,3923,3989,3923,3540,3538,3925,3926,3412,3989,3411,3412,3476,3926,[3989,9461],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2742,9734],2873,2744,3000,2745,3000,2742,2872,2936,2678,2679,2743,2873,2872,2873,2743,2873,2745,2680,2872,2745,2680,2936,2745,3001,2808,2873,2681,2872,2680,2679,2679,2681,2679,2745,2873,3000,2680,2745,2872,3000,[2678,9637],9826,9827,0,0,9832,9926,9927,9928,10020,10021,9923,9827,0,0,0,0,9832,9833,[3001,10120],2873,2743,3000,2742,2745,2681,2743,2808,2743,3001,2744,2679,2743,2936,2936,2744,2872,2681,2745,2681,2743,2873,2744,2743,2873,3001,2680,2745,3000,2937,2745,2936,3000,2681,[2872,10115],10019,10020,[10021,9541],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9476],[3570,9569],[3953,9570],3569,3568,3956,4020,4018,3954,4019,3955,4018,4018,4017,3953,3954,4019,4018,3955,4017,4018,4019,3955,3955,3955,3955,3954,4019,3956,[2868,3827],2869,2932,[2869,3889],4020,4017,4019,4019,4018,4019,4020,3506,4018,4019,3504,3953,3954,3507,4020,3442,4020,3568,3569,3506,3954,3506,[3953,8453],[3953,8549],8641,8642,8550,[415,9669],415,415,415,415,8833,8834,8835,8836,415,415,[3506,677],3568,3570,3505,4020,3956,4020,[3504,8161],3569,3568,3568,3956,3956,3956,3504,4018,4018,3568,3570,3505,3570,3440,[4020,557,9764],[4020,614,9953],9954,9858,[3506,9859],[3504,9860],[4019,9863],9864,[3506,9669],3442,3570,3954,3954,3569,3568,3504,3955,4019,3568,3570,3505,3506,4019,3568,3956,4017,3956,3568,4019,[4019,557],[4017,614],[3956,678],[3504,558],3568,4019,3505,3570,4020,3956,3956,3504,3568,[4017,9628],9625,[4025,9626],3447,3577,4025,3448,3577,3446,3962,3575,3575,3578,3446,3510,3577,3448,4025,4025,3448,3446,3447,[4026,9724],9913,[3577,9914],[3510,9818],3578,4026,3446,[4023,9535],[3062,9439],3062,3063,3062,[3063,3895,10203],[3446,10204],[3577,10106,9628],[4025,9721],[3578,9722],3960,3962,4025,3577,3578,4026,3575,3510,[3512,9535],[3578,9536],3448,3511,[3063,3835],[3063,2992],[3186,9529],[3187,9530],[3185,5586],[3249,5587],[3187,5588],3186,[3251,9535],[3185,9536],3252,3185,3188,3249,3250,[2931,2997],2802,[2931,3121],3250,3252,3188,[2931,3317],2802,2802,2803,2931,2930,[2930,3248],3251,[3252,9531],3252,3249,3185,3185,3250,3188,3187,3249,3188,3249,[2931,3061],2931,2802,2802,2866,[2866,3184],3185,3250,3186,3186,3249,3186,3187,3186,3250,[3252,9823],[3252,9919],10015,[3251,10016],[3186,9821],3187,3188,3251,[2928,3059],2928,[2928,3184],3187,3252,[2928,3253],2928,2928,[2928,10203],[2928,3184,10204],[3251,10106],10010,[2928,3058,9625],[3187,9626],3187,3185,3252,3187,3188,[3251,9433],[3185,9434],[3186,9530],3187,3188,3187,3185,3188,3188,3185,3186,3250,3188,3188,[3249,9823],[3250,9824],[3187,9629],3249,[3252,5485],[3249,5486],[3250,5487],[3186,5488],[3252,5489],[2928,3253],2928,2928,[2928,3312],[2928,3313],[2928,3314],[2928,3315],[2928,3316],[3249,9658],[3252,9659],[3925,9656],3925,3926,3987,3926,3987,3538,3923,3989,3923,3987,3987,3539,[3145,3798],3210,[3207,3922],3987,3540,3925,3925,3538,3989,3987,3926,3666,3667,3926,3411,3923,3987,3923,3539,3989,3989,[3145,3799],[3145,9366],[3208,9369],[3209,3795,9556],[3926,9557],3926,3989,3987,3923,3924,3539,3926,3987,3924,3926,3923,3989,3412,3926,3926,3923,3924,3924,3923,3987,[3926,1924],[3987,1925],[3987,1926],[3210,1927],[3208,1928],[3208,1929],[3146,1930],3209,3207,[3209,3922],3923,3989,3925,3411,3538,3925,3923,[3146,3731],[3210,3797],3146,3143,3146,[3210,3860],[3208,4052],[3146,4053],[3209,4054],[3146,4055],[3209,3986],3926,3924,3987,3606,3607,3923,3926,3924,3925,3923,3989,3476,3924,3925,3925,3925,3924,3923,3925,[3144,3798],3208,3207,[3210,4050],[3208,4053],[3210,4054],3411,3923,3538,3474,3926,3987,[3925,10133],10037,10038,10039,10040,10041,9947,[3146,9752],[3210,3859],3923,3926,3923,[3925,9655],[3926,9844],[3989,9845],3925,3925,3925,3987,3923,3923,[3925,9850],[3209,3862,9851],[3925,9656],3924,3924,3926,3925,3989,3540,3987,3926,3925,3989,3412,3923,3923,3923,3923,3924,3539,3476,3540,3542,3924,3989,3923,3475,3987,3923,3987,3924,3477,3542,3924,3989,3989,3925,3924,3476,3926,3542,3987,3925,3987,3987,3989,3924,3476,3924,3668,3669,3926,3987,3989,3410,3926,3475,3474,3477,3410,3987,3926,3538,3987,3924,3925,3924,3410,3926,3987,3925,3542,3538,3989,[3989,9556],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2743,9448],2872,2743,2680,2808,2743,2678,3001,2808,2743,2808,2873,2681,3000,2742,2744,2681,2808,2742,3000,2745,3000,2743,2743,2745,2743,2678,3001,2745,2936,3001,2808,2873,3001,2936,2809,2743,2745,2936,2872,3000,[2681,9733],9922,9923,9924,9925,9928,10022,10023,10024,[3000,10116],[2743,10117],10019,9923,9827,0,0,9832,9928,9929,2681,2678,2872,2936,2679,2679,2809,2936,3000,2681,2743,2872,2873,2936,3001,2873,2873,3001,2678,2743,2745,2808,2873,2936,2872,2743,2808,2745,2681,3000,3001,3001,2936,2808,2745,2808,[2678,10115],[3001,10116],[2678,10117,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3504,9665],[4020,9666],3505,3956,3505,3955,3956,4019,4019,3953,3956,3953,3954,3954,3956,4020,3956,3505,4018,4020,3955,3954,3956,4019,4018,3956,4020,3955,[2804,3829],2933,2932,2868,[2804,3824],3956,4017,3956,3953,3571,3956,4018,3440,3956,3570,3569,3569,3953,3504,3504,3506,3955,3569,3955,3506,[4017,8453],[3954,8549],8645,8737,8738,8646,[415,9765],415,415,415,415,415,415,415,415,415,415,[3569,741],[3504,558],3504,3570,3568,3569,[3504,8162],[3953,8257],3570,3955,3568,3953,3954,4017,4020,4019,3569,3568,3506,[3955,557],[4020,614],[3569,742],[3953,743],[3953,549],[4019,550,10050],9954,9955,9956,9959,[3954,9960],[3504,9765],3504,4017,4020,4019,4019,4018,3569,3954,3504,3955,3569,3955,3505,3505,3956,3953,4020,3568,3504,3956,[4019,615],415,415,[3568,677],3956,3570,3956,4020,3954,3955,3506,3569,4020,[4017,9724],9721,[4026,9722],3577,4024,4023,3447,3447,3446,4025,3447,3510,4024,3447,3960,3448,4025,3448,4025,4026,4026,3960,[3510,9820],[3447,10009],[10010,9532],[3448,9625],[3961,9626],3446,3577,3448,[3511,9535],[3062,3767,9536],[3063,3833],3062,3062,[2998,4022],[3511,9628],[3511,9817],[3577,9818],3446,3447,[3576,9823],[3448,9915],[3962,9916],[3578,9818],3578,3959,[4025,9631],[3511,9632],[4025,9533],3447,[3063,4027],[3063,3312,9532],[3251,9721],[3186,9722],[3251,5682],[3249,5683],[3185,5684],3251,[3252,9631],[3186,9632],[3249,9533],3250,3250,3249,3249,[2930,3253],2931,2802,[2931,3312],[2930,3315],[2867,3123],2802,2930,2802,2931,[2802,3057],[2931,2993],3252,[3187,9532],[3252,9627],3252,3252,3187,3187,3187,3249,3249,3187,3250,3251,[2931,3189],2931,2930,2802,[2930,3057],3185,3249,3186,3187,3188,3186,3250,3249,3249,[3185,9631],[3185,9632],10015,[3249,10111],3251,3187,3188,3250,3249,[2928,3253],2928,[2928,3312],3250,3186,[2928,3123],2928,2928,[2928,3057],3185,3188,[3252,10106,9532],[3249,9721],[3250,9722],3252,3250,3185,3186,3188,[3249,9529],[3252,9530],3188,3185,3249,3186,3250,3249,3251,3251,3250,3249,3251,[3187,9823],[3187,9919],9920,[3188,9725],3188,[3250,5581],[3187,5582],[3185,5583],[3251,5584],[3249,5585],3252,[2928,2993],[2928,3059],2928,2928,2928,2928,2928,[2928,3121,9850],[3252,9851],[3924,9656],3923,3989,3925,3987,3925,3926,3987,3926,3989,3926,3925,3924,3924,[3209,3735],[3145,4050],[3145,4051],3923,3475,3989,3923,3924,3923,3539,3539,3925,3989,3926,3925,3989,3924,3925,3923,3476,[3209,3927,9461],[3926,9462],[3923,9465],[3987,9557],3410,3538,3925,3987,3926,3989,3923,3987,3924,3411,3987,3987,3925,3987,3925,[3989,1414],[3923,1415],[3923,1416],3539,3924,3923,3925,3924,[3210,3991],3207,3210,3210,3145,[3146,3795],[3145,3731],3926,3926,3987,3924,3926,3410,3925,3989,3987,3987,[3209,3731],[3210,3731],[3208,3797],3144,3146,3210,3146,3210,[3209,3986],3924,3923,3926,3670,3671,3923,3924,3987,3926,3926,3539,3926,3411,3926,3987,3925,3923,3923,3924,3923,[3146,3797],3208,3144,3145,3210,[3210,3859],3923,3925,3989,3989,3987,3989,[3925,10133],[3923,10134],[3924,10135],[3925,10136],[3412,10137],[3926,10043],[3208,3798,9848],3208,[3209,3794],3987,3926,[3989,9751],9940,[3926,9941],[3477,9942],[3923,9943],[3924,9942],[3925,9943],[3923,9944],[3923,9945],[3991,9946],9947,[3987,9752],3987,3923,3925,3924,3923,3987,3539,3926,3989,3926,3926,3923,3987,3923,3926,3925,3987,3925,3411,3924,3923,3926,3477,3926,3924,3989,3926,3923,3411,3923,3541,3542,3540,3538,3539,3540,3541,3542,3538,3923,3926,3923,3923,3925,3539,3539,3542,3926,3475,3540,3926,3475,3924,3926,3987,3475,3923,3412,3474,3987,3413,3924,3989,3989,3923,3924,3924,3412,3538,3923,[3987,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2678,9448],2743,3001,2745,2743,3001,2745,2681,2681,2936,3001,2745,2679,2681,2681,2873,2679,2809,3001,2808,3001,2680,2873,2872,2936,2681,2743,2744,2681,2742,2937,2743,3000,2872,2936,3001,3001,2679,2745,2681,[2873,9829],[3000,10018],[10019,9640],[10020,9641],[10021,9542],10024,[3001,10118],[2936,10119],[2808,10120],[2743,10212],[2743,10213],[2936,10115],10019,9923,9924,9925,9928,10024,[2872,10025],2681,3001,2742,2872,2680,2808,2742,2873,3001,2937,2808,2808,2681,2681,2873,2808,2744,3000,2873,2679,2744,2678,2745,2743,2744,2808,2681,2742,2873,2679,2872,2872,2743,2936,2745,2681,2743,[2936,10212],[2872,10213,9733],[9922,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3570,9569],[3569,9570],3954,3506,3505,3568,4020,3956,4017,3955,4019,4019,4018,4019,3953,4019,3440,3956,4018,4018,4020,4020,3955,4019,3953,4019,3954,3955,[2869,3893],2932,2932,2932,[2804,3888],3954,3954,4020,4018,4019,4019,4019,3956,3956,3569,3569,3568,4017,3953,4019,4020,3505,3506,4018,[4019,8357],[3955,8358],[8645,8163],8741,8833,8834,415,415,415,415,415,415,415,415,415,415,415,415,415,[4020,613],4018,3956,[4019,557],[4018,742],[4017,678,8258],[3953,8447],[4019,8448],4019,4017,3956,4018,3956,3956,4019,4019,3505,3442,3569,[4019,550],[3505,550],[4019,550],3954,4017,[4017,10050],[3956,10051],[3506,10052],[3955,10055],3954,4019,3568,4019,3568,4017,3570,3569,3956,4020,4018,3506,4020,3954,3505,4019,4020,4019,4017,4017,3504,4018,3568,[3953,551],415,[3568,741],[3570,747],[3569,748],[4017,749],[3568,678],[3954,558],3955,4017,3569,[3506,8453],[4019,9820,8547],[9721,8548],[4026,9722,8448],3511,4026,4025,3574,3575,3448,3577,4025,4024,3960,4026,3513,3447,3447,3575,4023,3962,3447,3513,3447,3511,[4024,10106,9628],[3448,9721],[3578,9722],4025,3961,4026,4025,[4024,9535],[3512,9536],[3063,3771],3062,[3062,4086],[3512,9724],9913,[4025,9914],[3962,9915],[3448,9916],[2998,4089,9919],10011,10012,[4024,9914],[4025,9818],3960,[3575,9727],[3446,9728],[3577,9629],3448,3448,[3063,3833,9628],[3187,9817],[3250,9818],[3249,5778],[3187,5779],[3187,5780],3251,[3249,9727],[3187,9728],[3187,9725],3185,3251,3186,3185,3251,[2867,3059],2802,2930,2930,2802,2803,[2931,3057],[2930,2997],[2930,2992],3252,3187,3251,[3251,9628],[3186,9817],[3249,9818],3185,3187,3251,3188,3188,3250,3188,3187,3250,[2802,3123],2802,2931,2866,[2931,3312],3252,3187,3188,3187,3250,3251,3249,3251,3250,[3249,9727],[3251,9728],[3186,10111,9533],3185,3250,3188,3252,3250,3251,3250,[2928,2997],2928,[2928,3121],[2928,3317],2928,2928,[2928,2992],3251,3186,3188,[3252,9628],[3185,9817],[3185,9818],3250,[2928,3315],[2928,3316],[2928,3123],[2928,3122,9532],[3251,9625],[3185,9626],3252,3185,3188,3250,3252,3252,3188,3250,3251,3252,[2928,3316,9823],[3186,9919],10015,[3251,10016],[3188,9821],3187,[3188,5677],[3187,5678],[3186,5679],[3251,5680],[3186,5681],3250,3250,3186,[2928,2994],[2928,2995],[2928,2996],[2928,3059],[2928,9850],[2928,9946],9947,[3539,9752],3410,3924,3923,3925,3924,3410,3475,3923,3926,3475,3474,3989,3926,[3209,4055],3209,3146,[3209,3859],[3145,4051],3923,3987,3926,3989,3923,3989,3923,3411,3926,3925,3989,3923,3924,3987,[3208,4054,9556],[3923,9557],3989,3987,3412,3989,3926,3410,3923,3989,3925,3925,3923,3987,3989,3926,3923,3923,3538,[3411,1477],[3923,1478],1479,[3926,1480],[3411,1481],3923,3987,3989,3923,3924,[3207,3797],3209,[3145,3795],[3210,3731],3923,3989,3989,3989,3925,3410,3923,3924,3925,3926,3987,3926,3926,3989,3989,[3143,3732],[3209,3733],[3146,3735],3146,[3210,3730],3923,3475,3926,3924,3987,3411,3926,3925,3987,3987,3923,3923,3987,3989,3987,3925,3987,3989,3925,3923,3923,3989,[3209,3732],[3146,3733],[3209,3798],3146,3208,[3146,3986],3924,3925,3989,3926,3923,3987,[3923,10230],[3411,10231],[3923,10232],[3989,10233],3989,[3145,3991],3208,[3146,3858],3925,3925,[3924,9847],[3987,10036],10037,10038,10039,10038,10039,10040,10041,10042,[3208,10043],[3209,3794,9848],3923,3987,3926,3926,3926,3923,3923,3987,3987,3926,3539,3923,3925,3989,3923,3987,3989,3540,3924,3474,3413,3989,3987,3925,3542,3987,3987,3926,3923,3926,3925,3987,3926,3989,3411,3412,3413,3412,3923,3924,3413,3923,3539,3987,3474,3923,3475,3474,3538,3475,3413,3924,3926,3542,3924,3926,3476,3989,3987,3987,3989,3926,3924,3925,3539,3923,3926,3411,3925,3989,[3987,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2742,9545],2745,2681,2679,2745,2808,3000,2679,2936,2744,2936,2679,2745,3000,2936,2681,3001,2742,2679,2681,3001,2743,3001,2808,3000,2743,2679,2745,2873,2743,2873,2936,2680,3001,2936,2681,3000,3000,2808,2679,2681,[3001,10115,9640],[2872,10116,9641],[3001,10117,9638],[2936,10120],2678,3001,2745,2742,2743,2873,[3000,10115],10019,10020,10021,10024,[3001,10120],2743,2679,2679,2936,2872,3000,2742,2873,3001,2679,2873,2873,2745,2873,2679,2681,2936,3000,2936,2936,2873,2872,2743,2743,2681,2872,3000,[3001,9832],[2872,9926],[2745,9927],[3000,9827],2679,2679,2678,2744,2873,2873,2873,3001,[2743,9829],[3000,10018,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3505,9665],[4017,9666],3954,4017,4020,4017,3956,3956,4017,4019,4017,3954,3954,4018,4018,3954,4020,3956,3954,4019,4020,4019,4019,4020,3953,4020,3443,3955,[2932,3957],2869,2933,2933,[2804,3952],4019,3506,3505,4018,3954,4020,4019,4018,3568,3569,3955,3954,3955,3953,3955,3570,3506,3507,4020,[4020,8453],[4017,8454],[8741,8259],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3955,741,303],304,305,[4017,743,306],415,[415,8354],8543,[4020,8544],[3956,8545],[4020,8546],[4018,8448],3570,3505,4019,4019,4019,4017,3954,3953,3955,3955,3568,3955,3570,4019,[4020,10147],[4017,10148],3955,3569,4017,3569,4017,3569,3505,3956,3956,4017,3953,3955,3569,4019,4019,3570,3956,4020,3569,4017,3956,3506,3569,3504,[3954,615],415,415,415,415,415,415,[4020,677],[4017,8453],[4020,8545],[4019,8546],[4020,8549],8643,8644,[4026,8544],[3576,8448],4026,3961,3448,3577,3448,3447,4025,3511,4024,3960,3962,3448,4024,3577,4024,4023,4024,3576,3575,3446,[3577,9628],[3961,9817],[4025,9818],3510,4024,3577,4023,[4026,9631],[3447,9632],[3062,4027,9533],3063,3063,[3062,3895,9820],[3962,10009],10010,10011,10012,10015,[3063,10107],[3063,3895,10108],10010,[4024,9914],[3575,9915],[4025,9916],[3511,9824],[4025,9629],3447,3512,[3510,9724],9913,[3250,9914],[3187,9818],3251,3250,3250,3252,[3252,9535],[3186,9439],3252,3249,3251,3250,3250,3188,[2931,3060],2802,2931,[2930,2992],[2867,2993],3187,[2802,3253],[2931,3121],[2930,3313],3249,3188,[3249,9724],9913,[3251,9914],[3249,9818],3187,3187,3188,3249,3188,3188,3185,[2930,3317],2802,2866,2803,2802,2930,[2930,3056],3251,3188,3188,3186,3249,3185,3185,3185,[3186,9823],[3185,9824],[3252,9629],3187,3188,3186,3187,3252,3185,3186,[2928,3124],2928,2928,2928,2928,[2928,3057],3252,3249,3250,3252,[3187,9724],9913,[3249,9914],[2928,3124,9818],2928,2928,2928,[2928,9628],[3251,9721],[3251,9722],3185,3252,3250,3187,3188,3185,3249,3252,[2928,3315],[2928,3317,9823],[2928,9919],10015,[3188,10111],3251,3249,3251,[3252,5773],[3251,5774],[3249,5775],[3185,5776],[3251,5777],3187,3250,3188,3251,3250,3188,[3188,9658],[2928,2993,9659],[10042,9560],[3925,10043],[3926,9848],3476,3987,3540,3925,3924,3989,3926,3989,3923,3926,3989,3925,[3210,3861],3208,3145,3145,3209,3145,[3144,3859],[3209,4053],3987,3539,3925,3925,3925,3924,3926,3474,3925,3987,3926,[3145,3862,9559],[3210,9652],[3987,9653],3925,3476,3989,3989,3540,3476,3989,3989,3476,3926,3924,3987,3924,3925,3989,3925,[3989,1540],[3989,1541],1542,1543,1544,[3410,1545],[3926,1546],3987,3989,3476,3412,[3208,3861],3143,[3207,3986],3989,3987,3989,3926,3411,3926,3925,3538,3925,3924,3987,3924,3539,3926,3925,3925,3923,3539,[3210,3991],3208,[3145,3794],3923,3539,3926,3925,3925,3989,3987,3989,3987,3925,3926,3989,3987,3924,3476,3924,3989,3923,3925,3475,3989,3923,3925,3924,[3146,3991],3145,3209,[3146,3859],3923,3926,3925,3923,3926,3989,3989,3987,3926,3412,3410,[3143,4055],3146,[3210,3922],3924,3924,3987,3926,[3987,10133],[3989,10134],[3989,10135],[3926,10134],[3924,10135],[3799,10136],[3146,10137],[3208,10138],3209,[3146,3922],3926,3924,3987,3474,3923,3924,3925,[3926,9366],[3923,9367],[3924,9368],[3925,9369],3989,3476,3989,3926,3989,3989,3474,3923,3923,3924,3926,3924,3925,3411,3410,3413,3474,3542,3923,3926,3924,3925,3413,3923,3926,3989,3924,3476,3989,3923,3542,3987,3926,3926,3542,3540,3925,3538,3987,3987,3989,3924,3987,3539,3926,3926,3924,3474,3925,3987,3412,3476,3539,3411,3923,3924,3410,3923,3924,[3924,9655],9844,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2681,9542],3001,2808,2743,2808,2936,2745,2936,2679,2808,2873,2936,2808,2681,2745,2873,2872,3001,2678,2744,2872,2679,2873,2873,3001,2679,2936,2873,2742,2681,3000,3001,2872,3000,2681,3001,2872,2743,3000,2745,[2742,9736],[2936,9737],[2680,9638],2745,2679,2681,2872,2873,2872,2680,3001,[2936,10115],[3000,10116],[3001,10117],[2679,10120],2873,2745,2744,2681,2679,2936,2936,3001,2872,2681,2743,2743,2744,2936,3000,2743,2873,2745,2679,[2743,9832],[2745,9924],[2872,9925],[2679,9924],[2743,9925],[2936,9827],2744,2679,[2745,9832],[2743,9928],10022,10023,[2743,9923],[2678,9827],3001,2679,2679,2872,3000,2743,2679,2873,[2873,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3955,9761],[3505,9762],4020,3506,4017,3570,4018,4019,4020,3955,4017,4018,3953,3954,4017,3953,3953,3955,3954,4020,3956,3956,3955,3954,4018,4017,4020,3955,[2869,4021],2804,2869,2869,[2932,4016],4017,3568,4020,3955,3569,4018,3955,3504,3953,3504,3636,3637,3505,4017,3953,3506,[3953,8453],[3955,8545],[4018,8546],[3953,8549],8550,[415,8355],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,303],304,305,[415,306],415,[415,8450],8639,8640,8641,8642,[3956,8544],[3955,8448],3568,3955,[4018,8453],[4020,8545],[4020,8546],[4020,8448],3956,3505,3504,3955,4020,3955,3955,3570,4017,3954,4020,4017,4018,3506,4018,4020,3956,3506,4019,3505,3505,4019,3504,4017,4017,3504,4020,3955,4018,4018,3568,3570,4017,4019,[4017,550],[4020,550],[4017,550],[3953,551],415,415,[3954,741,8453],[3569,8549],8641,8642,8645,8739,8740,8640,[4023,8544],[4025,8448],3577,3640,3641,4023,3447,3448,3447,3577,3446,3578,3447,3446,3578,4023,4026,3447,4025,3446,3510,[3574,9724],9913,[3576,9914],[3959,9818],3512,3447,4025,[3959,9727],[3960,9728],[3063,4091,9725],3063,3063,3063,[3063,4086],[3063,3897,10106],[3063,10107],[3062,10108],[3062,10111],[2998,10203],[3063,10204],[3062,10106],10010,10011,10012,9920,[3446,9725],4026,4025,[3446,9820],[3512,10009],10010,[3187,9914],[3187,9818],3252,3251,3186,3186,[3250,9535],[3252,9536],3186,3251,3185,3251,3251,[2802,3253],2802,2931,[2802,3312],3250,3187,[2931,3253],2931,2803,[2867,3312],[2867,3313],[3249,9820],[3188,10009],10010,[3251,9914],[3251,9915],[3249,9916],[3185,9818],3252,3186,3251,[2802,3061],2802,2802,2931,2930,2802,2802,[2931,3120],3249,3187,3251,3187,3185,[3185,9823],[3250,9915],[3188,9916],[3188,9919],9920,[3188,9725],3249,3186,3186,3185,3186,3251,[2928,3253],2928,2928,[2928,3057],[2928,3060],2928,[2928,3248],3249,3250,3186,3187,[3188,9820],[3251,10009],[10010,9532],[2928,9625],[2928,9626],[2928,3058],[2928,2994],[2928,2995,9628],[3251,9817],[3251,9818],3185,3188,3252,3188,3250,[2928,3315],[2928,3316],[2928,3123],[2928,9631],[2928,9632],[10015,9533],[3187,10111],3187,3186,3187,3250,[3188,5869],[3185,5870],[3185,5871],[3249,5872],[3187,5873],3249,3186,3249,3251,3187,3188,[3187,9754],[3249,9755],[3924,10138,9656],3924,3987,3926,3925,3987,3923,3926,3989,3923,3540,3989,3989,3540,[3208,3991],3146,[3146,3795],[3145,3731],[3210,3732],[3145,3734],[3145,3798],3146,3210,[3208,4050],3475,3924,3923,3989,3987,3926,3540,3924,[3145,4054],[3146,3862],[3146,9655],[3208,9748],[3208,3986,9749],3925,3987,3987,3989,3924,3412,3924,3987,3925,3924,3925,3989,3924,3923,3987,3989,[3540,1604],1605,1606,1607,1608,1609,[3923,1610],3987,3987,3987,[3146,3799],3145,[3209,3795],3923,3924,3989,3474,3926,3539,3925,3987,3987,3926,3925,3540,3987,3989,3924,3410,3924,3923,3989,[3146,3799],3209,[3207,3858],3923,3923,3540,3538,3989,3410,3923,3923,3926,3925,3477,3923,3926,3923,3474,3602,3603,3924,3987,3989,3987,3411,3987,3923,3924,[3208,3731],[3146,3735],3208,[3146,3794],3926,3924,3926,3539,3923,3987,3413,3924,3989,[3209,3799],3208,3210,[3146,4050],[3145,4051],[3143,4053],[3145,4054],3989,3923,[3989,10230],[3923,10231],[3987,10230],[3989,10231],[3210,3927,10232],[3209,10233],3210,[3144,3795],3989,3924,3987,3925,3925,3989,[3540,9460],[3923,9461],[3475,9462],[3987,9463],[3923,9464],[3925,9465],[3474,9466],[3924,9366],[3926,9367],[3541,9369],[3477,9366],[3987,9369],[3925,9366],[3924,9367],[3989,9368],[3475,9369],3989,3989,3475,3475,3539,3925,3923,3412,3923,3926,3926,3476,3477,3410,3410,3410,3924,3538,3923,3987,3987,3987,3924,3926,3926,3989,3923,3925,3540,3925,3476,3924,3540,3989,3923,3989,3476,3413,3987,3540,3923,3923,3539,3540,3412,3926,3412,3925,3538,[3925,9751],9940,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2743,9638],2681,2679,2681,2873,2873,2873,2872,2742,2679,2936,2743,2936,2745,2936,2744,2679,2873,3001,3000,2745,2744,2745,2936,3001,2808,2808,2681,2745,3001,2873,3000,2745,2936,3001,2743,2743,2936,3001,2873,[2679,9736],[2742,9737],[2745,9638],3000,3000,3001,2745,2936,2873,3000,2936,2745,[3001,10212],[2745,10213],2872,2872,2678,2743,2743,2808,2873,2745,2743,2742,2745,2743,3001,2679,2873,2936,2936,[2681,9832],[2681,9926],[2681,9927],[2809,9928],10020,10021,10020,10021,[3000,9923],[2743,9924],[2681,9925],[2808,9928],10024,[2873,10118],[3000,10119],10019,[3000,9923],[3000,9827],2681,2873,3001,2743,2808,2743,2743,[2681,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],9857,[3505,9858],[3505,8448],4019,3505,3504,4017,3954,3953,4019,4020,4017,3955,4018,4020,3955,3954,3954,4020,4018,3954,4019,3955,3954,3953,4018,4020,4020,[2804,3829],2932,2804,2933,[2932,3824],3954,4017,3506,3955,4018,3954,4019,3505,3955,3568,3700,3701,3956,4017,3955,[4020,8453],[3955,8549],8641,8642,8645,8646,[415,8451],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,303],304,305,[415,306],415,415,415,8736,8737,8738,8640,[4017,8544],[3955,8545],[3955,8546],[4019,8549],8641,8642,[3955,8544],[3953,8448],3955,3956,3954,3505,4018,3956,3953,3571,3504,3570,3568,4018,4018,3568,3955,3505,3953,4017,3569,4019,3956,3954,3954,3955,3955,3568,3504,4019,3956,4017,3569,3956,3956,3954,3956,3954,3568,[3954,550],[4018,551,8357],[415,8358],[8645,8163],8737,8738,8741,8835,8836,8736,[8640,8162],[3446,8351],[4024,8352],3704,3705,3574,3960,4023,3512,3447,3960,3448,3448,3447,4026,3511,3578,4026,3960,3512,3577,[3576,9820],[3448,10009],10010,[3446,9625],[3577,9626],4023,4024,[3062,4087],[4026,9535],[3063,9439],[3062,3832],[3062,3767],[3062,3771],3062,3063,[2998,10203],[3063,3832,10204],[3063,3767],[2998,3767],[3062,3834],3063,[3063,10106],[3063,10107],[3062,3830,10108],[3575,10016],[3576,9821],3960,3575,4026,3576,[4023,10106],10010,[3186,9914],[3185,9818],3250,3252,[3249,5485],[3188,5486],[3185,9535,5487],[3249,9439,5488],[3188,5489],3252,3185,3249,3186,[2930,2993],[2930,2997],2930,[2803,3056],3185,3187,[2930,2993],[2866,2997],2931,2931,[2930,3056],3251,[3187,10106],10010,10011,10012,[3187,9914],[3185,9818],3188,3186,[2930,3189,9823],[2803,9915],[2802,9916],[2802,9917],[2930,9918],[2802,9818],2802,[2802,3184],3249,3251,3186,3250,[3185,9823],[3250,9919],10011,10012,10015,[3188,10016],[3250,9821],3187,3252,3188,3249,[2928,3315],[2928,3316],[2928,3124],2928,[2928,2992],3188,[2928,3253],2928,[2928,3312],3186,3249,3187,3250,3249,3185,[3250,10106,9628],[2928,2995,9721],[2928,2996,9722],3252,3185,[3250,9724],9913,[3188,9914],[3186,9818],3252,3249,3249,[2928,3123],2928,2928,2928,[2928,9727],[2928,3058,9728],[2928,2993,10111,9629],3251,3185,3250,3250,3186,3250,[3188,5966],[3185,5967],[3252,5968],3249,3185,3252,3188,3250,3249,3185,3186,[3186,9562],[3925,9466],3923,3925,[3146,4051],[3146,4052],3926,3410,3924,3923,3476,3926,3987,3923,3925,[3210,3991],3146,[3210,3794],3923,3924,3925,3924,[3143,3735],3209,3144,[3208,3859],3926,3474,3476,3925,[3210,4051],[3144,4052],[3145,3862],3146,3146,[3209,9655],[3145,3795,9652],[3925,9653],3925,3987,3923,3987,3926,3987,[3925,9561],3989,3410,3410,3476,3477,3987,3924,3412,3924,[3410,1668],1669,1670,1671,1672,1673,[3539,1674],3987,3925,3987,[3144,3927],3145,[3208,3794],3475,3923,3924,3923,3923,3926,3989,3923,3477,3989,3925,3923,3923,3987,3926,3923,3924,3987,3989,[3210,3863],3146,[3210,3922],3926,3475,3926,3924,3411,3410,3925,3923,3474,3925,3540,3989,3412,3989,3926,3666,3667,3923,3925,3924,3412,3923,3987,3925,3926,3924,[3210,3799],3145,[3145,3858],3989,3924,3987,3923,3926,3987,3926,3924,3987,[3208,3927],3208,3210,3145,3144,3207,3208,[3208,3860],[3207,4051],[3145,4052],[3210,4053],[3210,4054],[3208,4053],[3209,4055],3209,[3207,3730],3411,3987,3923,3924,3925,3925,3412,[3411,9556],[3989,9557],3925,3926,3987,3538,[3410,9562],[3475,9462],[3411,9463],[3411,9464],[3926,9463],[3924,9465],[3926,9462],[3476,9463],[3987,9464],[3925,9465],[3477,9466],3538,3411,3542,3925,3924,3412,3925,3924,3923,3925,3925,3541,3542,3474,3924,3926,3925,3412,3923,3923,3925,3411,3989,3923,3925,3411,3989,3411,3987,3411,3924,3539,3989,3924,3925,3987,3989,3542,3924,3475,3411,3926,3926,3477,3987,3987,3987,3924,[3987,9847],[3987,10036],[10037,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[3000,9827,9734],3000,2873,3000,2873,2679,2745,2681,2679,2808,2679,2681,2744,2872,2873,2872,2744,2873,2745,2745,2872,2743,2742,3000,2742,2681,2680,2808,2681,2681,2936,2681,2745,2680,2680,2936,2936,2936,2872,2745,[2873,9832],[2808,9833],[2808,9638],2873,2745,2808,2936,2744,2808,2745,2742,2742,2678,2936,2681,3001,2679,3000,2745,2936,2936,2679,2680,2679,2743,3001,2872,3000,2679,2936,[2937,9832],[2936,9928],10022,10023,10024,[3001,10116],[3001,10117],[2743,10116],[2873,10117],10019,10020,10021,10024,[2936,10120],[3001,10214],[2808,10215],[2678,10115],10019,[2745,9923],[2681,9827],2872,2679,2745,2872,2742,2744,[2936,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9764],[415,9953],[9954,9476],[3570,8351],[4019,8352],3956,3953,3956,4019,3955,4018,4020,4018,3953,3953,4019,3956,4017,4020,3954,3953,3953,4017,3955,4020,3953,4017,3953,3953,[2932,3893],2804,2933,2868,[2804,3888],3504,3443,3570,4020,3506,3954,4019,3569,3568,4020,3568,4018,3506,3954,[4020,8453],[3953,8549],8645,8737,8738,8741,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,303],304,305,[415,306],415,415,415,415,8833,8834,8736,8640,8641,8642,8645,8737,8738,[8640,8162],[4018,8255],[3955,8256],3956,3954,3570,3504,3956,3505,3506,4019,3505,3956,3953,3569,4019,3569,3955,3953,4019,4017,3506,3956,4018,3506,4019,3955,4019,4018,3504,3956,4017,3954,3956,3954,3504,3954,3956,4019,3505,[4018,615,8261],[415,8262],[8741,8259],8833,8834,415,415,415,415,[8736,8258],[3961,8447],[3510,8448],3576,3960,3446,4023,3577,3446,3576,3577,3449,4024,3446,3576,3960,3512,3447,3447,4026,3446,3446,3961,[3577,9724,10106],[3578,9721],[3574,9722],3448,[3063,3835],3062,[2998,3895],[3959,9535],[3448,9536],3447,3959,[2998,3768],[3062,3769],[3063,3767],4026,3576,3577,3577,[3062,3767],[3062,3834],[3062,10203],[3063,3958,10204],3962,4024,3446,3960,3447,3577,3575,[3512,10106],[10010,9532],[3186,9625],[3249,9626],3249,[3252,5581],[3186,5582],[3249,5583],[3249,9535,5584],[3250,9536,5585],3187,3186,3185,3251,3252,[2802,3253],2802,[2931,3120],3250,3188,3188,3250,[2866,3059],2802,[2802,3120],3186,3251,[3249,10106],[3185,10107],[3186,10108],10010,[3187,9914],[3249,9915],[3188,9916],[3188,9919],10011,10012,10013,10014,[2930,2995,9914],[2930,2996,9818],3250,3251,3187,3252,[3187,9823],[3186,9919],10015,[3186,10107],[3250,10108],[3186,10111],3187,3186,3188,3187,3250,[2928,3253],2928,2928,2928,[2928,3058],3186,3185,3250,[2928,2997],2928,[2928,3248],3186,3250,3251,3185,[3187,9433],[3249,9434],[3188,9530],3250,3185,3187,[3185,9820],[3249,10009],10010,[3186,9914],[3252,9818],3252,[2928,3253],2928,[2928,2992],[2928,2993],[2928,2994],[2928,2995],[3187,9535],[3250,9536],[3249,9339],[3251,9342],3186,3252,3186,[2928,3313],[2928,3314],[2928,3315],[2928,3316],3186,3252,3185,3249,3249,3252,3250,3188,3249,[3187,9562],[3925,9563],[3210,3861],3208,3208,[3143,3859],3924,3989,3924,[3210,3991],[3210,3859],3989,[3145,3991],[3145,3860],[3210,4055],3145,[3208,3922],3474,3987,3987,3412,3989,[3145,3735],3210,3209,[3210,4050],[3146,4051],3987,[3145,3991],3146,3145,3207,3146,[3209,3730],[3210,3731,9655],[3987,9844],[3474,9845],3925,3474,3923,3539,3926,3924,[3926,9657],[3923,9560],3926,3926,3989,3540,3987,3924,3412,3925,[3987,1732],1733,1734,1735,1736,1737,[3987,1738],3926,3411,3987,[3145,3862],3208,[3146,3922],3924,3923,3987,3538,3411,3926,3924,3987,3474,3923,3989,3476,3926,3411,3924,3925,3923,3989,3925,[3145,3927],3143,[3146,3859],3924,3925,3538,3410,3987,3923,3926,3989,3926,3926,3925,3926,3924,3926,3924,3926,3925,3924,3926,3926,3924,3475,3474,3924,3987,3924,[3210,3863],3146,[3209,3922],3987,3924,3923,3923,3989,3538,3989,[3146,4053],[3208,4054],[3208,3862],3210,3144,[3145,3796],[3145,3731],[3144,3797],3146,3208,3210,3145,3210,3145,3144,[3210,3730],[3208,3731],3924,3987,3925,3925,3412,3925,3987,[3923,9559],[3925,9652],[3987,9653],3989,3475,3412,3539,3541,3538,3987,3475,3987,3542,3602,3603,3926,3924,[3987,9562],[3926,9466],[3925,9366],[3989,9367],[3477,9368],[3542,9369],3923,3987,3987,3410,3411,3412,3413,3989,3410,3923,3474,3475,3476,3477,3987,3989,3475,3924,3410,3987,3475,3476,3477,3539,3924,3989,3411,3538,3987,3476,3989,3989,3989,3924,3926,3411,3923,3924,3987,3476,3987,3926,3924,3539,3989,[3989,10133,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[2678,9923],[3000,9827],2743,2873,3001,2872,[3000,9832],[2873,9924],[2679,9827],2872,2873,2679,2808,2936,3001,2743,2745,2745,2872,2808,2808,2680,2873,2743,3000,2679,2873,2743,2681,3000,3001,2743,2936,2808,2936,2678,2679,2872,2745,[2681,9832],[2873,9928],9929,[2743,9734],2744,2872,3001,2743,2936,3001,2745,2872,2936,2743,2872,2744,2681,2679,2745,2744,2679,2936,2873,2679,2743,2872,2872,2936,2745,2679,[2681,9832],[2873,9928],10024,[2679,10118],[2743,10119],[2681,10120],[2872,10212],[3001,10213],[3000,10212],[2808,10213],[2808,10115],[2745,10116],[2680,10117],[2681,10120],2937,2680,2742,3001,[2936,10115],[10019,9541],[2744,9634],[2872,9635],2679,2745,2679,2679,3001,[3001,9733],9922,9923,9924,9925,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10050,9572],[3570,8255],[3953,8256],3954,3568,3956,4017,3954,4020,4019,4019,3956,4020,4018,3954,4018,4020,4018,3956,4018,3955,4020,4019,4019,4018,3954,3954,[2932,3957],2932,2869,2804,[2868,3952],3956,3954,4020,[4020,8453],[4018,8547],[3956,8548],[4017,8448],3953,3506,3441,3568,4020,4017,[3954,8357],[4017,8358],[8645,9477],8741,8833,8834,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,303],304,305,[415,306],415,415,415,415,415,415,415,8736,8737,8738,8741,8833,8834,[8736,8258],[3505,8351],[4020,8352],3506,4020,3570,4017,4020,3953,3956,3506,4017,3504,3954,3504,3570,4020,3953,4017,3568,3568,3569,3569,4017,3954,3569,4019,3506,3505,3569,3955,3505,3954,3568,3505,3568,4018,3506,4020,3569,[3955,615,8357],[415,8358],[415,8355],415,415,415,415,415,415,[415,8354],8543,[4025,8544],[3447,8448],4025,3447,3576,3576,3575,3446,4025,3512,3447,3447,3446,3578,3961,3510,3510,4024,4024,3447,3962,[3512,9529],[4026,9530],3578,3578,[3063,3963],3062,[3062,3832],[3510,9631],[4025,9632],[3447,9533],3577,3962,3962,3512,3448,3448,3962,4024,3449,4025,[3063,3767],3447,4023,3576,3574,4026,4025,3577,4026,3510,[4025,10106,9628],[3252,9721],[3249,9722],3249,[3252,5677],[3252,5678],[3249,5679],[3188,9631,5680],[3188,9632,5681],[3252,9533],3188,3188,3249,3251,[2931,3124],2802,[2802,3184],3186,3252,3250,3252,[2930,3061],2930,[2931,3184],3251,3249,3251,[3250,10203],[3188,10204],[3188,10106],10010,10011,10012,10015,[3249,10107],[3186,10108],[3250,10109],[3251,10110],10010,[3251,9914],[3186,9818],3250,3186,[3186,9823],[3251,9919],10015,[3185,10111],[3249,10203],[3252,10204],3251,3185,3187,3249,3188,3251,[2928,3124],2928,[2928,2992],[2928,2993],3185,3252,3188,3249,[2928,3253],2928,[2928,3121],3250,3187,[3187,9339],[3185,9342],[3252,9529],[3187,9530],[3185,5485],[3251,5486],[3185,5487],[3186,5488],[3188,5489],3251,[3249,10106],10010,[2928,3315,9721],[2928,3316,9722],[2928,3123],2928,[2928,3056],3249,3187,3251,3188,[3186,9535],[3250,9435],[3249,9438],[3187,9536],3250,[2928,3124],2928,2928,2928,2928,[2928,3248],3252,3188,[3251,5490],[3252,5491],[3249,5492],3186,3252,3187,[3251,9658],[3250,9659],[3144,9560],3210,3146,3209,[3146,4050],[3145,4052],3923,[3146,3991],3144,[3209,4050],[3209,4055],3208,[3210,3795],[3146,3731],3923,3923,3924,3987,3987,3926,3925,[3145,3798],3209,3146,3210,[3208,3859],[3146,4055],3146,[3209,3795],[3210,3732],[3209,3734],3924,[3987,9751],9940,[3925,9941],[3987,9942],[3923,9943],[3926,9845],3925,3925,[3923,9850],[3411,9851],[3989,9656],3476,3923,3923,3410,3475,3923,3987,3926,[3989,1796],1797,1798,1799,1800,1801,[3989,1802],3925,3410,[3145,3991],3143,[3145,3730],3989,3987,3924,3926,3926,3926,3987,3923,3987,3925,3987,3923,3987,3987,3923,3539,3926,3925,3926,3923,[3209,3991],3210,3208,[3144,3986],3923,3923,3925,3987,3989,3987,3923,3924,3411,3410,3412,3924,3926,3924,3925,3476,3989,3923,3540,3989,3924,3924,3926,3924,3989,[3210,3927],3208,[3144,3860],3987,3926,3924,3989,3926,3924,[3143,3991],3208,3209,3209,[3144,3730],[3210,3731],3926,3924,3987,[3145,3732],[3210,3733],[3144,3734],[3145,3735],3208,3209,3146,[3209,3794],3989,3989,3924,3923,3924,3926,3926,3926,[3924,9655],[3925,9748],[3987,9749],3474,3924,3475,3924,3926,3926,3987,3925,3540,3540,3666,3667,3476,3540,3989,[3987,9562],[3923,9462],[3987,9463],[3474,9464],[3413,9465],[3989,9563],3987,3987,3476,3475,3540,3477,3989,3474,3475,3989,3923,3540,3476,3542,3538,3539,3540,3923,3538,3539,3540,3541,3542,3538,3539,3924,3924,3475,3540,3989,3926,3925,3413,3410,3923,3924,3924,3926,3410,3538,3989,3923,3989,3989,[3924,9751],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,10019,[2743,9923],[2872,9924],[2808,9925],[2744,9926],[3000,9927],[2872,9928],10020,[2808,9923],[2745,9827],2808,2873,2744,2873,2872,2679,3000,2681,2808,2873,2679,3000,2742,2681,2936,3000,3001,3001,2681,2679,3001,2744,3001,2745,2936,3000,2678,2873,[2744,9832],[3000,9928],10024,[2937,10025],[3001,9830],3000,2872,2872,2873,3001,2678,2681,2742,2936,2679,2872,2679,2808,2743,2743,3000,2873,2681,2873,2743,2681,2743,2808,2873,2744,[2681,9736],[2681,9737],[10024,9542],[2679,10120],[2936,10214],[2808,10215],2872,2872,2679,2873,2936,2681,[2745,10212],[2872,10213],2936,2681,2936,2936,2936,3000,[2872,10115,9637],[2678,9730],[3000,9731],2680,2678,2808,2808,2936,[2936,9829],[2742,10018],10019,10020,10021,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[3954,8351],[4020,8352],3953,4020,4020,3954,3956,4017,4018,3954,4018,3954,3953,4019,3568,3955,4020,3954,3956,4018,4017,3956,3954,3953,3953,4017,[2869,4021],[2932,8453],[2868,8545],[2868,8546],[2868,4016,8448],3955,4020,[4019,8453],[4019,8549],8643,8644,[4019,8544],[4018,8448],3569,3440,3954,4018,3505,[3955,8357],[3955,8358],[8741,9573],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,303],304,305,[415,306],415,415,415,415,415,415,415,415,8833,8834,415,415,415,[415,8258],[3955,8255],[4019,8256],3504,4017,3955,3505,3955,3953,3504,3956,4017,3956,4017,3569,3954,4017,3953,3505,3956,3956,4019,4020,3569,4020,4018,3569,4017,3956,4019,3570,4019,3955,3504,3570,4020,4017,3506,3570,4017,[3955,615],[415,8165],8069,415,415,415,415,415,415,[415,8450],8639,8640,[4025,8544],[3577,8448],3575,4024,3577,3962,4023,3575,3511,4024,3578,4025,3960,4023,3513,4026,4025,3575,[3446,9433],[4025,9434],[3448,9530],3962,3961,[3062,4087],[3062,3897],3063,[3063,4022],[4025,9727],[3512,9728],[3446,9629],3578,3446,4023,3961,4026,4024,3578,3511,3578,3960,4024,4023,3446,3962,4026,3511,3448,3446,4024,3447,[3447,9628],[3186,9625],[3249,9626],3250,[3249,5773],[3251,5774],[3251,5775],[3185,9727,5776],[3251,9728,5777],[3250,9725],3188,3185,3187,[2867,3253],2931,[2802,3057],3185,3251,3252,3252,3249,[2930,3189],2930,[2930,3121],3252,3249,3187,3187,3249,3187,[3251,10106],[3185,10107],[3187,10108],[3252,10111],[3185,10203],[3251,10204],[3252,10205],[3251,10206],[3187,10106],10010,[3250,9914],[3187,9917],[3250,9918],[3185,9919],10015,[2928,3248,10111],3251,3188,3186,3188,3250,3249,3251,3185,3185,[2928,3060],2928,[2928,3056],3188,3252,3186,3185,3251,3249,[2928,2997],2928,[2928,3056],[3187,9434],[3252,9435],[3249,9438],[3185,9530],3186,[3188,5581],[3250,5582],[3252,5583],[3186,5584],[3252,5585],3250,3252,[3249,10106,9532],[2928,9625],[2928,9626],2928,2928,[2928,3120],3249,3252,3188,3187,3186,3252,[3186,9631],[3187,9632],[2928,3317,9533],2928,2928,[2928,3058],[2928,2994],[2928,2996],3252,3250,3185,[3251,5586],[3187,5587],[3186,5588],3185,3250,3251,[3250,9754],[3188,9755],[3210,9656],3209,3208,3208,3144,3209,[3208,3859],[3145,4055],3208,3145,3145,3146,[3209,3986],3923,3925,3926,3989,3411,3925,3989,3989,3926,[3208,3731],[3145,3798],3145,3143,3146,3146,[3208,3986],3924,3926,3926,[3987,9847],[3925,10036],10037,10038,10039,[3539,9941],[3989,9942],[3923,9943],[3923,9946],9947,[3924,9752],3926,3926,3926,3925,3926,3925,3989,3924,[3987,1860],1861,1280,1281,1282,1865,[3923,1866],3475,3987,[3146,3991],3145,[3146,3794],3987,3926,3989,3924,3987,3925,3925,3926,3989,3987,3477,3923,3539,3989,3923,3926,3989,3924,3923,3925,3925,[3143,3735],3209,[3209,4050],3925,3474,3925,3475,3987,3987,3987,3924,3925,3925,3987,3924,3411,3924,3987,3924,3474,3989,3925,3924,3924,3923,3924,3987,3924,3989,[3146,3798],3210,[3210,3986],3926,[3145,4051],[3210,4052],[3146,4053],[3145,4054],[3208,3861],3209,3144,[3144,3795],3540,3987,3989,3924,3540,3925,3538,3987,3923,[3145,3798],3210,3144,[3145,3922],3989,3412,3926,[3925,1414],[3540,1415],[3923,1416],3989,3924,[3926,9655],[3539,9844],[3989,9845],3925,3989,3924,3925,3926,3926,3924,3539,3924,3410,3923,3538,3989,3926,3923,3989,3989,3989,3924,[3924,9658],[3539,9659],[3410,9560],3924,3987,3923,3923,3925,3410,3474,3923,3925,3989,3412,3413,3410,3989,3411,3989,3411,3924,3411,3412,3987,3925,3410,3412,3410,3540,3989,3926,3924,3925,3476,3477,3989,3475,3411,3476,3541,3540,3413,3989,3924,3475,3989,[3989,9556],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[2681,10025],[2742,10115],10019,10020,10021,10022,10023,10024,[2681,10116],10019,[2742,9923],[2873,9827],3000,2743,2936,2872,2872,2681,2680,2679,2680,2872,2743,2873,2679,2937,[3001,9540],2872,2681,2808,2745,2679,2808,2936,2745,2808,2872,3000,[2745,9640],[2872,9641],[10024,9542],[2681,10120],2679,2745,2681,2745,2681,2744,2681,2745,2679,2681,2808,3001,2743,2681,2873,2742,2742,3001,2743,2745,2679,2679,2872,2745,2681,[2680,9832],[2743,9924],[2873,9925],[2679,9833],[2745,10120,9638],2873,2872,2679,2745,2679,3001,2681,2872,2936,2681,2937,2936,3001,2936,2681,2680,2808,[2808,9637],[3001,9634],[2808,9635],2936,2678,3001,2745,3000,2936,3001,[2743,10115],[2936,10116],[2808,10117],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9572],[4017,8447],[4017,8448],3504,4020,4018,4018,3956,4019,3956,4018,3953,3956,3955,3506,3956,4017,[4019,8453],[3955,8547],[4019,8548],[3954,8545],[4019,8546],[3955,8448],4018,3956,3956,3956,[3953,8453],[2868,3761,8549],8641,8642,[3953,8544],[3953,8545],[3954,8546],[4020,8549],8645,8739,8740,8640,[4017,8544],[4020,8448],3955,3568,4018,3955,[4020,8453],[4019,8454],[415,9573],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,303],304,305,[415,306],415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[3570,8351],[3954,8352],3569,3955,3955,3956,4017,3504,3569,4019,3953,4017,3955,3953,3505,4019,4019,3504,4018,4019,3506,3953,3505,3953,3956,3953,3569,3955,3504,3505,3956,3569,3955,3956,4017,3504,3953,4018,3568,4018,[3954,551],[415,8165],8069,415,415,415,415,415,415,415,8736,[8640,8162],[3574,8255],[4026,8256],4023,3446,4024,3960,3578,3962,3575,3511,3575,3447,3575,3576,3448,4025,3448,[3959,9529],[4025,9530],3448,4023,[2998,3835],3063,[3062,3831],[3063,3767],3577,[3962,9823],[4024,9824],[3962,9629],3578,3446,3510,3446,3578,3447,3446,3511,4026,3447,3446,4024,3577,4023,3961,3576,3448,3577,4023,[3448,9339],[3447,9724,9342,5490],[3249,9721,5491],[3187,9722,5492],3252,[3251,5869],[3251,5870],[3252,5871],[3250,5872],[3188,9535,5873],[3186,9439],3186,3185,3251,[2803,3317],2931,[2931,3248],3249,3251,3188,3252,3186,3249,[2931,2997],2802,[2802,3248],3251,3249,3251,3185,3251,3187,[3251,10203],[3252,10204],3250,3252,3252,3250,3252,3185,[3249,10106],10010,10013,10014,10015,[2928,10111],[2928,3121],3185,3249,3187,3251,3188,3186,3252,3251,3252,[2928,3253],2928,[2928,3184],3251,3185,3249,3186,3252,3185,[2928,3123],2928,[2928,3120,9529],[3187,9530],3185,3249,3250,3250,[3249,5677],[3251,5678],[3187,5679],[3185,5680],[3187,5681],3187,3186,[3249,9628],[2928,2995,9721],[2928,2996,9722],[2928,3060],2928,[2928,3184],3185,3249,3185,3251,3186,3251,[3252,9727],[3187,9728],[2928,9629],2928,[2928,2992],3187,3186,3187,3250,3187,3249,[3250,5682],[3251,5683],[3251,5684],3187,3250,3185,[3249,9850],[3188,9851],[3208,9656],3146,3209,[3209,3796],[3210,3731],[3145,3797],3146,3208,3210,3208,3210,3209,[3145,4050],3926,3926,3924,3926,3926,3926,3987,3989,3987,3924,3923,[3145,3731],[3145,3735,1414],[3209,1415],[3209,1416],[3144,4050],3925,3924,3925,3987,3987,[3987,10133],[3924,10134],[3987,10135],10037,10038,10039,10042,[3926,10043],[3924,9848],3604,3605,3925,3925,3989,3925,3923,3987,[3923,1924],[3987,1925],[3145,4051,1344],[3210,4052,1345],[3208,4053,1346],[3143,4054,1929],[3925,1930],3924,3924,[3209,3862],3210,[3145,3858],3987,3926,3987,3989,3989,3923,3989,3926,3987,3926,3923,3925,3924,3412,3539,3925,3924,3538,3925,3923,3539,[3145,3991],3210,3145,[3210,3986],3923,3925,3923,3923,3987,3412,3987,3926,3926,3924,3923,3926,3924,3924,3987,3926,3926,3987,3987,3476,3411,3926,3925,3924,3926,[3209,3991],3208,[3210,4050],[3209,3861],3146,3207,3209,3208,3208,3144,[3145,3730],3926,3926,3924,3925,3410,3989,3987,3923,3475,3924,3926,[3145,3797],3209,[3146,3859],[3210,4051],3987,[3987,1477],[3475,1478],1479,[3923,1480],[3926,1481],3923,[3987,9751],9940,[3987,9941],[3538,9845],3925,3926,3476,3475,3475,3924,3923,3987,3410,3924,3987,3539,3989,3923,3541,3413,3925,3926,[3475,9658],[3925,9659],[3925,9656],3411,3413,3987,3410,3411,3989,3410,3923,3539,3923,3476,3477,3474,3925,3475,3926,3989,3538,3989,3987,3987,3539,3989,3987,3474,3989,3989,3923,3540,3923,3987,3541,3925,3410,3926,3926,3412,3926,3476,3989,3987,3926,[3989,9556],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[3000,10120,9638],2678,2745,[2745,10115],[3000,10116],[2680,10117],[2808,10118],[3001,10119],[2681,10120],[2681,10212],[2936,10115],[10019,9541],[3000,9730],[2743,9731],2681,2872,2743,2743,3001,2936,[2680,9543],2678,2936,2743,2681,2872,[2680,9541],[2681,9636],2936,2808,2872,2745,2679,2743,2744,2872,2745,2743,2745,[2681,9736],[2745,9737],[3000,10120,9638],2936,2681,2744,2742,2679,2872,2681,3001,2680,2872,2742,2745,2809,2936,2680,2808,3000,2745,3001,2745,2745,3001,2745,2937,2873,[2936,9832],[3001,9928],10020,10021,9929,[2743,9734],2873,2873,2743,2681,3001,2743,2873,2808,2681,2745,2743,2743,2873,2681,2743,2744,2744,[3000,9637],[2681,9730],[2873,9731],2745,2681,2743,2936,3001,3001,2679,2681,[2681,10212],[3000,10213],[3000,10115],10019,9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9668],8543,[4017,8544],[3955,8545],[4019,8546],[3953,8545],[3953,8546],[3954,8448],4019,4017,4017,4018,3954,3953,3953,3954,[4020,8453],[3954,8549],8643,8644,8641,8642,[4020,8544],[3955,8545],[3956,8546],[4017,8547],[4020,8548],[3955,8549],8645,8737,8738,8640,8641,8642,8645,8741,8835,8836,8736,8640,[4018,8544],[4018,8545],[3956,8546],[3953,8547],[3955,8548],[3954,8549],8550,[415,9669],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,303],304,305,[415,306],415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[3954,8255],[3955,8256],3953,3955,3954,3570,3954,3956,3571,3956,3956,3506,3568,3953,4018,3568,3504,3956,3568,4020,3504,4017,4017,3570,[4019,8453],[3955,8545],[3953,8546],[4017,8448],3568,3956,4019,3953,3953,3569,3953,4018,3570,3570,3954,3954,4018,[3954,550,8261],[3955,550,8262],[415,8163],415,415,415,415,415,415,415,[8736,8258],[3574,8351],[3960,8352],3575,3447,3510,4025,3511,3510,3962,4025,3446,3446,4024,3446,3577,3574,[4025,9532],[3448,9721],[3962,9722],3959,4025,[3063,3963],3062,[3062,3830],3448,[4024,9823],[3448,9919],9920,[3512,9725],4024,3576,3512,3578,4024,3960,4024,3575,3512,4023,3447,3961,3447,3959,4026,3961,3575,3960,[4024,9529],[3252,9435],[3252,9438,5586],[3252,9530,5587],[3249,5588],3186,3250,[3251,5966],[3252,5967],[3250,5968],3252,[3187,9535],[3250,9536],3251,[2803,3061],2930,[2931,3057],3249,3250,3187,3249,3187,3185,3250,[2802,3124],[2803,2992],3250,3188,3251,3188,3188,3188,3188,3188,3249,3249,3188,3251,3188,3249,3251,3251,[3186,10106],[3252,10109],[3249,10110],[2928,3060,10111],2928,2928,[2928,3122],3252,3249,3249,3252,3252,3249,3188,3187,3187,[2928,2993],3185,3188,3252,3185,3185,3251,[2928,3253],2928,[2928,9532],[2928,3184,9625],[3186,9626],3252,3252,3188,3188,[3186,5773],[3187,5774],[3252,5775],[3249,5776],[3250,5777],3188,3250,[3250,9628],[3252,9625],[3186,9626],[2928,3061],2928,[2928,3248],3251,3251,3249,3250,3251,3252,[3250,9823],[3187,9824],[2928,3057,9629],[2928,2993],3252,3251,3251,3250,3185,3185,3250,[3250,5778],[3187,5779],[3249,5780],3188,3252,[3252,9850],[3250,9946],9947,[3209,3732,9752],[3210,3733],[3145,3734],3475,3475,3924,[3145,3732],[3145,3733],[3210,3734],[3208,3798],3209,3209,3146,[3144,3794],3987,3923,3474,3987,3926,3989,3923,3926,3926,3989,[3925,1477],[3923,1478],1479,[3146,1480],[3208,1481],[3210,3859],[3146,4051],3923,3924,3926,3987,[3989,10230],[3923,10231],[3926,10133],[3926,10134],[3926,10135],[3987,10138],3924,3989,3668,3669,3926,3987,3923,3987,3539,3989,3989,[3210,3991],3146,3208,3210,3145,[3210,3859],3411,[3145,3991],3208,3210,[3209,3922],3926,3924,3923,3924,3989,3925,3924,3925,3987,3923,3926,3474,3602,3603,3476,3412,3926,3924,3924,3411,3989,3926,[3209,3735],3145,[3145,4050],3926,3989,3989,3924,3925,3987,3926,3923,3475,3475,3989,3925,3925,3987,3926,3539,3926,3926,3989,3926,3474,3475,3989,[3208,4052],[3208,4053],[3145,4055],3209,3145,3208,[3145,3795],[3146,3731],[3146,3731],[3144,3732],[3146,3733],[3209,3734],3926,3923,3539,3411,3925,3987,3539,3924,3538,3925,3987,3987,3925,[3144,3731],[3145,3735],3210,[3209,3794,1540],[3989,1541],1542,1543,1544,[3475,1545],[3926,1546],[3925,9847],[3924,10036],10037,[3923,9941],[3538,9845],3989,3539,3475,3542,3477,3925,3989,3989,3923,3989,3987,3989,3926,3412,3987,3987,3925,[3989,9754],[3542,9755],[3923,9656],3541,3987,3926,3989,3923,3538,3474,3475,3989,3989,3540,3926,3542,3989,3539,3926,3475,3923,3925,3538,3987,3926,3477,3924,3538,3539,3540,3541,3924,3987,3989,3413,3989,3924,3989,3412,3923,3924,3413,3413,3989,[3411,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2681,9448],2681,2745,2680,[2681,10212],[2679,10213],[2745,10214],[2936,10215],2679,3000,2745,[2742,10115,9637],[2872,9634],[2679,9635],2681,2681,2808,2743,2873,2679,[2742,9639],[3001,9542],2936,2744,3000,2936,[2679,9637],[2743,9826],[2743,9827],2742,2873,3000,2873,2873,2873,2873,2873,2745,3000,[2743,9832],[2679,9833],[3000,9638],3000,3000,2745,2936,2936,2808,3001,3000,2872,3000,2679,3001,2872,2743,3000,2681,3001,2873,2680,2679,[2872,9832],[2679,9924],[2743,9925],[3000,9926],[2678,9927],[2872,9928],10024,[3000,10116],[2742,10117],[2681,10025],[2681,9830],2936,2872,2679,2873,2681,2679,2679,2681,3001,2681,2679,2873,2744,2808,3000,2936,2745,[2681,9637],[2679,9730],[2681,9731],2681,2872,2743,2681,2936,3000,3001,2681,2743,3001,2873,[2745,10115],9922,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9764],8639,8640,8641,8642,8641,8642,[3953,8544],[4020,8545],[3956,8546],[4019,8547],[4018,8548],[4020,8545],[4017,8546],[4018,8547],[3955,8548],[4017,8549],8645,8739,8740,8737,8738,8640,8641,8642,8643,8644,8645,8741,8833,8834,8736,8737,8738,8741,415,415,415,415,8736,8640,8641,8642,8643,8644,8645,8646,[415,9765],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,303],304,305,[415,306],415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[3506,8351],[4018,8352],4019,3504,4017,3956,3956,3956,3568,3569,3505,4018,3505,3953,3570,4019,3505,3506,4018,3506,3568,3568,3568,[3953,8453],[4018,8549],8641,8642,[3955,8544],[4018,8545],[3953,8546],[4019,8448],4019,3504,4019,4020,3504,3953,4019,3954,3953,3954,[4019,8261],[3506,8262],[415,8259],415,415,415,415,415,415,415,[415,8258],[3512,8255],[4025,8256],3510,3577,3576,3960,3512,3575,3446,3448,3513,3446,3447,4026,3574,3576,[3576,9628],[3578,9817],[3447,9818],3577,3447,[3063,4091],3062,[3062,3958],[3447,9727],[4023,9728],[10015,9533],[3447,10016],[4024,9821],4025,3448,3446,3447,3578,4026,4026,4025,3510,4026,3448,4026,3960,3448,3962,4024,4026,[3576,9532],[3250,9721],[3186,9722],[3186,5682],[3187,5683],[3249,5684],3249,3249,3249,3187,3251,3188,3251,[3252,9535],[3252,9439],[2930,3125],2802,[2802,3056],3249,3250,3187,3187,3188,3188,[2930,3253],2931,[2931,3056],3251,3251,3188,3185,3188,3252,3187,3250,3252,3252,3187,3250,3186,3252,3252,3188,3252,[3186,10205],[3186,10206],3187,[2928,2997],2928,2928,[2928,3312],3187,3251,3187,3186,3252,3185,3249,3185,3188,3186,3188,3249,3252,3251,3251,[2928,3124],2928,[2928,3057,9434],[3252,9530],2928,2928,[2928,3122],3249,3186,[3185,5869],[3252,5870],[3186,5871],[3187,5872],[3188,5873],3186,[3188,9339],[3249,9724,9342],[3251,9721],[3187,9722],[2928,3189],2928,[2928,3121],[2928,3313],3251,3187,3186,3185,[3188,9823],[3249,9919],9920,[2928,3121,9725],3185,3185,3188,3250,3185,3251,3187,3252,3251,3249,3187,3252,[3249,9850],[3250,9946],10042,[3987,10043],[3924,9848],3987,3926,3989,3987,3924,3989,3989,3926,3923,[3208,3735],3210,3209,[3207,3922],3925,3924,3924,3410,3989,3924,3989,3924,3925,[3924,1540],[3926,1541],1542,1543,1544,[3143,1545],[3145,1546],3209,[3208,4050],[3143,4053],[3144,4054],3987,3923,3925,3987,[3410,10230],[3989,10231],3926,3925,3989,3987,3924,3989,3475,3412,3989,3924,3539,3923,[3209,4055],3210,3143,3143,3210,3146,[3145,4050],[3146,4055],3209,[3143,3730],3925,3474,3924,3923,3923,3989,3987,3923,3924,3925,3989,3923,3989,3666,3667,3475,3989,3924,3987,3926,3926,3925,3989,[3146,3991],3210,3209,[3209,3986],3926,3989,3925,3475,3987,3926,3926,3987,3987,[3210,4051],3989,3987,3923,3925,3925,3987,3925,3989,3923,3987,3989,[3146,3799],3146,3210,3208,[3145,3796],[3146,3732],[3208,3734],3926,3923,3923,3538,3412,3925,3924,3926,3923,3987,3925,3924,3411,3989,3989,3989,3987,3987,3987,3926,[3210,3799],3144,[3146,3922,1604],1605,1606,1607,1608,1609,[3926,1610],3989,3475,[3540,10133],[10037,9559],[3989,9652],[3989,9653],3987,3923,3926,3538,3477,3923,3411,3923,3989,3411,3924,3923,3923,[3924,9558],3987,3477,[3925,9658],[3923,9659],[3541,9656],3925,3410,3925,3987,3410,3924,3538,3987,3925,3989,3412,3925,3410,3410,3987,3924,3926,3475,3412,3476,3987,3923,3926,3987,3411,3411,3926,3924,3924,3539,3476,3477,3413,3926,3926,3474,3926,3413,3476,3925,3926,[3412,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[3000,9545],2681,2742,2681,2872,2873,2681,3001,3000,2745,[2679,9637],[2678,9730],[2743,9731],2681,2679,2743,2681,2745,[3000,9832],[2745,9833],[2873,9638],2873,2681,3001,3000,[2679,9733],9922,[2744,9923],[2745,9924],[2744,9925],[2808,9827],2872,2679,2743,2936,[2872,9832],[3001,9924],[3000,9925],[2809,9928],9929,[2808,9734],2745,3001,2808,3000,2873,2743,2872,2745,3000,2872,2744,2679,2872,3001,2742,2743,2745,2937,2681,[3001,9832],[2744,9928],10020,10021,10022,10023,10024,[2873,10120],[2743,10212],[2936,10213],2745,3001,2936,2743,2936,2744,3000,2936,3000,2936,3000,2873,2742,3001,2936,2936,2808,2743,2745,[2872,9637],[2808,9826],[3001,9827],2681,2873,2872,2743,2873,2679,2679,2679,2808,3001,2872,2743,[2680,10018],10019,9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8736,8737,8738,8737,8738,8640,8641,8642,8643,8644,8641,8642,8643,8644,8645,8741,8835,8836,8833,8834,8736,8737,8738,8739,8740,8741,415,415,415,415,8833,8834,415,415,415,415,415,415,8736,8737,8738,8739,8740,8741,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,549],[2773,550],[3219,550,303],304,305,[3221,550,306],[2773,550],[3155,551],415,415,415,415,415,415,415,415,415,415,415,[415,8258],[4017,8447],[3956,8448],4020,3954,4017,4019,[3956,8453],[4019,8545],[3506,8546],[3955,8448],4018,4017,3505,3506,4019,4017,4019,3954,4020,3568,3568,3504,[3953,8453],[4019,8549],8645,8737,8738,8640,8641,8642,[3956,8544],[4017,8448],4020,3953,3505,3568,3506,[4019,4249],4019,3506,4020,[3953,8357],[3506,8358],[415,8259],415,415,415,415,415,415,415,[415,8354],[3959,8351],[3575,8352],3447,3961,4026,4023,3960,3577,3446,3448,3575,4023,3446,3448,3511,3448,[4026,9724],9913,[3511,9914],[3577,9818],[3063,4027],2998,[2998,3831],3446,[4024,9823],[3510,9824],[3574,10111,9629],4025,3577,3446,3446,3512,3576,4023,4024,3448,4025,3446,3447,4024,3578,3577,4026,3959,3578,3576,[3511,9628],[3250,9817],[3250,9818],[3187,5778],[3186,5779],[3187,5780],3252,3188,3252,3250,3250,3250,3249,3185,[3185,9535],[2930,3189,9536],2930,[2802,3120],3249,3250,3249,3186,3186,3252,[2802,3317],2930,[2931,3184],3187,3188,3186,3188,3249,3252,3185,3187,3188,3187,3188,3186,3186,3185,3188,3251,3251,3188,3188,3187,3249,[2928,3059],2928,2928,[2928,3248],3252,3187,3250,3250,3187,3188,3188,3187,3185,3249,3249,3186,3185,[3252,9339],[2928,9342],[2928,9529,5490],[3252,9530,5491],[3188,5492],[2928,3189],2928,2928,[2928,3248],3252,3251,[3185,5966],[3251,5967],[3251,5968],3188,[3250,9434],[3187,9435],[3186,9438],[3188,9530],3252,3188,[2928,2993],[2928,3060],2928,[2928,3056],3251,3251,[3250,9631],[3187,9632],10015,[2928,10016],[2928,9821],[2928,3248],3252,3252,3185,3249,3249,3188,3188,3250,3187,3187,[3185,9850],[3188,9946],10042,[3474,10138],3926,3924,3925,3412,3987,3926,3926,3926,3412,3987,[3209,4054],[3209,3862],3145,[3144,3795],3925,3987,3538,3987,3924,3989,3925,3924,3989,3474,[3925,1604],1605,1606,1607,1608,1609,[3208,3798,1610],3209,3210,3146,3210,[3145,3986],3925,3924,3923,3989,3989,3925,3924,3987,3925,3925,3989,3926,3987,3925,3924,3987,[3145,3991],3143,3209,3208,3146,3208,3210,3210,3143,3210,[3208,3986],3926,3476,3412,3474,3987,3410,3923,3989,3411,3925,3989,3474,3926,3925,3989,3987,3923,3925,3987,3924,3923,3925,3924,3925,[3207,3735],3208,[3208,3859],3926,3926,3539,3924,3926,3989,3989,3924,[3144,3799],3146,[3208,3794],3987,3926,3926,3923,3987,3924,3987,3923,3925,3925,[3208,3927],3145,[3209,3730],[3145,3731],3925,3923,3924,3926,3924,3987,3923,3924,3923,3924,3410,3989,3923,3923,3923,3924,3410,3926,3987,3411,3539,3923,3926,[3208,3863],3209,[3208,4050,1668],1669,1670,1671,1672,1673,[3924,1674],3923,3925,3925,[3923,10133,9655],[3538,9748],[3926,9749],3924,3475,3923,3540,3987,3926,3924,3989,3542,3413,3476,3989,[3923,9559],[3924,9654],3477,3474,[3923,9850],[3923,9851],[3987,9656],3477,3538,3989,3925,3474,3476,3987,3924,3476,3476,3476,3923,3474,3989,3541,3925,3924,3987,3989,3475,3538,3926,3987,3923,3411,3475,3410,3989,3538,3539,3540,3541,3923,3925,3923,3987,3989,3411,3926,3987,3987,[3925,9655],9844,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2872,9542],2872,2936,2809,2873,2873,2744,2679,2745,[2742,9637],[3000,9826],[2872,9827],3000,2680,2681,2680,[2678,9832],[2681,9928],9929,[2743,9734],3000,2873,2872,2681,[2681,9829],[3001,10018],10019,10020,10021,[3001,9923],[3001,9924],[2808,9925],[2681,9926],[2872,9927],[2681,9928],10020,10021,10024,[2743,10025],[3000,9830],3000,2873,3001,3001,2808,2742,2679,2809,2745,3001,2872,2744,2679,2679,3001,2808,2743,2745,[2678,9832],[2743,9928],10024,[2873,10116],[3001,10117],[2873,10118],[2872,10119],[2743,10120],2743,2679,2873,2742,2743,3000,3001,2872,2679,2743,2745,2872,3001,2681,2873,3001,2681,2679,2809,2873,2745,2872,[3000,9733],9922,[2742,9923],[2679,9924],[2681,9925],[2679,9827],2873,3001,2936,2936,2808,2745,2743,3000,2681,2808,[3000,10115],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8833,8834,8835,8836,8736,8737,8738,8739,8740,8737,8738,8739,8740,8741,415,415,415,415,415,415,8833,8834,8835,8836,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8833,8834,8835,8836,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3219,613],2771,[2798,3094],2927,2862,[2926,3282],2770,3155,[3155,550],[2707,551],415,415,415,415,415,415,415,415,415,[415,8354],8543,[3955,8544],[4018,8545],[4020,8546],[4018,8547],[3953,8548],[3956,8549],8641,8642,[3953,8544],[3569,8448],3505,3569,4019,3955,[3955,8453],[3955,8545],[3954,8546],[3956,8547],[4017,8548],[3955,8545],[4019,8546],[3955,8549],8645,8741,8833,8834,8736,8737,8738,8640,[3953,8544],[4019,8448],3504,3505,3956,[4018,4344],[3955,4345],[3955,4346],[3569,8453],[3956,8545],[3505,8546],[3504,8454],[415,8259],415,415,415,415,415,415,[415,8063],8064,[4026,8160],3575,4024,4024,3513,3576,3578,4026,3576,3446,4026,3446,3576,3960,4024,3446,[3512,9820],[4026,10009],10010,[3578,9914],[3574,9915],[3062,3767,9916],[3574,9917],[3577,9918],[4024,9919],9920,[4024,9725],3448,3960,3638,3639,3578,3446,3447,3447,3578,4024,4025,4024,3511,3446,3447,4024,4024,3960,3578,[3578,9724],9913,[3251,9914],[3185,9915],[3188,9916],[3185,9818],3252,3187,3187,[3249,5304],[3186,5305],3249,3252,3251,3250,[3188,9535],[2930,9439],[2930,3184],3187,3250,3249,3188,3188,[2930,3061],2931,[2802,3057],3252,3252,3186,3250,3252,3252,3187,3187,3250,3186,3186,3250,3185,3252,3188,3250,3251,3249,3186,3185,3250,3188,[2928,3253],2928,2928,[2928,3122],3188,3250,3249,3250,3186,3251,3252,3185,3187,3252,3249,3186,[3250,9434],[3252,9435],[3185,9438],[3250,9530,5586],[3250,5587],[3251,5588],3252,[2928,3059],2928,[2928,3312],3185,3188,3185,3188,3250,[3185,9529],[3187,9530],3186,3188,3252,3249,3186,3252,[2928,3061],2928,[2928,3184],3252,3187,[3250,9727],[3187,9728],[3250,10111,9533],[2928,2993],[2928,2996],3252,3252,[3186,5485],[3250,5486],[3185,5487],[3188,5488],[3187,5489],3185,3249,3188,[3252,9850],[3249,9946],10042,[3924,10138],3925,3924,3924,3987,3474,3474,3987,3923,3924,3989,[3210,3991],3145,3208,3210,[3208,3986],3989,3924,3925,3926,3923,3987,3476,3923,3989,3411,[3989,1668],1669,1670,1671,1672,1673,[3924,1674],[3209,3731],[3209,3735],3209,3145,[3144,3859],3987,3987,3989,3474,3411,3989,3923,3925,3926,3989,3477,3923,3924,3989,3925,3412,[3144,3991],3145,3208,3210,3208,3209,3146,3208,3210,[3210,3795],3987,3987,3923,3926,3926,3925,3923,3989,3925,3475,3539,3926,3989,3476,3923,3538,3989,3925,3538,3925,3923,3474,3987,3989,3926,3925,[3210,3798],3207,[3210,3986],3987,3925,3987,3925,3923,3476,3924,[3208,3863],3208,[3208,3858],3926,3924,3924,3926,3925,3925,3412,3926,[3210,4053],[3207,4054],[3210,3862],3146,[3208,3986],3924,3925,3923,3923,3987,3925,3989,3989,3989,3926,3925,3923,3923,3926,3926,3923,3474,3926,3987,3987,3987,3475,3989,3923,[3146,3927],3210,[3209,1732],1733,1734,1735,1736,1737,[3924,1738],3925,3926,3989,[3924,9655],[3410,9844],[3926,9845],3923,3925,3541,3413,3925,3926,3926,3989,3924,3539,3923,3475,[3923,9655],[3987,9844],[3925,9944],[3925,9945],[3987,9946],9947,[3474,9752],3987,3925,3987,3412,3925,3925,3540,3410,3411,3987,3540,3541,3539,3989,3987,3926,3541,3989,3926,3926,3474,3413,3923,3924,3923,3539,3540,3541,3987,3987,3474,3413,3926,3412,3538,3924,3542,3987,3475,3539,3925,[3925,9751],9940,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2745,9638],2808,3001,2681,2681,2745,2742,2745,2745,[2678,9733],9922,[2743,9923],[3000,9924],[2744,9925],[2679,9926],[2808,9927],[2745,9928],10024,[2742,10025],[2873,9830],2742,2679,2681,2936,2745,3001,[3001,10115],[3001,10116],[2745,10117],10019,10020,10021,10022,10023,10024,[2742,10116],[2681,10117],[2936,10120],2745,3000,3001,3001,3000,2872,2936,3000,2680,2681,3000,2681,2679,2681,2872,2936,2808,3000,2679,[2679,9640],[2936,9641],[10024,9542],[2681,10120],[2743,10212],[3000,10213],[2679,10214],[2680,10215],2937,3000,2743,2743,2743,2679,2872,2872,2745,2808,2679,2744,2936,3000,2936,3001,2679,2680,2936,2809,3000,2872,2681,[3001,9829],[2872,10018],10019,10020,10021,[3000,9923],[3001,9827],2873,2745,2808,2743,2873,2744,3001,2873,2873,[3001,9538],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8833,8834,8835,8836,8833,8834,8835,8836,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2708,549],[2706,550],[2771,550],[2707,550],[2707,551],415,415,415,415,415,415,415,415,[2772,549],[3219,550],[3157,551],415,415,[3219,549],3219,[2798,3223],2862,2926,2798,[2798,3028],2707,3158,2772,2771,[3158,551],415,415,415,415,415,415,415,415,[415,8450],8639,8640,8641,8642,8643,8644,8645,8737,8738,8640,[4018,8544],[3953,8545],[3956,8546],[3953,8547],[4017,8548],[4020,8549],8641,8642,8643,8644,8641,8642,8645,8741,415,415,415,415,8833,8834,8736,8640,[4018,8544],[4018,8547],[3953,8548],[4018,8448],4017,3953,[3956,8453],[3506,8549],8641,8642,8550,[415,8355],415,415,415,415,415,415,8159,[3577,8160],4023,3578,3962,3510,3960,4025,4026,3447,3578,3511,4026,4026,3576,3511,4024,4026,3960,3447,[3575,10106],10010,10011,10012,10013,10014,10015,[4025,10016],[3446,9821],3447,3446,3702,3703,3446,3577,4026,3575,3448,3448,3446,3575,3574,3577,4024,3577,4025,3960,3512,[4026,9820],[4024,10009],10010,10011,10012,[3185,9914],[3251,9818],3252,[3250,5399],[3252,5400],[3252,5401],[3250,5402],3251,3250,3185,3187,[3188,9535],[3188,9536],3251,3251,3186,3252,3249,[2802,3125],2802,[2931,3312],3188,3249,3249,3187,3249,3187,3185,3187,3250,3249,3188,3185,3187,3187,3252,3188,3188,3252,3185,3185,3251,3187,3186,[2928,2993],[2928,3059],2928,[2928,3248],3252,3186,3249,3249,3250,3186,3185,3252,3250,3185,[2928,3315,9529],[2928,3315,9530],3250,3250,[3250,5682],[3185,5683],[3186,5684],3252,3185,[2928,2997],2928,[2928,3121],[2928,3314],[2928,3315],[2928,3316],[3251,9434],[3186,9530],3186,3251,3249,3249,3251,3251,3187,[2928,3125],2928,[2928,3121],3250,3251,[3249,9823],[3185,9824],[3186,9629],3250,3185,3251,3249,[3252,5581],[3250,5582],[3188,5583],[3251,5584],[3251,5585],3186,3251,[3249,9658],[3251,9659],[10042,9560],[3924,10138],3923,3925,3923,3925,3926,3924,3604,3605,3987,3926,3411,3923,[3146,3797],3209,3145,[3209,4050],[3210,4051],3989,3989,3925,3926,3925,3538,3987,3923,3926,[3925,1732],1733,1734,1735,1736,1737,[3989,1738],3989,[3208,3861],3145,3209,3210,[3209,3986],3924,3476,[3989,9558],3923,3925,3924,3923,3987,3925,3926,3924,3410,3476,3989,3987,[3210,3862],3209,3145,3144,3144,3207,3144,3210,3208,[3207,3986],3989,3924,3925,3987,3926,3540,3924,3923,3923,3987,3925,3924,3926,3989,3924,3476,3989,3989,3987,3989,3987,3926,[3210,4051],[3208,4051],[3145,4052],[3208,4053],[3145,3862],3209,[3210,3986],[3989,9561],3540,3989,3925,[2757,4054],[2757,4051],3989,[3145,3927],3209,[3145,3922],3987,3925,3924,3926,3987,3412,3538,[3209,3991],3145,3208,[3208,3730],[3145,3731],3987,3925,3987,3474,3923,3540,3925,3987,3923,3924,3926,3412,3926,3989,3923,3987,3989,3924,3924,3925,3475,3925,3923,3924,3987,3987,[3210,3798],[3208,1796],1797,1798,1799,1800,1801,[3989,1802],3923,3924,3987,[3989,9751],9940,[3924,9941],[3411,9845],3925,3987,3925,3926,3925,3989,3410,3925,3923,3987,3542,[3926,9751],9940,10040,10041,10042,[3987,10043],[3923,9848],3925,3474,3989,3412,3924,3539,3538,3925,3541,3539,3923,3413,3411,3410,3411,3412,3413,3924,3926,3474,3925,3477,3413,3924,3412,3989,3412,3925,3923,3987,3923,3989,3923,3925,3924,3476,3410,3989,3924,3924,3539,[3923,9847],[3989,10036],[10037,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2681,9638],2679,3000,2872,2808,2872,2679,2679,2745,[2936,9829],[2872,10018],10019,10020,10021,10022,10023,10024,[2745,10120],3001,3000,2936,2679,2745,3000,2936,2679,2679,[3001,10212],[2872,10213],[2936,10115],[2678,10116],[2872,10117],[3000,10118],[3001,10119],[2680,10120],[2872,10212],[2681,10213],2873,2743,2743,2745,2936,2808,2681,2936,2679,2745,2743,2873,2679,2936,2873,2743,2873,2679,3000,2743,[2679,9736],[2679,9737],[2873,10120,9638],3000,2743,3001,3001,2873,2681,2936,2745,3000,2873,2872,2681,2679,2745,2873,2744,2679,2936,3000,2742,2872,2743,2681,3001,3000,3001,3000,2936,3000,2680,[2872,10115],[2745,10116],[2742,10117],[10019,9541],[2808,9634],[2681,9635],2808,2681,2936,2936,3000,2808,2678,[2681,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,613],3221,[2927,3286],2708,2643,[3157,550],[3158,551],415,415,415,415,415,415,[2708,613],2707,2708,[3157,550],[3221,550],3157,3157,2772,[2798,3030],2927,2927,[2798,3218],2707,2707,2706,2772,2771,[3156,3825,550],[3955,550],[3953,551],415,415,415,415,415,415,415,8736,8737,8738,8739,8740,8741,8833,8834,8736,8640,8641,8642,8643,8644,8645,8737,8738,8739,8740,8737,8738,8741,415,415,415,415,415,415,415,415,8736,8640,8643,8644,[3955,8544],[4017,8545],[3954,8546],[3504,8549],8645,8737,8738,8646,[415,8451],415,415,415,415,415,[415,8162],[3447,8351],[3578,8352],3960,3448,4025,3448,3510,3577,3446,3577,3578,3446,3577,3446,3513,3446,3962,4024,3961,3640,3641,[3577,10106],[4025,10107],[3447,10108],[3962,10109],[3448,10110],[3959,10111],3576,3446,3512,3962,3446,3448,3578,3511,3447,4026,3446,4025,3446,3446,3576,3577,3511,4026,4026,4026,4026,3578,[3446,10105],[4025,10106],[3578,10107],[3578,10108],10010,[3187,9914],[3187,9818,5494],[3251,5495],5496,5497,[2928,5498],[2928,3056,5499],3250,3252,3249,[3249,9631],[3250,9632],[3187,9533],3252,3251,3251,3249,[2802,3189],2930,2802,[2931,3056],3249,3188,3251,3249,3250,3185,3185,3186,3250,3252,3187,3187,3251,3185,3250,3188,3249,3187,3187,3186,3188,3251,3188,3188,[2928,2993],3187,3187,3187,3252,3251,3249,3252,3186,3186,3251,[3187,9532],[2928,3060,9625],[2928,9626],[2928,3056],3186,[3252,5778],[3188,5779],[3251,5780],3187,3188,[2928,3253],2928,2928,2928,2928,[2928,9529],[3188,9530],3187,3185,3185,3188,3250,3185,3252,3188,[2928,3189],2928,2928,[2928,3248],[3252,9823],[3188,9919],9920,[3188,9725],3186,3252,3187,3249,[3187,5677],[3188,5678],[3187,5679],[3250,5680],[3249,5681],3187,3185,[3186,9754],[3252,9755],[3474,10138,9656],3924,3411,3924,3924,3925,3926,3987,3668,3669,3925,3989,3923,3925,[3145,3799],3145,3210,3145,3209,[3145,3859],[3209,4053],[3209,4054],[3146,4051],[3209,4052],[3208,4053],[3145,4054],3923,3538,[3926,1796],1797,1798,1799,1800,1801,[3923,1802],[3209,3991],3208,3209,3143,3210,[3143,3860],[3209,4053],[3987,9559],[3987,9654],3924,3923,3925,3987,3989,3925,3925,3925,3926,3923,3989,[3209,3799],3210,3209,3146,3210,3210,3209,3209,3145,[3145,9850],[3146,4050,9944],[3987,9945],[3412,9845],3987,3925,3926,3476,3989,3926,3989,3925,3987,3989,3989,3923,3987,3989,3412,3989,3926,3924,3924,3923,[3210,3798],3208,3207,3209,3145,3207,[3143,3986],[3987,9657],3926,3924,[2500,3861],2821,2820,[2757,3860],[3143,3927,9558],3208,[3210,3986],3987,3923,3926,3987,3475,3987,3987,[3210,3861],3145,3208,[3146,3986],3987,3475,3412,3923,3926,[3146,4052],3923,3925,3474,[3145,4054],3925,3989,3987,3987,3412,3987,3989,3987,3923,3989,3987,3987,3923,3989,3989,3924,3989,[3208,3991],[3145,1860],1861,1862,1863,1864,1865,[3925,1866],3987,3989,3989,[3925,9847],[3923,10036],10037,[3987,9941],[3989,9845],3412,3411,3925,3412,3476,3924,3538,3413,3989,3926,[3923,9847],[3410,10036],[3924,10136],[3987,10137],[3539,10138],3924,3987,3475,3474,3540,3412,3539,3989,3410,3989,3542,3476,3476,3477,3926,3474,3987,3989,3923,3413,3923,3925,3926,3926,3987,3926,3539,3989,3923,3987,3925,3926,3987,3411,3987,3538,3475,3926,3476,3411,3925,3606,3607,3925,3412,[3925,10133,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[2937,9638],2743,2745,2808,2743,3001,2681,2678,2808,2744,2872,[2679,10115],[3001,10116],[2745,10117],[2873,10118],[2745,10119],[2678,10120],2873,2680,2808,2936,2743,2681,2872,3001,2808,2808,2681,2679,2873,[2681,10212],[2681,10213],[3000,10214],[2808,10215],2742,2937,2873,2873,2872,2745,2743,3001,2808,3000,2936,2808,3001,2936,2681,2873,2873,2873,2936,2679,2745,2679,2808,[2743,9736],[2681,9737],[2678,9638],2745,2744,3000,2936,2808,2679,3001,2681,2873,2808,2873,3000,2745,2936,2743,2681,2873,2679,3001,2745,2745,2745,2679,2808,3001,3000,2873,2872,3001,2743,2679,[2745,10212],[3000,10213],[3001,10115,9637],[3001,9730],[2745,9731],2873,2872,3001,3000,2743,2744,2808,[2743,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2772,549],[3158,550],[2707,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2772,549],[3155,550],[2772,551],415,[2770,549],[2771,550],[2706,551],415,415,[2771,549],2708,[2926,3223],2927,[2926,3218],2706,3219,[2707,615],415,415,415,415,415,415,[3157,677],2772,3155,3156,2772,2834,2835,3221,2771,[2798,3029],[2927,3028],3157,2642,2834,2835,3158,2707,[2708,4016],3954,[3956,615],415,415,415,415,415,415,415,415,8833,8834,8835,8836,415,415,415,415,8736,8737,8738,8739,8740,8741,8833,8834,8835,8836,8833,8834,415,415,415,415,415,415,415,415,415,415,8736,8739,8740,8640,8641,8642,8645,8741,8833,8834,415,415,415,415,415,415,415,[415,8258],[4024,8255],[3448,8256],4023,4025,4024,3961,3577,4026,3962,3577,3960,3577,3577,4024,3577,3510,3578,3446,4023,3704,3705,3447,[4025,10203],[3512,10204],[3961,10205],[3447,10206],3962,3447,4025,3961,3512,3959,3449,3447,3574,4023,4023,3959,3512,3446,3575,4024,4026,4024,4024,4024,3578,3575,3448,3446,4025,[3448,10203],[3578,10204],[3578,10106],[10010,9532],[3249,9721,5590],[3186,9722,5591],5592,5593,[2928,5594],[2928,3184,5595],3249,3249,3186,[3188,9727],[3249,9728],[3187,9629],3252,3187,3252,3187,3250,[2802,3060],2930,[2930,3184],3250,3188,3251,3187,3252,3186,3251,3188,3188,3185,3187,3249,3186,3251,3187,3185,3252,3251,3185,3186,3249,3185,3188,3251,3249,3185,3250,3250,3252,3186,3185,3186,3187,3250,3188,[3187,9628],[2928,3253,9721],[2928,9722],[2928,3120],3187,[2928,3315],[2928,3316],3249,3249,3251,3186,[2928,3059],2928,2928,[2928,9532],[2928,9625],[3187,9626],3251,3250,3186,3185,3185,3187,3187,3187,3250,[2928,2997],2928,[2928,3121,9823],[3250,9919],10015,[3186,10016],[3187,9821],3188,3186,3185,3251,[3186,5773],[3186,5774],[3249,5775],[3252,5776],[3249,5777],3185,3250,[3185,9658],[3249,9659],[3923,9656],3926,3924,3539,3987,3987,3925,3926,3923,3475,3923,3474,3474,3926,[3146,3927],3145,3208,[3146,3796],[3208,3735],3210,3146,3144,3209,3146,3146,3208,[3209,3860],[3146,4053],[3146,4055,1860],1861,1280,1281,1282,1865,[3210,4054,1866],[3209,3861],3146,[3146,3796],[3144,3732],[3210,3733],[3146,3798],3209,[3145,3986,9655],[3924,9844],[3923,9845],3926,3924,3925,3411,3923,3476,3987,3987,3926,3987,[3208,3863],3145,3145,3208,3145,[3146,4249],3209,3145,[3210,9850],[3208,9946],10040,10041,[3208,4052,9941],[3926,9942],[3989,9943],[3924,9845],3924,3989,3987,3410,3925,3540,3926,3924,3987,[3989,9850],[3926,9942],[3476,9943],[3923,9845],3924,3476,[3208,4053],[3144,4054],[3208,4055],3145,3146,[3146,3796],[3210,3731],[3210,3735],[3208,3859,9850],[3208,9851],[2563,4051],[2692,3861],2821,2757,2501,[2821,3795],[3924,9654],[3210,3798],[3146,4050],[3144,4051],3539,3987,3924,[3923,9850],[3208,4052,9845],[3146,3862],3208,3146,[3209,3730],3925,3540,3989,[3209,4051],[3145,4052],[3210,3861],3210,[3209,4050],[3146,4051],[3207,3861],3143,[3209,3860],[3146,4051],[3209,4052],[3210,4053],[3208,4054],[3143,4053],3987,3412,3926,3412,3926,3924,3925,3925,3925,3926,3923,[3208,3861],[3145,1924],[3209,1925],[3145,3730,1926],[3923,1927],[3924,1928],[3474,1929],[3923,1930],3923,3987,3987,3925,3923,[3989,10133],10037,[3923,9941],[3987,9942],[3987,9943],[3923,9845],3412,3989,3541,3987,3926,3926,3475,3542,3412,[3412,10232],[3923,10233],3989,3412,3538,3926,3987,3541,3926,3411,3924,3925,3604,3605,3412,3924,3925,3542,3475,3989,3413,3477,3542,3925,3989,3924,3987,3538,3926,3923,3410,3411,3926,3926,3541,3987,3989,3410,3542,3412,3474,3538,3987,3476,3670,3671,3475,3925,[3412,9751],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,[2679,9734],2745,2745,2680,2678,2872,2745,3001,3000,2808,2680,2872,[2873,10212],[2681,10213],[2872,10214],[3001,10215],2679,3001,2743,3001,2743,2872,2679,2679,2873,2681,2744,3000,2873,2679,2681,2679,2873,2681,2745,3000,3000,2808,2745,2808,3001,2936,2872,2936,2743,2745,2679,2872,2936,2680,3000,2681,2743,2680,2743,2743,2678,[3000,9832],[2681,9833],[2872,9638],2936,2743,2742,2744,2743,2681,2681,2872,2679,3000,2873,2936,2680,2681,3001,2743,3000,2678,2873,3001,3000,2936,2742,3000,2936,2936,2679,3000,2679,2679,3001,2679,2936,[2936,9637],[2936,9634],[2742,9635],3000,2681,2745,2936,3001,3000,3000,[3000,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3156,549],[3156,551],415,415,415,[3221,613],3157,3221,[2772,550],[2706,551],415,415,415,415,415,415,415,415,415,415,415,415,[3156,613],3219,2708,[3219,550],2772,3221,2770,[3155,550],[3155,550],3219,3156,[2927,3094],[2863,3028],2772,[2927,3286],2707,2643,[3221,551],415,[2771,549],[3156,551],415,[2707,549],3221,2643,2707,2708,3158,2898,2899,2707,2770,3156,3157,3157,3219,2898,2899,2772,[3221,3825],3955,4019,[4019,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8833,8834,8835,8836,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8835,8836,8736,8737,8738,8741,415,415,415,415,415,415,415,415,415,415,[415,8258],[3447,8351],[3510,8352],3447,4024,3961,3510,3448,3575,3960,4025,3576,3448,3575,4025,3575,3576,3962,3511,3960,3447,4024,3448,3962,3959,4024,3962,3511,3960,3577,4026,3513,3446,3574,3447,3446,3578,4024,4023,4024,3961,3575,3578,3446,4024,4025,3448,3448,3511,3578,3577,4025,3513,4025,3447,[3578,10106,9724],[3250,9721,5686],[3252,9722,5687],5688,5689,[2928,3057,5690],[3185,5691],[2928,3313],3187,3186,[3187,9727],[3249,9728],[3187,9629],3249,3251,3250,3185,3250,3188,[2802,2993],3188,3252,3250,3250,3188,3252,3188,3187,3250,3185,3188,3251,3251,3188,3187,3188,3186,3251,3251,3188,3188,3188,3186,3249,3185,3250,3188,3187,3185,3250,3251,3187,3188,3252,3187,3252,[2928,3316,9529],[2928,3123,9530],2928,[2928,3184],[2928,3253],2928,2928,[2928,3121],3250,3250,3188,[2928,3061],2928,2928,[2928,9628],[3251,9721],[3249,9722],3186,3251,3250,3187,3251,3249,3250,3185,3187,[2928,3061],[2928,9823],[2928,9919],10015,[3185,10111],3249,[3186,5490],[3186,5491],[3252,5492],3186,3251,[3251,5869],[3186,5870],[3188,5871],[3188,5872],[3249,5873],3188,3188,[3187,9850],[3188,9851],[3925,9656],3924,3924,3477,3925,3924,3924,3925,3926,3924,3987,3924,3924,3926,3926,[3145,3797],3145,[3208,3794],3926,[3210,3731],[3208,3732],[3145,3733],[3208,3734],[3146,3735],3208,3145,3210,3145,[3145,1924],[3146,3986,1925],[3146,3991,1344],[3143,1345],[3146,3859,1346],[3145,4055,1929],[3144,1930],3210,3145,[3208,3986],3925,3411,[3145,3799],3146,[3209,4050,9751],9940,[3926,9941],[3926,9845],3926,3926,3926,3926,3923,3924,3539,3989,3476,[3209,3927],3208,3145,3146,[3208,4344],[3210,4345],[3145,4346],[3146,9850],[3145,9946],10042,[2820,10136],[2565,10137],10037,10038,10039,[3410,9941],[3987,9845],3987,3925,[3924,9850],[3539,9945],[3923,9845],3540,3412,[3925,9850],[3925,9946],10038,10039,[3926,9941],[3540,9845],3925,[3210,3797],[3146,3795,9850],[3209,3731,9942],[3146,3797,9943],[3210,3796,9845],3987,3926,[3923,9850],[3926,9946],9947,2820,2565,2565,2629,2629,[2756,4050],[3923,9844],[3209,3861,9845],3146,3208,[3146,3859,9850],[3924,9944],[3924,9945],[3539,9946],[3208,9941],[3146,9944],[3145,9945],[3209,9845],[3209,3859],[3208,4051],[3209,4052],[3207,4055],3146,3146,3208,3210,[3209,9850],[3143,9944],[3145,9945],[3143,9845],3208,3145,[3144,9850],[3146,9942],[3208,9943],[3145,9845],[3210,3794],3925,3923,3989,3926,3538,3926,3925,3925,3926,[3143,3799],3145,3208,3208,[3144,3794],3924,3926,3925,3923,3924,3989,3926,3926,3924,3989,[3923,10133],10037,10038,10039,[3987,9941],[3923,9845],3412,3477,3923,3987,3540,3923,3924,3924,3925,3926,3474,3538,3987,3538,3540,3926,3923,3475,3540,3540,3668,3669,3926,3411,3925,3474,3411,3925,3923,3542,3987,3540,3606,3607,3989,3924,3413,3926,3474,3475,3476,3539,3412,3987,3924,3538,3987,3925,3989,3923,3924,3540,3989,3925,3925,3925,[3923,9461],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[2936,10025],[3000,9830],2808,2743,2936,2872,2808,3001,2681,2808,2743,2678,2873,2872,2678,2873,2808,2743,2936,3001,2872,2872,2872,2743,2936,3001,3001,3000,2745,2936,2936,2873,3001,2936,2872,2742,2808,2744,2681,2679,2809,2872,2936,2808,2745,2936,2744,2872,2678,2679,2679,2743,2743,2809,3000,2679,2872,[2745,9832],[2743,9928],9929,[2808,9734],2681,2873,2743,2679,2872,2743,2679,2743,2679,2680,3001,2873,2873,2872,2872,2681,2681,3001,3001,2745,2808,2679,3000,2745,2872,2936,2808,2873,2678,2873,2873,2808,2873,[2936,9637],[2742,9730],[2936,9731],2873,2936,2681,2742,2743,2873,2808,[2743,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3155,613],2707,[3158,551],415,[3219,549],3221,3157,[2798,3285],[2798,3093],[2927,3218],[3219,551],415,[2707,549],[2706,550],[2770,551],415,[2707,549],[2772,550],[2770,550],[2706,551],415,[2708,549],2708,3157,3157,3219,2708,3221,3156,2707,3219,3155,3219,[2798,3029],[2798,3091],[2927,3287],2798,[2926,3218],3158,[2798,3285],[2927,3286,550],3156,3221,[3155,550],2644,2707,3158,3155,3157,3219,2771,2708,2770,2706,[2927,3286],3219,2706,2707,3157,[2770,3825],[2772,3761],3953,4020,4019,[3954,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,549],[2770,550],[2706,551],415,415,415,415,415,415,415,415,415,415,415,415,[4012,549],[3950,550],[4012,551],415,415,[3949,549],[4011,550],[3950,551],415,415,415,415,8833,8834,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[4026,8447],[3447,8448],3959,4026,4024,3512,3576,4023,3511,3446,3961,4025,3510,3447,3961,4026,3578,3447,4023,3446,3960,3448,4024,3961,3578,4025,3578,4024,3446,4025,3960,3959,4026,4023,3447,3959,3446,3961,4026,3448,4023,4026,3510,3578,3578,4024,3512,3511,3512,3447,3447,3446,3575,3574,[4023,9434],[3187,9530,5782],[2928,3061,5783],5784,5785,[2928,3312,5786],[2928,3123,5787],2928,[2928,3121],3185,[3187,9823],[3187,9824],[3251,9629],3188,3249,3252,3188,3249,3186,3188,2800,3252,3187,3187,3251,3251,3251,3249,3185,3251,3249,3188,3187,3187,3250,3250,3251,3249,[2928,3315],3250,3185,3251,3249,3187,3188,3188,3188,3252,3250,3185,3186,3249,3251,3251,3250,[3188,9529],[2928,9530],2928,[2928,3057],3188,3249,[2928,3059],2928,2928,[2928,3122],3250,3188,[2928,3125],2928,2928,[2928,9434],[2928,3122,9530],3249,3187,3251,3250,3249,3185,3249,3252,3250,3188,[2928,3189,9727],[2928,9728],10015,[3186,10111],3252,3186,[3187,5586],[3186,5587],[3251,5588],3186,3188,3252,[3188,5966],[3250,5967],[3250,5968],[3186,9850],[3252,9944],[3187,9945],[3249,9946],9947,[3923,9752],3923,3925,3924,3989,3474,3923,3474,3987,3989,3987,3926,3989,3989,3538,3989,[3143,3735],[3208,3858],3924,3987,3924,3924,3924,3925,[3210,3797],3146,[3145,3730],[3208,3797],3145,[3208,4050],[3209,3861],3208,3144,3146,[3145,3795],[3209,3732],[3209,3734],3989,3474,3987,[3146,3863],3207,[3146,9847],[3145,3860,10036],[10037,9559],[3987,9652],[3989,9653],3925,3540,3923,3926,3987,3987,3411,3925,[3146,3862],3145,3146,3209,3145,3143,[3146,9658],[3145,9659],[10042,9560],[2564,10138],[2498,10232],[2499,10233],[2501,10133],[2562,10134],[2501,10135],10037,[3926,9941],[3924,9942],[3923,9943],[3412,9946],10041,[3926,9941],[3411,9944],[3989,9945],[3989,9946],10042,[2820,10134],[2820,10135],10037,[3412,9941],[3923,9944],[3989,9945],[3923,9946],10038,10039,[3923,9941],[3924,9942],[3925,9943],[3925,9946],10042,[2563,10043],2562,2628,2629,2499,2498,2498,9940,[3143,9941],[3207,9944],[3143,9945],[3145,9946],10040,10041,10042,10037,10040,10041,[3145,9941],[3208,9942],[3145,9943],[3145,9845],3144,3209,[3210,9850],[3209,9944],[3208,9945],[3209,9946],10040,10041,[3208,9941],[3145,9942],[3146,9943],[3146,9946],10038,10039,[3145,9941],[3145,3794,9845],3923,3926,3923,3989,3924,3924,3538,3923,3926,[3145,3927],3145,3209,3146,[3208,3858],3475,3923,3925,3925,3926,3989,3987,3925,3925,3923,3925,[3989,10133],[3987,10134],[3924,10135],[10037,9559],[3476,9652],[3476,9653],3989,3412,3987,3924,3987,3923,3474,3410,3925,3924,3476,3410,3925,3412,3923,3413,3474,3540,3413,3539,3987,3989,3476,3989,3410,3923,3923,3989,3474,3412,3926,3670,3671,3989,3989,3923,3926,3538,3539,3924,3924,3410,3411,3412,3989,3475,3987,3538,3411,3923,3410,3411,[3989,9366],[3925,9369],[3924,9556],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2743,10120,9638],2809,2681,3001,2679,3000,2681,3001,2873,2872,3000,2808,2743,2873,2872,2745,2744,3000,2936,2872,2681,3001,2872,2743,3001,2743,2679,2745,2745,2681,3001,3000,3000,2679,2873,2679,2873,3000,2745,2679,2744,3001,2679,2680,3000,2936,2681,2681,2872,3000,2873,3001,2745,2681,2743,2743,2745,[2872,9640],[3000,9641],[10024,9542],[2745,10025],[2936,9830],2936,2808,3000,2680,2745,3001,2872,2808,2872,2872,2872,3000,2680,3000,2681,2936,3000,2872,2681,2936,2872,2681,2745,3000,2679,2872,2679,2743,2936,2679,2872,2679,2873,[3000,9637],[2743,9634],[2681,9635],2936,2743,2681,2679,3000,2745,2873,[2680,9733],9922,9923,9924,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2770,677],[2926,3283],[2927,3284],[3157,550],2770,3158,[2927,3093],[2798,3027],[2862,2963],2770,3219,[3219,550],2772,3219,2706,[3157,550],3221,2771,2643,2706,[3157,550],2771,2771,3221,[2708,815],[3219,870],[3155,1002],[2770,1003],[3221,1004],[3221,1005],[2707,934],[3221,816],3158,[2926,3223],2798,2926,2926,[2926,3282],[2798,3093],2798,2927,[2798,3218],2643,3156,2708,2707,2771,3219,2708,2706,3219,2706,[2927,3283],[2798,3093],2927,[2798,3092],3219,2770,2708,[2772,4016],3955,3955,4018,4018,[3953,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2771,613],3157,3156,[2707,550],[2772,550],[2772,551],415,415,415,[3155,549],[2772,551],415,415,415,415,[3949,613],3950,3948,[4013,550],[3948,550],3950,4014,[3947,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],8543,[4026,8544],[3447,8448],3448,3576,4026,3448,3511,4026,4024,3447,3577,3512,3447,3448,3574,3512,4024,4023,3512,4024,3577,3448,4024,3959,3960,3510,4026,3446,3512,3575,3961,3446,4023,3446,3510,4026,3510,3960,3447,3447,3577,3960,3574,3510,4024,3447,3512,3448,3960,3446,[3448,9339],[3448,9342],[4023,9529],[3186,9530],[3186,5878],[2928,3125,5879],[2928,5880],[2928,5881],[2928,5882],[2928,5883],2928,2928,[2928,3312,9823],[2928,3313,9919],9920,[3188,9725],3185,3252,3185,3185,3251,3188,3185,3250,3252,3185,3185,3252,3251,3185,3252,3187,3251,3250,3249,3251,3188,3249,3188,3187,[2928,3061],2928,[2928,3248],3249,3251,3186,3185,3249,3252,3187,3188,3186,3251,3185,3251,3251,3252,[3249,9529],[3249,9530],[2928,2995],[2928,2996],3187,3185,3188,3188,[2928,2993],[2928,3060],2928,[2928,3122,9339],[3251,9340],[3187,9341],[3251,9342],[3252,9529],[2928,3059,9530],2928,[2928,3248],3187,3186,3187,3187,3249,3185,3251,3250,3185,[3252,9631],[2928,2993,9632],[3251,10111,9533],3252,3187,3188,[3187,5682],[3186,5683],[3187,5684],3249,3249,3250,3252,3185,[3250,9850],[3250,9946],10040,10041,10042,[3923,10043],[3926,9848],3987,3989,3539,3412,3989,3539,3987,3926,3923,3926,3989,3926,3926,[3145,4053],[3144,4054],[3145,4055],[3207,3922],3987,3989,3989,3411,3925,3924,3410,[3146,3731],3923,[3209,3799],3146,3208,[3207,3795],[3207,3797],[3143,3730],[3209,3731],3925,3926,3926,3989,3926,3923,[3209,3927],3146,3146,3144,[3146,3860,10133,9655],[3987,9748],[3926,9749],3476,3925,3926,3926,3987,3925,3987,[3145,3861],3146,[3145,3795],[3144,3731],[3208,3735],3210,3209,[3144,9754],[3145,9755],[2820,10138,9656],2500,2564,2499,2498,[2501,10230],[2565,10231],[2498,10133],10037,10038,10039,10042,[2498,10137],10037,10040,10041,10042,[2499,10138],[2500,10230],[2563,10231],[2498,10133],10037,10040,10041,10042,[2501,10134],[2501,10135],10037,10038,10039,10042,[2500,10138],2500,2498,2692,2693,2499,2565,2562,[2498,10036],10037,10040,10041,10042,[2498,10136],[2820,10137],[2562,10138],[2564,10133],[2501,10136],[2820,10137],10037,10038,10039,[3208,9941],[3210,9944],[3146,9945],[3209,9946],10040,10041,10042,[2564,10136],[2563,10137],10037,10038,10039,10042,[2500,10134],[2500,10135],10037,[3926,9941],[3926,9845],3924,3925,3923,3925,3924,3987,3989,3923,[3146,4055],3209,3210,3209,[3146,3922],3924,3989,3539,3987,3540,3540,3926,3923,3923,3924,3987,3987,[3989,10230],[3476,10231],[3989,10133,9655],[3987,9748],[3924,9749],3475,3923,3477,3925,3989,3542,3539,3989,3989,3989,3925,3413,3539,3476,3924,3989,3476,3542,3539,3926,3987,3987,3412,3538,3476,3923,3987,3475,3925,3987,3925,3923,3924,3926,3412,3989,3923,3925,3411,3412,3413,3925,3476,3476,3477,3923,3924,3925,3923,3923,3926,[3923,9556],9462,9465,9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2742,9638],2872,2679,2743,3001,2936,3000,2937,2809,3001,2679,2872,2681,3001,2808,2745,2743,2680,3001,2680,3001,2743,2743,2743,2743,2872,2742,3001,2678,2743,3000,3000,2681,3000,2872,3000,2680,2743,2743,2679,2678,2745,2681,3001,2873,2936,2743,2742,2873,2681,2681,2873,2872,2936,2743,2936,2872,[2872,9736],[3001,9737],[2745,10120,9638],3001,2743,2872,2936,2936,3000,2873,2873,2873,2936,2936,3000,3001,2936,2743,2808,3001,2681,2679,3001,2678,2743,2936,2743,2681,2936,3000,3001,3001,2745,2936,3000,2936,2679,2681,[3000,9733],[2745,9730],[2873,9731],2873,2873,2678,2809,2743,3000,2742,[2873,9829],[2679,10018],10019,10020,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,613],[2927,3029,4347],[2863,4348],[2927,3282,4349],[2927,3286],[2926,3287],2927,[2798,3218],3155,3157,[2772,813],[3155,814],[2772,1002,6018],[3158,1003,6019],[2708,1004],[3157,1005],[2708,811],[2707,812],3155,[2706,813],[2706,814],[2706,1004],[3221,1005],[3156,998],[2707,999],607,[607,6032],607,607,609,607,[3156,869],3157,2706,[2927,3029],2798,[2926,3028],[2927,3030],2863,[2926,3027],[2863,2963],2643,2644,2772,2706,2771,2773,3219,2772,3158,3155,[2926,3031],2798,2798,2927,2862,[2798,3218],2707,2770,[3157,3889],4019,3953,[4018,714],715,716,717,718,719,720,721,[415,722],415,415,415,415,415,415,415,415,415,[3158,677],2706,2771,2642,3221,2707,[2708,550],[3219,550],[3158,550],2644,[2707,615],415,415,415,415,[4011,677],4013,3947,3948,3948,4012,3948,[4012,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8450],8639,[8640,8162],[3962,8255],[4023,8256],3449,3574,4026,3511,4024,3513,3960,3578,3574,4025,4024,4024,3448,4026,3962,3448,4026,4025,4025,4023,3577,3578,4024,3578,3578,3510,3960,4023,3578,3577,4026,4024,3447,4023,3576,3447,4026,3577,4025,3446,3959,4023,4025,3578,3511,3447,[4025,9434],[3185,9435],[3252,9438],[3249,9530],3250,3188,[2928,3189,5975],[2928,5976],[2928,2992,5977],[2928,2993,5978],[2928,2994],[2928,2995],[2928,3060,9631],[2928,9632],[10015,9533],[3251,10016],[3185,9821],3252,3252,3187,3250,3251,3249,3252,3187,3252,2800,3252,3252,3250,3252,3250,3250,3252,3185,3251,3188,3185,3252,3186,3187,[2928,3125],2928,[2928,3312],3251,3249,3185,3251,3249,3249,3185,3186,3252,3250,3250,3249,3187,[3185,9532],[3250,9625],[3188,9626],3252,3252,3185,3185,3252,3249,3249,[2928,3061],[2928,9434],[3185,9435],[3250,9436],[3187,9437],[3250,9438],[3187,9530],[2928,3253],2928,[2928,3312],[2928,3315],3188,3186,3249,3187,3249,3249,3187,3187,[3249,9727],[3252,9728],[3251,9629],3249,3249,3249,[3249,5778],[3187,5779],[3249,5780],3186,3251,3249,3188,[3252,9850],[3185,9946],10042,[3987,10136],[3926,10137],[3925,10138],3926,3926,3926,3987,3538,3475,3989,3924,3925,3924,3412,3924,3923,3987,[3208,3991],3145,3209,[3210,3795],3923,3987,3925,3989,3987,3987,3926,3926,3924,3923,[3145,3863],3146,3144,[3210,3986],3924,3923,3540,3539,3987,3926,3538,3989,3538,3926,[3209,3731],[3145,3735,9366],[3210,9369],[3207,9655],[3144,3986,9652],[3476,9653],3924,3926,3925,3410,3989,3926,[3209,3991],3208,3210,[3209,3986],3923,[3209,3991],3146,3144,[3145,9658],[3146,9659],[2564,9656],2820,2565,2499,2820,2500,2564,2498,[2501,10133],[2501,10134],[2820,10135],[2562,10138],[2498,10233],[2498,10133],[2564,10136],[2564,10137],[2500,10138],2565,2563,2757,2564,[2564,10133],[2563,10136],[2500,10137],[2563,10138],[2564,10230],[2565,10231],[2564,10133],[2499,10134],[2500,10135],[2820,10138],2562,2498,2820,2756,2757,2499,2499,2563,2498,[2500,10133],[2564,10136],[2501,10137],[2501,10138],[2565,10232],[2498,10233],2820,2500,[2498,10232],[2501,10233],[2501,10133],[2562,10134],[2565,10135],10037,10040,10041,10042,[2562,10136],[2499,10137],[2563,10138],[2501,10232],[2563,10233],[2564,10133],[2628,10134],[2629,10135],[2500,10138],[2500,10230],[2820,10231],[2501,10133],10037,[3924,9941],[3987,9845],3987,3926,3987,3925,3925,3989,[3143,3799],3146,3146,3145,[3207,3796],3924,3987,3924,3926,3989,3925,3926,3925,3476,3923,3924,3923,3475,3925,3923,[3924,9655],[3989,9844],[3474,9845],3989,3987,3540,3923,3925,3923,3924,3925,3923,3474,3474,3925,3989,3987,3926,3924,3540,3925,3923,3923,3538,3539,3926,3474,3923,3989,3541,3989,3923,3924,3924,3413,3987,3413,3923,3925,3926,3926,3475,3476,3477,3987,3539,3540,3989,3411,3926,3989,3923,3474,[3926,9559],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2936,9734],2872,2678,2680,3000,2745,2743,2936,2679,2678,3001,2873,2680,2745,2808,2679,2744,2681,2679,3001,2872,2742,2936,2872,2743,2679,2745,2936,2936,2872,3000,2743,2808,2745,3001,2743,2678,3001,2681,2681,2678,2936,2873,2745,2936,2745,2744,3001,2679,2745,2872,2680,2679,2873,2936,2745,3001,2873,[2743,9544],[2808,9545],3000,2745,3000,2680,3000,2744,2678,2745,2742,2936,2745,3001,2936,2936,2936,2872,2936,2872,3000,2936,2742,2872,2678,2679,2679,2936,3001,2872,2679,2745,2745,2679,2744,3000,2743,[2681,9538],[2936,9539],2936,2679,2681,3000,2681,2678,2936,2745,2679,2681,[3001,10115],[2743,10116],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2708,677],3221,[2926,3029],2862,2927,[2927,3028],[2927,2963],[2771,815],[2772,870],[2771,1005],[2644,1006],[607,6113],[607,6114],[2708,805,6115],[2770,806,6116],[2643,807,6117],607,[3158,997],[2706,998],[2706,999],607,607,[2708,805],[3157,807],[607,6126],[608,6127],[2644,805,6128],[2707,3889,806,6129],[4019,806,6130],[3953,807],607,[2708,933],3158,2707,2770,[2862,2967],[2798,3026],[2862,3223],2927,[2927,3218],2772,2707,2708,2642,2707,2707,2644,[2926,3286],3221,2772,3155,[2927,3095],2798,2927,[2798,2962],[2927,2963],2708,3157,2834,2835,[2706,3824],4017,[4018,778],779,780,781,782,783,784,785,[3155,550,786],[3221,551],415,415,415,415,415,415,415,[4013,549],[3157,3822],3155,3221,3219,2706,2706,2770,2770,2706,3219,3155,[2770,551],415,415,[2772,549],[3158,3883],4011,4012,3948,3949,[3949,557],[3947,614],[3949,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[8736,8258],[3577,8351],[3511,8352],3447,3578,4025,3446,3962,3575,3510,4023,3959,3511,4023,3447,3578,3448,3961,3577,4023,4025,3576,3448,3512,3448,3961,3574,3448,3446,4024,4025,3577,4025,3574,3447,3576,3512,3578,3576,3962,4026,4025,3511,3511,3448,3512,3574,4026,[3576,9532],[3186,9625,5485],[3187,9626,5486],[3251,5487],[3185,5488],[3252,5489],3249,3186,[2928,3059],[2928,3248],3186,3251,3249,[3187,9727],[2928,2993,9728],[3186,10111,9629],3251,3250,3251,3186,3188,3250,3250,3251,3188,3187,3188,3187,3186,3187,3185,3249,3251,3250,3251,3187,3187,3187,3187,3250,3251,3188,[2928,3189],2928,2928,[2928,3248],3251,3250,3252,3188,3185,3250,3250,3186,3186,3249,3249,3185,[3188,9628],[2928,3315,9721],[2928,3316,9722],3250,3250,3186,3249,3249,3251,3252,[2928,3125,9529],[3252,9530],3187,3251,3251,3187,3188,3249,[2928,3060],2928,2928,[2928,3121],3188,3249,3252,3188,3250,3250,3187,[3187,9823],[3186,9824],[3249,9629],3249,3250,3187,3251,3187,3252,3188,[3250,9850],[3186,9942],[3249,9943],[3186,9946],10042,[3924,10138],[3925,10232],[3989,10233],3987,3925,3925,3923,3924,3926,3924,3989,3476,3987,3924,3924,3926,3989,3924,[3207,3861],3208,[3146,3730],3925,3987,3923,3923,3987,3923,3987,3410,3987,3540,3539,[3143,3927],3208,3144,[3209,3986],3923,3925,3923,3989,3926,3925,3924,3924,3924,[3923,9460],[3926,9461],[3987,9462],[3208,3798,9465],[3145,9751,9466],[3146,3860,9748],[3989,9749],3926,3987,3923,3987,[3143,4053],[3145,4054],[3146,4055],[3208,3730],[3208,3731],3987,3539,3924,[3146,3731],[3210,3797],[3208,9658],[3144,9659],[2820,9656],2498,2562,2499,2757,2562,2565,2563,2499,[2562,10230],[2562,10231],2498,2563,2500,[2562,10232],[2501,10233],2500,2499,2757,2629,2820,2500,[2501,10232],[2563,10233],2562,2499,2500,2565,[2498,10230],[2564,10231],2629,2499,2498,2500,2820,2821,2565,2565,2500,2501,2565,[2563,10232],[2565,10233],2565,2498,2500,2500,2562,2629,2500,2500,[2563,10230],[2820,10231],[2820,10133],[2501,10136],[2562,10137],[2565,10138],[2820,10232],[2562,10233],2565,2501,2565,2562,[2692,10230],[2693,10231],2820,2564,2498,2499,[2499,10133],10037,[3924,9941],[3925,9845],3987,3410,3925,3925,3925,[3210,3863],3145,3208,[3209,3730],3538,3989,3926,3475,3923,3923,3923,[3989,429],[3987,358],[3925,486],[3987,486],[3923,486],[3987,422],[3412,430],3475,3989,[3540,9751],9940,[3924,9941],[3411,9845],3926,3411,3410,3923,3925,3923,3926,3539,3926,3541,3925,3413,3413,3477,3925,3989,3410,3925,3412,3412,3989,3475,3989,3539,3539,3413,3925,3538,3475,3925,3989,3477,3987,3412,3923,3411,3925,3539,3924,3541,3542,3924,3924,3474,3475,3476,3923,3925,3987,[3924,9655],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2808,9448],2873,3000,2873,2745,2872,2678,3001,3000,2873,2936,2936,2681,2742,2679,2936,2681,2745,2743,2743,2681,2745,2742,2873,2873,3000,2679,2679,3001,2873,3001,2680,2680,3001,2936,2872,2873,2808,2872,3001,2744,2872,2743,2872,3000,2936,2743,2743,2679,2873,2743,2872,2873,2681,2872,2936,2743,2936,[2808,9640],[2808,9641],[2745,9542],2745,2743,2873,2808,2873,2873,3001,2872,2936,2680,2873,2872,2744,2742,2678,2808,2873,2681,2743,2872,2936,2936,2873,2936,2873,3001,2873,2745,2742,[2678,9348],[2809,9349],[2743,9350],[2681,9351],[2873,9538],[3001,9539],3000,2808,3001,3001,3000,3001,2872,2681,2936,3001,2681,2872,[2808,10212],[2873,10115],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2772,741],[3157,678],[3155,558],[2927,2963],[2926,3029],[2798,3026],2644,[3157,871],608,607,[3156,805,6208],[2706,806,6209],[3157,806,6210],6211,[2708,6212],[2707,877,6213],[2770,806],[2643,807],[607,6216],[607,6217],[2706,805,6218],[3158,806],[2771,876],[2772,877],[2772,806,6222],[3156,806,6223],6224,[2771,6225],[2770,4016,6226],[4019,871],608,[2771,997],[3219,934],[2708,816],[2863,3286],[2798,3094],[2927,3154],3221,[2798,3030],[2926,3092],[2927,3286],[2798,3286],2708,2706,2708,3158,[2863,3093],2798,[2926,3026],3156,3158,[2926,3159],2798,2926,[2862,3026],2770,2771,3219,2898,2899,[3157,3888],3956,[3953,842],843,844,845,846,847,848,849,[2772,850],2707,[3157,550],[3156,550],[3221,550],[3221,550],[3157,3946,550],[3949,550],[4013,550],4013,4014,[3156,3822],3158,3156,3219,3157,3155,2771,3155,2771,2770,3156,[3157,550],[2707,550],2770,2706,[2706,4010],4013,4012,4011,[3950,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[3578,8447],[3448,8448],3577,3959,3448,3511,3576,3961,3959,3961,3510,4026,4024,3446,3960,3510,3961,3574,3446,3447,3959,3577,4024,4026,3448,3575,3578,3638,3639,4025,4024,4026,3575,3448,4025,3578,3447,4023,3447,3959,3512,3447,3577,4023,4025,4024,[3448,9433],[4026,9434],[3185,9530,5581],[3185,5582],[3187,5583],[3251,5584],[3186,5585],3187,3252,[2928,3061],[2928,3121],[3186,5485],[3188,5486],[3185,5487],[3249,5488],[3185,9535,5489],[3250,9536],3186,3185,3186,3249,3186,3250,3251,3187,3186,3186,3251,3250,3188,3250,3186,3185,3188,3188,3250,3251,3252,3251,3252,3252,3187,3251,3252,[2928,3059],2928,[2928,3312],[2928,3315],[2928,3316],3186,3249,3251,3250,3185,3250,3250,3251,3185,3185,[3252,9628],[2928,9625],[2928,9626],[2928,3122],[2928,3315],3185,3188,3250,3188,[3185,9532],[3186,9625],[3187,9626],3186,3250,3252,3187,3188,3187,[2928,3253],2928,2928,2928,[2928,3248],3185,[3249,9823],[3185,9915],[3252,9916],[3185,9917],[3251,9918],[3188,9919],9920,[3188,9725],3251,3186,3186,3185,3250,3188,[3250,9850],[3251,9946],10038,10039,10042,[3925,10138],3926,3926,3412,3987,3925,3925,3987,3923,3926,3923,3923,3925,3923,3925,3926,3987,[3210,4054],[3144,4055],3146,3146,[3208,3986],3987,3987,3923,3989,3538,3987,3987,3923,3925,3926,3989,3475,[3208,3731],[3145,3798],[3208,3859],3923,3923,3924,3926,3987,3989,3987,3474,3989,[3926,9556],[3924,9557],3925,[3145,3991],[3210,9562],[3208,9557],[3145,3859],3923,3412,3539,[3208,3991],3208,3209,3144,[3209,3986],3925,3924,3987,3987,3987,3925,[3210,3734,9754],[3210,3731,9755],[2820,9752],2820,2499,2500,2501,2565,2562,2501,2628,2628,2628,2629,2498,2820,2565,2499,2563,2820,2565,2564,2565,2628,2628,2629,2820,2565,2562,2500,2563,2564,2563,2498,2501,2499,2562,2565,2499,2563,2564,2820,2501,2562,2565,2820,2563,2501,2501,2565,2501,2499,2501,2499,2564,2499,[2628,10232],[2629,10233],2500,2501,2499,2820,2501,2500,2498,2756,2757,2500,2499,2562,2564,2498,[2564,10133],[10037,9559],[3474,410,9652],[3924,411,9653],[3989,412],[3925,413],[3411,414],[3926,538],[3209,3927,539],[3146,540],[3146,541],[3794,542],[3925,410],[3987,411],[3987,412],[3989,413],[3926,414],[3925,538],[3987,539],[3474,487],409,409,409,409,409,[3924,357],3602,3603,[3987,9847],[3989,10036],[10037,9559],[3542,9652],[3987,9653],3410,3538,3924,3539,3539,3538,3989,3923,3413,3989,3925,3924,3926,3926,3477,3413,3924,3924,3924,3923,3924,3476,3987,3410,3923,3540,3410,3923,3540,3925,3477,3989,3989,3926,3989,3987,3412,3412,3413,3926,3923,3924,3538,3539,3540,3541,3542,3538,[3926,9655],9844,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[3001,9545],3000,2681,3000,2745,3001,2745,2679,2873,3000,3001,2743,2808,2679,2745,2809,3001,2743,2681,2873,2808,2745,2872,2681,2873,2679,3001,3000,2872,2808,2743,2936,2678,2679,2679,2808,2679,2679,2873,2745,3001,2679,3000,3001,2679,2745,2936,2745,2680,3000,2873,3001,2872,3001,2872,2744,2808,[2872,9736],[2743,9737],[2936,9638],2873,2872,2742,2936,2745,[2679,9348],[2743,9351],2681,3001,2743,2872,2936,2873,2745,2745,2808,2809,2872,2679,2681,2679,3000,3000,2743,2873,2872,2742,2743,[2681,9443],[3001,9444],[2872,9445],[2808,9446],[2681,9447],[2681,9539],2809,3001,2743,2808,2678,3001,2679,2873,2936,3000,2744,2936,2680,2809,2936,[2681,10115,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,613],3158,[2926,3094],[2798,3090],2772,[3221,935],607,607,[2771,869,6304],6305,6306,6307,[2708,6308],[2771,6309],2708,[2707,6311],[3219,806,6312],[3155,806,6313],[3156,6314],[3158,6315],2706,3219,6318,6319,6320,6321,[2773,3889,6322],[3954,935],607,607,607,[2798,3223,869],2798,[2798,3027],2707,2707,2770,[2926,3029],2798,2927,[2927,3092],[2862,3285],[2927,3286],[2862,3287],2927,2927,[2863,3154],2771,2770,[2798,3223],2862,2798,[2927,3090],3157,3157,3156,2707,2707,[3221,3952],4018,[3956,906],907,908,909,910,911,912,913,[3157,914],2772,2642,3219,2707,2643,[3155,4010],3950,3947,4011,4012,4011,[2706,3755],[2770,3759],3219,3219,[2771,1814],1815,1816,1817,1818,1819,[2770,1820],2834,2835,3219,[3157,4074],3949,4012,4013,[3221,4076],[2707,4079,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],8543,[4025,8544],[4026,8448],3959,3576,4023,4024,4023,4025,4024,3575,3512,3575,4026,3578,4024,3961,4023,3511,3578,3577,4023,3959,4026,4025,3448,4023,3702,3703,4025,3960,3578,4026,3446,4023,3446,3960,4026,3511,3447,3578,4026,3511,3512,3513,3576,[3446,9529],[3251,9530],[3186,5677],[3187,5678],[3188,5679],[3251,5680],[3250,5681],3186,3252,[2928,3125],2928,[2928,3056,5581],[3252,5582],[3187,5583],[3249,5584],[3252,5585],[3252,9535],[3187,9536],3187,3186,3188,3252,3251,3188,3249,3250,3186,2864,3185,3185,3186,3252,3249,3185,3251,3250,3251,3249,3250,3185,3250,3249,3251,3186,3251,[2928,3060],2928,2928,2928,[2928,3121],3251,3249,3250,3187,3249,3186,3250,3252,3251,[3252,9628],[2928,2993,9721],[2928,3059,9722],2928,2928,[2928,3122],[2928,3315],[2928,3316],3251,[3250,9628],[3187,9721],[3188,9722],3185,[3252,4249],3252,3187,3187,3185,3252,[2928,2993],[2928,3059],2928,[2928,3121],[3186,9823],[3187,9919],10011,10012,10013,10014,10015,[2928,10016],[2928,3312,9821],3250,3252,3250,3249,3188,[3187,9850],[3187,9946],10042,[3926,10134],[3923,10135],[3989,10138],3924,3924,3410,3989,3989,3987,3539,3926,3923,3925,3989,3987,3989,3925,3926,3989,[3209,3862],3210,3145,3209,[3208,3795],3989,3987,3411,3540,3989,3989,3925,3987,3924,3923,3989,3475,3926,3926,[3145,3799],3209,[3210,3794],3925,3987,3476,3925,3925,3926,3926,[3474,9559],[3926,9652],[3989,9653],3538,3924,[3210,3735],3145,3209,[3208,3794],3923,3925,[3146,3861],3208,3209,[3143,3730],3987,3476,3987,3924,3987,3987,3989,3539,[3989,9562],[2499,9563],2564,2563,2498,2499,2628,2629,2562,2692,2692,2628,2628,2564,2498,2564,2498,2501,2498,2565,2820,2500,2692,2628,2629,2498,2562,2820,2563,2498,2501,2820,2498,2562,2562,2501,2499,2564,2501,2563,2498,2757,2565,2565,2501,2820,2820,2563,2498,2565,2499,2563,2500,2500,2564,2692,2693,2562,2565,2499,2565,2563,2499,2499,2820,2821,2564,2565,2565,2501,2499,2565,[2563,10133,9655],[409,9748],[409,9749],409,210,409,409,409,409,409,409,353,409,409,409,409,409,409,409,289,409,409,210,409,[3925,421],3666,3667,[3925,429],[3538,358],[3926,486,10133,9655],[3923,9748],[3925,9749],3539,3989,3925,3474,3412,3923,3925,3539,3538,3410,3924,3413,3923,3923,3477,3412,3923,3925,3413,3474,3412,3413,3923,3987,3476,3924,3541,3926,3924,3410,3924,3989,3476,3477,3926,3926,3540,3476,3413,3538,3926,3410,3924,3924,3412,3413,3924,3410,[3923,9751],9940,9941,9942,9943,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2872,9542],2743,2873,3000,3001,2872,2872,2681,2873,2872,2743,2681,3000,2681,3001,2745,2937,2679,3000,2743,2872,2873,2936,2745,2936,2808,3001,2679,2742,3001,2742,2743,2745,2743,2873,2872,2936,2808,3000,2681,2743,2743,2745,2680,2681,3000,2679,2680,2743,2872,2678,2936,2808,3000,2936,2743,[2681,9640],[2745,9641],[3000,9638],2743,2742,3001,3001,[3001,9443],[2745,9444],[2745,9447],[2936,9448],[2745,9449],2679,2745,2744,3001,3001,3000,2745,2678,3000,2745,2681,2936,2678,2743,2680,2742,[2872,9348],[2743,9351],[2936,9538],[2873,9539],2936,2679,2872,2744,2678,2681,2872,2743,3001,3000,2681,2680,2872,2743,2873,2679,2808,2872,2743,2679,[2745,9443],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3156,549],3157,[2927,3031],2927,[2926,3154,815],[3156,870],[3155,999],608,609,[2707,933,6400],6401,6402,6403,6404,[3155,6405],3156,[3221,6407],6408,6409,6410,[3155,6411],2770,2772,6414,6415,6416,6417,[2706,6418],[3156,4080,877],[3955,807],607,609,[3219,869],[2926,2963],3221,3219,3221,3157,3156,[2862,3029],2926,2926,2798,2862,[2926,2962],[2926,2963],[2926,2963],3219,3219,3155,[2927,3031],2926,2927,[2798,3154],3158,2771,2707,2770,2770,[3155,3889],[2707,4081],[4019,970],971,972,973,974,[975,6061],[976,6062],[977,6063],[3219,978,6064],2706,2772,3158,3158,[3157,3819],3947,3949,3947,3948,4012,4011,4011,3950,[2771,3821],2706,[3221,1878],1879,1880,1881,1882,1883,[2707,1884],2898,2899,3156,3221,[2706,4010],3948,[2708,3886],2708,[2770,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8450],8639,[8640,8162],[3447,8351],[3576,8352],3959,3448,4026,3511,3448,4024,3961,4024,3448,3510,3962,3578,3447,3511,3448,4025,4026,3959,3960,3510,3961,3578,4025,3448,4024,3448,4025,3578,3575,4025,4023,4026,4024,3447,3446,3449,3578,3576,4026,4026,4026,[3960,9532],[3252,9721],[3186,9722],[3185,5773],[3250,5774],[3252,5775],[3187,5776],[3188,5777],3187,3188,[2928,3189],2928,[2928,3120,5677],[3249,5678],[3186,5679],[3187,5680],[3188,5681],[3252,9727],[3252,9728],[3187,9533],3252,3249,3251,3185,3187,3186,3185,3187,3250,3249,3249,3251,3187,3188,3251,3251,3249,3251,3186,3250,3185,3250,3249,3185,3187,3250,3185,[2928,2997],2928,2928,2928,[2928,3248],3250,3188,3251,3187,3188,3252,3187,3185,[3252,9628],[3186,9721],[3186,9722],[2928,2997],2928,2928,2928,2928,[2928,3248],[3249,9628],[3186,9817],[3252,9818],[3185,4344],[3251,4345],[3251,4346],3249,3251,3185,3187,3188,3250,[2928,2997],[2928,9823],[2928,3248,9919],10015,[3249,10107],[3250,10108],[3187,10109],[3185,10110],[3187,10111],[2928,3059],2928,[2928,3248],3186,3187,3187,[3186,9658],[3188,9659],[10042,9560],[3923,10138],[3926,10230],[3926,10231],3989,3989,3987,3923,3924,3987,3989,3925,3413,3987,3987,3926,3474,3987,3926,3540,[3210,3991],3145,[3143,3730],[3208,3731],[3209,3734],3925,3926,3924,3923,3925,3924,3925,3925,3987,3411,3475,3476,3987,3989,3987,[3207,3863],3208,[3145,3858],3925,3925,3923,3925,3924,3989,3924,[3925,9655],[3925,9748],[3925,9749],3476,3924,3925,[3209,3797],3146,[3208,3922],3925,[3209,3862],3208,[3209,3795],[3209,3731],3926,3925,3924,3925,3989,3925,3924,3925,3925,[3923,9658],[3925,9659],2565,2501,2562,2500,2692,2693,2563,2756,2756,2692,2692,2693,2820,2628,2628,2628,2628,2629,2563,2501,2756,2692,2693,2562,2564,2565,2501,2564,2499,2820,2820,2563,2500,2565,2498,2820,2820,2564,2498,2565,2563,2498,2562,2500,2820,2500,2564,2498,2562,2563,2564,2563,2499,2756,2498,2562,2565,2820,2565,2499,2498,2562,2500,2628,2565,2562,2499,2501,2500,2565,[2565,9655],[409,9844],[409,9845],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[3925,485],[3987,486],[3989,486],[3926,487],409,[409,9655],[3925,9844],[3540,9845],3923,3538,3924,3987,3989,3924,3413,3412,3926,3474,3926,3540,3413,3989,3987,3924,3541,3989,3926,3926,3923,3924,3924,3987,3924,3926,3475,3924,3474,3987,3476,3541,3989,3541,3926,3989,3410,3540,3541,3410,3410,3410,3411,3987,3476,3477,3476,3474,[3926,9847],[3923,10036],10037,10038,10039,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[3000,9638],3001,2872,3001,2681,3000,2679,2809,2742,2745,2936,2678,2681,3000,2681,2681,3001,3001,2936,2745,2936,2936,2873,2744,3001,2745,2681,2743,2742,2745,2808,2745,2681,3000,3000,2872,3000,2936,3000,2872,2743,2680,2745,2936,2873,3000,2872,2936,2937,2808,2743,2873,2742,3001,2745,2873,[3000,9736],[2681,9737],[2679,9734,9348],[3001,9349],[2679,9350],[2936,9351],[3001,9538],[2681,9539],2743,3001,[2679,9544],[2872,9545],[2873,9348],[2936,9349],[2808,9350],[2681,9351],[2936,9348],[2872,9349],[3000,9350],[2873,9351],2681,2808,2872,3001,2681,3000,2680,[3001,9443],[2679,9444],[2745,9447],[2872,9539],2743,2743,3000,2679,2873,3001,2936,3001,2873,2678,2680,3001,2744,2808,2808,2808,3000,2873,2936,2808,[2808,9538],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2772,613],3157,[2926,3095],2863,[2927,3026,871],608,607,607,[3221,805],[3155,876,6496],6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,[3221,6514],2771,[2771,3824,871],607,607,[3157,933],2708,2770,2708,2708,2644,2706,2707,[2927,2963],[2926,2967],2798,2862,[2926,3091],2706,2708,3155,2770,3157,[2927,3159],2926,2927,[2798,3092],2770,2772,3155,2708,3156,2706,2707,[2772,3889,1034],[2708,1035],[3156,1036],1037,1038,[1039,6157],[2772,1040,6158],[2771,1041,6159],[2770,1042,6160],2708,3158,2706,3219,[2770,4074],[2707,4075],3950,4013,3948,4014,3950,4013,3950,[2772,4015],2708,[2771,1942],1943,1944,1945,1946,1947,[2771,1948],3156,2772,3158,[3156,3819],4012,[3221,4015],[3219,557],[2708,614],[2706,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[8736,8354],[4023,8255],[4025,8256],3577,4024,3577,3446,3578,3447,3448,4024,3446,4026,3959,3576,3446,3578,3447,3447,4024,3446,3448,3578,4023,4025,3577,3962,3446,3576,3576,3961,4025,3574,3962,3961,4023,3578,3447,3576,4023,3960,3448,3576,4026,[3576,9434],[3252,9530],3188,[3252,5869],[3185,5870],[3185,5871],[3251,5872],[3188,5873],3188,[2928,3316],[2928,3123],2928,[2928,3184,5773],[3251,5774],[3188,5775],[3187,5776],[3185,5777],[3185,9823],[3185,9824],[3188,9629],3186,3251,3249,3185,3186,3252,3187,3186,3250,3188,3188,3186,3250,3187,3250,3249,3185,[2928,3315],3185,3250,3251,3188,3185,3250,3250,[2928,3315],[2928,3316],[2928,3317],[2928,2992],[2928,3060],2928,[2928,3312],3187,3186,3252,3186,3187,3188,3251,3249,[3188,9628],[3251,9817],[3185,9818],[2928,3317],2928,2928,[2928,2992,5490],[2928,2993,5491],[3251,5492],[3186,9724],9913,[3252,9914],[3249,9818],3185,3187,3249,3250,3249,3250,3251,3252,[2928,3253,9823],[2928,9919],10015,[3251,10111,5485],[3187,10203,5486],[3250,10204,5487],[3188,10205,5488],[3252,10206,5489],3185,[2928,3061],2928,[2928,3121],[2928,3313],3251,3249,[3187,9754],[3251,9755],[3989,10138,9656],3539,3539,3412,3989,3925,3923,3989,3924,3989,3924,3926,3923,3925,3926,3987,3924,3475,3926,3989,[3145,3861],3145,[3208,3794],3475,3926,3924,3924,3925,3989,3987,3926,3924,3924,3411,3987,3476,3925,3989,3926,3926,[3146,3927],3144,[3210,3922],3925,3924,3925,3987,3539,3925,3538,[3540,9655],[3926,9652],[3923,9653],3926,3987,3474,3987,[3210,3798],[3143,3859],[3208,4055],3146,[3210,3796],3926,3987,3923,3925,3989,3989,3989,3926,3924,3926,3923,3924,[3924,9562],[2562,9563],2565,2565,2501,2756,2757,2563,2820,2820,2756,2756,2757,2563,2692,2628,2629,2692,2693,2501,2501,2820,2756,2757,2563,2820,2499,2565,2563,2565,2500,2564,2563,2564,2628,2498,2628,2498,2820,2628,2693,2565,2501,2562,2820,2820,2565,2564,2565,2562,2562,2501,2564,2498,2820,2821,2563,2563,2564,2499,2629,2563,2562,2562,2692,2693,2563,2562,2501,2499,2500,[2501,9751],9940,[3175,294,9941],[3175,294,9845],[3240,3749,294],[3238,3753,294],[3240,294],[3239,3813,294],[3749,294],[3749,294],[3238,3815,294],[3175,294],[3239,294],[3175,294],[3240,294],[3175,3748,294],[3240,3815,295],409,409,409,409,409,409,409,33,97,409,409,409,[409,9751],9940,[3924,9941],[3989,9845],3926,3987,3541,3924,3412,3475,3987,3925,3924,3924,3923,3989,3925,3925,3989,3540,3925,3989,3924,3923,3987,3987,3412,3925,3924,3987,3412,3924,3925,3477,3926,3412,3413,3411,3410,3411,3412,3413,3474,3412,3474,3475,3926,3540,3541,3542,3538,3539,3540,[3987,10133],[3989,10134],[3987,10135],10037,9941,9845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2745,9638],3000,2873,2680,2681,2681,2873,2872,3000,2872,2744,2808,2808,2743,2808,3000,2936,2873,2745,2681,2936,2743,3001,3001,2936,2681,2745,2678,2679,2742,3000,2872,2936,3001,2873,2742,2743,2743,2679,2936,2681,3001,2743,2679,2808,2743,3000,3000,2936,2745,2743,2743,2872,3000,2808,2745,2936,[2873,9544],[2808,9444],[3000,9445],[2743,9446],[2873,9447],[2936,9539],3000,3001,2936,2679,[2873,9544],[2872,9444],[3000,9445],[3000,9446],[2743,9447],[2743,9444],[2745,9445],[2745,9446],[2678,9447],[2745,9448],2681,2745,2679,2808,2937,[2678,9541],[2744,9634],[3001,9635],2873,2873,2936,2744,2745,2873,2743,2808,2681,3000,2745,2679,2744,2679,2679,2872,2679,2873,2679,2872,3001,2936,9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2707,677],3155,[2927,3159],2863,[2862,3090,935],609,[4017,805],[4017,806],[3156,3828,876],[2770,6592],6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,[2770,6610],2770,[3158,3952,935],607,[2644,805],[2770,876],2772,3219,2772,3157,2642,3157,[2798,3285],[2927,3286],[2798,3093],2798,2798,2862,[2927,3282],[2926,3283],[2927,3284],[2926,3285],[2927,3286],[2798,3093],2926,2926,2926,[2863,3091],3158,3221,3157,3221,2771,3156,3158,3156,[2772,1100],1101,1105,[1103,6253],[2771,1104,6254],[3155,6255],[2772,6256],3157,3157,2771,2771,3158,2708,[2707,3883],3949,4014,3947,4012,[2707,4078],[2772,4077],[3158,3886,2004],[2706,2005],[3158,2006],2007,2008,2009,2010,2011,[2706,2012,6065],[2706,6066],[3221,3754,6067],[2706,3755,6068],4011,[2772,4075],[2708,4079],[3219,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8064,[4025,8160],3511,3574,4026,4025,4026,3447,4024,4023,4026,3511,4025,4026,3577,3578,3578,3510,3447,3448,4023,3447,3578,3574,3447,3576,3578,3446,4024,3447,3447,3512,3959,3574,4024,3578,3513,3578,3577,3577,[3448,9339],[4026,9341],[4026,9342],[3510,9529],[3185,9530],3186,3252,3185,[3187,5966],[3252,5967],[3250,5968],3188,[2928,3061],2928,2928,[2928,3057],[3252,5869],[3249,5870],[3188,5871],[3187,5872],[3251,9823,5873],[3185,9919],9920,[3250,9725],3251,3186,3187,3252,3188,3187,3185,3251,3250,3187,3252,3187,3251,3185,3185,3185,[2928,3061],2928,[2928,3056],3185,3250,3252,3187,3188,[2928,3123],2928,2928,2928,[2928,3248],3186,[2928,2997],2928,[2928,3056],3251,3250,3250,3251,3185,3250,3251,[3187,9724],9913,[2928,3124,9914],[2928,9818],2928,[2928,3057],[3188,5586],[3187,5587],[3188,5588],[3187,9820],[3251,10009],10010,[3187,9914],[3187,9915],[3185,9916],[3185,9917],[3186,9918],[3250,9915],[3187,9916],[3185,9917],[3251,9918],[3187,9919],10015,[3186,10111],[3188,5581],[3187,5582],[3252,5583],[3186,5584],[3250,5585],3249,[2928,3189],2928,2928,2928,[2928,3121],3249,[3251,9658],[3249,9659],[3926,9656],3987,3412,3989,3926,3606,3607,3989,3923,3924,3924,3989,3925,3923,3987,3540,3925,3989,3925,[3210,3799],3146,3210,[3146,3922],3925,3475,3924,3923,3989,3923,3923,3410,3926,3926,3924,3926,3474,3987,3474,3987,3925,[3210,3991],3208,[3145,3986],3923,3926,3987,3923,3989,3410,3923,[3924,9655],[3925,9748],[3925,9749],3987,3989,3410,3923,[3208,3991],3210,3207,[3208,3730],3923,3926,3923,3411,3989,3539,3924,3926,3925,3538,3538,3923,3926,[3924,9658],[3989,9659],[2500,9560],2564,2498,2820,2821,2501,2500,2563,2820,2820,2821,2563,2756,2628,2628,2500,2692,2820,2565,2564,2820,2821,2562,2498,2499,2501,2562,2501,2563,2820,2500,2628,2693,2628,2693,2499,2499,2692,2693,2629,2498,2499,2501,2563,2565,2564,2563,2562,2501,2498,2565,2563,2562,2501,2564,2564,2498,2563,2563,2501,2564,2565,2756,2757,2628,2629,2501,2565,2498,[2564,9847],[2564,10036],[10037,9559],[4004,9652],[3943,9653],[3238,4009],3175,[3174,4004],3943,3430,3942,[3238,3753],3175,3175,3176,[3238,4004],3942,[3176,3816,294],[3240,295],409,409,210,409,409,161,225,409,409,409,[409,9847],[409,10036],[10037,9559],[3989,9652],[3923,9653],3539,3410,3542,3925,3923,3989,3989,3474,3924,3989,3987,3925,3539,3987,3475,3925,3412,3539,3925,3926,3475,3926,3476,3926,3989,3476,3925,3989,3924,3987,3476,3412,3923,3926,3475,3987,3477,3474,3989,3987,3410,3925,3412,3926,3410,3410,3411,3923,3926,[3924,10230],[3923,10231],[3989,10133],[10037,9559],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2744,9734],2873,2937,2681,2743,2936,2873,3000,2743,3001,2681,2744,3001,2681,3000,2745,2745,2681,2743,2745,2936,2745,2745,3000,2873,2936,2872,2808,2681,2743,2681,2681,2936,2872,2678,2936,2745,2679,2743,2873,2679,3001,3000,3000,2745,2872,2679,2872,3001,2679,2873,2872,2680,2681,3000,2873,2679,2679,2936,2872,2873,3001,2808,2681,2872,3001,2936,2743,2679,2681,2679,2679,2681,3001,2678,2936,[3001,9544],[2873,9545],[2808,9348],[2679,9349],[3000,9350],[3000,9351],[2936,9538],[2745,9539],2937,2808,2679,3000,2873,2679,3001,3000,3000,2872,2744,2808,3000,3000,2679,2743,2872,2681,2936,2873,2742,2808,[2936,9443],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2771,741],[2708,678],[2798,3223,558],2927,[2862,3154,871],609,[4018,869],4018,[2708,3829],[3221,6688],6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,[2771,815,6706],[2772,870],[2708,4016,999],607,[3221,869],2643,3156,2708,2643,[2927,3284],[2926,3286],[2926,3093],2926,2927,[2798,2962],[2798,2964],[2798,2966],[2798,3029],2926,2798,2798,2927,2863,2926,[2926,3028],[2927,2967],2926,2927,[2798,3026],2770,2707,2772,2772,3221,3219,3158,[3156,1164],[3221,1165],1169,[2707,1167,6349],[3219,1168,6350],[2707,6351],[2772,6352],2643,2707,2770,3158,2770,2771,2642,[2772,3818],4014,3947,[2707,3886],2708,2772,[2770,2068],2069,2070,2071,2072,2073,2074,2075,[2708,2076,6161],[2706,6162],[2770,4010,6163],[3950,6164],[2770,3886],[2770,557],[2707,614],[3221,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8063],8064,[4026,8160],4024,3446,3448,3578,4023,3447,4023,4023,3448,3574,3446,3511,3448,3960,3512,4025,3446,3446,3575,3448,3578,4026,4024,3962,3449,4025,3960,4023,3577,3577,3574,4023,3575,4025,3448,3448,4025,3510,[3510,9434],[3250,9435],[3249,9437],[3249,9438],[3188,9530],[3252,5490],[3186,5491],[3185,5492],3188,3188,3251,3187,3251,[2928,3189],2928,2928,[2928,3056],3250,[3187,5966],[3188,5967],[3187,9631,5968],[3185,9632],10015,[3186,10016],[3251,9821],3251,[2930,3315],[2802,3316],3251,2864,3252,3188,3251,3187,3251,3252,3187,3249,3250,3185,3250,[2928,3125],2928,[2928,3120],3249,3251,3251,[2928,3316],[2928,3317],2928,2928,[2928,2992],[2928,2993],3250,3249,[2928,3061],2928,[2928,3120],3251,3186,3188,3251,3187,3252,3250,[3187,9820],[3187,10009],10010,[2928,2994,9625],[2928,2996,9626],3249,[3249,5682],[3249,5683],[3250,5684],3250,3185,[3187,10106],10010,10011,10012,10013,10014,10011,10012,10013,10014,10015,[2928,3056,10111],3251,[3250,5677],[3252,5678],[3185,5679],[3251,5680],[3251,5681],3252,3249,[2928,2993],[2928,2997],2928,2928,[2928,3056],[3250,9754],[3188,9755],[3924,9656],3926,3926,3924,3989,3670,3671,3925,3989,3926,3926,3924,3923,3987,3989,3989,3925,3924,3987,[3209,3927],3145,[3146,3730],3923,3989,3924,3924,3926,3924,3923,3989,[3208,4053],[3209,4051],[3207,4052],[3145,4053],[3145,4054],3538,3987,3924,3926,3475,[3146,3799],3146,[3145,3794],3924,3987,3925,3925,3923,3924,3989,[3925,9655],[3989,9844],[3989,9845],3923,3924,3410,3987,[3144,4055],3208,3145,[3146,3986],3925,3926,3923,3538,3538,3989,3923,3539,3924,3926,3924,3924,3923,[3989,9754],[3924,9755],[2820,9656],2629,2500,2820,2821,2500,2628,2564,2499,2499,2565,2498,2820,2692,2628,2628,2629,2500,2498,2563,2501,2562,2499,2562,2501,2565,2563,2628,2629,2562,2499,2692,2693,2693,2628,2628,2629,2756,2498,2693,2500,2501,2498,2498,2500,2628,2629,2628,2501,2500,2498,2501,2564,2500,2500,2499,2820,2498,2499,2500,2499,2562,2820,2821,2692,2693,2563,2564,2820,2565,2565,[2500,10133,9655],[4004,9748],[3557,9749],[3239,4009],3175,[3176,3878],4005,4008,3943,3942,[3239,3749],[3240,3753],3238,[3176,3878],4005,[3174,4009],[3238,359],409,409,409,409,409,409,409,409,409,409,409,409,[409,10133,9655],[3924,9748],[3924,9749],3989,3923,3925,3987,3410,3476,3542,3540,3924,3410,3923,3926,3924,3542,3542,3541,3989,3411,3413,3987,3540,3542,3477,3540,3926,3540,3923,3542,3538,3539,3540,3924,3925,3987,3539,3540,3923,3923,3410,3410,3410,3926,3987,3477,3410,3923,3475,3476,3989,3476,3926,3924,[3989,10133,9655],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2809,9448],2679,2744,2681,2745,2808,2872,2936,2679,2743,2745,2679,2681,2679,2679,2936,2936,2873,2936,3001,2873,2873,2679,2743,2936,3001,2936,2681,3001,2743,2743,2873,2873,2743,3000,2808,2681,2936,2679,2681,2808,2873,2743,2679,3001,2745,2872,2936,3000,2872,2743,2872,3001,3001,2681,2743,2743,2745,2936,2936,3001,2743,2873,2745,3000,2743,2681,2873,3000,2873,2679,2681,2808,2743,2680,2743,2872,[3000,9544],[2872,9444],[2873,9445],[2873,9446],[2681,9447],[2873,9539],2681,2745,2936,2873,3001,2743,2680,2744,2808,2679,2743,2872,3001,2681,2681,2679,2808,2742,2743,2679,2743,2936,[2681,9538],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2926,3093,613],2927,[2798,3218,935],607,[4019,933],3954,[3156,3893],[2708,6784],6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,[2770,871,6802],607,607,607,[3158,933],3157,2706,3219,[2926,3223],2862,2927,2926,[2927,3027],[2926,2963],2770,2772,3157,2772,[2862,2964],[2926,2965],[2927,2966],[2927,2963],[2862,2966],[2798,2967],[2798,3218],2706,[2926,3030],2798,[2798,3154],2770,2773,2708,2772,3158,3156,2706,3155,[2863,3223,1229],[2798,1230],[2926,3091,1231,6445],[2926,3285,6446],[2927,3286,6447],[3157,6448],2771,2771,3158,3221,3155,3221,3158,[2770,3946],4013,[3157,4015],3219,2770,2770,[3155,2132],2133,2134,2135,2136,2137,2138,2139,[2642,2140,6257],[3156,6258],[3155,3884,6259],[3158,4079,6260],3155,[2708,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8159,[3578,8160],3576,3448,3511,3577,3962,3577,3961,3575,4024,3446,4023,4023,3962,3448,4024,3448,4025,3578,4025,3510,3446,3447,3446,3446,4026,3577,3575,3578,3446,3447,4024,3574,3642,3643,3578,4023,[3576,9339],[3446,9342],[3960,9529],[3250,9530],3250,3249,3249,3251,[3186,5586],[3249,5587],[3252,5588],3188,3252,3250,3187,3252,3188,[2928,3059],2928,[2928,3120],3185,3188,3188,[3185,9727],[3252,9728],[3186,10111,9533],3188,3252,[2802,3124],2931,2930,[2931,3248],3185,3186,3185,3187,3185,3188,3185,3249,3186,3185,3187,3251,[2928,3189],2928,[2928,3184],3186,3249,[2928,3123],2928,2928,2928,[2928,3058],3249,3185,3252,3250,[2928,3189],2928,[2928,3184],3187,3188,3185,3252,3251,3252,3187,3188,3187,[3186,10106,9532],[3187,9721],[3249,9722],3186,[3188,5778],[3251,5779],[3188,5780],[2928,3316],3186,3185,[3188,10106],[2928,3125,10107],[2928,10108],[2928,3056,10109,5485],[3187,10110,5486],[3187,10107,5487],[3187,10108,5488],[3188,10109,5489],[2928,3061,10110],[2928,10111],[2928,3120],3251,[3185,5773],[3185,5774],[3186,5775],[3186,5776],[3186,5777],3185,3249,3250,3188,[2928,3059],2928,[2928,3184],[3252,9658],[3187,9659],[3924,9752],3924,3925,3925,3924,3924,3924,3924,3925,3925,3923,[3146,4052],[3145,4053],[3208,4054],3924,3539,3538,3924,3924,[3208,3862],3145,[3210,3986],3925,3926,3987,3926,3987,3925,3987,[3145,3991],3146,3143,3145,3207,3144,[3210,3859],3926,3989,3923,3923,[3145,3863],3209,[3145,3858],3987,3989,3926,3475,3924,3924,3926,[3924,9751],9940,[3926,9941],[3924,9845],3926,3923,[3207,3862],3144,[3145,3796],[3146,3731],3926,3540,3989,3989,3989,3539,3540,3924,3924,3989,3925,3987,3924,3926,[3411,9850],[3412,9851],[2499,9656],2562,2564,2500,2563,2628,2564,2501,2562,2564,2498,2564,2820,2756,2692,2692,2693,2501,2564,2499,2565,2498,2500,2628,2692,2498,2820,2692,2693,2693,2628,2756,2757,2693,2821,2628,2628,2820,2821,2757,2565,2562,2498,2500,2565,2692,2693,2692,2693,2501,2820,2498,2565,2500,2501,2563,2562,2501,2499,2565,2499,2501,2628,2629,2756,2562,2563,2498,2820,2501,2563,[2565,9556],[3941,9557],3494,[3239,4009],3175,3239,[3240,4068],4005,3944,3492,3943,3942,[3176,3753],3240,[3175,4004],[3175,4009],[3239,423],409,409,409,409,409,409,409,409,409,409,409,409,[409,9655],[3925,9652],[3987,9653],3411,3989,3923,3540,3989,3989,3989,3987,3539,3989,3474,3476,3539,3926,3539,3987,3540,3411,3410,3923,3926,3476,3411,3413,3925,3412,3538,3540,3410,3925,3412,3413,3989,3925,3926,3412,3989,3989,3606,3607,3538,3539,3540,3541,3542,3538,3539,3540,3541,3926,3987,3926,[3924,9751],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2743,9448],2743,2872,2936,2872,2872,3001,3001,2872,2808,2678,2743,2745,3001,2743,2678,2745,2743,2681,3001,2681,2744,2936,2873,3000,2743,2744,2873,3000,2808,3000,2873,2681,2872,2873,2681,2936,2809,2744,2872,2808,2743,2680,3000,2872,2936,3000,3000,2744,2936,2872,2873,2873,2679,3001,2743,2745,2679,2679,2872,2678,3000,2808,3000,2873,2873,2872,3000,2808,2808,2936,2745,2679,2679,2679,3000,3000,3001,2681,2679,2936,2872,2681,2678,2745,2678,2743,2873,2743,2743,2745,2745,2680,2873,3001,2679,2873,2678,3001,2873,2808,2681,3001,[2873,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2862,3223,549],[2798,2962],[2798,2963],[2708,871],607,[3955,997],[4019,934],[2770,3957,816],[2707,6880],6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,[2772,935,6898],607,607,609,[2708,997],[2708,811],[2772,812],2706,3157,[2863,2964],[2862,2965],[2927,2966],3156,3156,2771,2771,3155,3157,3155,2706,2770,2772,[2926,3286],[2798,3094],[2926,3026],2706,[2927,3223],2927,[2927,3282],[2862,3283],3155,3157,2770,3155,[2926,3283],[2798,3284],[2926,3285],[2798,3093],2927,2927,[2798,6542],[2798,6543],[2798,3091],[2863,3284],[2862,3285],[2927,3286],3158,3156,2708,3155,[2708,4074],[3155,4078],[2706,4079],3155,2708,3156,[2707,2196],2197,2198,2199,2200,2201,2202,2203,[2772,2204,6353],[3219,6354],[2770,6355],[3221,6356],3158,2642,[2770,551],[2706,549],[2771,550],[2708,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8162],[4024,8255],[3575,8256],3578,3448,3510,4025,4023,4023,4024,4026,3577,3448,4023,4025,3510,3511,3446,3446,3574,3578,3575,3577,3576,3510,3961,4025,3575,4025,3578,3448,3512,3577,3446,4023,3706,3707,4025,[4025,9529],[3187,9435],[3250,9438],[3186,9530],3185,3252,3252,3186,3187,[3187,5682],[3188,5683],[3185,5684],3251,3186,3187,3252,[3185,9823],[3185,9915],[2928,3253,9916],[2928,9818],[2928,3184],3187,3249,3250,[3188,9823],[3251,9824],[3249,9629],3185,[2802,3061],2930,[2930,2992],[2931,2993],3249,3250,3186,3249,3252,3186,3187,3185,3249,3251,3185,3250,3252,3188,[2928,3060],[2928,3312],[2928,3315],[2928,3123],2928,2928,[2928,2992],[2928,2993],3187,3185,3251,3250,3250,3251,[2928,2993],3252,3251,3188,3251,3251,3250,3185,3252,3187,3251,[3186,9628],[3252,9625],[3251,9626],3185,3187,3252,[2928,3061],2928,[2928,3056],3252,3250,[2928,3189,10203],[2928,10204],[2928,3120,10205,5581],[3185,10206,5582],[3185,10203,5583],[3185,10204,5584],[3249,10205,5585],[2928,3125,10206],2928,[2928,3184],3252,[3188,5869],[3186,5870],[3249,5871],[3250,5872],[3251,5873],3250,3249,3250,3251,3186,[2928,2993,5490],[3249,5491],[3187,5492],[3187,9562],[3539,9466],3924,3989,3925,3989,3925,3925,3989,[3209,4053],[3207,4054],[3208,3861],[3144,3730],[3145,3798],3144,[3209,3859],3926,3926,3924,[3209,3799],3209,[3144,3795],3987,3989,3925,3411,3989,3987,3540,[3144,4051],[3145,3861],3144,3210,3146,[3210,3796],[3143,3797],3146,[3146,3794],3411,3987,3925,[3145,3927],3208,[3143,3922],3989,3926,3987,3924,3924,3476,3925,[3925,9847],[3924,10036],10037,[3924,9941],[3145,4051,9845],[3208,3861],3143,[3146,3795],3989,3987,3926,3925,3987,3987,3989,3540,3923,3923,3923,3924,3539,3925,3987,[3926,9850],[3987,9946],9947,[2498,9752],2563,2498,2501,2562,2692,2693,2693,2562,2628,2692,2499,2628,2820,2756,2756,2565,2562,2501,2820,2565,2499,2628,2498,2692,2693,2564,2756,2565,2564,2692,2820,2821,2821,2501,2692,2628,2820,2820,2821,2562,2499,2499,2501,2563,2756,2757,2756,2757,2499,2500,2562,2564,2500,2564,2498,2501,2498,2501,2500,2563,2499,2692,2693,2820,2821,2564,2498,2820,2562,[2500,9559],[4004,9748],[3429,9749],3493,[3176,4009],3176,3175,3175,[3240,3877],[3174,4072],4005,3944,3494,[3238,4009],3176,[3239,4004],3942,[3239,3749],[3239,3816,295],409,409,409,[3238,293],[3240,295],409,409,409,353,409,409,[409,9751],[3987,9748],[3539,9749],3540,3926,3924,3989,3926,3474,3411,3923,3477,3925,3989,3926,3989,3925,3924,3924,3987,3924,3926,3987,3987,3541,3924,3987,3475,3476,3477,3474,3925,3987,3476,3477,3923,3987,3411,3924,3411,3923,3670,3671,3987,3411,3987,3413,3926,3410,3924,3923,3926,3410,3410,3923,[3925,9461],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2681,9545],[2680,9348],[2873,9351],2745,2745,2678,2678,2873,2808,3001,2873,2744,3001,2936,2745,2681,3001,2936,2936,2679,3001,3000,2743,2936,2936,2744,2936,2936,2937,2936,2679,2743,2679,2743,2936,3001,2681,3001,2742,3000,3001,2681,2936,2681,2745,3000,2936,2745,2743,2679,2743,2809,2743,3000,2936,3001,2936,2743,3000,2937,2872,2872,2743,2872,2744,2743,2680,2872,2808,2679,3000,2743,2679,2873,2680,2744,2936,2872,2745,2873,2744,2681,2873,2745,3001,2742,2679,2744,2743,2936,2745,2745,3001,2745,3001,2679,3001,2873,2872,3001,2808,2742,[3000,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3219,549],[3157,550],[2862,3287],[2863,3282],2708,[2706,935],607,607,607,[2771,4085,869],[2707,6976],[2771,6977],6978,[2772,6979],[3956,6980],[3954,6981],[4020,6982],[3955,6983],6984,6985,6986,[4019,6987],[3570,6988],[4020,6989],[3954,6990],6991,6992,[3157,6993],[3158,877,6994],[2644,807],607,607,607,607,[3158,869],3157,2708,2771,3219,3158,2642,2706,3158,2706,2706,2773,[2862,3284],[2798,3285],[2798,3286],[2798,3093],2927,2926,[2926,3090],3221,3221,[2926,3029],2927,2863,[2863,3091],[2926,3284],[2798,3285],[2926,3094],2798,2926,2862,2927,[2926,2962],[2927,2963],[2798,3029],2927,2798,2798,2798,2798,[2863,3282],[2926,3283],[2927,3284],3156,3158,3221,3219,3219,2707,3219,3158,3157,2262,2263,2264,2265,2266,2267,[2268,6449],[3158,6450],[3219,6451],[2708,6452],2772,2707,2770,2770,3155,2771,[2708,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[4025,8351],[3578,8352],4025,3447,3446,3511,3962,3510,4025,4026,4026,4024,3574,3448,3447,3577,3575,3446,3578,3576,3574,4026,3511,4026,3576,3578,3447,3577,4023,3577,4025,4023,3510,3512,3961,[4026,9339],[3447,9532,9342],[3186,9721],[3250,9722],3251,3188,3250,3252,3250,3186,3185,[3188,5778],[3187,5779],[3187,5780],3249,3186,3188,[3249,9823],[3250,9919],10011,10012,[2928,9914],[2928,3248,9915],[3186,9916],[3187,9917],[3185,9918],[3186,9919],9920,[3250,9725],3187,[2931,3125],2802,[2802,3056],3250,3186,3252,3187,3252,3187,3185,3187,3185,3250,3188,3251,3250,3249,3187,3252,[2928,2997],2928,2928,2928,2928,[2928,3248],3251,3249,3251,3185,3187,3185,3252,3250,3250,3188,3186,3188,3186,3187,3188,3186,3185,3185,[3252,9628],[3185,9721],[3250,9722],3186,3249,3186,[2928,3189],2928,[2928,3120],3187,3251,[2928,3317],2928,[2928,3184,5677],[3250,5678],[3185,5679],[3187,5680],[3252,5681],[2928,3189],2928,[2928,3248],3252,3188,[3188,5966],[3187,5967],[3252,5968],3187,3250,3186,3249,3249,3249,[3185,5586],[3188,5587],[3188,5588],3250,[3186,9562],[3926,9563],3989,3926,3989,3926,3924,[3210,3862],3209,3146,3207,[3208,3986],3924,[3145,3798],3209,[3145,4050],3987,3987,[3145,3863],3210,[3146,3794],3475,3925,3925,[3145,4051],[3208,4052],[3209,4053],[3143,4055],3209,3210,[3209,3796],[3145,3731],[3208,3731],3926,[3146,3799],3207,[3145,3922],3987,3924,3989,[3146,3991],3208,[3207,3986],3923,3540,3926,3539,3926,3987,3987,3923,3926,[3412,10133],[10037,9559],[3210,9652],[3210,9653],3144,[3209,4050],[3145,4053],[3146,4052],[3145,4053],[3210,4054],[3143,4053],[3144,4054],3987,3923,3924,3926,3989,3923,3987,3924,[3989,9658],[3923,9659],[10042,9560],[2499,10043],[2820,9848],2500,2562,2562,2565,2756,2562,2500,2628,2628,2628,2757,2628,2629,2629,2628,2629,2562,2565,2820,2501,2500,2628,2562,2628,2565,2564,2820,2821,2629,2756,2565,2629,2692,2693,2756,2628,2628,2693,2563,2564,2501,2820,2500,2628,2629,2821,2820,2821,2820,2499,2500,2562,2564,2628,2629,2563,2501,2628,2562,2564,2498,2756,2565,2563,2500,2501,2564,2563,2500,[2563,9655],[4004,9652],[3429,9653],4007,3942,[3175,3815],3239,[3240,3814],[3174,3749],[3239,3815],[3176,4068],4005,3558,[3238,4009],3240,[3239,3877],[3174,4069],4005,[3240,4009],[3238,294],[3240,294],[3176,294],3238,[3238,359],409,409,[409,9366],[409,9367],[409,9368],[409,9369],[409,9556],[3924,9557],3925,3542,3475,3476,3539,3923,3989,3925,3923,3923,3476,3923,3926,3924,3924,3989,3924,3477,3923,3923,3923,3926,3540,3924,3538,3539,3540,3541,3542,3538,3539,3540,3541,3474,3926,3411,3925,3538,3542,3538,3926,3989,3410,3476,3477,3989,3924,3925,3925,3477,3540,3926,[3926,9556],9557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,9444,9447,[3000,9448],2742,3000,3000,2872,2681,2743,2742,2873,2808,2681,2743,2873,2680,3001,2743,3001,2745,2808,2681,2936,2681,2678,2743,2873,2743,2873,3001,2743,2936,2873,3001,2744,2743,3001,3001,2681,2681,2743,2873,2936,2872,3001,3001,3001,2680,2873,3001,2873,2937,2680,2745,2678,2745,2743,3000,3000,2679,2742,2872,2936,2808,2679,2678,3001,3001,2680,2936,2679,2872,3001,2678,2872,2936,3000,2808,3001,3000,2742,2745,2745,2681,2679,2681,2808,2873,2743,2745,2743,2808,2743,3000,3000,2873,2809,2681,3000,3001,2681,[3001,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,613],[2798,3094],[2926,3027],[2798,3029],[2926,3092],[2706,877],[3158,806],[2771,807],607,[2770,933],3157,[3156,7073],[2708,7074],[3158,4016,7075],3505,3440,3953,[3954,7079],[3504,7080],7081,[3506,7082],[3506,7083],3442,4019,[3155,4081],[3156,4082,7087],[2706,4085,7088],2772,2706,[3221,871],607,607,607,608,[2862,3284,869],3155,2706,2644,2707,2708,2708,3155,3155,3156,2708,[2798,3223],2798,2926,2926,2862,[2926,3027],[2798,2967],[2926,3154],2771,3221,2707,[2927,2967],2862,2798,2926,2926,2798,2862,[2926,3027],[2798,2964],[2798,2966],2771,3158,2706,[2927,2964],[2927,2965],[2798,2966],[2927,3029],2798,2927,2798,2927,[2798,3092],[2926,3283],[2798,3283],[2926,3284],[2926,3285],[2927,3286],3221,2642,[2927,3094],2927,2798,2926,[2927,3028],3219,2770,2770,[3221,6546],[2706,6547],2706,2771,3158,2770,2771,3221,2708,[2707,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[4023,8447],[4026,8448],3960,3446,4023,3448,3962,4024,4024,4026,4025,4026,3959,3577,3578,3446,3577,4023,3448,4024,3962,3447,3578,3575,4025,3962,3962,3578,4026,3574,4025,3577,4023,[3447,9433],[3576,9434],[3187,9435],[3252,9438],[3252,9530],3186,3251,3186,3188,3188,3188,3251,3251,3185,3252,3249,3249,3249,[3250,9823],[3251,9919],10015,[3249,10107],[3188,10108],10010,10011,10012,10013,10014,10015,[3186,10016],[3186,9821],3251,[2802,3189],2802,[2930,3184],3188,3252,3188,3187,3188,3185,3250,3188,3185,3188,3249,3188,3252,3250,3188,3188,3251,[2928,2993],[2928,3059],2928,[2928,3057],3249,3186,3251,3249,3252,3185,3186,3187,3251,3250,3249,3185,3252,3188,3249,3251,3188,3249,3186,[3187,9628],[3250,9817],[3187,9818],[2928,3314],[2928,3315],[2928,3316],[2928,3123],2928,[2928,3184],3249,[2928,3061],2928,[2928,3057],[3249,5773],[3249,5774],[3250,5775],[3252,5776],[3186,5777],[2928,3253],2928,[2928,3056],3252,3251,3251,3187,3249,3188,3249,3188,3252,3187,3185,[3186,5682],[3251,5683],[3249,5684],3249,[3249,9658],[3250,9659],[3474,9560],3989,3925,3925,[3210,3991],3209,[3208,3730],[3210,3732],[3145,3734],3926,3987,[3145,3799],3208,3208,[3210,3986],3924,[3210,3927],3209,[3145,3858],3924,3989,[3210,3991],3209,3209,3208,3210,[3209,3795],[3144,3731],3987,3989,3989,3924,[3209,3863],3208,[3209,3859],[3145,4052],3923,3926,[3209,3862],[3145,3795],3987,3538,3923,3924,3538,3924,3989,3539,3475,[3209,4053],[3210,4054],[3210,4055,10133,9655],[3145,9748],[3208,9749],3143,3209,3208,3208,3146,3145,3209,3208,[3145,3859],[3145,4051],[3210,4052],[3210,4053],[3208,4054],3989,3925,3476,[3924,9754],[3538,9755],[2565,10138,9656],2565,2498,2500,2628,2629,2820,2820,2821,2821,2692,2692,2692,2692,2692,2693,2693,2628,2628,2564,2498,2565,2565,2628,2564,2693,2757,2821,2563,2564,2563,2820,2820,2821,2693,2756,2757,2628,2565,2692,2692,2820,2565,2563,2563,2562,2692,2693,2565,2564,2500,2500,2563,2563,2565,2498,2692,2693,2628,2693,2692,2693,2820,2501,2820,2821,2628,2629,2500,2563,2564,2564,[2499,9655],[3174,3877,9748],[4005,9749],3943,3556,3942,[3238,3749],3941,3558,3942,[3175,3815],[3238,3878],4005,[3175,4009],3240,3239,3239,[3175,4004],3942,[3176,3753],3176,3176,3238,[3176,423],409,[409,9461],[3542,9462],[3989,9463],[3926,9464],[3987,9465],[3987,9557],3925,3925,3926,3924,3476,3923,3989,3926,3989,3542,3925,3538,3987,3476,3923,3412,3987,3477,3476,3923,3476,3475,3924,3540,3924,3410,3987,3412,3413,3924,3410,3411,3987,3538,3989,3477,3924,3989,3926,3542,3410,3989,3926,3540,3924,3925,3989,3538,3539,3540,3541,3542,[3474,9559],9748,9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[3000,9542],2680,2681,2872,2742,2873,2678,3000,2681,2873,2743,3001,2745,2873,2678,2745,2743,2678,2681,2872,2744,3001,2742,2678,2936,2681,2808,3000,2873,2936,2678,2680,2936,2873,2679,3001,2679,2681,2873,3000,3000,2936,2745,2679,2745,2936,3000,2679,2872,2873,2681,2679,2744,3000,2745,2742,2808,2681,2744,2936,2872,2743,2743,2681,2681,2678,2745,2742,2679,3000,2745,3001,2679,2872,2936,3000,2681,2745,2679,2872,2809,2873,2679,2744,3001,2873,2873,3001,2745,2681,2936,2745,2681,2679,2681,2872,3001,2872,[2680,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2927,3223,613],2798,[2927,3218],3157,[2863,3029],[2927,3218],2707,[2707,871],607,[2771,997],[3221,998],[3157,934],[2642,3825,816],3506,3505,3504,3505,3956,[4017,7176],[3955,7177],[3953,7178],3505,3570,[3156,3892],2770,3221,2771,3219,3219,[3155,935],607,607,[3158,805],[2926,3095,806],[2862,876],[2798,3218],2770,3156,[2926,3283],[2927,3284],[2798,3285],[2926,3286],[2862,3284],[2927,3285],[2926,3286],[2863,3093],2926,[2927,2962],[2927,2963],[2926,2966],2773,3221,3219,2771,2771,3156,[2798,3223],2926,2798,2927,2798,[2926,2962],[2927,2963],2771,2644,2706,2771,3221,2706,2834,2835,2706,2707,[2798,2963],[2863,2967],2927,2798,2798,2862,2926,2798,2927,2798,[2863,3091],[2798,3287],2927,2798,[2798,3028],[2926,2963],2707,2706,3156,3221,3158,2706,3157,3158,3158,3219,2706,3155,3157,[3219,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],8543,[4026,8544],[4026,8448],3577,3446,3447,4026,4023,3447,3510,3447,3446,4026,3578,3576,3446,4026,3448,3447,3510,3959,4026,3577,3578,3575,3578,3511,3448,3576,3960,4024,3960,3962,[4025,9529],[3187,9530],3188,3188,3186,3250,3252,[3249,5485],[3251,5486],[3250,5487],[3187,5488],[3250,5489],3186,3185,3252,3251,3187,[3250,9631],[3251,9632],10015,[3250,10111],[3185,10203],[3251,10204],[3250,10106],[3185,10107],[3250,10108],[3251,10109],[3187,10110],[3186,10111],3185,3185,3186,[2802,3123],2802,[2802,3121],3252,3249,3251,3250,3250,3251,3249,3185,3186,3251,3185,3252,3249,3250,3252,3188,3187,3250,3187,[2928,2993],3187,3186,3187,3186,3188,3251,3187,3251,3186,3250,3188,3188,3188,3250,3185,3250,3252,3250,3249,3186,[3249,9724],9913,[2928,3253,9914],[2928,9818],2928,[2928,5485],[2928,5486],[2928,2992,5487],[3252,5488],[3252,5489],[2928,3189],2928,[2928,3248],[3187,5869],[3187,5870],[3249,5871],[3187,5872],[3187,5873],[2928,3061],2928,[2928,3120],3188,3186,3187,3251,3187,3188,3249,3185,3188,3188,3187,[3249,5778],[3252,5779],[3251,5780],3185,[3188,9754],[3250,9755],[3989,9656],3925,3926,3538,[3144,3861],3210,[3210,3986],3989,3923,3926,3926,[3145,3927],3146,3144,[3145,4050],3989,[3143,3991],3209,[3209,3922],3924,[3144,4054],[3210,3862],3146,3208,[3210,3730],[3144,3731],3926,3925,3923,3925,3923,3925,[3210,3927],3208,3210,3144,[3210,3859],[3145,4055],3146,[3207,3794],3987,3987,3987,3923,3924,3540,3987,[3923,9366],[3209,3862,9367],[3146,9368],[3208,9369],[3143,9556],[3207,3730,9557],[3209,3732],[3143,3734],[3209,3797],3207,3209,[3209,3796],[3146,3731],[3145,3797],3208,3209,3146,3146,3145,3210,[3145,4050],3924,3987,[3209,3799,9658],[3208,9659],[2501,9656],2562,2820,2562,2628,2693,2562,2501,2563,2498,2756,2756,2756,2756,2756,2501,2564,2692,2692,2693,2498,2499,2500,2628,2629,2564,2821,2499,2820,2820,2501,2820,2562,2756,2757,2820,2821,2692,2693,2756,2757,2565,2564,2563,2820,2498,2756,2757,2820,2500,2563,2564,2501,2501,2498,2565,2756,2757,2692,2693,2756,2757,2499,2628,2629,2563,2692,2693,2563,2562,2499,2564,[2499,9655],[3240,9844],[3174,4068,9845],[3174,4072],4005,3558,3944,3430,3557,4006,[3240,3880],3176,[3174,4004],[3175,4009],3238,3240,3238,[3174,4004],3492,3942,[3239,3749],[3175,3815],3239,3240,[3238,295,9461],[3411,9557],3410,3476,3538,3989,3411,3476,3924,3923,3923,3474,3926,3926,3926,3925,3987,3926,3923,3412,3410,3476,3541,3477,3987,3538,3987,3923,3925,3987,3924,3602,3603,3924,3476,3987,3989,3474,3475,3476,3538,3540,3475,3475,3989,3477,3410,3474,3987,3925,3474,3925,3926,3474,3923,3411,3926,3413,3926,[3987,9655],9652,9653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2745,9638],2680,2872,2681,2742,2679,2936,3000,2745,2743,2743,2681,2679,2936,2936,3001,2873,2745,2742,3001,2872,2743,2808,2745,2808,2872,3000,3000,3001,2679,2744,3001,3001,2680,3000,2743,2745,2679,2679,2873,2744,2681,2872,2872,2678,2873,2873,2872,3001,2679,3000,2743,2743,3001,3000,2872,2679,2936,3001,2936,2679,2873,2742,2872,2742,2681,2745,2744,3001,2743,3000,2678,3001,2745,2744,2743,3000,2872,2936,2743,2745,3001,2679,2936,2743,2872,2745,2873,2745,2873,2680,2679,2936,2872,3001,2681,2745,2745,[2681,9832,9733],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3155,677],[2862,2963],2771,2770,[2926,3031],[2926,3282],3157,[3157,935],607,607,607,607,[3155,4080,869],[3158,4081],[2708,4082],[2772,4083],3505,3954,3505,3955,3956,3568,[3158,4021],2772,[2772,815],[3221,870],[3219,1003],[2707,1004],[3158,1005],[2642,999],607,607,[3157,869],[2798,3159],2926,[2798,3282],[2926,3285],[2927,3094],[2927,3027],[2927,2967],2926,2927,2927,2927,2926,2927,[2927,3027],3219,2708,2706,2707,2770,2770,3156,3156,3156,2708,[2926,2963],[2798,3029],2798,2863,[2926,3091],2707,2708,2771,2708,2770,3156,2771,2898,2899,3155,2706,2772,3157,[2927,2963],[2863,2964],[2863,2965],[2927,2966],[2926,3030],2927,2798,[2798,3027],[2927,2967],2927,2798,2798,[2927,3282],3157,3221,2708,3156,2707,3219,3157,2707,2770,2708,3221,[2707,557],[3158,614],[3155,742],[2770,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8450],8639,8640,[3961,8544],[3962,8448],3447,4024,4026,3962,4025,4024,3577,3446,3510,4025,3959,4026,4024,3447,4024,3959,3447,4024,3448,3577,3448,3510,3446,3446,3578,3574,4025,4023,[4024,9532],[3188,9625],[3188,9626],3249,3252,3250,3250,3185,[3187,5581],[3185,5582],[3186,5583],[3188,5584],[3186,5585],3188,3186,3250,3250,3250,[3185,9727],[3185,9728],[3187,10111,9533],3249,3249,3250,3250,[3188,10203],[3249,10204],[3185,10205],[3188,10206],3249,3187,3251,[2930,3253],2803,2930,2930,[2931,3248],3188,3185,3252,3188,3186,3188,3187,3250,3252,3188,3187,3252,3185,3250,3186,3251,3249,3251,3252,3185,3249,3250,3187,3185,3185,3188,3187,3249,3187,3187,3185,3185,3249,3186,3251,3188,3187,3251,3251,[3186,9820],[3187,10009],10010,[2928,3057,9625],[2928,2994,9626],[2928,2995,5581],[2928,2996,5582],[3250,5583],[3249,5584],[3252,5585],3252,[2928,2993],3187,3252,[3251,5966],[3249,5967],[3250,5968],3187,[2928,3189],2928,[2928,3184],3187,3185,3251,3252,3185,3252,3252,3251,3249,3251,3185,3252,3187,3250,3252,[3251,9658],[3251,9659],[3987,9656],3540,3411,[3210,3799],3208,[3146,3795],3987,3987,3989,3924,3924,3987,[3208,3731],[3210,3735],3146,[3210,3859],[3145,4055],3210,[3143,4050],[3210,3861],3210,3143,3146,[3145,3795],3602,3603,3924,3989,3924,3538,3924,3987,3926,[3207,3731],[3208,3798],3207,3209,3145,3145,[3208,3922],3923,3989,3411,[3146,4053],3924,[3923,9460],[3926,9461],[3210,4055,9462],[3146,9463],[3146,9464],[3143,3730,9465],[3208,3731,9557],3538,3538,3925,3987,[3209,3731],[3144,3731],3987,3925,3989,[3145,3731],[3209,3732],[3145,3733],[3209,3734],[3146,3735],3209,3144,[3208,3860],3926,[3146,3863,9754],[3146,9755],[2565,9752],2563,2499,2820,2628,2564,2501,2562,2562,2562,2820,2820,2820,2820,2820,2821,2693,2756,2756,2693,2693,2562,2562,2692,2693,2821,2564,2564,2564,2820,2562,2820,2563,2820,2821,2499,2820,2756,2757,2820,2821,2628,2693,2562,2564,2499,2820,2821,2564,2565,2565,2820,2498,2562,2564,2500,2820,2821,2756,2757,2820,2821,2564,2692,2693,2499,2756,2757,2562,2564,2564,2499,[2820,9751],9940,[3173,9941],[3238,9845],[3239,3878],4005,4008,4006,4005,[3176,4009],3240,3239,[3175,4004],3942,[3239,3816],3175,[3239,3748],3941,3557,3494,3557,[3176,4009],[3238,9460],[3238,9461],[3989,9557],3413,3923,3476,3412,3411,3925,3474,3923,3926,3411,3411,3987,3925,3923,3987,3541,3987,3540,3925,3926,3411,3412,3926,3987,3413,3474,3926,3542,3542,3538,3666,3667,3926,3989,3924,3925,3989,3539,3540,3541,3542,3923,3989,3987,3541,3542,3538,3539,3924,3925,3926,3989,3411,3540,3923,3411,3477,3923,[3987,9751,9357],[9748,9360],9749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2872,9638],2679,2744,3001,2681,2744,2679,2936,2745,2679,2808,2808,3000,3001,2743,2873,2744,2745,3001,2873,2873,2873,2743,2679,3000,2808,2873,2745,3001,2742,2742,2872,3001,2808,3001,2742,2937,2681,2809,2873,2679,2743,2936,2936,2936,2681,2679,2681,3001,3000,2936,2936,2678,2745,2680,2679,2680,2680,3001,3000,2743,2742,2808,2873,2743,2808,2745,2745,2936,2873,2872,2681,3001,2745,2873,2681,3000,2872,2680,2681,2936,3000,2745,3000,2744,2808,2681,3001,2936,[2743,9832],[2873,9926],[2745,9927],[3000,9827],2873,2873,2680,2743,[2679,9832],[2936,9928,9829],[9922,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,741],[2771,746],[3155,747],[3157,678],[2798,3095,558],2927,[2798,3092],[3156,877],[3157,806],[3219,807],607,607,[2772,933],3157,2770,3158,[3221,3889],[2706,4081,815],[3219,4082,870,367],368,[3221,4081,811,370],[3158,4082,812],[3221,3891],3157,[2772,935],607,607,607,607,607,607,607,[2772,933],3158,[2926,2963],[2798,2963],[2927,3030],2862,[2798,3026],3156,[2927,2963],[2798,2964],[2798,2965],[2862,2966],[2926,2964],[2863,2966],2707,2771,3221,2708,2771,2772,2772,2708,2707,2771,2771,[2926,3286],[2927,3093],2927,2798,2798,[2926,3026],2706,2708,3158,2771,2772,3155,3221,3156,3157,3221,3157,3219,2771,3155,2642,3158,3157,[2927,2967],2927,[2927,3026],2772,[2926,2964],[2926,2966],[2862,3029],2927,[2862,3091],[2863,3283],3221,2644,3221,3156,3221,2770,2643,2771,2771,[2770,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8736,[8640,8162],[3962,8351],[3576,8352],3575,3446,3448,4025,3578,4024,4023,3512,4024,4025,3511,3448,3510,3510,3577,3448,4026,3578,3511,3446,3578,3574,4024,4023,3575,3962,3575,[4026,9433,9724],[3252,9721],[3187,9722],3251,3187,3250,3249,3250,[3252,5677],[3185,5678],[3252,5679],[3187,5680],[3251,5681],3251,3250,3185,3187,3188,[3186,9823],[3187,9824],[3249,9629],3185,3250,3250,3252,3250,3251,3187,3188,3187,3251,3187,3250,[2930,3060],2802,[2931,3057],3185,3250,3249,[2930,3313],[2930,3314],[2931,3315],[2930,3316],[2931,3315],[2930,3316],3188,3251,3249,3187,3186,3186,3251,3185,3188,3250,3187,3187,3252,3249,3187,3187,3188,3188,3252,3187,3188,3249,3185,3185,3249,3252,3250,3249,3250,3250,3185,3249,3252,[3249,10106,9532],[3185,9721],[3251,9722],[3249,5677],[3187,5678],[3185,5679],[3188,5680],[3252,5681],3249,3251,3250,3186,3187,3251,3249,3251,[2928,3317],2928,[2928,3121],3252,3188,3186,3186,3186,3251,[2928,3313],[2928,3314],3252,3252,3188,3252,3252,3185,3187,[3187,9850],[3187,9851],[3987,9656],3411,3987,[3210,3863],3207,[3146,3794],3987,3924,3923,3989,3989,3924,3926,3412,[3210,3798],3146,3209,3209,3146,3209,[3209,3795],[3145,3732],[3210,3734],3924,3666,3667,3412,3412,3539,3924,3924,3923,3926,3476,[3143,3862],3146,3208,3210,3208,[3208,3859],[3209,4051],[3209,4052],[3208,4055],3210,[3143,3860],[3210,4053,9556],[3209,3862,9557],3210,3209,[3143,3795],3987,3538,3539,3926,3539,3926,3923,3412,3474,3410,3924,3926,3926,3923,3923,3987,[3210,3731],[3145,3797],3208,[3208,3986],[3210,3927],[3210,9562],[2565,9563],2820,2563,2498,2692,2693,2498,2820,2500,2565,2820,2821,2821,2757,2820,2821,2757,2820,2820,2821,2757,2500,2628,2500,2757,2564,2562,2500,2565,2499,2564,2498,2563,2498,2498,2564,2563,2820,2821,2820,2821,2692,2693,2501,2564,2563,2562,2501,2565,2499,2500,2499,2500,2564,2501,2564,2498,2564,2820,2821,2565,2562,2501,2756,2693,2499,2820,2821,2562,2820,2565,2563,[2500,9847],[2629,10036],[10037,9559],[3175,9652],[3238,9653],[3240,4004],3493,3942,3941,3942,[3239,3815],3175,[3176,3878],4005,3942,[3239,3749],3941,4007,3558,3558,4008,[3176,4009],[3238,9556],[3926,9557],3923,3925,3474,3541,3926,3413,3923,3926,3924,3923,3987,3989,3987,3475,3410,3412,3412,3925,3924,3542,3923,3476,3477,3926,3474,3475,3924,3410,3989,3925,3542,3989,3924,3989,3410,3410,3925,3410,3926,3412,3987,3540,3410,3411,3412,3413,3923,3987,3987,3987,3410,3413,3925,3924,3926,3926,3923,3987,[3924,9452],[3174,9453],[3173,9456],9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2873,9827,9734],2873,2872,2745,3000,3000,2808,[2744,9832],[2745,9926],[2679,9927],[2680,9827],2743,3001,[2808,9832],[3001,9926],[2745,9927],[3000,9924],[2873,9925],[3001,9827],2680,3001,3001,2873,2678,3000,2744,2745,2743,2745,3001,2872,2745,2678,2873,2936,2873,2745,2681,2681,2872,2679,2679,2936,2743,2873,2872,2681,2681,3000,3000,3001,2681,3000,2745,3001,2679,2679,2743,2681,2744,2681,3001,2873,2742,2745,2678,2679,2808,2872,2936,2873,3000,2872,2743,2936,2743,2679,3000,3001,2678,2872,2679,2873,2679,2743,2681,3001,3001,[2743,9832],[3000,9928],10022,10023,[2679,9923],[2745,9924],[2743,9925],[2745,9926],[2679,9927],[2873,9928],10024,[2873,10018,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2798,3159,613],2926,2863,[2926,3282],[2798,3283],[3155,871],607,607,[2706,1000],[2772,1002],[2706,1003],[3158,1004],[2643,1005],[2708,1006],[607,367],368,[607,370],[2706,997],[2770,998],[3219,998],[2706,999],607,607,[2770,805],[2772,806],[2772,807],607,[2770,805],[2706,876],3157,2772,3221,[2862,3287],2798,[2927,3090],3157,3219,2834,2835,3219,3158,2771,3221,3155,3158,3219,2772,3155,[2926,3283],[2798,3284],[2798,3285],[2926,3286],[2926,3093],2927,2926,[2798,3028],[2927,3030],2927,[2863,3154],3221,3221,2707,3156,2770,3221,3219,2771,2772,2708,2773,2772,2706,2772,3156,2772,3155,[2926,3093],2798,[2798,3090],3157,2644,2708,[2798,3031],[2926,3027],[2927,2967],2927,[2926,3091],3156,3158,3155,3219,3156,3221,2707,3158,[2643,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[8736,8258],[3961,8447],[3962,8448],4024,4023,3576,4026,3446,3960,3576,3446,3576,3960,3447,3447,3510,3577,3578,3577,4023,3448,3960,3576,3962,4024,3512,[3447,9339],[3578,9340],[3510,9341],[3574,9342],[3510,9529],[3185,9530],3187,3185,3251,3187,3185,3252,[3252,5773],[3187,5774],[3250,5775],[3251,5776],[3188,5777],[3187,9823],[3186,9915],[3251,9916],[3251,9917],[3188,9918],[3185,9919],9920,[3188,9725],3185,3251,3251,3187,3252,3187,3252,3188,3187,3251,3188,3250,[2802,3061],2930,[2802,3312],[2931,3313],[2930,3315],[2802,3317],2802,2802,2930,2802,2802,2802,[2931,3312],[2930,3315],[2930,3316],3187,3252,3186,3250,3186,3185,3251,3252,3186,3185,3251,3186,3188,3249,3185,3250,3251,3251,3251,3252,3186,3185,3252,3252,3185,3252,3185,3250,3187,3185,[3252,9628],[3250,9817],[3185,9818],[3251,5773],[3251,5774],[3185,5775],[3251,5776],[3187,5777],3252,3251,3251,3249,3249,3188,3250,[2928,3061],2928,2928,2928,[2928,3248],3188,3188,3185,3185,[2928,3253],[2928,5485],[2928,5486],[2928,3121,5487],[2928,3315,5488],[3249,5489],3251,3186,[2928,3315],[2928,3316,9850],[3187,9946],9947,[3925,9752],3926,3475,[3146,3927],3143,[3209,3858],3989,3925,3924,3474,3989,3925,3924,3412,3989,[3208,3731],[3145,3735],3144,[3208,3730],[3146,3731],3923,3989,3924,3987,3925,3474,3989,3925,3987,3989,3923,[3146,4053],[3210,4054],[3207,3861],3209,3208,[3146,3796],[3146,3731],[3210,3798],3209,3208,3145,3209,3210,[3146,9559],[3209,9748],[3209,9749],[3146,3730],[3145,3731],3926,3987,3925,3413,3924,3926,3926,3411,3925,3926,3926,3538,3924,3987,3925,3987,3987,3987,[3210,3991],3208,[3210,4050],3926,[3143,3798,9658],[3209,9659],[2564,9560],2564,2500,2756,2757,2500,2499,2498,2563,2500,2820,2821,2821,2820,2821,2821,2820,2821,2821,2821,2820,2692,2693,2821,2498,2564,2564,2562,2499,2500,2820,2562,2562,2563,2501,2498,2820,2562,2500,2565,2756,2757,2499,2498,2562,2563,2820,2564,2562,2565,2820,2499,2565,2499,2562,2499,2563,2499,2820,2500,2563,2565,2820,2821,2500,2500,2499,2498,2501,2498,2565,2563,2565,[2499,10133,9655],[3174,9748],[3240,9749],[3238,4004],3943,3430,3943,4008,3942,[3238,3815],3238,[3176,3878],4005,3943,3494,3430,4008,4006,4005,[3174,4009,9559],[3924,9652],[3987,9653],3924,3987,3989,3539,3538,3477,3923,3925,3541,3926,3923,3989,3924,3924,3924,3475,3474,3475,3989,3989,3474,3924,3987,3541,3412,3989,3923,3925,3474,3926,3411,3987,3411,3987,3989,3923,3924,3474,3475,3476,3477,3541,3474,3475,3539,3924,3925,3410,3925,3989,3925,3410,3412,3925,3989,3410,3923,[3987,9452],[3174,9548],3176,3240,[3175,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[3001,9923,9830],[2872,9827],2872,2745,[2681,9832],[2936,9926],[2873,9927],[3001,9928],10022,10023,[2809,9923],[2744,9924],[2872,9925],[2936,9928],10022,10023,10020,10021,[2936,9923],[2742,9827],2679,2873,2679,2873,2809,2808,2681,2745,3000,2937,2679,2873,3000,2681,2745,2873,2936,2681,2936,2745,2743,2872,2679,2681,2679,2808,2679,[3000,9543],2743,2680,2936,2873,2873,2872,2681,2873,2681,[2743,9540],2809,2678,2744,3001,2679,3000,2873,3001,2743,2743,2742,2872,2872,2745,2678,2745,2873,2681,2872,2873,2873,2679,2742,3001,2745,2743,2745,[2743,9832],[2681,9926],[2679,9927],[2873,9928],10024,[3001,10118],[2872,10119],10019,10020,10021,10022,10023,10024,[2872,10120],[2743,9733],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,613],[2798,3029],2926,2863,2798,[2926,3091,877],[2772,807],607,608,607,607,607,607,607,[607,367],368,[607,370],607,607,608,608,607,[2707,805],[2772,876],3221,[3155,877],[3219,806],[2834,876],2835,2773,2642,[2862,3223],2798,2926,[2926,3154],3221,2772,2898,2899,3155,[2927,3285],[2927,3286],3158,2773,3221,3156,3158,[2926,3094],2863,2926,[2798,2962],[2926,2963],[2798,3030],[2926,2962],[2863,2963],3156,[2798,3031],2798,[2926,3282],[2926,3285],[2926,3286],3157,3157,3157,2708,2771,3219,3221,[2863,3283],2771,2706,2708,3219,3157,3221,[2926,3223],2798,2926,[2926,3154],2706,2772,3155,[2798,3095],[2926,3218],2772,[2926,2963],[2798,3029],[2862,3218],3219,2770,2772,2706,2707,2708,3158,[2771,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],8543,[3962,8544],[4023,8545],[4026,8546],[3961,8448],3577,3577,3959,3511,3447,4026,3960,3448,3448,4024,3578,4025,3446,3961,3447,3575,3578,3578,3578,[3960,9529],[3186,9435,5485],[3188,9436,5486],[3252,9437,5487],[3188,9438,5488],[3185,9530,5489],3185,3251,3187,3249,3251,3250,3250,[3186,5869],[3252,5870],[3186,5871],[3252,5872],[3249,9823,5873],[3185,9919],10011,10012,10013,10014,10015,[3249,10016],[3188,9821],3188,3185,3186,3185,3185,3186,3186,3250,3251,3249,3186,3188,[2931,3125],2930,2802,2931,2930,2867,[2930,3057],[2930,2994],[2866,2995],[2931,2996],[2931,3059],2931,2930,2802,2930,[2931,3248],3185,3250,3250,3250,3251,3187,3250,3188,3251,3188,3251,3185,3188,3251,3251,3186,3185,3250,3249,3185,3250,3252,3252,3186,3251,3252,3250,3186,3252,[3186,9724],9913,[3250,9914],[3250,9818,5869],[3252,5870],[3251,5871],[3187,5872],[3251,5873],[3187,5304],[3186,5305],3249,3187,3187,3186,3252,[2928,3189],2928,2928,2928,[2928,3121],[2928,3123,5490],[2928,3248,5491],[3250,5492],3188,3186,[2928,3059,5581],[2928,5582],[2928,5583],[2928,5584],[2928,3122,5585],[2928,3316],[2928,3123],[2928,9658],[2928,9659],[10042,9560],[3989,10043],[3987,9848],3924,3989,[3146,3861],3210,[3145,3922],3989,3926,3476,3475,3926,3987,3925,3925,3924,3989,[3209,3799],3209,[3207,3794],3989,3987,3410,3926,3926,3989,3924,3476,3989,3925,[3146,4053],[3207,3861],3207,3146,3210,[3208,3795],[3146,3731],3989,3410,3924,[3146,3731],[3209,3732],[3146,3733],[3146,3797],[3208,3796],[3209,3732,9655],[3145,3733,9652],[3207,3734,9653],3926,3923,3923,3924,3924,3474,3926,3412,3987,3539,3923,3987,3926,3987,3989,3987,3989,3540,3925,3475,[3208,3991],3145,3209,[3210,3859],[3210,4055,9754],[3207,9755],[2820,9656,9366],[2563,9369],2499,2820,2821,2565,2499,2565,2499,2565,2499,2562,2562,2562,2820,2821,2562,2564,2820,2821,2498,2756,2757,2562,2820,2562,2563,2501,2500,2501,2565,2500,2564,2499,2563,2563,2757,2498,2565,2820,2820,2821,2562,2498,2820,2629,2820,2820,2501,2500,2499,2562,2498,2562,2499,2565,2562,2564,2562,2564,2565,2820,2498,2562,2565,2501,2499,2501,2563,2501,2564,2498,2565,[2564,9655],[3175,9844],[3176,9845],[3175,4004],4007,3494,4006,[3175,4069],4005,[3176,4009],3239,[3175,3813],3941,3943,3943,4008,4007,3942,3941,[3174,4009,9655],[3925,9748],[3410,9749],3925,3989,3412,3926,3477,3923,3926,3989,3989,3924,3538,3411,3411,3540,3538,3989,3926,3923,3541,3987,3475,3987,3925,3539,3924,3924,3411,3923,3476,3412,3923,3412,3924,3923,3924,3924,3542,3924,3538,3923,3541,3542,3538,3989,3925,3475,3926,3923,3924,3924,3925,3925,3475,3539,3987,3926,[3410,9547],[3238,9548],3176,3175,3240,3240,[3174,9553],9554,9264,9267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,10019,[3000,9923],[2678,9924],[2936,9925],[3001,9928],10022,10023,10024,[2872,10118],[2745,10119],10019,10020,10021,10024,[3000,10118],[2936,10119],[2936,10116],[2873,10117],10019,[2873,9923],[2745,9924],[2742,9925],[3000,9827],2872,2872,3000,2808,[3001,9832],[2872,9926],[2873,9927],[2744,9827],3000,2679,2679,2680,3001,2679,3001,2745,2743,2745,2808,2808,2873,3000,2679,2745,[2872,9639],[2873,9542],2936,2681,2873,2679,2808,2744,2936,[3001,9541],[3000,9636],3000,3000,2808,2744,2872,2936,3000,2743,2872,2743,3000,2873,2743,2873,3000,2679,2872,2873,2743,2808,2809,3001,2681,3001,2745,2681,[3000,9832],[2679,9928],10022,10023,10024,[2678,10120],[3000,10214],[2809,10215],[3001,10115],[2678,10116],[2681,10117],[2872,10118],[2681,10119],[2936,10120],2745,[2679,9443],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2770,677],2706,[2798,2964],[2927,2963],[2863,3029],2926,[2927,3218,877],[3157,806],[3219,806],[2927,3286,806],[2771,806],[2771,806],[3155,807],607,[607,367],368,[608,370],[2771,805],[2708,806],[3221,806],[3156,806],[3219,806],[2798,3283,876],[2926,3284],3219,3155,2708,2898,2899,2707,3219,[2862,3093],2798,[2926,3027],2706,2706,2708,3157,3155,[2926,3093],2927,2927,[2927,3218],2773,2772,[2927,3286],[2927,3093],[2798,2962],[2862,3029],[2798,3028],2772,3219,[2862,3287],[2926,3026],3158,2708,[2927,3223],2927,2863,2927,2926,[2798,3092],2644,2770,3157,3157,3156,[2926,3223],2926,[2927,3218],3219,3221,3155,3157,3155,[2927,3094],2798,[2862,3028],2772,3155,3158,2772,[2862,3159],[2926,3092],2770,3219,[2926,3094],[2926,3091],2708,2771,2708,2770,2708,2706,2706,[3219,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8450],8639,8640,8641,8642,[3962,8544],[4025,8448],3960,3446,3510,3446,4025,3962,4026,3578,3447,4026,3512,3574,4026,4025,4026,4025,4026,[3578,9532],[3250,9625],[3185,9626,5581],[3252,5582],[3187,5583],[3252,5584],[3185,5585],3188,3251,3251,3249,3252,3249,3186,3250,[3252,5966],[3185,5967],[3249,9823,5968],[3249,9919],10015,[3250,10107],[3187,10108],[3187,10109],[3249,10110],[3252,10111],3186,3249,3252,3252,3188,3249,3250,3250,3249,3251,3252,3250,3187,3186,[2930,3189],2802,2802,[2802,2992],[2930,2994],[2930,2996],3185,3188,3188,3249,[2802,3253],2802,[2931,3057],[2931,2994],[2802,2996],3187,3188,3186,3185,3188,3186,3186,3187,3250,3186,3188,3251,3251,3185,3250,3186,[2930,3315],3252,3252,3185,3188,3186,3188,3250,3186,3250,3187,3185,3187,3251,[3250,9820],[3187,10009],10010,[3186,9625],[3252,9626,5966],[3188,5967],[3250,5968],[3187,5399],[2928,3315,5400],[3251,5401],[3249,5402],3185,3188,[3251,5490],[3251,5491],[3186,5492],[2928,3059],2928,2928,2928,[2928,3057,5586],[3249,5587],[3251,5588],3185,3250,[3250,5677],[2928,2993,5678],[2928,2997,5679],[2928,5680],[2928,5681],2928,2928,[2928,3057,9754],[2928,2993,9755],[3925,10138,9656],3987,3924,3410,[3146,3991],3209,3208,[3145,3986],3925,3923,3410,3923,3924,3925,3925,3987,3987,3926,[3210,3863],3210,[3145,3858],3923,3923,3924,3925,3475,3926,3924,3989,[3209,4051],[3144,3861],3146,3210,3145,[3146,3730],[3209,3731],3924,3926,3925,3989,3923,3474,3412,3410,[3208,3799],[3146,4050],[3987,9655],[3538,9748],[3923,9749],3925,3925,3925,3925,[3208,4052],[3207,4053],[3145,4054],3989,3923,3925,3989,3926,3923,3923,3987,3925,3926,3926,3924,3923,3412,[3145,3731],[3209,3735],3210,3145,[3209,9562],[3210,9462],[3210,9465],[2820,9563],2499,2501,2499,2820,2500,2499,2820,2499,2498,2498,2820,2563,2501,2501,2563,2501,2564,2498,2820,2821,2564,2563,2564,2498,2820,2501,2564,2500,2820,2820,2501,2563,2562,2498,2820,2562,2499,2564,2820,2565,2563,2499,2563,2564,2820,2563,2820,2498,2565,2563,2820,2820,2565,2564,2498,2562,2820,2564,2501,2499,2500,2562,2498,2498,2565,2498,2498,2499,2498,2563,[2563,9751],9940,[3240,9941],[3238,4004,9845],4008,3557,[3240,4009],3240,[3174,4004],3942,[3239,3749],3941,3494,4006,4005,3428,3556,4008,4006,[3174,9655],[3923,9844],[3538,9845],3410,3989,3475,3538,3475,3476,3410,3925,3987,3411,3989,3987,3926,3924,3923,3923,3989,3475,3989,3412,3412,3476,3925,3924,3476,3539,3540,3539,3923,3925,3926,3538,3923,3924,3925,3411,3987,3987,3539,3925,3987,3926,3538,3475,3539,3923,3474,3476,3926,3924,3925,3475,3989,3924,3989,[3926,9550],[3170,3109,9643],[3175,9644],3240,3238,[3238,3813],[3240,3749],[3240,3815],[3240,9553],[3169,3305,9453],[3232,9456],9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[2743,10025],[2681,10115],10019,10020,10021,10024,[2936,10118],[2679,10119],[2679,10120],[2679,10214],[2808,10215],[3000,10115],[2679,10116],[2936,10117],[2745,10120],[2808,10214],[3000,10215],[2679,10212],[2679,10213],[2745,10115],10019,10020,10021,[3001,9923],[2742,9827],2745,2742,[2744,9832],[3000,9928],10022,10023,[2873,9923],[2745,9827],2936,2681,2873,3000,2936,2873,2679,3001,2743,2681,2744,3000,2678,2745,[3001,9832],[2872,9833],[2678,9638],3000,2936,3001,2936,2808,2678,3001,[2872,9637],[2936,9826],[2679,9827],2678,2872,2745,2681,2745,2873,2743,3000,2745,3001,3001,2872,2680,3000,2873,2745,2745,2873,2678,2681,2873,2679,[2745,9832],[2681,9924],[2873,9925],[2681,9928],10024,[2679,10118],[2743,10119],[2872,10120],2681,2743,2873,3000,[3000,10212],[2936,10213],[2808,10214],[2745,10215],3001,[2873,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2707,741],[2771,678],[2771,558],2642,[2927,3223],2927,[2926,3092],[2798,3286],[2862,3287],2798,[2926,3218],2708,[3156,877],[3155,2881,806],[2772,2882,806,367],368,[3156,2884,806,370],[3221,2882,876],[2772,2883],[2706,2884],[2706,2885],[2798,3223],2798,2798,[2862,3091],3157,3221,2770,2644,[2862,3286],[2926,3287],2926,2927,[2863,3218],3155,3219,2708,2707,[2927,3031],2798,2798,[2926,3027],3158,2706,[2927,3031],2927,2927,[2798,3218],3157,2642,3158,[2926,3093],2798,[2798,3090],2643,3156,2771,[2926,2963],[2798,2963],[2926,2967],2927,2926,[2798,3282],2770,3158,2706,3221,3155,[2798,3029],[2926,3092],3156,2708,3155,3155,[2927,3223],2926,2798,[2798,3092],2708,2773,2772,2706,2642,[2926,3030],[2798,3091],[2862,3223],2927,2926,[2927,3218],3219,2706,2643,2771,3221,2771,2773,[3157,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8736,8737,8738,8640,[4025,8544],[4025,8448],3512,3577,4025,3961,3447,3511,3448,3574,4024,4025,3447,3447,3511,4023,3447,3512,[4023,9628],[3188,9721],[3249,9722,5677],[3250,5678],[3188,5679],[3251,5680],[3188,5681],3251,3186,3187,3187,3185,3185,3251,3187,3188,[3250,9823],[3188,9919],10015,[3249,10111],[3187,10203],[3250,10204],[3188,10205],[3249,10206],3186,3185,3188,3185,3185,3188,3185,3252,3187,3251,3249,3250,3252,3187,3185,[2931,3124],2930,[2930,1762],[2802,3248,1763],3249,3249,3185,3185,3185,3185,3249,[2803,2993],3185,3185,3185,3250,3187,3187,3185,3250,3251,3249,3187,3187,3187,3252,3186,3186,3250,3249,[2930,3124],2867,[2931,3248],3187,3249,3187,3252,3188,3185,3252,3250,3186,3185,3251,3252,3185,3251,[3251,10106],[3249,9721],[3251,9722],3250,[3249,5494],[2928,3061,5495],5496,5497,[3188,5498],[3185,5499],3186,[3188,5586],[3249,5587],[3251,5588],3186,[2928,2993],[2928,2994],[2928,2996],[3185,5682],[3187,5683],[3249,5684],3251,[2928,3313],[3185,5773],[3252,5774],[2928,3253,5775],[2928,5776],[2928,3058,5777],[2928,2994],[2928,2996],3188,[3251,9562],[3926,9563],3926,3989,3989,3540,[3208,3735],3145,[3146,3859],3925,3925,3923,3924,3412,3540,3926,3926,3989,3540,[3145,3927],3146,[3209,3922],3924,3987,3987,3926,3923,3989,3926,[3210,3861],3146,3209,3210,3146,[3208,3795],3926,3925,3926,3924,3926,3926,3923,3925,3924,3923,[3145,3927],3145,[3143,3794,9655],[3987,9652],[3924,9653],3989,3924,3926,[3208,3799],3209,3208,3146,[3210,3859],3926,3989,3989,3923,3924,3925,3923,3924,3923,3925,3924,3923,3925,3925,[3145,3991],3144,3208,3209,3208,[3145,9754],[3208,9755],[2562,9560],2820,2820,2501,2501,2498,2499,2500,2499,2498,2499,2499,2499,2500,2498,2820,2565,2499,2820,2821,2500,2501,2564,2563,2500,2562,2500,2498,2565,2498,2499,2820,2500,2501,2562,2820,2500,2498,2565,2820,[2563,9461],[2563,9466],2498,2563,2500,2498,2564,2757,2563,2498,2564,2501,2564,2629,2499,2562,2565,2564,2562,2501,2820,2500,2501,2565,2499,2564,2565,2499,2498,2563,[2498,9847],[2499,10036],[10037,9559],[4004,9652],[4006,9653],4005,3942,[3239,3816],[3175,4068],4005,4007,4006,[3240,4069],[3240,4073],[3238,4004],3429,3428,4006,[3239,4073],[3174,9751],9940,[3412,9941],[3987,9845],3412,3989,3924,3926,3987,3476,3476,3989,3987,3923,3475,3926,3412,3989,3539,3989,3476,3413,3926,3923,3410,3987,3539,3540,3923,3410,3540,3925,3476,3987,3925,3926,3410,3989,3924,3413,3475,3923,3474,3925,3987,3475,3989,3989,3925,3987,3926,3925,3924,3989,3925,3412,3924,3989,[3539,9646],[3231,9739],[3231,3236,9740],[3240,3813],[3240,3749],3941,3556,[3174,4009],[3234,3111],3234,3232,[3232,9553],9554,9357,9360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2678,10120,9638],2679,2679,[3000,10115],[2681,10116],[3001,10117],[2872,10120],[3000,10214],[3001,10215],2745,2679,2678,3001,[2681,10212],[2681,10213],2679,2679,2678,3000,2873,3001,[3000,10115],[2680,10116],[2745,10117],10019,[2742,9923],[3000,9924],[2681,9925],[3001,9928],10024,[2679,10118],[3000,10119],10019,[2872,9923],[2742,9924],[2679,9925],[3001,9926],[3001,9927],[3000,9827],3000,2872,3001,2873,3000,2679,[3001,9832],[2681,9926],[3000,9927],[2872,9928],9929,[2873,9734],2744,2742,2678,3000,3001,2743,3001,[2680,9733],9922,[2872,9923],[2678,9827],2809,2745,2808,2743,2744,2808,2743,2745,2743,2742,2743,2679,3000,2745,2679,3001,2872,2809,2681,2681,[2681,9832],[2681,9928],10020,10021,10024,[3001,10120],[2745,10214],[2743,10215],2679,2808,2681,2873,2679,2679,2809,2744,2743,2745,[2680,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2770,741],[3156,678],[2708,558],[2927,2963],[2926,3030],2927,2863,[2798,3027],2707,3155,3219,[2707,2945],2946,2947,2948,3075,3011,2948,[3157,2949],2706,[2798,3030],2798,2863,[2926,3282],[2798,3283],[2927,3284],[2798,3093],2798,2926,2926,[2798,3028],3221,2771,3158,2706,3156,[2927,3095],2926,[2862,2962],3157,2771,2772,[2798,3095],2926,2927,[2926,3091],[2798,3285],[2798,3286],[2798,3093],2927,2926,[2926,3154],2706,3155,3221,2772,3156,2706,[2798,3030],2927,2798,[2926,3026],2643,2706,3155,2706,2771,[2926,3029],[2926,3026],3156,3155,3221,2708,[2862,2963],[2863,3029],2927,[2798,3218],2707,3219,3155,[2926,3286],[2798,3287],[2798,3027],2707,[2927,3030],[2927,3028],2644,3157,2771,2708,3219,3158,3156,3219,[3157,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8833,8834,8736,[8640,8162],[4025,8255],[3960,8256],3574,3577,3578,3577,3446,3961,3447,3578,3577,3512,3575,3512,3447,3578,3511,[3511,9628],[3186,9817],[3186,9818,5773],[3186,5774],[3188,5775],[3186,5776],[3252,5777],3251,3250,3187,3185,3185,3186,3185,3252,[3186,9631],[3252,9632],10015,[3187,10111],3187,3252,3252,3252,3186,3185,3188,3252,3250,3187,3251,3252,3185,3186,3252,3252,3250,[3187,1821],1822,1823,1824,1825,1826,[2931,3248,1827],3252,3187,3252,3250,3188,3187,3252,3249,3249,3252,3185,3186,3188,3250,3188,3250,3188,3188,3186,3252,3251,3187,3186,3187,3186,[2931,3253],2931,[2930,3057],3252,3250,3188,3186,3252,3249,3249,3252,3186,3188,3188,3250,3250,3188,3185,[3252,9434],[3186,9530],3251,3250,[3250,5590],[2928,3125,5591],5592,5593,[3186,5594],[3250,5595],3250,[3251,5682],[3185,5683],[3185,5684],3250,3252,3185,3185,[3252,5778],[3188,5779],[3186,5780],[2928,3317],2928,[2928,3056,5869],[3249,5870],[3250,5871],[2928,2993,5872],[3185,5873],3187,3188,3250,3185,[3186,9562],[3926,9563],3989,3989,3923,3412,[3210,3798],3145,[3209,3794],3989,3926,3923,3926,3925,3924,3925,3987,3925,[3146,4055],3207,[3210,3986],3923,3989,3924,3924,[3209,4053],[3208,4054],[3209,3861],3145,3145,[3210,3796],[3145,3732],[3210,3734],3987,3923,3989,3989,3925,3926,3923,3926,3923,3989,3477,[3209,4055],3210,[3210,3858,9751],[3987,9748],[3987,9749],3989,3924,3926,[3144,3927],3210,3143,3209,[3208,3796],3539,3924,3989,3926,3989,3926,3924,3925,3925,3923,3987,3925,3924,3989,3923,[3209,3798],3209,3210,3208,[3146,9850],[3210,9851],[2563,9656],2820,2565,2565,2564,2565,2565,2501,2498,2500,2565,2820,2500,2498,2501,2563,2564,2500,2499,2820,2500,2563,2563,2565,2563,2498,2501,2564,2501,2501,2565,2499,2500,2565,2563,2562,2499,2500,2499,[2501,9556],[2499,9557],[2501,9562],[2563,9466],[2564,9366],[2563,9369],2565,2500,2562,2498,2820,2500,2500,2499,2564,2501,2501,2564,2499,2564,2498,2820,2820,2565,2565,2498,2498,2499,2499,2498,2498,2820,2501,[2820,10133,9655],[4004,9748],[3942,9749],3941,3943,[3239,4009],3174,[3240,4004],3556,[3239,4009],3174,3174,[3240,4004],3558,3944,3942,[3238,3815],[3174,9847],[3176,10036],[10037,9559],[3926,9652],[3987,9653],3411,3987,3989,3474,3989,3475,3411,3923,3410,3540,3923,3412,3413,3926,3540,3413,3926,3989,3539,3924,3925,3923,3540,3477,3987,3925,3926,3477,3924,3539,3923,3923,3410,3410,3923,3989,3926,3539,3538,3925,3923,3923,3542,3925,3924,3538,3926,3413,3989,3542,3926,3474,3925,[3542,9452],[3231,9548],[3170,3109],[3240,4004],3492,3558,4006,[3168,3049,4073],3232,3169,3233,3170,[3169,3046,9553],[3239,9453],[3240,9456],9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2872,9545],2742,2681,2873,[2681,10212],[2745,10213],2679,2936,2681,2679,3001,2808,3000,2936,2745,2743,2809,2936,2936,2743,2681,2679,[2873,10212],[3000,10213],[2744,10115],10019,10020,10021,10024,[2873,10120],[2873,10214],[3000,10215],[2873,10115],10019,10020,10021,10022,10023,[2745,9923],[2936,9827],2809,2742,[2678,9832],[2745,9926],[2745,9927],[3001,9928],10022,10023,10024,[2678,10025],[2937,9830],2679,2872,3000,2936,2872,3001,2936,[2936,9829],[2681,10018],10019,[2743,9923],[3000,9827],3001,2743,2936,3001,2743,2872,2681,2872,[2679,9832],[2873,9926],[2681,9927],[3001,9827],2679,3000,[3000,9832],[2679,9924],[2679,9925],[3001,9926],[2936,9927],[2681,9928],10024,[2681,10116],[2678,10117],[3001,10120],2936,2873,2743,2679,3000,2745,2681,2936,2873,2680,2872,2872,2745,[3000,9538],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3158,613],3221,[2798,3287],[2927,2962],[2798,2963],3155,2706,2707,[2706,3008],[3157,3009,6069],[3010,6070],[3011,6071],[3012,6072],[3076,6073],3011,3010,[2772,3013],2706,3221,[2798,2963],[2927,3029],2798,2798,2926,[2798,2962],[2798,3029],[2798,3027],[2927,2963],3221,2770,2707,2771,3221,3155,[2926,3159],2926,[2926,3091],[2927,3285],[2927,3286],2708,[2926,3159],2926,2798,2798,2798,[2927,3027],[2798,2963],[2798,3029],[2798,3028],3156,3219,2770,3157,3158,3157,3221,2708,[2926,3029,4347],[2798,4348],[2927,3154,4349],3221,2706,3158,2643,3155,[2863,3031],[2926,3090],3157,3155,3155,2772,3155,[2863,3093],2798,[2927,3091],2706,2706,[2927,3094],[2927,3028],[2862,2963],3221,2642,2771,2707,3219,2642,3221,3157,2707,3156,2770,3155,2772,[3155,550],[2707,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[8736,8354],[3959,8351],[4025,8352],3960,3574,3960,4026,4025,3446,4024,3446,3446,3511,4025,4025,3510,3959,4024,[3578,9724],9913,[3188,9625,5869],[3185,9626,5870],[3251,5871],[3186,5872],[3185,5873],3251,3186,[3250,5485],[3186,5486],[3185,5487],[3188,5488],[3251,5489],3252,[3252,9727],[3249,9728],[3188,10111,9533],3250,3188,3188,3249,3188,3187,3187,3252,3185,3188,3249,3250,[2931,3313],[2931,3314],[2931,3315],[2803,3316],[2931,3313],[2930,3314],[2802,3315,1885],1886,1887,1888,1889,1890,[3187,1891],3186,3187,3252,3249,3185,3187,3252,3188,3250,3250,3250,3250,3186,3185,3187,3251,3185,3185,3252,3251,3252,3252,3252,[2930,3313],[2930,3314],[2802,3124],2931,[2931,3248],3251,3250,3188,3249,3251,3187,3188,3250,3185,3185,3187,3187,3187,3188,[3251,9529],[3187,9530],3185,3188,3249,[3252,5686],[2928,3189,5687],5688,5689,[3252,5690],[3188,5691],3188,[3185,5778],[3187,5779],[3250,5780],3187,3186,3252,3249,3186,3187,[2928,3123],2928,2928,[2928,3184],[3185,5966],[3186,5967],[3187,5968],3188,3251,3186,3252,3186,[3187,9658],[3249,9659],[3925,9560],3926,3926,3923,[3144,3799],3146,[3145,3858],3989,3989,3926,3925,3923,3987,3412,3924,[3210,3862],3209,[3144,3730],3924,3925,3411,3926,[3143,3991],3209,3210,3210,[3145,3795],[3210,3731],3412,3476,3987,3987,3989,3925,3923,3476,3987,3926,3925,3989,3923,[3207,3799],3145,3207,[3209,3922,9556],[3926,9557],3538,3989,3987,3923,3924,[3146,3735],3146,[3143,3730],3474,3987,3926,3925,3924,3923,3925,3925,3987,3924,3476,3924,3474,3987,3540,3924,[3210,3799],3210,3208,[3145,9658],[3146,9659],[9947,9560],[4864,9752],4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,[4864,9559],[2500,9652],[2499,9653],2564,[2564,9562],[2501,9462],[2498,9465],[2501,9466],[2820,9366],[2565,9369],2565,2501,2501,2820,2501,2562,2564,2501,2499,2629,2563,2500,2820,2820,2501,2498,2500,2820,2629,2498,2564,2565,2565,2562,[2565,9556],[3941,9557],3558,4006,[3239,4069],[3238,3879],3174,[3240,4004],4007,3942,[3240,3816],3175,[3239,4068],4005,4006,[3174,4072],[3240,3880],3175,3176,[3238,10133,9655],[3924,9748],[3538,9749],3923,3923,3989,3926,3477,3923,3924,3540,3477,3925,3926,3926,3477,3923,3987,3925,3926,3987,3474,3926,3923,3474,3926,3926,3987,3989,3538,3542,3987,3989,3924,3923,3476,3923,3987,3474,3926,3475,3923,3924,3987,3539,3926,3987,3923,3925,3412,3923,3926,3538,3923,3923,[3923,9547],[3233,9548],3169,3170,[3232,3044,4068],[3174,4071],4005,[3238,4009],[3167,3113],3231,3232,3231,[3231,2980],3175,3238,3239,[3175,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2680,9542],2936,2681,2680,2680,2873,2872,2678,2936,2745,2679,2681,2680,2743,3000,2745,2681,2679,2808,2679,2679,2745,3000,2681,[2873,10115],[2936,10116],[3000,10117],[2678,10120],2678,3000,2872,2872,[3001,10115],[2744,10116],[2872,10117],[2681,10118],[3001,10119],10019,[3000,9923],[2937,9924],[2936,9925],[2680,9928],10022,10023,10024,[2679,10118],[2743,10119],[2744,10120],2679,3000,3001,3001,3000,3000,2681,3001,2744,2936,3000,[3000,10115],10019,[2679,9923],[2745,9924],[2743,9925],[3000,9926],[2681,9927],[2936,9924],[2681,9925],[2872,9926],[2679,9927],[2743,9928],10022,10023,[2936,9923],[2872,9924],[2743,9925],[2681,9928],10020,10021,10022,10023,10024,[2937,10120],[2745,10212],[2743,10213],2872,2872,2873,2872,2681,2872,2937,2681,2679,2745,2743,2873,2808,[3000,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],[3157,551],415,[2771,549],2770,[2926,3031],2927,[2798,3092],3219,3155,2770,3158,[2772,2945],[2946,6165],[3074,6166],[3075,6167],[3076,6168],[3012,6169],3012,3010,[2707,3077],2706,2771,3158,3158,[2927,2967],2926,2926,[2862,3026],3221,3221,3155,2834,2835,3157,2770,[2798,3285],[2798,3286],[2926,3287],2926,2863,2862,2798,[2863,3282],[2926,3093],2927,[2926,3027],[2798,2963],[2926,2966],[3158,557],[3158,614],[3221,683],[3219,684],3157,3155,2771,3221,3221,2771,3219,3157,3219,[2926,2963],3156,3155,[2798,3093],[2798,3092],2706,2771,[2798,3159],[2862,3154],2771,[2926,3285],[2798,3286],[2926,3286],[2926,3094],2863,2926,[2798,3028],[2706,3819],[2771,3758],[2927,2963,3822],3157,3221,2708,2771,3219,3157,3221,3157,2706,2770,2772,3219,2708,3221,2770,2643,[2772,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8159,[4024,8160],3576,3577,3577,4024,3961,3575,4026,3448,3447,3447,3578,3577,3576,3448,3448,4024,[3576,9820],[4025,10009],[3251,9721],[3251,9722,5966],[3252,5967],[3251,5968],3250,3250,3188,[3252,5581],[3186,5582],[3188,5583],[3251,5584],[3252,5585],3252,[3187,9823],[3249,9824],[3187,9629],3185,3251,3252,3249,3249,3188,3188,3186,3250,3250,3186,[2931,3317],2930,2931,2931,2931,2866,2803,[2866,1949],1950,1951,1952,1953,1954,[3252,1955],3187,3249,3185,3188,3185,3185,3251,3252,3251,3252,3187,3250,3186,3249,3188,3250,3188,3251,3252,3250,3186,3187,[2931,3253],2931,2931,[2931,2992],[2930,2993],3252,3252,3249,3185,3252,3186,3188,3252,3251,3249,3185,3251,3187,3251,[3187,9434],[3186,9530],3187,3250,3188,3249,[3186,5782],[3187,5783],5784,5785,[2928,3248,5786],[3251,5787],3186,3250,3250,3188,3185,3187,3252,3250,3249,[2928,3253],2928,2928,[2928,2992],3250,3249,3251,3185,3251,3185,3249,3252,3187,[3186,9754],[3250,9755],[3989,9656],3924,3923,3987,[3208,3863],3210,[3146,3922],3925,3987,3923,3925,3925,3540,3989,[3145,3991],3146,3146,[3208,3986],3923,3989,3925,3989,[3209,3991],3146,[3145,3730],[3145,3731],3989,3925,3987,3474,3924,3925,3923,3987,3923,3924,3925,3926,3987,3926,3474,[3208,3927],3143,[3208,3730,9559],[3923,9652],[3987,9653],3475,3924,3474,3474,3926,3924,[3207,3798],[3210,4050],3924,3987,3926,3924,3923,3989,3989,3924,3924,3924,3923,3924,3925,3989,3476,3925,[3207,3863],3210,3209,[3209,9754],[3209,9755],[4960,10043,9656],[4960,9848],4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,[4960,9655],[2499,9748],[2564,9749],2501,2565,2565,2501,[2500,9562],[2500,9462],[2564,9465],[2499,9466],2564,2562,2820,2500,2565,2501,2498,2820,2564,2563,2564,2564,2500,2565,2499,2499,2820,2501,2563,2564,2563,2500,[2565,9556],[3175,3878,9557],4005,4008,[3176,4009],3174,[3239,3813],[3174,3749],3941,4006,4005,3942,[3238,3816],[3176,3748],3941,[3174,4009],3240,3238,3175,3240,[3176,9655],[3923,9652],[3923,9653],3924,3923,3987,3987,3410,3411,3477,3989,3924,3411,3987,3924,3538,3476,3474,3926,3410,3989,3541,3924,3926,3926,3923,3411,[3923,9357],[3989,9360],3923,3923,3989,3541,3474,3924,3538,3923,3923,3923,3989,3474,3477,3924,3412,3924,3413,3538,[3925,9357],[3925,9360],3924,3924,3989,3926,3987,[3987,9550],[3231,2981,9643],[3167,3047,9644],3168,3169,[3170,3172],3175,[3174,4004],[3238,3817],[3231,3177],3167,[3232,3045],[3168,2981],[3239,3814],[3238,3816],3174,3174,[3238,9649],[3237,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2679,9734,9348],[2681,9349],[2873,9350],[2872,9351],2681,2872,3001,2936,2873,2873,2873,2873,3000,2936,3000,3000,2872,2679,2936,2743,2872,2872,2679,2679,2681,[2936,10212],[2679,10213],2745,3000,3000,3001,2679,2872,[3001,10212],[2745,10213],[2808,10214],[2873,10215],[3001,10115],10019,10020,10021,10024,[3000,10118],[2745,10119],[2679,10120],[3000,10214],[2744,10215],2873,2743,3001,[2744,1399],2872,[2681,1401],3001,2936,2872,2745,2936,3001,2936,[2745,10115],10019,10020,10021,10022,10023,10020,10021,10022,10023,10024,[2936,10118],[2873,10119],10019,10020,10021,10024,[3000,10116],[2742,10117],[2679,10118],[2936,10119],[2872,10120],2743,2872,2936,2745,2681,2679,2743,3000,2808,2744,3001,2873,2872,2872,2745,2873,[2681,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,613],2771,[3219,550],3158,3157,[2926,3159],2927,[2926,3027],2770,3158,3221,[3156,2945],3011,[3012,6261],[3074,6262],[3076,6263],[2946,6264],[2948,6265],2947,[3221,3140],[2706,3141],2706,3155,2771,3221,3158,[2927,3030],2798,[2798,3090],3158,3221,3221,2898,2899,3219,[2926,3093],2927,2927,2926,[2926,3027],[2927,2963],[2798,3030],2863,2862,2798,2926,[2863,3218],3157,3221,[3221,615],415,415,[3157,741],[3158,742],[3158,745],[2771,746],[3221,747],[3219,748],[3158,749],[3158,745],[3157,746],[2644,747],[3156,748],[3156,749],[2798,3223,558],2926,2927,[2926,3282],[2863,3285],[2926,3094],[2798,3282],[2927,3093],2798,2926,[2927,3028],[2926,3029],2927,[2927,3027],[2770,3819],4012,4014,[3155,4015],2770,2771,2772,3155,2707,2773,2708,3221,2708,2772,2706,3219,2771,2772,2706,3157,[2771,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8159,[4025,8160],3447,3448,3577,3575,3448,3577,3578,3577,3449,3512,4024,3512,3575,4025,3447,3577,4025,[3446,9433],[3512,9434],[3185,9530],3250,3185,3188,3251,3250,3185,[3187,5677],[3250,5678],[3250,5679],[3187,5680],[3186,5681],[3249,9823],[3187,9919],9920,[3186,9725],3249,3188,3187,3185,3185,3188,3186,3249,3249,3186,[2930,3123],2802,[2930,2992],[2931,2993],[2931,2994],[2866,2995],[2931,2996],[2802,2993],[2802,2994,2013],2014,2015,2016,2017,2018,[3250,2019],3251,3185,3188,3252,3249,3188,3250,3249,3251,3251,3187,3187,3251,3186,3251,3187,3250,3188,3249,3187,3251,3186,[2931,3124],2802,2802,[2802,3248],3188,3188,3252,3187,3251,3187,3251,3188,3249,3249,3187,3186,3186,3185,[3188,9529],[3188,9530],3250,3252,3249,3249,3251,[3187,5878],[3250,5879],[2928,3061,5880],[2928,5881],[2928,3312,5882],[2928,3315,5883],[2928,3316],3187,3187,3187,3187,3252,3186,3186,3188,[2928,3124],2928,[2928,3057],3250,3187,3251,3188,3185,[3251,5490],[3187,5491],[3188,5492],3249,3185,[3251,9658],[3187,9659],[3925,9656],3925,3989,3923,[3146,3927],3145,[3143,4050],3925,3923,3924,3540,3987,3923,3987,[3209,3991],3209,[3209,3795],3925,3987,3924,3926,3926,[3209,3861],3146,[3144,3986],3926,3538,3987,3924,3987,3923,3987,3987,3987,3924,3925,3923,3924,3474,3924,[3146,4054],[3210,4055],3146,[3146,3986,9655],[3926,9748],[3926,9749],3923,3924,3989,3923,3989,3989,[3209,3862],3208,[3146,3986],3925,3987,3987,3926,3923,3474,3925,3987,3925,3989,3925,3925,3924,3925,3987,[3145,3927],3145,3209,[3208,9850],[3209,9851],[409,9656],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9655],[2562,9652],[2498,9653],2562,2500,2565,2501,2564,2501,2498,[2564,9562],[2565,9563],2499,2563,2563,2820,2500,2563,2501,2501,2820,2500,2500,2500,2564,2565,2820,2501,2498,2499,2565,2500,[2562,9559],[3176,9652],[3176,9653],[3240,3877],4005,3942,[3174,3749],3941,4006,[3174,4070],[3174,3879],[3240,3877],4005,3942,3941,4006,[3239,3880],3176,[3238,3814],[3175,3749],[3175,3753],[3239,9655],[3926,9748],[3923,9749],3925,3923,3926,3926,3411,3925,3926,3924,3475,3923,3925,3413,3474,3477,3539,3925,3987,3987,3926,3925,3541,[3539,9357],[3923,9360],[3989,9452],[3176,9453],[3175,9456],[3989,9457],3924,3926,3987,3987,3474,3989,[3474,9357],[3987,9360],3987,3989,3926,3925,3410,3539,[3474,9357],[3923,9360],[3542,9452],[3238,9453],[3174,9456],[3989,9457],3925,3538,3539,3924,[3411,9452],[3176,9548],3238,[3232,2982],[3169,2984],[3175,3814],[3176,3749],3941,[3238,3881],3238,[3234,2981],3174,3174,[3240,4004],3942,[3175,3749],[3174,3815],[3174,9745],[3239,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,9444,9445,9446,9447,[2873,9448],3001,2680,2679,2678,2936,2744,2872,2743,3000,2743,2742,2745,3000,2681,2680,2743,2808,2681,2743,2743,2936,2680,2742,2681,2745,2744,2872,2936,2679,3001,2873,2936,2808,[3000,10115],[2679,10116],[3000,10117],[2873,10120],[2681,10214],[3000,10215],2743,2936,3001,2745,3001,[2679,1462],[2678,1463],[3000,1464],[3000,1465],[2873,1466],3000,2873,2679,2872,2743,2679,2745,[2745,10115],[2872,10116],[2679,10117],[3001,10118],[2873,10119],[2680,10116],[2745,10117],[2681,10118],[3000,10119],[2936,10120],[2808,10214],[3000,10215],[3001,10115],[2873,10116],[2745,10117],[3000,10120],[3000,10212],[2872,10213],[2936,10214],[2743,10215],2679,2936,2872,2743,2679,2745,2873,2936,2681,2679,2743,3000,2743,2681,2742,2679,2678,[2743,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2771,549],[2926,3284],3155,2772,2707,[2926,3286],[2926,3287],2927,[2927,3218],2772,3155,[3156,3008],[3158,3009],3075,[3074,6357],[3075,6358],[3011,6359],[3011,6360],[2946,6361],2946,[3221,3013],2772,[2862,3285],2707,2707,3155,3219,[2798,3094],2926,[2927,3154],2770,2770,3156,3155,2770,[2926,3287],[2798,3027],[2926,2964],[2863,2965],[2798,2966],3221,3221,2773,[2927,2963],[2798,2964],[2798,2965],[2798,2966],[3155,557],[2708,742],[3219,749],[3156,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2771,677],[2927,2963],[2926,3029],2926,2863,2926,2926,[2927,3027],[2927,2964],[2798,2966],3157,[2926,3223],2926,[2926,3026],[3158,3818],3950,4012,3950,[3219,3822],3221,3155,3219,2706,2644,3157,3158,2772,2708,3219,3221,3157,3157,2770,[3158,557],[2771,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8162],[3962,8255],[3959,8256],4024,3446,4025,3447,3577,3447,4024,3574,4024,4026,3448,3447,3578,4023,3574,3447,4025,[3511,9529],[3249,9530],3188,3250,3187,3251,3187,3252,3188,[3185,5773],[3186,5774],[3185,5775],[3249,5776],[3252,9631,5777],[3188,9632],[10015,9533],[3187,10016],[3188,9821],3249,3252,3186,3252,3188,3187,3186,3250,3251,[2930,3253],2930,2930,[2802,3056],3187,3251,3188,3252,3252,[3187,2077],2078,2079,2080,2081,2082,[3250,2083],3187,3186,3250,3252,3250,3188,3251,3187,3187,3188,3251,3186,3187,3188,3186,3250,3252,3188,[2931,3314],[2930,3315],[2802,3316],[2866,3123],2802,2931,[2931,3057],3249,3252,3251,3252,3249,3252,3186,3251,3187,3251,3252,3252,3252,3185,[3249,9532],[3252,9625],[3188,9626],3249,3186,[3250,5490],[3251,5491],[3251,5492],3186,[3251,5975],[2928,3189,5976],[2928,5977],[2928,5978],2928,2928,[2928,3056],3188,3251,3250,3187,3249,3249,[2928,3253],2928,2928,[2928,3248],3187,3186,3250,3250,3188,[3186,5586],[3188,5587],[3186,5588],3252,3187,[3251,9850],[3187,9851],[3923,9656],3925,3987,3923,[3208,3991],3146,3208,[3208,3859],[3208,4051],[3210,4052],[3145,4053],[3207,4054],[3146,4052],[3207,4053],[3145,3862],3145,[3145,3986],3989,3475,3987,3923,[3145,3799],3208,[3146,3795],3987,3987,3538,3923,3606,3607,3923,3923,3924,3925,3926,3540,3923,3411,3476,[3146,3862],3146,3145,[3210,9460],[3145,4050,9461],[3924,9557],3926,3926,3987,3539,3989,3926,[3208,4055],3208,3207,[3143,3859],[3208,4052],[3146,4053],[3145,4054],3989,3987,3989,3924,3604,3605,3411,3925,3926,3925,3926,3925,3989,[3208,3798],[3145,9850],[3209,9946],9947,[409,9752],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9366],[409,9368],[409,9369],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9751],[2499,9652],[2565,9653],2562,2498,2628,2629,2565,2498,2500,[2499,9658],[2821,9659],[4864,9560],4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,4864,[4864,9655],[3176,9748],[3238,9749],3240,[3176,4004],3428,3428,4006,[3240,3879],3176,3174,3175,[3238,4068],4005,3558,[3238,4009],3240,[3238,3813],3941,4008,3174,[3173,9655],[3412,9844],[3474,9845],3923,3987,3924,3924,3477,3924,3923,3989,3923,3925,3410,3924,3410,3987,3989,3539,3924,3925,3923,3924,[3924,9452],[3238,9453],[3176,9456],[3239,9548],3238,3176,[3174,9553],[3542,9554],3989,3923,3989,3989,[3925,9452],[3239,9453],[3176,9456],[3923,9457],3923,3987,3477,3924,[3925,9452],[3239,9453],[3175,9456],[3240,9548],3238,3175,[3239,9553],[3989,9554],[3924,9357],[3987,9360],[3923,9547],[3238,9548],3238,3238,3238,[3174,3748],3941,3944,3431,[3175,3945],3175,[3176,3748],[3240,3749],[3175,3753],[3240,4004],3494,4006,[3240,3879],[3239,9649],[3237,9650],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2745,9542],2936,[2681,4441],2873,3000,2743,2681,2678,2745,2679,2745,3001,2678,2873,2936,2872,3001,2743,2743,2745,3000,3001,2872,2745,2872,2936,2873,2743,3000,2745,2873,3000,2744,3000,[2936,10212],[2745,10213],2872,2681,2743,2680,2681,2743,2808,2808,[2743,1526],[2872,1527],[3001,1528],[2744,1529],[2936,1530],[3000,1531],[2681,1532],2743,2679,3001,2679,2742,2936,[2679,10212],[2744,10213],[2745,10214],[2680,10215],[3000,10212],[2936,10213],[2745,10214],[2808,10215],2872,2680,3001,2873,[3000,10212],[2936,10213],2873,2679,2744,2745,3001,2873,2681,2873,2873,2745,2936,2681,2808,2679,2678,2745,3000,3000,3001,3000,2743,2745,[2743,9733],9922,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2772,549],[2708,550],[3221,550],[2798,3223],2927,[2927,3091],[2926,3285],[2862,3093],2927,2927,2798,[2927,3282],2771,3157,[2772,3072],[2706,3073],2948,[3012,6453],[3075,6454],[2947,6455],[3012,6456],[2946,6457],3010,[2708,3077],[2926,3223],2798,[2926,3091],[2798,3285],[2862,3286],[2926,3093],2863,2863,[2798,3282],[2927,3283],2708,2773,3219,[2927,3093],2927,[2798,3026],2770,3158,3219,2772,3219,3156,2770,2773,[2708,557],[2772,614],[3219,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,613],3155,2707,[2798,2963],[2926,2964],[2927,2966],[2927,2963],2643,3221,2706,3156,[2798,3093],2926,[2798,3090],[3155,3882],4011,3949,4014,3948,[3221,3755],[3221,3759],2707,2707,2708,2772,2643,3156,3158,2771,3219,2706,3221,3221,[3219,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[4025,8351],[4024,8352],4024,3578,4026,3448,3577,3510,4023,3447,4024,3447,3446,3578,4026,3962,3574,3446,[3576,9532,9532],[3250,9625],[3185,9626],3252,3187,3251,3187,3187,3188,3185,[3186,5869],[3249,5870],[3250,5871],[3187,5872],[3251,9727,5873],[3187,9728],[3250,10111,9629],3186,3186,3252,3185,3188,3249,3252,3186,3251,3252,3187,[2931,3317],2930,2803,[2930,3184],3252,[2802,3314],[2803,3315],[2931,3316],3187,[3251,2141],2142,2143,2144,2145,2146,[3186,2147],3186,3252,3251,3252,3249,3188,3185,3188,3188,3187,3251,3251,3186,3186,3186,3250,3187,[2802,3253],2803,2931,2931,2802,2930,2931,[2803,3312],[2802,3313],3186,3187,3185,3249,3252,3186,3185,3251,3252,3187,3186,3252,3187,[3252,9724],[3187,9721],[3185,9722],3252,3188,[3249,5586],[3186,5587],[3187,5588],3252,3252,3250,[2928,2994],[2928,2995],[2928,3060],2928,[2928,3184],3251,3186,[3186,5485],[3188,5486],[2928,3315,5487],[2928,3316,5488],[2928,3317,5489],2928,[2928,3058],3252,3252,3185,3185,3188,3188,[3249,5682],[3186,5683],[3250,5684],3252,[3251,9850],[3251,9946],9947,[3539,9752],3989,3923,3923,3923,[3210,3731],[3144,3797],3144,3208,3145,3144,3208,3146,3210,3145,[3208,3795],3923,3925,3923,3475,3923,[3209,3927],3145,[3210,3794],3923,3925,3923,3410,3670,3671,3989,3924,3923,3925,3987,3410,3923,3925,[3145,3991],3145,[3210,9366],[3210,9369],[3210,9556],[3146,9557],[3144,3859],3924,3923,3987,3926,[3207,4051],[3209,3861],3208,3145,3210,3209,3145,3208,3145,[3210,4050],[3210,4052],3924,3926,3668,3669,3924,3410,3989,3926,3925,3923,3923,[3209,3991,9658],[3207,9659],[10042,9560],[409,10043],[409,9848],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9366],[409,9369],[409,9461],[2565,9462],[2499,9464],[2563,9465],[409,9466],409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9366],[409,9369],[409,9556],[2562,9557],2563,2500,2562,2692,2693,2499,2501,2562,[2562,9754],[2501,9755],[4960,9656],4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,4960,[4960,9461],[3238,9557],3239,[3174,3813],3941,4006,[3176,4071],[3176,3879],3240,3176,3239,3175,3238,[3239,4004],3943,3942,[3240,3749],3941,4006,[3175,4072],3173,[3239,9751],9940,[3411,9941],[3541,9845],3476,3475,3924,3926,3987,3925,3923,3925,3925,3923,3475,3923,3925,3475,3987,3540,3413,3923,[3924,9550],[3240,9643],[3240,9644],3238,3176,3174,3175,3239,[3174,9553],[3989,9554],[3926,9357],[3925,9360],[3925,3813,9547],[3240,3749,9548],[3176,3816],3238,[3240,9553],[3924,9554],[3989,9357],[3926,9360],[3926,9547],[3239,9548],3175,3176,3238,3238,3240,3238,[3176,9553],[3175,9453],[3174,9456],[3174,9548],3238,3238,3174,3238,[3176,4004],4006,[3239,4069],4005,[3176,4009],3175,[3175,4004],3492,3942,3941,4006,[3176,4073],3240,[3167,3302,9745],[3170,3305,9746],9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2743,9638],[2680,4536],[2936,4537],[3000,4538],2872,2681,3000,2936,3000,2679,3000,2681,2679,2745,2742,2936,2681,2936,2678,2936,3000,[2681,9832],[2873,9926],[2873,9927],[2936,9827],2936,2743,2873,2745,2679,2873,3000,3000,2743,3001,2679,2681,2679,3001,2681,2679,2936,2936,2743,[2936,1590],[2745,1591],[2936,1592],[2872,1593],[2873,1594],1595,[2745,1596],2743,2936,3000,2679,3001,3001,3001,2872,2681,2680,2872,2936,2937,2679,2937,2681,2873,2743,2745,2937,3001,2680,2936,2873,2745,2678,2872,3000,2936,2745,2872,2873,2936,3000,3000,2873,2872,3001,2873,2873,2872,3000,[2681,9829],[2872,10018],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,613],3158,2708,3155,[2927,2963],[2927,3029],2863,[2798,3028],[2798,2964],[2926,2966],[2798,3030],2926,[2798,3026],2642,3158,[2643,3137],3138,[3139,6549],[3138,6550],[3139,6551],[3138,6552],[3139,6553],[3156,3140],[2772,3141],[2863,3223],2926,2927,2926,2798,2927,[2862,3028],[2798,3029],2927,2926,[2862,3092],[2926,3286],[2927,3287],2926,2926,[2798,3154],2706,2706,3158,2643,2707,3156,3158,2706,[3219,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2644,677],3221,2708,[3156,557],[2772,614],[3156,678],[3219,558],3221,2708,2771,[2927,3223],2798,2927,[2863,3154],[2643,3946],4012,4013,3950,4014,4012,[2708,3885],3155,3157,2770,3157,2770,2707,2706,2707,3155,3157,3156,3221,2707,[2771,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[3960,8447],[3446,8448],3447,3577,3446,3578,4026,3448,4024,3446,4024,3578,4023,3959,3960,4025,3578,4023,[3447,9628,9628],[3185,9721],[3188,9722],3187,3187,3249,3250,3185,3250,3251,3251,[3252,5966],[3251,5967],[3249,5968],3249,[3250,9535],[3186,9536],[3252,9339],[3186,9340],[3249,9341],[3252,9342],3249,3186,3188,3187,3185,3249,[2867,3061],2931,2802,2802,[2930,3312],[2802,3317],2930,2931,2930,[2802,3121],[2930,3315,2205],2206,2207,2208,2209,2210,[3251,2211],3187,3250,3249,3188,3186,3188,3188,3185,3251,3185,3250,3252,3185,3188,3186,3188,3252,[2930,3123],2866,2930,2802,[2930,2992],[2931,2993],[2930,2997],2930,2802,[2803,3312],3185,3251,3186,3188,3185,3185,3252,3188,3251,3187,3188,3250,[3186,9434],[3185,9530],3252,3185,3251,[3187,5682],[3185,5683],[3251,5684],3186,3188,3186,3187,3188,3250,[2928,2993],3188,3250,3186,[3185,5581],[2928,3061,5582],[2928,5583],[2928,5584],[2928,5585],2928,[2928,3248],3252,3252,3186,3185,3186,3252,[3252,5778],[3250,5779],[3250,5780],[3251,9658],[3251,9659],[10042,9560],[3923,10043],[3412,9848],3987,3924,3923,3987,3923,3923,[3210,3731],[3146,3732],[3144,3733],[3146,3734],[3208,3731],[3146,3732],[3210,3733],[3208,3734],3989,3924,3925,3923,3926,3989,[3209,3799],3145,[3210,3858],3925,3924,3925,3926,3989,3989,3924,3926,3923,3923,3987,3926,3476,3923,[3208,3861],[3145,9461],[3208,9462],[3208,9465],[3208,9557],3143,3209,[3143,4050],3926,3987,[3210,3862],3210,3145,3145,3208,[3208,3730],[3210,3732],[3208,3733],[3146,3734],[3145,3797],3210,[3208,3795],3924,3987,3926,3412,3925,3926,3926,3924,3989,[3146,4053],[3146,4054],[3146,4055,9754],[3144,9755],[409,10138,9656],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9461],[2821,9462],[2563,9465],[2564,9557],2563,2499,2499,[2562,9562],[409,9563],409,409,409,409,409,409,409,409,409,409,409,[409,9461],[2499,9462],[2564,9465],[2564,9557],2565,2562,2564,2501,2756,2757,2498,2562,2562,[2565,9850],[2498,9851],[409,9656],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9366],[409,9369],[409,9461],[3176,9557],3239,3239,[3240,4004],4006,[3239,3879],3175,3240,3174,3240,3175,3240,[3238,3814],3941,4006,[3240,4070],4005,4006,[3174,4073],3176,3176,[3176,9847],[3173,10036],[10037,9559],[3413,9748],[3539,9749],3924,3411,3923,3925,3541,3923,3989,3926,3542,3412,3987,3924,3412,3925,3923,3989,3410,[3989,9646],[3174,9739],[3239,9740],3176,[3174,3748],[3239,3815],3238,3240,3175,[3240,9553],[3174,9453],[3176,9456],[3239,4068,9548],4005,3942,[3176,3753],3239,[3176,9553],[3176,9453],[3175,9456],[3238,9548],3238,3175,3238,3176,3176,3240,3175,3239,3238,[3238,3748],[3240,3750],[3239,3751],[3175,3752],[3240,3753],3240,[3239,4004],[3239,4009],[3240,3748],3941,[3176,4009],3175,[3176,3877],[3176,4069],4005,4008,[3176,4009],3240,[3231,3111],3168,[3167,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2873,9638],2743,2679,2873,2681,2872,2872,2679,2873,2873,2873,3001,2679,2679,2681,3001,2808,2679,2679,2679,[2808,9832],[2743,9928],10022,10023,[2745,9923],[2872,9827],2872,3000,[2678,9832],[3000,9924],[2872,9925],[2744,9926],[2873,9927],[2679,9827],2872,2745,2743,2743,2681,2872,2745,2936,3000,[2743,1653],[2873,1654],1655,[2809,1656],[2872,1657],1658,[3001,1659],[2743,1660],3000,2808,2678,2936,2936,2743,2808,2808,2872,2873,2681,2873,2745,2872,2873,3000,2872,3001,3000,2681,3000,2743,2745,2742,2743,2872,3001,2745,2936,3001,2936,2872,2678,2872,2872,2872,2745,2744,3000,2873,2681,2872,2743,2743,[2679,10115,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,613],2706,3221,2771,2770,[2927,3031],2926,[2798,3026],2773,3221,[2927,3223],2926,[2798,3154],3155,3155,3156,[3156,3202],[2706,3203],[2771,3202],[2706,3203],[2706,3202],[3158,3203],[2926,3285,3204],[2862,3286],[2926,3094],[2926,3028],[2927,2963],[2927,2964,1648],[2927,2965,1649],[2863,2966,1650],2770,3157,[2863,2964],[2927,2965],[2926,3030],2798,2798,2927,[2927,3028],2771,2707,3158,2771,3157,3219,3221,3157,[2770,557],[3219,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,741],[2707,742],[3158,742],[2708,743],415,415,[3155,677],3155,3221,3219,3158,[2798,3029],[2927,3028],2772,[3221,4074],3949,3947,3950,4011,3948,[3156,3822],3155,3158,2642,2770,2706,2770,3221,2770,3221,3158,2643,3157,[2642,1648],[2770,615,1649],[415,1650],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],8543,[4024,8544],[3959,8448],4024,4025,4025,3448,3513,3574,3577,4026,3510,4025,3448,3960,3512,3959,3959,[4025,9628,9628],[3187,9721],[3249,9722],3188,3185,[3187,5490],[3188,5491],[3187,5492],3187,3188,3185,3251,3251,3252,3249,3250,[3186,9535],[3250,9435],[3186,9436],[3250,9437],[3252,9438],[3188,9439],3188,3186,3250,3251,3251,[2931,3125],2930,[2802,2992],[2930,2993],[2931,2994],[2802,2995],[2802,2996],[2866,3060],2931,2931,[2802,2269],[2802,3248,2270],[3187,2271],2272,[3249,2273],[3252,2274],[3188,2275],3187,3252,3249,3249,3249,3251,3187,3250,3251,3249,3187,3249,3187,3185,3186,3185,[2931,3253],2930,[2802,2992],[2802,3060],2931,[2931,3248],3250,[2931,3253],2930,2931,2802,[2802,3056],3187,3251,3188,3252,3250,3186,[3188,9339],[3252,9340],[3186,9341],[3186,9342],[3249,9529],[3249,9530],3187,3249,3185,3185,[3252,5778],[3251,5779],[3252,5780],3185,3251,[3252,5485],[3249,5486],[3249,5487],[3249,5488],[3252,5489],3187,3251,3187,[3188,5677],[2928,3189,5678],[2928,5679],[2928,3057,5680],[2928,2994,5681],[2928,2996],3249,3249,3188,3250,3250,3187,3251,3252,3186,3252,[3252,9754],[3251,9755],[3923,10138,9656],3987,3925,3987,3987,3926,3411,3925,3989,3923,3989,3925,3474,3474,3474,3925,3540,3924,3925,3924,3989,3924,3989,[3146,3863],3144,[3146,3922],3923,3987,3924,3923,3924,3987,3987,3923,3926,3989,3987,3925,3925,[3209,4055],[3145,9556],[3210,3730,9557],[3144,3732],[3144,3733],[3209,3734],[3145,3798],3210,3209,[3143,3859],[3146,4055],3146,3209,3146,3145,3145,[3146,3986],3924,3474,3989,3924,[3145,3731],3926,3989,3924,3987,3926,3475,3989,3987,3926,[3210,3991],3209,3145,3146,[3208,9562],[409,9563],409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9366],[409,9369],[409,9556],[2565,9557],2563,2564,2628,2629,2563,2500,2500,[2499,9562],[409,9563,564],[409,564],[409,564],[409,564],[409,564],[409,564],[409,564],[409,564],[409,564],[409,564],[409,9556,564],[2498,9557,564],2564,2499,2499,2498,2565,2563,2564,2820,2821,2565,2562,[2498,9850],[2563,9946],9947,[409,9752],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9556],[3238,9462],[3175,9465],[3238,9557],3175,3240,[3239,3748],3941,[3238,4009],3239,3175,3238,3175,3240,[3174,3814],[3175,3749],3941,4006,[3238,4073],3238,[3239,4004],3942,[3240,3816],3175,[3240,3814],3237,3175,[3176,10133,9655],[3413,9844],[3923,9845],3476,3539,3475,3926,3925,3924,3475,3923,3923,3924,3412,3923,3925,3923,3542,3989,3926,[3987,9646],[3238,9643],[3238,9644],3240,[3239,3812],[3174,3817],3176,3176,3175,3239,3238,3176,3175,[3175,4068],4005,[3238,4009],3239,3238,3240,3176,3176,3174,[3176,3814],[3176,3749],[3239,3750],[3175,3751],[3175,3752],[3174,3815],3238,3240,[3176,4068],4005,4007,4006,[3239,3879],3174,[3174,3877],[3238,3879],[3240,4004],4006,[3175,4073],3240,3239,[3239,3814],3941,4006,[3240,3879],[3232,3305],3234,3170,3169,[3167,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2679,9638],2872,3001,2744,2936,2681,2872,2872,2873,2936,3001,2680,3000,3000,2679,3000,3001,2745,2678,[3001,9640],[2872,9641],[10024,9542],[2936,10118],[3001,10119],10019,[2873,9923],[2936,9926],[2745,9927],[2872,9928],10020,10021,10022,10023,[2679,9923],[2681,9827],2745,2742,2681,3000,2679,2742,2681,2679,[3001,1717],1718,1719,1720,1721,1722,[2681,1723],[2679,1724],2873,2744,2743,2744,2936,2679,2745,2681,2743,3000,2681,3000,2809,2872,2681,2872,2872,2936,2873,2681,2743,2873,2678,3001,2936,2873,2743,2936,2678,2872,2872,3000,3000,2808,2743,2679,2873,2743,2745,2873,2678,3001,3001,2679,[2873,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,677],2771,2770,3155,2707,[2798,3095],2926,[2927,3090],3158,3156,3157,[2927,2967],[2926,3091],[2926,3283],[2926,3283],3158,3157,3219,[2927,3284],[2926,3285],[2927,3286],[2926,3287],2927,2927,2926,[2927,3218],2772,[3157,1712],1713,[3155,1714],[2707,1715],3156,3155,3158,[2798,3223],2926,2926,[2927,2962],2706,3219,3156,2708,2707,2707,2707,2770,2772,[3155,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2770,549],2771,2771,2708,3155,3156,2771,2706,2770,3219,[3221,4010],3949,3947,3949,3499,[3221,4015],3158,3221,3219,2708,3155,3219,3155,3158,2708,3221,2771,3157,[3158,1712],1713,[415,1714],[415,1715],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8450],8639,[8640,8162],[4023,8255],[3448,8256],3577,3447,3576,3961,4023,3578,3448,3446,4026,3578,3446,4025,3577,3575,[4026,9628,9628],[3185,9817],[3188,9818],3250,3251,[3188,5586],[3188,5587],[3250,5588],3249,3185,3187,3249,3251,3250,3185,3251,3186,3188,3249,3187,3188,[3185,9535],[3188,9536],3188,3249,3186,3188,[2802,3189],2930,[2930,3248],3252,3250,3187,3252,3252,[2802,2997],2931,2931,[2931,3312],[2802,3123,2335],[2931,2336],[2930,3312,2337],[2931,3313],[2802,3314],[2803,3315],[2802,3316],3186,3249,3186,3188,3185,3188,3185,3188,3185,3188,3188,3187,3249,3187,3186,[2930,2993],3185,3250,[2930,2997],[2930,3312],3250,3252,[2867,2993],[2802,3060],2803,[2931,3184],3250,3186,3187,3186,3252,[3252,9434],[3250,9435],[3185,9436],[2928,3061,9437],[2928,9438],[2928,9530],[2928,3056],3187,3185,3188,3250,3250,3250,3249,3185,3188,[3185,5581],[3185,5582],[3249,5583],[3252,5584],[3185,5585],3249,3185,3185,[3185,5773],[3185,5774],[2928,2993,5775],[3186,5776],[3252,5777],3188,3252,3188,3188,3251,3185,3187,3249,3252,3186,3249,3251,[3187,9562],[3987,9563],3924,3923,3540,3987,3410,3925,3923,3539,3989,3925,3987,3926,3540,3925,3989,3987,3926,3923,3923,3923,3923,3923,[3145,3927],3208,[3207,3986],3476,3540,3987,3987,3989,3925,3926,3926,3926,3923,3925,3987,[3146,3799],[3208,9559],[3210,9652],[3146,3986,9653],3989,3924,3926,3989,[3207,3731],[3209,3798],3145,3143,3210,[3210,3730],[3210,3731],[3208,3798],3208,[3208,4050],3924,3411,3923,3987,3925,3987,3924,3923,3989,3987,3989,3987,3926,[3146,4051],[3145,3861],3207,[3207,3730],[3143,3798],[3209,9754],[3210,9755],[409,9560],409,409,409,409,409,409,409,409,409,409,409,409,[409,9556],[2564,9462],[2821,9465],[2565,9557],2562,2563,2499,2692,2693,2563,2628,2629,2564,628,628,628,628,628,628,628,628,628,628,628,628,2565,2565,2499,2564,2628,2629,2565,2500,2499,2562,[2499,9658],[2564,9659],[10042,9560],[409,10043],[409,9848],409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9559],[3238,9748],3238,3238,3174,[3238,3748],[3239,3749],3941,3428,3942,[3175,3753],3174,3175,3238,[3174,3814],3941,4007,3430,[3240,4009],3175,3176,[3240,4068],4005,3942,[3175,3749],3941,[3175,4009],3237,[3237,9751],9940,[3987,9941],[3925,9845],3476,3987,3925,3989,3987,3410,3924,3926,3925,3923,3987,3923,3410,3924,3923,3924,[3411,9742],[3239,9739],[3239,9740],3240,[3175,3940],[3240,3945],3240,3176,3175,3174,3239,[3176,3813],[3238,3749],[3175,3749],3429,3942,[3239,3749],[3239,3749],[3175,3815],3176,3175,[3238,3813],3941,4006,[3239,4072],[3176,4070],4005,[3240,4009],[3239,3814],[3239,3749],[3238,3753],[3174,4004],4006,[3239,3879],3240,3239,3240,3175,[3239,4004],3942,[3176,3816],3174,[3174,3748],3941,4006,[3175,4073],[3169,3049],3168,3170,3233,3168,[3232,9649],[3168,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[3001,9638],3000,2679,3001,2873,2745,2936,2873,[3001,9832],[2681,9924],[2873,9925],[2936,9827],2872,2679,[3000,9832],[2745,9924],[2680,9925],[2679,9827],2872,[2872,9736],[2681,9737],[2936,10120,9638],[2681,10214],[3000,10215],[2873,10115],10019,10022,10023,10024,[3001,10116],[2681,10117],[2873,10118],[2745,10119],10019,[2873,9923],[3001,9827],2743,2679,2743,2872,2681,2680,3001,[2936,1781],1782,1783,[2679,1784],[2872,1785],1786,[2679,1787],[2681,1788],2681,2936,2679,3000,2742,2872,2743,2936,3001,2873,2679,2745,2873,2873,2873,2681,2681,2679,2745,2745,2872,3000,2681,2873,2872,2745,2745,2681,2744,2872,2872,2745,2808,3001,3001,2679,3000,2742,2679,2873,2808,2936,2681,2678,[2679,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],[3157,550],2770,2772,3155,2708,3221,[2927,3159],2926,[2798,3154],2707,3158,[2707,3760],[2708,3828],[2926,3029],2927,2798,[2926,3092],[2798,3283],[2798,3287],2926,2862,2927,2798,[2798,3028],[2798,2964],[2927,2966],2772,3155,[2644,3825,1776],1777,[3155,3765,1778],[2644,1779],[2772,1780],2708,2772,3155,[2926,3029],2927,[2927,3091],[2927,3283],2707,2706,2772,2771,2708,3155,2770,2772,[2770,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3155,613],2643,3221,3155,2707,2707,3157,2772,[2772,3754],[2706,3755],3947,3949,4012,4011,4012,[3221,4079],3157,3158,2834,2835,3156,3155,3221,3155,3219,2707,3156,2708,[2706,1776],1777,[3157,551,1778],[415,1779],[415,1780],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[8736,8258],[4024,8351],3446,3640,3641,3961,3510,3578,3510,3575,3446,3577,3574,3446,4025,3448,4023,[3574,9724,9724],9913,[3188,9914],[3187,9818],3185,[3249,5682],[3251,5683],[3188,5684],3186,3187,3252,3251,3252,3249,3186,3252,3186,3249,3251,3185,3250,3188,[3249,9535],[3185,9536],3250,3187,3188,3249,[2866,2993],3251,3249,3249,3249,3249,3187,3187,[2931,2993],[2802,3059],2931,2931,2802,2931,2930,2803,2867,2802,[2931,3122],3249,3251,3250,3185,3188,3251,3187,3186,3252,3186,3250,3185,3186,3187,3185,3185,3187,[2802,3317],2931,[2931,3056],3187,3187,[2931,3253],2802,[2866,3312],3252,3187,3185,3187,[3250,9529],[3252,9530],3249,3249,[2928,3189],2928,2928,[2928,3184],3188,3252,3249,3251,3250,3249,3186,3188,3249,[3185,5677],[3249,5678],[3185,5679],[3186,5680],[3186,5681],3252,3251,3252,[3249,5869],[3186,5870],[3251,5871],[3188,5872],[3188,5873],3185,3250,3186,3252,3188,3187,3185,3188,3249,3250,3249,3185,[3186,9658],[3186,9659],[3989,9560],3987,3989,3989,3924,3987,3926,3412,3925,3410,3926,3987,3926,3475,3923,3989,3474,3926,3924,3540,3925,3412,[3146,3991],3145,[3210,4050],3925,3923,3925,3926,3989,3410,3926,3924,3926,3924,3987,3924,[3210,3927],[3146,9655],[3144,3795,9748],[3989,9749],3923,3602,3603,3924,3925,3540,[3210,3735],3208,[3145,3795],3926,3926,[3209,3991],3210,3208,[3210,3859],3989,3475,3924,3987,3923,3924,3926,3540,3411,3925,3989,[3209,3861],3145,3145,[3209,3795],3925,[3146,3799],[3208,9850],[3208,9851],[409,9656],409,409,409,409,409,409,409,409,409,409,409,[409,9556],[2501,9557],2564,2564,2501,2499,2500,2565,2756,2757,2498,2692,2693,2498,692,692,692,692,692,692,692,692,692,692,692,692,2500,2499,2499,2564,2692,2693,2565,2562,2501,2501,[2501,9754],[2821,9755],[409,10138,9656],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9655],[3240,9652],[3176,9653],3174,[3238,3813],3941,3493,4006,4005,3558,3942,[3174,3749],[3176,3815],[3240,3813],3941,4008,3556,4007,[3176,4009],3240,3239,3176,[3176,3878],4005,3493,4006,[3175,3879],3240,[3238,9847],[3239,10036],10037,[3923,9652],[3925,9653],3926,3987,3924,[3989,9357],[3538,9358],[3539,9359],[3924,9360],3924,3924,[3924,9452],[3923,9554],[3925,9357],[3926,9358],[3987,9359],[3987,9360],[3987,9547],[3176,9548],3175,[3175,3748],3941,3942,[3239,3753],3174,3238,[3240,3813],[3175,3749],3941,4006,[3174,4070],[3175,4069],[3176,4072],[3174,4069],4005,[3176,4009],3238,[3176,3813],3941,4006,[3240,3880],3240,3238,[3174,4004],3429,3941,4008,3942,3941,3942,[3238,3816],3176,3240,[3238,3748],[3238,3749],3941,3430,[3174,4009],[3238,3813],3941,3943,[3240,4009],3238,[3170,3177],3231,3233,3232,3231,[3234,9745],[3233,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2745,9638],3000,3001,2679,2872,2745,3001,[2872,9832],[2679,9928],10020,10021,[3000,9923],[2743,9926],[2743,9927],[2745,9928],10020,10021,[3001,9923],[2678,9926],[2744,9927],[2679,9833],[2744,9638],2936,3001,2681,[2681,10115],[2936,10118],[2873,10119],[2745,10120],[3001,10212],[3001,10213],[2936,10214],[3001,10215],[2872,10115],[10019,9541],[2681,9730],[3001,9731],2679,2745,3000,2872,2680,2743,[2873,1845],[2808,1846],[3000,1847],[2681,1848],[2745,1849],[2679,1850],[2743,1851],[2681,1852],2681,2680,2744,2873,3000,2743,2936,2745,2745,2808,2872,2873,2680,2679,2681,2743,3000,2744,3001,2873,2745,2681,2808,[2744,9832],[2745,9924],[2679,9925],[2872,9926],[3001,9927],[3000,9827],3001,2745,2743,3000,2745,2742,2936,2679,2873,2743,2745,2745,2745,2744,2743,[2679,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,613],2834,2835,2706,2771,3158,[2926,3283],[2798,3093],2798,[2863,3218],3155,[3219,3825],3953,[2770,4021],2772,[2862,2963],[2927,2967],[2798,3028],[2927,2963],[2798,3029],[2798,3028],[2862,2964],[2927,2965],[2927,2966],3155,3158,3219,2643,3155,[2771,4016,1840],1841,[3954,1842],[2770,3828,1843],3221,3158,3221,2772,3221,[2798,2963],[2798,3029],2798,[2927,3218],2708,2771,2642,3157,2770,2642,3156,[2707,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,677],3219,2772,3219,2770,2772,3156,2706,[2772,3883],4011,3562,3564,3948,3947,[3157,4015],2643,3157,3156,2898,2899,3157,2643,2707,2708,2773,2771,2707,[2770,3825],[2770,3761,1840],1841,[3157,3828,615,1842],[415,1843],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[4025,8447],[3576,9762],3704,3705,4024,4026,3574,4024,[3512,9767],[3447,9859],[4026,9860],[3447,9861],[3574,9862],[4026,9762],3577,3638,[3639,9820,9820],[4023,10009],10010,[3249,9625],[3249,9626],[3250,5778],[3249,5779],[3252,5780],3249,3186,3188,3249,3249,3188,3250,3188,3249,3186,[3251,5490],[3186,5491],[3252,5492],3250,[3251,9631],[3249,9632],[3185,9533],3188,3249,3251,3186,3249,3251,3249,3187,3249,3185,3186,3186,3185,[2931,2993],[2866,2994],[2930,2995],[2802,2996],[2802,2994],[2866,2995],[2930,2996],[2931,2997],2930,[2931,3312],[2931,3316],3249,3252,3188,3185,3187,3186,3250,3187,3188,3250,3186,3252,3249,[2930,3316],[2802,3123],2866,2931,[2802,3184],3186,3188,3186,[2931,3060],2930,[2931,3248],3188,3251,[3188,9434],[3249,9530],3249,3188,3251,[2928,3253],2928,2928,[2928,3121],3249,3252,3186,3250,3252,3249,3252,3187,3185,[3252,5773],[3185,5774],[3187,5775],[3249,5776],[3249,5777],3187,3250,3186,3249,[3249,5966],[3188,5967],[3187,5968],3249,[3187,9357],[3186,9358],[3185,9359],[3252,9360],[3187,9357],[3252,9360],3252,3252,3252,3188,3252,3186,[3251,9754,9451],[3186,9659,9452],[3987,9457],[3925,9357],[3987,9360],3987,3926,3989,3987,3925,3540,[3540,9357],[3989,9360],3925,3925,3989,3540,3926,3987,3987,3989,3926,3925,3926,3923,[3146,3797],3209,[3209,3986],3540,3412,3926,3926,3987,3926,3923,3475,3538,3924,[3210,4054],[3208,4055],[3143,9655],[3209,3986,9652],[3987,9653],3925,3666,3667,3926,3538,3924,[3208,3991],3143,[3146,3794],3926,3989,3924,[3210,3798],3145,3145,[3210,3986],3925,3925,3987,3475,3987,3926,3989,3987,3989,[3209,3799],3208,[3207,3730],[3210,3731],3926,3924,[3143,3863,9850],[3209,9946],9947,[409,9752],409,409,409,409,409,409,409,409,409,409,[409,9559],[2756,9748],[2500,9749],2565,2501,2501,2500,2499,2564,2820,2821,2501,2756,2757,[2563,9658],[2501,9659,756],[409,9560,756],[409,756],[409,756],[409,756],[409,756],[409,756],[409,756],[409,9556,756],[2565,9557,756],[2498,756],[2628,756],2629,2499,2499,2500,2756,2757,2500,2562,[2563,9850],[2498,9944],[2563,9945],[2757,9851],[409,9656],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9655],[3173,9748],[3239,9749],3176,[3240,3878],[3174,4072],4005,3942,3941,3492,3492,3558,3942,3941,3557,4006,[3176,4072],4005,[3238,4009],3175,3238,[3239,3813],[3174,3749],3941,3558,[3175,4009],3176,3175,3174,3237,[3174,10133],[3411,9748,9357],[3989,9749,9358],[3542,9359],[3923,9360],[3987,9452],[3238,9453],[3238,9454],[3175,9455],[3174,9456],[3925,9457],[3987,9452],[3169,9548],[3231,9553],[3167,9453],[3231,3172,9454],[3239,9455],[3175,9456],[3175,9548],3239,[3238,3814],3941,4006,4005,3942,[3240,3749],[3240,3749],3941,4006,[3175,4070],[3240,3880],3175,3240,3175,3174,[3176,4004],3942,[3240,3749],3495,4006,[3239,3880],3174,3176,3174,[3175,4068],4005,3943,4006,[3240,4072],[3238,4072],4005,3942,[3174,3749],[3176,3749],3430,4006,[3238,4070],4005,3942,3941,4006,[3238,4070],[3240,4073],3175,3174,[3168,2981],[3231,3047],3233,3231,[3234,9841],[3231,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[2680,9638],2745,2679,3001,2936,2680,[2679,9832],[2873,9928],10024,[2872,10116],[2744,10117],10019,10022,10023,10024,[3001,10116],[2936,10117],10019,10022,10023,9929,[2681,9734],2742,2680,2745,2678,[3001,10214],[2681,10215],2680,2808,2681,2808,2743,2936,[2744,10115,9637],[3000,9826],[2745,9827],2936,3001,3000,2872,2745,2681,2808,2936,2936,2679,3001,3000,2681,2679,2808,2745,2745,2679,2936,2745,2681,2873,2743,2808,2679,3001,2743,3000,2936,2742,2872,2872,2743,2744,[2743,9832],[2745,9924],[2808,9925],[2873,9928],10020,10021,10022,10023,[2679,9923],[2681,9827],2872,2873,2681,2743,2678,3001,3000,2873,2680,3001,2679,2678,2936,2681,[2936,9733],9922,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,677],2898,2899,3158,2770,2771,[2798,3029],2798,[2926,3028],2708,3221,[2707,3824],3568,[2770,4021],3155,3156,2772,3219,3221,2772,3156,2772,2707,2773,3155,3155,3219,2771,2706,[2772,4016,1904],[4018,1905],[4017,1906],[3158,4021],3158,2707,3158,2708,2642,2706,2771,[2798,2963],2770,2642,2772,2708,3158,3219,2708,2706,[3156,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2707,741],[2771,742],[2707,678],[2770,558],2706,2706,3219,2772,[3219,3819],3947,3563,3499,3563,3562,[3157,4015],3157,3157,3157,3157,3219,2771,3219,2706,2772,2707,3221,2708,[3156,4016],[4018,1904],[3157,4082,1905],[3157,3891,679,1906],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],8543,[4026,9858],[4024,9762],3448,3447,[4026,9767],[3960,9861],[3959,9862],[3577,9863],9955,9956,9957,9958,[3448,9858],[3511,9762],3702,3703,4025,[3577,10106,9532],[3249,9721],[3249,9722],3188,3186,3249,3187,3187,3187,3252,3188,3249,3187,3185,3251,3249,[3249,5586],[3250,5587],[3187,5588],3249,[3250,9727],[3249,9728],[3185,9629],3187,3252,3250,3187,3188,3188,3185,3250,3249,3185,3251,3187,3249,3251,3187,3252,3185,3187,3250,3252,[2802,3253],2931,2802,2931,[2802,3248],3249,3252,3186,3252,3251,3188,3251,3252,3188,3252,3185,[2802,3253],2931,2930,2802,[2930,3057],3249,3250,3251,3249,3186,[2803,2993],3188,3250,[3249,9529],[3249,9530],3187,3250,3186,3185,3252,[2928,2993],[2928,3059],2928,[2928,3122],3186,3251,3185,[3252,5490],[3249,5491],[3251,5492],3251,3251,[3250,5869],[3186,5870],[3185,5871],[3251,5872],[3251,5873],3249,3185,3251,3249,3186,3185,3252,[3188,9547],[4002,9453],[3938,9454],[3937,9455],[3937,9456],[4001,9453],[4001,9456],[3249,9457],[3250,9357],[3249,9358],[3186,9359],[3249,9358],[3250,9360],[3249,9547],[3487,9548],[4001,9553],[3937,9453],[3938,9456],[3925,9457],3987,3410,3924,3987,[3987,9452],[4002,9453],[3937,9456],[3923,9457],[3926,9357],[3925,9360],3989,3987,3412,3987,3410,3924,3925,3926,3474,3539,[3144,3731],3926,3410,3926,3925,3926,3923,3924,3987,3987,3987,[3209,3799],3143,3209,[3143,3730,9655],[3989,9748],[3925,9749],3925,3987,3987,3474,3925,3925,[3145,4055],3146,[3208,3858],3926,3989,3926,3924,[3144,3735],3208,[3208,4050],[3145,4052],3925,3989,3411,3411,3987,3989,3987,3924,[3146,3863],3145,[3145,3794],3923,3987,[3925,9658],[3989,9659],[10042,9560],[409,10043],[409,9848],409,409,409,409,409,409,409,409,409,409,[409,9655],[2500,9844],[2498,9845],2564,2565,2499,2499,2499,2498,2565,2499,2500,2820,2821,[2499,9754],[2821,9755],[409,9656],409,409,409,409,409,[409,9559],[2821,9748],[2563,9749],2565,2692,2693,2565,2500,2501,2820,[2821,9850],[2498,9944],[2562,9945],[2498,9946],10040,10041,9947,[409,9752],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9655],[3173,9844],[3174,9942],[3174,9943],[3239,9845],3238,[3176,4068],4005,3556,3557,3430,3944,3429,4006,4005,[3240,4009],[3240,3748],3941,3942,[3240,3753],[3240,3813],3941,4006,[3175,4070],[3175,4071],3174,[3175,9357],[3238,9360],[3175,9357],[3240,9360],[3174,9452],[3232,3304,9453],[3167,3111,9454],[3231,3110,9455],[3167,3305,9456],[3170,3044,9548],3238,3176,3175,3238,[3239,9553],[3232,3049,9548],3169,3170,3168,[3234,3236],3176,3175,[3174,3748],[3175,3749],3941,4006,[3175,3880],[3238,4068],[3174,4071],3431,4006,[3240,4071],[3174,3879],3175,3238,3240,3239,3238,3176,[3175,3877],4005,3944,3556,[3239,4009],3239,3238,3175,3175,3240,[3175,3877],[3176,4070],[3174,4073],3176,3239,[3176,3877],[3238,4072],[3238,4072],[3239,4069],[3238,4070],[3174,4073],3239,[3238,4068],4005,3557,[3240,4009],3239,3239,3174,[3238,3748],[3175,3815],3175,[3233,2981],[3169,3048,9841],[3232,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,[2873,9734],3001,2936,2745,2681,[2936,9640],[2936,9641],[10024,9542],[3001,10120],[2742,10212],[3001,10213],[2808,10115],[2743,10118],[2679,10119],[2873,10120],[2679,10212],[2679,10213],[3001,10115],[2936,10118],[2743,10119],[2808,10025],[3001,9830],2742,2873,2743,2681,2872,2808,3001,2681,2873,2743,2742,2745,[2679,9733],9922,[2872,9923],[3000,9924],[2745,9925],[2743,9827],2936,2745,2745,2872,3001,2742,2679,2681,2872,2745,2872,2743,2745,2872,2808,2679,2936,2872,3001,3000,2680,3000,2873,2745,[2680,9832],[3000,9924],[2808,9925],[3001,9926],[3000,9927],[2872,9926],[2744,9927],[3000,9928],10020,10021,10024,[3000,10116],[2745,10117],[2679,10118],[2743,10119],10019,[3000,9923],[3000,9924],[3000,9925],[2937,9827],2743,2743,2743,2873,2872,2873,2808,2744,2679,2743,2873,[2743,9829],[2745,10018],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,741],[3157,678],[3157,558],2772,3158,3157,3219,[2798,2963],2707,3219,3219,[3221,3888],4018,[2707,3891],3155,2708,3155,2707,3221,3157,3157,2772,2642,3219,2770,3221,2706,3157,2770,[3157,4080],[3221,4085],[2707,4016],[3157,4021],2708,2770,3157,3155,2770,[3221,3825],[3157,3761],[3219,3761],[2771,3765],2707,3157,2771,3158,2642,3156,2707,3219,[3219,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3155,613],3155,2770,3156,2770,[3219,3883],[2773,4077],[3219,4076],[3157,4076],[3157,4075],[3221,4078],[2773,3886],3157,3157,3157,3157,2708,3155,3157,3157,2643,3157,3157,3157,[3157,4016],3572,[3157,3765],3157,[3157,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8450],8639,9954,[3578,9858],[3576,9859],[4025,9860],[3578,9863],9957,9958,9959,[415,10051],[415,10052],[415,10053],[415,10054],9954,[3446,9858],[3446,9861],[3575,9862],[4026,9762],[3512,9628],[3188,9721],[3187,9722],3185,3188,3187,3185,3249,3186,3188,[3252,5485],[3186,5486],[3187,5487],[3188,5488],[3250,5489],3250,[3249,5682],[3187,5683],[3185,5684],3188,[3187,9631],[3249,9632],[3185,9629],3251,3250,3252,3249,3185,3251,3187,3251,3249,3250,3252,3188,3186,3251,3185,3251,3186,3252,3251,3187,3249,[2930,2993],[2930,3059],[2930,3057],3250,3186,3185,3186,3186,3185,3188,3251,3252,3188,3188,3250,3250,[2867,2994],[2930,2995],[2930,2996],3252,3185,3188,3250,3186,3249,3186,3251,[3187,9532],[3250,9625],[3188,9626],3187,3252,[3252,5490],[3188,5491],[3252,5492],3188,[2928,3253],2928,2928,[2928,3312],3250,3188,[3188,5586],[3249,5587],[3249,5588],3250,3251,3250,[3252,5966],[3250,5967],[3186,5968],3186,3252,3188,3252,3250,3188,3252,[3251,9550],[4002,9643],[4000,9644],3486,3999,3999,3552,3487,[4002,9553],[4001,9453],[3937,9454],[4001,9455],[3938,9454],[4001,9456],[4002,9548],4001,3552,3551,3937,[3936,9553],[3987,9554],[3926,9357],[3923,9360],[3989,9547],[4002,9548],3999,4001,[4001,9553],[3937,9453],[4002,9456],[3538,9457],3989,3540,3925,3475,3989,3924,3925,3538,3925,3924,3926,3925,3924,3987,3925,3926,3539,3925,3924,3989,[3145,3927],3146,[3208,3795],[3411,9655],[3989,9844],[3923,9845],3925,3987,3411,3476,3923,[3209,3862],3209,3209,[3209,3922],3926,3923,3924,3539,[3146,3991],3145,3145,3145,[3208,4050],3926,3475,3925,3989,3926,3987,3987,[3210,3927],3207,[3209,3858],3925,3410,[3923,9754],[3926,9755],[409,10138,9656],409,409,409,409,409,409,409,409,409,409,409,409,[409,9751],9940,[2821,9941],[2562,9845],2499,2498,[2499,9850],[2757,9942],[2501,9943],[2498,9845],2499,2500,2563,2565,[2565,9850],[2757,9851],[409,9656],409,409,409,409,409,[409,9655],[2564,9844],[2500,9845],2499,2756,2757,2564,2499,2500,[2498,9850],[2820,9946],10040,10041,10042,[409,10136],[409,10137],[409,10043],[409,9848],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9751],9940,10038,10039,[3239,9941],[3238,9845],3239,[3240,4068],4005,3428,4006,4005,3492,3942,3941,3942,3941,3493,3429,3942,3941,4006,[3240,4073],3239,3240,[3237,9452],[3238,9453],[3176,9456],[3239,9453],[3239,9456],[3232,3048,9548],3167,3169,3233,3169,[3232,3172],3174,[3239,3814],[3240,3753],3240,3175,[3168,3177],3169,[3169,3045],[3169,2981],3175,3239,[3175,3814],3941,4006,[3240,4072],[3239,3879],3175,3238,3174,[3239,4004],[3174,4009],3175,3176,3174,3238,3238,[3239,9357],[3175,9360],3176,3176,[3239,3878],[3239,4071],[3239,4070],[3239,3880,9357],[3240,9360],3238,3240,3238,3175,3239,3239,3175,3238,3176,3238,3174,3239,3238,3175,3238,3240,3174,[3175,3878],4005,3942,[3238,3815],3240,[3238,3814],3941,[3176,3817],3176,[3240,9649],[3237,9650],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[2873,10025],[2873,9830],3001,2745,2743,2679,[3000,9736],[2745,9737],[3001,10120,9638],2679,2743,3001,2679,[2743,10214],[2679,10215],2743,2936,2872,2808,[2808,10214],[2679,10215],2679,3001,2681,2743,3000,2936,2936,2745,3001,2744,3000,3001,2745,2745,[2679,9829],[3001,10018],10019,10020,10021,[3001,9923],[3000,9827],2745,2936,3000,3000,3000,2679,2936,2679,2745,2681,2679,3001,2743,2681,3000,3001,2937,2872,2679,2679,[2681,9832],[2808,9926],[2936,9927],[2808,9928],10020,10021,10022,10023,10022,10023,10024,[2744,10116],[2808,10117],[3000,10120],[2808,10212],[2743,10213],[2937,10214],[3000,10215],[2679,10115],10019,10020,10021,[2743,9923],[2872,9827],2681,2679,2679,2680,2745,2936,2743,2681,2681,2743,2873,2872,[2745,10115,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,613],3221,2706,2643,3219,2706,3157,2706,2644,[3157,3888],[3157,4021],2771,3157,3158,3158,3157,2771,3157,3157,3157,3157,3157,3156,2708,2707,3157,2708,2706,2707,[3157,4016],3954,[3157,3828],3157,[3157,3760],[2771,3761],[2708,3761],3953,3955,3440,3954,[3157,3761],[3157,3828],2770,2771,3219,3156,3158,3155,3157,[3219,550],[2770,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3158,613],2708,3221,2706,3158,3157,3221,3157,3158,3157,3155,3219,3157,3157,2708,3158,3156,3157,2773,3221,2707,2706,3157,3157,[3157,3890],4017,[3156,3829],3155,[3157,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10050],9954,9955,9956,9959,[415,10053],[415,10054],[415,10055],[415,10147],[415,10148],[415,10149],[415,10150],[415,10050],9954,9957,9958,[3574,9858,9433],[4024,9762,9434],[3251,9530],3187,3186,3188,3251,3187,3188,3251,3251,[3188,5581],[3251,5582],[3252,5583],[3251,5584],[3186,5585],3250,[3252,5778],[3188,5779],[3188,5780],3249,[3187,9727],[3185,9728],[3251,9629],3250,3187,3249,3187,3186,3252,3250,3187,3251,3187,3186,3250,3249,3252,3185,3249,3187,3251,3186,3185,3250,3249,3186,3186,3187,3185,3251,3250,3186,3185,3188,3249,3251,3187,3186,3251,3252,3186,3188,3250,3250,3188,3251,3186,3185,3188,3185,3186,[3251,9628],[3251,9721],[3250,9722],3251,3251,[3187,5586],[3186,5587],[3187,5588],3252,3186,[2928,2997],2928,2928,[2928,3056],3187,[3251,5682],[3185,5683],[3188,5684],3186,3250,3252,3249,3251,3249,3250,3185,[3185,5490],[3186,5491],[3250,5492],3250,3188,[3251,9646],[3937,9835],[3999,9836],3486,3937,3937,3552,3936,4001,4002,3552,3487,3552,3552,3938,4001,3936,3938,4000,4001,[3552,9553],[4002,9453],[4001,9456],[3936,9548],3935,3551,4000,3937,3999,3936,[3935,9553],[3540,9554],[3987,9357],[3925,9358],[3926,9359],[3925,9360],3987,3987,3926,3987,3989,3924,3925,3925,3924,3926,3987,3926,3926,3924,3923,3926,[3146,3731],3924,[3924,9751],9940,[3926,9652],[3924,9653],3925,3987,3989,[3209,3799],3146,3146,[3210,3795],3924,3989,3987,3926,3412,3987,[3210,3731],[3209,3797],3146,3146,[3208,3986],3924,3989,3925,3924,3989,3923,[3144,3991],3146,[3208,3922],3923,3926,3987,[3923,9562],[409,9563],409,409,409,409,409,409,409,409,409,409,409,409,[409,9847],[409,10036],10037,[2756,9941],[2756,9942],[2564,9943],[2498,9946],10038,10039,[2500,9941],[2498,9942],[2562,9943],[2500,9944],[2562,9945],[2499,9946],9947,[409,9752],409,409,409,409,409,[409,9751],9940,[2820,9941],[2499,9944],[2820,9945,70],[2821,71],[2563,72],[2563,9942,73],[2498,9943],[2820,9946],10042,[409,10136],[409,10137],[409,10138],[409,10232],[409,10233],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9847],[409,10036],[409,10134],[409,10135],10037,[3238,9652],[3240,9653],3176,[3240,4004],3944,[3238,4009],[3175,3877],[3176,4072],4005,3493,3492,4006,[3240,4069],[3240,4071],4005,4007,[3238,4009],3238,3237,[3174,9452],[3238,9548],3175,3240,3239,3239,[3233,3049],3168,3168,3234,[3233,3046],3239,[3174,3813],3495,[3240,4009],3238,3176,3239,[3231,2981],3240,3239,[3240,3813],[3239,3749],3941,4006,[3238,4073],3175,3175,3174,3239,3239,[3240,3878,9357],[3239,4073,9358],[3176,9359],[3176,9360],3240,3238,[3240,9452],[3936,9453],[3999,9456],[3174,9457],3175,3240,3240,[3240,9452],[3937,9453],[3936,9456],[3238,9457],3238,3174,3174,3175,[3169,3302],[3231,3303],3175,3239,3175,3240,3174,3176,3175,[3168,3302],[3232,3303],[3170,3304],3238,[3176,3877],4005,3942,[3238,3749],3941,3556,[3240,3945],3175,[3238,9745],[3240,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2745,10120,9638],2681,2873,2745,2743,3000,2679,2808,[2681,9544],[3000,9448],2679,3001,2872,2743,2745,2873,2872,2679,2679,2679,2742,3000,2872,2745,2745,2936,2743,2678,2745,2873,3001,3001,2679,2679,2936,2873,2681,2745,[2872,10115],[2681,10116],[2936,10117],10019,[3001,9923],[2872,9827],2808,2744,2681,2936,2743,3001,3000,2936,2873,2743,3001,2681,3001,2678,2743,2745,2872,2678,[2743,9832],[2745,9928],10022,10023,10024,[3001,10116],[2679,10117],[2744,10118],[2679,10119],[2743,10118],[3000,10119],[3001,10120],[2681,10212],[2743,10213],2873,2681,2745,2678,2936,2743,[2872,10115],[2873,10116],[2936,10117],10019,[2872,9923],[2679,9827],2936,3001,2743,2872,3001,2745,2744,3001,3000,2743,2681,[2745,9733],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,613],2773,3157,3157,2707,2836,2837,3158,3219,[3157,3952],3442,[2770,3761],[3157,3828],2771,2706,3219,3157,3219,2708,3157,2834,2835,3157,3157,2771,3219,3219,3157,3157,[3157,3890],4017,3572,[3157,3761],3953,4018,[3157,4082],[3157,4083],4017,3569,3568,3568,3954,[3157,3765],3157,3157,2708,3221,3157,2707,2772,[3156,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,677],2706,3157,3221,3157,3157,3158,2642,3221,2707,3221,2770,2707,2708,2773,3157,3157,3158,3157,3157,3157,2770,3157,3157,3157,[3157,4016],[3155,3893],3155,[3157,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10050],[415,10051],[415,10052],[415,10055],[415,10149],[415,10150],415,415,415,415,415,415,[415,10050],[415,10053],[415,10054],[9954,9529],[3188,9530],3251,3188,3249,3249,3251,3249,3250,3250,3188,[3250,5677],[3249,5678],[3249,5679],[3252,5680],[3186,5681],3185,3252,3187,3185,3252,[3250,9823],[3249,9824],[3251,9629],3249,3185,3186,3185,3249,3185,3186,3187,3250,3249,3185,3188,3251,3186,3251,3249,3252,3185,3252,3185,3185,3252,3250,3185,3187,3187,3185,3250,3186,3185,3186,3186,3251,3251,3186,3186,3188,3250,3251,3185,3251,3185,3187,3252,3250,3249,3252,3250,[3252,9628],[3185,9817],[3252,9818],3185,3249,[3251,5682],[3187,5683],[3250,5684],3188,3186,3249,[2928,3059],2928,[2928,3184],3185,[3185,5778],[3249,5779],[3188,5780],3249,3186,3186,3251,3249,3187,3251,3187,[3252,5586],[3250,5587],[3249,5588],3250,3188,[3185,9742],9931,[3938,9932],[4001,9836],3937,3552,3425,3486,3935,[3168,4064],[3170,4065],3938,3551,3488,3935,4000,3936,3935,4001,3488,4000,3938,3552,3938,3551,3938,4001,4002,3488,4001,3999,[4001,9553],[3938,9453],[3937,9454],[4002,9455],[4002,9456],[3987,9457],3924,3540,3925,3412,3923,3412,3989,3989,3987,3926,3926,3987,3987,3926,3475,3923,3923,[3924,9847],[3926,10036,9559],[3924,9748],[3926,9749],3538,3926,3925,[3209,3927],3145,3210,[3210,3986],3923,3989,3925,3540,3410,3989,3926,3923,[3209,3732],[3146,3734],3924,3926,3539,3924,3926,3926,3989,3925,[3146,3731],3925,3926,3987,3926,[3923,9658],[3987,9659],[409,9560],409,409,409,409,409,409,409,409,409,409,409,409,409,[409,10133],10037,10038,10039,10042,[409,10134],[409,10135],10037,10038,10039,10040,10041,10042,[409,10043],[409,9848],409,409,409,409,409,[409,9847],[409,10036],10037,10040,[10041,70],71,72,[10038,73],10039,10042,[409,10138],[409,10232],[409,10233],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,10230],[409,10231],[409,10133],[3174,9748],[3174,9749],3175,[3238,4004],3430,[3174,4009],3174,3240,[3238,4068],[3239,4069],4005,[3175,4009],3175,3175,[3176,4004],4006,[3176,3879],3174,[3175,9547],[3240,9548],3240,[3240,3813],[3174,3753],3239,3239,[3231,3177],3232,3169,[3231,2980],3240,3240,[3176,4004],4006,[3174,3880],3175,3239,3176,3175,[3175,3814],[3175,3749],3941,4006,[3174,4072],[3238,3879],3239,3175,3240,3176,3239,[3174,9547],[4000,9453],[4001,9454],[3935,9455],[4000,9456],[3239,9457],[3238,9547],[3937,9548],3937,4002,[4001,9553],[3175,9457],[3175,9357],[3240,9452],[3937,9548],3935,3935,[3937,9553],[3175,9554],[3175,9357],[3238,9360],[3168,3241],3231,3232,[3234,3109],3174,[3239,9357],[3239,9358],[3239,9359],[3239,9360],[3231,3111],3169,3167,3234,[3170,3236],3239,[3175,3878],4005,3944,4006,[3174,4069],[3239,4073],3240,3175,[3175,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[2745,9638],3001,3001,3000,2742,2872,2936,2745,2936,[2679,9544],[2937,9545],3000,2936,2936,3001,2873,2873,2742,2873,2872,2872,3001,2742,3001,2743,2936,2745,2872,3000,2679,2808,2742,2936,3001,2743,2872,2679,2936,2745,[3000,10212],[3000,10213],[2745,10115],[10019,9541],[3001,9634],[2743,9635],2873,2681,3000,2745,2936,2936,3001,2745,2873,2872,2681,2872,2681,2873,2872,2745,[3000,9832],[3000,9928],10024,[3000,10118],[2745,10119],[2873,10120],[2873,10212],[2808,10213],[2808,10214],[2744,10215],[2745,10214],[2680,10215],2743,2745,2680,2681,3001,2936,2872,2743,3001,2743,[3000,10212],[2742,10213],[2745,10115],[10019,9541],[2872,9634],[2873,9635],3000,3001,2936,3000,2744,2873,3001,2808,2744,2872,[2743,9538],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],3157,2773,3221,2643,3219,2900,2901,2707,3157,[3157,3890],[2771,4083],4017,[2771,4021],3155,2706,3219,2706,3155,2642,2772,2898,2899,3157,2706,2707,3221,2644,3157,3157,3157,[3157,3890],[3157,4082],[3157,4082],[3157,4084],[3157,4085],3157,3156,[3157,3890],[3157,4083],4017,3505,3506,[3157,3829],3157,2707,3221,2770,2771,2770,2771,2706,[2708,550],[3219,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2707,549],3157,3155,3157,3156,3157,3157,2708,3221,2642,2771,3157,3157,2770,3158,2770,2644,3157,3157,3157,2707,3155,3155,3157,3157,[3157,3825],3953,[2643,3957],3157,2707,[3157,550],[3157,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,10147],[415,10148],415,415,415,415,415,415,415,415,415,415,[415,10149],[415,10150,9532,9532],[3250,9625],[3249,9626],3187,3252,3187,3187,3250,3188,3250,3252,3252,[3249,5773],[3249,5774],[3187,5775],[3252,5776],[3186,5777],3187,3188,3188,3252,[3250,9823],[3187,9919],9920,[3187,9725],3187,3188,3186,3185,3249,3251,3187,3186,3186,3188,3252,3249,3249,3251,3252,3250,3252,3251,3187,3185,3249,3250,3186,3252,3251,3252,3252,3252,3188,3249,3185,3185,3187,3249,3249,3188,3249,3187,3249,3186,3186,3249,3251,3251,3250,3250,3251,3188,[3252,9724],9913,[3187,9914],[3187,9818],3251,[3185,5778],[3188,5779],[3252,5780],3249,3252,3249,3186,[2928,2993],3251,3188,3250,3252,3251,3185,3250,3250,3251,3187,3251,3187,3252,[3250,5682],[3185,5683],[3185,5684],3250,3249,[3251,9838],[3252,10027],[10028,9550],[4002,9643],[3488,9644],3999,3486,3937,[3232,4003],3231,3169,[3170,3806],3552,3937,3937,4001,4000,4001,3936,3999,3552,3935,3999,3999,3999,3486,3551,3488,4000,3552,3486,3552,3487,3488,3488,[3552,9649],[3938,9650],[3923,9551],3923,3410,3412,3989,3540,3923,3987,3925,3925,3923,3925,3987,3987,3926,3987,3925,3924,[3987,9655],[3989,9844],[3987,9845],3925,3987,3923,[3145,4055],[3210,3795],[3210,3731],3924,3474,3538,3924,3926,3989,3924,3925,3538,3923,3987,3923,3925,3924,3923,3989,3989,3926,3925,3925,3926,3926,3989,3924,[3987,9754],[3989,9755],[409,9656],409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,10133],[409,10134],[409,10135],[409,10138],[409,10230],[409,10231],[409,10133],[409,10134],[409,10135],[409,10136],[409,10137],[409,10138],409,409,409,409,409,409,409,409,409,[409,10133],10136,[409,10137,70],71,72,[409,10134,73],[409,10135],[409,10138],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9556],[3239,9557],3175,3176,[3175,4004],4006,[3239,4073],3239,3240,3176,3238,[3174,3878],[3240,3879],3176,3238,[3240,3878],[3174,4073],3240,[3174,9550],[3238,9643],[3174,9644],[3176,3814],3941,[3176,4009],3239,3238,3238,[3232,3048],[3169,3045],3240,3174,[3175,3748],3941,[3176,4009],3176,3239,3174,3240,3240,[3238,4004],4006,[3238,4071],[3174,3880],3174,3238,3240,3240,3239,3240,[3175,9550],[3999,9643],[4001,9644],4002,3938,3999,[3937,9553],[3938,9548],3936,3937,3938,4000,[3999,9553],[4000,9453],[4002,9548],3937,4001,3937,3999,[3935,9553],[3937,9453],[3935,9456],[3168,9457],3169,3169,3168,[3168,9452],[3999,9453],[3999,9454],[4001,9455],[3999,9456],[3168,9554],3231,3234,[3170,2980],3238,3238,[3239,3748],3941,4006,[3174,3879],3238,3238,3239,3174,[3175,9649],[3174,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,[2743,9734],2873,2679,3000,3000,2679,2681,2873,2872,[2681,9736],[2808,9737],[2679,9542],2681,3000,2872,2873,2743,3000,2743,2681,2745,2743,3001,3000,2744,2745,2744,2808,2680,2808,2808,3000,3000,2745,3001,2680,2936,2745,2937,2679,2745,2679,[2873,10115,9637],[2744,9730],[2742,9731],2679,2744,3000,2681,2936,2872,2742,2681,3001,3001,2745,2743,3000,2745,3000,[3001,9736],[2873,9737],[10024,9542],[2873,10120],[2745,10214],[2679,10215],2936,2681,2681,2679,2681,2936,2745,2680,2873,2936,2678,2681,2745,2680,2680,2681,2681,2743,2678,2679,[2681,10115,9637],[2745,9730],[2872,9731],2872,2681,2936,2743,2745,2808,2743,3001,2679,[2745,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],[2642,550],2773,3155,3158,3221,3219,2707,2707,2772,2770,2643,2772,3219,[2772,4016],3442,[3158,3828],3155,2770,2708,2708,3156,3156,2771,2708,2706,3219,3155,3157,3157,3158,3157,3157,3157,3157,3157,2707,2771,2706,3157,2706,2773,[3158,3889],4017,4019,[2707,3893],3219,3158,3157,2708,3155,2772,3157,2771,3156,[3157,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2708,613],2770,3219,3158,2772,3157,2644,2707,2706,2644,2770,2708,2708,2770,3157,3219,2707,[3156,3826],[2771,3761],[2708,3828],2770,2707,[3157,3760],[3157,3765],3157,[3157,4016],4018,[3219,3892],2707,3221,3157,3157,[3221,550],[2643,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9283],[415,9284],[415,9284,9628,9628],[3188,9721],[3185,9722],3251,3185,3249,3251,3249,3252,3249,3185,3188,[3250,5869],[3187,5870],[3250,5871],[3185,5872],[3250,5873],3186,3188,3186,[3250,9631],[3251,9632],[10015,9533],[3252,10016],[3187,9821],3186,3251,3186,3250,3251,3185,3250,3186,3186,3187,3187,3251,3252,3250,3252,3188,3252,3185,3251,3185,3249,3251,3249,3251,3251,3249,3187,3251,3186,3186,3250,3251,3186,3249,3252,3186,3185,3249,3187,3251,3250,3250,3249,3188,3249,3250,3187,3251,[3187,9820],[3188,10009],10010,[3250,9625],[3187,9626],3252,3188,3187,3188,3188,3252,3251,3185,3185,3252,3250,3252,3185,3249,3186,3187,3251,3252,3186,3187,3187,[3186,5778],[3187,5779],[3249,5780],3186,3249,3250,3186,[3249,10124,9646],[4002,9739],[3552,9740],3488,3552,3488,3999,[3167,3809],3234,[3231,3870],3935,3938,4001,3938,3936,4001,4000,4002,3552,3935,3553,3936,3938,4000,3937,3488,3999,4002,3486,3938,3488,3938,4001,[3936,9745],[3938,9746],[3924,9647],3475,3923,3989,3987,3925,3475,3925,3474,3987,3923,3923,3989,3989,3989,3987,3475,3926,[3923,9751],9940,[3924,9941],[3925,9845],3989,[3146,3861],3145,[3146,3986],3924,3476,3923,3989,3989,3987,3924,3923,3989,3989,3924,3538,3989,3989,3925,3924,3412,3926,3925,3923,3923,[3987,9357],[3924,9360],3925,3926,[3989,9850],[3987,9851],[409,9656],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,10230],[409,10231],409,409,409,409,[409,10230],[409,10231],[409,10232],[409,10233],409,409,409,409,409,409,409,409,409,409,409,[409,10232],[409,10233,70],71,72,[409,10230,73],[409,10231],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9559],[3175,9652],[3175,9653],3175,3239,[3175,3877],[3238,3880],[3239,9357],[3175,9358],[3240,9359],[3237,9360],[3240,9357],[3176,9358],[3237,9359],[3240,9360],3176,3175,3239,3237,[3174,9452],[3238,9548],3238,[3240,4004],4006,[3240,3879],[3175,3814],[3175,3753],3176,3176,3174,3176,3175,[3175,4004],3559,3942,[3175,3753],3176,[3238,3814],[3175,3750],[3240,3752],3941,[3238,4009],3175,3239,3240,3239,3176,3176,3238,3174,[3176,9646],[3935,9739],[4001,9740],3935,3937,3938,4002,3935,3938,4002,3935,3938,3937,4000,4000,4000,3999,4000,4001,3489,4002,4001,[4000,9553],[3168,9554],[3168,9357],[3168,9547],[3936,9548],3936,3936,3938,[4001,9649],[4000,9650],[3168,9551],3168,[3169,3044],3239,3176,[3240,4004],3944,[3238,4009],3240,3240,3175,[3175,3813],[3176,3815],[3240,9745],[3175,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[2680,10025],[3001,9830],2873,2743,2743,2681,3000,2936,2872,2743,[2679,9832],[2679,9833],[2936,9638],2743,2936,2808,2680,2936,2680,2743,2873,2743,2808,2743,2744,2681,2679,2873,3001,2744,2745,2872,2872,2745,3001,3000,2681,2872,2678,2872,2936,3000,3000,[2679,9637],[2936,9634],[2936,9635],2681,3000,3001,2681,2872,3001,2873,2936,2745,3000,2936,2743,2745,2872,2743,[2743,9832],[2873,9833],[3000,10120,9638],2873,2808,2872,2744,2679,2679,2743,3001,3000,2680,2872,2745,2808,2936,2745,2743,3001,2681,2873,2743,2745,2873,2873,[3001,9637],[2679,9826],[2679,9827],2936,2745,2745,2743,2743,2743,3000,2743,2808,[2745,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,613],3157,3221,3158,2773,3157,3158,3157,3155,2771,3219,3219,2770,3157,[3157,4080],4017,[2643,4021],2708,2708,3158,2770,3157,2773,3219,[3157,557],[3157,614],[3157,742],[3157,678],[3157,558],3157,3157,2642,2708,3156,2707,2834,2835,2771,3157,2770,3157,2707,[3158,3760],3953,3955,[2771,3957],2708,2707,2771,2772,2707,2706,3157,3157,2773,[2772,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,677],2707,2708,2642,3157,3157,3156,2707,2770,[2771,1648],[2770,1649],[2771,1650],3157,2772,2642,3156,2706,[3155,3889],4017,[2708,4021],3158,2706,[3157,4016],3954,3442,3953,3954,[2708,3827],3158,3157,3156,2770,2706,2771,[2708,550],[3158,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9283],[415,9284],[415,9285],[415,9286],415,415,415,415,415,415,[415,9473],[4025,9379],[4023,9380],[3578,9380,9628,9628],[3187,9721],[3187,9722],3251,3252,3185,3187,3251,3188,3252,3250,3252,3187,[3186,5966],[3187,5967],[3250,5968],3249,3187,3186,3185,[3186,9727],[3250,9728],[3187,10111,9629],3185,3188,3186,3186,3185,3250,3186,3250,3185,3187,3251,3185,3250,3188,3252,3187,3250,3186,3186,3252,3252,3251,3186,3252,3252,3186,3187,3251,3250,3185,3251,3249,3187,3188,3251,3252,3187,3187,3251,3187,3188,[3186,9339],[3185,9340],[3249,9341],[3251,9342],3252,3185,3252,3185,3249,3252,3250,[3249,10106,9532],[3252,9721],[3186,9722],3249,3187,3187,3250,3188,[3250,5485],[3185,5486],[3187,5487],[3249,5488],[3185,5489],3188,3251,3185,3250,3251,3187,3185,3187,3185,3251,3252,3185,3188,3250,3187,3185,3185,3250,[3249,9646],[4001,9739],[3551,9740],3488,3486,3487,3938,[3170,3811],3167,[3167,3934],3551,3935,[3234,4063],[3231,4065],[3231,4064],[3234,4063],[3168,4064],3938,3551,3938,3937,3999,3936,3936,3551,3551,3935,3936,3937,3937,3551,3551,3936,[3938,9649],[4001,9650],[3923,9647],3925,3989,3925,3923,3926,3989,3923,3989,3923,3924,3475,3924,3926,3925,3925,3925,3925,[3925,9847],[3923,10036],10037,[3924,9652],[3208,3991,9653],3207,[3210,3795],3925,3989,3477,3538,3538,3925,3411,3538,3923,3924,3923,3987,3989,3602,3603,3924,3989,3989,3987,3925,3926,[3926,9452],[4001,9453],[3937,9456],[3924,9457],[3987,9850],[3989,9946],9947,[409,9752],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,70],71,72,[409,73],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9655],[3175,9748],[3240,9749],3175,3239,3238,[3239,9452],[3238,9453],[3176,9454],[3238,9455],[3174,9456],[3240,9453],[3174,2974,9454],[3240,2975,9455],[3240,3042,9456],[3173,9457],[3174,9357],[3174,9360],[3173,9547],[3176,9548],3174,[3240,3814],3941,[3174,4009],3239,[3174,4004],3559,[3176,3816],3176,3175,3239,[3239,3748],3941,4006,4005,3942,[3240,3749],3941,3557,3431,4006,[3176,3880],3175,3238,3176,3175,[3239,9357],[3238,9360],3175,3239,[3240,9452],[4001,9548],3489,3999,3999,4001,3935,3936,4002,3999,4002,4002,4000,4000,3938,3935,3935,3999,4001,3999,4001,4002,3999,[4001,9553],[3936,9453],[3935,9548],3935,4001,3937,4001,[3935,9745],[3937,9746],[3231,9647],3231,[3167,3172],3238,[3240,3813],3941,3429,3942,[3238,3749],[3239,3815],3176,[3175,4004],3942,[3176,3815],[3175,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2745,10120,9638],2743,2937,3001,2745,2681,2809,2745,2678,2808,[2681,9832],[3001,9928],9929,[2745,9734],2936,2872,2742,2678,2678,2681,3001,3000,2743,2808,2745,2679,3000,2742,2745,2744,3000,3000,3000,2872,2679,2678,2936,2681,2680,3000,2681,2872,2743,2745,[2678,9733],[2744,9730],[2873,9731],2745,2745,2743,2679,2873,2681,2679,2679,2936,3000,2873,2681,2936,3001,[3000,9832],[2742,9928],9929,[2743,9734],3001,3000,2678,2745,2936,2873,2743,2936,2742,2808,2678,2936,2809,2743,2808,3001,3001,2873,2743,2742,2873,2873,2873,[2936,9733],9922,[2744,9923],[2743,9827],2745,2745,2808,2873,2681,2681,2743,3000,[2742,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,677],3157,2772,3156,2706,2708,3221,2770,3221,2770,3221,3158,2772,2706,[2771,3826],3953,[3157,4021],3157,3156,2772,3157,3157,3157,2706,[2706,615],415,415,415,[3157,744],[3157,745],[3157,746],[3157,747],[3157,748],[3157,749],[3157,678],[2898,558],2899,2644,3156,3158,2770,[2770,3760],3953,4020,3442,[2772,4021],2707,2772,2708,3156,3219,2707,[2772,557],[3155,614],[3157,742],[2771,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,741],[3157,742],[3157,678],[3156,558],3157,3157,3219,2706,2772,[2770,3825,1712],1713,[3157,3761,1714],[3219,3765,1715],3157,3219,3221,3157,2707,[2706,4016],3572,[3158,3761],[3155,3827],[3157,3889],4017,4018,[3157,4084],4017,3954,[3157,3761],[3157,3827],2771,3157,3157,2708,3157,3158,[2708,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[3511,9379],[3578,9380],[4023,9381],[3577,9382],[415,9480],[415,9283],[415,9284],[415,9285],[415,9286],[415,9473],[3448,9474],3959,3510,[3578,9628,9628],[3251,9817],[3188,9818],3250,3252,3186,3252,3252,3250,3252,3186,3186,3186,3250,3250,3185,3251,3252,3188,3252,3251,[3252,9535],[3249,9536],[3251,9339],[3250,9340],[3250,9341],[3249,9342],[3186,9339],[3186,9340],[3187,9341],[3188,9342],3251,3252,3186,3252,3186,3252,3187,3249,3185,3252,3250,3251,3250,3187,3250,3185,3250,3251,3250,3252,3249,3250,3249,3186,3187,3187,3251,3252,3185,3188,3186,3250,[3185,9434],[3249,9435],[3186,9436],[3249,9437],[3188,9438],[3252,9439],3249,3250,3250,3250,3250,3187,[3188,9628],[3251,9625],[3251,9626],3188,3251,3252,3186,3186,[3249,5581],[3251,5582],[3185,5583],[3187,5584],[3185,5585],3185,3186,3252,3251,3186,3250,3188,3186,3251,3186,3252,3251,3252,3252,3251,3250,3249,3188,[3187,9547],[4002,9548],3552,3614,3615,4000,4002,[3234,3875],3232,[3167,3872],[3234,4065],[3231,4067],3234,3168,3234,3167,3170,[3231,3998],3488,3938,3936,3488,3935,4001,3999,4001,3488,3938,3937,3551,4001,3999,3937,[3936,9745],[4002,9746],[3926,9647],3989,3926,3926,3989,3987,3925,3926,3925,3923,3987,3923,3475,3476,3989,3989,3475,3411,3987,3923,[3924,10133,9357],[3476,9748,9360],[3987,9749],[3207,3731],3923,3923,3987,3923,3987,3923,3926,3926,3924,3926,3989,3987,3926,3923,3666,3667,3411,3925,3989,[3539,9357],[3923,9360],[3989,9547],[3486,9548],3937,[3488,9649],[3938,9650],[3925,9946,9551],10042,[409,10043],[409,9848],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,70],71,72,[409,73],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9655],[3175,9844],[3176,9845],3239,3240,[3240,9452],[3175,3813,9548],[3174,3749],[3175,3815],3240,3175,3174,[3176,3230],3170,[3238,3043],[3239,9553],[3176,9453],[3174,9456],[3240,9548],3238,3176,[3174,3877],4005,[3176,4009],3239,[3176,3877],4005,[3176,4009],3174,3240,[3176,3813],3941,4006,[3175,4073],[3238,4068],[3240,4072],[3240,4070],[3174,4069],[3238,4072],4005,[3238,4009],3174,3239,3239,3176,[3174,9452],[3938,9453],[3999,9456],[3174,9457],[3238,9452],[4002,9548],3999,4002,3999,4001,4001,3553,4000,4001,3936,3936,3935,4001,3935,3489,4000,3937,[3938,9357],[4000,9358],[3938,9359],[4001,9360],4001,4001,4001,3999,3999,3999,4001,3999,3937,3936,[3935,9553],[3170,9457],[3170,3045],3174,3238,[3239,3812],4006,[3175,4071],[3239,4072],4005,3942,[3175,3753],[3240,4004],3557,[3176,4009],[3240,9649],[3239,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2873,9448],2873,2743,2743,2681,2808,2678,2937,2872,[2679,9640],[2809,9641],[10024,9542],[3000,10025],[3001,9830],2936,2679,2743,2872,2873,3001,2809,2936,2745,2743,2681,2872,2743,2873,2936,2678,2679,3000,3000,2679,2743,2745,2873,2936,2745,2936,2743,2680,3000,[2872,9442],[2937,9443],[3000,9539],3001,3000,2745,2679,2872,2679,2872,2681,2745,3000,2744,2679,2872,2679,[2809,9640],[2808,9641],[10024,9542],[3001,10025],[2681,9830],2681,2681,2872,2743,2808,3001,2745,2936,2745,2808,2678,3000,3001,2680,2745,2873,2873,2936,2809,2679,3001,2743,2745,[2873,9829],[2680,10018],[10019,9541],[2742,9730],[2743,9731],2873,2681,2872,2808,3000,2679,2936,[2743,9733],9922,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],3157,3155,2772,2707,3221,2644,3157,2770,3155,3219,3221,3157,3157,2706,[2708,3824],4018,[2770,3892],3157,2707,3157,[3157,557],[3157,747],[3157,748],[3157,749],[3157,750],415,415,415,415,415,415,415,415,415,415,[2770,613],3157,2772,2772,2771,2770,[2772,3824],3955,3506,4018,[2708,3892],2708,3155,2772,3156,3221,3155,[3221,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,613],3219,3155,3221,3219,3221,[3157,4016,1776],1777,[3505,1778],[3221,4021,1779],[3157,1780],3219,2770,3157,3157,[2708,3889],[2708,4083],4017,3954,[3157,3761],3953,[3157,4021],3157,[3157,3889],[3157,4081],4017,3954,[3157,3828],2707,2772,2772,2644,2708,[2770,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9473],[3446,9474],3446,3511,3961,3962,[3449,9479],[3960,9379],[3447,9380],[3575,9381],[3960,9382],[3577,9474],4026,3446,3577,[3447,9724,9724],9913,[3250,9914],[3185,9818],3186,3249,3249,3187,3249,3250,3187,3187,3250,3250,3249,3186,3187,3251,3250,3186,3249,3187,[3187,9535],[3251,9435],[3185,9436,5485],[3251,9437,5486],[3188,9438,5487],[3187,9435,5488],[3187,9436,5489],[2928,3253,9437],[2928,9438],[2928,3315,9439],[3251,9440],3187,3252,3249,3185,3185,3185,3186,3250,3185,3188,3188,3250,3250,3185,3251,3249,3188,3250,3185,3185,3250,3187,3188,3249,3185,3188,3187,3186,3250,[3186,9529],[3251,9530],3250,3185,3250,3250,[3186,9535],[3249,9536],3251,3185,3186,3185,3252,[3185,9724],[3188,9721],[3249,9722],3250,3251,3187,3252,3187,[3251,5677],[3252,5678],[3188,5679],[3185,5680],[3188,5681],3251,3187,3252,3188,[3186,5490],[3252,5491],[3186,5492],3250,3250,3185,3252,3251,3250,3249,3188,3251,3185,[3251,9550],[4002,9643],[3551,9644],3486,3678,3679,3936,3936,[3170,3939],3233,3231,3168,3231,3170,[3167,3742],[3234,3744],[3233,3745],[3234,3746],4000,3937,3487,3551,4002,4002,3999,3488,3999,4001,3551,3488,3486,4001,3552,3551,[3552,9649],[4002,9650],[3925,9743],3924,3925,3987,3924,3926,[3474,9357],[3923,9360],3923,3989,3923,3474,3923,3923,3926,3475,3923,3926,3926,[3923,9452],[3937,9453],[4001,9456],[3925,9457],3926,3924,3540,3923,3923,3923,3987,3924,3411,3412,3989,3926,3987,3989,3924,3924,3926,3989,3989,[3540,9452],[3938,9453],[3937,9456],[3935,9548],3935,3936,[3999,9745],[3938,9746],[10042,9647],[409,10138],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9264],[409,9265],[409,9266],[409,9267],409,409,409,409,[409,70],71,72,[409,73],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9751],9940,[3175,9941],[3176,9845],[3174,9547],[3240,9548],[3238,4004],4007,[3174,4009],3174,3176,[3176,3040],3167,3233,[3176,3107],3176,[3238,3813],[3175,3816],3176,3175,3176,3238,[3176,4004],3942,[3240,3749],[3175,3753],[3175,4004],3942,[3175,3750],[3176,3752],3941,4006,[3174,3880],3239,3175,3176,3176,3174,3240,[3176,4068],[3175,4073],3240,[3175,9357],[3175,9360],[3174,9547],[3935,9548],4000,3936,[3936,9553],[4002,9548],3935,3999,3999,3999,4002,4001,[3938,9357],[3936,9360],4000,4001,[3936,9357],[3936,9358],[3938,9359],[4000,9360],3938,3937,[3935,9452],[4007,9453],[4006,9454],[3168,3817,9455],[3231,9456],[3937,9554],3425,3937,3937,3999,4001,3937,3936,3999,3938,4000,[4000,9553],[3175,9554],3175,3239,[3176,3876],[3174,4009],3239,3240,[3238,3878],4005,3942,3941,4006,[3175,3880],[3239,9745],[3173,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2808,9545],2872,2745,2679,2873,2872,2681,3000,[2937,9736],[3001,9737],[2808,10120,9638],2872,2936,3000,2873,2809,2742,2808,2872,2679,2873,2743,3001,2679,2743,3000,2873,2809,2872,2937,2742,2873,3001,2681,3001,2679,2808,2743,2808,2808,2872,2872,[2872,9538],[2872,9539],3001,2743,2873,2743,2679,2745,2745,3000,2679,2743,2745,2808,3000,2936,3001,[3001,9736],[2745,9737],[2679,10120,9638],2936,2873,2873,2809,2873,2743,3001,2679,2743,2681,2681,2936,2872,2872,2745,2745,2936,2744,2745,2936,2808,2936,3001,3000,2872,2745,2743,[2936,10115,9637],[3000,9634],[2679,9635],2809,3000,2873,3000,2742,2681,2681,[2809,9829],[2679,10018],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2707,613],2771,3158,2772,2770,3157,3221,3219,3156,2772,3156,2706,3219,3221,3157,[2706,3952],[2708,4021],3155,2706,2770,[3157,1648],[3157,615,1649],[415,1650],415,415,415,415,415,415,415,415,415,415,415,415,[3157,549,1648],[3155,1649],[3157,1650],2770,2707,2707,3219,[3219,3888],3569,3956,3954,[3157,3761],[3157,3827],2772,2707,3221,3219,2706,[3157,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2707,677],3219,3158,2706,3157,3157,[3157,4016,1840],1841,[3442,1842],[3954,1843],[2772,3765],2708,2708,2706,3158,3221,2706,[2773,3890],[3157,4084],4017,3441,[3157,4021],3157,3157,3155,[3157,3889],4017,3954,[2770,3828],2772,3157,3157,3156,[2771,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,9476],[4025,8255],[3578,8256],3447,3448,3447,3578,3577,3578,3961,4025,3513,4023,4023,3446,3448,[3447,9820,9820],[3448,10009],[10010,9532],[3251,9625],[3188,9626],3249,3250,3252,3250,3188,3252,3187,3187,3186,3185,3187,3252,3185,3186,3250,3186,3185,3249,3187,[3249,5581],[3252,5582],[3252,5583],[3250,5584],[3185,5585],[2928,3253],2928,[2928,9535],[2928,3312,9536],[3185,9339],[3251,9342],3186,3251,3188,3187,3188,3249,3186,3250,[3187,9339],[3249,9340],[3188,9341],[3251,9342],3249,3186,3186,3186,3188,3185,3249,3188,3187,3249,3251,3251,3250,3188,[3186,9532],[3250,9625],[3188,9626],3185,[3186,5490],[3186,5491],[3187,5492],3249,[3251,9535],[3250,9536],[3249,9339],[3252,9340],[3251,9341],[3186,9342],[3251,9434],[3251,9530],3187,3252,3187,[2928,3316],3250,3185,[3250,5773],[3252,5774],[3185,5775],[3250,5776],[3186,5777],3188,3252,3249,3187,[3185,5586],[3252,5587],[3186,5588],3249,3185,3188,3250,[3251,5485],[3249,5486],[3187,5487],[3187,5488],[3249,5489],3186,[3251,9646],[4001,9739],[3553,9740],3487,3487,3487,3937,3937,[3169,3873],3233,3231,3231,3232,[3234,3742],4000,4001,3551,3935,3936,3361,3938,3552,3935,4000,4001,3937,3936,3488,4002,3937,4000,3999,3488,3937,3488,[3486,9553],[3475,9457],3926,3926,3926,3987,[3926,9452],[3937,9453],[3937,9456],[3925,9457],3924,3924,3540,3411,3987,[3987,9357],[3925,9358],[3989,9359],[3923,9360],[3926,9547],[3487,9548],3935,[3488,9649],[3938,9650],[3987,9551],3926,3926,3987,3987,3923,3923,3540,3924,3924,3989,3987,3474,3538,[3925,9357],[3989,9358],[3540,9359],[3925,9360],[3540,9547],[3936,9548],3938,3936,4002,4001,3488,[3935,9745],[3938,9746],[409,10138,9743],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9452],[3175,9453],[3174,9454],[3240,9455],[3174,9456],[409,9457],[409,9264],[409,9265],[409,9266],[409,9267,70],71,72,[409,73],409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,409,[409,9847],[409,10036],10037,[3175,9941,9550],[3174,9643],[3239,9644],[3176,3878],[3239,4069],[3238,3879],3174,[3176,3040],3167,3169,3170,[3238,3171],3240,[3239,4004],[3176,4009],3174,3174,3238,3238,[3174,4068],[3239,4069],4005,3942,3941,3944,4006,[3175,4071],[3174,4069],[3240,3880],[3168,3304],[3168,3111],[3167,3110],3174,3239,3174,3239,3238,3239,[3238,9452],[4000,9453],[3999,9456],[3938,9548],4000,3935,3999,4001,4000,3936,4001,3936,4002,3936,[4000,9452],[3234,3817,9453],[3233,9456],[3999,9457],[3999,9452],[4005,9453],[4006,9454],[3167,4009,9455],[3232,9456],[3999,9457],[3937,9547],[3941,9548],3943,3941,[3234,3881],3231,[3233,9650],[3999,9551],4001,3999,3938,3935,4001,4001,4001,4000,4001,[4000,9649],[3936,9650],[3240,9551],3238,[3239,3940],[3240,4009],3175,3176,3174,[3239,4004],4006,4005,[3175,4009],3238,[3240,9649],[3175,9650],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2681,9542],2873,2936,2681,2872,2681,2743,2681,[3001,9544],[2872,9545],3000,2681,2872,2873,2808,2681,2808,2678,2681,2809,2808,2678,2872,2679,2745,2744,2743,3000,3001,2745,3000,2872,3000,2873,2678,3001,2679,2679,2936,2744,[2936,9541],[2679,9634],[2936,9635],2873,3001,2873,3001,2743,3001,2679,2678,2808,2872,2872,2873,3000,2681,2872,[2745,9640],[2745,9641],[2745,9638],2808,2681,2936,2681,2745,3001,3001,2808,2681,2808,2742,2745,2743,2745,2745,2872,2743,2679,3001,2873,2937,2679,2872,2936,2681,3000,2743,[2936,9637],[2936,9730],[2873,9731],2681,2743,2679,2681,2808,2744,2745,2873,2873,[2742,10115,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2706,677],2644,3157,3155,3158,3219,3219,3158,2773,[3157,1648],[3157,1649],[2708,1650],2708,3155,[2773,3825],3953,[2707,4021],2708,3219,3155,[3157,1712],1713,[415,1714],[415,1715],415,415,415,415,415,415,415,415,415,415,415,[3219,613,1712],1713,[3219,1714],[3158,1715],3221,2770,3221,[3156,3952],3955,4018,[3157,4082],4017,3954,[3158,3761],[2643,3828],2770,3156,2706,2707,[2706,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],2707,2771,3221,3156,3158,3155,[2644,4080,1904],[2707,4084,1905],[3221,4083,1906],4017,3954,[2706,3827],3221,2644,2770,3155,3155,3219,3157,[3157,4016],4018,[3157,4085],3157,3157,3155,3155,[3157,3890],3571,[2772,4021],3221,2770,2708,2708,3156,[3157,550],[3157,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],[3447,8351],[4024,8352],4026,3510,3447,3446,4024,3578,3447,3447,4024,4026,4023,4026,3959,3578,4023,[4026,10106,9628],[3186,9721],[3250,9722,5485],[3185,5486],[3185,5487],[3188,5488],[3251,5489],3250,3250,3252,3251,3188,3250,3186,3188,3188,3250,3251,3187,3252,3185,3249,[3252,5677],[3251,5678],[3252,5679],[3185,5680],[3186,5681],3252,[2928,2993],[2928,3060],[2928,9535],[2928,3248,9435],[3251,9438],[3188,9439],3252,3249,3251,3252,3188,3250,[3251,9434],[3187,9435],[3187,9436],[3186,9437],[3251,9438],[3250,9536],3186,3187,3249,3251,3250,3250,3249,3252,3187,3185,3249,3186,3252,[3185,9628],[3249,9721],[3251,9722],3252,[3251,5586],[3249,5587],[3188,5588],3187,3188,[3186,9535,5485],[3188,9435,5486],[3251,9436,5487],[3251,9437,5488],[3252,9438,5489],[3249,9530],3187,3188,3185,[2928,3124],2928,[2928,3056],3186,[3249,5869],[3187,5870],[3251,5871],[3185,5872],[3250,5873],3252,3251,3188,3188,[3251,5682],[3185,5683],[3250,5684],3252,3249,3186,3188,[3187,5581],[3252,5582],[3188,5583],[3187,5584],[3251,5585],3250,[3251,9646],[4002,9643],[3937,9644],3938,3552,3935,3487,3999,[3169,3743],[3170,3810],3168,3167,[3167,3742],[4002,9552],3552,3937,3552,3938,3552,4000,3999,[3999,9549],3486,4001,4001,[3231,4003],[3234,4062],[3169,4065],3936,4000,4000,3937,3937,3551,3552,3938,[3938,9553],[3923,9554],[3540,9357],[3987,9360],[3926,9547],[3487,9548],4002,4001,[3935,9553],[3925,9554],3989,3924,3926,[3987,9547],[4002,9453],[4001,9454],[4001,9455],[3938,9456],[3936,9548],3487,3938,[3938,9745],[4002,9746],[3539,9647],3926,3412,3411,3926,3925,3925,3923,3476,3925,3925,3925,3923,[3987,9452],[3938,9453],[4002,9454],[3937,9455],[3938,9456],[3936,9548],3487,3935,4001,3488,3936,3552,3486,[3552,9553],[409,9554],[409,9264],[409,9267],409,409,409,409,409,[409,9264],[409,9267],409,409,409,409,409,[409,9264],[409,9265],[409,9266],[409,9265],[409,9267],409,409,409,409,409,409,409,409,409,409,409,[409,9547],[3238,3814,9548],[3175,3749],[3176,3753],3174,3176,[3174,3814,9553],[3174,3816,9453],[3240,9454],[3176,9455],[3239,9456,70],71,72,[409,73],409,409,[409,9264],[409,9267],409,409,409,409,409,409,409,409,409,409,409,[409,9264],[409,9265],[409,9266],[409,9267],409,409,409,409,409,409,409,409,409,409,409,409,[409,10133],[10037,9646],[3176,9739],[3240,9740],3175,3239,3174,[3175,3039],3167,3234,3233,3232,[3175,3105],3176,[3238,3877],[3176,3879],[3238,3814],[3238,3750],[3239,3751],[3239,3752],[3239,3753],3174,[3240,3878],[3240,4071],4005,4006,[3240,3879],[3168,3303],[3169,3304],[3167,3112],3232,3232,3170,[3169,3236,3813],[3174,3753],3174,3238,3176,[3174,9547],[4000,9548],3937,4001,4001,3935,4002,3553,3935,4000,3935,3936,3936,3936,[4000,9547],[3944,9548],[3170,3881],3170,[3233,9553],[3231,3813,9548],3942,4007,3941,[3232,3815],[3169,9553],[3233,3813,9548],4006,3941,4007,[3231,3945],[3233,9649],[3232,9650],[4000,9647],4002,3999,3938,3938,3936,4000,3999,3935,3935,[3936,9745],[3935,9746],[3174,9647],3174,[3240,4004],3942,[3238,3753],3240,3176,[3175,3878],[3238,4073],[3176,3878],[3174,3880],3238,[3175,9745],[3175,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2743,9638],2872,2873,2742,2745,2743,2742,3001,[2745,9640],[3000,9641],[2872,9542],2681,2681,2937,2743,2679,2872,3001,2679,[2742,9348],[2742,9351],2936,3001,2745,3000,2873,2872,2681,2872,2936,2745,2679,2808,2679,3001,2745,2680,2873,2744,2873,[2681,9637],[2681,9730],[3000,9731],2745,2745,3000,2743,2873,2681,2678,2743,2743,2681,2681,2936,2872,2936,2744,[3000,9736],[2936,9737],[2745,9638],2679,2873,2936,2681,2679,2744,2745,3000,2872,3000,2679,2872,2681,2872,2872,2743,2809,3000,2681,2679,2743,2681,2679,2809,2808,2936,3001,[2680,9637],[3001,9634],[2936,9635],2743,2745,2681,2936,2678,2743,2872,2679,2743,[2743,9443],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,741],[3157,742],[3157,678],[2706,558],2708,3156,2707,3157,2708,[2772,1712],1713,[2773,3825,1714],[3156,3761,1715],[2772,3761],3953,4018,[2773,3891],3156,2643,3158,[2771,1776],1777,[3157,3827,551,1778],[415,1779],[415,1780],415,415,415,415,415,415,415,415,415,415,[3157,3760,677,1776],1777,[3157,3827,1778],[3157,1779],[3157,1780],[3157,3826],[3157,3761],3953,4018,[3157,4085],2706,[3157,3890],[3157,4081],4017,3954,[3219,3827],2771,2644,2707,3155,[3157,550],[3157,550],[3157,551],415,[3157,549],[3157,550],[3157,551],415,415,[2772,549],[3158,550],[3157,550],[3157,550],[3157,551],415,415,415,415,415,415,415,415,415,415,415,415,[3157,613],2772,2770,3158,3157,3219,3158,2770,2707,2706,[3155,3890],4017,3954,[3157,3761],[2642,3827],3157,3155,3158,[3156,3760],[3157,3761],3953,[3157,4021],3157,3156,2770,2772,3221,3157,[3157,4016],[3157,4021],2708,2772,2771,3221,3156,2642,[3157,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8063],8064,[3447,8160],3448,3512,4026,4025,3449,3447,3447,3448,3447,3578,3576,3446,3512,4024,4025,3511,[3512,9529],[3250,9530],[3252,5581],[3251,5582],[3252,5583],[3188,5584],[3187,5585],3251,3249,3188,[3186,5490],[3251,5491],[3188,5492],3250,3249,3186,3188,3249,3188,3188,3185,3187,[3186,5773],[3249,5774],[3252,5775],[3251,5776],[3249,5777],3187,3250,[2928,3253],2928,[2928,3121],3252,[3187,9535],[3249,9536],[3188,9339],[3187,9342],[3185,9339],[3250,9342],[3250,9434],[3249,9530],3252,3250,3187,[3187,9631],[3185,9632],[3250,9533],3250,3250,3250,3185,3186,3185,3187,3250,3187,3185,3249,3187,[3187,9628],[3249,9625],[3188,9626],3186,[3250,5682],[3249,5683],[3251,5684],3188,3185,[3251,5581],[3249,5582],[3250,5583],[3186,5584],[3251,5585],3186,3250,3252,[2928,3123],2928,2928,[2928,3184],3249,3188,[3252,5966],[3251,5967],[3185,5968],3251,3251,3188,3188,3185,[3251,5778],[3188,5779],[3252,5780],3185,3187,3188,3188,[3251,5677],[3186,5678],[3251,5679],[3186,5680],[3249,5681],3251,[3252,9742],[4002,9739],[3552,9740],3553,3552,4002,3488,3486,3937,[3167,4067],3169,[3168,3808],4000,[3935,9648],[4001,9551],3999,3938,3488,3999,3487,[3551,9550],[3552,9645],3935,3935,[3169,4066],[3167,4067],3231,3168,[3232,3998],3937,[3232,4065],[3232,4064],[3231,4066],3488,3486,3486,3552,[3935,9553],[3937,9453],[3938,9456],[4001,9548],3488,4002,4000,4000,[3936,9553],[3924,9457],[3411,9357],[3987,9360],[4002,9643],[3486,9644],4002,3552,3551,4000,4002,3552,3486,[4000,9553],[3924,9554],3926,3926,3926,3925,3924,3925,3538,3476,[3989,9357],[3925,9358],[3987,9360],[3987,9547],[3487,9548],4002,3999,4001,4000,3937,4002,3999,3938,3936,3999,3999,3551,3936,[3938,9553],[4000,9453],[3937,9456],[409,9457],409,409,409,[409,9547],[4001,9453],[3937,9456],[409,9554],409,409,409,[409,9452],[3239,9453],[3176,9454],[3174,9455],[3174,9454],[3239,9456],[409,9457],409,409,409,409,409,409,409,409,409,[409,9550],[3174,9643],[3239,3878,9644],4005,3942,[3238,3749],[3176,3749],3941,3942,[3175,3749],[3238,3753],[3239,70],71,72,[409,9264,73],[409,9267],[409,9452],[3175,9453],[3240,9456],[409,9457],409,[409,9264],[409,9267],409,409,[409,9264],[409,9265],[409,9266],[409,9267],[409,9452],[3175,9453],[3176,9454],[3175,9455],[3175,9456],[409,9457],[409,9264],[409,9265],[409,9266],[409,9267],409,409,409,409,409,409,409,409,[409,10133,9547],[3176,9548],3239,3240,[3175,3040],[3174,2975],3167,3169,3233,3234,[3239,3235],3174,3239,3174,[3176,3813],3941,3557,3493,3428,[3240,3817],3239,3240,[3238,3814],3941,[3238,4009],[3233,3049],3231,3232,3170,3167,[3169,3046],[3232,2981],[3175,4004],3942,[3175,3753],3175,[3174,9550],[3936,9643],[4001,9644],3938,3937,4002,4000,4002,3936,3936,4002,3936,4001,3937,[3935,9550],[4007,9643],[4005,9644],[3232,3945],3170,3169,[3170,4004],4006,4005,3944,4007,[3234,3749],4006,3941,3944,3943,[3231,3880],[3170,9745],[3234,9746],[3999,9647],3999,4000,3937,3935,4002,3937,3999,4002,3936,[3938,9745],[4001,9746],[3240,9647],3175,[3174,3878],4005,[3175,4009],3239,3174,3174,3240,3240,3174,3239,[3239,9841],[3237,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2681,9638],2808,2743,3000,2742,3001,2936,2745,[2679,9736],[3000,9737],[2872,9638,9348],[3000,9349],[3001,9350],[2680,9351],[2681,9348],[2742,9349],[2679,9350],[2679,9351],[2745,9443],[2679,9444],[3001,9447],[2678,9448],2678,2872,2742,3000,2936,2743,2678,2745,2744,2680,[3000,9348],[3000,9349],[2679,9350],[2679,9351],[3000,9348],[2679,9349],[3000,9350],[2742,9351],[2742,9538],[2679,9539],2873,3000,2743,2808,2808,3000,2680,2873,2679,3001,2679,2745,2808,2743,3001,3000,[2808,9640],[2936,9641],[2681,9638],2679,2936,2681,2679,2873,2679,2872,2742,2744,2872,2743,3001,2679,2936,2679,2744,2873,2872,2678,3000,2742,2936,2872,2744,3000,3000,[2681,9348],[2743,9637,9351],[2745,9730],[2873,9731],2743,3001,2873,2742,3000,2679,2681,3000,[3000,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,613],3157,2772,3158,3219,[3157,3760],[3157,3761,1776],1777,[3953,1778],[3572,1779],[3219,4082,1780],4017,3954,[3156,3761],[3157,3765],2706,3156,[3157,3826,1840],1841,[3157,4021,615,1842],[415,1843],415,415,415,415,415,415,415,415,415,415,415,[3157,4016,613,1840],1841,[3157,4021,1842],[3157,3826,1843],[3157,3761],3953,3440,4018,[3219,3891],2771,2770,2772,3157,[3157,4080],4017,[2772,4021],3156,3221,2772,3158,3221,3221,2706,[3157,550],2770,2770,2771,[2706,550],[3219,550],3156,3158,3157,3157,3157,[3156,551],415,415,415,[3157,549],[3157,550],[3157,550],[3157,551],415,415,415,415,[3157,677],3157,3219,3219,3221,3158,3156,2643,3157,2642,3158,[3157,3824],3440,3568,3954,[3157,3762],[3157,3763],[3157,3764],3442,4018,[3157,4082],[3157,4085],3155,3156,3155,3157,2708,3157,[3157,3890],[2644,3891],3221,3156,3155,2771,3156,3157,[3157,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,7969,7972,8159,[3510,8160],3578,4023,4023,4025,4026,3447,4023,3447,3448,3446,3574,3960,3577,3574,4026,3578,[3512,9532],[3251,9625],[3252,9626],[3252,5677],[3187,5678],[3187,5679],[3249,5680],[3185,5681],3188,3249,3250,[3186,5586],[3250,5587],[3187,5588],3186,3186,3186,3187,3186,3186,3250,3252,3186,[3250,5869],[3250,5870],[3250,5871],[3250,5872],[3251,5873],3188,3250,3251,[2928,3059],2928,[2928,3248],3188,[3185,9535],[3252,9435],[3250,9438],[3187,9435],[3252,9438,5485],[3252,9530,5486],[3188,5487],[3249,5488],[3186,5489],3188,[3252,9727],[2928,3317,9728],[3250,9629],3252,3186,3252,3186,3251,[3188,9434],[3185,9439],[3188,9440],3186,3249,3185,3249,[3185,9724],[3250,9721],[3250,9722],3249,[3249,5778],[3251,5779],[3251,5780],3251,3187,[3251,5677],[3252,5678],[3249,5679],[3186,5680],[3185,5681],3251,3187,[2928,3317],2928,2928,[2928,3057],3185,3252,3187,3252,3185,3186,3250,3251,3252,3250,3187,3186,3185,3188,3249,3188,3188,3249,[3249,5773],[3249,5774],[3249,5775],[3251,5776],[3251,5777],3185,[3186,9547],[4002,9548],4001,3999,3551,3487,3487,3935,[3170,3874],3232,3231,[3232,3998],[4001,9841],[3999,9842],[4000,9647],3999,3488,3486,3486,3487,[4002,9646],[3935,9835],[3168,4066,9836],[3234,3873],3170,3170,3232,3233,[3169,3998],[3233,4003],[3231,3742],[3232,3747],[3168,3808],3938,4001,3551,3552,3486,3551,3935,3486,3552,3552,3551,4000,3488,[3486,9553],[4002,9453],[3487,9456],[4001,9548],3937,3552,3487,4001,3487,3552,3487,3488,3488,[3937,9553],[3924,9554],[3987,9357],[3926,9360],3926,3925,3987,3925,[3987,9452],[3937,9453],[3937,9454],[3938,9456],[3552,9548],3936,4001,3936,4000,3552,4002,3935,3487,3487,4002,4001,3938,3936,3488,3552,3936,3938,[3938,9553],[409,9554],[409,9264],[409,9267],[3937,9739],[4001,9740],[3938,9649],[4002,9650],[409,9264,9551],[409,9267],[409,9547],[3176,9548],3176,[3238,3748],[3176,3749],[3174,3753],3238,[3175,9553],[409,9457],409,409,409,409,[409,9264],[409,9267],409,409,[409,9646],[3176,9739],[3176,9740],[3239,3877],[3174,4072],[3238,4070],4005,4006,4005,3492,3942,[3240,3749,70],[3753,71],72,[3175,9453,73],[3175,9456],[3176,9548],3240,[3239,9649],[3238,9650],[409,3814,9551,9452],[3174,3816,9453],[3174,9456],[409,9457],[409,9452],[3174,9453],[3238,9454],[3748,9455],[3239,3815,9456],[3175,9548],[3176,3813],[3174,3815],3239,3238,[3240,9553],[3174,9453],[3176,9454],[3240,9455],[3175,9456],[409,9457],[409,9264],[409,9265],[409,9266],[409,9267],409,409,[409,9550],[3238,9643],[3174,9644],3239,[3175,2974],3167,3233,3234,3234,3169,3234,3168,[3174,2979],3239,3240,[3175,3812],3430,3943,3429,3558,[3238,3945],3238,3176,[3238,3812],4006,[3240,4073],[3233,3177],3231,3169,[3169,2980],[3232,2981],3238,3174,[3239,4068],[3238,4069],[3176,3880],3174,[3175,9646],[3936,9739],[3935,9740],4001,3938,3937,3937,3935,4002,3935,3999,3935,3935,4001,[3937,9646],[4008,9739],[3944,9740],4008,[3232,3815],[3167,3813],3944,4008,3941,[3170,4069],[3168,4070],[3169,4071],3944,3943,3944,[3234,4009],3167,[3231,9841],[3233,9842],[3937,9647],4001,3935,3935,3936,4000,3935,3937,4000,3936,[3938,9841],[4002,9842],[3174,9647],3240,3175,[3176,4004],3942,[3240,3749],[3238,3816],3239,3238,3175,3176,[3174,9841],[3237,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[3001,9734],2873,3000,3000,2936,2872,3000,2872,2679,[3001,9544],[2679,9444],[2743,9445],[3000,9446],[3000,9447],[2743,9444],[2680,9445],[2745,9446],[3001,9447],[2745,9539],2745,2678,[2808,9544],[3001,9545],[2679,9348],[2808,9349],[2743,9350],[3000,9351],[2743,9348],[2808,9349],[2743,9350],[2743,9351],[2873,9443],[2681,9444],[2873,9445],[2744,9446],[2808,9447],[2872,9444],[2936,9445],[3001,9446],[3001,9447],[2872,9539],3001,3001,2873,2745,2681,2679,3000,2680,2743,3001,2936,3000,2681,2745,3001,2745,3001,[2681,9736],[2808,9737],[3000,9734],2681,2808,3000,2872,2873,2743,2679,2937,2745,2679,2873,2936,2873,2679,2872,2745,3001,2936,2872,2872,2679,2679,3000,2872,[2743,9442],[2679,9443],[2681,9444],[3001,9447],[3000,9539],2936,2808,2745,2873,2679,2872,2936,2745,2681,[2681,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2772,677],2770,2643,3219,3157,[3221,4016],[3569,1840],1841,[3568,1842],[3157,4021,1843],3155,[2706,3890],[2770,4082],4017,3954,[2707,3761],[2706,3761],[3953,1904],[4018,1905],[3157,4085,679,1906],415,415,415,415,415,415,415,415,415,415,415,415,[3157,3890,677,1904],[4017,1905],[3954,1906],3953,4018,[3157,4084],4017,[3157,4021],2770,3156,3156,2772,3219,[3157,3760],3953,[3155,4021],2771,2707,2772,3157,2772,3157,3158,2772,3155,2772,3158,2644,3221,2770,2644,2706,2772,2706,3221,[3155,550],[2706,550],[3157,550],2707,3157,3157,3156,[3157,551],415,415,[2707,549],3157,2643,2772,2708,3157,2707,2707,2706,3221,3156,2770,[3157,3888],4018,[3157,4081],[3157,4083],[3157,4082],[3157,4081],[3157,4083],[3157,4084],[3157,3892],2771,2770,2772,3221,3157,3219,3221,3219,2770,2708,3157,3155,3156,3157,3155,3157,[3157,679],415,415,415,415,415,415,415,415,415,415,415,415,[415,8063],8064,[3447,8065],[3448,8068],[4023,8160],3576,3448,3959,3446,3448,3448,4025,3510,3575,3577,3576,4026,3960,3510,3578,3578,3511,[3446,9628],[3188,9721],[3188,9722],[3251,5773],[3186,5774],[3251,5775],[3252,5776],[3252,5777],3187,3251,3188,[3185,5682],[3187,5683],[3250,5684],3186,3187,3185,3252,3249,3249,3250,3249,3252,3249,[3250,5966],[3185,5967],[3186,5968],3185,3249,3187,[2928,3316,5485],[2928,3123,5486],[2928,5487],[2928,3312,5488],[2928,3313,5489],3249,3251,3249,3251,[3186,5581],[3187,5582],[3251,5583],[3250,5584],[3185,5585],3186,[2928,3123],[2928,9535],[3186,9536],[3186,9339],[3185,9340],[3186,9341],[3185,9342],[3186,9529],[3250,9530],[3252,9535],[3251,9536],[3249,9339],[3249,9340],[3185,9341],[3186,9342],[3188,9434],[3187,9530],3252,3252,3185,3249,3252,3188,3251,[3252,5773],[3186,5774],[3252,5775],[3188,5776],[3185,5777],[2928,3316],[2928,3124],2928,[2928,5485],[2928,2992,5486],[3186,5487],[3187,5488],[3187,5489],3251,3250,3249,3185,3185,3252,3251,3185,3249,3251,3251,3250,3188,3187,3185,3188,[3249,5869],[3188,5870],[3250,5871],[3188,5872],[3187,5873],[3252,9550],[4002,9643],[3552,9644],3936,3999,3551,3486,3935,[3168,3874],3233,3231,3232,[3231,3998,9841],9937,9938,[4002,9743],3937,[3232,4063],3936,3487,4002,[3937,9742],9931,[3169,3747,9932],[3168,9933],[3231,9934],[3168,9935],[3232,9936],[3232,9836],[3233,3872],[3170,3873],[3169,4062],4001,4002,3551,3553,3551,3489,3486,3552,3937,3488,4002,3999,3487,3935,3551,4001,3487,3551,3487,3551,3935,3937,[3170,4066],[3233,4064],3936,3488,3486,3938,3935,[3938,9553],[3937,9453],[3937,9456],[3924,9457],[3924,9357],[3923,9360],[3411,9547],[3935,9548],3999,3937,3486,3936,3937,3486,3486,3487,3488,3487,3999,3936,3937,3935,3486,4001,3551,3552,3935,3487,4000,3935,[3937,9553],[3937,9453],[3938,9456],[3486,9548],3938,[4001,9841],[4000,9553,9842],[3175,9453,9647],[3175,9456],[3238,9548],3174,3176,[3175,4004],4006,[3176,4073],3238,[3240,3748],[3240,3816,9553],[409,9554],[409,9264],[409,9267],[409,3813,9452],[3175,3753,9453],[3174,9456],[409,9457],[409,9264],[409,9742,9267],[3239,9739],[3174,9740],[3175,3039],[3240,3041],3240,[3239,4068],[3176,4073],[3175,3878],[3174,4071],[3238,4071],[3240,4072],[3238,3880],3175,3174,3238,3176,3175,3239,[3175,3748,9553],[3941,9548],[3240,4009],[3240,3813],[3174,3749,9553],[3240,3815,9548],3238,3240,[3176,4004],[3174,4009],3174,[3240,4004],[3238,4009],3175,3239,[3240,3814],[3238,3815],3238,3240,3240,[3174,3813,9553],[3240,3753,9453],[3174,9454],[3174,9455],[3240,9456],[409,9457],[409,9357],[409,9742,9360],[3175,9739],[3176,9740],[3176,3040],3167,3234,3170,3232,[3238,3295],3231,3169,3169,3168,[3176,3042],3238,[3174,3940],3557,4006,[3238,4069],[3176,4069],[3238,4073],3239,3239,[3176,3940],[3238,4009],3175,[3170,3305],3170,3233,[3233,3236],[3238,3748],[3174,3753],3176,3176,3176,3239,3240,[3239,9646],[3938,9835],[3999,9836],3935,4001,3938,3937,4000,4001,3938,3938,3937,4000,4001,[3938,9646],[4006,9835],[4008,9933],[3944,9934],[3943,9836],4005,4008,3944,[3170,4009],3170,3231,3233,[3233,3877],4006,4006,3944,[3167,3815,9841],[3232,9937],9938,[4000,869,9743],3938,4001,3935,3938,4000,3936,4002,4000,[4000,9841],[3937,9937],9938,[3239,9743],3240,3238,[3174,3878],4005,3495,[3240,3879],3176,3176,3176,[3175,9649],[3240,9650],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2936,9545],2745,2872,2872,2873,2873,2678,3001,2745,2743,2873,2679,2679,3000,2936,2808,2743,3000,2678,2808,2936,2681,[2745,9544],[2743,9444],[2808,9445],[3000,9446],[2936,9447],[3001,9444],[2936,9445],[2808,9446],[3001,9447],[2681,9539],2745,3001,2744,2681,2681,2937,2745,2745,3001,3000,2679,2680,2743,3001,2681,2679,2681,2681,2936,3000,2745,2936,2936,2745,3001,2808,2936,[2936,9544],[3001,9545],[3001,9348],[2936,9351],2936,2936,3000,2679,2872,2679,2873,3000,2872,2742,2679,2808,2872,2808,2680,3000,2743,2743,2808,2936,2743,2745,[2743,9538],[2745,9539],2873,2808,2745,2679,2808,2872,2743,2679,2937,2745,2936,3000,[2873,9443],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],2770,3155,2707,2707,3219,[3221,4080],[3157,4084,1904],[3157,4084,1905],[3157,4083,1906],[3219,3891],2772,2771,3221,[3155,3889],[3221,4081],[3219,4083],4017,4018,[3155,4085],2708,[3157,551],415,415,415,415,415,415,415,415,415,415,415,[3157,677],[3157,4080],[3157,4081],[3157,4084],[3157,4085],3157,[3157,4016],3954,[2771,3765],3219,2770,3155,2707,[2772,4080],[2708,4083],[2770,4085],3155,3156,[3219,3826],[3157,3761],[3156,3827],2707,2771,3221,3158,2643,3221,2770,[3157,3825],[3156,3828],2708,2707,2708,2707,2772,[3219,3826],[2708,3827],2773,2771,3158,2708,2708,2773,[3221,550],[2770,550],3219,3157,3157,3221,3155,3221,3156,2708,2771,2708,2707,3157,[3157,3952],[3157,4021],3157,3157,[3157,3825],[3157,3761],[3157,3761],[3157,3827],3157,2772,[3158,1648],[2707,1649],[2642,1650],2771,[3219,3051],[3157,2987],[3219,2991],2772,3155,[3157,3052],[3157,3053],3158,2707,[3155,557],[3157,614],[3157,743],415,415,415,415,415,415,415,415,415,415,415,415,8159,[3510,8160],3578,3960,3962,3961,3576,3576,4023,3447,3512,3960,3574,4026,3577,3448,3576,3447,3447,3511,4024,3448,[3447,9628],[3250,9721],[3251,9722],[3252,5869],[3188,5870],[3185,5871],[3187,5872],[3250,5873],3186,3185,3188,[3186,5778],[3250,5779],[3186,5780],3185,3251,3188,3186,3186,3188,3250,3187,3187,3188,3186,3252,3249,3251,3186,[2928,3317],[2928,5581],[2928,5582],[2928,5583],[2928,5584],[2928,5585],[2928,3248],3249,3186,3188,[3249,5677],[3185,5678],[3186,5679],[3187,5680],[3252,5681],[2928,3253],2928,2928,[2928,3057,9535],[3251,9435],[3186,9436],[3249,9437],[3252,9438],[3252,9530],3185,3249,[3186,9535],[3251,9435],[3185,9436],[3188,9437],[2928,3315,9438],[2928,3316,9530],3252,3185,3251,3251,3250,3250,3252,3185,[3252,5869],[3251,5870],[3249,5871],[2928,3316,5872],[2928,3317,5873],2928,2928,2928,[2928,3057,5581],[3250,5582],[3249,5583],[3185,5584],[3187,5585],3186,3250,3188,3249,3187,3250,3187,3250,3185,3186,3186,3186,3249,3186,3187,3187,3251,[3188,5966],[3186,5967],[3188,5968],3251,[3252,9646],[3938,9739],[3169,4065,9740],3935,3551,4002,4002,3550,[3233,3809],3167,3168,[3233,3807,9841],[4002,9937],10033,[3938,10034],[4001,9839],4001,[3233,3810],[3167,4062],3938,4000,[3937,9838],[3936,10027],10028,10029,10030,10031,10032,[3167,9932],[3234,9836],3167,3167,[3233,3998],3486,4000,3936,3488,3937,3935,3552,3618,3619,3937,3487,3486,3553,3935,3999,3488,3552,4001,4002,3935,[3231,3874],3232,3168,[3168,3998],3935,3938,3486,3935,3553,3487,3551,[3935,9553],[3937,9453],[3937,9456],[3486,9548],3487,4001,3552,3487,3488,3488,4000,3935,3486,3487,3551,3552,3488,3551,3938,3937,3938,4000,4001,3488,3551,4000,3936,4002,3551,4002,3488,[3937,9649],[3937,9650],[9938,9551],[3175,9743],3238,3240,3175,[3175,3814],3941,3942,[3176,3749],[3176,3815],[3174,3878],[3240,3879],[3240,3813,9553],[3238,3749,9453],[3239,3749,9456],[3941,9548],[3239,4009],3240,[3239,9553],[3176,9453],[3176,9456],[3240,9548],[3240,3039],3167,[3239,3235],3176,3240,3175,3176,3176,3240,3240,3176,3176,3240,3238,3240,[3174,3748],[3239,3749],3941,4006,[3174,3880],[3176,4068],4005,3942,[3238,3815],3176,[3176,4004],3942,[3174,3749],3941,[3176,4009],3240,3176,[3240,4004],3942,[3238,3750],[3174,3751],[3240,3752],3941,3942,[3240,3750],[3238,3750],[3174,3751],[3239,3752,9553],[3176,3753,9453],[3239,9456],[3239,9548],3238,[3174,3230],3169,3233,3232,[3239,3105],3174,[3240,3104],3231,3170,3234,[3175,3235],3238,[3175,3878],4005,[3176,3817],3240,3175,3176,3174,[3174,3748],3941,[3174,4009],3174,[3168,3047],3231,[3232,3045],[3175,3814],3429,[3174,4009],3175,3174,3239,3240,[3176,815],[3239,870,9742],9931,[3938,9932],[4001,9836],4000,3936,4001,3938,3937,3935,3938,4000,3938,3935,[3935,9742],9931,10029,10030,[3943,9932],[3943,9836],3942,4008,3942,[3234,3816],3234,3169,3232,[3232,4068],[3167,4069],[3942,9649],[3941,9650],10033,[607,10034],[4002,933,9839],4001,3935,3489,3937,3935,4000,3937,[3937,9745],[3938,9746],[10033,9551],[3240,10034],[3174,9839],3238,3175,3238,[3240,4004],3942,[3174,3815],3175,3238,3238,[3240,9745],[3175,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2745,9542],3000,2808,2808,2745,3000,2743,3001,2808,2681,2745,2745,2679,2681,2743,2745,2744,2808,2743,3001,2873,2872,3000,2873,2743,2873,2873,2872,2742,2680,2809,2744,2936,2808,2872,2679,2808,2808,2873,2809,2936,2679,2679,2681,2743,2678,3001,2873,2873,3000,2679,2681,2743,2937,2872,2742,2743,2873,2745,[2872,9544],[2679,9444],[2936,9447],[2872,9448],2678,2742,3000,2681,2743,2678,3000,2679,2743,2743,[2936,9348],[2937,9349],[3000,9350],[2872,9351],2745,2681,3000,2745,2936,[2936,9442],[2681,9443],[3001,9539],2872,2872,2681,2873,3000,3001,2681,3001,3001,2808,[2808,9348],[2744,9351],[2743,9538],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3221,613],3156,2708,3219,3221,3155,2772,3157,3157,3157,3158,3157,3157,3157,3156,2708,3155,[3157,4016],[2707,4021],2772,3221,3157,[3157,550],[3157,550],[3157,550],[3157,550],[3157,551],415,415,415,415,415,[3157,549],3157,3157,3157,3157,3219,3157,[3157,3890],4017,[2770,4021],3156,2772,2772,2771,2706,2708,2708,2773,3157,[3157,4016],3441,[2708,3891],3221,2770,2770,2706,3155,3221,3155,[3157,4016],[3157,3829],2707,2770,2770,3156,[3157,3826],3442,[3157,4021],3158,3157,3155,2770,3158,3157,2642,3156,3157,3221,3157,3156,3219,2771,3157,2706,2708,3221,3157,[3157,3826],3953,3954,[3157,3761],[3157,3761],3953,4018,4017,3954,[3157,3761],[2770,3828],[3155,1712],1713,[3157,1714],[3157,3052,1715],3245,3182,3246,[3157,3054],[3157,3051],3244,3245,[3157,2991],2708,[3158,615],415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8162],[4024,8255],[3446,8256],3510,3578,3577,3960,3576,3446,3446,3512,3961,4025,3578,4025,3446,3447,3578,3448,3448,3447,3960,3574,[3577,9628],[3249,9625],[3186,9626],3251,[3187,5966],[3187,5967],[3187,5968],3186,3187,3251,3187,3186,3188,3188,3186,3250,3188,3186,3249,3249,3249,[3251,5490],[3188,5491],[3252,5492],3251,3251,3250,3185,[2928,3061],2928,[2928,5677],[2928,2992,5678],[2928,2993,5679],[2928,3060,5680],[2928,5681],[2928,3121],3187,3188,3186,[3188,5773],[3252,5774],[3252,5775],[3186,5776],[3185,5777],[2928,3317],2928,[2928,2992],3186,3250,3249,3252,3252,3186,3250,3249,3187,3250,3185,[2928,3124],2928,[2928,5485],[3251,5486],[3185,5487],[3252,5488],[3186,5489],3252,3251,3186,3251,3251,[3188,5966],[2928,5967],[2928,5968],2928,2928,[2928,3057],[2928,2993],[3249,5677],[3252,5678],[3187,5679],[3251,5680],[3185,5681],3185,3185,3252,3188,3251,3252,3186,3249,3187,3185,3186,3252,3250,3188,3249,3252,3249,3249,3252,3187,3249,[3252,9646],[3232,9643],[3168,9644],[3233,3871],[3167,4063],3938,3937,[3234,4066],[3170,4067],3167,[3234,9649],[3169,3871,9650],[10033,9551],[3234,4067,10129],[3232,3998],3551,3935,[3168,4067],3170,[3234,3872],[3232,4065],[3233,3874],[3170,3998],[4000,10124],[3999,10125],[3168,3747,10126],[3169,10127],[3167,10128],10028,[3168,9932],[3167,9836],3170,[3167,3872],3936,3551,3935,3936,3552,3488,3552,3682,3683,3487,3486,4001,3999,3552,3999,3999,3937,4002,3487,[3170,3811],3167,3169,[3167,3807],4002,3487,3488,3551,3486,3999,4000,3552,3938,3935,3487,3552,3937,4002,3487,4001,3551,3936,3936,3937,4002,4001,4001,3486,4000,3935,[3234,4066],[3232,3873],[3168,3871],[3233,4065],[3167,4064],[3169,4063],3936,4002,3938,4002,3999,4002,3488,[3937,9745],[3937,9746],[3175,10034,9647],[3176,9839],3238,3174,[3176,3813],3941,4006,[3174,4070],[3176,4071],[3175,4073],[3175,3748],[3175,3749],3941,3429,4006,[3238,4069],[3239,3879],3238,3175,3239,3240,3176,[3175,3230],3232,[3176,3106],3240,3240,3240,3175,3175,[3240,3040],[3176,2979],3174,3238,3174,3175,3238,[3176,4004],4006,[3238,4070],[3238,4073],3240,3176,[3174,3877],4005,3942,[3239,3749],3941,4008,3943,3492,3942,[3174,3753],[3174,3748],3941,4006,[3176,4071],[3240,4071],[3176,4071],[3174,4071],[3238,4071],[3176,4072],4005,3943,4006,[3238,3879],3175,3176,[3239,2974],3167,3170,3232,[3239,3106],3174,3176,3176,[3176,3103],3231,3170,3168,[3176,2979],3174,[3174,4004],[3176,3881],3174,3176,3239,3175,[3239,4004],4006,[3176,4073],3175,3174,[3169,2981],[3175,3748],3941,4006,[3174,3880,815],[3238,870],[3176,1001],[3238,1001],[3176,1004],[3176,999],[607,9838],[607,10027],[10028,9550],[3935,9643],[4000,9644],3937,4002,4001,3999,4001,4002,4001,3936,3999,[3938,9838],[3999,871,10027],[607,10125],[607,10126],10028,[3943,9932],[4005,9836],4007,3943,[3232,4009],3168,3232,3231,3168,3169,[3167,3877,9745],[4005,9746],[607,10129,9551],607,[4002,997],[3938,934],[3937,816],3938,3938,3999,3999,3999,[4001,9841],[3935,9842],[3176,3814,10129,9647],[3175,3749],[3175,3753],3238,3174,3239,[3238,4068],4005,[3240,3817],3175,3174,3240,[3239,9745],[3173,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2808,9638],3001,2742,3001,2936,2745,2681,2872,2681,2679,2678,2872,2681,2681,2936,2679,3001,2872,2678,2872,3000,2681,2743,2681,2872,2743,2681,2873,3000,2681,2808,2873,3000,2679,3000,2936,2745,2745,2679,2808,2743,3001,2745,3000,2743,3001,2743,2872,2679,2873,2872,2744,2936,2678,2745,2873,2743,2743,2872,2808,2681,2936,[3000,9544],[3000,9545],[2873,9348],[3000,9349],[2743,9350],[2808,9351],[2743,9348],[2681,9349],[3000,9350],[2743,9351],[2873,9443],[2936,9444],[2742,9445],[2743,9446],[3000,9447],[2678,9448],[2745,9348],[2681,9349],[2681,9350],[2743,9351],[2745,9538],[2872,9539],2873,2936,2936,2679,3000,2681,2936,2873,2680,2872,[3001,9443],9444,9447,9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],2771,3156,2643,3158,3158,3157,2770,3157,3157,2707,3158,2707,2642,2644,3155,3158,3155,[2708,4016],3954,[2770,3828],2706,3157,2706,3157,3157,2642,[3157,615],415,[3157,549],[3157,550],[3157,550],[3157,550],3219,2642,3221,2770,3157,3157,3157,3157,[3157,4016],3954,[3158,3828],2706,2707,3157,2770,3158,3155,3221,[3157,3825],3953,[2642,4021],2642,2707,2708,3156,3155,2770,2770,[3219,3826],3441,[3157,3893],2707,3155,2770,2644,[3157,4016],3955,[3157,4021],3219,2770,2770,3157,2772,2708,2836,2837,2770,2771,3156,2772,2706,2707,2772,2708,2773,2706,3219,[3157,4016],3955,4018,[3157,4083],[3157,4082],[3157,4083],[3157,3891],[3157,4080],[3157,4084],3954,3955,[3157,3765,1776],1777,[3157,3826,1778],[3157,3762,3242,1779],[3182,1780],3243,3179,3179,3179,[15068,3309],[15004,3310],3243,[3156,2987],[3221,3054,679],415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[3578,8351],[3962,8352],3578,3511,3961,3511,4025,3962,3512,3578,4025,3578,4023,3578,4023,3446,3446,3577,3961,3575,3578,3446,[3447,9628],[3251,9721],[3187,9722],3186,3252,3250,3249,3250,3249,3185,3188,3185,3250,3252,3187,3249,3249,3252,3186,3251,3185,[3186,5586],[3187,5587],[3186,5588],3251,3188,3250,3185,[2928,3189],2928,[2928,3057,5773],[3250,5774],[3188,5775],[3185,5776],[2928,3059,5777],2928,[2928,3312],3188,3186,[3187,5869],[3250,5870],[3187,5871],[3186,5872],[2928,3061,5873],2928,2928,[2928,3248],3251,3187,3249,[3185,5490],[3250,5491],[3250,5492],3249,3187,3188,3188,[2928,3317],2928,2928,[2928,3057,5581],[3187,5582],[3251,5583],[3188,5584],[3252,5585],3252,3187,3187,3186,3186,3249,[2928,2993],[2928,2994],[2928,2995],[2928,2996],3188,3187,[3185,5773],[3185,5774],[3185,5775],[3186,5776],[3188,5777],3185,3186,3252,3187,3251,3251,3250,3188,3185,3252,3187,3250,3249,3187,[3185,9357],[3250,9358],[3187,9359],[3249,9360],[3187,9357],[3186,9358],[3249,9359],[3187,9742,9360],[3231,3810,9739],[3169,9740],3170,3170,[3234,4062],[3234,3873],3232,3234,3231,[3168,9745],[3170,9746],[3170,10129,9647],3170,[3232,4062],[3231,4064],[3232,3874],3168,3234,3170,3168,[3233,3807],4002,3486,[3936,10221],[3168,4003,10222],[3170,10223],[3232,10224],[3232,3742,10124],[10028,9550],[3231,9643],[3232,9644],3168,[3233,4062],[3168,4065],[3170,3874],[3231,3872],[3169,4064],[3232,4065],3936,3488,3551,3552,3999,3938,4000,3935,3486,3938,3938,3936,3936,[3167,3875],3169,3231,[3168,4062],3938,3552,3935,4001,3936,4000,3936,3999,3937,3486,3938,4001,3552,3552,3935,3938,3936,3488,3551,3936,3486,3999,3552,3488,3936,[3234,4003],3169,3233,3168,3167,3231,3169,[3233,3871],3936,4002,4001,3487,3487,3937,[4000,9745],[4002,9746],[3176,9743,9357],[3175,9360],3238,3176,[3176,4004],4006,[3174,3880],3239,3174,[3174,3813],3941,4006,[3175,4071],[3239,4070],[3176,3880],3240,3176,3238,3175,3240,[3176,3040],[3239,2975],3167,[3175,3235],3174,3174,3175,3175,3238,[3175,3040],3167,[3240,3235],3239,3240,3240,3176,3175,[3239,4004],3942,[3239,3749],[3174,3816],3174,3174,3240,[3175,3877],[3238,4072],4005,3556,3558,4006,[3176,4070],4005,3942,3941,3429,[3176,4009],3239,3176,3240,3240,3239,3239,[3238,3877],[3239,4069],[3239,3880],3175,3176,3175,[3175,3230],3169,3233,[3175,3043],3238,[3176,3748],[3238,3753],3240,3240,[3176,3230],3234,3169,[3239,3043],3239,[3239,4004],[3174,3945],[3176,3748],[3174,3816],3175,[3240,3748],3941,3495,[3240,3749],[3174,3750],[3240,3751],[3238,3752],3941,4006,[3238,4073],[3240,871],607,607,607,607,607,607,607,[607,10124,9646],[3937,9739],[3999,9740],3935,4002,4001,3938,3935,3937,3938,3938,3999,4002,[4001,871],[607,10221],[607,10222],[3937,805,10124],[10028,9550],[3941,9739],[3941,9740],4007,4007,[3233,3815],3169,3232,3167,3232,[3169,3814,9841],[4008,9842],[607,9647],607,607,[4002,805],3936,3937,4000,[3938,9841],[3999,9935],[4002,9936],[4001,9937],9938,[3175,3877,9743],4005,[3238,4009],3240,3240,3238,3176,[3174,4004],[3176,3881],3176,3176,3175,[3174,9841],[3237,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2745,9638],2808,2679,2872,3000,2937,3001,2743,2936,2681,2681,2743,2936,2872,2872,2873,2872,3001,2936,3001,2937,3001,2744,2872,2744,3000,2679,2681,2681,3000,2808,2743,2742,2681,2936,2743,3000,2745,3000,3001,2745,2745,2743,2872,3000,2808,3000,2936,3001,3000,2745,2873,2872,2745,2872,2678,3001,2936,2936,3000,2936,2681,2679,[2743,9544],[3000,9444],[2936,9445],[3001,9446],[2681,9447],[2679,9444],[2872,9445],[2808,9446],[2936,9447],[2743,9539],2681,3001,3001,3001,[3000,9544],[2873,9444],[2872,9445],[2679,9446],[2936,9447],[3000,9539],2808,2681,2743,2936,2872,2745,2873,2743,2872,3001,[2809,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],3155,3221,2708,3221,2771,3157,2706,2708,3157,3157,2708,2834,2835,3157,3155,2770,3157,3156,[2772,3889],4017,3954,[2643,3765],3219,3219,3157,3219,2772,3157,[3157,550],2707,2770,3221,3157,3158,3157,3157,3155,3157,3219,2706,2772,[3157,3889],4017,[3157,4021],[3157,3826],[3157,3762],[3219,3762,1648],[2707,3762,1649],[3155,3762,1650],[3157,3763],[3157,3764],3572,3504,3954,[3157,3765],3221,3156,2708,2772,2772,3157,[3157,4016],3956,[3157,3957],2708,2770,[3157,3826],[3157,3761],3953,4020,[3954,1648],[3157,3762,1649],[3157,3762,1650],[3157,3762],[3157,3763],[2770,3764],[3157,3827],2900,2901,[2708,3760],[3156,3762],[3157,3763],[3157,3764],[3157,3828],3157,3157,2772,3155,[2706,3825],[3157,3761],3953,3571,[3157,4085],3157,3157,3157,3157,3157,3157,[3157,3890],4018,[4019,1840],1841,[4020,3052,1842],[3245,1843],3246,3245,3181,3180,[15004,3247],15132,15068,[15132,3242],3181,3246,[3181,551],415,415,415,415,415,415,415,415,415,415,415,415,[415,8258],[3510,8447],[3510,8448],3577,3960,3578,4025,3448,3446,3448,3576,3447,3575,3577,3512,4025,3448,3512,3576,3577,3577,3448,4026,[3447,9628],[3188,9817],[3186,9917],[3249,9918],[3187,9915],[3187,9916],[3185,9818],3251,3186,3186,3188,3250,3252,3249,3250,3188,3251,3250,3186,3185,3250,[3186,5682],[3188,5683],[3250,5684],3187,3185,3186,3186,3249,[2928,2993],[3186,5869],[3187,5870],[3186,5871],[3252,5872],[2928,3253,5873],2928,[2928,3057],3187,3252,3249,[3187,5966],[3251,5967],[3188,5968],[2928,3125],2928,[2928,3058],3250,3251,3250,3252,[3186,5586],[3186,5587],[3186,5588],3249,3251,3251,[2928,3061],2928,2928,2928,[2928,3248,5677],[3250,5678],[3252,5679],[3250,5680],[3188,5681],3185,3187,3188,3251,3250,3249,3185,3249,3252,3249,3185,3250,[3185,5869],[3249,5870],[3251,5871],[3251,5872],[3252,5873],3249,3250,3186,3249,3188,[3252,5485],[3185,5486],[3188,5487],[3251,5488],[3250,5489],3249,3252,3185,[3252,9547],[3938,9453],[3938,9454],[4002,9455],[4002,9456],[4002,9453],[3937,9454],[4002,9455],[3488,9456],[3169,4003,9548],3168,3234,3167,3233,3170,3233,[3232,3808],[3232,3744],[3170,3745],[3168,3746,9553],[3231,3810,9554],3234,3232,3231,3234,[3170,3807],[3167,3743],[3170,3747],3234,[3167,3871],3936,4001,3936,[3234,4003],3170,3168,[3233,3998],[3170,4003,10124,9646],[3167,9739],[3234,9740],3170,3234,3234,3231,3168,3234,3168,[3232,3872,9841],[3936,9933],[3937,9934],[3233,4063,9836],[3169,4064],[3169,4063],[3938,9841],[3487,9933],[4001,9934],[3486,9836],4000,[3231,3874],[3169,3998],[3170,3939],3231,3168,3170,[3168,3998],3487,4000,3486,3487,3486,3999,4002,4000,4000,3937,3999,4000,4001,3488,3936,3938,3937,[3167,4066],[3170,4065],[3232,4063],3936,4001,3487,3935,[3231,4067],3170,[3170,3807],[3169,3743],[3168,3747],3167,3234,3167,[3170,3871],3936,3551,3937,3938,3935,3552,[3552,9553],[4002,9453],[3937,9456],[3240,9554],[3174,3813],3941,[3175,4009],3239,3174,3174,[3174,3877],[3239,4072],[3239,4073],3239,3175,3174,3176,3176,3238,3174,3175,[3176,3230],3232,[3174,3295],[3176,3106],3176,3176,3176,3239,3240,[3238,3230],3232,[3238,3299],3240,3239,3238,3174,3175,[3174,3878],[3239,4070],[3174,4072],[3238,4073],3176,3174,3174,3239,3176,[3240,4068],[3175,4069],[3240,4070],[3176,3879],3174,[3175,3877],[3175,4072],[3238,4069],[3239,4070],[3239,4073],3240,3240,[3238,3040],[3239,2975],[3240,3042],[3240,3040],[3176,2975],[3174,2975],[3239,3042],3174,3175,3176,[3239,3230],3233,3233,[3175,3107],3238,[3174,4004],[3176,4009],3238,3176,[3240,3103],3231,3233,[3176,3107],3176,[3239,3878],[3174,3879],[3240,4004],[3174,4009],3175,[3175,3812],4006,[3175,4069],[3239,4069],[3176,4070],[3238,4071],[3239,4072],[3239,4069],[3238,4073],3240,[3239,935],607,607,607,607,607,607,607,[607,9646],[3936,9643],[4002,9644],3936,3999,3489,4000,3937,4001,4000,3999,4002,3937,3935,[3937,807],607,[4001,869],[4000,10124,9646],[4005,9835],[3944,9836],3941,4008,3944,[3170,3753],[3170,9841],[3231,3748,9933],[3167,3749,9934],[4008,9937],9938,[4001,806,9743],[4001,806],[3935,806],4002,4000,4002,[3999,9841],[4002,9937],10031,10032,10033,[3238,10034],[3175,9839],[3240,4004],3942,[3240,3749],[3175,3815],[3239,3748],[3238,3749],3941,[3174,3945],3240,3240,[3239,9841],[3176,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[2872,9638],2936,3000,2681,2745,2936,2873,2872,2679,2742,3000,2743,2745,2936,2873,2679,2936,2872,2678,2680,2743,2743,2936,2873,3000,2873,2936,3000,2873,3000,3001,3000,2679,2873,2872,3001,2873,2873,2872,2681,2745,2681,2742,2936,2679,2679,2873,2678,3000,2873,2936,2872,2681,2743,3000,3000,2745,2678,2745,2679,2873,3000,2678,2872,2679,3001,2681,3001,2679,2681,2936,2872,2743,2681,2808,2873,2745,2743,2679,2872,2936,2873,2872,3000,2680,3000,3001,2873,2873,2681,2679,3000,3000,[3000,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3219,613],2708,2770,3157,2708,3219,3221,3156,2772,2771,3157,3221,2898,2899,2771,2706,3156,3157,3219,[2772,3825],3953,3956,3954,[2772,3828],3219,2707,2642,3221,2771,3157,3156,3157,3221,2708,3219,3157,3157,2644,3219,2707,2643,2772,3157,[3157,4016],3954,3953,3442,[3956,1712],1713,[3570,1714],[4018,1715],[3157,4081],[3157,4081],[3157,4081],4017,3954,[2642,3761],[3157,3765],3157,2770,3155,[3157,3826],3953,3956,3954,[3157,3762],[3157,3764],3953,4020,3441,4018,[3157,4084,1712],1713,[4018,1714],[3157,4082,1715],[3157,4084],4017,3954,[3157,3761],[3156,3761],3953,4018,[3157,4082],3442,3954,[3157,3762],[2770,3762],[3155,3763],[3157,3764],3953,4018,[3157,4084],[3157,3891],3157,3157,3157,3157,2771,3158,2708,3157,[3157,3890,2986],[4019,2987,1904],[3157,2988,1905],[3182,1906],3245,3180,[15005,3307],[15068,3308],[15005,3309],[15132,3311],15133,15068,[15004,3306],[15133,3307],[15068,3308],[15069,3309,615],415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],8543,[3576,8544],[3959,8545],[4025,8546],[4023,8448],3960,3575,3577,3576,3446,3577,3510,4023,3447,4025,3577,3447,3446,4025,3447,3510,3962,[4023,9724],9913,10013,10014,10011,10012,[3250,9914],[3251,9915],[3188,9916],[3187,9818],3251,3252,3250,3250,[3250,5485],[3188,5486],[3185,5487],[3188,5488],[3185,5489],3187,3251,[3188,5778],[3249,5779],[3188,5780],3249,3251,3252,3252,3188,3252,3250,[3251,5966],[3249,5967],[3186,5968],3188,[2928,2993],3186,3250,3186,3186,3185,3188,3251,[2928,3189],2928,[2928,3248],3252,3188,3250,3185,[3249,5682],[3250,5683],[3251,5684],3250,3250,3185,[2928,3189],2928,[2928,2992],[2928,2993],[3252,5773],[3250,5774],[3186,5775],[3252,5776],[3185,5777],3185,3185,3187,3186,3188,3186,3185,3187,3185,3188,3188,3251,3252,[3185,5966],[3250,5967],[3185,5968],3185,3186,3186,3186,3251,3251,[3251,5581],[3188,5582],[3251,5583],[3249,5584],[3185,5585],3186,3249,[3188,9550],[4001,9643],[3486,9644],3935,3486,3935,4001,3552,3487,3553,4002,[3233,3744],[3168,3746],[3234,3747],3168,3168,[3232,3807],4002,3486,4001,3999,[4001,9553],[3232,3744,9554],[3168,3744],[3168,3745],[3167,3746],4002,4000,[3233,4003],3170,3170,[3167,3872],3938,3487,4001,[3231,3743],[3233,3743],4000,[3999,9742],[3169,3743,9643],[3170,3810,9644],3169,3170,3168,[3169,3742],[3234,3743],[3233,3809],[3233,9841],[3231,9937],10029,10030,[3231,9932],[3234,9935],[3234,9936],9937,10029,10030,[3999,9932],[4000,9836],[3168,3747],[3167,3871],[3167,3874],3168,3168,[3233,3742],4000,3935,[3232,4065],[3231,4063],[3170,4063],[3168,4063],[3167,4066],[3233,4064],[3232,4066],[3233,4064],3938,3935,4000,3486,4002,3552,4000,[3167,4003],3233,3234,3231,[3234,3998],3938,3937,[3232,3811],3231,3234,[3231,4062],3938,3999,[3168,3743],[3232,3747],3168,3168,[3168,3998],3551,3486,3935,3935,4000,4000,3552,[4001,9649],[3938,9650],[3239,4004,9551],4006,[3240,3880],3176,3239,3238,3240,3175,3174,3240,3239,3240,3176,3174,3174,3240,3176,[3175,3230],[3238,3235],3174,3174,3239,3238,3240,3175,3176,[3176,3230],[3239,3235],3174,3175,3239,3175,3238,3240,3238,3174,3239,3239,3175,3176,3175,3175,3238,3240,3239,3240,3174,3238,3174,3240,3174,3176,[3239,3040],[3240,2975],[3239,2979],[3175,3230],3234,3168,3167,3232,[3240,3298],[3240,3299],3176,3174,[3174,2974],3167,3234,3233,[3175,3171],3174,[3240,4004],3942,[3176,3749],[3238,3815],3240,[3238,3230],3169,[3239,3107],3239,[3176,3813],[3238,3749],3941,[3239,3879],3240,[3175,3876],[3176,4009],3239,3239,3238,3239,3239,3174,3239,3238,[3239,871],607,607,607,607,607,607,607,[607,9646],[3999,9739],[4000,9740],4001,3937,3999,3936,3936,[3936,9841],[3999,9933],[4000,9934],[3938,9836],4001,4001,[3936,871],607,[3936,933],[4001,9742],9931,[3943,9932],[4007,9933],[3943,9934],[3943,9935],[3233,3817,9936],[3234,9937],10029,10030,10033,[4001,10034],[4002,9839],4002,3999,4002,4002,[4002,9841],[3935,9937],10033,[3176,10127],[3175,10128],[3176,3814,10129],[3176,3816],3176,[3175,3878],[3238,4072],4005,3942,3941,4006,4005,3942,[3238,3753],[3238,9649],[3238,9650],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,[2679,9734],2743,3001,2679,2872,2872,3001,2936,2679,2873,2872,2872,2681,3000,2745,2681,2745,2679,2743,2679,2745,3001,3001,3000,2872,3000,3000,2937,2743,2936,2873,3001,2873,2678,2679,3001,2872,3001,2745,2936,2745,2679,2681,2681,3001,3001,2743,2680,3000,3001,2745,2744,3001,2745,2936,2808,2808,2681,2745,3001,3000,2872,3001,2681,3001,2872,2745,2679,2679,3001,2872,2873,2936,2743,2808,2679,2681,2679,2936,2808,2873,2679,2808,3001,2872,3001,2808,2745,2872,3000,2679,2681,2809,[2745,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,613],3157,2772,3157,3221,2771,2708,2706,2707,3221,3155,3158,3157,3157,2770,3156,2772,[3157,3760],[3221,3761],3953,3570,4018,4017,3954,[3157,3761],[2772,3828],2707,2771,3219,3158,2770,3157,3156,3158,[3157,3825],[3157,3827],3157,3157,2772,3156,2644,3155,[3157,3760],3953,4018,[3157,4082],4017,[4018,1776],1777,[4017,1778],[3157,3829,1779],[2771,1780],2771,3221,[2707,3889],[3157,4083],4017,3954,[3157,3762],[3219,3763],[3157,3764],3953,3504,4018,[3157,4081],[3157,4082],[3157,4083],[3157,4081],[3157,4082],[3157,4081],[3157,3892],[3157,3826,1776],1777,[3157,4021,1778],[3157,1779],[3157,1780],[3157,4080],4017,3571,4018,[3157,4082],[3157,3892],3157,[3157,3890],[3157,4081],4017,3955,3956,3441,[3157,4083],[3157,4085],3157,3157,3157,3157,3157,2770,2771,3219,3158,2771,[3157,3050],3180,3245,3179,3180,[15004,3247],15004,15133,15132,15005,15132,15132,15133,15069,15133,[15005,679],415,415,415,415,415,415,415,415,415,415,415,415,[415,8450],8639,8640,8641,8642,[3576,8544],[3574,8448],4023,3962,3447,3961,4023,3510,4025,3578,3575,4023,3447,3575,3959,3959,3510,3446,[3448,9820],[3448,10009],[3577,10109],[4026,10110],[3960,10107],[3577,10108],10010,10011,10012,[3250,9914],[3188,9818],3187,3188,3252,[3252,5581],[3251,5582],[3185,5583],[3251,5584],[3249,5585],3250,3188,3187,3188,3249,3186,3250,3250,3185,3252,3187,3249,3187,3252,3251,3250,3249,3188,3250,3250,3250,3185,3187,3251,3185,[2928,2993],3188,3188,3188,3249,3188,[3186,5778],[3251,5779],[3188,5780],3185,3185,[2928,3313],[2928,3317],2928,[2928,3248],3187,[3249,5869],[3185,5870],[3186,5871],[3187,5872],[3251,5873],3188,3188,3188,3187,3186,3251,3188,3187,3250,3249,3186,3187,3186,3186,3185,3252,3252,3250,3187,3187,3251,3187,[3251,5677],[3186,5678],[3186,5679],[3252,5680],[3249,5681],3186,3187,[3187,9646],[3937,9739],[3936,9740],3936,3936,3938,4002,3999,4001,3936,3487,3938,3937,[3170,3874],3169,[3234,3808],4002,4000,3488,3937,3936,[4000,9649],[3552,9650],[3488,9551,9357],[3936,9360],3937,3937,3999,3999,[3234,3809],3231,3169,[3234,3998],3999,4001,3552,3552,[3937,9357],[3551,9452],[3170,4064,9548],[3234,4067],3231,3234,[3231,3742],4002,3486,[3999,9841],[3232,3809,9937],10033,[3231,10125],[3169,10126],10028,10031,10032,10033,[3936,10125],[3937,10126],[10028,9550],[3487,9643],[3234,3811,9644],3169,3231,3234,3233,[3233,3872],[3232,4066],[3170,4067],3167,3169,3169,3168,3168,3169,3169,3234,[3234,3998],3487,4000,3938,3487,3935,[3231,4063],[3170,3873],3232,3231,[3233,3808],4000,3937,3936,[3231,3875],3233,3232,3233,[3231,3872],3938,4001,3999,[3233,3743],[3231,3743],4002,3999,4002,4001,3487,4002,3486,3487,[4001,9745],[4002,9746],[3174,3877,9647],[3174,3880],3174,3176,3175,3176,3176,3175,[3176,3039],[3174,2976],[3240,2976],[3176,2976],[3240,2977],[3175,2978],[3174,3042],3239,[3174,2974],3167,3168,[3176,2975],[3176,2979],3176,3176,3238,3174,[3175,3040],3167,3168,[3238,3042],3175,3174,3239,3239,3239,3240,3239,3174,3238,3238,3176,3175,[3240,3040],[3176,2975],[3240,2979],3175,3238,3176,3240,3240,3174,[3239,3039],[3240,2975],3167,3233,3168,3167,3232,[3240,3298],3231,[3239,3235],3239,3175,3238,[3174,3039],3167,3232,[3240,3295],[3174,3296],[3175,3299],[3239,3814],3941,3556,4006,[3239,4073],3238,[3176,3230],3169,[3174,3171],3238,[3239,3812],4006,[3238,4073],3238,3240,[3174,3940],3942,[3239,3753],3175,3238,3240,3238,3175,3240,3176,[3176,871],607,607,607,607,607,607,607,[607,9646],[4001,9835],[4000,9836],3999,3935,4001,3938,[4002,9841],[4001,9937],10029,10030,[3938,9932],[3937,9836],3937,[3936,935],607,[4002,997],[4001,998,9838],[3999,998,10027],10028,10029,10030,10031,10032,10033,[4000,10125],[4000,10126],[4000,10129],3935,4001,3935,3936,3935,[3937,9649],[4000,9650],[10033,9551],[3174,10129],[3239,10223],[3240,10224],[3175,4004],[3176,4009],3239,3238,3175,[3175,4068],[3239,4069],[3175,4070],[3239,4073],[3240,3878],4005,3559,[3238,3816,9745],[3174,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[2743,10025],[2744,9830],2872,2679,2679,2742,2808,2745,2678,2745,3000,3000,2936,2680,3000,2743,2809,2743,2809,2680,2679,2681,2808,3000,2679,2681,2872,2681,2681,2679,2743,2679,2743,2680,2872,2743,2679,2681,2745,2936,2681,2744,2681,2872,2744,2742,2873,2873,3001,2745,3001,2745,2936,2936,2809,3001,2680,3000,2679,2681,2808,2744,2745,2680,3000,2936,2808,2678,2745,2809,2678,2678,2872,2679,2808,2873,3001,2742,3001,2743,3001,2678,2936,2743,2745,3001,2808,2872,2743,2745,2872,3000,2936,2872,[2872,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3219,677],2771,3158,2772,3156,3157,2644,2770,2771,2642,2708,3157,2643,3155,2772,3221,[2708,3760],3572,4018,[3157,4082],[3157,4082],[3157,4085],[2770,3890],[3155,4082],4017,3954,[3157,3762],[3157,3763],[3155,3764],[3157,3828],2772,3158,[3157,3825],[3157,3761],3440,[3157,4021],3157,2770,3221,2706,2770,[3221,3826],3953,4018,[3157,3892],2771,[3157,4016],[3954,1840],1841,[4016,1842],[3158,3893,1843],3221,3219,3156,3219,2707,[3221,3889],[3157,4081],[3157,4082],[3157,4081],[3157,4082],4017,3572,[3157,4021],3157,3157,3157,3221,2707,3155,3219,[3157,4016,1840],1841,[3157,4021,1842],[2706,1843],2772,2707,[3157,4016],4018,[3157,4085],3219,3221,3157,3157,3156,[3157,3889],[3157,4081],[3157,4084],[3157,3891],3157,3157,3219,3219,3157,2643,3157,3158,3221,2772,2706,2772,[3157,3114],3243,3243,3179,[15069,3310],[15004,3311],15004,15132,15132,15133,[15069,4443],[15068,4444],[15004,4445],[15132,557],[15069,614],[15068,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,8736,8737,8738,8640,[3576,8544],[3575,8448],3448,3512,3575,4025,3577,3578,3959,3961,3512,3576,3962,3447,4023,3578,4025,3446,3577,[3576,10205],[3578,10206],[3578,10203],[3577,10204],[4026,10106],[3574,10107],[4025,10108],10010,[3186,9914],[3251,9818],3187,3188,[3251,5677],[3249,5678],[3185,5679],[3186,5680],[3187,5681],3186,3187,3188,3187,3249,3185,3251,3250,3186,3187,3251,3187,3187,3188,3250,3187,3185,3187,3252,3188,3185,3251,3252,3250,3250,3188,3186,3185,3250,3187,3252,3188,3251,3250,3252,[2928,3253],2928,2928,[2928,3057],3186,3188,3186,[3251,5966],[3252,5967],[3252,5968],3186,3251,3186,3187,3251,3188,3188,3188,3185,3251,3251,3251,3251,3188,[3188,5490],[3249,5491],[3252,5492],3250,3250,3185,3252,3250,3252,[3249,5773],[3187,5774],[3186,5775],[3187,5776],[3251,5777],3187,3188,[3249,9547],[4001,9548],3486,3552,3938,3488,4001,3999,4001,3552,4000,3937,[3167,4003],3232,3170,[3168,3871],3936,3553,3486,3488,3488,4001,[3553,9553],[3935,9453],[3486,9456],[3488,9457],3551,3938,3935,[3170,4003],3168,3169,[3232,3998],3937,[3231,4065],3938,[4000,9452],[3937,9453],[4001,9548],[3170,3747],3233,3231,3168,[3169,3998],4001,[3999,9841],[3936,9937],10033,[3170,3743,10129],[3169,3747,10221],[3233,10222],[3234,10124],[3232,10127],[3232,10128],[3232,10129],[3169,4062,10221],[3936,10222],[3937,10124,9646],[4000,9739],[3231,3875,9740],3231,3231,3169,3233,3170,3232,3233,3232,3169,3231,[3232,3808],[3167,3744],[3167,3744],[3233,3745],[3234,3746],4000,3935,4002,3487,3999,[3232,4003],3168,3233,3234,[3233,3742],4000,3936,3938,3999,[3168,3939],3231,3170,3231,3169,[3233,3998],3938,4002,3488,3552,[3169,4066],3936,3935,[3233,4063],[3168,4064],3936,3551,3935,[3488,9649],[4001,9650],[3176,9647],3176,3175,3176,3239,3238,3239,[3176,3039],3167,3232,[3174,3295],[3240,3296],[3176,3297],3231,3168,[3174,2975],3167,3232,[3174,3295],3231,3168,[3174,2976],[3175,2976],[3239,2977],[3238,2978],3167,3232,3231,3168,[3174,2976],[3238,2977],[3239,2978],[3174,2979],[3239,2974],[3240,3041],3238,3238,3239,3174,3176,3174,[3175,3230],3232,3231,[3174,2976],[3174,2976],[3238,2976],[3240,2976],[3174,2977],[3239,2978],3167,3232,[3176,3296],[3240,3295],3231,3170,[3240,3235],3174,[3239,3230],[3238,3235],[3240,3040],[3175,2975],[3174,2975],3167,3170,3168,[3175,3042],3174,3238,[3174,4004],4006,[3238,4069],[3175,3879],3175,[3176,3039],3167,3233,[3239,3043],3176,[3238,3876],[3176,4009],3238,3175,3174,[3174,3878],4005,[3239,4009],3176,3176,3174,3239,3176,3240,3238,3175,[3174,807],607,607,607,607,[3239,805],[3238,806],[3239,806,9742],9931,[3938,9932],[3935,9933],[3936,9934],[4002,9935],[3936,9936],[3999,9937],10033,[3176,10125],[3175,10126],10028,[3938,998,9932],[3935,998,9836],[3936,999],607,607,607,[3938,805],[3935,806,10124],[3937,10125],[4001,10126],[4001,10127],[3936,10128],[4001,10129],[3935,10221],[3999,10222],4000,4002,4002,3936,4000,3999,[3938,9745],[4001,9746],[3239,10129,9647],3239,3238,[3175,3813],3941,[3175,4009],3176,3174,[3240,815],[3174,870],[3239,934],[3175,816],3238,3174,[3240,4068],4005,[3174,4009,9745],[3237,9746],9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2873,10120,9638],2808,2936,2872,2873,2808,2936,2681,2681,[2745,9832],[2936,9926],[2936,9927],[2743,9827],2936,2680,2873,3000,[2936,9832],[2872,9926],[2745,9927],[3000,9827],2742,2681,2679,2808,2743,2678,3000,2872,2742,2745,2873,2872,[2872,9543],2745,2745,2678,3001,[2679,9540],2937,2873,2936,2872,2745,3000,2681,2872,2743,2678,2936,2679,3000,2745,2873,2808,3001,3001,3000,2680,2808,2745,2681,2936,2744,2936,2872,3000,2681,3000,2681,2872,3001,2743,2681,2873,3001,2681,2873,2742,2680,2873,3000,2745,2681,2743,2936,2936,2742,2745,2937,3001,2681,2873,2681,3000,[3000,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,741],[3157,747],[3219,748],[3221,749],[3157,678],[3157,558],3157,2771,3221,2708,3158,3219,3158,2707,[2770,1648],[2770,1649],[3157,4016,1650],4018,[3157,4085],3157,3158,2770,2773,2770,[3155,4080],[3157,4082],[3157,4082],[2643,4082],4017,3442,[3157,3765],[3157,3760],3953,4018,[3157,4081],[3157,3892],2707,3156,3157,[3219,3760],[3157,3761],3571,4018,[3157,3892],3158,2771,[2772,3890],[4017,1904],[3954,1905],[3953,1906],[2707,3957],3221,2770,3155,2834,2835,2772,3156,2771,2771,2706,[3156,4016],3955,[2706,4021],3157,3157,2642,2772,3157,2771,2770,[2708,4080,1904],[3157,4083,1905],[2707,3891,1906],2706,3157,[2771,3826],3953,[3157,4021],3156,2770,3157,3157,3157,3221,3157,3157,3157,3157,3157,3157,2708,3219,3221,3157,3157,3158,3156,3155,3155,2771,[3157,3178],3246,3243,[15004,3118],15133,15132,15004,15133,15069,15068,15004,15069,15069,[15068,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8833,8834,8736,[8640,8162],[3578,8255],[3512,8256],3578,3511,4025,3574,3961,3638,3639,3959,3447,4025,3512,3447,3575,4023,3577,4026,3577,3448,4026,3446,3447,[3960,10203],[3512,10204],[3576,10106],10010,[3251,9914],[3187,9818],3186,[3188,5773],[3187,5774],[3252,5775],[3185,5776],[3250,5777],3252,3187,3187,3252,3186,3188,3187,3252,3187,3251,3187,3185,3186,3185,3250,3251,3249,3188,3250,3249,3185,3187,3250,[3188,5485],[3185,5486],[3252,5487],[3252,5488],[3185,5489],3188,3251,3252,3186,3250,3250,3186,3186,[2928,2994],[2928,2996],3187,3250,3186,3186,3185,3251,3186,3252,3187,3185,[3252,5485],[3251,5486],[3188,5487],[3251,5488],[3187,5489],3252,3251,3250,3187,3251,3251,[3187,5586],[3252,5587],[3251,5588],3187,3250,3249,3185,3186,3188,[3250,5869],[3251,5870],[3249,5871],[3186,5872],[3249,5873],3187,[3185,9550],[4001,9739],[3486,9740],3551,3936,4000,3936,3488,3552,3551,3938,3937,3486,[3234,4003],3233,[3232,3807],[3168,3743],4002,3486,3999,4001,3552,3486,3999,3614,3615,[3935,9553],[3552,9554],3935,3935,3999,[3233,3809],3168,[3170,3872],[3169,3873],[3170,3808],[3551,9550],[3935,9835],[3488,9836],3935,[3231,4067],3170,3167,[3170,3807],4002,[3938,9649],[3488,9650],[10033,9551],[3936,10129],4001,3999,[3170,3744],[3234,3745],[3169,3746,10223],[3169,3810,10224],3234,3233,[3231,4062],[3169,4065,9646],[3938,9643],[3232,3939,9644],3233,3168,[3234,3807],[3234,3747],3232,3168,3168,3170,[3231,3808],[3233,3743],4002,3935,3938,3938,3937,3935,3938,3551,3487,3936,3999,[3233,3810],3169,[3231,3742],4000,3618,3619,3938,3935,[3232,3873],3234,3234,3234,3231,[3233,4062],3938,3552,4002,[3234,4003],3231,[3170,3871],[3234,3874],3233,[3232,3807],4000,3552,3486,[3488,9745],[4002,9746],[3240,9647],3239,3240,3175,3176,3176,3176,[3174,3230],3232,[3175,3105],3174,3239,3175,[3239,3103],3231,3234,3232,[3176,3299],3239,[3174,3294],[3238,3295],[3174,3296],[3239,3297],[3175,3298],[3175,3297],[3238,3298],[3176,3105],[3238,3294],[3238,3298],[3238,3297],[3240,3295],3231,3168,3167,[3240,3043],3174,3175,3176,3240,3238,[3240,3039],3167,[3238,3235],[3239,3104],[3176,3298],[3175,3296],3231,3233,3232,[3238,3296],[3240,3295],[3239,3106],[3239,3040],[3238,2975],3167,3234,3168,[3238,2975],3167,3168,3167,3232,[3176,3296],[3239,3298],[3238,3296],3231,[3238,3235],3238,[3238,3748],3941,[3175,3817],3240,3175,[3239,2974],3167,3170,3170,[3174,3171],3175,[3176,3940],[3239,4009],3175,3176,3176,3176,[3174,4004],3942,[3176,3749],[3176,3815],3175,[3174,3814],[3176,3749],[3239,3749],[3174,3815],3176,3175,[3175,806],[3240,806],[3176,806],[3176,806],3238,3238,[3174,9838],[3238,10027],10028,10029,10030,10031,10032,10033,[3175,10129],[3239,3814,10221],[3176,3749,10222],[3238,3749,10124],[10028,9550],[607,9739],[607,9740],607,607,607,[3936,869],4001,[3938,10221],[4000,10222],[3937,10223],[4000,10224],4002,3999,3999,3937,3936,4001,4001,3937,3937,[3936,9841],[3935,9842],[3175,9647],3175,[3176,3813],3941,4006,[3174,4073],3174,3174,[3240,935],607,607,[3238,933],3238,3174,[3239,3814],3941,[3240,4009],[3240,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2936,9448],2936,2744,2679,2679,2873,2745,2745,[2872,9832],[2745,9928],10022,10023,[2743,9923],[2679,9924],[2681,9925],[2873,9926],[2681,9927],[2872,9928],10022,10023,[2744,9923],[2872,9924],[2873,9925],[3001,9927],[2873,9827],2681,2745,3000,2872,2808,3001,2744,3000,[2679,9639],[2679,9542],2873,2679,[2873,9541],[2681,9636],2681,2678,2808,3000,2743,2743,2743,2808,2743,2743,3000,2743,2743,2873,2678,2743,2744,2745,2937,2679,2936,3001,2808,2679,3001,2936,2936,2681,2744,3000,2679,2681,2679,3001,2808,2743,2808,3001,2872,2872,2936,2936,2743,2681,2745,2873,2745,3000,2678,2681,2678,2745,2679,2743,2873,3000,[2744,9640,9733],[9922,9641],9923,9924,9925,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,741],[2643,558],3157,2706,3219,3221,3156,2707,2642,[2772,1712],1713,[3953,1714],[3157,4021,1715],3157,3157,2707,3158,2707,2707,3157,2834,2835,3219,[3221,3890],4017,3954,3953,4018,[2708,3891],3155,3157,3158,3156,2642,[3157,3889],[3157,4081],[3157,4082],[3157,3891],3157,3157,2772,2770,[3157,4016],4019,3440,[3158,3892],3157,2706,3158,2898,2899,3219,2644,2772,3219,[3157,3760],3953,4019,3954,[3157,3761],[2770,3765],3156,3158,3155,3219,2706,2707,3157,3156,2773,3157,[3156,4016],4018,[2708,3892],3157,2772,3156,3156,3155,3221,3157,3156,3219,3155,3221,2771,2706,3157,3157,[3157,557],[3157,745],[3157,558],3157,3157,3157,[2707,3052],3245,3180,[15069,3055],15133,15005,15004,15133,[15133,557],[15069,745],[15068,746],[15068,747],[15133,748],[15005,749],[15132,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[8736,8258],[4025,8351],[3576,8352],3512,3446,3962,3960,3961,3702,3703,3446,3448,4026,3959,4024,3510,4024,3960,3959,3510,3448,3511,3962,4025,3510,3446,3446,[3575,10106],[10010,9532,9532],[3185,9625],[3187,9626],[3250,5869],[3250,5870],[3250,5871],[3185,5872],[3251,5873],3252,3186,3249,3249,3185,3188,[3185,5485],[3185,5486],[3252,5487],[3250,5488],[3188,5489],3251,3186,3249,3185,3251,3250,3188,3252,3186,3188,3185,3188,[3186,5581],[3251,5582],[3186,5583],[3250,5584],[3186,5585],3250,3185,3186,3186,3186,3251,[3188,5485],[3188,5486],[3185,5487],[3249,5488],[3251,5489],3188,3187,3186,[3188,5490],[3250,5491],[3252,5492],3252,3187,3251,[3187,5581],[3185,5582],[3187,5583],[3250,5584],[3187,5585],3188,3186,3185,3250,3249,3188,[3252,5682],[3251,5683],[3185,5684],3188,3186,3187,3251,3249,3187,3250,[3251,5966],[3252,5967],[3188,5968],3186,3251,[3185,9646],[3938,9835],[3935,9836],4002,4000,4002,3550,3937,3999,4002,3935,3935,[3169,4065],[3233,4067],3167,[3234,3998],4002,3488,3618,3619,3938,3938,3553,3937,3678,3679,[3551,9649],[3935,9650],[3937,9551],4002,4002,[3231,4003],3232,3232,3167,[3234,3998],[3551,9742],9931,[3231,4064,9932],[3168,4067,9836],3170,3168,[3231,3808],4000,3935,[4002,9649],[3937,9650],[3936,10129,9647],3486,3937,3488,3935,3488,3551,[3167,4003],3233,3231,3234,[3170,9646],[3168,3998,9835],[3232,4003,9836],3169,3168,[3167,3998],[3167,4003],3233,3167,3232,3169,[3169,3998],3999,3487,3486,4002,3937,4001,4002,3488,3552,3999,3935,3552,[3234,4003],3167,[3167,4062],3938,3682,3683,3486,[3232,4003],3231,3168,[3233,3807],[3167,3809],3170,3234,[3232,3872],[3168,4064],3936,[3233,4003],3168,3168,3233,3234,[3167,3871],3936,3551,4001,[3488,9841],[4001,9842],[3239,9647],3174,3240,3240,3240,3176,[3240,3039],3167,[3175,3235],3238,3238,3176,3175,[3176,2974],3167,3234,3168,[3239,2976],[3239,2978],[3240,2979],3176,3239,3238,3176,3239,3239,3175,3238,3176,3239,3238,[3175,3294],3231,3169,[3240,3107],3175,3175,3176,3238,[3239,2974],3167,3232,[3238,3106],3239,3176,[3174,3040],3167,3232,[3239,3105],3175,3174,3176,[3239,3104],[3239,3296],[3176,3295],[3175,3295],[3240,3296],[3176,3297],[3238,3298],[3238,3298],[3176,3296],[3175,3299],3238,3174,3175,[3176,3230],3168,[3238,2979],[3239,4068],4005,[3240,3881],3240,3240,[3240,3230],3234,3170,3232,[3174,3299],3240,[3240,4068],[3239,3880],3174,3240,3175,3176,[3239,3878],[3239,4070],4005,3942,[3175,3749],3941,4006,[3239,4070],[3174,4073],3239,3174,3239,3176,3175,3174,3176,[3174,3814],[3176,3753],3238,[3240,10124],[3240,10125],[3238,10126],[3174,10127],[3174,10128],[3238,10129],[3239,3813],3941,3493,3556,[3238,4009,10124,9646],[607,9835],[607,9836],607,607,[3938,805],3999,3999,3935,3999,3999,4002,4002,3936,3938,3937,3999,3361,[3937,9841],[4002,9933],[3937,9934],[3999,9937],9938,[3174,9743],3176,[3176,4004],3430,[3176,3880],[3176,815],[3176,870],[3174,998],[3174,999],607,607,[3238,933],3175,3240,[3174,4004],4006,[3176,4073],3176,[3174,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2872,9545],2872,2743,2745,[3001,9832],[2743,9924],[2872,9925],[2745,9928],10024,[2872,10118],[2745,10119],10019,10020,10021,10022,10023,10024,[2872,10118],[2743,10119],10019,10020,10021,10023,[3000,9923],[2872,9827],3001,2742,3000,2808,3001,3001,[2936,9832],[2679,9833],[2873,9638],3001,2679,[2745,9637],[2745,9826],[2681,9827],2872,2679,2743,[2872,9832],[2873,9924],[2679,9925],[2873,9926],[2872,9927],[2873,9827],2936,2744,2680,2681,2679,3000,3001,2680,2872,3001,2873,2936,2872,2808,2743,2936,2745,2936,2873,3000,2745,2742,2743,[2873,9543],2744,3001,2678,2873,3000,[3000,9540],2743,2873,2936,2678,2744,2679,3000,3000,3000,2681,2681,2745,2873,3000,3001,2872,[3000,9736,9829],[2680,10018,9737],[10019,9542],10020,10021,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3219,741],[3219,683],[3155,684],3219,3158,3158,3156,3157,[3157,3826,1776],1777,[4018,1778],[2772,3891,1779],[3158,1780],3155,2771,3219,2772,3221,2770,2898,2899,3221,3157,4016,3956,4018,[2772,4085],3155,2770,2771,2643,3157,3219,3155,3221,3157,3157,3156,3157,2771,2644,[3155,3889],[2773,4084],[2706,3892],3221,3155,2773,2772,3157,3158,3158,3156,3221,[2643,3825],3953,4018,[3157,4082],[3221,4081],4017,3954,[3158,3762],[3155,3764],[3219,3828],2643,3156,3221,3155,3157,3158,2770,[2772,4016],3954,[3158,3828],3219,2706,2707,2706,2771,3221,2644,3158,3219,3157,3219,3221,3219,[2644,557],[3157,614],[3157,743],415,[3157,613],3157,[3157,557],[3157,614],[3157,3242,678],[3246,558],3244,[15068,3119],15004,15004,15132,[15005,557],[15005,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],[3446,8351],[4025,8352],3513,4026,4024,3446,3511,3961,4026,4025,4026,4025,3448,4024,4026,3962,3447,4025,4025,3961,4025,3446,4024,4026,4026,3960,3447,[3512,10106,9628,9628],[3185,9721],[3251,9722],3185,[3251,5966],[3252,5967],[3250,5968],3252,3252,3186,3186,3249,3249,3186,[3188,5581],[3186,5582],[3251,5583],[3249,5584],[3251,5585],3188,3186,3185,3249,3185,3252,3187,3186,3251,3252,3186,3185,[3252,5677],[3187,5678],[3187,5679],[3250,5680],[3188,5681],3250,3249,3252,3188,3251,3249,[3251,5581],[3185,5582],[3186,5583],[3187,5584],[3252,5585],3188,3187,3249,[3187,5586],[3188,5587],[3188,5588],3185,3186,3250,[3188,5677],[3187,5678],[3188,5679],[3251,5680],[3249,5681],3250,3187,3185,3186,3252,3186,[3252,5778],[3188,5779],[3188,5780],3250,3185,3249,3185,3188,3185,3185,3250,3186,3249,3250,3249,[3251,9742],[9931,9550],[3938,9643],[4002,9644],3486,3938,3999,3937,3486,3486,3999,[3168,4003],3170,3232,3168,[3234,3998],3551,3936,3682,3683,3937,3936,3999,3486,4001,4000,4000,[3999,9553],[3486,9554],3486,4000,4001,[3167,3747],3234,3233,[3233,4062],[3234,4066,9838],[3234,3873,10027],10028,[3232,9932],[3170,9836],[3168,3808],4000,4002,3999,[3551,9745],[4002,9746],[3937,9743],4000,3936,3551,4000,3999,3486,4001,[3167,3743],[3168,3810],3167,[3169,9742],9931,[3232,3874,9932],[3170,9933],[3233,3807,9934],[4002,9836],[3167,4003],3168,3234,3170,3231,[3167,3998],3487,3937,3937,[3231,4066],[3170,4064],[3233,4063],[3167,4066],[3167,4065],[3231,4066],3936,3999,3938,[3169,4003],3231,3231,[3167,3998],3487,4000,3937,[3231,3873],3231,[3168,3807],4000,[3168,4003],3231,3234,3231,3232,[3231,3871],4001,[3169,3747],3233,3167,3231,[3232,3807],[4002,9841],[3553,9933],[3487,9934],[3937,9937],9938,[3174,9743],3174,3238,3175,3176,3175,[3240,3230],3232,[3174,3105],3174,3176,[3239,2974],[3238,2975],3167,3232,[3174,3296],[3176,3298],[3239,3295],3231,[3239,3043],3174,[3175,3813],[3240,3750],[3239,3750],[3176,3750],[3239,3751],[3174,3752],[3240,3753],3239,3174,3238,[3175,3039],3167,3169,[3240,3171],3175,3240,3239,[3238,3039],3167,3232,[3176,3106],3174,3239,3176,[3176,3230],3170,[3240,3235],3176,[3176,3813],[3240,3750],[3240,3750],[3175,3751],[3239,3752],[3238,3815],3175,3238,3176,3239,3174,3240,3240,[3239,3748],[3239,3753],3238,[3175,3294],3231,[3239,3235],3175,[3175,4004],[3174,3945],3238,3239,[3238,3294],[3238,3296],[3239,3297],[3175,3299],3238,[3238,3813],[3239,3749],[3176,3815],3240,3174,3175,3175,3174,3175,[3175,4004],3431,4006,[3240,4070],[3238,3880],3240,3174,3238,[3240,3814],[3238,3749],[3174,3749],[3174,3750],[3239,3751],[3239,3752],3941,3942,[3240,3815],3238,[3176,3813,10221],[3176,3749,10222],[3240,3753,10223],[3238,10224],3239,[3175,4004],3429,3493,3492,[3176,4009,9742],9931,[607,9932],[607,9933],[3935,805,9934],[3999,9836],3553,3937,4000,4001,4002,3938,3935,3936,3937,3999,3938,[3999,9841],[3936,9937],10029,10030,10033,[3238,10034],[3239,3814,9839],[3238,3749],3941,[3176,4009],3240,[3239,871],607,607,607,607,607,[3176,869],3238,3175,[3240,3812],[3240,3817],3176,3239,[3174,9649],[3175,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2681,9542],2680,[3000,9832],[2872,9928],10020,10021,10024,[2742,10120],[2873,10214],[2679,10215],[3000,10115],[3000,10116],[2872,10117],[2936,10118],[2872,10119],[3000,10120],[2680,10214],[3001,10215],[2872,10115],[2873,10116],[2936,10117],[3001,10119],10019,[2678,9923],[2679,9827],2872,2679,2679,2681,[2680,9832],[2808,9928],9929,[3001,9734],2743,2745,[2679,9733],9922,[2743,9923],[2872,9924],[3000,9925],[2743,9927],[2679,9928],10020,10021,10022,10023,[2744,9923],[2679,9827],3001,2873,2679,2743,2679,2678,[2808,9832],[2681,9926],[3001,9927],[3000,9827],2678,2808,2873,2936,2873,2873,2681,2681,2873,3001,3001,2936,[2679,9639],[2680,9542],2743,3000,2742,[2680,9541],[2743,9636],2809,3000,2679,2745,2681,2679,2872,3001,2936,2681,[2680,9832],[2743,9926],[2742,9927],[3000,9827],2873,2745,[3000,9832],[2678,9833],[2873,10115,9638],[2743,10116],[2678,10117],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2707,613],3221,2706,3221,3158,2770,[2771,4016,1840],1841,[3157,4021,1842],[3155,1843],2771,3158,2772,2770,3221,3219,3157,2708,3156,3221,[3157,3760],3953,4018,[2771,3892],3221,3157,2706,3158,3158,2771,2772,2642,2644,3221,2707,3157,3156,3157,3156,3157,2708,3221,2771,3157,2707,3157,2644,[2643,3826],[3156,3762],[3155,3763],[3155,3764],3953,3440,[3157,3892],2708,3221,[2708,3890],[3221,4083],[2708,4084],3441,[3157,4021],3157,3156,3219,3158,3155,2642,3155,[3157,3889],4017,3954,[3157,3828],3221,2707,3157,3219,3219,3157,2643,2770,3158,2771,3219,3157,[3157,615],415,415,415,[3157,741],[3157,742],[3157,743],415,415,[3245,677],3244,[15069,3183],15069,15068,15132,[15133,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8063],8064,[4023,8160],4026,3578,3576,3510,4023,3446,4024,3447,4026,4025,3512,4026,4024,3446,3962,4025,3578,3578,4024,3961,3447,3959,3510,3449,4023,4025,[4025,9628,9628],[3252,9817],[3187,9818],3187,3250,[3187,9823],[3186,9915],[3251,9916],[3250,9818],3188,3249,3252,3252,3249,[3251,5677],[3251,5678],[3251,5679],[3186,5680],[3186,5681],3250,3185,3249,3185,3249,3252,3251,3187,3249,3186,3185,3250,[3187,5773],[3252,5774],[3251,5775],[3251,5776],[3185,5777],3249,3249,3186,3188,3185,3249,[3187,5677],[3185,5678],[3250,5679],[3252,5680],[3249,5681],3250,3188,3250,[3185,5682],[3188,5683],[3250,5684],3187,3252,3251,[3186,5773],[3188,5774],[3185,5775],[3188,5776],[3186,5777],3185,3185,3251,3187,3187,3249,3188,3187,3252,3252,3187,3252,3187,3249,3249,3188,3186,3250,3187,3187,3185,[3187,9838],[3250,10027,9646],[3937,9739],[3938,9740],4001,3938,3551,3488,3937,3936,3937,[3170,4003],3234,3169,[3233,3808],4000,3935,3999,3935,3488,[3168,4003],[3169,3872],[3232,4065],[3168,4063],[3233,4063],3936,3935,3936,[3936,9553],[3552,9554],3936,3487,4001,[3232,3747],3231,3170,3231,3167,[3169,10124],[10028,9550],[3170,9643],[3169,3998,9644],3552,3936,3938,4000,[3552,9553],[3936,9457],3938,3486,3937,3999,4002,4000,3488,3937,[3232,3873],3169,[3168,9838],[3231,10027],10028,10029,10030,[3937,9932],[4001,9836],[3168,3809],3168,3232,[3231,3808],4002,3937,[3233,4063],[3167,3873],3234,3234,3233,3170,3232,3231,[3233,3871],[3168,4063],[3170,4065],[3168,4067],3232,3232,[3234,4062],[3169,4064],[3232,4065],[3170,3874],3234,3170,[3233,3871],[3234,4065],[3169,3873],3167,3234,3167,3167,3234,[3231,4062],[3167,3874],3169,3233,[3169,3742],[4000,9841],[3936,9937],10029,10030,10033,[3175,3814,10034],[3239,3749,9839],[3240,3753],3240,3238,[3240,3039],[3240,2975],3167,3168,[3240,2976],[3240,2977],[3239,2978],3167,3232,[3240,3297],[3240,3106],3238,3240,3176,[3174,3230],[3175,3107],[3175,3813],3941,3943,3944,3430,3494,3494,[3239,4009],3238,3176,3238,[3176,3230],3232,[3239,3295],[3239,3106],3240,3238,[3240,3039],3167,3232,[3240,3106],3239,3174,3238,[3238,3040],3167,3232,[3239,3106],[3176,3748],3941,4006,[3175,4071],[3240,4069],4005,3942,[3240,3753],3176,3239,3176,3238,[3238,3748],[3239,3749],3941,[3176,4009],3174,3176,[3175,3230],[3239,3235],3238,[3176,4004],3942,[3240,3816],3174,3240,3239,3239,3175,3174,[3176,3877],4005,[3239,4009],3175,3174,3240,[3174,3813],[3240,3749],[3239,3749],3941,4006,[3175,3879],3175,3175,3176,3238,3238,[3174,3878],[3176,4070],[3239,4072],[3239,4072],[3238,4070],[3176,4071],[3176,4072],4005,3942,[3240,3749],3941,4006,[3240,4073],3239,3176,[3174,4004],3943,3558,3428,[3238,4009,9838],[3239,10027],10028,10029,10030,[3937,9932],[4001,9836],3936,3935,4002,3936,3935,4001,3936,3935,3935,[3936,9841],[3999,9937],10033,[607,10125],[607,10126],[3239,869,10129],3238,[3175,3878],[3239,4069],4005,[3175,4009],3174,[3175,935],607,607,607,607,607,[3174,869],3176,3174,[3238,3876],[3238,3881],3174,3240,[3239,9745],[3239,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2680,9926,9638],[3001,9927],[2681,9928],10024,[2679,10116],[3000,10117],[2743,10120],2745,3000,2745,2745,[2744,10212],[2872,10213],[2872,10214],[2681,10215],3001,3001,3000,2936,[2873,10212],[2808,10213],[3001,10215],[2743,10115],10019,[2808,9923],[2743,9924],[2679,9925],[2745,9926],[2679,9927],[2681,9928],10024,[2936,10025],[2743,9830],2745,2873,[3000,9829],[2679,10018],10019,10020,10021,10023,10024,[2873,10116],[3000,10117],[2936,10118],[3001,10119],10019,[3000,9923],[3001,9827],2936,2808,2742,2680,[3000,9832],[3001,9928],10022,10023,[2681,9923],[2745,9827],2745,2743,2679,3000,2936,2743,2679,2679,2742,2808,[2681,9832],[2679,9833],[3001,9638],2872,2872,2678,[3001,9637],[2808,9826],[3001,9827],2681,2872,2873,2936,2679,2743,2936,2745,[2743,9832],[2742,9928],10022,10023,[2680,9923],[3001,9924],[2679,9925],[2744,9928],9929,[2681,9734],[2743,10212],[2808,10213],[3000,10115],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,549],2706,3219,3219,3219,3157,3157,[3157,3889,1904],[3157,4082,1905],[3157,4085,1906],3157,2771,2770,3219,2708,[3157,557],[3157,614],[3157,683],[3157,684],3221,3158,[3156,4016],3505,[3157,4021],2772,2707,3221,3158,3157,3157,[3157,557],[3157,614],[3157,678],[3157,558],3157,3158,2706,3221,3219,[3157,557],[3157,678],[3157,558],3219,2642,3155,2772,3157,[3157,3825],3953,4018,[3221,4084],[3155,4081],[3155,4081],[3155,3892],3156,3155,3157,2770,3155,3156,[3219,3890],[3158,3891],2706,3219,3158,3156,3158,3156,3156,3219,[3221,3889],3571,3954,[3157,3761],[3221,3765],2707,3158,2707,2771,2706,3158,2771,3157,3219,3221,[3157,679],415,415,415,415,415,415,415,415,[3180,741],[3243,745],[15133,3247,746],[15005,747],[15068,748],[15004,749],[15068,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,8159,[4023,8160],3574,3510,4025,3578,3962,4026,3578,4023,3578,3511,3513,3577,3446,4026,4024,3960,3961,3962,3576,3448,4024,3578,3962,3448,3578,3576,4025,[3447,9724,9724],9913,[3185,9914],[3186,9917],[3186,9918],[3252,9919],10011,10012,[3186,9914],[3250,9818],3250,3252,3187,3187,[3186,5773],[3252,5774],[3185,5775],[3185,5776],[3186,5777],3251,3251,3250,3252,3252,3252,3187,3250,3186,3186,3188,3250,[3188,5869],[3251,5870],[3185,5871],[3185,5872],[3188,5873],3249,3249,3186,3252,3250,3252,[3252,5773],[3185,5774],[3186,5775],[3252,5776],[3186,5777],3249,3187,3185,[3187,5778],[3252,5779],[3250,5780],3251,3252,3186,[3249,5869],[3188,5870],[3185,5871],[3252,5872],[3188,5873],3250,3249,3251,3186,3186,3250,3188,3252,3188,3186,3251,3187,3186,3186,3251,3187,3249,3250,3185,3252,3185,3249,[3186,9646],[3938,9739],[3937,9740],3937,3937,3489,3552,3999,4000,3937,[3168,4067],3170,3233,[3167,3998],3486,3938,3936,3936,3937,[3233,3874],3170,3169,3169,3231,[3168,3872],[3170,4067],[3167,3998],[3487,9745],[3552,9746],[3552,9551],3937,3553,3999,[3234,3747],3167,3234,[3231,3808],[3169,3747],[3232,10124,9646],[3231,9739],[3231,3998,9740],4001,3938,3488,3938,3488,[3552,9553],[3488,9554],4000,3936,3936,3935,3935,3938,4001,[3170,3743],[3167,3743],[3169,3810],3168,[3170,10124],[3234,10125],[3169,3871,10126],10028,[3935,9932],[3233,3874,9836],3231,[3169,3742],4000,3935,[3231,3874],3168,3168,3167,[3233,3807],[3232,3743],[3168,3743],[3169,3747],3231,3167,3168,3234,3170,3232,3168,3167,3233,3234,3234,3233,3169,3167,3168,3234,3169,[3231,3807],[3170,3743],[3168,3747],3232,3169,3170,3169,[3234,3807],[4002,9841],[3936,9937],10033,[3175,10125],[3175,10126],[3176,10129],[3175,3877],4005,[3238,4009],3175,3239,[3175,3294],[3176,3298],[3175,3298],[3239,3295],[3175,3295],3231,3233,3232,[3175,3106],3239,3175,3176,3174,3176,[3174,3230],[3240,3107],[3240,4004],3430,3557,4008,3493,4006,[3175,4070],[3238,4073],3175,3175,3175,[3174,3230],[3239,3235],3174,3175,[3174,3039],[3240,2975],3167,3232,[3240,3299],3174,3238,3238,3176,[3239,3230],3234,[3176,3235],3176,[3239,4068],[3240,4070],[3238,3879],[3176,2974],[3238,3042],[3176,3878],4005,[3239,4009],[3238,3813],[3174,3750],[3176,3751],[3240,3752],3941,3430,3429,[3175,4009],3238,3238,[3239,3230],3168,[3240,2979],[3175,3877],4005,[3238,4009],3238,3174,3240,3239,3175,3175,3239,[3174,3812],[3240,3817],3174,3239,[3176,3748],3941,4008,4006,[3239,4071],[3239,3880],3175,3238,3239,3240,3175,3238,3176,3175,3176,3176,3174,3238,3175,[3176,4068],4005,3494,4006,[3239,4073],3175,3240,3238,[3240,3877],[3238,4070],[3240,4069],[3239,4072],[3174,3880],3238,[3240,10124],[3169,3241,10125],[3231,10126],10028,[4001,9932],[4001,9836],3999,3938,3935,3999,4001,4000,3935,[4000,9745],[4002,9746],[10033,9551],[607,10129],[607,10221],[607,10222],[3174,933],3176,3175,3174,[3174,4004],[3240,4009,815],[3238,870],[3239,999],607,607,607,[3176,805],[3238,806],3240,3238,3175,[3175,3940],[3240,3945],3176,3239,[3239,9841],[3173,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10022,9638],10023,10024,[2679,10120],[2745,10212],[3001,10213],2679,2681,2681,2745,2679,2936,2872,2745,2743,2678,2936,2744,2681,2872,2680,2936,2743,[2872,10115],10019,10020,10021,10022,10023,10024,[3000,10120],2681,2872,2681,2873,2872,2937,[2936,10115],[2873,10116],[3001,10117],[3001,10119],[2742,10120],[2937,10212],[2872,10213],[2679,10214],[2936,10215],[2679,10115],10019,[2679,9923],[2873,9924],[2872,9925],[2873,9926],[2745,9927],[2936,9928],10024,[2679,10118],[2678,10119],10019,[2679,9923],[3001,9827],2745,2936,2681,2936,2742,2873,3001,2678,[2936,9832],[2679,9928],9929,[2743,9734],2937,2681,2743,[3001,9733],9922,[2745,9923],[2680,9827],2745,2679,2681,2681,[2678,9832],[2873,9926],[2678,9927],[2745,9928],10024,[3001,10118],[2872,10119],10019,10020,10021,10024,[2873,10025],[2744,9830],2681,2742,3001,[2873,10115,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,677],2707,2771,3221,2771,3157,[3157,557],[3157,614],[3157,742],[3157,683],[3157,684],3156,2706,3219,3157,[3157,679],415,415,[3157,741],[3157,742],[3221,683],[3155,3890,684],[2770,4082],[2772,3891],[3157,557],[3157,614],[3157,746],[3157,747],[3157,748],[3157,749],[3157,750],415,415,[3157,677],2706,[2708,557],[2771,614],[3157,748],[3157,749],[3157,743],415,[3157,677],2773,3156,3157,3157,[3157,3760],3572,4018,[3155,3891],3157,2707,3155,3157,3221,3219,2706,2773,3221,3156,2642,3155,3157,3219,3158,3221,2644,2708,3221,3156,2770,[3221,3890],[2644,4084],4017,3954,[3157,3827],[3219,3825],[3155,3761],[2773,3828],3155,3157,2771,3219,3157,3219,[2706,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8162],[3578,8255],[3961,8256],4025,3448,3446,3446,3448,3448,3446,3447,3510,3962,4024,3446,3960,3959,3575,3577,3448,3577,3961,4023,4024,3447,3575,4023,3512,4025,3447,[3576,9820,9820],[3577,10009],10010,10013,10014,10015,[3960,10107],[3576,10108],10010,[3187,9914],[3185,9818],3249,3185,3249,[3250,5869],[3185,5870],[3250,5871],[3249,5872],[3187,5873],3186,3252,3188,3250,3188,3249,3251,3251,3186,3188,3249,3186,3251,[3187,5966],[3250,5967],[3252,5968],3249,3249,3250,3186,3187,3188,3188,[3185,5869],[3250,5870],[3185,5871],[3250,5872],[3188,5873],3252,3185,3185,3251,3249,3187,3186,3186,3251,3186,[3251,5966],[3186,5967],[3250,5968],3188,3185,3250,3187,3188,3250,3251,3252,3185,3186,3188,3185,3252,3186,3188,3251,3250,3252,3251,3252,3188,3251,3249,[3249,9646],[4002,9643],[4000,9644],3937,3938,3551,3935,3937,3487,[3170,4003],3168,3234,[3233,3808],4002,3935,4000,4001,3935,[3231,3874],3231,3232,[3170,3808],[3170,3809],3232,3170,3170,[3169,4062],[3938,9841],[3552,9842],[3553,9647],3551,3936,3551,3999,[3231,3743],[3233,3743],4000,[3170,4003],[3169,9646],[3169,9643],[3169,3871,9644],3938,3487,4001,3488,4001,3938,[3999,9553],[3487,9554],4000,3936,3936,[3170,4003],[3168,3871],[3169,4066],[3233,4063],[3170,4063],[3167,4067],3167,3234,[3167,10221],[3233,10222],[3233,3871,10124],[10028,9550],[3231,9643],[3231,9644],[3168,3998],3937,[3168,3873],3167,3234,3233,[3167,3807],4000,3938,3938,4001,[3169,3744],[3232,3745],[3231,3744],[3167,3745],[3169,3746],[3169,3743],[3232,3744],[3170,3745],[3167,3746],[3170,3743],[3168,3744],[3232,3745],[3231,3746],[3234,3810],3169,3234,3233,[3167,3806],3935,[3168,4067],[3233,3808],[3169,3809],3168,3167,[3170,3998,9649],[3936,9650],[10033,9551],[3240,10129],[3240,10221],[3174,10222],3240,[3176,3748],3941,[3238,4009],3240,3238,3238,3176,3238,3175,3175,[3239,3104],3231,3168,[3239,3041],3175,3174,3176,3240,[3238,3040],3167,[3239,3171],[3239,3878],4005,3494,4006,[3239,4071],[3176,3880],3238,3240,3174,3174,[3176,3040],3167,3168,[3240,2975],[3174,2975],3167,3232,[3176,3296],[3176,3105],3174,3176,3238,3176,[3239,3039],3167,3234,[3239,3235],3240,[3239,2974],[3239,2975],[3240,2975],3167,[3174,3235],3174,[3174,4068],[3240,4073],[3239,3878],4005,4006,[3240,4071],4005,3558,3558,3942,[3174,3753],3238,[3239,3104],3231,[3239,3043],3176,[3174,4068],[3239,3879],[3176,3748],[3174,3749],[3174,3749],[3174,3750],[3238,3751],[3174,3752],[3239,3753],[3240,3876],[3240,3881],3238,3176,[3175,4004],4006,[3240,4069],[3239,4073],3174,3175,3174,3175,3240,3176,3175,[3174,815],[3174,870],[3240,998],[3174,1001],[3176,1002],[3175,934],[3239,816],3176,3238,[3240,3877],4005,[3176,3817],3175,3240,3175,3176,3174,3174,3240,3240,3176,3175,3175,[3240,10221],[3169,2985,10222],[3231,10124],[10028,9550],[3937,9643],[4002,9644],4002,3999,4000,3999,3936,4000,[3938,9841],[3935,9842],[607,10129,9647],607,607,607,[3174,997],[3240,1001],[3239,934],[3174,816],[3174,4004],[3174,4009,871],607,607,607,607,607,[3240,933],3176,3176,3176,[3240,3748],3941,[3175,4009],3238,[3240,9841],[3175,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2679,10118,9638],[2742,10119],[2743,10120],3000,2679,2678,2808,2872,3000,3000,2681,2872,2743,2872,2809,2872,2681,2745,3000,2679,2936,2873,2680,2872,[2744,10115],[2745,10116],[3001,10117],[3000,10118],[2681,10119],[3001,10120],2681,2745,2808,2743,2743,2743,2681,2936,[3001,10212],[3000,10213],[3000,10215],[2745,10215],2873,2936,2872,2937,2679,[2679,10115],10019,10020,10021,10022,10023,10024,[2679,10120],[2681,10214],[3001,10215],[2873,10115],10019,[2872,9923],[2679,9924],[2679,9925],[2745,9926],[2808,9927],[2681,9924],[2681,9925],[2808,9926],[2679,9927],[2679,9928],10024,[2680,10025],[2679,9830],2743,3001,2872,[2742,9829],[2809,10018],10019,[2808,9923],[3001,9924],[2808,9925],[2679,9926],[2936,9927],[2679,9928],10022,10023,10024,[2873,10120],[2680,10214],[2745,10215],[2681,10115],[2681,10116],[2936,10117],[2678,10120],2680,2872,3000,2872,2681,[2872,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,741],[3157,742],[3157,747],[3157,748],[3157,749],[3157,742],[3157,743],415,415,415,[3157,741],[3157,742],[3157,747],[3157,748],[3157,749],[3157,743],415,415,415,415,415,[3157,741],[3157,742],[3157,742],[3157,743],415,415,415,415,415,415,415,415,[3157,741],[3157,742],[3157,743],415,415,415,415,415,[3157,741],[3157,558],2772,3221,[3157,3825],3953,4018,[3221,4085],3219,3155,3221,2706,2642,3155,3157,3221,2773,[3158,557],[3155,614],[3155,745],[2773,746],[3156,747],[3156,748],[3156,749],[3155,558],3158,3158,3155,2708,3157,3156,3158,[3158,3890],4017,3954,3953,3571,[3155,4021],2644,3156,3155,3221,2644,3158,[3219,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],[4025,8351],[3578,8352],3960,3574,3959,3448,4024,3511,4025,3446,3962,3574,3574,3446,3576,3448,3574,3578,3961,3446,3574,4025,3576,4026,3961,3576,4025,3512,3959,3577,4026,[4024,10106],[3447,10109],[3577,10110],[4026,10111],[3448,10203],[3962,10204],[4025,10106],[10010,9532],[3185,9625],[3185,9626],3250,3187,3185,[3251,5966],[3249,5967],[3251,5968],3186,3188,3188,3185,3252,3251,3250,3252,3187,3250,3188,3185,3249,3187,3185,3188,3188,3252,[3185,9823],[3250,9915],[3249,9916],[3186,9818],3186,3250,3187,[3252,5966],[3186,5967],[3185,5968],3185,3187,3250,3252,3252,3251,3251,3249,3188,3249,3250,[3186,9823],[3185,9915],[3252,9916],[3187,9818],3186,3252,3185,3186,3185,3188,[3187,9823],[3185,9915],[3251,9916],[3251,9818],3188,3249,3186,3252,3188,3251,3188,3186,3185,3186,3251,3185,[3188,9742],[3937,9739],[3552,9740],4000,3487,4001,3936,4000,3935,[3231,3874],3232,[3231,3742],4002,4001,3488,4000,3937,[3170,3873],3167,3170,3169,[3170,3998],3999,[3168,3809],3168,3167,[3168,9841],[3231,3871,9937],9938,[3938,9743],3936,3935,3488,3486,3938,3486,3935,[3168,3874],[3167,9742],[3167,9739],[3232,9740],[3231,3872],3938,4002,3487,3551,4000,[3551,9649],[3551,9650],[3938,9551],3937,[3233,4063],[3233,4067],3232,3169,3169,3231,3233,3234,3231,3170,3169,3167,[3167,10124,9646],[3170,9739],[3234,3807,9740],4002,[3233,4003],3231,3169,[3233,3807],[3169,3743],4000,3488,3935,3937,3551,3937,3488,3552,3938,4000,3935,3935,3486,3361,3938,3486,4001,3935,3999,[3232,3810],3231,3232,[3170,3870],3999,[3167,3743],4002,[3170,4003],3233,[3169,3742],[4002,9745],[4000,9746],[3240,10129,9647],3238,[3174,3814],[3175,3816],3176,[3239,4004],3430,3942,[3174,3750],[3239,3750],[3176,3750],[3239,3750],[3240,3751],[3174,3752],[3240,3753],3176,[3175,3104],3231,3168,[3240,3042],3240,3239,3174,[3240,3230],3232,[3240,3299],3175,[3240,4004],3944,[3240,4009],3174,3175,3240,3239,[3175,3040],[3176,2975],3167,3232,[3174,3297],3231,3170,3232,[3176,3299],3239,3174,3175,3238,[3175,3039],[3174,2975],3167,3234,3234,3168,[3174,2975],3167,3232,[3174,3297],[3174,3298],[3239,3299],3176,3175,3176,3240,[3176,3877],[3176,4073],3240,[3175,4068],[3240,4069],[3238,4072],4005,[3238,4009],3174,3175,[3239,3038],[3239,3107],3240,3176,[3239,3814],3941,4006,[3238,4071],[3240,4072],[3176,4072],4005,[3174,4009],[3176,3940],[3174,3945],3174,3175,[3239,3812],[3239,3817],3175,3238,3238,3239,3176,3176,[3238,815],[3240,870],[3238,998],[3175,999],607,607,607,607,607,[3175,869],3174,3176,3239,[3174,3812],[3238,3881],3238,3239,3240,3174,3175,3239,3175,3239,3176,3239,3175,3175,3174,[3231,3047],[3170,10124,9646],[3938,9739],[4002,9740],4002,[3937,9841],[3936,9935],[3938,9936],[3937,9933],[3935,9934],[3935,9937],9938,[607,9743],607,607,607,607,607,607,[3238,3748,869],3941,[3174,4009,935],607,607,607,607,607,[3238,869],3240,3240,3239,[3174,4004],4006,[3175,4073],[3175,9649],[3176,9650],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[3000,10214,9638],[2873,10215],2873,2744,3001,2680,2809,2679,3000,2680,2873,2873,2872,2808,2743,2873,2743,3000,2679,2679,3001,2679,2873,2936,2743,[2745,10212],[2808,10213],[2745,10214],[2681,10215],2936,2745,3000,3001,3000,2743,2873,2873,2681,2680,2681,2679,2808,2680,2873,2679,2743,2744,2743,[2872,10115],[2808,10116],[2743,10117],[2872,10118],[2681,10119],[3001,10120],3001,2743,2873,2743,[2745,10115],10019,10020,10021,10022,10023,10020,10021,10022,10023,10024,[2742,10120],3001,3000,2745,2681,2936,2872,2744,[3001,10115],10019,10020,10021,10022,10023,10024,[2873,10118],[2872,10119],[2679,10120],3000,2680,2872,3001,[2745,10212],[2681,10213],2744,2873,2679,2808,3001,2872,[2872,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3219,613],2644,3157,[3158,4016],4018,[3158,3891],[3157,557],[3158,614],[3157,745],[3221,746],[3155,747,303],304,[3158,749,306],[2772,678],[3156,558],3157,[3156,679],415,415,415,415,415,415,[3155,744],[3219,745],[3155,678],[3219,558],3157,3219,3155,3158,2770,[3221,4080],[3221,4084],[3157,4082],4017,[2644,4021],3221,3158,3157,3157,3158,2772,[2770,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[4018,549],[4019,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8063],8064,[3578,8160],4023,4023,4025,4026,3575,3510,3446,4023,3961,3448,3574,3577,3960,3448,3447,3578,3578,3512,3575,3959,3446,3447,3577,3962,4024,3447,3447,3448,3512,4023,3575,[3446,10205],[3447,10206],4025,3512,3577,4025,[3578,10106,9628],[3251,9721],[3186,9722],3187,3186,3186,3188,3187,3249,3252,3187,3249,3251,3251,3185,3249,3186,3251,3187,3186,3250,3250,3251,3249,3250,3249,[3252,9823],[3187,9919],10011,10012,[3187,9914],[3249,9915],[3187,9916],[3185,9917],[3250,9918],[3251,9818],3185,3250,3249,3250,3250,3185,3252,3187,3249,3249,3186,[3186,9823],[3252,9919],10011,10012,[3249,9914],[3252,9818],3186,3251,3185,3249,[3249,9823],[3252,9919],10011,10012,[3185,9914],[3185,9818],3187,3185,[3250,9823],[3252,9915],[3250,9916],[3185,9818],3185,3249,3185,3251,[3187,9823],[3249,9918,9547],[3937,9548],3488,3999,4002,3999,4002,3935,[3233,3873],3232,3169,[3167,3998],3486,3935,3936,4001,[3232,4003],3167,3233,[3232,3807],[3168,3743],4002,4001,[3999,9841],[3232,3743,9935],[3232,3810,9936],[3233,9937],10033,[3234,10034],[3232,4062,9839],[3231,4064],3936,3935,[3167,4065],[3231,4065],[3168,4063],[3234,4067],3231,[3232,9547],[3170,9548],3233,3167,[3233,3872],3938,3935,3487,4000,[4000,9745],[3935,9746],[3233,4065,9743,9357],[3169,3874,9358],[3167,9359],[3170,9360],3234,3170,[3169,3808],[3233,3743],[3170,3810],3170,3170,3169,3232,[3169,9357],[3233,9742,9360],[3168,3742,9643],[4000,9644],3937,[3169,4067],3233,[3231,3807],4000,3551,3552,3488,3935,3488,3551,3551,3551,3488,4002,3937,4000,3552,3551,3486,4000,4002,3488,[3168,4065],[3167,4063],[3167,4067],3233,3233,[3170,3934],3935,3486,4000,[3168,4003],3231,[3234,4062],3936,[3937,9553],[3240,9554],3175,[3176,4004],[3176,4009],3240,[3175,4004],3430,3492,3494,3558,4008,3557,3429,3494,3942,[3174,3753],3240,[3174,3230],3232,[3240,3106],3238,3239,[3240,2974],3167,[3176,3235],3176,3239,[3239,4004],4006,[3239,4073],3174,3175,[3240,2974],[3174,2975],3167,3232,[3175,3295],[3174,3106],3175,[3240,3103],3231,3168,[3174,3042],3239,3175,3176,3175,[3176,3230],3232,3231,3233,3169,3232,[3176,3297],[3238,3296],[3174,3105],[3239,3813],[3174,3749],[3175,3816],3176,3240,[3174,2974],[3239,2976],[3238,2976],[3240,2977],[3176,2978],[3175,3042],3175,3240,[3174,3878],[3238,4073],3240,3238,[3240,3102],[3238,3171],3174,3175,[3239,4004],4006,[3176,3879],3174,3174,3176,[3174,3812],[3176,4009],[3239,3878],[3176,3880],3176,3238,[3174,3876],[3175,3881],3240,3175,3174,3238,3240,3239,[3239,935],607,607,607,607,607,607,607,607,[3176,933],3238,3176,3176,[3176,3876],[3175,3945],3238,3239,3176,[3174,3814],[3239,3749],[3240,3753],3238,3175,[3238,3813],[3176,3749],[3174,3815],3240,3238,3174,[3174,9646],[4000,9835],[4001,9935],[4002,9936],[4000,9937],10031,10032,10029,10030,10033,[3239,806,10034],[3176,807,9839],607,607,607,607,607,607,[3240,3878,933],4005,[3174,4009],[3238,807],607,607,607,[3238,805],3175,3238,3239,[3174,3813],3941,[3238,4009],3174,[3175,9745],[3237,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,[2743,9734],2679,2743,2936,2808,3001,2681,3001,2872,2681,2873,2681,2743,2808,2743,3001,3001,2872,3000,2681,3000,2873,2743,3001,3000,3001,2679,2745,2681,3000,2679,2808,2744,3001,2808,2743,2743,2936,3001,2873,2744,3000,2808,2936,2872,2743,2679,2742,3001,[3000,10212],[2745,10213],[2681,10214],[2743,10215],2745,2873,2679,2744,2745,3000,[2745,10115],[2936,10116],[2681,10117],[2936,10118],[2679,10119],[2743,10116],[3000,10117],[3001,10118],[2744,10119],[2681,10120],2872,2743,2872,2742,2873,2873,2744,3000,3000,[2681,10115],[2872,10116],[3000,10117],[2745,10118],[2873,10119],[2873,10120],[2681,10214],[3001,10215],2681,2872,3000,2745,2679,2872,2936,3000,2808,2745,3001,2937,2873,[2872,9733],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3569,549],[3570,550],[3505,550],[3955,550],[4019,550],[3955,550],[3955,550],[3505,550],[4020,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[2708,677],[2708,3760],[3156,3761],3953,[2772,4021],[2771,557],[3156,743],415,415,415,[415,303],304,[415,306],415,[3156,741],[3221,742],[3158,743],415,415,415,415,415,415,415,415,415,[3221,613],2644,3156,2644,3157,3156,2643,3157,2773,[3219,4080],[3157,4085],2773,3221,2770,3156,3221,3156,[3157,679],415,415,415,415,415,415,415,415,[4020,549],[3953,550],[4018,550],[3954,550],[3956,551],415,415,415,[4017,549],[4017,550],4018,3956,[4018,550],[3955,550],[3955,550],[3955,550],[4019,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,8159,[3578,8160],3448,4025,3446,4026,4026,3574,3577,3446,3578,4024,3447,3447,4023,4024,3577,3959,4024,4023,4026,3511,4023,4024,4026,3578,4024,3511,3961,4025,4024,3447,4025,4023,3578,4023,3575,4023,4025,3578,[3960,9628],[3250,9817],[3187,9818],3252,3251,3252,3249,3249,3250,3249,3251,[3188,9823],[3187,9915],[3250,9916],[3187,9917],[3250,9918],[3252,9818],3249,3187,3186,3249,3186,3185,3185,3249,[3251,9823],[3185,9919],10015,[3961,10107],[3574,10108],10010,10011,10012,10013,10014,[3185,9914],[3251,9915],[3188,9916],[3186,9818],3185,3249,3252,3249,[3251,9823],[3250,9916],[3186,9917],[3185,9918],[3250,9919],10015,[3576,10107],[3447,10108],10010,[3185,9914],[3188,9915],[3250,9916],[3249,9917],[3251,9918],[3251,9919],10015,[3512,10107],[3962,10108],10010,[3251,9914],[3251,9917],[3249,9918],[3186,9919],10011,10012,[3249,9914],[3187,9915],[3252,9916],[3187,9917],[3249,9918],[3188,9919,9550],[3937,9643],[4001,9644],3488,3486,4000,3937,[3234,4065],[3231,3874],3170,3169,[3168,3807],4000,4001,3937,3936,3552,[3232,4003],3170,[3232,3807],4002,3937,3486,[3937,9841],[3486,9937],10031,10032,10033,[3170,3810,10129],3169,3167,3232,[3170,3872],[3168,3873],3169,3169,3231,3167,[3231,9547],[3170,9548],[3169,3808],[3167,3809],3233,3168,[3169,3871],[3233,4063],3936,3999,3936,[3232,4003,9553],[3167,9453],[3170,9454],[3232,9455],[3231,3807,9456],[3231,3743,9457],[3170,3743],4000,3551,3999,[3234,3743],[3232,3810],3170,[3233,9452],[3232,9453],[3234,3807,9456],[4000,9548],3937,[3234,4067],3167,3170,[3231,3998],3999,3488,4002,4002,4001,3486,3487,3488,3938,3999,3936,3552,3936,4001,3487,4001,4001,4002,3999,[3232,3743],[3233,3810],3167,3170,[3232,3807],4000,3487,3936,3999,3999,[3233,3743],[3232,3743],4002,[3487,9649],[4002,9650],[3176,9551],[3239,4004],3942,[3238,3749],3941,3943,3428,4007,3557,4006,[3175,4072],4005,4006,4005,[3175,4009],3175,[3240,3230],3168,[3239,3042],3239,[3239,3040],3167,3232,[3176,3105],3175,[3239,3748],3941,[3238,4009],3239,3239,[3176,2974],3167,3232,[3176,3298],[3175,3299],3239,3176,3176,3176,[3239,3294],3231,3168,[3239,2975],[3174,3042],3174,3176,[3239,3230],3168,3167,3169,3232,[3175,3105],3174,[3240,3748],[3176,3749],3941,3556,[3175,4009],[3239,2974],[3239,2975],3167,3232,[3175,3297],[3174,3298],3231,3168,[3174,2975],[3240,3041],3238,3175,3238,3174,[3238,3166],[3238,3043],3238,3240,[3240,3877],[3238,3880],3174,3238,3238,3238,[3175,3876],3942,[3238,3749],[3240,3815],3239,3240,[3174,3940],[3176,3945],3175,3238,3174,[3174,815],[3240,870],[3174,998],[3239,999],607,607,607,607,607,607,607,[3174,805],3238,3174,3240,3238,[3238,3940],3942,[3238,3749],[3240,3749],[3238,3749],3941,3557,3942,[3176,3815],[3174,3814],3941,3558,3942,[3174,3753],3175,3175,[3176,9742],9931,10031,10032,10033,[3168,10127],[3168,10128],[3169,10125],[3167,3108,10126],[3240,10129],3238,3174,[3239,806],[3176,806],[3239,807],607,607,[3240,805],3240,[3176,4004],3942,[3175,3815],[3175,806],[3174,806],[3239,806],3239,3176,3238,[3174,3813],3941,4006,[3240,3880],3239,[3176,9649],[3173,9650],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10024,[3000,10025],[2808,9830],2745,2679,2873,2679,2744,2745,2873,2681,2681,3001,3000,2745,2745,2681,2872,2744,2873,3000,2743,2745,2872,3000,2744,2808,3001,2873,2936,2681,2681,2680,2873,3000,2681,2873,2742,2872,2743,2937,3001,2873,3001,3001,2679,3000,3000,2872,2808,2681,2678,2745,2679,2743,2679,2681,2745,2872,2679,2873,2744,[3000,10212],[3000,10213],[3001,10214],[2681,10215],[3000,10212],[2808,10213],[2745,10214],[2872,10215],2872,2681,2681,2808,3000,2681,2936,3000,2936,2744,3001,[2745,10212],[2808,10213],[2742,10214],[2873,10215],3000,2744,3001,2872,2742,2808,2679,2681,3001,2743,3000,2744,2680,2873,2681,3001,[2679,9443],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3956,549],[3506,550],[4017,550],[4020,550],[3568,550],[3570,550],[4020,551],415,415,415,[4020,549],[3569,550],[3506,550],4020,4020,4019,3504,3956,3506,3953,3956,3568,[3504,551],415,[3953,549],[3570,550],[3569,550],[3953,550],[3568,551],415,415,415,415,415,415,415,415,415,[3221,677],[3158,4016],3571,[3221,4081],[3221,3892],[3157,615],415,415,415,415,[415,303],304,[415,306],415,415,415,415,415,415,415,415,415,415,415,415,415,[3157,677],2644,2643,2644,3157,3155,3221,2642,3219,3158,3157,3156,3157,2707,3221,[3157,557],[3157,614],[3155,743],415,415,415,415,415,415,415,415,[3954,613],4018,3954,4020,4019,[4020,550],[3956,550],[3953,550],3956,3955,3954,4018,3955,4019,4020,3953,[4019,615],415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8162],[3447,8255],[3446,8256],4026,3961,3512,3578,3448,4023,3959,3510,3574,3510,3642,3643,3962,3960,3577,3511,3575,4025,3576,3577,4025,3578,3510,3447,3448,3575,4025,3577,3575,4023,3960,3447,4023,3511,4024,4026,3577,3448,[3576,9724],9913,[3250,9914],[3251,9915],[3251,9916],[3188,9917],[3185,9918],[3251,9818],3187,3186,[3249,9823],[3251,9919],10011,10012,10013,10014,[3251,9914],[3188,9818],3250,3250,3251,3185,3250,3252,[3187,9631],[3187,9632],[10015,9533],[3447,10111],[3447,10203],[3961,10204],[3510,10106],[3576,10107],[3511,10108],[4025,10109],[3575,10110],10010,10011,10012,[3252,9914],[3249,9915],[3249,9916],[3185,9917],[3187,9918],[3249,9919],10012,10013,10014,10015,[3962,10111],[3447,10203],[3448,10204],[3575,10106],10010,10011,10012,10013,10014,10015,[3959,10111],[3447,10203],[3512,10204],[3447,10106],10010,10013,10014,10015,[4025,10107],[3962,10108],10010,10011,10012,10013,10014,[10015,9646],[4002,9739],[3999,9740],3935,3551,3487,[3231,4003],3231,3169,3170,3169,[3232,3872],3936,4000,3999,4000,3936,4001,[3169,3743],4002,3551,3937,[3551,9841],[3551,9937],10033,[4001,10127],[3487,10128],[3935,10129],4001,[3231,3809],3232,3234,3232,3231,3231,3232,3167,[3168,3742,9550],[3169,3747,9835],[3233,9836],[3233,3806],3999,[3170,3743],[3233,3747],3232,3234,[3231,3871],3936,3935,[3170,4067],3234,3231,[3232,3742],4002,[3486,9553],[3936,9457],3552,3487,3935,3487,3999,[3168,3810,9550],[3167,9739],[3170,9740],[3168,3998],3937,[3233,3873],3167,3232,[3233,3742],4000,3937,4000,3488,3937,3552,3938,3551,3487,3487,3938,4002,3486,3999,4000,3487,3552,3938,3551,4000,3551,[3168,4003],3233,3169,[3234,3998],3935,4002,4001,3935,4000,4002,3487,3937,[3551,9745],[3935,9746],[3240,9743,9264],[3175,4068,9267],[3238,4070],[3238,4069],4005,3492,4006,[3176,4072],4005,3942,[3240,3816],[3240,4004],3942,3941,[3239,4009],3176,[3238,3103],3231,3168,[3238,2975],3167,3232,[3240,3299],3239,[3238,3814],3941,4006,[3176,3879],3176,3240,[3240,3230],3232,[3176,3299],3238,3240,3238,3238,3240,3240,3239,[3175,3103],[3176,3297],3231,3168,[3240,2975],[3174,2975],3167,3233,3233,3233,[3175,3235],3238,[3175,3748],3941,4006,[3239,4072],[3174,4071],[3238,4073],[3176,3294],[3174,3297],[3176,3297],[3176,3106],3240,3240,[3176,3104],[3176,3295],3231,3168,[3175,2975],[3240,3041],3176,[3240,3039],3167,[3240,3171],3175,3175,3176,[3175,3040],[3176,2975],[3175,2975],[3174,2979],3239,[3240,3940],4006,[3175,4072],[3176,3879],3239,3174,[3240,4004],3942,[3175,3753],3239,3239,[3239,871],607,607,607,607,607,607,607,607,607,607,[3175,869],3175,3239,3175,[3174,3813],3941,3559,4006,[3176,4071],[3175,4069],[3238,4069],[3238,4070],4005,3942,3941,4006,[3240,4069],4005,3942,[3174,3816],3240,[3238,9838],[3240,10027],[3240,10127],[3238,10128],[3234,3047,10129],[3169,10223],[3234,10224],[3234,10221],[3233,3172,10222],3238,3239,3176,3174,3239,3240,[3174,806],[3174,806],3239,3174,[3238,4004],3428,3942,[3240,3816],3176,3240,3238,3238,[3176,3814],3941,3495,[3239,4073],3239,3239,[3175,9745],[3239,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[10024,9542],[2936,10120],3001,2872,2872,2873,2742,3001,2808,2743,2743,2681,2743,3001,3000,2745,2681,2681,3001,2936,2680,2745,2808,2936,2681,2681,2872,3001,2681,2743,2680,2745,2808,2872,2873,2680,3000,[3000,9348],[3000,9349],[2743,9350],[2745,9351],2679,2681,2681,3000,2679,[2745,9348],[3000,9349],[2745,9350],[2681,9351],2872,2681,2808,2872,2742,2679,2745,2872,2742,3000,2745,2808,3001,2679,2745,3000,2742,2742,2742,2873,2745,2936,2873,2745,2679,2681,2679,2808,2808,2679,2743,2873,2872,2743,2936,2872,2873,2872,2743,2745,2744,3000,2872,2742,2873,2679,2680,2743,2745,[3000,9348],[2680,9351],[2873,9538],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[4018,677],3956,4018,3953,4019,4019,4018,[4020,550],[4020,550],[3505,550],4017,3506,4020,3571,4020,3504,3954,4017,3570,3506,3568,4018,4018,[3953,550],4017,3506,3505,3570,4017,[4020,551],415,[4019,549],[3956,550],[3504,550],[4019,551],415,415,415,[3156,613],[3157,3890],[3155,3891],3219,3219,[3155,615],415,415,415,415,[3953,549,303],304,[4018,551,306],415,415,415,[3506,549],[3956,550],[3956,550],[3568,551],415,415,415,415,415,415,[3219,613],2707,3158,3157,3155,3221,3156,3156,3156,3219,3156,3221,3221,3219,2771,[3156,679],415,415,415,415,415,415,415,415,415,[4020,549],4018,4020,3953,4017,4020,4018,3440,4019,3955,3955,4020,4020,4017,4019,4018,3956,[3954,679],415,415,415,415,415,415,415,415,415,415,415,415,415,[415,8354],[3447,8351],[3576,8352],4023,3576,3578,4024,3577,3959,4024,4023,3511,3448,3706,3707,3511,4023,4024,3575,3578,4025,3446,4025,4025,3960,3447,4024,3962,3575,4024,4025,3513,3576,3961,3448,4024,3448,3578,4023,3578,3446,[3577,9820],[4026,10009],10010,10011,10012,10013,10014,[3186,9914],[3185,9917],[3250,9918],[3187,9919],10015,[3574,10107],[3447,10108],[3446,10109],[3447,10110],10010,[3252,9914],[3188,9818],3187,3252,3187,3188,3187,[3186,9631],[3249,9632],[3578,10111,9629],4025,3576,3577,3960,[3960,10203],[3578,10204],[3575,10205],[4026,10206],[3577,10106],[3447,10107],[4024,10108],10010,10011,10012,10013,10014,10015,[3448,10108],[3512,10109],[3447,10110],[3448,10111],3447,3962,4024,3446,[3960,10106],[3511,10107],[3960,10108],[3576,10109],[3447,10110],[3574,10111],3574,3959,3576,3511,[3510,10106],[4025,10109],[3959,10110],[4024,10111],[3447,10203],[3576,10204],[3448,10106],[3959,10107],[4025,10108],[4026,10109],[4023,10110],[3448,10111,9742],[4002,9739],[3937,9740],3552,3552,[3233,4064],[3232,3873],3234,[3170,3807],[3169,3810],3169,3168,[3234,3871],[3170,4064],3936,3935,3937,[3232,4064],3936,3486,3552,[3487,9649],[4000,9650],10033,[3938,10129],[3552,10223],[3937,10224],3999,3937,[3170,3873],3232,3170,3168,3232,3233,3169,3167,[3231,3998,9742],9931,[3231,3747,9932],[3231,3934,9933],[3938,9934],[3488,9836],4001,[3234,3747],3169,3231,[3169,3871],[3232,3873],3167,3233,[3167,3807],4000,3937,4001,[3551,9553],[3552,9554],3999,3487,3552,4000,[4001,9646],[3169,3809,9835],[3233,9836],[3231,3872],[3234,4067],3234,3167,[3232,3742],4000,3488,3487,3935,3552,4002,3937,3999,3937,4002,4002,3935,3552,3999,3488,3486,3488,4000,3487,3486,3486,3487,[3169,4003],3233,[3169,3807],4000,3938,3999,3935,3486,3935,3486,3935,3488,3550,[3938,9553],[3938,9453],[3937,9456],[3240,9457],3175,[3239,4004],3558,[3238,4009],3176,[3240,3878],4005,[3176,4009],[3176,4068],4005,4006,[3174,3880],3238,3174,[3238,3294],3231,3232,[3238,3296],[3175,3105],3175,3238,[3176,4004],3429,3942,[3176,3815],3174,[3240,3039],3167,[3240,3235],3175,3238,3174,[3174,3813],[3175,3749],[3175,3815],3239,3239,3174,3238,[3240,3294],[3240,3297],[3176,3295],[3240,3298],[3238,3296],[3174,3298],3231,3233,3168,[3239,2979],[3240,3878],[3239,4071],[3240,3880],[3240,3040],[3176,3041],3176,3240,3239,[3240,3813],[3175,3815],3176,3176,3176,3239,[3175,3103],[3238,3298],3231,3168,[3175,2975],3167,3232,[3176,3106],3238,3238,[3174,3039],3167,3232,[3174,3296],[3176,3299],3239,[3240,3877],[3239,3879],3174,3175,3238,3176,[3176,3878],4005,[3239,3817],3240,[3175,3813],[3174,3749,935],607,607,607,607,607,607,607,607,607,607,[3175,933],[3231,3111],[3233,3236],3239,[3239,3812],4006,[3176,4072],[3240,3879],3176,3240,3175,3238,[3174,3878],[3176,4072],[3239,4071],[3238,4073],3175,[3239,3878,9552],4005,3942,[3176,3753],3239,3176,[3238,10223],[3176,10224],3238,[3233,2981],[3233,3047],[3231,3046],3239,3176,3240,3176,3176,3175,3175,3176,3174,3174,[3174,3813],3941,4006,4005,3942,[3238,3749],[3240,3815],[3238,3814],[3176,3749],3941,4006,[3176,3880],3238,3176,3239,[3238,9841],[3239,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[3001,10120,9638],2873,2679,2745,2742,2743,2936,2744,2808,2872,2681,2742,2679,2678,2743,2681,2872,[2679,9348],[2678,9349],[2742,9350],[2681,9351],2681,2937,2681,2873,[2872,9348],[2873,9351],2873,2873,3000,2872,2872,3001,3000,2743,[2872,9442],[3001,9443],[2743,9444],[2679,9445],[2808,9446],[2808,9447],[2745,9448],[2872,9348],[2679,9349],[2873,9351],[2873,9443],[2743,9444],[3001,9445],[2681,9446],[2679,9447],[2936,9448],2872,2808,2681,3001,2745,2745,2808,2681,2873,3001,3001,3000,2873,2873,2743,2681,2873,2745,2679,3001,3001,2681,2873,3000,2936,2873,2808,2678,2679,2936,2872,2873,2744,2936,2872,3001,2873,2936,2936,2872,2745,2745,2743,3000,2936,3001,2808,[2936,9443],9444,9447,9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3953,741],[4020,678],[3570,558],4019,3956,3956,4018,4019,3955,3505,3954,3505,3568,3954,3955,3954,3505,4019,3955,3506,3568,3953,4017,3953,3506,3955,4020,3955,3568,3953,[3955,550],3954,3955,3955,[3955,615],415,415,415,[3156,677],3155,3221,2644,3157,[3156,679],415,415,415,415,[3568,613],3505,3955,[3570,550],[3954,550],[3505,550],4020,3442,3956,4020,[4020,550],[4018,550],[3568,551],415,415,415,[3158,677],3155,3155,3158,3158,3219,3155,3156,2644,3155,2644,3156,[2642,557],[3157,742],[3156,742],[2772,743],415,415,415,415,415,415,[4020,549],[4018,550],[4020,550],4018,4018,3955,4017,3955,4020,3954,3953,3956,3953,3954,3956,3955,4018,3954,3955,3954,3953,[3956,551],415,415,415,415,415,415,415,415,415,415,415,[415,8063],8064,[3576,8160],3448,3448,4026,3447,4024,4025,4023,3512,4025,3578,4026,3447,4023,3960,3448,4024,3578,3447,4025,3959,3447,3959,4025,3576,3574,3510,3640,3641,4023,3576,3959,3961,3962,4026,3578,4023,3447,3447,3448,3962,4023,[3446,10106],[3577,10107],[3512,10108],[3961,10109],[3446,10110],10010,10013,10014,10015,[3574,10111],[3448,10203],[4023,10204],[3447,10205],[3446,10206],[4026,10106],10010,[3187,9914],[3186,9818],3250,3186,3186,3252,[3249,9823],[3250,9824],[3959,9629],3448,3511,4023,3959,3577,3446,3448,3448,3448,[3512,10203],[3447,10204],[3512,10106],[4025,10107],[4026,10108],[3962,10109],[4025,10110],[4023,10111],[3578,10204],[3574,10205],[4024,10206],3961,3578,3575,3447,4023,3578,[3448,10203],[3578,10204],[3446,10205],[4023,10206],3510,4024,3511,3448,3512,3448,[3577,10205],[3577,10206],4024,3448,4023,3578,[3447,10203],[3511,10204],[3575,10205],[4024,10206],[3447,9547],[3937,9548],4000,4002,3937,[3170,3743],[3169,3747],3234,[3233,3806],3999,[3170,3743],[3170,3810],3168,3233,[3232,3998],3937,[3232,4067],3231,[3234,3998],3487,3486,[3551,9745],[4002,9746],[4002,10129],3999,3935,[3167,4065],[3167,4063],[3167,4067],3232,3234,3168,3233,3168,3169,3170,3232,[3169,3998,9838],[3937,10027],10028,10029,10030,[3938,9932],[4002,9836],3935,[3169,3810],3167,3170,3231,3168,[3234,3742],4000,3551,3552,3551,[3935,9745],[3551,9746],[4001,9551],3937,4001,3486,[3487,9742],9931,[3233,9932],[3170,9836],3234,3167,[3231,3807],4002,4000,3937,3936,3487,3938,3935,3938,3935,4000,4002,3937,4001,3552,3551,3938,3551,3937,[3231,4066],[3167,4065],[3169,4066],[3167,4064],[3231,4066],[3234,4067],3167,[3234,3806],3999,3935,4000,3999,3937,4001,3486,3937,3488,3551,3551,3488,4000,[3937,9553],[3176,9554],[3175,4004],3556,[3174,4009],3238,3174,[3174,3878],[3239,4073],3239,[3239,4004],[3238,4009],3239,3176,3175,3176,[3240,3230],3168,[3238,2979],3239,3174,3174,[3176,3877],[3175,4069],[3175,4070],[3238,3879],3238,[3240,3230],3234,3168,[3239,2979],3176,3239,[3240,4004],3493,3942,[3239,3815],3240,3175,3174,3174,3238,3238,[3240,3813],[3174,3815],3175,[3176,3294],[3238,3295],3231,3168,[3176,2979],3240,[3176,3040],3167,[3239,3235],3175,[3176,3814],[3239,3816],[3174,4004],3942,[3238,3750],[3240,3751],[3175,3752],[3176,3753],3175,3175,[3174,3104],[3239,3298],3231,3233,3168,[3239,2976],[3174,2977],[3176,2978],3167,3232,[3239,3105],3238,[3175,3748],[3238,3749],[3238,3815],3240,3239,3240,3239,3175,3239,[3175,4004],[3240,3945],3176,[3238,4068],4005,[4008,806],[3943,807],607,607,607,607,607,607,607,[3238,805],[3169,3241],3234,[3169,3236],3240,[3176,3876],[3175,3817],3238,3176,3240,3175,3174,[3231,3301],3175,3175,3175,3174,3176,[3240,9648],[3239,3877,9551],4005,[3238,4009],3239,3174,3240,3239,[3238,3813],[3175,3749],[3175,3749],[3175,3749],[3176,3816],3176,3174,3175,3175,3239,3239,3175,3176,[3174,3813],3941,4006,[3176,3879],[3176,3877],[3239,4070],4005,3942,3941,4006,[3240,4069],[3175,4073],3175,[3238,9841],[3175,9933],[3176,9934],[3173,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2808,9734],3000,3001,2681,2873,3001,3001,2679,2681,3001,2743,2743,2873,2681,3000,[3000,9442],[2681,9443],[2743,9444],[3001,9445],[2745,9446],[2743,9447],[2743,9448],[2745,9348],[2745,9351],[2681,9443],[2873,9444],[2937,9447],[2745,9448],2872,3001,2936,2679,2742,2744,2678,[2679,9538],[2743,9539],2681,2743,2936,2743,[2742,9544],[2808,9444],[2678,9445],[3001,9447],[2936,9539],2681,2872,3001,2742,[2808,9544],[2872,9545],3000,3001,2743,3001,2681,2681,2681,2808,[2679,9348],[2743,9349],[2742,9350],[2681,9351],[3000,9348],[2872,9349],[2744,9349],[2745,9350],[2872,9351],3001,2681,2679,2681,2744,2681,2872,2745,3001,2808,2872,[2873,9348],[2872,9351],2681,3000,2808,3001,[2744,9348],[2680,9349],[2743,9350],[2872,9351],2742,2873,2743,2872,2872,2873,2936,[2681,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3504,613],3954,4017,3954,3569,3506,3954,3504,4020,3955,3570,3504,4017,3570,4017,3506,3955,3569,4017,3953,3505,4017,3954,3570,3504,3954,3440,3954,3504,3506,3504,3504,[3954,679],415,415,415,[3221,744],[3158,745],[3158,746],[3156,747],[3157,748],[2708,743],415,415,415,[4020,549],4018,3504,4018,3504,3570,4018,3954,3505,4020,3506,3570,3506,[4018,615],415,415,415,[3155,741],[3158,742],[3221,742],[3156,678],[3221,558],3157,3155,3158,3219,3219,3157,3221,[3158,679],415,415,415,415,415,415,415,415,415,[4017,613],3953,4018,3953,3956,4019,3955,3953,3954,4020,3954,3956,4018,4020,4017,3954,4020,3953,4018,4020,4017,4018,[4019,551],415,415,415,415,415,415,415,415,415,415,8159,[4026,8160],3512,3960,3512,4023,4023,3959,3577,3448,3448,3446,4025,3448,3513,4026,4024,4026,4024,4026,3511,4024,3576,3447,3578,3959,4023,3446,3578,3704,3705,3511,3448,3448,4024,4026,3448,3448,3959,3578,4026,3448,4025,3578,3575,[3448,10203],[3960,10204],[3575,10205],[3446,10206],[3576,10106],[3577,10109],[3961,10110],[3961,10111],4024,4024,3962,3447,3448,4025,[3576,10106],10010,[3250,9914],[3250,9915],[3249,9916],[3250,9917],[3186,9918],[3250,9919],9920,[3448,9725],3962,4026,3447,4025,3576,3577,3960,4025,3960,3577,3578,3576,[3510,10203],[3578,10204],[3510,10205],[3578,10206],3447,3446,3962,3577,4024,4023,3448,3578,4025,3448,3446,3511,3446,3447,4025,3446,3961,4023,3577,4023,3447,3512,3447,4024,3577,4026,3578,4023,3448,[3574,9550],[4001,9643],[3938,9644],3552,3999,3551,4002,[3233,3811],3170,[3167,3870],3551,3935,[3169,3873],3233,3233,[3232,4062],[3168,4067],3234,3231,[3169,3998],4001,3552,3486,[3938,9553],[3487,9554],3937,[3170,4067],3231,3167,3234,3234,3168,3169,3233,3170,3233,3168,[3234,3808],4000,4001,[3231,3747,10124],[3169,3870,10125],[3938,10126],10028,[3553,9932],[3938,9836],3999,[3168,3743],[3170,3747],3167,3168,[3232,3998],3552,3486,4002,3936,[3488,9841],[3488,9842],[4002,9647],3488,3487,4001,[3487,9838],[3232,3811,10027],10028,[3168,9643],[3231,9644],3167,[3234,3872],[3233,4064],3936,3552,4002,4001,4002,3551,3486,3614,3615,4002,3552,4002,3938,3938,3551,3935,[3231,4067],3170,3170,3233,3234,3234,3234,3169,[3234,3806],4001,3487,3486,3936,4001,3552,4001,4002,4000,3552,3488,3487,3552,[3487,9745],[3937,9746],[3238,3878,9551],[3238,4070],[3238,3880],3240,3174,3239,[3174,3814],[3240,3749],3941,[3176,4009],3175,3239,3176,3240,[3176,3294],3231,3168,[3176,2975],[3239,3042],3174,3176,3240,3240,3238,3174,[3240,3230],3170,3169,3168,[3240,3042],3240,[3174,3878],4005,4007,3942,[3238,3750],[3176,3750],[3174,3750],[3239,3750],[3240,3751],[3175,3752],3941,[3176,4009],3239,3240,3176,[3176,3104],3231,3168,[3176,3042],[3238,3230],3232,[3238,3105],3174,[3238,4004],3942,3941,3431,3944,3493,4006,[3175,3879],3240,3174,3176,[3239,3039],3167,3232,[3175,3295],[3176,3297],[3239,3295],[3175,3296],[3239,3295],[3174,3105],3240,3176,[3239,4004],3494,3942,[3238,3753],3176,3239,3240,3239,[3239,3813],3429,3942,[3174,3749],[3174,3749],3941,4008,[3942,871],607,607,607,607,607,607,607,[3239,869],[3233,3111],3167,[3167,3236],3239,[3239,3940],[3240,3881],3240,3175,3238,3239,[3170,3111],3233,[3170,3300],3174,3239,3238,[3175,9841],[3239,9842],[3239,9647],[3238,4004],3942,[3176,3815],3239,[3176,3748],[3175,3749],3941,4006,[3239,4069],4005,3942,[3176,3749],[3238,3816],3174,[3239,3748],[3240,3749],[3174,3750],[3240,3751],[3174,3752],3941,4006,[3240,3880],3174,3174,3239,[3174,3877],[3240,4069],[3238,4071],[3238,3879],[3176,9841],[3174,9933],[3240,9934],[3174,9937],10029,10030,10033,10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2872,9448],2808,3000,2743,2873,3001,3000,3001,2936,2936,3001,3000,2681,2937,2936,[2679,9538],[2745,9539],2679,2745,2873,2679,[2745,9544],[2681,9444],[2873,9447],[2679,9539],3000,[3001,9640],[2745,9641],[2681,9542],2681,3000,2872,2936,2873,[2809,9541],[2936,9634],[2872,9635],2745,3001,2872,2872,2743,2872,2873,2809,2872,2745,2679,3001,2744,[2873,9736],[2872,9737],[2681,9542],2681,2936,2873,2742,2742,[3001,9442],[3001,9443],[2873,9444],[2681,9445],[2936,9446],[2936,9447],[2937,9444],[2681,9445],[2936,9445],[2679,9446],[2681,9447],[2680,9448],2936,2679,2873,2679,2681,2873,2872,2681,[2744,9442],[2936,9443],[3000,9444],[3000,9447],[3001,9448],[3001,9348],[2680,9351],[2808,9443],[2936,9444],[2679,9445],[2808,9446],[3001,9447],[2745,9448],3000,2873,2872,3001,2743,2743,[2936,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3568,677],4017,4020,4017,3441,4019,3955,3505,4019,3570,4019,4018,3955,3955,3954,3440,3506,4017,4017,3569,3505,3953,3954,3953,3506,4017,3506,3955,3570,3570,[3955,557],[3953,614],[3954,743],415,415,415,415,415,415,415,415,415,415,415,415,[3956,613],3570,3954,4017,3955,4017,3953,3504,3955,3506,3568,3956,4019,[4018,679],415,415,415,415,415,415,415,[3219,741],[3158,742],[3221,742],[3219,742],[3221,742],[3156,742],[3221,742],[3155,742],[3155,743],415,415,415,415,415,415,415,415,415,[4020,677],4019,3955,3954,4020,3953,3953,4017,4019,3955,4017,4018,4019,3954,4020,3956,3955,4019,4018,3956,4018,4019,3953,[3954,551],415,415,415,415,415,415,7969,7972,8159,[4023,8160],3962,4025,4023,4026,3511,3642,3643,3448,3510,3578,3447,4023,3576,4024,3510,3447,4025,3962,4024,3959,3446,4023,3447,3962,4025,4026,3512,3447,4023,4024,4023,3512,4023,4025,3512,3510,4025,4025,3448,3577,4025,3575,3446,3961,3961,4024,3577,4024,3961,[4023,10205],[3578,10206],3962,3578,3446,4024,3961,3447,3575,3578,[3510,10106],10010,10011,10012,10013,10014,10015,[3574,10016],[3448,9821],3447,3577,4024,3577,4025,3511,3447,3960,4026,4024,4026,3448,3512,4025,3446,3512,3575,4026,3959,3959,4023,3962,3578,3512,3578,3448,3511,4023,3575,3447,4026,3578,4025,3640,3641,3446,3448,4023,3959,3446,3446,3512,4026,3576,3577,[4024,9646],[4002,9739],[4001,9740],4001,4001,3935,3938,[3232,3875],3170,[3168,3934],4000,[3234,4003],3232,3167,3170,3232,3231,3168,[3170,3742],4002,3999,3938,4000,3552,[3937,9553],[3170,3874,9554],3168,3234,3170,[3169,3742],[3233,3810],3168,3234,3231,3232,3232,3170,[3168,3871],3936,3551,[3170,4003],[3234,3934,10221],[3487,10222],[3935,10124],[10028,9550],[4002,9643],[3618,9644],3619,4001,[3233,3743],[3234,3743],4002,3551,3552,3552,[3488,9841],[3553,9937],9938,[3999,9743],4001,3938,3937,3938,[3170,3875],[3233,10124,9550],9739,[3167,9740],3168,3170,3167,[3234,4062],[3233,4065],3936,3936,3486,4001,4000,3678,3679,3552,4002,[3551,9552],3552,3486,4000,4001,[3170,3810],3169,3231,[3231,3807],[3234,3810],3168,3167,3167,[3234,3870],3487,3935,4002,3486,3935,[3167,4063],[3169,4065],[3169,4066],[3232,4064],3938,3550,3487,3552,[3487,9841],[4001,9842],[3174,9647],3239,3238,3239,3240,3174,[3176,4004],4006,[3239,4072],[3174,3879],3238,3174,3238,3239,3238,[3238,3103],3231,3234,3168,[3176,2976],[3240,2977],[3238,2978],[3174,3042],3174,3174,[3176,3103],3231,3169,3169,3168,[3174,3042],3238,[3176,4068],[3240,4070],[3240,4070],[3239,4072],4005,3429,3944,4007,3943,4007,3942,[3238,3749],[3239,3816],3174,3175,[3239,3294],3231,3168,3167,[3174,3235],3176,3239,[3174,4004],4006,4006,3942,4006,4005,3942,[3175,3815],3175,3240,[3174,3039],3167,3232,[3239,3106],3240,3238,3240,3175,3176,3176,[3174,3748],[3174,3749],3941,4006,[3174,4071],[3238,3880],3238,3175,3174,[3176,3813],3941,4006,[3240,4069],[3175,4072],[3238,4069],4005,3431,[3943,935],607,607,607,607,607,607,607,[3238,933],[3170,3047],[3231,2980],3174,[3240,3814],3941,[3240,3945],3175,3175,3174,[3169,3049],3234,3233,3232,[3232,3236],3240,[3176,9841],[3174,9937],9938,[3240,9743],[3238,4068],4005,[3238,4009],[3239,3814],3941,4006,[3174,4070],[3240,3879],3174,[3240,3877],[3238,4072],4005,3942,[3240,3815],[3238,4068],[3238,4069],[3239,4072],[3174,4070],[3240,4070],4005,3942,[3174,3816],3175,3175,[3231,3112],[3233,3109],[3167,3301],[3234,3302],[3169,3302,9841],[3176,9937],10029,10030,10033,10125,10126,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[2872,9545],3001,2808,2873,2742,2936,2745,2679,3001,3001,2936,2872,2680,[3000,9541],[2873,9730],[2873,9731],2745,2872,2808,3000,2872,2742,2679,2742,3001,[2872,9640],[2808,9641],[2872,9638],2743,2679,2872,2680,2679,[2936,9637],[2808,9730],[3000,9731],2745,2744,3001,2872,2872,2678,3000,3001,2872,2678,2745,3000,3001,[2742,9832],[2872,9833],[2873,9638],2742,2680,2936,2743,2873,[2808,9538],[2872,9539],3001,2872,2872,2936,2744,2936,2681,2681,2808,[2679,9544],[2872,9545],2872,2873,2743,2936,2936,2743,2743,[2809,9538],[2936,9539],2936,2681,[2679,9544],[2743,9444],[2873,9447],[2680,9539],3000,3000,2743,2745,[2873,9544],[3000,9545],2873,3001,2872,3001,3001,[2745,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3954,549],3568,3955,3504,4017,3955,4017,3569,3570,4020,3569,4017,3506,3570,4019,3506,4017,3955,3955,3569,4020,3505,4018,3569,3569,3954,3956,4019,3505,3956,3504,[3506,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3572,677],3953,3955,3954,3954,4018,4017,3440,3505,3570,3956,3570,3570,3505,[3954,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[4020,549],3953,4017,4018,3954,3954,3953,4019,3953,4020,3955,4020,4019,3953,4020,4018,4018,3955,4020,4018,3954,3956,3954,4017,[4020,615],415,415,415,415,[415,8063],8064,[3575,8065],[4025,8068],[3447,8160],4025,3448,3446,3447,3577,4023,3706,3707,3448,3577,3962,3447,3575,3575,3577,3448,4024,3512,3448,4026,3447,3446,3446,3962,3578,3446,3577,3578,3513,4024,3448,3511,3577,3577,3446,3575,3577,3574,4023,3578,3960,3574,4025,3575,4026,3510,4026,3960,3448,3448,3446,3447,3578,4025,3446,4026,3446,3446,4024,3510,3511,[3510,10106],[4024,10107],[4025,10108],[3577,10109],[4024,10110],[3578,10111],4024,3578,3959,3511,4025,3510,4023,4026,3578,3446,3962,3510,3446,3447,3959,4024,3447,3959,3962,3446,3575,3575,3512,4023,3512,3960,4024,3960,4024,3447,3447,3961,4025,3574,3575,3704,3705,3577,3574,3448,3446,3446,3447,3447,3448,3446,4025,[3574,9646],[4002,9835],[3486,9836],3551,3936,3936,3552,[3232,3939],3167,[3233,3871],[3167,4064],[3170,4067],3170,[3232,3807],[3234,3744],[3232,3744],[3167,3745],[3169,3746],4002,3937,4002,3999,3999,3937,[3234,4067,9649],[3233,9650],[3233,9551],3170,3232,[3170,3872],[3169,3874],3167,3168,[3231,3808],[3233,3743],[3167,3810],3231,3233,[3234,3998],3999,[3232,4003],[3231,3872],3936,4002,[3999,10124,9646],[3937,9739],[3682,9740],3683,3486,3486,3938,3936,3552,3936,[3486,9649],[3938,9650],10033,[3999,10034],[3935,9839],3935,3936,3551,4000,[3169,3939],[3234,9646],[3167,9835],[3234,9836],3231,3167,3234,3168,3233,[3232,3872],[3231,4063],3936,3937,3552,3938,3486,3935,3999,[3486,9648],[3936,9551],3552,3935,3486,3999,[3233,3743],[3232,3810],[3232,3872],[3169,4067],3233,3167,3167,[3169,3934],3935,3938,3935,4000,[3169,4003],3234,3231,3168,3169,[3234,4062],3936,4001,[3487,9841],[3937,9937],9938,[3175,3815,9743],3238,3240,3174,3240,[3174,3748],3941,[3240,4009],3240,3238,[3239,3039],[3176,2976],[3174,2976],[3174,2976],[3175,2977],[3239,2978],3167,3232,[3238,3296],[3238,3295],3231,3234,3168,[3176,2979],3175,3240,[3176,3294],3231,3233,3170,3168,[3176,2979],3175,3238,3239,3238,[3175,3878],[3174,4069],4005,3493,3556,4006,4005,3558,[3175,4009],3239,3175,3174,[3239,3230],3234,3232,[3174,3106],3175,[3239,3814],3941,3942,3942,3941,[3175,4009],[3240,4068],[3239,4070],[3239,3880],3175,3175,[3176,3230],3232,[3238,3299],3238,3176,3175,3240,3174,[3174,3748],[3240,3749],3941,4006,[3176,4072],[3176,4073],3238,[3233,3301],[3231,3302],3240,3239,[3238,4004],4006,[3175,4073],3176,3175,[3238,3814],3941,4006,3942,[3942,807],607,607,607,607,607,[3238,805],3174,3240,3238,3238,[3174,4004],4006,[3176,3880],3239,3239,[3174,9841],[3167,3113,9933],[3170,9934],[3168,9935],[3232,9936],[3234,3109,9935],[3240,9936],[3174,9937],10033,[3175,10034],[3175,9839],3240,[3238,3812],[3174,4009],[3240,4004],4006,[3240,3880],3238,3238,3174,3175,3175,[3240,4068],[3239,4069],[3239,4073],3176,3176,3174,3175,3176,[3175,3877],4005,3942,[3240,3816],3238,[3232,3048],3231,3170,[3170,9841],[3167,9937],10033,10125,10126,10129,10221,10222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[3000,9545],2744,3001,2743,2808,2936,2936,3001,2872,2745,2679,2681,[3000,9637],[3000,9826],[2872,9827],2936,2742,2936,2936,2681,3001,3001,2679,2743,[2681,9736],[2808,9737],[2744,9638],2744,3001,2679,2745,2745,[2872,9637],[2681,9826],[2745,9827],2679,2679,2936,2873,2743,2681,2743,2743,3001,3000,2745,2873,[2743,9832],[2681,9928],9929,[2808,9734],2679,3001,3001,2743,[2936,9541],[2745,9730],[2872,9731],3000,2743,2809,2936,2936,2745,2936,2745,2873,[2743,9640],[2872,9641],[2873,9542],2679,2873,2681,3000,2872,[2745,9541],[2873,9730],[3001,9731],3000,2681,2681,2873,3001,2873,2936,3000,2937,2872,[2872,9640],[3001,9641],[2808,9542],3000,2809,2678,2743,[2745,9733],9922,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3956,549],3506,3568,3953,3505,4017,3505,3956,3505,3506,3506,3506,3505,3953,3955,3956,4018,4020,3505,3568,3955,3954,3441,3956,3570,3954,3954,3953,3955,3568,4017,3504,[4018,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3504,741],[4019,748],[3955,749],[3504,678],[3568,558],4018,3954,3953,3569,3954,3955,4018,3953,3955,4017,[4017,550],[3956,551],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3956,549],[3954,550],4017,4017,4019,4019,4019,4017,4017,4019,3954,4019,3955,4020,3953,4018,4017,4017,3956,3954,3955,3953,3956,4017,4018,3955,[3954,679],415,415,415,415,8159,[3574,8160],4025,3447,3446,3446,3512,4023,4026,3962,3959,4026,3448,3446,4024,3577,4026,3446,3575,3511,3577,3961,3448,3512,3961,4024,4023,3961,4023,3510,3574,3574,3577,3574,4023,3578,3962,3512,3448,4023,4024,3577,3448,3576,3959,3512,3447,3446,3574,3578,3577,3961,3447,3449,3447,3511,3574,3447,3576,3510,3574,3577,3961,3448,3448,3448,3575,[3577,10203],[3447,10204],[3447,10205],[4025,10206],3962,3577,4025,4026,3511,4026,3577,3446,3447,3448,3577,3962,4026,3575,3446,4025,3577,3447,3577,3962,3448,4026,3446,3575,3962,3511,3513,3447,4023,3575,3578,4023,3960,3512,3576,3578,3962,3448,3447,3576,3447,4024,4025,3446,3577,3961,3510,3577,[4025,9742],9931,[4002,9932],[4002,9836],3486,3488,3936,[3169,4003],3233,3167,3168,3233,3232,[3170,3998],3486,3551,3936,3551,3935,3938,4001,4001,3937,[3170,4067],[3167,9745],[3232,9746],[3170,3808,9647],[3167,3744],[3231,3745],[3234,3746],[3169,3809],3231,[3233,3807],4000,3488,3999,[3231,3747],3234,[3170,4062],3936,4001,[3169,3809],[3169,3872],3936,[3551,9646],[3999,9835],[3552,9836],3935,3937,3936,3999,3551,4001,3488,[3487,9745],[3488,9746],[3551,10129],3938,3937,3935,4001,3551,3935,[3167,3873],[3170,9742],9931,[3169,3742,9932],[3170,3743,9836],[3167,3810],3231,3233,3167,3167,3232,[3167,3998,9841],[3486,9933],[3552,9934],[3487,9836],3999,4000,[3936,9841],[4000,9842],[3935,9647],4001,3936,4001,3553,3553,[3234,4003],3170,3233,3232,3168,[3231,9549],[3234,3872],[3168,4067],[3234,3998],3488,4000,[3233,4003],3168,3234,[3167,3808],[3168,3743],[3167,3809],[3232,3998],[3552,9649],[4000,9650],[10033,9551],[4005,10034],[3942,9839],[3176,3750],[3239,3750],[3174,3751],[3238,3752],3941,4006,[3240,3880],3238,[3240,2974],3167,3232,[3239,3296],[3238,3295],3231,3232,[3174,3296],[3239,3106],3239,3240,[3175,3230],3233,3234,[3174,3235],3239,3239,3176,[3175,3294],3231,3169,3169,[3176,3235],3174,3176,3175,3239,3176,3175,[3240,4004],3493,3557,[3238,4009],[3176,3877],[3176,4072],[3174,4073],3240,3176,[3175,3040],3167,3233,3168,[3174,3041],3175,[3240,3878],[3239,4072],[3176,4070],[3240,4071],[3174,4071],[3239,3880],3175,3239,3238,[3238,3039],[3238,2975],3167,[3239,3235],3174,3175,3239,3240,[3240,3814],[3239,3749],3428,4006,[3240,4071],[3176,3879],3175,[3169,3304],[3233,3112],3167,3170,[3234,3110],[3240,3813],3941,[3239,4009],3239,3176,3240,[3176,4068,815],[4007,870],[3944,1004],[3944,1005],[3944,999],607,607,607,[3176,805],[3176,806],3239,3240,3240,3176,[3238,3748],3941,[3175,4009],3240,3239,[3174,9841],[3239,9937],10029,10030,10031,10032,10031,10032,10033,[3175,10129],3174,3176,3174,[3176,3876],3942,3941,[3174,4009],3175,3238,3174,3239,3176,3239,3238,3176,3175,3240,3174,3176,3239,3175,3238,[3238,4068],4005,[3175,4009],3175,[3170,3049],3233,[3170,9649],[3231,9650],[10033,9551],10129,10221,10222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[3001,9542],2743,2681,3000,2873,2745,2679,3000,2745,2745,2873,[2936,9733],9922,[2679,9923],[3001,9924],[2744,9925],[2742,9827],3001,2680,[2872,9832],[2681,9924],[2743,9925],[2743,9926],[2681,9927],[2678,9833],[2808,9638],2679,2743,3001,2808,2743,[2681,9733],9922,[2743,9923],[2679,9924],[2743,9925],[2936,9827],2679,2808,[2873,9832],[3000,9924],[2872,9925],[2743,9827],2680,2872,[2679,9640],[2679,9641],[10024,9542],[2679,10025],[2936,9830],2936,2743,2745,2742,[3000,9637],[2745,9826],[2872,9827],2808,2936,2679,2872,2872,2743,2809,2679,3000,[3000,9736],[3001,9737],[2808,9638],2745,2936,2872,2679,2743,[2679,9637],[2745,9634],[3001,9635],2745,2936,2936,2873,2873,3000,2745,2680,2936,2936,[2679,9640],[2873,9641],[2681,9638],2743,2742,2808,2873,[2679,9829],[2742,10018],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3504,613],4020,4019,4020,3953,3955,3441,4019,4020,3568,4018,3955,3505,4019,3506,3954,3504,3956,3569,3955,3953,3506,4017,4020,3506,3506,3570,3568,3569,3955,3568,3955,[3570,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[4020,613],3953,4018,3505,3504,3442,3953,4020,4019,3505,3570,4018,[3440,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3956,613],3953,3954,3956,3956,3953,3953,3956,3954,4019,3954,3955,3953,4017,4018,4019,4019,3953,3956,4019,4017,3956,3954,[4018,557],[4019,614],[4017,742],[3954,743],415,415,415,[415,8162],[3447,8351],[3448,8352],3447,3960,4024,4024,3446,4025,3448,3578,4025,3961,3447,4025,3448,4023,3448,3961,3577,3578,3578,4026,4025,3448,4026,4026,3577,3961,3447,3448,3448,4026,3962,3512,4026,4025,4026,3446,3446,3447,4024,3578,3962,4024,3959,3960,4023,4025,3448,3512,3577,4026,4023,3446,4026,3574,3577,3447,3574,4026,4023,4025,3511,3961,4023,4025,3510,4025,3446,4023,3960,3448,3448,3577,3510,4026,3447,3577,4025,3960,3447,3448,4026,3510,3961,3577,3574,3512,3578,3510,3961,3446,3577,3446,3448,3513,4023,3447,3577,4023,3448,3960,3511,3577,4026,3446,3447,3576,3446,4026,3575,3448,4024,3446,4024,3447,3510,3575,3577,[4025,9838],[4025,10027],10028,[3937,9932],[3487,9836],3487,3937,[3231,4067],3169,3168,3234,3167,[3169,3808],4000,3937,3936,3936,3488,3936,3552,3999,3935,[3169,4067],3170,[3170,9841],[3234,9842],[3231,3998,9647],3486,4002,3937,[3169,4003],3170,[3167,3806],3938,3551,3487,[3233,4003],3234,3233,[3234,3998],3936,4001,[3231,3810],[3168,3998],[3999,9742],9931,[3938,9932],[4001,9836],3937,3552,3936,3936,4000,4001,3487,[3553,9553],[3935,9554],3999,3488,3937,3935,3935,[3168,4003],3168,[3169,9838],[3170,3808,10027],10028,[3551,9932],[3999,9836],[3167,3743],[3170,3743],[3168,3809],[3167,3742],[3169,3743,9841],[4000,9937],10029,10030,[3487,9932],[3552,9933],[3938,9934],[3488,9937],9938,[3999,9743],4000,3937,3999,4001,3488,[3170,4003],[3170,3808],[3234,3810],3167,[3231,9550],[3232,9645],3232,3232,[3168,3872],3936,3935,[3231,3874],3170,3167,[3168,3806],3935,3999,4002,[4001,9745],[4002,9746],[3175,10129,9647],[3175,4068],[3239,4070],[3239,4070],4005,3492,4006,[3175,4070],[3238,4073],3240,3239,[3239,3038],3232,[3175,3106],3239,3238,[3239,3230],[3176,3235],3176,3239,3238,3240,[3240,3104],3231,3169,3168,[3240,2975],[3175,3041],3174,3176,[3176,3104],3231,3233,3168,[3239,2976],[3176,2977],[3238,2978],[3175,3041],3176,[3176,3813],3941,3556,4008,[3174,4009],3176,3174,3175,3239,[3174,2974],3167,3232,[3239,3296],3231,3168,[3240,2979],3238,3239,3239,3175,[3174,2974],[3239,2976],[3174,2976],[3239,2977],[3174,2978],3167,3232,[3175,3295],[3175,3106],3175,3176,3238,[3240,3813],3941,4006,[3240,4071],[3239,3880],[3232,3303],[3231,3304],[3167,3111],3170,3169,3169,3168,[3167,3046],[3240,4004],4006,[3239,3879],3238,3174,3240,[3176,871],607,607,607,607,607,607,607,[3176,869],3174,3239,3240,3238,[3239,3813],3559,4006,[3240,3880],3175,[3174,9841],[3175,9937],10033,[3944,935,10125],[607,10126],[607,10127],[607,10128],[3240,869,10127],[3174,10128],[3238,10129],3176,3175,3176,3176,[3239,3940],3492,4006,[3238,3880],3174,[3175,815],[3238,870],[3175,934],[3176,816],3174,3176,3239,3175,3238,[3174,815],[3240,870],[3239,998],[3176,934],[3175,816],3174,[3176,3812],[3175,4009],3238,[3170,3177],3234,[3169,9745],[3170,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,[2936,9638],2873,2745,3000,2808,2681,2680,2872,2873,2808,3001,[2678,9829],[2743,10115],10019,10020,10021,[2936,9923],[2742,9924],[2745,9927],[2745,9928],10020,10021,10022,10023,9929,[2745,9734],2743,2937,2936,2681,2808,[2679,9829],[2681,10018],10019,10020,10021,[3000,9923],[3000,9926],[2873,9927],[2680,9928],10020,10021,[2743,9923],[2745,9827],2681,[2743,9736],[2743,9737],[2743,10120,9638],3000,2872,3000,2936,2936,2808,[2745,9733],9922,[2872,9923],[2745,9924],[2745,9925],[2873,9827],2936,2872,[2681,9832],[2872,9924],[3001,9925],[2679,9926],[3000,9927],[2936,9833],[3000,9638],2873,2872,2681,2744,3000,[2745,9637],[2679,9730],[2873,9731],3001,2679,2743,3001,2681,2679,3001,2742,2808,2742,[2873,9736],[2678,9737],[2745,9638],2872,2873,2936,2743,2808,2679,[2742,10115,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[4020,677],4018,3505,3954,3506,4020,3955,3569,3505,4020,[3569,557],[3569,614],[3505,742],[3954,742],[3570,678],[3956,558],3954,3506,3505,3505,4019,4019,3504,3505,3570,3569,3568,3953,3569,3504,3569,3956,[4017,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3570,677],3956,3956,3504,3505,3954,3953,3506,3570,4019,4017,3506,[4018,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3956,677],3955,4017,3955,3954,3955,4018,3955,4019,4019,4017,3954,3954,3956,4018,3955,4020,3954,4020,4020,4018,3571,3953,[3955,615],415,415,415,415,415,415,[415,8258],[4025,8255],[3578,8256],3959,3448,3447,4025,3512,3576,4024,4023,4023,4026,3446,3447,3960,3512,4025,4023,3446,3577,3510,4024,3447,3578,4026,3447,3447,3511,3576,3577,3577,4026,4026,3959,4025,4024,4026,3962,4025,3446,3512,3576,3575,4026,3512,3446,3447,4026,3577,3960,3576,3578,3578,4025,3578,4026,3448,4026,3511,4024,4023,3574,3578,4024,4024,3960,3642,3643,4024,3578,4024,4023,3448,3448,3961,3448,3511,4025,3962,4025,3448,4025,3447,3512,3960,4024,3576,3577,4023,3575,3576,3577,3578,3960,3447,3959,3447,3511,4025,3574,3447,4026,4025,3448,3513,4023,3960,4024,4024,4025,3510,3446,3578,3447,3448,4023,3578,3448,3446,3447,3511,[3447,10124],[10028,9550],[3937,9643],[3551,9644],[3234,4003],3169,3167,3233,3231,3170,[3170,3998],3935,3551,3486,3487,3487,3487,3486,3935,[3168,4067],3168,[3169,9841],[3167,3807,9937],9938,[3168,4062,9743],[3169,4064],3936,3935,[3231,3874],3234,[3234,3870],3486,4000,4002,[3170,4003],3232,3167,[3231,3998],3487,3487,[3234,4003],[3167,3998],[3935,9838],[4000,10027],10028,[3488,9643],[4000,9644],3937,3551,3936,3486,3486,3999,[3551,9745],[3487,9746],[3488,9551],4002,4002,4001,3935,[3168,3873],3169,[3169,3808],4002,[3551,10124],[10028,9550],[3937,9739],[3486,9740],3936,4001,[4000,9745],[3551,9746],[10033,9551],[4002,10125],[3935,10126],10028,10029,10030,10033,[3487,10034],[3552,9839],4002,3486,3552,4001,4000,3999,4002,3999,[3234,3747],[3232,3807,9646],[3231,3743,9835],[3170,3809,9836],3231,3168,[3231,3872],[3169,4067],3231,3169,3168,[3232,3870],3553,3938,4000,3937,[4002,9553],[3240,9457],3238,3240,[3174,3813],3941,4006,[3174,3880],3238,3175,3176,3239,[3238,3166],[3238,3235],3175,[3240,3040],[3240,2975],3167,[3174,3235],3175,3175,[3174,3814],[3175,3816],3239,[3240,3104],3231,3234,3170,3168,[3174,2975],[3239,3041],3176,[3240,3230],3169,3234,3233,3234,3233,[3239,3235],3176,[3174,3878],[3238,4072],4005,4006,[3175,3879],3238,3176,[3238,3040],[3240,2975],3167,3232,[3175,3299],3174,[3175,3103],3231,3168,[3175,2976],[3175,2976],[3238,2977],[3175,2978],3167,3232,[3240,3297],[3239,3298],[3238,3295],3231,3168,[3176,3042],3176,3239,3239,[3238,3748],3941,4006,[3240,3879],3174,[3167,3111],3168,3232,3233,3170,3233,[3232,3046],[3234,2981],3239,[3176,4004],[3239,3817],3238,3174,3239,3174,[3239,935],607,607,607,607,607,607,607,[3238,869],3240,3175,3240,[3238,3814],3941,4006,[3175,4073],3175,[3174,9745],[3175,9746],[10033,9551],[4007,10129],[4006,935,10221],[607,10222],[607,10223],[607,10224],[3231,3301,933,10223],[3170,3302,10224],3240,3240,3240,3174,[3239,3814],3941,4006,[3175,4073],3238,3240,[3174,871],607,607,[3176,933],3174,3175,3175,3238,3175,[3175,871],607,607,607,[3174,869],3239,[3175,3940],3942,[3176,3816],[3168,3241],3231,[3231,9841],[3233,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[2872,9638],2743,2679,2936,2743,2744,2745,2745,2936,2873,2681,2936,2679,[2873,10115],[2679,10116],[2681,10117],10019,10020,10023,10024,[3000,10116],[2936,10117],[2678,10118],[2872,10119],[2936,10025],[2743,9830],2743,2936,2809,3000,2745,3000,2681,[2745,10115],[2681,10116],[3000,10117],10019,10022,10023,10024,[2681,10116],[2745,10117],10019,[3000,9923],[3001,9924],[2681,9925],[2742,9833],[2872,9638],2679,2745,2745,2678,2808,2743,[2743,9829],[2679,10018],10019,10020,10021,[2936,9923],[2679,9926],[2745,9927],[2936,9928],10020,10021,10022,10023,9929,[2808,9734],2936,3001,2872,2681,3001,[2743,9637],[3001,9826],[3000,9827],2743,2937,[2808,9832],[2873,9924],[2936,9925],[2743,9827],2743,3000,2872,2808,[2873,9832],[2745,9833],[2745,9638],2679,2872,2872,2808,2679,2743,[2937,9637],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3953,549],3504,3568,3505,3570,4019,3505,3954,3570,4020,3954,[3568,615],415,415,415,415,[3505,613],3568,3506,3570,4019,[3570,557],[3954,614],[3953,742],[3570,678],[3953,558],3570,4017,3572,3505,[3504,557],[3953,614],[3504,742],[4020,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3568,549],3953,3442,4018,3570,4017,4020,3953,3953,3440,[4019,557],[3954,614],[4020,748],[3953,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3954,549],4018,3954,4017,3954,4020,4019,4019,4017,3956,3954,3956,3954,4019,3955,3953,4020,4017,4020,4019,4018,4019,3953,4019,[4019,615],415,415,415,415,415,415,[415,8354],[4025,8351],[4026,8352],4023,3446,4024,4025,3961,3962,4025,3447,3577,3578,4023,4024,3447,3510,4024,3577,3510,4026,4025,3578,3960,3960,4024,3446,3576,3510,4023,3962,3448,3513,3510,3577,3960,3448,3447,4023,3448,4024,3959,3510,3446,3513,3575,3447,3448,3962,3577,4026,3575,3447,3511,3577,4026,3962,4025,3960,3577,4024,4025,3448,3446,3578,3577,3578,3706,3707,3578,3962,3447,3512,3447,4026,3574,3577,4026,3640,3641,3447,3578,4024,3510,4026,4024,3577,3959,3446,3578,3578,3578,3446,4025,4023,4023,3962,4026,4024,3511,3576,3512,3447,3574,4025,4023,4026,3448,3574,3961,3447,3446,4023,3574,3511,3446,3578,3448,4025,4026,3961,3446,3578,[3448,10124,9646],[3938,9739],[3488,9740],3999,[3233,3743],[3233,3809],3169,3168,[3170,3742],4000,3551,3488,3552,3551,3935,3938,4001,[3168,4003],3169,[3169,9649],[3232,9650],[10033,9551],[3999,10034],[3231,3744,9839],[3232,3746],3551,[3234,3811],3169,3167,[3232,3934],4000,3935,4001,3999,[3167,3747],3231,[3168,3871],3936,3937,[3234,3874],[3167,4062],[3233,4066],3938,[4000,10124],[4001,9835],[3486,9836],4001,3999,3486,3551,3936,3551,[3361,9649],[4000,9650],[3935,9647],3936,3936,3937,[3169,3874],3231,3168,[3169,3998],3999,4002,[3935,10124,9646],[4002,9835],[3486,9836],3935,[3488,9840],[3937,9841],[3487,9842],[3999,10129,9647],[3233,4063,10221],[3232,4065,10222],[3938,10124],[3999,10125],[4001,10126],[3935,10129],3938,3937,[3170,4065],[3232,4064],3938,3937,4000,4000,3552,3486,4001,[4002,9742],9931,[3169,3874,9932],[3169,9836],3233,3231,3168,3232,[3232,3742],[3233,3809],[3169,3934],3551,4001,4001,3551,3551,[3938,9553],[3240,9554],3174,[3240,3812],4006,[3240,4073],3240,3239,[3238,3039],[3174,2975],[3238,2975],3167,3168,[3175,2975],3167,3234,3232,[3174,3106],3238,3176,[3174,4004],3942,[3176,3815],3239,[3175,3103],3231,3234,3169,3233,3168,[3238,2975],3167,3233,3232,[3176,3295],[3176,3297],[3175,3297],[3176,3106],3239,[3239,3813],[3239,3815],[3174,3878],[3240,3880],3238,3175,[3176,2974],3167,3232,[3176,3298],[3240,3106],3239,3238,3174,[3239,3103],3231,3234,3232,[3240,3295],[3175,3297],[3240,3295],[3240,3106],[3176,3814],[3240,3749],[3240,3816],[3175,3294],3231,3168,[3238,2979],3238,3174,[3174,4004],3558,[3174,4009],3175,3239,[3170,3048],3231,3232,3231,[3233,3046],[3168,2981],3239,[3175,3813],[3239,3749],3941,[3176,3945],3175,3176,3174,3176,[3238,871],607,607,607,607,607,607,607,[3175,933],3176,3176,[3240,3813],3941,4006,[3239,3880],3240,3174,[3240,9745],[3238,9746],[3941,10129,9647],3624,[3625,935],607,607,607,[3232,869],3233,[3167,3044],3174,3175,3174,[3176,3812],3429,[3240,3817],3238,3240,3175,[3174,935],607,607,[3176,1000],[3240,998],[3238,1001],[3175,1002],[3174,1004],[3176,1005],[3176,1006],607,607,607,[3174,933],3240,[3174,3877],4005,[3238,3817],3238,[3170,3047,9841],[3233,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,[2679,9638],2745,2872,2743,2679,3000,2872,2742,2873,2742,2936,3000,2679,3001,[2872,10212],[2679,10213],[2873,10115],[2873,10116],[2679,10119],[2872,10120],2681,2743,2681,2808,3000,2873,2873,2936,2680,2745,2744,3001,2681,2743,[2745,10212],[2743,10213],[2936,10115],[2681,10118],[2743,10119],[3001,10120],[2873,10212],[2745,10213],[2742,10115],10019,10020,10021,9929,[3000,9734],2745,2681,2679,2936,2872,2936,3001,2872,[2681,10115],[2678,10116],[2873,10117],10019,10022,10023,10024,[2936,10116],[2872,10117],[2873,10118],[3001,10119],[2681,10025],[2745,9830],2808,2745,2743,3001,3000,[3000,9733],9922,[3001,9923],[3000,9926],[3000,9927],[2743,9928],10020,10021,[2936,9923],[2679,9924],[2743,9925],[2872,9926],[2872,9927],[2872,9928],9929,[2745,9734],2873,3001,2936,2743,2745,2743,[2679,9637],9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3569,613],3569,3569,3956,4018,4019,3506,4017,3953,3506,3570,[4020,679],415,415,415,415,[3506,677],4020,4018,4020,4019,[3954,679],415,415,415,[3506,613],3569,3570,4020,3953,[3953,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[4020,549],3569,3568,3504,3568,3505,3956,4018,3506,4019,4018,[3956,615],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3955,613],3956,4017,4019,3954,3954,4020,3956,3953,3440,3954,4019,4018,4017,4017,4020,3953,3955,3953,3953,[3956,3820],[4018,3756],[4019,3757],[4019,3758],[4017,3758,679],415,415,415,415,415,[415,8063],8064,[4024,8160],4023,3448,3961,4026,4024,3961,3576,3447,3512,3576,3576,3578,4024,4026,3576,3961,3447,3574,3448,4025,3448,3448,3577,3960,3446,3577,3642,3643,4024,3575,3575,3447,3575,3446,3574,4024,4023,3575,3577,3578,3446,3447,3446,3578,4023,4024,4025,3447,3575,3577,3510,4024,3961,4025,3578,3446,4026,3574,4024,4024,3447,3447,4025,3447,3576,3575,3962,3446,3448,4024,3512,3448,3577,4023,3574,3962,3704,3705,3576,4026,4024,4023,4023,3575,3578,3512,3446,4026,4026,3578,3512,3960,3962,3962,4025,3578,3576,3577,3577,4023,3962,4024,3576,3962,4023,3962,3576,3448,4024,3962,3575,3446,4024,3577,3962,4024,3446,3577,4025,3512,4026,[3959,9646],[3937,9643],[3486,9644],4001,3938,[3232,4003],3167,[3169,3808],4002,3552,4000,3936,4000,3488,4001,[3168,4065],[3233,4065],[3170,3873],3234,[3168,3808,9649],[3233,3743,9650],[4002,10129,9647],3999,3551,3937,3937,[3232,3875],3169,[3169,3742],4002,3487,3936,4002,4000,3999,[3233,3747],3231,[3233,3872],[3168,4067],3169,3167,3234,[3170,3872],3936,9931,[3938,9932],[3935,9836],3488,3936,4001,4002,4001,[3936,9745],[3487,9746],[3170,4003,9743,9357],[3170,4062,9360],[3232,4065],[3167,4067],3168,3167,[3234,3808],4000,3936,4002,[3487,9742],9931,[3552,9932],[3551,9933],[3936,9936],[3488,9937],9938,[3488,9743],[3231,3743],[3170,3747],[3233,3871],[3938,10221],[3486,10222],[3167,4003],[3167,3872],[3234,4067],3170,[3168,3807],4000,3999,3937,3936,3487,3552,4002,[4001,9838],[3999,10027],[10028,9550],[3170,3747,9739],[3168,9740],3233,3234,3169,[3234,3998],4001,4000,3936,3936,3618,3619,3935,[3937,9649],[3938,9650],[3176,9551],[3238,3876],[3239,4009],3239,3239,3240,[3174,3230],3232,[3175,3297],[3176,3295],[3175,3297],3231,3169,3234,3168,[3174,2975],[3176,3041],3239,[3174,4068],4005,3942,[3174,3816],3174,[3174,3294],3231,3170,3234,3169,3170,3169,3234,[3175,3235],3176,3238,3239,3176,[3240,3814],3941,[3174,4009],3238,3175,3175,[3239,3040],3167,3232,[3240,3299],3239,[3174,3813],[3240,3749],[3176,3753],3175,3239,[3240,3230],3233,[3240,3235],3239,3175,[3239,3814],[3175,3749],3941,3557,[3176,4009],3175,[3174,3294],3231,3168,[3240,3042],3174,[3239,4004],3429,3942,[3174,3749],[3174,3816],[3170,3241],3234,3170,[3231,2980],3174,3239,[3176,3814],3941,4006,3495,3942,[3175,3749],[3174,3816],3176,3240,3176,[3176,807],607,607,607,607,607,[3174,805],3174,3176,3240,[3240,3878],[3240,4069],[3240,4073],3238,3239,3238,[3174,9841],[3240,9842],[3941,9647],3688,[3689,935],607,607,607,[3234,933],3232,[3233,3172],3176,3239,3174,[3238,3876],3492,[3239,3945],3240,3238,3175,[3176,871],607,607,607,607,607,607,607,607,607,607,607,607,[3174,869],3174,3174,[3176,4004],[3174,3881],[3239,9745],[3176,9746],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,[2808,9734],2679,2743,2873,2742,2681,2745,3001,2679,2743,2745,2872,2745,2681,2743,2681,[2745,10212],[2679,10212],[2679,10215],[2872,10215],3001,3000,3000,2679,2873,3000,2743,2745,3001,2679,3001,2681,2681,2873,2680,2742,2742,[3000,10214],[2679,10215],2745,2936,2679,2745,[2936,10115],[2745,10116],[2936,10117],[2872,10025],[2680,9830],2744,2872,2680,3000,2743,2743,2679,2744,3000,[2936,10212],[2808,10213],[2681,10115],[2681,10118],[2680,10119],[2743,10120],[2872,10212],[2745,10213],[2743,10214],[2873,10215],3000,2743,2681,3000,2872,2745,2872,[2679,9829],[3000,10018],10019,10022,10023,10024,[2808,10116],[2872,10117],10019,10020,10021,10022,10023,10024,[2872,10025],[3000,9830],2678,2743,2743,2743,2745,2679,[2745,9733],9922,9923,9924,9925,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3956,677],4017,3569,3568,3442,3505,4017,3505,[3569,685],[3953,686],[3505,742],[3953,743],415,415,415,415,[3505,741],[3569,746],[3505,747],[3505,748],[3505,749],[4017,743],415,415,415,[3570,677],3569,3954,4019,3956,[4018,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3955,549],[3568,550],[3956,550],[3956,550],4019,3956,3572,3953,3956,3570,3572,3504,4020,4020,3504,[3570,679],479,420,420,420,479,479,479,479,479,479,479,479,420,479,479,420,415,415,415,415,415,[3956,3755,677],[3956,3756],[3953,3757],[3953,3758],[4018,3822],3955,3955,3956,4018,3954,4017,4019,3954,4017,[4017,3820],[4017,3755],[3954,3756],[4017,3757],[4019,3758],[4020,3755],3948,4012,3498,4013,[3562,679],415,415,415,415,415,8159,[3576,8160],3448,3512,3575,3578,4026,3575,3959,3577,3577,3447,4025,4025,3575,3575,3446,3447,3962,4024,3447,4024,3447,3578,3448,3448,3575,3577,3578,3706,3707,4023,4026,3575,4023,3578,3578,3447,4026,3512,3576,3448,3576,3577,3448,4023,4026,3512,3447,3510,4024,3510,4026,3961,4026,3447,3510,3578,3574,4025,3960,4026,3446,3511,4026,3962,3962,3577,3512,3960,4025,4025,3578,3961,3961,3447,3511,3574,4025,3511,4023,3446,3575,4025,3446,3577,3447,3576,3447,3574,4026,3962,3448,3578,3962,3962,3960,3578,3578,3575,3959,4023,3578,3960,3447,3578,3447,4025,3576,3577,3959,3446,4025,3510,3447,4026,4023,3959,3961,4023,3448,3512,3962,3577,[3959,9742],[4002,9739],[3938,9740],3486,3487,[3168,4003],3170,[3232,3871],3936,3488,3486,3551,3487,4001,3936,[3234,3747],3234,3167,3167,[3234,3998,9745],[3937,9746],[3551,9743],3938,3488,3551,3935,[3168,3875],3168,[3168,3998],3551,3999,3937,4001,3938,3935,[3231,3873],3168,3232,3234,3232,3170,3231,3169,[3167,3871],[3936,10027],[10028,9550],[4002,9643],[3488,9644],3551,4002,4002,3551,3935,[3234,4065,9553],[3170,4067,9453],[3234,9456],[3232,9457],3170,3234,[3234,3807],4002,4001,4001,3938,[3937,9838],[4002,10027],10028,10029,10032,10033,[3936,10034],[3487,9839],3935,[3231,4067],3231,[3169,3871],[3170,4063],[3232,3874],3234,3167,3170,[3169,3872],[3233,4066],[3169,4063],[3231,4067],[3170,3872],[3167,4064],[3170,4066],[3233,4064],3938,3486,[4000,10124,9646],[3231,4003,9835],[3232,9836],3170,3170,[3170,3807],4002,4001,4002,3488,3487,3682,3683,4000,[4001,9841],[4001,9842],[3175,9647],[3239,3940],3942,[3174,3816],3239,3239,[3174,3294],[3176,3105],3174,3238,3238,[3239,3103],3231,3169,3169,3169,3168,[3238,3042],3175,[3239,3878],[3240,4069],[3238,3879],3174,[3174,3039],3167,3170,3169,3232,3231,3169,3169,3168,[3240,2975],[3176,2979],3175,3238,[3174,3877],[3240,4072],[3238,3880],3176,[3174,2974],[3176,2975],3167,3232,[3174,3106],3176,3238,[3239,4004],4006,[3174,3880],3240,[3176,2974],3167,3232,[3176,3299],3176,[3174,3748],3941,3429,4006,[3174,4072],[3239,3880],3175,[3240,3039],3167,3234,3168,[3240,2979],[3176,3878],4005,3558,4006,[3238,3879],[3231,3111],3168,3233,[3234,3044],3175,[3176,3813],3941,4006,[3175,4073],[3238,4068],[3174,4069],4005,3942,[3174,3816],3239,3239,3176,[3238,806],[3231,3177,806],[3231,806],[3234,806],[3234,3236,806],3239,3240,[3240,3814],[3176,3749],[3174,3816],3175,3238,3240,3238,[3175,9841],[3176,9937],9938,[4005,9743],4006,[4008,871],607,607,607,[3231,869],3233,[3169,3236],3176,3174,3174,[3240,3940],4006,[3176,3880],3240,3175,3239,[3176,935],607,607,607,607,607,607,607,607,607,607,607,607,[3174,933],3175,[3176,3813],3941,[3176,3945],[3176,9649],[3175,9650],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9924,9925,9926,9927,9924,9925,9926,9927,9924,9925,9926,9927,9924,9925,9928,10024,[2681,10025],[2743,9830],2679,2745,2745,2680,2872,2873,2744,2873,3000,2681,2681,3001,3000,2743,2681,3001,2936,2743,2872,2679,2936,2808,2872,2873,2743,3000,2743,2744,2872,2872,2679,2873,2936,2743,2873,2679,2808,2872,2872,2679,2936,2873,3000,[2936,10212],[2742,10213],2873,3000,2873,3001,3001,3001,2808,2679,3000,2872,2872,2936,3001,2872,[2744,10214],[2745,10215],2681,2745,2743,2743,2743,2745,2681,2936,3001,3000,2679,2872,3000,2743,[2937,10115],[2936,10118],[2681,10119],[3000,10120],[2679,10212],[2936,10213],[2937,10115],[2808,10116],[2745,10117],[2745,10118],[3000,10119],[2681,10120],2808,2872,3000,3000,2745,2745,3001,3001,[2743,9829],[3001,10018],10019,10020,10021,9923,9924,9925,9926,9927,9924,9925,9926,9927,9924,9925,9926,9927,9924,9925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3568,741],[4017,742],[3505,678],[3570,558],4018,4019,3954,4020,[3505,679],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3505,741,303],304,305,[3505,748,306],[4019,749],[3569,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[3955,3756,613],[4020,3757],[4019,3758],[3568,3822],3569,3955,3504,4019,3570,3570,3953,[3504,3754],[3504,3755],[3953,3756],[3954,3757],[4019,3758,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,415,479,479,420,[3562,549],4013,3564,3950,3562,3949,[3954,3756],[3954,3757],[4017,3758],[3956,3822],4018,3956,4017,[4020,3820],[3953,3755],3948,3948,3563,4014,3564,4011,4011,3562,[4013,815],[4012,870],[3499,999],415,479,415,415,8159,[3446,8160],3510,3577,4024,3510,3960,3446,3578,3512,4026,3960,3447,3447,3447,3959,3578,3578,3448,3448,4025,3447,3961,3447,4025,3577,3448,3961,3448,3577,3574,3448,3447,3448,3961,3960,3574,3511,4024,4024,3447,3446,4024,3447,3511,4024,4023,3511,3577,3512,3574,3578,3576,3578,3578,4026,3574,3578,3448,3578,4025,3959,4025,3577,4023,3575,4025,3511,4023,3577,4024,3447,3575,3959,4025,3575,3446,3448,4026,4024,3446,3578,3575,4024,3962,3513,3578,3578,3578,3510,3447,4023,4023,3448,4025,4024,3959,3447,3576,3448,3959,3510,4024,3448,4026,3448,3574,3577,3446,3961,4025,3959,3512,3446,3578,4023,3960,3448,4023,4023,4024,3961,3578,4023,4024,[3959,9452],[3486,9548],3486,3938,3935,[3169,3873],3170,3170,[3233,3998],3999,4000,3552,3487,3935,3551,[3232,4003],3170,3233,[3234,3742],4000,[4002,9553],[3487,9457],3935,3486,4001,3936,[3169,3939],3232,[3232,3870],3999,3935,3937,3488,3938,[3231,3811],3168,3168,[3232,3808],[3234,3744],[3168,3745],[3234,3746],[3168,3809],3169,3234,[3169,4062],[3938,10124,9646],[3937,9739],[4001,9740],4000,3552,3937,[3232,4064],[3231,3874],3233,3232,3232,[3233,9553],[3167,9554],3232,[3168,3998],3551,3935,3935,3936,4002,3936,[3999,10124],10125,[4000,10128],[3935,10129],3553,4002,4001,[3170,3809],3170,3170,3167,3168,3167,3232,3232,3231,3234,3168,3232,3231,3234,3167,3231,[3169,3871],3938,[3935,9742],9931,[3170,9932],[3232,9836],[3233,3807],4002,3999,3488,3551,3551,3552,3937,3551,[4001,9841],[4001,9937],9938,[3175,9743],[3239,3877],4005,3942,[3174,3815],3239,3176,3239,3175,3175,3238,3175,[3175,3103],[3175,3298],3231,3169,3169,3168,[3175,2975],[3176,3042],3240,[3174,3039],[3176,2975],3167,3169,3233,3169,[3176,3043],[3238,3104],3231,3234,3234,3170,3168,[3176,2975],[3175,3042],3238,3175,3174,[3176,2974],3167,3232,[3240,3296],[3239,3299],[3239,3813],[3238,3749],[3174,3815],[3176,3877],[3240,4073],3175,3174,[3176,3230],3234,3168,[3238,3042],3239,[3238,4004],4006,[3239,4069],[3238,3879],[3240,3039],[3175,2975],[3175,2975],3167,3232,[3175,3298],3231,[3239,3043],[3238,3814],3941,4006,[3176,3880],[3234,3049],3234,3168,3167,[3169,3172],[3238,3813],3941,4006,[3175,3879],3174,3240,3176,[3239,3878],4005,[3175,4009],3175,3238,3174,3176,[3234,3241],3233,[3170,3046],3174,[3176,3748],[3239,3749],3941,4006,[3239,3879],3175,3239,3175,[3239,9745],[3238,9746],[10033,9551],[3943,10034],[3943,9839],3942,[3942,935],607,607,607,[3167,1000],[3233,1001],[3169,3110,1002],[3175,934],[3240,816],3240,[3238,4004],3942,[3238,3749],[3176,3749],[3176,3816,815],[3240,870],[3239,999],607,607,607,607,607,[3176,805],[3239,806],[3176,806],[3238,807],607,607,[3175,805],3239,[3174,3748],3941,3431,[3176,4073],[3240,9745],[3176,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10020,10021,10022,10023,10020,10021,10022,10023,10020,10021,10022,10023,10020,10021,10024,[2679,10120],2679,3001,3001,2872,3000,2809,3000,2872,2873,2678,2872,2678,2936,2808,2873,3000,2681,2681,2680,2680,2936,2679,2873,3001,2744,3000,2681,2808,2936,2873,2872,2743,2743,2681,2937,2744,3000,2873,2872,2873,2744,2872,2743,2808,3001,2743,2742,2745,2742,2743,2743,2743,2745,2872,3000,2742,3001,3001,2679,2873,3001,3001,3000,3001,2745,2680,2679,2680,2681,2936,2679,2936,3001,2873,2808,2873,2745,2679,[2873,10214],[2742,10215],3000,2808,2873,2680,[2680,10212],[2873,10213],[2679,10214],[2872,10215],2745,2681,2872,2681,2808,3000,2679,2809,2679,2743,2745,[3000,10115],[2681,10116],[2937,10117],10019,10020,10021,10022,10023,10020,10021,10022,10023,10020,10021,10022,10023,10020,10021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,[415,9284],[415,9285],[415,9286],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,[4017,741],[4019,746],[3955,747],[3953,748],[3570,749],[3953,743],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,481,[479,303],304,305,[420,306],479,479,420,420,420,420,420,479,420,420,420,479,479,479,420,479,420,[3947,613],3563,4013,4014,3434,[3955,3821],4018,4017,4020,4020,[3955,3819],4014,3947,3949,3562,[3949,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3948,997],[3500,934],[3564,816],4014,3500,4014,3948,4011,3562,3563,[3954,3756],[4017,3757],[4020,3758],3948,3563,4014,4011,4012,3949,3562,3500,3500,3564,[3500,871],607,607,607,607,415,[479,9532],[4024,9625],[3447,9626],3962,3960,3960,3446,3512,3961,3511,4026,3574,3577,4026,3577,4025,4025,3959,3447,3575,3962,4026,3578,3446,3446,3578,3447,4025,3447,3577,3447,3446,3577,3577,3446,3959,3578,3447,3448,4024,3575,3577,4026,4024,3578,4024,3448,3642,3643,3512,3576,3577,4025,3575,3447,3959,3577,4024,3577,3448,4026,3575,3447,3578,3512,4023,3577,3578,3448,3510,3447,3959,3574,4023,3578,3511,4025,4023,4024,3578,4026,3512,3959,4024,3448,3447,3446,3447,3576,4025,3578,3577,3448,3959,4025,3578,3510,3962,4024,3577,3446,3577,4026,3577,4023,3511,4025,4024,4023,4023,4023,4024,3959,4025,4025,3578,3576,3447,3638,3639,3447,3448,3575,3575,3446,[3575,9547],[3937,9548],3938,4001,3938,[3167,4003],[3170,3742],[3233,3747],3169,[3234,4062],[3234,4064],3936,3999,3487,4000,3552,3999,[3167,3747],3167,[3168,3998],4002,4000,[3937,9553],[4002,9457],3487,3487,3935,[3167,3874],3167,[3170,3870],3488,3552,3938,4000,3488,[3168,3875],3234,[3233,3807],4002,4000,3935,4002,3999,[3169,3810],3167,[3167,3807],[4000,9646],[4001,9643],[3487,9644],4002,3937,[3233,3873],3234,3234,3168,[3234,3808],[3169,3744],[3233,3744],[3231,3745,9553],[3232,3746,9554],4002,4001,4002,4000,3551,3488,4000,4000,[3935,10221],[3938,10224],3553,3486,4001,4002,4001,[3232,3810],3170,3167,3232,3167,3232,3233,3233,[3231,3807],[3231,3810],3234,[3169,3807],[3234,3747],3234,3233,3232,[3170,3871],[3234,3873,9838],[3231,10027],10028,[3169,9932],[3167,3998,9836],4000,3487,3488,4002,3935,4000,4001,[3488,9649],[3935,9650],[10033,9551],[3240,10034],[3238,9839],3239,[3176,3877],4005,[3240,4009],3176,3175,3238,3239,3239,3238,3176,3240,3239,[3238,3104],[3240,3297],3231,3170,3234,3168,[3239,2975],3167,3234,3170,3232,3231,3233,[3238,3107],3239,[3175,3294],[3175,3296],3231,3234,3169,3233,3168,[3240,2976],[3175,2977],[3239,2978],3167,3232,[3239,3299],3239,3174,[3176,4004],3944,[3240,4009],3239,[3175,2974],[3176,2975],[3238,2975],3167,3233,3170,[3240,3043],3240,[3176,4068],[3240,3880],[3240,3039],[3176,2975],3167,3232,[3240,3296],[3174,3296],[3238,3299],3240,[3175,3230],[3175,3107],[3240,4068],4005,[3174,4009],3239,[3168,3177],3232,3167,[3169,3046],3239,[3238,4004],4006,[3174,3879],3238,3175,[3167,3303],3239,3239,[3176,4004],[3239,4009],3238,3175,3174,3238,3240,[3170,2981],3238,3176,[3175,4004],3944,3429,[3238,4073],3240,3239,3175,3239,[3239,9841],[3174,9842],[3942,10129,9647],3944,4006,3943,4008,[3941,807],607,607,607,607,607,607,[3175,869],[3238,3813],3941,3557,3429,4006,[3239,3880,871],607,607,607,607,607,607,607,[3238,3814,869],[3176,3749],[3238,3816],3174,[3239,806],[3240,806],3238,[3240,3748],3941,3494,[3240,4009],3174,[3240,9649],[3174,9650],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2679,10116],[2681,10117],[2679,10118],[2679,10119],[3001,10116],[3001,10117],[3001,10118],[2745,10119],[2936,10116],[2873,10117],[2873,10118],[3000,10119],[3001,10116],[2872,10117],[3001,10120],2743,2679,2678,3000,2745,2808,2681,3001,2681,2681,2679,2808,2744,2808,2743,3001,2743,2743,2681,2872,2743,2679,2743,2743,2679,2681,2681,2679,2679,2808,2936,2808,2681,2745,2873,2743,3000,2872,3000,2808,3001,2743,2678,2936,2936,2873,3000,2681,2808,2745,2745,2745,2679,3001,2745,2872,2936,2872,2744,2743,2743,2873,2936,2679,2936,2872,2681,2872,2681,2872,3001,3001,2742,2679,2679,2743,2744,3001,2678,2744,2936,2743,3001,2681,2873,3000,2873,2681,2681,3000,2936,2808,2745,2679,2873,2745,2873,2680,2936,2680,2873,[2936,10212],[2681,10213],[3000,10115],[2681,10116],[2681,10117],[2681,10118],[2745,10119],[2743,10116],[2745,10117],[2873,10118],[3001,10119],[2745,10116],[3001,10117],[2809,10118],[2743,10119],[2873,10116],[2681,10117],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,415,415,415,415,9380,9381,9382,[415,9480],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,481,479,420,420,420,420,420,420,479,479,420,479,420,420,420,479,420,479,479,420,480,[607,303],304,305,[607,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3500,869],3949,3947,3949,4014,4014,[3955,3755],[3956,3756],[4020,3757],[3953,3758],3949,3563,3562,3437,3562,3500,[3563,807],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3947,869],4012,3950,3948,3948,4012,3949,3947,3500,3563,3950,3499,3948,3564,3948,3947,3947,3950,4014,3947,3562,[4013,935],607,607,607,607,607,[607,9628],[4025,9721],[4026,9722],3447,4026,4026,3448,3578,3962,3577,3448,3446,3446,3961,3510,3962,3577,3960,3960,3512,3448,3510,4023,3578,3575,3446,4025,4026,3446,3446,3575,4026,3447,3511,3577,4025,4024,3447,4023,3448,4024,4023,3961,4023,3447,3510,3447,3706,3707,3512,3575,3576,3448,3578,3577,4024,3448,3512,3446,4025,4023,3510,3447,3448,3448,3448,3577,4024,3510,3513,4023,3960,3577,3446,4023,3446,3576,4024,4025,4025,4024,3446,3960,3510,4025,3510,3448,4023,4024,4026,3577,4024,3578,3960,4023,3448,3449,4025,3960,3446,3576,3576,3578,3446,4024,3447,4024,3577,3511,3577,3447,4023,3510,3511,3575,3960,3960,3446,3702,3703,3447,3574,3510,4025,[3446,9550],[4001,9643],[3938,9644],3552,3486,3935,[3168,4003],[3233,3998],[3167,4003],3169,3233,3233,[3167,3998],4001,3935,3552,3552,3486,4001,[3234,3743],4002,4001,4001,[3936,9745],[4002,9746],[3936,9551],4000,[3167,4003],3232,3232,[3169,3934],3999,[3231,4003],[3234,4062],[3170,4063],3938,[3233,3939],3168,[3168,3998],3936,3488,3486,3938,4001,[3167,4003],3167,[3231,3806],[3487,9646],[3487,9739],[3935,9740],3936,[3233,4003],3168,3232,3234,3168,[3234,3998],3616,3617,[4000,9745],[4002,9746],[3935,9551],3935,3551,3486,3553,3935,3938,3487,3999,4000,3938,4001,3488,3936,3937,3999,[3168,3747],3232,3234,3234,[3231,3807],[3170,3743],[3168,3809],[3170,3872],[3232,3874],3170,[3167,4062],[3170,4067],3170,3169,3232,3233,3168,3167,[3170,10124],[10028,9550],[3232,3872,9643],[3231,4064,9644],3936,3552,3937,[3231,4066],3936,3487,[3935,9745],[4001,9746],[3238,10129,9647],3176,3176,3239,3239,[3174,4004],3942,[3240,3753],3175,[3240,3814],[3174,3750],[3239,3751],[3176,3752],[3174,3753],3238,3175,3175,3240,[3176,3103],3231,3234,3169,3170,3234,3169,3232,[3239,3105],[3176,3038],3233,[3175,3171],3176,3238,3175,[3174,3104],[3239,3298],[3175,3297],[3175,3298],[3174,3297],[3238,3296],[3174,3297],[3239,3297],3231,3168,[3238,2975],[3176,3041],3239,[3238,3878],[3174,4070],[3174,4073],[3175,2974],3167,3232,[3174,3296],[3238,3297],3231,3170,[3238,3107],3176,[3175,3039],[3174,2975],3167,3232,[3175,3295],[3239,3105],3176,3174,3175,3174,[3176,3230],[3176,3107],3239,[3175,4004],3942,[3174,3816],3238,[3168,2982],[3231,2984],3238,[3240,3813],3430,[3176,3817],3175,3238,[3231,3111],3167,[3231,3109],3238,[3238,4068],[3175,3879],3238,3239,3176,3240,3176,3176,3239,3239,[3176,3877],[3176,4069],[3239,3879],[3239,9841],[3239,9933],[3238,9934],[3174,9935],[3239,9936],[3238,9937],9938,[4005,9743],4007,4005,3943,3944,4007,[3941,806],[3944,807],607,607,607,607,[3174,869],[3238,3812],4006,[3176,4069],4005,[3174,4009],[3175,935],607,607,607,607,607,607,[3176,805],[3240,4004],3556,[3176,4009],3240,[3175,3748],[3240,3750],[3175,3752],3941,4006,4005,[3176,4009],3174,[3240,9745],[3237,9746],9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2681,10212],[2681,10213],[3000,10214],[2745,10215],[2936,10212],[2679,10213],[2681,10214],[2936,10215],[2808,10212],[2745,10213],[2679,10214],[2681,10215],[2872,10212],[2679,10213],2936,2936,2873,2681,2744,2873,2680,2808,2679,2936,2809,2872,3001,2679,2679,2873,2743,2678,3001,3000,3001,2809,2936,3000,2681,2743,2678,3001,2872,2872,2679,2743,2681,2678,2743,2936,2679,3001,2679,2873,3000,2680,2873,2936,2872,3000,2743,3001,3001,2936,3001,2679,2872,2681,2744,2936,2743,2809,2681,2873,2872,3000,2681,2872,3001,2681,2873,3001,3001,2745,3000,2679,2743,3001,2873,3001,2743,3000,3001,2681,2937,2745,2808,3001,3000,2808,2808,2681,2872,2679,2742,2808,3000,2872,3001,2681,2745,2808,2808,2745,2873,3000,3000,2936,2681,[2936,10212],[2681,10213],[2872,10214],[2743,10215],[3001,10212],[2873,10213],[2681,10214],[2936,10215],[2808,10212],[2873,10213],[3001,10214],[3001,10215],[2681,10212],[3001,10213],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[415,9480],[415,9283],[415,9284],[415,9285],[415,9286],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,481,479,480,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3500,933],4012,4014,4011,3564,3947,3564,3500,4014,4012,4011,3436,3500,3950,3564,3948,3563,[4013,806],[3563,807],607,607,607,607,[3563,805],[4011,806],[4014,806],[3562,807],607,607,607,607,607,607,607,607,607,607,607,[4013,933],4012,3562,3562,3948,4012,3564,3562,3948,3948,3950,4012,3499,3434,3500,4014,4011,3564,3947,[3499,815],[3950,870],[3949,999],607,607,607,607,607,[607,9628],[4026,9817],[3578,9818],3960,3962,3577,3447,3959,3512,3962,4025,4026,3449,4024,4024,4024,4025,3578,4026,3578,3447,3447,4025,4025,3448,3511,3578,4024,4023,3447,3960,3962,3512,4024,3578,3513,3446,3578,3576,3577,4025,4023,4025,3578,4026,3577,3577,4025,3577,3574,4025,3575,3447,3448,4025,3448,4024,3447,3448,3962,3510,3511,4023,4024,3576,4025,3448,3578,4026,4023,3575,3578,4026,3577,3575,4024,3447,3578,3448,3577,3578,4026,3578,3448,3447,3511,3577,3447,3577,4024,3446,3577,3577,3578,4026,4025,4025,3448,4025,3510,4024,4023,3448,3446,3962,4024,3446,3448,4023,3577,4024,3578,3961,3512,3577,4024,3447,3578,3577,3446,4026,3448,4026,3574,[3447,9646],[4002,9739],[3552,9740],3552,3486,3486,3488,3552,3999,[3170,3810],3167,3170,[3167,3998],3488,3486,3487,4002,4002,3486,3552,3937,4002,3999,[3937,9841],[3937,9842],[3936,9647],3935,[3234,3873],3231,[3168,3808],4000,4002,[3170,3939],3169,3232,[3168,4062],[3170,3874],3167,[3233,3871],3938,3937,3486,4000,3935,[3169,3873],3234,[3233,3870],[3551,9646],[3937,9835],[3937,9836],4000,[3169,4003],3234,[3234,3742],[3231,3743],[3169,3743],4002,3680,3681,[3551,9841],[3487,9842],[3486,9647],3935,3999,3487,3935,[3234,4067],[3233,3998],4002,4002,3552,3938,3999,3937,4002,3936,3937,[3167,3874],3167,3167,[3234,3807],4002,4000,4001,[3169,3809],[3168,3808],[3234,3743],[3234,3810],3233,3168,3169,[3232,3742],[3232,3810],[3232,3808],[3232,3747],3232,[3168,10124,9646],[3170,9739],[3170,9740],[3234,4062],[3170,4063],[3232,3874],[3167,3808],4002,3551,[3486,9841],[4002,9842],[3174,9647],3240,3175,3176,3176,[3176,4004],3556,[3239,4009],[3239,3813],3941,4006,[3239,4072],4005,[3176,4009],3240,3176,3175,3239,3240,[3240,3103],[3240,3295],3231,3233,3232,[3175,3297],[3175,3106],3174,[3174,3102],3234,3168,[3239,3042],3175,3238,3238,3176,3239,3240,3239,3176,3238,3175,[3176,3230],3169,3234,3168,[3240,2975],[3175,3042],3240,[3240,3040],3167,3232,[3240,3106],3238,3240,[3240,3230],3170,[3239,3171],[3238,3040],3167,3232,[3238,3295],[3175,3106],3176,3238,3174,3175,3174,[3174,3040],3167,[3240,3171],3240,[3240,3877],4005,3942,[3240,3749],[3239,3815],3174,3238,[3238,3878],4005,[3238,3881],3239,[3170,3049],3234,3234,3170,[3231,3300],[3167,3301],[3233,3302],[3233,3303],[3232,3304],3239,3239,3239,3240,3239,3174,3174,3175,[3175,9841],[3176,9937],10029,10030,10031,10032,10033,[3170,3876,10034],[3944,9839],4006,4006,3942,4008,4007,4007,[4005,871,563],[607,563],[607,563],[607,563],[607,563],[3176,933,563],[3240,3876],[3176,4009],3239,[3175,4068],[3174,4073],3174,[3240,806],[3238,807],607,607,[3238,805],[3174,806],3239,[3174,3878],4005,3942,[3174,3749],3941,4006,[3176,4071],[3240,4070],[3175,3879],[3174,4004],[3239,4009],3239,3176,[3176,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2809,8675],[2679,8676],[2679,8675],[2872,8676],[2678,8675],[2679,8676],[2936,8675],[2808,8676],[2744,8675],[2873,8676],[3001,8675],[2873,8676],[2872,8675],[3000,8676],[3001,8675],[2873,8676],[3001,8675],[2743,8676],[2745,8675],[2873,8676],[2745,8675],[2936,8676],[3000,9827],2936,3000,[2936,4249],3000,2681,[2744,9832],[2936,8676],[2679,8675],[2679,8676],[2872,8675],[2745,8676],[2681,8675],[2678,8676],[2679,8675],[2873,8676],[2679,8675],[2873,8676],[2742,8675],[2679,8676],[2745,8675],[3000,8676],[2742,8675],[2743,8676],[2680,8675],[3000,8676],[2743,8675],[3000,8676],[2742,8675],[2743,8676],[2681,8675],[2936,8676],[2679,8675],[2680,8676],[2873,8675],[2681,8676],[2743,8675],[2872,8676],[2679,8675],[2936,8676],[2872,8675],[2809,8676],[2679,8675],[2681,8676],[2678,8675],[2678,8676],[2873,8675],[2680,8676],[3001,8675],[2679,8676],[2872,8675],[3001,8676],[2743,8675],[2745,8676],[2681,8675],[2936,8676],[2872,8675],[2681,8676],[2745,8675],[2679,8676],[2679,8675],[2872,8676],[2936,8675],[3001,8676],[2872,8675],[2936,8676],[3000,8675],[2679,8676],[2808,8675],[2936,8676],[3000,8675],[2745,8676],[2745,8675],[2743,9827],2873,2742,2679,2745,3000,3000,2872,2679,[2936,9832],[2872,8675],[3000,8676],[2743,8675],[2872,8676],[2809,8675],[2936,8676],[2873,8675],[2873,8676],[2808,8675],[2745,8676],[2742,8675],[2937,8676],[2744,8675],[2680,8676],[2681,8675],[2872,8676],[2745,8675],[2873,8676],[2872,8675],[3001,8676],[2808,8675],[2936,8676],[2936,8675],[2744,8676],[2743,8675],[3000,8676],[2872,8675],[2873,8676],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,9379,9380,9381,9382,[415,9480],415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,481,480,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4012,997],[4013,934],[3499,816],4013,3500,3564,3950,3949,3947,4013,3948,3562,3949,3564,4014,4014,4011,3948,[3950,871],607,607,607,607,[3562,869],3947,3947,[3947,871],607,607,607,607,607,607,607,607,607,607,[4014,805],3563,4011,3563,3562,3563,4014,3500,4011,3947,4014,3563,3564,3564,3564,3950,3562,3947,3564,3947,[3499,871],607,607,607,607,607,607,607,[607,9724],9913,[3574,9914],[3577,9818],3447,3448,3578,4026,3578,3448,3448,4023,3448,3961,4024,4023,3575,4023,3577,3513,4024,3959,3574,3962,3448,4023,3448,3511,3448,3578,3510,4023,3959,4026,3448,3512,3447,3961,4026,3578,3447,3577,3961,3577,3575,3446,3577,3578,4023,3446,3574,3962,3512,3448,4025,3512,3578,3575,3447,3510,4024,4025,4024,3447,3578,4024,4024,3960,3576,3447,3577,3577,4023,4023,3578,3448,3578,3575,3447,3446,3577,3448,3449,3448,3959,4024,3577,3448,4024,4024,3510,3448,3578,4024,3446,3448,3577,3575,3577,4025,4024,3578,3446,3447,3511,4025,3448,3512,3512,3447,3577,3447,4024,3510,3447,4026,3448,4023,3576,3578,4023,3574,3448,3447,[3577,9646],[3938,9835],[3937,9836],3488,3937,3487,3551,3487,3488,[3167,4003],3168,3168,[3170,3872],[3232,4063],[3232,4063],3938,3936,4001,3488,3935,[3552,9841],[3488,9935],[3937,9936],[3936,9937],9938,[3169,3871,9743],[3170,3874],3170,3233,[3231,3998],3486,3938,4002,[3168,3743],[3231,3743],[3167,3747],3170,3232,3170,[3232,3998],3551,3999,4000,[3167,4003],3231,3232,[3167,3934],[3551,9742],9931,[3937,9932],[3937,9836],4001,[3168,3743],4000,3937,3552,3935,4002,[4002,9841],[3938,9937],9938,[3937,9743],3999,3999,3937,[3170,4003],3167,[3170,3872],[3232,4065],3936,3487,3488,4000,3486,4002,3936,[3233,4003],3231,3234,3233,[3169,3998],3999,3487,3936,[3232,4003],[3233,3806],3552,[3169,4003],3232,3231,3233,[3233,3998],3999,4000,[3170,4003],[3168,9264],[3232,9742,9267],[3233,9739],[3233,9740],3169,3231,3168,[3233,3998],3999,[4001,9841],[3487,9937],9938,[3239,9743],3239,3238,3240,[3176,3748],3941,3558,3942,3941,4006,[3238,3880],3174,[3174,3877],[3240,4073],[3239,3813],[3240,3816],3240,3238,3174,3175,3240,[3239,3103],[3240,3295],[3176,3106],3176,3175,3174,[3238,3166],3169,3233,3168,[3239,3041],3240,3175,[3240,3748],[3239,3749],[3175,3815],3239,3238,3240,3238,[3239,3294],3231,3233,3232,3231,3168,[3175,2975],3167,3232,[3240,3105],3174,3239,3238,[3175,3294],3231,3168,3167,3232,[3239,3105],3238,3238,[3176,3748],[3176,3749],[3239,3753],3238,3240,[3238,3230],3232,[3175,3106],3238,3239,[3174,3878],4005,3943,[3238,4009],3238,3175,[3239,3814],3941,[3176,3945],3239,[3169,3113],3169,3169,3231,3231,3232,3232,3233,3232,[3234,3300],[3168,3301],3238,3176,3176,3176,3174,[3175,9841],[3176,9937],10033,[4005,10125],[3941,10126],[3168,4009,10127],[3234,10128],[3170,10129],[3167,3940],4005,3943,3943,4005,3943,3942,3944,627,627,627,627,627,627,[3240,3940],3431,[3176,3753],3175,3238,[3168,3303],[3167,3304],3240,[3238,806],[3174,806],3175,3175,3175,[3175,3814],3941,4006,[3176,4071],[3174,4071],[3175,3880],3239,3239,3240,[3175,4004],3942,[3174,3753],3239,[3173,9745],[3176,9746],[9551,9357],9360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,[2808,9634],[2742,9635],[2680,4344],[2680,4345],[2745,4346],[2873,9640],[2936,9641],8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8678,[2679,9634],[2745,9635],2742,2873,3001,2873,2743,2744,[2809,9640],[2872,9641],8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,8771,8772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[415,9480],[415,9283],[415,9284],[415,9285],[415,9286],415,415,415,415,415,415,415,415,415,415,415,481,479,420,480,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3562,805],[3949,806],[4013,806],[3947,806],[3563,806],[4012,806],[3562,806,303],304,305,[3562,807,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3948,869],3949,4012,3563,3500,4014,4014,3563,3500,4014,4012,4011,3948,3947,3564,3564,[3563,935],607,607,607,607,[3499,933],3500,3563,[4014,935],607,607,607,607,607,607,607,607,607,607,[3564,869],3948,3499,3950,3949,3499,4014,3564,3500,4014,4011,3499,3499,3564,4012,4011,4014,4012,3947,4013,[4012,935],607,607,607,607,607,607,607,[607,9820],[607,10009],[10010,9532],[3576,9625],[3448,9626],4024,4026,3960,3578,4023,3578,3961,3446,3961,4024,3512,4025,4023,4026,4025,3578,3575,3578,3959,4024,3575,3575,4023,4023,3513,3961,4026,3578,3576,3574,3577,3960,3512,4024,3577,3449,3448,4023,3575,3510,3576,3448,3448,3962,3448,3576,3576,3575,3578,3961,3576,3576,3447,3577,3446,4026,3577,3577,3578,3446,3447,3574,3512,3511,3447,3446,4025,3577,4024,3578,3447,3448,3576,3446,3448,3960,3446,4024,4024,3962,3575,4025,3578,3449,3512,3447,4025,3962,4023,4025,3511,4024,3578,3512,3575,4025,3577,4023,4024,3511,3446,3447,3446,4025,3512,3512,4023,4024,4023,4025,3577,4026,3510,3577,3446,4023,3574,3577,3577,[3576,9742],9931,[3938,9932],[4002,9935],[4002,9936],[3938,9836],3552,4002,3937,3999,[3234,3809],3233,3168,3168,3234,[3234,3872],3938,3936,4002,[4001,9841],[3999,9937],10031,10032,10033,[3168,4067,10034],[3170,9839],3231,3169,[3234,3807],4002,3552,3935,3551,4002,3937,4001,[3168,3810],3233,3168,[3167,3998],3551,3486,3999,3999,[3232,3810],3168,[3233,3871],[3938,9838],[3487,10027],10028,[3936,9932],[3937,9836],3487,3937,3935,3488,3486,[4001,9745],[3999,9746],10033,[3487,10034],[3488,9839],3486,3487,3938,4001,[3167,3810],3168,3232,[3232,3998],3937,[3167,4063],3936,3937,3938,3935,[3233,3874],3231,3231,[3234,3807],4002,3937,3936,3551,[3167,4003],[3169,3806],3999,3999,[3169,3743],[3170,3809],3231,[3231,3871],[3936,9264],[4001,9267],[3999,9547],[3233,3809,9453],[3169,9456],[3168,9548],[3233,3808],[3233,3744],[3231,3745],[3233,3746],4002,[3487,9649],[4000,9650],[10033,9551],[3176,10034],[3239,9839],3175,3174,[3240,3748],3941,3944,4006,4005,3944,[3175,4009],3240,3240,3175,3238,[3238,4004],3942,[3238,3816],3176,3176,3240,3174,3176,3175,[3175,3813],[3175,3749],[3238,3749],[3176,3815],[3176,3294],3231,3169,3234,[3240,3043],3174,[3176,3814],3941,4006,[3176,4073],3175,3175,3175,3176,3176,[3175,3038],3234,[3238,3235],[3238,3294],[3239,3298],[3174,3298],3231,[3174,3235],3175,3176,3240,3240,3238,[3238,3294],[3175,3295],[3238,3297],[3175,3299],3240,3238,3239,[3239,4004],4006,[3238,4073],3240,[3239,2974],3167,[3238,3235],3175,3176,[3176,3813],[3175,3753],[3239,3877],4005,3942,[3239,3816],3174,[3176,4004],4006,[3239,3880],3176,[3232,3177],3231,[3169,3046],[3232,3047],3234,3170,3169,3232,3232,3168,3234,[3170,3110,9841],[3174,9933],[3176,9934],[3240,9935],[3176,9936],[3174,9937],10033,[3943,10129],[4008,10221],[3941,10222],[3232,3817,10223],[3234,10224],3170,[3231,4004],4006,3429,3944,4006,3943,3559,4005,691,691,691,691,691,691,[3239,4068],[3239,4072],[3176,3879],3176,[3167,3111],3170,3168,[3231,3044],3176,3239,3176,[3176,3814],[3175,3749],3941,3557,[3240,4009],3238,3239,3175,[3174,815],[3175,870],[3174,934],[3239,4068,816],4005,3942,[3240,3753],3176,[3168,3049,9553],[3167,9453],[3234,9456],9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,[2743,9730],[2873,9731],3000,2743,2873,[2808,9736],[2936,9737],8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,[3001,9730],[2873,9731],2873,2809,2681,[2680,4441],3001,2873,[2936,9640],[2679,9641],8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,9379,9380,9381,9382,[415,9480],415,415,415,415,415,415,415,415,415,481,480,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3947,805],3950,3563,3947,3950,3950,3949,3950,3500,4011,3499,[3950,806],[3947,806],[3564,806],[3564,806],[3950,806],[3564,807],607,607,607,607,607,607,607,607,607,607,607,607,607,[3562,933],3563,4014,4011,3947,3950,4014,4012,4011,4014,3948,3947,4012,4011,3563,3947,3948,[4012,807],607,607,[3564,805],4014,3563,3498,4013,[3500,806],[3499,806],[3948,806],[3950,807],607,607,607,607,607,607,[3499,933],3562,3562,3947,3948,3564,4012,3564,3562,4013,3947,3947,4014,3948,3564,3564,3564,3950,3562,3947,[3563,871],607,607,607,607,607,607,607,607,607,[607,10106,9628],[4026,9721],[3446,9722],3578,3447,3960,3446,3576,4026,3446,4023,3510,3511,3448,3448,4024,4025,3448,4024,4024,3448,3447,4026,4026,3577,4024,3448,3577,4024,4024,4024,4026,3511,3577,3511,4023,3574,3511,3447,3959,3511,3510,3577,3446,4025,3576,3574,3962,3961,3446,3447,3961,3447,3962,4023,4023,4026,3446,3960,3511,3578,3574,4024,3449,4025,4025,4025,4024,3448,4026,4023,4024,3960,4026,4026,3448,4023,3960,4026,3574,3447,3448,4023,3575,3577,3447,3578,3446,3577,4023,3511,4025,4026,4025,3512,4026,4025,4023,4025,3447,3577,3577,3578,3511,3446,3446,3575,3447,4024,4024,3447,3962,4025,3511,3448,4023,4026,3510,4025,4025,3576,4026,[3448,9838],[4024,10027],10028,10031,10032,[3937,9932],[3937,9933],[4002,9934],[3938,9836],3935,[3169,4003],3169,3170,3170,3167,3167,[3231,4062],3938,[4001,9841],[3999,9937],10033,[3487,10127],[3937,10128],[3169,3873,10129],3233,3233,3234,[3168,3807],4000,3487,3935,3488,4002,3551,3937,4001,[3169,4003],[3167,3807],[3170,3743],4000,3999,3935,4002,3999,[3170,4003],3168,3234,[3234,4062],3938,[4001,10124],10028,[4002,9932],[3488,9836],3487,3552,3551,3486,[4001,9841],[3935,9842],[3938,10129],3936,3999,3488,3552,3488,3999,[3233,4003],3233,3232,[3234,3872],[3233,3873],3167,[3232,4062],[3167,3874],[3168,3871],[3167,4067],3234,3169,3234,[3232,3998],3999,[3935,9357],[3553,9360],3937,[3233,3873],[3168,3870],4000,3935,3938,[3232,4003],3170,[3234,9452],[3167,4062,9453],[3232,4066,9456],[3232,4066,9548],[3167,4067],3170,3232,[3167,3871],3936,4001,3938,4002,[3553,9745],[4001,9746],[3240,10129,9647],3239,3175,3239,[3174,3814],3941,3429,3492,[3239,4009],[3175,3877],4005,3942,[3175,3749],[3175,3816],3176,3238,[3239,4004],3943,3942,[3239,3815],3176,3176,3239,[3176,3814],[3174,3749],3941,4006,4005,[3175,4009],3175,[3240,3294],3231,3169,[3238,3107],[3176,3814],3941,3492,[3239,4009],3238,[3174,3748],[3175,3749],[3175,3749],[3176,3753],3240,[3174,3102],3234,3168,[3240,3042],3239,3238,[3175,3230],[3239,3235],3240,3174,3174,[3238,3813],[3174,3816],3176,3240,3176,3238,[3239,3813],[3239,3750],[3174,3752],3941,[3240,4009],3240,3175,[3175,3230],3232,[3176,3106],3239,3176,[3239,3878],[3239,3880],3238,[3238,4068],4005,[3174,4009],3240,[3175,4004],3942,[3174,3749],[3238,3750],[3176,3751],[3234,2981,3752],[3238,3753],3174,[3167,2985],3234,3232,3170,3233,3167,[3168,9841],[3233,9937],10029,10030,10031,10032,10033,[4005,10129],4007,3944,3943,[3169,3881],3170,3234,[3170,4068],3941,3943,4006,3943,3944,3941,4008,[3942,871,755],[607,755],[607,755],[607,755],[607,755],[3174,869,755],3175,3240,3176,[3232,3049],3233,3231,3231,[3167,3108],[3240,3748],[3240,3753],3176,[3174,4004],3495,[3239,4072],4005,3942,[3175,3816],3176,3240,[3238,935],607,607,[3239,869],[3176,3878],4005,[3240,3817],3239,[3168,3113],3168,3232,[3169,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,[3001,9923],[2681,8676],[2678,8675],[2745,8676],[2743,8675],[2936,8676],[2936,9928],8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,[2745,9826],[2872,9827],2873,2873,[3001,4536],[2873,4537],[3001,4538],2679,[3000,9736],[2872,9737],8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[415,9480],[415,9283],[415,9284],[415,9285],[415,9286],481,420,420,479,480,607,607,607,607,607,607,607,607,607,[3500,805],[3500,806],[4011,807],607,[3950,805],[3563,806],[3948,807],607,[3950,805],[3948,806],[3562,806],4011,3564,3499,3562,4014,3947,4013,[3499,3825],[4014,3827],3948,3564,3500,3500,3948,4011,3500,[4014,871],607,607,607,607,607,607,[3950,805],[3562,806],[4011,806],[3949,807],607,607,[3950,805],4011,3948,3947,3500,4014,3564,3562,3948,3947,3562,3564,3563,3948,3947,4014,3499,3563,3950,[4013,806],[3947,806],4014,3562,3564,4014,3950,3949,3950,3562,[3947,871],607,607,607,607,607,607,[4014,997],[3948,998],[4012,934],[3500,816],3499,4013,3947,3563,3562,3949,4011,3564,3949,3950,3947,4011,3950,3499,3563,4013,[3950,935],607,607,607,607,607,607,607,607,607,[607,9529],[3961,9530],3578,3513,3577,3575,3447,4024,4023,3447,4026,4024,3962,4025,4024,3578,3512,3448,3578,3447,3511,4024,3577,4026,3962,4023,4026,4023,3960,3960,4026,3448,4024,3574,3578,3578,4023,4026,3577,3959,4023,4024,3961,4025,4024,4026,3962,3577,3574,3960,4023,3510,3961,3448,4023,3447,4023,3962,3448,4025,3574,3578,3959,3577,4024,3446,3578,4024,4023,4026,3511,3577,3574,3446,3447,4024,3959,3578,4023,4025,3510,3578,4025,4025,3959,3447,3959,4026,3961,4024,3511,3640,3641,4024,4026,4024,3446,3577,3511,3446,3960,3578,4023,3511,3962,4023,4023,3960,3960,4026,3448,3578,3576,3961,4025,3962,3575,4026,3446,3962,4023,4024,3578,3959,[3577,10124],[3510,10127],[3446,10128],10028,10029,10030,[4002,9932],[3937,9836],3999,[3233,3744],[3170,3745],[3234,3746],[3233,3810],3232,3170,[3233,3871,9649],[3169,4063,9650],[10033,9551],[4000,10129],[3935,10223],[3169,3874,10224],3167,3168,[3169,3742],[3170,3743],4002,3937,3551,4002,3999,3936,3486,3937,3935,3488,3936,3938,3487,3486,3935,3486,3552,4001,[3234,3810],3169,3234,[3233,3871],3938,[3999,10124],10028,[4002,9932],[3488,9933],[4000,9934],[3551,9935],[3551,9936],[3552,9937],9938,3999,3552,4002,4001,3936,4002,3935,3999,[3168,3810],3234,3170,3167,3168,3232,3168,3169,3233,[3232,9357],[3169,9358],[3167,3742,9359],[4000,9360],[3937,9547],[3486,9453],[3935,9456],[3168,4067,9457],3169,[3234,3934],3551,3938,3938,[3232,4003],[3167,3808,9547],[3170,3744,9548],[3169,3745],[3234,3746],[3232,3747],3232,3233,[3167,3807],[3233,3810],[3167,3998],4000,3935,3552,3552,[4002,9553],[3240,9554],3240,3176,[3240,3814],3941,4006,4005,3557,[3239,4009],3240,[3175,3878],4005,4006,[3240,3879],3174,3240,[3174,3877],[3176,4071],4005,3942,[3240,3749],[3240,3749],[3174,3753],[3175,3878],4005,4006,[3175,3879],[3174,4068],[3238,3880],[3238,3039],[3240,2975],3167,3170,[3174,3107],[3238,4004],4006,4005,3942,[3176,3749],3941,3494,3429,[3239,4009],3238,[3174,3166],3170,3233,3168,[3174,2975],[3239,2975],3167,3168,[3174,2979],3174,3174,[3240,4004],3942,[3239,3749],[3176,3816],3239,[3174,3814],3941,3558,4006,[3174,4069],[3238,4073],[3175,3813],[3174,3815],[3239,3294],[3175,3106],3240,[3176,3748],[3239,3749],[3240,3753],[3175,3813],[3175,3749],[3238,3749],3941,[3239,4009],[3238,3814],3428,4008,4006,[3174,4072],[3238,4071],4005,3942,[3240,3749],[3238,3749],[3231,2981,3815],[3232,2985],3234,3170,[3234,9841],[3168,9937],10033,[3168,10125],[3232,10126],[3167,10127],[3234,4004,10128],[3943,10129],4008,4007,3429,4005,[3167,3945],3232,3168,3168,[3232,4004],4006,3942,3942,3942,3941,3942,[3943,935],607,607,607,607,[3239,933],3175,3174,3175,[3170,3113],3232,3231,3170,[3168,3172],[3240,4004],3430,[3239,3749],3941,[3174,4009],3175,[3238,4004],3492,[3176,4009,815],[3239,870],[3240,998],[3239,999],607,607,[3240,933],3174,[3239,3812],[3238,3881],3238,[3169,3177],3231,3231,[3168,9649],[3232,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8771,8772,8771,8772,8771,8772,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,[2679,9923],[2936,9827],3001,2743,2873,3001,[2872,9832],[3000,8675],[2809,9928],8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,9379,9380,9381,9382,[607,9480],607,607,607,607,607,607,607,607,607,607,607,607,[3563,805],3947,3499,3948,[3948,806],3950,3948,4012,[3563,806],4011,3948,3562,3950,3947,3949,4011,3499,4011,[3500,3825],3953,[3499,4021],4013,4011,3499,3564,4013,4014,3564,[3499,935,563],[607,563],[607,563],[607,563],[607,563],[607,563],[607,563],[4014,869,563],3562,3500,4011,[3950,806],[3564,806],3947,3564,3949,4011,4013,3949,3562,3564,3949,3499,4013,3564,3950,3499,4014,3500,3500,4012,3564,4014,4013,3948,3499,3564,4013,4014,3564,3563,4014,[3500,935],607,607,607,607,607,607,607,607,607,[3499,869],3947,3499,3948,3562,3435,3499,3949,4013,4014,3562,3499,4011,4012,4014,3948,3500,4012,[3499,807],607,607,607,607,607,607,607,[607,9532],[3510,9721],[3574,9722],3447,3446,4025,3578,3512,4024,3962,4025,4024,4023,3574,3447,3578,4024,3577,3960,3447,3962,4023,3448,3578,4025,3642,3643,3448,4025,3574,4026,3577,3578,3960,3578,3577,3578,3447,3577,3512,3446,3448,3962,4025,4024,3511,4026,3447,3574,3446,3447,4026,3577,3448,4023,4026,4023,3448,3960,4025,3575,3961,3578,3960,4026,3959,4025,3510,3447,3959,3959,3512,3513,3447,3446,4023,4025,3575,4023,4024,3512,4026,3446,4023,3510,4026,3574,3574,3447,4023,3513,3960,3704,3705,3577,3446,3577,4025,3512,3511,3575,3448,3962,3511,3578,4024,4026,4023,3578,3962,4024,3447,3511,3961,3511,3577,4024,3447,3447,4025,3574,4025,3577,3960,3448,4026,[4026,10223],[3959,10224],[3576,10124],[4025,10125],[3447,10126],[10028,9550],[3937,9739],[3936,9740],3935,3937,3488,4001,[3167,3809],3234,[3167,9745],[3169,9746],[3231,3872,10129,9743],[3168,4065],[3231,4067],3234,3231,[3232,3808],4000,3938,3937,3938,3487,3488,3935,3936,3551,3486,3938,4001,3488,3999,3552,3936,4000,3937,4000,4000,3999,[3167,3809],3167,3232,[3170,3871],3938,[3999,10124],10028,10029,10030,10031,10032,10033,[3487,10034],3486,3935,3486,[3170,3811],[3167,3872],[3233,4063],[3233,4064],[3168,4066],[3231,4067],3169,3167,3170,[3232,3808],[3167,3743],[3170,3809],[3168,3742],[3234,3810,9452],[3169,9453],[3232,3808,9454],[4000,9455],[3487,9456],[3999,9548],3551,4001,[3168,3743,9553],[3169,3743,9457],[4002,9357],[3935,9358],[3551,9359],[3486,9360],[3935,9547],[3938,9548],4002,3936,3488,3486,[3231,3810],3232,[3232,3998],[3233,4003],[3231,3998],3551,4002,4000,4001,4001,[3937,9553],[3175,9554],3238,[3175,3812],4006,[3240,3879],[3176,3877],4005,3942,[3239,3815],3239,[3175,4004],[3175,4009],3176,3238,3240,3175,[3176,3813],3941,3557,3429,4006,[3176,3880],3239,[3240,3878],[3175,3879],[3239,3040],[3239,2975],[3176,2975],3167,3234,3170,3170,[3239,3171],[3176,3878],[3174,4073],[3176,4068],[3239,4069],4005,4007,4006,[3238,4071],[3239,4073],3238,[3175,3104],3231,3233,3234,3233,3170,3232,3231,3168,[3176,2975],[3240,3042],[3238,3877],[3238,4071],4005,3942,[3238,3749],3941,4006,4005,3942,[3239,3749],[3176,3749],3941,3942,[3175,3753],3238,3239,[3240,4004],4006,[3175,3880],[3239,4004],4006,[3240,4070],4005,3942,3941,3494,4006,[3238,4073],3240,3239,[3240,4068],[3176,4070],[3174,4071],[3239,4071],[3238,4073],[3231,3241],3233,[3167,9649],[3234,9650],[10033,9551],[3170,3815,10129],[3170,10221],[3168,10222],[3231,10223],[3231,3878,10224],3941,4006,3944,4007,4007,3941,[3167,3815],3232,3167,[3168,3877],4007,3943,3941,4007,3944,4008,[4008,871],607,607,607,607,[3239,869],3239,3175,[3239,9357],[3167,3177,9358],[3168,9359],[3169,9360],[3232,3045],3176,[3238,3878],4005,4006,[3238,4072],[3174,3880],3239,[3240,4068],[3240,4070],[3176,4073,871],607,607,607,607,[3167,3108,805],3239,3239,[3238,3876],[3176,3945],3176,3239,[3169,3048],3167,[3231,9745],[3231,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8773,[2873,9923],[2808,8675],[2873,8676],[2679,8675],[2936,8676],[2873,9928],8774,8773,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,607,607,[3949,805],[3564,806],3564,[3563,3825],[3948,3761],[3563,3761],[4013,3761],[3948,3761],[3947,3765],3949,3950,3950,3500,3948,4014,3434,3948,4011,4014,[4011,3825],3572,4018,[3499,3891],3947,3949,4012,3500,4013,3562,3564,627,627,627,627,627,627,627,627,4013,4012,3500,3950,4011,3948,3564,3563,3501,4013,3562,4014,3564,3949,4014,3564,3564,3949,3563,3949,3500,3562,3562,4013,3950,3499,4013,3563,3950,4014,3563,3564,4012,4014,[4012,871],607,607,607,607,607,607,607,607,607,[3564,933],4014,3564,3563,3499,3948,4014,3950,3562,4014,3500,3500,3947,4011,4013,3499,3564,3563,[3949,871],607,607,607,607,607,607,607,[607,9628],[3446,9625],[4025,9626],3446,3575,3577,4026,3511,3578,3449,4025,4025,3447,4026,4023,3446,3577,4023,3512,4024,4025,3578,3577,3576,3576,3706,3707,3959,4026,4025,3578,3578,3448,3447,3962,4026,4025,3959,3960,3960,3447,4026,3448,3960,4025,3577,4024,3446,3577,3446,4025,4025,4024,3512,4025,4024,3512,4024,4026,3449,3574,3448,3962,3962,3577,3959,3578,4026,4024,3960,3578,3448,4024,3962,3959,3447,4023,4025,4026,3447,4024,3576,4026,3576,4025,3578,3446,3961,3578,4024,3959,3447,3578,3959,3446,4026,4023,4025,3578,4024,3575,4026,3575,4023,4025,3576,3446,3446,3449,4025,4023,4026,4025,3446,3448,3448,3961,3446,3959,3959,4026,3576,3574,3447,4024,3576,4023,3960,3577,[3448,10221],[3447,10222],[4023,10124,9646],[3552,9643],[4001,9644],3552,3552,3551,3552,4001,[3169,3743],[3168,3810],[3232,9553],[3168,9457],3167,3231,3232,3170,[3170,3872],[3234,4065],[3168,4066],3938,3936,3937,[3233,4063],[3169,4066],3936,3551,4001,4000,3486,4002,3937,3999,3999,4001,4000,3487,3935,3936,3999,[3167,3809],3169,3233,[3231,3806],3488,[3486,10124],[3551,10125],[3488,10126],[3551,10127],[3551,10128],[4001,10129],3936,3935,3935,3487,[3234,3875],3233,3169,3232,3234,3233,3169,3169,[3233,3808],4002,4002,3999,[4000,9547],[3231,4003,9548],[3234,3742],4000,4002,3487,4000,3938,4001,4002,[3935,9553],[3488,9453],[3551,9454],[4001,9455],[3935,9456],[4002,9548],3551,4001,3938,3486,3935,4001,[3169,3747],[3234,3998],[3174,4065],4001,3937,4001,3938,3935,3552,[3552,9649],[3938,9650],[3175,9551],[3238,3876],[3240,3817],3174,3240,[3174,3878],4005,3942,[3176,3749],3941,3942,[3239,3750],[3174,3750],[3176,3751],[3175,3752],3941,4006,[3239,4072],[3174,4071],[3239,3880],3176,[3239,3813],[3176,3816],3175,[3175,3230],3234,3233,3233,3233,3232,[3239,3295],[3239,3105],3238,3176,3176,3239,[3174,3878],4005,[3175,4009],3240,3176,3238,3239,[3238,3294],[3239,3295],[3174,3295],[3239,3298],[3176,3297],[3240,3105],[3176,3294],[3176,3296],[3175,3296],[3175,3106],3175,[3238,3813],3941,3494,3494,3558,3942,3941,3943,3429,4006,[3240,4070],4005,3942,[3238,3749],[3175,3815],[3174,4004],3942,[3238,3749],3941,[3176,4009],3175,[3176,3878],[3239,4072],4005,3944,3942,[3174,3749],[3175,3815],3175,3176,3175,3239,3238,3240,3239,[3169,2981],[3170,2982,9745],[3233,2983,9746],[3943,10129,9647],3944,[3169,3816],3231,3231,3231,[3231,4004],3943,4005,4008,3943,3943,4006,[3233,3816],3169,3234,[3234,4004],3943,4006,3944,4005,3942,3944,[4007,807],607,607,607,[3239,869],3175,[3240,9452],[3240,9453],[3239,9454],[3176,9455],[3238,9456],[3174,9457],3176,3239,[3239,3878],[3239,3880],3175,3239,3240,3176,3176,[3239,935],607,[3169,805],[3170,806],[3167,806],[3232,3172],3176,3174,[3175,3940],[3240,4009],3239,3176,[3167,3241],3233,[3231,9745],[3234,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8869,8869,8870,8869,8870,8869,8869,8870,8869,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,607,607,607,607,607,607,607,607,607,[3950,869],3500,3499,[3949,4016],3442,4018,[4014,4082],[4012,4084],[3562,4085],3500,3949,3949,3950,3947,4013,3948,4013,3499,[3564,3760],3953,4018,[3499,4085],4012,3947,3947,3947,3950,3562,3563,3949,691,691,691,691,691,691,691,691,3564,3499,4014,3563,3948,3563,4014,4011,3950,3564,4013,3949,4013,3949,4014,3434,4013,3500,3500,3499,3563,3950,4013,3949,4012,4014,3948,3564,3563,3948,3950,3499,4012,4014,[4012,935],607,607,607,607,607,607,607,607,[3949,805],3499,3562,4011,4012,3948,3562,3563,3564,3500,4012,4011,4011,3563,3949,4014,3562,4014,3564,[4011,935],607,607,607,607,607,607,607,[607,9628],[3578,9721],[4026,9722],3447,3577,3446,3574,4024,4023,3578,4024,3578,3511,3448,4026,3576,4024,3578,3960,4026,3577,3577,4023,4026,3577,4025,3512,3578,4026,3446,3960,4024,3510,3512,3446,3448,4025,4023,3577,4026,3578,3962,3446,4025,4026,3577,3446,3510,3512,3961,4026,3448,3576,4023,3578,3960,3446,3962,3578,3447,4023,3578,3575,3962,3575,3959,3446,3578,3447,4026,3578,3446,4023,3446,4024,3510,4024,4024,3577,3446,3448,3576,4025,3961,4025,3961,3962,3446,4024,4025,3577,3960,3447,3577,4024,4024,3447,3576,3578,3447,3446,4025,3576,3446,3511,3962,3960,3961,3577,4024,3446,4025,4025,3578,3446,3446,4026,3577,4025,4024,3959,3578,3512,4023,3446,4026,3576,3447,3446,4026,3961,[3577,9646],[3938,9739],[4001,9740],3488,3551,4002,3935,3551,3551,[3168,4003],3232,[3168,9553],[3168,9554],3168,3168,3232,3233,3234,3231,[3170,3872],[3234,4065],[3168,3874],3232,3233,[3167,3871],3938,3486,4001,3488,4000,3938,3935,3938,3486,3488,3936,3938,3551,3487,4001,[3234,3747],3233,[3169,3870],3936,3487,[4002,10221],[4000,10222],[4002,10223],[3551,10224],3936,4002,3938,3999,4000,[3170,3939],3168,3234,3167,3233,3168,[3169,3807],[3233,3743],4002,4001,3937,[3486,9452],[3937,9548],[3169,3873],[3170,3998],4002,3487,4000,3936,3936,4000,3937,4000,3936,3936,3999,4000,4002,4002,3936,3999,3999,3552,3935,4001,[3175,4003],3239,[3175,4062],3938,3937,3487,4002,3551,[3552,9649],[4002,9650],[3174,9647],[3239,3940],[3239,3945],3176,3175,3238,[3239,3878],[3175,4069],[3239,4070],[3240,4071],[3238,4072],[3238,4069],[3174,4070],[3176,4071],[3239,4072],4005,3942,[3240,3749],[3239,3815],3238,[3176,3748],3941,[3175,3817],3240,[3174,3104],[3240,3296],[3240,3298],[3239,3295],[3240,3296],[3174,3105],[3167,3303],3238,3238,[3240,3814],[3239,3749],[3239,3749],[3175,3753],[3174,4004],3942,[3240,3749],[3240,3749],[3174,3815],3175,3174,3239,3240,3176,3175,3176,3240,3176,3240,3174,3175,[3175,4004],3430,3556,4008,4006,[3239,4070],[3240,4072],[3174,4069],[3174,4070],[3174,3880],3240,[3175,4068],[3238,4070],[3174,4070],[3176,4073],[3238,4068],4005,3944,4006,[3176,3879],3174,3239,3174,[3176,4004],4006,4005,4006,[3176,3879],3174,[3168,3303],[3232,3304],3239,3239,3176,3174,3240,[3176,9841],[3239,9842],[3941,9647],3941,[3169,3817],3232,3234,[3167,3813],3944,3943,3430,3943,3941,3942,4006,4006,[3169,3750],[3170,3752],4006,3941,4007,3941,4008,4008,3941,[3944,871],607,607,607,[3239,933],[3240,9547],[3175,9548],3176,[3938,3111],[3999,3109],3176,[3174,9553],[3240,9457],3176,3174,3239,3174,[3234,3303],[3167,3304],[3238,815],[3239,870],[3176,999],607,[3231,933],3168,3234,[3234,3236],[3239,3748],[3239,3749],3941,3942,[3238,3749],[3174,3753],3174,[3232,3048],[3233,9649],[3232,9650],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,[10020,9542],10020,10021,10020,10021,9059,9060,9061,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8677,8678,8677,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,607,607,607,607,607,607,607,607,607,[3562,933],3947,3563,[3499,3889],4017,3954,[3950,3761],[4011,3827],3562,3564,3563,3947,3949,4011,3950,3564,4012,[3949,3825],3953,4018,[3950,4085],3950,3948,3948,3435,4013,3947,4011,4011,3947,[3500,935,755],[607,755],[607,755],[607,755],[607,755],[607,755],[607,755],[3500,933,755],3948,3947,4011,3500,4013,3947,3499,3949,3562,3563,3500,3562,4013,3949,3562,3950,3500,3564,4014,4014,4014,3563,3949,3948,4013,4014,3562,3947,3499,4011,3948,[3562,815],[3948,870],[3950,998],[4012,999],607,607,607,607,607,607,607,607,[3499,869],3562,3948,4011,3947,3950,3947,3949,4013,3563,3564,3500,3950,3949,4012,3564,3949,3947,3499,[3948,871],607,607,607,607,607,607,607,[607,9628],[3510,9817],[3577,9818],3961,3511,3574,3448,4024,3447,4025,3447,3574,3574,4023,3447,4025,3642,3643,3512,4024,4025,3961,3575,3448,3511,3962,3511,3577,3575,3510,3447,4025,4023,4026,3512,3578,3577,3962,3961,4026,3961,3961,3960,3448,4025,3574,4026,4024,3448,3959,4026,3576,3447,4025,3447,4026,4024,4024,4026,3577,4025,3447,3578,3577,4024,4023,3447,3960,4023,3576,4026,4026,3960,3510,3959,3511,4026,4026,3962,3512,3448,3447,3578,3577,3448,3448,3575,4024,3446,3448,3447,4026,4024,3448,3959,4023,4025,3578,3577,3959,3510,4024,3959,4026,3959,4024,3577,3446,3574,4024,3448,3448,3447,3577,4025,4025,3578,3448,4026,4023,3578,3961,3960,3446,3961,3574,3961,3574,3513,3960,3961,[4025,9742],[4000,9739],[4001,9740],3938,3552,4001,3999,3999,3937,[3232,4067],3232,[3234,9649],[3234,3807,9650],[3170,3743,9551],[3231,3743],[3232,3809],3169,3170,3170,3234,3232,3168,3234,[3168,3807],[3168,3743],4000,3551,3937,4001,3937,3936,3938,3618,3619,3487,3552,4002,3935,4000,3488,[3169,3811],3232,[3234,3934],4002,3551,3552,3552,3552,3936,3486,4001,3999,4001,3935,[3233,3873],3234,[3170,9357],[3170,3808,9358],[3167,3743,9359],[3170,3743,9360],[4000,9357],[3551,9358],[3488,9359],[3551,9360],[3938,9547],[3486,9548],3999,[3231,3743],4000,3553,4000,3551,4002,3937,4001,3486,3551,4000,3552,4002,3361,4000,3938,3937,3935,3999,4002,4002,3999,4001,[3239,3810],3239,[3176,3871],3937,3486,3936,3486,[3487,9745],[3938,9746],[3239,9647],[3176,4068],[3175,4073],3175,3240,3238,3174,3175,3176,3175,3175,3174,3176,3238,3239,[3176,3878],4005,4007,3942,[3176,3749],3941,3942,[3239,3753],3176,3175,3176,3239,3239,3175,[3168,3305],3233,[3234,3044],[3175,3748],3941,3559,3494,[3176,4009],[3174,4068],[3174,4070],[3176,4071],4005,3942,[3174,3750],[3238,3751],[3176,3752],[3175,3816],3240,[3240,3813],[3240,3750],[3239,3751],[3239,3752],[3175,3750],[3175,3752],[3175,3749],3941,3558,4006,[3238,4069],[3238,3879],3238,3239,3175,3239,3175,3239,3238,3239,3239,3175,3240,[3175,3878],4005,3942,[3176,3749],[3240,3816],3240,[3240,3813],3941,[3240,4009],[3175,3877],[3238,4073],3175,[3167,3241],3169,3170,[3234,3110,9841],[3174,9933],[3176,9934],[3240,9935],[3175,9936],[3176,9937],9938,[3942,9743],3943,[3170,3881],3234,3168,[3231,4004],3941,3944,3944,3942,4008,4006,3559,4008,3941,3944,3944,4008,4005,3944,3428,3942,3941,[3943,935],607,607,607,[3239,997,9550],[3239,9739],[3174,9740],[4000,3241],3618,3619,[3936,3236],3238,[3176,9553],[3176,9554],3175,3238,[3169,3049],3233,3167,[3167,3044,871],607,607,607,[3169,997],[3233,934],[3168,3045,816],3239,[3239,3877],4005,4006,4005,4008,3942,[3175,3816],[3231,3241],[3167,9745],[3231,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,[3610,10116,9638],[3548,10116],[3609,10117],[3609,10116],[3545,10117],[3227,3549,9155],[3228,9156],[3227,9157],[3227,3544,10117],[3611,10116],[3609,10117],[3610,10116],[3610,10117],[3611,10116],[3545,10117],[3546,10116],[3612,10117],[3612,10116],[3611,10117],[3547,10116,9541],8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8773,8774,8773,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9383],607,607,607,607,607,607,607,607,[3950,997],[3947,934],[3499,816],3950,[3563,3890],4017,3570,3954,[3562,3765],4011,3499,3500,3562,[3949,3825],[4013,3761],3441,[4013,3761],3953,4018,[4012,3891],3564,4014,3562,4012,3562,3950,4012,3950,[4011,815],[3949,870],[3499,999],607,607,607,607,607,607,[3500,997],[4012,998],[3948,934],[3500,816],3563,3947,3563,3500,3947,3948,3562,3499,3949,3435,4012,4011,3501,4014,3499,4013,3563,3564,3949,3562,3500,3500,4011,3949,3562,3564,3950,3434,[3949,871],607,607,607,607,607,607,607,607,607,607,[3949,805],3499,3948,4014,4013,3500,3948,4011,3562,4014,3564,3434,4014,4013,4012,3949,3498,4012,3948,3499,[4012,935],607,607,607,607,607,607,607,[607,9724],9913,[3578,9914],[4025,9818],3447,3447,3510,4026,3578,3578,3576,3448,4023,4024,4023,3448,3706,3707,3959,4025,3574,3962,3960,3446,4023,4024,4026,4024,3960,4025,3578,4026,4026,3511,3960,3510,3446,3448,3447,3448,3578,3447,4025,3960,3575,3446,4026,4024,4023,3510,3510,3448,4026,3576,3512,3447,3446,3448,3448,4023,4023,3578,3575,3574,4026,3510,3576,3638,3639,4024,3448,3574,3959,3576,3578,3447,3446,4024,3575,3578,3446,3959,3575,3576,3448,3578,3575,3959,4025,3447,3510,3962,4024,3447,3446,3510,4026,3511,4026,3575,4023,3578,3448,4024,3578,3577,3446,3578,3962,3447,3577,4024,4026,3960,3578,4023,3578,4026,3447,3578,3578,4024,3510,3578,3510,3959,3511,3448,4026,4025,3511,[3574,9547],[3937,9548],3935,3487,4001,3937,3487,3935,[3232,4067],3232,3168,[3169,3807],[4000,9553],[3487,9457],3937,4001,[3167,3809],3169,3168,3232,3232,3231,3234,[3167,3806],3486,3935,3551,4002,3935,3937,3553,3936,3682,3683,3935,3935,4001,4000,4000,3486,[3231,3875],3168,[3232,3872],[3169,4065],[3234,4064],[3231,4064],[3169,4064],[3232,4066],[3169,4066],3936,4002,3937,3937,[3169,3873],3234,[3234,9547],[3233,9453],[3170,3998,9454],[4002,9455],[3935,9456],[3488,9453],[4000,9454],[4002,9455],[3999,9456],[4001,9548],3488,3936,3486,3486,3937,4001,3937,4000,4001,4001,3551,3936,3938,3935,4002,3935,4001,3937,3937,3938,3938,3486,4002,3937,3936,[3176,3811],3238,3238,[3238,3998],3999,3552,4002,[4002,9841],[3938,9842],[3238,3748,9647],[3238,3753],3240,3176,3176,3239,3175,3239,3240,3175,3238,3240,3175,3239,3240,3239,[3238,4004],3493,3556,4008,4006,4005,3942,[3176,3749],[3240,3749],[3239,3753],3240,3175,[3168,3112],3167,3170,[3232,3108],[3240,4004],3493,3494,4006,[3174,3879],3238,3175,3238,[3238,4068],[3240,4069],[3240,4071],[3174,4072],4005,3942,[3240,3749],3941,3430,3557,4007,3557,4008,3943,4007,3492,[3240,4009],3176,[3175,3813],[3240,3749],[3174,3753],3240,3238,[3233,3301],[3169,3302],[3169,3303],[3233,3304],[3167,3302],[3233,3303],[3231,3304],3174,[3175,3878],[3174,4071],4005,3942,[3176,3749],3941,4006,[3176,4073],3238,3176,3238,[3169,3305],3170,[3232,9841],[3233,9937],10029,10030,10031,10032,10033,[3942,869,10034],[3620,9839],3621,[3231,3945],3168,[3231,3814],3942,4007,4008,3942,4007,[3167,4070],[3168,4071],[3168,4072],4005,3942,3622,3623,3944,4007,4005,4007,3941,4007,[3944,871],607,607,607,[607,9452],[3240,9548],[3935,3304],[3935,3305],3682,3683,[3999,3109],3175,[3176,9649],[3239,9650],[3175,9551],3239,[3170,3177],3170,3234,[3170,3108,935],607,607,607,607,607,[3174,869],3238,[3176,3813],3941,[3238,4009],[3174,4068],[3238,4070],4005,[3239,4009],3174,[3232,3047,9841],[3232,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,[3547,10212,9638],[3611,10212],[3548,10213],[3548,10212],[3611,10213],[3164,3613,10212],3164,[3227,10212],[3227,3608,10213],[3611,10212],[3546,10213],[3547,10212],[3609,10213],[3610,10212],[3611,10213],[3612,10212],[3548,10213],[3609,10212],[3547,10213],[3610,10212,9637],8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8869,8870,8869,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,607,607,[4013,869],4014,[3564,3826],3572,4018,4017,3954,[3947,3828],[3564,3826],[3562,3761],[4014,3761],3953,4018,4017,3504,4018,[3564,3891],4014,4012,3500,4012,4014,[3948,3825],[3949,3761],[3564,3765],4012,[3564,871],607,607,607,607,607,607,607,607,607,607,607,[4014,869],3628,3629,3948,3564,3949,3562,4011,4013,3563,4014,3948,3947,3564,3950,3563,3562,3563,3563,3564,3564,4014,3500,3563,3563,3949,4011,3499,3564,[3950,935],607,607,607,607,607,607,607,607,607,607,[3948,869],3499,3500,3562,4014,3949,4013,3562,4011,4014,3563,4013,3499,3500,3563,3948,4012,4011,3564,3949,[4012,871],607,607,607,607,607,607,607,[607,9820],[607,10009],10010,[3576,9721],[3446,9722],3577,3511,3512,3578,3961,3577,4023,4024,3513,4024,3578,3578,4026,3446,4024,4024,3512,3578,3960,4025,3574,3446,3446,3577,4023,4026,4024,3959,3578,3578,3448,4023,3574,3510,4024,4026,3576,4025,3576,3575,3446,4025,3510,3578,3575,3962,3447,3446,3577,4024,3962,4024,3961,4024,4024,3513,3962,3511,4025,4024,3576,4024,3702,3703,3446,3448,3960,3446,3960,3512,3447,3577,3575,3578,4023,3578,3578,3446,3960,3960,4025,3575,3577,4024,4023,3961,3574,3960,3959,3575,4026,3577,4024,3962,3448,4023,4023,4024,4023,3446,3448,3961,4023,3575,3575,3962,3513,4024,3448,4025,3446,3446,3510,3577,3578,3578,3448,3448,4025,3448,3575,3448,3577,4024,4024,[3448,9550],[3937,9643],[3487,9644],3938,3551,3486,3486,3935,[3170,4067],3232,3231,[3167,3742],4002,3935,[3487,9553],[3488,9457],4002,4001,[3233,3744],[3234,3744],[3168,3745],[3234,3746],[3170,3810],3168,[3231,3870],3487,3552,[3233,4003],[3168,3998],3552,3999,3487,3551,3935,4001,4002,3938,4000,3935,3551,3488,[3169,3939],3234,3233,[3168,3742],[3167,3744,9357],[3233,3744,9358],[3167,3745,9359],[3169,3746,9360],[3167,3810],[3232,4062],[3170,4063],[3169,4064],[3169,4067],3231,[3167,9547],[3232,3807,9548],[3234,3743],4000,3935,3487,3487,3935,3937,3937,3937,4002,3486,3935,4001,3937,4001,3999,4000,3937,3935,4002,4001,4001,4002,3935,3937,4000,4000,3614,3615,3486,4002,3488,4000,3551,[3176,3875],3175,3176,[3174,4062],3487,3937,[3938,9841],[3938,9937],9938,[3238,4004,9743],[3238,4009],3240,3240,[3238,3814],[3239,3749],[3174,3815],3238,3175,3238,3175,3240,[3168,3302],[3167,3303],[3233,3304],3174,[3238,4068],4005,3494,4006,[3175,3879],[3238,4004],3558,4007,4007,3942,[3175,3753],[3233,3049],3168,3169,3167,[3231,3172],[3240,3877],4005,4006,[3239,4073],3175,3239,3175,3175,3175,3174,3240,3175,[3176,3878],4005,3492,3557,3943,4006,[3176,4070],[3240,4069],[3175,4070],4005,3944,3493,3942,[3238,3749],3941,3493,[3240,4009],3174,[3167,3241],3234,3233,3169,3233,3231,3167,3232,[3169,3109],3239,3175,[3238,3877],4005,3492,4006,[3239,3879],3240,3240,3238,[3231,3049],3170,[3232,9841],[3169,9937],10033,[607,10125],[607,10126],[607,10127],[607,10128],[607,10129],[4008,869],3684,3685,3941,[3167,3749],3943,4008,3941,4006,3942,[3233,3880],3234,3233,3233,[3234,3878],3944,3686,3687,4007,4005,4006,[4007,9357],[3942,9358],[3941,9359],[4007,935,9360],607,607,[607,9452],[3175,9548],[3935,3241],4001,4000,3936,3936,3999,[4002,3236],3174,[3239,9553],[3176,9554],3176,[3167,3305],3231,3234,[3168,3172],[3239,807],607,607,607,607,[3176,933],3176,[3175,4004],4006,[3176,3879],3174,3174,[3174,4068],[3175,3879],[3173,9841],[3240,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,[3612,9734],3546,3611,3546,3609,3545,[3164,3419],3228,[3228,3481],3545,3610,[3164,3674],[3227,3484],[3227,3481],3611,3545,3610,3546,3547,[3611,9637],8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8677,8678,8677,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9477],607,607,607,607,607,607,607,607,[4013,933],3562,[3949,3824],4018,[3948,3891],[3562,3890],4017,3954,3953,4018,[4011,4081],[4012,4082],[4014,3892],[4011,3889],4017,[3564,3829],4013,4012,4014,4012,3950,[3500,3826],3953,3571,[4012,4085],3947,3948,[3948,807],607,607,607,607,607,607,607,607,607,607,[3564,933],3692,3693,3948,3948,3947,4012,3950,4013,3500,3500,4014,4014,3563,3563,3564,4013,3949,3500,3950,3564,3630,3631,3562,3500,3563,[3950,815],[3950,870],[3564,998],[4012,999],607,607,607,607,607,607,607,607,607,607,[3562,933],3947,3950,4014,4014,4011,3500,4012,3950,3947,3562,3947,[3949,815],[3949,870],[3564,1002],[3948,1003],[3562,998],[4012,934],[4014,816],3949,[3564,935],607,607,607,607,607,607,607,607,607,[607,10106],[3512,9817],[3578,9818],3577,4026,3577,3576,3961,4026,3447,3512,3577,3447,3959,4026,3512,3446,3577,3446,3448,3448,4023,4026,4026,3576,3577,4026,4026,4023,3446,4025,3961,3510,3447,3448,3446,4026,4025,3578,3959,3575,3574,3577,4024,3577,3447,3578,4024,4026,3575,3576,3578,3448,3511,3511,3449,3448,4023,3576,3577,3511,3959,4024,3578,4024,3576,3510,3574,3959,4026,4025,4026,3577,3447,3960,4025,3510,4024,3446,4025,4024,3577,3447,3512,4023,3446,4026,3446,3962,3446,3510,3447,4026,3448,3446,3447,4023,3447,3512,3512,3574,3447,4025,4023,3959,3448,4025,4025,4024,4024,4023,4024,4026,3575,3576,3961,3578,3578,3960,3575,4026,3448,3959,4023,3447,3448,3575,3510,[3447,9646],[4001,9739],[3935,9740],3552,4002,4002,4002,[3233,4003],3167,3167,3169,[3232,4062],3936,4000,3937,[4000,9553],[3938,9554],3999,3937,3936,4000,4001,[3234,4003],[3168,9357],[3167,3934,9360],3937,[3232,4065],[3233,3874],[3167,3872],3935,3938,3937,3937,3488,3486,3938,3937,4002,3935,3935,[3168,4064],[3234,3873],3231,[3231,3807],[4000,9452],[3486,9453],[3488,9454],[3938,9455],[3937,9456],[3231,3873,9457],3232,3169,3167,3232,[3234,9452],[3232,3807,9548],4000,4002,3486,4001,3999,3487,4002,4000,4000,4001,3937,4002,4002,4002,3999,4002,3938,3999,3937,4000,4002,3936,4002,4001,4000,3999,3937,4000,3678,3679,4002,3938,3553,3487,4002,[3239,3939],3239,3175,3239,[3176,3806],[3999,9649],[3936,9650],[10033,9551],[3239,10034],[3240,4004,9839],3942,[3239,3815],[3239,3814],3941,4006,[3174,4073],3238,3239,3175,3238,[3232,3112],3167,3232,3170,[3169,3109],3174,[3240,4004],4006,[3239,3880],3175,[3240,3878],4005,3494,3492,4008,[3174,4009],[3169,3113],3169,[3167,2980],[3170,2981],3174,3175,[3239,4004],3942,[3240,3749],[3239,3816],3174,3238,3240,3176,3238,3238,3175,3176,[3175,4068],[3174,4070],[3240,4072],[3174,4070],[3170,3303,3879],[3233,3304],3240,3174,[3176,3812],3557,4006,[3238,4072],4005,4006,[3175,4071],[3231,3303,3879],[3170,3304],[3168,3112],3231,3234,3232,3232,3167,3234,3234,[3168,3045],3238,3240,[3240,3748],3941,4006,[3175,3879],3174,3239,3176,3240,[3231,3177],[3232,9745],[3231,9746],[10033,9551],[607,10129],[607,10221],[607,10222],[607,10223],[607,10224],607,[3943,869],4006,3941,3944,3944,4008,3942,4005,4006,[3169,4009],3232,3233,3168,3233,3170,[3234,4068],[3231,4070],[3232,4071],[3233,4072],3941,[3944,9547],[3175,9453],[3936,3303,9454],[4001,3304,9455],[3175,9456],[607,9457],[607,9452],[3238,9548],[4001,3304],[3936,3111],4000,3938,4001,3361,3935,[4001,3300],[3935,3301],3174,[3238,9553],[3232,3112,9457],3234,3168,[3231,3045],3175,3174,[3240,806],[3174,806],[3175,806],[3240,806],3238,[3175,3813],3941,[3239,4009],3176,3240,3174,3240,[3240,9649],[3174,9650],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,[3547,9638],3546,3548,3611,3611,3610,3610,[3228,3420],3164,[3227,3481],[3227,3484],[3164,3417],[3164,3419],3164,[3163,3416],3545,3545,3545,3545,[3545,9637],8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,9059,9060,9061,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8773,8774,8773,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9669],607,607,607,607,607,607,607,[3499,805],3564,4011,[4012,3952],[3950,4021],3563,3500,[3947,4016],3569,3506,[4014,4021],4013,3499,3950,3562,[3500,4016],[4011,3893],4013,3950,3949,3499,[3564,3760],3953,4018,[3949,3892],4013,4011,3500,3947,[4012,807],607,607,607,607,607,607,607,607,607,[4014,997],[4011,998],[3499,934],[3562,816],3950,4012,3949,3562,3500,3500,4013,3563,3950,3499,3950,3562,3562,4012,4011,3500,3564,3694,3695,3948,4013,3947,[3500,871],607,607,607,607,607,607,607,607,607,607,607,607,607,[3500,997,303],304,305,[4013,1002,306],[3949,1003],[3564,1004],[3499,1005],[4012,1001],[3947,1002],[3949,1003],[3564,1004],[3563,1005],[3948,1006],607,607,607,607,607,[3948,997],[4013,998],[3947,999],607,607,607,607,607,607,607,607,607,607,9913,[4024,9914],[3447,9818],3447,3576,4025,4025,3510,4023,3960,4026,3577,4026,4026,3512,3574,3960,4023,3447,3577,3577,3960,3578,3578,3578,4025,3511,3574,3448,4025,4025,4025,3447,3512,4023,3448,3510,4024,4025,3510,4023,3960,4023,3575,3510,4023,4026,4026,3642,3643,4026,3447,4024,4024,3578,4026,3959,3959,4025,3446,3577,3578,4026,3510,3446,3577,3575,4023,3447,4024,3577,3510,3448,3446,3574,3447,3575,4026,3576,3448,4023,3575,3576,3578,3961,3449,3578,4024,4024,4026,4026,3448,3577,4025,4023,3511,3578,4024,4026,4024,3512,3960,3578,3961,4026,4026,3512,4024,3576,3577,3577,3638,3639,4025,4023,3447,4025,3961,4023,4023,4024,3446,4024,4024,4024,3962,3574,[3448,9742],[3937,9643],[3936,9644],3936,4001,3488,3937,[3232,3873],3169,[3233,3808],[3169,3747],[3168,3807],4000,3999,4002,[3938,9649],[3938,9650],[4000,9551],4002,3999,3938,3937,[3168,4067,9452],[3231,9453],[3170,4062,9456],[3168,3873,9457],3233,[3233,3742],[3167,3743],[3168,4003],[3231,4062],[3168,4065],[3167,4063],[3232,4066],[3938,9357],[3551,9358],[3937,9359],[3231,4066,9360],[3232,4066],[3170,4067],3167,3170,3169,[3234,3998,9547],[3935,9548],4000,3999,3486,3999,[3168,3744,9553],[3170,3744,9554],[3167,3745,9357],[3232,3746,9360],[3170,3810,9547],[3233,9548],[3170,3871],[3167,4063],3936,3551,3937,3937,4000,3936,3937,3935,3999,4000,4000,4002,3618,3619,3936,4002,3938,3936,3999,3938,3936,3489,4002,3938,4002,4000,3936,4000,3935,4001,3935,4001,4002,3937,[3174,3811],3174,3238,3240,[3240,3870],[3938,9745],[3935,9746],[3239,10129,9647],3239,[3174,3878],4005,3942,3941,4006,[3176,3880],[3169,3301],[3232,3302],[3234,3303],[3231,3304],[3167,3305],3169,3231,3231,3170,3232,[3170,3236,3813],3941,[3175,4009],[3169,3111],[3167,3110],3238,[3239,3877],[3174,4069],4005,4006,[3239,4073],[3232,3177],3168,[3170,3044],3175,[3176,3814],[3238,3749],3941,4007,3430,3942,[3239,3815],3239,[3174,3813],[3240,3816],3174,3238,[3169,3303],[3168,3304],3176,3174,3238,[3234,3241],3170,3232,[3169,3044],3240,[3239,3940],3493,[3239,3817],3239,[3239,3878],[3239,3880],[3167,3241],3167,3170,3170,3167,3231,[3168,3045],[3232,2981],[3231,2982],[3167,2983],[3168,2984],[3174,3813],[3174,3749],[3239,3749],3941,3495,[3239,3879],3174,3238,3238,3176,3239,[3168,3111],[3231,9841],[3168,9842],[607,10129,9647],607,607,607,607,607,607,[4007,933],3941,4005,4006,4006,4006,4008,3944,3943,[3231,4073],3169,3168,3168,3233,3169,3169,3170,3169,3167,[3232,3878,9550],[3239,9643],[3937,3111,9644],3489,4000,[3936,3300],[3935,3301,9553],[3176,9548],[3935,3241],4000,3937,4001,3937,3936,3937,3935,3935,4000,[3937,3236],3239,[3238,9553],[3234,9457],[3167,9357],[3170,3044,9360],3174,3240,3176,3174,3176,[3239,3748],[3176,3749],3941,3429,3942,[3238,3815],3175,3175,3240,[3175,9745],[3173,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,[3611,9638],3548,3546,3609,3609,3547,3612,[3163,3421],3164,[3227,3417],[3163,3353],3546,[3228,3613],3163,[3163,3544],3609,3612,3546,3547,[3547,9637],8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,[3164,10116,9542],[3163,10117],[3163,10116],[3228,9155],[3163,9156],[3228,9157],[3227,10116],[3163,10117],[3227,10116],[3163,10117,9541],8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8869,8870,8869,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9383],607,607,607,607,607,607,607,[3948,869],4011,3499,[3950,3889],[3947,3892],3563,3563,[3562,4080],4017,4018,[3947,3892],3950,3947,4014,3947,[4011,4016],[4011,3957],3563,3947,3563,[4014,3825],3953,4018,[3500,3891],3499,3499,3563,3564,4011,[3499,871],607,607,607,607,607,607,607,607,607,607,607,607,[3562,997],[4012,934],[3563,816],3947,3499,4011,4014,3949,3562,4011,4012,4014,3499,3562,3948,3947,3950,4011,4012,4013,4014,4011,3499,[3949,935],607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,10009],[10010,9532],[3448,9625],[3448,9626],3574,3512,3960,4026,3961,4024,4025,3448,3961,4025,3448,3961,3961,3575,3448,4023,4026,3448,3577,4025,3575,3960,3448,3446,3448,4023,3962,4026,3578,3448,3575,4025,3448,3578,3577,3577,3575,3576,4025,3446,3511,3446,3960,3962,3706,3707,3448,3574,3512,3446,3959,3962,3512,3577,3447,4023,4026,4024,3577,3962,3510,3577,4025,3578,4024,3574,3961,3510,4024,3447,3960,4023,3578,3577,3959,3576,3510,4023,3448,3578,4024,3448,4023,3959,3510,3447,3578,3511,3961,3512,3447,4025,3961,4026,3574,4025,3574,4023,3447,3960,3575,4025,3574,4025,3576,3513,3447,3702,3703,3446,3446,4025,4026,3510,3576,3512,3578,3577,3448,4026,4023,3448,4025,[4024,9547],[4002,9548],3486,3938,4001,3488,[3232,4003],3170,3169,[3168,3998],4001,4002,4000,3936,4002,[3999,9745],[3938,9746],[4001,9743,9357],[4000,9358],[4002,9359],[3936,9360],[3232,4003,9547],[3232,9548],3232,3234,[3233,9553],[3168,9554],[3168,4062],[3233,4064],[3167,3873],3231,3170,3168,[3231,9452],[3232,4062,9453],[3234,4066,9454],[3234,3874,9455],[3167,9456],[3232,9457],3232,3167,3234,[3169,3742],[4000,9643],[4000,9644],3936,4001,4002,4000,3936,[3486,9553],[3935,9453],[3487,9456],[3999,9548],[3234,3744],[3233,3745],[3168,3746],4000,4001,3486,3935,3937,3486,4002,3938,3937,3935,4002,3935,3682,3683,3936,[4001,9841],[4001,9935],[4002,9936],[3999,9836],3553,4002,[3999,9841],[3935,9935],[4001,9936],[3935,9836],4000,3936,4000,4001,3937,3935,3999,3553,4002,[3239,3875],3174,3239,3238,[3176,3934],3937,[3937,9553],[3174,9457],3175,3238,[3238,3877],4005,4006,[3175,4073],[3168,3111],3167,3233,3169,3170,3232,3233,3169,3233,3167,[3167,3045],[3239,4004],4006,[3169,3049,3880],3168,3167,[3169,3044],3240,[3174,3748],3495,[3174,4009],3238,[3169,3241],3170,[3231,3172],3175,[3176,4068],[3175,4070],4005,4008,3558,3556,3942,[3238,3749],3941,[3238,4009],3240,[3170,3112],3167,3234,[3232,3236],3239,3175,[3232,3112],3167,3167,[3234,3108],[3174,3814],3941,3492,[3238,3881],3175,[3170,3303],[3234,3304],[3170,3305],3232,3231,[3234,3046],[3231,2982],[3170,2984],3239,3238,[3175,9549],3238,[3175,3813],3941,4006,[3240,4070],[3238,4069],[3176,3880],3239,[3233,3301],[3168,3302,9841],[3239,9933],[3175,9934],[3169,3241,9935],[3231,9936],[3169,9937],9938,[607,9743],607,607,607,607,607,[3943,805],4005,3941,3941,3943,4007,3942,4007,4005,[3233,3817],3231,3231,3168,3169,3233,3232,3170,3233,3170,3232,[3234,9646],[3238,9739],[4001,3048,9740],3935,4002,3938,4002,[3938,3110],[3999,3305],4002,3936,[3937,3045],[4002,2981],[4002,2981],[3999,2981],[3936,3047],3935,4001,[4000,3300],[4000,3303],[4001,3304],[3176,9553],[3174,9453],[3174,9456],[3240,9554],3176,3238,3176,3176,[3176,4004],4006,[3176,4072],[3174,4070],4005,3942,[3238,3816],3175,3240,3239,[3174,9553],9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,[3546,9734],3612,3609,3546,3546,3548,3611,[3164,3549],3164,[3163,3672,9832],[3673,8675],[3674,8676],[3228,3677,9827],3228,[3227,3481],3546,3612,3609,3548,[3545,9733],8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,[3164,10212,9638],[3163,10213],[3228,10212],[3228,10213],3228,[3228,10213],[3228,10212],[3228,10213],[3227,10212],[3228,10213,9637],8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8677,8678,8677,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,[4013,933],3948,3500,3948,3563,4014,4011,4011,[3562,3824],[3563,3829],3500,3564,4012,3499,4011,[3950,4016],3954,[3562,3761],[3948,3761],[3564,3761],3953,4018,[4012,3891],3499,3949,3499,4013,3563,3947,[3500,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3564,869],4011,4011,4013,3500,4013,3947,3562,3562,3563,3563,3563,3949,4013,3499,3950,3950,4012,4013,3564,3562,3499,[3562,807],607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,10106,9724],[3575,9721],[3510,9722],3577,3512,3961,3959,3448,3961,4023,3510,3447,3512,3576,3446,3574,4026,4025,3578,4025,3578,3447,4026,3447,3449,3448,4024,3577,3960,3448,3962,3574,3447,4026,3576,3961,3576,3446,3959,3447,3448,4025,3446,3961,4025,3577,4025,3448,3574,3447,3513,3577,4023,4024,4025,3446,3577,3510,4024,3511,3447,3447,4023,3577,4025,4024,3578,3577,3575,3959,3448,4026,3448,3962,3959,3959,3575,3448,3578,4023,3575,3575,3577,3575,4023,3961,3578,4026,3446,3447,3574,3575,3447,4026,4026,3448,3448,3576,4024,3576,4023,3510,3576,3577,3578,3446,3510,3512,3510,4025,3512,3511,4023,4024,3511,4025,3959,3578,3512,3960,3447,3448,3962,3962,3447,[3960,9547],[3938,9548],3937,3999,3487,3937,3937,[3232,4067],3169,[3231,3807],4002,3937,3935,4001,3936,3999,3938,[4000,9553],[4000,9453],[4001,9454],[3999,9455],[3937,9456],[3999,9548],[3167,3743],[3232,3747],3233,3168,[3168,9553],[3170,9554],[3168,9357],[3234,9358],[3231,9359],[3233,9360],[3232,9547],[3233,9548],3234,3168,3168,3234,[3233,9553],[3232,9554],[3232,9357],[3231,9360],[3232,4062,9547],[3936,9548],3488,3935,3488,3936,3935,4000,4002,3551,3938,3552,3487,3487,4002,3937,3552,4002,3938,4000,4000,3936,4001,3938,4000,3937,3938,[4000,9841],[4002,9933],[4001,9934],[3936,9937],10031,10032,[4000,9932],[3935,9935],[3936,9936],[3936,9937],10031,10032,[3935,9932],[3999,9836],3938,3999,4000,4001,3999,3489,4000,3937,[3240,3939],3239,3176,[3238,3742],3935,3999,3938,[3937,9553],[3175,9457],3176,3176,[3175,4068],[3238,3880],3239,[3170,3047],3167,3234,3233,[3168,3046],[3170,2981],[3170,2985],3233,3232,[3167,2980],[3240,3748],3941,[3174,4009],[3168,3113],3168,3169,[3168,3108],3238,[3240,4004],4006,[3240,3879],3240,[3233,3305],3169,[3169,3300],[3232,3301],3176,3240,[3239,3877],[3176,4071],4005,3944,3494,4006,[3174,4070],[3174,4073],[3170,3241],3170,3231,[3232,3045],3174,3238,[3167,3241],3168,3168,3168,[3232,3172],[3238,4004],4007,4008,[3238,3945],[3233,3241],3232,3231,3168,[3168,2980],[3170,2981],3174,3174,3239,3239,[3175,9550],[3239,9645],[3238,3748],3941,4006,[3240,3879],3175,3238,3174,[3168,3111],[3234,9841],[3233,9937],10029,10030,10031,10032,10033,[3944,807,10034],[607,9839],607,607,607,[4008,805],[4005,806],4005,3943,3941,4006,3941,[3234,4071],3944,4006,4008,[3168,3881],3168,3231,3231,3231,3234,3234,3170,3167,3231,3170,[3234,9547],[3238,9548],[4000,3241],[4002,3045],[3938,3047],[3937,2980],[4000,2981],[3999,2985],3935,3937,[3937,3046],3173,3238,[3935,3304],3237,3174,[4000,2981],[3938,2985],3935,4000,3553,[3999,3300],[4002,3303],[3174,9649],[3175,9650],[3168,3303,9551],[3168,3304],3238,3175,[3176,4068],[3239,4073],3239,3239,[3238,3878],4005,3942,[3176,3815],3238,3240,3239,[3237,9553],9554,9357,9360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,[3545,9827,9830],3548,3545,3609,3548,3612,[3548,9832],[3228,3677,8675],[3164,8676],[3228,9928],8771,8772,[3228,9923],[3228,9827],3163,[3163,3416],3612,3545,[3546,9832],[3612,8676,9829],8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,[3164,9638],3164,3227,3228,3227,3227,3228,3228,3227,[3228,9733],8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8773,8774,8773,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9477],607,607,607,607,607,[4011,997],[3949,934],[3947,816],3564,3563,3948,3949,3562,[3499,3888],[3950,3893],3949,3949,3500,4012,3562,[3500,3889],4017,3440,4018,[3948,4082],[3948,4082],[3562,3891],3950,3499,4012,3563,[3499,815],[3563,870],[3499,998],[3564,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3947,933],3562,3950,4011,3948,3950,4013,3500,3950,3563,4012,4012,3948,3564,3950,4012,4014,3563,4011,3949,3949,4011,3564,[4011,807],607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,[3562,805],[3947,806],[4013,807],607,607,[4013,805],[3562,806],[3948,806],[3499,806],[3499,807],607,607,607,607,[4013,805],[4014,806],[3562,806],[3563,806],[3562,806],[3499,807],607,607,[607,9433],[607,9434],[3576,9530],3576,3511,3576,3446,4025,3446,3447,3449,3512,3959,3961,3512,3577,3961,3448,4026,3961,4026,3446,4026,4024,3511,4024,3959,3511,3577,4023,3511,3447,4026,3446,4025,3448,3446,3446,4024,3510,3575,3577,3577,3577,4025,4023,3447,4024,3574,3578,4025,3578,4023,3446,4026,4024,3447,3446,3448,3446,4026,3578,3577,3447,4024,3448,3447,3574,3448,3446,4023,3576,3577,4026,3448,3448,3576,4025,3578,3961,3577,3960,3961,3577,3578,4026,4024,3577,3446,4023,3578,3960,4024,4023,3577,3448,3960,3959,3446,3960,3447,4025,4023,3578,3446,4023,3448,4023,3446,3959,3577,3448,3510,3446,3577,3575,3448,3446,3447,4023,3574,3959,3447,4025,3578,[3446,9550],[4002,9643],[3552,9644],3552,3486,3938,3937,[3168,4067],3232,3232,[3231,3998],3935,3553,4000,3938,3938,3999,3999,3936,3361,3937,3937,[3170,4065],[3169,4063],[3231,4066],[3167,3873],3167,3167,3231,[3232,9553],[3168,9453],[3231,3742,9454],[3234,3744,9455],[3234,3745,9456],[3233,3746,9548],[3234,3809],3168,3167,3232,3232,3169,[3169,9553],[3232,3807,9453],[3231,3810,9456],[3234,9548],[3234,3998],3551,3486,3487,[3169,4063],3936,3552,3937,4002,4002,4002,4001,3935,3938,4001,4001,4000,3937,4001,4000,3936,4001,3936,3937,4002,[4001,9841],[3937,9937],10029,10030,10033,[4002,10127],[4000,10128],10028,10031,10032,10033,[3231,10127],[3234,10128],10028,[3938,9932],[4000,9933],[4000,9934],[3936,9935],[3936,9936],[3935,9836],4001,3937,3936,[3175,4003],3239,3239,[3175,4062],3935,3552,4002,4001,[3937,9553],[3240,9554],3174,3240,3240,3175,3238,[3170,2982],[3234,2983],[3231,2984],3174,3174,[3232,3049],3232,3233,[3168,3044],[3174,4004],4006,[3174,3879],[3234,3177],3234,3233,[3231,3172],3176,[3239,3877],[3238,3879],3174,[3168,3112],3231,3168,3168,3169,[3233,3110],[3233,3303],[3234,3304],3176,[3176,3878],[3174,4070],[3176,4070],[3239,4073],3176,[3170,3303],[3233,3305],3234,[3234,2980],3174,3239,3175,[3233,3305],3170,3234,[3233,3045],[3240,3814],3941,3556,4006,[3176,4073],[3169,3305],3169,3233,[3231,3045],3174,3238,3239,3238,3238,3240,[3943,3302,9646],[3238,9835],[3175,3878,9836],[3240,4071],[3174,3879],3240,[3231,3303],[3168,3304],[3168,3305],[3170,9745],[3169,9746],[10033,9551],[3170,10125],[3168,10126],[3167,10127],[3234,3812,10128],[4005,10129],[3942,871],607,607,607,607,[3942,869],3941,3431,3944,3942,3942,[3168,3879],3231,[3233,3812],3941,4006,[3231,3945],3168,3231,3232,3167,[3232,3814],[3168,3749],[3234,3750],[3168,3751],[3232,3752],[3168,3815,9547],[4000,3303,9548],[3935,3304],[3935,3305],[4002,3236],3174,3173,3239,3174,[3935,3047],[4001,3045],3173,3238,[4001,3305],4001,[3935,3300],[4002,3304],3237,3174,[4001,3047],3935,3936,3937,3936,[4002,3044,9649],[3174,9650],[3167,9747,9647],3234,[3234,3110],3175,3175,3175,3174,3239,3238,[3240,3877],4005,[3240,4009],3174,3175,3239,3239,[3240,9553],[3239,9453],[3239,9456],9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,[3545,9923],[3546,8675],[3546,8676],[3610,8675],[3612,8676],[3611,8675],[3609,9928],8677,8678,8771,8774,8773,8677,[3228,9923],[3164,8675],[3228,3480,8676],[3612,8675],[3546,8676],[3548,9928],8678,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,[3164,9638],3164,3228,3163,3228,3164,3164,3228,3227,[3228,9832,9829],8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8869,8870,8869,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,[4013,869],4014,3563,4014,4011,3564,[4012,3952],[3949,3957],3498,4012,3562,3950,3948,[3948,3760],3953,4018,[3948,4085],4012,3564,4013,4013,3947,3948,3563,[3947,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4014,805],3564,3949,4012,4013,3500,3948,3499,4011,3562,3950,3500,3499,4012,3949,3949,4014,4012,3499,3949,4011,3500,3949,3562,[4013,871],607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,[3562,869],4011,3947,[4011,806],[3950,806],3950,3948,4012,3500,3499,[3950,806],[3563,806],[4011,806],[3949,806],3500,4012,4014,4011,3564,4014,[3950,806],[3947,806],[3947,807,9529],[4025,9530],3448,3577,4023,3578,3577,3959,4024,3512,3511,4023,3574,3576,3575,4026,3578,3512,3574,3575,3446,3575,3448,3577,3577,3574,3448,3575,3447,3446,3961,3578,3513,4023,3510,4024,3447,3448,3961,3962,3448,3578,3446,4025,3511,3578,3446,3578,3578,3577,4026,3446,3446,3447,4024,3449,4024,3512,3446,4026,4024,3577,3576,4023,4024,3578,3577,3577,3512,3511,3448,3577,3448,3511,4026,3961,3577,3446,3577,3447,4025,3576,4026,3447,4024,3578,4025,3447,3961,3446,3961,4025,4025,3961,3574,3446,3448,3512,3446,4026,4024,3578,4024,3575,3961,3960,3447,3577,3960,4025,3577,4023,4025,3577,4024,3575,4024,3446,3446,3576,3959,3448,4026,4026,3574,[4024,9646],[3937,9739],[4002,9740],4001,3486,3935,[3170,4003],3231,3169,[3231,3742],4002,4000,3938,4002,3618,3619,3936,3935,3935,3361,4002,[3169,4067],[3231,3807],[3233,3810],3170,3170,3233,3234,3168,[3170,3808],[3167,3743],4002,3552,4002,3935,[3231,3873],3232,3231,3170,3231,3167,3167,[3167,3998],[3168,4003],3234,[3231,3998],3486,3937,[3233,3874],[3234,3808],4000,3487,4000,4002,3936,3935,3938,4001,4000,4002,3938,3937,4002,3551,3936,3938,3936,[4000,9841],[4002,9933],[3999,9934],[3937,9937],10033,[3167,10125],[3168,10126],[3169,3871,10129],[4000,10223],[4000,10224],[3168,3939,10124],[3170,10127],[3234,10128],[3170,10129],[3167,10223],[3168,10224],[3168,10124],10028,10029,10030,10031,10032,[4001,9932],[4002,9836],4002,3938,[3239,3874],3238,3238,3176,[3176,3871],4000,4000,3935,[4000,9745],[4000,9746],[3238,9551],3238,3175,[3231,3111],[3169,3109],[3233,3301],[3169,3302],3240,3240,3176,[3170,3177],3231,3232,[3168,3172],[3174,4004],[3175,4009],3239,[3233,3112],3168,3232,[3232,3236],3238,3174,[3168,3304],[3232,3111],3234,3231,[3170,2980],[3233,3047],3168,3170,3234,3233,[3233,3109],[3233,3301],[3232,3302],[3234,3303],[3233,3304],[3168,3112],3170,3233,3169,[3231,3300],[3232,3301],[3232,3302],[3231,3111],3170,3168,[3169,2980],3174,[3240,4004],3494,4007,[3174,4009],[3231,3111],3167,3234,[3232,2980],3239,3175,3240,3176,3239,3176,[4006,3112],[4006,9742],9931,[3239,9932],[3176,9836],3175,[3168,3049],3231,3233,3169,[3233,9649],[3232,9650],[3234,10129,9647],[3232,10221],[3232,10222],[3169,10223],[3168,3876,10224],4008,[4006,935],607,607,607,607,[3944,933],4005,4006,3942,3944,[3231,4009],3233,3234,[3231,3876],3428,4006,3943,[3170,3816],3231,3231,[3168,3813],3943,3430,[4008,9357],[4008,9360],[3941,9547],[3935,9548],3938,4000,3937,[4001,3110],3237,3238,[3938,3301],[3936,3304],[3938,3111],[3937,3300],[3937,3301],[4000,3112],4001,4000,3936,3937,[3938,3300],[4002,3301],[4002,3111],3935,[3937,2980],[3938,3047],4000,[3937,3108,9745],[3239,9746],[3170,9743],3232,3231,[3167,3236],3176,3238,3175,3239,3238,3175,[3240,4004],3942,[3240,3753],3174,3238,3176,3176,3238,3239,[3173,9553],9554,9357,9360,0,0,9357,9358,9359,9360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8771,8771,8772,8771,8772,8771,10024,8773,8774,8774,8678,8677,8773,10019,8678,8677,8678,8677,8773,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,[3228,9734],3228,3164,3228,3227,3164,3227,3163,[3227,9832],[3227,9928],8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8677,8678,8677,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,8677,8678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9768,[607,9573],607,607,607,607,607,607,607,[3948,933],4012,3564,3499,3947,4013,[3950,4016],3954,[3562,3761],[4011,3827],4014,[4014,3826],[3949,3761],3953,4018,[3562,3891],3564,3564,3948,3947,3950,3436,4013,3948,[3499,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4012,805],3562,3562,3500,4014,3563,4011,4013,3564,4013,4013,3563,3949,3948,3948,3947,3564,3948,3564,3950,3949,4013,3562,3563,3436,[3564,935],607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,[3500,805],3949,3562,3948,3950,3947,3435,3947,3437,3437,4012,3564,3562,3947,3499,4012,4012,3562,3564,4012,4013,3499,[3499,8960],8961,[3446,8962],3510,3448,3577,3576,3577,3446,3959,4024,3959,4026,3448,3447,3448,3575,3578,4025,3962,3448,3446,3448,4026,3510,4023,3446,3576,3446,4024,3578,3959,4025,3576,3511,4025,3446,3511,4025,4023,3447,3448,3448,4023,3448,4024,3448,3447,3578,3577,3960,3446,3575,3960,3959,4026,3578,3960,3962,4025,3577,3510,3961,3577,3578,4023,3961,4026,3448,4024,3578,4026,3578,3448,3447,3447,3446,4023,3577,4023,3960,4024,4025,3577,3510,4023,3577,3448,4026,4025,3574,4023,3962,4025,3574,3577,3446,4024,3961,3578,3575,3511,3577,3447,3578,3960,4023,4023,3575,3959,4023,4024,3961,3578,3446,3961,3446,3959,3447,3960,3962,3447,4024,3447,3448,4025,[4026,9646],[4002,9643],[3938,9644],4002,4002,3937,[3170,3874],3232,3170,[3168,3998],3937,3935,4002,3999,3682,3683,3935,3936,4001,3936,4001,[3233,3743],4000,[3170,4003],3234,3234,[3232,3807],[3234,3743],[3170,3743],4002,3938,3488,3552,3551,[3169,4003],3234,3232,3234,3169,3169,3232,3170,[3168,4062],[3233,3874],3234,[3231,4062],[3234,4065],[3234,3873],[3231,3808],4002,3935,4000,3999,3937,4001,3937,3361,4001,3936,4001,4000,3935,4001,3936,4002,4000,[4002,9841],[3937,9937],10029,10030,10033,[3168,10129],[3170,10221],[3169,10222],[3234,3807],3936,3999,4002,[3233,3809,10223],[3168,10224],3233,3231,3232,3167,[3232,10124],[3170,3870,10125],[3935,10126],[3935,10127],[4000,10128],10028,[3935,9932],[3937,9836],[3176,4003],3175,3239,3175,3175,3174,[3176,3998],3938,3999,[3999,9649],[3935,9650],[3175,9647],3174,[3234,3112],3233,3168,3231,3167,[3234,3109],3174,3175,3239,[3234,3048],3232,[3169,3236],[3176,3877],[3174,3879],[3168,3241],3231,3233,3233,[3167,3300],[3232,3304],[3233,3305],3231,3232,3169,[3170,3045],3174,3240,[3167,2981],[3168,3047],3232,3231,3231,3231,3234,3167,3170,3232,3231,3170,3167,3170,3233,3169,3232,3233,3232,[3234,3300],[3167,3301],[3231,3302,3877],[3174,4072],[3238,4070],[3168,3241,3879],3232,3168,[3232,3046],3240,3175,3239,3238,3239,3239,[4008,3241],3944,[3944,9838],[4007,10027],10028,[3239,9739],[3176,9740],[3168,3177],3167,3170,[3231,2980],[3231,2981,9745],[3167,2982,9746],[3167,9647],3232,3233,3170,[3167,3940],3944,4008,[4008,807],607,[4005,805],[4008,806],3941,3944,3944,4007,4008,[3167,3880],3167,3167,[3170,3940],3943,4008,4006,4007,[3168,3750],[3231,3752],4005,3944,[4006,9547],[3176,9453],[3238,9456],[3239,9548],[3937,3177],4002,3938,4001,3938,[3937,3236],3174,[4000,2985],[3937,2980],[3935,2981],[4001,3047],3935,[3938,3045],[3935,2982],[3935,2983],[3937,2984],[3938,2985],4001,3999,[3938,3046],[3935,2981],3173,[4000,3241],4002,[3935,3172],[3176,9553],[3168,9457],3233,3170,[3170,3236,9357],[3239,9358],[3240,9359],[3239,9360],3239,3239,3174,[3239,3878],4005,3942,[3174,3750],[3240,3751],[3174,3752],[3238,3816],3174,3175,3174,[3239,871,9553],[607,9453],[607,9456],9457,9452,[4001,3881,9453],[3936,9454],[3999,3812,9455],[4005,9456],9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,[3228,9827,9830],3164,3163,3163,3227,3163,3227,[3227,9832],[3227,9928],8771,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8773,8774,8773,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,8773,8774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9863,9864,[607,9669],607,607,607,607,607,607,607,[4011,869],3564,3950,3500,[3500,3826],[3949,3828],[3950,4080],4017,4020,3954,[4014,3761],3953,4018,3440,[3564,4021],3947,3948,3948,3950,3499,3499,4014,[3563,815],[3500,870],[3947,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3562,869],3947,4011,3950,3564,3949,3563,3500,4014,4014,4012,3949,3562,4012,3949,3948,4012,3562,4011,3949,3950,3947,3564,[3562,815],[3949,870],[3947,999],607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,[3562,805],[3949,806],3562,3950,3947,4012,3500,3948,4014,3562,3564,3500,3562,3563,3499,3498,4014,3562,3564,3499,4014,4013,3499,3562,[3564,9056],9057,[4025,9058],3578,4023,3448,3511,4026,4025,3447,4024,3446,4025,4026,4023,3512,4025,3577,3511,4023,3962,3578,4026,3577,3447,3959,3448,4024,4025,3578,3448,3510,3448,3960,3446,3960,4025,3448,3448,3447,3448,3512,3959,3577,3447,3448,3446,3447,3577,3574,3510,3512,3578,3959,3448,4025,4023,3446,3446,3448,4023,3577,3960,3576,4025,4023,3960,3578,4026,3578,3578,3446,3574,3574,3446,3446,3448,3578,3961,3511,3959,3446,3446,3447,3510,4026,3510,3513,3448,3961,3578,3578,4026,3447,3577,3447,4023,3578,3448,3512,3574,3577,3511,4026,3448,3961,3448,3961,4026,3574,3446,3510,3448,3959,4024,3578,4025,4023,3962,3510,4025,4023,3447,4024,4025,3575,[3448,9823,9646],[4001,9739],[3552,9740],4001,3935,[3234,3874],3232,3168,[3232,3742],4002,4000,3938,3938,4000,3937,4002,4002,3935,3935,3936,4002,3486,4001,4001,[3168,3809],[3232,3742],4002,3937,3552,3999,3935,4002,3486,4002,[3169,4003],3169,3234,3233,3233,3234,3231,3233,3233,[3167,3807],[3231,3744],[3232,3744],[3232,3745],[3231,3746],4000,4000,4001,3999,3936,3999,3937,4001,3938,4002,4000,3936,3936,3935,3935,3937,3937,[3999,9841],[4000,9937],10033,[3170,10125],[3170,10126],[3936,10129],[3233,3744],[3170,3745],[3169,3746],4000,3616,3617,3937,4000,[3167,3743],[3169,3809],3232,3234,3167,3168,[3167,3934,10221],[3935,10222],[3936,10223],[3999,10224],[4001,10124],[10028,9550],[3238,4066,9643],[3174,4067,9644],3175,3175,3240,[3174,3742],[3238,3743],4002,4002,4001,[4000,9745],[3999,9746],[3174,9647],[3231,3241],3231,3169,3168,[3169,3046],[3233,2981],[3231,3048],[3167,3300],[3231,3303],[3234,3304],[3168,3305],3231,[3232,3300],[3233,3301],[3231,3304],[3233,3305],3234,3232,3167,3170,3167,3169,3169,3167,[3169,2980],3175,3176,3238,3238,3239,[3233,2981],[3233,2982],[3168,2983],[3231,2984],[3168,3048],3169,3233,3233,3232,3231,3232,[3231,3046],[3232,2981],[3167,2982],[3234,2983],[3234,2984],[3168,2985],3231,3232,3233,[3232,3110],[3234,3304],[3170,3305],3169,3233,[3170,3044],3238,3240,[3175,9552],3174,3238,[4008,3303],[3944,3305],3428,3944,3943,[4008,10124],[3176,9835],[3176,9836],3175,[3233,3048],[3231,3045],3174,[3238,9841],[3174,9842],[3231,9647],[3231,3813],[3234,3750],[3234,3752],4007,3943,4006,3942,[4007,806],3942,4007,4005,3559,3944,[3943,815],[3232,3879,870],[3232,998],[3234,934],[3233,816],[3232,4004],4005,3943,3942,3944,3941,3944,4007,[3943,9550],[3238,9739],[3240,9740],[3935,3303],[4000,3304],[4002,3305],4001,3936,[3935,3046],[3999,2981],3173,3238,[4000,3111],[4000,3044],3238,3174,[3937,2981],3238,3237,3173,3175,[4000,3241],3425,4000,[4001,3109],[3935,3303],3237,3174,[3937,3047],[4002,3109],[4000,3305],[3936,9553],[3232,9554],[3170,9452],[3240,9453],[3999,3304,9454],[3238,9455],[3240,9456],[3176,9457],3238,3240,3176,[3239,3877],4005,3558,4006,[3238,4070],[3239,3880],3239,3239,3238,[3240,871],607,607,[607,9553],[4005,869,9548],[4001,3881],3936,[3999,3812],3941,[4005,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,[3227,9923],[3163,8675],[3164,8676],[3164,8675],[3227,8676],[3164,8675],[3164,8676],[3227,9928],8771,8774,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8869,8870,8869,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,8869,8870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[9959,9477],[607,9960],[607,9765],607,607,607,607,607,607,607,[4014,933],4012,4013,3434,[4013,3824],[3562,4021],4013,[3499,4016],4018,[3499,4083],[3947,4084],[3563,4083],[3950,4085],[4012,4016],3954,[4011,3827],3563,4011,4013,3950,4011,3947,[3948,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3948,933],[3948,815],[3947,870],[3947,1001],[3562,1002],[3950,1003],[4011,1004],[3950,1005],[4012,934],[3500,816],3562,3564,4011,3500,4012,3948,4014,[3564,815],[3950,870],[4014,1002],[4014,1003],[3950,1004],[4013,1005],[3947,999],607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,[3562,869],3499,3563,3562,3948,3949,4014,4013,3950,3434,3947,3948,3500,3950,3947,3949,3948,3949,3563,3500,4014,4013,4012,3499,[3500,9152],[3447,9153],[3576,9154],4024,3577,3578,4023,4026,4025,3578,3446,4023,3448,3511,4026,3578,4025,3577,3446,3446,4024,3575,3962,3960,4024,4026,3448,4025,4024,3574,4023,3447,3577,3512,4026,3962,3448,3448,3448,3512,4025,4026,3578,3446,3447,4026,3575,3577,3446,3446,3512,3446,3511,3961,3960,4024,4024,3447,3447,4024,4025,4026,3961,4024,4025,3448,3447,3960,4023,3446,3576,4025,4026,3447,4025,3578,3510,4026,4024,3577,3575,3575,3578,3575,3446,3959,3962,3574,3510,3961,3576,4026,3577,4023,3448,3448,3574,3446,3510,3446,4023,4026,3577,3512,3960,3578,3961,3960,3510,4025,4024,3446,3576,3448,3510,4025,3447,4024,4024,3575,4024,3446,3447,3510,4024,[3447,9823],[3577,9919,9646],[3999,9835],[4001,9933],[4001,9934],[3167,4003,9836],3233,3168,[3232,3742],4002,3999,4002,4001,4001,3937,3936,3999,4000,3935,4000,4002,4000,3935,4002,3936,4001,4000,4000,3936,3935,3999,3999,3936,3935,3488,3999,[3234,3747],3233,3169,3233,3168,3170,3234,3167,[3231,3998],4000,3552,3487,3936,3936,3935,3935,3618,3619,4000,3999,4002,4001,3999,4001,3937,3935,3938,4000,3999,[3938,9745],[4002,9746],10033,[3170,10129],[3234,10221],[3232,10222],[3169,3871],4002,4002,3938,[4001,9552],3680,3681,[3361,9549],3999,3936,3938,[3232,3810],3168,3233,3233,[3168,3871],3999,3486,3936,3935,[3938,10124,9646],[3238,9739],[3239,9740],3174,3175,3174,[3176,3998],3936,4000,3938,4000,[4002,9841],[3937,9842],[3238,9647],3176,[3170,3047],[3234,3046],[3231,2981],3176,3238,[3231,3112],3234,3232,3231,3167,3169,3231,3169,3232,3233,3231,3168,3233,[3232,3045],[3234,2982],[3234,2983],[3234,2984],[3167,2981],3238,3176,3238,3240,[3238,3814],[3238,3750],[3238,3752],[3175,3816],3176,3174,3174,[3169,3047],3169,3232,3167,3233,[3232,2980],3239,3238,3175,3240,3174,3239,[3168,2981],[3234,3047],3233,3233,3167,3169,3232,3168,[3231,3172],3239,3174,[3175,9648],[3240,9551],[4007,3111],3944,3943,3941,4006,3941,4007,9931,[3239,9932],[3175,9933],[3238,9934],[3174,9935],[3176,9936],[3176,9937],9938,[3169,9743],[3167,3812],3942,4006,3944,3943,3942,3942,3942,4007,3944,3942,3942,3943,[4006,871],607,607,607,[3234,997],[3233,4004,998],[4008,934],[3941,816],4006,4006,3943,3941,4006,[3943,9646],[3175,9739],[4000,3111,9740],3614,3615,3935,4002,3937,[3935,3236],3240,3240,[3999,3241],3938,[3938,3172],[3239,815],[3238,870],[3176,998],[3176,998],[3175,998],[3240,934],[3239,816],3238,[3999,3048],3938,4001,3938,[3935,3300],3237,[3936,3241],3937,3938,[3938,3172],[3240,9553],[3175,9548],[3937,3111],3489,[3938,3109],3240,[3238,9553],[3238,9554],3174,3174,[3175,3748],3941,3495,3942,[3176,3753],3176,3239,3239,3239,[3175,871],607,607,607,[4005,869],[4001,3881],4000,[3938,3940],4007,[3941,9649],[4005,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,9059,9060,9061,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10024,8774,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,10021,10020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,10055,9573],607,607,607,607,607,607,607,607,607,[4012,869],3948,3562,3499,[3948,3952],3954,[3563,3761],3953,[3564,4021],3563,4013,4013,4012,[3947,3890],4017,3954,[4013,3828],3563,3948,3950,3563,4013,[3949,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3499,997],[4014,999],607,607,607,607,607,607,607,[3947,997],[4013,1001],[4014,1002],[3947,1003],[4014,1004],[3499,1005],[3947,1004],[3948,1005],[4013,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,[3562,933],4011,4014,3948,4014,3950,3499,3949,4013,3950,4013,4013,3949,3499,3564,3499,4014,3949,3498,4013,3564,4013,3950,3947,[3562,9532],[3448,9625],[3446,9626],3510,4023,3578,3575,3448,3511,3446,3511,3961,3574,3575,3576,3448,3578,3448,3447,3578,3578,3576,4023,4025,3447,3446,3511,3578,3578,3447,4025,3960,4025,4025,3448,3574,3446,3448,4026,3959,3574,4026,4025,3962,3576,4024,3961,3512,3577,3576,3510,4023,4025,3448,4023,3448,4024,3578,3577,3959,3448,3578,3446,3447,4025,3448,3511,3447,3961,3577,4023,3512,3962,3576,3446,3446,4025,3446,3446,3511,3574,3574,3577,3576,4026,3448,3577,3578,3959,4025,3446,3447,4025,3449,3962,3512,3447,3446,3959,4025,4023,3578,4025,3513,3446,4025,4023,3578,3575,3962,3448,3961,3578,3578,3575,4026,4026,3448,4024,3448,[3575,9823],[4024,9915],[3959,9916],[3959,9915],[4025,9916],[3576,9919],[10015,9742],9931,10029,10030,[3999,9932],[3169,3743,9836],[3233,3743],4000,3937,3487,4002,3937,3937,3936,3999,4002,3937,4002,3935,4001,3938,3938,3552,3938,3936,4001,3488,4000,3938,3935,3999,4002,3999,4000,3935,4001,[3231,3809],[3167,3807],[3234,3809],3170,3167,3234,3168,[3168,4062],3936,3487,3938,3486,3999,3486,4001,3682,3683,3938,3937,4001,4002,4002,4001,3938,3935,3618,3619,4001,[3937,9649],[3936,9650],[3170,10129,9551],3167,3233,3168,3167,[3233,3806],3999,3999,[3936,9648],[3614,9551],[3615,9550],[4001,9645],3999,3937,3936,[3168,3811],3233,3167,3232,3233,[3231,3998],3938,3936,3999,[3938,9452],[3174,3745,9548],[3239,3746],[3238,3747],3176,[3238,3807],3618,3619,4002,4000,[3552,9841],[4000,9937],9938,[3240,9743],3176,3238,3174,3175,3175,[3168,3241],3170,3231,3231,3168,3167,3169,3231,3234,3169,3231,3232,3234,[3231,2980],3174,3176,3239,3238,3174,3175,3174,3238,[3176,3748],3941,4006,4005,3942,[3239,3815],3240,3174,3176,[3170,2981],[3234,2982],[3232,2983],[3234,2984],3175,3176,3238,3176,3240,[3175,9841],[3176,9933],[3239,9934],[3176,9836],[3170,2982],[3231,2984],[3233,3047],3231,3231,[3234,3045],3240,3240,[3240,9841],[3239,9842],[3943,3305,9647],3942,4006,3944,3944,3559,3942,4008,[4005,10027],10028,10029,10030,10031,10032,10033,[3167,3816,10034],[3234,9839],[3169,3940],3944,4007,3943,3430,4005,3941,3941,4006,4005,3941,4005,3941,[4008,935],607,607,607,607,607,607,[3943,869],3944,3944,4008,4006,3941,[3944,9646],[3174,9835],[3936,3047,9836],3678,3679,[4002,3045],[4001,2981],[3999,3048],[3999,3109],3237,3238,[3935,3305],3937,[4000,3109],[3240,935],607,607,607,607,607,[3240,869],3238,[3999,3241],3938,3936,3937,[3935,2980],3173,3174,[3936,3047],3935,[4001,3236],3240,[4000,3241],[3937,3046],[3937,3048],3935,[4000,3236],[3240,9649],[3174,9650],[3240,3813,9551],[3239,3749],3941,4006,[3238,4071],4005,[3238,4009],3239,3240,3240,3239,[3240,935],607,607,607,[3944,869],[3938,3945],[3935,3813],3943,4006,[4007,9745],[4005,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10116,10117,10116,10117,10116,10117,10116,10117,10116,10117,10116,10117,10116,10117,10116,10117,[9330,10116],[3978,9331,10117],[3913,9332,10116],[3914,9333,10117],[3914,9431,10116],[3913,10117],[3914,10116],[3978,10117],[3977,10116],[3913,10117],[3913,10116],[3913,10117],[3978,10116],[3913,10117],[3913,10116],[4097,3979,10117],[4097,10116],[4097,10117],[4097,10116],[4097,3974,10117],[3914,10116],[3914,10117],[3977,10116],[3977,10117],[3978,9155],[3913,9156],[3978,9157],[3913,10117],[3977,10116],[3978,10117],[3978,10116],[3913,10117],[3978,10116],[4097,3979,10117],[4097,10116],[4097,3974,10117],[3914,10116],[3977,10117],[3978,10116],[3913,10117],[3913,10116],[3914,10117],[3977,10116],[3914,10117],[3913,10116],[3977,10117],[3914,10116],[3913,10117],[3914,10116],[3914,10117],[3913,10116],[3977,10117],[3977,10116],[4097,3979,10117],[4097,10116],[4097,10117],[4097,3974,10116],[3978,10117],[3913,10116],[3977,10117],[3978,10116],[3977,10117],[4097,3979,10116],[4097,10117],[4097,3974,10116],[3914,10117],[3977,10116],[3913,10117],[4097,3979,10116],[4097,10117],[4097,10116],[4097,10117],[4097,3974,10116],[3914,10117],[3978,10116],[3913,10117],[3977,10116],[3914,10117],[3914,10116],[3913,10117],[3977,10116],[3978,10117],[3913,10116],[3914,10117],[3913,10116],[4097,3787,10117],[4097,10116],[4097,10117],[4097,10116],[4097,10117],[4097,10116],[4097,3974,10117],[3978,10116],[3914,10117],[3978,10116],[3914,10117],[3914,10116],[4097,3979,10117],[4097,10116],[4097,3974,10117],[3914,10116],[3914,10117],[3977,10116],10117,10116,10117,10116,10117,10116,10117,10116,10117,10116,10117,10116,10117,10116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,[4013,933],3563,3948,3949,[4013,4080],4017,3570,4018,[3948,4085],3500,3499,3437,3947,4014,[4014,4080],4017,[3562,4021],3500,3563,3949,3564,3562,4011,[4011,807],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,[3563,997],[3947,1003],[4011,1004],[3562,1005],[3564,934],[3563,816],3435,3564,4012,3948,3499,3500,[3564,815],[3499,870],[3499,1001],[3950,1002],[3563,1003],[3949,934],[4011,816],3499,4012,4011,3499,[4012,815],[3499,870,9628],[3510,9721],[3448,9722],3447,3446,4026,3575,3961,4024,3510,4024,3448,3511,3577,3512,3447,3447,3961,3512,3447,4023,3578,3510,3510,3577,3576,4024,3959,4026,3448,3577,3961,3447,3512,4026,3577,4024,3576,4026,4025,3574,3448,3446,3962,3578,3510,4024,3577,4024,4026,4023,4026,3577,3446,4024,3578,3959,3577,3962,3578,3448,3448,3576,3575,3578,3510,3447,3448,3578,4024,3512,3962,4026,3448,4025,3959,3448,4023,4026,3449,4024,3578,3574,3577,4023,3574,3448,4025,3447,3960,4023,3512,3959,3447,3962,3578,3961,4024,3962,3510,3640,3641,3577,4026,4026,3511,3446,3447,3578,4024,4024,4023,3510,3447,3574,3578,4025,[3960,9823],[3447,9917],[3511,9918],[4026,9919],10011,10012,10011,10012,10015,[10111,9838],10027,10125,10126,[10028,9550],[3937,9739],[4002,9740],4000,3487,3935,3487,3937,4001,4000,4000,3938,4002,3938,3935,4000,3937,3936,3936,3937,4001,4000,3936,3936,4000,3935,3999,4002,3999,3486,3488,4000,[3169,4003],[3233,3998],4001,[3168,3743],[3169,3744],[3231,3745],[3233,3746],[3233,3746],4000,4000,3999,4002,4001,4000,4002,4002,4000,4000,3936,4000,4002,4002,3361,4001,3938,3682,3683,3938,[3999,9745],[3937,9746],[3234,9647],3234,3233,3232,3231,[3170,3870],3938,[4000,9841],[4000,9842],[3678,9647],[3679,9646],[3935,9835],[3938,9836],4000,4001,[3234,3939],3167,3233,3233,3232,[3234,4062],[3170,4063],[3232,4064],[4002,9547],[3935,9548],3999,3935,[3238,3811],3176,[3238,4062],3682,3683,4000,[3937,9649],[3552,9650],[10033,9551],[3240,10034],[3176,9839],3174,3175,3239,3175,[3239,9549],3238,[3233,2981],[3170,2982],[3234,2983],[3233,2984],[3234,2981],[3170,2982],[3231,2983],[3233,2984],[3233,3047],3232,3168,3231,[3234,3109],3175,[3174,3813],[3238,3749],[3239,3815],[3239,3813],[3240,3750],[3175,3751],[3175,3752],3431,4006,[3238,4073],[3240,4068],4005,3942,[3176,3816],3240,3174,3240,3174,3176,3174,3238,3238,3175,3240,[3238,9841],[3238,9937],10029,10030,[3240,9932],[3238,9836],3239,3175,[3170,2982],[3169,2984],[3239,9841],[3176,9935],[3175,9936],[3239,9937],9938,[3942,9743],3942,3942,3943,3943,3941,4006,3943,3942,[4007,10124],[4006,10125],[4006,10126],[4006,10127],[4005,10128],[3943,10129],4007,[3167,3749],3943,3942,3943,3941,4005,[4007,815],[3941,870],[3943,1001],[3944,1002],[4006,1003],[3941,1004],[4007,1005],[3943,998],[4006,999],607,607,607,607,607,607,[3944,933],3942,3943,3429,4005,4008,[3169,3879,9742],9931,[3176,9932],[3936,2981,9836],[4002,3048],[3937,3109],3237,3174,[3935,2981],3173,[3936,3241],3935,3936,3936,[3938,3044,871],607,607,607,607,607,[3238,933],3239,3174,[3935,3048],3936,3937,[4000,3300],[4000,3301],3237,3174,[4001,3048],[3936,3109],[3936,3304],[3938,3305],[3937,3236],[3936,3241],[3938,3045],3175,[3240,9745],[3174,9746],[3175,3877,9743],[3239,4070],[3238,4069],[3240,3879],3174,[3176,4068],[3174,3880],[3176,815],[3238,1001],[3238,1002],[3174,1003],[3174,1006],607,607,607,[4006,933],[4002,4009],[4001,4068],4005,4007,[3942,9841],[4005,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10212,10213,10212,10213,10212,10213,10212,10213,10212,10213,10212,10213,10212,10213,10212,[9425,10213],[3978,9426,10212],[3977,9427,10213],[3914,9428,10212],[3977,9429,10213],[3978,9521,10212],[3977,10213],[3913,10212],[3978,10213],[3913,10212],[3913,10213],[3913,10212],[3978,10213],[3977,10212],[3913,10213],[3914,10212],[4097,3979,10213],[4097,10212],[4097,10213],[4097,10212],[4097,3782,10213],[3913,10212],[3914,10213],[3913,10212],[3913,10213],[3978,10212],3978,[3913,10212],[3978,10213],[3978,10212],[3914,10213],[3914,10212],[3914,10213],[3914,10212],[4097,3787,10213],[4097,10212],[4097,3782,10213],[3977,10212],[3978,10213],[3978,10212],[3978,10213],[3914,10212],[3913,10213],[3978,10212],[3978,10213],[3978,10212],[3913,10213],[3977,10212],[3913,10213],[3913,10212],[3913,10213],[3914,10212],[3914,10213],[3978,10212],[4097,3787,10213],[4097,10212],[4097,10213],[4097,3782,10212],[3914,10213],[3978,10212],[3977,10213],[3913,10212],[3913,10213],[4097,3787,10212],[4096,10213],[4097,3782,10212],[3914,10213],[3913,10212],[3913,10213],[4097,3979,10212],[4097,10213],[4097,10212],[4097,3783,10213],[3976,10212],[3978,10213],[3914,10212],[3914,10213],[3978,10212],[3913,10213],[3977,10212],[3913,10213],[3914,10212],[3914,10213],[3913,10212],[3913,10213],[3913,10212],[4097,3915,10213],[4097,10212],[4097,10213],[4097,10212],[4097,10213],[4097,10212],[4097,3782,10213],[3977,10212],[3914,10213],[3977,10212],[3914,10213],[3978,10212],[4097,3787,10213],[4097,10212],[4097,3782,10213],[3913,10212],[3913,10213],[3914,9526,10212],[9527,10213],10212,10213,10212,10213,10212,10213,10212,10213,10212,10213,10212,10213,10212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9768,[607,9573],607,607,607,607,607,607,607,607,[4013,805],3949,3564,3947,3949,[4013,3826],3953,3505,[3949,4021],3950,4013,4013,3499,4011,3499,3563,[3948,4016],3440,[4014,3828],4012,3563,4014,4014,3563,[4013,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,[4013,869],3562,3564,3947,[4013,815],[3948,870],[3500,998],[4011,999],607,607,607,607,607,[4013,869],3563,4013,4011,4012,[3950,871],[607,9628],[4024,9817],[3448,9915],[3961,9916],[3578,9818],4024,3511,3642,3643,3961,3447,3447,3577,3446,4025,3447,3578,3510,4026,3577,3960,3578,4023,3448,4024,3961,3578,3960,4024,4023,3512,4026,3962,3510,3512,3447,3577,4025,4023,3577,4025,3578,3446,3959,3575,3512,3574,3447,3577,3446,4023,3959,4023,3961,3448,4025,3448,3961,4023,4023,3577,3577,4025,3578,3447,3446,3577,3575,3960,3576,4025,3962,4024,3448,3448,3448,3510,3578,3576,3448,3447,3447,3576,3446,4023,3962,3959,3959,4023,3578,3575,4024,3578,4023,3448,4025,3448,3446,4025,3959,3704,3705,3576,3447,3959,4023,3446,4026,3578,3578,3447,3447,3575,3578,3448,3575,[3578,9823],[3578,9919],10013,10014,10015,10107,10108,10107,10108,10111,0,0,10221,10222,[10124,9646],[4001,9643],[4001,9644],4001,4000,3486,3488,4002,4001,3937,3938,3936,3935,4000,4001,3999,3935,3935,3937,3999,3935,3936,4002,4002,4001,4002,3936,3999,3551,3937,3935,3999,4001,4002,4001,4002,4001,3938,3425,4002,4000,3999,4000,3936,3936,3935,3935,3938,3938,4001,3936,4000,3935,3935,4001,3937,3938,3937,3999,4000,[3938,9841],[4001,9842],[3167,9647],3168,3170,3232,[3168,9841],[3170,3934,9933],[3999,9934],[4001,9937],9938,[3935,3748,9743],[4002,3749,9742],9931,[3936,9932],[3938,9933],[4002,9934],[3170,3873,9836],3168,3167,3168,3170,3232,3167,[3170,9550],[3233,3871,9643],[4000,9644],4000,3937,[3175,3875],3240,3238,[3238,3806],3935,3999,[3938,9649],[4001,9650],[3238,10129,9647],3240,3174,3238,3176,3176,[3174,9550],[3239,9645],3175,3238,3175,3174,3239,3239,[3239,3814],[3175,3750],[3174,3752],[3239,3815],[3232,2981],[3231,2985],3170,3232,[3233,3236,3748],3941,3556,3942,[3941,9841],[4006,9933],[3176,4072,9934],[4005,9836],4006,[3175,3880],3174,3240,[3240,4068,9841],[3174,4071,9933],[3240,3880,9934],[3238,9935],[3240,9936],[3239,9836],3174,3175,3238,3239,[3238,9841],[3240,9935],[3174,9936],[3174,9937],10033,[3944,10125],[4006,871,10126],10028,[3176,9932],[3174,9933],[3239,9934],[3239,9935],[3176,9936],[3174,9937],10031,10032,10033,[3941,10034],[4005,9839],3941,3942,4007,3943,3942,4008,3943,4005,4005,[4005,10221],[4006,10222],[4005,10223],[4007,10224],3941,4007,3944,3942,3944,4007,3942,4006,[4006,871],607,607,607,607,607,607,607,607,607,607,607,607,607,[3943,805],3942,4005,3944,3942,4006,[3234,3817],[3169,9838],[3170,10027],[10028,9550],[3174,9643],[4000,3049,9644],4000,[3937,3110],[3938,3304],3237,3238,[4002,3111],4001,3936,4001,[3999,3108],[3240,807],607,607,607,607,[3238,997],[3240,998],[3174,934],[3239,816],[3935,2982],[3938,2984],[4002,3047],3361,[3936,3109],3237,3174,[4002,2981],[3936,2981],[4000,2981],3173,[3937,3241],[3938,3300],[3935,3301],3239,[3174,9553],[3175,9554],3238,3239,3176,3239,3239,3176,[3240,871],607,607,607,607,607,607,[3943,805],4007,[3936,3880],3935,[3938,4004],[3942,9841],[4005,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3977,9521],3914,3978,3913,3978,3978,3977,3977,3913,3913,3914,3913,3914,3914,3914,3911,[4097,3850],4097,4192,4097,[4097,3846],3913,3978,3914,3978,3914,3913,3914,3913,3913,3978,3914,3914,3914,[4097,3851],4097,[4097,3846],3977,3914,3914,3914,3914,3977,3977,3913,3914,3913,3913,3914,3977,3977,3977,3914,3977,[4097,3851],4097,4096,[4097,3846],3914,3913,3913,3978,3977,[4097,3851],4097,[4097,3846],3978,3977,3911,[4097,4043],4192,[4097,3718],3976,3977,3913,3977,3977,3978,3978,3914,3978,3977,3978,3977,3913,3978,[4097,3979],4192,[4097,3783],[4097,3723],4097,4097,[4097,3846],3978,3978,3977,3914,3914,[4097,3851],4192,[4097,3846],3913,3978,[3978,9622],[3977,9623],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9863,9864,[607,9669],607,607,607,607,607,607,607,607,[4014,869],3563,3500,[3499,3760],[3950,3761],3953,4018,[3950,4081],[4012,3891],3563,3948,3563,4012,3947,3947,3499,[3499,3890],4017,3954,[3948,3828],4014,3950,3947,3947,[3499,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4014,805],[4012,806],[3949,807],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,[4013,933],3499,3499,4011,[4012,935],607,607,607,607,607,607,607,607,[3949,933],3564,3563,3437,3563,[3563,935],[607,9724],9913,10011,10012,[3446,9914],[3447,9818],3447,3706,3707,3446,3448,3448,3511,3448,4024,4025,3510,3446,3448,3574,3962,3574,3446,3961,4024,3578,3960,3513,3447,3960,4023,4026,3577,3578,3577,4025,3511,4024,3959,4023,4024,3510,3446,3448,3577,4025,3577,3960,3448,3578,3447,3575,3447,4026,4025,3576,3577,3510,3578,4026,3577,3959,3578,3511,3448,4023,3576,3447,4026,4023,3446,3577,4026,3510,3962,4026,3578,3446,4025,3961,3512,3449,4024,3511,4023,3447,3578,4023,3511,3576,3575,3510,4024,4026,3959,4024,3448,3960,3512,3446,4024,4026,4023,3961,4024,3578,3446,4024,3447,3576,4024,3576,3447,3511,3577,[3512,9631],[4024,9632],[10015,9533],10109,10110,10111,10203,10204,10203,10204,0,0,0,0,0,9646,[3935,9739],[3938,9740],3486,3488,3937,3935,3361,4002,4001,4001,3935,3935,3999,4001,4000,3937,3935,4002,3938,4000,3937,4000,3999,4001,3935,3936,3999,4001,4000,3935,3935,3936,4001,3938,3935,3999,4000,3999,4001,4000,3937,4001,3937,3999,4002,3937,3935,4002,4000,3936,3935,3935,3936,[3231,4065],[3232,4066],4001,[4000,9841],[3938,9933],[3937,9934],[3935,9937],9938,[3168,9743],3232,3232,[3170,9841],[3168,9937],10029,10030,10033,[3936,3813,10034],[4005,9839],[4006,9838],[3942,10027],10028,10029,10030,[3170,9835],[3167,9836],3233,3170,[3234,3808],[3168,3744],[3232,3745],[3232,3746,9646],[3936,9739],[4002,9740],3938,4002,[3176,3939],3174,3239,[3240,3934],4001,4000,[4000,9745],[3938,9746],[3174,9647],3239,3239,3238,[3941,3303],[3942,3304],[4006,3305,9646],[3240,9835],[3175,9836],3240,3239,[3239,9841],[3175,9836],3239,[3239,4004],3493,3557,[3238,4009],3176,[3169,3241],3169,[3234,3045],[3239,4004],4006,[3239,4069],[3239,4072,9841],[3240,4070,9937],10029,10030,[3176,4068,9932],[3175,3879,9836],3175,3174,[3239,9841],[3176,9937],10029,10030,10031,10032,[3239,9932],[3240,9836],3238,3174,[3176,9841],[3176,9937],10031,10032,10033,[4005,10129],[3430,10221],[3941,871,10222],[607,10124],10028,10029,10030,10031,10032,10033,[4008,10127],[3943,10128],[4008,10129],4007,4008,[4008,815],[3942,870],[4007,998],[4005,998],[4007,934],[4006,816],3622,3623,4008,3944,4006,3941,3944,4006,3942,4008,3943,4006,3430,3944,[3168,4071],[3170,4072,935],607,607,607,607,607,607,607,607,607,607,607,607,607,[3944,869],4006,4005,3943,4006,4005,[3167,3945],3168,3170,[3170,10124,9646],[3238,9739],[4002,3113,9740],3936,[3938,2980],[3937,2981],3173,3174,[4000,3047],3937,4000,3999,[3935,3172],[3176,871],607,607,607,607,607,607,607,[3174,869],3240,3173,3175,[3935,2981],[3938,3048],[3999,3109],[4002,3302],3237,3239,3238,3237,3174,[3938,2985],3935,[3937,3300],[3176,9745],[3174,9746],[3239,9551],3175,3240,3239,3174,3240,[3174,935],607,607,[3943,805],[3943,806],[3941,806],[4008,806],4007,[4002,3817],4002,[4000,3813],[3941,9649],[4005,9650],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[3914,9616],[3914,9617],3913,3977,3913,3978,3913,3978,3913,3978,3913,3978,3978,3913,3978,3914,[4097,3979],4097,4097,4097,4097,[4097,3910],3977,3913,3977,3978,3914,3977,3913,3913,3977,3914,3913,3914,3914,[4097,3915],4097,[4097,3910],3977,3914,3978,3913,3977,3914,3978,3914,3913,3977,3978,3978,3914,3977,3978,3978,3977,[4097,3915],4097,4097,[4097,3910],3913,3978,3978,3977,3978,[4097,3915],4097,[4097,3910],3978,3911,[4097,3849],4097,4097,[4097,3974],3978,3978,3977,3978,3914,3978,3978,3913,3914,3914,3978,3978,3977,3911,[4097,3849],4097,[4097,3974],3975,[4097,3785],4097,[4097,3910],3914,3978,3914,3913,3978,[4097,3915],4097,[4097,3910],3978,3977,[3914,9718],[3978,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[9959,9477],[607,9960],[607,9765],607,607,607,607,607,607,607,607,[3562,933],4011,[4011,3825],3953,4018,[4011,4081],[3562,3891],3628,3629,4014,4012,3564,3950,3500,3500,3562,3949,[4013,3890],4017,[4012,4021],3500,[4013,815],[3499,870],[3949,998],[3500,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4011,869],3500,[3500,871],607,607,607,607,[4013,805],[4011,807],607,607,[4014,805],[3948,806],[4014,807],607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,[4014,997],[3562,998],[3947,998],[3947,998],[4014,999],607,607,607,607,607,607,607,607,[3950,869],3500,3563,[4012,815],[3948,870],[4011,999],[607,9820],[607,10009],[607,10107],[607,10108],10010,[4023,9914],[4026,9818],3446,3449,3512,4025,4023,3447,4024,3578,3577,3513,3448,3447,3959,3962,3578,3446,3577,3575,4025,4026,3578,3574,3959,3446,3447,3577,3510,3577,3578,3578,3575,3577,3448,3447,3578,4023,4025,3512,3961,4024,4025,3448,3446,3446,3449,3575,3578,3577,4024,3962,4023,3577,3577,3446,4023,3577,3578,4023,3962,3577,3513,3959,3578,3510,3575,3577,3960,3576,4026,3575,4023,3574,3577,3575,3447,3962,3510,3574,4025,3578,4024,4025,3959,4024,4025,3960,4024,3577,3574,4026,3577,4024,3447,3511,4024,3512,3961,3448,3959,3511,4026,3448,4026,4025,3576,3446,3448,3447,[3577,9727],[3447,9728],[10111,9629],10205,10206,0,0,0,0,0,0,0,0,0,0,9646,[3486,9835],[4002,9836],3999,3936,3488,3937,3936,3937,3938,3938,3999,3938,3425,3936,3938,3938,3937,3935,3936,4001,3999,4001,3936,3936,4000,[3238,3874],[3174,3998],3937,4001,3938,3936,4000,3936,3938,4002,4001,3936,3938,3938,3937,3937,3937,4001,3937,3999,4002,4000,3999,3938,[4000,9841],[3999,9933],[3936,9934],[3169,3873,9836],3170,3169,[3167,3871,9841],[3937,9937],10029,10030,10033,[3169,3939,10034],[3170,9839],3233,[3167,9841],[3232,9937],10033,[3941,10125],[3941,10126],[4005,10129],3558,3492,3493,3492,[3942,10124],[3943,10125],[4008,10126],[9931,9550],[3170,9643],[3167,9644],[3231,3808],3936,3361,3999,[4000,9547],[4001,9548],3936,3938,3936,4002,[3175,3809],3240,[3175,3871],4000,3935,[3999,9841],[3938,9842],[3175,9647],3176,[3944,3304],[3942,3112],4008,4006,[4008,9742],9931,[3176,9932],[3174,9933],[3240,9934],[3239,9937],[3239,9932],[3240,9933],[3239,4068,9934],[3176,4071,9935],[3174,4071,9936],[3174,3879,9836],3176,3240,[3168,2981],3174,[3175,4004],[3174,3817],[3240,9841],[3238,9937],10033,[3168,10125],[3233,10126],10028,[3238,9932],[3175,9935],[3174,9936],[3174,9937],10033,[3942,10125],[4007,10126],[4006,10127],[4006,10128],10028,[3238,9932],[3174,9933],[3239,9934],[3240,9937],10033,[3232,3812,10127],[3942,10128],[4006,10129],3944,3941,[4005,935],607,[3944,869,10124],[4005,10125],[4005,10126],[3941,10127],[4009,10128],[3167,10129],[3233,3878,10223],[3943,10224],3943,3944,3941,[3941,871],607,607,607,607,[4008,933],3686,3687,3943,4007,4006,3942,3944,3943,4005,3942,3944,4005,4007,[3169,3880],3167,3168,[3167,807],607,607,607,607,607,607,607,607,607,607,607,[3943,805],3942,3428,4005,3944,4007,3941,[3167,4073],3231,3167,[3232,9547],[3175,9548],[3936,3177],4002,[4002,3236],3240,3238,3237,[4000,3241],3938,3936,[3936,3045],3173,[3239,935],607,607,607,607,607,607,607,[3240,997],[3239,998],[3239,998],[3239,934],[3239,816],[4000,3049],3936,3936,[3999,3109],[3936,3304],[3938,3305],[4002,3300],3237,3174,[4000,2985],3936,[4002,3109],[3175,9553],[3174,9554],[3176,1001],[3238,1002],[3240,1003],[3239,1004],[3239,1005],[3175,1006],607,607,[4007,869],3942,4007,3559,3943,[4002,3881],3999,[3936,4004],[3944,9745],[4005,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3977,9712],[3913,9713],3914,3914,3914,3914,3978,3913,3977,3914,3978,3977,3978,3914,3911,[4097,4042],[4097,3850],4097,4097,4097,[4097,3783],3976,3914,3913,3978,3977,3913,3978,3914,3914,3977,3914,3914,3914,3977,[4097,3979],4097,[4097,3847],3912,3914,3978,3977,3911,[4097,4039],[4097,4040],3912,3978,3978,3914,3978,3977,3978,3978,3978,3914,3975,[4097,3785],4097,[4097,4038],3912,3913,3913,3914,3977,[4097,3979],4097,[4097,3974],3977,[4097,3979],4097,4097,[4097,3783],3976,3914,3978,3978,3977,3978,3978,3978,3977,3914,3913,3913,3977,3913,[4097,3979],4097,4097,[4097,3974],3913,3975,[4097,3786],[4097,4038],3912,3914,3913,3914,3913,[4097,3979],4097,[4097,3974],3913,3978,[3978,9622],[3913,9623],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,10055,9573],607,607,607,607,607,607,607,607,607,[3564,805],3563,3564,[3563,4080],[4013,4081],[3500,3891],4014,4011,3692,3693,4013,4014,4013,3950,3948,4014,4014,3950,3947,[4012,3890],[3564,4085],3947,[3564,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3564,933],3950,4013,[4012,806],[3564,806],[3562,807],607,[3947,869],3434,[3563,806],[3500,806],3562,3563,[3562,871],607,607,607,607,[3950,805,303],304,305,[3948,807,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3500,869],4011,3949,[3950,935],607,607,607,607,[607,10203],[607,10204],[607,10106],10010,[3448,9914],[4026,9818],3510,3448,3960,3576,4026,3577,4023,4023,3574,3446,3449,4024,3447,3577,3448,3574,3578,4025,3962,3510,3447,3962,4023,3576,3960,4026,3577,3961,3578,3512,3511,3638,3639,3446,3962,4023,4023,4026,4023,3511,4024,3511,3446,3578,3962,3962,4024,3446,3578,3512,3578,3962,4026,4024,3447,4025,4024,3574,3446,3959,3578,3447,3447,3446,3577,4024,3961,3446,3578,4026,4025,4025,3578,3575,4025,3447,3513,4025,3574,3448,3510,3961,3448,4026,4024,3448,4026,3578,4023,3512,3447,4023,4023,3578,3961,4023,4023,4026,3960,3576,3446,4026,4025,3512,3448,3578,4025,[3510,9631],[3446,9632],9629,0,0,0,0,0,0,0,0,0,0,0,0,9742,9931,[3487,9643],[4002,9644],4002,4001,3938,3936,3935,3937,4000,4001,3936,3937,3936,3936,3938,4000,3936,4002,3488,4001,3935,3999,[3175,4066],[3239,3874],[3238,3807],3937,3937,4002,3937,3937,3936,4001,3938,[3937,9552],3489,4000,4001,4001,3999,3937,4000,3936,3937,3999,3425,3936,3935,[3936,9841],[3936,9937],10029,10030,[3170,9932],[3233,9933],[3234,9934],[3168,9937],10033,[3999,10125],[3935,10126],[4000,10129],[3167,4003],3167,[3170,9745],[3232,9746],[10033,9551],[3944,10129],[3941,10221],[3941,10222],4007,3942,4008,3941,4006,3494,[4005,10221],[4008,10222],[3943,10027,9646],[3233,3745,9739],[3232,3746,9740],3938,3936,4001,4002,[3936,9835],[4000,9836],4000,3999,3937,3935,3937,[3239,3747],3174,[3239,3998],[3937,9841],[4001,9842],[9938,9551],[3170,4004,3109,9743],[4008,3305],3942,3944,3622,3623,[4005,9838],[4008,10027],10028,10029,10030,10033,10028,10029,10030,10031,10032,[3176,9932],[3175,9836],3174,3239,[3175,3814],3941,[3175,3945,9649],[3238,9650],[10033,9551],[3167,10129],[3231,10221],[3170,10222],[3231,4004,10124],10028,10031,10032,10033,[3941,10129],[3624,10221],[3625,10222],[3941,10223],[3943,10224],[3168,3817,10124],10028,10029,10030,10033,[3231,10129],[3231,3876,10223],[3944,10224],4005,[4006,815],[3944,870],[4005,999],607,[4007,933],[3944,10221],[4007,10222],[4007,10223],[3168,3880,10224],3168,3232,[3233,4004],4008,3941,4005,[3942,935],607,607,607,607,[4005,997],[4007,1001],[3944,1002],[3944,1003],[4007,934],[4008,816],3942,3944,4007,4008,4007,3941,3942,[3170,4009],3232,3233,3234,3170,[3231,806],[3232,4004,806],[4006,807],607,607,607,[3170,4009,805],[3234,806],[3170,806],[3232,806],[3167,806],[3169,3877],3941,3942,4006,3941,3941,[3170,3817],3169,3167,[3168,9452],[3176,9548],3240,[4002,3241],3937,[4002,3110],[3935,3304],[4000,3305],[3938,3236],[3938,3241],4001,3361,[3936,3236],3239,[3176,871],607,607,607,607,607,607,607,607,607,607,607,[3240,869],[4001,3113],4001,3936,3936,3938,3938,3999,[3937,3110],3237,[4001,3241],3936,4000,[3937,3236,9649],[3176,9650],[607,9551],607,607,607,607,607,607,607,[3941,933],3943,3944,3941,3942,[3935,3945],3935,[4001,4068],[3936,4069],[4002,4070,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9808],[3914,9809],3977,3913,3913,3913,3978,3914,3914,3977,3977,3914,3977,3913,[4097,3787],4097,4097,4097,4097,[4097,3784],3976,3977,3914,3978,3914,3913,3978,3914,3977,3913,3977,3978,3913,3977,3978,[4097,3787],4097,4097,[4097,4038],3912,3978,3978,[4097,3787],4192,4097,[4097,3974],3978,3913,3978,3913,3977,3914,3977,3978,3914,3977,[4097,3979],4097,4097,[4097,3847],3912,3913,3913,3911,[4097,3850],4097,[4097,3974],3911,[4097,3849],[4097,3718],[4097,3719],3976,3913,3977,3978,3977,3913,3914,3913,3977,3913,3977,3977,3978,3978,3914,3975,[4097,3785],4097,[4097,3848],[4097,4041],[4097,4042],[4097,4043],4097,[4097,3974],3914,3914,3977,3978,[4097,3787],4097,[4097,3974],3977,3913,[3914,9718],[3977,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9573],607,607,607,607,607,607,607,607,607,[3564,869],3500,3949,4014,3563,3563,4013,3562,3949,4014,4012,3947,3564,3562,3562,3562,3564,3562,3949,3562,4013,4012,[4011,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4013,805],[3499,806],[3562,807],607,607,607,[4014,805],[3564,806],[3499,806],[3950,806],[3499,807],607,607,607,607,607,607,[4014,805],3436,3500,4013,3563,3500,[3564,871],607,[3562,933],3498,3949,4014,3498,4011,[3498,935],607,607,607,[3500,805],3562,3948,4011,3562,[3564,806],[3500,807],607,607,607,607,607,607,607,607,607,607,607,607,[3947,805],[3500,806],[3563,806],[3500,807],607,607,[3500,997],[4011,998],[3499,998],[3949,999],607,607,607,607,607,607,607,[607,10106],[10010,9532],[3962,9721],[4024,9722],4026,4023,3962,3578,3577,4024,4023,3577,3446,4026,3960,3962,3577,3961,3448,3578,3959,3446,3577,3446,4024,3576,3447,3446,4025,3578,3578,3575,3511,3577,3702,3703,3446,3446,3959,3448,4025,3574,3448,3575,4025,3962,3574,3578,3962,4025,3578,3447,3513,3574,4025,3578,4023,3448,4026,4023,4025,3512,4026,3578,3959,3448,3447,4026,4025,4025,3577,4025,4024,3513,4023,3578,3512,3446,4025,3510,4026,3448,4023,3447,4024,3577,3578,4024,3446,3446,4024,4026,4023,4025,3510,4024,4026,3446,3510,3511,3574,4025,3510,3513,3447,3574,3446,3511,3577,3962,[3574,9727],[3576,9728],9725,0,0,0,0,0,0,0,0,0,0,0,0,9838,10027,[3488,9739],[4002,9740],4001,3937,3935,4000,4000,[3240,4066],3936,3937,3935,4002,3999,3938,4002,3999,3937,3936,3935,3936,[3238,4066],[3176,3873],3175,3176,[3176,3998],3936,3937,3938,3935,4000,3936,3999,4000,[4002,9648],[3936,9551],3936,3937,3936,[4001,9549],4000,4002,3938,3937,3936,3935,4000,[4000,9841],[3937,9937],10033,[3169,10125],[3232,3998,10126],10028,10029,10030,10033,[3935,10129],[4001,10221],[4001,10222],4000,[3234,3874],3170,[3169,9649],[3234,9650],[3943,10129,9647],3558,3941,3429,4008,3942,3492,3558,4008,3942,3944,3558,[3941,9646],[3935,9643],[3937,9644],3618,[3619,815],[4001,870],[4002,998],9931,[4000,9932],[3938,9836],3936,3999,3489,3935,3999,[3175,3743],[4001,9841],[3936,9937],9938,[3233,10034,9743],[3169,4068,9839],4006,3495,4006,3686,3687,3559,4008,[3942,10124],[3169,4009,10125],[3234,10126],[3167,10129],[3233,10124],[3234,3812,10125],[3941,10126],[4008,10127],[4005,10128],10028,[3175,9932],[3240,9836],[3240,3748],3941,3430,[3238,3880,9649],[3176,9650],[3169,10129,9647],3170,3170,[3234,3814],3429,[3941,10124],[3943,10127],[4006,10128],[3944,10129],3944,3688,3689,3943,3428,[3170,3945],[3168,10124],[3169,3812,10125],[3232,3817,10126],[3234,10129],3170,[3231,3940],3430,4006,[3944,871],607,607,607,[4008,997],[4007,934],[3942,816],[3168,3817],3231,[3232,3748],[3167,3749],3941,4006,3429,4007,[3943,871],607,607,607,607,607,607,607,607,607,[4005,869],3942,3430,3944,3943,4007,[3231,4071],[3234,4072],[3233,3879],3233,3234,3168,3231,3234,[3234,3877],4007,[4006,806],[4008,806],[3944,806],[3170,3817],3234,3168,3170,3169,3168,[3231,3812],3942,4006,4005,4008,[3234,3945,9357],[3168,9360],[3231,9452],[3238,9548],[3935,3304],[3936,3304],[3937,3305],3938,3937,3936,4000,[4001,3236],3174,[3999,2981],[3938,3047],[3938,3300],[4001,3301],[3238,935],607,607,607,607,607,607,607,607,607,607,607,[3174,933],[3938,3177],3937,[3999,3046],[4002,2982],[4001,2983],[4001,2984],[3937,2985],3425,[3938,3236],[3938,3241],3938,[3936,3045],[3174,9745],[3238,9746],[607,9647],607,607,607,607,607,607,[3936,805],[3938,3812],3624,3625,3943,3944,[3999,4009],3938,3938,[3938,3748],[3938,3815,9649],[3938,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3978,9905],[3914,9809],3977,3913,3914,3914,3914,3914,3913,3978,3914,3977,3914,[4097,3851],4097,[4097,3783],[4097,3720],[4097,3721],3976,3977,3914,3977,3913,3914,3913,3978,3913,3977,3978,3978,3978,3977,3978,3977,[4097,3851],4096,4097,4097,[4097,3974],3978,3914,[4097,3851],4097,[4097,3784],3976,3977,3914,3914,3913,3911,[4097,4041],[4097,4042],3912,3978,3977,3975,[4097,3785],4097,4097,[4097,3974],3911,[4097,4042],[4097,4043],4097,[4097,3784],3976,[4097,3979],4097,[4097,4038],3912,3914,3978,3978,3977,3978,3911,3912,3977,3911,3912,3914,3914,3913,3977,3977,3913,3975,[4097,3722],[4097,3723],4097,4097,4097,[4097,3784],3976,3978,3977,3913,3914,[4097,3915],4097,[4097,3782],3913,3913,[3913,9814],[3977,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,[4011,933],3564,3499,3499,3434,[4014,815],[3949,870],[3500,998],[3950,998],[4011,998],[3947,998],[3499,934],[4012,816],3500,[3564,815],[4013,870],[4013,998],[4014,998],[3947,934],[3950,816],3564,3436,[4011,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3562,805],[3437,806],3562,3499,3563,[3500,806],[3950,806],[3563,806],4011,4011,3500,3564,3564,[4013,806],[3499,806],[3948,806],[4013,806],[4011,806],[4014,806],3563,4014,3564,3562,4013,3950,[3435,935],607,[4011,997],[3500,934],[4011,816],3563,3950,3949,3949,[3562,806],[3949,806],[3947,806],3948,3949,3499,4012,3434,4013,[3947,871],607,607,607,607,[3562,805],[4014,806],[3947,807],607,607,607,[3564,805],[4012,806],4013,4013,3563,[3950,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,10106,9628],[3959,9625],[3576,9626],3510,4025,4024,3578,4024,4025,3578,3448,3960,3446,4025,3512,3448,4025,3578,3959,3574,3448,3448,3574,3578,3574,3959,4026,4024,4026,3446,3448,4023,3511,3448,3446,4026,3577,3446,3446,4026,3575,4024,3448,3574,3576,4023,3577,3961,4026,3448,4023,4026,3578,3511,3447,3511,4023,4023,3447,3962,3446,4023,3511,4026,3574,3446,4025,3577,3961,3578,4025,4025,4025,3960,3574,4026,4024,3446,4024,3577,4026,3446,3577,3576,3577,4025,3578,4023,3448,3577,3578,3578,3446,3447,3447,3961,3578,3447,3447,3510,3578,3448,3447,3961,4024,3962,3446,4026,4025,3446,[4025,9535],9536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3935,9739],[3999,9740],3938,3999,[3176,4065],[3240,4066],[3174,4067],3239,[3238,3872],3999,4001,4002,3999,4002,3937,3938,4002,3938,[3240,4066],[3175,3874],3174,3175,3174,[3174,3807],4002,4000,3938,4002,3935,3937,3936,3999,[3999,9841],[3999,9842],[3936,9647],3936,4000,[3234,4064,9550],[3938,9645],4000,3936,4002,3935,[4002,9841],[3938,9935],[3938,9936],[3938,9937],10033,[3231,10129],[3167,10221],[3168,3871,10222],[3935,10124],[3169,4003,10125],[3167,10126],[3234,3872,10129],3938,3999,4002,[3231,3811],3232,3232,[3168,9745],[3167,9746],[3943,9647],3557,4006,4008,3942,4007,3941,3943,3556,3557,3941,4008,[3941,9646],[3935,9835],[4000,9836],3682,[3683,935],607,607,[607,10027],10028,[4001,9932],[3937,9836],3938,4000,3936,3936,[3999,9649],[3938,9650],[10033,9551],[3233,3815,10034],[3234,9839],3170,[3168,3877],[3231,4069],3942,4005,3943,4008,4007,[3232,4072],[3232,3880,10221],[3232,10222],3167,3167,[3168,3940,10221],[4008,10222],[3429,10223],[4006,10224],[3942,10124],[10028,9550],[3174,9739],[3174,4004,9740],4006,[3176,3879],[3175,9745],[3240,9746],[3167,9647],3231,3234,[3168,4068],3942,3941,[3941,10223],[4005,10224],4006,4006,3941,3941,3941,3943,[3167,3879],3232,[3170,3876,10221],[3167,3881,10222],3169,3232,[3233,4004],3941,4006,[4006,935],607,607,607,607,607,[3944,869],[3167,3881],3232,[3167,3877],3943,4007,4005,4005,3944,[4008,935],607,607,607,607,607,607,607,607,607,[3943,933],4005,4008,4007,4006,[3168,4009],3232,3169,3168,3233,3231,3167,3232,3233,3170,[3231,3812],4007,3941,4006,[3170,3945],3167,3167,3170,3232,3170,[3231,3876],4006,3944,4005,[3942,9547],[3174,9453],[3174,9456],[3174,9548],[3938,3241],3937,3938,3489,3935,3999,3999,[3936,2980],3173,3176,3238,[3937,3112],3937,3938,[4000,3109],[3238,807],607,607,607,607,607,607,607,607,607,607,[3238,997],[3239,998],[4000,2981,998],[3239,1001],[3174,1002],[3176,934],[3174,816],[4002,3112],[3935,2980],3173,[3938,3241],3999,[4000,3236],[3240,9841],[3175,9842],[3942,806,9647],[3938,3817,806],[3936,806],[3936,3813,806],[4008,806],[4008,806],[4000,3817,806],3937,[3937,3876],3688,3689,3941,3941,[3935,3880],3937,[3937,3814],3941,[4006,9745],[4008,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,[10001,9523],[3977,9712],[3978,9713],3977,3914,3914,3978,3977,3977,3978,3978,3978,3914,[4097,3915],4097,[4097,3782],3977,3977,3977,3978,3913,3978,3913,3913,3913,3977,3913,3914,3977,3913,3913,3977,3913,3913,[4097,3915],4097,4097,4097,[4097,4038],3912,3913,[4097,3915],4097,[4097,3782],3977,3913,3913,3914,3911,[4097,3850],4097,4097,[4097,3847],3912,3914,3914,3975,[4097,3723],4097,[4097,3848],[4097,4043],4097,[4097,3718],[4097,3719],3976,3978,3975,[4097,3719],[4097,3786],[4097,3847],3912,3978,3913,3978,3911,[4097,3849],[4097,4038],[4097,4039],[4097,3849],[4097,3847],3912,3978,3977,3914,3978,3911,[4097,4039],[4097,4040],[4097,3849],4097,4097,[4097,3783],3976,3977,3978,3978,3977,3911,[4097,4043],4097,[4097,3846],3978,[3913,9814],[3913,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9573],607,607,607,607,607,607,607,607,607,[4011,997],[3563,998],[3500,934],[3562,816],3500,[3950,935],607,607,607,607,607,607,[4013,933],4013,[3948,935],607,607,607,607,[3562,933],3948,3563,[3500,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3949,869],3500,3949,3948,3950,4011,3950,3949,4011,3500,4013,4014,3499,3500,4012,4011,4011,4014,3563,3563,3950,4011,3948,[3564,815],[3436,870],[3950,999],607,607,607,[4011,869],4014,3564,3562,4012,3947,3563,3500,3948,3950,3950,3500,3947,3564,3948,[3948,807],607,607,[3564,805],3947,4014,3947,[4011,806],[4012,806],[3949,806],4013,3500,3563,3948,3562,[3949,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9628],[4025,9721],[3960,9722],3578,3447,3961,3577,4025,4024,4026,4026,4023,4026,4024,3959,4023,3959,3446,3962,4023,3510,3575,3961,3446,3447,4025,3446,3574,4024,3510,4024,3512,4026,3447,3447,3960,3510,3447,3578,4023,3574,4024,3448,4024,3447,3577,3447,4023,3448,4023,3577,4025,3574,3510,3576,4025,3961,3447,3959,3512,3512,4023,4023,3447,3446,3447,3512,3448,3961,4025,3574,3578,4025,3577,4026,3511,4023,3511,3959,4026,3578,4025,3448,4026,3511,4026,3511,4025,4025,3575,3578,4026,3577,3513,3578,3511,3448,4023,3576,3574,3447,3578,3512,3959,4023,4026,3448,4023,3578,3961,[3959,9631],[3448,9632],9533,0,0,0,0,0,0,0,0,0,0,0,9451,9452,[3999,9548],4002,4001,[3176,3874],3239,3175,3238,3238,3238,[3176,3806],3489,3935,4000,4000,3999,4000,4000,[3174,4003],3240,3174,3239,[3175,3807],[3175,3743],3999,3999,4002,4002,3936,3999,[3999,9841],[3999,9935],[3937,9936],[3999,9937],9938,[3999,9743],4001,[3232,3874],[3170,9646],[4001,9835],[3999,9836],3935,3999,[3936,9841],[4002,9937],10031,10032,10033,[3168,10129],3170,3231,3168,[3233,3806],[3167,3811,10221],[3168,10222],3234,[3169,3806],3553,3938,[3167,3875],3233,3233,[3170,9841],[3233,9842],[3941,9647],4005,3492,3493,4006,4006,3557,3944,3556,4008,3495,3942,[3234,4009,9742],9931,[3999,998,9932],[3999,998,9836],[4002,999],607,607,607,[607,10124],10028,[3938,9643],[4002,9644],4001,3938,3938,[3937,9745],[3938,9746],[3941,10129,9647],4008,[3233,3753],3170,3232,3233,[3169,3877],3943,3428,4007,[3170,3880],3234,3233,3168,[3231,3748],[3167,3749],4005,3941,4007,4008,4007,[3942,10124,9646],[3238,9835],[3238,4004,9836],[3239,4009],3174,[3175,9841],[3175,9842],[3943,9647],[3234,3815],3232,3231,[3232,3878],4005,4008,3941,4007,3943,4005,3944,4008,[3232,4009],3232,3234,[3167,3940],[3231,3945],3169,3234,[3231,4068],4005,3941,3943,[3944,807],607,607,607,607,[4008,933],[3167,3945],3232,3233,[3170,4068],3941,4005,4005,4007,4005,[3941,806],[3944,806],[4008,806],[3942,806],[4008,807],607,607,607,[4005,805],4006,3942,4007,3944,[3233,4072],[3167,3880],3234,3234,[3169,3813],[3232,3749],[3168,3750],[3234,3752],[3167,3753],3168,3234,[3170,3876],4006,3495,4005,3942,[3234,3753],3234,3168,3168,3231,[3168,3940],3941,4008,[4007,9550],[3999,9739],[3936,3109,9740],[3999,3303],[4002,3304],[3935,3305],3999,4000,3999,4001,3935,[3936,2980],3173,3238,[3935,3303],[3938,3112],4002,4001,3361,[4000,3045],[3240,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3937,3049,869],3999,[4002,3236],3238,[4001,3112],[3937,3045],[3176,9649],[3175,9650],9938,[3942,9743],[4001,3945],3938,[3999,3812],4008,4007,[3935,3881],3999,[4000,3940],3941,4005,4006,[3936,4009],4002,[3935,3748],4008,3941,[4007,9841],[4008,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10097,9619],[3913,9616],[3913,9617],3978,3978,3914,3913,3977,3913,3914,3913,3914,3978,[4097,3979],4097,[4097,3910],3977,3977,3977,3914,3977,3914,3913,3914,3977,3913,3978,3914,3978,3978,3914,3913,3978,3977,3975,[4097,3785],4097,4097,4097,[4097,3847],[4097,4039],[4097,4043],4097,[4097,3910],3914,3914,3913,3978,[4097,3787],4097,4097,4192,4097,[4097,3782],3977,3977,3978,[4097,3979],4097,4097,4097,[4097,3783],3976,3914,3913,3977,3978,3978,[4097,3787],4097,[4097,3974],3978,3978,3978,3975,[4097,3723],4097,4097,4097,4097,[4097,3782],3913,3978,3913,3911,[4097,4043],4097,4097,4097,[4097,3718],[4097,3719],3976,3978,3914,3913,3914,3911,[4097,3850],4097,4097,[4097,3910],[3914,9622],[3978,9623],[10006,9524],10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9669],607,607,607,607,607,607,607,607,607,607,607,607,[3948,997],[4013,998],[3947,999],607,607,607,607,607,607,[4012,997],[4013,998],[4011,999],607,607,607,607,[3950,997,303],304,305,[3564,999,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3563,933],3950,3562,3948,4013,3948,4012,3500,3498,3562,4013,4012,4012,3563,4011,3563,3500,3564,3499,4013,3562,4014,3563,[3564,871],607,607,607,607,607,[3564,933],3499,3947,4011,3949,3564,4014,3950,3949,4013,4014,3563,3947,4013,3499,3562,[3500,806],[3564,806],3562,3562,4014,3563,3947,3434,3948,3949,4012,4011,3950,4012,4012,[4013,807],607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9628],[4024,9817],[3962,9818],3512,4025,4023,3447,3446,3447,4023,3578,4024,3961,3446,3574,4023,3446,3446,3575,[4025,9823],[4026,9915],[3959,9916],[3446,9917],[3510,9918],[3578,9818],3574,3446,3446,3575,4025,3575,4025,4026,4026,4025,3960,4025,4023,4024,3447,3576,3575,3448,3448,3578,3449,3448,3510,3577,4023,3574,3448,4025,4024,4024,3448,3512,3447,3512,4024,3577,3447,3578,3577,3449,3575,3577,4023,3447,4026,3962,3962,4026,4025,4025,3446,3961,3960,3447,3447,4024,3446,3574,3510,3447,4026,3448,3960,3962,3575,3959,3576,3512,4024,3447,3448,4024,4025,4023,3959,3512,3447,3578,3574,4025,4026,3577,3959,4025,3447,[4023,9727],[3448,9728],9629,0,0,0,0,0,0,0,0,0,0,0,9547,[4002,9548],3999,3938,4000,[3175,3810],3239,3240,3239,3238,3174,[3240,3870],3935,4000,3937,4000,3937,4000,3618,3619,[3238,3747],3238,3175,[3174,3806],3935,3361,3361,3935,3553,4001,[4000,9841],[4000,9937],10031,10032,10033,[3233,10034],[3170,3871,9839],3999,[3169,3809],[3231,9742],9931,[4002,9932],[3935,9933],[4001,9934],[3936,9937],10033,[4000,10127],[4003,10128],[3170,10129],3167,3234,3231,3169,[3167,3934],[3233,3875],3170,3232,[3168,3870],4002,4000,[3170,3939],3168,[3170,9841],[3232,9937],9938,[4005,9743],3492,4007,4005,4007,3944,3492,3428,4006,4006,3494,[3167,4072],[3168,4073,9838],[3168,10027],[10028,9550],[3231,806,9643],[3234,806,9644],[3169,807],607,607,607,[607,10124],[4002,9739],[3938,9740],3938,3936,3999,3935,[3935,9553],[4005,9457],3943,3944,[3233,3749],[3233,3816],3167,3170,[3232,4004],4005,[3167,4009],3232,3169,3169,3169,[3170,3812],4005,3941,4007,4008,4008,3941,[4007,9742],9931,[3174,3878,9932],[3240,3879,9933],[3175,9934],[3238,9937],9938,[4005,9743],[3167,4009],3168,3168,3231,[3167,4004],4005,3942,3941,3943,4006,3944,4005,[3231,4073],3167,[3167,3813],3941,4007,[3169,3815],3232,3234,[3168,3877],3941,3941,3942,[3941,807],607,607,[3944,805],3428,4006,[3232,3749],[3231,3753],3167,[3233,3877],[3234,4069],4007,3943,4006,4007,3941,3941,3941,[3169,4073],[3233,806],[3233,806],[3231,806],[3232,4068],3943,4006,4005,[3234,4073],3234,3233,3233,[3169,3814],3943,3944,4005,3942,[3168,4073],3170,3168,[3231,3940],4005,4005,3943,3942,[3168,4009],3167,3232,3232,[3169,3814],4006,3941,3941,[4005,9646],[4000,2981,9643],[3936,3047,9644],3936,3935,3553,3999,3937,4000,4000,[3937,3045],3173,3238,[3938,3305],3936,[3938,3045],[3938,2982],[3937,2983],[4000,2984],3239,[3238,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4001,3113,933],4002,[3937,3236],3174,[3937,2985],[3936,3236],[3175,9745],[3941,9746],[3943,10034],[3430,9839],[4000,4073],3937,[4001,3876],3941,3431,[3938,3945],3935,[3937,4004],3943,4007,3944,[3938,3880],[3936,3814],4005,3943,[3942,9841],[4008,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3913,9712],[3914,9713],3978,3978,3913,3914,3913,3977,3913,3977,3914,3911,[4097,3850],4096,[4097,3847],[4097,4041],[4097,4042],3912,3978,3913,3978,3913,3913,3914,3978,3978,3978,3913,3914,3977,3913,3977,3914,3913,3975,[4097,3719],[4097,3786],4097,4097,4097,4097,[4097,3783],3976,3977,3977,3913,3978,[4097,3915],4097,4097,4097,4097,[4097,3910],3913,3914,3913,3975,[4097,3723],4097,[4097,3718],3976,3913,3914,3913,3977,3977,3978,[4097,3851],4097,[4097,3847],3912,3911,[4097,4041],[4097,4042],[4097,4043],4097,4192,4097,4097,[4097,3846],3977,3914,3911,[4097,3849],4097,4097,[4097,3718],[4097,3719],3976,3913,3914,3977,3978,3914,3911,[4097,3849],4097,[4097,3718],[4097,3719],3976,[3913,9718],[3978,9719],[10102,9620],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9383],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3500,805],4011,3949,3949,3499,3947,3500,4012,3562,3562,3435,4014,4012,3499,4013,3563,3948,4012,3499,3563,4011,4014,4013,3564,3950,[3947,806],[3949,807],607,607,607,[3499,869],4014,3434,3499,3562,4011,3564,3563,3562,4014,3562,3563,4014,3563,3564,4014,4011,3949,3500,3950,4012,3500,4011,3499,3500,3562,3562,3947,3948,4013,3947,[3947,871],607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9724],9913,[3961,9914],[4026,9917],[3448,9918],[3446,9915],[3577,9916],[3448,9818],3575,3574,3447,3447,3448,3447,3576,4023,3960,3959,[4023,9823],[4025,9919],10011,10012,10013,10014,[3512,9914],[3577,9818],3576,3511,3578,3576,3962,3576,3574,3577,4023,3446,3447,4023,3961,3578,4024,3577,[4026,9823],[3446,9915],[3578,9916],[4023,9818],4025,3577,4023,3446,4024,3446,3577,3511,3447,3577,4024,3448,3578,3512,4023,4025,3511,3446,4024,3448,3447,3575,4024,4023,4025,3448,3960,3448,4023,4023,3447,3511,4024,4026,3575,3576,3446,4023,3578,3512,3574,3962,3959,3447,4023,3577,4025,3448,3578,4024,4025,3510,3448,3446,4026,3446,3448,4024,3447,3578,3575,4026,3448,3576,[3959,9631],[3448,9632],9629,0,0,0,0,0,0,0,0,0,0,9550,[3935,9643],[3938,9644],3938,4001,4002,4002,[3240,3747],[3176,3742],[3239,3810],3176,3240,[3238,3934],3937,4001,3935,4001,4001,3938,3682,3683,4002,[3238,3810],3175,[3174,3870],4002,4001,3935,4001,3937,[3999,9841],[3999,9937],10033,[3233,10127],[3231,3870,10128],[3938,10129],[3234,3809],[3232,3808],4000,3936,[3170,3810,9838],[3232,10027],10028,10029,10030,10033,[3936,10129],[4002,10223],[3234,3811,10224],3232,3168,3167,3169,[3232,3807],4002,[3170,3939],3170,3233,[3168,3934],3616,3617,4000,[3167,3809,9841],[3167,9937],10033,[3941,10034],[4005,9839],3941,3558,4006,4007,3557,3494,3558,3941,4006,[3231,3817],3168,3231,3231,[3233,10124,9646],[3234,9739],[3168,9740],3169,[3169,806],[3169,806],[3231,806],[3232,806,9452],[3938,9548],3937,4002,4002,4002,3936,3938,[4002,9553],[4006,9554],4006,3428,3944,[3234,3753],3170,[3234,4068],[3233,4072],[3167,4073],3167,3232,3169,3167,[3169,3940],3942,3941,4008,4006,3495,4006,[3943,9838],[4007,10027],10028,10029,10030,10033,[4005,10034],[3429,9839],3943,[3170,3750],[3169,3752],[3167,3753],[3233,4068],[3231,4072],3942,3944,3559,3943,3944,[3169,3879],3168,3232,[3170,4004],4007,4005,3944,[3234,3753],3234,3169,[3168,3812],4005,3559,4008,[3941,806],[3941,806],4005,[3233,4070],[3167,4071],[3233,4072],[3167,4073],3169,3167,3170,[3169,3877],4006,4008,3429,4008,3944,[3169,4009],3168,[3170,3814],[3233,3753],3234,3231,[3232,3812],4008,[3167,3817],3234,[3169,3813],[3167,3750],[3231,3752],3941,3943,4007,4007,[3169,3817],3233,3231,3170,[3234,4004],4005,3944,4007,3943,4008,[3232,3750],[3170,3751],[3168,3752],3943,4007,4005,4005,[3943,9646],[3239,9739],[3175,9740],[4002,2981],[4001,2985],3936,3938,3936,4001,3936,[3999,3236],3238,[3999,3305],3935,4002,[3937,3044,815],[3174,870],[3238,1003],[3175,1004],[3240,1005],[3238,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3174,805],[3938,3177],3935,[3999,3300],3237,[3937,3241],[3935,3109],3175,[3239,9553],[4007,9554],[3937,3880],3936,4001,[4001,3940],4005,4006,[3999,4009],[4001,3813],4005,3941,4007,[4002,3817],4002,[4000,3812],3430,[4008,9649],[3943,9650],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3913,9521],3977,3914,3914,3978,3913,3914,3914,3913,3977,3914,3975,[4097,3786],4097,4097,4097,4097,[4097,3847],3912,3913,3978,3914,3913,3977,3914,3914,3911,[4097,4039],[4097,4040],3912,3977,3911,[4097,4041],3912,3913,3914,3975,[4097,3723],4097,4097,4097,[4097,3974],3978,3913,3914,3913,3913,3975,[4097,3723],4097,4097,[4097,3718],3976,3978,3913,3977,3977,[4097,3979],4097,[4097,3782],3914,3913,3978,3913,3978,3913,3914,[4097,3915],4097,4097,[4097,3974],[4097,3979],4097,4097,4097,4097,[4097,3718],[4097,3785],4097,[4097,3910],3978,3913,[4097,3787],4097,4097,4097,[4097,4038],[4097,4039],3912,3978,3978,3913,3977,3977,3975,[4097,3723],4097,[4097,3782],3977,3913,[3977,9718],[3914,9719],9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3500,805],4012,3564,3947,3500,3500,4012,4012,4014,4011,3500,3562,4014,4013,3950,4011,3500,3435,3949,4011,3500,3500,3950,3564,3948,3435,4013,[4014,871,563],[607,563],[607,563],[3948,805,563],4012,3562,4012,4013,3499,4013,3950,3948,3499,3948,4012,3950,4012,3499,4011,3563,4012,3500,4011,3562,4011,3562,4011,4012,3948,3564,3947,4014,4014,3563,3950,[4012,935],607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9820],[607,10009],10010,10013,10014,10011,[10012,9532],[3577,9914],[3577,9915],[3577,9916],[3578,9818],3446,4025,3446,3447,[3446,9823],[3446,9915],[3576,9916],[3446,9919],10015,10107,10108,10109,10110,10010,[3578,9914],[3578,9818],3961,4025,4026,4025,4025,3446,4023,4025,3962,3446,3959,3577,4025,3448,[3446,9823],[4025,9919],10011,10012,[4024,9914],[4026,9818],3511,3578,3446,3446,3577,4023,3447,3511,3962,4026,3448,3961,3961,3446,3961,3574,3577,3576,4025,3577,4026,3960,4024,3448,4023,3510,3577,3512,4026,3447,4026,4024,3577,3578,3574,4026,3446,4023,3448,3578,4025,3578,3448,3510,4024,3446,3448,4025,4026,4026,3577,4023,3961,3447,3446,3447,4025,3578,4024,4023,4025,4023,4026,[3574,9823],[4024,9824],9629,0,0,0,0,0,0,0,0,0,0,9646,[3999,9739],[3999,9740],3488,3999,4002,3936,4001,3936,4000,[3239,3744],[3239,3746],3938,3937,3999,3999,3936,4000,3935,3935,4002,4002,[3238,3811],3175,[3238,3934],4002,3616,3617,4001,[3935,9745],[3937,9746],[10033,9551],[3234,10129],[3234,10223],[3231,3934,10224],4000,3999,4002,3425,4000,[3167,3811],3231,[3170,10124],[3232,10125],[3231,10126],[3233,3806,10129],3616,3617,[3169,3875],3167,3231,3167,[3169,3742],3937,3935,3936,[3167,3810],3170,[3168,3998],3680,3681,[3938,9841],[3938,9937],10033,[4007,10129],3492,3941,3493,3557,[3232,4071],3494,3941,3943,3941,3941,3493,[3168,3881],3233,3170,3170,[3231,9646],[3231,9643],[3231,9644],3168,3234,3168,[3169,9547],[3937,9548],4001,4002,4001,3937,3936,4001,4002,3936,[4002,9553],[3941,9554],3941,4008,3943,[3168,3749],[3170,3753],3233,3170,3170,3168,3234,3170,[3232,3877],4006,3942,3941,4005,3942,3943,4005,[3168,3880],[3231,3814,10124],[3943,10125],[3170,3945,10126],[3167,10129],[3232,3877],4008,3944,4007,3941,[3231,4009],3233,3231,[3233,4004],4005,[4008,9357],[4008,9358],[4006,9359],[3170,9360],3232,[3232,3813],4006,3942,4008,3944,3941,[3232,3816],3169,[3232,3876],3942,4008,[3169,4070],[3233,4071],[3169,4072],[3231,3880],3169,3168,3169,3231,3168,3231,3167,3232,[3168,4068],[3231,4069],4006,3942,3943,[3169,3879],3170,[3170,3812],[3233,4009],3167,3233,[3233,3940],3942,[3170,3881],3233,[3170,3812],4008,4007,4005,4007,3941,3943,[3232,3945],3169,3169,[3233,3814],3944,3620,3621,4005,4006,3941,3942,4008,4008,4007,4006,4006,3941,[4007,9646],[3240,9835],[3240,9836],3175,[3938,3241],[3937,3045],[3938,2981],[4001,2981],[3999,3048],[4000,3046],3173,[3937,3241],4002,3999,3938,[3937,3172,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3174,805],[3176,806],[3239,806],[3240,806],3176,[4001,3305],3935,[4001,3045],3173,[3938,3241],4000,[3999,3109],[3174,9745],[3175,9746],[3936,9551],4002,[3999,3814],3944,4005,3941,[4002,3880],[4002,4004],4005,3944,3559,[4001,3945],4000,[4002,3876],4007,[3942,9745],[4007,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9425,[3914,9521],3978,3913,3978,3913,3977,3977,3913,3978,3913,3913,3914,3978,3975,[4097,3720],[4097,3722],[4097,3723],4097,4097,[4097,3782],3913,3913,3977,3913,3914,3913,3913,[4097,3787],4097,4097,[4097,3847],[4097,4041],[4097,4043],4097,[4097,4038],[4097,4039],[4097,4040],[4097,4042],[4097,4043],4097,4097,4097,[4097,4038],[4097,4039],3912,3913,3913,3914,3911,[4097,4043],4097,[4097,3718],3976,3913,3978,3978,3978,3914,[4097,3787],4097,[4097,3846],3913,3978,3914,3913,3978,3914,3977,3975,[4097,3786],4097,[4097,4038],[4097,3849],4097,[4097,3783],[4097,3785],4097,[4097,3974],3975,[4097,3719],3976,3978,3914,[4097,3851],4097,4097,4097,4097,4097,[4097,3782],3978,3913,3977,3977,3913,3913,[4097,3979],4097,[4097,3846],3978,3914,3914,[3913,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9477],607,607,607,607,607,607,607,607,607,607,607,[3499,805],[3950,806],[3950,807],607,607,607,607,607,607,607,607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3499,805],[4012,806],3563,3500,3949,4011,3950,3948,3950,3562,3434,3950,3949,3563,3562,4013,3562,3500,3564,4011,3564,3562,3499,3500,3562,4012,4013,3947,4012,627,627,627,627,4011,4011,4014,3947,3435,4011,3500,3947,3626,3627,3947,3950,4012,3564,3947,3499,3500,3949,4014,3950,3948,3948,3563,4012,3948,3499,3564,3563,3500,3947,3949,3499,[3499,806],[4013,807],607,607,607,607,607,607,607,607,607,607,607,607,607,[607,10106],[607,10109],[607,10110],[607,10107],[607,10108,9628],10010,10011,10012,[4023,9914],[3576,9915],[3446,9916],[3446,9917],[4026,9918],[3510,9919],10011,10012,10015,10111,10203,10204,10205,10206,10106,10010,[3577,9914],[4026,9818],4026,3961,3448,3960,[4025,9823],[3446,9915],[3510,9916],[3578,9917],[3447,9918],[3959,9915],[3448,9916],[4024,9917],[3511,9918],9919,10015,10107,10108,10010,[3574,9914],[3446,9818],4025,3446,3446,3960,4025,3574,3446,3448,3446,3448,4026,3575,4023,3511,4025,3447,3577,3448,3512,4025,3578,[4023,9823],[3959,9818],4024,4025,4025,4024,3512,4025,3447,3960,3574,3959,4025,3961,4023,3962,3510,4025,3578,3960,3577,4024,3578,3575,4026,3578,3960,3577,3959,3577,3510,3447,3510,3510,4026,3578,3447,4025,4023,3578,[4024,9631],[3959,9632],[9920,9533],9725,0,0,0,0,0,0,0,0,0,0,9646,[4002,9835],[3936,9836],3936,3937,3999,3552,3936,3937,3936,3999,4002,3935,3935,3553,3936,3936,3936,3937,[3936,9841],[3937,9935],[3937,9936],[3240,3875,9933],[3238,9934],[3239,3998,9836],4000,3680,3681,3999,[3935,9841],[4001,9842],[3232,10129,9647],3170,3233,[3169,3998],4002,3936,3938,3936,3935,[3168,3939],3231,3234,[3170,10221],[3168,10222],[3234,3870],3680,3681,[3234,3939],3233,3168,[3169,3807],3936,4002,3361,4002,[3232,4003],3169,[3231,4062],[3167,4063],[3168,4064,9745],[3234,4067,9746],10033,[4007,10129],3556,3494,3941,3557,[3170,3880],3167,[3168,4004],3942,3943,3558,3557,4006,[3232,3945],3233,3169,3232,[3167,9742],[3234,9739],[3170,9740],[3231,3808],[3169,3809],[3170,9550],[4000,9643],[4000,9644],3936,3936,3999,4000,3425,3936,3938,3935,[3999,9649],[4000,9650],[4007,9551],3943,3941,3944,[3234,3817,815],[3233,1001],[3170,1002],[3168,1003],[3169,1004],[3167,1005],[3167,934],[3168,816],[3170,4004],3941,4005,4008,4007,3944,[3167,4009],3234,[3231,3812],[3620,10221],[3621,10222],[3169,3816],3231,[3231,3812],3943,4008,3941,3944,[3167,3816],3167,[3234,3877],[3944,9452],[3935,9453],[4001,9454],[3935,9455],[3999,9456],[3234,3752,9457],4005,3941,3430,4008,4005,[3941,9264],[3943,9265],[3231,9359],[3231,3940,9360],3942,[3231,3879],3169,3232,3170,[3233,3813],[3169,3750],[3231,3751],[3231,3752],[3169,3816],3170,[3231,3813],[3170,3750],[3233,3752],[3233,3816],3167,[3167,3877,9357],[3943,9358],[4005,9359],[3170,9360],3232,[3234,3940],3944,[3232,3815],[3170,9357],[4007,9358],[3943,9359],[3168,3945,9360],[3167,9360],[3170,3876],4006,3943,4005,3942,4006,4007,[3168,4073],3169,[3169,3813],4005,4006,3684,3685,3944,3944,4007,3942,3942,4005,4006,3942,3495,[4005,815],[3943,870,9742],9931,[3174,9932],[3240,9836],[4002,3111],[4000,3109],[4002,3301],3237,3174,3173,3238,[4002,3112],3999,3937,3936,[4001,3236],[3176,807],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3240,869],[4000,3302],[3935,3303],[3935,3304],[3938,3111],3936,[4000,3045],3173,3238,[4000,3111],3938,3937,[4001,3300,9649],[3237,9650],[3999,9647],[3935,3748],3943,3941,4007,[3999,4073],4002,[4002,3877],3941,3941,3943,[4000,4009],4002,[4001,3940],4007,[4002,4071],[3937,4072,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3977,9521],3978,3977,3914,3978,3914,3914,3977,3914,3977,3914,3978,3913,3977,3977,3977,3914,[4097,3787],4097,4097,[4097,3910],3913,3913,3978,3977,3978,3913,3977,[4097,3851],4097,4192,4097,4097,4097,4097,4097,4097,4097,4097,[4097,3783],[4097,3719],[4097,3786],4097,4097,4097,[4097,4038],3912,3914,3911,[4097,3850],4097,4097,[4097,3782],3978,3914,3913,3978,3913,3914,[4097,3851],4097,[4097,3910],3913,3913,3977,3977,3978,3913,3978,3978,[4097,3979],4097,4097,4097,[4097,3718],3976,3975,[4097,3719],3976,3914,3914,3978,3978,3978,[4097,3915],4097,4097,4097,4097,4097,[4097,3846],3978,3914,3977,3913,3977,3911,[4097,4043],4097,[4097,3910],3913,3913,3978,[3914,9622],[3913,9623],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,607,607,[3950,869],4012,4011,[4012,806],[4014,806],[4014,806],[3562,807],607,607,607,607,607,607,607,607,[4012,805,303],304,305,[3563,806,306],[3950,806],[4011,807],607,607,607,607,607,607,607,607,607,607,607,607,[3562,869],3948,3564,3434,4013,3564,4013,4014,3950,4011,3564,3948,3948,4011,4012,3500,4012,3949,3949,3500,4013,4011,3564,3436,3563,4014,3562,3562,3562,691,691,691,691,4014,4012,3948,3949,3436,3948,3563,3947,3690,3691,4011,3947,3499,3499,3948,4013,3950,3500,3500,3948,3947,3950,3948,4014,3436,4012,3499,3499,3500,3563,4011,3949,4013,3948,[3562,807],607,607,607,607,607,607,607,607,607,607,607,607,607,[607,10205],[607,10206],[607,10203],[607,10204,9572],[9569,10106],[9570,10107],10108,10010,10011,10012,10013,10014,10015,10107,10108,10111,0,0,0,0,0,0,10106,10010,[3576,9914],[4026,9915],[3578,9916],[3960,9917],[4023,9918],[3510,9919],10011,10012,10013,10014,10011,10012,10013,10014,10015,10111,10203,10204,10106,[10010,9532],[3447,9721],[3578,9722],3446,4023,3448,3510,3512,3511,3577,3446,4024,3577,3511,[3512,9823],[3447,9915],[3575,9916],[4025,9818],3446,3960,3446,3577,[3960,9823],[4023,9919],[3510,9914],[3962,9818],3577,3574,3511,4025,3960,3447,4025,3574,3577,4024,4026,4026,3511,4024,4023,3574,3578,4024,4026,3448,4025,3959,3577,3578,3512,3446,3448,4023,3511,3511,3510,4024,4024,3448,3576,3511,4026,[4026,9727],[3574,9728],[10016,9629],9821,0,0,0,0,0,0,0,0,0,0,9742,9931,[3550,9932],[4001,9836],3550,3936,4000,3935,4002,3551,3938,4000,4000,4002,3938,3935,[3935,9841],[4002,9935],[4002,9936],[3936,9937],10031,10032,10029,10030,[4002,9932],[3935,9933],[3937,9934],[4001,9935],[4002,9936],[4001,9937],9938,[4000,9743],[3169,3809],3233,[3169,4062],[3167,4063],[3167,4064],[3170,4065],[3233,4066],3937,4000,[3233,3810],3169,3168,3169,[3232,3934],4002,4000,[3167,3874],3168,3170,[3232,3998],4001,3999,[3937,9549],4002,[3232,3811],3170,3234,3231,[3232,9649],[3169,9650],[3943,10129],4008,3557,3557,3494,[3231,4009],3169,3169,[3233,3877],[3167,4069],[3169,4071],3493,4006,3943,4007,[3169,3815],3233,3168,[3168,9547],[3169,3742,9548],[3169,3743],3935,[3168,4003],[3232,9646],[3999,9739],[4000,9740],3935,3614,3615,3936,4000,4002,3937,4000,[3938,9745],[3937,9746],[3231,4070,9647],4006,3944,3559,[3170,3945,871],607,607,607,607,607,607,[3169,3749,869],3943,3431,4005,3944,3941,4008,[3167,3879],3169,[3168,3940],3684,3685,[3231,4009],3232,[3231,3876],4006,3941,3941,3941,[3233,3817],3232,[3234,9547],[4001,9548],4001,4002,4002,[4001,9649],[3999,9650],[4008,9551],4007,3941,3943,[3942,9452],[4002,9453],[3999,9454],[4001,9455],[3935,9456],[3233,4009,9554],3167,3168,[3168,3748],[3233,3749],3943,4007,3944,3941,[3169,4009],3168,[3234,3812],3944,4005,[3169,3817],[3234,9452],[3999,9453],[3937,9454],[4001,9455],[3936,9456],[3168,3749,9457],3944,3943,[4007,9452],[3937,9453],[3938,9454],[4001,9455],[3936,9456],[4002,9456],[3234,3940,9457],3944,4005,3495,4007,4005,[3168,3817],3231,3233,[3168,3812],4006,3944,4005,3943,3941,3941,3941,3944,4008,3944,4007,3942,3943,[4008,871],[607,9838],[607,10027],[10028,9550],[3935,3241,9739],[3938,9740],4002,3938,[3937,3300],3237,3176,[4002,3241],3938,3618,3619,4002,[4000,3300],[3938,3301],[3935,3302,806],[3240,806],[3238,806],[3174,807],607,607,607,607,607,607,607,607,607,607,607,[3938,3241,933],3999,4000,4000,3999,[3938,3046],3173,3238,[3936,3305],4000,3425,3936,[4002,3046,9745],[3238,9746],[4005,9647],4008,4006,3495,[3938,3817],3937,4002,3935,[3935,4068],[4002,4071],[4000,4072],[3936,4073],3935,[4002,4068],[3936,3879],3999,[4002,3814],[3943,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[3914,9616],[3977,9617],3914,3977,3913,3978,3913,3913,3978,3977,3913,3913,3978,3913,3913,3914,3978,3977,[4097,3915],4097,[4097,3783],3976,3913,3978,3978,3913,3977,3913,3978,[4097,3915],4097,4097,4097,[4097,3783],[4097,3719],[4097,3785],4097,[4097,3718],[4097,3720],[4097,3721],3976,3978,[4097,3979],4097,4097,4097,4097,[4097,3974],3911,[4097,4043],4097,4097,4097,[4097,3910],3978,3978,3977,3914,3914,3977,[4097,3915],4097,[4097,4038],3912,3913,3978,3977,3977,3978,3914,3911,[4097,4043],4097,[4097,3718],[4097,3719],3976,3977,3977,3913,3978,3913,3978,3978,3914,3913,3975,[4097,3723],4097,4096,4097,4097,[4097,3910],3914,3977,3978,3913,3913,[4097,3979],4097,4192,[4097,3847],3912,3977,3978,[3914,9718],[3913,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9669],607,607,607,607,607,607,607,607,607,607,607,[3948,933],3949,4014,4011,4014,3500,[3562,871],607,[3562,805],[3564,806],[3500,806],[3562,806],[4011,807],607,[4013,805],3950,4012,3564,3499,4011,[4014,871],607,607,607,607,607,607,607,607,607,607,607,607,[3949,933],3947,3562,3948,4011,3950,3435,4012,4014,3562,3500,3500,3949,3499,3563,3562,3499,3947,3948,3949,3499,3499,3500,4012,3949,3947,3564,[3562,815],[3499,870],[3500,999,755],[607,755],[607,755],[3500,933,755],4011,3947,3949,3499,3950,3498,4014,3564,3948,3950,3949,3948,4012,3949,3949,4014,3499,4012,3498,3437,4014,3564,3564,3500,3562,3562,3564,3501,3562,3499,3947,3564,3499,3499,3948,[3949,806],[3950,806],[3947,806],[3948,807],607,607,607,607,607,607,607,607,607,607,607,607,[607,9668],9665,[9666,10203],10204,10106,10107,10108,10109,10110,10111,10203,10204,0,0,0,0,0,0,0,0,10106,10010,10011,10012,10013,10014,10015,10107,10108,10109,10110,10107,10108,10109,10110,10111,0,0,0,0,[10106,9628],[3510,9817],[3962,9818],3575,4023,3511,3446,[3510,9823],[4026,9818],3575,4026,3447,3959,[3575,9823],[3511,9919],10011,10012,[3511,9914],[3510,9915],[3446,9916],[3446,9917],[4023,9918],[3512,9919],10015,10010,[3962,9914],[3446,9818],3448,4023,3447,3447,3578,3576,3510,3512,3510,4024,4024,3448,3962,3578,3448,4026,3575,3575,3511,3575,3512,3578,4023,3448,4026,4025,3510,3577,3578,3448,4024,3446,3578,4025,3578,3960,[3446,9631],[4026,9632],[10112,9629],0,0,0,0,0,0,0,0,0,0,0,9838,10027,[10028,9550],[3488,9643],[3937,9644],3936,3999,4000,4000,3425,3935,3936,3935,3999,4002,[3938,9841],[4000,9937],10031,10032,10033,[3233,10127],[3168,10128],[3233,10125],[3232,10126],10028,10029,10030,10031,10032,10033,[4001,10034],[3999,9839],[3167,4003],3167,3169,3233,3233,3170,3231,[3231,3872],3938,3999,[3168,3744],[3168,3745],[3168,3746],4000,3935,[3170,3811],3170,3170,[3234,3807],3937,4000,[3936,9550],[4000,9645],4000,[3169,3939],3170,3234,3231,[3170,9745],[3233,9746],4005,4005,3941,3941,3494,3941,[3168,3816],3168,3231,3168,3232,[3167,3878],3943,3943,3492,3492,[3169,3753],[3231,9547],[3232,9548],[3168,3806],3937,4000,[3168,4067],[3170,9646],[3935,9739],[4001,9740],4001,3678,3679,3937,3937,4001,3999,3938,[4000,9841],[3936,9842],[3232,9647],[3233,3878],[3234,4071],[3234,4072],[3234,3880,935],607,607,607,607,607,[4005,805],4006,3941,3943,3941,3942,3944,3942,[3231,3816],3167,[3233,4068],[3167,4071],[3170,4072],[3233,4073],3233,[3169,3940],3942,3559,3942,3943,[3168,3881],[3169,9547],[3999,9548],3938,3936,4002,3999,[3999,3046],[3938,3048,9553],[3941,9457],4005,3943,[3943,9452],[3935,9548],3999,3936,4001,[3999,9649],[4000,9650],[3232,9551],3167,[3231,4004],4005,3943,3943,4006,4007,[3169,3817],3169,[3232,3940],3944,4007,[3169,3881,9547],[3935,9548],3935,3999,3938,3999,[3938,9553],[3943,9554],[4005,9452],[4002,9548],4000,3425,3937,4002,3936,[4002,9553],[4007,9554],[3944,9357],[3941,9360],3941,3941,[3169,3945],3234,3233,[3167,3876],3944,4008,4005,4007,3942,4007,4006,3429,4008,4007,3944,4005,4006,[4007,935],607,607,[607,10124,9646],[3176,9835],[3999,3048,9836],3938,[3935,3046],[3999,2985],[3935,3110],3237,[3999,3241],3938,3682,3683,3936,4001,4000,3937,[4001,3110],3239,[3240,871],607,607,607,607,607,607,607,607,[3175,805],[4001,3303,806],[4002,3304,806],[3938,3111],[4000,2980],[3935,2981],[3937,2981],[4002,2981],3173,3238,[4000,3305],[4000,2980],[3935,2982],[3999,2983],[3936,2984],[3173,9841],[3175,9842],[4007,9647],3942,4008,4005,[4001,3945],3999,4000,3938,3938,4002,3937,3999,4002,4000,[4000,3813],[3938,3749],4007,[3941,9745],[3941,9746],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9712],[3914,9713],3977,3914,3977,3978,3977,3913,3978,3977,3977,3978,3914,3914,3978,3977,3914,3911,[4097,3849],4097,[4097,3782],3914,3978,3914,3914,3977,3977,3913,3977,3975,[4097,3785],[4097,3718],[4097,3719],3976,3914,3975,[4097,3719],3976,3978,3978,3977,3977,3975,[4097,3719],[4097,3723],4097,4097,[4097,4038],[4097,3849],4097,4097,4097,[4097,3783],3976,3914,3978,3978,3914,3914,3913,[4097,3979],4097,4097,[4097,3847],[4097,4039],3912,3913,3978,3913,3913,[4097,3979],4097,4097,[4097,3847],3912,3978,3913,3977,3977,3978,3913,3977,3913,3977,3914,3977,3975,[4097,3719],[4097,3786],4097,[4097,3783],3976,3977,3913,3914,3911,[4097,4042],[4097,4043],4097,4097,[4097,3718],3976,3913,3978,[3913,9622],[3977,9623],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9383],607,607,607,607,607,607,607,607,607,607,[3947,805],3950,3563,3562,3564,4011,3499,3948,[4012,806],3948,3949,3500,3947,3563,[3949,806],4011,3563,3950,3949,4014,3436,3499,[3949,807],607,607,607,607,607,607,607,607,607,607,607,[3500,997],[4012,934],[3950,816],3563,3500,3564,3499,3500,4011,3499,4012,4011,4014,3562,3562,3950,3630,3631,3563,4014,3563,3564,3564,3562,3947,4012,4012,[3949,871],607,607,607,607,[3949,997],[3562,934],[3949,816],4011,3950,3948,3948,3948,4013,3436,3499,4011,3562,3499,3562,3947,4013,4014,3950,4014,3499,3948,3499,4013,3499,3563,3564,4012,3949,4014,4011,4012,3564,4014,3564,4012,3949,3564,3628,3629,[3562,806],[3562,806],[4013,807],607,607,607,607,607,607,607,607,607,[607,9473],9474,0,0,0,10203,10204,10205,10206,0,0,0,0,0,0,0,0,0,0,0,0,10106,10107,10108,10109,10110,10111,10203,10204,10205,10206,10203,10204,10205,10206,0,0,0,0,0,9724,9913,[3575,9914],[3576,9915],[3448,9916],[3576,9917],[3447,9918],[3960,9919],[3576,9914],[3578,9915],[3448,9916],[3512,9917],[4026,9918],[3959,9919],10015,10107,10108,10010,10011,10012,10013,10014,10015,10111,10106,[10010,9532],[3960,9721],[3577,9722],3578,4023,4025,3578,4024,3576,3960,3447,3959,3961,3575,3511,3511,3962,3447,4026,4024,4023,4023,3446,4024,3578,3446,3575,3578,3446,3575,3511,3577,3511,3446,4025,3446,3575,3578,[3578,9727],[3448,9728],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,[10124,9646],[3486,9739],[4002,9740],4002,[3175,4065],[3174,4066],3938,3938,[3176,4066],3999,3935,3935,[3936,9841],[4000,9937],10033,[3167,10127],[3234,10128],[3169,10129],[3169,10223],[3167,10224],[3168,10221],[3232,10222],[3167,10124],[3231,935,10125],[607,10126],[607,10127],[607,10128],[3937,869,10129],3936,4001,3938,[3170,3744],[3232,3746],[3169,3810],3231,3170,3169,3234,[3168,3806],3938,3938,4000,3936,3936,4001,[3167,3875],3231,3231,[3231,3998,9552],4002,3999,[4002,9646],[3935,9835],[3936,9836],3935,[3170,3809],3233,3167,[3168,9841],[3170,9842],3942,4007,3494,3941,3430,4005,3941,[3168,3815],3169,3232,3234,3233,[3232,4004],3943,3557,3429,[3492,9550],[3234,9739],[3168,9740],[3168,3934],3937,[3234,3811],3168,[3234,9646],[4000,9835],[3935,9836],3938,3999,3937,4002,4000,4001,3938,[3938,9649],[3937,9650],[9938,9551],[3168,3816,9743],3170,3170,3231,3170,[3167,807],607,607,607,607,[3941,869],3942,3942,4006,4006,4008,4008,3431,[3170,4009],3169,3234,3170,3168,3231,3170,[3170,4004],4008,4006,3942,[4006,9357],[3234,3945,9550,9360],[3938,9643],[3936,9644],[4001,3045],[4001,2981],[3936,2981],[4000,2981],3173,[3999,3241],[3936,9553],[4008,9554],[3942,9452],[3937,9548],3937,3553,4001,[3935,3046],[4002,2985],[3936,9553],[3168,3751,9457],[3170,3752],4008,4008,3944,[3941,9357],[3943,9358],[3941,9359],[3169,3881,9360],[3231,3813],3622,3623,4008,[3941,9739],[3935,9740],3935,3999,3935,4001,3999,[4000,9553],[3936,9548],4002,4000,3999,3938,3937,3935,3937,[4002,9553],[4001,9453],[3488,9456],[3943,9457],3944,[3233,4009],[3167,9357],[3231,9360],[3167,3940],4005,4008,4008,3941,4008,4008,3944,4008,4007,4007,[4006,815],[4005,870],[4005,1002],[3943,999],607,607,[3943,805,9742],9931,[3237,9932],[3936,2981,9933],[3175,9934],[4001,3241,9836],3937,[4000,3236],3174,[3937,3048],3937,3935,3936,3937,[4002,3046],[3937,2981],[4000,3047],[3937,3236],[3174,935],607,607,607,607,607,607,607,607,[3176,869],[4001,3047],3937,3553,[3999,3109],[3937,3304],3237,3238,[3936,3302],[3938,3111],[4002,3046,9841],[3176,9933],[3240,9934],[3175,9935],[3174,9936],[3175,9937],9938,[4001,9743],[4002,3877],[3938,4071],[4002,4072],[4000,3880],3936,3936,3999,4000,3936,[3936,3813],[4001,3750],[4002,3751],[4001,3752],4008,3620,3621,4008,[4008,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9712],[3914,9713],3978,3914,3977,3914,3978,3977,3977,3978,3913,3913,3978,3978,3977,3978,3977,[4097,3979],4097,4097,[4097,3846],3913,3914,3914,3978,3977,3977,3978,3978,3977,3975,3976,3914,3977,3978,3914,3913,3978,3913,3914,3914,3978,3914,3914,[4097,3979],4097,4097,4097,4097,4097,[4097,3718],[4097,3719],3976,3914,3977,3913,3913,3913,3913,3913,3975,[4097,3723],4097,4097,4192,[4097,3782],3977,3914,3913,3978,3975,[4097,3785],4097,4192,[4097,3974],3977,3913,3914,3977,3913,3911,[4097,4042],3912,3914,3977,3978,3977,3978,3975,[4097,3719],3976,3978,3914,3977,3911,[4097,3849],4097,4097,[4097,3784],[4097,3719],3976,3913,3977,3978,[3978,9718],[3977,9719],9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,[4014,805],[3947,806],4014,3564,3562,3562,3562,3564,4014,3500,3947,3563,4013,3564,3499,3947,3437,4014,4011,3950,3436,3563,4014,3949,3562,[4012,806],[3949,806],[3499,806],[4014,807],607,607,607,607,607,607,607,607,607,[3948,869],4014,3947,3500,3562,3948,3500,3948,3500,3562,3562,4013,3563,4012,3694,3695,3499,3498,3500,3563,3564,3564,3563,3950,3950,[3435,935],607,607,607,607,607,607,[3435,869],3950,3499,3500,3563,4011,3948,3949,3500,3499,4013,4014,3563,3563,4014,3563,3499,3499,3562,3948,3564,3562,3499,4014,4013,3950,3563,3947,3950,3500,4014,3947,4013,4014,4011,4011,3692,3693,3500,4013,3948,[4014,806],[3499,807],607,607,607,607,607,607,[607,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10203,10204,10205,10206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9820,10009,10010,10011,10012,10013,10014,10015,10010,10011,10012,10013,10014,10015,10111,10203,10204,10106,10107,10108,10109,10110,10111,0,0,[10106,9628],[4024,9817],[3448,9818],3578,3959,3578,3961,3512,4024,[3959,9823],[3448,9818],3575,4025,3446,3510,[3447,9823],[4024,9915],[4024,9916],[3961,9818],4026,3447,3447,3510,3577,3575,4023,4025,3959,3513,3447,3961,4023,3574,3962,3577,3961,3578,4025,[3447,9823],[3576,9824],9629,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3487,9643],[3240,4066,9644],[3176,3873],3175,3240,[3176,4062],[3175,3874],3175,[3174,3998],4002,[3936,9649],[4002,9650],[10033,9551],[3232,10129],[3234,3807,10223],[3168,3744,10224],[3169,3746],[3234,3747],[3233,3807],[3167,3743],[3169,3747],3233,[3233,871,10221],[607,10222],[607,10223],[607,10224],[4002,869],4000,3999,4001,4002,3937,[3232,4003],3167,3234,3232,3234,[3169,3870],3935,3935,4002,3937,3935,3938,[3232,3939],3231,[3170,3807],[4000,9648],[3938,9551],[3938,3814],[3938,3749,9742],9931,[3938,9932],[3937,9933],[3167,3811,9934],[3167,9935],[3232,9936],[3232,9937],9938,3943,3941,4007,3495,3493,3942,3493,3558,[3167,3750],[3170,3752],[3167,3815],[3170,3813],4007,3558,3492,3944,[4006,9646],[3170,9643],[3232,9644],[3234,3871],3999,[3234,3875],3231,[3234,9742],9931,[3937,9932],[3937,9836],3936,3936,4001,3999,4000,3936,[4002,9745],[4001,9746],[3944,10034,9647],[4006,9839],[3167,3750],[3232,3752],[3234,3816],3231,[3170,871],607,607,607,[3942,805],3941,4006,3942,4006,3943,4007,4008,4007,3942,[3168,3816],3170,3232,3232,[3167,9357],[3169,9358],[4008,9359],[4006,9360],4008,[4006,9547],[3999,9453],[3937,9456],[3938,9548],4000,[3935,3300],[3935,3301],3237,3175,3238,[3935,3112],4002,[3935,9553],[3938,9548],3937,3937,4000,[4000,2980],3173,[3937,3241],3936,[4001,9553],[4006,9554],3941,4006,[4008,9547],[3937,9453],[3999,9454],[4000,9455],[3935,9456],[4007,9457],3686,3687,[4007,9547],[3999,9548],4000,[4000,2980],[4002,2981],[4000,3048],3938,4001,4001,3999,4000,4000,3937,3935,3937,3999,[4001,3045],[4000,2981],[3938,3047],3999,[3935,9553],[4007,9457],[3944,9452],[4000,9453],[4002,9456],[3944,9457],3943,3942,4005,[3941,9357],[3941,9360],3942,3942,3941,4006,3941,[3944,871],607,607,607,607,607,[4008,869,9838],[4005,10027],10028,10029,10030,[3173,9932],[4002,3047,9836],[4000,3109],3237,3174,[4001,3048],3938,4002,[4000,2980],3173,3238,[4002,3305],[3937,3110],[3240,935],607,607,607,607,607,607,607,607,[3175,933],[4001,3241],4001,3937,[3936,3046],[3938,2981],3173,[3999,3241],[3938,3045],[3936,2981,9841],[3240,9937],10029,10030,10031,10032,10033,[4001,10034],[3999,9839],4000,3935,[4002,3748],[3999,3750],[3938,3751],[3938,3752],[4002,3815],3937,3935,[3936,3812],3431,3944,4005,3941,3684,3685,4007,[4007,9649],[3941,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9808],[3914,9809],3914,3913,3978,3977,3914,3913,3913,3914,3913,3913,3914,3914,3913,3914,3911,[4097,4043],4097,4097,[4097,3910],3977,3913,3977,3978,3914,3977,3977,3913,3913,3913,3914,3978,3978,3978,3913,3978,3914,3914,3977,3977,3977,3914,3914,3975,[4097,3719],[4097,3785],4097,4096,4097,[4097,4038],3912,3978,3914,3913,3978,3977,3913,3913,3913,3978,3975,[4097,3719],[4097,3786],4097,[4097,3910],3977,3978,3913,3978,3978,3975,[4097,3720],[4097,3722],3976,3977,3913,3977,3977,3977,[4097,3787],4097,[4097,3974],3914,3978,3978,3978,3977,3914,3913,3978,3978,3978,3913,[4097,3979],4097,[4097,3784],[4097,3723],[4097,4038],[4097,4039],3912,3914,3977,3913,3913,[3978,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9477],607,607,607,607,607,607,[3950,869],3498,3499,3563,3950,4011,4011,4011,4013,4011,3562,3562,3500,4013,4013,3948,3562,4011,4014,3500,4014,3950,3563,4014,3950,3562,3564,3562,4014,[3563,806],[3948,807],607,607,607,607,607,607,607,[3947,933],3562,3948,3499,3947,3949,4012,3437,3948,4011,4011,3499,4012,3563,3499,3949,3500,3950,3949,3500,4011,4012,3947,3500,3948,3500,[3500,806],[3949,807],607,607,607,607,[4013,933],3562,3947,3499,3950,4011,3563,4011,3499,3500,3563,3498,3562,3564,3564,4014,3563,4014,3949,3564,3564,3950,3949,4013,4014,4013,3436,4013,3500,3948,3500,3564,4014,3562,4011,3948,3947,3948,3564,3950,3949,3499,[4014,871],607,607,607,607,607,607,[607,9572],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10106,10107,10108,10109,10110,10111,10106,10107,10108,10109,10110,10111,0,0,0,0,10203,10204,10205,10206,0,0,0,9724,9913,[3448,9914],[4023,9915],[4025,9916],[3960,9915],[3512,9916],[3574,9917],[4024,9918],[4024,9919],[3575,9914],[3448,9915],[3447,9916],[3448,9917],[3510,9918],[3448,9919],10011,10012,[3512,9914],[4025,9818],3511,3962,3578,4024,3577,3447,4025,3575,3959,3578,3446,3446,3447,3962,3447,3578,3446,[3959,9823],[3447,9919],9920,9725,0,0,0,0,0,0,0,0,0,0,0,0,0,9742,[3239,9739],[3239,9740],3175,3238,3174,3175,3239,[3174,3742],3935,3935,[3936,9745],[3935,9746],[3167,10129,9647],3169,[3233,3872],[3170,4063],3999,3936,3935,4000,[3234,4067],3169,[3234,871],607,607,607,[4000,997],[3999,1001],[4002,1005],[4002,1001],[3999,1002],[3935,1003],[3169,4003,934],[3231,816],3168,3169,3168,[3169,3934],4002,3999,4002,4002,[3234,4065],[3170,4066],[3233,4067],3170,[3167,3806,9841],[4000,9842],[3935,3749,9647],4005,[3492,9838],[3944,10027],10028,10029,10030,10031,10032,10033,[4006,10034],4008,3941,3493,3556,3493,3492,3492,3943,3494,3495,3492,3557,3943,3558,3494,3943,[4009,9742],[3168,3742,9739],[3169,3747,9740],3234,[3233,3998],[3233,3939],3169,[3167,9838],[3232,10027],[10028,9550],[4000,9643],[4002,9644],3937,3937,3938,3937,4002,4001,[3999,9553],[3941,9554],3942,3559,3941,3943,[3233,3750],[3167,3752],[4007,807],607,607,[3943,869],3431,4008,4008,[3233,4070],[3167,4071],3941,4007,4006,4008,3944,[3168,3750],[3232,3751],[3231,3752,9547],[3936,9453],[3937,9454],[3938,9455],[4000,9456],[4006,9550,9457],[3937,9739],[3616,9740],3617,3936,3488,4002,3938,[3936,3236],3238,[3937,3305],4002,3937,4002,3938,[3938,3046],[3935,2981],[3938,2981],3173,3238,[4000,3112],3361,[3938,9649],[3936,9650],[4005,9551,9357],[3942,9550,9360],[4000,9643],[4001,9644],3489,3936,3999,[3938,9553],[4007,9457],[3941,9547],[3937,9548],3936,3937,[4000,3236],3240,[3938,3241],4000,[3999,3046],[4002,2981],[3937,2981],[3935,2981],[4002,2981],[4001,2981],[4002,2981],[4000,2981],[4002,3048],[4001,3236],3239,[3935,3241],3938,3999,[3935,9553],[3936,9548],3999,3550,[3936,9553],[3944,9457],[3944,9357],[3944,9452],[3935,9453],[3937,9456],[3944,9457],3943,4008,4007,4008,[3941,935],607,607,607,607,607,[3944,933],3942,[3428,10124],[3942,10125],[3428,10126],10028,[3937,3241,9932],[3999,9836],[3936,3109],3237,3174,[4000,2981],[4000,2981],3173,3238,[3999,3111],3938,3935,[3937,3044],[3240,807],607,607,607,[3175,805],[3238,806],[3238,806],[3938,3303,806],[3938,3304],[3937,3111],4002,[3936,2980],3173,3238,[4000,3303],[4002,3305],[3938,3236,9841],[3176,9937],10033,[3936,4004,10125],[3942,10126],[4007,10127],[3944,10128],[3935,10129],3999,3938,4000,[3938,3814],4007,4005,4008,3943,3943,[4002,3753],4002,[4002,3940],4007,4008,4008,4008,4005,3428,3942,[3938,4072,9745],[3938,4072,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3913,9905],[3913,9809],3977,3914,3978,3978,3913,3913,3914,3913,3913,3977,3913,3913,3911,[4097,3849],4097,4097,4097,[4097,3974],3914,3913,3913,3913,3914,3913,3913,3913,3913,3977,3977,3977,3977,3977,3977,3914,3977,3914,3913,3978,3978,3913,3977,3914,3977,[4097,3979],4097,4097,4097,4097,[4097,3782],3914,3978,3913,3978,3914,3913,3978,3913,3914,3914,3913,3975,[4097,3719],3976,3914,3914,3914,3977,3914,3913,3978,3978,3977,3913,3914,3913,3913,3977,[4097,3915],4096,[4097,3847],[4097,4039],3912,3914,3978,3977,3913,3914,3977,3978,3978,3977,3975,[4097,3719],3976,[4097,3979],4097,4097,[4097,3782],3977,3914,3913,3913,[3977,9622],[3913,9623],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,[3562,933],4012,4013,3950,3499,3564,3499,3563,3562,3562,3563,3563,4012,3949,3563,3562,3500,3947,4013,3562,4014,3499,3499,3562,3947,3500,3948,4011,4014,3564,[3948,871],607,607,607,607,607,607,[3436,805],3947,3499,3947,3562,3563,4013,3950,4011,3564,3499,3500,3437,4011,4014,4013,3947,3563,3562,4013,3563,4011,4011,3948,3564,3564,3500,3948,[3949,871],607,607,607,[4014,805],3949,3437,4013,3562,4014,4011,3947,3500,4012,4011,3564,4013,3947,3562,3562,3563,3564,4013,3947,3562,3950,3563,3948,3499,3499,3499,4012,3500,3564,3500,3499,3564,3564,4012,4014,3947,4012,3434,3563,4011,4012,3949,[4011,935],607,607,607,607,607,607,[607,9572],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10203,10204,10205,10206,0,0,10203,10204,10205,10206,0,0,0,0,0,0,0,0,0,0,0,0,9820,10009,10010,10011,10012,10011,10012,10013,10014,10015,10010,10011,10012,10013,10014,10015,10107,10108,[10010,9532],[3962,9721],[3960,9722],4023,3448,4026,3510,4026,4024,3448,3959,3576,3510,3577,4025,4023,[4023,9823],[3447,9917],[3446,9918],[3574,9919],10015,10016,9821,0,0,0,0,0,0,0,0,0,0,0,0,0,9547,[3239,3810,9548],3176,3176,3239,3175,3238,3174,[3239,3998],4002,3488,3937,[4002,9553],[3233,9457],3167,3167,3233,[3169,3998],3361,3487,[3169,4003],3169,3170,3232,[3169,807],607,607,607,607,607,607,607,[607,9841],[607,9933],[3168,869,9934],[3167,9836],3167,[3168,3807],[4002,9841],[3935,9933],[3935,9934],[4001,9836],[3167,3874],3167,3169,3234,[3231,9841],[3232,9937],9938,[4007,9743],3943,3944,3492,[3943,10124],[4006,10125],[3944,10126],[3943,10127],[4008,10128],[4006,10129],3558,3492,4007,3556,4008,3494,3428,3494,3558,3558,3558,4008,3556,4006,3941,3943,4006,[3232,4073,9452],[3232,3998,9548],3936,[3167,3809],[3232,3998],3936,[3233,3810],3234,3231,[3169,10124,9646],[3239,3872,9643],[3938,9644],3938,4001,3425,3938,4002,4002,[3935,9745],[4002,9746],[3941,9551],3942,3943,3942,[3943,815],[4005,870],[3944,999],607,607,[3941,997],[4008,998],[3942,934],[3231,3880,816],3170,3168,[3169,3877],[3168,4071],[3170,4072],3941,3941,3942,[4005,9550],[3938,9643],[4000,9644],3936,4000,3937,[3937,9553],[4002,9548],3680,3681,3938,4002,4000,3999,[4000,3236],3174,[4001,3047],4001,3936,4000,4002,[3937,3109],[3937,3302],3237,3238,[3935,3112],3938,3935,4001,[4000,9553],[4000,9453],[3937,9456],[3935,9548],4000,[3935,3045],[4000,2985],4000,3938,[3936,9553],[4002,9548],3937,3936,3936,[4000,3300],3237,3174,[3938,2981],3173,3238,[4002,3304],[3999,3304],[3935,3302],[3938,3301],[3935,3304],3237,3174,3173,3176,[3938,3241],3999,3935,4001,3999,3938,3935,4002,[3938,9553],[3938,9453],[4002,9548],3552,3935,[3937,9553],[3944,9457],[3944,9357],[4008,1001,9360],[4007,1002],[3944,999],607,607,607,607,[3941,805],3624,3625,4007,[3943,10221],[3944,10222],[3557,10124],10028,[4002,2981,9932],[4000,3048,9836],[3936,3110],3237,3176,3238,[3999,3304],[4002,3111],4001,3935,3938,[3937,3108],[3175,871],607,607,607,[3176,869],3238,[3937,3111],3425,4002,3938,[3937,3045],3173,3238,[4001,3111],3937,[3937,3046,9745],[3175,9746],[10033,9551],[4002,10129],[4001,3877,10221],[3941,10222],[3944,10223],[3943,10224],[4002,3749],[4002,3750],[3999,3751],[4001,3752],3941,3943,3942,3495,3942,[3944,9841],[3937,3817,9935],[3937,9936],[3938,4004,9836],4008,3941,[3937,4069],[3937,4070],[4001,4071],[3938,4072],[3999,3879],[3938,9649],[3999,9650],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,[10001,9523],[3913,9616],[3978,9617],3977,3914,3914,3977,3978,3977,3977,3913,3978,3978,3914,[4097,3787],4097,4097,4097,4097,[4097,3782],3913,3914,3977,3977,3977,3913,3914,3913,3978,3977,3913,3978,3913,3977,3978,3914,3913,3978,3913,3913,3914,3914,3914,3977,3978,3975,[4097,3722],[4097,3723],4097,4097,[4097,3910],3977,3913,3914,3914,3977,3914,3978,3913,3914,3914,3913,3977,3914,3977,3977,3913,3978,3977,3978,3978,3978,3978,3913,3978,3978,3913,3914,3914,3975,[4097,3785],4097,4097,[4097,4038],[4097,4041],[4097,4042],[4097,4040],[4097,4041],[4097,4042],3912,3978,3977,3977,3977,3978,3978,3975,[4097,3786],4097,[4097,3846],3977,3913,3978,3977,[3914,9718],[3978,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,[4013,997],[3563,934],[3564,816],3947,3562,3434,3564,3950,4012,3950,3948,3947,4011,3562,4011,3948,3564,4011,3947,3564,4013,4012,3947,3948,4012,3949,3562,3499,3947,4011,[3563,935],607,607,607,607,607,[3949,805],3562,3499,3947,3499,3948,3948,3562,3562,3950,3950,3562,4014,4014,3564,3500,3947,3948,3948,4011,3950,4011,3562,4013,4014,3948,3499,3500,4014,[4013,935],607,607,607,[3562,869],4013,3500,3563,4012,3948,4011,3500,3949,3500,3500,3948,3947,3500,3562,4013,3563,3500,3949,3949,3563,4012,3949,3562,3947,3436,3563,3562,3564,4014,3947,4011,3563,4012,3948,4012,4013,3500,3500,3434,4014,3562,4013,[4012,871],607,607,607,607,607,607,[607,9668],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10106,10107,10108,10107,10108,10109,10110,10111,10106,10107,10108,10109,10110,10111,10203,10204,[10106,9628],[3447,9817],[3446,9818],4026,3959,3446,3577,4026,3577,[3446,9823],[4025,9917],[3961,9918],[3574,9915],[4025,9916],[3511,9917],[4025,9918],[3959,9919],10013,10014,10015,10111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9550,[4001,9643],[3935,9644],[3239,3743],[3239,3744],[3240,3745],[3175,3746],[3175,3744],[3176,3746],3999,3937,4001,3935,3936,[4002,9553],[3169,9554],[3169,9357],[3232,9360],[3168,3872],[3233,4066],3999,3936,[3231,3743],[3168,3747],3167,3169,[3233,3808,806],[3169,3810,806],[3234,806],[3234,806],[3170,806],[3167,806],[3233,807,9841],[607,9937],10029,10030,[3170,9932],[3234,9935],[3233,3998,9936],[3936,9937],10029,10030,[3167,3874,9932],[3169,9836],3231,3233,[3169,9841],[3168,9937],10033,[3944,10034],[4008,9839],4005,3941,3492,4007,[3495,10221],[3494,10222],[3494,10223],[3556,10224],3558,3558,3557,3557,3494,3942,3557,3493,3943,3494,3942,3493,4007,[3231,4071],4008,4006,3944,[3231,3880,9547],[3168,9548],[3170,3998],3552,3936,3935,3551,3936,[3233,3744],[3167,3745],[3168,3746,9646],[3240,9739],[3175,4062,9740],[3238,4066],3937,3999,3935,3999,3938,[4001,9649],[3935,9650],[4005,9647],3620,3621,3942,[4007,871],607,607,607,607,607,607,607,[3170,869],3170,3169,3232,3168,3168,[3232,3877],4008,3429,[4007,9742],[4001,9739],[4000,3045,9740],[4001,2985],4001,[4001,3046],[4000,2981],[4001,2985],3935,3999,4001,4002,[4001,3045],[4000,2981],3173,3240,3174,[4000,2981],[3999,2981],[4000,2985],3937,3938,3935,[4000,3236],[4000,3241],4000,[3999,2980],[4002,2981],[4002,3047],4000,3616,3617,3937,[4000,3045],3173,[3999,3241],3938,3937,3935,4001,3999,3999,[3938,3046],[3936,2981],3173,3238,[3935,3301],[3936,3304],[3937,3112],4001,4000,4000,4002,3936,[3999,3110],[4000,3303],[4000,3304],3237,3174,[4001,3047],3937,3935,4000,4000,3999,4000,3937,3618,3619,3938,4001,3935,[3938,9553],[4000,9453],[3937,9456],[607,9554],607,607,[3943,805],[3941,806],[3943,806],4008,3688,3689,3942,3942,4006,4008,[3557,10124],[10028,9550],[4001,3049,9643],[3938,9644],[3935,3236],3240,[3999,3241],3935,3425,3936,[3999,2980],[3937,3048],[4000,3172],3175,[3239,806],[3239,806],[4000,3303,806],[4002,3304],[3999,3305],4002,3935,[4001,3046],[3935,2981],3173,3238,[3935,3305],4002,[4000,3046],[3176,9841],[3175,9842],[3936,10129,9647],4000,4002,[3937,4068],4006,3944,4007,3941,4006,4006,3943,3944,3944,3941,[3941,9841],[3941,9937],10031,10032,[4068,9932],[3944,9836],[4002,4009],3936,3936,4002,4000,[4000,3814],[3937,3749,9745],[3943,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10097,9619],[3914,9712],[3977,9713],3977,3914,3977,3913,3978,3913,3913,3978,3913,3913,3977,[4097,3915],4097,4097,4192,4097,[4097,3910],3978,3913,3914,3913,3978,3978,3978,3914,3913,3977,3913,3978,3914,3914,3914,3913,3978,3913,3977,3977,3978,3977,3914,3978,3977,3977,3978,[4097,3787],4097,4097,[4097,4038],3912,3978,3978,3914,3913,3913,3914,3914,3914,3978,3977,3978,3913,3977,3913,3913,3977,3914,3977,3978,3978,3978,3978,3913,3978,3914,3978,3913,3978,3975,[4097,3719],[4097,3785],4097,4097,4097,4097,4097,4097,[4097,3848],3912,3978,3911,[4097,4039],3912,3977,3911,[4097,4043],4097,[4097,3910],3977,3913,3977,3914,[3978,9814],[3913,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9768,[607,9573],607,607,607,607,607,607,607,607,[3564,869],3949,3947,4013,4011,3435,3500,3948,4013,3563,4012,3562,3436,3948,3500,3564,3563,3948,3950,3949,3564,3948,3499,3947,3437,3500,[3564,815],[3564,870],[3564,999],607,607,607,607,607,[4011,933],3949,4011,4012,3950,3499,3563,4012,4011,4012,3564,4014,3947,3499,3499,4013,4013,3949,4011,3948,3947,3562,3499,[4012,815],[3564,870],[4013,1001],[4011,1002],[3563,1003],[4011,1004],[4011,999],607,607,607,[3562,869],3562,3563,3437,3950,3563,3947,3948,3563,3500,3564,3563,3500,3563,3562,3499,3947,3499,3949,3499,4012,4014,3564,3500,3435,3949,3563,3499,3499,3564,3563,3948,3500,4013,3950,3564,3498,3948,3562,4011,3436,4013,3948,[3563,871],607,607,607,607,607,607,[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10203,10204,10203,10204,10205,10206,0,0,10203,10204,10205,10206,0,0,0,9724,9913,[3962,9914],[3575,9915],[3511,9916],[3448,9915],[3577,9916],[3962,9917],[4025,9918],[3960,9919],10013,10014,10011,10012,10013,10014,10015,10109,10110,10111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3552,9739],[3936,9740],3937,3999,3935,3936,3425,3938,3999,3999,3999,4000,3999,3937,[4000,9553],[3937,9453],[3935,9456],[3169,9457],3233,[3170,3871],[3170,4064],3999,3936,[3233,3744],[3167,3745],3935,[3234,4003],3231,3167,3232,[3233,9841],[3234,9937],10033,[3941,10125],[3942,10126],10028,10031,10032,10033,[3942,10125],[4007,10126],10028,[3170,9932],[3232,9935],[3232,9936],[3233,9937],10033,[3942,10129],3558,3558,3493,3944,3557,3942,3558,3943,4006,3558,3558,3943,3492,3942,3942,4006,[3169,4072],3557,3556,3493,3558,3558,[3170,3817],3168,[3234,3878],[3232,4071],[3231,4072,9550],[3234,9643],[3232,9644],[3168,4062],[3168,4065],3999,3489,3938,4000,[3232,4064],[3170,4065],[3169,4066,9646],[3176,9835],[3175,9836],3174,[3239,3806],4001,3936,4001,3361,[3935,9745],[3937,9746],[3559,9743],3684,3685,4006,[3167,4072,935],607,607,607,607,607,607,607,[3170,3750,933],[3234,3751],[3232,3752],[3233,3816],3231,3232,3167,[3231,4004],4007,[4006,9452],[4000,9548],[3935,3236],[4001,3241],[3936,3045],3173,3238,[3999,3112],3936,4001,[4001,3046],[4001,2981],3173,3238,[4002,3301],[3935,3302],[3935,3304],[4001,3304],3237,3174,[4002,2981],[3999,3047],3935,[3937,3236],[3999,3241],4000,[3935,3300],3237,[4001,3241],4002,3680,3681,3937,[4000,3236],3238,[3938,3111],3937,3999,4002,4002,4001,3936,[3937,3110],[3937,3302],[4002,3304],[4002,3111],3999,3935,4001,3937,3935,3361,3937,4001,3999,3999,3936,[4001,3300],3237,3174,[4000,2981],[4001,2985],3937,4000,4001,3938,3935,3682,3683,3937,4001,[4002,3045],[3999,2985],3936,4001,[3935,9650],[3943,806,9551],[3943,806],3944,4007,3944,3944,[4005,815],[4008,870],[3941,816],3943,3943,4005,3943,[3943,10124,9646],[3175,9739],[3935,2985,9740],[3935,3109],3237,3174,[3936,2985],3936,[3937,2980],3173,[3937,3241],[3935,3300],[4002,3301],[4002,3302],[3999,3111],3935,4001,3999,3999,[3936,3046],3173,3238,[4002,3304],[3936,3112],[3938,2980,9841],[3936,2981,9933],[3238,9934],[3174,9937],9938,[3944,9743],[3999,3816],3935,3937,[3935,3812],[4006,9841],[3944,9933],[4006,9934],[4005,9836],4007,3429,[4006,9841],[4008,9933],[3944,9934],[3941,9937],10033,[607,10127],[607,10128],10028,[3944,9932],[3936,3879,9836],3938,4002,[4002,3814],[3937,3749],4005,[3942,9841],[4007,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9808],[3977,9809],3978,3914,3914,3977,3913,3914,3913,3914,3978,3913,3978,3975,[4097,3785],4097,4097,4097,[4097,4038],3912,3977,3913,3978,3913,3913,3978,3978,3978,3913,3977,3977,3977,3914,3914,3913,3914,3978,3978,3913,3914,3913,3913,3977,3977,3913,3978,[4097,3915],4097,4097,4097,[4097,3847],3912,3914,3914,3978,3914,3914,3914,3978,3914,3913,3914,3914,3978,3977,3977,3913,3978,3978,3978,3977,3911,[4097,4040],3912,3914,3913,3913,3977,3977,3977,3977,3975,[4097,3719],[4097,3785],4097,[4097,3718],[4097,3785],4097,4097,[4097,3847],[4097,4039],[4097,3849],4097,[4097,3847],3912,[4097,3979],4097,[4097,3783],3976,3977,3914,3977,[3914,9622],[3913,9623],[9911,9524],9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[9864,9477],[607,9669],607,607,607,607,607,607,607,607,[3562,933],4012,3947,4011,3435,4013,4012,4011,3949,4012,3499,3950,3562,3950,3947,4013,3562,3947,4012,3562,4013,4014,3948,3498,3500,3947,[3949,871],607,607,607,607,607,607,607,[3949,997],[3947,998],[3562,934],[3949,816],3500,3499,4013,4011,3564,4011,3949,4014,3437,3435,3562,3500,3562,3562,3563,4013,4011,3500,3499,[4011,871],607,607,607,607,607,607,607,607,[4014,805],4011,3948,3949,4011,4011,3564,3564,3563,4014,3948,3500,3948,3950,3563,4012,3436,3949,4014,3437,3947,4011,3500,3563,4012,3949,4012,3947,4013,3948,3950,3950,4013,3499,3948,4011,4014,3564,4012,3563,3950,3500,4014,3562,[4011,935],607,607,607,607,607,[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9820,10009,10010,10011,10012,10011,10012,10013,10014,10015,10109,10110,10107,10108,10109,10110,10111,10205,10206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9451,9452,[3488,9548],4002,3938,4002,3936,3999,3937,3935,3936,3999,4001,3618,3619,3999,3935,3935,[3999,9649],[4000,9650],[3168,9551],3234,3233,[3170,3872],3999,3553,4000,[3167,4063],[3169,3874],3168,3167,[3233,9649],[3233,9650],[10033,9551],[3944,10129],[3558,10221],[3941,10222],[3168,4073,10124],[4004,10127],[3944,10128],[3943,10129],[3233,3879,10221],[3167,3877,10222],[4005,10124],10028,10031,10032,10033,[4008,10129],3944,3494,4008,3431,3558,4008,[3233,4071],[3232,4072],3557,3556,3556,3942,3557,3494,3430,4007,[3231,3879],3167,[3233,3877],3943,3557,3492,3493,[3169,3881],3170,3170,3233,[3233,9646],[3234,9739],[3168,9740],3170,3167,[3234,3998],3937,4000,[3231,3873],3232,3234,[3168,9742],9931,[3174,9932],[3238,9836],[3175,3934],3938,3553,4002,3999,3938,[3935,9553],[3943,9554],[3559,9357],[3234,4072,9360],[3232,3880],3233,[3234,3812,807],607,607,607,607,607,607,[3944,869],4007,3942,3941,[3233,3753],3169,3234,[3231,3877],[3943,9547],[3938,9548],3938,[3999,3236],[3935,3241],[4000,3236],3239,[3937,3241],3935,[3936,2980],[4002,2981],3173,3238,[4001,3302],[4000,3111],3999,3935,3489,3938,[4000,3300],[4001,3304],3237,3174,[3935,2981],3173,[3936,3241],3938,3938,[4001,3236],[3936,3241],[3938,3046],[3999,2981],[4000,3048],3937,[4002,3236],3174,[4001,3048],4002,[4000,2980],[4002,2981],[4002,3047],3937,3937,3938,3999,4000,3937,4002,4000,3938,[3937,815],[4001,1001],[3935,1002],[4000,1003],[3936,1004],[3937,1005],[3938,934],[3935,816],4002,[4002,3300],[4002,3304],3237,3174,[4000,2981],[3937,2981],[3937,3048],3361,3936,3936,3935,[3938,2980],[4000,2981],3173,[3937,3241],4002,[4000,9649],[3937,9650],[4005,9647],[4006,815],[3941,870],[4005,1003],[3941,1004],[4005,998],[3942,999],607,[3941,869],3620,3621,4008,4007,[3943,9547],[3174,9548],[3936,3112],3999,[3936,3110],3237,3174,[3935,2981],3173,3238,[3936,3305],4002,3938,3937,3937,3938,3936,[3938,3046],[3938,2981],3173,3238,[3999,3305],[3999,3045],[4001,2981,9841],[3238,9937],10029,10030,10033,[3944,10034],[4007,9839],[3935,4009],3936,3935,[4000,3876,9841],[4008,9937],10029,10030,[3944,9932],[3943,9935],[3942,9936],[3943,9937],10029,10030,10033,[607,10129],[607,10223],[607,10224],[607,10124],[10028,9550],[4001,9643],[4001,3813,9644],[4001,3749],3941,4006,[3943,9841],[3943,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3978,9905],[3914,9809],3978,3977,3978,3914,3914,3978,3914,3913,3914,3913,3977,3975,[4097,3722],[4097,3723],4097,4097,[4097,3974],3977,3913,3977,3977,3913,3913,3913,3913,3977,3978,3914,3913,3914,3913,3978,3913,3913,3977,3977,3913,3914,3977,3914,3978,3913,3914,3975,[4097,3786],4097,4097,4097,[4097,3782],3977,3978,3914,3913,3978,3977,3978,3978,3978,3913,3977,3913,3914,3914,3977,3914,3914,3914,3977,[4097,3979],4097,[4097,4038],[4097,4042],3912,3913,3977,3977,3914,3977,3914,3913,3975,[4097,3719],3976,3975,[4097,3786],4097,4097,4097,4097,4097,4097,[4097,3848],[4097,3849],4097,[4097,3974],3977,3977,3977,3914,[3978,9718],[3978,9719],[10007,9620],9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9960,9573],[607,9765],607,607,607,607,607,607,607,607,[3562,997],[3562,934],[4013,816],3500,3564,3562,3499,3434,3948,3563,3564,3948,3950,3562,4013,3949,3562,3950,3500,3499,4013,3499,4011,4011,4013,3948,[3950,935],607,607,607,607,607,607,607,607,607,607,[4012,869],3949,3435,4012,3499,4012,3949,4014,3947,3949,3500,3562,3499,3562,3948,3564,3435,3950,3563,3950,[3948,935],607,607,607,607,607,[3562,805],[3950,806],[3949,806],3562,3564,3564,4013,4011,3499,3564,3499,3949,3499,3500,3562,4014,4012,3949,3564,4012,4013,3562,3948,3563,3437,3950,3949,4014,3434,3948,3563,3564,3563,3949,4013,4011,3564,3500,3500,3949,3563,4014,4014,3948,4013,4013,4014,[3950,871],607,607,607,607,[607,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10106,10107,10108,10107,10108,10109,10110,10111,10205,10206,10203,10204,10205,10206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9547,[3552,9548],3938,4002,4000,3938,3999,3937,4000,3935,3935,4001,3937,3682,3683,3999,4000,3999,[3937,9745],[3937,9746],[3232,9743],3233,3231,3234,[3169,3871],3999,[3234,4003],[3233,3742],[3167,3744],[3169,3745],[3169,3746],[3232,3809,9745],[3233,9746],[3942,10129,9647],4008,3431,[3234,4009],3167,[3168,4068,10223],[3233,4072,10224],[3234,4073],3168,3234,[3234,3812],[3944,10124],[3942,10127],[3941,10128],[4005,10129],3942,3941,3556,3941,4006,3943,[3234,4073],3232,3170,[3234,3877],4007,3558,3944,3493,3944,3494,[3168,3817],3167,3170,3232,[3231,3812],3556,3944,3942,[3231,3945],3168,3233,3169,[3168,9646],[3167,9835],[3170,9836],3170,3231,[3232,3998],4000,[3170,3873],3231,3168,3168,[3232,9838],[3231,10027],10028,[3239,3808,9643],[3938,9644],3937,4000,4000,3999,4000,3938,[3999,9553],[3938,9453],[3938,9456],[3232,9457],3170,[3232,3940],[4007,806],[3169,3817,806],[3168,807],607,607,607,[4008,933],4006,3430,3943,4005,[3168,3816],[3168,9264],[3169,9550,9267],[3936,9643],[3935,9644],3935,[3938,3236],3174,3173,3176,3174,[3937,2981],3173,3238,[4001,3302],[4002,3111],3935,[3937,815],[3936,870],[4000,1003],[4001,1004],[4000,1005],[3937,934],[3935,816],[4001,3300],[3999,3301],3237,3175,[3935,3241],4000,3935,[3938,3236],3174,3173,3238,[4001,3305],3936,[3936,3109],3237,3174,[3938,2981],3173,3238,[3935,3112],4000,3999,3937,[3938,3045],[4000,2981],[4001,3048],[3935,815],[3937,870],[4000,998],[4001,999],607,607,607,607,607,607,[3938,869],4001,4002,3936,[3935,3110],3237,3238,3237,3174,[4000,2981],[4002,2981],[3938,2981],[3936,2981],3173,3238,[3938,3304],[3935,3305],4000,[4002,9745],[3938,9746],[3944,998,9647],[4008,999],607,607,607,607,607,607,[4008,933],3684,3685,3943,[4008,9547],[3175,9548],[3936,3112],3935,3938,[4002,3046],3173,3240,3240,3238,[3938,3112],4000,4002,4000,3935,3553,3936,[4001,2980],3173,3238,[4000,3302],[4002,3112],4000,[4001,3236,9841],[3175,9937],10033,[4002,10125],[3936,10126],[4002,3812,10129],4008,4006,4007,[3937,3815],[3937,9841],[4000,9937],10033,[607,10125],[607,10126],10028,10031,10032,10033,[607,10125],[607,10126],[607,10129],607,607,607,607,[607,10124,9646],[3937,9739],[3938,4004,9740],3942,3495,[3941,9649],[4008,9650],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,10001,[3977,9905],[3913,9809],3914,3977,3913,3977,3913,3977,3978,3914,3913,3913,3914,3977,[4097,3979],4097,[4097,3783],3976,3913,3978,3914,3914,3978,3978,3913,3911,[4097,4039],3912,3913,3914,3914,3914,3914,3913,3978,3913,3978,3913,3913,3911,[4097,4039],3912,3978,3911,[4097,4039],[4097,4043],4097,4097,4097,[4097,3910],3914,3913,3914,3978,3977,3913,3913,3914,3977,3914,3914,3911,[4097,4041],[4097,4042],3912,3913,3978,3978,3914,3975,[4097,3785],4097,4097,[4097,3782],3913,3977,3977,3913,3978,3914,3913,3914,3914,3978,3978,3975,[4097,3723],4097,[4097,3784],[4097,3719],[4097,3722],[4097,3785],4097,4097,4096,[4097,3974],3978,3977,3978,3914,[3978,9622],[3914,9623],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9669],607,607,607,607,607,607,607,607,607,607,607,[3499,869],3950,4014,3563,3948,3501,3562,4014,3948,3562,4014,4012,3950,3562,3949,3500,3434,3950,4013,3562,4011,3563,3949,3564,3950,[3563,807],607,607,607,607,607,607,607,607,607,[4011,933],3563,4012,3499,3947,3562,4012,3563,3563,3562,3948,3563,4012,3500,3563,4013,3948,3950,4014,4011,4011,[3498,807],607,607,607,607,[3564,869],3949,4012,3564,3500,3948,3947,3563,3499,3950,3434,3563,3950,3499,3947,3499,4012,3948,4013,3950,3436,3950,3562,3950,3500,3949,4013,4014,4011,3499,3949,4012,3563,4014,3949,3950,3950,4012,3950,3499,3950,3500,3562,3949,[3562,815],[4014,870],[4014,998],[3564,999],607,607,607,607,[607,9572],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10203,10204,10203,10204,10205,10206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9550,[3486,9643],[3999,9644],4001,4001,4002,3935,4000,3425,3425,4001,3935,4000,3938,3999,3999,3936,3999,3938,3935,[3935,9553],[3231,9457],3234,3234,3168,[3234,3807],3935,3936,3935,4000,[3167,4063],3999,[3233,4003,9649],[3233,9650],[4005,9647],4007,3558,3942,[3234,3815],3234,3231,3167,3170,3170,[3168,3876],3944,[3558,10223],[3943,10224],3492,3941,3557,4006,3494,3492,[3168,3879],3234,3231,3231,[3231,3814],3943,3942,3494,3493,4005,4008,[3233,3945],3233,3231,3168,[3169,3940],4006,3943,4007,3944,[3234,3816],[3234,3814],[3234,3753],[3232,9742],9931,[3233,9932],[3168,9836],[3231,3807],3935,[3168,4003],3169,3234,3234,3169,3231,3232,[3169,10124],[4000,9739],[4000,9740],4002,4002,4002,3938,3999,4000,4000,3936,3999,[3937,9553],[3170,3814,9554],4007,4008,[3170,3881],3234,[3169,4004,806],[4008,806],[3942,806],3943,3941,4006,3943,4007,[3942,9547],[3999,9453],[3936,9456],[3937,9548],3616,3617,[4000,3110],[3935,3303],3237,3176,3238,[4000,3302],[4001,3303],[3936,3111],4002,3938,4001,[3489,935],607,607,607,607,607,[4001,933],4002,3936,[3938,3109],3237,3174,[3935,2985],[3937,3045],3173,3238,[3938,3304],[3935,3111],3937,3938,3999,[4001,3236],3238,[3999,3303],[4000,3303],[3937,3111],3999,4001,3936,4001,[3935,3236],3238,[4000,3305],[3937,871],607,607,607,607,607,607,607,607,607,[3937,933],3938,4001,3938,3938,[4001,3236],[4001,3241],[4000,3300],[3935,3304],[3935,3304],3237,3238,3237,3238,[3938,3112],3999,4001,4001,[4000,9649],[3938,9650],[607,9647],607,607,607,607,607,607,607,[4006,997],[3943,1004],[4008,1004],[4005,1001,9550],[3239,9739],[3936,3241,9740],4000,4000,3936,[3937,3236],3238,[4001,3304],3237,[3935,3241],3937,[4000,2980],[3937,2981],[3938,2981],[3935,2981],[4002,2981],[3938,3047],[3935,3300],[3935,3304],[4002,3112],3937,3937,[4002,3045,9745],[3175,9746],[10033,9551],[3999,3816,10129],[4001,10221],[3938,10222],[3937,3876],3943,3495,4007,[3943,9649],[3936,3749,9650],[10033,9551],[607,10129],[607,10221],[607,10222],[607,10124],[607,10127],[607,10128],[607,10129],[607,10221],[607,10222],607,607,607,607,607,[607,9452],[3937,3814,9548],3943,4008,3944,[4005,9745],[4006,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10097,[10001,9523],[3978,9616],[3914,9617],3978,3977,3913,3977,3914,3913,3913,3913,3913,3977,3978,3975,[4097,3719],3976,3977,3978,3978,3977,3977,3977,3977,3977,[4097,3787],4097,[4097,3782],3913,3913,3978,3913,3913,3913,3978,3914,3978,3914,3911,[4097,3849],4097,[4097,4038],[4097,4039],[4097,3849],4097,4097,4097,4097,[4097,3783],3976,3914,3978,3914,3978,3978,3977,3977,3914,3978,3977,3911,[4097,3849],4097,4097,[4097,4038],[4097,4040],3912,3914,3978,3913,3975,[4097,3723],4097,[4097,3910],3978,3978,3913,3911,[4097,4042],[4097,4040],3912,3914,3977,3978,3914,3913,3975,[4097,3719],3976,3913,3978,3975,[4097,3719],[4097,3722],[4097,3719],3976,3978,3913,3977,3913,[3914,9718],[3978,9719],9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,607,607,607,607,[4014,933],4012,3947,3562,3948,3947,3947,3436,4014,3564,3948,3500,3950,3500,3949,3499,3435,3499,4014,4013,3563,3948,3500,3563,3950,3564,[4014,806],[3950,807],607,607,607,607,607,607,607,[3947,997],[3563,998],[4012,934],[3950,816],3948,3949,3563,3950,3500,4013,4011,3562,3950,3948,3499,3563,3564,4012,4013,3562,4012,3562,[3500,806],[3499,807],607,607,[3949,933],3564,3564,3563,3562,4014,3564,3947,3563,3563,3948,3950,4014,4012,3948,3948,4013,4011,3499,3947,4013,4014,4014,3563,3562,4013,3948,3563,3949,3563,3499,3947,3948,3562,3563,4013,3499,3564,3499,3949,3562,3562,3564,3950,[3435,871],607,607,607,607,607,607,607,[607,9572],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[4000,9643],[3999,9644],3937,3616,3617,4000,3936,3938,3937,3937,4001,4001,3937,3999,3999,3618,3619,3999,4001,3935,[3999,9553],[3232,9554],3168,3167,[3169,3806],4000,[3170,4066],[3167,4063],[3169,3874],3168,[3232,3872],[3231,3874,9745],[3231,9746],[3942,9647],3492,4008,3558,3558,[3170,3750],[3233,3751],[3168,3752],[3170,3815],3232,[3170,3940],3558,3556,3557,4005,4008,4008,3556,4007,3492,[3234,3749],[3169,3815],[3167,3814],[3168,3749],3943,3556,3493,3558,4005,3557,[3170,4072],[3231,4073],3233,3231,[3231,3813],3556,4006,3556,3556,3942,3943,3941,3943,[3234,3816,9838],[3167,3814,10027],[10028,9550],[3169,9739],[3233,3806,9740],4000,[3167,4067],3170,3232,3167,3169,3233,3231,[3168,9547],[3937,9548],3937,3938,4000,3937,3999,3935,3938,3937,3935,3935,[3938,9649],[3937,9650],[3943,9551],4005,[3234,3945],3169,[3232,4068],4005,4005,3944,4005,3942,4006,[3944,9550],[3936,9643],[3935,9644],3938,3936,3680,3681,4000,3553,[4002,3110],3237,3174,[3936,3048],4001,[3935,815],[4001,870],[4002,1002],[3938,1003],[3936,999],607,607,607,607,607,[3936,933],3938,3999,3938,[4000,3300],3237,3174,3173,3238,[3937,3305],4002,3935,3614,3615,[4001,2980],3173,[3999,3241],3937,4002,4001,[4000,3046],[3935,2981],[4001,2981],[4001,2981],3173,[3935,3241],3937,[3936,935],607,607,607,607,607,607,607,607,607,[3999,997],[4002,998],[3938,934],[3938,816],4002,[3935,3236],[4002,3241],3938,3938,[3935,3046],3173,[4002,3241],[4000,3236],3174,[3936,3048],3999,3937,[4000,562],[3937,9745,562],[3999,9746,562],[607,9743,562],[607,562],[607,562],[607,562],[607,562],[607,562],[607,562],[607,562],[607,562],[607,562],[607,562],[607,9646,562],[3176,9643,562],[3176,9644,562],[4000,3047],3489,3937,[4002,3110],[3935,3112],3999,[3936,3236],[4001,3241],[3937,3045],3173,3238,[4000,3303],[4002,3301],[3936,3304],[3937,3111],[3935,3046],[3937,2982],[3936,2983],[3936,2984],[4002,2981],[3238,9841],[3238,9842],[3942,10129,9647],[4000,3817],3935,3999,[4000,3940],4007,3622,3623,[3942,9745],[3944,9746],[607,10129,9647],607,607,607,607,[607,10223],[607,10224],607,607,607,607,607,607,607,[607,9547],[4005,9548],3941,3944,4005,4005,4007,[4007,9553],9457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10097,9619],[3914,9712],[3977,9713],3977,3978,3978,3977,3978,3978,3914,3914,3978,3978,3977,3914,3913,3977,3913,3977,3913,3978,3978,3914,3978,3914,[4097,3851],4097,[4097,3846],3978,3978,3914,3978,3913,3978,3913,3913,3913,3913,[4097,3979],4097,4097,4192,4097,4097,4097,4097,4097,[4097,3718],3976,3978,3977,3913,3914,3914,3913,3977,3977,3914,3911,[4097,4041],[4097,4043],4097,4097,4097,4097,4097,[4097,3848],[4097,4039],[4097,4040],[4097,4041],[4097,4042],[4097,4043],4097,[4097,4038],[4097,4040],[4097,4041],[4097,4042],[4097,3849],4097,4097,[4097,3847],[4097,4039],[4097,4040],[4097,4041],[4097,4042],3912,3914,3913,3914,3914,3978,3978,3913,3914,3978,3913,3914,3978,3977,3978,3978,[3914,9526],9430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9477],607,607,607,607,607,607,607,607,607,[3499,805],4013,3499,3950,4012,3562,3564,3563,3947,3564,3436,3498,4014,3948,4012,4011,3499,3947,3500,4014,4013,4013,3948,3563,3950,4013,3563,3947,3947,[3562,806],[3949,807],607,607,607,607,607,607,607,607,[3950,869],4013,3948,3948,3564,4013,3564,3948,4014,3949,3500,3564,3562,3564,3947,4013,3563,3947,3950,3562,[4013,871],607,607,[3948,997],[3499,934],[3564,816],3563,3563,3500,3563,4013,3563,3564,3500,4011,3949,3564,4014,3499,4012,3950,3500,3500,4014,3563,3563,4013,3947,3949,3950,3948,3499,3562,3564,3562,3499,4012,3499,3564,3498,3949,3949,3947,4013,4011,4012,3498,[3949,871],607,607,607,607,607,607,607,[607,9572],9761,9762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[4000,9739],[4000,9740],4002,3680,3681,3999,4001,3935,3935,4001,4002,4002,3552,3938,4000,3682,3683,4002,4001,3935,[4002,9649],[3938,9650],[3169,9551],3170,[3169,3870],[3232,4003],3169,3168,3232,[3169,9841],[3169,9933],[3167,9934],[3169,9842],[3943,9647],3943,3941,4005,3944,4007,3941,4007,3556,[3232,3753],[3234,4004],3944,3557,3492,3558,3942,4006,3943,3493,3431,4005,3430,3493,4006,3492,3941,3557,4006,4006,[3170,3880],3170,3167,3170,[3167,3748],3494,3557,3557,4006,4007,4008,4006,3944,4006,3942,3943,[4005,10124,9646],[3170,9643],[3167,3870,9644],[3233,4003],3167,3170,3231,3233,3168,3168,[3233,9550],[4001,9739],[3999,9740],3938,3938,3938,4001,3936,[3174,4065],4000,3999,4002,3936,[3935,9745],[4001,9746],[3428,9647],4007,[3231,4009],3231,3169,[3170,3812],3942,3624,3625,3942,4007,[3942,9646],[4001,9643],[3999,9644],3999,[3999,3046],[3937,2981],[4000,2981],[3935,3048],3999,3936,[3938,3110],3237,[3937,3241],3937,[3938,935],607,607,607,607,607,607,607,607,[3937,805],4001,[3999,2980],[3937,2981],[3937,3048],4001,[4002,3110],3237,3176,[4000,3241],3935,3489,3937,3678,3679,[3999,3236],3238,[3938,3112],3935,3999,3938,[3999,3109],[3999,3301],[4001,3304],3237,3240,[3936,3241],4000,4002,[3935,807],607,607,607,607,607,607,607,607,607,607,607,[3935,869],4000,[3938,3236],[4000,3241],4001,[3935,3046],3173,3238,[4002,3112],[3935,3110],3237,[4001,3241],4001,3937,626,626,626,626,626,626,626,626,626,626,626,626,626,626,626,626,626,[4000,3049],4000,3999,4002,4001,4002,[4002,3236],3174,3173,3238,[3937,3305],4000,3936,[4002,3045],[3936,2981],[3237,9841],[3239,9933],[3175,9934],[3239,9935],[3176,9936],[3176,9937],9938,[4006,9743],[3999,3881],4001,4002,[3935,4004],4008,3686,3687,[3941,9841],[4008,9842],[607,9647],607,607,607,607,607,607,607,607,607,607,607,607,[607,9550],[4002,9643],[3938,3878,9644],3941,3429,3941,4007,3942,4008,[4005,9553],9554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9616],[3977,9617],3978,3914,3913,3913,3913,3977,3914,3978,3913,3978,3913,3978,3914,3977,3913,3978,3914,3913,3914,3913,3914,3914,[4097,3915],4097,[4097,3910],3977,3978,3913,3977,3977,3978,3977,3914,3914,3914,3975,[4097,3719],[4097,3723],4097,4097,4097,4097,4097,4097,[4097,4038],[4097,4039],3912,3914,3913,3914,3913,3978,3978,3911,[4097,4042],[4097,3849],4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,4192,4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,3974],3914,3913,3913,3977,3977,3914,3913,3914,3911,3912,3977,3914,3977,3978,3914,3977,[3977,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9669],607,607,607,607,607,607,607,607,607,[3564,869],4011,3949,3950,4013,4013,3500,3562,3628,3629,3949,4012,4011,3500,3563,4013,3499,4012,3947,3949,4013,4011,3564,3435,3948,3562,4014,3499,4013,3949,[3564,871],607,607,607,607,607,607,607,607,[3562,933],4013,4012,3564,3949,3562,3949,3564,4011,3948,4014,3499,3499,3500,3499,4014,3499,3564,4013,4013,[4014,935],607,607,607,607,[3499,933],3564,3947,3948,4013,3950,3950,4014,4013,3499,4013,4012,4013,3562,4011,3499,4012,3564,4011,3949,3562,3949,3564,3562,3562,3563,3564,4012,4012,3564,4012,3564,3947,3500,4012,4012,3564,3947,4014,3949,3500,3564,[3562,935],607,607,607,607,607,607,607,[607,9668],9857,9858,9762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3488,9835],[3935,9836],3938,3999,4000,3935,4001,3935,4001,4000,3935,4001,3936,[3240,4064],[3175,4065],[3240,4066],3935,3936,3936,3614,[3615,9745],[4001,9746],[3233,9647],3168,[3234,3934],3936,[3233,3809],3232,[3232,9841],[3168,9937],10029,10030,9938,[3232,3812,9743],3943,3559,3494,3557,3556,3943,4008,3492,[3170,3880],[3231,4068],[3170,4070],[3168,4071],4008,3494,3428,3494,3494,4007,3942,4005,3558,4005,3556,4006,3941,4005,3556,3943,[3170,3815],3170,3231,3232,[3167,4004],3558,3944,4007,3941,3944,4005,3943,3556,3494,3943,3556,[4005,9646],[3167,9739],[3170,3934,9740],3936,[3168,3810],3170,3168,3233,3232,3232,[3168,9547],[4001,9548],3936,4001,3935,3937,[3174,4064],[3238,3873],3175,[3239,3872],[3174,4063],3936,3999,[4001,9841],[4001,9842],[3944,9647],4005,4008,[3233,3815],3170,[3168,3876],4008,3688,3689,3941,3941,[3944,9646],[4002,9739],[4000,9740],3999,[4002,3110],[3935,3303],3237,3174,[3999,2985],3937,3935,[3935,3236],3174,[3999,2985],[3937,935],607,607,607,607,607,607,607,607,[4002,869],[3935,3046],3173,3238,[4000,3111],3614,3615,[3938,3300],3237,3174,[4000,3048],4001,3938,[4001,3045],[3935,2981],3173,3174,[3937,2981],[3938,2985],4000,4000,3936,3999,3999,[3999,3109],3237,3174,[4001,2985],4002,3937,[4002,806],[3935,806],[3999,807],607,607,607,607,607,607,607,607,[4002,933],3938,[3936,3236],3174,[3937,2981],3173,3238,[3937,3112],3487,4000,[4002,3236],[4000,3241],3936,3486,690,690,690,690,690,690,690,690,690,690,690,690,690,690,690,690,690,[4002,3113],4002,3616,3617,[3999,3046],[3935,3047],[3938,3236],3176,3238,[4001,3112],3937,3937,3935,[3938,3236],[3173,9841],[3239,9937],10029,10030,10031,10032,10033,[3941,10034],[4008,9839],[3936,3945],3936,4000,[3937,3877],3943,3943,[4006,9841],[3943,9937],9938,[607,9743],607,607,607,607,607,607,607,609,607,607,607,607,[607,9646],[3938,9643],[3936,9644],[3938,4068],[3937,4069],3942,3941,3944,3430,[4005,9649],[3941,9650],9551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3913,9712],[3978,9713],3911,[4097,4039],[4097,4040],[4097,4041],[4097,4042],3912,3978,3913,3977,3913,3978,3914,3911,[4097,4041],3912,3978,3914,3977,3978,3914,3914,3911,[4097,3849],4097,[4097,3974],3978,3914,3913,3914,3977,3914,3911,[4097,4039],3912,3977,3914,3977,3975,[4097,3785],4097,[4097,3784],[4097,3723],4097,4097,4192,4097,[4097,3974],3914,3913,3977,3913,3978,3914,[4097,3979],4096,4192,4097,[4097,3718],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3723],4097,[4097,3718],[4097,3719],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3723],4097,4097,[4097,3783],[4097,3720],[4097,3721],[4097,3785],4097,4097,4097,4097,4192,[4097,3848],[4097,4042],3912,3913,3978,3911,[4097,4040],[4097,4041],[4097,4042],[4097,3849],[4097,3847],3912,3913,3977,3913,3977,3913,3978,[3913,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,607,607,[3500,933],4012,4011,3500,3950,3564,3564,4014,3692,3693,3499,4012,3948,3949,3950,3499,3948,4014,3435,4013,3499,3563,3948,4013,3947,3499,3947,3949,4012,[4014,563],[3562,871,563],[607,563],[607,563],[607,563],[607,563],[607,563],[607,563],[607,563],[607,563],[3947,933,563],3950,3562,3947,4012,3949,3499,3949,3947,3500,3949,4014,3434,3562,3628,3629,4014,3948,3563,4014,[3564,871],607,607,607,607,[3499,933],4012,4011,3562,3499,3947,3947,4012,3499,4013,3500,3948,3563,3500,3562,4011,4012,3950,3950,4011,3948,3563,3562,3499,3499,4011,3950,3564,3500,4013,3948,4012,3948,3499,3949,3435,4011,4011,4014,[4014,815],[4012,870],[3563,998],[3564,999],607,607,607,607,607,607,607,[607,9764],[607,9953],[9954,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9742,9931,[3935,9932],[3999,9836],3935,3937,3936,4001,4002,4002,3937,3936,3935,[3240,4067],3176,3240,3175,[3175,3871],3935,3999,3678,[3679,9745],[3999,9746],[3232,9647],3169,[3233,3871],3488,[3233,4003],[3170,9841],[3167,9937],10033,10125,10126,[3170,10034],[3233,3876,9839],3556,3557,3557,3557,3494,3556,3557,[3233,4009],3232,3168,3232,3168,[3168,3877],4008,3942,4007,3557,3557,3556,3943,4007,3943,3942,4007,3557,3494,[4006,9357],[3943,9358],[3167,3817,9359],[3233,9360],3234,[3234,3814],3430,3493,3558,3494,3942,[3232,4071],[3234,4072],4005,3942,3944,4006,3557,[4007,9646],[3170,9835],[3231,4062,9836],3999,3936,[3234,3743],[3234,3809],3169,3169,[3168,9550],[3938,9643],[3999,9644],3936,3618,3619,[3238,3811],3240,3174,3176,3174,3176,[3174,3998],[4002,9841],[3935,9937],9938,[4008,9743],3942,[3167,4072],[3168,4073],3232,[3168,3940],4007,4006,4005,4006,[3233,3880],[3234,9646],[3938,9835],[3938,9836],3361,4000,4002,[4000,3236],3175,[3935,3241],3935,3487,[3937,3236],3240,[3938,3241],3936,[4002,807],607,607,607,607,607,607,607,[4001,933],[3938,3110],3237,3174,[4002,3048],3678,3679,3936,[3935,3109],3237,[3937,3241],[4001,3046],[3936,2981],3173,3238,[3937,3303],[4001,3301],3237,3174,[3936,2981],[4001,3047],4000,3361,3938,3999,[3999,3109],3237,3174,[3999,3048],4001,3937,3553,3999,[4001,806],[3938,806],[3935,806],[3935,806],[4001,806],[3938,806],[4000,806],[4001,806],3938,4001,[4001,3236],3175,3238,[3937,3302],[3937,3112],3937,4000,[4001,3046],3173,[3999,3241],3938,[4002,9649],[3936,9650,754],[607,9551,754],[607,754],[607,754],[607,754],[607,754],[607,754],[607,754],[607,754],[607,754],[607,754],[607,754],[607,754],[607,754],[607,9550,754],[3174,9643,754],[3174,9644,754],[4002,3177],3938,3680,3681,[3938,3236],3174,3173,3175,[3935,3241],3938,3489,4002,4000,[3999,3300,9745],[3176,9746],[10033,9551],[4008,10125],[4008,10126],[3936,3817,10127],[4001,10128],[3937,3877,10129],3944,3943,[3936,4009],3935,4001,4000,[4001,4068],[4000,4069,9649],[3944,9650],[10033,9551],[607,10034],[607,9839],607,607,607,607,607,607,607,607,607,607,607,607,[607,9742],[3937,3749,9739],[3999,3753,9740],3935,3938,[4000,3877],[4001,4069],[3935,4070],3943,[4008,9745],[3942,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9424,9425,[4097,4039,9521],[4097,4040],[4097,3850],4097,4097,4097,4097,[4097,3848],[4097,4039],3912,3978,3977,3911,[4097,4039],[4097,4043],4097,[4097,3782],3914,3914,3913,3914,3914,3914,[4097,3787],4192,4097,[4097,4038],[4097,4041],[4097,4042],3912,3977,3911,[4097,4042],[4097,4043],4097,[4097,3847],3912,3914,3914,3913,3975,[4097,3719],3976,3975,[4097,3719],[4097,3785],4097,[4097,3783],3976,3913,3914,3914,3977,3913,3911,[4097,3850],4097,4097,[4097,3783],3976,3978,3913,3911,[4097,4041],[4097,3850],4097,[4097,3974],3913,3913,3911,[4097,4039],[4097,4040],[4097,4043],4097,4097,[4097,3974],3914,3913,3975,[4097,3720],[4097,3721],[4097,3722],[4097,3785],4097,4097,4097,[4097,3847],[4097,4039],[4097,4040],[4097,3849],4097,4097,4097,4097,4097,[4097,3974],3977,3977,3913,3978,3913,3977,[3914,9622],[3977,9623],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,607,[3563,997],[3947,934],[4014,816],3564,4012,3563,4013,3563,3500,3947,3950,3949,3500,3499,4011,3950,3949,4012,4012,4011,3949,3563,3950,4014,4014,3434,4012,3949,4013,627,627,627,627,627,627,627,627,627,627,627,3950,3948,3499,3501,4012,3564,3562,3564,4014,3564,3947,3949,3498,3692,3693,3562,4014,4013,3562,[3947,935],607,607,607,607,[3948,869],3564,4012,3499,4013,4014,3950,3499,3562,3563,3947,4011,3949,3563,3947,3947,3499,3947,4013,3628,3629,3564,3564,3564,4013,4012,3437,3563,4012,3436,3501,3947,3562,3950,3948,3562,3950,4013,3500,[3950,871],607,607,607,607,607,607,607,607,607,607,607,607,[607,10050,9572],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9838,10027,10028,[3999,9643],[3937,9644],4000,3937,4001,3999,3935,4000,3999,[3176,3873],3176,3239,3239,3175,3239,[3175,3998],3936,3938,[4000,9841],[3936,9842],[3168,9647],3167,[3232,3808],3935,[3170,4003,9745],[3233,9746],[10033,9551],[4007,10129],[3169,4009,10221],[3170,10222],3168,[3168,3940],4006,3941,3941,3492,4007,3557,3493,3941,[3170,3816],3168,3234,3231,3169,[3167,4004],3943,3558,3492,4006,3556,4005,3556,4007,3556,3492,3944,[3167,4070,9452],[3167,9453],[3168,9454],[3170,9455],[3167,9456],[3167,9457],[3231,4004],3941,3495,3941,4008,[3167,3879],3233,3232,[3234,4068],3556,3558,3558,4006,[4005,9742],9931,[3232,9932],[3231,3872,9933],[4063,9930],[3170,4066,9836],[3168,3873],3170,3169,[3234,9646],[3936,9643],[3935,9644],3935,3682,3683,[3239,3875],3174,3239,[3240,3742],[3240,3743],[3174,3743],[4001,9649],[3936,9650],[10033,9551],[3944,10034],[4007,9839],[3169,3817],3231,3167,3233,[3170,4004],4008,3941,4007,[3170,3817],3168,[3169,871,9742],9931,[4001,9932],[4001,9836],3486,3938,[4002,3236],3240,[4002,3241],[3935,2980],[3999,2981],3173,3239,[3999,3241],3938,3999,[3938,806],[3935,807],607,607,607,607,607,[3937,997],[3935,934],[4001,3110,816],3237,[3935,3241],[3999,3045],[3999,2981],[3936,2981],[3935,2981],3173,3174,3173,3238,[4001,3302],[4002,3305],3937,3935,[4001,3236],3240,3239,3174,[4002,2981],[3937,3047],3938,4002,3938,[4002,3236],3239,3174,[3937,2981],[3936,3048],4000,4000,3614,3615,4000,[3938,2980],[3938,2981],[3936,3048],3935,3553,3999,3935,[3935,3236],3238,[3935,3112],4000,4000,4002,[3938,2980],3173,3238,[4002,3305],3999,[3938,9745],[3487,9746],[3944,807,9647],607,607,607,607,607,607,607,607,607,607,607,607,[607,9646],[3240,9739],[3239,9740],[3938,3305],[3999,3045],[3935,3047],3936,[4000,3110],3237,3238,[3937,3302],[3936,3111],3937,3935,3936,4001,[4002,3045,9649],[3176,9650],[4008,10129,9647],[3941,10221],[4008,10222],[3938,3881,10223],[3937,10224],3999,[3937,4004],4008,3941,[4000,3753],3999,4000,4000,[3937,9745],[3937,3877,9746],[607,10129,9647],608,607,607,607,607,607,607,607,607,607,607,607,607,608,[607,9547],[4006,9548],4006,[4001,3816],3936,3936,3937,3937,[3935,3877],[3938,4071,9649],[3935,4069,9650],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[4097,9521],4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,3848],[4097,4041],[4097,4042],[4097,3849],4097,4097,4097,[4097,3846],3914,3978,3977,3914,3977,3978,[4097,3915],4097,4097,4097,4097,4097,[4097,4038],[4097,4039],[4097,3850],4097,4097,4097,4097,[4097,3974],3913,3977,3914,3978,3913,3977,3913,3913,3975,[4097,3719],3976,3978,3914,3914,3977,3977,3977,[4097,3979],4097,4097,4097,[4097,3974],3977,3913,3911,[4097,3849],4097,4097,[4097,3784],3976,3913,3913,3975,[4097,3785],4097,[4097,3783],[4097,3720],[4097,3721],3976,3978,3977,3978,3913,3977,3977,3975,[4097,3719],[4097,3785],4097,4097,4097,4097,4097,4097,4097,4097,4097,4097,[4097,4038],[4097,4039],[4097,4040],[4097,4041],[4097,4042],3912,3914,[3913,9718],[3977,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9477],607,607,607,607,607,607,607,607,607,[3564,869],3950,3563,4012,4013,3562,3949,3950,4013,3949,4012,3499,3499,3950,3434,3630,3631,3437,4012,3948,3563,4014,4013,3950,4014,3564,3562,691,691,691,691,691,691,691,691,691,691,691,3948,4013,4014,3562,3563,4011,3950,3950,3500,3562,3500,3950,4014,4013,4013,3435,3949,3948,4011,4014,[3499,807],607,607,607,[4012,933],3563,3499,3499,4013,3499,4014,3947,3500,4014,3562,4013,3563,4013,3947,3562,3950,3500,3498,3692,3693,3950,4014,3947,4012,3499,4011,3499,3947,3500,3563,3948,3562,3950,3500,4013,3564,3499,3563,[4013,935],607,607,607,607,607,607,607,607,607,607,607,607,[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10124,[3550,9739],[3935,9740],4002,3935,3999,3937,3938,3999,[3176,4067],3240,[3239,3742],[3239,3747],3176,3175,3239,[3175,4062,9841],[3936,9935],[3936,9936],[3938,9937],9938,[3233,9743],3233,[3170,3806],4000,[3233,4067,9649],[3231,9650],[3944,10129,9647],4008,3942,[3233,3815],[3232,3813],3492,4007,3944,3492,3941,3942,3557,3493,3556,3557,[3168,3753],3167,3233,3169,[3234,3812],4007,3557,3941,3558,3942,4008,3943,3941,[3168,4071],[3234,4072],[3234,4073,9547],[3231,9548],3169,3167,3232,3167,[3169,9553],[4008,9554],3941,3493,4008,4008,[3233,3815],3168,3234,3170,[3233,4004],3429,4008,3942,[3558,9838],[4008,10027],10028,10029,10026,[3167,9932],[3170,9836],3170,3231,[3233,9646],[3937,9739],[3936,9740],3935,3999,3938,[3175,3939],3239,3238,[3175,3998],3936,3936,[3935,9745],[3936,9746],[3944,10129,9647],3941,4006,[3234,3881],3232,3168,[3232,3813],3942,4008,3942,4008,[3169,3881],3232,[3232,935,9838],[607,10027],[10028,9550],[3999,3045,9739],[3999,2981,9740],[3936,2981],3173,3176,3174,3173,3238,[4002,3303],3237,3174,[4000,2985],3999,3553,[3999,871],607,607,607,607,607,607,607,[4000,869],[4002,3236],3174,3173,3238,[4000,3304],[4000,3301],[3999,3304],[3935,3304],3237,3174,[3938,2985],3999,3937,3999,[3938,3236],3175,3238,[3938,3302],3237,3174,[3938,2981],[3937,3048],[3937,3046],3173,3238,[3935,3302],3237,3174,[3937,2981],[3999,2985],3678,3679,4001,[4001,3109],3237,3174,[4002,2985],3937,4001,[3936,3046],3173,[3936,3241],4002,3938,3935,4000,[3938,3236],3238,[4002,3111],4000,4002,[3935,9841],[4005,9842],[4005,935,9647],607,607,607,607,607,607,607,607,607,607,607,607,[607,9646],[3239,9835],[3174,9935],[3938,2981,9936],[3239,9933],[3175,9934],[4000,2981,9836],[3999,2985],[4001,3300],[3935,3305],3936,4000,4002,3935,3935,[3935,2980],[3175,9745],[3174,9746],[4006,9647],3941,3942,[3938,3945],4002,4000,[3935,3877],4008,3429,3944,[4002,3749],[3999,3815,9841],[4002,9933],[3936,9934],[4000,9842],[607,9647],607,607,607,607,607,607,[607,9264],[607,9265],[607,9267],607,607,607,607,[607,9452],[4008,9548],4005,4005,[3938,3817],3935,4001,[4001,3748],[4001,3816],3938,[4001,9745],[3999,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9330,9331,9332,9333,9330,[9523,9333],[4097,9616],[4097,9617],4096,4097,[4097,3718],[4097,3785],4097,[4097,3718],[4097,3722],[4097,3723],4097,4097,4097,4097,4097,4097,4097,4097,[4097,3910],3978,3914,3977,3977,3977,3977,3975,[4097,3719],[4097,3719],[4097,3785],4097,4097,4097,4097,4097,4097,4097,4097,[4097,3784],3976,3913,3914,3914,3977,3913,3914,3978,3977,3913,3977,3977,3978,3978,3914,3978,3978,3913,3975,[4097,3720],[4097,3721],[4097,3722],3976,3977,3914,3975,[4097,3785],[4097,3783],[4097,3719],3976,3977,3914,3914,3978,3975,[4097,3719],3976,3914,3977,3978,3913,3977,3977,3978,3913,3914,3977,3978,[4097,3979],4097,4097,[4097,3718],[4097,3723],4097,4097,4097,[4097,3718],[4097,3723],4097,4097,4097,4097,4097,4096,[4097,3847],3912,[3978,9814],[3914,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,[4014,933],4011,4012,3563,3948,3947,4013,3949,3564,4014,3437,4014,3950,3562,3949,3694,3695,4013,3950,4013,3949,4014,3564,3498,3950,3950,4014,[4014,755],[3562,871,755],[607,755],[607,755],[607,755],[607,755],[607,755],[607,755],[3500,805,755],[3500,755],[3562,755],4013,3564,3948,3500,3563,3950,3948,3564,4014,4013,3500,3499,3500,4013,4014,3563,4013,3564,3950,3947,[3949,871],607,607,607,[3563,869],3562,3949,4012,3947,3949,3626,3627,3562,3947,4011,4013,3564,3499,3563,4011,3947,4012,3947,3947,4014,3949,4013,3562,3562,4013,3562,3500,3950,3949,3950,4013,3949,4011,4014,4012,[3950,815],[4011,870],[4014,998],[3499,999],607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9547,[3938,9548],3935,3935,4002,3936,3938,3425,[3176,4003],3238,[3175,3807],3938,4000,[3239,3743],[3239,3744],[3240,3745,9841],[3239,3746,9937],10031,10032,10033,[3234,10034],[3168,9839],3170,[3169,3870],[3167,3811],[3234,9745],[3231,9746],[3493,9647],3557,3941,3943,3557,4008,3942,4005,3942,3492,3944,4006,3943,3557,3942,3942,[3169,3749],[3231,3816],3232,[3169,3940],4007,3492,4008,4005,3558,3430,3494,[3169,3880],3231,[3234,9452],[3234,9548],3233,3167,3233,3170,3231,[3233,9649],[3231,9650],4007,4007,3492,4005,4008,[3234,3816],3234,[3232,3813],3942,4008,3944,4007,3493,3558,[4008,10124],[4008,10125],[4008,10122],10028,[3169,9932],[3168,9836],3169,[3169,9646],[4002,9835],[3999,9836],3938,3937,4002,[3175,4003],3175,[3238,3807],4002,3425,3935,3935,[3937,9553],[3941,9457],3944,4008,[3231,3945],3170,3167,[3234,3812],3431,[4005,815],[3942,870],[4007,1002],[3232,3945,1003],[3170,1004],[3168,999],607,[607,10124,9646],[4000,3300,9643],[4000,3302,9644],[4002,3304],[4000,3301],[3937,3304],[4000,3302],3237,[3938,3241],3999,[3937,3110],3237,3174,[3936,2985],4001,[3938,935],607,607,607,607,607,607,607,[4000,933],[4001,3110],3237,3238,[3938,3112],3935,4000,3935,4001,[3938,3236],3239,[3999,3241],3999,4001,3937,[3935,3300],[3938,3303],[3935,3305],3937,[3999,3109],[4000,3304],3237,3174,3173,3238,[3938,3111],3938,[3935,3300],[3999,3303],3237,3174,[3937,2981],[3999,2981],[3937,2985],4002,[3938,3110],3237,3174,[3999,2981],[3937,2981],3173,3239,3174,[3938,3048],3999,4000,[3935,3045],3173,[3937,3241],4001,3935,[3938,9841],[3941,9937],9938,[3942,871,9743],607,607,607,607,607,607,607,607,607,607,607,[3941,805],[3943,806,9742],9931,10031,10032,10029,10030,[3239,9932],[3936,3241,9836],4001,3937,3935,[3938,3046],[3936,2985],4001,[4000,3045],3237,[3174,9841],[3238,9842],[3941,9647],4005,3431,3942,[3999,3816],4001,4000,[3935,3812],3944,3943,[3943,9841],[4006,9937],10029,10030,9938,[607,9743],607,607,607,607,607,[607,9452],[4006,9453],[3941,9454],[3943,9456],[607,9457],607,607,[607,9547],[4005,9548],4008,4005,3942,[4001,3945],3937,[3935,3814],3941,3942,[4001,3753],[3937,9841],[4002,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9425,[3914,9426],[3977,9427],[3914,9428],[3978,9429],[3977,9426],[3978,9429],[4097,3785,9521],4097,4097,[4097,3783],3976,3975,[4097,3719],3976,3914,[4097,3979],4097,4097,4192,4097,4097,4097,4097,[4097,3784],3976,3913,3913,3978,3913,3914,3977,3977,3978,3978,3975,[4097,3720],[4097,3721],[4097,3722],[4097,3723],4097,4097,4097,[4097,3783],3976,3977,3978,3978,3914,3977,3978,3914,3914,3977,3977,3913,3913,3977,3914,3978,3914,3913,3914,3978,3913,3914,3913,3913,3978,3977,3913,3975,3976,3913,3978,3913,3913,3977,3977,3977,3978,3913,3913,3978,3914,3913,3977,3913,3978,3914,3913,3913,3911,[4097,3849],4097,[4097,3783],3976,3975,[4097,3785],4097,[4097,3784],3976,[4097,3979],4097,4097,4097,4097,4097,4097,4097,[4097,3848,9814],[3978,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,[4012,997],[3564,934],[3499,816],3563,3562,4012,3500,3562,4012,4011,3564,4012,3950,4011,4013,3948,3500,3563,3947,3499,3950,3949,3949,4014,4011,4012,3499,4013,[3498,935],607,607,607,607,607,607,[3949,869],3947,4012,3949,3564,3950,3436,3947,3948,3564,3564,3500,3949,4013,3947,3949,3564,4014,3564,4013,4011,3950,3499,[4014,935],607,607,607,[3948,933],3564,3564,4011,3498,3564,3690,3691,3562,3948,3564,3950,3563,3500,3949,3948,3564,4013,4013,3564,3947,3499,3948,3563,3499,3562,3563,4012,4013,3564,3949,3562,4011,3500,3499,3563,[3947,871],607,607,607,607,607,607,607,607,607,607,607,[607,9473],9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9550,[3551,9643],[4002,9644],4001,4001,3937,3999,3999,3938,4001,[3238,3743],4001,4002,4000,3999,[3489,9841],[3999,9937],10033,[3232,10127],[3231,10128],[3168,10129],3231,3231,3168,[3167,3934],[3233,3875],[3169,9745],[3231,9746],[4007,9743],4005,3556,3558,3556,4005,3942,3493,3494,4006,3942,3557,3556,3492,3943,4008,4007,[3232,4009],3234,[3233,4004],4008,3556,3944,4007,3943,3941,[3167,4009],3233,[3232,9547],[3167,9548],3231,3232,3231,3167,3232,3231,[3168,9745],[3168,9746],4005,3944,3943,3558,4008,[3231,4009,9357],[3170,9360],[3170,4004],3492,4008,3494,3941,3493,4007,4006,[3941,10221],[3943,10218],[4006,10124],[10028,9550],[3170,9643],[3168,9644],[3167,9742],9931,[3935,9932],[3175,4064],[3175,4065],[3238,4066],[3238,3874],3175,[3174,3998],4000,3999,4000,3999,3999,[3999,9553],[3943,9554],4008,[3233,3880],3169,3167,[3232,3876],3942,[3943,935],607,607,607,607,607,607,[607,9742],[3937,9739],[3937,9740],3938,3938,3938,[3936,3046],3173,[4001,3241],4001,3489,[4000,3236],3175,3174,[3937,3047],3938,[3937,807],607,[4002,805],[3938,806],[4000,807],607,[3935,805],4002,[3999,3045],3173,[3938,3241],4001,3936,3937,3361,3999,[4001,3300],[3938,3303],[4002,3305],[3937,9841],[3937,9935],[4001,9936],[4001,9836],3999,4000,4002,3936,3938,[3937,3300],3237,3238,[3938,3305],4001,3361,4000,4000,[4000,3110],[3936,3303],[4002,3303],3237,3174,[4000,2981],[4002,2981],3173,3238,[3999,3303],[3999,3304],[3937,3303],3237,3176,[3999,3241],3936,3937,[3999,3236],3238,[4000,3111],4002,[3999,9841],[4002,9937],10033,[4005,10034],[4008,9839],[4001,4073,807],607,607,607,607,607,[4007,805],[3942,806],[3942,806],[3943,806],[3941,806],3622,[3623,9838],[3942,10027],[4008,10127],[4000,3817,10128],[3938,10125],[3999,10126],10028,[3240,9932],[4001,3047,9836],3937,[3936,3045],3176,3175,[3938,2981,9841],[3240,9933],[3239,9934],[3238,9937],9938,[4000,3877,9743],3941,3943,3943,4007,[4001,3753],3937,[4000,3940],4007,[3943,9649],[4005,9650],[10033,9551],[607,10125],[607,10126],[607,10034],[607,9839],607,607,[607,9357],[607,9360],[607,9547],[4001,4072,9548],[3936,4069],3942,3944,[4007,9553],[607,9554],[607,9547],[3941,9548],4006,4007,3941,[4001,4071],[3937,4073],[3999,3814],3943,4008,3943,[3937,4009,9841],[3935,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3913,9521],3914,3913,3914,3978,3914,3978,3975,[4097,3722],[4097,3719],3976,3913,3977,3914,3977,3914,3975,[4097,3785],4097,[4097,3783],[4097,3719],[4097,3785],4097,[4097,3718],3976,3913,3913,3978,3978,3978,3913,3914,3978,3978,3977,3978,3913,3914,3914,[4097,3787],4097,4097,[4097,3783],3976,3977,3978,3914,3913,3911,[4097,4039],[4097,4040],3912,3913,3914,3913,3914,3977,3913,3978,3978,3914,3977,3978,3977,3977,3913,3978,3977,3913,3977,3977,3913,3978,3977,3978,3977,3977,3914,3978,3978,3977,3914,3978,3914,3977,3913,3977,3914,3914,3914,3913,3978,[4097,3787],4097,4097,[4097,3974],3913,3914,3975,[4097,3719],3976,3978,3975,[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3785],4097,[4097,9622],[4097,9623],[10006,9524],10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9768,[607,9573],607,607,607,607,607,607,607,607,607,607,607,[3498,869],3563,3562,3563,3499,3500,3950,4014,3949,4013,3950,4011,4012,3947,3564,3949,3563,3500,3948,3499,3562,3949,4014,4013,[4013,815],[3948,870],[3947,999],607,607,607,607,607,607,[4013,933],3500,3947,3564,3949,3500,3563,3950,3562,4011,3949,3563,3564,3562,3948,4012,4014,3563,3563,3950,3500,3564,3563,4013,[3564,806],[3947,807],607,[3947,997],[3499,934],[4013,816],3562,4013,3947,3950,4011,4011,4012,4012,4011,4012,3949,3949,3563,3948,4011,3562,3950,4014,3947,4012,4011,3949,4012,3950,3562,3948,3499,3499,4013,3500,3947,3947,3564,[3949,935],607,607,607,607,607,607,607,607,607,607,[607,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3938,9739],[3937,9740],3487,3553,3938,3938,4001,3938,3999,3935,3938,4002,3999,[4000,9649],[3938,9650],10033,[3231,10129],[3234,3742,10223],[3233,3810,10224],3234,3234,3231,[3234,3808],3935,[3167,3939],3231,[3231,9553],[3941,9457],3495,3944,4008,[3234,4069],[3170,4070],[3234,4071],[3231,4072],4007,3557,4005,3428,3492,4006,3492,4005,[3944,9357],[3232,4073,9360],[3231,3813],4008,3944,3494,3944,[3942,9357],[3941,9360],3557,3557,[3234,3815],[3232,9643],[3231,9644],3168,3233,3234,3231,3234,3168,3167,[3231,9553],[4006,9457],4006,3556,4006,[3943,9452],[3170,9453],[3231,9456],[4005,9457],4007,4008,4005,3941,4008,4008,4006,4005,4005,3493,[3942,10124,9646],[3234,9739],[3232,9740],[3167,9838],[3169,10027],[10028,9550],[3240,9643],[3238,9644],3175,3175,[3174,3742],3999,3999,4001,3937,3935,3935,[3937,9649],[4002,9650],[3231,4009,998,9551],[3234,1001],[3168,1002],[3170,1003],[3234,3940,1004],[3944,1005],[3941,1006],607,607,607,607,607,607,[607,9452],[3937,9548],3936,3936,[3937,2980],[4001,2981],3173,3238,[3938,3112],3937,3938,[4001,3236],3238,3237,3174,[3937,2981],[3935,2981],[4000,2985,806],3618,3619,3937,[4000,806],3937,[4000,2980],3173,3238,[3999,3305],4002,4002,3937,[3935,9841],[4002,9933],[4000,9934],[4000,9935],[4002,9936],[4000,9937],10031,10032,[3935,9932],[3937,9836],3489,3937,3999,[4002,3045],[3938,2981],3173,3174,[4000,3047],3935,4002,3614,3615,4002,3999,[3937,3045],3173,3238,[3999,3304],[4002,3301],[4002,3303],[4001,3112],4002,3937,4002,[3936,3236],3238,[4002,3111],3999,3999,[4002,3110],[3938,3112],3937,[3935,9745],[3936,9746],[10033,9551],[4005,10129],3941,[4002,3817],3937,[3938,806],[3937,3812,806],[4006,806],[3937,3817,806],[4002,4068,806],[3999,4069],3944,4005,3943,4008,3686,3687,3944,[4006,10223],[4001,3881,10224],[4002,10221],[3938,10222],[3937,4004,10124],10028,[3240,9932],[3937,2981,9933],[3175,9934],[3174,9935],[3176,9936],[3176,9937],10029,10030,10033,[3938,10034],[3999,9839],[3999,4004],4006,4006,3943,[3999,3817],4002,[3999,4068],[3936,4069],[3999,4070,9745],[3935,4069,9746],[607,10129,9647],[607,10221],[607,10222],607,607,607,[607,9452],[4006,9453],[3942,9456],[3942,9548],[3937,3815],4001,[3999,3812],3943,4007,[3942,9553],[3941,9548],4008,4005,4005,[3936,4009],3936,3935,[3999,4004],3624,3625,[3942,9745],[4008,9746],[10033,9551],10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[3977,9712],[3978,9713],3913,3978,3914,3914,3977,3914,3978,3978,3914,3977,3978,3913,3978,3913,3914,3978,3975,[4097,3719],3976,3914,3975,[4097,3719],3976,3913,3978,3977,3914,3914,3914,3914,3978,3914,3978,3978,3914,3978,3978,3978,[4097,3915],4097,4097,[4097,4038],[4097,4039],3912,3914,3913,3977,[4097,3979],4097,4096,[4097,3847],3912,3978,3913,3978,3914,3913,3978,3913,3913,3913,3913,3977,3978,3914,3977,3977,3914,3914,3913,3978,3978,3913,3977,3977,3977,3914,3977,3978,3911,[4097,4040],[4097,4041],[4097,4042],3912,3978,3977,3913,3977,3914,3978,3913,[4097,3915],4097,[4097,3783],3976,3913,3977,3914,3977,3914,3913,3978,3978,3977,3977,3977,3975,[4097,3719],[4097,3785,9718],[4097,9719],[10102,9620],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9863,9864,[607,9669],607,607,607,607,607,607,607,607,607,607,607,[3500,933],3950,3950,4014,3500,3949,4011,3499,4012,3950,4014,3947,4014,3500,3948,3947,3499,3499,3564,3562,4013,3499,4014,3499,[4014,935],607,607,607,607,607,607,607,[3499,805],3563,4011,4014,3562,3500,3499,4011,3947,3499,4014,4011,3564,3949,3434,3949,3563,3499,3948,3564,4014,4011,3947,4011,3564,4014,[4011,871],607,607,607,[3562,869],3949,3948,3564,4011,3563,3564,3947,3947,3950,3948,4011,3500,3949,4014,3564,3564,3500,3436,3500,3562,3564,4014,3564,4013,4012,3948,3947,3499,3947,4014,3499,3947,3564,[4012,871],607,607,607,607,607,607,607,607,607,607,[607,9572],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3999,9835],[3999,9836],4001,3935,3935,3938,3999,3936,3937,4002,3999,4000,3999,[3937,9745],[3937,9746],[3231,10129],3233,[3231,3998],3936,[3167,3744],[3169,3745],[3167,3810],[3170,3998],4000,[3233,3874],3167,3234,[3234,9553],[4007,9554],[4008,9357],[3169,3880,9360],3231,3233,3234,3234,[3231,3877],[4007,9357],[3944,9360],3943,3492,4007,3943,[3943,9452],[3167,9453],[3231,9456],[3942,9457],3942,4008,3941,[3169,3879,9452],[3232,9453],[3169,9456],[4008,9457],[3942,9357],[3167,4009,9360],[3231,9643],[3232,9644],3170,3234,3231,3234,3169,3233,3232,3232,[3169,9553],[4006,9554],[3942,9357],[3942,9547],[3168,9548],3234,3231,[3234,9553],[3944,9457],[3941,9357],[3941,9358],[3944,9359],[3944,9360],4006,4007,3944,4007,3495,[3943,9742],[3168,9739],[3169,9740],3233,3232,[3234,10124,9646],[3240,9739],[3238,9740],3175,[3240,3808],4000,4000,3936,3999,3938,3935,3999,[3553,9745],[3936,9746],[607,9647],607,607,607,607,607,607,607,607,607,607,607,[607,9547],[3999,9548],3935,[4000,2980],[3937,2981],3173,3238,[3938,3301],[3935,3112],3999,3999,4000,[3938,3300],[3936,3111],[3936,3109],[3999,3304],[3938,3301],[3937,3303],[3999,3112],3682,3683,3999,[3937,2980],[3999,2981],3173,3238,[4002,3112],3938,3489,3999,[4000,9841],[3938,9937],10029,10030,10031,10032,10033,[3936,10127],[3999,10128],10028,[4002,9932],[4001,9836],3614,3615,[3936,3236],3238,[4002,3302],[4000,3302],[3999,3305],3935,3937,3678,3679,[4002,2980],[4000,2981],3173,3176,3174,[3938,3047],3937,3618,3619,3935,3425,3999,[3938,3300],[3935,3305],3937,3614,3615,3999,3935,3999,[3936,9841],[3999,9842],[3944,10129,9647],4005,3559,[4002,3881],3937,4000,[3938,3876],3941,[3938,3881],3938,3938,[3935,3812],3944,3944,4005,4006,3495,3942,4006,[3938,3945],3999,3937,[3936,3812],[4006,10124],10028,10029,10030,10031,10032,10033,[4008,10125],[4008,10126],[4008,10129],[4001,3753],3936,[3999,4068],[3937,4071],3943,3430,[3935,3945],3937,4000,3936,[4001,9649],[4000,9650],[607,9647],607,607,607,607,[607,9550],[4005,9643],[3944,9644],3941,4008,[4002,4009],4002,[3935,3940],3944,4008,4007,3941,3941,3431,3941,[4000,3879],3999,[3937,3748],3943,3688,3689,[3941,9745],[3942,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9808],[3977,9809],3977,3977,3977,3913,3914,3978,3977,3914,3977,3913,3977,3978,3914,3913,3978,3978,3914,3914,3977,3914,3913,3977,3978,3978,3914,3914,3913,3977,3977,3977,3914,3914,3977,3913,3914,3913,3914,3913,3975,[4097,3786],4097,4097,4097,[4097,4038],3912,3911,[4097,4042],[4097,4043],4097,4097,4097,[4097,3974],3913,3978,3913,3978,3977,3978,3914,3914,3913,3978,3978,3914,3914,3977,3913,3914,3913,3978,3911,[4097,4039],[4097,4040],3912,3913,3914,3977,3914,3911,[4097,3849],4097,4097,4096,[4097,3847],3912,3977,3914,3914,3978,3914,3978,3975,[4097,3719],3976,3978,3978,3914,3913,3914,3978,3913,3913,3977,3978,3914,3978,3978,3913,[3975,9622],[3976,9623],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[9959,9477],[607,9960],[607,9765],607,607,607,607,607,607,607,607,607,607,[3562,805],3562,3562,3950,4013,3949,4014,3563,4011,3949,3948,4011,3949,4012,3562,3500,3499,3948,4011,3563,3948,[3564,815],[4011,870],[3562,998],[3434,1001],[3947,999],607,607,607,607,607,607,[3500,805],4013,3950,3948,4014,3563,3947,3950,3949,3948,3950,4011,3562,3563,4013,4011,3563,3949,4011,3949,3564,3564,3950,4011,3500,4011,3500,[4012,935],607,607,607,[3950,933],3564,3948,4013,3947,4014,3500,4014,3949,3949,3950,3500,4013,3950,4011,4011,4012,3949,3947,4013,4012,3562,3950,3499,3563,3564,3499,3436,4014,3947,4012,3564,3499,3947,[3948,935],607,607,607,607,607,607,607,607,607,607,[607,9668],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9742,9931,[4000,9932],[3935,9836],4002,4001,3935,4000,4000,3999,3936,3937,4000,3938,3935,[3240,4065,9553],[3233,9457],[3231,9357],[3168,3871,9360],[3231,4066],[3169,4066],3425,3936,3935,[3169,4003],3168,3167,3167,[3234,935],[607,9553],[607,9453],[607,9456],[3231,9554],[3232,9357],[3231,9357],[3232,9360],[3167,9452],[3234,9453],[3233,9456],[4007,9554],[3943,9357],[4006,9360],[3942,9547],[3234,9548],3231,3233,[3170,9553],[3941,9554],[3944,9357],[3944,9360],[3167,9643],[3231,9644],3233,[3169,9553],[3167,9453],[3168,3807,9456],[3231,3810,9548],3233,3170,3232,3233,[3231,3807],[3234,3743],[3169,3810],3167,3170,3234,[3233,9553],[3167,9453],[3170,9548],3231,[3169,3807],[3169,3743],[3167,3810],[3233,9553],[3234,9453],[3232,9454],[3168,9455],[3170,9456],[3942,9457],3944,3943,3942,3942,[4006,9452],[3232,9548],3169,3167,3168,[3170,9646],[3238,3744,9835],[3238,3745,9836],[3240,3746],4000,3999,3937,3936,3935,3553,4001,3999,[3935,9745],[4000,9746],[607,9647],607,607,607,607,607,607,607,607,607,607,[607,9550],[3935,9643],[4001,9644],3935,[3938,3110],[4000,3301],3237,[3938,3241],4001,3935,[3936,9841],[4002,9933],[4002,9934],[4002,9836],4000,3935,4002,3937,[3935,9841],[3936,9935],[3938,9936],[4000,9836],3935,[3935,3300],[3999,3304],[3938,3303],[4002,3111],4002,[4002,9841],[3999,9933],[3936,9934],[4000,9937],10033,[3936,3817,10125],[4000,10126],[3938,3812,10127],[3943,10128],[3937,3817,10129],[3999,10223],[4002,3813,10224],[3941,10124],[10028,9550],[4002,9739],[3678,9740],3679,[3935,3300],[4000,3112],4002,3935,[3936,9841],[3935,9935],[3935,9936],[3999,9836],3999,[3937,3236],3175,3238,[4001,3301],3237,[4002,3241],3935,3682,3683,3937,3936,4002,3999,3936,4002,3678,3679,3999,3553,[4002,9841],[3938,9937],9938,[3999,4070,9743],4008,4005,[4002,3945],3937,4000,[4002,3940],4007,[3938,3945],4001,4001,[3938,3876],3624,3625,4007,4008,4005,3941,3944,[3936,4009],3936,3935,[4002,3876],4005,[4008,10124],[3942,10125],[3941,10126],[4006,10127],[4008,10128],[3942,10129],[4005,10221],[3936,3879,10222],[4000,3878],3942,[3935,3815],4001,3937,[3938,3877],[4001,4069],[3936,3880],3937,3938,[3935,3813],[3937,3749,9745],[4005,9746],[607,9743],607,607,607,607,[607,9646],[3941,9643],[3941,9644],4008,4005,4007,[3999,3753],[4002,4068],[4002,4069],3943,3942,4007,4005,4007,[3937,3880],3937,[3937,3813],4007,4007,4008,3944,[4005,9745],[4006,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3914,9905],[3978,9809],3914,3978,3913,3914,3913,3977,3911,3912,3977,3914,3977,3913,3913,3978,3977,3978,3977,3978,3914,3914,3914,3977,3978,3978,3977,3978,3978,3978,3977,3913,3913,3977,3977,3914,3978,3977,3978,3914,3975,[4097,3719],[4097,3723],4097,4097,[4097,3848],[4097,3849],4097,4097,4097,[4097,3718],[4097,3719],3976,3977,3977,3977,3978,3977,3913,3978,3913,3913,3977,3977,3978,3978,3914,3914,3913,3913,3911,[4097,4043],4097,4096,[4097,3847],3912,3913,3913,3978,[4097,3979],4097,4097,4097,4097,4097,[4097,3974],3978,3977,3978,3914,3977,3978,3914,3977,3913,3977,3914,3913,3977,3977,3977,3914,3978,3914,3913,3977,3978,3914,3914,[3975,9718],[3976,9719],9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,10055,9573],607,607,607,607,607,607,607,607,607,607,607,[3949,805],3948,3499,4012,3564,4014,4011,3947,4012,3499,4013,3949,4014,3499,4014,3500,3500,4012,3950,4012,3947,3950,[3564,871],607,607,607,607,607,607,[3950,805],[3949,806],[3500,806],[3500,806],3949,3948,3950,3950,3948,3562,3500,3499,4013,4013,3564,3947,3948,4013,4012,3500,3948,4013,3500,4014,3563,3950,3564,3499,3950,[3437,815],[3562,870],[4012,999],607,607,[4012,805],3564,4013,3950,3499,3499,3500,3434,3949,3950,4011,3947,4012,3499,3947,3500,3950,3564,4011,4012,3563,4011,3950,4014,3498,3948,3564,4013,4012,3950,3948,3500,3499,3562,3950,3499,[3564,807],607,607,607,607,607,607,607,607,607,[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9838,10027,10028,[3550,9643],[4001,9644],3936,3938,3935,4002,4002,3618,3619,3938,3938,[3239,4067],3239,[3176,9553],[3174,3808,9453],[4002,9456],[3169,9457],3233,[3231,3872],3999,4000,[3234,3874],3169,3231,3231,[3170,935],607,607,607,[607,9553],[3169,9453],[3169,9453],[3168,9456],[3233,9548],3231,3233,[3231,9553],[3167,9453],[3233,9456],[3167,9548],3170,3169,3168,3169,[3233,9553],[3231,9453],[3233,9456],[3234,9548],3170,3168,3170,3233,[3234,3998],[3234,4003],3231,3234,3168,3168,[3167,3998],3938,4000,[3234,3747],3167,3234,3169,3232,3169,3234,[3169,4062],3999,3936,[3231,3743],[3167,3744],[3231,3745],[3170,3746],[3232,3743],[3231,3747,9553],[3944,9554],[4005,9357],[4006,9360],[4005,9547],[3167,9548],[3168,3742],[3167,3743],[3168,3743],[3168,3810],[3233,9742],9931,[3935,9932],[3937,9836],3936,3938,3488,3935,3936,3938,3937,3936,3938,[3937,9746],[607,9647],607,607,607,607,607,607,607,[4008,805],[3942,806],[4005,806],[4008,9646],[3937,9643],[3935,9644],3936,3999,[3938,3045],3173,[3936,3241],4000,[3935,9841],[3936,9937],10029,10030,[3935,9932],[4000,9933],[3936,9934],[3999,9935],[4000,9936],[3936,9937],10031,10032,[3999,9932],[3937,9836],4001,3936,4000,3935,[3937,9841],[3938,9937],10029,10030,10033,[3944,10129],[4001,3881,10221],[3936,10222],[4002,3876,10223],[4006,10224],[3938,3881],3938,[4000,3812],3942,[4006,10124,9646],[4002,9835],[4000,9836],3937,4002,3553,3936,[3936,9841],[3937,9937],10031,10032,[4000,9932],[3938,9836],[4001,3110],[3936,3304],[3938,3111],3935,[4001,3109],[4000,3111],[3938,9841],[3935,9935],[4002,9936],[4002,9935],[3936,9936],[3935,9836],4000,4000,[3938,9841],[3999,9933],[3938,9934],[3937,9935],[3938,9936],[3936,9937],10033,[3999,10034],[4002,9839],[3936,4068],[3999,4072],[4002,4073],3935,3935,[3936,4004],4008,3941,[3937,3816],3938,[4000,3940],3688,3689,3941,4006,4008,3944,4005,[4000,3817],4001,4001,[3999,3940],3941,4007,[3943,10221],[4008,10222],[3943,10223],[4007,10224],4007,[3938,3817],4002,4001,[3935,4004],4007,[3999,3750],[3935,3752],[3999,3753],3937,4001,3937,4002,[3938,4004],4006,[4005,9553],[607,9457],[607,9357],[607,9360],607,607,[609,9742],[3943,9739],[3944,9740],3944,3431,3944,[4002,3817],3937,4001,[4002,3877],4006,[4006,9841],[3944,9933],[4002,4009,9934],[3999,9836],3936,[3936,3812],4005,3944,3942,4005,[4006,9841],[3944,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,[10001,9523],[3977,9616],[3978,9617],3913,3977,3914,3913,3914,[4097,3979],[4097,3848],3912,3977,3978,3977,3913,3977,3913,3914,3914,3978,3977,3977,3977,3913,3977,3978,3914,3914,3914,3977,3913,3977,3914,3978,3978,3914,3978,3913,3977,3913,3913,3913,3975,[4097,3719],[4097,3785],4097,4097,4097,4097,[4097,3784],3976,3977,3977,3978,3978,3978,3978,3914,3977,3913,3914,3978,3978,3913,3978,3977,3977,3913,3913,3977,3975,[4097,3786],4097,4097,4097,[4097,4038],[4097,4040],[4097,4041],[4097,4042],[4097,4043],4097,[4097,3718],[4097,3719],[4097,3785],4097,[4097,4038],3912,3914,3977,3914,3978,3978,3914,3977,3914,3913,3913,3977,3978,3914,3977,3978,3913,3914,3913,3913,3914,3913,3977,3914,[3913,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9573],607,607,607,607,607,607,607,607,607,[3499,805],[3947,806],3500,3563,3500,3950,3562,3947,3562,3950,3949,3500,3947,3949,4013,3500,3949,3950,3563,3947,3949,3562,3947,3950,[3948,935],607,607,607,607,607,607,[3947,869],3499,4011,3949,3562,4012,4011,3564,3950,3499,4012,3564,3949,4013,4011,3564,4012,3948,3500,3950,4012,3950,3500,3950,3950,3564,3948,3950,3948,[3950,871],607,607,607,607,[3499,869],3948,3950,4014,3950,3950,3949,4012,3949,3947,3950,4013,3949,3948,3437,3500,4011,3563,3500,4014,3499,3947,3562,3564,3499,4014,4014,3435,3434,3950,4011,3499,3500,4012,3563,4012,3563,[4013,806],[3499,806],[4011,806],[3500,807],607,607,607,607,[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10124,[3551,9739],[4000,9740],4002,3999,4002,3936,3936,3682,3683,4001,[3239,4003],3175,3175,3238,[3176,3870],4002,[4001,9553],[3231,9554],3231,[3167,3998],3936,[3232,3747],3231,3167,3234,[3169,935],607,607,[3169,805],[3233,806],3232,3231,3233,3233,3167,3168,3232,3234,3234,3169,3169,3168,3232,3234,3167,3169,3168,3233,3233,3234,3233,[3231,3807],3425,3936,[3231,3747],3232,3232,[3167,3807],3616,3617,4001,[3170,4003],3234,3167,3170,3234,3169,3170,3168,[3232,3872],[3231,4063],[3169,4063],3999,3937,3361,3999,3936,[3233,3747,9553],[3167,9453],[3233,9456],[3167,9548],3234,[3233,3998],3486,3487,[3234,4003],[3234,9838],[3233,10027],[10028,9550],[3936,9643],[4002,9644],3937,4000,3937,3999,3936,4000,3999,[4000,9841],[3999,9842],[4006,806,9647],[3943,806],[4005,806],[4008,807],607,607,607,[3941,805],3429,3941,3943,[4007,9646],[4001,9739],[3550,9740],4001,[3937,3045],3173,3238,[3999,3112],[3937,9841],[4002,9937],10033,[3943,10125],[4007,10126],10028,10029,10030,10031,10032,10033,[4005,10127],[4002,4009,10128],10028,[4000,9932],[4001,9933],[3938,9934],[3999,9935],[3936,9936],[3999,9937],10033,[3936,3812,10125],[3941,10126],[3944,10129],4005,[4000,3945],3938,[3999,3940],3431,[3935,3945],4001,[3938,3876],4005,[4007,9742],9931,[3937,9932],[3937,9933],[3936,9934],[4000,9935],[3999,9936],[3938,9937],10033,[4007,10127],[4006,10128],10028,[3935,9932],[3999,9933],[3937,9934],[3937,9836],3553,3937,[3935,9841],[3936,9937],10031,10032,10031,10032,[4002,9932],[4002,9933],[3937,9934],[3938,9937],10029,10030,10031,10032,10033,[3749,3748,10129],[3936,3749],[4002,3753],4002,3935,3936,3937,4002,[3936,3877],3944,3944,[3999,4009],3937,[4000,4068],[3938,4069],4005,4007,4006,4007,4008,4008,[3938,3881],3999,[4000,3748],3943,3942,3941,4005,3941,3943,3430,4005,[4001,3945],3937,3937,[3937,3812],4007,3944,3943,[3999,3880],4000,3937,3936,[4000,3813],4008,4008,4005,[3937,3880,9553],[3936,3940,9453],[3941,9456],[607,9554],607,[607,9452],[4005,9548],4007,4006,3942,3941,[3999,3945],3937,3935,3936,[3936,4004,9841],[4007,9937],10029,10030,[3936,9932],[4000,9933],[3999,3940,9934],[3941,9935],[4006,9936],[4008,9933],[3941,9934],[4008,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10097,9619],[3977,9712],[3977,9713],3913,3977,3978,3913,3977,3975,[4097,3786],[4097,3847],[4097,4039],3912,3977,3978,3977,3978,3977,3978,3913,3913,3914,3913,3977,3913,3978,3978,3977,3977,3977,3911,[4097,4039],3912,3913,3911,[4097,4041],3912,3913,3977,3978,3977,3913,3913,3914,3975,[4097,3720],[4097,3721],[4097,3719],[4097,3719],3976,3977,3978,3977,3913,3914,3913,3914,3914,3977,3913,3914,3977,3977,3977,3914,3914,3914,3977,3978,3914,3913,3975,[4097,3720],[4097,3721],[4097,3785],4097,4097,4097,4097,4097,4097,[4097,3974],3913,3975,[4097,3786],4097,[4097,3782],3913,3913,3913,3914,3913,3914,3914,3977,3978,3914,3977,3978,3914,3913,3911,[4097,4039],3912,3913,3977,3978,3913,3914,3913,[3977,9718],[3978,9719],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,[4011,869],3499,3563,3500,3436,3949,3500,4014,3948,3564,3562,3564,3948,3499,4011,3562,4011,4011,3434,[3499,815],[3562,870],[3563,998],[4012,1001],[4011,1002],[3947,999],607,607,607,607,607,607,[4012,933],3950,3948,3950,3564,4012,3947,3950,3949,3562,3950,3564,3564,3564,3949,3562,4014,3564,3949,4011,3563,3563,3948,3562,4011,4011,4014,4011,3563,[3948,935],607,607,607,607,[4012,933],3562,4013,3947,3500,4011,3562,3500,3434,3499,3563,3950,3499,3950,4012,4013,3947,3562,3947,3948,4014,3564,4011,4014,3499,4013,3950,3947,3949,4011,3948,3499,3950,4011,3948,4014,3563,4013,3947,3499,[4014,871],607,607,607,[607,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9451,9452,[4000,9548],4002,3999,3937,3935,3935,3937,4002,3935,4002,[3239,3874],3239,3174,3174,[3176,3934],4001,[3938,9649],[3935,9650],[3233,9551],[3169,3871],3999,3361,[3169,3743],[3234,3809],3231,[3167,935],607,607,[3232,933],3234,3232,3167,[3168,3807],[3232,3744],[3231,3746],[3231,3810],3231,3232,3167,3233,3167,3233,3167,[3231,3808],[3169,3743],[3234,3810],3167,3231,3232,3167,3231,[3168,3998],3551,4002,[3232,4003],[3233,3742],[3169,3743],3937,3680,3681,4001,[3169,3874],3170,3231,3168,3232,3233,3169,3168,3233,3168,3231,[3232,3872],3999,3936,3935,4000,[3167,4067],3231,3232,3232,3231,[3232,3872],[3233,4063],3999,[3234,4003],3170,3232,[3168,10124,9646],[3240,4065,9739],[4002,9740],3938,3935,4001,3936,3938,3936,[3935,9841],[3999,9937],9938,[3943,9743],3941,3942,[4000,3817],[4001,806],[4000,3813,806],[4005,806],3941,4007,3624,3625,[4005,9646],[3935,9835],[4000,9836],3935,[3936,3236],3238,[4001,3112],[3999,9745],[3935,9746],[10033,9551],[4008,10129],[4005,10221],[4008,10222],[4006,10124],[4008,10125],[4001,10126],[4006,10127],[4006,10128],[4007,10129],[4006,10223],[3938,3817,10224],[3938,10124],10028,10029,10030,10031,10032,10033,[3937,10129],[4001,3876,10221],[3941,10222],4008,3941,[3936,4009],3936,[3999,4004],4005,[3935,4009],3936,[4000,3940],3941,[3944,9838],[3944,10027],10028,10029,10030,10031,10032,10033,[3942,10129],[3620,10223],[3621,10224],[3943,10124],10028,10029,10030,[4001,9932],[3999,9935],[3935,9936],[3935,9937],10033,[4008,10127],[4008,10128],[3941,10127],[3941,10128],10028,10029,10030,10033,[4001,10125],[3999,10126],[3938,3876,10127],[3938,3881,10128],[3937,10129],[3936,4068],4005,4008,[4000,3749],[3936,3749],[3936,3816],4002,4002,3999,[3937,4004],3943,4006,[4000,3753],3999,4001,[4002,4004],4005,3941,4007,3942,3944,[4002,3945],[4001,3813],3941,3429,4006,4005,[3999,4071],[4000,4072],4005,3944,4005,[3936,3880],3938,3937,[3999,3876],3944,4006,[3999,4009],3999,3938,[3999,3813],[3999,3749],4006,3943,4008,[4002,3817],3938,[4001,4004],[4001,3881,9745],[4001,9746],[607,9551,9547],[3938,3815,9548],[3937,3877],[4000,4072],[3936,4073],[3936,3878],[4000,4071],[4002,3880],3935,[3937,3813],[4001,3749,9841],[3942,9937],10033,10125,10126,10028,10029,10030,10031,10032,10029,10030,10033,10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9712],[3914,9713],3913,3914,3914,3977,3978,3977,[4097,3979],4097,4097,[4097,4038],3912,3914,3977,3913,3977,3914,3978,3913,3913,3978,3914,3913,3911,[4097,4041],3912,3978,3978,[4097,3979],4097,[4097,3848],3912,[4097,3979],4097,[4097,3782],3977,3914,3978,3977,3978,3913,3978,3914,3978,3913,3913,3914,3977,3978,3914,3914,3978,3914,3913,3913,3977,3911,[4097,4039],3912,3978,3978,3978,3913,3977,3977,3914,3914,3978,3978,3914,3914,3978,3975,[4097,3720],[4097,3721],[4097,3723],4097,4097,[4097,3783],3976,3914,3913,[4097,3787],4097,[4097,3846],3913,3977,3914,3978,3977,3911,[4097,4039],3912,3978,3977,3913,3977,3977,3911,[4097,3850],4097,[4097,3782],3913,3914,3977,3978,3913,3977,[3913,9814],[3913,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,[3564,933],3562,3499,4012,3500,3950,3948,3948,4012,3562,3563,3563,3500,4011,3436,4012,4013,4014,3564,[4011,871],607,607,607,607,607,607,607,607,607,607,[3500,805],4011,3950,3949,3563,3500,4013,3949,3563,3947,3563,4013,3500,3948,4014,4013,4013,3947,3950,4011,3499,3948,3948,4011,4014,3499,4014,3950,[3949,815],[3564,870],[4011,999],607,607,607,607,[3562,997],[3563,934],[4011,816],3564,3499,3500,3563,4013,3564,3499,3498,3947,3948,3948,3500,3950,3948,3947,3950,3563,3434,3564,3499,4012,3563,3500,3948,3950,3950,3948,3947,3949,3500,3950,3948,4012,4012,4014,3947,3947,[4011,935],607,607,607,[607,9572],9761,9762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9547,[3999,9548],3937,3938,4002,3938,3935,4000,4001,4001,3935,[3176,4003],3238,3174,3238,[3175,3807],3999,4002,[3935,9745],[3936,9746],[3168,9743],3170,[3234,3871],[3234,4063],[3232,4065],[3167,4067],3168,[3233,935],607,607,[3231,869],3170,3234,3167,[3170,3998],3935,3553,3999,[3167,3743],[3170,3747],3231,3167,[3233,3808],[3168,3743],[3169,3743],3937,3937,3936,[3170,3743],[3234,3743],[3233,3744],[3232,3745],[3170,3746],3935,4000,[3234,4066],[3168,3873],[3170,3806],3935,3553,3935,3936,[3170,3811],3169,3169,3234,3167,3169,3168,3233,3169,3170,[3168,9357],[3168,9360],3170,[3169,3872],[3232,4063],[3232,4063],[3168,4067],3170,3232,3169,3170,3233,3233,3233,[3231,3871],[3168,3874],3169,3234,[3170,9547],[3239,9548],[3175,3872],3937,4000,4001,3935,3937,[3937,9841],[4002,9937],10033,[4006,10034],[3944,9839],3559,4005,[3937,3945],4001,[3938,4004],3942,3944,3944,3688,3689,[3942,9742],[9931,9550],[4002,9739],[4000,9740],[3937,3236],[3999,3241],4000,[3936,9649],[3936,9650],[3944,10129,9647],4006,4006,3944,3943,[3937,3879,10221],[3935,3813,10222],[4006,10223],[3943,10224],3943,3942,[4001,3945],4000,[3937,10124],[3937,3940,10125],[3941,10126],[4005,10127],[3938,3817,10128],[4002,10129],3938,[4000,3940],4005,3431,3941,[3999,4073],[3936,3748],4006,3943,[3938,3817],3935,[3937,3877],4006,3943,3943,[3936,3945,10124],[4000,10125],[3935,10126],[3935,10127],[4000,10128],[3937,3812,10129],4008,3684,3685,3944,[4005,10124],[3942,10125],[4000,4009,10126],10028,10031,10032,10033,[4008,10129],[3624,10223],[3625,10224],[4005,10223],[4007,10224],[4007,10124],[3943,10125],[4006,10126],[3937,3881,10129],[4000,10221],[3999,10222],[3935,3940,10223],[4002,3945,10224],3935,4000,[3938,3812],3943,3944,4007,[3937,3817],4000,4000,4001,[4002,4068],3944,4007,[3999,4009],3999,3999,[4000,3877],3942,3559,4005,3943,[4000,4072],[3937,3880],[3938,4004],4005,[4001,4071],[3936,4072],[3936,3879],3935,3936,[3936,3878],[4002,4072],[3999,4073],3938,3937,4000,[4001,3940],3941,3944,[3938,3879],3938,[4001,3814],4007,4005,3943,3620,3621,[3999,3881],[3936,3814],4006,[3938,3945],[3936,9553],[3936,3940,9548],4006,[4000,3815],4002,4002,3936,3937,3935,[4001,3748],[4005,9745],[4005,9746],[10033,9551],10129,10221,10222,10124,10125,10126,10127,10128,10125,10126,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9712],[3914,9713],3913,3913,3977,3914,3911,[4097,4039],[4097,4043],4097,4097,4097,[4097,3974],3977,3978,3978,3913,3977,3977,3977,3913,3913,3977,3977,[4097,3979],4097,[4097,3847],3912,3913,3975,[4097,3786],4097,[4097,4038],[4097,4043],4097,[4097,3910],3978,3914,3913,3914,3977,3978,3978,3913,3978,3977,3913,3913,3913,3911,3912,3913,3914,3977,3913,3914,3911,[4097,3849],4097,[4097,3974],3977,3914,3913,3914,3913,3914,3977,3911,[4097,4041],[4097,4042],3912,3913,3914,3977,3913,3913,3975,[4097,3786],4097,[4097,3782],3913,3913,3913,[4097,3915],4097,[4097,3910],3977,3913,3913,3978,3914,[4097,3787],4097,[4097,4038],3912,3977,3913,3914,3911,[4097,3849],4097,4097,[4097,3910],3914,3914,3977,3977,3978,[3977,9814],[3977,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9768,[607,9573],607,607,607,607,607,607,607,607,607,[3947,997],[3563,998],[4011,934],[3498,816],3948,[3563,815],[4012,870],[3950,934],[4014,816],3500,4011,3499,3948,3499,3948,3500,3948,3947,3563,[3564,935],607,607,607,607,607,607,607,607,607,[3500,805],3564,3437,3564,4012,3563,4011,3948,3950,4014,4011,3563,3564,4013,3947,4012,3948,3949,4014,3950,3500,3500,3563,4012,3950,4011,3562,3563,3563,[4014,871],607,607,607,607,607,607,607,607,[3435,869],3501,4014,3562,3949,3499,3949,3947,3948,3948,4014,4011,3950,3950,4011,3564,3563,3499,3947,3499,3563,3564,4011,4014,4013,3949,3950,3499,3563,3500,4014,3949,4011,3563,3948,3500,3500,3948,[3499,935],607,607,607,[607,9668],9857,9858,9762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9550,[3487,9643],[4001,9644],3999,3938,4001,4002,3999,3936,3935,4000,3936,3937,[3174,3744],[3238,3745],[3175,3746],3937,4000,3999,3936,[3936,9553],[3167,9457],3234,3232,3170,3234,3170,3169,[3232,871],607,607,[3170,933],3231,3232,3167,[3232,3871],4000,4001,4001,3936,[3232,4003],3232,3168,[3233,3998],4000,[3231,4063],[3170,4064],[3170,4066],[3168,4064],[3170,4064],[3232,4063],[3233,4065],[3169,4065],[3170,4065],[3170,4064],[3168,3874],3231,3169,[3232,3870],4001,3938,4001,3935,[3231,3875],3167,3233,3170,3168,3169,3232,3232,3168,[3231,9452],[4002,9453],[3938,9456],[3168,9457],3167,3231,3234,3234,3169,[3234,9264],[3233,9267],3167,3169,3233,3233,3234,3232,[3232,9264],[3168,9452],[3174,9548],3239,3239,[3240,3871],4002,3937,[3174,4064],[3238,4065,9841],[3239,4066,9937],10033,[3943,10129],[3936,4069],[3936,4070],4006,4005,[4000,4073],3936,[3936,4068],[3936,4071],[4001,4072],4007,3942,4008,[4007,9838],[3942,10027,9646],[3487,9835],[3937,9836],[3937,3110],[3999,3112],4000,[3552,9745],[3937,9746],[3943,9647],4008,3428,4005,[4002,3817],4002,[3935,4004],3941,4007,4008,3943,[4001,3880],3936,4000,[4002,4004,10221],[4008,10222],[4006,10223],[3938,3881,10224],3937,[3935,3813],4005,4005,4005,[3999,3880],3935,[4002,3812],4005,4006,[3937,3945],4001,4002,[3938,4004],4007,3942,[3999,4009],[3935,10221],[3999,10222],[4001,10223],[3936,10224],[3935,3876],3943,3943,4005,3943,3944,[3942,10221],[4001,3817,10222],[3936,10124],[3999,10127],[3935,10128],[4000,4072,10129],3941,3688,3689,3942,3943,3943,[3941,10221],[3943,10222],[4002,3945],3936,[4000,3813],3944,3942,[3999,3815],4001,[4001,3940],4007,3429,3941,[4001,3881],4002,4001,3937,3935,[3936,3812],3942,3942,[3999,3749],[4001,3753],3936,[4002,4004],3942,4007,[3938,4009],4002,3937,[4001,4068],[3935,3880],4000,3936,4000,[3936,3814],[3938,3753],3999,4002,3937,3938,3937,4000,[3937,3878],[4000,4072],[3938,4073],4002,4002,[3935,4004],4007,4007,3941,3684,3685,[3999,3945],[4000,4068],[3938,4069],[3938,4073],4002,[4001,4004],4005,3942,[4000,3750],[4000,3752],[3999,3753],4000,[3935,3814],4007,[4008,9649],[4008,9650],[10129,9647],0,0,0,0,10221,10222,10223,10224,10221,10222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3914,9808],[3914,9809],3914,3977,3978,3978,[4097,3979],4097,4097,4097,[4097,3718],[4097,3786],[4097,4038],[4097,4039],3912,3914,3914,3913,3911,[4097,4040],3912,3978,3913,3911,[4097,3849],4097,4097,[4097,3974],3978,3977,[4097,3979],4097,4097,4097,4096,[4097,3847],3912,3977,3914,3914,3914,3913,3978,3914,3977,3977,3978,3914,3911,[4097,3850],[4097,3847],[4097,4039],3912,3977,3978,3914,3975,[4097,3723],4097,[4097,3848],3912,3913,3913,3978,3913,3978,3911,[4097,3849],4096,4097,[4097,3782],3978,3978,3977,3914,3978,3913,[4097,3787],4097,[4097,3910],3911,[4097,4039],[4097,4040],[4097,3849],4097,[4097,4038],3912,3977,3977,3978,3978,[4097,3915],4192,4097,[4097,3848],3912,3914,3978,[4097,3787],4097,4097,[4097,3718],3976,3914,3913,3977,3913,[3914,9622],[3914,9623],[10006,9524],10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9863,9864,[607,9669],607,607,607,607,607,607,607,607,607,607,607,607,[3947,933],4013,[4014,935],607,607,[3563,997],[3950,998],[4011,934],[3562,816],3950,4011,3948,3948,4014,[3947,815],[3564,870],[4014,999],607,607,607,607,607,607,607,607,607,[3436,869],3628,3629,3563,4011,4011,3500,4011,3562,3949,3563,4012,3563,3563,4011,4012,4014,3499,3563,3948,3949,3563,3499,3563,4012,3947,3498,4013,3563,[4013,935],607,607,607,607,607,607,607,607,[3947,933],4011,3562,4012,3563,4011,3947,3500,3500,3564,3947,3948,3948,3564,3563,3499,3949,3947,3948,4011,3950,3947,4011,4013,4013,3499,3949,4014,4014,3563,3949,3564,4012,3947,3947,3436,3947,3564,[3563,935],607,607,607,[607,9764],[607,9953],[9954,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[4001,9739],[4000,9740],3999,3936,3935,3425,4002,3938,3937,3937,3999,4001,3937,3936,3999,3999,3937,3936,4000,4000,[3936,9553],[3231,9554],3170,[3233,815],[3231,870],[3231,1002],[3233,998],[3232,999],607,607,[3232,869],3233,3233,3169,3169,[3167,3998],3935,3938,4000,[3232,3873],3167,3169,[3168,3871],[3168,3873],3231,3231,3234,[3231,9357],[3168,9360],3232,3233,3170,3167,[3168,9357],[3233,9360],3233,3168,[3233,3934],3999,3935,3935,3936,[3231,3939],3170,3231,3170,3169,3168,[3233,9357],[3233,9360],[3233,9452],[4002,9548],4001,4002,[4001,9553],[3231,9554],3231,3232,3170,[3231,9452],[4000,9453],[3935,9456],[3169,9457],[3233,9357],[3168,9360],3169,3233,[3170,9452],[4001,9453],[3240,3743,9548],[3238,3809],3174,3239,3238,[3239,4062],[3239,3873],[3176,9649],[3174,9650],10033,[3942,10129],3942,[3937,3753],4000,[4000,3877],[3935,3880],4002,[4000,3814],[3938,3753],4002,3937,[3935,4068],4005,3431,4005,[3944,9742],9931,[4001,9932],[4001,9836],3936,3999,[4002,9841],[3935,9842],[4006,9647],4007,3944,3941,[3938,3881],3935,[3938,3877],4008,3428,3941,[3935,4073],3935,[3937,3813],[4000,3749],3942,3943,4007,[4000,3945],4000,[3936,4068],[3937,4069],3941,[4001,4009],4001,4000,[3999,3940],3941,[4001,4072],[4000,3880],3999,3936,[4000,3878],[3936,4071],[3936,4072],[3999,4073],4000,3938,3937,3937,[4000,3940],4008,3944,3942,3559,3944,3944,[4002,3945],3938,[3999,10223],[3999,10224],4002,[3937,4004],3943,3941,4006,3495,3944,3941,[3938,4072],[4002,4073],4002,[3936,4004],4008,4006,[3938,4009],3935,[4000,3878],3941,4007,4008,[3999,3945],3936,4000,4001,4000,[3935,3940],3943,3431,4007,4006,[4001,3816],[3935,3878],[4002,4071],[3938,4072],[3937,4073],3999,3935,3936,3999,[3935,3814],[3999,3753],4002,[3935,4004],4006,[4000,3750],[4000,3752],[3936,3749],[3999,3750],[3935,3751],[4001,3752],[3936,3815],3999,4000,[4000,3813],[3937,3749],4006,4007,4005,3944,4006,4007,[4002,4009],3999,3938,[3999,3813],[3999,3749],4005,4005,4005,3942,3944,[3936,3880],[3936,3813],3941,4008,[3941,9745],[3941,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3914,9905],[3914,9809],3977,3977,3911,[4097,3849],4097,4192,[4097,3783],3976,[4097,3979],4097,4097,[4097,3847],3912,3914,3913,[4097,3787],4097,[4097,3782],3977,3911,[4097,4043],4097,[4097,3718],[4097,3719],3976,3913,3914,3975,[4097,3719],[4097,3785],4097,4097,4097,[4097,3782],3977,3978,3913,3978,3978,3913,3914,3977,3978,3978,3978,[4097,3979],4097,4097,4097,[4097,3847],3912,3913,3913,3978,3975,[4097,3785],4097,[4097,3782],3977,3978,3914,3913,3913,[4097,3787],4097,4097,4097,[4097,3910],3978,3977,3977,3913,3977,3913,[4097,3915],4097,[4097,3847],[4097,4043],4097,4097,4097,4097,4097,[4097,3847],[4097,4041],3912,3914,3913,3975,[4097,3722],[4097,3723],4097,[4097,3974],3978,3913,[4097,3851],4097,[4097,3783],3976,3978,3978,3914,3913,3978,[3978,9718],[3977,9719],[10102,9620],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[9959,9477],[607,9960],[607,9765],607,607,607,607,607,607,607,607,607,607,607,607,[3499,997],[4013,998],[3499,999],607,607,607,607,607,[3564,869],3500,4014,3564,3562,3499,[3499,871],607,607,607,607,607,607,607,607,607,607,607,[3436,933],3692,3693,3950,3434,3499,3949,3564,3562,3563,4011,4011,3499,3947,3436,3948,4011,3562,4011,4011,3434,3499,3948,3947,3500,3435,3498,4011,3950,3499,[4011,806],[4012,807],607,607,607,607,[3950,805],[3499,806],3950,3947,3950,3949,3950,4013,3949,3500,4013,4014,3947,3499,3563,3499,3500,3947,3562,3948,3563,3562,3563,3435,4013,3950,4013,3562,4013,3500,3947,3562,3948,3947,3562,3499,3499,3628,3629,3563,[3563,871],607,607,607,607,607,[607,10050,9572],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[4000,9835],[3999,9836],3938,3937,3936,4000,3999,4000,3937,4000,4000,3938,3361,3936,3999,4000,3938,3937,3487,4001,4000,[4000,9553],[3170,9457],[3167,871,9357],[607,9360],607,607,607,607,[607,9357],[3169,869,9358],[3231,9359],[3169,9360],3234,3233,[3233,3871],[3167,4064],[3234,4065],[3168,3874],3170,3234,3169,3168,3234,[3168,9357],[3168,9360],[3232,9452],[3174,9453],[3238,9456],[3231,9457],3232,3231,[3168,9452],[3935,9453],[3935,9456],[3232,9457],3167,[3169,4062],[3167,4063,9357],[3938,9358],[3935,9359],[3938,9360],[3938,9357],[3232,9360],3169,3170,3233,[3232,9452],[3935,9453],[3936,9456],[4000,9548],3936,3938,3938,[4001,9649],[3936,9650],[3167,9551,9357],[3168,9360],[3232,9547],[3936,9548],3935,4002,[3937,9553],[3936,9453],[4002,9456],[3231,9457],[3231,9547],[4001,9548],4001,3936,3935,[3175,3809],3239,3239,3238,3175,[3175,9745],[3238,9746],[3941,10129],3941,3943,[4002,4073],4000,3938,[3938,3814],[3999,3749],3944,[3937,4009],3936,3937,4000,[4002,4004],3942,[3936,4072],[4002,3879,9838],[3936,3813,10027],10028,[4000,9932],[4001,9933],[3938,9934],[3938,9937],9938,[3935,3940,9743],4005,3944,3944,[3935,3945],4001,3936,[3938,4004],4008,[3936,3879],4000,3999,[3937,4004],3943,3942,3428,4005,3943,[3938,3749],[3935,3753],4001,[4000,3878],[3938,4073],3936,[3935,3814],3942,[3936,3817],4000,3999,3938,3936,3938,4001,3999,4002,3937,3938,3937,[3938,3813],3942,4006,4007,3943,3943,4005,3944,[3938,3880],4001,[4000,3813],[3938,3753],4002,[3936,4068],[3999,4069],3941,4007,4006,3944,[4001,3880],3938,3935,4001,[3936,4068],[3938,4069],4007,3943,[3935,3753],4002,[3938,3877],3942,3942,[3938,4009],3937,4002,4000,[3935,3813],3943,3941,3944,3941,[3935,4072],[3938,4073],4002,4001,3935,3999,4001,3936,3936,4001,[3937,4004],[3936,3817],3937,[3936,3812],3944,3941,4006,3944,4008,4005,3943,3942,[3936,3749],[3935,3815],[4002,4068],3943,4005,3430,3943,4007,4007,3944,3941,[3938,3816],3936,[3935,4068],3943,3942,3944,3943,4005,[4002,3817],3999,[3936,3812],4006,4005,[3943,9841],[3942,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,[10001,9523],[3914,9616],[3913,9617],3913,3975,[4097,3785],[4097,3783],[4097,3719],3976,3913,3975,[4097,3785],4097,4097,[4097,3848],3912,3913,[4097,3915],4097,[4097,3846],3977,[4097,3787],4097,[4097,3783],3976,3914,3977,3978,3913,3913,3977,3975,[4097,3786],4097,4097,[4097,3910],3913,3977,3913,3977,3977,3913,3914,3914,3913,3914,3913,3975,[4097,3719],[4097,3723],4097,4097,[4097,3974],3913,3913,3977,3911,[4097,4043],4097,[4097,3846],3914,3913,3913,3914,3978,[4097,3851],4097,4097,[4097,3783],3976,3977,3913,3977,3913,3977,3913,3975,[4097,3719],[4097,3785],4097,4097,4097,[4097,3784],[4097,3723],4097,4097,4097,[4097,3848],3912,3913,3914,3913,[4097,3787],4097,[4097,4038],[4097,4039],3912,[4097,3915],4097,[4097,3782],3977,3911,[4097,4039],3912,3978,3978,[3913,9718],[3978,9719],9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,10055,9573],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4013,933],3562,3500,3563,3563,4013,[4013,935],607,607,607,607,607,607,607,607,607,607,[4014,805],3948,3948,4011,4013,3499,4013,3498,3950,3563,3564,4012,4011,3949,3950,3562,3947,4013,3563,4011,4014,3499,3498,3562,3500,4013,4013,3948,4014,4014,3564,3499,3564,[4011,806],[3950,807,563],[607,563],[607,563],[3435,869,563],3562,3563,4012,3498,4011,3564,3950,4013,3950,3499,3499,3435,3564,3949,3436,3563,3947,4014,3499,4012,3564,4014,3499,4012,4012,3500,3562,3950,3950,4014,4014,4012,3563,4013,4011,3949,3692,3693,4012,[4013,935],607,607,607,607,607,[607,9572],9761,9762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9742,9931,[3550,9932],[4002,9836],4000,3937,3937,3935,3938,3936,3937,4002,4000,4000,3938,4000,3935,4002,3999,3935,3936,3999,4000,[3938,9553],[3999,9453],[3936,9456],[607,9457],607,607,[607,9452],[3937,9453],[3937,9454],[3938,9455],[3936,9456],[3168,9457],3168,3233,3168,3232,3169,3233,3167,3167,3233,[3170,9452],[3240,9453],[3238,9456],[3175,9548],3176,3239,[3240,3998,9553],[3231,9457],[3231,9547],[3935,9548],3936,4002,[3999,9553],[3232,9554],[3168,9452],[3936,9453],[3999,9454],[3999,9455],[4000,9456],[4000,9453],[4000,9456],[3169,9457],[3234,9357],[3231,9547],[3935,9548],4000,4002,4000,3999,4002,3938,3425,[3937,9553],[4001,9453],[4001,9456],[3936,9548],3938,4001,3935,3937,3999,3935,[4002,9553],[3935,9548],3999,3935,4002,4001,4000,[3176,3744],[3175,3746],[3175,3747],3238,3240,[3239,9553],[3941,9457],4008,[3938,3880],3935,[3935,3813],[4001,3749],3941,3942,4007,3944,[3936,3753],3937,3937,[4002,3877],[4002,4073],4001,[3936,3748],4005,[3942,10124],10028,10029,10030,10033,[3937,10034],[3935,4004,9839],3941,4006,[3999,4072],[3936,3879],3936,3938,[4000,4068],[3935,4073],4001,3999,3936,[3936,4068],4005,3944,3942,3622,3623,3943,[4000,4009],4000,3936,3937,[3937,3813],3941,3941,[3999,3945],4000,4000,4001,[4002,3813],[3937,3749],[4001,3815],3936,3936,4000,4000,4002,[4001,3812],3943,3943,4008,4006,4008,4008,[3938,4009],[4002,3748],[4000,3749],3943,4005,[4001,3815],4001,3935,[4001,3877],4008,4005,[3936,4009],4002,4000,[4000,3748],[3938,3816],4001,4001,[3938,3812],4007,3941,[4000,3749],[3936,3816],[3935,4004],3941,[4001,4009],3999,[4002,3813],[3938,3749],3942,4006,3942,[4001,4072],[3937,4073],4001,3936,4001,3936,[3999,3814],[4002,3750],[4002,3752],[3936,3750],[4001,3751],[3937,3752],4006,[4000,3881],4000,[4002,3940],3942,4005,3428,3942,4005,3941,4007,3941,3943,[3938,4009],4001,[4002,3877],3943,3944,4005,3943,4005,4005,3943,4008,[4002,3753],4002,[3937,3877],3943,3944,4006,3944,[3935,3881,9841],[4002,9933],[3937,3876,9934],[3944,9935],[3943,9936],[3944,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10097,9619],[3913,9712],[3914,9713],3913,3977,3975,3976,3977,3913,3913,3914,3975,[4097,3719],[4097,3786],4097,[4097,4038],[4097,4039],[4097,3850],4097,[4097,3910],3913,[4097,3915],4097,[4097,3782],3977,3914,3913,3978,3977,3914,3977,3978,[4097,3787],4097,[4097,3718],3976,3914,3978,3977,3977,3914,3978,3914,3977,3914,3977,3977,3977,3913,3975,[4097,3785],4097,[4097,4038],[4097,4040],[4097,4041],[4097,4042],[4097,3850],4097,4097,[4097,3910],3978,3978,3914,3977,3913,[4097,3915],4097,4097,[4097,3974],3978,3978,3977,3978,3913,3913,3978,3978,3977,3975,[4097,3720],[4097,3721],[4097,3722],3976,3975,[4097,3719],[4097,3719],[4097,3786],4097,[4097,3974],3914,3913,3914,[4097,3915],4097,4097,4097,[4097,3847],[4097,4043],4097,[4097,3846],3977,[4097,3979],4097,[4097,3782],3914,3977,3913,[3977,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9573],607,607,607,607,607,[3563,805],[3434,806],[3948,807],607,[4014,805],[3950,806],[3949,807],607,607,607,607,607,607,607,607,607,607,[4013,997],[3499,1001],[3562,1002],[3562,1003],[3434,1004],[3564,1005],[4011,999],607,607,607,607,607,607,[3435,805],[3563,806],[3949,806],[4013,806],4013,3564,3564,3500,3950,4011,3563,3948,3562,3562,3435,3563,3947,4014,3499,3564,3950,3564,3562,3947,3947,3563,3950,3500,3948,4012,3500,3563,3500,3949,4011,4013,3564,3500,627,627,627,627,3949,4012,3500,3499,3564,3563,3563,3436,3948,3949,4013,3949,3499,3950,4011,3947,3562,3563,3499,3499,4011,3948,3950,4011,3947,4014,3562,3948,4013,4011,3499,4012,3500,3564,3563,3562,4013,3498,3500,[3562,935],607,607,607,607,607,[607,9668],[9857,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9838,10027,10028,[3999,9643],[4000,9644],4000,4001,3999,3936,3936,4002,[3238,4063],[3174,4064],[3174,4065],[3176,4066],4002,3935,3935,3999,3553,4000,4002,3937,3935,3489,4000,[3935,9553],[607,9457],[607,9452],[3938,9548],4002,3938,3935,[3361,9649],[3936,9650],[3167,9357],[3233,9360],3168,3233,3170,3170,[3170,9357],[3169,9360],[3232,9547],[3239,9548],3176,3174,3174,3174,[3175,3808],4000,[3938,9553],[3938,9548],3936,3938,3937,4000,[3937,9553],[3175,3811,9548],[3238,3871],4002,3999,3999,4002,3937,[3936,9553],[4001,9453],[3935,9548],4001,3938,3553,3999,3999,3938,4001,3999,3935,4002,3935,4000,4002,3935,4000,4001,3938,3938,4000,4001,3935,3938,3938,4000,3935,4002,3937,4000,[3174,3744],[3174,3745],[3174,3746],[3935,9553],[3936,4009,9554],3936,[4001,3748],3943,3942,4007,3943,3428,4007,[3935,4009],3937,4000,3936,3999,3938,[4001,3877],3944,4006,[3942,10124],[3944,10125],[4000,4009,10126],[3937,10129],3999,[3937,4068],[3938,4072],[3999,3880],3935,3938,3999,3935,3999,4001,4002,[3999,3813],[3938,3753],3937,[3936,4068],[4001,4069],3942,3686,3687,3428,3944,[3935,3816],3999,3936,[3999,4068],[3936,4071],[3936,4072],4007,[3999,3750],[4002,3751],[4000,3752],3942,3944,4006,[3937,3749],[3938,3753],3936,4001,3936,[4000,3876],4008,4006,3942,4008,4008,[3935,4072],[3937,4073],[3935,3812],3428,4008,4005,3942,[3999,3749],[3936,3816],3938,[4002,4068],[4002,4072],[3938,4073],3937,[4000,3813],3942,4008,[3938,3753],3938,[4000,3940],4007,3559,3941,[3937,3817],[3936,4068],[3937,4072],[3937,4073],4000,[4002,3812],4006,4008,3942,[4000,3879],3935,3935,[3936,3813],[3936,3750],[3938,3751],[4002,3752],3944,3620,3621,4008,3941,[3937,4071],3942,[4002,3945],3938,[4002,4068],[3938,4069],4008,3942,3941,[3936,3880],[3938,3877],4007,3941,4008,3943,[3937,3816],3999,[3937,4004],3944,3944,4005,3943,4006,3431,4005,[3938,4009],3935,3999,[4001,3812],3941,3942,[4008,9841],[4005,9937],10029,10030,10031,10032,10033,10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3977,9712],[3977,9713],3914,3913,3914,3913,3913,3978,3914,3977,3914,3977,[4097,3979],4097,4097,4097,4097,[4097,3783],3976,3911,[4097,3850],4097,[4097,3846],3978,3914,3913,3914,3914,3914,3913,3977,[4097,3915],4097,[4097,3782],3978,3913,3914,3978,3977,3978,3913,3977,3977,3978,3913,3914,3913,3914,3978,3975,[4097,3786],4097,4097,4097,4097,4097,4097,[4097,3783],3976,3914,3977,3977,3978,3978,[4097,3979],4097,4097,[4097,4038],3912,3914,3913,3977,3977,3978,3914,3978,3977,3978,3914,3977,3978,3978,3978,3978,3978,3975,[4097,3719],3976,3913,3978,3978,3975,[4097,3719],[4097,3785],4097,4097,4097,4097,[4097,3910],3911,[4097,3850],4192,[4097,3846],3978,3978,3914,[3978,9718],[3914,9719],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,[3948,869],4013,4014,[3948,806],3499,3499,[3562,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4013,869],4012,3499,3949,3948,3500,3949,4014,4013,3948,4011,4014,4013,3950,4013,3501,3949,3949,3949,3564,3500,3950,4012,3498,4012,3562,3948,4014,3950,4012,4012,3562,3499,4013,4011,3562,3564,4014,691,691,691,691,3563,3949,3499,3564,3564,3562,4011,3950,4014,3948,3950,4011,3562,3947,3948,3947,3947,4012,3500,3948,4014,3499,3500,3434,3947,3949,3563,3949,3564,3563,3562,4011,4012,3499,3499,3947,4012,3948,3563,[4011,871],607,607,607,607,607,[607,9764],[607,9953,9572],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10124,[4002,9739],[4000,9740],3935,4001,3361,4000,3999,[3239,3811],3239,3239,3176,3240,[3238,3806],3999,3938,3936,4002,4000,4000,4001,4000,4000,4000,[3175,3811],[3174,9553],[3240,3998,9548],3999,3936,4002,4002,3938,[3936,9553],[3938,9453],[4001,9456],[3233,9457],3231,3231,[3232,9547],[3937,9453],[3938,9456],[3239,3747,9548],3175,3238,3175,3175,[3174,3808],4000,3935,3614,3615,3936,3937,4000,4000,3935,[3174,3939],3240,[3240,3806],3999,3361,4001,3937,3936,3936,4002,3937,3937,3937,3999,3999,4001,4000,3936,3938,3999,3999,3553,4002,4001,4000,3550,3935,4000,4002,3938,3937,4000,3935,3361,3938,3999,3938,4001,4001,4000,3999,3935,[3999,9553],[3999,9554],[3938,4068],[4002,4069],[3937,4070],4007,4006,3622,3623,4005,[3937,3816],3938,4001,4001,4000,3937,[3938,4004],3942,3944,[4007,10221],[3937,3817,10222],3935,3938,4000,3936,4001,3937,4002,3938,3935,3937,3936,[3936,3748],3941,3944,[4001,3749],[4002,3816],3935,[3936,3877],3942,3943,4005,3942,[3935,4009],4000,3999,4000,3936,3999,[3936,4004],4008,4005,3430,3943,3942,3941,3944,[4002,4073],3935,3936,3936,[4000,3940],4007,3942,4007,4005,[3938,4073],3999,4001,[4001,3940],3942,3941,3943,4006,3941,3943,[3999,3753],4000,3999,[4001,3813],[4001,3749],3620,3621,3942,4005,[3938,3815],[4001,4068],4007,3944,4005,[4001,3945],4000,4001,3937,3938,[3936,3876],3942,3430,[3935,4009],4001,[3936,3813],[3937,3749],3944,4006,4006,4005,4006,3684,3685,3943,[4000,3879],3936,[4002,3812],3942,[4000,3815],3999,3936,[3935,3877],4006,[3936,4009],4000,4001,[4000,4004],3941,4007,3942,[3935,4009],3938,[3935,4068],3943,3944,4005,4008,3942,3942,[3944,9841],[3944,9836],[3938,3815],3938,[4001,3876],4005,[4008,9841],[4005,9937],10033,10125,10126,10127,10128,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3913,9521],3977,3913,3913,3914,3977,3914,3913,3977,3978,3978,3913,3975,[4097,3786],4097,4097,[4097,3718],3976,3911,[4097,3849],4097,4097,[4097,3910],3913,3978,3978,3914,3977,3913,3913,3911,[4097,4043],4097,[4097,3846],3977,3977,3978,3913,3978,3914,3914,3914,3977,3978,3913,3911,3912,3914,3913,3913,3975,[4097,3723],4097,4097,4097,[4097,3784],[4097,3719],3976,3978,3913,3913,3914,3914,3913,3975,[4097,3785],4097,4097,[4097,3974],3914,3977,3913,3913,3911,[4097,4039],[4097,4040],[4097,4041],[4097,4042],3912,3978,3978,3914,3913,3977,3977,3914,3978,3913,3977,3913,3977,3977,3913,3975,[4097,3719],[4097,3786],4097,[4097,3718],3976,[4097,3979],4097,4097,[4097,3910],3977,3913,3914,[3914,9814],[3977,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9768,[607,9573],607,607,607,607,607,[4013,933],4012,3564,4012,3500,3948,[3564,935],607,607,607,607,607,[3500,805],[3562,806],[4014,806],[4012,806],[3564,806],[4014,807],607,607,607,607,607,607,607,607,607,607,607,607,[3564,933],3564,4012,3499,4012,3564,3500,4011,3947,3500,3948,3499,4014,3949,3564,3947,3950,3947,3499,4011,4011,3500,3564,3562,3500,3499,4013,3947,3562,3500,4011,3563,4011,3947,3499,3499,4011,4012,[3562,935,755],[607,755],[607,755],[3950,933,755],3563,4013,3500,3947,3562,4011,3499,3564,3947,4014,3948,3501,3499,4011,3499,4014,4012,3562,3499,4012,3562,3949,3500,3499,4014,3948,4011,3499,3948,3436,3947,4012,3947,3947,4011,3950,[3563,815],[3499,870],[3562,998],[3950,999],607,607,607,607,607,607,[607,9572],9761,9762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9547,[4001,9548],3937,4002,4002,4002,3999,3936,[3175,3939],3240,3174,3176,3174,[3240,3934],4002,3614,3615,3999,3936,4000,4002,3999,3937,3486,[3176,3875],3175,[3238,3871],3999,3937,3937,4002,3936,3938,3935,3938,[3937,9553],[3168,9457],[3168,9550,9357],[4002,9643],[4001,9644],3936,[3174,4003],3240,3238,3175,3240,[3239,3998],3935,3936,3678,3679,3937,3938,3999,4002,3937,[3175,4003],3240,[3238,3934],3999,4001,4002,3616,3617,4001,3936,4001,3999,3999,3999,4002,[3240,4065],[3240,4066],[3174,3873],[3175,3871],3938,4001,4000,4001,3937,3937,3936,3999,3935,3936,[3175,4064],[3238,4065],[3175,4066],3937,3937,3999,4002,4001,4001,4000,3361,3937,4002,[3936,9649],[3936,9650],[4001,9551],4002,4000,[3938,3812],4007,3686,3687,4005,[4002,4009],4001,4000,[3937,3748],[3936,3816],4000,[4002,4068],[3937,4070],3559,3944,[4002,3945],[3937,3814],[3935,3815],3937,[4000,3813],[3935,3749],[4000,3815],3999,3936,4002,3936,3937,[3937,4004],3941,4007,3943,3943,[3937,3753],4001,[4000,4004],4006,[4000,4071],[3937,4072],[4002,4073],3937,[4001,3813],[4001,3749],[3937,3815],4001,[3937,4068],[4000,4069],3942,4006,4006,4007,[3999,4072],[3999,3880],4000,4001,3999,3999,[3999,4004],4007,3431,4008,[3935,4009],3999,3937,[4002,3813],3942,3943,3944,4006,4007,3942,4005,[3936,4009],4002,4002,[3936,4004],3944,3684,3685,3942,[3942,9841],[3935,4009,9933],[4000,9934],[4002,3877,9935],[3942,9936],[4008,9836],4005,[3935,3749],[3936,3815],3999,3999,[3936,3940],3944,4006,[3936,4073],3936,[3935,4004],3942,3430,4007,4008,4008,[4006,9841],[4005,9836],4008,[3938,3817],4002,3999,[3937,3876],4005,3944,[3999,3753],3938,3999,[3937,4068],[3938,4073],[4002,3814],[4002,3749],4005,4008,3431,4008,4007,[4000,3816],3936,[3938,3878],3943,3941,[3944,9841],[4005,9933],[3942,9934],[3944,9937],[3941,9932],[4000,4009,9933],[3936,9934],[3936,3940,9935],[3943,9936],[3941,9937],10033,10129,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[3977,9616],[3913,9617],3913,3914,3978,3977,3977,3913,3977,3913,3913,3913,3911,[4097,4039],[4097,4043],4097,4097,[4097,4038],[4097,4039],[4097,4043],4097,4097,[4097,3784],3976,3978,3977,3914,3978,3913,3914,3911,[4097,3849],4097,4097,[4097,3910],3977,3978,3978,3914,3914,3977,3914,3978,3913,3911,[4097,4041],[4097,3849],[4097,3974],3914,3977,3913,3978,[4097,3787],4097,[4097,3718],[4097,3719],3976,3978,3914,3978,3978,3978,3978,3978,3978,3978,3975,[4097,3786],4097,[4097,3848],3912,3914,3911,[4097,4040],[4097,3850],4097,4097,4097,4097,[4097,3974],3914,3977,3914,3978,3914,3913,3911,[4097,4041],3912,3911,[4097,4039],3912,3978,3977,3977,3913,[4097,3979],4097,[4097,3847],[4097,4042],[4097,4043],4097,[4097,3783],3976,3978,3913,[3914,9814],[3914,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9863,9864,[607,9669],607,607,607,607,[3947,805],3948,3947,3434,3500,3947,3435,3499,[3947,807],607,[3564,805],[3499,806],[3501,806],4013,3500,3949,3947,3562,4014,[4014,807],607,[4014,805],[4014,806],[4014,807],607,607,607,607,607,607,607,[3563,869],3563,3564,3563,3500,4014,3947,3564,3564,4012,4011,3498,3564,3949,3949,4011,3564,3948,3950,3950,4011,3500,3500,3564,4012,4014,4011,3500,3562,4013,3500,3564,3499,3563,3947,3437,[3499,815],[3950,870],[3564,999],607,607,[3564,997],[3562,934],[3950,816],3948,4011,4012,4012,4013,3563,4013,3947,4011,3948,4012,3499,3500,3500,3500,4014,3947,4011,3499,3948,4014,4011,3949,3947,3949,3948,3500,4011,3948,3563,3500,3947,4014,3500,[3563,935],607,607,607,607,607,607,607,607,607,[607,9668],9857,9858,9762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9547,[4001,9548],4001,3936,3938,4000,4000,3938,[3240,4066],[3175,4067],3174,3174,3174,[3240,3808],4002,3937,3678,3679,4001,4001,3937,3999,3425,3937,4001,[3240,3939],3240,3176,[3174,3806],3935,3935,4002,3936,3938,3937,3936,4000,[3938,9553],[4000,9453],[3937,9548],4001,4002,3999,[3175,3809],3175,3176,[3240,3808],3999,4000,4002,3999,4002,3935,3999,4000,3937,3938,3937,[3239,3809],[3240,4062],3999,3936,4002,3680,3681,4001,3999,3999,4000,4001,3937,[3174,3874],3239,3238,3240,3240,[3240,3998],3937,4002,4001,3938,3938,3938,3999,4001,[3176,4003],3238,3238,3176,[3175,3998],4000,3999,3999,4000,4000,3936,3937,3938,3616,[3617,9745],[3937,9746],[3941,9647],[3936,3816],3935,[4000,3940],4007,3942,4007,4006,[3935,4073],4000,3999,[4001,3812],4005,[4002,3749],[4001,3815],3938,[4001,3878],[3937,4072],[4001,4073],[4001,4004],4005,[3936,3749],3941,3942,[4000,3817],3999,3936,[3938,3813],[3935,3750],[3938,3752],3941,4006,3495,4007,3942,[4002,4009],3937,[4001,4068],[3999,3879],3938,3937,[3936,3748],[3935,3749],3942,3943,3943,[4002,3753],4001,3936,[3938,3877],4006,3943,[3935,3880],4000,3938,3936,3937,[4002,3813],[3935,3749],3943,3944,3941,3944,[4000,3880],[4000,3748],[3937,3749],3943,3944,3944,[3944,9841],[4006,9836],4005,3431,3942,4005,[3999,3816],3935,[3999,3877],4005,3943,3942,[3941,9841],[3941,9937],10029,10030,10031,10032,[4006,9932],[3944,9836],4007,3941,[4000,3753],3938,[3936,4004,9841],[3942,9836],[4002,3879],3938,[3936,3748],3941,4006,3943,[3944,9841],[3942,9933],[3941,9934],[3941,9937],[3944,9932],[3943,9933],[3938,3881,9934],[3936,9836],3938,[4001,3940],4006,3944,3941,[4001,3815],[3938,9841],[4001,9836],3935,[3938,4004],4007,3944,[4006,9841],[3942,9933],[4007,9934],[3941,9836],[3936,3817],4002,4001,[3936,3812],[4008,9841],[3942,9937],10029,10030,10033,10028,10029,10030,10031,10032,10033,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3977,9712],[3913,9713],3978,3978,3914,3978,3977,3913,3977,3914,3914,3914,[4097,3979],4097,4097,4097,4097,4097,4096,4097,4097,[4097,3718],3976,3913,3978,3978,3978,3914,3913,3913,[4097,3979],4097,4097,[4097,3783],3976,3977,3977,3977,3977,3913,3978,3913,3978,3913,[4097,3979],4097,[4097,3783],3976,3913,3978,3914,3914,[4097,3851],4097,[4097,4038],3912,3914,3913,3913,3914,3977,3914,3977,3978,3913,3977,3914,[4097,3979],4097,4097,[4097,3974],3911,[4097,4043],4097,4097,4097,[4097,3783],[4097,3720],[4097,3722],3976,3913,3977,3913,3978,3977,3914,[4097,3787],4097,[4097,4038],[4097,3849],4097,[4097,3782],3977,3913,3913,3914,[4097,3979],4097,4097,4097,4097,4097,[4097,3974],3978,3977,[3978,9622],[3977,9623],[10006,9524],10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[9959,9477],[607,9960],[607,9765],607,607,607,607,[3564,869],3563,3500,4012,3436,3564,3949,4014,3499,[3949,806],4014,4012,3562,3947,3562,4014,4012,4011,3563,3563,[4014,806],3950,3947,3500,[4014,807],607,607,607,607,607,607,[3564,933],3947,3947,3949,3950,3564,4012,3562,3499,3950,3500,4014,4013,4012,4011,3500,3562,3950,3499,3563,3563,3498,3949,3562,3500,3950,3563,3949,3948,3628,3629,3500,[3950,815],[3500,870],[3948,1001],[3499,1002],[3947,999],607,607,607,607,607,607,[3499,997],[3948,998],[3436,998],[3948,934],[4011,816],3949,3500,3947,4012,4013,3562,3950,3562,4011,4014,3500,3949,4011,4011,3499,3500,4012,3436,3947,4011,3500,3948,3562,3500,4014,3499,[4012,815],[3950,870],[4014,998],[4013,998],[3562,999],607,607,607,607,607,607,607,607,607,[607,9764],[607,9953],[9954,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9550,[3239,9643],[3174,4063,9644],[3174,4064],4000,3999,[3174,4065],[3175,4066],[3174,3874],3175,3239,3174,[3238,3807],[3174,3743],3935,3999,4002,3935,4001,3937,3937,4000,4001,3999,3936,3938,3937,[3239,3810],3238,[3240,3870],3936,3999,3935,3618,3619,3938,4001,3935,3999,4001,4001,3999,4000,3937,4001,[3175,3744],[3239,3746],3937,4002,4002,4000,3938,4000,3936,3999,3936,3999,4002,3937,[3239,3811],3174,[3176,3871],4000,4001,3938,3999,3935,3938,3938,3937,3999,[3175,3811],3239,3176,[3239,9841],[3240,3742,9933],[3175,3743,9934],[4000,9836],3999,3935,3999,3935,3936,3936,3938,3938,[3238,3874],3239,[3176,3808],[3240,3743],3936,3938,4002,3938,3936,3618,3619,3935,4002,3680,3681,[3935,9553],[3944,9554],[3935,4009],3938,[3936,3878],3941,3428,3941,[3935,3817],3935,3935,4002,[3936,3876],3942,3495,3942,[3936,3753],4000,3935,[3999,3813],3942,3620,3621,3941,3495,[4001,3945],3999,3938,[3999,3812],4005,4008,4008,4007,3941,3943,4006,4007,[3999,3816],3936,3936,3935,3938,[3938,4004],3943,3941,3941,4008,3943,[3935,3816],3938,4000,[3937,4068],[4001,4073],4001,4002,3936,4000,4000,[3936,4004],3944,4006,[4005,9841],[4005,9836],[3937,3879],4000,[3936,3812,9841],[4006,9933],[4007,9934],[4008,9935],[3943,9936],[3941,9937],[4007,9932],[3942,9836],3942,3944,3943,4008,[3937,3753],3936,[4000,4004,9841],[3943,9933],[4005,9934],[4008,9937],10033,10125,10126,10127,10128,10028,[3944,9932],[4007,9933],[3943,9934],[3938,3817,9935],[4002,9936],[4001,9937],[3935,3879,9932],[3999,9836],[3936,3813],3943,3941,3944,[4006,9841],[3942,9937],10029,10030,10033,10028,10029,10030,[4001,9932],[3938,9836],[4000,4004],4007,3944,4007,[3944,9841],[3936,3815,9937],[4002,9932],[4000,3814,9933],[4008,9934],[3944,9935],[3943,9936],[4005,9937],10029,10030,[4005,9932],[3935,3881,9933],[3999,9934],[4000,9935],[3936,3876,9936],[3944,9937],10033,10125,10126,10129,10124,10125,10126,10127,10128,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9808],[3977,9906],[3914,9907],[3977,9908],[3913,9909],[3977,9809],3977,3913,3913,3914,3911,[4097,4040],[4097,3850],4097,[4097,3718],[4097,3785],4097,4097,4097,4097,[4097,3783],3976,3914,3914,3978,3914,3913,3914,3913,3911,[4097,3849],4097,[4097,3718],3976,3977,3913,3977,3914,3978,3978,3977,3914,3913,3911,[4097,4043],4097,[4097,3782],3913,3913,3913,3913,3977,[4097,3915],4097,[4097,3783],3976,3913,3914,3978,3913,3977,3913,3913,3913,3913,3978,3978,3975,[4097,3786],4097,[4097,4038],[4097,3849],4097,4097,[4097,3783],[4097,3719],3976,3913,3978,3913,3977,3978,3914,3977,3913,3977,[4097,3851],4096,4097,4097,4097,[4097,3910],3913,3914,3977,3978,3975,[4097,3719],[4097,3723],4097,[4097,3783],[4097,3719],3976,3977,3914,[3913,9718],[3913,9719],[10102,9620],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,10055,9573],607,607,607,607,607,607,[3562,933],4014,4013,3563,4014,3499,4013,3564,4011,3950,4011,3563,3563,4012,3564,3947,3949,4011,4011,4012,4011,3947,3947,3499,3562,[4014,807],607,607,607,607,607,[3563,869],3947,4011,4013,3950,3562,3562,3500,3563,3947,3949,3563,4014,4011,3949,4014,3950,3499,3950,3948,4012,4011,3501,3435,3564,4011,3499,3563,4013,3692,3693,3950,[3950,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3947,869],4011,4011,4014,4013,3499,3948,3949,4013,3948,3500,4011,3948,3436,3563,3948,[3949,815],[4014,870],[3564,1001],[4011,1002],[3950,1003],[3500,1004],[4012,1005],[3948,998],[4013,934],[3950,816],3947,[3563,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,10050,9572],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3238,9739],[3174,9740],3174,[3176,3871],[3238,4067],3176,3176,3175,[3176,3807],[3240,3744],[3240,3746],3618,3619,3999,3937,4002,4001,4002,4002,3938,3937,3937,4002,3936,3999,3999,[3239,3811],3238,[3176,3934],4001,4000,4001,3682,3683,4002,3489,4001,4000,3935,3936,3937,3935,3937,4000,3489,3489,3999,3935,3935,3937,4001,3938,3936,4002,3935,3937,3938,3999,[3176,3875],3240,3239,[3240,3806],3999,3937,3936,3938,3936,3488,3935,4001,[3174,3875,9841],[3174,9933],[3175,9934],[3240,9937],10029,10030,[4000,9932],[3935,9836],3936,3938,[3938,9841],[3936,9933],[3999,9934],[4000,9836],[3174,4003],3238,3238,[3176,3806],3936,3999,3935,3935,3936,3938,3682,3683,3999,4002,3938,3937,[4000,9649],[3486,9650],[4008,9551],[4001,3816],3999,[3999,4004],4008,3941,[4001,3945],4002,[4000,9841],[4000,9933],[4002,3940,9934],[3944,9935],[4006,9936],[4005,9836],[3938,3879],3936,[4001,3814],3942,4008,3684,3685,4007,3941,4008,[4000,3816],3936,[3936,3876],3428,3941,4006,[4007,9841],[3943,9836],3941,3943,3943,[4000,3817],4000,4002,[4001,3748],[4001,3749],3942,4006,4008,3942,3430,3943,3944,[3936,3753],4001,4001,3935,4002,4002,4002,4000,[4000,3748],[4006,9841],[4005,9933],[3944,9934],[3941,9937],[4002,4009,9932],[3935,9933],[3935,9934],[3935,4004,9937],10029,10030,10031,10032,10033,10028,[4006,9932],[4005,9933],[3941,9934],[4007,9935],[3941,9936],[3943,9933],[4002,3749,9934],[4008,9937],10029,10030,10033,10129,10221,10222,10223,10224,10124,10028,10029,10030,10031,10032,10033,10028,[3935,3813,9932],[3941,9933],[4005,9934],[4007,9935],[3944,9936],[3943,9937],10033,10125,10126,10129,10124,10125,10126,10028,[4002,9932],[4000,4004,9933],[3942,9934],[3941,9935],[4008,9936],[3941,9937],10033,10028,10029,10030,10031,10032,10033,10125,10126,10028,10029,10030,10031,10032,10033,10129,10221,10222,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,10002,10003,10004,10005,[3978,9905],[3914,9809],3914,3914,3911,[4097,3849],4097,4097,[4097,3783],3976,3975,[4097,3786],4097,[4097,3718],[4097,3719],3976,3913,3977,3977,3977,3914,3914,3913,3911,[4097,3850],4097,4097,[4097,3974],3978,3913,3977,3911,[4097,4039],[4097,4040],3912,3914,3978,3978,3975,[4097,3785],4097,[4097,3846],3911,[4097,4041],3912,3978,3914,3975,[4097,3786],[4097,4038],[4097,4039],3912,3978,3914,3914,3978,3914,3913,3913,3914,3978,3914,3977,3975,[4097,3723],4097,4097,4097,4097,[4097,3974],3913,3913,3977,3914,3978,3913,3978,3914,3914,3977,3913,[4097,3915],4097,4097,[4097,3718],[4097,3719],3976,3978,3914,3977,3914,3914,3978,[4097,3787],4097,[4097,3782],3977,3913,[3978,9814],[3977,9906],[3913,9907],[3978,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9768,[607,9573],607,607,607,607,607,607,[3947,997],[3562,998],[3948,934],[3950,816],3949,3562,3500,4014,3947,3562,4013,3949,3563,3947,3949,3949,4014,4012,3948,3950,3500,3563,3948,4012,3499,3950,[4014,806],[4014,807],607,607,607,[3564,933],4014,3501,4011,3562,3562,3950,3950,3947,3564,3499,3947,3564,3950,3563,4012,4012,4011,3948,3948,4014,4012,3436,4013,3947,4012,3950,4012,4014,4013,3562,3949,[4012,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3563,933],3500,3948,4013,[3563,815],[3499,870],[4014,998],[3949,998],[3500,934],[3564,816],3562,4013,4012,4014,3500,3950,[3948,871],607,607,607,607,607,607,607,607,[4011,933],4011,[4011,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9572],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3239,9835],[3238,9836],3238,3238,3176,3239,[3174,3742],[3238,3743],3936,3937,3936,3682,3683,3936,3938,3935,3937,3938,4002,3938,3999,3938,4002,3936,4000,3935,[3175,3875],3176,[3176,3998],3489,4002,4002,3935,4000,4000,4000,3936,3936,3938,4000,4002,4000,3999,3937,3936,4001,3999,3936,4000,4002,3935,4000,3999,4001,4000,4000,3936,3999,[3175,3939],3176,3239,[3238,3934],3936,3999,3999,3935,3938,4000,3425,[3999,9841],[3935,9937],10029,10030,10033,10125,10126,10028,[3938,9932],[3936,9933],[3937,9934],[3999,9937],10029,10030,[3550,9932],[3238,3873,9836],3238,3176,[3240,3934],3425,3999,4002,4001,3938,4001,3936,4000,3938,3935,3936,3935,[3552,9745],[4000,9746],[4005,9647],[3937,3817],4001,[3938,4068],4008,3944,4008,[4002,3816,9841],[3550,9937],10029,10030,10031,10032,[3938,4009,9932],[3938,9836],4000,[4002,4004],3430,3944,3941,4007,3942,4008,3430,[4001,4009],3938,[3938,3940],[3942,9841],[3942,9933],[3944,9934],[3942,9937],[4008,9932],[4005,9933],[3944,9934],[3941,9836],[3999,3881],4001,3937,[4002,3812],3495,3942,[4005,9841],[3942,9933],[3942,9934],[3942,9836],3944,4005,[3943,9841],[4001,3816,9933],[3935,9934],[4001,9836],4000,3936,[4002,3813],[4000,3749],[4008,9841],[3942,9937],10029,10030,10033,10028,10029,10030,10033,10125,10126,10127,10128,10129,10124,10028,10029,10030,10031,10032,10029,10030,10033,10125,10126,10129,0,0,0,0,0,0,10124,10125,10126,10127,10128,10129,10124,10028,10029,10030,10031,10032,10033,10129,10221,10222,0,0,10221,10222,10124,10028,10029,10030,10031,10032,10033,10129,10124,10125,10126,10127,10128,10129,10221,10222,10124,10125,10126,10127,10128,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,10098,10099,10100,10101,10001,[3913,9905],[3914,9809],3977,[4097,3979],4097,[4097,3718],[4097,3719],3976,3914,3913,[4097,3787],4097,[4097,3782],3978,3914,3978,3978,3977,3977,3914,3913,3911,[4097,4043],4097,4097,[4097,3784],3976,3978,3977,3977,[4097,3979],4097,4097,[4097,3847],3912,3977,3978,3914,[4097,3787],4097,[4097,3910],[4097,3979],4192,[4097,3782],3978,3978,3913,[4097,3979],4097,4097,[4097,3974],3914,[3913,9814],[3978,9906],[3977,9907],[3977,9809],3978,3914,3913,3914,3978,3913,3911,[4097,3849],4097,4096,[4097,3783],[4097,3723],[4097,3847],3912,3914,3913,3913,3914,3913,3913,3913,3977,3977,3913,[4097,3979],4097,4097,[4097,3974],3977,3913,3913,3914,3914,3913,3978,3913,[4097,3851],4097,[4097,3846],3977,[3914,9814],[3913,9910],10002,10003,9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9863,9864,[607,9669],607,607,607,607,607,607,607,607,607,[4012,869],3949,3948,3949,4012,3564,3562,3562,3562,3948,4014,3564,3500,4013,3949,3564,4013,3948,3628,3629,4011,3949,4013,3950,[4014,871],607,607,607,[3564,997],[3435,998],[3947,934],[3564,816],3498,3949,3499,3563,3562,4011,4011,3949,3564,4011,3949,4013,3562,3499,3563,4013,4011,3948,3500,4013,3564,3499,[3501,815],[3500,870],[3499,998],[3437,998],[3948,998],[4014,998],[4013,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3499,997],[3500,998],[4011,998],[4013,998],[3564,999],607,607,607,607,[4013,933],3947,4012,3564,3950,4013,3563,[3563,935],607,607,607,607,607,607,607,607,[3947,997],[3563,998],[3947,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9668],9665,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9742,9931,[3238,9932],[3238,9836],3240,3175,[3174,3807],4002,4001,3938,4001,4000,3937,3936,3935,3937,3936,3936,3938,3425,3938,3999,3935,3425,4001,3999,3425,[3238,3939],3240,[3175,3872],3937,3936,3936,3937,3999,4002,3937,4000,4000,3936,3999,4000,4000,4001,3937,4002,3938,[3176,4065],[3175,4066],4002,4000,3361,4002,3935,[3175,4065],3936,3999,3938,3935,[3238,4003],3176,3176,[3176,3998],3936,4002,4002,4001,3937,3935,[4000,9841],[3999,9937],10033,10125,10126,10129,10221,10222,10124,10028,10029,10030,10033,10125,10126,10028,[3238,9932],[3238,9935],[3239,9936],[3175,3806,9933],[4001,9934],[4000,9836],4001,3936,[3936,9841],[3936,9933],[4001,9934],[3936,9933],[3936,9934],[4001,9935],[3487,9936],[3552,9836],[3937,9841],[3936,9842],[3943,9647],[3999,3945],3938,4002,[4002,4068],4006,[4008,9841],[4008,9937],10033,10125,10126,10127,10128,10028,[4002,9932],[4000,9836],[4002,3940],4007,[4008,9841],[3944,9933],[4006,9934],[3935,4069,9836],[3999,4071],[3937,4072],[3936,4073],4001,[3999,4004,9841],[4008,9937],10029,10030,10033,10028,10029,10030,[4008,9932],[3937,3945,9836],3938,3938,[3937,3876],4005,[4005,9841],[3944,9937],10029,10030,[4006,9932],[4006,9933],[4006,9934],[4008,9937],10029,10030,[3938,9932],[3935,9933],[3937,3813,9934],[3943,9935],[4006,9936],[3943,9937],10033,10125,10126,10129,10124,10125,10126,10129,10221,10222,10223,10224,0,0,10124,10125,10126,10127,10128,10125,10126,10129,10221,10222,0,0,0,0,0,0,0,0,10221,10222,10223,10224,0,0,10124,10125,10126,10127,10128,10129,0,0,0,0,0,0,0,0,10124,10125,10126,10127,10128,10129,0,0,10221,10222,10223,10224,0,0,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,10196,10197,10097,10001,[3914,9905],[3911,9809],[4097,3850],4097,[4097,3974],3977,3978,3977,3914,[4097,3851],4097,[4097,3846],3978,3913,3913,3913,3977,3913,3913,3914,[4097,3787],4097,[4097,3718],[4097,3719],3976,3914,3913,3977,3978,3975,[4097,3785],4097,4097,[4097,4038],3912,3978,3913,[4097,3851],4097,[4097,4038],[4097,3850],4097,[4097,3910],3978,3913,3913,3975,[4097,3786],4097,[4097,4038],[3912,9814],[3978,9910],10002,10003,[3977,9905],[3978,9906],[3977,9907],[3977,9809],3914,3978,3911,[4097,4043],4097,[4097,3783],[4097,3719],3976,[4097,3979],4097,[4097,4038],[4097,4039],3912,3914,3978,3913,3913,3977,3913,3914,3913,3975,[4097,3786],4097,[4097,3782],3914,3978,3977,3977,3978,3978,3914,3914,[4097,3915],4192,[4097,3910],[3913,9814],[3977,9910],10006,10098,10099,10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[9959,9477],[607,9960],[607,9765],607,607,607,607,607,607,607,607,607,[3949,933],3950,3948,3563,3498,3499,3562,4012,3434,3563,3564,3564,3564,3562,4013,3562,4012,3435,3692,3693,4011,4014,3563,3947,[4014,935],607,607,607,607,607,607,[3950,869],4013,3499,4014,3949,4011,4013,4013,3499,3563,4011,4011,3564,3950,3562,3563,3500,3948,3949,4012,3948,3564,4014,[3563,871],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3500,997],[3949,1001],[3949,1002],[3948,1003],[3950,1004],[4013,1005],[3562,998],[3950,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9378],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9838,10027,[10028,9550],[3175,9643],3174,[3174,3742],3999,3937,3999,4002,3937,3935,3935,4001,3936,4001,4002,4001,3936,3936,4000,4000,3937,3936,3938,3937,4001,[3240,4003],3176,3238,[3240,3871],[3238,4063],3935,3935,3936,4001,3935,3935,3935,3936,4000,3425,3936,3936,4001,3938,[3239,3811],3175,3239,[3175,4062],3936,3999,3938,[3176,3873],3238,[3239,3806],3550,3935,3937,3938,[3176,3810],3174,[3174,4062],4002,4002,3938,3425,3935,[3999,9841],[4000,9937],10033,10129,10221,10222,0,0,0,0,10124,10125,10126,10129,10221,10222,10124,10028,10031,10032,10029,10030,[3938,9932],[3937,9933],[3937,9934],[4002,9937],10029,10030,10029,10030,10031,10032,[3937,9932],[3552,9937,9836],9938,[3942,9647],3943,[3935,3816],[3935,9841],[3488,9933],[3938,4004,9934],[3942,9937],10033,10129,10221,10222,10223,10224,10124,10028,[3938,9932],[4001,4004,9935],[4007,9936],[4008,9937],10029,10030,[3935,9932],[4001,9933],[3937,9934],[4000,9935],[3936,9936],[3935,9937],10033,10125,10126,10129,10124,10125,10126,10028,[4001,9932],[3937,9933],[3935,9934],[4002,3940,9935],[3942,9936],[3941,9937],10033,10125,10126,10028,10029,10030,10033,10125,10126,10028,10029,10030,10031,10032,10033,10129,10221,10222,0,0,10221,10222,0,0,0,0,0,0,0,0,10221,10222,10223,10224,10221,10222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10097,10001,[3975,9905],[4097,9809],[4097,3783],3976,3913,3913,3913,3913,[4097,3915],4097,[4097,3910],3978,3914,3977,3913,3978,3913,3913,3913,[4097,3851],4097,[4097,3782],3914,3977,3977,3978,3914,3913,3977,3975,[4097,3719],[4097,3785],4097,[4097,3782],3914,3978,[4097,3915],4097,4097,4097,[4097,3784],3976,3978,3977,3978,[3978,9814],[4097,4043,9906],[4097,9907],[4097,9909],[3974,9910],10006,10098,10099,10001,10002,10003,[3914,9905],[3913,9809],3911,[4097,3850],4097,4097,[4097,3974],3977,3914,3975,[4097,3785],4097,4097,[4097,3847],3912,3914,3977,3978,3913,3913,3978,3977,3978,[4097,3979],4097,[4097,3846],3978,3978,3977,3977,3914,3914,3914,3913,[4097,3979],4097,[4097,4038,9622],[4097,4039,9623],[10006,9524],10102,10194,10195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,10055,9573],607,607,607,607,607,607,607,607,607,607,[4012,805],3500,3500,3948,3950,3564,3949,3947,3563,3563,4011,4013,3949,3947,3499,4012,3563,3562,4014,4013,4014,3564,4013,4014,4014,[4014,871,563],[607,563],[607,563],[607,563],[607,563],[607,563],[607,563],[4014,869,563],3499,3564,3947,3947,3563,4014,3436,3564,3434,3562,3499,4013,3950,3947,4014,4013,4012,3500,4011,3949,3564,3500,[3947,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],607,607,607,607,607,607,[607,9283],[607,9286],[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10124,9646],[3239,9739],[3240,3807],3937,3936,3937,3938,3999,3938,3936,3999,3938,3938,3999,3938,3938,[3238,4064],[3240,4065],[3175,4066],3937,4002,3936,3936,4001,4000,4000,[3238,3810],3239,3240,3239,[3175,4062],4001,4002,3936,3937,3935,3935,3938,4000,3999,3936,3936,3937,3937,[3238,3939],3176,3176,3174,[3176,3998],3937,4002,[3238,3810],3174,[3175,3934],4001,3936,4000,3938,[3175,4003],3238,3239,[3240,3806],3938,3999,4001,[3938,9649],[3936,9650],[10033,9551],10129,0,0,0,0,0,0,0,0,10221,10222,0,0,0,0,10124,10127,10128,10125,10126,10028,10029,10030,10033,10125,10126,10125,10126,10127,10128,10028,[10033,9932],[10034,9933],[3942,9743,9934],[3942,9935],[4001,4009,9936],[4002,9937],10029,10030,10033,10129,0,0,0,0,0,0,10124,10028,10031,10032,10033,10125,10126,10028,10029,10030,10031,10032,10033,10129,10221,10222,0,0,10221,10222,10124,10028,10029,10030,10031,10032,10033,10129,10221,10222,10124,10125,10126,10129,10221,10222,10124,10125,10126,10127,10128,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10097,[10001,9523],[3975,9616],[3976,9617],3914,3977,3977,3914,3978,[4097,3979],4097,[4097,3847],3912,3978,3913,3914,3977,3977,3914,3978,[4097,3915],4097,[4097,3910],3914,3977,3978,3914,3914,3978,3977,3978,3978,[4097,3787],4097,[4097,3910],3978,3911,[4097,4043],4097,[4097,3784],[4097,3719],3976,3977,3978,3978,[3914,9814],[3913,9910],10002,10003,10005,10006,10102,10194,10195,10097,10098,10099,10001,[3914,9905],[4097,4043,9809],4097,4097,[4097,3783],3976,3978,3914,3913,[4097,3979],4097,4097,4097,[4097,4038],[4097,4039],[4097,4040],3912,3977,3914,3977,3978,3911,[4097,4043],4097,[4097,3910],3914,3914,3978,3914,3913,3914,3914,3977,3975,[4097,3785],[4097,9718],[4097,9719],[10102,9620],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9669],607,607,607,607,607,607,607,607,607,607,[4013,869],3434,3950,4012,4014,4011,3434,3950,3563,4011,3563,4012,3950,3563,3947,3563,3950,3563,4011,3500,4014,3500,3947,4014,4013,627,627,627,627,627,627,627,627,4011,[3950,815],[3950,870],[3948,1001],[3499,1002],[4014,1003],[3500,934],[3500,816],4012,4013,4012,3947,3500,4012,3948,[4012,815],[4011,870],[3562,998],[3564,998],[3499,998],[4014,998],[3948,998],[3499,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],607,607,607,607,[607,9378],9379,9382,[607,9383],607,607,607,607,[607,9378],9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3240,9835],[3999,9933],[3999,9934],[3937,9836],3936,4002,4000,4000,3937,4001,4002,4000,4002,3935,[3239,3811],3240,3239,3238,[3174,3872],4000,4002,4002,3938,4000,3937,4001,[3174,3747],3239,3174,[3239,3807],4002,3936,3936,3935,4001,4001,4002,3425,3937,3935,[3238,4065],[3240,4066],3936,4001,[3176,3747],3238,[3174,3807],3938,3935,4000,[3240,3811],3176,[3174,4062],[3240,4063],[3238,4064],[3175,4065],[3175,4066],[3238,4067],3175,3175,[3240,3870],3935,3937,4002,[4002,9745],[3936,9746],[10129,9647],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10223,10224,10221,10222,10124,10125,10126,10129,10221,10222,10221,10222,10223,10224,10124,10028,10029,10030,10031,10032,10033,10125,10126,10129,0,0,0,0,0,0,0,0,10124,10127,10128,10129,0,0,10124,10125,10126,10127,10128,10129,0,0,0,0,0,0,0,0,10124,10125,10126,10127,10128,10129,0,0,0,0,10221,10222,0,0,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10097,9619],[3978,9712],[3914,9713],3913,3978,3977,3913,3911,[4097,3849],4192,4097,[4097,3974],3914,3978,3977,3978,3977,3978,3978,[4097,3979],4097,[4097,3847],3912,3978,3978,3914,3914,3914,3914,3913,3977,[4097,3915],4097,[4097,4038],[4097,4039],[4097,3850],4097,4097,[4097,3974],3978,3978,3914,3913,[3977,9814],[3914,9910],10006,10098,10099,10101,10102,0,0,0,0,10194,10195,10097,[10001,9523],[4097,9616],[4097,3784,9617],[4097,3719],3976,3978,3978,3914,3913,3975,[4097,3719],[4097,3785],4097,4097,4097,4097,[4097,3848],3912,3978,3913,3911,[4097,3850],4097,4097,[4097,3974],3914,3977,3977,3978,3914,3914,3977,3978,3913,3975,[4097,3720],[4097,3721,9526],9430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9383],607,607,607,607,607,607,607,607,607,607,[3950,933],4013,4012,3950,3948,3499,4013,3499,[4013,815],[3499,870],[3563,998],[4011,1001],[3500,934],[3563,816],3499,3948,4012,3949,3564,4011,4011,3947,3949,4014,3949,691,691,691,691,691,691,691,691,3564,3563,607,607,607,607,607,[3498,869],3564,3563,4013,3948,[4012,815],[3500,998],[3947,998],[3950,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],607,607,607,607,[607,9378],9379,9382,[607,9383],[607,9283],[607,9286],[607,9473],9474,0,0,9479,[607,9480],[607,9283],[607,9286],[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9742,9931,10029,10030,[3550,9932],[4001,9836],4002,3935,3938,3936,4001,3935,3935,4001,4002,[3240,3875],3176,3175,3239,3240,[3176,3806],4002,3935,3936,3938,3937,[3175,4066],[3240,4067],3175,3176,[3238,3998],3552,3938,3935,4002,3935,4002,4002,3999,3938,[3176,3811],3175,3238,[3176,3871],3938,[3174,3811],3174,[3240,3806],3618,3619,3935,[3176,3939],3175,3240,3175,3238,3239,3174,3240,3175,3240,[3174,3934],3936,3487,3999,[3937,9649],[3937,9650],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10221,10222,0,0,0,0,0,0,0,0,10124,10125,10126,10127,10128,10129,10221,10222,0,0,0,0,0,0,0,0,0,0,10223,10224,0,0,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9616],[3914,9617],3914,3978,3913,3978,[4097,3979],4097,4097,[4097,3783],3976,3914,3913,3913,3914,3914,3978,3978,[4097,3787],4097,4097,[4097,3974],3914,3914,3914,3914,3978,3977,3978,3913,3975,[4097,3723],4097,4097,4097,4097,[4097,3718],3976,3913,3914,3914,[3913,9622],[3977,9623],[10006,9524],10102,10194,10195,10197,0,0,0,0,0,0,0,0,[10097,9619],[3975,9712],[3976,9713],3978,3913,3913,3913,3978,3914,3914,3977,3975,[4097,3720],[4097,3721],[4097,3722],[4097,3785],[4097,3784],3976,3977,3911,[4097,3849],4097,4097,[4097,3718],3976,3913,3913,3977,3977,3914,3914,3977,3977,3914,3913,3914,3978,[3978,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,607,607,[4012,997],[3948,998],[3562,998],[3947,1001],[3500,1002],[3563,934],[3950,816],3949,[3564,935],607,607,607,607,[3562,869],3499,3499,3436,3499,3947,3563,3948,4014,4014,4014,3950,[4013,935,755],[607,755],[607,755],[607,755],[607,755],[607,755],[607,755],[3947,869,755],4011,[3949,935],607,607,607,607,607,[3500,933],4013,3950,4012,3949,[3950,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9378],9379,9382,[607,9383],[607,9283],[607,9286],[607,9473],9474,0,0,9479,9379,9382,9474,0,0,0,0,9479,9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9838,10027,10125,10126,10028,[4001,9932],[4001,9836],3937,3937,4002,4002,4000,3936,3489,4000,[3239,3939],3238,3175,3238,3240,[3176,3870],3937,3618,3619,3938,[3175,3811],3240,3238,3240,[3176,3807],4002,3938,3999,4002,3938,3936,3553,3999,3936,3935,[3176,3875],3174,3174,3176,[3239,3998],[3175,3939],3174,[3240,3870],3682,3683,3938,4002,[3174,3744],[3238,3745],[3238,3746],[3240,3810],3175,3240,3176,3238,3175,[3174,3806],3936,3999,3936,[4002,9841],[3999,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3914,9712],[3977,9713],3914,3977,3978,3977,3975,[4097,3785],4097,[4097,3974],3977,3913,3913,3977,3913,3978,3913,3978,[4097,3915],4097,4097,[4097,4038],[4097,4039],3912,3977,3914,3978,3913,3978,3914,3977,3975,[4097,3785],4192,4097,[4097,3783],3976,3977,3978,3978,3914,[3977,9718],[3977,9719],[10102,9620],0,0,0,0,0,0,0,0,0,0,0,0,9619,[3977,9616],[3913,9617],3978,3913,3977,3977,3914,3913,3978,3914,3978,3978,3978,3913,3975,3976,3913,3913,[4097,3787],4097,4096,4097,[4097,3974],3977,3914,3977,3913,3913,3913,3978,3977,3978,3913,3914,3914,3978,[3977,9622],[3913,9623],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9477],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3950,997],[4014,998],[3562,999],607,607,607,607,[3949,933],3500,3563,4013,4014,4013,3947,4012,[4014,815],[4011,870],[3564,1001],[4011,998],[3500,999],607,607,607,607,607,607,[3500,997],[4013,998],[3563,999],607,607,607,607,607,[4013,997],[3564,998],[4011,998],[4014,998],[3563,998],[3949,999],607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9284],[607,9285],[607,9286],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],607,607,607,607,607,607,[607,9473],9474,0,0,9479,9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10221,10222,10124,[10028,9550],[4000,9643],[4002,9644],3935,4000,3616,3617,3937,3937,4000,[3240,4003],3240,3240,3239,3174,[3174,3934],3936,3682,3683,4001,[3174,3875],3240,3240,3238,[3176,4062],3935,3935,3938,3935,3936,3935,3937,3999,3489,3936,[3239,3939],3240,3238,3238,[3239,3872],[3240,3873],3238,[3175,3934],3935,3999,3937,4000,4000,3999,3999,3938,[3240,3744],[3239,3745],[3238,3746],[3238,3810],3238,[3240,3870],[4002,9841],[3937,9933],[3935,9934],[3935,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3914,9521],3978,3914,3913,3913,3913,3977,3975,[4097,3719],3976,3978,3978,3978,3977,3977,3977,3977,3914,3975,[4097,3719],[4097,3786],4096,4097,[4097,3782],3914,3913,3913,3977,3913,3978,3914,3913,3975,[4097,3786],4097,[4097,3974],3977,3913,3914,3914,3913,3978,[3978,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9616],[3978,9617],3978,3978,3914,3913,3978,3978,3977,3914,3978,3978,3914,3977,3913,3913,3978,3978,[4097,3915],4097,[4097,3783],[4097,3719],3976,3913,3978,3978,3913,3911,[4097,4039],[4097,4040],3912,3977,3913,3913,3977,3914,[3977,9718],[3914,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[3949,997],[4014,998],[4011,1001],[4014,934],[4013,816],3950,3499,3564,[4014,935],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9378],9379,9380,9381,9382,[607,9383],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9378],9379,9382,[607,9383],607,607,607,607,[607,9378],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10124,9646],[3552,9739],[3937,9740],4002,3938,3680,3681,3935,3999,4001,[3935,9841],[3175,3809,9933],[3239,9934],[3175,9836],[3240,3807],3938,3935,3938,4001,3936,[3175,3939],3240,3239,3176,3176,[3175,3998],3938,3935,3938,4002,3936,3936,3999,3936,4002,4001,[3238,3809],[3239,3742],[3240,3809],3174,3174,3238,[3176,3998],3936,4001,3937,3999,4002,4000,3361,3936,3999,4000,4001,[3175,4003,9841],[3238,9935],[3174,3934,9936],[4000,9937],10029,10030,10033,10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3914,9521],3913,3913,3978,3978,3914,3914,3913,3978,3978,3914,3978,3977,3977,3978,3977,3977,3978,3914,3978,3914,[4097,3787],4097,[4097,9814],[4097,3910,9908],[3977,9909],[3914,9809],3978,3977,3977,3977,3977,3914,3978,[4097,3787],4097,[4097,3782],3977,3978,3978,3913,3977,3914,[3913,9622],[3978,9623],9524,0,0,0,0,0,0,0,0,0,0,0,9619,[3977,9808],[3914,9809],3977,3977,3978,3977,3914,3977,3914,3913,3977,3977,3913,3977,3978,3913,3911,[4097,4042],[4097,4043],4097,[4097,3782],3977,3978,3978,3913,3914,3913,[4097,3979],4097,4097,[4097,3847],3912,3914,3978,3914,3978,[3914,9814],[3914,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9573],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[4014,997],[4014,998],[4014,998],[4014,998],[4014,999],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9473],9474,0,0,0,0,9479,[607,9480],607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],607,607,607,607,[607,9283],[607,9286],[607,9473],9474,0,0,9479,[607,9480],[607,9283],[607,9286],[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9646,[3935,9835],[3938,9836],3935,4000,4002,4002,3936,4001,[3999,9841],[3937,9937],10029,10030,[3175,9932],[3175,3998,9836],3937,4002,3935,3935,4002,3937,[3240,3810],3175,3175,[3239,3742],3938,4002,3361,3999,3936,3937,3936,3614,3615,3488,3936,3935,4001,3361,[3174,3743],[3175,3747],3240,[3175,4062],[3239,4064],3937,[4002,9841],[4000,9933],[3999,9934],[4001,9836],3935,3938,3938,3938,[3999,9841],[4002,9937],10031,10032,10033,10125,10126,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[3914,9616],[3913,9617],3913,3914,3914,3978,3913,3914,3914,3977,3977,3977,3913,3914,3913,3978,3913,[3913,9814],[3977,9906],[3977,9907],[3914,9809],3914,[4097,3851],[4097,9814],[4097,9910],10004,10005,[3913,9905],[3913,9809],[3914,9810],[3913,9811],3977,3913,3914,3914,[4097,3851],4097,[4097,3846],3913,3913,3977,3914,3914,3978,[3913,9718],[3978,9719],9620,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3977,9905],[3978,9906],[3977,9907],[3978,9908],[3978,9909],[3913,9906],[3978,9907],[3977,9809],3978,3913,3978,3914,3978,3977,[3913,9814],[4097,3979,9906],[4097,9907],[4097,9809],4097,[4097,3846],3978,3913,3978,3913,3913,3911,[4097,4043],4097,4192,4097,[4097,4038],[4097,4039],[4097,4040,9814],[3912,9906],[3978,9907],[3977,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9573],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9378],9474,0,0,0,0,0,9575,9576,607,607,607,607,[607,9283],[607,9286],607,607,607,607,[607,9378],9379,9382,[607,9383],[607,9283],[607,9286],[607,9378],9379,9382,9474,0,0,0,0,9479,9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9742,9931,[4000,9932],[3937,9933],[3936,9934],[4001,9933],[4000,9934],[4000,9935],[4001,9936],[4001,9937],10033,10125,10126,10028,[3999,9932],[3935,9836],4002,3937,3999,3999,4002,4001,[3240,3744],[3176,3746],3936,4000,3935,3937,3936,3999,4001,3937,3678,3679,4000,3936,4002,3935,3936,4001,3938,[3238,3810],3174,3238,[3174,3871,9841],[3937,9937],10029,10030,[3936,9932],[4001,9933],[4001,9934],[3936,9935],[4001,9936],[3935,9937],10033,10127,10128,10129,10221,10222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3914,9712],[3913,9713],3977,3978,3977,3977,3978,3977,3978,3914,3978,3914,3977,3978,3913,3914,[3914,9814],[3978,9910],10002,10003,[3978,9905],[3914,9906],[4097,3851,9907],[4097,9910],10006,10100,10101,10001,[3914,9905],[3978,9906],[3914,9907],[3978,9809],3914,3914,[3977,9814],[4097,3915,9906],[4097,9907],[4097,3910,9908],[3914,9909],[3913,9809],3914,3978,3978,3977,[3977,9814],[3913,9815],9620,0,0,0,0,0,0,0,0,0,0,0,9811,10000,10001,10002,10003,10004,10005,10002,10003,[3978,9905],[3977,9906],[3913,9907],[3914,9908],[3913,9909],[3978,9908],[3977,9909],[3977,9910],10002,10003,[4097,9905],[4097,9809],[4097,3910],3978,3913,3978,3978,3911,[4097,3849,9814],[4097,9906],[4097,9907],[4097,9906],[4097,9907],[4097,9908],[4097,9909],[4097,9910],10002,10003,10006,10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9768,[607,9573],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],[607,9473],9474,0,0,0,0,0,0,9671,9672,607,607,607,[607,9473],9379,9382,[607,9383],[607,9283],[607,9286],[607,9473],9474,0,0,9479,9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9838,10027,10028,10029,10030,10029,10030,10031,10032,10033,10129,10221,10222,10124,[10028,9550],[3999,9643],[3999,9644],4002,3935,3999,3425,3937,4001,4001,4001,3935,3936,3937,3937,3937,3937,3999,3936,4000,3938,3425,4002,3936,4002,3937,3936,3937,[3239,3743],[3240,3747,9649],[3240,9650],[10033,9551],10125,10126,10028,10029,10030,10031,10032,10033,10129,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3977,9616],[3977,9617],3977,3978,3977,3977,3978,3914,3978,3977,3914,3977,3977,3913,3913,[3978,9814],[3914,9910],10006,10098,10099,10001,10002,10003,10006,10102,10196,10197,10097,10001,10002,10003,[3914,9905],[3913,9906],[3977,9907],[3913,9910],10002,10003,10004,10005,[3978,9905],[3914,9906],[3977,9907],[3913,9908],[3913,9909],[3914,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,10097,10098,10099,10100,10101,10098,10099,10001,10002,10003,10004,10005,10004,10005,10006,10098,10099,10001,[4097,9905],[4097,3974,9906],[3914,9907],[3913,9908],[3978,9909],[3914,9906],[4097,3979,9907],[4097,9910],10002,10003,10002,10003,10004,10005,10006,10098,10099,10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9767,9863,9864,[607,9669],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9284],[607,9285],[607,9286],607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9378],9379,9382,9474,0,0,0,0,0,0,0,0,9479,[607,9480],[607,9283],[607,9476,9286],9665,9666,0,9479,9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10124,10125,10126,10125,10126,10127,10128,10129,0,0,0,0,[10124,9646],[4001,9739],[4000,9740],3936,4002,3618,3619,3999,3937,3936,4002,3938,3999,3935,4002,4002,3425,3935,4001,3938,4002,4000,4000,3999,3935,4002,4001,3938,4000,[4000,9649],[3999,9650],[10129,9647],10221,10222,10124,10125,10126,10127,10128,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9712],[3977,9713],3914,3978,3977,[3978,9814],[3914,9908],[3914,9909],[3978,9906],[3977,9907],[3914,9809],3977,3978,3914,[3913,9718],[3913,9719],[10006,9524],10102,10194,10195,10097,10098,10099,10102,0,0,0,0,10097,10098,10099,10001,10002,10003,10006,10098,10099,10100,10101,10001,10002,10003,10004,10005,10006,10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,10196,10197,10194,10195,10097,10098,10099,10100,10101,10100,10101,10102,10194,10195,10097,10001,10002,10003,10004,10005,10002,10003,10006,10098,10099,10098,10099,10100,10101,10102,10194,10195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[9959,9477],[607,9960],[607,9765],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],607,607,607,607,607,607,[607,9283],[607,9286],607,607,607,607,607,607,607,607,607,607,607,607,[607,9378],9379,9380,9381,9382,[607,9480],607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,9479,9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10221,10222,10221,10222,10223,10224,0,0,0,0,0,9646,[4001,9835],[4002,9836],4001,3999,3682,3683,4001,4001,3938,3938,[3938,9841],[3936,9933],[4001,9934],[3936,9836],3935,3553,3938,3553,3935,3936,3938,3938,3937,3999,4002,4002,3938,3938,[4002,9649],[3938,9650],9647,0,0,0,10221,10222,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9808],[3914,9906],[3977,9907],[3977,9908],[3914,9909],[3978,9910],10004,10005,10002,10003,[3977,9905],[3914,9809],3977,3977,[3914,9814],[3977,9815],[10102,9620],0,0,0,0,10194,10195,0,0,0,0,0,0,10194,10195,10097,10098,10099,10102,10194,10195,10196,10197,10097,10098,10099,10100,10101,10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,10196,10197,10196,10197,0,0,0,0,10097,10098,10099,10100,10101,10098,10099,10102,10194,10195,10194,10195,10196,10197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,10055,9573],607,607,607,607,607,607,607,607,607,607,607,607,[607,9283],[607,9286],607,607,607,607,[607,9378],9379,9382,[607,9383],607,607,607,607,[607,9378],9379,9382,[607,9383],607,607,607,607,607,607,607,607,[607,9283],[607,9286],[607,9473],9474,0,0,0,9671,9672,[607,9477],607,607,607,607,607,607,607,607,[607,9378],9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9742,9931,[3999,9932],[4001,9836],4001,3936,4001,3935,3935,3999,[3935,9841],[3935,9937],10029,10030,[3935,9932],[3999,9836],3937,3938,3936,4002,3936,3999,4001,3938,3936,4001,3935,4002,3999,[3936,9745],[3999,9746],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,10002,10003,10004,10005,10006,10100,10101,10098,10099,10001,[3978,9905],[3977,9908],[3978,9909],[3978,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,0,0,0,0,0,0,10194,10195,10196,10197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,10196,10197,10194,10195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9575,9576,[607,9573],607,607,607,607,607,607,607,607,607,607,607,[607,9378],9379,9382,[607,9383],[607,9283],[607,9286],[607,9473],9474,0,0,9479,[607,9383],[607,9283],[607,9286],[607,9473],9474,0,0,9479,[607,9480],607,607,607,607,607,607,[607,9378],9379,9382,9474,0,0,0,0,0,9479,[607,9383],607,607,607,607,607,607,[607,9283],[607,9286],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9838,10027,10028,[4001,9932],[3999,9933],[3935,9934],[3999,9933],[4000,9934],[3935,9935],[4001,9936],[4002,9937],10033,10125,10126,10028,[3999,9932],[3938,9933],[3935,9934],[4001,9935],[4000,9936],[3488,9933],[4002,9934],[3937,9836],3999,3936,3937,4002,3999,3937,[3935,9841],[3935,9842],9647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,10098,10099,10100,10101,10102,10196,10197,10194,10195,10097,10001,10004,10005,10006,10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9669],607,607,607,607,607,607,607,607,607,607,[607,9473],9474,0,0,9479,9379,9382,9474,0,0,0,0,9479,9379,9382,9474,0,0,0,9671,9672,[607,9477],607,607,607,607,[607,9473],9474,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,607,[607,9378],9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10124,10028,10029,10030,10029,10030,10031,10032,10033,10129,10221,10222,10124,10028,10029,10030,10031,10032,10029,10030,[3938,9932],[3937,9933],[3935,9934],[3937,9935],[3938,9936],[3938,9935],[4002,9936],[3938,9937],9938,9743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,10196,10197,0,0,0,0,0,0,10097,10100,10101,10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],[607,9283],[607,9286],607,607,607,607,607,607,607,[607,9476],9569,9570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],607,607,607,[607,9378],9474,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],[607,9283],[607,9286],[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10124,10125,10126,10125,10126,10127,10128,10129,0,0,0,0,10124,10125,10126,10127,10128,10125,10126,10028,10029,10030,10031,10032,10031,10032,10033,10034,9839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10196,10197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,9379,9382,[607,9383],607,607,607,607,607,607,[607,9378],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9671,9672,[607,9477,9283],[607,9286],[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10221,10222,10221,10222,10223,10224,0,0,0,0,0,0,10221,10222,10223,10224,10221,10222,10124,10125,10126,10127,10128,10127,10128,10129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,[607,9480],[607,9283],[607,9284],[607,9285],[607,9286],[607,9473],9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,9379,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10221,10222,10223,10224,10223,10224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9479,9379,9380,9381,9382,9474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10004,10005,9905,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3978,10100],[3978,10101],10001,10004,10005,9905,9906,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3913,10102,9620],[3913,10196],[3914,10197],[3914,10097],[3914,10100],[3914,10101],10001,10002,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9716],3913,3913,3914,[3977,10196],[3977,10197],[3913,10097],[3913,10098],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9430],3913,3978,3914,3978,3978,3977,[3978,10194],[3914,10097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[3914,9524],3977,3978,3978,3914,3914,[3914,9424],[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[9911,9524],[3914,9716],3977,3977,3977,3913,3913,[3977,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,10007,9620],[3914,9812],3914,3914,3978,3914,[3913,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3914,9620],3978,3977,3977,3913,3978,[3913,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3978,9620],3977,3914,3977,3977,3914,[3977,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9809,9814,9815,[3913,9620],3977,3914,3978,3911,3912,[3913,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,9905,9910,9911,[4097,4039,9716],[4097,4040],[4097,4041],[4097,4042],[4097,3849],[4097,3848],[4097,4039,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3978,10098],[3913,10099],10001,10006,[4097,10007],[4097,3784,9812],[4097,3785],4097,[4097,3784],[4097,3723],4097,[4097,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3914,10102],[3978,10194],[3977,10195],[3978,10097],[3975,10102],[4097,3719],3976,3975,[4097,3719],3976,3975,[4097,3719],[4097,3720,9811],[3721,10000],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,10102,9620],3977,3914,3978,3913,3913,3977,3978,3977,3977,3913,3914,3978,3913,3977,[3977,10097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9620],3913,3978,3913,3913,3913,3977,3914,3978,3978,3913,3977,3913,3914,3977,[3913,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,9620],3913,3977,3978,3913,3913,3978,3978,3913,3977,3977,3977,3913,3913,[3978,9523],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3914,9620],3914,3913,3977,3913,3978,3978,3914,3978,3977,3978,3914,3914,3978,[3977,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3978,9716],3913,3914,3914,3913,3977,[3913,9330],[3914,9333],3914,3978,3913,3977,3913,3977,[3913,9811],[3977,10000],10001,9905,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3913,9430],3914,3913,3978,[3977,9424],[3977,9425],9426,9429,[3978,9430],3977,3913,3913,3913,3913,3914,3914,[3978,10097],10001,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3977,9527],[3977,9330],[3977,9333],[3978,9520],9521,0,9622,9623,[3978,9524],3978,3913,3914,3913,3977,3977,3914,[3913,10097],[3913,10098],[3913,10099],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,9521,0,0,9718,9719,[3914,9620],3977,3913,3914,3913,3977,3978,3913,3977,[3977,10194],[3914,10195],[3913,10097],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671,672,673,674,673,674,673,674,673,674,675,673,674,675,676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9430],3913,3977,3977,3978,3914,3913,3977,[3913,64],3977,[3914,9424],[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,735,736,737,738,737,738,737,738,737,738,738,737,738,739,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],[3977,9330],[3977,9331],[3913,9332],[3977,9333],[3977,9330],[3913,9331],[3977,9332],[3914,9333],[3913,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,799,800,801,802,801,802,801,802,801,802,802,865,866,803,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9427,9428,9429,9426,9427,9428,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,863,864,865,866,865,866,865,866,865,866,865,802,801,867,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,863,864,801,802,801,802,801,802,801,802,865,866,801,803,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,863,864,865,866,865,[801,1439],[801,1440],[801,1441],865,866,866,801,802,867,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11905,11906,11907,11908,11909,11910,11911,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,928,929,930,929,[801,1503],[801,1504],[801,1505],929,929,930,929,930,931,932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,0,0,0,11094,11094,0,0,0,0,0,0,11094,11094,0,0,0,0,11968,11969,11970,11971,11972,11973,11974,11975,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,992,993,994,993,1567,1568,1569,993,993,994,993,994,995,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11026,11026,11026,11026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10647,10648,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,12032,12033,12034,12035,12036,12037,12038,12039,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10900,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10456,11090,11090,11090,11090,11090,11090,11090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,10647,10447,10456,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12096],12097,12098,12099,12100,12101,12102,[11094,12103],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15698,15699,15700,15699,15700,15699,15700,15701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10456,11090,11090,11090,11090,11158,11090,11090,11090,10455,11027,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10512,11094,11094,11094,10644,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,[11094,12160],12161,12162,12163,12164,12165,12166,[11094,12167],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10902,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10708,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15763,15764,15763,15764,15763,15764,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11090,11158,11090,11090,11090,11090,11090,11090,11090,11222,11091,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,10966,11094,11094,10510,10511,10391,10712,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12224],12225,12226,12227,12228,12229,12230,[11094,12231],11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10837,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10901,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15824,15825,15826,16339,16340,16339,16340,16339,16340,15829,15830,15830,15831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11091,0,0,0,0,0,0,0,0,0,0,0,11094,10646,11094,11094,11094,11094,11094,11094,11094,10647,10456,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,[11094,12288],[11029,12289],12290,12291,12292,12293,12294,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10837,11094,11094,11094,11094,11094,11094,11094,10773,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15889,15890,16403,16532,16404,16467,16532,16467,15893,15894,15894,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10456,11224,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11091,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,11221,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12352],[11094,12353],[11094,12354],[10833,12355],[10904,12356],[11094,12357],[11094,12358],11094,11094,11094,11094,11094,11094,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,16339,16340,16403,16467,16403,16468,16403,16467,16339,16340,16340,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,10455,11027,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10512,10902,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10903,10328,10327,10835,11094,11094,11094,11094,10833,10834,10834,10834,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,16468,16403,16468,16468,16404,16404,16404,16532,16467,16468,16403,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10456,11090,11090,11090,11090,11090,11221,11090,11090,11090,11090,11090,11090,11090,11091,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,10510,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10264,10263,10968,11094,11094,11094,10833,10328,10263,10962,10264,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10964,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,16403,16467,16467,16403,16532,16532,16531,16468,16403,16468,16403,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11089,11090,11158,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11091,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10708,11094,11094,11094,10446,10456,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10774,11094,11094,10897,10327,10834,10835,10903,10834,10328,10263,10963,11094,10897,10327,10834,10904,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,11094,11094,11094,11094,11094,11094,10901,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,16531,16467,16531,16532,16403,16403,16467,16403,16531,15957,15958,15959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10392,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,11090,10391,11154,11155,11094,11094,11094,11094,11094,11094,11094,11094,11094,10446,10447,10648,11094,11094,10647,10447,10447,10447,10456,10511,10391,10575,10576,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10327,10328,10263,10962,10963,11094,11094,10961,10962,10264,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,11094,11094,11094,11094,11094,0,0,0,10838,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,16467,16404,16532,16403,16468,16468,16404,16468,16404,16021,16022,16023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10392,11090,11090,11090,11090,11090,11160,11090,11090,10391,11154,11155,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,11224,10512,10647,10447,10456,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,10967,10264,10898,10263,10962,10968,11094,11094,11094,11094,11094,11094,10897,10327,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,11032,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15952,15953,15953,15953,15953,16596,15954,16467,16468,16404,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11089,11090,11090,11090,11090,11090,10391,11154,11154,11155,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10647,10456,10511,10455,10456,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,10897,10263,10968,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10327,10835,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10647,10447,10447,10447,10648,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,11094,11094,11094,11095,11094,11094,11094,11094,10446,10447,10447,10447,10648,11094,11094,11094,11094,11094,11094,11094,11095,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16016,16017,16017,16017,16017,16660,16018,16532,16404,16404,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11153,11154,11154,11154,10392,10391,11155,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,11157,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,10647,10447,10448,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10327,10835,11094,11094,11094,11094,11094,11094,11094,10903,10328,10263,10264,10899,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11030,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16082,16853,[16532,16854],16855,16085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10647,10456,10455,10447,10448,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10964,10647,10456,10511,10511,10511,10511,10391,10575,10575,10575,10575,10392,10511,10455,10448,11094,11094,11094,11094,11094,11094,11094,10446,10456,10391,10576,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,10903,10328,10263,10968,10897,10327,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10512,11094,11094,10900,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16146,16917,16918,16919,16149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,10510,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10647,10447,10456,10511,10511,10511,10391,10575,10712,11094,11094,11094,11094,10574,10392,10511,10455,10648,11094,11094,11094,11094,10446,10447,10456,10391,10576,11094,11094,11094,11094,11094,11094,11094,10837,11094,11094,10774,10897,10898,10899,11094,11094,11094,11094,11094,10903,10328,10263,10963,11094,10961,10264,10327,10834,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,10837,11094,10510,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10574,10575,10392,11222,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10391,10575,10575,10712,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10455,10648,10647,10447,10447,10456,10391,10575,10576,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,10897,10263,10968,11094,11094,11094,10961,10962,10264,10327,10834,10834,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,10510,10391,10575,10575,10576,11094,11094,11094,11094,11094,11094,10708,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,10711,10575,10575,10392,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,10647,10447,10447,10447,10447,10447,10447,10456,10511,10511,10512,11094,11094,11094,10708,11094,11094,11094,11094,11094,11094,10711,10392,10511,11158,10455,10456,10391,10392,11160,10512,11094,11094,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,10903,10328,10899,11094,11094,11094,11094,11094,11094,10961,10962,10962,10264,10327,10834,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10512,11025,11026,11027,11094,10645,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,10774,11094,11094,11094,11094,11025,11026,11027,10510,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,10711,10392,10455,10648,11094,10446,10447,10456,10391,10575,10392,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10711,10392,10511,10391,10575,10576,10711,10392,10455,10648,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10264,10899,11094,10838,11094,11094,10897,10263,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,10961,10962,10962,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,11094,10510,10512,11089,11158,11091,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,10966,11094,11094,11094,11094,11094,11094,11089,11160,11091,10510,10512,11094,11093,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10455,10447,10456,10391,10575,10576,11094,10574,10575,10392,10511,10511,10511,10391,10712,10446,10447,10448,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,10574,10392,10455,10448,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10328,10899,11094,11094,[11094,11913],[11094,11914],[10961,11915],[10963,11916],[11094,11917],[11094,11918],[11094,11919],[11094,11920],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10512,11089,11090,11091,11094,11094,11094,11094,11094,11025,11026,11027,10510,10511,10512,11025,11026,11027,11094,11094,11094,11094,11094,11089,11090,11091,10510,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,[10838,11905],[11094,11906],[11094,11907],[11094,11908],[11094,11909],[11094,11910],[11094,11911],11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,10446,10447,10456,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,10711,10392,11222,10511,10455,10447,10456,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10455,10648,11094,11094,11094,10574,10392,10512,11094,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,10903,10328,10898,10899,11094,[11094,11976],[11094,11977],11978,[11094,11979],[11094,11980],11981,11982,[11094,11983],[10900,11984],11094,11094,11094,11094,10902,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10774,11094,11094,11094,11094,11094,11094,11094,10837,11094,11094,11094,11094,11094,11094,11094,11094,10510,10512,11089,11160,11091,11094,11094,11094,11094,11094,11089,11090,11091,10510,10511,10512,11089,11090,11091,11094,11094,11094,11094,11094,11089,11158,11091,10510,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,11968],[11094,11969],11970,[11094,11971],[11094,11972],11973,11974,[11094,11975],11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9942,9943,9944,9945,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,10446,10456,10511,10511,10511,10511,10511,10511,10512,10836,11094,11094,11094,11094,11094,10510,10511,10391,10575,10575,10392,10511,10455,10447,10648,11094,11094,11094,11094,11094,10647,10447,10456,10391,10575,10576,11094,11094,11094,11092,10510,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10328,10263,10264,10327,10904,[11094,12040],[11094,12041],12042,12043,12044,12045,12046,[11094,12047],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10512,11153,11154,11155,11094,11094,11094,11094,11094,11153,11154,11155,10510,10511,10512,11153,11154,11155,11094,11094,11094,11094,11094,11153,11154,11155,10510,10512,11094,11094,10837,11094,11094,11094,11094,11094,11094,11094,[11094,12032],12033,12034,12035,12036,12037,12038,[11094,12039],11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,3908,3521,3392,3394,3971,3907,3394,3394,3458,3906,3457,3520,3520,3521,3906,3457,3394,3908,3908,3520,3969,3394,3522,3522,3392,3457,3522,3394,3905,3393,[3521,4996],[3520,4997],[3908,4998],3458,3907,3906,3458,3971,3393,3456,[3522,4996],[3458,4997],[3458,4998],3521,3969,3905,3907,3394,[3393,4996],[3521,4997],[3393,4998],3521,3458,3457,3971,3971,3521,3394,3906,3520,3907,3906,3905,3906,3457,3522,3969,3971,3906,3905,3521,3458,3520,3520,3906,3521,3457,3521,3971,3907,3522,3393,3392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10038,10039,10040,10041,9941,[9845,14],0,0,0,0,[9850,14],9942,9943,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,10446,10456,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,10510,10391,10576,11094,11094,10711,10392,10511,10511,10455,10447,10447,10447,10447,10447,10456,10391,10575,10576,11094,11094,11094,11094,11094,11094,10574,10576,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10962,10963,10967,10264,10327,10904,[11094,12105],12106,12107,12108,12109,12110,[11094,12111],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10455,10447,10447,10447,10447,10447,10447,10447,10447,10447,10447,10447,10456,10511,10455,10447,10447,10447,10447,10447,10447,10447,10447,10447,10447,10447,10456,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12096],12097,12098,12099,12100,12101,12102,[11094,12103],11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,3458,3521,3394,3908,3394,3393,3393,3908,3907,3908,3522,3521,3457,3521,3521,3392,[3393,4996],[3520,4997],[3394,4998],3521,3906,3908,3969,3458,3521,3456,3520,3392,3456,3971,[3522,5092],5093,5094,[3908,5095],3394,3969,3458,3522,3905,3521,[3905,5092],5093,5094,[3456,5095],3458,3521,3905,3393,[3457,5092],5093,5094,[3521,5095],3906,3522,3907,3394,3458,3521,3908,3520,3393,3521,3906,3971,3457,3906,3522,3520,3457,3969,3521,3905,3969,3457,3969,3394,3392,[3521,4996],[3907,4997],[3393,4998],3906,3906,3392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10042,[3534,10134],[3599,10135],[3533,10136],[3536,10137],10037,9941,9942,9943,9944,9945,9946,10038,10039,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,0,0,0,0,10510,10511,10511,10511,10511,10511,10511,11158,10511,10455,10448,11094,11094,11094,11094,11094,10510,10512,11094,11094,11094,11094,10510,10511,10391,10392,11222,10391,10575,10575,10575,10575,10576,11094,11094,11094,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,10900,11094,11094,11094,11094,11094,11094,11094,11156,11094,10961,10264,10899,[11094,12169],12170,12171,12172,12173,12174,[11094,12175],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10902,11094,11094,11094,11094,10900,11094,11094,10644,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10711,10575,10575,10575,10575,10575,10575,10392,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10391,10575,10575,10575,10575,10575,10575,10576,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12160],12161,12162,12163,12164,12165,12166,[11094,12167],11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,3521,3521,[3908,4996],[3969,4997],[3907,4998],3520,3392,3971,3905,3908,3971,3393,3521,3458,3457,3458,[3520,5092],5093,5094,[3458,5095],3971,3908,3393,3457,3969,3394,3458,3905,3906,3971,[3969,5188],5189,5190,[3522,5191],3522,3393,3906,3520,3394,3521,[3521,5188],5189,5190,[3521,5191],3971,3908,3906,3394,[3394,5188],5189,5190,[3969,5191],3521,3905,3392,3971,3522,3458,[3907,4996],[3522,4997],[3906,4998],3392,3522,3907,3969,3392,3457,3394,3394,3905,3522,3521,3908,3393,3906,3521,3392,[3522,5092],5093,5094,[3392,5095],3522,3520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,10042,[3535,10138],[3533,10230],[3533,10231],[3536,10232],[3597,10233],[3599,10133],10037,10038,10039,10040,10041,10042,[3597,10134],[3535,10135],10037,9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10511,10511,10511,10511,10511,10511,10511,10511,0,0,0,0,11094,11094,11094,10711,10712,11094,11094,11094,11094,10510,10391,10576,10574,10575,10576,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,10833,10328,10899,[11094,12233],12234,12235,12236,12237,12238,[11094,12239],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10774,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10391,10575,10575,10575,10392,10511,10391,10575,10575,10575,10392,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,[11094,12224],12225,12226,12227,12228,12229,12230,[11094,12231],11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3522,3969,3520,[3522,5092],5093,5094,[3458,5095],3457,3458,3907,3456,3906,3905,3456,3906,3394,3394,[3393,5188],5189,5190,[3969,5191],3908,3521,3908,3520,3521,3456,3521,3522,3905,3522,[3456,5284],[3971,5285],[3969,5286],[3456,5287],3456,3969,3458,3908,3521,3522,[3456,5284],[3393,5285],[3522,5286],[3906,5287],3969,3908,3522,3456,[3521,5284],[3905,5285],[3908,5286],[3521,5287],3521,3393,3971,3522,3392,3457,[3458,5092],5093,5094,[3907,5095],3521,3458,3458,3969,3906,3906,3394,[3521,4996],[3520,4997],[3521,4998],3522,3906,3456,3392,3521,[3456,5188],5189,5190,[3521,5191],3392,3908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671,672,673,674,673,674,673,674,673,674,675,676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3535,10138],3533,3597,3536,3597,3533,3599,[3534,10133],[3599,10134],[3536,10135],[3599,10136],[3597,10137],[3533,10138],[3534,10230],[3597,10231],[3533,10133],9940,9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10511,10511,10511,10511,10511,0,0,0,0,0,11094,11094,10902,11094,11094,11094,11094,11094,10446,10456,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10263,10963,[11094,12297],12298,12299,12300,12301,12302,[11094,12303],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10902,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10708,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12288],[11094,12289],12290,12291,12292,12293,[11094,12294],11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,3522,3908,[3907,5188],5189,5190,[3458,5191],3392,3522,3971,3458,3457,3457,3457,3458,3521,3905,[3969,5284],[3522,5285],[3969,5286],[3522,5287],3908,3520,3393,3969,3520,3394,3521,3393,3458,3907,[3971,5380],[3520,5381],[3456,5382],[3521,5383],3907,3520,3522,3394,3520,3520,[3905,5380],[3971,5381],[3521,5382],[3458,5383],3969,3907,3394,3458,[3394,5380],[3394,5381],[3521,5382],[3907,5383],3520,3456,3906,3392,3457,3522,[3520,5188],5189,5190,[3394,5191],3522,3394,3394,3458,3394,3521,3969,[3456,5092],5093,5094,[3520,5095],3907,3394,3905,3521,[3521,5284],[3522,5285],[3522,5286],[3394,5287],3392,3458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,735,736,737,738,737,738,737,738,737,738,739,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3533,9563],3533,3597,3534,3599,3536,3536,3597,[3599,10230],[3599,10231],[3536,10232],[3533,10233],3597,3534,3533,3534,[3599,10036],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10511,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10834,10834,10834,10834,10834,10834,10834,10904,11094,10897,10327,10835,[11094,12361],[11094,12362],[10903,12363],[10834,12364],[10904,12365],[11094,12366],[11094,12367],11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,10710,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12352],[11094,12353],[11094,12354],[10903,12355],[10835,12356],[11094,12357],[11094,12358],11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,3521,3969,[3971,5284],[3393,5285],[3522,5286],[3969,5287],3392,3520,3458,3393,3457,3520,3392,3969,3905,3394,[3971,5380],[3969,5381],[3457,5382],[3969,5383],3457,3907,3392,3457,3393,3392,3520,3394,3458,3522,[3969,5476],[3969,5477],[3458,5478],[3521,5479],3906,3971,3907,3458,3905,3520,[3392,5476],[3971,5477],[3520,5478],[3393,5479],3521,3394,3520,3457,[3394,5476],[3392,5477],[3392,5478],[3458,5479],3521,3520,3907,3905,3520,3520,[3392,5284],[3393,5285],[3908,5286],[3907,5287],3456,3522,3520,3969,3969,3522,3456,[3458,5188],5189,5190,[3522,5191],3907,3905,3906,3908,[3393,5380],[3520,5381],[3906,5382],[3394,5383],3458,3908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,799,800,801,802,801,802,801,802,801,802,803,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3536,3535,3597,3533,3534,3597,3535,3535,3534,3534,3597,3597,3536,3597,3536,3536,9844,[9845,14],0,0,0,0,0,0,0,0,0,[9850,14],9942,9943,9944,9945,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,10446,10456,11160,10455,10448,11094,11094,11094,11094,11094,[11094,11905],[11094,11906],[11094,11907],[11094,11908],[11094,11909],[11094,11910],[11094,11911],11094,11094,11094,11094,11094,11094,10903,10834,10834,10834,10328,10263,10962,10962,10962,10962,10962,10264,10327,10835,10967,10264,10327,10904,11094,10897,10898,10899,11094,11032,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10899,11094,11094,11094,10901,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3394,3906,3905,[3457,5380],[3969,5381],[3458,5382],[3521,5383],3971,3520,3905,3392,3907,3969,3908,3457,3521,3394,[3521,5476],[3457,5477],[3458,5478],[3907,5479],3457,3521,3394,3520,3971,3458,3906,3520,3392,3456,3520,3392,3394,3905,3908,3458,3905,3969,3456,[3969,9787],[3971,9879],[3522,9880],[3906,9880],[3392,9881],[3908,9882],[3457,9782],3392,3392,3908,3392,3394,3393,3521,3394,3969,3908,3521,3457,[3394,5380],[3520,5381],[3393,5382],[3969,5383],3521,3458,3458,3521,3971,3521,3456,[3392,5284],[3908,5285],[3458,5286],[3522,5287],3969,3392,3908,3457,[3521,5476],[3394,5477],[3458,5478],[3906,5479],3907,3969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,863,864,865,866,865,866,865,866,865,866,867,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3535,3534,3533,3535,3536,3597,3534,3597,3535,3535,3597,3536,3535,3534,3534,3599,9940,9652,[9653,14],0,0,0,0,0,0,0,[9850,14],9946,10038,10039,10040,10041,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10510,10391,10575,10392,10512,11094,11094,11094,11094,[11094,11968],[11094,11969],11970,[11094,11971],[11094,11972],11973,11974,[11094,11975],11092,11094,11094,11094,11031,11094,10897,10263,10962,10962,10962,10968,11094,11094,11094,11094,11094,10961,10264,10327,10834,10328,10898,10327,10834,10328,10263,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10328,10327,10835,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,3905,3907,[3971,5476],[3905,5477],[3971,5478],[3520,5479],3969,3907,3906,3969,3971,3392,3969,3392,3522,3969,3969,3458,3971,3906,3971,3520,3392,3458,[3969,9787],[3971,9879],[3905,9880],[3908,9782],3905,3520,[3393,9787],[3394,9881],[3521,9882],[3521,9782],3393,3522,[3521,9787],[3521,9881],[3520,9882],[3456,9883],9975,9976,9976,9977,9978,[3521,9878],[3969,9879],[3969,9880],[3521,9782],3969,[3456,9787],[3969,9879],[3394,9880],[3520,9881],[3394,9882],[3905,9782],3522,3458,[3394,5476],[3521,5477],[3969,5478],[3908,5479],3522,3458,3906,3521,3393,3458,3393,[3393,5380],[3394,5381],[3458,5382],[3905,5383],3522,3456,3458,3969,3456,3457,3969,3394,3394,3521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,863,864,801,802,801,802,801,802,801,802,867,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3534,9466],3533,3533,3599,3535,3597,3599,3534,3599,3536,3534,3536,3535,3534,3534,3535,[3599,10036],9748,[9749,14],0,0,0,0,[9850,14],9942,9943,9946,10042,[3599,10134],[3533,10135],[3535,10136],[3534,10137],10037,9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10574,10712,10838,10510,10455,10448,11094,11094,11094,[11094,12032],12033,12034,12035,12036,12037,12038,[11094,12039],11094,11094,11094,11094,11094,11094,10897,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10264,10898,10263,10962,10264,10898,10263,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10900,11094,11094,11094,11094,11093,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10902,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10966,11094,10903,10328,10263,10264,10327,10835,11094,11094,11094,11094,11094,11094,10833,10904,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,3521,3906,3394,3905,3520,3394,3456,3908,3458,3906,3394,3907,3457,3522,3906,3458,3394,3969,3521,[3908,9787],[3971,9879],[3520,9880],[3522,9881],[3906,9882],[3520,9883],9975,9976,[3969,9878],[3394,9879],[3971,9880],[3394,9883],9977,9978,[3393,9878],[3456,9881],[3969,9882],[3520,9883],9977,9978,9979,[403,10071],[403,10072],[403,10072],[403,10073],[403,10074],9974,9975,9976,[3906,9878],[3522,9882],[3521,9883],9975,9976,9977,9978,[3458,9878],[3522,9881],[3458,9882],[3908,9782],3971,3907,3392,3458,3520,3457,3392,3393,3905,3905,[3456,5476],[3521,5477],[3522,5478],[3906,5479],3908,3394,3393,3457,3969,3458,3907,3908,3456,3522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,863,864,865,866,865,[801,1439],[801,1440],[801,1441],865,866,867,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9942,9943,[9845,14],0,0,0,0,[9850,14],9942,9943,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3535,9563],3599,3599,3536,3533,3597,3534,3597,3597,3597,3599,3597,3534,3535,3533,3534,9652,[9653,14],0,0,0,[9850,14],9946,10038,10039,10042,[3534,10138],[3597,10230],[3534,10231],[3597,10232],[3533,10233],[3535,10133,9559],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10510,11221,10512,11094,11094,11031,[11094,12096],12097,12098,12099,12100,12101,12102,[11094,12103],11094,11094,11094,11094,11094,10903,10328,10899,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,10897,10898,10899,11094,10961,10962,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10263,10968,10967,10264,10899,11094,11094,11094,11094,11094,10833,10328,10899,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,3458,3522,3457,3905,3969,3392,3971,3393,3906,[3521,4996],[3908,4997],[3908,4998],3392,3457,3908,3456,3392,3458,[3521,9787],[3905,9883],9975,9976,9977,9978,9979,[403,10071],[403,10072],9974,9975,9976,9979,[403,10073],[403,10074],9974,9977,9978,9979,[403,10073],[403,10074],[403,10075],[403,10167],[403,10168],[403,10168],[403,10169],[403,10170],[403,10070],[403,10071],[403,10072],9974,9978,9979,[403,10071],[403,10072],[403,10073],[403,10074],9974,9977,9978,[3458,9878],[3520,9782],3522,3458,3392,3521,3458,3908,3457,3969,3521,3458,3906,3908,3521,3457,3906,3457,3905,3457,3394,3908,3520,3393,3906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,928,929,930,929,[801,1503],[801,1504],[801,1505],929,930,931,932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10038,10039,9941,[9845,14],0,0,[9850,14],9946,10038,10039,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3599,3535,3597,3534,3533,3536,3599,3533,3597,3533,3534,3536,3599,3599,3597,9748,[9749,14],0,0,[9850,14],9946,10042,[3533,10134],[3534,10135],[3535,10138],3597,3536,3535,3536,3599,[3535,9655],[3533,9844],[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,10710,11094,11094,11094,10510,10391,10576,11094,11094,11094,[11094,12160],12161,12162,12163,12164,12165,12166,[11094,12167],11094,11094,11094,11094,11094,10897,10263,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10903,10328,10263,10968,11094,11094,11094,11094,11094,11032,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10455,10447,10447,10447,10456,10511,10455,10447,10447,10447,10456,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10328,10899,11094,11094,10897,10327,10904,10964,11094,11094,11094,10897,10263,10963,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3458,3394,3457,3522,3520,3906,3521,3522,3392,3392,[3969,5092],5093,5094,[3457,5095],3907,3520,3969,3969,[3458,9787],[3907,9883],9979,[403,10071],[403,10072],[403,10073],[403,10074],[403,10075],[403,10167],[403,10168],[403,10070],[403,10071],[403,10072],[403,10075],[403,10169],[403,10170],[403,10070],[403,10073],[403,10074],[403,10075],[403,10169],[403,10170],403,403,403,403,403,403,403,[403,10167],[403,10168],[403,10070],[403,10074],[403,10075],[403,10167],[403,10168],[403,10169],[403,10170],[403,10070],[403,10073],[403,10074],9974,[3456,9878],[3906,9879],[3906,9880],[3906,9782],[3522,9787],[3393,9881],[3394,9882],[3971,9782],3458,3458,3905,3457,3907,3393,3458,3522,3906,3520,3908,3458,3457,3456,3392,3393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9910,10002,10003,10004,10005,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,992,993,994,993,1567,1568,1569,993,994,995,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10042,[3146,10134],[3208,10135],10037,9941,9944,9945,9946,10042,[3146,10134],[3146,10135],10037,9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3535,3597,3534,3535,3599,3536,3599,3597,3535,3597,3534,3599,3597,3535,[3599,9556],[9557,14],0,0,[9754,14],9755,10042,[3535,10138],[3599,10230],[3535,10231],3599,3599,3534,3535,3535,3534,[3599,9751],9940,9941,9942,9943,9944,9945,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10510,10512,11094,11094,11094,11094,[11094,12224],12225,12226,12227,12228,12229,12230,[11094,12231],11094,11094,11094,11094,10903,10328,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10328,10263,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,10574,10575,10575,10575,10575,10575,10392,10511,10391,10575,10575,10575,10575,10575,10576,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,10903,10328,10263,10968,11094,11094,10967,10264,10327,10834,10904,11094,10903,10328,10899,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3521,3971,3392,3906,3521,3457,3907,3392,3393,3522,[3905,5188],5189,5190,[3907,5191],3521,3521,3907,[3394,9595],[3906,9596],[9979,9497],[403,10075],[403,10167],[403,10168],[403,10169],[403,10170],403,403,403,403,[403,10167],[403,10168],403,403,403,403,[403,10169],[403,10170],403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10170],403,403,403,403,403,403,[403,10169],[403,10170],[403,10070],9974,9975,9976,[3458,9878],[3521,9883],9977,9978,[3458,9878],[3522,9879],[3457,9782],3521,3456,3905,3394,3392,3522,[3392,4996],[3393,4997],[3456,4998],3971,3458,3971,3392,3456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10004,10005,10006,[3914,10098],[3913,10099],[3914,10100],[3977,10101],10001,9905,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,10042,[3145,10138],[3207,10230],[3145,10231],[3143,3596,10133],10037,10040,10041,10042,[3143,10138],[3209,10230],[3145,10231],[3146,10133],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9851,3536,3599,3533,3533,3599,3533,3597,3536,3533,3599,3534,3533,3533,3597,9652,[9653,14],0,0,[9754,14],9755,[3599,10138],3536,3533,3597,3533,3533,3533,3599,3597,3533,[3597,9847],[3535,10036],9940,10038,10039,10040,10041,9941,[9845,14],0,0,0,0,0,0,0,0,[9850,14],9942,9943,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10646,10446,10456,10512,11094,11094,11094,11094,[11094,12288],[11094,12289],12290,12291,12292,12293,[11094,12294],11094,10709,11094,11094,10903,10328,10263,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10328,10263,10968,11094,11094,10708,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,10961,10962,10963,11094,11094,10708,11094,10967,10962,10264,10327,10834,10328,10898,10899,10836,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,3969,3392,3522,3394,3522,3520,3392,3456,3394,[3971,5284],[3393,5285],[3458,5286],[3520,5287],3458,3971,3905,[3522,9691],[3907,9692],[403,10075,9593],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],[403,10071],[403,10072],9974,9979,[403,10073],[403,10074],9974,9975,[3520,9878],[3394,9879],[3392,9880],[3521,9782],3456,3907,3394,[3458,5092],5093,5094,[3456,5095],3458,3905,3520,3394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3914,10100],[3913,10101],[3914,10102],[3978,10194],[3914,10195],[3977,10196],[3913,10197],[3914,10097],10001,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9851,[3146,10138],3207,3144,[3145,3405],3536,[3534,10133],[3536,10136],[3146,10137],[3208,10138],3208,3144,3207,3208,9940,9941,9942,9943,9944,9945,[9845,14],0,0,0,0,0,[9850,14],9944,9945,9946,9947,3533,3534,3534,3599,3536,3535,3534,3533,3536,3597,3533,3597,3536,3535,9844,[9845,14],0,0,[9850,14],9851,3536,3599,3533,3535,3534,3536,3597,3533,3599,3536,3536,3536,[3597,10036],[3597,10134],[3534,10135],[3535,10136],[3597,10137],10037,9941,[9845,14],0,0,0,0,0,0,[9850,14],9946,10038,10039,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11028,10510,10391,10576,11094,11031,11094,11094,11094,[11094,12353],[11094,12354],[10833,12355],[10834,12356],[10904,12357],[11094,12358],11094,10646,11094,10833,10328,10263,10968,11094,11094,11094,11094,11094,11094,11094,11094,10833,10834,10328,10263,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10961,10962,10962,10962,10264,10899,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,3971,3969,3393,3458,3907,3393,3907,3394,3457,[3906,5380],[3456,5381],[3969,5382],[3971,5383],3906,3456,3394,[3458,9787],[3907,9788],[403,9593],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10167],[403,10168],[403,10070],[403,10075],[403,10169],[403,10170],[403,10070],[403,10071],9974,9975,9976,[3394,9878],[3520,9782],3392,3971,[3969,5188],5189,5190,[3521,5191],3394,3522,3906,3907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3977,10102],[3913,10196],[3978,10197],3977,3913,3914,3978,3913,3977,[3978,10097],[3913,10098],[3914,10099],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,9947,3535,[3143,3342],[3208,3344],3534,3599,3597,[3533,10232],[3209,3342,10233],[3208,3343],[3145,3344],[3145,3345],3145,[3143,3405],[3210,3341,10036],10037,10038,10039,10040,10041,9941,[9845,14],0,0,0,[9850,14],9946,10040,10041,10042,[3534,10043],3534,3597,3535,3533,3536,3533,3533,3534,3535,3535,3597,3599,3597,3533,9940,9941,9942,9943,9946,9947,3534,3534,3599,3536,[3533,9366],[3533,9367],[3533,9368],[3533,9369],3535,3536,3533,3535,3534,[3534,10230],[3533,10231],[3535,10232],[3597,10233],[3536,10133],10037,9941,[9845,14],0,0,0,0,[9850,14],9946,10042,[3533,10134],[3536,10135],[10037,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10446,10447,10456,10512,11094,11094,11094,11094,11094,11094,11094,10903,10328,10898,10899,11094,11094,10903,10834,10328,10263,10963,11094,11094,11094,11094,11094,11094,11094,10903,10834,10328,10263,10962,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10446,10447,10447,10447,10447,10456,10511,10455,10447,10447,10447,10447,10448,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10327,10834,10834,10835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3908,3522,3392,3520,3969,3394,3392,3906,3458,3457,[3908,5476],[3457,5477],[3457,5478],[3458,5479],[3908,9787],[3520,9881],[3458,9882],[3394,9883],9884,[403,9689],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10167],[403,10070],[403,10071],[403,10072],9974,[3522,9589],[3458,9590],3394,[3456,5284],[3520,5285],[3394,5286],[3394,5287],3456,3457,3908,3458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3977,10102],3914,3913,3978,3914,3911,[4097,4041],[4097,4040],3912,3913,3978,[3914,10194],[3977,10195],[3914,10097],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,10042,[3599,10043],3534,3534,3535,3533,3534,3597,3599,3597,[3208,3662],3533,3536,[3146,3341],3599,3597,[3533,10133],[3597,10134],[3535,10135],[3535,10136],[3210,10137],10037,9941,0,0,[9658,14],9659,10042,[3533,10136],[3597,10137],[3599,10138],3535,3597,3599,3533,3536,3533,3533,3533,[3534,9366],[3533,9367],[3536,9368],[3535,9369],3536,3599,3536,[3536,10036],10037,10038,10039,10042,[3535,10043],3599,3599,3533,[3535,9461],9462,9463,9464,9465,[3534,9466],3536,3599,3533,3536,3535,3599,3535,3536,3535,[3599,10133],[10037,9559],9652,[9653,14],0,0,[9754,14],9755,[10042,9560],[3599,10138],[3536,10230],[3534,10231],[3536,10133,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11031,10446,10456,10511,11158,10512,11094,11094,11094,11094,11094,11094,11094,10961,10264,10898,10327,10834,10834,10328,10898,10898,10327,10904,11094,11094,11094,11094,11094,11094,10833,10328,10263,10962,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,10901,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10263,10962,10962,10963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,[3393,4996],[3392,4997],[3969,4998],3393,3457,3457,3394,3906,3458,3393,3522,3520,[3905,9787],[3969,9883],9977,9978,9979,[403,9980],[403,9785],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10167],[403,10168],[403,10070],[3969,9685],[3458,9686],3394,[3457,5380],[3907,5381],[3394,5382],[3969,5383],3456,3906,3393,3520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[3913,10102,9620],3914,3977,3911,[4097,4041],[4097,4042],[4097,3849],4097,4097,[4097,3847],3912,3913,3978,3978,3914,[3914,9619,10097],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[3208,10138],[3143,3469],3535,3536,3536,3536,3536,3534,[3208,3664],[3145,3665],3207,[3210,3470],[3207,3661],3535,3597,3536,3597,[3599,10230],[3535,10231],[3145,3601,10232],[3207,10233],[3210,10133],10037,9652,[9653,14],[9754,14],9755,[3597,10138],[3534,10232],[3597,10233],3533,3599,3536,3536,3536,3534,3599,[3536,9460],[3535,9461],9462,9463,9464,9465,[3536,9466],3599,3536,3533,[3597,10133],[3536,10134],[3534,10135],[3536,10138],3599,3534,3534,3534,9652,[9653,14],0,0,0,[9562,14],[3599,9563],3597,3535,3597,3535,3536,3533,3535,3533,3535,[3533,10133,9655],9844,[9845,14],0,0,[9850,14],9851,[3534,10138,9656],3535,3536,3534,[3536,9751],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,10510,10511,10511,10391,10712,11094,11094,10901,11094,11094,11094,11094,11094,10897,10263,10962,10962,10962,10962,10962,10962,10264,10327,10834,10904,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10899,11094,11092,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,[3907,5092],5093,5094,[3522,5095],3457,3394,3392,3905,3520,3393,3392,[3969,9595],[3521,9596],[9979,9497],[403,10073],[403,10074],[403,10075],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,131],[403,132],[403,133],[403,134],[403,135],[403,136],[403,137],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[3393,9781],[3521,9782],3522,[3392,5476],[3393,5477],[3969,5478],[3521,5479],3971,3394,3520,3971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9910,9911,[3978,9716],3913,3911,[4097,3849],4097,4097,4097,4192,4097,4097,[4097,3974],3977,3977,3913,3914,[3978,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1052,1051,1052,1051,1052,1051,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3209,3209,[3209,3660],3599,3599,3599,3535,[3143,3409],3210,3207,3207,3207,3209,[3210,3596],3536,3536,3599,3535,3536,[3145,3409],3208,3210,[3210,10133],9748,[9749,14],[9658,14],9659,3597,3536,3534,3535,3597,3535,3535,3535,3533,3534,[3597,9556],[9557,14],0,0,0,0,[9562,14],[3534,9563],3535,3536,3597,[3536,10230],[3533,10231],3536,3533,3534,3599,3536,9748,[9749,14],0,0,0,[9658,14],9659,3534,3536,3597,3599,3599,3535,3533,3533,3536,[3597,9751],9940,9941,9942,9943,9946,9947,[3597,9752],3536,3533,3534,[3599,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,10711,10392,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10899,11094,11094,11094,11094,11094,11094,10967,10962,10264,10327,10835,11094,11094,10903,10328,10263,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10964,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,11094,11094,11094,10446,10447,10447,10447,10456,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10455,10447,10447,10448,11094,11094,11094,11094,11094,10964,11094,11094,11094,11094,11156,11094,11094,11094,11031,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10899,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3394,[3521,5188],5189,5190,[3521,5191],3392,3458,3458,3521,3392,3457,3392,[3906,9691],[3394,9692],[403,10075,9593],[403,10169],[403,10170],403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9306],403,403,403,403,403,403,403,403,403,403,403,[403,195],196,197,198,199,200,[403,9303,201],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,9877,[3907,9878],[3906,9782],3456,3457,3906,3457,3908,3908,3520,3969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10004,10005,10006,[3978,10007],[3913,9812],3978,[4097,3979],4097,4097,4097,4097,4097,4097,[4097,3783],3976,3913,3977,3977,3914,[3978,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1114,1115,1116,1115,1116,1115,1116,1115,1116,1117,1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3146,3208,3143,[3144,3469],[3209,3662],3599,3533,[3143,3473],3143,3144,3208,3143,3143,[3208,3660],[3146,3663],3535,3535,3534,3533,[3209,3473],3144,3210,[3145,9461],[9557,14],0,[9754,14],9755,3597,3535,3599,3536,3536,3533,3535,3535,3534,3534,9652,[9653,14],0,0,0,0,[9658,14],9659,3599,3599,3597,3599,3599,3597,3535,3536,3534,[3599,9461],[9557,14],0,0,0,0,[9754,14],9755,3534,3536,3597,3599,3533,3536,3533,3597,3535,[3599,9847],[3533,10036],10037,10038,10039,10042,[3534,10043],[3599,9848],3597,3533,[3597,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10711,10575,10576,11094,11094,11094,11094,11094,10900,11094,11094,11094,10897,10899,11094,11094,10644,11094,11094,11094,11094,11094,10967,10264,10327,10835,10903,10328,10263,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,11094,10774,10645,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10327,10834,10834,10835,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,[3393,5284],[3905,5285],[3969,5286],[3458,5287],3392,3458,3969,3905,3908,3392,3520,[3393,9595],[3458,9596],[403,9593],403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],[403,9398],[3520,9399],[3971,9400],[3393,9402],[403,9403],403,403,403,403,403,403,[403,9303],[403,9304],[403,9306],403,[403,259],260,261,262,263,264,[3456,9399,265],[3457,9400],[3908,9401],[3908,9402],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9973],9974,[3969,9589],[3521,9590],3522,3394,3905,3394,3905,3458,3457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3977,10100],[3978,10101],[3913,10102],3914,3913,3977,[4097,3787],4097,4097,4097,4097,[4097,3718],[4097,3719],3976,3913,3914,3913,[3978,9330],[3978,9523,9333],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1052,1051,1515,1242,1179,1180,1179,1180,1179,1180,1179,1180,1181,1451,1051,1052,1051,1052,1051,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,1056,1057,1058,1059,1057,1058,1057,1059,1056,1059,1059,1058,1057,1059,1058,1058,1063,1064,1064,1063,1064,1063,1064,1063,1064,1063,1064,1063,1064,1063,1064,1065,1066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3207,9466],3207,3210,3207,3143,[3207,3404],3536,[3208,3537],3146,3144,3207,3208,3208,3210,3210,[3143,3404],3534,3533,3599,[3145,3537],3146,[3146,9556],[9557,14],0,0,0,[9562,14],[3534,9466],3535,3535,3597,3599,3533,3535,3534,3533,3535,9748,[9749,14],0,0,0,0,[9754,14],9755,3597,3533,3534,3535,3533,3597,[3599,9366],[3533,9369],[3599,9556],[9557,14],0,0,0,0,0,[9850,14],9851,3597,3533,3535,3535,3535,3535,3599,[3599,9366],[3533,9369],3534,3599,[3535,10133],[3599,10134],[3533,10135],[3534,10138],3534,3597,3536,[3597,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10264,10327,10328,10263,10963,11094,11094,11094,11094,10838,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10902,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10962,10962,10264,10327,10835,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3522,[3522,5380],[3907,5381],[3907,5382],[3522,5383],3906,3969,[3392,4996],[3907,4997],[3520,4998],3971,3906,[3458,9691],[3392,9692],[403,9593],403,403,403,403,403,403,403,403,403,[403,9493],[3905,9399],[3971,9400],[3393,9401],[3521,9402],[3969,9494],3393,3908,3908,[3522,9499],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],[403,9398],[3457,9399],[3905,9400],[3458,9402],[403,9403],[403,9303,323],324,325,326,327,328,[3520,329],3905,3521,3456,[3521,9499],[3521,9399],[3393,9400],[3458,9401],[3906,9402],[403,9403],403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],[3906,9685],[3969,9686],3520,3906,3522,3522,3456,3457,3520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3977,10102],[3977,10196],[3978,10197],3978,3977,3977,3914,[4097,3915],4097,4192,4097,4097,[4097,3974],3977,3913,3914,3977,[3977,9425],9426,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1114,1115,1116,1115,1116,1388,1243,1244,1243,1244,1243,1244,1243,1244,1580,1115,1115,1116,1115,1116,1115,1116,1117,1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1119,1120,1121,1122,1122,1121,1122,1121,1122,1121,1122,1121,1122,1121,1122,1121,1121,1127,1128,1128,1127,1128,1127,1128,1127,1128,1127,1128,1127,1128,1127,1128,1129,1130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3207,9563],[3207,9366],[3210,9369],3145,[3208,3468],3534,[3143,3601],3209,3145,3143,3146,3144,3144,3144,[3208,3468],3599,3536,[3207,3664],[3146,3472],3207,9652,[9653,14],0,0,0,0,[9562,14],[3534,9563],3597,3534,3599,3535,3534,3533,3535,3534,9844,[9845,14],0,0,0,0,[9850,14],9851,3534,3599,3534,3534,3599,[3535,9556],9462,9465,[9557,14],0,0,0,[9850,14],9942,9943,9946,9947,3599,3536,3536,3533,3535,3533,[3597,9461],9462,9465,[3536,9563],3536,3534,[3533,10230],[3599,10231],3534,3599,3535,[3597,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10833,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,10897,10898,10263,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10964,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11032,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10961,10264,10899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3457,[3969,5476],[3905,5477],[3908,5478],[3908,5479],3521,3522,[3520,5092],5093,5094,[3521,5095],3392,[3521,9691],[3520,9692],[403,9593],403,403,403,403,403,403,403,403,[403,9496],[3393,9589],[3969,9590],3969,3458,3392,3905,3458,3522,3392,3907,[3457,9499],[3907,9399],[3392,9400],[3971,9401],[3520,9402],[3971,9494],3908,3394,3457,[3907,9499],[3520,9399,387],388,389,390,391,392,[3458,393],3457,3458,3908,3456,3457,3905,3969,3521,[3908,9499],[403,9500],403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3392,9494],3908,3907,3521,3521,[3392,4996],[3520,4997],[3908,4998],3908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,10102,9620],3914,3914,3977,3914,3913,3914,3911,[4097,4043],4097,4097,4097,[4097,3783],3976,3977,3978,3914,[3913,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1515,1178,1179,1180,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1183,1184,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1192,1192,1192,1192,1192,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1193,1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9465,[3145,9466],[3146,3532],3535,3599,[3146,3407],[3143,3340],[3146,3345],3144,3144,3207,3207,[3208,3532],3536,[3146,3409],3209,3207,3207,9748,[9749,14],0,0,0,0,[9658,14],9659,3533,3536,3533,3533,3533,3597,3533,3536,9940,9941,9942,9943,9944,9945,9946,9947,3599,3536,3536,3533,3535,9652,[9653,14],0,0,0,0,[9850,14],9946,10038,10039,10042,[3597,10043],3533,3535,3533,3599,3597,[3536,9559],9652,[9653,14],0,9659,[3536,9560],3536,3534,3599,3599,3535,[3597,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10897,10899,11094,11094,11094,11094,11029,11094,10903,10834,10834,10328,10899,11094,11094,11094,11094,11094,11094,11094,11094,10833,10834,10328,10263,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3907,3907,3905,3907,3520,3456,3456,[3392,5188],5189,5190,[3520,5191],3908,[3520,9691],[3969,9692],[403,9593],403,403,403,403,403,403,403,403,[403,9397,9592],[3908,9685],[3520,9686],3969,3520,3969,3457,3907,3905,3393,3456,3521,3393,3392,3522,3522,3522,3520,3522,3394,3521,[3907,451],452,453,454,455,456,[3520,457],3905,3393,3521,3392,3520,3521,3971,3394,3392,[3905,9692],[403,9303],[403,9306],403,403,403,403,403,403,403,403,403,403,[403,9493],[3392,9494],3520,3457,3906,3908,3969,[3393,5092],5093,5094,[3908,5095],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,9716],3978,3913,3978,3913,3914,3978,[4097,3979],4097,4097,[4097,3718],[4097,3719],3976,3914,3913,3913,[3914,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1114,1115,1388,1243,1244,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,1390,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1186,1256,1256,1256,1256,1256,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,[1256,1391],1392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3597,3533,3536,3536,3536,3534,[3208,3341],[3208,3342],[3207,3343],[3143,3344],3597,3534,[3146,3473],3144,3144,[3207,9556],[9557,14],0,0,0,0,0,[9850,14],9851,3533,3535,3536,3534,3599,3599,3535,3535,[3533,10036],10037,10038,10039,10040,10041,10042,[3599,10043],3534,3533,3535,3599,3533,9748,[9749,14],0,0,0,[9850,14],9946,10042,[3536,10134],[3536,10135],[3534,10138],3534,3535,3536,3534,3533,3597,[3536,9751],9748,[9749,14],[9658,14],9659,[3533,9656],3534,3535,3597,3599,3599,[3599,9655],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10897,10327,10904,11094,11094,11094,11094,10833,10328,10898,10898,10898,10899,11094,11094,11032,11094,11094,11094,11094,10903,10328,10263,10962,10968,11094,11095,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10838,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10901,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3458,3457,3522,3907,3907,3394,3969,[3392,5284],[3392,5285],[3521,5286],[3458,5287],3907,[3906,9787],[3522,9788],[403,9593],403,403,403,403,403,403,403,403,[403,9493],[3522,9494],3392,3905,3905,3522,3971,3906,3392,3907,3905,3457,3905,[3530,4034],3522,3907,3908,3521,3456,3394,3969,[3392,515],516,517,518,519,520,[3393,521],3906,3971,3520,3905,3520,3394,3392,3905,3456,[3394,9499],[3456,9399],[3392,9402],[403,9403],403,403,403,403,403,403,403,403,403,[3394,9685],[3520,9686],3906,3457,3969,3905,3969,[3907,5188],5189,5190,[3394,5191],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9430],[3913,9330],[3913,9333],3977,3978,3977,3913,3975,[4097,3785],[4097,3718],3976,3977,3914,3977,3978,3977,[3914,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1179,1180,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,[1186,1454],1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1192,1192,1192,1192,1192,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,[1256,1455],1456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3533,3536,3599,3536,3599,3535,3536,3536,3599,3535,3534,3599,[3210,3537],3208,3144,9652,[9653,14],0,0,[9850,14],9944,9945,9946,9947,3597,3534,3534,3534,3534,3597,3599,3599,3536,[3533,10133],[3534,10134],[3597,10135],[3534,10136],[3535,10137],[3533,10138],3534,3599,3534,3535,3536,3536,9748,[9749,14],0,0,[9658,14],9659,10042,[3533,10138],[3599,10230],[3536,10231],3534,3599,3599,3534,3599,3534,3533,[3534,9461],[9557,14],0,[9754,14],9755,[3535,9656],3599,3536,3534,3599,3533,[3536,9655],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10967,10264,10899,11094,11094,10833,10834,10328,10263,10962,10962,10264,10327,10834,10834,10834,10834,10834,10834,10834,10328,10263,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11032,11094,11094,11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3458,3457,3908,3521,3457,3969,3971,[3456,5380],[3521,5381],[3522,5382],[3394,5383],[3520,9595],[3393,9596],[9884,9497],[403,9689],403,403,403,403,403,403,403,[403,9496],[3906,9589],[3457,9590],3906,3520,3969,3521,3908,3908,3905,3906,3906,3520,[3593,3781],3594,[3530,3776],3457,3522,3520,3906,3392,3907,[3906,579],[3456,580],[3593,3973,581],[3530,582],[3528,3968,583],[3969,584],[3971,585],3905,3456,3907,3520,3969,3907,3971,3969,3392,3394,3969,3521,[3907,9499],[403,9500],403,403,403,403,403,403,403,403,[3520,9781],[3458,9782],3969,3458,3392,3522,3392,[3458,5284],[3457,5285],[3908,5286],[3522,5287],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,[3977,9430],3913,3913,3978,3977,3975,3976,3913,3978,3914,3913,3977,3978,[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1243,1244,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1517,1518,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1186,1256,1256,1256,1256,1256,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,[1256,1519],1520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3599,3597,3534,3534,3597,3599,3536,3599,3534,3599,3597,3536,[3209,3601],[3209,9366],[3144,9369],9748,[9749,14],0,[9850,14],9946,10040,10041,10042,[3535,10043],3535,3534,3536,3534,3535,3534,3599,3597,3534,3534,[3597,10230],[3534,10231],[3534,10232],[3597,10233],3599,3535,3534,3535,3534,3599,[3534,9461],[9557,14],0,0,0,[9754,14],9755,[3533,10138],3599,3536,3597,3534,3533,3597,3535,[3534,9366],[3597,9369],[3534,9556],[9557,14],0,0,[9658,14],9659,[3597,9656],3599,3535,3597,3535,3597,[3535,9751],9940,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,10897,10327,10904,10833,10328,10263,10962,10968,11094,11094,10961,10962,10962,10962,10962,10962,10962,10962,10962,10962,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11093,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10773,11031,11094,11094,11094,11094,11094,11094,10838,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,3392,3458,3394,3521,3458,3908,[3394,5476],[3971,5477],[3521,5478],[3907,5479],[3908,9691],[3908,9692],[403,9980,9593],[403,9785],403,403,403,403,403,403,403,[403,9592],[3458,9685],[3521,9686],3969,3457,3520,3908,3969,3457,3457,3971,3457,3394,[3529,3845],3592,[3591,3840],3458,3969,3908,3456,3969,3521,3905,[3527,4036],[3530,3844],3528,[3591,3841],3969,3456,3457,3393,3457,3456,3456,3457,3393,3908,3969,3458,3393,3392,[3907,9691],[3905,9692],[403,9497],403,403,403,403,403,403,403,9877,[3456,9878],[3393,9782],3458,3457,3521,3520,[3458,5380],[3393,5381],[3458,5382],[3393,5383],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9527],3914,3978,3977,3977,3978,3914,[3914,9330],[3913,9431],3913,3914,[3978,8951],8952,[74,8953],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1179,1180,1180,1244,1179,1243,1244,1452,1307,1309,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,1248,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1256,1257,1258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3597,9466],3597,3535,3599,3533,3536,3599,3597,3534,3599,3535,3597,[3597,9461],9462,9465,[9557,14],0,[9658,14],9659,10042,10136,[3535,10137],[3599,10138],3534,3599,3536,3597,[3533,9366],[3536,9369],[3599,9366],[3597,9367],[3597,9368],[3533,9369],3535,3599,3536,3597,3534,3536,3599,3535,[3599,9366],[3597,9369],[3536,9556],[9557,14],0,0,0,0,0,[9562,14],[3535,9466],3599,3597,3599,3535,3534,3597,[3597,9461],9462,9465,[9557,14],0,0,0,[9754,14],9755,[3534,9752,9366],[3599,9369],3534,3536,3534,3533,[3533,9847],[3533,10036],10037,9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10961,10264,10327,10328,10263,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10644,11094,11094,11094,11094,11094,11094,11094,[11094,12430],[11094,12431],[11094,12432],[11094,12433],[11094,12434],[11094,12435],[11094,12436],[11094,12437],[10902,12438],11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10837,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11032,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,3969,3906,3457,3969,3906,3521,3393,3908,3522,3520,[3394,9787],[3522,9788],[403,9593],403,403,403,403,403,403,403,[403,9397],[403,9398],[3969,9494],3521,3393,3457,3521,3521,3457,3907,3394,3908,3908,3392,[3529,3909],3592,[3594,3904],3906,3905,3522,3457,3969,3908,[3529,4037],3594,[3528,3778],[3594,3717],3591,[3593,4032],3521,3907,3908,3906,3522,3458,3456,3522,3394,3971,3520,3392,3906,[3458,9787],[3969,9788],[403,9593],403,403,403,403,403,403,403,[403,9973],9974,[3458,9589],[3393,9590],3907,3456,3520,[3906,5476],[3522,5477],[3392,5478],[3905,5479],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9527],3978,3914,3913,3977,[3978,9425],9426,[3978,9527],3914,3978,[3978,9047],9048,[74,9049],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1243,1244,1243,1244,1243,1244,1243,1244,1243,1244,1243,1179,1180,1180,1180,1180,1244,1179,1180,1179,1180,1181,1387,1373,1374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1311,1312,1313,1314,1313,1314,1313,1314,1313,1314,1313,1314,1313,1314,1313,1314,1314,1319,1319,1320,1319,1320,1319,1320,1319,1320,1319,1320,1319,1320,1319,1320,1321,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3597,9563],3597,3535,3533,3535,3533,3534,3599,3599,3536,[3597,9556],[9557,14],0,0,0,0,[9658,14],9659,[3536,10138],[3533,10232],[3533,10233],3534,3597,3534,[3597,9366],[3599,9461],9462,9465,9462,9463,9464,9465,[3535,9563],3535,3536,3599,3536,3534,3534,[3536,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,[9562,14],[3533,9563],3534,3536,3599,3597,[3599,9559],9652,[9653,14],0,0,0,0,0,0,[9562,14],9462,9465,[3599,9466],3533,3535,3535,3535,3535,[3533,10133],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,10772,11094,10897,10898,10263,10963,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11028,12494],12495,12496,12497,12498,12499,12500,12501,[11094,12502],11094,11094,11094,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,10711,10575,10575,10575,10392,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10391,10575,10575,10576,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3907,3394,3969,3392,3521,3394,3908,3971,3969,3393,[3908,9787],[3393,9883],9884,[403,9689],403,403,403,403,403,403,403,[403,9493],[3520,9494],3520,3907,3393,3520,3394,3394,3969,[3594,4033],[3530,4034],3906,3906,3393,[3529,3973],3593,[3529,3968],3906,3520,3458,3521,3969,[3592,3973],3592,[3529,3777],3393,[3591,3973],3527,3592,[3592,3776],3457,3458,3458,3394,3522,3969,3907,3906,3392,3907,3905,[3392,9787],[3520,9883],9884,[403,9689],403,403,403,403,403,403,403,403,[403,10070],[3969,9685],[3521,9686],3392,3905,3392,3520,3521,3906,3393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9527],[3977,9330],[3978,9333],[3914,9520],9521,9622,9623,[3977,9524],3977,[3914,9143],[74,9144],[74,9145],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1179,1180,1179,1180,1179,1180,1452,1307,1308,1307,1516,1243,1244,1244,1244,1244,1244,1243,1244,1243,1244,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1378,1383,1383,1384,1383,1384,1383,1384,1383,1384,1383,1384,1383,1384,1383,1384,1385,1386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3599,3535,3535,3534,3536,3533,3599,3535,3533,9652,[9653,14],0,0,0,0,[9850,14],9851,3536,3534,3535,3536,3597,[3534,9556],9462,[9557,14],0,0,0,0,0,[9658,14],9659,3533,3597,3597,3597,3536,[3536,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[3599,9560],3535,3535,3533,[3599,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,[9562,14],[3536,9563],3534,3597,3533,3599,[3597,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,10961,10962,10968,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12558],12559,12560,12561,12562,12563,12564,12565,[11094,12566],11094,11094,10903,0,0,10904,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11095,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,[3520,4996],[3521,4997],[3393,4998],3393,3458,3458,3393,3458,[3522,9787],[3971,9883],9979,[403,9980],[403,9785],403,403,403,403,403,403,[403,9496],[3905,9589],[3456,9590],3908,3392,3905,3908,3521,3905,[3593,3973],3593,3592,[3527,3842],3392,3908,3522,[3594,3780],[3529,3842],3522,3457,3457,[3592,4035],[3530,4036],[3593,3843],3594,[3528,3968],3971,3908,[3591,3780],3594,[3594,3840],3394,3458,3521,3969,3905,3394,3393,3969,3520,3905,[3394,9691],[3520,9692],[9979,9497],[403,9980],[403,9785],403,403,403,403,403,403,403,403,[403,9493],[3392,9494],3456,3392,3458,3393,3458,3908,3456,3392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,9521,0,9718,9719,[3978,9716,9330],[3977,9333],[3977,9520],[74,9521],74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1052,1051,1052,1051,1052,1051,1052,1051,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1243,1244,1243,1244,1243,1244,1245,1387,1370,1579,1306,1307,1308,1307,1516,1243,1244,1179,1180,1179,1180,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3535,3535,3534,3536,3534,3535,3599,3535,3534,9748,[9749,14],0,0,0,[9850,14],9946,9947,3597,3597,3536,3536,3535,[3597,9748],[9749,14],0,0,0,0,0,0,[9754,14],9755,3536,3535,3534,3536,3533,9652,[9653,14],0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3597,9656],3533,3536,3599,[3599,9751],9748,[9749,14],0,0,0,0,0,0,0,0,0,[9658,14],9659,[3535,9560],3534,3535,[3536,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12622],12623,12624,12625,12626,12627,12628,12629,[11094,12630],11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,11094,11156,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3457,[3907,5092],5093,5094,[3393,5095],3969,3906,3906,[3906,9595],[3457,9596],[9979,9497],[403,10075],403,403,403,403,403,403,403,403,[403,9592],[3456,9685],[3969,9686],3458,3908,3392,3906,3392,3394,3392,[3530,3713],[3528,3779],3530,[3527,3968],3394,3907,[3530,3781],3594,[3528,3841],[3528,4033],[3591,3844],3529,3530,3593,[3593,3778],3458,3521,3971,3520,[3528,3717],[3592,3841],3971,3907,3906,3905,3905,3457,3905,3971,3457,3394,[3905,9595],[3392,9596],[403,10075,9593],403,403,403,403,403,403,403,403,403,403,[3392,9589],[3906,9590],3456,[3969,4996],[3905,4997],[3969,4998],3969,3394,3521,3456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1114,1116,1115,1116,[1115,15189],[1116,15190],[1115,15191],[1116,15192],1115,1116,1117,1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,1306,1307,1308,[1243,1131],[1243,1132],[1243,1133],1308,1309,1310,0,1369,1370,1371,1372,1579,1242,1243,1244,1243,1244,1243,1244,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9851,3599,3536,3533,3597,3536,3599,3599,3534,[3597,9461],[9557,14],0,0,0,[9658,14],9659,10042,[3535,10043],3597,3599,3533,3599,3599,9844,[9845,14],0,0,0,0,0,0,[9850,14],9851,3533,3597,3533,3536,3536,9748,[9749,14],0,0,0,0,0,0,0,0,0,0,[9850,14],9851,[3535,9656],3597,3597,3533,[3599,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3536,9656],3534,[3536,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,10900,11094,11094,11094,11094,[11094,12686],12687,12688,12689,12690,12691,12692,12693,[11094,12694],11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10838,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10510,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10511,10512,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3458,[3520,5188],5189,5190,[3521,5191],3458,3392,3456,[3458,9691],[3521,9692],[403,10075,9593],403,403,403,403,403,403,403,403,403,[403,9592],[3457,9781],[3394,9782],3456,3906,3458,3457,3392,3393,3456,3522,[3593,3973],3591,[3530,3842],3906,3908,[3591,4037],3527,3529,3530,[3528,3778],[3591,3714],[3530,3715],[3527,3716],[3392,2881],[3521,2882],[3458,2883],[3456,2884],[3520,2885],[3529,3781],3592,[3592,3904],3457,3393,3522,3458,3908,3908,3392,3520,3393,[3905,9691],[3521,9692],[403,9689],403,403,403,403,403,403,403,403,403,403,[3520,9685],[3520,9686],3521,[3520,5092],5093,5094,[3971,5095],3522,3393,3521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1515,1242,[1180,15059],1179,1180,[1179,15253],[1180,15254],[1179,15255],[1180,15256],1179,[1180,15057],1181,1451,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,1370,1371,1372,1195,1196,1197,1372,1373,1374,0,0,0,0,0,1241,1242,1243,1244,1179,1180,1179,1180,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,9947,3536,3533,3535,3534,3533,[3599,9366],[3533,9369],[3597,9556],[9557,14],0,0,0,0,[9658,14],9659,[3534,10138],3536,3597,3599,3533,3533,3535,9940,9941,9944,9945,9942,9943,9944,9945,9946,9947,3536,3599,3536,3533,3536,9844,[9845,14],0,0,0,0,0,0,0,0,0,[9754,14],9755,[9947,9560],[3599,9752],3534,3597,[3535,9559],9652,[9653,14],0,0,0,0,0,0,0,0,[9850,14],9942,9943,9851,[3597,9656],3597,[3533,9655],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11029,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12750],12751,12752,12753,12754,12755,12756,12757,[11094,12758],11094,10838,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10574,10575,10575,10575,10575,10575,10575,10575,10575,10575,10575,10575,10712,11094,11094,10900,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3521,[3522,5284],[3520,5285],[3458,5286],[3457,5287],3521,3392,3394,3392,[3394,9499],[403,9403],403,403,403,403,403,403,403,403,403,[403,9688],9877,[3521,9878],[3905,9782],3908,3456,3392,3457,3971,3456,3905,3969,[3592,3780],3529,[3529,3841],[3528,4037],3591,3591,3591,3591,[3592,3968],3458,3521,3971,[3458,2945],2946,2947,2948,[3392,2949],[3593,3909],3530,[3591,3968],3458,3456,3392,3394,3907,3521,3458,3393,3394,3521,[3907,9499],[403,9500],403,403,403,403,403,403,403,403,403,403,[3522,9781],[3969,9782],3392,[3908,5188],5189,5190,[3521,5191],3905,3971,3906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1114,1115,1388,1244,1243,1244,1243,1244,1243,1244,1243,1244,1580,1115,1117,1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1243,1244,1243,[1243,1068],1243,1244,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10042,[3599,10043],3599,3536,3599,3597,[3536,9556],9462,9465,[9557,14],0,0,0,0,0,[9754,14],9755,3597,3536,3535,3597,3535,3536,3597,[3599,10036],10037,10040,10041,10038,10039,10040,10041,10042,[3535,10043],3534,3535,3533,3533,3599,9940,9941,9942,9943,[9845,14],0,0,0,0,0,0,[9850,14],9851,[3536,10043,9656],[3536,9848],3536,3534,[3536,9655],9748,[9749,14],0,0,0,0,0,0,0,[9850,14],9946,10038,10039,9947,[3535,9752],3536,[3597,9655],9844,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,11094,11094,11094,10964,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12814],12815,12816,12817,12818,12819,12820,12821,[10904,12822],11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10708,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3394,[3907,5380],[3394,5381],[3905,5382],[3521,5383],3393,3521,3908,3522,3906,[3394,9499],[403,9500],403,403,403,403,403,403,403,403,[403,9784],[403,9973],[9974,9496],[3907,9589],[3907,9590],3457,3905,3971,3520,3393,3906,3394,[3530,3973],3527,3527,3528,3592,3592,3529,[3527,3777],3520,3456,3908,[3906,3008],[3521,3009],3010,[3011,15057],3012,[3908,3013],[3593,3973],3529,[3527,3841],[3527,4033],3907,3906,3969,3520,3520,3908,3393,3392,3456,[3392,9691],[3458,9692],[403,9497],403,403,403,403,403,403,403,403,403,9877,[3456,9878],[3969,9782],[3520,5284],[3906,5285],[3392,5286],[3458,5287],3969,3456,3457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1179,1179,[1180,372],[1179,373],[1180,373],[1179,373],[1180,373],[1179,373],[1180,373],[1179,373],[1180,374],1179,1180,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,1306,1307,1308,[1179,1131],[1244,1132],[1179,1133],1308,1309,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,10042,[3597,10138],3597,3535,3597,3534,3534,9748,[9749,14],0,0,0,0,0,0,0,0,[9562,14],[3534,9466],3534,3597,3533,3535,3534,3535,3597,[3533,10133],10136,[3599,10137],[3535,10134],[3599,10135],[3599,10136],[3599,10137],[3534,10138],3597,3535,3535,3536,3533,3535,[3597,10036],10037,10038,10039,9941,[9845,14],0,0,0,0,[9850,14],9946,9947,[3599,9752],3533,3536,3597,[3536,9655],9844,[9845,14],0,0,0,0,0,0,[9850,14],9946,10042,[3533,10134],[3535,10135],[3535,10043],[3535,9848],3535,[3597,9751],9940,9941,9942,9943,9944,9945,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12416],[11094,12417],[11094,12418],[11094,12419],[11094,12420],[11094,12421],[11094,12422],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12878],12879,12880,12881,12882,12883,[10898,12884],[10898,12885],[10899,12886],11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3521,[3392,5476],[3394,5477],[3521,5478],[3905,5479],3521,3969,3969,3522,3907,[3971,9595],[3908,9596],[403,9497],403,403,403,403,403,403,403,403,403,[403,10070,9592],[3392,9685],[3394,9686],3522,3522,3392,3393,3971,[3529,4035],[3592,4036],[3591,4037],3594,[3591,3778],[3527,3713],[3592,3714],[3529,3715],[3528,3716],3907,3969,3971,3521,[3457,3072],[3521,3073],3074,3075,3076,[3522,3077],3456,[3593,3713],[3594,3780],3529,[3592,3841],[3528,4034],[3529,4035],3971,3457,3906,3458,3521,3522,[3906,9787],[3394,9788],[403,9593],403,403,403,403,403,403,403,403,403,[403,9973],9974,[3393,9589],[3520,9590,5380],[3521,5381],[3908,5382],[3908,5383],3521,3394,3906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1243,1179,[1244,436],437,437,437,437,437,437,437,[1244,438],1243,1244,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,1370,1371,1372,1195,1196,1197,1372,1373,1374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3597,10138],3535,3535,3536,3534,3535,3597,9844,[9845,14],0,0,0,0,0,0,0,0,0,[9562,14],[3535,9563],[3536,9366],[3535,9369],3534,3533,3597,3534,3599,[3599,10232],[3597,10233],[3535,10230],[3534,10231],[3599,10232],[3597,10233],3534,3534,3599,3597,3597,3535,3534,3599,[3534,10133],[3599,10134],[3597,10135],10037,9941,9942,9943,9944,9945,9946,10042,[3597,10043],[3533,9848],3536,3597,3535,[3599,9751],9940,9941,[9845,14],0,0,0,0,[9754,14],9755,10042,[3535,10138],[3533,10230],[3536,10231],3534,3533,3599,[3599,9847],[3536,10036],10037,10038,10039,10040,10041,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12480],12481,12482,12483,12484,12485,[11094,12486],11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[10903,12942],[10834,12943],[10834,12944],[10834,12945],[10834,12946],[10328,12947],[10898,12948],[10898,12949],[10899,12950],11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11029,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,3971,3969,3908,3394,3458,3906,3907,3521,3521,[3521,9691],[3907,9692],[403,9593],403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3458,9494],3393,3522,3905,3908,3522,[3527,3973],3593,3592,3529,[3530,3778],3522,3521,[3905,815],[3457,870],[3457,998],[3456,998],[3522,934],[3458,816],3969,3906,[3456,3137],3138,3139,[3908,3140],[3905,3141],3906,3456,[3528,4037],3594,3529,3591,3594,[3530,3904],3456,3521,3522,3520,[3969,9787],[3456,9883],9884,[403,9689],403,403,403,403,403,403,403,403,403,403,[403,10070],[3458,9685],[3392,9686,5476],[3392,5477],[3522,5478],[3905,5479],3392,3392,3392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1179,1180,[1180,436],437,437,437,437,437,437,437,[1180,438],1179,1180,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3597,9466],3599,3536,3535,3599,3536,3536,9940,9941,[9845,14],0,0,0,0,0,0,0,0,0,[9562,14],9462,9465,[3536,9466],3533,3597,3534,3536,3533,3533,3536,[3533,9850,14],[3533,9942],[3535,9943],[3533,9845,14],3534,3535,[3533,9850,14],[3535,9942],[3536,9943],[3533,9845,14],3599,3534,[3533,10230],[3533,10231],[3533,10133],10037,10038,10039,10040,10041,10042,[3533,10138],3536,3535,3536,3533,3599,[3599,9847],[3534,10036],10037,9652,[9653,14],0,0,0,[9754,14],9755,[3599,10138,9560],3597,3533,3535,3533,3536,3534,3535,3534,[3597,10133],[3534,10134],[3536,10135],[3533,10136],[3599,10137],10037,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,[11094,12544],12545,12546,12547,12548,12549,[11094,12550],11094,11094,11094,11094,11094,11094,11094,10774,11094,11094,11094,11094,11094,11094,10772,10897,10898,10898,10898,10898,10898,10898,10898,10327,10834,10834,10328,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11093,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,3456,3458,3522,3906,3520,3522,[3520,4996],[3969,4997],[3969,4998],3393,[3905,9499],[403,9403],403,403,403,403,403,403,403,403,[403,9493],[3392,9494],3457,3521,3520,3456,3905,[3529,4036],[3591,4037,4249],3529,[3592,3777],[3591,3716],3908,3456,3394,[3969,871],607,607,607,607,[3906,997],[3394,934],[3521,816],3969,[3908,3202],[3457,3203],[3520,3204],3971,3456,[3593,3843],3594,3528,[3591,3712],[3592,3780],3591,[3591,3968],3458,3906,3393,[3969,9595],[3969,9596],[9979,9497],[403,9980],[403,9785],403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3907,9494],3520,3392,3394,3908,3971,3520,3392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1243,1180,[1244,500],[1243,501],[1244,501],[1243,501],[1244,501],[1243,501],[1244,501],[1243,501],[1244,502],1243,1244,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3597,9563],3599,3534,3599,3533,3599,[3597,10036],10037,9652,[9653,14],0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3533,3536,3533,3599,[3534,9850,14],[3533,9942],[3534,9943],[3533,9946],10038,10039,[3599,9941],[3535,9942],[3534,9943],[3533,9946],10038,10039,[3535,9941],[3599,9845,14],3536,3597,3599,3534,[3535,10133],[3535,10134],[3597,10135],[3534,10136],[3536,10137],[3533,10138],3535,3535,3536,3533,3599,3533,3534,3534,[3534,10133],9748,[9749,14],0,0,0,[9850,14],9851,[3533,9656],3535,3536,3599,3536,3597,3599,3534,3597,3597,[3536,10230],[3535,10231],[3535,10232],[3597,10233],[3533,10133],[10037,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12608],12609,12610,12611,12612,12613,[11094,12614],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11031,11094,11094,11095,11094,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3969,4996],[3905,4997],[3522,4998],3393,3906,3520,3392,[3520,5092],5093,5094,[3905,5095],3456,[3969,9499],[403,9500],403,403,403,403,403,403,[403,9496],[3905,9589],[3521,9590],3393,3971,3457,3971,[3529,3973],[3592,4344],[3593,4345],[3591,4346],[3593,3968],3393,3458,3393,3522,[3969,935],607,607,607,607,607,607,[3520,869],3458,3905,3906,3457,3458,[3527,3845],3594,3591,[3527,3778],3521,3905,[3593,3713],3392,3521,3907,3520,[3521,9691],[3907,9692],[403,10075,9593],403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3392,9494],3971,3458,3971,3458,3969,3520,3392,3522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9908,9909,8945,8946,8947,9906,9907,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,1306,1307,1308,1307,1516,1180,1179,1180,1179,1180,1452,1307,1308,1308,1309,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3597,3533,3536,3536,3536,3533,[3533,10133],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3599,3536,3599,[3599,9850,14],[3597,9946],10038,10039,10042,10134,10135,10037,10038,10039,10042,10134,10135,10037,[3597,9652],[3536,9653,14],3535,3597,3534,3535,[3533,10230],[3533,10231],[3536,10232],[3533,10233],3533,3536,3535,3597,3597,3597,3536,3536,3536,[3534,9461],[9557,14],0,0,0,[9850,14],9946,9947,[3533,9752],3597,3533,3534,[3533,9366],[3599,9369],[3599,9366],[3533,9367],[3533,9368],[3597,9369],3534,3535,3533,3599,3597,[3597,10133,9655],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11095,[11094,12672],12673,12674,12675,12676,12677,[11094,12678],11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3521,5092],5093,5094,[3521,5095],3969,3969,3394,[3907,5188],5189,5190,[3392,5191],3908,[3394,9595],[3394,9596],[403,9497],403,403,403,403,403,[403,9592],[3520,9685],[3521,9686],3971,3520,3457,3908,3521,[3591,3714],[3594,3715],[3593,3716],3456,3907,3520,3458,3520,3393,[3457,807],607,607,607,607,607,[3907,933],3908,3392,3457,3393,3392,[3530,3909],3593,[3528,3777],3520,3905,3456,3908,3905,3907,3522,3520,3394,[3907,9499],[403,9500],403,403,403,403,403,403,403,403,403,403,403,[3457,9589],[3393,9590],3907,3521,3905,3521,3392,3908,3905,3969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,10004,10005,9041,9042,9043,10002,10003,10005,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,1370,1372,1372,1579,1242,1244,[1180,1067],[1179,1068],[1243,1069],1244,1245,1387,1371,1372,1373,1374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3536,3599,3597,3535,3599,3597,3534,9844,9942,9943,9944,9945,[9845,14],0,0,0,0,0,0,[9658,14],9659,3599,3599,[3597,9658,14],[3533,9659],10042,10134,10135,10138,10230,10231,10133,10134,10135,10138,10230,10231,[10133,9559],[3599,9748],[3535,9749,14],3534,3597,3534,3536,3599,3533,3536,3597,3533,3534,3533,3599,3534,3599,3533,3533,[3534,9556],[9557,14],0,0,0,[9754,14],9755,[10042,9560],[3535,10043],[3535,9848],3533,3599,[3536,9461],9462,9465,9462,9463,9464,9465,[3535,9466],3536,3534,3536,3533,[3599,9751],9940,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12736],12737,12304,12305,12306,12741,[11094,12742],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10263,10962,10962,10962,10962,10264,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10900,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3969,5188],5189,5190,[3969,5191],3908,3457,3908,[3392,5284],[3394,5285],[3521,5286],[3520,5287],3522,[3457,9691],[3393,9692],[403,9593],403,403,403,403,403,[403,9592],[3521,9589],[3394,9590],3458,3520,3392,3969,3521,3907,3908,3520,3905,3520,3521,3457,3458,3969,3521,[3520,806],[3520,807],607,607,[3457,805],3522,3971,3521,3520,3394,3521,[3527,3973],3592,[3528,3968],3522,3520,3907,3457,3971,3908,3522,3458,3392,[3458,9595],[3907,9596],[403,9497],403,403,403,403,403,403,403,403,403,[403,4996],[3392,9685,4997],[3971,9686,4998],3394,3907,3394,3522,[3522,4996],[3907,4997],[3458,4998],3392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3914,10098],[3914,10099],[3914,10100],[3913,10101],[3978,9137],[3913,9138],[3978,9139],[3978,10098],[3914,10099],[3977,10101],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,1306,1308,[1180,1131],[1179,1132],[1179,1133],1308,1309,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9942,9943,9944,9945,[9845,14],0,0,0,0,[9562,14],[3599,9466],3536,3597,3534,3535,3533,3599,9940,10038,10039,10040,10041,9941,[9845,14],0,0,0,0,0,[9754,14],9755,3534,3535,[3536,9754,14],[3599,9755],10138,10230,10231,0,0,0,0,10230,10231,0,0,0,9655,[3536,9844],[3533,9845,14],3534,3599,[3536,9850,14],[3534,9942],[3534,9943],[3597,9944],[3599,9945],[3533,9942],[3534,9845,14],3536,3536,3599,3533,3536,3597,[3534,9559],9652,[9653,14],0,0,0,[9850,14],9851,[3535,10138,9656],3599,3536,3533,[3535,9559],9652,[9653,14],0,0,0,0,0,[9562,14],[3534,9563],3534,3535,3599,[3536,9847],[3535,10036],10037,9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,11094,11094,[10833,12800],[10834,12801],[10834,12368],[10834,12369],[10834,12370],[10834,12805],[10835,12806],11094,11094,11094,11094,11094,10903,10834,10834,10834,10834,10834,10834,10834,10834,10834,10328,10898,10898,10898,10263,10968,11094,11094,11094,11094,10967,10962,10962,10962,10968,10644,11094,11094,10838,11094,11094,11094,11094,10966,11094,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10900,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3394,5284],[3393,5285],[3458,5286],[3457,5287],3394,3394,3521,[3394,5380],[3906,5381],[3393,5382],[3394,5383],3522,[3392,9787],[3520,9788],[403,9593],403,403,403,403,403,[403,9592],[3456,9685],[3393,9686],3906,3392,3456,3969,3392,3520,3392,3908,3906,3456,3457,3394,3971,3394,3520,3521,3520,[3905,806],[3392,806],3907,3522,3969,3456,3908,3971,3906,3456,[3594,3713],3907,3458,3458,3905,3969,3971,3394,3520,3520,3907,[3969,9691],[3906,9692],[403,9593],403,403,403,403,403,403,403,403,[403,9397],[403,9398,5092],5093,5094,[3969,5095],3521,3905,3393,[3392,5092],5093,5094,[3521,5095],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3978,10102],[3977,10194],[3978,10195],[3913,10196],[3978,10197],[3977,9233],[3913,9234],[3977,9235],[3978,10194],[3914,10195],[3977,10197],[3977,10097],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,1370,1372,1195,1196,1197,1372,1373,1374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10038,10039,10040,10041,9941,[9845,14],0,0,0,0,[9562,14],[3599,9563],[3534,9366],[3535,9369],3536,3535,3597,[3535,10036],[3597,10134],[3599,10135],[3597,10136],[3535,10137],10037,9941,[9845,14],0,0,0,0,[9658,14],9659,3597,3599,[3535,9658,14],[3534,9659],0,0,0,0,0,0,0,0,0,0,0,0,9751,9940,[3533,9941],[3597,9942],[3534,9943],[3535,9946],10038,10039,10040,10041,10038,[3535,9941],[3535,9845,14],3534,3597,3535,3535,3533,[3533,9655],9844,[9845,14],0,0,[9850,14],9946,9947,[3533,9752],3535,3533,3535,[3533,9655],9652,[9653,14],0,0,0,0,0,[9658,14],9659,[3599,9560],3536,3536,3599,3597,[3534,10133],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10900,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11032,11094,10897,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10964,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3393,5380],[3522,5381],[3908,5382],[3458,5383],3522,3969,3905,[3521,5476],[3906,5477],[3522,5478],[3457,5479],[3907,9787],[3393,9883],9884,[403,9689],403,403,403,403,403,[403,9592],[3905,9781],[3393,9782],3392,3458,[3521,9787],[3456,9879],[3521,9880],[3908,9881],[3456,9882],[3969,9782],3520,3457,3906,3522,3905,3458,3908,3969,3392,3969,3521,3905,3908,3393,3520,3394,3521,3520,3457,3520,3456,3522,3456,3521,3971,3522,3969,3905,3905,3908,[3392,9595],[3906,9596],[403,9593],403,403,403,403,403,403,403,403,[403,9493],[3457,9494,5188],5189,5190,[3393,5191],3521,3521,3907,[3907,5188],5189,5190,[3392,5191],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,10102,9620],3913,3913,3914,3977,3913,3914,3977,3913,3914,3914,3913,3977,[3977,10097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10042,[3599,10134],[3535,10135],[3599,10136],[3533,10137],10037,9941,[9845,14],0,0,0,0,[9562,14],9462,9465,[3534,9466],3599,3533,3597,[3599,10230],[3597,10231],[3533,10232],[3533,10233],[3534,10133],10037,9941,[9845,14],0,0,0,[9754,14],9755,3535,3597,[3599,9754,14],[3597,9755],9366,9369,0,0,0,0,0,0,0,0,0,0,9847,10036,10037,10038,10039,10042,10134,10135,10136,10137,10134,10037,[3533,9941],[3534,9845,14],3599,3535,3534,3533,[3535,9751],9940,9941,9942,9943,9946,10042,[3599,10043],[3599,9848],3599,3534,3597,[3536,9751],9748,[9749,14],0,0,0,0,0,[9658,14],9659,[3534,9656],3599,3536,3534,3535,[3535,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10327,10834,10834,10834,10834,10834,10328,10898,10263,10962,10962,10962,10962,10962,10264,10898,10263,10962,10962,10962,10968,11094,11094,11094,11094,11094,[11094,11545],[11094,11546],[11094,11547],[11094,11548],[11094,11549],[11094,11550],[11094,11551],[11094,11552],[11094,11553],[11094,11554],[11094,11555],[11094,11556],[11094,11557],[11094,11558],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10774,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3457,5476],[3971,5477],[3457,5478],[3521,5479],[3522,4996],[3520,4997],[3969,4998],3520,3969,3520,[3907,9787],[3969,9883],9979,[403,9980],[403,9785],403,403,403,403,403,[403,9688],9877,[3457,9878],[3456,9881],[3907,9882],[3393,9883],9975,9976,9977,9978,[3393,9878],[3907,9879],[3456,9880],[3520,9782],3971,3393,3907,3907,[3456,9787],[3394,9881],[3392,9882],[3458,9782],3905,3908,3971,3392,3907,3457,3458,3969,3520,3905,3522,3906,3521,3521,3458,3907,3969,3457,3905,[3394,9691],[3905,9692],[403,9593],403,403,403,403,403,403,403,403,[3969,9589],[3969,9590,5284],[3908,5285],[3394,5286],[3394,5287],3971,3392,3522,[3906,5284],[3456,5285],[3907,5286],[3521,5287],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9430],3978,3978,3913,3913,3913,3978,3978,3978,3913,3977,3914,3977,[3914,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,10042,[3536,10138],[3599,10230],[3533,10231],[3536,10232],[3599,10233],[3597,10133],10037,9941,[9845,14],0,0,0,0,0,0,[9562,14],[3535,9563],3534,3536,3599,3533,3597,3533,3536,[3536,10133],10037,9748,[9749,14],0,0,[9658,14],9659,3599,3597,3534,[3535,9562,14],[3599,9462],[3599,9465],9466,0,0,0,0,0,0,0,0,0,0,0,10133,10134,10135,10138,10230,10231,10232,10233,0,10133,10037,[3535,9941],[3534,9845,14],3535,3534,3599,[3536,9847],[3534,10036],10037,10038,10039,10042,[3536,10138],3535,3534,3534,3534,3535,[3599,9461],[9557,14],0,0,0,0,0,0,[9754,14],9755,[3534,9656],3536,3599,3535,[3536,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,[11094,11622],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,0,0,0,11094,11094,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3394,3521,3394,3971,[3458,5092],5093,5094,[3392,5095],3906,[3394,9595],[3520,9596],[9979,9497],[403,10075],403,403,403,403,403,403,403,[403,9784],[403,9973],9974,9977,9978,9979,[403,10071],[403,10072],[403,10073],[403,10074],9974,9975,9976,[3907,9878],[3907,9879],[3969,9880],[3521,9881],[3456,9882],[3908,9883],9977,9978,[3971,9878],[3394,9879],[3971,9880],[3393,9782],3907,3522,3458,3392,3394,3522,3522,3457,3971,3971,3907,3969,3905,3458,3521,3521,[3971,9787],[3457,9788],[403,9593],403,403,403,403,403,403,403,403,[3520,9685],[3905,9686,5380],[3522,5381],[3458,5382],[3905,5383],3392,3393,3522,[3971,5380],[3521,5381],[3522,5382],[3394,5383],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3913,9527],3913,3977,3914,3914,3977,3914,3978,3914,3978,3913,[3914,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],8945,8946,8947,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3536,10138],3536,3534,3534,3597,3599,3536,[3597,10133],10037,9652,[9653,14],0,0,0,0,0,0,[9562,14],[3536,9466],3597,3599,3535,3533,3536,3597,3597,[3597,10133],9844,[9845,14],0,0,[9754,14],9755,3534,3597,3536,3536,3536,3535,[3535,9562,14],9563,0,0,0,0,0,0,0,0,0,0,0,10230,10231,0,0,0,0,0,0,0,10133,10037,[3597,9941],[3534,9942],[3534,9943],[3533,9845,14],3533,3599,[3534,10133],[3535,10134],[3597,10135],[3535,10138],3597,3533,3597,[3533,9366],[3536,9369],[3534,9556],[9557,14],0,0,0,0,0,0,0,[9850,14],9851,[3533,9656],3535,3535,[3536,9559],[3599,9652],[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11095,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,10967,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10968,11094,11094,11094,11094,11094,10897,10898,10899,11094,11031,11094,11094,11094,11094,11094,11094,11094,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,[11094,11686],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10708,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10901,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,3907,3456,3969,[3906,5188],5189,5190,[3906,5191],3394,[3392,9691],[3522,9692],[403,10075,9593],403,403,403,403,403,403,403,403,403,403,[403,10070],[403,10073],[403,10074],[403,10075],[403,10167],[403,10168],[403,10169],[403,10170],[403,10070],[403,10071],[403,10072],9974,9975,9976,9977,9978,9979,[403,10073],[403,10074],9974,9975,9976,[3908,9878],[3392,9879],[3456,9880],[3394,9881],[3456,9882],[3394,9782],3456,3394,3907,3392,3520,3906,3520,3394,[3521,9787],[3521,9881],[3971,9882],[3521,9883],9884,[403,9689],403,403,403,403,403,403,403,403,[3394,9781],[3457,9782,5476],[3392,5477],[3522,5478],[3520,5479],3457,3908,3908,[3392,5476],[3906,5477],[3520,5478],[3392,5479],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,3913,3914,3913,3914,3914,3978,3978,3978,3914,3913,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9041,9042,9043,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3536,3599,3597,3599,3597,3535,3535,3597,[3536,10133],9748,[9749,14],0,0,0,0,0,0,0,[9562,14],[3597,9563],[3534,9366],[3535,9369],3535,3535,3597,3597,3534,9940,9941,[9845,14],0,0,[9562,14],[3535,9466],3533,3536,3599,3536,3535,3534,[3597,9562,14],9563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10133,10037,10038,10039,[3536,9748],[3536,9749,14],3534,3597,[3533,10230],[3534,10231],3533,3599,3597,[3599,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,[9850,14],9946,9947,[3534,9752],3534,3599,[3536,9751],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,10265],[11094,10266],[11094,10267],[11094,10268],[11094,10269],[11094,10270],[11094,10271],[11094,10272],[11094,10273],[11094,10274],[11094,10275],11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,[11094,11750],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3521,3969,3907,3392,[3907,5284],[3522,5285],[3522,5286],[3520,5287],3457,[3969,9787],[3456,9788],[403,9593],403,403,403,403,403,403,403,403,403,403,403,[403,10169],[403,10170],403,403,403,403,403,403,[403,10167],[403,10168],[403,10070],[403,10071],[403,10072],[403,10073],[403,10074],[403,10075],[403,10169],[403,10170],[403,10070],[403,10071],[403,10072],9974,9975,9976,9977,9978,[3521,9878],[3520,9782],3906,3907,3522,3392,[3393,9787],[3908,9879],[3392,9880],[3458,9883],9977,9978,9979,[403,9980],[403,9785],403,403,403,403,403,403,403,403,9877,[3521,9878],[3456,9782],3522,3458,3522,3905,3457,3457,3908,3907,3393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,3977,3913,3978,3913,3977,3914,3914,3914,3978,3914,9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3978,9137],[3913,9138],[3978,9139],10001,9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3536,3533,3536,3534,[3534,9366],3535,3533,3533,3536,9844,[9845,14],0,0,0,0,0,0,0,0,[9562,14],9462,9465,[3534,9466],3597,3599,3599,3536,[3536,10036],10037,9652,[9653,14],0,0,[9562,14],[3534,9563],[3533,9366],[3534,9369],3599,3535,3534,[3599,9658,14],[3536,9659],9560,0,0,0,0,0,0,0,9366,9367,9368,9369,9366,9367,9368,9369,0,0,0,0,0,10133,10134,[10135,9559],[3533,9652],[3534,9653,14],3534,3535,3533,3599,3597,[3534,9366],[3599,9369],9652,[9653,14],0,0,0,0,0,0,0,0,[9754,14],9755,[10042,9560],[3536,10043],[3597,9848],3533,3535,[3534,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,11094,10774,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,11094,11094,11094,11094,11094,11094,10897,10898,10899,10836,11094,11094,11094,11094,11029,11094,11094,11094,[11094,11801],11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,[11094,11814],11094,11094,10964,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10902,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3906,3971,3521,3905,[3522,5380],[3906,5381],[3906,5382],[3392,5383],[3522,9787],[3971,9883],9884,[403,9689],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10167],[403,10168],[403,10169],[403,10170],403,403,403,403,[403,10167],[403,10168],[403,10070],[403,10071],[403,10072],[403,10073],[403,10074],9974,[3522,9878],[3394,9879],[3456,9880],[3456,9881],[3907,9882],[3907,9883],9975,9976,9979,[403,10073],[403,10074],[403,10075],403,403,403,403,403,403,403,403,403,403,[403,9973],9974,[3392,9589],[3908,9590],3969,3394,3394,3520,3394,3906,3522,3394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9430],3977,3978,3977,3978,3913,3913,3914,3978,[3978,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3913,10102],[3914,9233],[3978,9234],[3914,9235],[3913,10097,9523],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3534,9563],[3535,9366],[3599,9369],[3534,9461],9462,[3536,9563],3534,3535,3536,9940,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,[9562,14],[3535,9563],3597,3599,3533,3534,[3534,10133],9748,[9749,14],0,0,0,[9562,14],9462,9465,[3535,9466],3534,3533,[3599,9754,14],[3533,9755],9656,0,0,0,0,0,0,9461,[3597,9462],[3597,9463],[3534,9464],[3599,9465],[3535,9462],[3599,9463],[3599,9464],[3534,9465],9466,0,0,0,0,0,10230,[10231,9655],[3597,9748],[3535,9749,14],3536,3536,3533,3536,[3534,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,[9850,14],9851,[3533,10138,9656],3533,3534,3597,[3599,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,11094,11094,11094,11094,11094,11094,10897,10898,10899,10902,11094,11094,11094,11094,11094,11094,11094,11094,[11094,11865],11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,[11094,11878],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10837,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,3522,3521,3393,[3392,5476],[3907,5477],[3969,5478],[3520,9595,5479],[3905,9596],[9979,9497],[403,9980],[403,9785],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10167],[403,10168],[403,10169],[403,10170],[403,10070],9974,9975,9976,9977,9978,9979,[403,10071],[403,10072],[403,10075],[403,10169],[403,10170],403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],[3905,9685],[3392,9686],3394,3458,[3969,4996],[3971,4997],[3392,4998],3522,3392,3522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9527],3914,3978,3977,3977,3978,3913,[3914,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,10006,[3978,10102],3914,3977,3977,3914,[3977,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9465,[9557,14],[9658,14],9659,3535,3536,3533,[3535,10036],10037,9652,[9653,14],0,0,0,0,0,0,0,0,0,[9658,14],9659,3597,3535,3597,3535,3599,9844,[9845,14],0,0,0,0,0,[9658,14],9659,3599,3535,[3536,9754,14],[3534,9755],9752,0,0,0,0,0,9556,[3536,9557,14],3597,3535,3536,3599,3535,3597,3536,3599,[3535,9562,14],9563,0,0,0,0,0,9655,[3599,9844],[3597,9845,14],3535,3599,3534,[3535,9559],9652,[9653,14],0,0,0,0,0,0,0,0,[9850,14],9944,9945,9946,9947,[3599,9752],3597,3597,[3536,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,[10833,11929],11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,[10904,11942],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3971,3393,3521,3971,3457,3521,3394,[3458,9691],[3392,9692],[403,10075,9593],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10070],[403,10071],[403,10072],[403,10073],[403,10074],[403,10075],[403,10167],[403,10168],403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9306],[403,9398],[3393,9494],3521,3522,3971,[3394,5092],5093,5094,[3394,5095],3969,3969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,9524],3913,3978,3978,3977,[3977,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3914,10102,9524],3913,3978,3913,3977,3977,[3913,9715],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3599,9563],3535,3535,3534,[3533,10133],9748,[9749,14],0,0,0,0,0,0,0,0,0,[9754,14],9755,3534,3599,3599,3597,3599,9940,9941,[9845,14],0,0,0,0,[9754,14],9755,3534,3534,3597,[3534,9562,14],9563,0,0,0,0,9559,[3535,9652],[3535,9653,14],3597,3533,3534,3535,3599,3533,3597,3534,[3534,9754,14],[3597,9755],9560,0,0,0,0,9751,9940,[3599,9941],[3535,9845,14],3597,3534,[3597,9655],9748,[9749,14],0,0,0,0,0,0,0,[9850,14],9946,10040,10041,10042,[3597,10043],[3536,9848],3533,3534,[3536,9751],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,[11094,10521],10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,[10897,11993],11994,11995,[10898,11996],[10898,11997],11998,11999,[10898,12000],[10898,12001],[10898,12002],[10898,12003],12004,12005,[10899,12006],10837,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3457,4996],[3906,4997],[3457,4998],3520,3393,3969,3394,[3521,9787],[3521,9788],[403,9593],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,10167],[403,10168],[403,10169],[403,10170],403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3457,9399,4996],[3906,9400,4997],[3969,9402,4998],[3394,9494],3458,3393,3908,3907,[3906,5188],5189,5190,[3394,5191],3520,3394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9620],3977,3914,3977,3977,[3978,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3913,9620],3977,3913,3913,[3913,9330],[3914,9333],[3914,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3535,3535,3597,3535,9844,[9845,14],0,0,0,0,0,0,0,0,0,0,[9562,14],[3599,9466],3599,3597,3536,3533,[3597,10036],10037,9748,[9749,14],0,0,0,[9658,14],9659,3536,3534,3536,[3536,9658,14],[3535,9659],9560,0,0,0,9655,[3534,9844],[3536,9845,14],3599,3535,3534,3599,3597,3534,3535,3536,[3535,9850,14],[3533,9851],9656,0,0,0,0,9847,10036,10037,[3534,9652],[3536,9653,14],3535,[3597,9655],9652,[9653,14],0,0,0,0,0,0,[9850,14],9946,10042,[3533,10136],[3534,10137],[3599,10138],3536,3533,3535,3597,[3534,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,10585],10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10646,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10965,11094,11094,11094,11094,11094,11030,11094,11094,11094,10838,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,10902,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3457,5092],5093,5094,[3907,5095],3908,3393,[3457,9787],[3521,9883],9884,[403,9689],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9493],[3969,9494],[3520,5092],5093,5094,[3520,5095],3394,3458,3908,3520,[3969,5284],[3392,5285],[3392,5286],[3521,5287],3520,3392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,9716],[3914,128],3978,3914,[3913,128],[3977,9715],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9908,9909,[9809,14],0,0,0,0,[9814,14],9906,9907,9910,9911,[3913,9716],3914,3978,[3978,9425],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3599,3599,3535,3535,9940,9748,[9749,14],0,0,0,0,0,0,0,0,0,0,[9562,14],[3535,9563],3536,3533,3597,3535,[3534,10133],9844,[9845,14],0,0,0,[9754,14],9755,3599,3536,3536,[3599,9754,14],[3599,9755],9656,0,0,0,9751,9940,[3534,9941],[3535,9845,14],3599,3534,3597,3536,3534,3597,[3534,9850,14],[3536,9946],9947,9752,0,0,0,0,0,0,[10133,9559],[3597,9748],[3536,9749,14],3533,[3535,9655],9844,[9845,14],0,0,0,0,0,[9754,14],9755,[10042,9560],[3536,10138],[3597,10232],[3535,10233],3535,3535,3533,[3599,9366],[3597,9559,9369],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,[11094,10753],[11094,10754],[11094,10755],[11094,10756],11094,11094,11094,11094,11094,11094,11094,10833,[10834,10649],10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10904,11094,11094,11094,11094,11094,10897,10898,10899,11094,10965,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3522,5188],5189,5190,[3969,5191],3905,[3456,9595],[3393,9596],[9979,9497],[403,9980],[403,9785],403,403,403,403,403,403,403,403,403,403,[403,4996],[403,4997],[403,4998],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[3908,9589],[3969,9590],[3521,5188],5189,5190,[3394,5191],3393,3457,3522,3458,[3969,5380],[3458,5381],[3907,5382],[3969,5383],3907,3905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3913,9809,9812],3914,3914,3913,3913,[3914,9814,9811],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,10004,10005,9905,9906,9907,9908,9909,9910,10002,10003,10006,[3914,10007],[3978,9812],3914,[3978,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9944,9945,9944,9945,9851,3536,3534,3536,3536,[3597,10036],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3535,3597,3534,3533,3599,9940,9941,9942,9943,9944,9945,9851,3534,3599,3534,[3534,9658,14],[3535,9659],9656,0,0,0,9847,10036,10037,[3599,9652],[3536,9653,14],3535,3533,3536,3536,[3533,9658,14],[3535,9659],10042,10043,9848,0,0,0,0,0,0,9655,[3534,9652],[3599,9653,14],3533,[3533,9751],9940,9941,[9845,14],0,0,0,0,[9658,14],9659,[3599,10138,9656],3597,3597,3533,3533,3536,[3535,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11093,11094,[11094,10817],10818,10819,[11094,10820],11094,11031,11094,11094,11094,11094,11094,10897,[10898,10713],[10898,10714],[10898,10715],[10898,10716],[10898,10717],[10898,10718],[10898,10719],[10898,10720],[10898,10721],[10898,10722],[10898,10723],10899,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10263,10962,10962,10962,10962,10962,10962,10962,10962,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3521,5284],[3457,5285],[3521,5286],[3392,5287],3905,[3457,9691],[3522,9692],[403,10075,9593],403,403,403,403,403,403,403,403,403,403,403,403,[403,9303,5092],5093,5094,[403,9306,5095],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,[3393,9685],[3394,9686],[3971,5284],[3393,5285],[3457,5286],[3392,5287],3908,3522,3969,3521,[3457,5476],[3969,5477],[3458,5478],[3456,5479],3971,3907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,9905],[3978,9906],[3978,9907],[3978,9908],[3913,9909],[3913,9910],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[4097,10098],[4097,10099],[4097,10100],[4097,10101],10001,10002,10003,10004,10005,10006,[3914,10098],[3914,10099],[3914,10102],3977,3977,3977,[3913,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10040,10041,10040,10041,9947,3534,3535,3533,3533,3535,9940,9941,9942,9943,9944,9945,[9845,14],0,0,0,0,0,[9754,14],9755,3533,3533,3597,3536,3597,[3536,10036],10037,10038,10039,10040,10041,9947,3536,3597,3536,[3534,9754,14],[3536,9755],9656,0,0,0,0,0,[10133,9559],[3599,9748],[3536,9749,14],3597,3535,3536,3533,[3533,9754,14],[3599,9755],[10138,9560],0,0,0,0,0,0,0,0,9751,[3533,9748],[3597,9749,14],3597,[3534,9847],[3536,10036],10037,9652,[9653,14],0,0,0,[9754,14],9755,[3535,9656],3535,3533,3533,3534,[3599,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,10881],10882,10883,[11094,10884],11094,11094,11094,11094,11032,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,10644,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,10708,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3458,5380],[3520,5381],[3521,5382],[3969,5383],3522,3907,[3394,9499,4996],[403,9403,4997],[403,4998],403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3394,9399,5188],5189,5190,[3908,9402,5191],[403,9403],[403,9303],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3520,9399],[3905,9400],[3522,9401,4996],[3905,9402,4997],[403,9403,4998],[403,9303],[403,9306],[403,9398],[3521,9494],3907,[3393,5380],[3969,5381],[3394,5382],[3969,5383],3458,3394,3394,3457,3394,3522,3908,3907,3520,3522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9908,9909,9815,[10001,9524],10002,10003,10004,10005,[10006,9523],9808,9906,9907,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[4097,3785,10102],[4097,10194],[4096,10195],[4097,10196],[4097,10197],[4097,3974,10097],[3914,10098],[3978,10099],[3978,10100],[3978,10101],[3913,10102],[3913,10194],[3914,10195],3913,3913,3978,3913,[3978,9715],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,10042,[3597,10136],[3536,10137],[3534,10136],[3534,10137],[3535,10043],3536,3599,3533,3597,3536,[3599,10036],10037,10038,10039,10040,10041,9941,9942,9943,[9845,14],0,0,0,[9562,14],[3533,9466],3597,3599,3599,3533,3535,[3534,10133],[3597,10134],[3597,10135],[3533,10136],[3533,10137],[3535,10043],3597,3533,3599,[3534,9850,14],[3599,9851],9656,0,0,0,0,0,9655,[3534,9652],[3534,9653,14],3533,3536,3534,3535,[3534,9850,14],[3536,9851],9656,0,0,0,0,0,0,0,0,9461,[3535,9557,14],3536,3534,3597,3534,[3597,10133],9748,[9749,14],0,0,0,[9850,14],9851,[3599,9656],3597,3534,3597,[3599,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11031,11094,11094,[11094,10945],10946,10947,[11094,10948],11094,11094,11094,11094,11094,11094,11094,10961,10962,10264,10898,10898,10898,10898,10898,10898,10263,10962,10962,10963,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,10774,11094,11094,11094,11094,10897,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11028,11094,11156,11094,11094,11094,11094,10964,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11094,0,0,0,0,11094,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10901,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[3458,5476],[3458,5477],[3392,5478],[3520,5479],3907,3969,[3456,5092],5093,5094,[403,9303,5095],[403,9304],[403,9305],[403,9306],403,403,403,403,403,[403,9493],[3905,9494],[3969,5284],[3393,5285],[3905,5286],[3521,5287],[3458,9499],[3458,9399],[3521,9402],[403,9403],403,[403,4996],[403,4997],[403,4998],403,403,403,403,403,403,403,[403,9303],[403,9304],[403,9305],[403,9306],403,403,403,403,403,403,403,403,403,403,403,403,[403,9303],[403,9305],[403,9306],[403,9493],[3521,9494],3392,3521,[3394,5092],5093,5094,[3457,9399,5095],[3520,9402],[3394,9494],3971,3520,[3522,5476],[3456,5477],[3969,5478],[3521,5479],3457,3458,3458,3522,3521,3392,3456,3905,3522,3905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10004,10005,10004,10005,9911,[3977,10097,9716],[3914,10098],[3977,10099],[3977,10100],[3977,10101],[3913,10102,9715],9904,10002,10003,10004,10005,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3977,10102,9620],3975,[4097,3719],[4097,3720],[4097,3721],[4097,3722],3976,[3913,10194],[3913,10195],[3977,10196],[3978,10197],3913,3978,3977,3913,3913,3977,3977,[3978,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3599,10138],[3599,10232],[3536,10233],[3533,10232],[3597,10233],3534,3535,3597,3534,3535,3597,3534,[3535,10133],[3533,10134],[3597,10135],[3535,10136],[3597,10137],10037,10038,10039,9941,[9845,14],0,0,0,[9562,14],[3536,9563],[3597,9366],[3533,9369],3597,3536,3599,[3533,10230],[3534,10231],[3534,10232],[3599,10233],3599,3534,3534,[3534,9850,14],[3599,9946],9947,9752,0,0,0,0,0,9655,[3535,9748],[3536,9749,14],3536,3535,3599,[3597,9850,14],[3599,9946],9947,9752,0,0,0,0,0,9366,9369,9556,[3536,9557,14],3599,3534,3599,3533,3533,3534,9652,[9653,14],0,0,[9850,14],9946,9947,[3536,9752],3536,3535,3534,[3535,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10903,[10834,11009],[10834,11010],[10834,11011],[10834,11012],10835,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3907,3393,3521,3969,3393,3520,[3522,5188],5189,5190,[3394,9399,5191],[3969,9400],[3394,9401],[3392,9402],[403,9403],[403,9303],[403,9304],[403,9306],[403,9398],[3457,9494],3971,[3458,5380],[3394,5381],[3394,5382],[3392,5383],3394,3906,3394,[3969,9499],[403,9403],[403,9303,5092],5093,5094,[403,9306,5095],403,403,403,403,403,[403,9398],[3392,9399],[3458,9400],[3905,9401],[3908,9402],[403,9403],403,403,403,403,403,403,403,403,403,[403,9397],[403,9398],[3908,9399],[3392,9401],[3907,9402],[3905,9494],3521,3971,3394,[3394,5188],5189,5190,[3907,5191],3393,3456,3393,3908,3458,3971,3392,3392,3905,3457,3521,3905,3392,3394,3458,3458,3907,3908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3977,10100],[3978,10101],[3913,10100],[3913,10101],[3978,10007],[3978,9812],[3978,10194],[3913,10195],[3978,10196],[3913,10197],[3914,9811],[3914,10000],[3914,10098],[3977,10099],[3914,10100],[3913,10101],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3977,9620],3977,3913,3977,3977,3977,3977,3913,3978,3914,3914,3914,3913,3914,3978,3914,3913,[3977,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],[3535,9659],3599,3534,3599,3533,3599,3535,3533,3534,3536,3534,3597,3535,3535,[3535,10230],[3534,10231],[3536,10232],[3534,10233],[3535,10133],[3536,10134],[3534,10135],10037,9941,[9845,14],0,0,0,[9562,14],9462,9465,[3534,9563],3599,3534,3597,3535,3536,3534,3534,3599,[3534,9850,14],[3536,9946],10042,10043,9848,0,0,0,0,0,9751,[3597,9652],[3536,9653,14],3599,3534,[3599,9658,14],[3536,9659],10042,10043,9848,0,0,0,0,9556,[3536,9462],[3533,9465],[3536,9557,14],3597,3535,3534,3597,[3534,9366],[3599,9369],[3535,9556],[9557,14],0,0,[9658,14],9659,10042,[3536,10043],[3599,9848],3534,3599,3533,[3533,9655],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,10961,10962,10264,10898,10898,10263,10962,10963,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10899,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11031,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,3908,3456,3392,3908,3905,[3969,5284],[3458,5285],[3458,5286],[3521,5287],3905,3521,3456,[3906,9499],[3522,9399],[3908,9400],[3521,9402],[3521,9494],3908,3520,[3457,5476],[3457,5477],[3905,5478],[3969,5479],3969,3971,3907,3908,[3456,9499],[3458,9399,5188],5189,5190,[3521,9402,5191],[403,9403],[403,9303],[403,9304],[403,9306],[403,9398],[3905,9494],3394,3520,3520,3969,[3907,9499],[403,9403],403,403,403,[403,9303],[403,9304,4996],[403,9304,4997],[403,9305,4998],[403,9306],[403,9493],[3520,9494],3907,3521,3393,3908,3520,3971,3908,[3971,5284],[3908,5285],[3458,5286],[3521,5287],3393,3457,3457,3521,3521,3969,3969,3520,3457,3457,[3520,4996],[3457,4997],[3521,4998],3907,3457,3905,3907,3520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3914,10102],[3977,10196],[3978,10197],[3978,10196],[3913,10197],3914,[3978,128],3914,3977,3913,3977,[3913,128],3977,3978,3977,[3913,10196],[3913,10197],[3978,10097],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3977,9620],3913,3978,3913,3977,3913,3913,3978,3914,3914,3977,3913,3977,3913,3914,3914,[3978,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,9905,8945,8946,8947,9909,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3535,3597,3599,3597,3536,3597,3534,3597,3599,3536,3536,3599,3534,3533,3599,3533,3597,3535,[3534,10230],[3536,10231],[3533,10133],10037,9652,[9653,14],0,0,0,0,[9658,14],9659,3535,3597,3536,3533,3599,3534,3599,[3536,9850,14],[3597,9946],10042,10138,0,0,0,0,0,0,0,9556,[3533,9557,14],3533,3599,3599,[3536,9754,14],[3536,9755],[10138,9560],0,0,0,0,0,9559,[3535,9652],[3599,9653,14],3597,3535,3533,3599,3536,[3535,9461],9462,9465,[9557,14],0,0,0,[9754,14],9755,[3597,10138,9560],3597,3536,3599,3597,3599,[3534,9751],9940,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10899,0,10900,11094,11094,11094,11094,11094,10966,11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10327,10834,10834,10834,10834,10834,10834,10834,10834,10834,10328,10898,10898,10898,10327,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10835,11094,10900,11094,11094,11094,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3522,3394,3392,3392,3392,3906,[3456,5380],[3908,5381],[3905,5382],[3393,5383],3521,3522,3906,3521,3906,3907,3908,3906,3393,3394,3520,3522,3522,3907,3969,3521,3905,3394,3458,[3971,5284],[3392,5285],[3392,5286],[3906,5287],[3457,9499],[3521,9399],[3907,9400],[3392,9402],[3521,9494],3521,3908,3393,3969,3520,[3520,9595],[3521,9596],[403,9497,9303],[403,9306],[403,9398],[3392,9399],[3392,9400,5092],5093,5094,[3905,9402,5095],[3905,9494],3393,3458,3520,3905,3393,3520,3521,3392,[3458,5380],[3521,5381],[3908,5382],[3969,5383],3458,3908,3393,3393,3394,3520,3905,3458,3392,3521,[3521,5092],5093,5094,[3969,5095],3393,3394,3394,3521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3977,10102],3978,3913,3913,3978,3914,3914,3977,3913,3978,3914,3978,3977,3913,3913,3914,3913,3977,3977,[3913,10097],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9910,9911,[3977,9716],3978,3977,3914,3913,3914,3914,3914,3977,3913,3914,3914,3914,3914,3914,3978,[3914,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3913,10098],[3914,10099],10001,9041,9042,9043,10005,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],8945,8946,8947,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3533,3597,3534,3536,3597,3536,3536,3534,3534,[3535,9366],[3536,9369],3536,3536,3535,3536,3535,3599,3536,3533,3597,3533,[3535,10133],9748,[9749,14],0,0,0,0,[9754,14],9755,3599,3536,3597,3536,3599,3597,[3534,9658,14],[3536,9659],[10042,9560],10138,0,0,0,0,0,0,0,9556,[3597,9557,14],3536,3533,3597,3533,[3599,9754,14],[3533,9755],9656,0,0,0,0,0,9655,[3597,9748],[3534,9749,14],3597,3535,3534,3536,[3599,9556],[9557,14],0,0,0,0,0,0,[9850,14],9851,[3536,9656],3533,3597,3597,3597,3534,[3536,9847],[3599,10036],[10037,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10899,10966,11094,11094,10645,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,10903,0,0,10835,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10964,11094,11094,11094,11032,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,3969,3905,3908,3458,3392,[3521,5476],[3457,5477],[3394,5478],[3969,5479],3906,3906,[3393,4996],[3522,4997],[3458,4998],3457,3969,3457,3521,3520,3394,3393,3394,3392,3521,3457,3457,3457,3393,[3908,5380],[3907,5381],[3969,5382],[3458,5383],3971,3520,3393,3905,3969,3394,3520,3969,3392,3392,3520,[3392,9499],[3522,9399],[3457,9402],[3969,9494],3969,[3971,5188],5189,5190,[3521,5191],3971,3521,3521,3520,[3969,4996],[3521,4997],[3393,4998],3908,3458,[3908,5476],[3971,5477],[3457,5478],[3969,5479],3458,3457,3908,3458,3971,3393,3394,3394,3520,3971,[3522,5188],5189,5190,[3905,5191],3521,3456,3456,3971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3978,10102,9620],3977,3913,3977,3977,3914,3978,3913,3913,3977,3978,3977,3977,3914,3914,3914,3914,3913,3914,3913,3914,[3977,10097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,10006,[3977,10007],[3977,9812],3913,3977,3978,3914,3977,3914,3914,3978,3913,3978,3977,3978,3914,3913,3977,[3913,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3977,10102],[3978,10194],[3913,10195],[3913,10097],[3978,9137],[3914,9138],[3913,9139],[3913,10101],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9041,9042,9043,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3533,3535,3534,3533,3536,3599,[3597,9366],[3534,9369],[3599,9461],9462,9465,[3599,9466],3535,3599,[3599,9366],[3536,9367],[3535,9368],[3536,9369],3536,3533,3599,3597,9844,[9845,14],0,0,0,0,[9850,14],9851,3597,3535,3597,3534,3597,3536,[3597,9754,14],[3535,9755],[10138,9656],0,0,0,0,0,0,0,9559,[3534,9652],[3597,9653,14],3534,3533,3599,3535,[3597,9658,14],[3534,9659],9656,0,0,0,0,0,9751,[3536,9652],[3533,9653,14],3534,3536,3535,[3534,9559],9652,[9653,14],0,0,0,0,0,[9850,14],9946,9947,[3534,9752],3536,3533,3534,3534,3535,3534,3533,[3597,10133,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,10902,11094,10897,10898,10898,10898,10898,10327,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10328,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10263,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10264,10898,10898,10899,11094,11094,11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11032,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3521,[3905,4996],[3522,4997],[3522,4998],3392,3520,3458,3522,3908,3520,3392,3906,[3907,5092],5093,5094,[3522,5095],3458,3906,3520,3908,3969,3392,3971,3521,[3392,4996],[3394,4997],[3457,4998],3905,3522,[3969,5476],[3907,5477],[3521,5478],[3906,5479],3971,3908,3457,3908,3907,3392,[3908,4996],[3458,4997],[3393,4998],3457,3394,3522,3520,3908,3971,3908,[3456,5284],[3457,5285],[3521,5286],[3520,5287],3907,3458,3392,3520,[3969,5092],5093,5094,[3971,5095],3458,3971,3908,3457,3394,3393,3907,3457,3521,3907,3394,3457,3969,3969,3457,[3457,5284],[3907,5285],[3394,5286],[3394,5287],3394,3520,3394,3906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3913,9620],3977,3913,3978,3977,3978,3914,3914,3913,3978,3913,3977,3977,3978,3913,3977,3978,3913,3977,3913,3978,[3913,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3978,10098],[3978,10099],[3913,10102],3913,3978,3978,3914,3978,3913,3911,[4097,4039],[4097,4040],3912,3978,3913,3914,3913,3978,3913,[3978,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3977,10102,9620],3914,3913,3913,3914,[3914,9233],[3913,9234],[3914,9235],[3914,10197],[3978,10097],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,9905,9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[2371,9137],[2435,9138],[2371,3242,9139],[10001,9523],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3533,9466],3533,3597,3597,3535,[3533,9461],9462,9465,[9557,14],0,0,[9562,14],[3534,9563],[3599,9461],9462,9463,9464,9465,[3534,9466],3534,3534,3535,9940,9941,9942,9943,9944,9945,9946,9947,3599,3533,3597,3536,3536,3535,[3599,9754,14],[3534,9755],9752,0,0,0,0,0,0,0,9655,[3536,9652],[3599,9653,14],3535,3597,3534,3597,[3599,9754,14],[3533,9755],9752,0,0,0,0,0,9556,[3533,9557,14],3597,3535,3536,3535,[3533,9655],9748,[9749,14],0,0,0,0,[9754,14],9755,[10042,9560],[3534,10043],[3535,9848],3599,3534,3536,3533,3534,3597,3535,[3599,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11031,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10327,10834,10834,10834,10834,10328,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,[3521,5092],5093,5094,[3458,5095],3392,3969,3969,3457,3458,3522,3969,[3908,5188],5189,5190,[3905,5191],3393,3908,3457,3520,3521,3521,3908,3458,[3907,5092],5093,5094,[3908,5095],3905,3522,3907,3394,3457,3521,3907,3907,3521,3521,3908,[3520,5092],5093,5094,[3908,5095],3521,3905,3394,3394,3907,3393,[3907,5380],[3456,5381],[3908,5382],[3969,5383],3969,3971,3520,3458,[3522,5188],5189,5190,[3907,5191],3969,3392,3457,3905,3394,3905,3456,3458,3394,3392,3394,3457,3522,3520,3457,[3522,5380],[3393,5381],[3971,5382],[3521,5383],3457,3969,3393,3392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,9620],3977,3977,3914,3978,3913,3914,3978,3913,3977,3977,3914,3913,3978,3914,3913,3978,3978,3978,3913,3977,[3978,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3977,10102],[3913,10194],[3978,10195],3978,3913,3914,3913,3913,3914,3911,[4097,3849],4097,4097,[4097,3974],3978,3978,3977,3913,3913,[3978,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3914,9716],3977,3913,3913,3978,3977,3913,3914,3978,3978,[3978,10097],10001,9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],8945,8946,9909,[9809,14],0,0,0,0,0,0,0,0,0,[9718,14],9719,[10006,9524],[3913,10098],[3977,10099],10001,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[2435,10102,9620],[1922,9233],[2434,3052,9234],[3244,9235],[3243,10097,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3534,9563],[3536,9366],[3534,9369],[3535,9556],[9557,14],0,0,0,0,0,0,[9562,14],[9557,14],0,0,0,[9658,14],9659,3599,3599,3533,[3599,10036],10037,10038,10039,10040,10041,10042,[3534,10043],3599,3534,3533,3535,3534,3597,3535,[3536,9562,14],9466,0,0,0,0,0,0,0,9751,[3534,9748],[3535,9749,14],3597,3597,3533,3533,3533,[3597,9562,14],9563,9366,9367,9368,9369,9556,[3533,9557,14],3536,3536,3599,3599,3597,[3533,9655],9844,[9845,14],0,0,0,0,[9850,14],9851,[3534,10138,9656],3536,3597,3534,3536,3599,3597,3534,3535,[3599,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10962,10962,10962,10962,10962,10962,10962,10962,10264,10898,10898,10263,10962,10962,10962,10962,10962,10962,10968,11029,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11032,11094,11094,11094,10644,11094,11094,11094,11094,11094,11094,11094,11093,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11031,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10900,11094,11094,11094,11030,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3521,[3520,5188],5189,5190,[3969,5191],3520,3394,3905,3522,3394,3907,3907,[3907,5284],[3392,5285],[3522,5286],[3458,5287],3522,3394,3906,3393,3906,3905,3969,3521,[3393,5188],5189,5190,[3969,5191],3969,3457,3393,3457,3458,3458,3906,3971,3522,3458,3907,[3521,5188],5189,5190,[3458,5191],3969,3907,3971,3521,3971,3969,[3456,5476],[3520,5477],[3520,5478],[3457,5479],3457,3522,3393,3392,[3521,5284],[3392,5285],[3522,5286],[3520,5287],3457,3906,3520,3971,3905,3907,3458,3393,3456,3392,3458,3394,3971,3458,3392,[3906,5476],[3521,5477],[3971,5478],[3520,5479],3457,3521,3908,3520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,9620],3977,3913,3914,3914,3913,3978,3978,3913,3978,3913,3977,3978,3978,3978,3978,3978,3977,3978,3978,3977,[3914,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,10102,9620],3914,3977,3913,3913,3978,3913,3914,3914,3911,[4097,3849],4097,4096,[4097,3718],3976,3978,3977,3977,3913,3914,[3914,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3913,9527],3978,3914,3978,3978,3977,3978,3914,3978,3913,3913,[3977,10097,9523],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9041,9042,9043,9905,9906,9907,9908,9909,[9809,14],0,0,0,0,[9814,14],[3914,9815],[3914,10102,9620],[3914,10194],[3978,10195],[3977,10097],[3914,10098],[3977,10099],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[2435,3051,9620],[2370,2987],3182,3244,[3246,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3533,3597,3533,3535,[3599,10133],[3535,10134],[3599,10135],[3536,10136],[3533,10137],[3599,10138],3535,3533,3533,3534,3535,3599,3535,3535,3535,[3599,9562,14],9563,0,0,0,0,0,0,9461,[3597,9557,14],3534,3599,3536,3597,3536,3536,3533,[3536,9562,14],[3599,9462],[3534,9463],[3599,9464],[3597,9465],[3536,9557,14],3599,3597,3533,3535,3597,3533,[3534,9751],9940,9941,9942,9943,9944,9945,9946,9947,[3535,9752],3535,3534,3533,3597,3536,3535,3535,[3599,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3521,[3521,5284],[3458,5285],[3908,5286],[3905,5287],3394,3906,3905,3392,3458,3458,3521,[3520,5380],[3908,5381],[3394,5382],[3520,5383],3908,3457,3908,3456,3520,3457,3971,3456,[3905,5284],[3906,5285],[3971,5286],[3520,5287],3393,3520,3457,3457,3905,3394,3394,3520,3392,3458,3394,[3521,5284],[3908,5285],[3971,5286],[3520,5287],3908,3392,3907,3969,3457,3521,3907,3969,3522,3971,3393,3969,3394,3521,[3457,5380],[3392,5381],[3456,5382],[3393,5383],3394,3522,3458,3520,3521,3905,3520,3905,3521,3969,3394,3522,3908,3522,3394,3394,3906,3457,3521,3905,3393,3456,3908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9620],3913,3913,3978,3978,3978,3913,3978,3914,3914,3913,3914,3914,3914,3977,3978,3978,3914,3977,3977,3978,[3913,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3914,9620],3978,3914,3914,3914,3914,3913,3977,3977,3975,[4097,3719],[4097,3723],4097,[4097,3974],3978,3914,3978,3914,3913,3914,[3977,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,9524,9330],[3977,9333],3913,3914,3914,3913,3913,3914,3977,3978,[3977,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3914,9137],[3978,9138],[3978,9139],10001,10002,10003,10004,10005,9905,9906,9907,9908,9909,9910,9911,[3977,9716],3978,3977,3914,[3977,10194],[3978,10195],[3977,10097],10001,9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[2371,3118,9620],[1986,3116],3180,3243,[3243,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9942,9943,[9845,14],0,0,0,0,[9850,14],9942,9943,[9845,14],0,0,0,[9658,14],9659,3536,3536,3534,3536,3599,[3534,10230],[3536,10231],[3535,10232],[3534,10233],3533,3535,3597,3534,3535,3535,3535,3599,3534,3536,[3533,9850,14],[3533,9851],9560,0,0,0,0,9556,[3597,9557,14],3599,3536,3599,3536,3599,3535,3533,3534,3536,3599,3536,3599,3535,3599,3533,3534,3534,3597,3535,3534,[3536,9847],[3535,10036],10037,10038,10039,10040,10041,10042,[3599,10043],[3597,9848],3535,3599,3534,3597,3599,3599,3533,[3599,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10774,11094,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,10708,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,10777],[11094,10778],[11094,10779],[11094,10780],[11094,10781],[11094,10782],[11094,10783],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3969,[3456,5380],[3393,5381],[3907,5382],[3521,5383],3394,3907,3969,3394,3906,3908,3907,[3905,5476],[3456,5477],[3969,5478],[3521,5479],3458,3392,3456,3908,3969,3969,3907,3457,[3969,5380],[3392,5381],[3393,5382],[3905,5383],3458,3905,3458,3394,3520,3908,3456,3908,3394,3905,3392,[3393,5380],[3457,5381],[3969,5382],[3458,5383],3394,3458,3907,3522,3458,3394,3969,3456,3969,3969,3908,3905,3392,3907,[3907,5476],[3520,5477],[3458,5478],[3969,5479],3522,3394,3971,3522,3520,3908,3392,3521,3971,3905,3907,3393,3521,3458,3393,3905,3971,3392,3392,3393,3907,3907,3457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,9620],3977,3978,3914,3913,3913,3914,3914,3914,3978,3978,3914,3914,3978,3914,3977,3914,3977,3977,3914,3914,[3913,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3978,9620],3913,3914,3913,3914,3978,3977,3913,3913,3978,3977,[4097,3787],4097,[4097,3782],3913,3914,3977,3914,3913,3913,[3978,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3978,9430],3978,3977,3914,3977,3977,3913,3977,[3977,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3978,10102,9620],[3978,9233],[3913,9234],[3914,9235],[3914,10097],[3913,10098],[3977,10099],[3977,10100],[3978,10101],10001,10002,10003,10004,10005,10006,[3978,10007],[3913,9812],3978,3978,3914,3977,3913,3913,[3978,10097],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[2371,9620],2435,[2435,3242],3181,[3243,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10038,10039,9941,9942,9943,9944,9945,9946,10038,10039,9941,[9845,14],0,0,0,[9562,14],[3534,9466],3599,3533,3597,3533,3533,3534,3535,3533,3597,3536,3535,3533,3535,3533,3535,3536,3533,[3599,9658,14],[3599,9659],9947,9752,0,0,0,9559,[3597,9652],[3535,9653,14],3535,3535,3599,3597,3534,[3597,9366],[3597,9367],[3533,9368],[3536,9369],3597,3599,3597,3597,3535,3535,3534,3536,[3533,9366],[3536,9369],3533,3599,3535,[3535,10133],[3599,10134],[3533,10135],[3536,10136],[3535,10137],[3536,10138],3536,3534,3536,3599,3533,3597,3599,3535,3599,[3597,9655],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,[11094,11545],[11094,11546],[11094,11547],[11094,11548],[11094,11549],[11094,11550],[11094,11551],[11094,11552],[11094,11553],[11094,11554],[11094,11555],[11032,11556],[11094,11557],[11094,11558],10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,10897,10898,10899,11094,11094,11094,11094,11094,10966,11094,11094,11094,11094,10837,11094,11094,11094,11094,11094,11094,11094,11095,[11094,10841],10842,10843,10844,10845,10846,[11094,10847],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3522,[3521,5476],[3907,5477],[3458,5478],[3969,5479],3392,3521,3456,3394,3906,3456,3457,3392,3969,3522,3521,3520,3522,3520,3906,3392,3971,3905,3971,[3522,5476],[3457,5477],[3520,5478],[3520,5479],3907,3521,3906,3393,3905,3458,3971,3392,3458,3907,3521,[3908,5476],[3908,5477],[3969,5478],[3969,5479],3458,3394,3907,3392,3394,3458,3394,3520,3971,3971,3905,3521,3394,3457,3522,3905,3522,3908,3969,3907,3905,3971,3520,3392,3393,3521,3394,3907,3522,3393,3907,3906,3457,3908,3522,3906,3906,3457,3458,3906,3458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9620],3977,3914,3977,3914,3914,3913,3914,3913,3914,3913,3977,3977,3914,3978,3914,3978,3977,3914,3914,3978,[3978,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3978,9620],3978,3913,3978,3978,[3914,9522],3977,3977,3914,3977,3977,[4097,3915],4097,[4097,3846],3914,3977,3914,3978,3977,3977,[3913,9811],[3978,10000],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3913,9527],3978,3913,3914,3978,3913,3914,[3913,9811],[3978,10000],10001,9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3914,9620],3913,3977,3977,3978,[3914,10194],[3914,10195],[3978,10196],[3978,10197],[3977,10097],[3978,10098],[3914,10099],[3913,10100],[3914,10101],[3978,10102],3978,3977,3913,3914,3913,3977,3914,3914,[3978,8951],8952,[74,8953],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[1987,3054,9620],2371,[2435,3306],[2371,3307],[1987,3308,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[10042,9560],[2798,10134],[2862,10135],10037,10038,10039,10040,10041,10042,[2863,10134],[2927,10135],10037,9941,[9845,14],0,0,0,[9562,14],[3534,9563],[3533,9366],[3533,9369],3533,3535,3536,3599,3536,3533,3597,[3599,9366],[3536,9369],3597,3597,3597,3535,3534,[3535,9754,14],[3535,9755],[10043,9560],9848,0,0,0,9655,[3536,9748],[3533,9749,14],3599,3535,3599,3599,[3534,9556],9462,9463,9464,9465,[3534,9466],3597,3534,3533,3536,3597,3534,[3534,9556],9462,9465,[3536,9466],3534,3534,3597,[3533,10230],[3534,10231],[3599,10232],[3536,10233],3597,3599,3534,[3597,9366],[3597,9369],3597,3536,3535,3536,3536,[3534,9751],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,[11094,11622],10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,10905],10906,10907,10908,10909,10910,[11094,10911],11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10837,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3913,9620],3914,3914,3977,3977,3913,3913,3978,3978,3913,3914,3978,3913,3977,3914,3977,3914,3978,3977,3914,3914,[3914,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3913,9620],3977,3977,3978,[3914,9523],[3977,9618],3914,3978,3977,3914,3911,[4097,3849],4097,[4097,3910],3913,3914,3978,[3913,9525],3977,3977,3977,3913,[3977,10097],10001,9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3913,9524],3914,3913,3977,3977,3913,3913,3978,[3978,10097],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3978,9620],3977,3914,3913,3978,3914,3977,3913,3977,3913,[3914,10194],[3913,10195],[3977,10196],[3914,10197],3977,3914,3914,3977,3913,3978,3913,3977,3913,[3978,9047],9048,[74,9049],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[2370,3055,9620],2370,2434,2114,[2370,9715],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[2863,10138,9656],[2863,10230],[2863,10231],[2862,10133],[3986,10134],[3923,10135],[2862,10136],[2798,10137],[2927,10138],[2798,10230],[2927,10231],[2926,3796,10133],10037,9652,[9653,14],0,0,0,[9562,14],9462,9465,[3599,9466],3599,3599,3536,3536,3536,[3599,9461],9462,9465,[3534,9466],3597,3599,3599,3599,[3599,9754,14],[3599,9755],9656,0,0,0,0,9655,[3536,9652],[3597,9653,14],3597,3535,3534,3535,9652,[9653,14],0,0,[9658,14],9659,3536,3533,3535,3597,3597,[3534,9559],9652,[9653,14],0,[9562,14],[3535,9563],3599,3597,3597,3535,3599,3599,3597,3599,[3534,9461],9462,9465,[3534,9563],3597,3536,3534,3599,[3599,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,[11094,11686],10897,10898,10898,10899,11094,11094,11094,11094,10838,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,10969],10970,10971,10972,10973,10974,[11094,10975],11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11093,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,9620],3914,3978,3978,3977,3913,3977,3913,3978,3914,3913,3914,3978,3978,3978,3913,3914,3913,3914,3913,3977,[3978,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9908,9909,9910,9911,[3977,9716],3978,3977,3977,[3914,9619],[3913,9808],[3977,9809],3978,3913,3914,[4097,3979],4097,4192,[4097,3974],3913,3914,3978,[3914,9621],[3914,9524],3978,3913,3913,3913,[3978,10097,9523],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3914,9620],3913,3914,3913,3913,3978,3914,3977,[3978,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[3978,9716],3913,3978,3978,3978,3977,[3914,9330],[3913,9333],3978,3914,3914,3913,3977,3914,3978,3914,[3913,9330],[3978,9333],3913,3913,3977,3978,3978,[3977,9143],[74,9144],[74,9145],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[9911,9524],[2370,3183,9716],[1922,3051],[2371,2988],[1922,2990],[1987,3053,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[2798,9656],2798,2798,2863,[2862,3858,10230],[3923,10231],[2926,3797,10232],[2863,10233],[2862,3796],[2927,3732],[2862,3734],[2863,3862],[2862,10133,9559],9748,[9749,14],0,0,0,0,0,[9658,14],9659,[3535,9560],3534,3534,3599,[3535,9556],[9557,14],0,0,[9562,14],[3536,9563],3597,3535,3534,[3534,9754,14],[3533,9755],9752,0,0,0,0,9751,[3535,9748],[3535,9749,14],3599,3534,3533,3533,9748,[9749,14],0,0,[9754,14],9755,3534,3534,3536,3597,3597,[3597,9655],9652,[9653,14],0,[9658,14],9659,3536,3597,3533,3597,3533,3599,3533,3533,9652,[9653,14],0,9659,[3533,9560],3536,3536,[3536,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,[11094,11750],10897,10898,10898,10327,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10328,10898,10327,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10834,10904,11094,11094,11094,11094,11094,11094,10644,[11094,11033],11034,11035,11036,11037,11038,[11094,11039],11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11028,11094,11094,11094,11095,11094,11094,11094,0,0,0,0,0,0,0,0,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10837,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,9620],3914,3913,3977,3978,3914,3977,3977,3977,3913,3978,3914,3977,3914,3914,3978,3914,3977,3977,3914,3977,[3978,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10004,10005,10006,[3914,10007],[3977,9812],3914,3913,3977,[4097,3787,9715],9904,[3977,9905],[3977,9809],3914,3978,3975,[4097,3719],[4097,3722],3976,3977,3914,[3977,9814],[3977,9815],[3978,9620],3913,3978,3978,3978,[3913,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9815,[3978,9620],3978,3977,3977,3914,3914,3977,[3977,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3978,10007],[3913,9812],3913,3978,3914,3913,[3913,9425],9426,9429,[3913,9430],3914,3978,3914,3913,3977,3978,[3914,9425],9426,9429,[3914,9430],[3977,9330],[3977,9331],[3913,9332],[3913,9333],[3978,9425],[74,9521,14],74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[1987,3310,10007,9620],[2371,3311,9812],[2434,3306],3179,[3181,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[2927,9656],2798,2927,2863,[2927,3922],3987,3925,[2798,3731],3989,3923,[2798,3991],2927,[2926,9655],9652,[9653,14],0,0,0,0,0,[9754,14],9755,[3535,9656],3533,3534,[3536,9559],9652,[9653,14],0,0,[9658,14],9659,3536,3536,3534,3535,[3533,9562,14],9563,9366,9367,9368,9369,9461,[3599,9557,14],3534,3534,3599,3534,3533,9844,[9845,14],0,0,[9850,14],9851,3535,3534,3597,3533,3535,[3536,9751],9748,[9749,14],0,[9754,14],9755,3534,3599,3534,3533,3597,[3599,9366],[3536,9369],[3536,9461],[9557,14],0,[9658,14],9659,[3535,9656],3534,3534,[3535,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,[11094,11801],11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,[11094,11814],10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,[10898,12423],[10898,12424],[10898,12425],[10898,12426],[10898,12427],[10898,12428],[10898,12429],10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,[11094,11097],11098,11099,11100,11101,11102,[11094,11103],11094,11094,11094,10773,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3978,9716],3977,3977,3913,3978,3914,3913,3978,3977,3977,3914,3978,3978,3914,3977,3978,3977,3913,3977,3978,3978,[3913,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3913,10100],[3977,10101],[3913,10102],3978,3978,3977,3913,3977,[4097,3915,9811],[4097,10000],10001,[3977,9616],[3913,9617],3914,3977,3977,3913,3978,3977,[3978,9814],[3914,9910],9911,[3978,9716],3978,3977,3978,3977,[3914,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,9911,[3978,9716],3913,3977,3977,3977,3977,3978,[3978,9715],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,10102,9620],3977,3978,3914,3978,3978,[3977,9520],[9521,14],0,0,[9526,14],[3978,9527],[3913,9330],[3977,9331],[3978,9332],[3977,9333],[3978,9425],[9521,14],0,0,[9526,14],9426,9427,9428,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[2435,9620],2242,2243,[1986,3115],[3246,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[2798,9656],2863,2862,2862,[2798,3986],3924,3987,3539,3923,3923,[2862,4055],2926,[2926,9751],9748,[9749,14],0,0,0,0,0,[9754,14],9755,[3533,9656],3599,3533,[3535,9655],9748,[9749,14],0,0,[9754,14],9755,3597,3597,3534,3536,3535,[3536,9562,14],[3535,9462],[3534,9463],[3534,9464],[3599,9465],[3534,9557,14],3534,3535,3599,3597,3599,3536,9940,9941,9942,9943,9946,9947,3533,3536,3534,3599,3535,[3536,9461],[9557,14],0,0,0,[9562,14],[3536,9466],3597,3597,3597,[3535,9461],9462,9465,[9557,14],0,0,[9754,14],9755,[3536,9656],3597,3535,[3599,9655],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,[11094,11865],11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,[11094,11878],10897,10898,10898,10263,10962,10962,10962,10962,10962,10962,10962,10962,10962,[10962,12487],12488,12489,12490,12491,12492,[10962,12493],10962,10962,10962,10962,10962,10264,10898,10263,10962,10962,10962,10962,10962,10264,10898,10899,11094,11094,11094,11094,11094,11094,11094,[11094,11161],11162,11163,11164,11165,11166,[11094,11167],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10708,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11093,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9430],3914,3978,3977,3913,3978,3914,3913,3913,3913,3978,3978,3977,3914,3914,3914,3978,3914,3977,3977,[3913,9424],[3914,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3530,10071],[3592,10072],[3528,10073],[3528,10074],9974,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,10006,[3977,10102],[3913,10196],[3978,10197],3913,3977,3978,3914,3911,[4097,4042],[4097,3850],4097,[4097,10097,9523],[3978,9712],[3914,9713],3977,3977,3914,3978,3977,[3977,9622],[3978,9623],10006,[3978,10007],[3978,9812],3977,3977,3913,3977,[3913,9715],9904,9905,9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3913,10098],[3913,10099],[3913,10007],[3913,9812],3913,3977,3978,3977,3977,3977,[3978,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,9716],3977,3914,3914,3913,[3913,9523],9616,[9617,14],0,0,0,[9526,14],9426,9427,9428,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[2435,9620],2306,2307,[2370,3051],[3179,9619],9808,[9809,14],0,0,[9814,14],9903,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[2798,9752],2798,2863,2862,[2798,4050],3474,3924,3924,3989,[2927,3862],2863,[2863,9460],[2863,9461],[9557,14],0,0,0,0,0,0,[9850,14],9851,[3534,9656],3534,3597,[3536,9655],9652,[9653,14],0,0,0,[9562,14],[3599,9466],3597,3597,3536,3534,3597,3533,3535,3535,3533,3533,3533,3533,3534,3534,3599,3536,[3535,10036],10037,10038,10039,10042,[3536,10043],3597,3534,3597,3597,[3597,9556],[9557,14],0,0,0,0,0,[9562,14],[3535,9563],[3533,9366],[3597,9461],[9557,14],0,0,0,0,0,[9850,14],9851,[3533,9656],3535,3597,[3599,9751],9940,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10833,[10834,11929],11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,[10835,11942],10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12551],12552,12553,12554,12555,12556,[11094,12557],11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,10645,11094,10897,10898,10899,11094,11094,11096,11094,11094,11094,11094,[11094,11225],[10897,11226],[10898,11227],11228,[10898,11229],[10899,11230],[11094,11231],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],[3913,9330],[3914,9331],[3913,9332],[3978,9333],[3914,9330],[3913,9331],[3978,9332],[3978,9333],[3914,9330],[3913,9331],[3977,9332],[3913,9333],[3977,9330],[3977,9331],[3914,9332],[3913,9333],[3977,9330],[3914,9333],[3913,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3529,10075],[3592,10167],[3268,10168],[3529,10169],[3528,10170],[3593,10070,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,10102,9524],3914,3914,3977,3913,3913,3914,3911,[4097,3849],4097,4096,4097,[4097,9619],[3913,9616],[3977,9617],3977,3914,3977,3913,3913,[3978,9718],[3914,9719],[3913,10102,9524],3978,3977,3913,3914,3977,3914,[3913,9811],[3978,10000],10001,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,10006,[3978,10102],[3914,10194],[3978,10195],3914,3913,3977,3913,3977,[3914,9330],[3913,9333],[3977,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3977,9430],3977,3914,3978,3978,[3913,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[2434,2988,9620],[2370,2989],[2371,2990],3180,[3246,9715],9904,9905,9906,9907,9910,9999,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[2926,9466],2863,2798,2862,2926,[2862,3986],3987,3474,[2927,3991],2927,2926,[2863,9556],[9557,14],0,0,0,0,0,0,[9850,14],9946,9947,[3536,9752],3533,3534,[3535,9655],9748,[9749,14],0,0,0,0,[9562,14],[3599,9563],3534,3599,3597,3535,3599,3536,3536,3534,3533,3535,3535,3533,3599,3533,3536,3597,[3597,10133],[3535,10134],[3534,10135],[3597,10138],3535,3597,3536,3535,[3536,9559],9652,[9653,14],0,0,0,0,0,0,[9562,14],9462,[9557,14],0,0,0,0,0,[9850,14],9946,9947,[3536,9752],3533,3536,[3535,9847],[3599,10036],[10037,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,10897,[10898,11993],11994,11995,[10898,11996],[10898,11997],11998,11999,[10898,12000],[10898,12001],[10898,12002],[10898,12003],12004,12005,[10327,12006],10328,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12615],12616,12617,12618,12619,12620,[11094,12621],11094,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,10897,10898,10327,10834,10834,10834,10834,10834,10834,10834,10834,10328,10898,10898,10898,10899,11094,11094,11094,11094,11094,0,0,0,11094,11094,11094,11094,11094,11094,11094,10773,11094,11094,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10774,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9427,9428,9429,9426,9427,9428,9429,9426,9427,9428,9429,9426,9427,9428,9429,9426,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3268,10075],3268,3594,3530,3593,3268,[3594,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3914,9620],3913,3977,3914,3913,3913,3978,3975,[4097,3785],4097,4097,4097,[4097,9619],[3978,9712],[3913,9713],3977,3978,3978,3914,3913,[3914,9814],[3978,9815],[3977,9620],3914,3978,3914,3978,3913,3914,3978,3978,[3913,10097],[3911,10098],[4097,10099],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,8948],8949,[3913,10102,8950],3913,3913,3913,3977,3977,3977,3978,[3978,9425],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3978,9527],[3977,9330],[3977,9333],[3977,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[9911,9524],[3179,9716],3181,3245,3182,[3244,9811],[3182,10000],10001,10002,10003,10006,[3243,10095],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[2927,9563],[2926,9366],[2862,9369],[2798,3796],3411,3924,[2926,4054],[2863,4055],2863,[2927,9559],9652,[9653,14],0,0,0,0,0,[9658,14],9659,[10042,9560],[3533,10043],[3536,9848],3597,3536,[3599,9655],9652,[9653,14],0,0,0,0,[9658,14],9659,[3536,9560],3533,3535,3533,3599,3599,3535,3599,3599,3534,3536,3534,3599,3535,3535,3535,3533,[3599,10230],[3536,10231],3534,3536,3597,3535,3536,[3597,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[10042,9560],[3534,10043],[3535,9848],3597,3533,3599,3534,[3535,10133,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12679],12680,12681,12682,12683,12684,[11094,12685],10902,11094,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3593,10075],3592,3594,3529,3529,3529,3593,[3530,9592],9781,[9782,14],0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3978,9716],3977,3978,3914,3977,3914,3914,3913,3975,[4097,3719],[4097,3785],4097,[4097,3784,9619],[3978,9808],[3914,9906],[3914,9907],[3977,8945],[3978,8946],[3914,8947],[3914,9909],[3978,9910],9911,[3977,9716],3977,3914,3913,3978,3913,3977,3977,3913,3911,[4097,3849,10194],[4097,10195],[4097,10097],10001,9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9044],9045,[3978,9046],3977,3978,3977,3978,3914,3977,[3914,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3246,10007,9716],[3180,9812],3244,3244,3182,3179,3179,[2371,3117,10097],[2370,10098],[2434,10099],[2370,3050,10102],[3181,10191],[3243,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9465,[3925,9563],3926,[2927,3862],2927,2798,2862,[2863,9655],9748,[9749,14],0,0,0,0,0,[9754,14],9755,[3533,10138,9656],3597,3535,3597,3536,[3599,9655],9748,[9749,14],0,0,0,0,[9754,14],9755,[3534,9656],3599,3597,3597,3599,3534,3533,3533,3599,3533,3535,3536,3597,3599,3535,3597,3533,3536,3597,3599,3599,3533,3536,3535,[3599,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3599,10138,9656],3533,3533,3535,3597,3534,3536,[3599,9655],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11029,11094,11094,11094,11094,11094,11094,[11094,12743],12744,12745,12746,12747,12748,[11094,12749],11094,11094,11094,11094,11094,10897,10898,10899,11030,11094,11094,11094,11094,10961,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10962,10963,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[3593,10075],3593,3530,3529,3268,3530,3530,3594,[3530,9688],9877,9878,[9782,14],0,0,0,0,0,0,[9787,14],9883,9979,[3594,10071],[3593,10072],[3594,10073],[3593,10074],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3978,9430],3913,3977,3914,3977,3978,3913,3913,3914,3978,3975,[4097,3719],[3976,9715],9904,10002,10003,9041,8752,8753,10005,10006,[3977,10007],3978,3978,3978,3913,3977,3977,3977,3977,3913,[4097,3979],4096,4097,4097,[4097,10097,9523],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9140],[74,9141],[3913,9142],3977,3913,3913,3977,3977,3977,[3914,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3180,9527],3179,[1986,3307],[2370,3117],[2370,3306],3182,[2435,3247],2434,[1986,10194],[2051,10195],[2370,3114],3244,[3243,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[2863,3861,9560],2926,2926,2798,2926,[2798,9655],9844,[9845,14],0,0,0,0,0,[9658,14],9659,[3597,9656],3536,3599,3533,3534,[3599,9655],9844,[9845,14],0,0,0,0,[9850,14],9851,[3535,9656],3536,3533,3535,3599,3535,3536,3536,3599,[3599,9366],[3534,9369],3536,3534,3535,3535,3597,3597,3533,3533,3599,3535,[3597,9366],[3535,9369],[3535,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9851,[3533,9656],3533,3597,3533,3533,3533,3533,[3597,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10898,10263,10962,10962,10962,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,12807],12808,12809,12810,12811,12812,[10833,12813],10834,10834,10834,10834,10834,10328,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10772,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10773,11094,0,0,0,0,11094,11094,11094,11094,10772,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,10773,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,10075],3529,3268,3594,3528,3593,3530,3530,3592,[3529,9784],[3593,9973],9974,9589,[9590,14],0,0,0,0,[9691,14],9692,9979,[3268,10075],[3529,10167],[3528,10168],[3594,10169],[3529,10170],[3268,10070],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3913,9527],[3913,9330],[3914,9333],3977,3978,3914,3913,3914,3978,3913,3977,[3977,9811],[3914,10000],[3977,10098],[3977,10099],[3977,9137],[3978,9138],[3978,9139],[3978,10101],[3914,10102],3978,3977,3977,3977,3978,3977,3977,3977,3978,3913,3975,[4097,3723],4097,4097,[4097,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,[74,9526,14],[3913,9430],3913,3914,3977,3914,3978,3978,[3914,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2370,3117,9527],2371,2435,2371,[2435,3050],3246,[2371,2991],2371,2371,[2434,3178],3182,[3180,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[2927,9466],2927,2863,2798,2862,[2926,9751],9940,9941,[9845,14],0,0,0,0,[9754,14],9755,[3533,9752],3599,3536,3536,3536,[3597,9751],9940,9941,9942,9943,9944,9945,9946,9947,[3597,9752],3533,3597,3534,3536,3535,3533,3536,[3536,9461],9462,9465,[3597,9563],[3533,9366],[3534,9367],[3535,9368],[3533,9369],3599,3535,[3533,9366],[3533,9369],[3534,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9942,9943,9946,9947,[3599,9752],3599,3597,3597,3597,3536,3533,[3599,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,10961,10962,10962,10962,10962,10962,10962,10962,10962,10264,10898,10898,10263,10962,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[10902,12871],12872,12873,12874,12875,12876,[10897,12877],10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3594,9403],3592,3594,3592,3593,3592,3529,3530,3530,3268,3269,[3594,10070],9685,[9686,14],0,0,0,0,[9691,14],9692,[3530,10075,9497],3529,3529,3529,3528,3528,3268,[3529,10070],[9974,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],9422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3913,9430],3913,3978,3977,3978,3978,3914,3914,3978,3977,3978,[3978,10195],[3913,9233],[3913,9234],[3914,9235],[3977,10197],3913,3913,3913,3914,3978,3911,[4097,4040],3912,3914,3977,3977,3977,[4097,3979],4097,4097,[4097,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3977,9527],[3978,9330],[3914,9333],3914,3977,3914,[3914,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2434,9527],[2435,9330],[2370,9333],[2370,3114],3181,3243,[2370,3053],[2435,3051],3180,3181,[3181,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[2927,9563],2798,2927,2863,[2862,9847],[2927,10036],[10037,9559],9652,[9653,14],0,0,0,0,[9562,14],[3599,9466],3599,3597,3597,3535,[3535,9847],[3535,10036],10037,10038,10039,10040,10041,10042,[3535,10043],[3536,9848],3599,3597,3599,3534,3599,3534,[3599,9556],[9557,14],0,0,[9562,14],9462,9463,9464,9465,[3597,9466],[3536,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10038,10039,10042,[3535,10043],[3599,9848],3536,3536,3534,3599,3533,3597,[3535,9655],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10966,11094,11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[10903,12935],[10834,12936],[10834,12937],[10834,12938],[10834,12939],[10834,12940],[10328,12941],10898,10263,10962,10962,10962,10962,10962,10963,11094,11094,0,0,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10774,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9403],3529,3268,3529,3594,3529,3529,3594,3529,3530,[3593,9493],[9494,14],0,0,0,0,0,[9787,14],9788,[3594,9593],3592,3594,3592,3594,3268,3528,3528,[3593,10070,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9511,[2831,9417],[2767,9418,4249],[2767,9419],[2832,9420],[2768,9417],[2832,9418],[2830,9419],[2831,9420],9518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3977,9524],3978,3977,3978,3913,3914,3913,3913,3913,3978,3913,3977,3914,3913,3914,3977,3978,3913,3978,3911,[4097,3849],4097,[4097,4038],3912,3977,3977,3914,3975,[4097,3785],4192,[4097,9715],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3978,9527],3978,3914,[3978,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3243,9430],[3246,9330],[3244,9333],[3243,9425],[3243,9430],3245,3246,[2435,3117,9811],[2435,10000],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[2798,9560],2863,2862,2798,2927,[2863,10133,9655],9748,[9749,14],0,0,0,0,0,[9562,14],[3536,9563],[3597,9366],[3533,9369],3534,3534,3536,[3599,10133],[3536,10134],[3599,10135],[3533,10136],[3536,10137],[3534,10138],3533,3536,3597,3536,3533,3535,3533,[3599,9559],9652,[9653,14],0,0,0,0,0,0,0,[9562,14],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[10042,9560],[3597,10134],[3599,10135],[3534,10138],3535,3597,3536,3536,3599,3597,3536,3534,[3533,9751],9940,9941,9942,9943,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11093,11094,11094,11094,11094,10836,11094,11094,10897,10898,10898,10898,10898,10898,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3593,9497],3530,3594,3594,3593,3594,3530,3529,[3528,9493],[9494,14],0,0,0,0,0,[9595,14],9596,9884,[3529,9689],3268,3528,3530,3592,3530,3528,3530,[3594,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2829,9607],[2768,9608,4344],[2765,4345],[2831,4346],2767,2765,2831,2765,[2832,9613],[2830,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3913,9620],3913,3914,3978,3978,3977,3977,3977,3978,3913,3977,3978,3977,3913,3978,3914,3978,3914,3978,[4097,3979],4097,4096,4097,[4097,3974],3913,3913,3978,3978,3975,[4097,3786],[4097,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,9524],3913,[3977,9811],[3913,10000],10001,9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],[9526,14],[2435,3310,9527],[2435,3118],1987,2370,[2434,10097,9715],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[2863,9656],2926,2862,2926,2798,[2863,9655],9652,[9653,14],0,0,0,0,0,0,[9562,14],9462,9465,[3533,9466],3534,3599,3597,[3535,10230],[3536,10231],[3536,10232],[3597,10233],3535,3599,3535,3535,3597,3535,3534,3536,[3599,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9942,9943,[9845,14],0,0,0,0,0,0,0,0,[9658,14],9659,[3533,10138,9656],[3533,10230],[3534,10231],3597,3597,3536,3597,3534,3533,3534,3597,3599,[3535,9847],[3597,10036],10037,10038,10039,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10962,10962,10962,10962,10962,10962,10962,10968,11094,11094,11094,11094,0,0,0,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11032,11094,11094,11094,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10708,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,9593],3529,3594,3529,3528,3593,3528,[3528,9496],9589,[9590,14],0,0,0,0,0,[9691,14],9692,[3594,9980,9497],[3529,9785],3529,3594,3529,3529,3530,3268,3593,[3592,173,9784],[102,9973],9974,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9703],[2765,9704],2768,2766,2768,2765,2832,2829,[2766,9613],[2765,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,9716],3914,3913,3913,3914,3978,3914,3977,3914,3977,3978,3978,3913,3913,3914,3914,3978,3977,3977,3975,[4097,3785],4097,[4097,3784],3976,3978,3977,3978,[3913,9330],[3978,9333],[3975,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3914,9620],3914,3913,3913,[3977,10097,9523],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[1923,9524],2434,2435,[1987,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[2862,9656],2862,2798,2798,2798,[2862,9655],9748,[9749,14],0,0,0,0,0,0,0,0,[9658,14],9659,[3597,9560],3536,3599,3597,3536,3536,3534,3535,3599,3536,3536,3534,3533,3535,[3597,9460],[3599,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10038,10039,9941,[9845,14],0,0,0,0,0,0,0,[9754,14],9755,[3599,9656],3597,3536,3599,3599,3533,3597,3536,3534,3536,3533,3599,3536,3534,[3533,10133],[3536,10134],[3536,10135],10037,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,10901,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11032,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9403],3592,3268,3530,3594,3530,3268,[3529,9592],9589,[9590,14],0,0,0,0,0,[9787,14],9788,[3268,9593],3592,3593,3594,3530,3268,3530,3268,3593,[3530,103],403,[403,10070],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],0,0,0,[2831,9799],[2767,9897],[2830,9898],[2832,9800],2765,2767,2830,2829,[2767,9709],[2832,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3913,9430],3913,3914,3978,3913,3978,3914,3913,3977,3914,3977,3913,3913,3913,3977,3977,3913,3914,3913,3913,3975,[4097,3719],3976,3914,3978,3914,[3977,9425],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[3913,9716],3977,3977,3977,[3914,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[1987,9716,9330],[1987,9333],[1987,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[2863,9656],2798,2862,2926,2798,[2863,9655],9844,[9845,14],0,0,0,0,0,0,0,0,[9754,14],9755,[3535,9656],3536,3534,3535,3533,3534,3533,3536,3597,3534,3533,3599,3536,3599,[3535,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10042,[3599,10134],[3533,10135],10037,9941,9942,9943,[9845,14],0,0,0,0,[9850,14],9851,[3533,9656],3599,3534,3535,3533,3535,3533,3535,3536,3534,3536,3599,3599,3535,3536,[3597,10230],[3535,10231],[3599,10133],[10037,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,10645,11094,11094,11094,11094,11094,11094,11094,10897,10898,10898,10899,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,0,11094,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9500],3529,3530,3594,3593,3333,[3530,9592],9781,[9782,14],0,0,0,0,[9787,14],9883,9884,[3268,9689],3528,3594,3528,3593,3592,3528,3529,3593,[3593,103],403,403,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9416,[2768,9417],[2831,9418],[2831,9419],[2832,9420],[2766,9417],[2767,9418],[2830,9419],[2830,9420],[2831,9417],[2830,9418],[2767,9419],[2767,9420],[2768,9417],[2832,9418],[2829,9419],[2831,9420],[2832,9417],[2767,9418],[2829,9419],[2768,9420],[2830,9417],[2767,9418],[2831,9419],[2765,9420],[2765,9417],[2767,9418],[2829,9419],[2766,9420],[2830,9417],[2765,9418],[2768,9419],[2832,9420],[2829,9417],[2765,9418],[2765,9419],[2832,9420],[2830,9417],[2767,9418],[2765,9419],[2767,9420],[2766,9417],[2830,9418],[2830,9419],[2832,9420],[2766,9417],[2831,9418],[2768,9419],[2832,9420],[2830,9417],[2831,9418],[2768,9419],[2765,9420],[2767,9417],[2829,9418],[2768,9419],[2766,9420],[2767,9417],[2831,9418],[2829,9419],[2767,9420],[2768,9417],[2830,9418],[2831,9419],[2766,9420],[2832,9417],[2830,9418],[2767,9419],[2768,9420],9421,0,0,9895,9993,9994,[2830,9896],[2767,9800],2830,2830,2830,[2765,9613],[2765,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3977,9527],[3978,9330],[3978,9333],3914,3913,3978,3977,3978,3911,[4097,4039],3912,3977,3911,[4097,4039],[4097,4040],[4097,4041],[3912,9330],[3978,9333],3914,3913,3913,3978,3977,3978,[3977,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3977,10007],[3978,9812],3978,3914,3913,[3978,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[2862,9752,9366],[2926,9369],2927,2798,2863,[2926,9751],9940,9941,[9845,14],0,0,0,0,0,0,0,[9658,14],9659,[3599,9656],3597,3597,3533,3599,3535,3534,3536,3535,3597,3599,3533,3534,[3597,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[10042,9560],[3599,10138],[3533,10230],[3599,10231],[3535,10133],10037,10038,10039,9941,9942,9943,9944,9945,9946,9947,[3599,9752],3599,3534,3534,3533,3535,3599,3536,3597,3535,3533,3533,3597,3533,3533,3533,3599,3534,[3535,10133,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10961,10264,10898,10899,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11031,11094,0,0,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,11094,11094,10966,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3528,9497],3268,3529,3593,3592,[3592,9688],9877,9878,9879,9880,9881,9882,9883,9979,[3592,9980],[3593,9785],3594,3593,3528,3592,3529,3528,3594,3529,[3592,167,9303],[403,9306],[403,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9415,9416,[2830,9512],2765,2830,2766,2832,2766,2829,2832,2832,2768,2768,2766,2768,2766,2829,2765,2831,2765,2832,2830,2832,2831,2766,2830,2832,2829,2768,2831,2830,2768,2766,2768,2831,2832,2831,2768,2765,2831,2832,2831,2765,2832,2768,2766,2832,2768,2768,2831,2766,2768,2766,2767,2768,2831,2765,2767,2767,2766,2830,2829,2767,2765,2765,2830,2765,2829,2832,2767,2768,[2832,9517],9518,0,9991,10089,10090,9992,[2767,9896],[2831,9800],2768,2767,[2832,9709],[2767,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3977,9430],3977,3977,3978,[3978,9330],[4097,3850,9333],4097,[4097,3847],[4097,4042],[4097,4043],4096,4097,[4097,9520],9426,9429,[3913,9430],3913,3977,3914,3978,[3978,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,10006,[3978,10102],3978,3977,3977,3914,3913,[3913,9715],9904,9905,9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15698,15699,15700,15699,15700,15701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9465,[2926,9466],2862,2862,[2798,9847],[2862,10036],10037,9652,[9653,14],0,0,0,0,0,0,[9850,14],9851,[3599,9656],3535,3597,3536,3536,3599,3535,[3536,9366],[3535,9369],3599,3597,3536,3535,[3534,9655],9652,[9653,14],0,0,0,0,0,[9850,14],9942,9943,9944,9945,[9845,14],0,0,[9850,14],9851,[3533,10138,9656],3533,3535,3599,3534,[3535,10133],[3599,10134],[3599,10135],10037,10038,10039,10040,10041,10042,[3533,10043],[3536,9848],3536,3599,3534,3597,3597,3535,3597,3535,3597,3599,3536,3534,3599,3533,3536,3533,3597,[3533,9751],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10898,10327,10904,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,0,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,10966,11094,11094,11094,11094,0,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3594,9689],3594,3268,3530,3528,[3594,9784],[3528,9973],9974,9975,9976,9977,9978,9979,[3594,10075],3528,3529,3529,3592,3592,3593,3593,3268,3529,[3593,9493],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9511,[2765,9512],2765,2832,2766,2768,2830,2768,2766,2829,2768,2831,2765,2767,2832,2768,2829,2768,2830,2766,2832,2832,2829,2766,2765,2830,2832,2832,2767,2831,2830,2832,2765,2765,2767,2830,2766,2765,2768,2832,2766,2832,2768,2766,2831,2766,2767,2829,2768,2829,2831,2832,2831,2829,2766,2766,2830,2830,2765,2830,2832,2832,2767,2831,2767,2766,2766,2768,2829,2830,2829,[2767,9613],[2766,9614],0,0,[10185,14],[10186,14],10088,9992,[2767,9607],[2766,9608],2830,[2830,9613],[2832,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3914,9524,9330],[3914,9333],[3914,9425],9426,9429,[4097,9430],4097,4097,4097,[4097,9330],[4097,9523,9333],9616,[9617,14],0,[9526,14],[3977,9527],[3978,9330],[3978,9333],[3977,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,10102,9524],3914,3978,3913,3914,3978,3978,[3913,9811],[3977,10000],10001,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15763,15764,15763,15764,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[2926,9563],2863,2862,2798,[2862,10133],9748,[9749,14],0,0,0,[9850,14],9944,9945,9946,9947,[3597,9752],3533,3597,3536,3535,3534,[3533,9556],9462,9465,[3535,9466],3535,3599,3536,[3534,9655],9844,[9845,14],0,0,[9850,14],9942,9943,9946,10038,10039,10040,10041,9941,9942,9943,9946,9947,[3597,9752],3533,3597,3599,3536,3535,[3597,10230],[3597,10231],[3535,10133],[3599,10134],[3534,10135],[3535,10136],[3597,10137],[3597,10138],3599,3536,3535,3599,3597,3535,3534,3597,3533,3534,3533,3597,3535,3534,3535,3534,3535,3533,3536,[3599,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,10838,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,10897,10263,10264,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10900,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9403],3528,3268,3528,3592,3530,3594,[3593,10070],[3592,10071],[3594,10072],[3528,10073],[3529,10074],[3529,10075],3268,3528,3529,3592,3530,3528,3268,[3529,9303],[3594,9306],[3528,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9607],[2832,9608],2767,2830,2831,2829,2830,[2768,9805],[2768,9897],[2767,9898],[2767,9899],[2766,9900],[2766,9897],[2767,9898],[2766,9899],[2767,9900],[2766,9897],[2766,9898],[2830,9899],[2829,9900],[2829,9800],2765,2831,2767,2766,2765,2768,2766,2829,[2831,9805],[2830,9897],[2768,9898],[2768,9899],[2832,9900],[2768,9897],[2829,9898],[2768,9899],[2832,9900],[2765,9800],2829,2768,2829,2765,2830,2831,2830,2768,2830,[2829,9805],[2831,9897],[2831,9898],[2832,9899],[2768,9900],[2766,9800],2830,2829,2831,2832,2832,2832,2832,[2832,9805],[2832,9897],[2768,9898],[2832,9899],[2768,9900],[2766,9800],2768,2832,2768,2831,[2768,9709],[2829,9710],0,0,0,0,0,10088,[2831,9703],[2832,9704],2831,[2830,9709],[2766,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,[9622,14],9623,[4097,9524,9330],[4097,9333],[4097,9425],9426,9429,[9521,14],0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3913,9620],3977,3913,3914,3977,3913,3913,3978,3913,[3914,10097],[3978,10098],[3978,10099],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15824,15825,15826,15828,15827,15828,15828,15829,15830,15830,15831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[2798,9560],2798,2927,2798,9844,[9845,14],0,0,[9850,14],9946,10040,10041,10042,[3535,10043],[3535,9848],3534,3599,3533,[3536,9366],[3597,9559,9369],9652,[9653,14],0,[9562,14],[3534,9563],3599,3535,[3534,9751],9940,9941,9942,9943,9946,10038,10039,10042,[3533,10134],[3597,10135],[3597,10136],[3535,10137],10037,10038,10039,10042,[3534,10043],[3533,9848],3533,3599,3536,3536,3597,3599,3533,3599,[3536,10230],[3597,10231],[3597,10232],[3534,10233],3597,3533,3533,3533,3536,3533,[3536,9366],[3599,9369],3599,3535,3597,3597,3535,3599,3536,3597,3536,3535,3536,[3534,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,10833,10328,10899,10897,10327,10904,11094,0,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,[9782,14],0,0,0,0,0,0,0,0,0,[9499,14],[3528,9403],3529,3593,3528,3593,3592,3268,[3592,10167],[3594,10168],[3593,10169],[3593,10170],3268,3593,3593,3530,3527,3268,3528,[3529,9398],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2765,9703],[2830,9704],2765,2829,2831,2831,[2832,9805],[2831,9901],9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,[2767,9896],[2830,9800],2768,2829,2830,2832,2830,2832,[2832,9805],[2830,9901],9993,9994,9995,9996,9993,9994,9995,9996,[2767,9896],[2830,9800],2831,2765,2767,2831,2767,2831,2767,[2767,9805],[2765,9901],9993,9994,9995,9996,[2832,9896],[2832,9800],2765,2767,2831,2830,2767,[2831,9805],[2768,9901],9993,9994,9995,9996,[2829,9896],[2829,9800],2830,2768,2767,2766,[2829,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],9416,[2768,9512],2765,2767,[2830,9613],[2765,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3913,9716],3977,3913,3978,3914,3977,3978,3978,3977,3914,[3914,10194],[3977,10195],[3914,10097],10001,9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15889,15890,15892,15891,15892,15891,15893,15894,17168,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9851,[2926,9656],2798,2798,2863,9940,9941,9942,9943,9946,10042,[3538,10136],[3926,10137],[3600,3863,10138],3534,3599,3534,3534,[3533,9556],9462,9465,[9557,14],0,0,[9658,14],9659,[3533,9560],3536,[3599,9847],[3535,10036],10037,10038,10039,10042,[3597,10134],[3536,10135],[3597,10138],[3533,10230],[3597,10231],[3534,10232],[3533,10233],[3599,10133],[3534,10134],[3533,10135],[3533,10138],3536,3535,3533,3597,3597,3535,3599,3533,3533,3536,3534,3536,3597,3599,3536,3536,3535,3533,3533,[3536,9461],9462,9465,[3599,9466],3535,3535,3534,3597,3536,3597,3535,3536,3534,[3599,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10263,10968,10897,10898,10899,11094,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,10644,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11032,11094,11094,11094,11094,10966,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10902,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9878,[9782,14],0,0,0,0,0,0,0,0,[9595,14],9596,[3528,9497],3268,3528,3592,3592,3593,3529,3530,3530,3530,3529,3592,3594,3592,3530,3530,[3529,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9607],[2832,9608],2832,2829,2768,[2768,9805],[2768,9901],9997,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,9992,[2768,9896],[2765,9800],2768,2765,2768,2831,[2831,9613],[2768,9614],9997,10089,10090,10091,10092,10089,10090,10091,10092,9992,[2768,9896],[2765,9800],2768,2830,2829,2768,2767,[2767,9613],[2767,9614],9997,10089,10090,10091,10092,9992,[2767,9896],[2829,9800],2766,2831,2766,[2765,9613],[2832,9614],9997,10089,10090,10091,10092,9992,[2830,9607],[2832,9608],2830,2830,2830,2830,[2831,9517],[2765,9417],[2767,9418],[2766,9419],[2767,9420],[2768,9512],2765,2765,2832,[2830,9709],[2832,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3978,9527],3978,3914,3977,3978,3913,3913,3914,3977,3914,3978,3914,3978,[3978,10097,9523],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15827,15828,15956,15956,17169,16019,15828,15828,[16020,17232],15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,9947,[2862,9752],2862,2926,2927,[2863,10036],10037,10038,10039,10042,[3987,10138],[3412,10232],[3923,10233],[3534,3927],3599,3534,3599,[3597,9559],9652,0,0,0,0,0,[9754,14],9755,[3599,9656],3533,3534,3597,[3534,10133],[3536,10134],[3534,10135],[3534,10138],[3535,10230],[3533,10231],3536,3597,3599,3536,3533,3535,[3534,10230],[3597,10231],3533,3535,[3533,9366],[3597,9368],[3597,9369],3536,3536,3599,3535,3597,3534,3534,3597,3536,3599,3599,3535,3535,3597,[3535,9556],[9557,14],0,0,[9562,14],[3536,9563],[3597,9366],[3534,9369],3534,3536,3533,3597,3536,[3535,9559],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,11094,10903,10834,10328,10899,11094,10897,10898,10899,11094,11094,11094,11094,11094,11094,11094,11094,11156,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,11079],[11094,11080],[11094,11081],[11094,11082],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,0,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,8918,8919,8920,9882,9883,9979,[3268,10071],[3594,10072],9974,9878,[9782,14],0,0,0,0,0,0,0,[9691,14],9692,[3528,9689],3529,3593,3592,3593,3529,3268,3529,3592,3592,3529,3592,3528,3594,3591,[3591,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9908,9909,9907,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9703],[2765,9704],2832,2766,[2831,9613],[2832,9614],9997,10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2832,9607],[2766,9608],2830,2765,2832,[2767,9709],[2768,9710],10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2829,9607],[2830,9608],2831,2765,2829,2765,[2767,9709],[2830,9710],10093,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2766,9607],[2831,9608],2766,2831,[2831,9709],[2765,9710],10093,[10185,14],[10186,14],[10187,14],[10188,14],10088,[2829,9703],[2768,9704],2832,2766,2766,2768,2766,2829,2766,2831,2829,2766,2766,2768,2832,[2831,9613],[2831,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,8948],8949,[3978,8950],3978,3913,3914,3978,3977,[3977,9330],[3914,9333],3978,3913,3978,3978,[3913,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15892,15956,16019,15892,15955,16019,16020,16019,16020,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[2863,10043,9560],[2863,3730,9848],[2927,3731],[2863,3732],[2862,3733],[2926,3734],[3987,10133],[3923,10134],[3923,10135],[3539,10138],3923,3987,3538,3539,[3535,3735],3536,3533,[3534,9655],9748,[9749,14],0,0,0,0,[9850,14],9851,[3535,9656],3599,3533,3536,3533,[3597,10230],[3536,10231],3535,3599,3535,3535,3533,3533,3533,3534,3599,3597,3599,3534,[3535,9461],9462,9464,9465,[3597,9466],[3597,9366],[3533,9367],[3599,9368],[3536,9369],3534,3599,3599,3599,3536,3599,3534,3535,3597,9652,[9653,14],0,0,0,[9562,14],9462,9465,[3536,9563],3597,3536,3533,3535,[3535,9655],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10903,10834,10328,10898,10263,10963,11094,10967,10264,10327,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11143,11144,11145,11146,11094,11094,11094,11094,11094,11094,11094,11092,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9881,9882,[9782,14],0,0,0,0,[9787,14],9879,9880,9881,9882,9883,9975,9976,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9014,9015,9016,9978,9979,[3593,10075],[3593,10167],[3332,10168],[3592,10070],9974,9589,[9590,14],0,0,0,0,0,0,0,[9499,14],[3527,9403],3528,3593,3529,3594,3593,3592,3529,3592,3592,3594,3528,3528,3528,[3592,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,10004,10005,[10003,15441],[10004,15442],10005,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2767,9607],[2768,9608],2831,2767,[2765,9709],[2829,9710],10093,0,0,0,0,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],0,0,0,10088,[2768,9703],[2830,9704],2766,2830,2765,[2765,9613],[2765,9614],0,0,0,0,0,0,0,0,0,0,10088,[2830,9703],[2766,9704],2768,2832,2765,2767,[2829,9709],[2767,9710],0,0,0,0,0,0,10088,[2832,9703],[2829,9704],2832,2829,[2829,9613],[2766,9614],0,0,0,0,0,0,[2767,9607],[2829,9608],2832,2832,2765,2831,2765,2831,2768,2767,2832,2832,2832,2830,2765,[2768,9709],[2829,9710],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9044],9045,[3913,9046],3913,3977,3913,3914,[3914,9425],9426,9429,[3978,9430],3913,3913,3913,[3977,9715],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15824,15825,15825,15825,15825,15826,15892,16020,15892,15891,16020,15957,15958,15958,15958,15959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9851,[2927,9656],[2927,3986],3987,3924,3926,3923,3987,[3989,10230],[3411,10231],3538,3924,3411,3989,3989,[3599,3991],3536,3599,[3536,9461],[9557,14],0,0,0,0,[9850,14],9946,9947,[3533,9752],3599,3533,3533,3533,3536,3536,3535,3535,3599,3599,3533,3534,3599,3533,3533,[3597,9366],[3599,9369],[3535,9556],[9557,14],0,0,0,[9562,14],9462,9463,9464,9465,[3533,9563],3535,3597,3535,3599,3599,3535,3534,3536,9748,[9749,14],0,0,0,0,0,[9658,14],9659,[3534,9560],3536,3533,3533,[3599,9751],9940,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10709,11094,11094,11094,11094,10902,11094,11094,10833,10328,10263,10962,10264,10899,11094,11094,11094,10967,10264,10327,10835,11094,11094,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11029,11094,11094,10901,11094,11094,11094,11094,11094,11094,11094,11094,[11094,11207],11208,11209,[11094,11210],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9977,9978,9878,9879,9880,9881,9882,9883,9975,9976,9977,9978,9979,[3528,10071],[3594,10072],9974,9878,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[2819,10071],[2819,9110],[2818,9111],[2819,9112],[2754,10074],[2754,3590,10075],3268,3528,3530,3529,[3594,10070,9496],9685,[9686,14],0,0,0,0,0,0,0,[9691,14],9692,[3593,9497],3594,3593,3593,3529,3593,3594,3593,3530,3268,3592,3593,[3527,9493],[9494,14],0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9881,9882,9883,9975,9976,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,10006,[3913,10098,15572],[3978,10099,15573],[3914,10100,15574],[3977,10101,15504],[3914,10099,15505],[10100,15506],[3913,10101,15507],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9703],[2768,9704],2766,2766,2765,[2766,9517],9421,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9324,14],9416,[2830,9417],[2830,9418],[2830,9419],[2767,9420],9518,0,0,0,[2830,9607],[2766,9608],2831,2830,2765,[2767,9613],[2767,9614],0,0,0,0,0,0,0,0,0,0,0,[2831,9799],[2830,9800],2766,2767,2832,2830,[2831,9805],[2768,9806],0,0,0,0,0,0,0,[2829,9703],[2765,9704],2768,2829,[2765,9709],[2768,9710],0,0,0,0,0,0,[2766,9703],[2832,9704],2766,2766,2767,[2767,9805],[2831,9897],[2767,9898],[2829,9899],[2830,9900],[2830,9800],2765,2765,2767,2832,2830,[2767,9517],[2765,9417],[2832,9418],[2766,9419],[2830,9420],[2829,9417],[2831,9418],[2765,9419],[2767,9420],9421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9140],[74,9141],[3914,9142],3913,3914,3977,[3913,9523],9616,[9617,14],0,[9526,14],[3977,9527],[3913,9330],[3978,9333],[3978,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15889,15889,15889,15889,15890,16020,16019,16020,15892,16020,16021,16022,16022,16022,16023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,9947,[2862,3795,9752],3926,3411,3987,3989,[2926,4051],3925,3538,3926,3925,3540,3926,3538,3474,3923,[3597,3798],[3598,9556],[9557,14],0,0,0,0,[9658,14],9659,[10042,9560],[3597,10043],[3535,9848],3599,3533,3599,3597,3599,3533,3535,3533,3534,3534,3599,3534,3536,3536,[3599,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,0,[9658,14],9659,3599,3597,3534,3535,3533,3535,3535,[3534,9461],[9557,14],0,0,0,0,0,0,[9754,14],9755,[3533,9656],3533,3535,3536,[3533,9847],[3536,10036],10037,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11030,11094,10903,10328,10263,10963,11094,10897,10899,11094,11094,11094,11094,10961,10264,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,11271],11272,11273,[11094,11274],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11096,11094,11094,11094,11156,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9883,9979,[3268,10073],[3530,10074],9974,9975,9976,9977,9978,9979,[3528,10071],[3529,10072],[3268,10073],[3594,10074],[3528,10075],[3530,10167],[3528,10168],[3529,10070],9974,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[9979,9497],[2818,10075],[2561,10167],[2818,9206],[2497,9207],[2497,9208],[2754,10170],[2818,3463],[2497,3655],[2755,3656],3530,3529,[3592,9592],9589,[9590,14],0,0,0,0,0,0,0,[9691,14],9692,[3594,9689],3593,3530,3268,3528,3528,3592,3268,3594,3528,3530,[3530,9496],9589,[9590,14],0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9977,9978,9979,[3528,10071],[3593,10072],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,10102,9524],[3978,10194,15636],[3977,10195,15637],[3978,10196,15638],[3978,10197,15568],[3978,10195,15569],15570,[3913,10197,15571],[3978,10097,9523],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9607],[2830,9608],2830,2831,2765,2829,[2831,9517],[2767,9417],[2831,9418],[2765,9419],[2766,9420],[2767,9417],[2766,9420],[2766,9512],2831,2767,2832,[2830,9613],[2832,9614],0,0,0,[2831,9703],[2768,9704],2768,2832,2765,2829,[2768,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],0,0,9895,[2767,9896],[2830,9897],[2831,9898],[2766,9899],[2768,9900],[2765,9901],9902,0,0,0,0,0,0,0,[2831,9607],[2832,9608],2829,2830,[2766,9709],[2831,9710],0,0,0,0,0,0,[2831,9703],[2768,9704],2765,2830,[2831,9805],[2766,9901],9993,9994,9995,9996,[2766,9896],[2829,9800],2768,2830,2768,2832,2832,2767,2767,2829,2832,2829,2766,2831,2829,[2765,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9718,14],[74,9719],[3978,9330],[3914,9331],[3913,9332],[3914,9333],[3913,9425],[9521,14],0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15827,15828,15827,15827,15827,15892,15891,15892,16020,16020,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9944,9945,9946,10042,[3987,10043],[3924,9848],3987,3923,3989,[2863,3861],2798,[2863,3859],3989,3926,3924,3924,3476,3923,3924,3410,[3923,9559],9652,[9653,14],0,0,0,0,[9754,14],9755,[3599,10138,9656],3534,3597,3536,3534,3536,3536,3535,3536,3534,3536,3535,3533,3534,3533,3597,[3535,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3535,3536,3534,3535,3599,3597,[3536,9556],[9557,14],0,0,0,0,0,0,0,[9850,14],9851,[3597,9656],3597,3599,3533,3535,3535,[3534,10133],10037,9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10328,10263,10968,11094,10646,10897,10327,10835,11094,11094,11094,11094,10897,10327,10904,11094,11094,11094,11094,11094,10903,10835,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,[11094,11335],11336,11337,[11094,11338],11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9979,[3528,10075],[3594,10169],[3332,10170],[3592,10070],[3530,10071],[3593,10072],[3593,10073],[3593,10074],[3529,10075],[3530,10167],[3529,10168],[3530,10169],[3530,10170],3268,3594,3529,3529,[3594,10070],[3528,10073],[3592,10074],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,10075,9593],[2818,3402],2561,2561,2818,2496,2755,2754,2818,2819,[2497,3654],[2496,3655],[2819,3656,9688],9589,[9590,14],0,0,0,0,0,0,0,0,[9499,14],[3592,9403],3592,3530,3593,3268,3529,3594,3594,3593,3530,3594,[3594,9592],9685,[9686,14],0,0,0,0,0,0,0,[9787,14],9883,9979,[3592,10071],[3530,10072],[3528,10073],[3594,10074],[3528,10075],[3529,10167],[3530,10168],[3528,10070],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3914,9620],3978,3914,3977,[3913,15632],[3977,15633],[3978,15634],[3977,15635],[3977,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2830,9703],[2766,9704],2768,2832,2767,2765,2829,2829,2831,2768,2830,2767,2767,2829,2830,2830,2767,[2830,9709],[2765,9710],0,0,0,[2832,9607],[2766,9608],2766,2768,2832,2831,2831,[2829,9517],[2767,9417],[2829,9418],[2768,9419],[2831,9420],[2831,9417],[2831,9418],[2830,9419],[2830,9420],9421,0,9991,9992,9993,9994,9995,9996,9997,9998,0,0,0,0,0,0,0,[2768,9703],[2829,9704],2768,2767,2831,[2832,9517],9421,[9321,14],[9322,14],[9323,14],[9324,14],9416,[2767,9512],2765,2768,[2829,9613],[2832,9614],9997,10089,10090,10091,10092,9992,[2832,9896],[2766,9800],2830,2765,2829,2832,2766,2766,2830,2829,2765,2765,2766,2832,[2829,9613],[2768,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9427,9428,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15956,16020,15892,16020,15956,16020,15891,15956,16020,15891,15765,15766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10040,10041,10042,[3989,10138],3987,3924,3923,3925,[2862,3861],2863,2926,2862,[2926,3986],3989,3989,3989,3989,3987,[2863,4053],[2927,4054],[3925,9655],9748,[9749,14],0,0,0,0,[9658,14],9659,[3533,9656],3533,3599,3599,3597,3597,3534,3597,3536,3599,3599,3536,3533,3599,3536,[3599,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3536,9466],3534,3534,3535,3597,3533,9652,[9653,14],0,0,0,0,[9850,14],9942,9943,9946,9947,[3599,9752],3534,3533,3533,3599,3536,3535,[3536,10133,9559],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,10710,11094,10774,11094,11094,10901,11094,10903,10328,10263,10968,11094,11094,11094,10897,10898,10899,11094,11094,11094,11094,10967,10264,10327,10834,10834,10834,10834,10834,10328,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,11094,11094,10646,11094,11094,11094,11094,11094,11094,11094,11030,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3529,10071],[3593,10072],[3528,10075],3528,3268,3592,3530,[3528,10167],[3592,10168],[3592,10169],[3593,10170],3528,3592,3592,3529,3529,3530,3332,3593,3528,3530,[3594,10169],[3268,10170],[3268,10070],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3594,9689],3529,[2560,3335],[2755,3336],[2819,3337],[2819,3338],[2755,3401],2755,2497,2818,2818,2497,[2819,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,[9499,14],[3593,9403],3592,3594,3593,3529,3592,3594,3529,3592,3594,[3594,9592],9589,[9590,14],0,0,0,0,0,0,[9595,14],9596,9979,[3530,10075],[3529,10167],[3593,10168],[3333,10169],[3529,10170],3268,3593,3593,3594,[3592,10070],9974,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3978,9716],3977,3977,3913,3913,3977,3977,3977,[3913,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2830,9799],[2830,9800],2766,2832,2768,2765,2765,2829,2766,2768,2830,2832,2766,2767,2829,2831,2768,[2765,9613],[2832,9614],0,0,0,[2768,9703],[2832,9704],2831,2829,2767,2766,2829,2830,2829,2832,2765,2830,2765,2768,2829,2829,[2766,9517],9518,0,10088,10089,10090,10091,10092,10093,0,0,0,0,0,0,0,9511,[2768,9512],2766,2830,2765,2832,2829,[2767,9517],[2831,9417],[2767,9418],[2766,9419],[2767,9420],[2829,9512],2832,2829,2832,[2831,9709],[2765,9710],10093,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2832,9607],[2829,9608],2767,2767,2767,2766,[2766,9805],[2765,9897],[2831,9898],[2768,9800],2767,2830,2831,[2768,9709],[2766,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15956,15892,15891,15891,17170,15956,16019,16020,15955,15955,15829,15830,15830,15830,15831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,10042,[3926,10136],[3926,10137],[3475,10138],3989,3923,3925,3926,[2927,3799],2863,2862,2863,[2926,3796],3925,3989,3926,3923,[2798,4051],[2862,4055],2863,2926,[2863,3860,9461],[9557,14],0,0,0,0,0,[9754,14],9755,[3599,9656],3533,3533,3597,3536,3533,3599,3597,3536,3597,3597,3534,3534,3534,3533,[3535,9655],9844,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3536,9563],3536,3534,3533,3535,9748,[9749,14],0,0,0,[9850,14],9946,10038,10039,10042,[3534,10043],[3599,9848],3534,3599,3536,3534,3534,3533,[3533,9655],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,10710,10897,10263,10968,11094,11094,11094,11094,10897,10263,10963,11094,11094,11094,11094,11094,10897,10263,10962,10962,10962,10962,10962,10962,10963,11094,11094,11094,11094,10901,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3529,10075],[3593,10167],[3530,10168],3268,3529,3268,3593,3268,3594,3593,3592,3529,3529,3530,3528,3530,3528,3530,3268,3268,3268,3593,3594,3593,3593,[3528,10070],[9974,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9403],3594,3528,3530,3593,3594,[2560,3403],2755,2755,2818,2818,[2818,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3592,9497],3592,3268,3593,3268,3592,3594,3268,3528,[3592,9688],9685,[9686,14],0,0,0,0,0,0,[9691,14],9692,[3528,10075],3529,3594,3529,3528,3594,3530,3594,3592,3530,3592,[3593,10070,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],3978,3913,3913,3913,3978,3913,3977,[3978,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9895,[2767,9896],[2829,9800],2829,2830,2832,2829,2831,2832,[2768,9805],[2765,9899],[2829,9900],[2767,9897],[2767,9898],[2832,9800],2830,2832,[2830,9805],[2830,9806],0,0,0,[2832,9607],[2766,9608],2765,2832,2765,2766,2768,2766,2768,2768,2830,2766,2768,2768,2765,2832,2766,[2832,9517],9421,0,[10185,14],[10186,14],[10187,14],[10188,14],0,0,0,0,0,0,0,9416,[2765,9512],2829,2830,2765,2831,2766,2832,2768,2766,2832,2831,2766,2832,2766,2830,2832,[2765,9805],[2830,9806],0,0,0,0,0,0,10088,[2829,9703],[2766,9704],2829,2765,2767,[2832,9805],[2765,9901],9993,9994,[2831,9896],[2766,9800],2766,2831,[2830,9613],[2767,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15955,15892,16020,15955,15892,15955,16019,15892,15892,15956,15893,15894,15894,15894,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[10042,9560],[3989,10138],[3923,10232],[3925,10233],3989,3987,3540,3926,3923,[2863,3927],2926,[2927,3795],[2863,3731],3474,3989,3925,3987,[2926,3991],2927,2798,2927,[2927,9556],[9557,14],0,0,0,0,0,0,[9658,14],9659,[3536,9752],3536,3536,3533,3536,3534,3535,3599,3535,3599,3535,3533,3599,3536,3597,[3536,9751],9940,9941,[9845,14],0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3536,3533,3536,3533,9844,[9845,14],0,0,[9850,14],9946,10042,[3533,10134],[3535,10135],[3599,10138],3535,3536,3533,3535,3536,3533,3536,3597,[3535,9751],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11031,11094,11094,10961,10963,11094,11094,11094,11094,11030,10897,10899,11094,11094,11094,11094,11094,10903,10328,10899,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11031,11094,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15280,15215,15280,15280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3529,10075],3594,3594,3594,3529,3593,3528,3592,3528,3529,3530,3594,3528,3528,3594,3594,3592,3592,3268,3268,3269,3268,3268,3528,3528,3594,3594,[3333,10070,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9403],3528,3592,3593,3594,[2561,3467],2561,2496,2819,[2819,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,9497],3593,3593,3593,3594,3592,3529,3593,3529,[3593,9493],[9494,14],0,0,0,0,0,0,0,0,[9499,14],[3593,9403],3593,3332,3268,3593,3528,3594,3593,3268,3592,3268,[3530,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],3977,3978,3977,3913,3978,[3977,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9991,9992,[2765,9896],[2767,9800],2830,2831,2765,2766,[2766,9805],[2765,9901],9995,9996,9993,9994,[2766,9896],[2831,9899],[2830,9900],[2767,9901],9902,0,0,0,[2766,9703],[2829,9704],2765,2766,2832,2830,2766,2832,2831,2829,2766,2765,2766,2831,2766,2765,2831,2767,[2767,9517],9421,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9324,14],9511,[2768,9512],2832,2765,2830,[2831,9805],[2832,9897],[2768,9898],[2830,9800],2766,2767,2767,2832,2832,2830,2766,2768,[2765,9805],[2829,9901],9902,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],[2832,9607],[2768,9608],2768,2831,[2832,9805],[2765,9901],9997,10089,10090,9992,[2829,9607],[2767,9608],2831,[2829,9709],[2767,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,16020,16019,15892,15955,16019,15956,15956,16020,15955,16020,15827,15828,15828,15828,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[3989,10138,9656],3538,3923,3989,3925,3923,3923,3987,3410,3924,[2798,3731],3925,3989,3926,3926,3926,3989,3989,[2798,3798],2927,[2862,9559],9652,[9653,14],0,0,0,0,0,0,0,[9562,14],[3536,9466],3536,3599,3597,3533,3597,3534,3533,3599,3599,3599,3599,3599,3599,3599,[3533,9847],[3536,10036],[10037,9559],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3599,3534,3599,3535,9940,9941,9942,9943,9946,10042,[3536,10138],[3534,10230],[3535,10231],3536,3533,3536,3535,3536,3533,3533,3535,3534,[3534,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10833,10328,10899,11094,11094,11094,11094,10903,10328,10263,10963,11094,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,10645,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,11094,11094,11093,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15149,15150,15279,15149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[9979,9497],[3594,10075],3528,3528,3593,3529,3528,3593,3530,3528,3332,3593,3529,3529,3528,3594,3530,3268,3593,3332,3594,3594,3528,3593,3528,3529,3593,3593,3530,[3530,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3529,9497],3592,3530,3593,[2561,3531],2496,2497,2561,[2754,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3594,9593],3593,3593,3530,3528,3592,3592,3594,[3528,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9500],3593,3592,3268,3593,3530,3593,3594,3530,3268,[3529,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,9524],3914,3913,3977,[3913,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,9992,[2766,9607],[2766,9608],2831,2830,[2831,9613],[2768,9614],9997,10091,10092,10089,10090,9992,9995,9996,9997,9998,0,0,0,[2830,9607],[2830,9608],2768,2767,2830,2832,[2829,9805],[2832,9897],[2831,9898],[2831,9899],[2767,9900],[2767,9897],[2832,9898],[2829,9899],[2766,9900],[2766,9800],2830,2767,2830,[2767,9517],[2767,9417],[2766,9418],[2832,9419],[2765,9420],[2832,9417],[2768,9418],[2767,9419],[2768,9420],[2832,9417],[2829,9420],[2767,9512],2765,2832,2830,[2768,9805],[2829,9901],9993,9994,[2766,9896],[2765,9800],2765,2829,2831,2832,2830,2832,[2768,9805],[2768,9901],9997,9998,0,0,9416,[2768,9417],[2832,9418],[2765,9419],[2767,9420],[2831,9512],2767,2768,[2830,9613],[2831,9614],9997,10093,[10185,14],[10186,14],10088,[2831,9703],[2766,9704],2830,[2832,9613],[2766,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15956,15891,15891,15892,15892,16020,15956,16020,15955,15891,16019,17169,16019,15891,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3925,9752],3926,3476,3926,3412,3925,3987,3925,3923,3476,3540,3411,3925,3924,3989,3989,3926,3924,3540,[2927,3797],[2862,9655],9748,[9749,14],0,0,0,0,0,0,0,0,[9562,14],[3536,9563],3533,3533,3536,3599,3534,3534,3536,3536,3599,3599,3536,3597,3533,3597,3535,[3535,10133,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,3534,3533,3536,3597,[3536,10036],10037,10038,10039,10042,[3599,10138],3533,3534,3533,3534,3533,3536,3534,3599,3597,3536,3534,[3597,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10897,10263,10963,11094,10903,10834,10834,10328,10263,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10709,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15214,15214,15603,15214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3530,10075,9593],3592,3269,3528,3594,3594,3528,3530,[3528,9303],[3593,9306],3593,3592,3529,3593,3529,3593,3593,3594,3268,3528,3529,[3528,9303],[3528,9306],3594,3268,3268,3528,3268,3333,[3594,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3593,9593],3530,3593,3269,[2497,3466],2755,[2754,3334],[2755,3335],[2561,3336,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3530,9593],3530,3268,3593,3528,3592,3530,[3528,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3592,9497],3528,3529,3528,3529,3530,3529,3530,[3529,9303],[3528,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,9620],3913,3914,3913,[3977,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,[2766,9703],[2767,9704],2831,2830,[2767,9709],[2766,9710],10093,[10187,14],[10188,14],[10185,14],[10186,14],10088,10091,10092,10093,0,0,0,0,[2830,9703],[2765,9704],2829,2832,2765,[2832,9805],[2765,9901],9993,9994,9995,9996,9993,9994,9995,9996,[2768,9896],[2768,9800],2829,2766,2765,2767,2767,2765,2832,2830,2768,2766,2829,2832,2829,2765,2830,2765,[2832,9709],[2765,9710],9997,10089,10090,9992,[2766,9896],[2831,9897],[2831,9898],[2831,9899],[2765,9900],[2832,9897],[2832,9898],[2832,9901],9997,10093,0,0,9416,[2829,9512],2768,2765,2765,2829,2831,2766,2831,[2832,9709],[2766,9710],10093,0,0,0,0,[2829,9607],[2829,9608],2765,[2831,9709],[2832,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15952,15953,15954,16019,15955,16019,15892,15957,15958,16595,16596,16596,15958,15958,15958,15959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3923,9466],[3538,9366],[3987,9367],[3926,9368],[3987,9369],[2862,4051],3923,3989,3926,3989,3923,3989,3925,3476,3923,3926,3989,[3926,9366],[3923,9367],[2927,3991,9368],[2798,9751,9369],9748,[9749,14],0,0,0,0,0,0,0,0,[9658,14],9659,[3535,9560],3597,3535,3535,3536,3534,3533,3536,3534,3597,[3536,9366],[3536,9369],3534,3536,3535,[3533,9655],9652,[9653,14],0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,3534,3534,3599,3536,3533,[3536,10133],[3533,10134],[3536,10135],[3533,10138],3535,3535,3536,3535,3534,3599,3534,3536,3533,3535,3534,[3535,9461],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10903,10328,10899,11094,11094,10897,10263,10962,10962,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10836,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9884,[3268,9689],3528,3594,3592,3593,3528,3530,[3529,9398],9399,9402,[3529,9500],3529,3269,3528,3594,3530,3268,3592,3592,3594,[3593,9398],9399,9402,[3332,9403],3528,3530,3268,3268,3530,[3593,9784],[3592,9973],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3593,9593],3528,3530,[2819,3465],2560,2754,[2755,3398],3593,[3530,9688],9877,9878,9879,9880,[9782,14],0,0,0,0,0,0,0,0,[9691,14],9692,[3530,9593],3592,3593,3332,3593,3528,3268,[3592,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3530,9593],3529,3594,3529,3528,3530,3528,[3528,9493],9399,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9620],3914,3913,3978,[3978,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9703],[2830,9704],2765,2767,[2767,9613],[2768,9614],0,0,0,0,0,0,[10187,14],[10188,14],0,0,0,0,0,[2768,9607],[2768,9608],2767,2830,[2831,9613],[2829,9614],9997,10089,10090,10091,10092,10089,10090,10091,10092,9992,[2767,9896],[2768,9800],2767,2768,2765,2830,2830,2768,2766,2765,2765,2767,2765,2831,2768,2768,2832,[2765,9613],[2768,9614],10093,[10185,14],[10186,14],10088,9992,9993,9994,9995,9996,9993,9994,9997,10093,0,0,0,[2829,9607],[2768,9608],2765,2832,2832,2768,2768,2831,2831,[2830,9613],[2767,9614],0,0,0,0,0,[2829,9703],[2765,9704],2768,2765,[2830,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16016,16017,16018,16020,17169,15891,15892,16021,16022,16659,16660,16660,16022,16022,16022,16023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9463,9464,9465,[2798,9466],[2926,4050],[2927,4053],3925,3923,3989,3923,3411,3925,3987,3924,[3925,9461],9462,9463,9464,9465,[9557,14],0,0,0,0,0,0,0,0,0,[9658,14],9659,[3533,9656],3534,3536,3599,3534,3597,3597,3536,3599,[3536,9461],9462,9465,[3536,9466],3536,3536,[3536,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3597,9563],3597,3533,3534,3535,3535,[3536,10230],[3597,10231],3599,3597,[3536,9366],[3536,9369],3533,3534,3599,3533,3536,[3535,9366],[3533,9369],[3599,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10710,11094,11094,10897,10263,10968,10900,11094,10961,10968,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15085,15086,15021,15022,15086,15022,15085,15021,15022,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[9979,9497],[3268,9980],[3592,9785],3268,3530,3268,3594,3594,[3530,9496],9589,[9590,14],[9595,14],9596,[3529,9497],3529,3268,3530,3529,3269,[3594,9303],[3528,9306],[3593,9398],[9494,14],0,[9595,14],9596,[3529,9497],3530,3530,3594,[3528,128],3268,3529,[3528,10070],[9974,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3530,9689],3530,[2561,3403],2560,2497,2497,[2818,3462],3592,[3528,9784],[3593,9973],9974,9975,9976,9878,[9782,14],0,0,0,0,0,0,0,[9787,14],9788,[3528,9593],3528,3530,3592,3529,3529,3268,[3530,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3529,9593],3594,3528,3529,3592,3528,[3592,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,8469,[3914,9716],3913,3978,3978,[3978,9715],8464,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9607],[2767,9608],2765,2829,[2830,9709],[2766,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,[2767,9703],[2768,9704],2830,2766,[2766,9613],[2832,9614],10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2767,9896],[2768,9897],[2831,9898],[2832,9899],[2767,9900],[2765,9897],[2766,9898],[2831,9899],[2768,9900],[2830,9800],2767,2766,2829,2765,2830,2830,[2768,9709],[2765,9710],0,0,0,0,10088,10089,10090,10091,10092,10089,10090,10093,0,0,0,0,[2832,9799],[2768,9800],2765,2829,2829,2829,2832,2830,2766,2765,[2766,9517],9518,0,0,0,0,[2768,9607],[2767,9608],2766,2832,2830,[2765,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],9325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16082,16083,16084,16083,16084,16085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[2927,9563],[2863,9366],[2926,3986,9367],[3924,8793],[3539,8794],[3923,8795],[3540,9369],[3925,9366],[3924,9369],[3987,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9851,[3534,9656],3535,3535,3599,3597,3597,3597,3597,[3534,9556],[9557,14],0,0,[9562,14],[3535,9466],[3534,9366],[3536,9751,9369],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3599,9563],[3535,9366],[3534,9369],3597,3597,3599,3535,3533,[3533,9461],9462,9465,[3534,9466],3599,3536,3599,[3535,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10967,10963,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11032,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15085,15085,15086,15086,15021,15021,15086,15022,15021,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3592,10075,9593],3594,3269,3530,3529,3594,3529,3594,[3593,9592],9685,[9686,14],[9691,14],9692,[3594,9593],3529,3528,3268,3592,[3593,9493],9399,9402,[9494,14],0,0,[9691,14],9692,[404,9593],[3529,405],[3268,406],[3530,407],[3268,408],[3594,532],[3268,533],[3268,534],[535,10070,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9403],[3527,9303],[2754,3467,9304],[2496,9305],[2496,9306],2754,[2497,3526],3592,3593,3529,[3592,10070],[3594,10071],[3594,10072],9974,9589,[9590,14],0,0,0,0,0,[9787,14],9883,9884,[3332,9689],3529,3593,3268,3592,3594,3592,[3593,9592],9589,[9590,14],0,0,0,0,0,[9787,14],9879,9880,9881,9882,9883,9884,[3593,9689],3592,3529,3593,3593,[3592,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,8565,[3978,9812],3913,3914,3913,[3978,9811],8560,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2767,9703],[2766,9704],2831,2830,[2829,9709],[2768,9710],0,0,0,0,0,0,0,0,0,0,0,0,9511,[2768,9512],2765,2829,2831,[2768,9709],[2766,9710],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],0,0,10088,9992,9993,9994,9995,9996,9993,9994,9995,9996,[2829,9896],[2766,9800],2767,2766,2765,2768,2831,[2831,9613],[2829,9614],0,0,0,0,0,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],0,0,0,0,0,9895,[2830,9896],[2768,9897],[2766,9898],[2765,9800],2832,2766,2768,2766,2829,2766,[2768,9517],9518,0,0,0,[2766,9703],[2768,9704],2765,2830,2766,2831,[2765,9517],[2832,9417],[2832,9418],[2829,9419],[2829,9420],9421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9908,9909,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16146,16147,16148,16147,16148,16149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9463,[74,8889],8890,[74,8891],9465,9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9850,14],9946,9947,[3533,9752],3597,3533,3534,3534,3599,3599,[3533,9559],9652,[9653,14],0,0,0,[9562,14],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9465,[3536,9563],[3597,9366],[3597,9367],[3597,9368],[3536,9369],9652,[9653,14],0,[9562,14],[3535,9563],[3597,9369],[3535,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11028,10646,11094,11094,11094,11094,11094,11094,11094,11093,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15086,15086,15342,15344,15344,15343,15343,15345,15021,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,9689],3528,3530,3592,3528,3592,3593,3594,[3268,9688],9589,[9590,14],[9787,14],9788,[3268,9593],3594,3268,3332,[3592,9496],9589,[9590,14],0,0,0,0,[9595,14],9596,[403,9593],403,531,403,403,403,403,403,[403,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9401,9402,[2497,3399,9500],3529,3593,3593,3530,3593,[3593,10167],[3529,10168],[3594,10070,9496],9685,[9686,14],0,0,0,0,[9595,14],9596,[9979,9497],[3268,9980],[3592,9785],3593,3528,3594,3529,3529,3530,[3594,9592],9781,[9782,14],0,0,0,0,[9787,14],9883,9975,9976,9977,9978,9979,[3592,9980],[3530,9785],3530,3530,3592,3594,[3593,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3913,8661,9524],3913,3914,3913,3914,3977,[3977,8656,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2832,9799],[2766,9800],2768,2768,2768,[2765,9517],9421,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9324,14],9511,[2832,9512],2768,2766,2830,2766,2832,[2766,9517],[2830,9417],[2832,9418],[2766,9419],[2831,9420],[2829,9417],[2765,9418],[2831,9419],[2832,9420],9421,0,0,10088,10089,10090,10091,10092,10089,10090,10091,10092,9992,[2829,9896],[2768,9800],2829,2831,2766,2768,[2765,9709],[2830,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9991,9992,9993,9994,[2767,9896],[2766,9800],2830,2765,2766,2766,2829,[2765,9613],[2768,9614],0,0,0,[2832,9607],[2768,9608],2766,2765,2829,2830,2830,2766,2831,2765,2766,[2832,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10004,10005,9905,9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,[74,14],74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[10042,9560],[3533,10043],[3599,9848],3597,3534,3534,3534,3535,3535,[3534,9655],9748,[9749,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9463,9464,9465,[9557,14],0,0,0,[9562,14],9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15085,15022,15406,15407,15407,15283,15407,15409,15085,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3593,9403],[3527,9303],[3268,9304],[3268,9305],[3530,8730],[3529,8731],[3592,8732],[3593,9306],[3527,9493],[9494,14],[9787,14],9883,9884,[3529,9689],3528,3528,3594,[3592,9592],9685,[9686,14],0,0,0,0,[9691,14],9692,[3530,468,9593],[3528,469],[3594,470],[3528,471],[3593,472],403,146,[403,9397],[403,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9596,[3594,9497],3528,3268,3530,3592,3529,3529,[3529,9592],9589,[9590,14],0,0,0,0,[9691,14],9692,[3594,10075,9593],3268,3530,3268,3528,3529,3268,3528,3594,[3530,9688],9877,9878,9879,9880,9881,9882,9883,9979,[3528,10071],[3594,10072],[3530,10073],[3594,10074],[3593,10075],3333,3594,3530,3593,3530,3269,[3530,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3913,9620],3978,3977,3913,3977,3978,[3977,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9895,[2831,9896],[2832,9800],2829,2765,2767,[2829,9517],[2829,9417],[2830,9418],[2831,9419],[2832,9420],[2830,9417],[2830,9418],[2768,9419],[2768,9420],[2766,9417],[2767,9420],[2766,9512],2831,2767,2767,2767,2831,2765,2766,2829,2829,2829,2766,2765,2830,2766,2832,[2768,9517],9518,0,0,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2766,9896],2767,2831,2767,2766,2768,[2766,9517],9421,0,0,0,0,0,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],0,0,0,0,10088,10089,10090,9992,[2768,9896],[2766,9800],2830,2768,2768,2768,[2766,9709],[2768,9710],0,0,0,[2832,9703],[2830,9704],2831,2832,2766,2831,2829,2831,2767,2830,2831,2765,[2765,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9908,9909,9910,10006,[3063,10100],[3062,10101],10001,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9754,14],9755,[3533,10138,9656],3534,3599,3535,3534,3597,3533,3597,3599,[3536,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11095,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,10708,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15021,15085,15406,15408,15407,15407,15408,15409,15022,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9876,9881,9882,[9782,14],0,0,[9499,14],9399,9400,9401,8826,8827,8828,9402,[9494,14],[9691,14],9692,[9979,9497],[3528,9980],[3530,9785],3528,3269,3268,[3268,9592],9781,[9782,14],0,0,0,0,[9595,14],9596,[3268,9593],3592,[3594,128],3592,3529,[3592,39],403,[403,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3529,9593],3529,3593,3528,3592,3528,3594,[3592,9592],9781,[9782,14],0,0,0,0,[9691,14],9692,[3530,9689],3530,3594,3268,3268,3592,3333,3268,3268,[3268,9784],[3593,9973],9974,9975,9976,9977,9978,9979,[3529,10075],[3530,10167],[3529,10168],[3268,10169],[3593,10170],3268,3268,3268,3529,3268,3594,3592,[3592,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[3977,9620],3914,3978,3914,3914,3977,[3978,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9991,9992,[2831,9896],[2832,9800],2829,2768,2766,2832,2831,2831,2830,2832,2832,2831,2767,2829,2767,2767,2765,2832,2766,2768,2832,[2829,9805],[2766,9897],[2766,9898],[2829,9899],[2829,9900],[2766,9800],2829,2767,2768,2831,[2765,9613],[2766,9614],0,0,0,0,0,0,0,0,0,0,0,10088,9992,[2831,9607],[2830,9608],2767,2766,2831,2831,[2767,9517],9518,0,0,0,0,0,0,9416,[2765,9417],[2832,9418],[2765,9419],[2832,9420],9421,0,0,0,0,[10185,14],[10186,14],10088,9992,[2765,9607],[2766,9608],2832,2831,2832,[2829,9613],[2831,9614],0,0,0,[2766,9607],[2766,9608],2830,2765,2831,2830,2832,2765,2765,2830,2766,2832,2767,[2767,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9910,10002,10003,10004,10005,10006,[3062,10102],[3063,10196],[3063,10197],[3063,3052,10097],[3243,10098],[3244,10099],10001,9905,9906,9907,9908,9909,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9658,14],9659,[3597,9656],3534,3533,3534,3599,3533,[3597,9366],[3534,9369],[3534,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11095,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,10838,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15086,15022,15406,15407,15408,15408,15408,15409,15086,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9972,9977,9978,9878,[9782,14],0,0,[9787,14],9881,9882,[9782,14],0,0,0,0,[9787,14],9788,[3527,10075,9593],3528,3530,3593,3593,3593,[3529,9688],9877,9878,[9782,14],0,0,0,[9691,14],9692,[3593,9689],3530,3529,3528,3593,3592,[3528,38,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,9593],3332,3593,3268,3592,3528,3268,[3594,9688],9877,9878,[9782,14],0,0,0,0,[9499,14],[3530,9403],3528,3528,3592,3593,3530,3593,3530,3593,3592,3528,[3529,10070],[3594,10071],[3528,10072],[3530,10073],[3530,10074],[3593,10075],3594,3268,3593,3593,3594,3530,3529,3528,3528,3592,3593,3529,[3593,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,8465,8466,8467,8468,8465,8466,8467,8468,9910,9911,[3914,9716],3914,3913,3978,3914,3977,[3977,9715],9904,9905,8465,8466,8467,8468,8465,8466,8467,8468,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9324,14],10088,9992,[2829,9896],[2766,9800],2768,2767,2832,2767,2765,2832,2832,2831,2768,2831,2766,2767,2830,2831,2766,2829,2830,[2767,9805],[2766,9901],9993,9994,9995,9996,[2830,9896],[2829,9800],2765,2765,2832,[2831,9709],[2768,9710],0,0,0,0,0,0,0,0,0,0,0,0,10088,[2766,9703],[2765,9704],2830,2832,2829,2765,2765,[2767,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],9416,[2829,9512],2766,2829,2766,2765,[2765,9517],9518,0,0,0,0,0,0,10088,[2829,9703],[2766,9704],2831,2768,2831,[2766,9805],[2830,9806],0,0,0,[2765,9703],[2766,9704],2832,2768,2830,[2829,9805],[2829,9897],[2767,9898],[2765,9800],2830,2768,2831,2831,[2831,9613],[2765,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9908,9909,9910,10002,10003,10006,[3244,10098],[3182,10099],[3179,10100],[3245,10101],[2998,11344,3053,10102],3063,[3062,3052],[3063,2987],3246,[3245,10194],[3243,10195],[3245,10097],10001,10002,10003,10004,10005,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3535,9466],3536,3535,3536,3533,[3536,9461],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,10965,11094,11094,11094,11094,11094,11094,11094,11029,11094,11094,0,0,0,0,0,0,11094,0,0,0,0,0,0,11094,11094,10837,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15085,15021,15470,15472,15471,15471,15472,15473,15021,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3594,10071],[3593,10068],[3528,10073],[3269,10074],9974,9878,9879,9880,9883,9977,9978,9878,9879,9880,9881,9882,9883,9884,[3592,9689],3269,3592,3268,3268,3594,[3593,9784],[3593,9973],[9974,9496],9685,[9686,14],0,0,0,[9499,14],[3591,9500],3529,3593,3593,3593,3530,[3592,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,[9782,14],0,[9691,14],9692,[3530,9593],3592,3333,3530,3529,3529,3592,[3592,9784],[3529,9973],9974,9589,[9590,14],0,0,0,0,[9499,14],[3592,9500],3529,3528,3592,3594,3528,3530,3592,3268,3529,3593,[3594,10167],[3594,10168],[3592,10169],[3530,10170],3528,3594,3530,3528,3528,3528,3528,3592,3593,3594,[3528,9303],[3592,9306],[3528,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,8561,8562,8563,8564,8561,8562,8563,8564,10006,[3913,10007],[3914,9812],3914,3978,3978,3978,3978,[3914,9811],[3914,10000],10001,8561,8562,8563,8564,8561,8562,8563,8564,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9415,9416,[2768,9417],[2766,9418],[2767,9419],[2766,9420],[2766,9417],[2766,9420],9421,10088,9992,[2768,9607],[2766,9608],2829,2766,2765,2765,[2767,9805],[2830,9897],[2765,9898],[2767,9898],[2767,9899],[2831,9900],[2830,9800],2767,2829,2766,2832,[2765,9805],[2830,9901],9997,10089,10090,10091,10092,9992,[2832,9896],[2832,9800],2829,2767,2830,[2767,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],0,0,0,0,[2832,9607],[2831,9608],2829,2831,2767,2832,2768,2765,[2831,9517],[2830,9417],[2831,9418],[2831,9419],[2832,9420],[2831,9512],2766,2832,2768,2832,2768,[2829,9613],[2831,9614],0,0,0,0,0,0,0,[2831,9607],[2830,9608],2829,2829,[2765,9805],[2830,9901],9902,0,0,0,[2832,9607],[2831,9608],2832,2768,[2767,9805],[2765,9901],9993,9994,[2830,9896],[2830,9800],2832,2831,2831,[2830,9709],[2767,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,10004,10005,10006,[2434,10098],[2435,10099],[2370,3242,10102],[3182,10194],[3243,10195],[3244,10196],[3244,10197],3182,[3062,2987],3246,3246,3246,3182,3180,3243,[3181,10097],[3181,10098],[3243,10099],[3246,10100],[3182,10101],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],[3599,9563],[3599,9366],[3533,9369],[3533,9556],[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11096,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15085,15022,15085,15021,15085,15086,15086,15021,15085,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[9979,9497],[3594,10075],[3528,10167],[3594,10164],[3594,10169],[3592,10170],[3333,10070],9974,9975,9976,9979,[3593,10073],[3529,10074],9974,9975,9976,9977,9978,9979,[3592,9980],[3528,9785],3268,3592,3592,3268,3592,3530,3592,[3593,10070,9592],9589,[9590,14],0,0,0,[9595,14],9596,[3528,9497],3594,3528,3268,3592,[3593,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9878,9879,9880,9788,[3594,9593],3593,3528,3528,3268,3529,3530,3592,3592,[3529,10070,9496],9685,[9686,14],0,0,0,0,[9595,14],9596,[3594,9497],3592,3594,3593,3529,3530,3592,3528,3269,3530,3592,3592,3530,3268,3528,3593,3528,3594,3594,3269,3529,3528,3594,[3594,9398],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3914,8657],[3914,8658],8659,[3977,8660],[3977,8657],[3978,8658],8659,[3977,8660],[3913,10102],3914,3978,3914,3913,3914,3913,3914,3914,3977,[3913,10097],[3913,8657],[3913,8658],8659,[3913,8660],[3978,8657],[3978,8658],8659,[3913,8660],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],0,0,0,0,0,9511,[2831,9512],2766,2765,2832,2831,2765,[2830,9613],[2766,9614],0,10088,[2768,9703],[2767,9704],2766,2767,2831,[2832,9805],[2831,9901],9993,9994,9994,9995,9996,[2829,9896],[2766,9800],2767,2832,[2765,9613],[2830,9614],9997,10093,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2767,9607],[2831,9608],2831,2766,2765,[2831,9517],[2767,9417],[2766,9418],[2832,9419],[2767,9420],[2766,9417],[2830,9418],[2832,9419],[2831,9420],9421,0,0,0,[2832,9703],[2830,9704],2830,2830,2830,2766,2765,2830,2767,2768,2829,2829,2765,2830,2831,2829,2830,2767,2768,[2768,9709],[2766,9710],0,0,0,0,0,0,0,[2767,9703],[2832,9704],2830,[2829,9805],[2829,9901],9997,9998,0,0,0,[2766,9703],[2831,9704],2767,[2765,9613],[2765,9614],9997,10089,10090,9992,[2832,9896],[2830,9800],2829,2765,[2767,9613],[2830,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[2435,10098],[2371,10099],[2435,10100],[2435,10101],[2435,10102],[2371,10194],[2371,10195],[2435,3115],3246,3244,3245,3246,3246,3244,3181,3243,3181,3246,3179,3180,3179,[3062,3307,10194],[3180,10195],[3180,10196],[3245,10197],[3180,10097],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9562,14],9462,9465,[9557,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15022,15086,15022,15086,15022,15022,15085,15086,15086,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3594,10075,9593],3530,3593,3594,3593,3593,3592,[3528,10070],[3530,10071],[3529,10072],[3594,10075],[3528,10169],[3592,10170],[3528,10070],[3529,10071],[3268,10072],[3268,10073],[3593,10074],[3268,10075],3268,3592,3530,3593,3269,3268,3528,3593,[3527,9303],[3530,9688,9306],9685,[9686,14],0,0,0,[9691,14],9692,[3528,9593],3594,3529,3530,3529,[3594,9688],[9877,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3592,10071],[3594,10072],9974,9975,9976,9884,[3530,9689],3594,3594,3592,3594,3268,3592,3529,3268,[3593,9592],9589,[9590,14],0,0,0,0,[9691,14],9692,[3592,9593],3530,3593,3592,3528,3528,3268,3594,3594,3528,3592,3593,3593,3528,3529,3592,3593,3593,3530,3528,3593,3594,[3528,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,10006,[3913,10102],[3914,10194],[3913,10195],[3977,10196],[3978,10197],[3913,10194],[3914,10195],[3913,10196],[3914,10197],3978,3978,3978,3914,3913,3978,3914,3914,3978,3978,3913,[3978,10194],[3977,10195],[3914,10196],[3913,10197],[3914,10194],[3977,10195],[3913,10196],[3977,10197],[3977,10097],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9415,9416,[2768,9417],[2767,9418],[2765,9419],[2830,9420],9421,0,0,0,0,[2829,9607],[2766,9608],2765,2768,2831,2767,2765,[2766,9709],[2768,9710],0,0,[2831,9703],[2829,9704],2830,2765,[2767,9709],[2767,9710],9997,10089,10090,10090,10091,10092,9992,[2767,9607],[2766,9608],2829,[2768,9709],[2829,9710],10093,0,0,0,0,0,0,10088,[2829,9703],[2766,9704],2767,2767,2768,2832,2830,2829,2765,2832,2829,2768,2829,2832,[2766,9517],9518,0,0,[2831,9607],[2831,9608],2831,2765,2831,2765,2768,2831,2830,2831,2832,2830,2768,2831,2767,2831,2830,2830,2831,[2765,9613],[2767,9614],0,0,0,0,0,0,9511,[2765,9512],2765,[2765,9613],[2829,9614],9997,10093,0,0,0,9511,[2767,9512],2831,2831,[2766,9709],[2768,9710],10093,[10185,14],[10186,14],10088,9992,[2832,9607],[2768,9608],2767,[2832,9709],[2766,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[10006,9524],[2371,10102],[2434,10194],[2435,10195],[2371,10196],[2435,10197],2434,2435,2371,2371,[2435,3242],3181,3244,3182,[3245,9330],[3182,9333],3180,3182,3245,3179,[3182,9330],[3180,9333],[3063,3117],3062,[3063,3306],3245,3243,3181,[3179,10097],10001,9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11096,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,11094,11094,0,0,0,0,11094,11094,11094,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15023,15024,15025,15085,15022,15085,15022,15021,15022,15026,15027,15028,15085,15085,15086,15022,15085,15085,15022,15086,15021,15086,15023,15024,15025,15350,15351,15149,15149,15350,15351,15022,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3594,9593],3528,3268,3529,3593,3527,3528,3528,[3591,10167],[3591,10168],3268,3529,3594,3529,[3530,10167],[3594,10168],[3268,10169],[3530,10170],3530,3529,3593,3592,3593,3528,3594,[3594,9397],[3592,9398],9399,9402,[9494,14],0,0,0,0,[9595,14],9596,[3268,9593],3593,3593,3594,3529,[3530,9784],[3269,9973,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3530,10075],[3592,10167],[3594,10168],[3594,10070],[3530,10071],[3594,10072],[3530,9980],[3268,9785],3268,3530,3529,3530,3268,3269,3594,3593,[3530,9592],9781,[9782,14],0,0,[9787,14],9879,9880,9788,[3593,9689],3268,3529,3592,3268,3594,3529,3529,3268,3530,3528,3528,3592,3268,3528,3528,3268,3530,3594,3268,[3530,9303],[3592,9306],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,10102,9524],3977,3978,3977,3977,3978,3913,3978,3977,3977,3914,3978,3914,3913,3914,3914,3913,3914,3978,3914,3977,3913,3977,3913,3914,3913,3977,3978,3914,3914,[3913,10097,9523],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9511,[2767,9512],2830,2829,2768,2767,[2766,9517],9518,0,0,0,[2829,9703],[2768,9704],2829,2830,2829,2765,2830,[2766,9805],[2832,9806],0,0,[2767,9607],[2832,9608],2830,2829,[2766,9613],[2765,9614],10093,[10185,14],[10186,14],[10186,14],[10187,14],[10188,14],10088,[2831,9703],[2767,9704],2765,[2765,9613],[2766,9614],0,0,0,0,0,0,0,0,[2767,9607],[2768,9608],2832,2765,2768,2767,2831,2765,2830,2829,2766,2768,2830,[2768,4249],[2767,9613],[2831,9614],0,0,[2831,9703],[2767,9704],2831,2829,2767,2832,2829,2829,[2831,9805],[2831,9897],[2766,9898],[2831,9899],[2768,9900],[2832,9800],2767,2832,2768,2830,2830,[2831,9709],[2830,9710],0,0,0,0,0,9511,[2829,9512],2832,2831,[2831,9709],[2765,9710],10093,0,0,0,9511,[2765,9512],2832,2766,2831,[2832,9613],[2765,9614],0,0,0,0,10088,[2767,9703],[2830,9704],2831,[2765,9613],[2831,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[2435,10102,9620],2370,1923,2371,2370,2371,2370,1922,2370,2370,[2370,3306],3179,3246,[3246,9425],9426,9429,[3246,9430],[3244,9330],[3243,9333],[3182,9425],9426,9429,[2998,9430],2998,3063,[3062,3115],3243,3181,3246,[3244,10097],9904,9905,9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,0,0,0,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,0,11094,11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15087,15088,15089,15085,15021,15021,15021,15022,15022,15090,15091,15092,15085,15086,15085,15022,15085,15021,15022,15022,15021,15085,15087,15218,15089,15414,15415,15213,15214,15414,15415,15022,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,9689],3592,3594,3593,3529,3592,3594,3592,3530,3593,3592,3530,3529,3530,3332,3529,3592,3593,3528,3529,3529,3529,3530,3529,3527,[3528,9493],[9494,14],0,0,0,0,0,0,0,[9787,14],9788,[3268,9593],3594,3593,3529,3268,3594,[3530,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3594,10075],3333,3528,3529,3593,[3529,10167],[3528,10168],3333,3593,3528,3592,3268,3528,3528,3268,3529,3594,[3528,9688],9877,9878,9879,9880,9883,9975,9976,9884,[3592,9689],3530,3530,3594,3528,3592,3268,3593,3530,3528,[3528,9303],[3530,9304],[3530,9305],[3530,9306],3593,3528,3594,3529,3594,[3592,9493],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,9620],3977,3978,3977,3914,3977,[3978,9330],[3978,9331],[3913,9332],[3913,9333],3914,3978,3977,3977,3977,3978,3913,3977,3977,3914,3978,[3978,9330],[3978,9331],[3913,9332],[3978,9333],3977,3977,3913,3914,3914,[3977,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9607],[2829,9608],2830,2832,2767,2768,[2767,9805],[2832,9806],0,0,0,[2766,9607],[2765,9608],2765,2832,2768,2768,[2831,9805],[2765,9901],9902,0,0,[2832,9703],[2831,9704],2767,2767,[2830,9709],[2768,9710],0,0,0,0,[9321,14],[9324,14],9416,[2831,9512],2768,2832,[2767,9709],[2765,9710],[9321,14],[9324,14],0,0,0,0,0,0,[2765,9703],[2767,9704],2829,2765,2768,[2829,9805],[2831,9897],[2832,9898],[2768,9800],2765,2829,2767,[2766,4344],[2766,4345],[2766,9709,4346],[2830,9710],0,0,[2767,9607],[2767,9608],2767,2831,2767,2832,2765,[2829,9805],[2768,9901],9993,9994,9995,9996,[2830,9896],[2831,9800],2768,2768,2830,2829,[2765,9805],[2832,9806],0,0,0,0,0,[2768,9607],[2765,9608],2829,2768,[2829,9805],[2829,9806],0,0,0,0,[2768,9607],[2831,9608],2765,2766,2831,[2831,9709],[2830,9710],0,0,0,0,0,[2829,9607],[2765,9608],2829,[2829,9709],[2765,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9908,9909,9910,9911,[2434,2991,9716],2435,2370,2370,2370,2371,2434,2371,2434,2435,2434,[2370,3115],[3246,9520],[9521,14],0,0,[9526,14],9426,9429,[9521,14],0,0,[9526,14],[3062,9527],3062,3062,[3062,3242],3179,3246,3180,[3243,10000],10001,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15151,15152,15153,15021,15021,15022,15085,15022,15086,15154,15155,15156,15021,15022,15021,15086,15021,15022,15085,15021,15086,15021,15151,15152,15153,0,0,0,0,0,0,15021,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3593,9403],3528,3269,3530,3592,3594,3530,3528,3592,3594,3528,3268,3528,3594,3594,3530,3593,3593,3593,3530,3529,3529,3268,[3527,9397],[3528,9398],[9494,14],0,0,0,0,0,0,0,[9595,14],9596,[9884,9497],[3594,9689],3593,3529,3594,3592,[3593,9397],[3529,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[3593,10075],3268,3528,3529,3268,3593,3594,3593,3528,3530,3530,3528,3593,3530,3592,3528,3592,3268,[3268,9784],[3592,9973],9974,9975,9976,9979,[3592,10071],[3528,10072],[3594,9980],[3592,9785],3593,3268,3528,3528,3593,3593,3530,3268,[3594,9398],9399,9400,9401,9402,[3530,9500],3529,3528,3529,[3594,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9620],3914,3977,3914,[3913,9424],[3978,9425],9426,9427,9428,9429,[3978,9430],3913,3977,3977,3978,3978,3913,3977,3977,[3914,9424],[3914,9425],9426,9427,9428,9429,[3978,9430],3913,3978,3914,3913,[3978,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2829,9799],[2831,9800],2767,2766,2831,[2766,9613],[2832,9614],9902,0,0,0,[2829,9703],[2832,9704],2766,2765,2768,[2829,9613],[2830,9614],9997,9998,0,0,[2832,9607],[2831,9608],2766,2768,[2829,9613],[2768,9614],0,0,0,9416,[2832,9417],[2768,9420],[2765,9512],2830,2768,2830,2831,[2831,9517],[2829,9417],[2831,9420],9421,0,0,0,0,0,[2831,9607],[2767,9608],2765,2767,[2830,9805],[2831,9901],9993,9994,[2829,9896],[2766,9800],2767,2767,2832,2765,[2829,9613],[2829,9614],0,0,[2830,9703],[2829,9704],2832,2830,2766,2831,[2832,9805],[2831,9901],9997,10089,10090,10091,10092,9992,[2830,9896],[2766,9897],[2765,9898],[2830,9899],[2768,9900],[2768,9901],9902,0,0,0,0,0,[2766,9703],[2766,9704],2765,[2765,9613],[2830,9614],9902,0,0,0,0,[2832,9703],[2832,9704],2832,2831,2832,[2830,9805],[2832,9806],0,0,0,0,0,[2832,9703],[2767,9704],2766,[2766,9613],[2767,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,10004,10005,10006,[3182,10007],[2434,3055,9812],2434,2370,2370,2435,1986,2434,2370,2370,2051,2371,[2370,9523],9712,[9713,14],0,0,0,0,0,0,0,0,0,[9526,14],[3063,9430],[2999,9330],[3062,3050,9333],3243,3182,3246,3181,[3243,10097],[3246,10098],[3181,10099],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15086,15021,15150,15150,15350,15351,15150,15150,15085,15085,15021,15149,15150,15149,15150,15149,15149,15149,15149,15150,15150,15085,15085,15021,0,0,0,0,0,0,15026,15028,15022,15021,15085,15022,15022,15085,15026,15028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3269,9500],3529,3269,3593,3332,3592,3594,3593,3530,3528,3530,3528,3528,3594,3268,3594,3592,3268,3528,3528,[3593,9303],[3594,9306],[3527,9493],[9494,14],0,0,0,0,0,0,0,0,[9691,14],9692,[3530,9980,9593],[3593,9785],3594,3592,3594,3268,[3594,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3529,10075,9497],3528,3528,3529,3529,3592,3529,3529,[3528,9303],[3593,9306],3530,3268,3530,3592,3528,3593,3268,3268,3268,3530,3592,[3594,10070],[3529,10071],[3594,10072],[3528,10075],[3528,10167],[3592,10168],3530,3593,3592,3529,3593,3530,3594,3594,3530,[3528,9398],[9494,14],0,0,0,[9595,14],9596,[3527,9303],[3530,9306],[3527,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3913,9620],3914,3977,3914,[3913,9520],9521,0,0,0,0,9526,[3914,9527],3978,3977,3978,3913,3913,3914,3913,[3978,9520],9521,0,0,0,0,9526,[3977,9527],3978,3914,3913,[3978,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9895,[2768,9896],[2768,9800],2765,2767,[2766,9709],[2766,9710],9998,0,0,0,[2830,9607],[2829,9608],2766,2765,2829,[2765,9709],[2768,9710],10093,0,0,0,[2832,9703],[2832,9704],2829,2767,[2832,9709],[2830,9710],0,0,0,[2765,9607],[2830,9608],2829,2767,2768,2830,2767,2765,2829,2766,2832,[2768,9517],9518,0,0,0,0,[2830,9703],[2766,9704],2831,[2831,9709],[2832,9710],9997,10089,10090,9992,[2830,9896],[2765,9800],2767,2832,2768,[2829,9709],[2767,9710],0,0,[2829,9607],[2831,9608],2765,2831,2832,[2829,9709],[2830,9710],9997,10093,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,9993,9994,9995,9996,9997,9998,0,0,0,0,0,[2767,9607],[2832,9608],2830,[2832,9709],[2766,9710],9998,0,0,0,0,[2766,9607],[2765,9608],2830,2767,[2766,9805],[2768,9901],9902,0,0,0,0,0,[2766,9607],[2829,9608],2829,[2830,9709],[2831,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3245,10098],[3243,10099],[3182,10100],[3182,10101],[3244,10102],3243,[2371,3119],2370,2434,2371,2370,2434,2371,2435,2371,2370,2371,[2371,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3179,9430],3245,3245,3179,3243,[3181,10194],[3180,10195],[3179,10097],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15086,15085,15214,15214,15414,15415,15214,15213,15021,15021,15021,15213,15214,15213,15213,15214,15213,15214,15213,15214,15213,15021,15022,15021,0,0,0,0,0,0,15154,15156,15086,15086,15022,15085,15021,15085,15154,15156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3594,9500],3593,3529,3268,3593,3592,3528,3592,3593,3268,3529,3593,3530,3592,3593,3268,[3529,9303],[3594,9306],[3529,9398],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,[9595,14],9596,[3592,9593],3268,3529,3594,3530,[3593,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3528,9593],3268,3530,3593,3593,3593,3529,[3528,9398],9399,9402,[3529,9403],3594,3530,3268,3593,3530,3593,3530,3528,3592,3529,3528,[3268,10167],[3268,10168],3594,3529,3528,3592,3530,3592,3268,3529,3529,3529,3268,[3594,9493],[9494,14],0,0,0,0,0,[9499,14],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9620],3978,3914,[3914,9523],9616,9617,0,0,0,0,9622,9623,[3978,9524],3977,3978,3913,3913,3978,[3914,9523],9616,9617,0,0,0,0,9622,9623,[3977,9524],3914,3978,[3913,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9991,9992,[2767,9703],[2767,9704],2830,[2767,9613],[2832,9614],0,0,0,0,[2829,9703],[2767,9704],2768,2765,2766,2829,[2831,9517],9518,[9321,14],[9324,14],9416,[2829,9512],2830,2829,2767,[2829,9613],[2765,9614],0,0,0,[2765,9607],[2830,9608],2829,2766,2765,2768,[2768,9805],[2831,9800],2831,2766,2832,[2766,9613],[2832,9614],0,0,0,0,[2768,9607],[2766,9608],2830,[2765,9613],[2768,9614],10093,[10185,14],[10186,14],10088,9992,[2768,9896],[2831,9897],[2832,9898],[2767,9899],[2765,9900],[2829,9806],0,0,[2766,9703],[2767,9704],2765,2830,2768,[2830,9613],[2767,9614],10093,0,0,0,0,0,0,10088,10089,10090,10091,10092,10093,0,0,0,0,0,0,[2829,9703],[2767,9704],2768,[2768,9613],[2830,9614],0,0,0,0,0,[2766,9703],[2767,9704],2829,[2832,9613],[2831,9614],9997,9998,0,0,0,0,0,[2830,9703],[2832,9704],2832,[2766,9613],[2768,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3182,10102],[3244,10194],[3182,10195],[3182,10196],[3245,10197],3246,3179,[2434,3183],2370,2434,2371,2370,2434,2371,2371,2434,[2371,9330],[2371,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3245,9527],[3180,9330],[3245,9333],3244,3245,3180,3180,[3179,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15086,15022,0,0,0,0,0,0,15085,15022,15086,0,0,0,0,0,0,0,0,0,0,15022,15021,15085,0,0,0,0,0,0,15086,15021,15150,15149,15149,15149,15149,15150,15086,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3593,9403],[3268,9303],[3528,9304],[3268,9305],[3592,9306],[3594,9303],[3594,9306],[3592,9398],[3591,9403],3528,3594,3528,3530,[3529,9397],[3530,9398],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3593,9593],3528,3592,3529,3268,[3529,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,9689],3592,3592,3333,3529,3594,[3594,9496],9589,[9590,14],0,[9499,14],[3592,9403],3594,3528,3268,3530,3268,3592,3530,3529,3529,3592,3528,3594,3593,3269,3529,3594,3530,3593,3529,3333,3268,3594,[3594,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,9620],3977,3978,[3913,9619],9712,9713,0,0,0,0,9718,9719,[3913,9620],3977,3977,3978,3914,3977,[3913,9619],9712,9713,0,0,0,0,9718,9719,[3978,9620],3978,3914,[3914,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,[2768,9607],[2766,9608],2766,2766,[2767,9517],9421,[9321,14],[9324,14],9416,[2765,9512],2765,2767,2765,2765,2829,2765,[2829,9517],[2766,9417],[2832,9420],[2829,9512],2829,2766,2767,2830,[2830,9709],[2765,9710],0,0,0,[2765,9799],[2765,9800],2832,2831,2766,[2829,9805],[2767,9901],[2767,9896],[2768,9800],2768,2765,[2829,9709],[2768,9710],0,0,0,0,[2829,9703],[2767,9704],2768,[2768,9709],[2765,9710],0,0,0,0,10088,9992,9993,9994,9995,9996,9902,0,0,[2767,9607],[2766,9608],2831,2768,2768,[2767,9709],[2767,9710],0,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],[10185,14],[10186,14],[10187,14],[10188,14],0,0,0,0,0,0,9511,[2766,9512],2829,2768,[2765,9709],[2829,9710],0,0,0,0,9416,[2832,9512],2765,2831,[2831,9709],[2767,9710],10093,0,0,0,0,0,9416,[2766,9512],2765,2831,[2767,9709],[2829,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3063,3242,10102,9620],3180,3179,3180,3179,3179,3181,3244,[2370,3118],2371,2434,2370,2371,2370,2434,2435,[2434,9425],9426,[9521,14],0,0,0,0,0,[9814,14],9903,9909,[9809,14],0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3246,9430],3179,3181,3245,[3181,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,8918,8919,8920,8918,8919,8920,8918,8919,8920,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15023,15024,15025,15085,15021,15021,15086,15085,15021,15021,15021,15085,15086,15022,15085,15022,15026,15027,15028,0,0,0,0,0,0,15021,15086,15021,0,0,0,0,0,0,0,0,0,0,15022,15086,15086,15022,15022,15022,15022,15086,15026,15027,15028,15214,15213,15214,15213,15214,15213,15021,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9401,9402,9399,9402,[9494,14],[9499,14],[3592,9403],[3529,9303],[3591,9304],[3529,9306],[3593,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3594,9593],3592,3593,3530,3333,[3530,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9876,[9782,14],0,0,0,0,0,[9499,14],[3593,9500],3593,3529,3268,3529,3529,[3528,9688],9685,[9686,14],0,[9595,14],9596,[3530,9497],3529,3592,3528,3333,3528,3528,3593,3592,3594,3268,3529,3593,3529,3592,3593,3529,3268,3528,[3594,9303],[3529,9306],[3594,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9883,9975,9976,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3913,9620],3913,3914,[3977,9619],9808,9809,0,0,0,0,9814,9815,[3914,9620],3978,3914,3914,3978,3914,[3978,9619],9808,9809,0,0,0,0,9814,9815,[3978,9620],3914,3977,[3914,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2832,9703],[2768,9704],2767,2830,2765,[2830,9517],[2768,9417],[2830,9420],[2830,9512],2767,2832,2765,2765,2831,2832,2831,2832,2831,2829,2829,2767,2829,2768,2829,[2829,9613],[2765,9614],0,0,0,9895,[2765,9607],[2768,9608],2766,[2766,9613],[2832,9614],9997,9992,[2829,9607],[2767,9608],2766,2767,[2831,9517],9518,0,0,9416,[2830,9512],2829,2830,[2830,9709],[2830,9710],0,0,0,0,0,10088,10089,10090,10091,10092,9998,0,0,[2832,9703],[2830,9704],2831,2830,2766,[2829,9805],[2830,9806],0,0,0,9416,[2766,9417],[2765,9418],[2765,9419],[2767,9420],9518,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],9511,[2829,9512],2765,2768,2832,2831,[2768,9517],9518,[9321,14],[9324,14],9511,[2831,9512],2831,2830,2768,2832,[2832,9517],9421,[9321,14],[9322,14],[9323,14],[9324,14],9511,[2768,9512],2830,2829,2832,[2830,9613],[2832,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3063,3050,9620],3179,3243,3245,3244,3182,3246,[2370,3055],1923,2370,2370,2435,2434,2370,2370,[2371,9520],[9521,14],0,0,0,0,0,0,[9814,14],9910,9999,10005,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,[9526,14],[3179,9527],3182,3246,[3246,9715],9904,9905,9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9014,9015,9016,9014,9015,9016,9014,9015,9016,9878,9879,9880,8919,8920,9880,8918,8919,8920,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,8918,8919,8920,9782,0,0,0,0,0,0,0,0,0,0,9787,8918,8919,8920,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15087,15088,15089,15022,15086,15022,15086,15021,15022,15022,15085,15022,15022,15086,15086,15086,15090,15091,15092,0,0,0,0,0,0,15022,15086,15021,0,0,0,0,0,0,0,0,0,0,15021,15022,15021,15085,15022,15021,15022,15022,15090,15218,15092,0,0,0,0,0,0,15022,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,9593],3333,3592,3268,3268,[3333,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,[3528,9972],9878,[9782,14],0,0,0,0,0,[9499,14],[3529,9403],3529,3593,3528,3593,[3593,9398],[9494,14],0,0,[9595,14],9596,[3594,9593],3594,3268,3594,3593,3528,3594,[3528,9303],[3528,9304],[3528,9305],[3593,9306],3593,3594,3530,3594,3594,3530,3530,[3529,9493],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9979,[3594,10071],[3529,10072],[3594,10073],[3593,10074],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3913,9716],3978,3977,[3913,9715],9904,8464,9906,9903,9908,9909,8469,8470,[3913,9716],3914,3913,3914,3977,3977,[3913,9715],9904,8464,9906,9903,9908,9909,8469,8470,[3978,9716],3914,3914,[3978,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2832,9607],[2766,9608],2768,2829,2831,2766,2765,2765,2767,2767,2829,[2768,4249],2829,2768,2767,2767,2830,2766,2829,2768,2767,2765,2768,2765,[2830,9709],[2829,9710],0,0,0,9991,[2766,9703],[2768,9704],2832,[2766,9709],[2832,9710],10093,10088,[2830,9703],[2830,9704],2767,2832,2768,[2829,9517],9421,9511,[2767,9512],2767,2768,2765,[2830,9613],[2832,9614],0,0,0,0,0,0,[10185,14],[10186,14],[10187,14],[10188,14],0,0,0,[2830,9607],[2830,9608],2831,2765,[2832,9805],[2765,9901],9902,0,0,0,[2765,9607],[2765,9608],2766,2767,2829,[2765,9517],[2831,9417],[2766,9418],[2767,9419],[2767,9420],[2768,9417],[2829,9418],[2767,9419],[2830,9420],[2831,9512],2829,2830,2765,2831,2768,2829,[2830,9517],[2832,9417],[2768,9420],[2831,9512],2832,2832,2766,2765,2766,2829,[2831,9517],[2831,9417],[2766,9418],[2829,9419],[2767,9420],[2831,9512],2767,2767,2830,2765,[2831,9709],[2768,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[3062,3114,9716],3179,3181,3245,3244,3245,3182,[2370,3119],2371,2435,2434,2370,2435,2434,[2370,9523],9712,[9713,14],0,0,0,0,0,[9814,14],9910,10006,[3063,10095],[3062,10101],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,[9622,14],9623,[3243,9524],3181,[2435,3311,9811],[2435,10000],10001,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9979,[3908,9110],[3905,9111],[3907,9112],[3908,9110],[3905,9111],[3905,9112],[3908,9110],[3969,9111],[3906,9112],9974,9975,9014,9015,9016,9976,9014,9015,9016,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9014,9015,9016,9878,9879,9880,8919,8920,9880,8918,8919,9880,9881,9882,9883,9014,9015,9016,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15151,15152,15153,15021,15085,15085,15021,15022,15086,15086,15022,15022,15022,15022,15022,15086,15154,15155,15156,0,0,0,0,0,0,15085,15086,15022,0,0,0,0,0,0,0,0,0,0,15022,15022,15342,15344,15344,15343,15343,15345,15154,15155,15156,0,0,0,0,0,0,15086,15022,0,0,0,0,15022,15085,15086,15086,15022,15021,15085,15021,15085,15021,15021,0,0,0,15021,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3529,9593],3528,3592,3594,3594,[3594,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3268,10071],[3268,10068],9974,9878,[9782,14],0,0,0,0,0,[9499,14],[3592,9403],[3593,9303],[3529,9306],[3592,9398],[9494,14],0,0,0,[9691,14],9692,[3592,9593],3269,3529,3530,3593,3594,[3594,9398],9399,9400,9401,9402,[3593,9403],3530,3268,3592,3529,3592,[3529,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,10071,[3528,10072],[3529,10075],[3592,10167],[3594,10168],[3528,10169],[3529,10170],[3530,10070],9974,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9430],3977,3913,[3914,9811],[3913,10000],8560,10002,9999,10004,10005,8565,[3914,8566],[3913,9812],3977,3914,3914,3914,3914,[3977,9811],[3978,10000],8560,10002,9999,10004,10005,8565,[3914,8566],[3913,9812],3914,3978,[3978,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9703],[2768,9704],2829,2831,2831,2829,2765,2766,2829,2829,[2765,4344],[2831,4345],[2830,4346],2766,2765,2766,2766,2768,2766,2831,2829,2832,2767,2766,[2830,9613],[2767,9614],0,0,0,0,[2768,9607],[2831,9608],2832,[2832,9613],[2766,9614],0,0,[2830,9799],[2829,9800],2831,2829,2766,2829,[2766,9517],[2768,9512],2768,2767,2768,2765,[2830,9709],[2765,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9607],[2832,9608],2768,[2767,9613],[2829,9614],9997,9998,0,0,0,[2768,9703],[2831,9704],2829,2767,2767,2832,2767,2829,2829,2766,2832,2832,2767,2830,2830,2829,2767,2832,2831,2765,2831,2768,2768,2765,2767,2765,2766,2767,2768,2767,2768,2767,2831,2829,2832,2831,2768,2832,2829,2765,2830,[2832,9613],[2766,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3063,10007],[2999,3178,9812],3180,3181,3182,3246,3180,3246,[2435,3183],2434,2370,1987,2435,2370,2434,[2370,9619],9808,[9809,14],0,0,0,0,[9622,14],9623,10006,[3244,10102],[3062,3054,10191],[3063,10197],[3063,10097],[10001,9523],9712,[9713,14],0,0,0,0,0,0,0,0,[9718,14],9719,[2370,3310,9620],[2371,3118],2178,2435,[2434,10097],[2435,10098],[2435,10099],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,9979,[3521,10075],[3971,9206],[3520,9207],[3394,9208],[3971,9206],[3908,9207],[3906,9208],[3905,9206],[3971,9207],[3458,9208],[3908,10070],[3522,10071],[3905,9110],[3969,9111],[3521,9112],[3906,10072],[3905,9110],[3969,9111],[3906,9112],9974,9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[9979,9497],[3905,9110],[3393,9111],[3907,9112],9974,9975,9014,9015,9016,9976,9014,9015,9016,9977,9978,9979,[3971,9110],[3906,9111],[3521,9112],[9974,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15085,15022,15149,15149,15350,15351,15150,15150,15149,15149,15150,15350,15351,15149,15149,15086,15086,15086,0,0,0,0,0,0,15026,15027,15028,15022,15022,15021,15022,15021,15085,15086,15021,15021,15085,15086,15086,15470,15541,15408,15407,15407,15542,15345,15086,15021,0,0,0,0,0,0,15022,15085,0,0,0,15085,15022,15085,15021,15086,15021,15021,15022,15085,15022,15021,15022,0,0,0,15086,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3268,9593],3268,3528,3593,3529,[3528,9784],[3527,9973],[9974,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[9979,9497],[3268,10075],[3530,10167],[3593,10164],[3268,10070],9974,9878,[9782,14],0,0,0,0,0,[9499,14],9399,9402,[9494,14],0,0,[9787,14],9879,9880,9788,[3529,9593],3530,3530,3268,3593,[3530,9493],[9494,14],0,0,0,0,[9499,14],[3529,9500],3594,3592,3530,[3592,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3593,10075,9497],[3528,10167],[3268,10168],3593,3530,3594,3268,3593,3530,[3530,10070,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3977,9527],3914,3914,3977,[3913,8656],[3913,10098],[3914,10095],[3913,10100],[3914,10101],[3977,8661],3978,3977,3914,3977,3977,3978,3914,3914,3914,[3978,8656],[3913,10098],[3978,10095],[3978,10100],[3977,10101],[3978,8661],3914,3913,3978,3914,[3913,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9607],[2829,9608],2766,2830,2830,[2831,9805],[2765,9897],[2832,9898],[2765,9800],2767,2832,2767,2831,2767,[2829,9805],[2830,9897],[2766,9898],[2767,9899],[2768,9900],[2768,9800],2768,2767,2832,2768,[2830,9709],[2831,9710],0,0,0,0,[2831,9703],[2829,9704],2831,[2830,9709],[2832,9710],0,0,9895,[2832,9896],[2766,9800],2832,2767,2830,2768,2832,2832,2832,2765,2768,[2765,9805],[2765,9806],9320,[9321,14],[9322,14],[9323,14],[9324,14],0,0,0,0,0,0,0,0,[2832,9703],[2767,9704],2829,[2832,9709],[2765,9710],10093,0,0,0,9511,[2768,9512],2832,2767,2829,2831,2830,2831,2829,2766,2768,2830,2830,2766,2768,2829,2766,2767,2829,2832,2829,2766,2832,2829,2765,2829,2768,2768,2832,2767,2766,2765,2765,2768,2765,2830,2831,2765,2829,2831,2765,2766,[2832,9709],[2768,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3063,10102,9620],3062,[3063,3242],3245,3244,3245,[3181,9330],[3180,9331],[3244,9332],[2371,3247,9333],2435,2371,2434,1987,2434,2434,[2371,9715],9904,9905,0,0,0,0,[9718,14],9719,[3182,10102],3244,[3062,3055],3063,3062,[3063,10097,9619],9808,[9809,14],0,0,0,0,0,0,0,0,[9622,14],9623,[2435,9620],2434,2435,2370,2435,[2435,10194],[2370,10195],[2435,10097],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3906,10075],3906,3393,3906,3906,3908,3906,3905,3908,3969,3969,3392,[3969,10167],[3969,9206],[3907,9207],[3907,9208],[3906,10168],[3906,9206],[3969,9207],[3394,9208],[3971,10070],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3522,10075,9593],[3906,9206],[3393,9207],[3907,9208],[3458,10070],[3971,10071],[3908,9110],[3971,9111],[3457,9112],[3906,10072],[3522,9110],[3392,9111],[3905,9112],[3971,10073],[3969,10074],[3971,10075],[3456,9206],[3969,9207],[3905,9208],[3907,10070,9592],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15022,15085,15214,15214,15414,15415,15213,15214,15213,15214,15214,15414,15415,15213,15214,15085,15021,15021,0,0,0,0,0,0,15154,15155,15156,15022,15021,15021,15022,15022,15022,15085,15021,15086,15021,15022,15086,15086,15406,15408,15408,15407,15408,15409,15021,15021,0,0,15086,15021,15085,15021,15021,15022,15022,15022,15086,15021,15085,15021,15149,15150,15150,15150,15150,15149,15149,15022,15086,0,0,0,15086,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9884,[3592,9689],3593,3530,3592,3592,3528,3529,[3593,10070,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3529,10075,9593],3594,3528,3593,3592,[3268,10070],[9974,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9884,[3594,9689],3594,3528,3529,[3594,9496],9589,[9590,14],0,0,0,0,[9691,14],9692,[3528,9497],3594,3594,[3530,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9881,9882,9879,9880,[9782,14],0,0,0,0,0,0,[9595,14],9596,[3529,9593],3530,3528,3528,3528,3530,3530,3594,3592,[3593,9496,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],3914,3914,3914,[3913,10194],[3913,10191],[3977,10196],[3978,10197],3978,3978,3977,3977,3977,3913,3977,3977,3914,3913,3977,[3914,10194],[3977,10191],[3913,10196],[3913,10197],3914,3977,3914,3977,[3914,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2830,9703],[2766,9704],2766,2768,[2831,9805],[2765,9901],9993,9994,[2766,9896],[2766,9800],2831,2768,2767,[2831,9805],[2832,9901],9993,9994,9995,9996,[2830,9896],[2829,9800],2830,2766,2832,2831,[2832,9517],9518,[9321,14],[9324,14],9511,[2832,9512],2829,2765,[2831,9613],[2765,9614],0,0,9991,9992,[2767,9896],[2830,9897],[2768,9898],[2831,9800],2830,2832,2829,2767,2766,[2830,9805],[2768,9901],9902,9416,[2829,9417],[2765,9418],[2830,9419],[2832,9420],9421,0,0,0,0,0,0,9416,[2830,9512],2831,2830,2768,[2766,9517],9518,0,0,9511,[2765,9512],2829,2765,2766,2765,2768,2829,[2831,9805],[2832,9897],[2829,9898],[2768,9800],2765,2829,2830,2767,[2830,9805],[2830,9897],[2830,9898],[2830,9800],2832,2830,[2766,9805],[2766,9897],[2767,9898],[2767,9898],[2765,9800],2768,2768,2765,2767,2829,2768,[2765,9805],[2830,9897],[2830,9898],[2766,9899],[2831,9900],[2766,9800],2768,2829,2831,2830,[2831,9613],[2830,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3063,9620],3062,[3062,3306],[3062,3307],3245,[3181,9425],9426,9427,9428,9429,[2435,9430],2434,2371,2370,2371,2435,[2371,9811],[2370,10000],10001,9616,[9617,14],0,0,0,[9526,14],[3180,9527],3244,[3062,3183],3062,3062,[3063,9715],9904,9905,9906,9907,[9809,14],0,0,0,0,0,[9718,14],9719,[2371,9620],2434,2370,2435,2370,2434,2434,2434,[2434,10097],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3906,9403],3907,3971,3969,3908,3971,3971,3906,3905,3907,3907,3908,3906,3906,3456,3969,3394,3906,3906,3458,3907,9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3908,9689],3971,3906,3908,3906,[3522,10167],[3908,9206],[3906,9207],[3908,9208],[3908,10168],[3971,9206],[3971,9207],[3969,9208],[3458,10169],[3907,10170],3971,3908,3905,3907,[3457,9688,8924],8925,8926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15086,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15022,15085,0,0,0,0,0,0,15086,15021,15086,15150,15150,15150,15350,15351,15085,15086,15021,15085,15021,15086,15086,15086,15406,15408,15408,15407,15407,15409,15086,15085,15085,15021,15022,15085,15085,15022,15021,15021,15086,15085,15022,15085,15150,15150,15213,15214,15213,15213,15214,15213,15213,15085,15085,15085,15085,15085,15085,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9881,9882,9883,9979,[3592,9980],[3530,9785],3594,3594,3529,3593,3268,3529,[3529,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3529,9403],3530,3592,3333,3268,3529,[3530,10070,9592],9781,[9782,14],0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3528,10071],[3594,10072],[3528,9980],[3592,9785],3529,3530,3593,[3530,9688],9685,[9686,14],0,0,0,0,[9595,14],9596,[3529,9593],3528,3593,[3592,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9977,9978,9975,9976,9878,[9782,14],0,0,0,0,0,[9691,14],9692,[3529,9689],3594,3268,3592,3528,3593,3593,3530,3592,[3593,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9430],3913,3913,3977,3977,3978,3977,3913,3978,3977,3913,3914,3913,3913,3978,3977,3977,3977,3978,3978,3914,3977,3914,3913,3978,[3978,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2765,9607],[2765,9608],2768,[2832,9613],[2830,9614],9997,10089,10090,9992,[2765,9703],[2830,9704],2768,[2832,9613],[2829,9614],9997,10089,10090,10091,10092,9992,[2766,9896],[2829,9800],2829,2829,2832,2831,[2767,9517],[2831,9417],[2831,9420],[2832,9512],2830,2830,2829,[2767,9709],[2831,9710],0,0,0,10088,9992,9993,9994,[2832,9896],[2832,9800],2766,2765,2767,[2829,9709],[2832,9710],9997,9998,[2768,9607],[2767,9608],2767,2829,2768,[2832,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],9416,[2832,9512],2829,2832,2829,2832,2829,[2829,9517],9518,9511,[2829,9512],2765,2832,2830,2768,2832,2768,[2830,9805],9901,9993,9994,[2765,9896],[2829,9800],2767,2768,[2830,9805],[2831,9901],9993,9994,[2830,9896],[2829,9897],[2767,9898],[2767,9901],9993,9994,9994,[2830,9896],[2830,9800],2768,2767,2765,2831,[2767,9805],[2830,9901],9993,9994,9995,9996,[2768,9896],[2768,9800],2767,2765,2766,[2831,9709],[2832,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[3063,9716],3063,3063,3063,[3062,3116,9520],[9521,14],0,0,0,0,[9526,14],[2435,9527],2370,2435,2370,2435,1987,2371,[2435,10097],9712,[9713,14],0,0,0,0,[9526,14],[3246,9527],[3063,3247],3063,3063,[3062,9811],[3062,10000],10001,10002,10003,9905,[9809,14],0,0,0,0,[9814,14],9815,[2435,9620],2370,2371,2371,2434,2370,2434,2434,2434,[2370,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3906,9403],3971,3905,3456,3457,3907,3906,3522,3906,3392,3971,3907,3907,3907,3521,3971,3907,3969,3908,[3905,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3907,9500],3394,3908,3522,3908,3969,3907,3392,3971,3908,3969,3969,3906,3905,3392,3908,3457,3908,3457,[3906,9020],9021,[74,9022],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15022,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,15026,15027,15028,15021,15085,15021,15021,15085,15022,15023,15024,15025,15213,15213,15214,15414,15415,15150,15149,15149,15149,15022,15021,15085,15085,15406,15408,15408,15283,15407,15409,15022,15086,15086,15022,15085,15086,15149,15149,15350,15351,15149,15150,15149,15150,15214,15214,0,0,0,0,0,0,0,15149,15022,15021,15021,15021,15085,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9977,9978,9979,[3268,10075],3594,3528,3530,3592,3530,3268,3593,3592,[3592,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3529,9500],3268,3593,3529,3592,[3593,9688],9877,9878,9879,9880,9881,9882,[9782,14],0,0,[9787,14],9883,9979,[3530,10075],[3592,10167],[3593,10168],3268,3594,3529,3268,3530,[3594,9398],[9494,14],0,0,0,0,0,[9691,14],9692,[3529,9593],3530,3594,[3530,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3593,10071],[3528,10072],[3592,10073],[3530,10074],[3592,10071],[3530,10072],9974,9878,[9782,14],0,0,0,0,0,[9499,14],[3528,9500],3529,3593,3530,3530,3268,3530,3268,3528,[3529,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3913,9527],[3914,9330],[3978,9333],[3913,9330],[3914,9331],[3978,9332],[3978,9333],[3914,9330],[3978,9331],[3977,9332],[3978,9333],[3977,9330],[3913,9331],[3913,9332],[3913,9333],[3913,9330],[3913,9331],[3914,9332],[3977,9333],[3977,9330],[3977,9331],[3978,9332],[3977,9333],[3914,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2829,9703],[2765,9704],2831,[2829,9709],[2829,9710],10093,[10185,14],[10186,14],10088,[2765,9607],[2766,9608],2832,[2830,9709],[2768,9710],10093,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2767,9607],[2768,9608],2832,2831,2832,2766,2766,2767,2830,2766,2765,2765,2831,[2829,9517],9518,0,0,0,10088,10089,10090,9992,[2767,9896],[2766,9800],2766,2768,[2831,9709],[2768,9710],10093,0,[2765,9703],[2766,9704],2767,2831,2765,2832,[2829,9517],[2765,9417],[2766,9418],[2830,9419],[2768,9420],[2765,9512],2765,2831,2830,2766,2766,2765,2766,[2766,9517],[2768,9512],2767,2766,2766,2830,2768,2768,[2765,9805],9901,9997,10089,10090,9992,[2829,9607],[2829,9608],[2765,9613],[2832,9614],9997,10089,10090,9992,9993,9994,9997,10089,10090,10090,9992,[2830,9607],[2765,9608],2765,2829,[2768,9805],[2766,9901],9997,10089,10090,10091,10092,9992,[2768,9896],[2765,9800],2832,2766,[2830,9613],[2832,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3063,10007],[3062,9812],2998,3063,[3063,9523],[3063,9712],[9713,14],0,0,0,0,[9718,14],9719,[2370,9524],2435,2370,2434,2370,2370,[2435,9425],[9521,14],0,0,0,0,0,[9622,14],9623,[3245,9524],[3063,3054],3063,3063,3063,[3063,10097],[3062,3178,10098],[3179,10099],10001,9905,[9809,14],0,0,[9814,14],9910,9911,[2434,9716],2370,2434,2434,2434,2050,2434,2370,2435,[2371,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3969,9500],3905,3908,3905,3969,3908,3520,3908,3971,3908,3969,3907,3908,3907,3908,[3969,9303],[3905,9306],[3969,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9403],3906,3456,3969,3971,3971,3905,3393,3971,3905,3907,[3522,9303],[3456,9304],[3905,9305],[3906,9306],3969,3905,3394,[3906,9116],[74,9117],[74,9118],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15085,15086,15348,15349,15348,15349,15086,15021,15085,15022,0,0,0,0,0,15090,15091,15092,15086,15022,15021,15086,15021,15085,15087,15088,15089,0,0,0,0,0,15213,15213,15213,15213,15149,15085,15022,15022,15406,15408,15408,15408,15407,15409,15022,15086,15022,15021,15150,15150,15214,15213,15414,15415,15213,15214,15213,15213,0,0,0,0,0,0,0,0,0,15214,15150,15149,15150,15149,15150,15149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9881,9882,9883,9979,[3530,10073],[3530,10074],[3593,10075],3528,3268,3529,3529,3528,3593,3528,3268,3592,[3593,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3530,9497,9303],[3530,9306],3529,3528,[3593,9784],[3332,9973],9974,9975,9976,9977,9978,9878,9879,9880,9883,9979,[3268,10075],3529,3268,3593,3268,3529,3268,3593,[3594,9398],[9494,14],0,0,0,0,0,[9787,14],9879,9788,[3593,9593],3593,3528,[3592,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[9979,9497],[3593,10075],[3530,10167],[3529,10168],[3528,10169],[3594,10170],[3529,10167],[3268,10168],[3528,10070],9974,9589,[9590,14],0,0,0,0,0,[9499,14],[3529,9403],3593,3594,3529,3528,3529,3333,3528,[3527,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,9426,9427,9428,9429,9426,9427,9428,9429,9426,9427,9428,9429,9426,9427,9428,9429,9426,9427,9428,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2829,9607],[2766,9608],2829,[2830,9613],[2832,9614],0,0,0,0,[2832,9703],[2767,9704],2829,[2767,9709],[2766,9710],0,0,0,0,0,0,10088,[2765,9703],[2831,9704],2768,2831,2829,2765,2767,2830,2831,2768,2768,2831,2766,2829,[2767,9517],9421,0,0,0,[10185,14],[10186,14],10088,9992,[2767,9607],[2830,9608],2830,[2829,9613],[2832,9614],0,0,[2832,9607],[2830,9608],2768,2768,2829,2829,2832,2765,2831,2766,2829,2768,2766,2766,2829,2768,2832,2832,2765,2831,2767,2829,2830,2831,2830,2768,[2765,9613],[2765,9614],9997,10093,[10185,14],[10186,14],10088,[2829,9703],[2767,9704],[2765,9709],[2768,9710],10093,[10185,14],[10186,14],10088,10089,10090,10093,[10185,14],[10186,14],[10186,14],10088,[2768,9703],[2830,9704],2768,[2830,9613],[2830,9614],9997,10093,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2765,9607],[2831,9608],2765,[2831,9709],[2830,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3062,10102,9620],3062,3062,3063,3063,[3062,9619],9808,[9809,14],0,0,0,0,[9814,14],9815,[2370,9620],2371,2434,2370,2370,[2370,9520],[9521,14],0,0,0,0,0,0,[9718,14],9719,[3182,9620],3181,[3062,2987],[2999,3053],3063,3062,[2998,3242,10194],[3243,10195],[3244,10097],[10001,9523],9616,[9617,14],[9622,14],9623,[10006,9524],[2371,10007],[2242,9812],2243,2370,2435,2371,2434,2370,2434,2434,[2371,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,8921],8922,[3907,8923],3905,3906,3969,3907,3906,3906,3906,3905,3905,3971,3520,3969,[3908,9493],9399,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3458,9403],3971,3907,3908,3907,3908,3905,3907,3905,[3906,9493],9399,9400,9401,9402,[3458,9500],3971,3971,[3907,9493],[74,9494],74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15086,15085,15412,15413,15412,15413,15022,15021,15085,15022,0,0,0,0,0,15154,15155,15156,15086,15086,15086,15021,15085,15021,15151,15152,15153,0,0,0,0,0,0,0,0,0,15214,15150,15021,15085,15470,15471,15472,15472,15472,15473,15085,15021,15150,15150,15213,15214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15213,15213,15214,15213,15213,15213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9977,9978,9979,[3593,10075],[3594,10169],[3268,10170],3268,3530,3528,3528,3594,3593,3528,3530,3268,3529,[3529,9784],[3530,9973],[9974,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9402,[3530,9500],3528,3529,3530,[3529,10070],[3593,10071],[3592,10072],[3594,10073],10074,9974,9975,9976,9979,[3269,10075],3268,3593,3593,3594,3528,[3592,9303],[3594,9306],[3594,9493],[9494,14],0,0,0,0,0,[9787,14],9883,9975,9884,[3594,9689],3268,3593,[3594,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3594,10075,9593],3332,3594,3594,3593,3530,3528,3268,3593,[3530,10070,9496],9685,[9686,14],0,0,0,0,0,[9595,14],9596,[3592,9497],3594,3594,3530,3592,3530,3592,[3593,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2829,9703],[2767,9704],2831,[2831,9709],[2829,9710],0,0,0,0,[2831,9607],[2766,9608],2766,2829,[2829,9517],9421,[9321,14],[9324,14],0,0,0,0,[2831,9607],[2766,9608],2767,2831,2766,2829,[2829,9805],[2766,9897],[2765,9898],[2768,9898],[2767,9800],2767,2829,2831,2767,[2768,9517],9518,[9321,14],[9324,14],0,0,0,10088,[2831,9703],[2831,9704],2767,[2765,9709],[2832,9710],0,0,[2830,9703],[2829,9704],2829,2766,2766,2829,2832,2765,2768,2765,2831,2766,2831,2830,2829,2829,2768,2832,2766,2832,2767,2830,2767,2767,2768,2766,[2832,9709],[2831,9710],10093,0,0,0,0,[2765,9607],[2831,9608],[2768,9613],[2831,9614],0,0,0,0,[10185,14],[10186,14],0,0,0,0,0,[2832,9607],[2766,9608],2767,[2768,9709],[2766,9710],10093,0,0,0,0,0,0,10088,[2830,9703],[2767,9704],2829,[2832,9613],[2766,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[2998,9716],3062,3062,3062,2998,[3062,9715],9904,9905,9906,9907,9908,9909,9910,9911,[2435,9716],2371,2435,2435,[2370,9523],9712,[9713,14],0,0,0,0,0,0,[9622,14],9623,[3182,9620],3182,3180,3245,[3063,2991],3063,[3062,3306],[3063,3307],[3063,3308],[3063,10097,9619],9712,[9713,14],[9718,14],9719,[2434,10102,9620],2371,2306,2307,2434,2371,2371,2371,2370,2371,2370,[2435,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9017],9018,[3457,9019],3907,3908,3907,3906,3971,[3905,9303],[3457,9304],[3907,9305],[3393,9306],[3969,9303],[3969,9306],[3906,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,8921],8922,[3907,8923],3393,3906,3908,3394,3969,3971,[3905,9496],9589,9590,0,0,0,9499,[3905,9500],[3971,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15022,15597,15476,15476,15476,15477,15476,15476,15476,15598,0,0,0,0,0,15149,15150,15150,15350,15351,15149,15150,15149,15150,15085,15603,15021,0,0,0,0,0,0,0,0,0,0,15214,15086,15086,15085,15086,15022,15021,15021,15086,15021,15085,15213,15213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3529,10073],[3592,10074],[3530,10075],3268,3593,3530,3333,3530,3594,3528,3594,3528,3268,3528,3592,3594,3593,3529,[3527,10070,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9596,[3592,9497],3593,3594,3594,[3593,10167],[3529,10168],[3268,10169],[3593,10170],[3593,10070],[3530,10071],[3592,10072],[3529,10075],3268,3268,3592,3593,3592,[3528,9398],9399,9402,[9494,14],0,0,0,0,0,[9787,14],9883,9979,[3594,10071],[3594,9980],[3594,9785],3333,3269,[3530,9784],[3592,9973],9974,9589,[9590,14],0,0,0,0,0,0,0,0,[9787,14],9883,9884,[3529,9689],3594,3592,3594,3528,3594,3594,3529,3593,[3530,9592],9589,[9590,14],0,0,0,0,0,[9691,14],9692,[3530,9593],3594,3528,3530,3530,3529,[3529,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2832,9607],[2767,9608],2767,[2831,9613],[2830,9614],0,0,0,0,[2831,9703],[2829,9704],2831,2829,2768,[2832,9517],[2830,9417],[2831,9420],9421,0,0,0,[2832,9703],[2768,9704],2832,2831,2829,[2767,9805],[2768,9901],9993,9994,9994,[2766,9896],[2831,9800],2831,2768,2765,2767,[2765,9517],[2765,9417],[2831,9420],9421,0,0,0,[2767,9607],[2766,9608],2829,[2765,9613],[2830,9614],0,0,[2832,9607],[2830,9608],2831,2765,2765,[2829,9805],[2832,9897],[2831,9898],[2829,9899],[2832,9900],[2832,9897],[2829,9898],[2830,9800],2768,2831,2831,2765,2830,[2765,9805],[2768,9897],[2830,9898],[2765,9800],2829,2765,2831,2832,[2829,9613],[2768,9614],0,0,0,0,0,[2768,9703],[2768,9704],[2766,9709],[2765,9710],[9321,14],[9324,14],0,0,0,0,0,0,0,0,0,[2765,9703],[2766,9704],2830,[2831,9613],[2768,9614],0,0,0,0,0,0,0,0,[2765,9607],[2830,9608],2830,[2832,9709],[2831,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2998,9430],3063,3063,3062,2998,[3062,9811],[2999,2986,10000],10001,10002,10003,10004,10005,10006,[2434,10007],[2370,9812],2371,2371,2434,[2434,9619],9616,[9617,14],0,0,0,0,0,0,[9814,14],9815,[3244,9620],3182,3182,3245,[2998,3055],3062,3062,2999,3063,[3062,9619],9808,9908,9909,9815,[2435,9620],2434,2370,2371,2434,2435,2371,2371,2435,2371,2114,[2435,3051,9715],9904,9905,9906,9907,9908,9909,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9113],[74,9114],[3906,9115],3521,3969,3908,3905,[3456,9493],9399,9400,9401,9402,9399,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9017],9018,[3907,9019],3969,3393,3907,3456,3971,3971,[3906,9688],9685,9686,0,0,0,0,9499,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15022,15342,15344,15344,15344,15344,15343,15343,15343,15345,0,0,0,0,0,15213,15213,15214,15414,15415,15213,15213,15213,15214,15600,15667,15601,0,0,0,0,0,0,0,0,0,0,0,15022,15085,15021,15149,15150,15150,15149,15150,15150,15150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[9979,9497],[3529,10075],[3528,10169],[3528,10170],3594,3529,3268,3528,3530,3529,3530,3530,3529,3529,3529,3530,3530,3594,3593,3529,[3530,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,9593],3528,3268,3594,3333,3593,3529,3332,3593,[3269,10167],[3593,10168],3268,3528,3594,3530,3530,[3528,9496],9589,[9590,14],0,0,0,0,0,0,[9787,14],9883,9979,[3592,10075],[3332,10167],3592,3592,3529,3333,3592,3529,[3594,10070],9589,[9590,14],0,0,0,0,0,[9787,14],9879,9880,9883,9979,[2560,3463,9980],[3529,9785],3593,3530,3528,3530,3269,3268,3529,3593,[3528,9592],9685,[9686,14],0,0,0,0,0,[9787,14],9788,[3530,9593],3530,3593,3268,3530,3268,[3530,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9703],[2768,9704],2765,[2768,9709],[2829,9710],0,0,0,0,[2768,9799],[2765,9800],2765,2768,2766,2766,2829,[2830,9613],[2829,9614],0,0,0,[2831,9607],[2766,9608],2830,2765,[2829,9805],[2766,9901],9997,10089,10090,10090,9992,[2765,9896],[2766,9800],2831,2829,2832,2765,2829,2765,[2767,9517],9518,0,0,[2832,9703],[2768,9704],2829,[2768,9709],[2765,9710],0,0,9799,[2832,9897],[2767,9898],[2829,9899],[2832,9900],9901,9993,9994,9995,9996,9993,9994,[2829,9896],[2829,9800],2767,2830,2830,[2765,9805],[2768,9901],9993,9994,[2766,9896],[2767,9800],2768,2765,2765,[2767,9709],[2768,9710],0,0,0,0,9416,[2829,9512],2767,2831,[2831,9517],[2832,9417],[2829,9420],9421,9422,0,0,0,0,0,0,0,[2765,9607],[2831,9608],2766,[2832,9709],[2768,9710],0,0,0,0,0,0,0,0,[2829,9703],[2765,9704],2768,[2768,9613],[2767,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3063,9524],3063,3063,3062,3063,[3063,3050],[3179,10097],[3182,10098],[3245,10099],[3245,10100],[2434,3054,10101],[2435,10102],1922,2370,2435,2435,2435,[2434,9619],9712,[9713,14],0,0,0,[9814,14],9908,9909,9910,9911,[3063,3116,9716],[3063,3307],3180,3245,[3062,3119],3062,3062,3062,3063,[3063,9715],9904,10004,10005,9911,[2371,9716],2370,2434,2370,2434,2435,2371,2435,2435,2435,[2435,2986],[3244,9811],[3243,10000],10001,10002,10003,10004,10005,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3905,9303],[3971,9304],[3905,9305],[3907,9306],[3907,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9113],[74,9114],[3521,9115],3907,3907,[3908,9303],[3969,9304],[3906,9305],[3905,9306],[3393,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15021,15406,15408,15407,15407,15283,15407,15407,15407,15409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15021,15086,0,0,0,0,0,0,0,0,0,0,0,15086,15086,15086,15214,15213,15213,15214,15213,15213,15213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3529,10075,9593],3592,3592,3529,3594,3593,3592,3594,3593,3332,3594,3268,3593,3594,3594,3594,3529,3530,3530,3530,[3530,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9500],3268,3593,3530,3528,3592,3530,3268,3332,3593,3593,3594,3268,3594,3268,3593,[3592,9688],9685,[9686,14],0,0,0,[9787,14],9879,9880,9883,9979,[3593,10075],3528,3594,3528,3592,3593,3530,3592,3268,3528,9781,[9782,14],0,0,0,0,[9787,14],9883,9975,9976,9979,[2496,10075],2561,[2561,3398],3529,3592,3593,3594,3529,3268,3594,3268,[3593,9688],9589,[9590,14],0,0,0,0,[9787,14],9883,9884,[3529,9689],3268,3530,3592,3268,3528,[3593,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2829,9607],[2767,9608],2831,[2768,9613],[2832,9614],0,0,0,0,9895,[2831,9896],[2829,9800],2832,2768,2831,2830,[2765,9709],[2768,9710],0,0,0,[2766,9703],[2767,9704],2829,[2768,9613],[2830,9614],9997,10093,[10185,14],[10186,14],[10186,14],10088,9992,[2830,9896],[2832,9800],2830,2768,2830,2831,2767,[2768,9613],[2831,9614],0,0,[2831,9607],[2829,9608],2768,[2830,9613],[2830,9614],0,0,9895,9993,9994,9995,9996,9997,10089,10090,10091,10092,10089,10090,9992,[2765,9607],[2830,9608],2767,[2768,9613],[2831,9614],9997,10089,10090,9992,[2831,9607],[2768,9608],2832,2832,[2767,9805],9806,0,0,0,9511,[2765,9512],2830,2830,2765,2832,2829,2831,[2830,9517],9518,9422,0,0,0,0,0,0,[2830,9703],[2768,9704],2832,[2765,9613],[2768,9614],0,0,0,0,0,0,0,0,[2829,9607],[2767,9608],2766,[2831,9709],[2830,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2999,9430],[3063,9330],[3063,9333],2998,3062,[3062,3114],3245,[3179,10194],[3245,10195],[3181,10196],[2434,3247,10197],2370,2370,2370,1987,2370,2435,[2435,9619],9808,[9809,14],0,0,[9814,14],9910,10004,10005,10006,[3062,3247,10007],[3063,9812],3062,[3062,3115],3182,[3062,3183],3062,[3063,2986],[3063,3053],[3063,3051],[3063,2987,9811],[3062,2988,10000],[2435,2991,10100],[2434,10101],[2371,10007],[2370,9812],2370,2370,2434,2371,2435,2435,[2435,9330],[2434,9331],[2435,9332],[2435,3242,9333],3244,3182,[3244,10097],[3181,10098],[3179,10099],[3245,10100],[3182,10101],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9400,9401,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3971,9303],[3520,9306],[3969,9398],9399,9400,9401,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15021,15470,15472,15472,15472,15471,15471,15472,15472,15473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15086,15085,0,0,0,0,0,0,0,0,0,0,0,15022,15086,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9500],3594,3268,3594,3528,3268,3530,3594,3528,3333,3268,3529,3530,3269,3530,3528,3529,3592,3268,3593,[3530,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3594,9497],3530,3594,3592,3594,3530,3268,3530,3593,3592,3593,3528,3528,3594,3527,[3527,9493],[9494,14],0,0,0,[9787,14],9883,9975,9976,9979,[3529,10075],3593,3593,3528,[3529,9303],[3593,9306],3593,3268,3594,3269,3594,9877,9878,9879,9880,9881,9882,9883,9979,[3594,10071],[3594,10072],[2496,3403,10075],2560,2561,[2560,3462],3530,3593,3268,3593,3333,3530,3529,3592,[3592,9493],[9494,14],0,0,0,0,[9787,14],9883,9979,[3593,9980],[3529,9785],3530,3530,3594,3593,3594,[3592,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9703],[2832,9704],2829,[2767,9709],[2830,9710],0,0,0,0,9991,9992,[2831,9703],[2767,9704],2767,2829,2829,[2829,9613],[2830,9614],0,0,0,[2830,9607],[2767,9608],2766,[2830,9709],[2768,9710],10093,0,0,0,0,0,10088,9992,[2766,9896],[2832,9800],2766,2831,2830,2766,[2832,9709],[2831,9710],0,0,[2768,9703],[2831,9704],2829,[2768,9709],[2768,9710],0,0,9991,10089,10090,10091,10092,10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],10088,[2829,9703],[2768,9704],2765,[2766,9709],[2766,9710],10093,[10185,14],[10186,14],10088,[2768,9703],[2767,9704],2767,[2767,9709],[2830,9710],9902,0,0,9511,[2765,9512],2831,2768,2768,2832,2766,2829,2829,2829,[2832,9517],9518,0,0,0,0,0,0,[2765,9607],[2829,9608],2829,[2831,9709],[2829,9710],0,0,0,0,0,0,0,0,[2766,9703],[2765,9704],2768,[2832,9613],[2766,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3062,9430],3062,[3062,3178],3182,3243,3180,3243,3243,[2435,3053],2370,2434,2435,2434,2435,[2434,9715],9904,9905,9906,9907,9910,10006,[2370,10100],[2371,3242,10101],[3245,10102],[3062,3055],3062,3063,3063,[3062,3242],[3063,3247],3063,[3062,3242],3245,3179,3243,3243,[2435,3055,10196],[2435,10197],2434,2051,2370,2370,2371,[2371,9330],[2370,9333],[2435,9425],9426,9427,9428,9429,[3246,9527],3243,3181,[3244,10194],[3181,10195],[3179,10196],[3182,10197],[3245,10097],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4136,4137,4138,4139,4138,4139,4138,4139,4138,4139,4138,4139,4138,4139,4138,4139,4138,4139,4140,4141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15022,15085,15085,15022,15085,15021,15022,15602,15603,15602,15086,15086,15085,15086,15022,15085,15021,15086,15086,15085,0,0,0,0,15085,15022,15085,0,0,0,0,0,0,15086,15021,15085,0,0,0,0,15086,15085,15022,15022,15022,15022,15022,15026,15027,15028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,3528,3594,3528,3528,3530,3594,3528,3593,3268,3594,3593,3528,3529,3592,3528,3592,3530,3268,[3591,9397],[3591,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,9593,9303],[3528,9306],3592,3269,3592,[3593,173],[3268,102],[3593,166],[3268,174],3594,3530,3529,3593,3593,[3528,9398],[9494,14],0,0,0,[9787,14],9883,9979,[3592,10071],[3529,10072],[3268,10075],3528,3530,3593,[3530,9398],9399,9402,[3593,9500],3529,3593,3529,3268,[3593,9973],9974,9975,9976,9977,9978,9979,[3592,10075],[3594,10167],[3592,10168],[2497,3467],2496,2561,[2497,3526],3530,3530,3333,3269,3593,[3592,9303],[3529,9306],[3530,9398],[9494,14],0,0,0,0,[9787,14],9883,9979,[3268,10075],3592,3528,3528,3530,3530,[3529,9303],[3591,9306],[3592,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9607],[2830,9608],2830,2768,[2829,9517],9421,0,0,0,0,10088,[2767,9799],[2830,9800],2829,2767,2768,[2766,9709],[2830,9710],0,0,0,[2829,9703],[2831,9704],2829,2766,[2830,9517],9421,0,0,0,0,0,0,10088,9992,[2830,9896],[2768,9800],2829,2829,2831,[2765,9805],[2832,9806],0,0,[2832,9607],[2831,9608],2832,2830,[2829,9517],9421,0,0,[10185,14],[10186,14],[10187,14],[10188,14],0,0,0,0,0,0,0,0,[2830,9607],[2765,9608],2831,[2830,9613],[2831,9614],0,0,0,0,[2765,9607],[2829,9608],2767,[2829,9613],[2765,9614],9998,0,0,[2830,9607],[2768,9608],2831,2768,2766,[2830,9805],[2768,9800],2832,2767,2831,[2767,9613],[2829,9614],0,0,0,0,0,0,[2829,9703],[2832,9704],2830,[2767,9613],[2831,9614],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9324,14],9416,[2765,9512],2832,2832,[2767,9709],[2766,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3063,11344,3051,9524],3243,3243,3181,3244,3181,3245,[2370,3247],[2435,9330],[2434,9333],2370,2435,2370,[2370,9811],[2371,10000],10001,10002,10003,10006,[2370,10102],[2371,10196],[2370,3115,10197],3180,[3063,3119],2998,3062,3063,[3063,3306],[3063,3311],3062,[3063,3306],[3062,3307],[3063,3308],3182,3246,[2435,3119],2434,2435,2370,2371,2371,[2370,9425],9426,9429,[9521,14],0,0,0,[9622,14],9623,[3182,9524],3182,3182,3180,3244,3244,3245,[3246,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,4233,4234,4235,4234,4235,4234,4235,4234,4235,4234,4235,4234,4235,4234,4235,4234,4235,4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4136,4137,4138,4139,4138,4139,4138,4139,4138,4140,4141,0,0,0,0,0,0,4136,4137,4138,4139,4138,4139,4140,4141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15597,15601,15666,15600,15597,15600,15598,15597,15601,15667,15601,15600,15597,15085,15086,15085,15086,15086,15086,15021,15021,0,0,0,0,15021,15021,15021,0,0,0,0,0,0,15085,15085,15022,0,0,0,0,15085,15085,15021,15085,15022,15021,15021,15090,15091,15092,15022,15021,15022,15021,15085,15086,15085,15022,15085,15085,15021,15022,15021,15021,15021,15021,15021,15021,15085,15085,15085,15022,15086,15086,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3529,9500],3530,3268,3593,3593,3593,3528,3528,3530,3594,3528,3593,3268,3268,3592,3529,[3592,9303],[3592,9306],[3593,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9402,[3529,9500],[3530,110],[3593,230],[3269,231],403,403,[3528,101],3594,3268,3530,3594,[3592,9398],[9494,14],0,0,0,[9691,14],9692,9979,[3332,10075],[3268,10167],[3530,10168],3529,3529,3593,[3592,9398],[9494,14],0,[9595,14],9596,[3594,9497],3592,3268,3268,3594,[3592,10070],[3528,10071],[3592,10072],[2560,3595,10073],[2496,10074],[2561,3464,10075],3530,3530,3592,[2561,3531],2496,[2560,3399],3528,3594,3593,3592,3530,[3530,9493],9399,9402,[9494,14],0,0,0,0,[9595,14],9596,[9979,9497],[3528,10075],3592,3530,3528,3593,3530,[3530,9398],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9703],[2768,9704],2829,2831,2830,[2766,9517],9518,0,0,0,0,9895,[2766,9896],[2766,9800],2831,2830,[2767,9805],[2831,9806],0,0,0,[2766,9607],[2830,9608],2768,2768,2831,[2829,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],0,0,10088,9992,[2830,9607],[2829,9608],2766,[2767,9613],[2767,9614],9902,0,0,[2831,9703],[2767,9704],2832,2831,2765,[2767,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,9416,[2768,9512],2830,2832,[2831,9709],[2832,9710],0,0,0,0,[2765,9703],[2767,9704],2832,[2832,9709],[2765,9710],0,0,0,[2765,9703],[2830,9704],2768,2767,[2766,9805],[2768,9901],[2832,9896],[2829,9800],2832,2768,[2768,9709],[2768,9710],0,0,0,0,0,0,[2831,9607],[2767,9608],2768,2768,[2767,9517],[2767,9417],[2766,9418],[2768,9419],[2832,9420],[2830,9417],[2832,9418],[2831,9420],[2832,9512],2831,2766,2767,[2829,9613],[2767,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3244,9620],3246,3179,3244,3246,3244,3182,[3246,9425],9426,9429,[2371,9430],2434,2370,2434,2371,[2371,10097],[2370,10098],[2434,10099],[2434,10102],2434,2114,2371,[2370,3050],[3062,3183],3062,3062,3063,3062,3062,3062,2998,3063,2998,[3063,3116],[3246,9330],[2435,3183,9333],[2435,9330],[2371,9331],[2435,9332],[2370,9333],[2370,9425],[9521,14],0,0,0,0,0,0,[9718,14],9719,[3182,9620],3246,3181,3246,3180,3243,3181,[3181,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4136,4137,4138,4139,4138,4139,4138,4139,4337,4338,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,4233,4234,4235,4234,4235,4234,4235,4234,4236,4237,0,0,0,0,0,0,4232,4233,4234,4235,4234,4235,4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9912,9918,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15085,15085,15021,15086,15021,15021,15022,15021,15022,15085,15021,15086,15598,15085,15022,15021,15021,15085,15022,15085,0,0,0,0,15085,15086,15021,0,0,0,0,0,0,15021,15085,15021,0,0,0,0,15022,15022,15086,15021,15085,15086,15022,15154,15155,15156,15022,15022,15022,15022,15086,15021,15085,15022,15021,15086,15022,15085,15085,15022,15086,15022,15085,15086,15021,15022,15021,15022,15022,15086,15085,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3593,9500],3593,3268,3594,3269,3529,3594,3528,3530,3592,3592,3530,3592,[3527,9397],[3528,9398],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[403,9403],403,403,349,403,[3530,165,9303],[3530,9304],[3529,9305],[3528,9306],[3592,9398],[9494,14],0,0,0,0,[9595,14],9596,[3530,10075,9497],3530,3528,3593,3592,3530,[3528,9496],9685,[9686,14],0,[9691,14],9692,[3528,9593],3530,3592,3592,3269,3592,[3530,10167],[3530,10168],[2560,3595,10169],[2561,10170],2497,[2560,3590],3529,3529,[2561,3595],2561,[2560,3398],3530,3592,3592,[3529,173],[3594,102,9496],9589,[9590,14],0,0,0,0,0,0,[9787,14],9788,[3592,10075,9593],3593,3528,3592,3530,3594,[3528,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9799],[2831,9800],2831,2832,2766,2831,[2765,9517],9518,0,0,0,9991,9992,[2831,9896],[2829,9899],[2830,9900],[2767,9901],9902,0,0,0,[2832,9607],[2766,9608],2766,2767,2766,2830,[2767,9517],[2832,9417],[2830,9418],[2831,9419],[2831,9420],9518,0,0,10088,[2766,9703],[2768,9704],2832,[2765,9709],[2768,9710],9998,0,0,[2767,9799],[2767,9800],2767,2832,2831,2765,[2830,9517],9421,[9321,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],9416,[2765,9512],2829,2832,2765,[2829,9709],[2830,9710],0,0,0,0,[2832,9703],[2829,9704],2832,[2766,9613],[2767,9614],0,0,0,[2832,9607],[2765,9608],2768,[2767,9709],[2766,9710],9997,9992,[2831,9703],[2766,9704],2768,[2829,9613],[2768,9614],0,0,0,0,0,0,[2830,9703],[2767,9704],2831,2829,2768,2768,2767,2830,2829,2768,2830,2768,2830,2829,2830,2831,[2832,9709],[2832,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3179,9620],3245,3244,3180,3180,3245,[3182,9520],[9521,14],0,0,[9526,14],[2435,9527],2434,2434,2434,2371,[2370,10194],[2370,10195],2434,2370,2370,2370,[2371,3114],[3062,3247],[3062,9330],[3063,9333],3062,3062,3063,3062,3062,3063,3062,[2998,9425],9426,9429,9426,9427,9428,9429,[9521,14],0,0,0,0,0,0,0,0,[9526,14],[3180,9527],3180,3246,3182,3244,3245,3179,[3244,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,4233,4234,4235,4234,4235,4234,4235,4433,4434,865,4334,4335,866,865,866,865,866,865,866,865,866,865,4528,4529,866,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,4334,4335,801,802,801,4528,4529,4332,4333,0,0,0,0,0,0,4328,4329,802,801,4528,4529,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,10008,10014,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15085,15085,15021,15086,15085,15021,15086,15086,15085,15021,15085,15086,15085,15598,15022,15085,15022,15021,15022,15022,0,0,0,0,15149,15021,15086,15022,15085,15022,15021,15086,15086,15026,15027,15028,0,0,0,0,15085,15021,15598,15086,15086,15022,15022,15086,15022,15600,15601,15022,15022,15086,15021,15086,15085,15086,15085,15022,15086,15022,15022,15021,15021,15021,15086,15021,15085,15021,15086,15022,15085,15085,15085,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,3593,3528,3268,3593,3592,3592,3528,3593,3593,3592,[3528,9303],[3592,9306],[3591,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[403,9403],[403,9303],[403,9306],[403,9398],9399,9400,9401,9402,[9494,14],0,0,0,0,0,[9691,14],9692,[3268,9593],3529,3530,3528,3594,3528,[3591,9398],[9494,14],0,0,0,[9499,14],[3594,9403],3594,3592,3593,3529,3268,3528,3268,[2496,3466],2497,2496,[2497,3654],[2497,3655],[2560,3656],[2560,3465],2497,[2496,3462,173],[3268,102],[3528,230],[3593,230],[3529,231],[403,9592],9685,[9686,14],0,0,0,0,0,[9787,14],9883,9884,[3594,9689],3528,3593,3529,3592,[3593,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9895,[2768,9896],2830,2831,2831,2767,[2766,9613],[2831,9614],0,0,0,0,10088,9992,9995,9996,9997,9998,0,0,9416,[2832,9512],2765,2830,2766,2766,2767,2829,2829,2829,2830,[2832,9613],[2829,9614],0,0,0,[2766,9607],[2831,9608],2832,[2829,9613],[2832,9614],0,0,0,9895,[2767,9896],[2765,9800],2768,2831,2832,2768,[2829,9517],[2830,9417],[2832,9420],[2830,9417],[2768,9418],[2831,9419],[2766,9420],[2765,9417],[2766,9418],[2768,9419],[2768,9420],[2831,9512],2766,2830,2768,2831,2767,[2765,9517],9518,[9321,14],[9324,14],9511,[2768,9512],2766,2831,[2766,9709],[2831,9710],0,0,0,[2767,9703],[2765,9704],2767,[2768,9709],[2767,9710],10093,10088,[2829,9703],[2765,9704],2767,[2768,9709],[2830,9710],0,0,0,0,0,0,[2831,9607],[2829,9608],2831,2830,2832,2767,2768,2830,2765,2768,2831,2832,2832,2831,2831,2829,[2766,9613],[2768,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3246,9620],3182,3179,3244,3244,[3243,9523],9616,[9617,14],0,0,[9622,14],9623,[2435,9524],2434,2114,2435,2435,2242,2243,2435,2371,2371,[2370,3178],[3247,9425],9426,9429,[3062,9430],[3062,9330],[3062,9333],3063,3063,3062,[3063,9523],[3062,9616],[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3243,9524],3181,3244,3182,3179,3244,[3181,9811],[3243,10000],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4136,4137,4337,4338,801,802,801,802,801,802,801,802,801,4430,4431,802,801,802,801,802,801,802,801,802,801,4624,4625,802,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,4430,4431,865,866,865,4624,4625,4428,4429,0,0,0,0,0,0,4424,4425,866,865,4624,4625,[802,4717],4718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,10015,[3948,10104],[3948,10110],10010,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15086,15021,15086,15085,15021,15022,15086,15021,15086,15085,15085,15086,15085,15022,15666,15021,15022,15086,15021,15021,0,0,0,0,15213,15022,15022,15085,15021,15022,15085,15086,15022,15090,15091,15092,0,0,0,0,15086,15600,15021,15597,15022,15021,15600,15021,15597,15021,15085,15601,15086,15601,15598,15022,15021,15342,15343,15344,15345,15666,15021,15021,15086,15086,15021,15022,15085,15021,15350,15351,15085,15086,15085,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3268,9500],[3593,9303],[3594,9304],[3593,9306],3593,3268,3528,3530,[3529,9397],[3591,9398],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3269,9593],3268,3530,3268,3592,[3529,9398],[9494,14],0,0,0,0,0,[9499,14],[3530,9403],3530,3593,3592,3593,3593,[2497,3403],2496,2497,2561,2497,2560,2561,2496,2496,[2561,3526,103,9303],[403,9306],403,403,403,[403,9592],9589,[9590,14],0,0,0,0,[9595,14],9596,9979,[3593,9980],[3529,9785],3530,3529,3593,3592,[3592,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9991,9992,[2831,9607],[2768,9608],2768,2831,2832,[2765,9517],9518,0,0,0,0,10088,10091,10092,10093,0,0,9511,[2832,9512],2767,2766,2830,2830,2765,2832,2832,2831,2766,2829,[2831,9709],[2768,9710],[9321,14],[9324,14],9511,[2768,9512],2832,2832,[2766,9709],[2830,9710],0,0,0,9991,9992,[2829,9896],[2765,9800],2832,2830,2766,2831,2766,2767,2765,2829,2829,2831,2765,2829,2830,2767,2767,2830,2832,2768,2765,2831,2765,[2831,9517],[2832,9417],[2831,9420],[2768,9512],2830,2830,2767,[2832,9613],[2830,9614],0,0,0,[2831,9607],[2765,9608],2766,[2765,9709],[2830,9710],0,0,[2767,9607],[2767,9608],2831,[2829,9613],[2765,9614],0,0,0,0,0,0,[2767,9799],[2765,9800],2829,2766,2767,2765,2832,2829,[2831,9805],[2831,9897],[2832,9898],[2829,9900],[2766,9800],2831,2832,2767,[2768,9709],[2768,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3244,9716],3246,3182,3182,3181,[3180,9619],9712,[9713,14],0,0,[9718,14],9719,[2435,9620],2435,2371,2371,2371,2306,2307,2434,2434,2371,[2371,3050,9520],[9521,14],0,0,[9526,14],9426,9429,[2998,9527],3062,3062,[3063,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3243,9620,9330],[3182,9333],3246,3182,3180,3246,3243,3244,[3181,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,4233,4433,4434,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,4238,4239,866,865,866,865,866,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,4147,4148,4524,4525,0,0,4136,4137,4138,4139,4337,4338,802,801,802,801,801,4814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,10015,[4014,10111],[4012,10200],[3950,10206],[3949,10106],10010,9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15022,15086,15022,15021,15086,15085,15086,15022,15021,15021,15021,15021,15021,15021,15086,15600,15085,15022,15085,15086,0,0,0,0,0,15021,15086,15022,15022,15021,15021,15022,15085,15154,15155,15156,0,0,0,0,15597,15022,15085,15085,15601,15601,15086,15598,15085,15533,15537,15086,15600,15022,15022,15601,15597,15406,15407,15283,15409,15086,15601,2147498798,2147498798,2147498797,15085,15022,2147498797,2147498798,15414,15415,15086,15022,15598,15601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9402,[3594,9403],[3592,9303],[3593,9304],[3332,9306],[3592,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3592,9593],3530,3594,3528,[3528,9496],9589,[9590,14],0,0,0,0,0,0,[9499,14],[3530,9500],[3529,9303],[3528,9306],3529,3593,[2561,3467],2560,2560,2497,2496,2496,2497,2496,[2755,9493],9399,9402,[403,9403],403,403,[403,9592],9685,[9686,14],0,0,0,0,[9691,14],9692,[3530,10075,9497],3529,3268,3528,3592,3592,3528,[3530,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,[2831,9703],[2829,9704],2766,2830,2829,[2832,9613],[2831,9614],0,0,0,0,0,[10187,14],[10188,14],0,0,9416,[2829,9512],2766,2767,2767,2766,[2767,9805],[2768,9800],2765,2831,2830,2766,2766,2766,[2831,9517],[2767,9417],[2831,9420],[2766,9512],2829,2831,2767,[2832,9613],[2766,9614],0,0,0,0,10088,9992,[2831,9896],[2768,9800],2766,2829,2830,2831,2765,2768,2766,2829,2767,2768,2766,2830,2829,2766,2765,2831,2765,2768,2830,2767,2831,2829,2767,2767,2829,2767,2766,[2832,9709],[2831,9710],0,0,0,[2768,9703],[2768,9704],2830,[2768,9613],[2768,9614],0,0,[2766,9703],[2766,9704],2768,[2768,9709],[2768,9710],0,0,0,0,0,0,9895,[2830,9896],[2768,9800],2831,2768,2832,2832,[2831,9805],[2831,9901],9993,9994,9996,[2766,9896],[2832,9800],2831,2766,[2832,9613],[2829,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3180,9430],3179,3243,3245,3179,[3180,9425],[9521,14],0,0,0,0,[9526,14],[2371,9430],2435,2370,2434,2434,2435,2434,2371,2435,[2434,9523],9616,[9617,14],0,0,0,0,[9622,14],9623,[2999,9524,9330],[3062,9333],[3062,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3179,9430],3246,3181,3243,3244,3245,[3182,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,802,4238,4239,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,4243,4244,4620,4621,0,0,4232,4233,4234,4235,4433,4434,866,865,4238,4239,[865,4909],4910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[3949,10111],4011,3949,4014,4012,[4011,10106],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15086,15085,15022,15022,15342,15344,15343,15344,15343,15345,15086,15085,15021,15022,15086,15021,15598,15597,15601,15666,0,0,0,0,0,15150,15150,15150,15150,15150,15149,15150,15149,15149,15149,15150,0,0,0,0,15085,15085,15022,15021,15022,15086,15536,15022,15086,15533,15534,15085,15022,15021,15086,15085,15085,15470,15471,15472,15473,15279,15086,15214,15213,15213,2147498798,2147498797,15213,15214,0,0,15022,15597,15022,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9881,9882,9883,9979,[3594,10071],[3528,10072],[3592,10073],[3527,10074],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9884,[3528,9689],3592,3530,3592,[3528,9592],9685,[9686,14],0,0,0,0,0,0,0,[9499,14],9399,9402,[3591,9403],3529,[2496,3531],2561,2496,2497,2561,2561,2496,[2819,9398],[9494,14],0,0,[9499,14],[403,9500],[403,9303],[403,9688,9306],9685,[9686,14],0,0,0,0,[9595,14],9596,[3530,9593],3530,3592,3592,3592,3593,[3527,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9607],[2767,9608],2829,2829,2766,[2829,9709],[2831,9710],0,0,0,0,0,0,0,0,9511,[2831,9512],2767,2767,2765,2830,[2831,9805],[2767,9901],[2767,9896],[2768,9897],[2832,9898],[2767,9800],2765,2767,2831,2831,2829,2767,2767,2768,2766,2768,[2831,9709],[2830,9710],[9321,14],[9324,14],0,0,0,10088,9992,[2832,9896],[2829,9897],[2831,9898],[2767,9899],[2830,9900],[2831,9800],2832,2766,2831,2768,2830,2766,[2767,9805],[2829,9897],[2829,9898],[2768,9800],2829,2832,2829,2768,2832,2765,2832,2830,2767,2768,2831,2832,[2829,9805],9806,0,0,0,[2765,9607],[2832,9608],2767,[2832,9709],[2766,9710],0,0,[2829,9799],[2831,9800],2766,2766,[2767,9517],9518,0,0,0,0,0,9991,9992,[2830,9607],[2831,9608],2830,2831,[2768,9613],[2768,9614],9997,10089,10090,10092,9992,[2830,9607],[2829,9608],2768,[2829,9709],[2765,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3179,9527],[3180,9330],[3181,9333],[3181,9520],[9521,14],0,0,0,0,0,0,[9526,14],[2435,9527],[2434,9330],[2370,9333],2371,2050,2435,2370,2435,[2371,9619],9712,[9713,14],0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,[9814,14],9906,8945,8946,8947,9909,[9809,14],0,0,0,0,[9526,14],[3245,9527],3243,3181,3244,[3246,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,4526,4527,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4145,4146,801,802,801,4332,4333,0,0,0,0,4328,4329,802,801,4334,4335,802,801,802,801,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[3947,9439],4011,3950,4012,[4014,9433],[4011,9434],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15086,15342,15343,15344,15543,15408,15408,15407,15540,15473,15086,15021,15022,15021,15021,15085,15021,15022,15086,15021,0,0,0,0,0,15213,15213,15213,15213,15213,15213,15213,15214,15213,15214,15214,0,0,0,0,15216,15085,15022,15536,15536,15216,15533,15279,15280,15021,15086,15537,15086,15279,15085,15533,15215,15086,15537,15021,15533,15215,15279,0,0,0,15213,15213,0,0,0,0,15598,15021,15021,15085,15022,15021,15085,15086,15022,15086,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9881,9882,9883,9977,9978,9979,[3527,10075],[3529,10167],[3269,10168],[3269,10169],[3591,10170],[3594,10070],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3530,9980],[3528,9785],3593,3529,3530,[3528,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,[9499,14],[3591,9403],3594,[2560,3400],[2560,3335],[2561,3336],[2561,3337],[2561,3338],[2817,3339,9493],[9494,14],0,0,0,0,[9499,14],9399,9402,[9494,14],0,0,0,0,0,[9787,14],9788,[3592,9593],3268,3529,3592,3593,[3530,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2765,9703],[2829,9704],2765,2832,2767,[2767,9613],[2767,9614],0,0,0,0,0,0,0,0,[2831,9607],[2768,9608],2830,2830,2830,[2766,9805],[2766,9901],9997,9992,9993,9994,[2832,9896],[2831,9800],2832,2766,2830,2830,2767,2765,2829,2768,2831,2829,[2767,9517],[2832,9417],[2766,9420],9421,0,0,0,10088,9992,9993,9994,9995,9996,[2765,9896],[2831,9800],2832,2832,2766,2829,[2829,9805],[2832,9901],9993,9994,[2768,9896],[2830,9897],[2832,9898],[2767,9899],[2767,9900],[2768,9800],2831,2766,2766,2829,2766,2768,[2766,9805],9901,9902,0,0,0,[2832,9703],[2766,9704],2832,[2765,9613],[2830,9614],0,0,9895,[2765,9703],[2831,9704],2831,2832,[2829,9517],9518,0,0,0,0,0,10088,[2768,9703],[2765,9704],2767,2832,[2830,9709],[2832,9710],10093,[10185,14],[10186,14],[10188,14],10088,[2830,9703],[2830,9704],2830,[2831,9613],[2766,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,[9526,14],9426,9429,[2435,9527],2435,2370,2434,2435,[2371,9619],9808,[9809,14],0,0,[9814,14],9906,9907,9908,9909,[9809,14],0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,9041,8752,8753,10005,9905,[9809,14],0,0,0,[9622,14],9623,[3180,9524],3245,3243,[3243,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,4622,4623,802,801,802,801,802,801,802,801,802,801,802,4147,4148,4522,4523,4522,4523,4145,4146,801,802,801,802,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4241,4242,865,866,865,4428,4429,0,0,0,0,4424,4425,866,865,4430,4431,866,865,4147,4148,4524,4525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[3950,9536],3950,[4011,9433],[4013,9434],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15022,15406,15407,15408,15407,15407,15408,15408,15409,15026,15027,15028,15085,15022,15022,15021,15085,15085,15021,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15215,15534,15534,15215,15215,15216,15280,15216,15215,15534,15536,15023,15024,15024,15024,15024,15024,15025,15279,15085,15085,15085,15279,15086,15086,15085,15021,15086,15022,15021,15085,15021,15021,15022,15021,15021,15021,15342,15343,15344,15345,15085,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9977,9978,9979,[3592,10073],[3591,10074],[3527,10075],3269,3593,3529,3592,3530,3527,[3591,10070],9974,9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,9979,[3592,10075],3529,3592,3592,3529,3593,[3593,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3593,9500],3530,3529,3529,3530,[3592,9496],9589,[9590,14],0,0,0,0,0,0,0,0,[9787,14],9879,9880,9881,9882,9883,9884,[3592,9689],3594,3529,3529,3594,[3594,9688],9685,[9686,14],0,0,0,[9787,14],9879,9880,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9607],[2831,9608],2767,2829,2829,[2832,9709],[2829,9710],0,0,0,0,0,0,0,0,[2830,9703],[2830,9704],2765,2765,[2765,9805],[2767,9901],9997,10093,10088,10089,10090,9992,[2766,9896],[2766,9800],2767,2767,2829,2830,2829,2768,2767,2767,2829,2765,2768,2830,[2765,9517],9421,[9321,14],[9324,14],0,10088,10089,10090,10091,10092,9992,[2768,9896],[2829,9800],2765,2768,[2766,9613],[2765,9614],9997,10089,10090,9992,9993,9994,9995,9996,[2830,9896],[2768,9800],2831,2830,2830,2768,[2829,9805],9901,9997,9998,0,0,0,[2830,9607],[2832,9608],2767,[2832,9709],[2766,9710],0,0,9991,[2831,9607],[2830,9608],2830,2767,2832,[2765,9517],9518,0,0,0,0,9416,[2829,9512],2831,2830,2831,[2768,9613],[2765,9614],0,0,0,0,0,[2765,9607],[2831,9608],2765,[2829,9709],[2767,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[2371,3051,9524],[2435,2987],[2370,2988],[2371,2989],[2370,2990,9715],9904,9905,9906,9907,9910,10002,10003,10004,10005,9905,9906,9907,[9809,14],0,0,0,0,0,[9814,14],9910,10006,[3063,10098],[3062,9137],[3063,9138],[3062,9139],[3063,10101],10001,9905,[9809,14],0,0,[9718,14],9719,[3243,9620],3179,3246,[3180,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,866,865,866,865,866,4243,4244,4618,4619,4618,4619,4241,4242,865,866,865,866,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,4339,4340,4138,4712,4713,4714,4337,4338,802,801,802,801,802,801,4243,4244,4620,4621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[4013,9536],[3950,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15021,15406,15407,15407,15408,15408,15408,15407,15409,15090,15091,15092,15342,15343,15344,15344,15021,15021,15085,15086,0,0,0,0,0,0,0,[15021,128],15022,15216,15279,15279,15215,15534,15216,15534,15215,15534,15537,15533,15537,15342,15344,15344,15344,15344,15344,15344,15345,15216,15280,15087,15088,15281,15281,15218,15088,15089,15021,15021,15279,15533,15533,15085,15085,15085,15085,15086,15085,15085,15085,15085,15086,15086,15342,15343,15344,15543,15407,15408,15409,15022,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3529,10071],[3527,10072],[3594,10073],[3591,10074],[3530,10075],[3530,10169],[3529,10170],3529,3592,3269,3528,3527,3268,3527,3529,[3594,10070],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3593,10075,9497],3594,3332,3530,3530,3530,3593,[3528,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3530,9497],3530,3268,3593,[3528,9592],9685,[9686,14],0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9977,9978,9979,[3530,9980],[3332,9785],3530,3593,3530,3530,[3529,9493],[9494,14],0,0,0,[9787,14],9883,9975,9976,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2767,9703],[2832,9704],2830,2768,2829,2767,[2768,9517],9421,[9321,14],[9324,14],0,0,0,0,0,[2767,9607],[2829,9608],2766,[2832,9613],[2767,9614],9997,10093,0,0,[10185,14],[10186,14],10088,9992,[2765,9896],[2766,9897],[2765,9898],[2765,9897],[2830,9898],[2829,9899],[2768,9900],[2768,9897],[2831,9898],[2767,9899],[2768,9900],[2768,9800],2830,2768,[2766,9517],[2831,9417],[2767,9420],9421,0,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2832,9607],[2830,9608],2831,[2765,9709],[2830,9710],10093,[10185,14],[10186,14],10088,10089,10090,10091,10092,9992,[2832,9896],[2768,9800],2766,2765,[2765,9613],[2767,9614],9997,10093,0,0,0,0,[2832,9703],[2765,9704],2832,[2767,9613],[2830,9614],0,0,0,[2766,9703],[2768,9704],2767,2767,2831,2832,[2830,9517],9518,[9321,14],[9324,14],9416,[2832,9512],2766,2765,2829,2766,[2830,9709],[2832,9710],0,0,0,0,0,[2829,9703],[2830,9704],2765,[2832,9613],[2831,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3245,9620],3180,3244,3182,[3182,9811],[3181,10000],10001,10002,10003,10006,[3245,10098],[3245,10099],[3063,3053,10100],[3062,10101],10001,10002,10003,9905,[9809,14],0,0,0,[9718,14],9719,[10006,9524],[3063,10102],[3063,10194],[3062,9233],[3063,9234],[3062,9235],3062,[3063,10097],[10001,9523],9712,[9713,14],0,[9814,14],9815,[3245,9620],3246,3243,[3245,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4522,4523,4145,4146,801,802,801,802,801,802,4334,4335,801,802,4332,4333,0,0,0,0,4328,4329,801,802,801,802,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,4435,4436,4234,[802,4808],865,[802,4810],4433,4434,866,865,4147,4148,4522,4523,4524,4525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15021,15085,15406,15408,15407,15407,15407,15407,15407,15409,15154,15155,15156,15406,15408,15407,15409,15086,15085,15086,15021,0,0,0,0,0,0,0,15085,15085,15533,15279,15280,15537,15279,15534,15215,15534,15534,15536,15280,15216,15406,15408,15408,15408,15407,15407,15408,15409,15534,15216,15087,15091,15281,15086,15281,15091,15089,15085,15021,15280,15216,15215,15021,15086,15021,15085,15086,15085,15086,15022,15022,15021,15085,15406,15407,15407,15408,15407,15408,15409,15021,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[3527,10075],[3592,10167],[3592,10168],[3527,10169],[3592,10170],3591,3592,3269,3530,3269,3528,3528,3593,3591,3592,3529,[3528,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,9593],3530,3593,3333,3594,3592,3593,[3592,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3594,9593],3530,3592,3593,[3594,9592],9781,[9782,14],0,0,0,0,0,0,[9787,14],9883,9979,[3594,10071],[3528,10072],[3528,10073],[3528,10074],[3592,10075],3593,3528,3268,3593,[3528,9303],[3530,9496,9306],9589,[9590,14],0,0,[9787,14],9883,9979,[3594,10071],[3593,10072],[3594,10073],[3528,10074],9974,9878,9879,9880,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2829,9799],[2829,9800],2768,2831,2830,2832,2830,[2766,9517],[2829,9417],[2831,9420],9421,0,0,0,0,[2767,9703],[2832,9704],2831,[2768,9709],[2831,9710],10093,0,0,0,0,0,0,10088,9992,9993,9994,9993,9994,9995,9996,9993,9994,9995,9996,[2830,9896],[2831,9800],2831,2766,2829,2766,[2831,9517],9518,[9321,14],[9324,14],0,0,0,10088,[2768,9703],[2766,9704],2765,[2766,9613],[2831,9614],0,0,0,0,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2829,9607],[2829,9608],2831,[2832,9709],[2830,9710],10093,0,0,0,0,0,[2767,9607],[2832,9608],2832,[2830,9709],[2829,9710],0,0,0,[2829,9607],[2765,9608],2767,2832,2766,2768,2768,[2829,9517],[2767,9417],[2767,9420],[2832,9512],2768,2829,2765,2766,2829,[2830,9613],[2766,9614],0,0,0,0,0,[2829,9607],[2831,9608],2766,[2831,9709],[2832,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3182,9620],3246,3244,3182,3181,[2999,3117],[3063,3178,10097],[3244,10098],[3181,10099],[3180,10102],[3179,10194],[3246,10195],[3062,3247,10196],[3063,10197],[2998,10097],[2998,10098],[2998,10099],[10001,9523],9616,[9617,14],0,0,[9622,14],9623,[3063,10102,9620],3062,3062,3062,3063,3063,[3063,3052],[3063,2991],[3063,10097,9619],9808,9906,9907,9910,9911,[3179,9716],3182,3182,[3180,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,4619,4241,4242,865,866,865,866,865,866,4430,4431,865,866,4428,4429,0,0,0,0,4424,4425,865,4334,4335,866,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,4526,4527,802,801,802,801,802,801,4243,4244,4618,4619,4620,4621,0,0,0,4136,4137,4712,4713,4714,4140,4141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15086,15406,15407,15407,15407,15408,15407,15407,15542,15344,15343,15344,15543,15407,15408,15604,15343,15345,15022,15021,0,0,0,0,0,0,0,15085,15021,15342,15343,15344,15343,15344,15343,15344,15343,15344,15343,15345,15533,15406,15407,15407,15407,15408,15407,15283,15409,15022,15534,15087,15091,15281,15086,15281,15088,15089,15215,15085,15216,15216,15021,15085,15085,15022,15086,15085,15085,15086,15086,15021,15086,15021,15470,15471,15472,15541,15407,15408,15409,15085,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,10075],3592,3529,3530,3530,3529,3591,3594,3269,3530,3593,3528,3593,3529,3591,3528,3592,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3592,9593],3332,3268,3593,3593,3530,3592,[3530,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3528,9593],3530,3592,3592,[3530,9688],9877,9878,[9782,14],0,0,0,0,[9595,14],9596,9979,[3594,10075],[3529,10167],[3529,10168],[3268,10169],[3528,10170],3594,3593,3268,3592,[3530,9398],9399,9402,[9494,14],0,0,[9787,14],9883,9979,[3529,10075],[3530,10167],[3529,10168],[3268,10169],[3268,10170],[3592,10070],9974,9975,9976,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9895,[2829,9896],2766,2768,2831,2831,2768,2831,2767,2768,[2832,9517],9518,[9321,14],[9324,14],9416,[2765,9512],2832,2768,[2830,9709],[2832,9710],0,0,0,0,0,0,0,0,10088,10089,10090,10089,10090,10091,10092,10089,10090,10091,10092,9992,[2830,9896],[2766,9899],[2832,9900],[2831,9800],2765,2765,[2831,9517],[2831,9417],[2832,9420],9518,0,0,0,[2767,9607],[2830,9608],2765,[2765,9709],[2832,9710],0,0,0,0,0,0,0,0,0,10088,[2830,9703],[2829,9704],2831,[2767,9613],[2767,9614],9615,0,0,0,0,0,[2768,9607],[2768,9608],2768,[2765,9613],[2831,9614],0,0,0,[2765,9703],[2829,9704],2765,2830,2765,2832,2768,2768,2830,2766,2767,2830,2829,2829,[2830,4249],2767,[2767,9709],[2832,9710],0,0,0,0,0,[2830,9703],[2765,9704],2768,[2768,9613],[2768,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9815,[3246,9620],3245,[3063,3309],[3063,3310],[3063,3311],3063,[3062,3242],[3182,10194],[3180,10195],3243,3179,3244,3245,[3063,3053],3062,[3063,10194],[3063,10195],[2999,10097,9619],9712,[9713,14],0,0,[9718,14],9719,[3063,9716],3062,[3062,3051],[3063,2988],[3063,2989],[3063,2990],3243,3245,[3245,9715],9904,10002,10003,10006,[3244,10007],[3179,9812],3245,3181,[3245,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,802,801,802,801,802,4339,4340,4140,4141,0,0,4328,4329,801,4430,4431,802,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,4622,4623,866,865,866,865,866,865,4428,4429,0,0,0,0,0,0,0,4232,4233,[866,4808],801,[866,4810],4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15086,15470,15472,15472,15472,15471,15471,15471,15471,15541,15408,15408,15407,15407,15408,15408,15408,15409,15085,15021,0,0,0,0,0,0,0,15021,15085,15406,15407,15407,15408,15407,15408,15408,15407,15407,15408,15409,15533,15470,15471,15471,15471,15472,15471,15471,15473,15085,15534,15087,15091,15217,15281,15281,15088,15089,15215,15280,15216,15021,15533,15086,15022,15085,15021,15086,15021,15021,15085,15021,15086,15085,15085,15022,15022,15470,15471,15472,15473,15085,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,3591,3593,3332,3269,3591,3593,3269,3528,3269,3530,3528,3592,3529,3529,3530,3332,3592,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3594,9689],3592,3530,3268,3594,3529,3594,[3594,9784],[3268,9973],9974,9589,[9590,14],0,0,0,0,0,0,0,0,[9787,14],9883,9884,[3528,9689],3268,3268,3529,[3528,9784],[3593,9973],9974,9878,[9782,14],0,0,0,[9691,14],9692,[3593,10075,9497],3268,3268,3593,3529,3268,3594,3528,3529,[3527,9493],[9494,14],0,0,0,0,[9595,14],9596,9979,[3593,10075],3593,3593,3594,3268,3594,3529,[3592,10070],[3529,10071],[3530,10072],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9991,9992,[2832,9607],[2767,9608],2832,2830,2767,2766,2767,2766,2829,[2766,9517],[2768,9417],[2829,9420],[2767,9512],2767,2767,2832,2768,[2829,9517],9421,0,0,0,0,0,0,0,0,[10185,14],[10186,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,9995,9996,[2832,9896],[2765,9800],2830,2829,2829,[2765,9613],[2766,9614],0,0,0,[2765,9703],[2766,9704],2768,[2830,9613],[2767,9614],0,0,0,0,0,0,0,0,0,0,[2831,9607],[2832,9608],2829,[2768,9709],[2830,9710],9711,0,0,0,0,0,[2830,9703],[2829,9704],2832,[2766,9709],[2765,9710],0,0,0,[2831,9607],[2829,9608],2832,2830,2831,2767,2766,2766,2768,2767,2767,2831,2765,[2829,4344],[2832,4345],[2831,4346],[2831,9613],[2831,9614],0,0,0,0,0,[2829,9607],[2830,9608],2829,[2765,9709],[2768,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,9911,[3182,9716],[3062,3247],3063,3062,3063,3062,[3062,3306],3180,3181,3179,3244,3243,3244,3244,[3062,2987],[2998,2988],[3063,2991],[2998,9619],9616,[9617,14],0,0,0,[9526,14],[3062,9430],[3063,2986],3181,3244,3180,3246,3246,3180,[3182,9811],[3182,10000],[3179,10098],[3246,10099],[3245,10102],3181,3179,3181,3179,[3181,9811],[3179,10000],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,4238,4239,866,865,866,865,866,865,866,4435,4436,4236,4237,0,0,4424,4425,865,866,865,866,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4145,4146,4528,4529,4147,4148,[866,4904],865,[802,4906],4145,4146,4239,801,4339,4340,4139,4140,4141,0,0,4136,4137,4337,4338,801,802,801,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15085,15086,15086,15022,15085,15021,15021,15021,15086,15470,15472,15471,15408,15408,15407,15540,15472,15473,15085,15021,0,0,0,0,0,0,0,15086,15085,15406,15408,15407,15407,15407,15408,15407,15407,15407,15408,15409,15537,15533,15280,15534,15536,15536,15280,15534,15216,15021,15533,15151,15152,15152,15152,15152,15152,15153,15021,15215,15086,15086,15280,15085,15022,15021,15086,15022,15086,15086,15086,15150,15149,15150,15022,15086,15085,15022,15085,15085,15085,15021,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9884,3530,3530,3530,3527,3269,3529,3530,3593,[3527,9303],[3528,9304],[3594,9305],[3592,9306],3594,3593,3269,3592,[3591,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3529,9403],3528,3594,3592,3530,3268,3529,3593,3530,[3593,10070,9496],9685,[9686,14],0,0,0,0,0,0,0,[9787,14],9883,9979,[3593,9980],[3594,9785],3530,3529,3529,3530,3530,[3594,10070],9974,9878,[9782,14],0,0,[9787,14],9788,[3593,9593],3594,3593,3528,3594,3593,3592,3528,3594,9589,[9590,14],0,0,0,0,[9691,14],9692,[3530,10075,9497],3530,3528,3528,3594,3592,3528,3529,3333,[3529,10167],[3530,10168],[3528,10070],[9974,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,[2765,9703],[2765,9704],2830,2765,2829,2830,2831,2831,2766,2830,2766,2832,2767,2765,2829,2829,2829,2832,[2831,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],0,0,10088,10091,10092,9992,[2765,9703],[2768,9704],2767,2766,[2767,9709],[2831,9710],9422,0,0,[2766,9607],[2768,9608],2830,[2831,9709],[2832,9710],0,0,0,0,0,0,0,0,0,0,[2766,9703],[2829,9704],2766,2830,[2831,9517],9421,0,0,0,9415,9416,[2768,9512],2767,2767,[2768,9613],[2829,9614],0,0,0,[2832,9703],[2768,9704],2830,2832,2832,2829,2767,[2766,9805],[2831,9897],[2768,9898],[2766,9800],2831,2831,2830,2766,2767,[2767,9709],[2765,9710],0,0,0,0,0,[2768,9703],[2768,9704],2831,[2830,9613],[2832,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[10006,9524],[3243,10098],[3180,10099],[3180,10007],[3244,9812],[3062,3117],3062,3063,3063,3062,3063,[3063,3115],[3179,9330],[3245,9333],3179,3245,3245,3181,3179,3182,[3062,3247],[2999,9619],9712,[9713,14],0,0,0,0,[9526,14],[3062,3242,9527],3181,3182,3246,3179,3246,3180,3182,3181,[3182,10194],[3243,10195],3243,3243,3245,3179,3182,3179,3246,[3246,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,801,802,801,802,801,802,801,802,801,802,801,802,4332,4333,0,0,4520,4521,4522,[866,4904],4522,[866,4906],4524,4525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4241,4242,4624,4625,4243,4244,5000,5001,5002,4241,4242,866,865,4435,4436,4235,4236,4237,0,0,4232,4233,4433,4434,865,866,865,4339,4340,4140,4141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15085,15021,15021,15085,15086,15022,15085,15086,15021,15086,15086,15085,15470,15472,15471,15473,15086,15021,15021,15022,0,0,0,0,0,0,0,15085,15022,15406,15407,15407,15283,15408,15408,15408,15408,15408,15085,15022,15534,15534,15021,15086,15536,15216,15085,15533,15085,15021,15533,15536,15085,15215,15280,15537,15280,15215,15022,15216,15021,15533,15533,15021,15021,15085,15022,15086,15085,15149,15150,15213,15214,15214,15086,15022,15022,15022,15086,15086,15022,15021,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3530,9980],3528,3269,3591,3530,3594,3528,[3332,9415],[3528,9398],9399,9400,9401,9402,[3529,9500],[3527,9303],[3528,9306],[3530,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9500],[3592,9303],[3594,9306],3593,3528,3592,3529,3594,[3592,9592],9685,[9686,14],0,0,0,0,0,0,[9787,14],9883,9979,[3592,10075],3269,3592,3593,3594,3268,3529,3594,3593,[3530,10070],9974,9878,9881,9882,9883,9884,[3530,9689],3530,3594,3529,3594,3594,3528,3528,[3528,9398],[9494,14],0,0,0,0,0,[9787,14],9788,[3592,9593],3593,3593,3528,3268,3268,3528,3594,3332,3529,3592,3529,[3593,10070,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9799],[2765,9800],2832,2765,2830,2767,2768,2768,2829,2768,2768,2768,2767,2767,2831,2767,2767,2830,2766,[2830,9517],[2831,9417],[2765,9418],[2831,9419],[2766,9420],[2767,9417],[2829,9418],[2767,9419],[2829,9420],[2829,9417],[2830,9418],[2767,9419],[2830,9420],[2829,9417],[2832,9418],[2765,9419],[2766,9420],9421,0,0,[10187,14],[10188,14],10088,[2767,9607],[2832,9608],2766,2767,2830,[2768,9517],9518,9422,0,[2829,9703],[2829,9704],2832,2830,[2767,9517],9518,0,0,0,0,0,0,0,0,9416,[2766,9512],2766,2829,2766,2765,[2766,9517],9518,[9321,14],[9324,14],9511,[2765,9512],2829,2767,2830,[2831,9709],[2831,9710],0,0,0,[2830,9607],[2765,9608],2832,2829,2831,2768,[2768,9805],[2829,9901],9993,9994,[2831,9896],[2832,9800],2829,2765,2767,2832,[2832,9613],[2831,9614],0,0,0,0,0,[2768,9607],[2767,9608],2767,[2832,9709],[2831,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3244,10102,9620],[3180,10194],[3243,10195],3181,[3063,3055],3062,3062,3063,3063,3063,[3062,9424],[3063,9425],9426,9429,[3246,9430],3179,3182,3246,3182,3179,3245,[3062,3054,9619],9616,[9617,14],0,0,0,0,[9718,14],9719,[3182,9524],3243,3182,3244,3180,3245,[3246,9330],[3246,9331],[3180,9332],[3243,9333],3246,3245,3180,3181,3179,3245,3244,[3246,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,4334,4335,866,4428,4429,0,0,4616,4617,4618,5000,5001,5002,4620,4621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,4339,4340,4140,4141,0,4328,4329,802,801,802,4528,4529,4332,4333,0,0,4328,4329,801,802,801,802,801,4435,4436,4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15150,15150,15150,15350,15351,15149,15149,15150,15150,15149,15149,15086,15085,15021,15085,15022,15085,15085,15086,15022,15021,0,0,0,0,0,0,0,15086,15022,15406,15408,15408,15407,15407,15407,15408,15408,15408,15021,15413,15086,15536,15537,15533,15533,15534,15021,15536,15533,15537,15280,15086,15216,15536,15086,15537,15022,15280,15215,15533,15536,15537,15021,15085,15413,15085,15085,15350,15351,15213,15213,0,0,0,15086,15086,15085,15021,15085,15085,15086,15021,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,9979,[3529,10075],3592,3269,3269,3594,3592,3592,3591,[3529,9398],[9494,14],0,0,0,0,[9499,14],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9402,[3593,9500],3592,3528,3593,3592,[3594,9592],9781,[9782,14],0,0,0,0,0,[9595,14],9596,9979,[3530,10075],3528,3530,3529,3592,3530,3529,3529,3594,3332,3592,[3592,10070],9974,9977,9978,9979,[3530,9980],[3528,9785],3528,3528,3593,3593,3592,3594,[3528,9496],9589,[9590,14],0,0,0,0,[9787,14],9883,9884,[3593,9689],3594,3593,3530,3593,3594,3593,3529,3528,3529,3593,3530,[3594,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9895,[2831,9896],[2765,9897],[2832,9898],[2832,9899],[2832,9900],[2831,9800],2765,2829,2767,2766,2830,2766,2765,2768,2829,2765,2767,2768,2832,2831,2829,2768,2765,2832,2829,2765,2830,2767,2829,2829,2765,2829,2766,2831,2831,[2765,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],[2832,9703],[2829,9704],2767,2831,2765,2832,[2829,9517],9518,9416,[2767,9512],2766,2830,2765,2832,[2767,9517],9518,[9321,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],9416,[2832,9512],2832,2767,2829,2768,2767,2767,[2767,9517],[2830,9417],[2832,9420],[2829,9512],2831,2830,2831,2829,2832,[2832,9517],9518,[9321,14],[9324,14],[2830,9703],[2832,9704],2766,2830,2765,[2766,9805],[2767,9901],9997,10089,10090,9992,[2832,9896],[2767,9800],2830,2831,2765,[2829,9709],[2766,9710],0,0,0,0,0,[2766,9703],[2830,9704],2829,[2768,9613],[2832,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[3179,9716],3243,3181,3182,[3063,3119],3063,3063,3062,3062,[3063,3052],[3063,2987,9520],[9521,14],0,[9622,14],9623,[3181,9524],3245,3179,3180,3182,3243,[3180,9715],9712,[9713,14],0,0,0,0,[9622,14],9623,[3245,9620],3179,3180,3244,3182,[3180,9425],9426,9427,9428,9429,[3245,9430],[3182,9330],[3246,9333],3182,3244,3182,3244,[3181,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4522,4523,4522,4145,4146,865,801,802,801,4430,4431,802,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,4435,4436,4236,4237,0,4424,4425,866,865,866,4624,4625,4428,4429,0,0,4424,4425,865,866,865,866,865,866,865,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15213,15214,15214,15414,15415,15213,15214,15213,15214,15213,15213,15085,15085,15085,15086,15021,15022,15086,15022,15085,[15085,128],0,0,0,0,0,0,0,15086,15085,15470,15471,15472,15472,15472,15471,15541,15408,15407,15601,15477,15597,15601,15597,15666,15600,15666,15597,15598,15600,15598,15601,15666,15600,15598,15597,15597,15597,15598,15601,15600,15600,15666,15600,15601,15477,15149,15150,15414,15415,0,0,0,0,0,15085,15085,15086,15150,15149,15149,15150,15150,15150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9884,[3593,10075],3592,3528,3593,3593,3530,3268,3591,3592,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9500],3268,3268,3530,[3332,9688],9877,9878,[9782,14],0,0,0,0,[9787,14],9788,[3530,10075],3529,3530,3530,3268,3528,3268,3592,3268,3268,3528,3530,3530,[3594,10070],[3593,10073],[3594,10074],[3529,10075],3592,3528,3594,3594,3529,3594,3530,3268,[3530,9592],9685,[9686,14],0,[9787,14],9879,9880,9883,9979,[3594,9980],[3593,9785],3592,3594,3528,[3591,9303],[3528,9304],[3594,9305],[3594,9306],3268,3528,3593,3594,[3591,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9991,9992,9993,9994,9995,9996,[2831,9896],[2830,9800],2765,2831,2830,2765,2766,2829,2830,2767,2831,2832,2766,2832,2831,2831,2767,2830,2766,2765,2767,2830,2768,2768,2766,2832,2766,2830,2830,2830,2830,[2768,9517],[2831,9417],[2765,9418],[2829,9419],[2765,9420],[2765,9512],2832,2829,2830,2829,2767,2830,[2767,9517],[2831,9512],2766,2767,2831,2831,2832,2830,[2765,9517],[2829,9417],[2768,9420],[2830,9417],[2767,9418],[2767,9419],[2829,9420],[2765,9512],2765,2768,2768,2767,2832,2832,2830,2766,2765,2831,2768,2832,2831,2832,2830,2767,2768,[2832,9517],[2831,9417],[2832,9420],[2767,9512],2831,2765,2831,[2768,9613],[2768,9614],9997,10093,[10185,14],[10186,14],10088,9992,[2829,9607],[2830,9608],2831,2831,[2767,9613],[2768,9614],0,0,0,0,0,[2768,9607],[2829,9608],2768,[2832,9709],[2829,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3243,10007],[3182,9812],3181,3182,3245,[3062,3183],3062,3063,[2998,3051],[3062,2987],[3182,9523],9616,[9617,14],0,0,[9526,14],[2371,3307,9527],[2371,3307],[2434,3308],[2434,3309],[2434,3310],[2371,3310],[3182,9425],[9521,14],0,0,0,0,0,[9718,14],9719,[3243,9620],3245,3182,3182,[3243,9520],[9521,14],0,0,0,0,[9526,14],9426,9429,[3244,9430],3245,3245,3179,[3246,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,4619,4618,4241,4242,802,865,866,865,866,865,866,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,4334,4335,4332,4333,0,4520,4521,4523,4145,4146,801,802,4339,4340,4138,4139,4337,4338,801,802,801,4334,4335,802,801,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15150,15150,15150,15150,15150,15150,15149,15149,15350,15351,0,0,0,0,0,0,0,15085,15086,15085,15022,15022,15022,15022,15021,15470,15472,15473,15021,15022,15662,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15664,15665,15085,15085,15214,15214,0,0,0,0,0,0,0,15086,15086,15085,15214,15214,15214,15214,15214,15214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3591,9980],3269,3530,3269,3594,3592,3530,3592,3592,3528,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3528,9497],3594,3530,[3528,9784],[3592,9973],9974,9589,[9590,14],0,0,[9691,14],9692,9884,3593,3332,3592,3592,3529,3528,3593,3530,3268,3592,3528,3594,3268,3592,[3530,10169],[3529,10170],3268,3530,3592,3268,3593,3592,3528,3594,3530,[3594,9592],9781,9879,9880,9883,9975,9976,9979,[3529,10075],3268,3594,3592,3528,[3593,9493],9399,9400,9401,9402,[3530,9403],[3529,9303],[3529,9306],[3594,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,10089,10090,10091,10092,9992,[2765,9896],[2768,9800],2830,2767,2830,2768,[2829,9805],[2767,9898],[2830,9800],2766,2831,2765,2830,2832,2830,2829,2832,2830,2768,2832,2768,2832,2765,2831,2768,2830,2767,2767,2829,2829,2765,2831,2767,2768,2832,2830,2765,2767,2768,2830,2832,2829,2832,2768,2831,2765,2831,2831,2767,2766,2829,2832,2767,2829,2829,2767,2831,2767,2767,2768,2832,2830,2766,2832,2766,2829,2765,2766,2766,2765,2832,2767,2829,2768,2830,2829,2768,2768,2829,2765,2831,2832,[2766,9709],[2768,9710],10093,0,0,0,0,10088,[2766,9703],[2832,9704],2765,2768,[2832,9709],[2768,9710],0,0,0,0,0,[2766,9703],[2768,9704],2765,[2765,9613],[2831,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3182,10102],3246,3182,3182,[3180,9330],[3181,9333],[3063,3247],[3062,3051],[3062,2987],3181,3243,[3180,9619],9712,[9713,14],0,0,[9718,14],9719,[2371,9524],2434,2434,2370,[2435,9520],[9521,14],0,0,0,0,0,0,[9814,14],9815,[3182,9620],3243,3245,[3245,9523],9616,[9617,14],0,0,0,0,0,0,[9622,14],9623,[3243,9524],3245,3180,[3181,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,865,801,802,801,802,4147,4148,4524,4525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,4430,4431,4428,4429,0,4616,4617,4619,4241,4242,865,866,4435,4436,4234,4235,4433,4434,865,866,865,4430,4431,866,865,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15214,15214,15213,15214,15214,15213,15214,15213,15414,15415,0,0,0,0,0,0,0,15021,15086,15022,15086,15022,15086,15021,15021,15022,15021,15022,15021,15021,15790,15791,15792,15792,15791,15791,15792,15792,15791,15791,15791,15791,15792,15792,15791,15792,15792,15791,15791,15792,15792,15792,15793,15085,15085,0,0,0,0,0,0,0,0,0,15026,15027,15028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,3591,3592,3594,3592,3529,3591,3530,3529,3527,3528,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9881,9882,9879,9880,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3594,9593],3529,3268,3530,3528,[3592,10070,9496],9685,[9686,14],0,0,[9595,14],9596,[3528,9980,9497],3592,3594,3530,3594,3529,[3530,9303],[3594,9304],[3530,9305],[3528,9306],3529,3594,3529,3593,3269,3268,3528,3529,3592,3593,3592,3529,3593,3592,3530,3594,[3594,9688],9877,9975,9976,9979,[3592,10071],[3593,10072],[3594,10075],3268,3594,3594,3593,3529,9685,[9686,14],0,0,0,[9499,14],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2767,9607],[2765,9608],2766,2830,[2830,9805],[2829,9901],9994,[2768,9896],[2767,9897],[2765,9898],[2830,9899],[2829,9900],[2767,9899],[2766,9900],[2765,9800],2767,2766,2829,2765,2832,2766,[2830,9805],[2766,9897],[2768,9898],[2829,9898],[2766,9899],[2767,9900],[2832,9800],2832,2767,2765,2768,2832,2829,2830,2768,2768,2830,2767,2766,2766,2829,2829,2829,2832,2832,2832,2765,2831,2765,2832,2768,2766,2832,2766,2831,2768,2832,2831,2830,2829,2765,2829,2767,2766,2765,2831,2832,2832,2831,2765,2765,2767,2768,2830,2767,2768,2768,2766,2831,2831,2830,[2768,9517],9518,9422,0,0,0,0,[2767,9607],[2831,9608],2829,2766,2768,[2829,9517],9421,0,0,0,9511,[2767,9512],2829,2832,[2832,9709],[2767,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[10006,9524],[3063,3242,10102],3181,3179,3180,[3180,9425],9426,9429,[3181,9430],3243,3179,3181,3244,[3243,9619],9616,[9617,14],0,0,[9622,14],9623,[2434,9620],2114,2435,2370,9712,[9713,14],0,0,0,0,0,[9814,14],9910,9911,[3244,9716],3180,3243,[3246,9619],9712,[9713,14],0,0,0,0,0,0,[9718,14],9719,[3243,9620],3180,3244,[3179,9811],[3243,10000],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,865,801,802,866,4243,4244,4620,4621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,4332,4333,0,0,0,0,4328,4329,801,802,801,802,801,4526,4527,802,801,802,801,802,801,802,801,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15149,15149,15149,15150,15149,15150,15085,15085,15021,15022,15021,15086,15085,15022,15085,15021,15021,15085,15085,15085,15022,15086,15021,15085,15021,15086,15022,15086,15021,15021,15085,15021,15086,15086,15085,15085,15022,15086,0,0,0,0,0,0,0,0,0,15090,15091,15092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3591,9500],3593,3529,3268,3269,3592,3530,3528,3527,3530,9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,9977,9978,9975,9976,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,9593],3593,3594,3594,3592,[3594,9688],9685,[9686,14],0,0,[9691,14],9692,[3528,9593],3530,3332,3594,3593,[3594,9398],9399,9400,9401,9402,[3594,9403],3528,3529,3333,3592,3594,3268,3593,3530,[3530,9303],[3528,9306],3529,3268,3530,3529,3592,[3593,9784],[3592,9973],[3592,10071],[3530,10072],[3530,10075],[3594,10167],[3528,10168],3529,3593,3592,3529,3528,[3592,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,[2767,9703],[2829,9704],2765,[2829,9613],[2767,9614],9997,10090,9992,9993,9994,9995,9996,9995,9996,[2766,9896],[2768,9800],2767,2830,2831,2829,[2768,9805],[2765,9901],9993,9994,9994,9995,9996,[2767,9896],[2767,9897],[2768,9898],[2830,9899],[2768,9900],[2832,9800],2765,2831,2765,2767,[2765,4249],2765,2832,2832,2766,[2766,9805],[2832,9897],[2831,9898],[2766,9899],[2830,9900],[2830,9897],[2830,9898],[2766,9899],[2832,9900],[2829,9897],[2765,9898],[2830,9899],[2768,9900],[2829,9897],[2765,9898],[2766,9899],[2832,9900],[2832,9900],[2767,9800],2766,2829,2830,2829,2766,2829,[2768,9805],[2830,9897],[2829,9898],[2832,9899],[2829,9900],[2831,9897],[2767,9898],[2832,9899],[2768,9900],[2831,9800],2765,2831,2832,2831,2830,2765,[2830,9517],9518,0,0,0,0,[2829,9703],[2767,9704],2766,2767,2830,2831,[2767,9517],9518,[9321,14],9511,[2766,9512],2768,2830,2767,[2765,9613],[2831,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3062,10102,9620],[3063,3306],[2998,3307],3243,[3244,9425],[9521,14],0,[9622,14],9623,[3246,9524],3245,3243,3246,[3181,9619],9712,[9713,14],0,0,[9718,14],9719,[2370,9620],2370,2370,2435,9712,[9713,14],0,0,0,0,[9718,14],9719,[10006,9524],[2370,10007],[2370,3116,9812],3181,3179,[3245,9425],[9521,14],0,0,0,0,0,0,0,[9622,14],9623,[3245,9620],3245,3244,3179,3182,[3246,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4522,[802,4904],866,[801,4906],4523,4524,4525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,4238,4239,865,866,4428,4429,0,0,0,0,4328,4329,865,866,865,866,865,4622,4623,866,865,866,865,4147,4148,4522,4523,4524,4525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15213,15213,15214,15213,15213,15213,15150,15149,15149,15150,15149,15085,15085,15342,15343,15343,15344,15343,15343,15344,15343,15343,15343,15343,15343,15343,15343,15344,15343,15344,15344,15343,15343,15343,15343,15345,15085,15085,0,0,0,0,0,0,0,0,0,15154,15155,15156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,3592,3594,3527,3592,3269,3592,3530,3594,3529,9877,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9884,[2560,10073],[2754,10074],[2818,10071],[2818,10072],[2496,10073],[2560,10074],[9974,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3529,9593],3529,3594,3592,3593,[3593,9398],[9494,14],0,0,0,[9595,14],9596,[3594,9593],3530,3530,3593,[3529,9398],[9494,14],0,0,0,0,[9499,14],[3594,9500],3594,3528,3594,3530,3593,3594,[3594,9398],9399,9402,[3593,9500],3592,3528,3592,3268,3529,3530,[3530,10167],[3268,10168],3268,3529,3269,3528,3593,3268,3268,[3592,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[1792,10089],[1792,10090],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9607],[2766,9608],2766,[2832,9709],[2767,9710],10093,[10186,14],10088,10089,10090,10091,10092,10091,10092,9992,[2765,9703],[2832,9704],2831,2765,[2831,9613],[2768,9614],9997,10089,10090,10090,10091,10092,9992,9993,9994,9995,9996,[2765,9896],[2829,9800],2830,2830,[2766,4344],[2767,4345],[2766,4346],2830,2831,[2768,9805],[2831,9901],9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9996,[2832,9896],[2765,9800],2832,2765,2765,2768,[2765,9805],[2768,9901],9993,9994,9995,9996,9993,9994,9995,9996,[2831,9896],[2767,9800],2766,2831,2768,2829,2766,[2766,9709],[2830,9710],0,0,0,0,[2766,9607],[2830,9608],2766,2831,2830,2831,2765,[2765,9517],[2831,9417],[2766,9512],2829,2767,2831,2767,[2832,9709],[2831,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[3062,9716],3062,3063,[2999,9520],[9521,14],0,0,[9718,14],9719,[3243,9620],3244,3243,3179,[3244,9619],9808,[9809,14],0,0,[9814,14],9815,[2371,9620],2434,2371,2370,9808,[9809,14],0,0,0,0,[9814,14],9815,[2434,10102,9620],2434,2434,[2371,3242],[3182,9520],[9521,14],0,0,0,0,0,0,0,0,[9718,14],9719,[3181,9620],3244,3179,3244,3180,[3245,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,5000,5001,5002,4619,4620,4621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4522,[802,4904],801,[865,4906],4524,4525,0,0,0,0,4424,4425,801,4238,4239,4147,4148,4522,4523,4145,4146,802,801,4243,4244,4618,4619,4620,4621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15213,15213,15214,15213,15213,15021,15086,15470,15471,15471,15471,15471,15472,15471,15472,15472,15471,15471,15471,15471,15472,15472,15471,15472,15471,15471,15472,15472,15471,15473,15085,15086,0,0,0,0,0,0,0,0,0,15149,15350,15351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,3530,3593,3527,3591,3591,3591,3528,3529,3529,[3591,9973],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[2818,9980],[2754,10169],[2560,10170],[2754,3399,10167],[2560,3339,10168],[2560,10169],[2818,10170],[2755,10070,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9881,9882,9879,9880,[9782,14],0,0,[9787,14],9883,9884,[3529,9689],3528,3593,3529,[3530,9493],[9494,14],0,0,0,0,[9691,14],9692,[3593,9593],3592,3594,[3593,9496],9589,[9590,14],0,0,0,0,[9595,14],9596,[3594,9497],3530,3594,3593,3528,[3592,9398],[9494,14],0,0,[9499,14],[3530,9403],3593,3529,3528,3594,3529,3594,3528,3592,3528,3594,3528,3528,3530,[3529,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9910,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,[9800,14],0,0,0,0,0,[9613,14],9710,[9997,9515],[1792,10093],[1857,10185],[1793,10186],[1792,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2830,9703],[2767,9704],2768,[2766,9613],[2768,9614],0,0,0,[10185,14],[10186,14],[10187,14],[10188,14],[10187,14],[10188,14],10088,[2829,9607],[2765,9608],2765,2765,[2829,9709],[2830,9710],10093,[10185,14],[10186,14],[10186,14],[10187,14],[10188,14],10088,10089,10090,10091,10092,9992,[2829,9896],[2829,9800],2765,2829,2830,2832,2767,[2765,9805],[2765,9901],9997,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10090,9992,[2830,9607],[2830,9608],2766,2832,[2766,9613],[2765,9614],9997,10089,10090,10091,10092,10089,10090,10091,10092,9992,[2832,9607],[2829,9608],2831,2830,2830,2766,[2830,9613],[2767,9614],0,0,0,0,[2832,9703],[2765,9704],2765,2768,2768,2830,2768,2829,2766,2832,2829,2768,2831,2767,[2830,9613],[2831,9614],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3063,10007],[3063,9812],3063,[3063,9523],9712,[9713,14],0,0,[9718,14],9719,[3244,9620],3179,3244,3180,[3246,9715],9904,9905,9908,9909,9910,9911,[2370,9716],2371,2371,2435,9904,9905,9906,9907,9908,9909,9910,9911,[2434,9716],2051,2434,[2434,3306,9523],9616,[9617,14],0,0,0,0,0,0,0,0,[9622,14],9623,[3180,9716],3246,3245,3182,[3246,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9879,9880,8919,8920,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9303,9304,9305,9305,9306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,5000,5001,5002,4620,4621,4136,4137,4138,4139,4337,4338,865,866,865,4243,4244,4618,4619,4241,4242,866,865,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15022,15085,15086,15085,15086,15021,15085,15022,15022,15086,15085,15086,15021,15021,15085,15086,15086,15022,15085,15021,15021,15086,15085,15022,15086,15021,0,0,0,0,0,0,0,0,0,15214,15414,15415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,3594,3268,3592,3269,3593,3269,3527,3593,3268,[3591,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[2755,10075],2496,2755,2819,[2496,3590],3593,[2755,3402],2497,[2496,9688],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9977,9978,9975,9976,9878,9879,9880,9883,9979,[3529,9980],[3528,9785],3594,3593,[3528,9493],[9494,14],0,0,0,0,0,[9595,14],9596,[3530,9593],3529,3530,[3593,9592],9685,[9686,14],0,0,0,0,[9595,14],9596,[3593,9593],3592,3530,3592,[3594,9496],9589,[9590,14],0,0,[9595,14],9596,[3528,9303],[3593,9304],[3593,9305],[3593,9306],3593,3592,3332,3528,3529,3593,3530,3530,3268,[3593,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,10006,[3527,10098],[3528,10099],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9896,9897,9898,[9800,14],0,0,[9805,14],9806,[1792,10093,9611],1792,1792,1792,[1792,3399],[3594,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9607],[2765,9608],2765,[2768,9709],[2831,9710],0,0,0,0,0,0,0,0,0,0,[2832,9703],[2831,9704],2765,2768,[2765,9613],[2767,9614],0,0,0,0,0,0,0,[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,[2829,9607],[2765,9608],2767,2765,2830,[2829,9613],[2831,9614],9997,10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10188,14],10088,[2829,9703],[2768,9704],2766,2768,[2831,9709],[2768,9710],10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],10088,[2832,9703],[2830,9704],2765,2768,2831,2831,[2832,9709],[2767,9710],0,0,0,0,[2768,9607],[2766,9608],2768,2829,2767,2830,2768,2831,2831,2765,2830,2830,2766,2829,[2766,9709],[2831,9710],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3063,10102,9620],3063,3062,3063,[3063,9619],9808,[9809,14],0,0,[9814,14],9815,[3181,9620],3180,3246,3243,[3246,9811],[3180,10000],10001,10004,10005,10006,[2370,10007],[2371,9812],2435,2114,2370,[2435,10000],10001,10002,10003,10004,10005,10006,[2370,10007],[2371,9812],2434,2434,[2435,9619],9712,[9713,14],0,0,0,[9814,14],9908,9909,[9809,14],0,0,[9526,14],[3179,9430],3244,3181,3180,[3244,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9975,9014,9015,9016,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9397,9398,[3392,9399],[3593,3973,9400],[3594,9401],[3594,3776,9401],[3907,9402],9403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,4233,4234,4235,4433,4434,801,802,801,[801,4717],4718,0,0,4715,[866,4716],802,801,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15150,15149,15150,15149,15150,15150,15150,15150,15149,15350,15351,15150,15150,15149,15150,15149,15150,15149,15149,15149,15350,15351,15149,15149,15149,15149,15149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,3527,3527,3530,3333,3528,3592,3332,3591,3530,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[2561,9500],2755,2561,[2561,3399],3530,3530,[2819,3403],2754,[2561,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,9883,9975,9976,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,10073,10074,[403,10071],[403,10072],9974,9975,9976,9979,[3592,10075],3528,3528,3593,[3592,9496],9589,[9590,14],0,0,0,0,0,[9595,14],9596,[3594,9593],3268,3593,[3530,9592],9685,[9686,14],0,0,0,0,[9691,14],9692,[3530,9593],3594,3528,3530,[3592,9592],9685,[9686,14],0,0,0,[9499,14],9399,9400,9401,9402,[3528,9500],3530,3529,3528,3592,3528,3594,3594,3593,[3594,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3529,3247,10098],[3528,10099],[3530,10102],[3268,10194],[3528,10195],[3592,10097],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[1792,10089],[1792,10090],9992,9993,9994,9896,9897,9898,9901,9902,[1792,9707],1857,[1792,3399],[1792,3335],3528,[3594,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9703],[2768,9704],2830,2768,[2831,9517],9421,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],9416,[2829,9512],2829,2767,2831,[2832,9709],[2766,9710],0,0,0,0,0,0,0,0,0,0,0,0,10088,[2768,9703],[2767,9704],2831,2765,2767,[2832,9709],[2765,9710],10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9416,[2830,9512],2765,2768,2768,[2829,9709],[2832,9710],0,0,0,0,0,0,0,0,0,0,[2831,9703],[2768,9704],2830,2766,2832,2766,[2765,9613],[2768,9614],0,0,0,0,[2829,9703],[2830,9704],2767,2766,2829,2830,2829,2768,2831,2768,2765,2767,2767,2767,[2766,9805],[2767,9806],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3062,9620],3063,3062,3062,[3063,9715],9904,9905,9906,9907,9910,9911,[3246,9716],3182,3243,3244,3179,3244,[2371,3311,10097],[2371,10100],[2435,10101],[2435,10102],2434,2242,2243,2434,2371,2371,[2371,10097],[2435,10098],[2371,10099],[2434,10100],[2371,10101],[2434,10102],2371,2434,2435,2434,[2434,9520],[9521,14],0,0,0,[9814,14],9910,10004,10005,9905,[9809,14],0,0,[9526,14],[3243,9527],3243,3181,[3245,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,8918,8919,8920,9883,9979,[3971,10071],[3907,9110],[3908,9111],[3908,9112],9974,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9493,[3969,9494],3971,[3594,3781],3332,[3528,3840],3905,[3458,9499],9500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9894,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4715,[802,4716],4238,4239,865,866,865,866,865,865,4814,0,0,4811,801,4528,4529,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15214,15214,15213,15214,15214,15214,15213,15213,15214,15414,15415,15214,15214,15214,15213,15213,15214,15214,15214,15214,15414,15415,15214,15214,15213,15213,15214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9884,3593,3593,3594,3592,3529,3592,3591,3592,3592,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[2561,3399,9500],[2818,3335],3593,3268,3592,[2818,3467],[2497,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9979,[3592,10071],[3593,10072],9974,9878,9879,9880,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3528,10075],[3529,10169],[3592,468,10170],[3528,469,10167],[3529,470,10168],[3592,471,10070],[3529,10071],[3530,10072],[3593,10075],3593,3593,3593,3592,[3529,9688],9685,[9686,14],0,0,0,0,0,[9787,14],9788,[3528,9593],3592,3593,[3593,9592],9781,[9782,14],0,0,0,0,[9595,14],9596,[3594,9689],3332,3268,3530,[3594,9592],9589,[9590,14],0,0,0,0,0,0,0,0,[9499,14],[3593,9403],3594,3593,3528,3592,3529,3592,3594,[3593,9784],[3593,9973],9974,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3243,10102],[3529,3247,10194],[3592,10195],3594,3530,3529,3269,[3268,10097],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[1792,10093],[1856,10185],[1856,10186],[1856,10088],[1792,3590,10089],[3529,10090],9992,9993,9994,9997,[1792,3337,9998],[1792,3338,9803],[1792,3335],3529,3594,3530,[3528,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9607],[2768,9608],2832,2832,2829,[2832,9517],[2829,9417],[2767,9418],[2830,9419],[2768,9420],[2768,9417],[2766,9418],[2832,9419],[2830,9420],[2768,9512],2829,2767,2832,2830,2766,[2768,9517],9518,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9607],[2831,9608],2830,2765,2768,[2831,9613],[2765,9614],0,0,0,0,0,0,0,0,0,0,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],9511,[2765,9512],2831,2831,2768,2829,2829,[2768,9517],9421,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],9416,[2832,9512],2765,2766,2765,2830,2766,[2829,9709],[2829,9710],0,0,0,0,[2765,9607],[2831,9608],2765,2832,2832,2767,2829,[2830,9805],[2766,9897],[2768,9898],[2832,9899],[2767,9900],[2766,9897],[2766,9898],[2767,9901],9902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3063,9716],3063,3063,2999,[3063,9811],[3063,10000],10001,10002,10003,10006,[3179,10007],[3244,9812],3180,[3244,9330],[3179,9333],3243,[2370,3118],2434,[2371,10196],[2434,10197],2435,2434,2306,2307,2370,2435,2370,2434,[2370,10194],[2370,10195],[2435,10196],[2371,10197],2371,2435,2371,2371,[2434,9520],[9521,14],0,0,0,[9718,14],9719,[10006,9524],[2370,10100],[2435,10101],[10001,9523],9712,[9713,14],0,[9622,14],9623,[3243,9524],3182,[3182,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9014,9015,9016,9979,[3521,10075],[3971,10167],[3907,9206],[3908,9207],[3393,9208],[3906,10070],9974,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9496,[3591,3841,9589],[3907,9590],3905,[3592,3845],3530,[3529,3904],3969,[3908,9595],[3907,9596],9497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9990,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4811,866,801,802,801,802,801,4334,4335,[866,4909],4910,0,0,4907,[866,4908],4624,4625,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[3530,9980],3594,3528,3591,3332,3269,3530,3529,3591,3591,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3593,9497],3269,3594,3593,[2496,3531],[2818,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3529,10071],[3592,10072],[3594,10075],[3529,10167],[3594,10168],[3594,10070],9974,9975,9976,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3529,10075],3592,3592,3528,3593,3269,3530,[3594,10167],[3530,10168],3594,3593,3530,3593,3529,[3592,9493],[9494,14],0,0,0,0,0,[9787,14],9883,9884,[3594,9689],3529,3592,[3530,9688],9877,9878,[9782,14],0,0,0,0,[9499,14],[3594,9403],3528,3530,3268,[3592,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,[9499,14],[3530,9403],3593,3332,3592,3530,3592,3528,3593,3592,[3593,10070],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3246,10102],3243,3245,[3528,3054],3592,3333,3530,3592,3592,[3592,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[1792,10093,9611],1792,1792,1792,1792,[1792,3590,10185],[3594,10186],[1792,3466,10088],[1857,10089],[1792,10090],[1792,3654,10093],[1792,3657],[1792,3656],[1792,3655],3593,3528,3594,[1792,3465,9706],9895,9896,9897,9898,9899,9900,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2832,9703],[2831,9704],2768,2767,2766,2766,2832,2831,2831,2767,2832,2831,2767,2766,2766,2832,2831,2767,2830,2829,[2831,9709],[2766,9710],0,0,0,0,0,0,0,0,0,0,0,0,[2765,9703],[2830,9704],2767,2766,2830,[2829,9709],[2831,9710],0,0,0,0,0,0,0,0,0,9416,[2768,9417],[2767,9418],[2768,9419],[2766,9420],[2830,9417],[2768,9418],[2832,9419],[2831,9420],[2766,9512],2830,2831,2829,2831,2832,2830,2768,[2829,9517],[2768,9417],[2766,9418],[2767,9419],[2767,9420],[2829,9417],[2767,9418],[2766,9419],[2767,9420],[2767,9512],2767,2765,2767,2768,2832,2832,[2829,9613],[2831,9614],0,0,0,0,[2829,9703],[2765,9704],2831,2767,2829,2767,[2765,9805],[2831,9901],9993,9994,9995,9996,9993,9994,9997,9998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2998,9430],3063,3062,3063,3063,3062,[3062,10097],[3062,10098],[2998,10099],[3062,3242,10102],3245,3243,[3244,9425],9426,9429,[2434,3247,9430],2434,2434,2371,2371,2435,2371,2370,2435,2371,2370,2434,2370,2371,2370,2434,2370,2371,2435,2434,[2371,9523],9712,[9713,14],0,0,0,[9814,14],9815,[2370,10102,9620],[2370,10196],[2371,10197],[2434,10097,9619],9616,[9617,14],0,[9718,14],9719,[3179,9620],3243,[3181,9811],[3243,10000],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9979,[3907,9110],[3906,9111],[3905,9112],[3969,10075],3393,3971,3906,3908,3905,3907,[3457,10070],9974,9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9592,[3529,9589],[3593,3842],3969,[3593,3909],3528,[3530,3968],3456,[3908,9691],[3905,9692],9593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[3919,10086],[3920,10090],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4907,[802,4908],865,866,865,866,865,4430,4431,4428,4429,4136,4137,4337,4338,866,865,4339,4340,4140,4141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15022,15086,15086,15086,15085,15086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15085,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,10075],3527,3530,3528,3529,3530,3594,3591,3591,3527,3530,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,9593],3592,3530,3529,[2561,3466],[2819,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[3527,10075],[3594,10167],[3592,10168],3593,3530,3530,3593,[3529,10070],[3528,10071],[3529,10072],[3594,10073],[3592,10074],9974,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[9979,9497],[3592,10075],3594,3594,3594,3529,3528,3592,3530,3592,3529,3268,3268,3528,3593,[3530,9493],[9494,14],0,0,0,0,0,[9595,14],9596,9979,[3593,9980],[3530,9785],3592,3593,[3528,9784],[3593,9973],9974,9589,[9590,14],0,0,0,0,[9499,14],[3528,9403],3594,3594,[3593,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,[9499,14],[3594,9500],3594,3594,3529,3268,3332,3528,3268,3594,9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[10006,9524],[3243,10102],3182,3180,3243,3179,[3592,2987],[3529,2988],[3594,2989],[3268,2990],[3332,3054],[3530,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,[9800,14],0,0,0,0,[9805,14],9806,[1792,9611],1792,1792,1793,[1792,3400],3530,[1793,3466],1792,[1792,10185],[1792,10186],1792,1792,1792,1792,[1792,3463],3530,[1792,3595],[1792,9802],[1792,9991],9992,9993,9994,9995,9996,9896,9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2767,9607],[2829,9608],2831,[2832,4249],2766,2766,2830,2831,2830,2767,2832,2765,2766,2831,2831,2768,2765,2767,2830,2768,[2765,9805],[2766,9806],0,0,0,0,0,0,0,0,0,0,0,0,[2830,9607],[2832,9608],2767,2832,2766,[2768,9709],[2832,9710],0,0,0,0,0,0,0,0,9416,[2766,9512],2765,2766,2831,2765,2829,2765,2832,2766,2765,2767,2829,2832,2767,2831,2832,2768,2829,2831,2830,2766,2768,2768,2766,2768,2767,2766,2765,2766,2766,2766,2766,2832,[2768,9709],[2765,9710],0,0,0,0,[2766,9607],[2768,9608],2767,2831,2765,[2830,9805],[2767,9901],9997,10089,10090,10091,10092,10089,10090,10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2998,9527],3062,3062,3063,3062,3062,[3063,10194],[3063,10195],[3063,3306],[3063,3307],[3179,9523],9616,[9617,14],0,[9526,14],[2435,9527],[2370,9330],[2370,9333],2434,2435,2114,2371,2434,2435,[2434,9330],[2371,9333],2370,2371,2371,2370,2051,2435,2434,2371,[2435,9619],9808,[9809,14],0,0,[9814,14],9910,9911,[2435,9716],2434,2370,[2370,9619],9712,[9713,14],0,[9814,14],9815,[3180,9620],3244,3180,3246,[3246,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9979,[3969,10075],[3906,9206],[3969,9207],[3971,9208],3971,3905,3394,3907,3969,3906,3905,3908,[3906,10070],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9303,9306,9398,[3593,3713,9494],[3528,3779],[3529,3842],[3592,4037],3592,[3530,3841],[3530,4033],[3528,4034],[3593,4037,9499],9500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[3983,10093],[3918,10182],[3983,10186],[3920,10088],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4522,4523,4522,4523,4522,4523,4523,4524,4525,4232,4233,4433,4434,802,801,4435,4436,4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15476,15476,15476,15476,15476,15476,15476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15086,15086,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,3530,3268,3527,3527,3593,3528,3332,3269,3333,3268,3594,9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3530,9593],3268,3592,[2754,3403],2561,[2819,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3591,10075,9497],3592,3530,3594,3592,3594,3530,3594,3593,[3592,10167],[3592,10168],[3529,10169],[3529,10170],[3527,10070],9974,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3594,10075,9593],3593,3529,3268,3592,3592,3529,3528,3529,3268,3528,3268,3592,3593,[3529,9493],[9494,14],0,0,0,0,0,0,[9691,14],9692,[3530,10075,9497],3530,3593,3528,3594,3529,3528,[3592,10070],9685,[9686,14],0,0,0,0,[9595,14],9596,[3593,9497],3594,[3594,9688],9877,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,[9499,14],[3594,9403],3594,3529,3529,3529,3592,3529,3594,9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3182,10102,9620],3181,3180,3246,3181,3179,3181,3245,3179,3181,3179,[3243,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9896,9897,9898,9899,9900,9901,9902,[1792,3654,9707],[1792,3402],1793,[1792,3399],[1792,3466],[1792,3463],[1792,3402],1792,1792,1792,1792,1792,[1856,9321],[1792,9324],[1792,3400],3530,[1792,3466],1792,1792,[1792,3590,10088],[3530,10089],[3594,10090],[1792,10091],[1792,10092],9992,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2767,9703],[2831,9704],[2831,4344],[2830,4345],[2829,4346],2767,2830,2768,[2832,9805],[2765,9897],[2767,9898],[2768,9899],[2829,9900],[2768,9800],2830,2765,2830,2767,2830,[2768,9805],[2765,9901],9902,0,0,0,0,0,0,0,0,0,0,0,0,[2830,9607],[2829,9608],2829,2767,2767,2768,[2767,9517],9421,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9324,14],9416,[2831,9512],2829,2831,2830,2766,2767,2831,2768,2766,2766,2830,2765,2830,2829,2766,2832,2832,2830,2832,2766,2768,2767,2765,2830,2829,2765,2829,2767,2767,2766,2832,2765,2768,2829,[2766,9613],[2766,9614],0,0,0,0,[2765,9703],[2832,9704],2767,2832,[2767,9613],[2767,9614],9997,10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[2998,9524,9330],[3063,9331],[3062,9332],[3062,9333],3063,3063,3062,3062,2998,[3062,9619],9712,[9713,14],0,0,[9526,14],9426,9429,[2370,9430],2370,2434,2435,2370,[2371,9425],9426,9429,[2371,9430],2370,2371,2435,2435,2370,2371,2434,[2434,9715],9904,9905,9908,9909,9910,10006,[2370,10007],[2434,9812],2434,2434,[2434,9619],9808,9906,9907,9910,9911,[3181,9716],3181,3181,3243,[3179,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,9979,[3971,10075],3971,3905,3456,3969,3969,3906,3908,3905,3905,3458,3907,3971,[3971,8924],8925,8926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9397,9398,[3906,9399],[3906,9402],[3971,9494],3394,3907,[3528,3780],3593,3269,3529,3594,3332,[3592,3778,9595],[3969,9596],9497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,9899,9900,[9800,14],0,0,[9805,14],9806,[3983,10093,9611],3919,3983,3919,3919,[3983,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,4619,4618,4619,4618,4619,4619,4620,4621,4328,4329,4334,4335,866,865,4526,4527,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15086,15085,15022,15085,15086,15086,15022,15021,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15085,15086,15085,15022,15021,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,3529,3530,3269,3332,3593,3332,3528,3269,3333,3594,3527,9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9884,[3529,9689],3592,3592,[2561,3467],2497,[2497,9592],9781,[9782,14],0,0,0,0,[9787,14],9879,9880,[9782,14],0,0,0,0,0,0,0,0,0,[9787,14],9788,[3529,9593],3594,3592,3268,3530,3530,3593,3594,3528,3528,3594,3530,3594,3529,[3530,10070,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,9689],3530,3594,3529,3593,3529,3529,3592,3528,3594,3593,3592,[3530,9303],[3593,9398],[9494,14],0,0,0,0,0,0,0,[9595,14],9596,[3529,9593],3528,3594,3530,3593,3529,3594,[3529,9398],[9494,14],0,0,0,0,0,[9691,14],9692,[3592,9593],3594,[3594,9784],[3332,9973,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3592,9497],3594,3530,3528,3530,3528,3530,[3592,9973],[9974,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3179,9716],3244,3179,3180,3182,3246,3182,3243,3246,3179,3243,[3182,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[1792,10089],[1792,10090],9992,9993,9994,9995,9996,9997,[1792,9998],[1857,9803],[1792,3463],[1792,3335],3593,[1792,3401],1792,[1856,3595],1857,1792,1792,1792,[1792,9416],9417,9420,[3530,9421],[1792,3595],1792,1793,[1792,3399],3528,[3530,10185],[1792,3465,10186],[1792,10187],[1856,10188],[1792,10088],[1792,10089],[1792,10090],9992,9896,9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2768,9607],[2830,9608],2766,2765,2830,2832,2832,[2766,9805],[2831,9901],9993,9994,9995,9996,[2830,9896],[2768,9800],2832,2831,2768,[2829,9613],[2831,9614],9997,9998,0,0,0,0,0,0,0,0,0,0,0,0,[2830,9703],[2832,9704],2765,2832,2768,2766,2832,[2829,9517],[2767,9417],[2829,9418],[2767,9419],[2766,9420],[2831,9417],[2831,9420],[2829,9512],2830,2768,2767,[2766,9805],[2765,9897],[2832,9898],[2766,9899],[2767,9900],[2830,9897],[2767,9898],[2767,9899],[2766,9900],[2832,9897],[2768,9898],[2829,9899],[2768,9900],[2765,9897],[2765,9898],[2766,9899],[2829,9900],[2767,9897],[2830,9898],[2832,9899],[2766,9900],[2768,9897],[2832,9898],[2829,9899],[2767,9900],[2829,9800],2829,2831,2829,2767,2768,[2767,9709],[2768,9710],0,0,0,0,[2829,9607],[2831,9608],2832,2768,[2832,9709],[2767,9710],10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9427,9428,9429,[3063,9430],3063,3062,3062,3062,[3062,9425],[9521,14],0,0,0,0,0,0,[9526,14],[2370,9527],[2370,9330],[2371,9333],[2435,9520],[9521,14],0,0,[9526,14],[2371,9527],[2435,9330],[2370,9333],2434,2371,2434,2435,[2434,9811],[2435,10000],10001,10004,10005,10006,[2434,10102],2370,2434,2434,2371,[2371,9715],9904,10002,10003,10006,[3244,10007],[3245,9812],3244,3181,3182,[3179,9715],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3907,10075],3906,3907,3906,3908,3907,3905,3969,3969,3971,3907,3907,3905,3906,[3906,9020],9021,9022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9493,[3905,9494],3907,3907,3520,3971,[3592,4036],[3593,4037],3528,3593,[3594,3777],[3529,3716],[3592,3713],[3971,9595],[3907,9596],9593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9995,9996,9896,9899,9900,9901,9902,[3981,9707],3919,3983,3983,3920,3917,[3919,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4715,[866,4716],4430,4431,802,801,4622,4623,[866,4717],4718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15022,15086,15022,15086,15021,15085,15021,15085,15021,15021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15022,15022,15085,15085,15022,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,3528,3594,3594,3527,3527,3594,3528,3269,3593,3530,3593,[3530,9973],9974,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9883,9979,[3592,9980],[3333,9785],3592,3268,[2561,3531],2497,[2561,9688],9877,9878,9879,9880,9881,9882,9883,9975,9976,9878,[9782,14],0,0,0,0,0,0,0,[9787,14],9883,9884,[3528,9689],3592,3594,3594,3332,3529,3268,3530,3593,3593,3528,3530,3528,3268,[3530,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3593,9500],3529,3268,3528,3594,3528,3592,3530,3592,3528,3592,[3527,9493],9399,[9494,14],0,0,0,0,0,0,0,0,[9595,14],9596,[3530,9593],3528,3268,3269,3592,3592,[3529,9493],[9494,14],0,0,0,0,0,0,[9787,14],9788,[3529,9593],3528,3528,[3528,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,9593],3592,3593,3593,3530,3594,3594,3529,[3528,10070,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,8948,14],8949,[3243,8950],3181,3245,3244,3244,3180,3244,3246,3245,3182,3244,[2434,3310,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,9997,[1792,3401,10093],[1792,10185],[1857,10186],[1792,10088],[1792,10089],[1792,10090],[1792,10091],[1792,3590,10092],[1792,3403,10093],1792,1792,1792,[1792,3398],3593,[1792,3595],1856,[1792,9416],[1792,9421],[1856,9321],[1792,9324],[1792,9511],[9512,14],0,0,[9517,14],[1856,3465,9518],1792,1792,[1857,3590],3592,[1792,3595],1792,1792,1792,1792,[1792,10185],[1793,10186],[1792,10088],9992,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2829,9703],[2767,9704],2831,2831,2832,2831,[2829,9613],[2830,9614],9997,10089,10090,10091,10092,9992,[2765,9607],[2831,9608],2768,2768,[2832,9709],[2765,9710],10093,0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9703],[2765,9704],2767,2768,2765,2830,2766,2765,2831,2829,2831,2831,2829,2829,2767,2765,2767,[2768,9805],[2768,9901],9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,[2832,9896],[2768,9800],2829,2767,2831,2829,2767,[2768,9517],9518,[9321,14],[9324,14],9511,[2765,9512],2767,2832,2829,[2768,9805],[2766,9806],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3063,9527],[3062,9330],[3063,9333],[2999,9520],[9521,14],0,0,0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,[9526,14],9426,9429,[2434,9430],2370,2371,2370,2435,2371,[2434,10097],[2370,10100],[2370,10101],[2434,10102],2434,2371,2434,2178,2434,[2371,9811],[2371,10000],[2434,10098],[2370,10099],[2370,3116,10102],3245,3243,3245,3244,3182,[3243,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9403],3907,3905,3971,3905,3908,3971,3969,3906,3907,3906,3393,3908,3906,[3906,9116],9117,9118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9496,[3458,9589],[3969,9590],3908,3456,3906,[3529,3844],3592,3528,3530,[3594,3712],3905,3458,3907,[3521,9691],[3905,9692],9593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[3983,10089],[2767,3857,10090],[2767,10091],[2766,10092],9992,9995,9996,9997,[2766,3853,9998],[3983,9803],3919,3917,3920,3920,3983,[3983,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4811,801,866,865,866,865,866,865,802,4814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15085,15022,15021,15086,15021,15085,15085,15085,15021,15022,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15149,15149,15149,15022,15021,15022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,3593,3594,3591,3528,3594,3593,3530,3593,3528,3592,3593,3527,[3592,10070],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[3594,10075],3592,3528,3593,3530,3593,[2561,3402],[2819,9784],[2818,9973],9974,9975,9976,9977,9978,9979,[3528,10071],[3528,10072],9974,9878,[9782,14],0,0,0,0,0,[9787,14],9883,9979,[3593,9980],[3593,9785],3594,3529,3593,3333,3528,3528,3594,3593,3593,3268,3332,3593,3593,[3593,9688],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3592,9403],3530,3594,3594,3529,3268,3592,3528,3593,[3593,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[3530,9593],3592,3592,3593,3592,[3593,9496],9589,[9590,14],0,0,0,0,0,[9787,14],9883,9884,[3528,9689],3530,3530,[3529,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,[9787,14],9788,[3530,9689],3528,3333,3593,3529,3530,3530,3268,[3594,9688],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9044,14],9045,[3246,9046],3179,3182,3244,3179,3182,3182,3243,3180,3181,[2371,3247],[2370,9811],[2371,10000],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3594,10093,9515],3593,[1792,3335],[1792,3401],1792,[1792,10185],[1792,3400,10186],[1792,3339,10187],[1792,3590,10188],[1792,3531],1856,1792,1857,[1792,3526],3528,3592,[1793,9511],[9512,14],[9517,14],9417,9420,[9512,14],0,0,0,[9613,14],9614,[1792,9515],1792,[1856,3654],[1792,3655],3529,[1792,3401,9321],[1792,9322],[1792,9323],[1792,9324],1792,1792,[1792,3334],[3530,10088],[3593,10089],[1793,3467,10090],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2766,9607],[2830,9608],2829,2765,2832,2832,[2767,9709],[2832,9710],[10093,9321],[10185,9322,14],[10186,9323,14],[10187,9324,14],[10188,9321,14],[10088,9324],[2765,9703],[2768,9704],2768,2831,2829,[2829,9517],9518,[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],[9321,14],[9322,14],[9323,14],[9324,14],9416,[2766,9512],2831,2766,2831,2768,2832,2768,2830,2766,2765,2832,2765,2830,2830,2767,2829,[2831,9805],[2767,9901],9997,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,9992,[2830,9896],[2829,9897],[2766,9898],[2767,9800],2831,2831,2830,[2830,9517],[2830,9417],[2832,9420],[2768,9512],2830,2829,2830,[2765,9805],[2829,9901],9902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2371,9527],2435,2434,2435,2371,2435,[2435,10196],[2434,10197],2370,2435,2435,2371,2370,2371,2370,2371,[2435,10194],[2114,10195],2370,[2435,3242],3246,[3245,9330],[3244,9333],[3244,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3906,9500],[3906,9303],[3908,9304],[3969,9305],[3907,9306],3971,3905,3457,3908,3906,3520,3969,3908,[3969,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9592,[3906,9685],[3908,9686],3522,3905,[3528,4037,4249],3529,3592,[3528,3712],[3593,3713],3908,3971,3969,3522,[3906,9787],[3971,9788],9593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[3919,10093,9611],[3983,10185],[2768,3921,10186],[2832,10187],[2829,10188],[2831,3788,10088],[3920,10091],[2830,3857,10092],[2831,10093],2765,[2768,3788],3920,3919,3983,3919,3920,[3919,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4907,[801,4908],802,801,802,801,802,801,[801,4909],4910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15086,15085,15086,15021,15021,15022,15022,15021,15021,15021,15086,15085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15213,15213,15213,15149,15150,15149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,3591,3528,3528,3593,3529,3530,3592,3530,3591,3530,3530,3594,[3592,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3529,10075],3593,3268,3268,[2818,3655],3530,3592,3268,[2755,3339],2819,[2755,10070],[2755,3398,10071],[3268,10072],[3592,10073],[3593,10074],[3530,10075],[3592,10167],[3528,10168],[3593,10070],9974,9589,[9590,14],0,0,0,[9787,14],9883,9979,[3594,10075],3594,3592,3332,3529,3268,3268,3269,3594,3594,3530,3594,3268,3530,3530,3268,[3594,9784],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9403],[3592,9303],[3529,9304],[3594,9305],[3592,9306],[3592,9303],[3528,9306],[3594,9398],[9494,14],0,0,0,0,0,0,0,0,[9787,14],9881,9882,9883,9884,[3528,9689],3530,3528,3530,3530,[3594,9688],9685,[9686,14],0,0,0,0,[9595,14],9596,9979,[3592,9980],[3592,9785],3332,3592,[3593,9784],[3593,9973],9974,9878,[9782,14],0,0,0,0,0,0,0,[9787,14],9883,9884,[3528,9785],3528,3530,3530,3268,3529,3528,3592,[3593,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9140,14],[74,9141],[3244,9142],3245,3180,3181,3182,3181,3182,3180,3180,3243,[2434,3311],2050,2435,[2435,10097,9619],9616,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3593,9611],3530,3593,3594,[1792,3335],[1792,3338],[1792,3466],[1792,3464],[1793,3658],[1792,3466],1792,1792,[1792,3399],3593,3593,[3528,9514],9799,[9800,14],0,0,0,0,0,0,0,[9709,14],9710,[1792,9611],1792,1793,1792,[1792,3463,9416],9417,9418,9419,9420,[1792,9518],1793,[1792,3590],3529,[3594,10185],[1792,3531,10186],[1856,10088,9514],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2831,9703],[2830,9704],2830,2768,2766,2830,2829,[2831,9517],[2830,9417],[2765,9418],[2831,9419],[2765,9420],[2765,9417],[2767,9420],[2830,9512],2830,2831,2767,2830,2831,[2829,9517],[2766,9417],[2765,9418],[2830,9419],[2829,9420],[2829,9417],[2766,9418],[2766,9419],[2829,9420],[2766,9417],[2765,9418],[2829,9419],[2767,9420],[2832,9512],2766,2767,2831,2765,2830,2832,2832,[2768,9805],[2766,9897],[2768,9898],[2831,9899],[2832,9900],[2766,9897],[2768,9898],[2829,9899],[2831,9900],[2767,9901],9997,10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],10088,9992,9993,9994,[2766,9896],[2829,9800],2829,2766,2832,2766,2767,2831,2830,2766,[2829,9805],[2830,9901],9997,9998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[2371,9524],2434,2371,2371,2371,2434,2371,2434,[2435,9330],[2370,9333],2371,2434,2434,2434,2435,2371,2434,2434,[2370,3306],[3181,9425],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9400,9401,9402,[3456,9403],3969,3906,3907,3907,3394,3906,[3905,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9592,[3521,9589],[3907,9590],3394,[3594,3973,4344],[3332,4345],[3592,3777,4346],[3594,3713],3907,[3905,9787],[3971,9879],[3906,9880],[3906,9881],[3905,9882],[3392,9883],9884,9689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[3919,9707],3919,[2832,3985],2831,2830,[2831,3852],[3983,10187],[2832,3921,10188],2765,2830,[2765,3916],3981,3919,3919,[2829,4045],[2831,4046],[2766,4047,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4522,4523,[802,4904],802,[802,4906],4523,4524,4525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15149,15149,15021,15021,15085,15022,15021,15085,15085,15021,15149,15149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15214,15213,15213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3530,9500],3593,3529,3594,3591,3527,3529,3594,[3594,9303],[3529,9304],[3594,9306],[3528,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9403],3528,3268,[2818,3466],2818,[2818,3463],3593,3592,[2755,3403],2560,2819,[2754,3462,10167],[3528,10168],[3594,10169],[3529,10170],3268,3592,3268,3332,[3529,10070,9496],9685,[9686,14],0,0,[9691,14],9692,9979,[3592,10075],3269,3332,3592,3592,3268,3529,3528,3592,3592,3592,3268,3528,3592,3594,3333,3594,[3592,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9401,9402,9399,9402,[9494,14],0,0,0,0,0,0,0,0,[9787,14],9883,9977,9978,9979,[3530,9980],[3528,9785],3593,3530,3594,3528,[3592,9493],[9494,14],0,0,0,0,0,[9691,14],9692,[3592,10075,9497],3594,3268,3594,3268,3268,3594,[3592,10070],[9974,9496],9589,[9590,14],0,0,0,0,0,[9787,14],9883,9979,[3593,230,9980],[3594,166],[3593,174],3528,[3593,173],[3592,102],[3268,166],[3592,174],[3528,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9623,[3244,9524],3245,3179,3180,3244,3246,3180,3180,3180,[2371,3117],1986,2371,2435,[2434,9715],9712,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[1792,9611],[1857,3464],3593,3530,3530,[1792,3595],[1792,9321],[1792,9322],[1792,9323],[1793,9324],1857,1857,[1792,3590],3593,3592,[3528,9706],9895,9896,9897,9898,9900,[9800,14],0,0,0,[9613,14],9614,[1792,9611],1792,1792,[1792,9514],9607,[9608,14],0,0,[9709,14],9710,[1792,3400,9515],3529,3529,3530,[1793,3595],[1793,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2830,9799],[2830,9800],2766,2767,2766,2829,2768,2766,2768,2766,2830,2765,2830,2766,2832,2832,2766,2767,2830,2830,2767,2829,2832,2832,2831,2832,2766,2831,2830,2767,2832,2766,2768,2768,2767,2830,[2829,9805],[2767,9897],[2829,9898],[2829,9899],[2766,9900],[2830,9901],9993,9994,9995,9996,9993,9994,9995,9996,9997,10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,10089,10090,9992,[2832,9896],[2831,9800],2765,2830,2832,2830,2831,2765,[2831,9805],[2765,9901],9997,10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[2371,9620],2435,2435,2434,2370,2434,2370,[2371,9425],9426,9429,[2434,9527],2371,2435,2434,[2370,9330],[2434,9331],[2434,9332],[2371,9333],[2435,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,8921],8922,[3969,8923],3522,3908,3906,3906,[3907,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9592,[3907,9685],[3971,9686],3521,3969,[3594,3713],3394,3394,[3905,9787],[3969,9883],9975,9976,9977,9978,9979,9980,9785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2768,3980,9998],[3917,9803],3983,[2831,3855],2768,2830,[2766,3916],3919,3920,[2830,3792],2832,[2767,3853],3983,3983,[2832,3855],2830,[2767,9415],[2831,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4136,4137,4139,4138,4139,4138,4139,4140,4141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,4619,5000,5001,5002,4619,4620,4621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15213,15214,15150,15149,15149,15022,15021,15021,15086,15150,15214,15214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3594,9500],[3592,9303],[3527,8730],[3528,8731],[3594,8732,14],[3594,9306],[3529,9493],[9399,14],9400,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3592,9403],[2819,3595],2496,2561,2496,[2819,3398],3593,[2754,3467],2496,2755,[2755,3526],3529,3528,3268,3592,3332,3594,3594,[3594,9592],9781,[9782,14],0,0,[9787,14],9788,[3529,10075,9497],3530,3528,3594,3592,3529,3333,[3332,9303],[3528,9306],3529,3268,3594,3529,3593,3268,3268,3593,[3591,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,10073,10074,[3529,10075],3268,3529,3528,3594,3530,[3592,9398],[9494,14],0,0,0,0,0,0,[9595,14],9596,[3528,9593],3530,3268,3594,3528,3529,3333,3594,[3530,10070,9592],9685,[9686,14],0,0,0,0,[9595,14],9596,9979,[403,10075],403,403,[3594,101],3332,[3528,103],403,403,[3528,229],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3244,9430],3243,3246,3246,3182,3245,3245,3245,[2370,3055],2370,2371,2435,2370,[2434,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[1793,9707],1792,[1856,3654],[1792,3655],3529,[1857,3595,9416],9417,9418,9419,9420,[1857,9421],[1792,3399],3528,3528,3529,[1792,3595,9802],[1793,9991],9992,9993,9994,9996,9896,[9800,14],0,0,[9709,14],9710,[1793,9611],1792,1792,[1793,9610],9703,[9704,14],0,0,[9613,14],9614,[1792,9611],[1792,3463],3594,3527,[1793,3465],[1792,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9895,[2829,9896],[2830,9800],2768,2830,2768,2767,2829,2829,2767,2766,2766,2768,2830,2832,2768,2768,2766,2829,2832,2766,2765,2832,2831,2831,2829,2767,2765,2766,2765,2766,2765,2832,2831,2830,[2768,9805],[2768,9901],9993,9994,9995,9996,9997,10089,10090,10091,10092,10089,10090,10091,10092,10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10185,14],[10186,14],10088,9992,[2829,9896],[2768,9897],[2832,9898],[2766,9899],[2765,9900],[2767,9897],[2766,9898],[2767,9901],9997,10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,9815,[2435,9620],2370,2370,2371,2370,[2370,9330],[2434,9523,9333],9616,[9617,14],[9622,14],9623,[1922,9524,9330],[2434,9333],[2434,9425],9426,9427,9428,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9017],9018,[3522,9019],3908,3456,3971,[3456,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9592,[3906,9781],[3908,9879],[3908,9880],[3522,9879],[3906,9880],[3907,9881],[3905,9882],[3969,9883],9979,10071,10072,10073,10074,10075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[2832,10093],[2766,4044],[2830,4045],3919,[2830,3791],[2765,9321],[2829,3789,9324],3920,3920,3983,[2766,3985],2832,2765,[2768,3788],[2766,3793],2831,2767,[2766,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,4233,4235,4234,4235,4234,4235,4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15214,15213,15214,15149,15150,15149,15150,15213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,[74,8826],[8827,14],[74,8828],9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[2818,3465,9497],2755,2561,2496,[2754,3526],3268,[2754,3531],2755,2560,[2755,3590],3594,3529,3594,3592,3594,3332,3268,[3333,9688],9877,9878,9879,9880,9883,9884,[3593,9593],3594,3594,3269,3529,3529,[3593,9493],9399,9402,[3529,9403],3529,3593,3529,3528,3530,3528,[3594,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3594,10075],[3528,10169],[3530,10170],3528,3530,3530,3593,3592,[3594,9496],9685,[9686,14],0,0,0,0,0,0,[9691,14],9692,[3528,9689],3530,3528,3594,[3268,42],[3528,43],[3530,44],3268,[3592,9592],9589,[9590,14],0,0,0,0,[9691,14],9692,[403,10075],403,403,403,[3528,165],3530,[3528,103],403,403,403,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3180,9527],3246,3243,3181,3182,3181,3180,[2370,3183],2434,2242,2243,[2435,9523],9712,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[9997,9515],[1793,9998],[1792,9803],1792,1792,1792,[1792,3464,9514],9607,[9704,14],0,0,0,[9517,14],[3528,9518],[1792,3658],[1792,3655],[1792,3657],[1793,3466],1792,[1792,3595,10088],[1792,10089],[1792,10090],[1792,10092],9992,9896,[9800,14],0,[9613,14],9614,[1792,9611],1792,1792,[1857,9610],9799,[9800,14],0,0,[9709,14],9710,[1792,9707],1792,[1792,3398],[1792,3531],1793,[1857,9610],9607,[9608,14],0,0,0,0,[9805,14],9897,9898,9899,9900,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9991,9992,[2832,9896],[2830,9897],[2767,9898],[2831,9899],[2832,9900],[2766,9897],[2766,9898],[2832,9899],[2831,9900],[2830,9897],[2831,9898],[2766,9899],[2767,9900],[2765,9897],[2830,9898],[2768,9899],[2832,9900],[2767,9897],[2831,9898],[2767,9899],[2830,9900],[2832,9897],[2830,9898],[2832,9899],[2766,9900],[2830,9897],[2766,9898],[2766,9899],[2831,9900],[2829,9897],[2768,9898],[2829,9899],[2831,9900],[2765,9901],9997,10089,10090,10091,10092,10093,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,9992,9993,9994,9995,9996,9993,9994,9997,10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,9911,[2370,9716],2370,2371,2371,[2371,9425],9426,9429,[9521,14],0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9113],[74,9114],[3907,9115],3906,3392,3906,[3394,9688],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9688,9877,9975,9976,9975,9976,9977,9978,9979,10075,10167,10168,10169,10170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2831,10093,9611],2765,2766,2829,[2832,3854,9415],[3981,9416],9417,9420,[3919,9421],3983,[2766,4045],[2768,4049],2829,2831,[2767,3916],[2765,3857],2766,[2830,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,[801,4717],4718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15213,15213,15214,15213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,[74,14],74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[2754,9593],2819,2755,[2754,3399],3333,3594,[3530,9303],[2560,3336,9304],[2560,3338,9305],[3529,9306],3268,3333,3268,3529,3268,3529,3268,[3528,9784],[3528,9973],9974,9975,9976,9979,[3529,9980],3268,3593,3268,3593,3530,[3268,9398],[9494,14],0,0,[9499,14],[3528,9500],[3529,9303],[3592,9304],[3594,9305],[3530,9306],[3528,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[3528,10075],3594,3268,3592,3594,3332,3592,3530,3594,[3528,9592],9589,[9590,14],0,0,0,0,0,0,0,[9499,14],[3592,9403],3594,3594,3269,[3268,106],2245,[3530,108],3528,[3530,9592],9685,[9686,14],0,0,0,0,[9595,14],9596,403,403,403,403,[3594,101],3593,[3528,167],403,403,[403,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3246,9430],3180,3180,3180,3243,3246,[1922,3117],2434,2306,2307,[2435,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[1792,10093,9611],1793,1792,1792,1792,1793,[1793,9610],9607,[9608,14],0,0,0,0,[9517,14],[1856,9518],1792,1792,1792,[1792,3399],[1792,3595],[1792,10185],[1792,10186],[1792,10188],[1792,10088],9992,9896,[9800,14],[9709,14],9710,[1792,9707],1792,1792,[1792,9706],9895,9896,[9800,14],0,0,[9517,14],[1792,9421],1792,[1792,3526],[1792,3595],1792,[1792,9610],9703,[9704,14],0,0,0,[9805,14],9901,9993,9994,9995,9996,9896,9897,9898,9899,9900,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,9992,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9993,9994,9995,9996,9997,10093,[10185,14],[10186,14],[10187,14],[10188,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,10089,10090,10091,10092,10089,10090,10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[2370,10098],[2434,10099],[2435,10007],[2434,9812],2370,2434,[2434,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3905,9500],3908,3908,3905,[3969,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9784,9973,10071,10072,10071,10072,10073,10074,10075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2831,9611],2768,2768,2829,[2831,9511],[9512,14],0,[9613,14],9614,[2765,3855,9515],2765,2768,2766,[2830,3789],3983,[2766,3921],2767,[2831,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,4238,4239,866,865,801,4814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9788,[2560,9593],2818,2754,[2496,3398],3529,[3527,9493],9399,9400,9401,9402,[3527,9403],3592,3529,3529,3592,3592,3594,3593,3592,[3592,10070],[3530,10071],[3528,10072],[3530,10075],3529,3529,3528,3594,3268,[3528,9496],9589,[9590,14],0,0,0,[9499,14],9399,9400,9401,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3528,10075,9497],3592,3529,3530,3528,3593,3269,3592,3593,3593,[3529,9688],9685,[9686,14],0,0,0,0,0,0,0,0,[9499,14],[3592,9403],3529,3592,[3592,170],[3529,171],[3528,172],3530,[3594,9592],9589,[9590,14],0,0,0,0,0,[9499,14],[403,9500],403,403,403,[3592,229],[3592,230],[3528,231],403,403,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3245,9524],3246,3245,3181,[2434,3247],2370,1987,2434,2371,[2371,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[1792,3401,9611],1792,1857,1792,1792,1792,[1792,9706],9703,[9704,14],0,0,0,0,[9613,14],9710,[1792,9515],1792,1856,[1792,3590],[1792,3595],1792,1792,1856,1792,[1792,10088],[9992,9514],9607,[9608,14],[9517,14],[1857,9421],1793,1792,[1792,9802],[1792,9991],9992,9607,[9608,14],0,0,[9517,14],[1792,9518],[1792,3654],[1792,3659],[1857,3334],[1792,3335,9610],9607,[9608,14],0,0,[9805,14],9901,9997,[1793,10089],[1792,10090],[1856,10091],[1792,10092],9992,9993,9994,9995,9996,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10088,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10089,10090,10091,10092,10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,10006,[2371,10102],[2434,10194],[2434,10195],2370,2434,2435,[2435,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3456,9403],[3908,9303],[3969,9496,9306],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10167,10168,10167,10168,10169,10170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,[9800,14],0,0,[9805,14],9806,[2829,9611],2768,2765,[2767,9511],[9512,14],0,0,[9709,14],9710,[2768,9611],2830,[2831,3789],[2765,3725],3983,3920,[2830,4049],[2829,9415],[2829,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,[802,4909],4910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9884,[2818,3401,9689],2561,2496,[2496,3462],[3530,9493],[9494,14],0,0,0,0,[9499,14],[3594,9403],3530,3529,3593,3594,3528,3529,3592,3530,[3594,10167],[3530,10168],3528,3594,3592,3593,3594,3528,[3268,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3593,9593],3528,3269,3268,3528,3268,3592,3529,3530,3529,[3527,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,[9499,14],[3592,9403],3268,3528,3530,3528,3528,[3593,9688],9685,[9686,14],0,0,0,0,0,0,[9499,14],[403,9500],403,403,403,403,403,403,403,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3179,9527],3179,3182,3243,[2435,3311],2434,2435,2371,2434,[2371,9811],[2435,10000],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3977,10098],[3977,10099],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3592,9611],[1792,3335],[1792,3402],1856,1793,1792,[1792,8942],8943,[74,8944,14],0,0,0,0,[9709,14],9614,[1856,9611],1792,1792,[1792,3398],3592,[1792,3401,9321],[1792,9324],1857,1792,1792,[1857,10088,9610],9703,[9704,14],0,[9517,14],[1856,9518],[1792,3400],[1793,3335],[1793,3401],[1792,10088,9514],9703,[9704,14],0,0,[9709,14],9614,[1792,9515],1857,[1792,3590],[3530,9610],9703,[9704,14],0,[9613,14],9614,[9997,9515],[1792,10093],[1792,10185],[1792,10186],[1792,10187],[1792,10188],[1792,10088],[1856,3526,10089],[1793,3403,10090],[1792,10091],[1793,10092],9992,9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],[10185,14],[10186,14],[10187,14],[10188,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[2370,10102],2371,2435,2434,2435,2434,2435,[2435,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9896,9899,9900,9901,9902,[2830,9707],2829,[2768,9514],9607,[9608,14],0,0,[9613,14],9614,[2831,3727,9611],[2831,3728],3983,3918,3919,[2829,3856],2831,[2829,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,4339,4340,4138,4139,4138,4139,4140,4141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[9979,9497],[3593,9980],[2818,3595,9785],2561,2755,[2560,3526,9496],9589,[9590,14],0,0,0,0,[9595,14],9596,[3593,9497],3529,3593,3530,3332,3268,3268,3529,3529,3594,3268,3268,3530,3593,3593,3593,[3593,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3592,9689],3529,3594,3528,3530,3530,3268,3594,3530,[3528,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3530,9500],[3530,9303],[3529,9304],[3592,9305],[3530,9306],[3527,9398],[9494,14],0,0,0,0,0,0,0,[9595,14],9596,403,403,403,403,349,403,403,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3245,9527],[2370,3310],[2370,3118],2435,2434,1922,[2370,3052],[2435,3053],2434,2434,[2435,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3978,10102,9620],[3978,10194],[3914,10195],[3977,10097],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3527,9611],3592,[1856,3595],1792,1792,1857,[1856,9038],9039,[74,9040,14],0,0,0,0,[9613,14],9710,[1792,9611],1792,1792,[1792,3526],[3592,9416],9417,9420,[1793,9518],[1792,3400],[1857,3335],[1793,3335,9610],9703,[9608,14],0,[9613,14],9614,[3594,9515],3592,[1857,3403],[1857,9610],9607,[9608,14],0,0,[9613,14],9614,[1856,3401,9611],[1792,3399],3530,[3529,9610],9799,[9800,14],0,[9709,14],9710,[1792,10093,9611],1792,1856,1792,1792,1793,1856,[1792,3398,10185],[1792,3467,10186],[1792,10187],[1792,10188],[1792,10088],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2434,9430],2434,2434,2050,2371,2435,2371,[2435,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2765,10089],[2830,10090],9992,9995,9996,9997,[2768,9998],[2830,9803],[2768,3724],[2767,3725,9610],9703,[9704,14],0,0,[9805,14],9806,[3919,9611],3920,3920,3983,[2768,3855],2832,[2765,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,4435,4436,4234,4235,4234,4235,4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3530,10075,9593],3593,[2818,3466],2819,2496,[2560,3590,9592],9685,[9686,14],0,0,0,0,[9691,14],9692,[3529,9593,9303],[3528,9306],3529,3530,3592,3529,3529,3529,3594,3594,3529,3529,3593,3594,3268,[3530,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3593,9500],3594,3332,3594,3529,3594,3594,3593,[3593,9496],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9401,9402,[9494,14],0,0,0,0,0,0,0,0,0,[9499,14],[403,9500],403,403,403,403,403,403,9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[1987,9524],2434,2114,[1987,3052],[2435,2987],3243,3179,[2434,2987],[1987,2988],[2434,2987,9520],[9521,14],0,0,0,0,0,0,0,[9814,14],8945,8946,8947,[9809,14],0,0,[9814,14],[3847,9815],[3912,9620],3978,3977,3913,[3914,10097,9619],9616,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[3594,9611],3594,3528,[1793,3401],[1793,3400],[1857,3335],[1793,3335,9134],[74,9135],[74,9136,14],0,0,0,0,[9805,14],9806,[1792,9611],1792,[1792,3400],[3594,9514],9607,[9608,14],[9709,14],9614,[3592,9515],3529,[3529,9610],9703,[9704,14],0,[9709,14],9710,[3529,9611],3530,[1792,3531],[1792,9610],9703,[9704,14],0,0,[9709,14],9710,[3529,9611],3592,[1792,3465],[1792,9706],9895,9896,9897,9898,9806,[1792,9611],1857,1792,1792,1792,[1792,9321],[1792,9324],[1792,3526],[1792,3531],1857,1792,1792,9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[2371,9527],[2370,9330],[2371,9331],[2370,9332],[2434,9333],[2435,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[2831,3791,10093],[2830,10185],[2829,10186],[2831,10088],[2830,10091],[2832,10092],[2767,10093],2829,[2768,3790],3919,[3983,9610],9607,[9608,14],0,[9805,14],9901,9902,[2765,3854,9707],3920,3920,3919,[2832,3791],2766,[2830,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,866,865,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3529,9689],[2497,3595],2497,2818,2754,[2560,3654,9592],9589,[9590,14],0,0,0,0,0,[9499,14],9399,9402,[3529,9500],3268,3593,3268,3592,3593,3594,3268,3528,3529,3593,3268,[3268,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9403],3593,3332,3594,3528,3594,3528,[3530,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[403,9403],[403,9303],[403,9304],[403,9305],[403,9306],[403,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9719,[2434,2989,9620],[1987,2990],[2434,2987],3246,3243,3246,[3913,3118],[3978,3116],[3913,3307,9523],9616,[9617,14],0,0,0,0,0,0,[9814,14],9910,9041,9042,9043,9905,9908,9909,9910,9911,[4097,3974,9716],3978,3977,3978,[3977,9619],9712,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3528,9707],3529,3594,3530,[1857,3656],3529,[3528,9416],[9512,14],74,0,[9805,14],9897,9898,9901,9902,[1792,9707],1792,[1792,3590],[3529,9706],9703,[9704,14],[9613,14],9614,[3528,9611],3594,[3529,9610],9607,[9608,14],0,[9613,14],9614,[3594,9611],3593,[1856,3595],[1793,9610],9607,[9608,14],0,0,[9613,14],9614,[3530,9611],3593,[1792,3402],[1792,9802],[1792,9991],9992,9993,9994,9902,[1792,9707],1792,[1792,3400],[1792,3401],[1792,9511],9417,9420,[1792,3590,9421],[1793,3595],1792,1793,[1793,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9427,9428,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3919,10093,9611],3919,[2832,3725],[2765,3728],[2830,3725],[2768,3727,10187],[2765,3728,10188],[2829,3792],[2765,3790],3918,[2831,4045],[2767,4046,9706],9703,[9704,14],[9613,14],9614,[9997,9515],[2831,9998],[2829,9803],[2766,3980],3920,3919,[2765,3793],2765,[2831,3790,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,802,801,802,4334,4335,801,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3592,9500],[3593,9303],[2755,3402,8730],[2754,8731],[2818,8732],[2754,9688,9306],[9685,14],[9686,14],0,0,0,0,0,0,0,0,[9499,14],[3529,9500],3593,3594,3530,3593,3528,3594,3592,3593,3530,[3268,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3527,9500],[3592,9303],[3593,9304],[3529,9305],[3593,9306],[3592,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9401,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3180,9620],3182,3181,3245,3246,[3978,3055],3914,3977,[3913,9619],9712,[9713,14],0,0,0,[9814,14],9908,9909,9910,10006,[3913,9137],[3978,9138],9139,10001,10004,10005,10006,[4097,3718,10007],[3976,9812],3913,3914,3978,[3913,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3528,9518],[3529,9321],[3591,9322],[1856,3465,9323],[1857,9324],[1792,3464,9511],[9512,14],0,0,[9805,14],9901,9993,9994,9997,[1792,9998],[1792,9803],1792,[1857,3590],[3528,9416],[9512,14],0,[9709,14],9710,[3592,9611],3530,[3594,9610],9703,[9704,14],0,[9709,14],9710,[3592,9611],3528,[1792,3466],[1792,9610],9703,[9704,14],0,0,[9709,14],9710,[3594,9611],3592,3528,[1792,3335],[1792,3402],[1792,10088],[1792,10089],[1792,10090],[1857,3399,9998],[1792,3401,9803],[1792,3399],3592,[3593,9514],9607,[9608,14],[9613,14],9614,[1792,3465,9515],1792,[1792,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3920,9611],3920,3983,[2766,3856],[2765,3853],[2829,4045],3919,3983,3920,[2831,3855],2765,[2832,9511],[9512,14],0,[9709,14],9710,[2829,10093,9707],2765,2831,[2767,3854],[2765,4045],3983,[2766,3857],2765,[2768,3788,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,4430,4431,865,4339,4340,4138,4139,4138,4138,4139,4139,4712,4713,4714,4140,4141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,[74,8826],8827,[74,8828],[9402,14],9494,0,0,0,0,0,0,0,0,0,0,[9499,14],[3529,9500],[3530,9303],[3593,9306],3529,3592,3529,3528,3528,3593,[3592,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9401,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3246,9620],3245,3245,3245,3179,[3977,3119],3977,3977,[3977,9619],9808,[9809,14],0,0,[9814,14],9910,10004,10005,10006,[3913,10102],[3913,9233],[3978,9234],[3978,9235],[4097,3787,10097],[4097,10100],[4097,10101],[4097,10102],[4097,3782],3978,3913,3913,3914,[3913,9715],[9904,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9418,9419,9420,[9512,14],0,0,[9613,14],9710,[9997,9515],[1792,10089],[1792,3590,10090],[1793,3402,10093],1793,1792,1792,[1857,3463,9511],[9512,14],0,0,[9805,14],9806,[1857,3463,9611],[1792,3658],[1792,3659,9610],9799,[9800,14],0,[9613,14],9614,[1792,3657,9611],[1792,3659],1857,[1792,9610],9799,[9800,14],0,0,[9805,14],9806,[3592,9611],3529,3529,3592,[1792,3403],1792,[1792,3334,10185],[1792,3335,10186],3528,[1792,3658],[1856,3656],3594,[3592,9610],9703,[9704,14],[9709,14],9710,[1792,9611],1793,[1792,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3918,9707],3983,[2766,3985],2830,2832,2832,[2832,3980],3917,[2765,3793],2830,[2830,9514],9607,[9608,14],0,0,[9517,14],[2765,9421],2832,2766,2829,2830,[2832,3853],[2766,3921],2830,[2831,3916,9802],[3981,9991],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,802,801,802,801,802,801,4435,4436,4234,4235,4234,4234,4235,4235,[801,4808],801,[801,4810],4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,[74,14],74,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9402,[3529,9500],3530,3529,3594,3269,3529,[3528,9592],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[3179,9716],3181,3180,3245,3245,[3978,3183],3977,3914,[3977,9715],9904,9905,9906,9907,9910,10006,10100,[3974,10101],[3977,10102],3914,3978,3978,3913,[4097,3851],[4097,10196],[4096,10197],4097,[4097,3910],3913,3978,3913,3977,[3977,9811],[3913,10000,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[1792,10093,9611],[1792,10185],[1856,3464,10186],3528,[1857,3401],1792,[1857,9514],9607,[9608,14],0,[9613,14],9614,[9902,9515],[1792,9707],1792,[1792,9706],[9895,9514],9607,[9608,14],[9709,14],9710,[1792,9611],1792,1792,[1792,3398,9706],9895,9896,9899,9900,9901,9902,[1792,3654,9707],[1792,3655],[1857,3656],3594,[1792,3531],1792,[1792,3398],3594,[1792,3465],1792,1856,[1792,3464],[3592,9511],[9512,14],0,[9613,14],9614,[1792,9611],1792,[1856,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3919,9421],3917,3918,[2766,3791],2829,[2765,3789],3917,3983,[2767,3921],2765,[2767,9706],9703,[9704,14],0,0,0,[9517,14],[2829,9518],[2831,9321],[2767,9324],2829,[2767,3790],[2831,3793],2830,[2829,3980],3919,[3920,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3529,9500],3592,3592,3593,3268,[3530,9592],9781,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[10006,9524],[3181,10007],[3180,9812],3246,3179,3181,3245,[3913,3118],3978,3978,[3913,9811],[3977,10000],10001,10002,10003,10006,[4097,10102],[4097,10196],[4097,3782,10197],3913,3978,3914,3913,3977,[4097,3915],4097,4097,4097,[4097,4038],3912,3978,3977,3978,3978,[3913,9715],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[1792,9611],1856,1857,[1792,3398],[1792,3595],1793,[1792,9706],9703,[9704,14],0,[9709,14],9710,[1792,9998,9611],[1793,9803],1792,[1792,9802],[1792,9991,9610],9703,[9704,14],[9613,14],9614,[1792,9611],1792,1792,[1792,3462,9802],[3594,9991],9992,9995,9996,9997,[1792,9998],[1792,9803],1856,1857,[1792,3463],[1792,3595,9321],[1792,9324],[1792,3462],[1793,3403],1792,1792,1857,[1792,9514],9607,[9608,14],0,[9709,14],9710,[1792,9611],1792,[1792,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3918,9421],[3919,9321],[3919,9324],[2765,3791,9416],[3919,9421],3983,3983,3919,[2766,3791,9415],[2830,9416],[9512,14],0,0,0,0,0,[9517,14],9417,9420,[2829,3789,9421],3919,[2768,3921],2767,[2829,4044],[2830,4045],[2765,4046,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3593,9497],3268,3530,3530,[3593,9688],9877,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3181,10102,9620],3245,3243,3245,3243,3182,[3913,3247],3977,3914,3977,3978,3914,[3914,10097],[3977,10098],[4097,3787,10099],[4097,10102],4096,4097,[4097,3846],3914,3978,3977,3913,[3978,64],3975,[4097,3785],4097,4097,4192,[4097,3782],3978,3913,3978,3977,[3978,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[1792,9611],1792,1856,[1792,3526],3529,[1792,3401],[1857,9416],[9512,14],0,0,[9613,14],9710,[1792,9707],1792,1792,1792,[1792,9610],9607,[9608,14],[9709,14],9710,[1856,9611],1792,1792,[1857,3526],3530,[1792,3531,10088],[1792,10091],[1792,10092],[1792,10093],1792,1793,1792,1792,[1793,9416],9417,9420,[3528,9421],[1792,3467],1792,1792,1792,[1857,9610],9703,[9704,14],0,[9613,14],9614,[1857,9611],1792,[1792,9802],[1793,9991],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[9512,14],[9517,14],[3920,9421],[3983,9321],[3983,9324],[3920,9511],[9512,14],0,0,0,0,0,0,0,0,0,[9517,14],[3917,9518],3920,[2831,3792],2766,2766,[2766,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,4238,4239,866,865,866,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3530,9593],3594,3592,3528,[3593,9784],[3528,9973],9974,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[1859,3115,9716],3245,3246,3182,3180,3244,3246,[3914,3054],3978,3913,3913,3913,3977,[3913,10194],[4097,3915,10195],4097,4097,4097,[4097,3910],[3913,64],3977,3977,3913,3914,3977,[4097,3787],4097,[4097,9330],[4097,9333],[4097,3910],[3913,64],3914,3978,[3914,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[1792,3401,9707],1792,1793,[1792,3463],3529,[3529,9511],[9512,14],0,0,0,0,[9517,14],[1793,9421],1792,1792,1792,[1792,9610],9703,[9704,14],[9805,14],9806,[1792,9611],1793,1856,[1792,3590],3594,[1856,3595],[1792,10187],[1792,10188],1792,1792,1792,1792,[1857,9511],[9512,14],0,0,[9517,14],[1793,9518],1857,1792,1792,[1792,9610],9799,[9800,14],0,[9709,14],9710,[1792,9611],1856,1857,1792,[1792,10088],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3920,9515],[2765,3985],2768,[2830,9514],9607,[9608,14],0,0,0,0,0,[9805,14],9899,9900,9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,4238,4239,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,1050,1051,1052,1259,1260,1261,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3529,9593],3528,3592,3529,3530,3528,[3592,10070],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[1859,10007],[1795,9812],[1858,3242],3244,3243,3245,3245,3179,3246,[3913,2987],[3914,3053],3914,3913,3977,3977,3975,[4097,3723],4097,4097,[4097,3847],3912,3914,3977,3913,3913,3977,[4097,3851],[4097,9425],9426,9429,[3976,9430],[3977,9330],[3914,9333],[3914,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,9997,[3594,9998],[3592,9803],[1792,3335],[1857,3401],1792,[1856,3463,9416],[9512,14],0,0,0,0,0,0,[9517,14],[1792,9518],1792,1792,[1792,9610],9799,9900,9901,9902,[1792,9707],1792,[1792,3400],3528,3593,[1856,3465],1792,1792,1792,1792,1792,[1857,9416],[9512,14],0,0,0,[9613,14],9710,[1792,9515],1792,1792,[1792,9706],9895,9896,9897,9898,9806,[1792,9611],1792,[1792,3334],[1793,3401],[1856,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3919,9611],3920,[2831,3792],[2766,3790,9610],9703,[9704,14],0,0,0,0,[9805,14],9901,9995,9996,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,866,865,866,4526,4527,865,866,865,866,865,866,865,866,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1114,1115,1116,[1243,1323],[1244,1324],[1244,1325],1116,1117,1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3530,9689],3530,3528,3593,3530,3530,[3530,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[1795,10102,9620],1795,[1858,3051],3182,3181,3246,3246,3245,3181,3243,3180,3180,[3978,2991],3978,3913,3978,[3914,64],[4097,3979],4097,4097,4192,[4097,3847],3912,3977,3977,3913,3913,[4097,3915,9523],9616,[9617,14],0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[1792,3657,10093,9515],[1792,3658],3529,3592,3594,[1856,3401,9511],[9512,14],0,0,0,0,0,0,0,[9613,14],9614,[1793,9515],1792,[1792,9706],9895,9996,9997,[1792,9998],[1792,3399,9803],[1792,3335],3530,3528,[1792,3659],1792,[1792,9321],[1792,9322],[1792,9323],[1793,9324],[1792,9511],[9512,14],0,0,0,0,[9709,14],9614,[1792,9611],1856,[1792,3399],[1792,3335,9802],[1792,3336,9991],9992,9993,9994,9902,[1792,3335,9707],[1792,3335],3592,[3528,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[3983,9611],3983,[3983,128],[3920,9610],9799,[9800,14],0,0,0,[9613,14],9614,[9997,9515],[3919,10091],[3983,10092],[2767,3985,10089],[2829,10090],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,4334,4335,802,801,802,801,802,801,802,801,802,4622,4623,801,802,801,802,801,802,801,802,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1243,1179,1244,1180,1180,1243,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3530,9403],[3530,9303],[3268,9304],[3530,9305],[3268,9306],[3530,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[1795,9620],1794,[1859,3050],3179,3180,3246,3246,3245,3245,3181,[3182,9330],[3182,9333],[3978,3247],3977,3914,3978,3913,3975,[4097,3786],4097,[4097,9330],[4097,9333],[4097,3782],3913,3978,3978,3977,[4097,3787,9523,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[1792,9611],1793,[1792,3464],[1792,3655],[1856,3656,9514],9703,[9704,14],0,0,0,0,0,0,0,[9709,14],9710,[1792,9707],1792,[1856,9802],[1792,3399,9991],[1793,10092],[1792,10093],[1792,3334],3593,[1792,3655],[1792,3657],[1793,3465],1856,[1793,9416],9417,9418,9419,9420,[9512,14],0,0,0,0,0,[9613,14],9710,[1792,9611],1856,[1857,3590],3592,3530,[1857,3595,10088],[1856,10089],[1792,10090],[1792,3654,9998],[1792,3655,9803],[1793,3656],3530,[3529,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[3918,405,9707],[3920,406],[3983,407],[3919,408,9706],9895,9896,[9800,14],0,0,[9709,14],9710,[3983,10093,9611],[3919,10187],[3919,10188],[2830,3855,10185],[2831,10186],[2832,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,4430,4431,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,4528,4529,866,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1244,1244,1179,1244,1179,1244,1245,1451,1051,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9400,9401,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[1859,9716],1794,[1859,3114],3246,3244,3181,3180,3243,3179,[3244,9520],9426,9429,[3913,3117,9430],3913,3977,3913,3977,3913,[4097,3787],[4097,9425],9426,9429,[4097,3846,9430],[3978,9330],[3977,9333],3914,3914,[4097,3851,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[1856,9707],1792,1857,1792,[1792,9610],9799,[9800,14],0,0,0,0,0,0,0,0,[9517,14],[1857,9518],1792,1792,[1792,3590],[1792,3336,10188],[1792,3338],3530,[1792,3465],1792,1856,1792,[1792,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[1792,9611],1792,[1856,3464],[1792,3655],3594,[1792,3465],[1792,10185],[1793,10186],1792,1856,1792,[1792,3464],[3528,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,9997,[403,9998],[403,9803],403,403,[403,9802],[403,9991],9992,9607,[9608,14],0,[9805,14],9806,[3920,9611],3983,[2829,3856],[2829,3724],[2830,3725],[2830,3728],[3727,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,4624,4625,802,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1180,1244,1243,1179,1244,1244,1580,1115,1116,1117,1451,1050,1051,1052,1051,1052,1051,1052,1051,1052,1051,1052,1053,1054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[1795,9430],1795,[1795,3178],3246,3182,3246,3246,3179,[3245,9523],9616,[9713,14],0,[9526,14],[3913,9430],[3914,9330],[3978,9331],[3914,9332],[3977,9333],[4097,3851,9520],[9521,14],0,0,[9526,14],9426,9429,[3913,9430],[3913,9330],[4097,3915,9715,9333],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[1792,9518],1792,1792,1857,[1792,9706],9895,9896,9897,9898,[9800,14],0,0,0,0,0,0,[9517,14],[1793,9421],1792,[1792,3463],[1792,3655],[1792,3657],[1792,3659],1792,[1792,9321],[1792,9324],[1856,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[1792,9611],1792,1857,1792,[1792,3463],[1793,9321],[1792,9324],1792,1792,1792,1792,[1857,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,9894,9900,[9800,14],0,0,0,0,0,0,0,[9805,14],9806,[2767,468,10093],[2766,469],[2831,470],[2830,471],[2829,472],[2832,596],[2832,597],[2831,598,10088],9703,[9704,14],[9805,14],9901,9902,[2832,3853,9707],[2768,4049],2765,[2767,3980],3920,3917,[3920,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1180,1180,1180,1179,1179,1180,1179,1180,1243,1580,1115,1116,1115,1116,1115,1116,1115,1116,1115,1116,1115,1116,1117,1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[1858,9527],[1795,3242],3180,3244,3180,3243,3244,[3180,9619],9616,[9617,14],0,0,[9526,14],9426,9427,9428,9429,[9521,14],0,0,0,0,0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[1792,9518],1792,1792,[1856,9802],[1792,9991],9992,9993,9994,9896,9897,9898,9899,9900,[9800,14],0,0,[9517,14],[1857,9518],[1792,9321],[1792,9322],[1793,9323],[1792,9324],[1793,9416],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,[9805,14],9899,9900,9901,9902,[1792,9707],1793,1792,1792,[1793,9416],9417,9420,[1856,9518],1792,1792,[1792,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9990,9996,9896,[9800,14],0,0,0,0,0,[9805,14],9901,9902,[2829,3729],2830,2831,[2829,3724],[2832,3792,128],[2832,3789],[2830,3725],[2765,3726],9703,[9704,14],9614,[9997,9515],[2832,9998],[2767,9803],2831,[2831,3790],3920,3920,3920,[3919,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4522,4523,4145,4146,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,801,802,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1179,1243,1244,1180,1180,1243,1243,1180,1180,1180,1243,1180,1180,1244,1180,1243,1180,1180,1179,1180,1180,1180,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[1858,3242,9524],3179,3181,3179,3243,3245,[3245,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[1792,9421],1792,1856,1792,[1792,10088],[1856,3462,10089],[3529,10090],9992,9993,9994,9995,9996,9896,[9800,14],0,0,[9517,14],9417,9418,9419,9420,[9512,14],0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,9901,9995,9996,9997,[1792,3403,9998],[1857,9803],1792,1792,[1793,9511],[9512,14],0,[9709,14],9614,[1792,9515],1793,[1856,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[2767,10089],[2766,10090],[2831,10086],[2765,10092],9992,9896,[9800,14],0,0,0,[9613,14],9614,9997,[3983,9998],3983,[2830,3792],2765,[2768,3980],3983,3920,[3983,9415],[3981,9416],[9512,14],[9709,14],9710,[2767,10093,9611],2765,[2766,3789],[2829,3725],3919,[3983,9321],[3983,9324],[3920,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,4619,4241,4242,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1179,1243,1243,1179,1243,[1243,183],[1179,184],[1180,184],[1180,184],[1179,184],[1180,184],[1180,184],[1244,184],[1243,184],[1244,184],[1243,184],[1179,184],[1179,184],[1179,184],[1243,184],[1243,185],1179,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3182,9620],3243,3181,3245,[3530,3309],[3530,3310],[3529,3117,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[1857,9518],1792,1793,1792,[1856,3526,10185],[3593,10186],[1792,3465,10088],[1792,10089],[1792,10090],[1792,10091],[1857,10092],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9997,[1792,10091],[1792,10092],[1792,3526,10093],[1856,3467],1792,1792,[1792,9514],9703,[9704,14],0,[9613,14],9710,[1792,9611],1792,[1857,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9917,9918,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2765,10093,9611],[2830,10185],[2832,10186],[2832,10182],[2766,10188],[2832,3790,10088],9992,9896,[9800,14],0,0,[9613,14],9614,[3983,10093],3983,3920,[2767,3856],2766,[2831,4044],3983,[3920,9415],[3917,9511],[9512,14],0,[9613,14],9614,[2768,9611],2767,[2831,4044],3920,[3983,9511],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,802,801,802,801,802,801,802,801,4334,4335,802,801,802,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1180,1179,1179,1243,1180,[1179,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[1243,249],1244,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3182,9620],3246,3179,[3592,3117],3268,3528,[3594,9715],[9904,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,1857,1793,1792,[1792,3590],[1792,3595],1857,[1792,10185],[1856,3334,10186],[1792,3335,10187],[1792,3339,10188],[1792,10088],9992,9896,9897,9898,9899,9900,9897,9898,9899,9900,[9800,14],0,0,0,0,0,[9613,14],9614,9997,[1792,10089],[1792,10090],[1792,10093],[1792,10187],[1792,10188],[1792,3590],[1793,3531],1793,1792,[1793,9610],9607,[9608,14],0,[9709,14],9710,[1856,9611],1792,[1792,9706],9895,9896,9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,10013,10014,9914,9915,9916,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2766,9707],2831,2831,[2767,3724],[2766,3725],3920,[3983,10088],[9992,9514],9607,[9608,14],0,0,[9517,14],[3983,9421],3983,[2765,3985],2766,2765,2766,[2767,3853],[3981,9511],[9512,14],0,0,[9709,14],9710,[2829,9611],2830,2767,[2768,3854,9514],9607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,866,865,866,865,4430,4431,866,865,866,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,1306,1307,1308,1516,1179,1179,[1179,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[1180,249],1244,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3182,9620],3243,[3594,3247],3268,3530,3592,[3529,9811],[3592,10000,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[1856,9321],[1793,9324],[1792,3399],[1792,3655],3528,[1793,3402],[1792,3400],3593,3593,[1792,3403],1792,[1792,10088],9992,9993,9994,9995,9996,9993,9994,9995,9996,9896,9897,[9800,14],0,0,0,[9709,14],9710,[1792,10093,9515],[1792,10185],[1792,10186],1792,1792,[1857,3400],3529,3529,[1792,3402],1792,[1792,9610],9703,[9704,14],0,[9613,14],9614,[1792,9611],1792,[1792,9802],[1792,9991],9992,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,10015,[607,10109],[607,10110],10010,10011,10012,9914,9818,0,0,0,0,0,9823,9915,9916,9917,9918,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2832,9421],2768,2768,[2832,4044],3919,3919,3919,[3920,10088,9610],9703,[9704,14],0,0,0,[9517,14],[3920,9518],[2767,3793],2830,2766,2832,[2829,9514],9607,[9608,14],0,0,[9613,14],9614,[2832,9611],2830,2831,[2767,9610],9703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,4526,4527,802,801,802,801,802,4238,4239,801,802,801,802,801,802,801,802,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,1370,1371,1579,1178,1180,1244,[1243,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[1244,249],1179,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9815,[3529,3309,9620],[3529,3310],[3529,3311],3592,3528,3268,3592,[3530,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[1792,9421],1792,[1792,3464],[1856,3657],[1792,3658],3529,3593,[1792,3531],1792,1792,[1792,10088],[1792,10089],[1793,10090],[1792,10091],[1792,3526,10092],[1856,3531,10089],[1792,10090],[1792,10091],[1792,10092],9992,9993,9896,[9800,14],0,0,[9805,14],9806,[1792,9611],1857,1792,[1792,3399],[1793,3335],3593,3593,3530,3529,[1793,3335],[1792,3336,9610],9607,[9608,14],0,[9709,14],9710,[1857,9611],1856,1792,1792,[1792,10088],[1792,10089],[1792,10090],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9894,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,10111,9533],[607,10205],[607,10206],[607,10106],[607,10107],[607,10108],[10010,9532],9721,9722,0,0,0,9823,9919,10011,10012,10013,10014,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2768,9518],2767,2832,[2832,3980],3919,3920,[3919,9706],9703,[9704,14],0,0,0,[9613,14],9614,[2765,4049,532,9515],[2829,533],[2830,534],[2832,535],[536,9610],9703,[9704,14],0,0,[9709,14],9710,[2767,9611],2765,2765,[2832,9610],9799,[9800,14],0,0,[9805,14],9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,4622,4623,866,865,866,865,866,865,866,865,866,865,866,4528,4529,865,866,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,1242,1244,1244,[1179,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[1244,249],1180,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,9911,[3529,9716],3529,3592,3593,3593,3268,3268,[3594,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[1792,9421],1857,1792,1792,[1792,3464],[3594,9321],[1793,3595,9324],1857,1792,1793,[1792,10185],[1856,10186],[1792,10187],[1792,3590,10188],[3530,10185],[1792,3401,10186],[1792,10187],[1792,10188],[1792,10088],[1857,10089],9992,9896,9897,9898,9901,9902,[1793,9707],[1792,3399],[1792,3335],3529,3592,[1792,3656],[1792,3657],[1792,3658],[1792,3656],[1792,3657],[1793,3658,9610],9703,[9704,14],0,[9805,14],9806,[1792,9611],1792,1792,1792,1856,[1792,10185],[1792,3399,10186],[3592,10088],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9990,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9629],607,609,607,[607,10203],[607,10204],[607,10106,9628],9817,9915,9916,9917,9918,9919,10015,[607,10107],[607,10108],[607,10109],[607,10110],10010,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2829,9515],2829,[2829,3788],3920,3920,[3981,9416],[9512,14],0,0,0,0,[9709,14],9710,[403,9611],403,403,403,[403,9610],9799,[9800,14],0,0,[9805,14],9806,[2768,9611],[2766,128],[2766,128],[2829,9706],9895,9896,9897,9898,9901,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4328,4329,801,802,801,802,801,802,801,802,801,802,801,802,801,802,4624,4625,801,802,4332,4333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1244,1243,[1243,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[1179,249],1179,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9623,[10006,9524],[3529,10007],[3592,9812],3592,3528,3530,3593,3269,3332,[3592,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[1793,9421],1792,1792,[1792,9416],9417,9420,[1857,9518],1856,1792,1793,1792,1792,[1857,3654],[1792,3655],[1793,3656],[1856,3335],[1793,3336],[1792,3338],[1793,3402,10185],[1792,10088],9992,9993,9994,9997,[1792,9998],[1792,9803],[1792,3463],3528,3529,[1793,3465],1792,1792,1792,1792,1792,[1792,9610],9799,9897,9898,9901,9902,[1857,3401,9707],1792,1793,1792,1792,[1792,3400],3593,[1792,3465],[1792,10088],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9899,9894,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9894,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2823,10086],[2826,10090],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9915,9916,9818,0,0,0,0,0,0,0,0,9823,9824,[607,9629],607,607,607,607,607,[607,9724],9913,10011,10012,10013,10014,10015,[607,10111],[607,10203],[609,10204],[607,10205],[607,10206],[607,10106],[10010,9532],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2766,9611],2768,[2767,3916],3919,[3917,9511],[9512,14],0,0,0,0,0,[9709,14],9710,[2829,468,9611],[2768,469],[2832,470],[2829,471],[2830,472,9706],9895,9896,9899,9900,9901,9902,[2767,229,9707],[2832,230],[2832,230],[2768,231,9802],[403,9991],9992,9993,9994,9997,[3917,10089],[3918,10090],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4424,4425,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,865,866,4428,4429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1180,1244,[1244,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[1179,249],1243,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15195,15194,15194,15195,15195,15194,15195,15194,15194,15195,15194,15195,15195,15195,15267,15195,15195,15194,15194,15195,15194,15194,15194,15194,15195,15194,15194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9719,[3592,10102,9620],3594,3592,3594,3530,3593,3592,3530,3529,[3594,9715],9904,9905,9906,9907,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[1856,9421],[1792,9511],[9512,14],0,[9709,14],9710,[1793,9321],[1792,9322],[1792,9323],[1857,9324],1793,1792,1792,1792,[1856,3463],3593,3592,3592,[1792,3401],[1793,10088],[1792,10089],[1792,10090],[1792,10093],1792,1792,1792,[1792,3398],[1856,3403],1792,1792,1792,1792,1792,1792,[1856,9706],9895,9993,9994,9997,[1792,3656,9998],[3530,9803],[1857,3335],[1792,3336],[1792,3337],[1856,3338],3594,[1792,3595],1857,1792,[1792,10088,9514],9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9995,9990,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9990,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2824,10093],[2826,10182],[2761,10186],[2823,10088,9610],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,10011,10012,9914,9818,0,0,9823,9915,9916,9917,9918,9919,9920,[607,9725],607,607,607,607,607,[607,9820],[607,10009],[607,10107],[607,10108],[607,10109],[607,10110],[607,10111],607,607,607,607,607,607,[607,10106,9628],9817,9917,9918,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9916,9917,9918,9919,10011,10012,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2766,9611],2832,[2767,3980],3919,9703,[9704,14],0,0,0,0,0,[9805,14],9806,[2765,9611],2831,2830,2832,[2832,3789,9802],[2830,3725,9991],9992,9995,9996,9997,[403,9998],[403,9803],403,403,403,403,[403,10088],[2832,165,10089],[2832,10090],[3920,10093],[3920,10185],[3919,10186],[3917,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4520,4521,4522,4523,4522,4523,4522,4523,4522,4523,4522,4523,4522,4523,4522,4523,4522,4522,4523,4522,4524,4525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1179,1243,[1243,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[1243,249],1243,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15258,15259,15258,15258,15258,15258,[15258,15450],[15258,15453],15258,15258,15259,15259,15259,15258,15331,15258,15259,15258,15259,15258,15258,15259,[15258,15450],[15259,15453],15259,15258,15258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9330,9333,9330,9331,9332,9333,0,0,0,0,9330,9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3530,9716],3592,3529,3530,3268,3528,3528,3528,3528,[3594,9811],[3530,10000],10001,10002,10003,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[9512,14],0,0,0,[9517,14],9417,9418,9419,9420,[1856,9421],[1857,9321],[1856,9322],[1792,9323],[1792,3399,9324],3592,3594,3594,[1792,3403],1792,[1792,10185],[1792,10186],1792,1792,1792,1793,[1792,3398],[1792,3467],1792,[1792,9321],[1792,9324],1793,1792,1792,[1792,9802],[1792,9991],[1792,10089],[1793,10090],[1793,10093],1793,[1856,3590],3594,[1856,3656],[1792,3657],[1792,3658],3528,3594,[1792,3402],1792,[1792,9610],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2825,10091],[2761,10086],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[2761,10086],[2761,10090],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,9898,9899,9900,9901,9997,[2760,10093],2823,2761,2825,[2761,9706],9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,10015,[607,10107],[607,10108],10010,9914,9917,9918,9919,10011,10012,10013,10014,10015,[607,10016],[607,9821],607,607,607,607,607,607,607,[607,10203],[607,10204],[607,10205],[607,10206],607,607,607,[607,9339],[607,9342],607,607,[607,9724],9913,10013,10014,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,9917,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10011,10012,10013,10014,10015,[2999,10107],[3062,10108],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2829,9611],[2766,3789],[3981,128],3919,9799,9897,9898,9899,9900,9897,9898,9901,9902,[2765,9707],2830,2768,2829,[2832,3980],3983,[3919,10088],[3983,10091],[3983,10092],[2767,3729,38,10093],[2832,38],[2830,39],403,403,[2768,37],[2830,38],[2829,38],[2832,10185],[2832,10186],[2766,3854],3920,3983,[2767,3855],[2767,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4616,4617,4618,4619,4618,4619,4618,4619,4618,4619,4618,4619,4618,4619,4618,4619,4618,4618,4619,4618,4620,4621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1243,1244,[1243,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[1179,249],1180,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15135,15135,15135,15007,15071,15514,15517,15006,15135,15071,15134,15134,15135,[15006,15395],15006,15006,15071,15071,15007,15070,15134,15514,15517,15071,15134,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9424,9425,[3977,9426],[3977,9429],[3914,9426],[3914,9427],[3914,9428],[3913,9429],9430,0,0,9425,[4097,9426],[4097,9429],9430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3530,9430],3268,3268,3528,3529,3530,3268,3528,3593,3268,3528,[3528,10097],[3528,10098],[3594,10099],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9418,9419,9420,[3592,9421],[3528,9321],[3594,9322],[1792,3467,9323],[1793,9324],1792,1792,1856,1856,1792,1792,[1856,3590],[1792,3531],[1792,9416],9417,9420,[1792,9421],1792,1792,1792,1792,[1792,10185],[1856,10186],1793,[1792,3399],3528,[1792,3466],1856,1793,1792,[1792,3464],3594,3529,[1792,3336],[1793,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[2762,10093],[2823,10187],[2824,10182],[2823,10088],[9992,9514],9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2824,10093,9515],[2824,10182],[2826,10186],[2823,10088,9610],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9994,9995,9996,9997,[2824,10093],2825,2762,2823,2762,[2825,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,10015,[607,10111],[607,10203],[607,10204],[607,10106],10010,10013,10014,10015,[607,10107],[607,10108],[607,10109],[607,10110],[607,10111],607,607,607,607,607,607,607,607,607,[607,9339],[607,9342],607,607,607,607,[607,9434],[3157,9435],[2707,9438],[607,9536],607,[607,9820],[607,10009],10109,[607,10110],10010,9914,9915,9916,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10013,10014,10013,10014,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9916,[9818,14],0,0,0,0,0,0,0,0,[9631,14],9632,10015,[3062,10107],[3063,10108],[3063,10109],[3062,10110],[3063,10111],[3062,10203],[3063,10204],[2999,10106],10010,9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[404,9611],[3918,405],[3983,406],[3919,407],9895,9993,9994,9995,9996,9993,9994,9997,[2768,9998],[2765,9803],2832,2766,2765,[2766,4044],3981,3920,[3983,10187],[3920,10188],[2830,3985],[2831,128],[2768,103],403,403,[2830,101],[2831,128],[2830,3724],[2832,3791],2767,[2831,3789],3920,[2765,3985],2832,[2768,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,1178,1180,1244,[1179,311],[1180,312],[1179,312],[1180,312],[1243,312],[1180,312],[1179,312],[1243,312],[1179,312],[1179,312],[1180,312],[1243,312],[1180,312],[1179,312],[1244,312],[1243,313],1180,1181,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15134,15006,15007,15007,15070,15514,15517,15135,15070,15135,15135,15134,15134,15006,15071,15071,15070,15071,15007,15007,15134,15514,15517,15135,15135,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9330,9333,0,0,0,0,0,9520,[3977,9521],3978,3914,3978,3977,3913,3977,[3914,9526],9527,9520,[4097,9521],4096,4097,[4097,9526],9527,9330,9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3593,9527],3594,3594,3530,3268,3592,3529,3529,3528,3593,3593,[3592,10194],[3529,10195],[3594,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9418,9419,9420,[1792,9421],1792,1792,[1792,9321],[1792,9322],[1792,9323],[1857,3463,9324],[3594,9511],[9512,14],0,0,[9517,14],[1792,9421],1792,1857,1792,[1792,9321],[1856,9324],1792,[1792,3398],[1792,3403],1792,1856,1792,[1792,9321],[1792,9322],[3530,9323],[3528,9324],[3528,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9899,9900,[9800,14],0,0,0,0,0,[9709,14],9710,[2759,10093,9611],2823,2825,2824,2760,[2762,10088,9610],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2762,9611],2825,2825,[2761,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2824,10089],[2760,10090],[2761,10090],[2826,10091],[2762,10092],[2760,10093],2760,2826,2760,2824,[2761,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,10111,9533],607,607,607,607,[607,10106],[607,10109],[607,10110],[607,10111],[607,10203],[607,10204],[607,10205],[607,10206],607,607,607,607,607,608,607,607,607,[607,9434],[3156,9435],[3158,9438],[607,9536],[607,9339],[607,9342],[607,9529],[3158,9530],2834,[2835,9727],[3157,9728],[607,9533],607,607,[607,10205],[607,10206],[607,10106],10010,10011,10012,9914,9818,0,0,9823,9917,9918,9915,9916,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,10015,10109,[3063,10110],[3063,10109],[3949,10110],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10011,10012,9914,9917,9918,[9818,14],0,0,0,0,0,[9727,14],9728,[3063,10111,9533],[3062,10203],[3062,10204],[3063,10205],[3062,10206],3063,3063,3063,2999,[2998,10106,9532],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3919,468,9611],[3920,469],[2767,3985,470],[2766,471],[2831,472,9991],[2832,10089],[2765,10090],10091,[3919,10092],[3983,10089],[3983,10090],[2829,3985,10093],2829,2767,2765,2832,2829,2832,[2766,3980],3918,3983,3919,3920,[2832,3792],[2765,167,9321],[403,9324],403,[2765,101],2767,[2830,3788],3920,[2830,3725],3920,3983,[2768,3793],2831,[2768,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,1242,1244,1244,1243,1179,1180,1179,1180,1244,1243,1179,1179,1179,1180,1180,1180,1180,1180,1180,1180,1245,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15006,15070,15071,15071,15071,15514,15517,15006,15071,15007,15070,15071,15135,15135,15070,15135,15071,15006,15007,15007,[15006,15450],15646,15517,15070,15134,15007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9424,9425,[4097,9426],[4097,9429],9430,0,0,0,9523,[3978,9616],[3914,9617],3978,3914,[3977,9814],[3913,9906],[3913,9907],[3978,9809],3977,[3913,9526],[4097,3786,9521],[4097,3784],[4097,3719],[4097,3720],[4097,3722],[3976,9526],[3913,9426],[3913,9429],9430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3527,9527],[3529,9330],[3593,9333],3530,3268,3530,3530,3592,3529,3593,3333,3528,[3593,9619],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[1792,9421],[1792,9416],9417,9418,9419,9420,[9512,14],0,0,0,0,[9517,14],[1856,9518],[1792,9321],[1793,9416],9417,9420,[1856,9421],[1792,3462],[1792,3467],1792,1792,[1857,9416],9417,9418,9419,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9995,9996,9896,9897,9898,9899,9900,9897,9898,9806,[2759,9611],2826,2761,2826,2760,[2824,9610],9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[2823,9611],2759,2823,[2762,9610],9799,9897,9898,9900,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2761,10093],[2762,10185],[2826,10186],[2760,10186],[2826,10187],[2760,10188],2761,2824,2823,2759,[2762,9514],9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[607,9629],607,607,607,607,607,[607,10205],[607,10206],607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9532],[3221,9625],[2644,9626],3155,[3221,9535],[3155,9435],[3158,9438],[3155,9530],3157,2898,2899,[3156,9535],[607,9439],607,607,609,607,607,[607,10106],[607,10107],[607,10108],10010,9914,9915,9916,9919,10013,10014,10011,10012,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3062,10111,9533],[3062,10205],[3062,3754,10206],[3062,3755,10205],[4013,10206],[3063,3823,10106],[10010,9532],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9916,[9818,14],0,0,0,[9631,14],9632,[10015,9533],10107,[3062,10108],10010,10013,10014,9914,9915,[9818,14],0,0,0,[9631,14],9632,[3062,9629],3062,3062,3063,3063,3062,3062,3062,3062,[3062,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3919,9611],3920,[2832,3985,128],2766,2765,[2830,10185],[2832,103,10186],[403,10187],[3920,101,10188],[3920,10185],[3919,10186],3919,[2766,3791],2829,2829,[2829,9321],[2832,9324],[2768,3789],3920,3920,3920,3919,3920,[3918,9416],9417,9420,[403,9421],[2766,165],2766,[2829,3916],3919,3920,[2765,4045],[2765,4047],[2830,3857,9321],[2829,9324],[2768,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,1306,1308,1307,1308,1307,1308,1307,1308,1307,1308,1307,1308,1307,1308,1307,1308,1307,1308,1307,1308,1309,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15134,15135,15070,15006,[15006,15450],15646,15517,15071,15006,15070,15070,15134,15135,15134,15070,15007,15071,15134,15071,15070,15514,15515,15517,15070,15007,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[4097,9521],4097,4097,[4097,9526],9527,9330,9333,9520,[3914,9521],3978,3913,[3913,9814],[3914,9910],10002,10003,[3977,9905],[3914,9809],3914,3975,3976,3978,3914,3977,3978,3914,3978,[3913,9526],9527,9330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3530,9430],3529,3594,3333,3528,3529,3528,3594,3593,[3528,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[9512,14],0,0,0,0,0,0,0,0,0,0,[9517,14],9417,[9512,14],0,0,[9517,14],[3527,9518],[1792,3531,9321],[1792,9324],[1792,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2824,10091],[2824,10092],9992,9993,9994,9995,9996,9993,9994,9902,[2759,9707],2761,2762,2760,2760,[2825,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2759,9611],2762,2826,[2760,9706],9895,9993,9994,9996,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2760,10093],2761,2825,2823,2759,2826,2760,2760,2761,2825,2761,[2823,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9629],607,607,607,607,607,607,607,607,607,[607,9339],[607,9340],[607,9341],[607,9342],607,607,607,607,607,607,607,[607,9628],[3157,9817],[3219,9818],3155,3155,3158,3221,3155,3219,3219,3158,2708,[3155,9535],[607,9536],607,607,607,607,607,[607,10203],[607,10204],[607,10106],10010,10011,10012,10015,10109,[607,10110],[607,10107],[607,10108],10010,9914,9915,9916,9917,9918,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,[9818,14],0,0,0,0,[9823,14],9824,[3062,9629],3062,[3063,3883],4012,4013,[3062,3951],[3062,10106,9628],9625,[9626,14],0,0,0,0,[9823,14],9915,9916,[9818,14],0,0,0,0,0,0,0,[9823,14],9919,10011,10012,9914,[9818,14],0,0,[9727,14],9728,[3062,10111,9629],[3063,10203],[3062,10204],[3062,10106],[3063,10109],[2998,10110],10010,10011,9914,[9818,14],0,0,[9727,14],9728,[3063,9725],3063,3062,3062,3063,3062,3062,3062,3062,[3063,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2831,4047,9611],[2767,4048],[2767,4049],2767,2832,[2831,3724,128],[2831,3725,167],403,[3983,101],[3920,128],3919,3919,3983,[2765,3725],[2830,3792,9416],9417,9420,[3918,9421],[3920,9321],[3919,9322],[3983,9323],[3919,9324],[3917,9511],[9512,14],0,0,[9517,14],[2830,9518],2768,[2765,4044],[2766,4048],[2829,3855],2767,[2831,9416],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,1370,1372,1371,1372,1371,1372,1371,1372,1371,1372,1371,1372,1371,1372,1371,1372,1371,1372,1371,1372,1373,1374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,15070,15070,15070,15006,15514,15516,15647,[15134,15453],15071,15070,15006,15070,15135,15070,15134,15006,15135,15007,15071,15007,15514,15515,15517,15071,15135,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[4097,9616],[4097,9617],4096,4097,4097,[4097,3784,9526],[3978,9426],[3913,9429],[3914,9521],3977,3978,[3913,9622],[3977,9623],10006,[4097,3915,10098],[4097,10099],10001,[3913,9712],[3914,9713],3978,3913,3978,3977,3914,3913,3913,3977,3913,[3978,9526],[3978,9426],9527,0,0,0,0,9330,9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3529,9527],3528,3593,3593,3592,3592,3268,3528,[3529,9619],9808,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,9614,[9997,9515],[2826,10093],[2760,10187],[2762,10188],[2824,10088],[2823,10089],[2826,10090],[2824,10091],[2825,10092],[2825,10089],[2823,10090],[2760,9998],[2759,9803],2824,2761,2825,2826,[2759,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2824,9611],2824,2759,[2824,9802],[2760,9991],[2759,10089],[2760,10090],[2760,10092],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[9997,9515],[2762,10093],2762,2823,2759,2762,[2823,9321],[2760,9322],[2759,9324],2761,2760,2823,2824,[2759,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[607,9629],607,607,607,607,607,607,[607,9339],[607,9342],[607,9434],[3955,9435],[4018,9436],[4018,9437],[3956,9438],[607,9439],[607,9339],[607,9340],[607,9341],[607,9342],607,607,[607,9724],[9913,9532],[3157,9625],[3221,9626],3158,3156,3156,3219,3157,3158,3158,3221,3155,[3158,9535],[607,9536],[607,9339],[607,9342],607,607,607,607,607,[607,10106],[607,10107],[607,10108],[607,10111],[607,10205],[607,10206],[607,10203],[607,10204],[607,10106],10010,10011,10012,10013,10014,9914,9915,9916,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10013,10014,9914,9915,9916,9917,9918,9919,9920,[3063,3821,9725],3063,[3062,3819],3950,4012,[3063,4079],[3062,9724],[3062,9721],[9722,14],0,0,0,[9823,14],9919,10011,10012,9914,[9818,14],0,0,0,0,0,[9823,14],9919,10015,[4013,10107],[3947,10108],10010,9914,[9818,14],0,[9631,14],9632,[3063,10207,9629],3062,3062,2998,[3063,10205],[3063,10206],[3062,10106],10107,10010,9625,[9626,14],0,0,[9535,14],[2999,9536],[3063,3819],[3063,3755],[3062,3821],3063,3062,3063,2999,3063,[3062,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2830,9611],2767,[2767,128],2830,2766,[2765,3980,9321],[3919,167,9322],[403,9323],[3920,165,9324],3920,3918,3917,3919,[3919,9416],[9512,14],0,0,[9517,14],9417,9418,9419,9420,[9512,14],0,0,0,[9709,14],9710,[2832,9515],2832,2830,2829,[2829,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15134,15134,15070,15070,15578,15579,15580,15581,15135,15135,15006,15070,15006,15135,15071,15007,15071,15071,[15006,15450],[15135,15451],15646,15710,15581,15135,15135,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[4097,9808],[4097,3783,9809],[4097,3719],[4097,3720],[4097,3722],3976,3914,3977,3977,3977,3913,[3977,9718],[3978,9719],[3913,10102,9524],[4097,3979,10194],[4192,10195],[4097,10097,9523],[3913,9712],[3913,9713],3978,3914,3913,[3978,9814],[3914,9908],[3913,9909],[3977,9809],3914,3977,3913,3914,[3914,9526],9527,9330,9333,9425,[4097,9426],[4097,9429],9430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3246,3655,9524],[3179,3656],[3181,3657],3529,3592,3268,3268,[3593,9715],9904,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,9710,[2761,10093,9611],2759,2760,2823,2826,[2759,10185],[2759,10186],[2824,10187],[2760,10188],[2759,10185],[2759,10186],2826,2762,2759,2823,2761,2759,[2762,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[2826,9707],2761,2824,2826,2762,[2826,10185],[2825,10186],[2761,10188],[2824,10088],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2824,10093,9611],2824,2825,2761,2825,[2823,9416],9417,9418,9420,[2826,9421],2762,2760,2760,[2825,9802],[2760,9991],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9725],607,607,607,607,607,[607,9434],[4019,9435],[3955,9438],[3955,9530],4019,3956,3954,3956,[4020,9535],[3955,9435],[4017,9436],[3954,9437],[3954,9438],[607,9536],607,[607,9820],[607,10009,9628],[3221,9817],[2707,9818],3156,3219,2642,3221,3157,3155,3157,3157,3155,3156,[3155,9535],[3155,9435],[3219,9438],[607,9439],607,607,607,607,607,[607,10203],[607,10204],607,607,607,607,607,609,[607,10106],[607,10107],[607,10108],[607,10109],[607,10110],10010,10011,10012,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10015,[4012,10109],[4014,10110],10010,10011,10012,10013,10014,10015,[3948,10016],[4012,9821],[3062,3755],4012,3949,[3062,3886],3063,[3062,9529],[9530,14],0,0,0,[9727,14],9728,[10015,9533],[3063,10107],[3063,10108],10010,9914,[9818,14],0,0,0,[9631,14],9632,[10015,9533],[4013,10111],[4013,10203],[4012,10204],[4012,10106],10010,9625,[9626,14],[9631,14],9632,[3063,9629],3062,3062,3062,3063,3062,3062,[3062,10203],[3063,10106],9721,[9722,14],0,0,8957,8958,[4011,8959],3948,4011,[3062,3755],[3063,3821],3063,3062,[3063,9532],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2831,404,9611],[2830,405],[2765,406],[2768,407],[2766,408,9511],9417,9418,9419,9420,[3920,9421],[3920,9321],[3983,9324],[3919,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[404,9611],[2831,405],[2765,406],[2829,407,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15134,15071,15135,15071,15135,15135,15006,15134,15007,15006,15007,15007,15070,15070,15070,15071,15007,15006,15578,15711,15710,15581,15070,15007,15135,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3977,9616],[3913,9617],3978,3914,3914,3913,3978,3978,3978,3978,[3978,9814],[3914,9815],[3977,9620],3975,[4097,3785],[4097,9619],[3977,9808],[3978,9809],3914,3913,[3977,9814],[3978,9910],10004,10005,[3978,9905],[3913,9906],[3913,9907],[3913,9809],3978,3914,[3978,9526],[3978,9426],[3913,9429],[4097,3785,9521],[4097,3784],[4097,3785],[4097,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,[9809,14],0,0,0,[9814,14],9815,[3243,9620],3182,3182,[3180,3464],[3180,3655],[3181,3656],[3245,3657],[3593,9811],[3594,10000],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,9710,[2760,9707],2760,2761,2761,2762,2826,2759,2825,2761,2762,2762,2760,2824,2759,2826,2823,[2761,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2826,9998],[2824,9803],2825,2760,[2824,9321],[2825,9324],2760,2761,2761,2825,[2762,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2760,9611],2824,2824,2760,[2759,9511],[9512,14],0,0,0,[9517,14],[2760,9518],2761,2761,2826,2824,[2760,10088,9514],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9536],607,607,607,607,[607,9529],[3954,9530],3954,4019,4020,3954,3953,3956,4019,3955,4020,3956,4020,[3956,9631],[4020,9632],[607,9533],607,[607,9724],9913,[3156,9914],[2707,9818],3221,2643,3219,3156,3221,3219,3158,2770,3158,3155,3221,3158,[3155,9535],[607,9536],[607,9339],[607,9340],[607,9341],[607,9342],607,609,607,607,[607,9339],[607,9340],[607,9341],[607,9342],607,[607,10203],[607,10204],[607,10205],[607,10206],[607,10106],[607,10107],[607,10108],10010,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[3063,3883,10111],[3949,10205],[4013,10206],[3950,10106],[4011,10107],[3063,3951,10108],[3062,10109],[3063,10110],[3062,10111],[3063,3883],3947,3950,4011,[3062,3823],3063,[3062,9532],9625,[9626,14],0,0,0,[9823,14],9824,[3063,10111,9629],[3063,10203],[3062,10204],[3062,10106],[10010,9532],9721,[9722,14],0,0,[9727,14],9728,[3062,10111,9629],[3063,3883],4013,3950,4012,[3950,10106],9721,[9722,14],[9727,14],9728,[3063,9725],3063,3062,3062,3062,3063,3062,3062,[3062,8960],8961,[74,8962],0,0,[74,9053],9054,[3947,9055],3948,4014,4012,4012,[3062,3755],[3063,3822],[3063,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[403,9611],403,403,[403,9514],9703,[9704,14],0,0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[596,9611],[2768,597],[2768,598],[2829,599,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15070,15135,15134,15134,15071,15134,15135,15006,15135,15007,15070,15134,15006,15135,15070,15135,15071,15070,15134,15578,15581,15006,15006,15135,15006,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,[10000,9523],[3914,9712],[3977,9713],3977,3914,3914,[3978,9814],[3978,9906],[3914,9907],[3914,9908],[3978,9909],[3978,9910],9911,[3978,9716],3914,[4097,3787],[4097,9715],9904,[3914,9905],[3914,9908],[3914,9909],[3913,9910],10006,[3978,10100],[3977,10101],10001,10002,10003,[3977,9905],[3913,9906],[3914,9907],[3913,9809],3913,3977,3975,3976,3975,[4097,3723],[4097,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9879,9876,9881,9882,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,9905,8945,8946,8947,9910,9911,[3181,9716],3243,3179,3243,3245,3245,3244,[3244,3464],3593,[3529,10097],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2823,9421],2760,2824,2824,2825,[2761,9321],[2826,9324],[2823,9321],[2761,9322],[2761,9323],[2760,8552],[2825,8553],[2759,8554],[2823,9323],[2760,9324],[2760,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[2759,10093],2760,2759,2824,[2759,9416],9417,9420,[2762,9421],2823,2825,2762,2826,[2761,10088,9610],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2762,9611],2761,2824,[2762,9514],9607,[9608,14],0,0,0,[9613,14],9710,[2824,9515],2759,2825,2824,[2825,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[607,9533],607,607,[607,9532],[3953,9625],[3956,9626],3953,3953,3572,3956,4020,3953,3955,4019,3955,3953,3441,[3953,9727],[4017,9728],[607,9629],609,[607,9820],[607,10009],10010,[3158,9625],[3158,9626],3219,3221,2772,3219,3156,2642,[2933,3283],[2804,3284],[2868,3285],[2869,3286],2708,3155,[3155,9535],[3158,9435],[3155,9436],[3155,9437],[3158,9438],[607,9536],[607,9339],[607,9342],[607,9434],[3221,9435],[3156,9436],[3158,9437],[3221,9438],[607,9439],607,607,607,607,607,[607,10203],[607,10204],[607,10106],10010,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3062,10111,9629],2999,[3062,3884],3948,3950,[4012,10203],[3063,4015,10204],[3062,10205],[3063,10206],3062,3062,[3062,4010],4012,4013,[3062,3951],3063,[3063,9724],9721,[9722,14],0,0,[9823,14],9919,9920,[3063,9725],3062,3062,3062,[3062,10106,9628],9625,[9626,14],0,0,[9631,14],9632,[3063,9629],3063,[3063,4010],3948,4013,[3949,9529],[9530,14],0,0,[9535,14],[3062,9439],3062,3063,3063,3062,3062,3063,3062,[3062,9056],9057,[74,9058],0,0,[74,9149],[74,9150],[4012,9151],3948,4011,3436,4011,4011,[3062,3823],[3062,9724],9913,9914,9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[403,9611],403,403,[403,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2831,9611],2766,2832,[2829,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15135,15007,15071,15070,15135,15006,15007,15135,15134,15070,15135,15134,15070,15006,15007,15135,15135,15071,15071,15134,15134,15071,15134,15070,15135,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9616],[3914,9617],3977,3914,[3977,9814],[3977,9910],10002,10003,10004,10005,10006,[3914,10007],[3978,9812],3913,[4097,3915],[4097,9811],[4097,10000],10001,10004,10005,10006,[3913,10102],[3913,10196],[3977,10197],[4097,3915,10097],[4097,10098],[4097,10099],10001,10002,10003,[3978,9905],[3913,9906],[3977,9907],[3977,9809],3977,3977,3975,[4097,3786,9622],[4097,9623],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9975,9972,9977,9978,9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3181,10098],[3244,10099],10001,9041,9042,9043,10006,[3180,10007],[3245,9812],3180,3181,3179,3182,3179,3180,3244,[3244,3398],3528,[3529,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2823,9421],[2826,9321],[2760,9324],[2826,9416],9417,9420,9417,9418,9419,[74,8648],8649,[74,8650],9419,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[2759,10093,9611],2760,2762,2823,[2760,9511],[9512,14],0,0,[9517,14],[2823,9518],[2760,9321],[2824,9322],[2826,9323],[2762,9706,9324],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2759,9611],2760,2823,[2825,9610],9703,[9704,14],0,0,0,[9613,14],9614,[2823,9611],2826,2825,2761,[2825,9610],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9629],607,607,[607,9628],[3955,9721],[3953,9722],4019,4017,4019,4017,3954,4019,3954,3953,4017,4017,3953,4020,[4018,9535],[607,9536],607,607,607,[607,10106,9532],[2770,9721],[3158,9722],3221,3155,3158,3157,2773,[2804,3223],2932,2932,2804,2869,[2933,3091],[2804,3283],3219,3158,3158,3157,3156,[3156,9535],[3158,9435],[3155,9438],[3219,9530],3219,3156,3219,3158,[2644,9535],[607,9536],[607,9339],[607,9340],[607,9341],[607,9342],607,607,609,[607,10106],[10010,9532],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3063,9725],3062,3062,[3063,4074],[3063,4075],[3063,4076],[3063,4079],3062,3062,3062,[3063,3754],4012,4012,3950,4014,[3063,3821],[3063,9434],[9530,14],0,0,[9823,14],9919,10015,[3062,10016],[3062,9821],3063,3062,3062,[3062,9628],9721,[9722,14],0,0,[9727,14],9728,[3062,9629],3062,[3063,3884],3950,[3950,9532],9625,[9626,14],0,0,0,[9535,14],[3062,9536],3062,3062,3062,3062,3063,3062,[3062,9152],[74,9153],[74,9154],0,0,0,[9535,14],[3947,9439],4013,3949,3950,3948,4011,[3062,3887],[3062,9820],[3063,10009],10010,10011,10012,9914,[9818,14],0,0,0,0,0,0,[9823,14],9915,9916,9917,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[403,9611],403,403,[403,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,9899,9900,9901,9902,[2830,9707],2831,2766,[2830,3790,9706],9895,9896,9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15071,15007,15007,15134,15070,15007,15070,15006,15070,15134,15070,15070,15006,15135,15134,15070,15071,15135,15135,15071,15006,15006,15007,15135,15006,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3978,9712],[3913,9713],3914,[3913,9814],[3977,9910],10006,[4097,3787,10098],[4097,10099],[4097,10100],[4097,10101],[4097,4039,10102],[4097,4040],[4097,4041],[4097,4042],[4097,3849],4097,4097,[4097,10097],[4097,10100],[4097,10101],[4097,3847,10102],3912,3977,3913,[4097,3979],[4097,10194],[4097,3783,10195],[3719,10097],[3977,10098],[3977,10099],10001,10002,10003,[3913,9905],[3977,9809],3978,3913,[3975,9718],[3976,9719],9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9979,[3592,3904,10071],[3906,10068],10073,[3528,10074,193],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3246,10102],[3181,10194],[3245,10195],[3246,10097],[3182,9137],[3181,9138],[3244,9139],[3243,10102],3246,3181,3245,3244,3182,3181,3181,3181,3244,[3243,3462],3529,[3529,9715],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,74,[74,14],74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2761,9611],2760,2762,[2762,9514],9607,[9608,14],0,0,0,[9517,14],9417,9418,9419,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2825,9611],2825,2823,[2759,9610],9799,9897,9898,[9800,14],0,[9709,14],9710,[2824,9611],2824,2824,2762,[2761,9610],9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9824,[607,9629],607,607,[607,9628],[3955,9721],[3956,9722],4020,4020,4019,3955,3954,4020,4020,3955,4019,4017,3956,3956,[3954,9631],[3953,9632],[607,9533],607,607,[607,9628],[3157,9625],[3155,9626],3155,3158,3155,[2932,3285],[2868,3286],[2869,3094],2804,[2933,2962],[2933,2963],[2869,3029],2933,2932,[2933,3026],3158,3155,3157,3221,3158,3157,2773,3157,2642,3156,3221,2772,2643,[3157,9535],[3156,9435],[3158,9436],[3158,9437],[3155,9438],[607,9536],607,607,607,[607,10106,9628],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9439],3063,2998,3063,3062,[3062,9339],[3062,9340],[2998,9341],[3062,9342],[3062,3819],3949,3947,3949,[3062,4076],4014,[3950,9529],[9530,14],0,0,[9631,14],9632,[10015,9533],[3063,10111],2998,3062,3063,3063,3063,[3063,9724],9721,[9722,14],0,0,[9823,14],9824,[3062,9629],3063,2998,[3063,3883],[3062,4075,9628],9721,[9722,14],0,0,0,[9631,14],9632,[3063,9533],3062,3063,3063,3063,3062,[3062,9434],[9530,14],0,0,0,0,0,[9535,14],[3947,9536],3949,4014,3947,4012,[3063,3951],3062,3063,[3062,3818,10106],[4012,10107],[4013,10108],10010,9914,[9818,14],0,0,0,0,[9823,14],9919,10011,10012,10013,10014,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[403,9611],403,403,[403,9610],9799,[9800,14],0,0,0,0,[9805,14],9897,9898,9899,9900,[9800,14],0,0,[9805,14],9897,9898,9901,9993,9994,9995,9996,9997,[2768,9998],[2831,9803],[2766,3724],[2766,3725],[3919,9802],[3920,9991],9992,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15071,15134,15006,15135,15135,15135,15007,15070,15134,15070,15135,[15135,15450],[15134,15452],[15135,15453],15070,15007,15006,15070,15006,15134,15135,15135,15070,15006,15071,15007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9425,[3914,9521],3914,[3913,9814],[3913,9910],10006,[3977,10102],[4097,3851,10194],[4097,10195],[4097,10196],[4097,10197],4097,4097,4097,4097,4097,4192,4097,4097,[4097,10196],[4097,10197],[4097,3783],3976,3978,3911,[4097,3849],4097,[4097,3848],3912,[3978,10194],[3911,10195],[4097,3849,10097],[4097,10098],[4097,10099],10001,[3914,9905],[3913,9809],3913,3914,[3914,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,9979,[3593,10075,193],[3592,3776,10167],[3908,10164],[3592,3781,10169],[3594,10170,256],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3181,10102,9620],3180,3243,3181,3243,[3182,9233],[3246,9234],[3243,9235],3245,3246,3181,3245,3246,3245,3245,3246,3179,3182,[3180,3526,9330],[3594,9333],[3594,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2825,9611],2825,2762,[2824,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2826,9707],2762,2760,[2762,9706],9895,9993,9994,9896,9897,9898,9806,[2824,9611],2824,2826,2762,[2759,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,9920,[607,9725],607,607,[607,9628],[3955,9817],[4019,9818],3954,3955,4018,4020,3955,3954,4020,4017,4017,4018,4018,3954,[3954,9631],[3955,9632,561],[607,9629,561],[607,561],[607,561],[607,9724,561],[3221,9721,561],[3155,9722,561],[2869,3285],[2804,3286],[2933,3094],2868,2868,2804,[2933,3028],3157,2707,3221,[2932,2967],2933,[2868,3154],3155,3155,3219,2706,3156,3156,3157,3156,3158,3157,3219,3156,3221,3157,3157,3221,3158,[3219,9631],[3157,9632],[607,9533],607,607,[607,9724],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9439],3063,3063,[3063,9434],9435,9436,9437,9438,[4012,9439],3950,[3063,4075],[3063,4079],3062,[3063,3883,9532],9721,[9722,14],0,0,[9727,14],9728,[3062,10111,9629],3063,3063,3062,3062,2999,3063,[3062,9434],[9530,14],0,0,[9823,14],9919,9920,[3062,9725],3063,3063,3063,[3063,9724],9721,[9722,14],0,0,0,[9727,14],9728,[3063,9629],3063,3063,3062,3063,[3062,9529],[9530,14],0,0,0,0,0,0,[9631,14],9632,[4013,9533],3950,3950,3950,[3062,3886],3063,3063,[3062,3882],[3950,10203],[3947,10204],[4013,10106],[10010,9532],9721,[9722,14],0,0,[9823,14],9919,10015,[3062,3819,10107],[3947,10108],[4014,10109],[3947,10110],[10010,9532],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2768,468,9611],[2831,469],[2831,470],[2766,471,9706],9895,9896,9897,9898,9899,9900,9901,9993,9994,9995,9996,9896,9897,9898,9901,9993,9994,9997,[2831,10089],[3983,10090],[3920,10091],[3920,10092],[2767,3921,10093],2766,2768,[2829,3980],3920,3983,3920,[3919,10088],[3919,10089],[3919,10090],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15071,15070,15071,15134,15134,15135,15134,15007,15135,15071,15134,15514,15515,15647,[15134,15452],[15007,15453],15007,15071,15135,15070,15134,15070,15070,15070,15135,15135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3977,9521],3978,[3914,9622],[3977,9623],[10006,9524],[3978,10102],3914,[4097,3915],4097,4096,4097,4097,4097,4097,[4097,3783],[4097,3719],[4097,3785],4097,4097,[4097,3718,9330],[4097,3719,9331],[3976,9332],[3977,9333],3914,[4097,3787],4097,4097,4097,[4097,3974],3978,3975,[4097,3785],[4097,3783,10194],[4097,3719,10195],[3720,10097],10001,[3914,9616],[3914,9617],3978,[3913,9718],[3978,9719],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3594,10075],[3530,256],[3332,3904],3907,[3593,3909],3594,9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3245,9620],3243,3243,3182,3245,3179,3179,3180,3179,3245,3181,3246,3245,3179,3180,3181,3246,[3246,9425],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[2825,9707],2824,2761,[2759,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2761,9421],2762,2824,[2825,9802],[2759,9991],[2761,10089],[2825,10090],9992,9993,9994,9902,[2760,9707],2761,2759,2759,[2760,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[10015,9533],[607,10016],[607,9821],607,607,[607,9724],9913,[4018,9914],[4018,9818],3955,4018,3953,3953,3955,4017,4019,3955,3954,3955,4017,4018,625,625,625,625,625,625,625,2932,2933,2868,2804,[2804,3028],[2869,2963],3155,3158,3157,[2869,3286],[2868,3094],2868,[2933,3282],3219,3156,3156,3158,2770,3221,3155,3219,3156,3221,3156,3219,3219,3157,3219,3221,2708,[3155,9727],[3158,9728],[607,9629],607,607,[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9536],[3062,9529],[9530,14],0,0,0,[9631,14],9632,[3063,3886,9533],3063,3063,3062,[2998,9628],9625,[9626,14],0,0,0,[9535,14],[3062,9439],3062,3063,3063,3062,3063,[3062,9529],[9530,14],0,0,[9631,14],9632,10015,[3062,10016],[3063,9821],2998,2999,3063,[3062,9434],[9530,14],0,0,0,0,[9823,14],9824,[3063,9629],3063,3062,2998,[3063,9532],9625,[9626,14],0,0,0,0,0,0,[9727,14],9728,[4013,9629],4014,3950,[3062,4079],3063,3062,3062,[2998,3946],4011,3950,3947,[4011,10106,9628],9817,[9818,14],0,[9727,14],9728,[10015,9533],[3063,10111],[2998,4010,10203],[3949,10204],[4012,10205],[4012,10206],[4013,10106,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[2766,3791,9707],2765,[2766,128],[2766,9802],[2831,3790,9991],9992,9993,9994,9995,9996,9997,[3920,10089],[3917,103,10090],[403,10091],[403,10092],9992,9993,9994,9997,[2768,103,10089],[403,10090],[2830,230,10093],[2832,3724,166,10185],[3983,174,10186],[3920,10187],[3983,10188],[2832,3985],2830,2767,[2831,3853],[2829,4045],[2829,4048],3919,3920,[2830,4047,10185],[3983,10186],[3919,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15134,15135,15070,15007,15135,15135,15070,15007,15007,15006,15006,15514,15516,15516,15516,15517,15135,15134,15071,15007,15135,15070,15006,15007,15135,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15004,15132,15069,15132,15132,15133,15005,15132,15133,15004,15132,15132,15005,15132,15069,15069,16538,16539,16540,16541,15133,15068,15068,15069,15004,15005,15133,15133,15132,15004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[3977,9616],[3977,9617],3914,[3913,9718],[3977,9719],[3914,10102,9620],3914,3977,[4097,3979],4097,[4097,9330],[4097,9333],4097,4097,[4097,3718],3976,3978,3975,[4097,3719],[4097,3720,9425],[1987,9426],[1922,9427],[2435,9428],[2435,9429],[3978,9430],[4097,3915],4192,4097,4097,[4097,3848,9330],[3977,9333],3977,3975,3976,3978,3914,[3913,10097,9523],[3977,9712],[3913,9713],3978,3914,[3978,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3593,9500],3530,[3528,3841],3907,3969,[3528,3780],9877,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3244,9716],3180,3243,3246,3244,3243,3243,3179,3179,3246,3245,3182,3244,3179,3244,3182,[3182,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[2762,9998],[2824,9803],2762,2760,[2759,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2823,9518],2760,2824,2826,[2826,10185],[2823,10186],[2823,10088],[2760,10089],[2760,10090],[2825,9998],[2760,9803],2761,2826,2824,[2824,9802],[2823,9991],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,10111,9629],607,607,607,607,[607,9820],[607,10009],[10010,9532],[3953,9721],[3953,9722],3955,4019,4019,4020,3953,4020,3953,3955,3954,4020,3954,689,689,689,689,689,689,689,[2869,3028],[2869,2964],[2932,2965],[2868,2966],3156,3158,3221,[2804,3286],[2868,3093],2932,2869,2804,2932,[2933,3218],3219,3158,3155,3219,3158,3158,[2932,3284],[2804,3285],[2933,3286],3155,3221,3155,3221,3155,3157,3157,[3157,9823],[2707,9824],[607,9629],607,[607,9532],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[9530,14],0,0,0,0,[9727,14],9728,[3062,9629],3063,3063,3062,[3063,9628],9721,[9722,14],0,0,0,[9631,14],9632,[3062,9533],3063,3063,3062,[3063,3819,9532],9721,[9722,14],0,0,[9727,14],9728,[3062,10111,9533],3062,3063,3062,3062,[3062,9529],[9530,14],0,0,0,0,[9823,14],9919,9920,[2998,3755,9725],[3063,3755],[3063,3821],3063,[3063,9628],9625,[9626,14],0,0,0,0,0,0,[9823,14],9824,[4012,9629],4014,[3062,3885],3062,3062,3062,3062,[3063,4074],[3062,4075],4012,3950,[4011,9724],9913,9914,9917,9918,9824,[3062,10111,9629],3062,[3062,4074],3947,4014,3948,[4013,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[3920,9998],[2831,3793,9803],2831,[2831,3789],[2829,3725],[3983,10087],[3920,10088],[3920,10089],[3983,10090],[3983,10091],[3983,10092],[3983,10093],[3983,10185],[3920,167,10186],[403,10187],[403,10188],[3983,37,10088],[3920,10089],[3983,10090],[2767,3857,10093],[2829,167,10185],[403,10186],403,403,[3983,101],[3919,128],3920,3983,[2765,3791],2830,2766,2831,2765,[2766,3854],[2831,3855],2830,[2832,3853],[2766,4045],[2767,4046,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,15007,15007,15006,15070,15071,15135,15007,15006,15070,15007,15134,15578,15579,15580,15580,15581,15006,15006,15134,15070,15070,15071,15071,15071,15070,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15005,15068,15133,15133,15132,15133,15005,15132,15004,15132,15069,15005,15133,15132,15132,15069,[15005,16602],16603,16604,[15132,16605],15133,15069,15133,15133,15005,15068,15132,15005,15069,15132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3913,9712],[3913,9713],3913,[3977,9622],[3914,9623],[3978,9716],3977,3978,3975,[4097,3786,9425],[3914,9426],[3978,9429],[4097,9430],4097,[4097,3974],3978,3977,3977,[3914,9425],[2435,9521],2435,2370,2371,2434,[2435,9526],[4097,3979,9527],[4097,9330],[4097,9333],[4097,9425],[2370,9426],[2435,9429],[3913,9430],3911,[4097,4039],[4097,4039],[4097,4040],[3912,9619],[3977,9712],[3914,9713],3914,3978,3911,[4097,3850,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3591,9500],3592,[3593,3841],3971,[3268,3781],[3592,9973],9974,9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3179,9430],3182,3181,3246,3182,3243,3245,3182,3179,3179,3180,3246,3243,3182,3180,[3179,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2762,10093,9611],2762,2823,2824,2823,[2759,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,8939,14],8940,[2761,8941],2825,2759,2761,2825,2760,[2823,10185],[2759,10186],2762,2826,2761,2824,2761,2761,2759,[2825,10088],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9536],607,607,607,607,607,607,[607,10106,9628],[4019,9817],[3956,9818],3572,3954,3956,3956,4019,4017,4019,3440,4017,3955,4020,[3954,9728,753],[607,9533,753],[607,753],[607,753],[607,9628,753],[3157,9625,753],[3158,9626,753],3156,3155,3155,3155,3221,[2804,3286],[2869,3287],2868,2868,[2932,3027],[2933,2963],[2933,2967],2804,[2933,3092],3221,3219,3219,3156,3157,[2804,3093],2933,2804,2804,[2933,3218],3221,2644,2773,3219,3219,[3156,9823],[3219,9919],9920,[607,9725],607,[607,9628],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3063,9629],2999,3063,2998,[3063,9628],9721,[9722,14],0,0,0,[9727,14],9728,[3062,9629],3063,3063,[3063,3819],[3950,9628],9817,[9818,14],0,0,[9823,14],9824,[3062,3758,9629],[3063,3759],3062,3062,[3062,9532],9721,[9722,14],0,0,0,[9631,14],9632,[10015,9533],[3947,10016],[3947,9821],4011,3947,[3063,3822],[2998,9724],9721,[9722,14],0,0,0,[9823,14],9915,9916,9919,9920,[3063,4010,9725],[3062,4015],3063,3062,3062,3063,2998,3063,3062,[3062,3883],[3062,4075],[3062,4076,9820],[3062,4077,10009],10010,10013,10014,9920,[3062,9725],3063,3062,[3062,3883],4012,3948,[3948,9820],[3947,10009],[10010,9532],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3983,10093,9611],3920,[2832,3921],2766,[2765,3980],3920,3919,3983,[3983,10185],[3920,10186],[3983,10187],[2768,3855,10188],[2829,3853],3919,[3983,167],403,403,[3920,101],[3983,10185],[3919,10186],[2832,3921],[2829,167],403,403,403,[3919,165],3983,3917,3983,3919,[2831,3728],[2765,3725],[2765,3791],[2767,9321],[2829,9324],2768,2768,2766,2767,[2830,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15135,15007,15006,15006,15135,15007,15070,15006,15135,15007,15006,15070,15071,15135,15071,15135,15006,15006,15134,15135,15134,15135,15070,15135,15135,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15004,15005,15069,15068,15005,15133,15132,15133,15069,15132,15133,15004,15133,15133,15004,15132,[15133,16666],16667,16668,[15069,16669],15004,15005,15068,15004,15132,15132,15004,15069,15069,15068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3913,9521],3978,3913,3977,[3978,9526],[3914,9527],[3977,9330],[3977,9333],[3978,9520],[3914,9521],3913,3977,[3978,9526],[4097,3784,9527],3976,3978,3978,[3978,9520],[2434,9521],2435,2435,2371,2370,2435,2435,[1986,9526],[2434,9426],[2370,9429],[1987,9521],2371,2370,[2435,9526],[4097,3849,9527],4097,4097,4097,[4097,3847,9619],[3977,9808],[3913,9809],3977,3978,[4097,3787],4097,[4097,9623],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,3529,3594,[3528,3968],[3593,3909],[3593,321],[3268,10070],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3245,9430],[3245,9330],[3245,9333],3246,3246,3246,3243,3246,3244,[3246,9330],[3181,9333],3180,3179,[3181,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2760,9611],2825,2826,2826,[2759,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9035,14],9036,[2762,9037],2761,2760,2825,2760,2761,2824,2824,[2762,9321],[2761,9322],[2824,9323],[2761,9324],[2761,9324],2762,2760,2762,[2759,10088],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,607,607,607,609,607,607,[607,9724],9913,[4018,9914],[4017,9917],[4018,9918],[3954,9818],3953,3954,4019,3953,4017,[3954,9823],[3956,9917],[4019,9918],[4020,9824],[607,9629],607,607,[607,9724],[3219,9721],[3221,9722],2708,3155,3156,3157,[2869,3094],2868,2869,2869,[2933,3027],3221,3157,[2932,3223],2932,2869,[2933,3026],3157,3157,3158,[2868,3287],2932,2804,[2804,3027],[2869,2963],3219,3158,2708,3158,3221,[3219,9823],[3155,9919],10015,[607,10016],[607,9821],607,[607,9628],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[3948,9629],[3063,3822],2999,3063,[3062,9628],9625,[9626,14],0,0,0,[9631,14],9632,[2999,3755,9629],[3062,3822],[3063,3820],4012,[4011,9724],9913,9914,9917,9918,9919,9920,[3949,9725],[3062,3823],3063,3062,[3063,9628],9625,[9626,14],0,0,0,[9727,14],9728,[3949,10111,9629],3949,3947,4014,4014,3948,[2998,3755,9434],[9530,14],0,0,0,[9823,14],9919,10011,10012,10015,[3063,10016],[3062,3883,9821],[3063,4079],3062,2998,3062,3062,3062,3062,3063,3062,3063,3063,3063,[3063,10106],[3063,10109],[3063,10110],[3063,10016],[3063,9821],3062,3063,3063,[2998,3818],4011,3947,3949,[4012,10106,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3920,9707],3919,[2830,4049],2765,[2830,3853],3919,3983,3920,3919,3920,[2832,3856],2831,2832,[2830,3980],[3919,103],403,403,[3920,165],3919,3983,[2765,4049],[2830,128],[2766,39],403,403,[3920,229],[3919,166,9321],[3983,174,9324],3919,3983,3920,3917,[3920,9416],9417,9420,[2765,9421],[2830,9321],[2767,9324],[2765,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15007,15071,15134,15135,15007,15071,15070,15071,15135,15134,15135,15070,15070,15007,15135,15071,15006,15135,15134,15070,15070,15070,15071,15071,15134,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15068,15069,15068,15069,15132,15132,15132,15004,15132,15004,15132,15005,15005,15005,15069,15132,[15068,16730],[15004,16731],[15004,16732],[15068,16733],15069,15069,15133,15004,15133,15068,15069,15005,15133,15004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[3978,9712],[3977,9713],3977,3977,3978,3977,[3914,9526],[3978,9426],[3913,9429],[3914,9521],3978,3978,3978,[3977,9622],[3913,9623],[3978,9524],3914,[3977,9520],[2434,9521],2434,2371,2434,2435,2435,2434,2435,2370,2435,2371,2370,2434,2370,[2435,9718],[1922,9719],[4097,9524],4192,4097,[4097,9715],9904,[3913,9905],[3977,9809],3913,[4097,3915],[4192,9718],[4097,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3593,192],[3268,193],[3530,3776],[3528,3781],[3592,384],3592,9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9429,[3182,9430],[3182,9330],[3243,9331],[3245,9332],[3245,9333],[3245,9425],9426,9429,[3179,9430],[3180,9330],[3246,9715,9333],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2759,9611],2826,2826,[2762,9514],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9131,14],[74,9132],[2761,9133],2824,2824,2823,2761,[2823,9321],[2824,9324],[2761,9416],9417,9418,9419,9420,9420,[2823,9518],2824,2826,2826,[2759,10088,9514],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,607,607,607,607,607,607,[607,9820],[607,10009],10010,10013,10014,[4017,9914],[3955,9915,367],368,369,[3954,9917,370],[3954,9918],[3956,9919],10013,10014,9920,[607,9725],607,607,[607,9529],[3219,9530],3157,2770,3157,3157,[2868,3094],2869,2868,[2868,3027],[2804,2963],3157,3221,3219,3157,[2933,3029],2868,[2804,3090],3221,3219,[2933,3223],2933,2868,[2868,2962],3157,3157,3157,3155,3219,3155,[3156,9727],[3157,9728],[10015,9533],[607,10111],607,607,607,[607,9724],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[3947,9725],3950,[3063,3822],3062,[2998,9628],9721,[9722,14],0,0,0,[9823,14],9824,[4013,9629],3949,4011,3950,[4011,9820],[3948,10009],10010,10013,10014,10015,[3950,10016],[4013,9821],[3063,3887],3062,3062,[3063,9628],9721,[9722,14],0,0,0,[9823,14],9824,[3062,3883,9629],3947,4012,3947,3950,[3949,9529],[9530,14],0,0,0,[9823,14],9919,10015,[3063,10107],[3062,10108],[3062,10111],3062,3062,3062,3062,3063,3062,3063,3062,[3062,9339],[3062,9341],[3062,9342],3063,3062,3062,3063,[2998,10205],[2998,10206],3062,3062,3063,3062,3063,[3063,3946],4011,4014,4012,[4011,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3918,9421],3920,[2765,3792],2830,2832,[2767,3853],3919,3920,3983,[2831,3985],2830,2831,[2768,9321],[2768,3980,9324],[2765,3855,167],403,[2830,3853,37],[2830,4047],[2830,4048],[2767,4049],2829,2832,2768,[2831,38],[2766,3853,39],9416,9417,9420,[3920,9421],[3983,9321],[3983,9324],[3983,9416],[9512,14],0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9916,9917,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15197,15196,15196,15197,15196,15196,15197,15197,15197,15197,15196,15197,15197,15197,15196,15197,15196,15196,15196,15196,15196,15197,15197,15196,15197,15197,15196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15197,15197,15196,15196,15197,15196,15197,15196,15196,15196,15196,15196,15197,15196,15196,15197,15008,15008,15008,15008,15196,15197,15197,15197,15197,15197,15197,15197,15197,15196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9808],[3914,9809],3978,3913,3914,3913,3978,3914,3913,3978,3914,3914,3977,[3914,9718],[3977,9719],[3913,9620],[3978,9523],[2370,9616],[2370,9617],2371,2370,2434,2434,2370,2371,2434,2371,2434,2434,2371,2435,2434,[2435,9814],[2371,9815],[4097,9620],4097,4097,[4097,3784,9811],[3976,10000],10001,[3978,9616],[3913,9617],3975,[4097,3785,9814],[4097,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3592,256],[3592,257],[3529,3904],[3594,3845],3592,3268,9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],9426,9427,9428,9429,[9521,14],0,0,[9526,14],9426,9429,[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2759,9611],2826,2824,[2762,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2762,9515],2760,2826,2762,[2760,9511],9417,9420,[9512,14],0,0,0,0,[9613,14],9614,[2760,9515],2823,2823,[2824,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,607,607,607,607,607,607,607,607,[607,10106],[607,10109],[607,10110],10010,[10011,367],368,369,[10013,370],10014,10015,[607,10109],[607,10110],[607,10016],[607,9821],607,[607,9529],[3157,9530],3156,3156,3221,[2868,3286],[2933,3287],2869,2933,[2804,3028],3157,3221,3219,3155,3155,2706,3156,[2869,3030],[2868,3154],3158,3221,[2933,3094],2868,[2933,3028],3156,3155,3221,3221,3219,3156,3219,[3157,9823],[3221,9824],[607,10111,9629],607,607,607,607,[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[3063,3883,10016],[4013,9821],4014,3948,[3063,3759],[3062,9628],9817,9915,9916,9917,9918,9919,9920,[3947,9725],3947,3949,4012,4013,[3063,3886],[3062,10106],[3063,10109],[3063,10110],[3062,3946,10111],4011,4011,[3063,3951],3063,3063,[3063,9628],9817,[9818,14],0,0,[9823,14],9919,9920,[3063,9725],[3063,3818],4013,4012,4014,9625,[9626,14],0,0,[9631,14],9632,10015,[2999,10111],[3063,10203],[3062,10204],3062,3062,3062,3062,3063,3062,3063,3062,[3063,9529],9435,9437,9438,[3062,9439],3063,3063,3062,3063,3062,3062,3063,3063,3062,[3062,3820],3949,3950,3948,3949,[3948,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3919,9518],[2768,3985,9321],[2767,9324],2768,2766,[2766,4044],[2831,4045],[2831,4046],[2829,3855],[2765,9415],[2830,9416],9417,9420,[2768,167,9421],403,[2830,229],[2830,166],[2766,174],2831,[2766,3724],[2765,3791],2768,2767,[2767,9511],[9512,14],0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10011,10012,10013,10014,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15261,15260,15261,15260,15260,15261,15260,15261,15260,15260,15260,15261,15260,15260,15260,15261,15261,15260,15260,15260,15261,15260,15260,15260,15260,15261,15261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15260,15260,15261,15260,15260,15260,15260,15261,15260,15261,15261,15261,15261,15261,15261,15261,15072,15072,15072,15072,15260,15261,15260,15261,15260,15261,15261,15260,15261,15260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3913,9616],[3914,9617],3914,3914,3977,3978,[3977,9814],[3978,9906],[3913,9907],[3978,9809],3978,3977,[3978,9814],[3914,9815],[3977,9620],[3913,9619],[1922,9712],[2370,9713],2435,2434,2370,2371,2370,2371,2435,2434,1923,2371,2370,2434,[2435,9814],[2435,9910],9911,[4097,3720,9716],[4097,3721],[4097,3722],3976,3911,[4097,3850,10097,9523],[3914,9712],[3978,9713],[3914,9622],[3914,9623],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3530,321],[3594,321],[3268,3776],[3528,3909],3269,[3593,321],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2761,9611],2824,2826,[2760,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[2826,9707],2825,2826,[2759,9514],9703,[9608,14],0,0,0,0,0,0,[9709,14],9710,[2825,9611],2759,2824,[2759,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9824,607,607,607,607,607,607,607,609,607,[607,10205],[607,10206],[607,10106],[607,10107,367],368,369,[607,10109,370],[607,10110],[607,10111],[607,10205],[607,10206],607,609,[607,9532],[3221,9625],[3158,9626],3155,3219,[2869,3031],2932,2932,[2869,2962],[2933,2963],3157,3158,3221,2771,2642,3219,3157,3221,[2932,3223],[2869,3091],3219,[2869,3223],2932,[2868,3027],3156,3158,3158,[2771,9823],[3221,9915],[2644,9916],[2707,9917],[2772,9918],[3156,9919],9920,[607,9725],607,607,607,[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3062,10111,9629],3062,[3063,4074],[2998,4075],3949,4014,[3063,3821,9724],9913,10011,10012,10013,10014,10015,[3062,10016],[3062,4077,9821],[3063,4075],4014,3950,[3063,3885],3063,2998,[3063,10205],[3062,10206],[2999,4010],3950,3947,[3062,4015],3063,[3062,3819],[3947,9724],9913,9914,9917,9918,9919,10015,[3063,10016],[3063,9821],[3063,3882],3947,4013,3948,9721,[9722,14],0,0,[9727,14],9728,[3062,10111,9533],3062,2998,3062,3063,3062,3062,3063,3063,3062,[3063,9339],[3062,9532,9342],9721,[9722,14],0,0,[9535,14],[3062,9536],3063,3062,3063,3062,3062,3062,[2999,3819],[3062,3755],4011,4011,4012,3949,[3948,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[2831,9421],2830,2765,2767,2766,2768,[2831,9511],[9512,14],0,0,[9517,14],[403,9518],[403,9321],[403,9322],[2829,101,9323],[2766,3789,9324],3917,3983,[2832,3725],[2767,3725,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10015,[2866,10107],[2930,10108],[2931,10109],[2866,10110],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15325,15325,0,15325,0,0,0,0,15325,0,0,0,15325,0,0,0,0,15325,0,0,0,15325,0,0,15325,0,15325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15066,15130,15067,15067,15067,15131,15131,15003,15066,15130,15067,15066,15002,15131,15002,15131,15130,15002,15130,15066,15002,15067,15003,15131,15066,15067,15130,15130,15130,15003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,[10000,9523],[3977,9712],[3977,9713],3978,3978,3978,[3913,9814],[3977,9910],10002,10003,[3977,9905],[3978,9906],[3913,9907],[3913,9910],9911,[3977,9716],[3914,9619],[2370,9808],[2371,9809],2434,2370,2370,2370,2435,2435,2435,2435,2435,2371,2435,[2370,9718],[1923,9719],10006,[3913,10007],[3913,9812],3978,3913,3911,[4097,4043],[4097,9619],[3978,9712],[3914,9713],[3914,9622],[3914,9623],[10007,9524],9812,0,0,9330,9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9788,[3593,384],[3268,384],[3269,3904],3907,[3594,3779],[3594,384],9877,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2826,9611],2759,2760,[2759,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[2824,9998],[2823,9803],2824,2760,[2761,9610],9799,[9800,14],0,0,0,0,0,0,[9805,14],9806,[2761,9611],2826,2760,[2762,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,9920,607,607,607,607,607,607,607,607,607,607,607,607,[607,10203,367],368,369,[607,10205,370],[607,10206],[607,10207],607,607,607,607,[607,9434],[3157,9530],2771,2770,3221,[2868,3095],2933,[2933,3027],2773,3221,3219,3155,3155,2644,3221,3157,3219,3155,[2869,3287],2932,[2804,3092],[2868,3287],2868,[2933,3026],2706,3155,[2772,9823],[3157,9919],10011,10012,10013,10014,10015,[607,10016],[607,9821],609,607,[607,9532],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3062,9725],2999,3062,3062,[3062,4010],4011,[4014,9820],[4014,10009],[4014,10107],[2998,10108],[3063,10109],[3063,10110],[3062,10111],3062,2998,2998,[3062,3818],3947,[3062,3822],3062,2998,3063,3062,[3062,3883],3947,4014,4014,[2998,3755],3947,[3947,9820],[3062,3886,10009],10010,10013,10014,10015,[3063,10111],3063,3063,[3063,3946],3950,3948,3950,9625,[9626,14],0,0,[9823,14],9824,[3063,9629],3062,3063,3062,3063,3062,3063,3062,3063,[3062,9529],9435,9438,[9530,14],0,0,0,[9631,14],9632,[3063,9533,9339],[3063,9340],[3063,9341],[3063,9342],3062,[3062,3820],4014,4014,3498,4014,4013,[3950,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2767,9518],2830,2765,[2832,3724],[2831,3725,9514],9607,[9608,14],0,0,0,[9517,14],9417,9418,9419,9420,[3983,9518],3919,3920,[3917,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[2930,3189,10111],[2930,10203],[2802,10204],[2802,10205],[2866,10206],[2931,10106],[10010,9532],9625,[9626,14],0,0,0,0,[9823,14],9915,9916,9917,9918,9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15131,15002,15003,15130,15067,15067,15130,15067,15003,15066,15131,15003,15002,15130,15067,15131,15131,15131,15130,15067,15066,15130,15002,15002,15002,15131,15066,15067,15130,15131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9616],[3913,9617],3913,3977,[3914,9622],[3977,9623],10006,[3913,10098],[3914,10099],10001,10002,10003,10006,[4097,4039,10007],[4097,4040,9812],[4097,4041,9715],9904,[2371,9616],[2435,9617],2370,2435,2434,2371,2371,2371,2435,2434,2435,2370,[2114,9622],[2370,9623],[4097,4042,10102,9524],[4097,4039],3912,[3977,9330],[3911,9330],[4097,3849,9331],[4097,9332],[4097,9715,9333],[3914,9616],[3913,9617],[3914,9718],[3913,9719],9620,0,0,9425,[4097,9426],[4097,9429],9430,0,0,0,0,0,0,0,0,9330,9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,9884,[3528,321],[3268,321],[3529,3968],3906,3521,[3594,3717],[3268,9973],9974,9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[2760,9707],2759,2826,[2825,9802],[2823,9991],[9992,9514],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2826,10093],2826,2825,2826,2761,[2824,9706],9895,9896,9897,9898,9899,9900,9897,9898,9901,9902,[2761,9707],2762,2762,[2762,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,10015,[607,10016],607,607,607,607,607,607,607,[607,9339],[607,9342],607,607,607,[607,367],368,369,[607,370],608,[607,9339],[607,9340],[607,9341],[607,9342],[607,9529],[3219,9530],2643,3155,3156,3156,[2932,3159],2804,[2804,3218],3157,3155,3221,3155,3155,3157,3156,3219,3158,3221,[2932,3029],[2868,2962],[2804,3030],2804,2933,[2933,3090],3221,[3155,9823],[2643,9919],10015,[607,10107],[607,10108],[607,10109],[607,10110],[607,10111],607,607,607,607,[607,9724],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9439],2998,3062,3062,[2998,3818],3948,4012,4014,[3062,3886,10203],[3062,10204],[3063,10205],[3063,10206],3063,3063,3063,3063,[3062,3946],[3948,9339],[3063,4015,9342],3063,3062,3062,3063,3062,[3063,3884],4013,3948,4011,3949,[3062,4079],3063,[3063,10106],[3063,10109],[3063,10110],[2998,10111],3062,2998,3062,[3062,4010],4011,3949,[3062,4075],9721,[9722,14],0,[9823,14],9919,9920,[3062,9725],3062,3063,3062,3063,3062,3063,3062,[3063,9532],9625,[9626,14],0,0,0,0,0,0,[9535,14],9435,9436,9437,9438,[3063,9439],[3062,3818],4014,3950,4014,4013,3435,[3562,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2832,9515],[2830,128],[2765,3788],[3920,9610],9703,[9704,14],0,0,0,0,0,0,0,[9709,14],9710,[3983,9515],3919,[3983,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3188,10111,9629],[2930,3253],2930,2931,2930,2930,2802,[2930,10106,9628],9721,[9722,14],0,0,0,[9823,14],9919,10011,10012,10013,10014,10011,10012,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],8954,8955,8956,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15003,15131,15130,15003,15003,15130,15002,15002,15131,15066,15131,15131,15131,15066,15067,15003,15067,15002,15131,15067,15002,15131,15066,15003,15066,15003,15130,15066,15002,15066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3978,9712],[3978,9713],3978,3914,[3913,9718],[3977,9719],[4097,4039,10102,9524],[3912,10194],[3914,10195],[4097,3851,10097],[4097,10098],[4097,10099],[4097,10102],4097,4097,[4097,9811],[4097,10000],[2371,9712],[2370,9713],2435,2370,2434,2370,2370,2371,2435,2370,2370,2370,[2435,9718],[1923,9719],[4097,9620],4096,[4097,3847,9520],[3977,9426],[3978,9426],[3977,9427],[3977,9428],[3913,9429],[3914,9521],3977,3914,[3914,9719],9716,0,9425,[4097,9521],4096,4097,[4097,9526],9527,0,0,0,0,0,0,9425,[3978,9426],[3913,9429],9430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3528,9980],[3594,384],[3528,3777,384],3908,3908,3969,[3333,4037],3592,[3528,10070,192],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[2825,9998],[2825,9803],2760,2824,2826,2759,[2825,10088,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2760,9518],2760,2824,2823,2826,[2824,9802],[2824,9991],9992,9993,9994,9995,9996,9993,9994,9997,[2824,9998],[2824,9803],2823,2825,[2760,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,10111],607,609,607,607,607,607,607,[607,9434],[3155,9435],[3157,9438],[607,9439],607,608,[607,367],368,369,[607,370],[607,9434],[3219,9435],[3157,9436],[3156,9437],[2708,9438],[3158,9530],3155,3156,3219,2770,3219,[2932,3223],2933,[2932,3026],3155,3157,3156,2707,3221,3156,3158,3219,3221,3158,3157,3157,[2868,3031],2868,2933,[2933,3154],[3158,9727],[3158,9728],[10015,9533],[607,10111],[607,10203],[607,10204],[607,10205],[607,10206],607,607,607,607,607,[607,9434],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9439],3063,3063,[3063,3946],4014,3948,[3063,4015],3062,3063,3063,3063,3062,3063,3063,3062,[3062,9434],9435,9438,[3062,9439],3063,3063,3062,3062,[3062,3820],4011,3950,3950,[3062,3886],3062,3062,3063,[3063,10205],[3063,10206],3063,3062,[3063,3819],[3063,3755],3949,3949,[3063,3886],[3062,9529],[9530,14],0,[9631,14],9632,[10015,9533],[4011,10016],[3063,3757,9821],[3063,3758],[3062,3759],3063,3063,3063,3062,2999,[3062,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,[9535,14],[4014,9536],[3498,9339],[3949,9340],[3948,9341],[3498,9342],[3562,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2765,230,9611],[2829,166],[2766,3916,174],[3917,9610],9799,[9800,14],0,0,0,0,0,0,0,[9805,14],9806,[3919,9611],[3920,128],[3983,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[3250,9629],3188,[2931,3060],2802,2930,2930,[2802,9433],[2802,9434],[9530,14],0,0,0,[9823,14],9919,10015,[3250,10107],[3250,10108],[3188,10109],[2931,3189,10110],[2802,10107],[2931,10108],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,9919,9050,9051,9052,10014,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15131,15066,15131,15002,15066,15131,15003,15067,15067,15130,15002,15002,15067,15067,15131,15066,15067,15131,15003,15002,15130,15130,15002,15130,15003,15066,15003,15067,15002,15131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9808],[3978,9809],3978,3977,[3977,9622],[3913,9623],[4097,9620],[4097,3847],3912,[4097,3915],[4097,10194],[4097,10195],4097,4192,4097,4097,[4097,9425],[2371,9521],2434,2435,2370,2434,2434,2371,2434,2435,2371,2371,2435,[1922,9814],[1923,9815],[4097,3784,9620],[4097,3719,9523],[3913,9616],[3913,9617],3913,3977,3913,3914,3978,3913,3977,[3914,9526],9527,9520,[4097,3719,9521],[4097,3785],[4097,3783],[4097,3719],[4097,3786],[4097,9526],9527,9330,9331,9332,9333,9520,[3977,9521],3977,3977,[3978,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3594,9500],3592,[3269,3842,321],[3268,4033],[3528,4034,193],[3530,3843],[3593,321],3528,[3529,256],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2824,10093],2823,2762,2825,2824,2759,2759,[2823,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2826,9515],2825,2760,2823,2759,2761,[2761,10088],[2826,10089],[2825,10090],[2823,10091],[2761,10092],[2759,10089],[2826,10090],[2826,10093],2762,2760,2826,2824,[2760,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9536],607,607,607,607,607,607,[607,9529],[3221,9530],2770,3156,[2642,9535],[607,9536],[607,9339],[607,9342,367],368,369,[607,9529,370],[3221,9530],2770,3221,3158,3221,3158,3158,3221,3155,3156,3157,[2933,3031],2868,[2869,3090],3219,2771,2642,3158,3219,3158,3155,3155,[3158,9823],[3156,9915],[3156,9916],[2772,9818],[2804,3159],2933,2804,[2868,3218],[3221,9823],[3156,9824],[607,10111,9629],607,607,607,607,607,607,607,[607,9339],[607,9342],[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9536],[3063,3819,9339],[3948,9342],3950,[3062,4075],[3063,4079],3062,2998,3062,3062,[3062,9339],[3062,9339],[3063,9342],[3062,9529],[9530,14],0,0,[9535,14],[3062,9536],3062,2998,3062,[3062,4074],4014,4011,4014,[3063,3821],3062,[3062,9339],[3063,9340],[3063,9341],[3062,9342],[3063,3819],[3062,3755],4011,3948,4012,[3063,4015],3063,9625,[9626,14],0,[9727,14],9728,[4011,10111,9629],4012,3948,4013,[3062,4015],3062,3062,3062,3062,3062,[3063,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9436,9437,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[403,9611],403,[2766,3980,165],[3983,173,9706],9895,9896,9897,9898,9900,[9800,14],0,0,[9805,14],9901,9902,[3919,405,9707],[3983,406],[3919,407,9802],[3919,408,9991],[9992,9514],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[3249,9725],3187,3250,[2931,2993],[2802,3060,9339],[2930,9342],[2867,9434],[9530,14],0,0,0,[9727,14],9728,[10015,9533],[2802,3313,10111],[2802,3314,10203],[3185,10204],[3249,10205],[2802,3253,10206],[2802,10203],[2866,10204],[2802,10106],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10013,10014,10015,9146,9147,9148,[3948,10110],10010,9914,9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15131,15067,15067,15130,15131,15003,15067,15130,15130,15066,15131,15003,15067,15067,15130,15067,15067,15066,15002,15003,15131,15130,15002,15066,15002,15130,15130,15131,15131,15066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[3913,9616],[3913,9617],3914,[3913,9718],[3978,9719],[4097,9716],4097,[4097,3782],[4097,3979],4097,[4097,9330],[4097,9331],[4097,9332],[4097,9333],[4097,9520],[2371,9521],2371,2370,1922,2435,2371,2371,2371,2371,2435,2435,2434,[2435,9814],[1987,9910],9911,[3978,9716],[3977,9619],[3913,9712],[3913,9713],3914,3977,3977,3914,3914,3913,3978,3914,[3977,9526],[3978,9521],3977,3975,3976,3977,3975,[4097,3719],[4097,3720,9526],[3913,9426],[3978,9427],[3977,9428],[3978,9429],[3914,9521],3978,3913,3913,3913,[3978,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,3529,[3594,385],3593,[3529,257],3593,[3528,385],3594,[3591,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9881,9882,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2826,9421],2823,2761,2761,2759,2760,2823,[2823,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2760,9707,9321],[2824,9324],2826,2759,2761,2826,2760,[2760,10185],[2759,10186],[2760,10187],[2762,10188],[2761,10185],[2825,10186],2761,2759,2825,2761,2825,[2825,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[607,9533],607,607,607,607,[607,9532],[3156,9625],[3219,9626],2707,3221,3221,[3221,9535],[3219,9435],[3221,9438,367],368,369,[3157,9530,370],2644,2643,3219,2770,2770,2642,3219,3158,3155,3158,2643,[2869,3159],2868,[2868,3154],3221,3156,3221,2644,2644,3156,3158,[3157,9823],[3157,9919],10011,10012,[3156,9914],[3155,9915,303],304,305,[3156,9918,306],[3157,9919],9920,[607,9725],607,607,607,607,607,607,[607,9434],9435,9438,9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[3062,3885,9439],3062,3062,3063,3062,3062,[3063,9434],9435,9435,9438,[9530,14],0,0,0,[9727,14],9728,[3062,9533],3063,3063,3063,[3063,3884],3950,4013,3947,[3062,3821,9434],9435,9436,9437,9438,[4014,9439],3947,4011,4014,4011,[3062,4015],3062,9721,[9722,14],0,0,[9535,14],[4014,9536],3949,3949,4014,[3062,4079],3062,3063,3062,3063,[2998,3820],[4012,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[403,9707],403,[2830,3854,229],[3919,231,9802],[403,9991],9992,9993,9994,9996,9896,9897,9898,9901,9997,[3919,596,9998],[3919,597,9803],[3920,598],[3983,599],[3983,600],[3917,468,10088,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[2930,3121,10016],[3185,9821],3185,3250,[3252,9529],9435,9438,[9530,14],0,0,[9823,14],9917,9918,9824,[2930,10111,9629],2930,2930,[2931,3121],3188,1079,1080,2930,2802,[2930,3057,10106],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10015,[3950,10109],[3950,10110],[3500,10111],[3499,9242],[3950,9243],[3562,9244],[3500,10206],[3562,10106],10010,10011,10012,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15194,15067,15067,15003,15066,15002,15002,15131,15002,15002,15003,15003,15002,15131,15066,15003,15067,15066,15131,15002,15066,15067,15131,15130,15002,15066,15002,15003,15067,15003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,[10000,9523],[3913,9712],[3977,9713],3977,3978,[3977,9526],[4097,9430],4097,[4097,3846],3975,[4097,3785,9520],[1922,9426],[2435,9427],[1923,9428],[1987,9429],[1986,9521],2370,2370,2435,2435,2435,2435,2434,2435,2178,1987,2434,[2434,9622],[2370,9623],[10006,9524],[3977,10007],[3913,9812],[3977,9619],[3913,9808],[3978,9906],[3913,9907],[3978,9809],3913,3977,3978,3914,3913,3977,3914,3913,3913,3914,3914,3977,3978,3978,3914,3914,3914,3914,3914,3978,3914,3977,3977,[3978,4249],[3977,9718],[3914,9719],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3594,9500],[3268,9303],[3592,9303],[3593,9304],[3528,9305],[3528,9306],[3529,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9879,9880,9883,9977,9978,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2760,9518],[2825,9321],[2825,9322],[2825,9323],[2759,9324],[2762,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[2762,9421],2826,2759,2759,2759,2759,2824,2825,2762,2759,2759,2761,2825,2825,2826,[2823,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9725],607,607,607,607,[607,9628],[3155,9721],[3221,9722],2834,2835,3155,3158,3158,3219,[2804,3030],2804,[2869,3026],3221,3155,3157,2708,2773,3219,3221,3156,3219,3156,2770,[2933,3094],2932,[2804,3218],3219,3158,3158,3219,3156,3219,[3157,9823],[3158,9919],10015,[607,10107],[607,10108],10010,[10011,303],304,305,[10014,306],10015,[607,10016],[607,9821],607,609,607,607,607,[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3063,9533],3063,3063,3063,[3062,9529],[9530,14],0,0,0,0,0,0,0,0,[9535,14],[3063,9439],3062,3063,3063,[2998,3819],[3947,9339],[3947,9342],[3948,9529],[9530,14],0,0,0,0,[9535,14],[4012,9536],[3062,3885],[3062,3883],[3062,4075],[3062,4079],3063,9625,[9626,14],0,0,0,[9535,14],[3948,9536],3950,[3063,3886],3062,3062,2998,3062,3062,[3063,3818],[3949,9820],[3947,10009],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[403,9421],403,403,403,403,[3920,37,10088],[3920,10089],[3983,10090],[3920,10092],9992,9993,9994,9997,[2829,4045,10093],3919,3920,[3917,128],3919,3920,[3919,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2930,10111,9629],2802,[2930,3312],3188,[3250,9532],9625,[9626,14],0,0,0,[9823,14],9919,10013,10014,9920,[2931,9725],2802,2802,2802,[2931,3121],[2931,3059,1143],[2803,1144],[2802,3057],[2931,2993],3188,[3252,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10015,[3563,10111],[3564,10205],[4013,10206],3436,4012,3436,3950,3947,3948,[3500,10106],[3949,10107],[3949,10108],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15258,15066,15003,15066,15131,15067,15067,15002,15131,15130,15003,15067,15003,15067,15067,15067,15066,15008,15008,15066,15002,15131,15067,15067,15130,15131,15131,15002,15003,15130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3914,9616],[3914,9617],3913,3977,[3977,9622],[3977,9623],[4097,9524],[4097,3910],[3978,9523],[1922,9616],[2434,9617],2371,2370,2178,2435,2371,2370,2435,2370,2371,2371,2435,2435,2371,2371,2371,[2371,9718],[1923,9719],[3977,10102,9620],3913,3978,[3913,9715],9904,10002,10003,[3977,9808],[3914,9809],3977,3978,3978,[3914,9814],[3914,9908],[3913,9909],[3977,9809],3914,3913,3978,3978,3977,3913,3913,3978,3977,3977,3977,3914,3914,3914,[3978,4344],[3914,4345],[3913,9622,4346],[3978,9623],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9399,9400,9401,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9975,9976,9979,[3969,10073],[3907,10074],9974,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[9417,14],[9418,14],[9419,14],[9420,14],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2762,9421],2761,2759,2825,2760,2762,2825,[2823,9321],[2824,9324],2759,2761,2761,2824,[2761,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9439],607,607,607,607,[607,9628],[2770,9625],[3219,9626],2898,2899,3158,3157,3156,3221,[2868,3223],2869,[2804,3154],3156,2643,3157,3155,3157,3221,3158,3221,3219,3221,[2868,3223],2869,[2933,3028],3155,3156,3156,3158,3157,3219,[2708,9823],[3156,9919],10015,[607,10111],[607,10203],[607,10204],[607,10106],[607,10107,303],304,305,[607,10110,306],[607,10111],607,607,607,607,607,607,[607,9532],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3063,3755,9629],[2998,3756],[3063,3757],[3062,3758,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,[9535,14],[3062,9536],3063,3063,[3063,4010,9434],9435,9438,[9530,14],0,0,0,0,0,[9631,14],9632,3062,3062,3063,3062,3063,9721,[9722,14],0,0,0,[9631,14],9632,[3062,3885,9533],3063,3062,3062,3062,3062,2998,[3063,3882],3498,4013,[4011,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[403,9518],[403,9321],[403,9324],403,[3919,101],[3919,10185,128],[3983,10186],[3981,10188],[2831,3793,10088],[2832,10089],[2830,10090],[2832,10093],2766,[2767,3853],[2831,4048],3983,3983,3919,[3920,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2802,9629],2802,2931,[2931,3121],[2867,3313,9628],9625,[9626,14],0,0,[9823,14],9919,10015,[2802,10109],[2802,10110],[2930,10016],[2802,9821],2930,2930,1079,1080,3186,1079,1080,3188,3252,3188,[3188,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[3947,10111],4011,4011,3947,3562,3562,3500,3563,4014,3499,4014,[3436,10203],[3947,10204],[3562,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15323,15194,15194,15131,15066,15002,15131,15002,15066,15130,15066,15130,15067,15131,15066,15195,15195,15072,15072,15194,15194,15195,15003,15131,15066,15131,15003,15131,15195,15194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3914,9712],[3978,9713],3914,3978,[3914,9814],[3978,9815],[4097,3783,9620],3976,[3914,9619],[2370,9712],[2371,9713],2434,2435,2371,2370,1987,2371,2371,2435,2051,1986,2434,2435,2434,2435,2435,[2371,9622],[1987,9623],[3977,9620],3913,3913,[3977,9811],[3977,10000],[3913,10098],[3914,10099],9904,[3913,9616],[3914,9617],3977,[3978,9814],[3977,9910],10004,10005,[3978,9905],[3978,9906],[3914,9907],[3977,9908],[3914,9909],[3977,9809],3977,3913,3978,3978,3977,3914,3978,3914,3913,3914,3978,[3914,9718],[3913,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[9979,9497],[3394,10071],[3969,10072],[3969,10075],[3906,10169],[3908,10170],[3971,10070],9974,9878,9879,9880,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2762,9518],[2760,9321],[2759,9322],[2825,9323],[2759,9324],[2762,9416],9417,9420,[2824,9421],[2826,9321],[2823,9324],[2761,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9439],607,607,607,[607,9628],[3158,9817],[3158,9818],3157,3157,3221,3158,3219,2771,[2869,3094],2804,[2804,3282],[2804,3283],3155,3158,3221,3155,3219,3157,3158,3219,[2933,3286],[2868,3287],2933,[2868,3218],3219,3221,3157,3155,2706,[3221,9823],[3221,9919],10015,[607,10111],607,609,607,607,[607,10203,303],304,305,[607,10206,306],607,607,608,607,607,607,607,[607,9628],9817,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3948,9629],3947,3947,[4013,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9536],[3062,9529],[9530,14],0,0,0,0,0,0,0,0,[9727,14],9728,3062,2998,3063,3063,[2998,9434],[9530,14],0,0,0,0,[9727,14],9728,[3062,9629],3062,3062,3062,3063,3062,3062,[3063,3946],3950,4011,[3948,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[403,9421],[3917,165],3919,3919,3983,[2768,3921],[2768,10185],[2766,10186],2831,2829,2832,2766,[2768,3854],3919,3983,[3983,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2930,9629],2930,2930,2802,[2802,9628],9721,[9722,14],0,[9631,14],9632,[10015,9533],[2931,10111],[2930,10205],[2931,10206],2867,2930,2930,2931,[2930,2992,1143],[3188,1144],3187,[3251,1143],[2802,3313,1144],[2802,3314],[2931,3315],[2930,3316],[3313,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[4011,10111,9629],4011,3564,3949,3563,3562,4014,4013,3949,3948,4014,3950,3562,4011,3949,[4011,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15259,15259,15195,15131,15002,15131,15003,15003,15002,15130,15002,15067,15194,15195,15258,15258,15133,15005,15258,15258,15259,15194,15195,15131,15066,15194,15195,15259,15258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3978,9521],3977,3978,[3913,9814],[3978,9910],9911,[3976,9716],3911,[4097,4039,9619],[2435,9808],[2434,9809],2371,2370,2434,2434,2371,2370,2434,2434,2370,2435,2435,2434,2370,2435,2434,[2434,9718],[2435,9719],[3978,9716,9330],[3913,9333],3914,3911,[4097,4039],3912,3977,[3978,10000,9523],[3914,9712],[3914,9713],[3978,9718],[3913,9719],[10006,9524],10100,10101,10001,10002,10003,10004,10005,[3977,9905],[3913,9809],3914,3913,[3977,9814],[3978,9906],[3978,9907],[3913,9908],[3977,9909],[3913,9809],3978,3914,[3977,9814],[3977,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3522,10075,9593],[3393,10167],[3907,10168],3908,3907,3907,3907,[3971,10070],9974,9975,9976,9878,9782,0,0,9787,9879,9880,9881,9882,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9418,9419,9420,[9512,14],0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9536],607,607,[607,9724],9913,[3157,9914],[3155,9818],2770,3158,2706,3158,3221,[2869,2963],[2869,3029],2933,2933,[2868,3091],3155,2706,3156,3155,2643,3221,[2868,3094],2869,2804,[2869,3028],3155,2644,2771,3158,3158,[3157,9823],[3157,9919],10015,[607,10111],607,607,607,607,607,[607,303],304,305,[607,306],607,607,607,607,607,607,607,[607,9724],9913,9914,9915,9916,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[3950,9629],3949,4011,[4014,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,[9535,14],[9530,14],0,0,0,0,0,0,0,0,0,[9727,14],9728,3063,3063,3063,[3062,9529],[9530,14],0,0,0,0,0,[9631,14],9632,[3062,9629],3063,3063,2999,3063,3062,3062,[3063,3818],[3948,9339],[4011,9342],[3947,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3919,9515,9321],[3983,9322],[3983,9323],[3920,9324],3920,[2767,3792],2832,2765,2832,2829,2766,[2832,3790],3920,3920,[3917,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2866,9629],2930,2931,2931,[2802,9628],9817,[9818,14],0,[9727,14],9728,[2802,10111,9629],2930,2930,2930,2930,1079,1080,1079,1080,3188,3186,[2931,3123],2930,2802,2931,[2931,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[4013,9439],3947,3564,3948,3435,3564,3436,3499,3499,4012,3564,4013,3949,3563,3947,[3562,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15323,15323,15258,15194,15195,15131,15131,15131,15003,15067,15194,15194,15259,15258,15132,15068,15068,15069,15005,15133,15004,15259,15259,15008,15194,15259,15258,15323,15323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[3913,9521],3978,3977,[3914,9622],[3978,9623],10006,[4097,3910,10007],[3911,9812],[4097,3850],[4097,9715],9904,[2435,9905],[2434,9809],2371,2435,2435,2370,2434,2371,2370,2371,2371,2435,2371,2434,2370,2435,2435,[1986,9526],[2371,9426],[1986,9429],[3911,9430],[4097,3849],4097,[4097,3848],[4097,4039],[4097,4040,9619],[3977,9808],[3914,9809],[3914,9622],[3978,9623],[10102,9620],10196,10197,10097,10098,10099,10100,10101,10001,[3977,9905],[3914,9906],[3977,9907],[3977,9910],10002,10003,10004,10005,[3913,9905],[3913,9906],[3977,9907],[3914,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9879,9880,9782,0,0,0,0,0,0,0,0,9691,9692,[3907,9593],3907,3906,3905,3971,3969,3906,3521,[3906,10070],[3521,10071],[3905,10072],9974,9878,9879,9880,9883,9975,9976,9977,9978,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9533],607,[607,9820],[607,10009],[10010,9532],[3158,9625],[3155,9626],3156,3158,3155,2708,3158,3158,[2804,2963],[2932,3030],2933,[2932,3282],[2868,3283],2772,3219,[2868,3283],[2804,3287],2932,[2868,3028],[2868,2963],2708,3219,3156,3219,3157,[3221,9823],[3156,9919],10015,[607,10111],607,607,607,607,607,[607,9339],[607,9340,303],304,305,[607,9341,306],[607,9342],607,607,607,607,607,607,[607,9820],[607,10009],10010,10011,10012,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[3063,4075,9725],[3063,4076],[3062,4077],[3062,4078,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9536],[3063,9339],[3063,9342],9625,[9626,14],0,0,0,0,0,[9727,14],9728,[3062,9629],3063,3062,3063,3063,3063,3063,[2999,3882,9529],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9418,9419,9420,[3983,9421],[2830,3793],2765,2767,[2829,9321],[2831,9324],2765,[2832,3788],3919,3918,[3983,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2931,9725],2931,2866,2930,[2867,9724],9913,9914,9915,9916,9824,[2802,9629],2930,2930,1079,1080,[2803,1143],[2930,1144],[2802,1143],[2930,3120,1144],3188,[2931,3061],2931,2802,2802,2802,[2802,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3562,9439],4014,3947,4014,3562,4013,4011,3947,4012,3499,3562,3630,3631,3948,[4011,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15323,15259,15259,15195,15130,15066,15195,15008,15258,15258,15068,15068,15005,15068,15068,15068,15069,15069,15133,15133,15133,15072,15259,15323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[3978,9616],[3913,9617],3978,3914,[3913,9718],[3978,9719],[4097,10102],[4097,3974],3975,[4097,3786],[4097,9811],[4097,10000],10001,[1922,9616],[2435,9617],2434,2370,2434,1986,1986,2371,2370,2434,2435,2434,2371,2371,2434,2434,2435,2434,2371,[2370,9526],[4097,9527],4097,4097,4097,[4097,9715],9904,[3977,9905],[3978,9718,9809],[3978,9719],9716,0,0,0,10194,10195,10196,10197,10097,10001,10002,10003,10006,10098,10099,10100,10101,10001,10002,10003,10006,10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9975,9976,9878,9879,9880,9881,9882,9782,0,0,0,9787,9788,[3971,9593],3906,3969,3971,3520,3908,3906,3971,3522,[3586,10167],[3587,10168],[3906,10070],9974,9975,9976,9979,[3908,10071],[3905,10072],[3971,10073],[3907,10074],9974,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9824,[607,9629],607,607,607,[607,10106,9628],[3221,9721],[3156,9722],3157,3155,3156,3158,3158,3158,3155,[2804,3031],2932,2933,2869,[2932,3091],[2869,3287],2869,2932,[2868,2962],2643,3221,3219,3221,3219,3219,[3155,9631],[3219,9632],10015,[607,10111],607,607,607,607,607,[607,9434],[4018,9435],[3954,9436,303],304,305,[3954,9437,306],[4020,9438],[607,9439],607,607,607,607,607,607,607,[607,10106],[607,10107],[607,10108],10010,9914,9818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,10015,[3063,10016],[3062,9821],3062,3063,[3063,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[9530,14],0,0,0,0,0,0,[9823,14],9824,[3062,9629],3062,3063,3062,3062,3062,[3063,9532],9625,[9626,14],0,0,0,0,0,0,0,0,[9823,14],9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2767,3857,9515,9321],[2765,9324],[2830,9416],9417,9420,[2829,9421],[2831,3852,9321],[3919,9324],[3983,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2930,9439],2931,2931,2867,[2802,9820],[2802,10009],10010,10011,10012,9920,[2931,9725],2802,2931,[2802,1143],[2867,1144],2802,2802,2931,[2802,3184],3249,[2930,3125],1079,1080,1079,1080,[2931,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3947,9536],[3500,9339],[3948,9342],3499,4012,3500,3948,3562,4013,3563,3694,3695,3500,[3563,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15323,15258,15195,15195,15259,15072,15069,15132,15004,15132,15133,15069,[15068,15582],[15068,15451],[15005,15452],[15004,15452],[15069,15451],[15133,15453],15132,15068,15005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9712],[3978,9713],3978,3913,3978,[3978,9526],[4097,9430],[4097,3847],3912,[4097,3979],4096,[4097,3784],[3719,10097],[2371,9712],[2370,9713],2434,2371,2434,2370,2435,2434,2370,2371,2434,1986,2434,2370,2435,2370,2371,1986,2434,[2370,9622],[2371,9623],[4097,9524],4097,4097,[4097,9811],[4097,10000],10001,[3977,9616],[3914,9526,9617],9430,0,0,0,0,0,0,0,0,10097,10098,10099,10102,10194,10195,10196,10197,10097,10098,10099,10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9979,[3937,10071],[3937,10072],9974,9975,9976,9977,9978,9878,9879,9880,9882,9883,9884,[3456,9689],3905,3908,3908,3906,3520,3907,3907,3906,3650,3651,3971,[3908,10070],[3906,10071],[3969,10072],[3906,10075],[3969,10167],[3392,10168],[3584,10169],[3585,10170],[3907,10070],[9974,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,9920,[607,9725],607,607,607,[607,9724],[3221,9625],[3221,9626],2772,3158,3158,2706,3158,3155,3155,[2804,3095],2868,[2869,2962],[2804,3029],2932,2869,2868,[2932,3027],3221,3156,3219,3158,3155,2642,3158,[3157,9727],[3158,9728],[607,10111],607,607,607,[607,9339],[607,9342],[607,9529],[3953,9530],3505,4020,4018,3954,4017,3953,[4019,9535],[607,9536],[607,9339],[607,9342],607,607,607,607,607,[607,10203],[607,10204],[607,10106],10010,9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3062,10111],3063,3062,3063,3062,[3062,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[9920,9533],[3062,9725],3063,3063,3062,3063,3063,[3062,9628],9721,[9722,14],0,0,0,0,0,0,0,[9823,14],9919,10011,10012,9914,8954,8955,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[9512,14],0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2867,9536],2802,2867,2931,2930,[2931,10106],[2930,10107],[2802,10108],[2867,10016],[2802,9821],2802,2867,1079,1080,2930,2930,2866,[2931,3248],3187,[2931,3189],[2931,1143],[2803,1144],[2930,1143],[2931,1144],[2930,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[3562,9439],4012,3562,3949,4014,3950,3948,3950,3950,4013,[3949,9820],[3564,10009],10010,9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15323,15259,15259,15133,15069,15133,15132,15132,[15068,15450],[15005,15451],[15004,15452],15646,15515,15516,15516,15515,15647,[15133,15583],15005,15133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9616],[3977,9617],3913,3914,3914,[3978,9622],[3914,9623],[4097,9524],[4097,3782],3975,[4097,3719],3976,[3978,9425],[2370,9521],2434,2370,2434,2370,2370,2435,1922,2435,2434,2371,2435,2435,2370,2371,2434,2371,2370,2370,[2435,9718],[2370,9719],[4097,9620],4097,4097,4097,4096,[4097,10097,9523],[3914,9712],[3978,9713],[3913,9526],9527,0,0,0,0,0,0,0,0,10194,10195,0,0,0,0,0,0,10194,10195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],8963,8964,8965,9927,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[9979,9497],[4001,10075],[3938,10167],[3938,10168],[3937,10070],[3938,10071],[3908,4003,10072],[3905,10073],[3908,10074],9974,9975,9976,9978,9979,[3906,9980],[3906,9785],3905,3971,3394,3394,3907,3971,3392,[3969,9495],3908,3458,3520,3907,[3969,10167],[3969,10168],3971,3971,3905,3648,3649,3907,[3908,10070,9592],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[10015,9533],[607,10016],[607,9821],607,609,607,[607,9434],[3156,9530],3156,3219,3155,3155,3219,2771,2642,3156,[2868,3159],2933,[2868,3218],3156,[2932,2964],[2804,2966],[2868,3030],[2868,3218],3221,2644,3158,3158,3155,3157,3157,[3219,9823],[2643,9824],607,608,607,[607,9434],[3954,9435],[4019,9438],[4018,9530],4017,3569,3956,3505,3571,4017,3956,3504,[3954,9535],[3956,9435],[3954,9438],[607,9439],607,607,607,607,607,607,607,[607,10106,9532],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,3062,3062,3063,3062,3062,[3063,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3063,10016,9629],[3063,9821],3063,3062,3062,3063,3062,[3062,9628],9625,[9626,14],0,0,0,0,0,0,[9823,14],9919,10015,[3062,10107],[3063,10108],10010,9050,9051,9052,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2802,9533],2930,2931,2930,2930,[2931,10203],[2931,10204],2802,2931,2931,2930,[2930,1143],[2802,1144],2802,2866,[2866,3058],3185,3251,3252,[2931,3059],2931,2930,2931,[2930,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3948,9533],3947,3630,3631,3500,3950,3948,3950,3564,3948,3563,[4012,10106,9532],9721,[9722,14],0,0,0,[9823,14],9917,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15004,15132,15132,15069,15132,15004,[15132,15582],15646,15516,15516,15516,15515,15515,15515,15515,15515,15517,15133,15133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3911,9712],[3912,9713],3913,3914,3978,[3914,9718],[3913,9719],[4097,9620],[4097,3846],3978,3914,[3913,9520],[1923,9521],2371,2435,2434,2370,2370,2371,2371,2371,1923,2371,2371,2434,2435,2370,2434,2371,2434,2434,2370,[2435,9814],[1987,9815],[4097,3785,9620],4097,[4097,3784],[4097,3719],[4097,3723],[4097,9715],[3913,9616],[3978,9617],[3977,9718],[3914,9719],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9924,9925,[9827,14],0,0,0,0,[9832,14],9928,9059,9060,9061,10023,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9788,[4002,10075,9593],4002,4001,4002,3937,[3907,4063,10167],[3907,4067,10168],[3520,10169],[3971,10170],[3908,10070],[3908,10071],[3908,10072],[3908,10074],[3907,10075],3906,3907,3521,[3907,9498],3906,3907,3521,3906,[3392,9496],[3906,9591],3905,3392,3971,3907,3908,3906,3971,3905,3969,3907,3971,3907,[3908,9688],9877,9878,9879,9880,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,10111,9629],607,607,607,607,[607,9434],[3158,9530],2770,3158,2708,3156,3155,3221,3219,3158,3156,[2804,3093],[2932,3027],2706,3157,3157,3158,[2869,3223],[2804,3092],3156,2770,2643,3219,3156,3221,[3156,9823],[3221,9919],9920,607,607,[607,9529],[4018,9530],3954,3568,3954,3505,3506,3568,3569,3955,3568,3504,4018,3441,3504,3953,[3956,9535],[607,9536],607,607,608,607,607,607,[607,9628],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9439],3063,3062,3063,3063,[3062,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2998,9629],3063,3063,3062,3063,3063,3063,[3063,9724],9721,[9722,14],0,0,0,0,0,[9727,14],9728,[10015,9533],[3062,10111],[3062,10203],[3063,10204],[3063,10106],9146,9147,9148,10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2802,9629],2802,2802,2803,2931,2931,2931,2931,[2802,9339],[2930,9340],[2931,9342],2867,2802,1079,1080,1079,1080,1079,1080,1079,1080,2802,2802,[2802,9820],[2930,10009],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3947,9629],3562,3694,3695,4014,4012,4013,3563,3563,4014,3950,[3564,9628],9817,[9818,14],0,0,[9823,14],9919,10013,10014,9914,9915,9916,9917,9918,9915,9916,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15133,15068,15069,15133,15005,[15133,15450],15646,15516,15516,15516,15515,15516,15516,15516,15516,15516,15517,15068,15132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[4097,9521],[4097,3847],3912,3977,3913,[3977,9814],[3913,9815],[4097,9620],[4097,3910],3977,[3978,9520],[2370,9521],2434,2370,2370,2434,2435,2371,2434,2370,2370,2371,2370,2435,2434,2434,2435,2434,2371,2434,2370,[2435,9814],[1922,9910],9911,[3975,9716],[4097,3719],3976,3914,[4097,3787],[4097,9425],[3914,9521],3913,[3913,9814],[3913,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10020,10021,9923,9924,9925,9926,9927,9928,10024,[2369,9155],[2432,9156],[2432,9157],[2432,10119],10019,9923,9924,9925,9926,9927,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9881,9882,9883,9884,[3906,3871,9689],3937,3938,4001,[3907,3874],3393,3906,3971,3908,3456,[3971,10167],[3906,10168],[3906,10170],3971,3906,3458,3520,[3905,9594],[3905,9497],[3592,4033],[3592,4034],3905,[3458,9592],[3905,9781],[3906,9881],[3458,9882],[3969,9782],3907,3520,3971,3969,3971,3456,3908,3907,3906,[3905,9784],[3971,9973],9974,9975,9976,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[607,9629],607,607,607,[607,9529],[2772,9530],3158,3221,3219,2644,3158,3155,2708,3221,2771,[2932,3094],[2869,2962],3156,3158,2643,3157,3157,3158,[2868,2967],[2868,3282],[2932,3286],3221,3219,3156,[2707,9727],[3155,9728],10015,[607,10016],607,607,[3954,9721],[3956,9722],3505,3568,3572,3506,4019,4020,3955,3568,3505,4020,4020,4019,3954,4018,[3956,9727],[4019,9728],[607,9533],607,607,607,607,607,[607,9724],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9536],[3063,9339],[3063,9342],[3062,9529],[9530,14],0,0,[9823,14],9915,9916,[9818,14],0,0,0,0,0,0,[9823,14],9915,9916,9919,10013,10014,9914,9915,9916,[9818,14],0,0,[9823,14],9917,9918,[9818,14],0,0,0,0,0,0,0,[9727,14],9728,[3062,9629],3062,2998,3062,3062,3063,3063,[3063,9434],[9530,14],0,0,0,0,0,0,[9823,14],9824,[3063,10111,9629],3062,3063,3063,3063,[3063,9242],[3063,9243],[3062,9244],[3062,10106],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[2802,2993,9629],[2931,3059],2930,2802,2802,2930,2930,[2931,9434],9435,9436,9438,[2867,9536],2802,[2802,1143],[2931,1144],[2803,1143],[2802,3248,1144],[3187,1143],[3187,1144],[2931,3125,1143],[2867,1144],2931,2867,2802,2802,[2802,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[4014,9439],3562,3500,3500,3948,4011,3499,3499,3948,3499,4013,[3949,9724],9913,9914,9915,9916,9919,10015,[3563,10109],[3500,10110],10010,10011,10012,10013,10014,10011,10012,10014,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15133,15004,15005,15069,15069,15514,15516,15515,15515,15516,15515,15515,15516,15516,15515,15515,15517,15005,15133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[4097,9616],[4097,9617],[4097,3783],3976,3978,[3913,9814],[3978,9910],9911,[4097,9716],[4097,3974],[3977,9523],[1986,9616],[2370,9617],2370,2435,2434,2434,2370,1987,2434,2370,2435,2434,2371,2371,1986,2434,2371,2370,2435,2370,[2371,9622],[2371,9623],10006,[3978,10007],[3914,9812],3913,[3978,9330],[3977,9333],[4097,3851,9520],[3914,9521],3914,[3977,9622],[3977,9623],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[10024,9542],[2369,10116],[2368,10117],10019,10020,10021,10022,10023,10024,[2433,10120],[2368,9251],[2433,9252],[2368,9253],[2432,10215],[2369,10115],10019,10020,10021,10022,10023,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,[9832,14],9926,9927,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9977,9978,9979,[3905,9980],[3907,9785],[3906,3998],4002,[3908,4003],3969,3907,3906,3971,3969,3522,3969,3907,3906,3907,3971,3905,[3969,9787],[3971,9788],[3591,3844,9593],3530,3530,[3528,4032],[3591,4033,9688],9877,9977,9978,[3907,9878],[3521,9782],3907,3905,3905,3971,3969,3905,3971,3907,3969,3908,[3907,10070],[3456,10071],[3906,10072],9974,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9629],607,607,[607,9532],[3155,9625],[2642,9626],3221,2706,3158,3158,3157,3219,3155,3158,[2868,3223],2932,[2933,3218],3157,2772,3155,3157,3221,3219,3219,[2869,3029],2868,[2804,3218],3158,3221,[3155,9727],[3219,9728],[607,10111],607,607,[607,9529],[4018,9530],3504,4020,3956,3954,3504,3953,3954,3954,3568,3955,3506,4018,3568,3504,3506,[3953,9823],[3956,9824],[607,9629],607,607,607,607,607,[607,9434],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[9530,14],0,0,[9823,14],9919,10011,10012,9914,[9818,14],0,0,0,0,[9823,14],9919,10011,10012,10015,[2998,10109],[3063,10110],10010,10011,10012,9914,9915,9916,9919,10013,10014,9914,[9818,14],0,0,0,0,0,0,[9823,14],9824,[3062,9629],3062,3063,3063,3063,[3063,9433],[3063,9529],[9530,14],0,0,0,0,[9823,14],9915,9916,9919,9920,[3062,9725],3062,3063,3063,3063,3063,3063,2998,3062,[3062,10106],[10010,9532],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,9919,9920,[3251,9725],3250,[2930,2993],[2931,2994],[2931,2995],[2930,2996],[2931,2997,9532],9625,[9626,14],0,[9631,14],9632,[2931,9533],2931,2931,[2930,3057],3252,3252,3252,[2930,3189],2802,2802,2931,2930,2931,[2867,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[4012,9536],[4012,9339],[3949,9342],4012,3949,3949,3564,4012,3563,4012,[3948,9820],[4011,10009],10010,10011,10012,10015,[3948,10111],[3948,10205],[4013,10206],[3500,10106],[3500,10107],[3562,10108],[3950,10109],[4013,10110],[4012,10107],[3947,10108],[3500,10110],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15133,15132,15005,15005,15069,15514,15516,15515,15516,15515,15516,15516,15515,15516,15516,15710,15581,15133,15069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[4097,9616],[4097,9617],[4097,3782],3914,[3978,9622],[3978,9623],10006,[4097,10007],[4097,9812],[4097,3847],[3912,9619],[2370,9712],[2370,9713],2370,2370,2370,2371,2371,2435,2370,2434,2434,2434,2370,2434,2434,2434,2435,2434,2371,2370,[2370,9718],[2370,9719],[3913,10102,9524],3914,3978,[3913,9425],[4097,9426],[4097,3974,9429],[3977,9521],3978,3913,[3914,9718],[3913,9719],[10007,9524],9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2432,10120,9638],[2432,10212],[2433,10213],[2432,10115],[2432,10116],[2432,10117],[2368,10118],[2369,10119],[2432,10120],2433,2368,2432,2369,2432,2433,[2368,10115],[2433,10116],[2368,10117],[2433,10118],[2432,10119],10019,9923,[9827,14],0,0,[9832,14],9926,9927,[9827,14],0,0,[9832,14],9928,10022,10023,9923,[9827,14],0,0,0,0,0,[9832,14],9926,9927,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9979,[3907,10073],[3905,10074],[3906,10075],3907,3588,[3589,4062],[3905,4063],[3522,3874],3969,3971,3522,3908,3906,3907,3969,3906,3971,3584,3585,[3969,9595],[3907,9596],[9884,9497],[3591,3725,9689],[3529,3791],3528,[3530,3790],[3528,3791,9784],[3530,9973],[3530,10073],[3592,10074],9974,[3905,9878],[3969,9879],[3394,9880],[3392,9782],3458,3908,3971,3907,3394,3394,3969,3969,[3905,10167],[3906,10168],[3905,10070],[9974,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9629],607,607,[607,9628],[3158,9721],[2706,9722],2643,3221,3156,3219,3157,3156,[2933,3093],[2933,3092],[2933,3287],[2868,3027],3158,2771,3155,3219,3157,3219,3157,3158,3158,[2932,3030],[2932,3282],[2932,3285],[2804,3286],[2770,9727,563],[3221,9728,563],[607,563],[607,563],[607,563],[9625,563],[4019,9626],3568,3954,3954,3505,3955,4017,4019,3570,4017,3504,3569,3954,3954,4018,[3954,9823],[4017,9919],9920,[607,9725],607,607,607,[607,9339],[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,9919,10015,[3062,10107],[4011,10108],10010,9914,9915,9916,9917,9918,9919,10015,[3062,10107],[3063,10108],[3063,10111],[2998,10205],[3063,10206],[3062,3820,10106],[3947,10107],[3947,10108],10010,10011,10012,10015,[3063,10109],[3062,10110],10010,9914,[9818,14],0,0,0,0,[9631,14],9632,[9920,9533],[3062,9725],3062,3062,3063,3063,[3063,9529],[9530,14],0,0,0,0,[9823,14],9919,10011,10012,10015,[3062,10016],[3062,9821],3062,3062,3062,3063,3063,3063,3063,3063,3063,[3062,10106,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10013,10014,10015,[3186,10016],[3186,9821],3249,3188,3251,3188,3252,[3251,9724],9721,[9722,14],0,[9727,14],9728,[2866,2993,9629],[2802,2994],[2930,2995],3249,1079,1080,1079,1080,1079,1080,1079,1080,[2802,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[4013,9439],4014,3563,3564,4011,3950,3499,3499,4012,[3563,10106],[4013,10107],[4014,10108],[4011,10111],3949,4011,3563,3499,[4014,10203],[3947,10204],[4013,10205],[4014,10206],[4011,10203],[3630,10204],[3631,10206],[3564,10106],[10010,9532],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15005,15133,15004,15132,15068,0,0,0,0,0,0,0,0,0,0,0,15005,15133,15005,15005,15133,15578,15580,15711,15515,15516,15515,15516,15516,15516,15515,15517,15132,15133,15004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[4097,9712],[4192,9713],[4097,3846],3978,[3978,9718],[3978,9719],[4097,10102],4097,4192,4097,[4097,3974,9619],[1922,9808],[2435,9809],2371,2435,2435,2370,2435,2434,2434,2370,2371,2435,2370,2434,2434,2434,2434,2371,2370,2370,[1922,9814],[2435,9815],[3911,9620],[4097,4039],[3912,9523],[4097,9616],[4097,9617],[4097,3847],3912,3978,3914,[3913,9622],[3977,9623],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2433,9638],2368,2433,2369,[2368,10212],[2369,10213],[2433,10214],[2369,10215],2368,2369,2433,2432,2432,2368,2368,2433,[2433,10212],[2369,10213],[2369,10214],[2433,10215],[2369,10115],10019,9923,9924,9925,9928,10022,10023,9923,9924,9925,9928,10024,[2433,10118],[2368,10119],10019,9923,[9827,14],0,0,0,[9832,14],9928,10022,10023,9923,9924,9925,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9979,[3908,10075],[3907,10169],[3908,10170],3969,3969,3652,3653,3907,3969,3908,3969,3522,3908,3971,3971,3906,3907,3969,3648,3649,[3969,9787],[3905,9788],[3920,9980,9593],[3919,9785],3984,[3269,3725],3920,[3530,3793],3592,[3594,10169],[3594,10170],[3529,10070],9974,9975,9976,[3908,9878],[3969,9879],[3908,9880],[3905,9881],[3908,9882],[3971,9782],3394,3908,3906,3907,3905,3906,[3971,10070,9592],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9824,[607,9629],607,607,[607,9628],[3219,9625],[3157,9626],3155,3157,3158,3158,3221,[2932,3223],2932,2933,[2868,3028],3219,3157,3156,3158,[3221,9823],[2770,9915],[3219,9916],[3157,9917],[3158,9918],[3157,9818],[2932,3223],2932,2933,2869,627,627,627,627,627,627,3956,3954,3504,3955,3441,4017,4019,3569,3954,4018,3506,3568,4019,3506,[3955,9727],[4018,9728],[10015,9533],[607,10016],[607,9821],607,607,[607,9434],9435,9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10013,10014,10015,[3062,10111],[3062,3754,10203],[4014,10204],[3948,10106],10010,10011,10012,10013,10014,10015,[3063,3757,10111],[3063,3758,10203],[3062,3821,10204],3062,3063,3063,[3063,3818],[3947,10203],[3949,10204],[3949,10106],[4014,10107],[3947,10108],[3062,3887,10111],[3063,10205],[2999,10206],[3062,10106],10010,9914,9915,9916,[9818,14],0,[9727,14],9728,[3062,10016,9629],[3062,9821],3062,3063,3063,[3062,9532],9625,[9626,14],0,0,0,0,9919,10015,[4011,10107],[3948,10108],[3063,4015,10111],3062,3062,3063,3062,3063,3063,3063,3062,3062,3063,3062,[3062,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10015,[2802,10109],[2930,3248,10110],[3249,10111],3252,3188,3250,3252,3186,3186,[3250,9433],[3249,9434],[9530,14],0,0,[9823,14],9824,[2802,9629],[2931,3121],[2930,3315],[2930,3316],[2931,3313,1143],[2802,3314,1144],[2802,3315,1143],[2866,3316,1144],[3186,1143],[2930,2993,1144],[2802,2994,1143],[2931,2995,1144],[2931,2996,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3948,9533],3499,3500,3499,3949,3500,3950,3950,3948,[3950,10203],[4012,10204],4012,3948,4014,3499,3562,3948,3948,3499,4014,3948,3694,3695,3562,[4011,10106,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15134,15071,15134,15007,15006,0,0,0,15004,15068,15004,15005,15068,15005,15068,15004,15005,15068,15004,15068,0,0,0,0,0,0,15004,15069,15068,15004,15005,15005,15069,15578,15579,15579,15579,15580,15579,15579,15580,15581,15068,15133,15068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[4097,9808],[4097,9809],[4097,3910],3914,3913,[3914,9526],[4097,9527],4097,4097,[4097,3783],[3976,9715],9904,[2370,9905],[1922,9809],2434,1987,2435,2370,2370,2370,2370,2435,2371,2178,2434,2370,2435,2434,[2435,9814],[1987,9906],[2371,9907],[1922,9910],9911,[4097,3849,9716],4097,[4097,3848,9715],[4097,9712],[4097,9713],4096,[4097,3974],3977,3913,[3978,9718],[3914,9719],9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2369,9638],2432,2368,1920,2432,2368,2432,2432,2368,2369,2369,2432,1920,2368,2368,2433,2433,2432,2432,2369,2432,[2432,10115],10019,10020,10021,10024,[2432,10118],[2368,10119],10019,10020,10021,10024,[2368,10120],[2432,10214],[2432,10215],[2432,10115],[10019,9541],9634,9635,0,[9832,14],9928,10024,[2368,10118],[2432,10119],10019,10020,10021,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[9979,9497],[3907,3809,10075],3906,3969,3908,3908,3907,3908,3971,3971,3393,3905,3522,3905,3906,3908,3971,3906,3907,[3969,9787],[3905,9881],[3521,9882],[3905,9883],9884,[3593,3853,9689],3920,3919,3920,3919,[3593,3921],3593,3592,3529,[3530,3790],[3984,10070],[3529,3985,10071],[3529,10072],9974,9975,9976,9977,9978,[3907,9878],[3906,9782],3905,3456,3908,3393,3908,[3971,9688],9877,9878,9879,9880,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,9920,[607,9725],607,607,[607,9628],[3158,9817],[3157,9818],3158,3158,3155,2773,[3157,9823],[3158,9915],[2804,2963,9916],[2933,2966,9818],3158,3156,3221,3155,[3219,9823],[3219,9919],10011,10012,10013,10014,[3156,9914],[3158,9818],[2868,2964],[2868,2966],[2869,3030],691,691,691,691,691,691,4020,4020,4020,3956,3570,3569,3954,3953,4020,3506,3572,3953,4018,3569,[3954,9823],[4018,9824],[607,10111,9629],607,607,607,[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10015,[4011,10109],[4012,10110],[3063,3887,10111],3063,[3063,3883],4011,4014,[3950,10106],[4014,10107],[3062,4015,10108],[3062,10109],[3063,3946,10110],[4012,10111],4011,4014,4012,[3063,3755],[3062,3759],3063,[3062,3882],4012,4012,3436,[4012,10203],[4012,10204],[3062,3951,10207],3062,[3062,3754],[3063,3755],[3756,10106],10010,10011,10012,9914,9917,9918,9824,[3062,9629],3062,3063,3062,2999,[2999,9628],9721,[9722,14],0,0,[9727,14],9728,[10015,9533],[3950,10111],[3947,10203],[3949,10204],[3062,3886],3063,3063,3063,3063,3063,3062,2999,3062,3063,3063,3062,[3062,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[2931,10111],[2931,10205],[2930,3312,10206],[2802,3313],[2931,3314],3249,3249,3252,3250,3187,[3188,9529],[9530,14],0,0,[9823,14],9919,9920,[2931,9725],2931,2802,2802,2802,2930,2931,2930,[2802,3121],[2931,3313],[2930,3314],[2930,3315],[2866,3316,9724],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3500,9629],4013,4012,3499,4013,4014,3947,3948,3499,4013,3563,3947,3563,3564,4014,3562,4013,3564,4013,3562,3499,3564,3499,4011,[3500,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15135,15135,15135,15134,15135,0,0,0,15133,15069,15069,15132,15069,15005,15068,15004,15005,15005,15005,15005,15133,15068,15069,0,0,0,15068,15069,15004,15069,15133,15132,15132,15068,15133,15068,15132,15004,15133,15132,15133,15133,15005,15133,15069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15130,15003,15066,15002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,[4097,9905],[4097,3974,9809],3913,3977,3914,[3978,9526],[4097,3783,9527],[4097,3719],3976,[3914,9811],[3977,10000],10001,[2371,9616],[2370,9617],2371,2050,2370,2371,2370,2434,2370,2371,2434,2434,2370,2434,[2371,9814],[1923,9910],10002,10003,10006,[4097,10007],[4097,9812],4097,[4097,9425],[4097,3785,9521],4097,[4097,3783],3976,3914,3914,3911,[4097,3849,9526],9527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2368,9734],2368,2368,2369,2432,2369,2433,2432,2368,2433,2433,2432,2433,2432,2432,2432,2432,1921,2368,2433,1984,2368,[2369,10115],[2432,10116],[2369,10117],[2432,10120],[2368,10214],[2369,10215],[2368,10115],[2433,10116],[2432,10117],[2432,10120],2368,2433,2368,2432,[2368,10115,9637],9730,[9731,14],[9640,14],9641,[10024,9542],[2433,10120],[2433,10214],[2368,10215],[2369,10115],[2368,10116],[2433,10117],[10019,9541],9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[4001,10075,9593],4001,[3905,3743],[3906,3810],3905,3907,3905,3971,3969,3394,3969,3969,3971,3971,3907,3907,3907,3969,[3971,9787],[3907,9883],9977,9978,9979,[3528,9980],[3593,9785],[3333,3788],3919,3920,3920,3984,[3594,3792],[3269,3790],[3528,3725],3920,3984,[3594,3856,10167],[3592,10168],[3594,10070],[3530,10071],[3528,10072],[3530,10073],[3594,10074],9974,[3456,9878],[3969,9782],3905,3906,3969,3905,[3971,9784],[3906,9973],9974,9975,9976,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,10015,[607,10016],[607,9821],607,607,[607,9724],9913,[3157,9914],[3158,9915],[3221,9916],[3158,9917],[3157,9918],[3158,9919],10011,10012,[3155,9914],[3155,9915],[3156,9916],[3157,9917],[3155,9918],[3156,9919],10015,[3219,10107],[607,10108],[607,10109],[607,10110],10010,[3219,9914],[3157,9818],3155,[2643,9727],[3221,9728,755],[607,9533,755],[607,755],[607,755],[607,755],[9817,755],[3956,9818],4018,3570,3572,4018,4019,4020,4018,3505,3504,3955,3506,3954,[3440,9823],[3954,9919],9920,[607,9725],607,607,[607,9532],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[10015,9533],[3947,10111],[4013,10205],[3949,10206],[3063,3951],2998,3063,[3062,3884],[3062,4077],[3062,3885],[3063,3884,10203],[3063,4079,10204],[3062,10205],[3063,3883,10206],3950,3948,3947,3948,3950,[3062,3885],3062,[3062,3946],3947,3950,[3062,4075],3948,4011,[3062,4015],3063,[3062,4010],4011,4011,[3062,3885,10106],[3062,10107],[3063,10108],10010,10013,10014,9920,[3063,9725],3063,3063,3062,3063,[3063,9628],9817,[9818,14],0,0,[9823,14],9824,[4012,10111,9629],4013,3498,[3063,4079],2998,3063,3063,3063,3062,3063,[3062,3820],[3063,3755],[3062,3756],[3063,3757],[3062,3758],[3063,3822,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2931,10111,9629],2931,2930,2930,2930,2931,[2930,3312],3188,[3249,9339],[3250,9342],[3185,9434],[9530,14],0,0,[9631,14],9632,[10015,9533],[2802,10016],[2931,9821],2802,2802,2802,2802,2803,2931,2931,2931,2930,2930,[2931,9433],[2802,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3949,9439],4012,3564,4011,3949,3562,3500,3948,3949,4014,3947,3949,4013,4011,4014,4011,3950,3564,3500,3947,4012,3562,4014,3562,[3947,9820],[3499,10009],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15071,15006,15006,15007,15007,0,0,0,15133,15133,15004,15133,15069,15133,15068,15133,15133,15132,15133,15004,15133,15005,15004,0,0,0,15004,15132,15004,15068,15004,15133,15068,15005,15005,15005,15005,15068,15005,15133,15133,15005,15133,15005,15133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15002,15130,15131,15066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,10001,[3978,9616],[3913,9617],3913,3913,[3913,9622],[3978,9623],[3914,9524],3914,3911,3912,[3914,10097,9523],[1986,9712],[2370,9713],2434,1987,2434,2435,2370,2434,2370,2435,1922,2435,2371,[2371,9718],[2371,9719],[10006,9524],[3914,10098],[3978,10099],[4097,3785,10102],4097,4097,[4097,9520],[3977,9521],3975,[4097,3719],3976,3913,3977,3913,[4097,3787],[4097,9718],[4097,9719],9524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2433,9545],[2369,9348],[2432,9351],[2369,9352],1920,2369,2368,2369,[2368,9348],[2368,9349],[2432,9350],[2369,9351],[2368,9348],[2433,9349],[2368,9351],2432,2368,2433,2433,2433,2433,2368,2369,[2369,10212],[2368,10213],2433,2432,2368,2432,[2369,10212],[2368,10213],2368,2369,2369,2368,2368,[2432,9538],[9539,14],0,[9736,14],9737,[2432,10120,9638],2369,2369,2368,2433,[2433,10212],[2433,10213],[2368,10115,9637],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9788,[3938,9593],4002,3937,[3906,3811],3971,3905,3520,3907,3905,[3905,9787],[3906,9881],[3907,9882],[3906,9782],3520,3908,3908,3969,[3969,9787],[3907,9883],9979,[3592,10073],[3593,10074],[3528,10075],3529,3528,[3593,3916],3920,3983,3984,3920,3920,3983,3983,3984,[3594,3985],3593,3592,3332,[3528,10167],[3594,10168],[3593,10169],[3593,10170],[3530,10070],[9974,9496],[3908,9589],[3971,9590],3907,3521,3520,3392,3908,[3907,10070],[3522,10071],[3969,10072],9974,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,10111,9533],607,607,607,607,[607,9820],[607,10009],10010,10011,10012,10013,10014,10015,[607,10107],[607,10108],10010,10011,10012,10013,10014,10015,[607,10111],[607,10203],[607,10204],[607,10205],[607,10206],[607,10106],10010,[3221,9914],[3157,9917],[3157,9918],[3219,9824],[607,9629],607,607,607,9913,[3954,9914],[4020,9818],3506,4020,3568,3505,3505,3953,3506,4019,3954,3953,[3505,9823],[3956,9919],10015,[607,10016],[607,9821],607,607,[607,9628],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[4013,10111,9629],4013,4012,3950,[3062,4015],3063,3063,3062,3062,3062,3062,2998,3062,3063,[3062,4010],[3947,3573],3947,4013,[3063,3823],3063,3063,[3062,3883],[3063,4075],[3063,3885],2999,[3062,3883],[3062,4075],[3062,4079],[3063,3819],3947,4013,[3063,4015],2998,[3063,10203],[2998,10204],[3063,10106],[3063,3946,10109],[4014,10110],[3949,10016],[3062,3756,9821],[3063,3757],[3062,3758],[3063,3822],3063,[3063,9724],9913,9914,9917,9918,9919,9920,[3949,9725],4014,[3063,3885],2998,3063,3063,3063,3062,3063,[3062,3819],4011,3498,[3947,9339],[4011,9342],[4012,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9912,9824,[2867,9629],2931,2802,2930,2802,2866,2931,[2931,3121,9434],9435,9438,[9530,14],0,0,0,[9727,14],9728,[2802,10111,9629],2930,2930,2867,2802,2802,2866,2867,2802,2930,2930,2802,2930,[2930,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[4011,9536],3499,3948,3498,3949,4011,4013,3499,3563,3947,4012,4011,3562,3563,3499,3434,3562,3564,3562,3499,3949,3563,3435,3563,4013,[3564,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15006,15070,15007,15135,15006,0,0,0,15197,15069,15004,15068,15004,15133,15133,15132,15068,15068,15069,15133,15005,15005,15133,0,0,0,15069,15132,15132,15068,15004,15068,15004,15069,15069,15005,15004,15069,15069,15069,15005,15132,15068,15004,15069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15130,[15002,15203],15131,15002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10097,9523],[3978,9712],[3977,9713],3977,3978,[3977,9718],[3914,9719],[3914,9620],3911,[4097,3849],[4097,3847],[4097,4039,9619],[2370,9712],[2435,9713],[2434,4347],[2371,4348],[2435,4349],2434,2370,2371,2434,2370,2435,2435,2435,[2435,9814],[2435,9815],[3977,10102,9620],[3978,10194],[3913,10195],[4097,3787],4097,[4097,9523],[3914,9712],[3914,9713],3978,3913,3913,3914,3913,3977,[4097,3851],[4097,9814],[4097,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,9447,[2369,9448],2433,2369,2432,[2368,9538],9444,9445,9446,9447,9444,9445,9447,[2433,9545],2433,2369,2369,2432,2433,2369,2432,2432,2432,2369,2368,1921,2433,2368,1921,2433,2432,1984,2432,[2432,9541],9634,[9635,14],0,[9640,14],9641,[2432,9638],2433,2432,1920,1920,2432,2432,[2368,9733],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9884,[4002,9689],3938,4001,[3907,3939],3969,[3971,3807],[3907,3809],3906,[3905,9787],[3905,9883],9977,9978,[3908,9878],[3908,9879],[3969,9880],[3908,9881],[3971,9882],[3969,9883],9979,[3529,10075],[3530,10169],[3530,10170],3528,3530,[3528,3789],[3594,3984],3984,3919,[3594,4045],[3594,4046],[3530,4045],[3528,4046],3983,3983,[3593,4049],3593,3530,3530,3529,3528,3592,3269,3593,[3530,10070,9592],[3905,9781],[3969,9782],3908,3906,3906,3457,3908,3969,[3588,10167],[3589,10168],[3907,10070],[9974,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[607,9629],607,607,607,607,607,607,[607,10106],[607,10107],[607,10108],[607,10109],[607,10110],[607,10111],[607,10203],[607,10204],[607,10106],[607,10107],[607,10108],[607,10109],[607,10110],[607,10111],607,607,607,607,607,607,[607,10106],10010,10013,10014,9920,[607,9725],607,607,607,[607,10009],10010,[4020,9914],[3568,9818],3505,4019,3569,3953,3955,3506,[3953,9823],[3953,9915],[4018,9916],[4020,9919],10015,[607,10111],607,607,607,607,[607,9628],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,9824,[4012,9629],3950,[3063,4077],[3062,4078],[3063,4079],3062,3063,3062,3063,3062,3063,3063,3062,3063,[3062,4074],4013,3947,3950,[3062,3887],3062,3062,3063,3063,3063,2998,3063,[3062,3819],[3062,3755],3949,[3063,4075],[3063,4078],[2998,4079],3062,3062,3063,3062,[3063,4010,10205],[3947,10206],3434,4011,3948,3949,4012,[3062,3756],[3063,3757,9820],[3062,3758,10009],10010,10013,10014,10015,[3063,4077,10016],[3063,4078,9821],[3062,3885],2999,3063,3063,3062,3063,3062,[3062,3819,9339],[3949,9342],4013,[3947,9529],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10011,10008,9920,[2802,9725],2930,2802,2802,2931,2931,[2802,9532],9625,[9626,14],0,0,0,0,0,0,[9535,14],[2930,9439],2866,2802,2930,2931,2930,[2931,9339],[2802,9340],[2866,9341],[2802,9342],2802,[2931,9433],[2867,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[4014,9533],3562,3947,3947,3949,3949,3947,3562,3949,3500,3947,4012,3948,[4011,9339],[3949,9340],[3949,9341],[4014,9342],4012,4013,3499,3948,4013,3950,3500,[3950,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15198,15199,15198,15199,15198,15071,0,0,0,15261,15197,15197,15068,15069,15069,15005,15004,15132,15133,15133,15069,15068,15196,15196,0,0,0,15068,15132,15004,15132,15004,15069,15132,15004,15132,15069,15005,15068,15069,15133,15069,15132,15196,15197,15197,0,0,0,0,0,0,15006,15007,15070,15135,15134,15007,15007,0,0,0,0,15194,15267,15195,15194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[3913,9616],[3977,9617],3978,3977,[3977,9622],[3978,9623],[3914,9620],[4097,3787],4097,4097,[4097,9619],[2435,9808],[2370,9809],2370,2371,2435,2371,[2434,9814],[1923,9906],[2435,9907],[2370,9908],[2435,9909],[2434,8465],[2435,8466],[1923,9910],9911,[3912,9716],3977,3914,[4097,3915],4097,[4097,9619],[3914,9808],[3914,9809],3978,3913,3914,3913,3977,3977,[4097,3915,9814],[4097,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2433,9448],[2368,9348],[2369,9541,9351],9730,[9731,14],0,0,0,0,0,0,[9544,14],[2369,9448],2368,2368,2432,2432,2368,2368,2433,[2369,9348],[2369,9349],[2369,9350],[2368,9351],2368,2433,2368,2368,2368,2368,2432,[2368,9733],9730,[9731,14],0,[9736,14],9737,[2432,9638],2368,2369,2433,2432,2433,2369,[2433,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9899,9900,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[9979,9497],[4002,9980],[3937,9785],3938,3938,4001,[3522,3743],3937,3938,[3906,3809,9787],[3908,9883],9979,[3920,10073],[3919,10074],9974,9975,9976,9977,9978,9979,[3530,10075],3592,3592,3592,3593,[3528,3790],3920,3919,3919,[3528,3855],3530,3529,3592,3530,[3592,3854],[3269,3855],3592,3529,3594,3592,3528,3592,3593,3529,3528,[3529,9688],9877,[3394,9878],[3905,9879],[3907,9880],[3907,9782],3969,3969,3907,3652,3653,3907,[3969,10070,9592],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9629],607,607,607,609,607,607,607,[607,10203],[607,10204],[607,10205],[607,10206],607,607,607,607,[607,10203],[607,10204],[607,10205],[607,10206],607,607,607,607,607,607,607,607,[607,10106],[607,10109],[607,10110],[607,10016],[607,9821],607,607,607,607,[607,10106],10010,[4019,9914],[4017,9915],[3955,9916],[4017,9818],3440,4017,[3505,9823],[4020,9919],10011,10012,10015,[607,10111],607,607,607,607,607,[607,9724],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9916,[9818,14],0,0,0,0,0,0,0,[9823,14],9915,9917,9918,9919,10013,10014,9920,[3063,4078,9725],[3063,3886],3063,3063,3062,3062,3063,2998,3062,3063,3062,3063,3062,2998,3063,[3062,3884],[3948,9339],[3948,9342],[3062,3951],2998,3063,2998,[3062,9339],[3063,9342],3062,3062,[3063,4010],4011,[3063,3885],3062,3063,3062,3062,3062,3063,3062,[3062,4074],[3062,4075],[3063,4076],4011,3950,4012,3947,4014,3948,3949,[3062,4015,10106],[3062,10109],[3063,10110],[3063,10111],3063,3062,2999,3063,3062,3062,3063,2998,[3062,9529],9435,9438,[4014,9439],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[2802,10107],[2930,10104],[2930,10016],[2802,9821],2802,2866,2866,2931,2930,[2931,9724],9721,[9722,14],0,0,0,0,0,0,0,[9535,14],[2930,9536],2931,2931,[2930,9433],[2867,9434],9435,9436,9437,9438,[2930,9439],[2931,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[4012,9629],4014,3948,3498,3949,3947,3949,3499,[4013,9339],[4011,9340],[3500,9341],[3564,9342],[4014,9434],9435,9436,9437,9438,[3563,9536],3948,4011,4012,3500,3562,[3948,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15263,15262,15262,15263,15262,15006,0,0,0,15325,15261,15261,15197,15068,15005,15133,15068,15005,15068,15133,15132,15197,15260,15260,0,0,0,15197,15197,15004,15133,15132,15005,15004,15005,15132,15068,15133,15196,15196,15196,15197,15196,15260,15261,15261,0,0,0,0,0,15006,15007,15134,15135,15071,15134,15134,15134,15135,0,0,0,15259,15331,15259,15259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,[3978,9712],[3913,9713],3978,3914,[3913,9718],[3978,9719],[3913,9716],[4097,3851],4192,4097,[4097,9715],9904,[2435,9905],[2434,9906],[1922,9907],[1922,9908],[1922,9909],[1922,9910],10002,10003,10004,10005,8561,8562,10006,[4097,10007],[4097,3848,9812],3912,3977,3975,[4097,3785],[4097,3784,9715],9904,[3914,9905],[3913,9809],3913,3977,3913,3977,[3977,9622],[3914,9623],10006,10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,9447,[9539,14],0,0,0,0,0,0,0,0,[9544,14],[2432,9545],2433,1985,2432,2432,1985,[2369,9538],9444,9445,9446,9447,[2368,9448],[2368,9348],[2432,9351],2368,2432,2433,2433,[2368,9538],[9539,14],0,0,[9832,14],9833,[2368,9638],2433,2433,2368,1920,2433,[2368,9541],9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9995,9996,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9788,[4001,10075,9593],4001,4002,3937,3938,3938,3938,3938,[3937,9595],[3937,9596],[9979,9497],[3983,10075],[3919,10169],[3984,10170],[3983,10070],[3920,10071],[3983,10072],[3984,10073],[3592,3857,10074],[3592,10075],3594,3593,3269,3530,3594,[3592,3788],3984,3984,[3592,3985],3269,[3530,9498],3530,3530,3592,3593,3530,3593,[3528,9495],3592,3530,3529,[3530,3724],[3593,3725],[3594,3728],[3594,3791],[3594,9784],[3593,9973],9974,9975,9976,[3905,9878],[3969,9782],3906,3907,3906,3969,3971,[3456,9592],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9725],607,607,607,607,607,607,607,607,607,607,[607,9339],[607,9342],607,607,607,609,607,607,607,607,607,607,607,607,607,607,607,607,[607,10205],[607,10206],607,607,607,607,607,607,607,[607,10106],10010,10011,10012,[4017,9914],[3953,9915],[3954,9916],[4018,9919],10015,[607,10107],[607,10108],[607,10111],607,607,609,607,607,607,[607,9434],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9916,9919,10011,10012,9914,[9818,14],0,0,0,0,0,[9823,14],9919,10011,10013,10014,10015,[3062,10109],[3063,10110],[3062,10016],[3062,9821],3062,3062,3063,3063,2998,3063,3063,3063,3062,3062,3063,3063,3062,3062,[3062,9434],9435,9438,[3948,9439],[3062,3822],3063,[3063,9434],9435,9438,[2999,9439],[3062,3820],3947,[3063,3885],3063,3063,3063,3062,3062,3063,2998,2999,3063,2998,3062,[3063,3883],4012,3947,4011,3947,4011,4014,[3063,3886],[3063,10205],[3062,10206],3063,3063,3062,3062,3062,3062,3063,[3063,9339],[2999,9342],9721,[9722,14],0,[9535,14],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9912,9915,9916,[9818,14],0,0,[9727,14],9728,[2930,10111,9629],[2867,10203],[2931,10200],2931,2930,2802,2802,2802,2802,[2930,9433],[2931,9434],[9530,14],0,0,0,0,0,0,0,0,[9631,14],9632,[2930,9533,9339],[2931,9342],[2930,9529],[9530,14],0,0,0,0,[9535,14],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[3500,9629],3949,3500,3500,3499,3950,4012,[3950,9434],9435,9436,9437,9438,[9530,14],0,0,0,[9631,14],9632,[3500,9533],3948,[3948,4249],3498,[4014,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,0,15327,0,15071,15007,0,0,0,15327,15325,15261,15196,15196,15196,15068,15132,15068,15068,15069,15261,15325,0,0,0,0,15261,15260,15132,15133,15132,15069,15068,15068,15005,15196,15196,15260,15260,15260,15260,15261,15325,0,15325,0,0,0,0,0,15135,15070,15006,15134,15007,15006,15006,15135,15135,0,0,0,15133,[15005,15395],15004,15005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9424,9425,[4097,3847,9521],3912,3978,3913,3913,[3977,9526],[3914,9430],[4097,3915],4097,4097,[4097,3783,9811],[3913,10000],10001,10002,10003,10004,10005,10006,[4097,3910,10098],[3978,10099],[3914,10100],[3977,10101],[3913,8657],[3913,8658],[4097,3915,10102],4097,4097,[4097,3974],3978,3913,3975,[3976,9811],[4097,3979,10000],10001,[3914,9616],[3914,9617],3978,3913,3978,[3977,9718],[3977,9719],[10102,9524],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2433,9542],2432,2368,2433,[2369,9541],9634,[9635,14],0,0,0,[9544,14],9444,9447,[2433,9448],[2433,9348],[2433,9351],[2432,9538],[9539,14],[9832,14],9926,9927,9928,9929,[2432,9734],2369,2369,2368,2432,2369,[2432,9733],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[3919,2764,10091],[3983,2769,10092],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9884,[3937,9689],3937,4001,4001,4002,3937,3937,4001,[4002,9691],[3938,9692],[3920,10075,9593],3983,3920,3983,3919,[3983,10167],[3984,10168],[3919,10169],[3593,3921,10170],3593,3594,3529,3592,3592,3594,[3594,3916],3919,3920,[3530,3855],3593,[3592,9594],[3528,9497],3592,3593,3594,[1922,3657],[2370,3655,9496],[3528,9591],3594,3592,3528,[3593,3980],3983,3983,3919,[3594,3729],3529,[3594,10070],[3593,10071],[3528,10072],9974,[3969,9878],[3905,9782],3907,3393,3907,3905,[3906,9688],9877,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2825,10089],[2759,10090],9992,9896,[9800,14],0,0,0,0,0,0,[9805,14],9901,9997,[2762,10089],[2824,10090],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,8936,8937,8938,9900,9800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9536],607,607,607,607,607,608,607,[607,9339],[607,9342],[607,9434],9435,9438,[607,9439],607,607,607,607,607,607,[607,9339],[607,9342],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,10106],[607,10107],[607,10108],10010,10011,10012,10015,[607,10111],[607,10203],[607,10204],607,607,607,607,[607,9339],[607,9342],[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,9919,10011,10012,10015,[3950,10107],[4013,10108],10010,9625,[9626,14],0,0,0,[9823,14],9919,10015,[3949,10107],[4011,10109],[3062,3887,10110],[2999,10111],[3062,10205],[3063,10206],3062,3062,3063,3063,3062,3062,3062,[3063,3754],[3063,3755],[3063,3756],[3063,3757],[3063,3758],[3063,3759],3062,3062,[3063,9532],9721,[9722,14],0,[9535,14],[2999,4015,9536],[3063,9434],[9530,14],0,0,[9535,14],[3950,9536],[3062,4015],3062,3063,3062,2998,3062,3062,3063,3063,3063,3062,3062,3062,[3063,3754],3947,3949,3950,4014,4014,[3063,3823],3062,3063,3063,3062,3062,2998,3063,3062,3063,[3062,9434],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10008,10011,10012,9914,[9818,14],0,[9631,14],9632,[2930,9725],2930,2931,2930,2802,2867,2931,2931,2802,[2930,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[3564,9725],4012,3564,3950,4014,4011,[3950,9529],[9530,14],0,0,0,0,0,0,0,0,[9727,14],9728,[4014,9629],[4014,4344],[3949,4345],[3563,4346],[3950,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15135,0,0,0,0,0,15325,15260,15261,15261,15133,15132,15004,15068,15069,0,0,0,0,0,0,15323,0,15132,15004,15132,15005,15133,15196,15197,15260,15261,0,15325,0,0,0,0,0,0,0,0,0,0,0,15199,15070,15070,15135,15006,15071,15071,15006,15070,0,0,0,15069,15132,15004,15004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9520,[4097,9521],4097,[4097,4038],3912,3913,3978,3914,[3914,9526],[4097,3979,9527],4097,4097,[4097,3974],3913,[3978,10097],[3914,10098],[4097,3915,10099],[4097,10100],[4097,10101],[4097,10102],[4097,3974,10194],[3978,10195],[3977,10196],[3914,10197],3914,3914,[4097,3979],4097,[4097,3783],3976,3977,3911,[4097,4040],[4097,4041],[4097,3849],[4097,10097],[3914,9712],[3914,9713],3914,3977,3978,[3913,9814],[3914,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2368,9638],2368,2368,2368,[2432,9637],9730,[9731,14],0,0,0,0,0,0,[9544,14],9444,9447,[9539,14],[9832,14],9928,10022,10023,10024,[2433,10025],[2369,9830],2368,2369,2432,2368,2369,[2432,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[3919,10093],[3919,2828,10187],[3919,2833,10188],[3917,10088,9514],9703,[9704,14],0,0,0,[9805,14],9897,9898,9899,9900,[9800,14],0,0,0,0,[9805,14],9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[9979,9497],[3906,4062,9980],[3905,4066,9785],[3908,4063],3937,3937,3937,4002,[4002,9787],[4001,9881],[4001,9882],[4001,9788],[3983,9593],3920,3983,3984,3984,3920,3920,3919,[3333,3985],3528,3530,3530,3593,3530,3593,[3593,4044],[3530,4045],[3530,4049],3528,[3592,9787],[3530,9788],[2371,3463,9593],[2434,3655],[1922,3656],[2435,3466],2178,[2434,9592],[3592,9781],[3592,9782],3530,3530,[3529,3853],3983,3984,3919,3983,[3528,3791],3528,[3333,10167],[3528,10168],[3528,3789,10070],[9974,9496],[3908,9589],[3908,9590],3908,3908,3907,[3907,9784],[3522,9973],[9974,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[2760,10093],[2825,10185],[2824,10186],[2761,10088],9992,9607,[9608,14],0,0,0,0,[9613,14],9614,9997,[2824,10093],[2824,10185],[2762,10186],[2825,10088],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9805,9897,9898,9899,9900,9901,9032,9033,9034,9996,9896,9897,9898,9800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9439],607,607,607,607,607,[607,9434],9435,9438,9530,0,0,9535,[607,9536],[607,9339],[607,9340],[607,9341],[607,9342],[607,9434],9435,9438,[607,9439],[607,9339],[607,9342],607,607,609,607,607,607,607,607,607,607,607,607,607,607,607,[607,10203],[607,10204],[607,10106],[607,10107],[607,10108],[607,10111],607,607,[607,9339],[607,9340],[607,9341],[607,9342],[607,9434],9435,9438,9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10013,10014,10015,[3948,10107],[4013,10108],[4011,10111],[4011,10203],[4014,10204],[4012,10106,9532],9721,[9722,14],0,0,[9727,14],9728,[10015,9533],[4012,10111],[3630,10203],[3631,10205],[3063,3951,10206],3063,3063,3063,3062,3062,3062,3063,2998,3062,3062,[3063,4010],4014,4011,4013,4013,[3063,3886],3063,3063,[3063,9434],[9530,14],0,0,0,[9535,14],[9530,14],0,0,0,[9631,14],9632,[3063,3885,9533],3062,3063,3063,3063,3063,3062,3063,3063,3063,3063,3062,[3062,3819],4013,4011,4011,3949,4014,3950,[3063,3951],3062,3062,3062,2998,3062,3062,3062,3063,[3063,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9915,9916,9919,10015,[2802,10104],[2931,10107],[2930,10108],10010,9914,[9818,14],0,[9535,14],[2866,9439],2867,2802,2930,2866,2930,2930,[2930,9339],[2802,9532,9342],9625,[9626,14],0,0,0,0,0,[9823,14],9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[3950,10016],[4011,9821],4011,4012,3948,3562,[3563,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,[9535,14],[3948,9439],3947,3947,4012,[4011,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15135,0,0,0,0,0,0,0,15325,15325,15133,15133,15005,15133,15133,15004,15132,15005,15004,15005,15069,15005,15005,15133,15069,15196,15197,15197,15260,15261,15325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15263,15198,15199,15134,15134,15070,15134,15006,15199,0,0,0,15196,15068,15132,15196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9523,[4097,9712],[4097,9713],4192,4097,[4097,3974],3913,3978,3913,3978,[3913,9526],[4097,9430],[4097,3783],3976,3914,3914,[3978,10194],[4097,3979,10195],[4097,10196],[4096,10197],[4097,3783],3976,3913,3914,[3977,9330],[3913,9331],[3977,9332],[3975,9333],[4097,3786],[4097,3782],3978,3911,[4097,3849],4097,4096,4097,[4097,9425],[3914,9521],3914,[3913,9814],[3913,9908],[3977,9909],[3978,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2432,9638],2433,2432,2368,[2432,9637],9826,[9827,14],0,0,0,0,0,0,0,[9832,14],9924,9925,9928,10024,[2368,10118],[2368,10119],[2433,10120],2369,2432,2433,2433,2432,[2369,9348],[2433,9541,9351],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,9899,9900,[9800,14],0,0,[9805,14],9806,[3920,10093,9611],[3983,2638],2767,[3919,2703],[3919,9610],9799,[9800,14],0,0,[9805,14],9901,9993,9994,9995,9996,9896,9897,9898,9899,9900,9901,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3908,10075,9689],3969,3908,3969,[3393,3871],[3905,4063],3938,[4002,9787],[4001,9883],9977,9978,9884,[3529,3853,9689],[3592,4045],[3530,4046],3983,3919,3920,3920,3919,[3528,3855],3529,3594,3593,3529,3530,3530,3529,3528,3592,[3593,9787],[3594,9883],9884,[2370,9689],1922,2371,2371,2435,[2371,9688],9877,[3528,9878],[3592,9782],3530,3529,[3530,4044],[3529,4045],3919,3920,3984,[3530,3726],[3529,3727],[3593,3728],3919,[3983,10070,9592],[3393,9685],[3906,9686],3971,3907,3905,3969,3906,[3969,10070,9592],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],8936,8937,8938,9900,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2761,10093],2824,2825,2823,2824,[2825,10088],9703,[9704,14],0,0,0,0,[9709,14],9710,[2759,10093],2761,2825,2825,2823,[2823,10088],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9805,9901,9993,9994,9995,9996,9997,[2766,9128],[2830,9129],[2767,9130],[2765,10092],9992,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9536],[607,9339],[607,9340],[607,9341],[607,9532,9342],9625,9626,0,0,0,0,0,9535,9435,9436,9437,9438,9530,0,0,9535,9435,9438,[607,9439],607,607,607,607,607,607,608,607,607,607,607,607,607,607,607,607,607,[607,10203],[607,10204],607,607,[607,9434],9435,9436,9437,9438,9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9823,9919,10015,[3062,4010,10109],[4012,10110],[4012,10111],[3498,10203],[4011,10204],4011,4014,3950,[4012,9628],9817,[9818,14],0,0,[9823,14],9824,[3949,10111,9629],3950,3694,3695,[3063,4015],3063,3063,3063,3063,3063,3062,3063,3063,[3062,9339],[2998,3819,9342],3947,3948,[3062,4076],[2998,4076],3950,[3063,3822],3063,[3062,9529],[9530,14],0,0,0,0,0,0,0,0,0,[9727,14],9728,[3062,9725],3063,3063,3063,3062,3063,[3062,9339],[3062,9340],[3062,9342],2998,[3062,3819],[3063,3755],3947,3948,4014,3950,3947,[3063,3885],[3063,3883],[3062,4079],3063,3062,3062,3062,3062,[3063,9339],[3062,9340],[3062,9342],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10011,10012,10015,[2802,10111],[2802,10200],[2867,10203],[2802,10204],[2930,10106],[10010,9532],9625,[9626,14],0,[9535,14],[2867,9536],2931,2931,2930,[2802,9433],[2930,9434],9435,9438,[9530,14],0,0,0,[9823,14],9917,9918,9919,10011,10012,9914,9917,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3500,10111,9629],4012,3630,3631,3563,4014,3947,[3563,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,[9535,14],[3948,9439],[4013,9339],[3948,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15070,0,0,0,0,0,0,0,0,0,15004,15005,15005,15004,15004,15069,15068,15005,15004,15068,15069,15069,15133,15069,15068,15260,15261,15261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15262,15262,15199,15199,15199,15199,15198,15262,0,0,0,15261,15133,15132,15260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9619,[4097,9808],[4097,9906],[4097,9907],[4097,3783,9809],3976,3914,3977,3914,3913,3914,[3978,9526],[3976,9527],[3913,9330],[3978,9331],[3913,9332],[3911,9333],[4097,3849],4097,4097,[4097,3974],3914,3977,[3913,9425],[4097,9426],[4097,9427],[4097,9428],[4097,9429],[4097,3979,9430],[4097,3910,9330],[3977,9331],[4097,3787,9332],[4097,9333],[4097,9330],[4097,9333],[4097,9520],[3977,9521],3914,[3977,9814],[3977,9910],10004,10005,10006,10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2433,9734],1920,2368,2368,[2432,9733],9922,9923,9924,9925,[9827,14],0,0,0,[9832,14],9928,10020,10021,10024,[2433,10120],[2368,10214],[2369,10215],2433,1920,2368,2433,2369,[2368,9538],9444,9447,[9539,14],0,0,[9832,14],9926,9927,9924,9925,9926,9927,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9995,9996,9896,9899,9900,9901,9902,[3918,2573,9707],2767,[3920,2703],3981,[3918,9706],9895,9896,9899,9900,9901,9997,[3983,10089],[3983,10090],[3919,10091],[3919,10092],9992,9993,9994,9995,9996,9997,[3920,2700,10089],[2765,10090],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3521,9500],3906,3907,3971,3906,3905,[3971,3872,9787],[3938,9883],9979,[3530,10073],[3593,10074],[3530,9980],[3593,9785],3592,3529,[3594,3853],3920,3984,3983,[3594,3856],3593,3592,[3593,9787],[3594,9881],[3594,9882],[3594,9782],3593,3332,3592,[3529,9691],[3529,9692],[9979,9497],[2370,9980,4184],[2435,9785],2435,2370,2435,[2371,4153],[2371,9784],[2435,9973,4185],[9974,9496],[3592,9589],[3530,9590],3529,3529,3593,[3594,3853],3920,3984,3919,3919,3983,3983,[3983,9398],[3907,9494],3971,3907,3907,3905,3456,3905,[3907,9592],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9032,9033,9034,9996,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2823,9518],2761,2760,2761,2823,[2823,9511],[9512,14],0,0,0,0,0,0,[9517,14],[2762,9518],2760,2762,2825,2759,[2762,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[2765,10089],[2767,10090],[2832,10091],[2765,10092],[2829,10093],[2765,9224],[2768,9225],[2832,9226],[2831,10188],[2766,10088],[2767,10089],[2767,10090],9992,9896,9800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,9435,9436,9437,9438,9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9536],607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,607,[607,9532],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,10015,[3062,10111],[3063,3883,10205],[3947,10206],3948,3947,3948,3949,3950,[3062,4075],[4012,9724],9913,9914,9917,9918,9919,9920,[4012,9725],3950,[3063,3885],[3063,3884],[3063,4079],3063,3063,3062,3063,3062,3062,3063,[3063,9434],9435,9438,[4012,9439],[3062,3886],3063,3062,[3062,4010],4013,[3062,3822,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9439],3063,3063,3063,3062,[2998,9434],9435,9436,9438,[3063,9439],[3062,3818],4012,3949,4013,4012,3947,[3062,4015],3062,[3062,9339],[3063,9340],[3062,9341],[3062,9342],3062,3063,[3062,9434],9435,9436,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,8963,8964,8965,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[10015,9533],[2802,10107],[2930,10108],[2931,10111],2802,2931,2930,2866,2802,[2930,10106,9628],9721,[9722,14],0,0,[9535,14],[2802,9536],[2802,9339],[2866,9342],[2802,9529],[9530,14],0,0,0,0,0,[9823,14],9919,10013,10014,10015,[3249,10107],[3188,10108],10010,10013,10014,9914,9915,9912,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3947,9629],3564,3694,3695,3563,3500,3563,[3950,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15071,15135,15135,15006,15007,15006,15071,15006,15007,0,15004,15069,15005,15069,15133,15196,15196,15197,15197,15196,15197,15197,15197,15196,15197,15325,0,15325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15263,15262,15263,15263,15262,15327,0,0,0,15324,15132,15132,15324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9715,9904,10002,10003,[3978,9905],[3913,9809],3977,3978,3978,3977,3913,3913,[3913,9526],[3978,9426],[3914,9427],[3914,9428],[3977,9429],[4097,9430],[4097,9330],[4097,9331],[4097,3847,9332],[3914,9333],[3977,9520],[4097,3784,9521],[4097,3719],[4097,3720],[4097,3721],[4097,3722],[4097,3719,9526],[3914,9426],[3978,9427],[3914,9428],[3913,9429],[3978,9426],[3913,9429],[3913,9521],3978,3977,[3914,9719],10006,10100,10101,10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2369,9448],2368,2433,2432,[2433,9829],[2433,10018],10019,10020,10021,9923,[9827,14],0,[9640,14],9641,[10024,9542],[2369,10116],[2433,10117],[2369,10120],2369,2369,2368,2368,2368,[2369,9348],[2433,9351],[2433,9443],[9539,14],0,0,0,0,[9832,14],9928,10022,10023,10020,10021,10022,10023,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[3983,10089],[3983,10090],[3919,10091],[3983,2636,10092],9992,9995,9996,9997,[2831,9998],[2766,9803],[3920,2833],3983,3918,[3981,9802],[3920,9991],9992,9995,9996,9997,[3983,10093],[3920,10185],[3920,10186],[3918,10187],[3920,10188],[3919,10088],[3983,10089],[3919,10090],[3983,10091],[3983,10092],[3983,10093],[3983,2764,10185],[2830,10186],[2767,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3906,9497],3906,3908,3393,[3971,9787],[3906,9883],9979,[3593,10075],[3594,10169],[3593,10170],3592,3592,3528,3593,[3332,3789],3920,3919,3920,[3529,3791,9787],[3528,9881],[3594,9882],[3528,9883],9977,9978,[3529,9878],[3592,9782],3592,3594,[3528,9787],[3593,9788],[1987,10075,9593],[2434,4280],2434,1987,2434,2242,2243,2371,[2370,4281],[2434,10070,9592],[3529,9685],[3592,9686],3594,3594,3530,3333,[3528,3788],3920,3920,[3593,3856],[3592,3853],[3528,4045,9493],[3907,9494],3908,3907,3908,3971,3905,3458,3971,[3521,9688],9877,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2761,9128],[2761,9129],[2824,9130],[2823,10092],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2826,9515],2825,2759,[2825,9514],9607,[9704,14],0,0,0,0,0,0,[9709,14],9710,[2761,9515],2825,2824,[2760,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[2831,10093,9515],[2832,10185],[2767,10186],[2765,10187],[2765,10188],2765,2832,2765,2767,2832,2767,[2768,10185],[2829,10186],[2767,10088],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9631,9632,[607,9533],607,607,607,607,607,607,607,607,[607,9339],[607,9342],607,607,607,607,609,607,607,607,[607,9628],9721,9722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3063,10111],3063,2998,[3062,4074],[3063,4077],3947,3950,3498,[3063,3885],3062,[3062,3883,9820],[3063,4075,10009],10010,10013,10014,10015,[3063,4077,10016],[3063,4078,9821],[3063,3886],3062,3062,3062,[3063,9339],[3063,9340],[3062,9341],[2998,9342],3063,3063,[3062,9434],[9530,14],0,[9631,14],9632,[3062,9533],3062,3063,[3063,4074],4011,[4012,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9536],[3062,9339],[3063,9342],[3063,9529],[9530,14],0,0,[9631,14],9632,[3063,3882,9533],3436,4013,[3062,3885],[3062,3883],[3063,4078],[3062,3886],[3062,9529],9435,9436,9437,9438,[3062,9439],[3063,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9059,9060,9061,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2867,10111,9629],[2802,10203],[2802,10204],2930,2802,2802,2802,2803,[2930,9433],[2930,9434],[9530,14],0,0,0,0,[9535,14],9435,9438,[9530,14],0,0,0,0,0,[9823,14],9919,10015,[2866,10109],[2930,10110],[2802,3184,10111],[3249,10203],[3251,10204],[3186,10106],[3186,10109],[3249,10110],10010,10011,10008,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3564,9725],3499,3950,4011,4012,3949,4012,[4011,9724],9913,9914,9915,9916,[9818,14],0,0,[9823,14],9915,9916,9917,9918,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15135,15135,15070,15135,15071,15071,15070,15071,15134,0,15196,15009,15197,15196,15197,15261,15261,15260,15260,15260,15260,15261,15261,15261,15260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15132,15132,15068,15069,15004,15069,0,0,0,0,0,15327,0,0,0,0,0,0,15069,15005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9811,10000,10098,10099,10001,[3913,9905],[3977,9906],[3913,9907],[3914,9809],3977,3977,3913,3913,3978,3977,3978,3914,[3978,9526],[3978,9426],[3977,9427],[3913,9428],[3977,9429],[3975,9521],3976,3914,3977,3914,3913,3978,3914,3977,3914,3913,3914,3977,3914,3914,[3914,9622],[3978,9623],[10102,9524],10196,10197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2368,9545],2433,2368,2369,2368,[2369,10115],[2433,10116],[2369,10117],10019,9634,[9635,14],[9736,14],9737,[2369,10120,9638],[2368,10212],[2368,10213],2369,2369,2432,2433,2432,[2369,9538],9444,9447,[9539,14],0,0,0,0,[9832,14],9928,10024,[2432,10118],[2433,10119],[2432,10116],[2432,10117],[2368,10118],[2368,10119],10019,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[3920,10093],[3919,10185],[3919,10186],[3983,10187],[3983,2700,10188],[2831,10088],[3920,2769,10091],[3983,10092],[3983,2701,10093],[3919,2893],[3983,2894],2768,[3920,2639],3919,3983,3920,[3919,10088],[2830,10091],[3918,10092],[3983,10093],3983,3919,3983,3919,3983,3919,[3920,10185],[3919,10186],[3920,10187],[3919,10188],3917,[3983,2828],2766,[3983,2704],[3983,10088,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3908,9593],3521,3908,[3969,9595],[3908,9596],[9979,9497],[3593,10075],[3269,3789],[3530,3727],[3594,3728],[3593,3725],[3528,3726],[3593,3727],[3594,3728],3984,[3984,9787],[3919,9879],[3984,9880],[3983,9883],9977,9978,9979,[2435,10073],[2435,10074],9974,[3530,9878],[3593,9879],[3594,9880],[3528,9883],9884,[1986,9689],2435,2371,2371,2371,2306,2307,2435,2435,[2371,9493],[3592,9494],3528,3593,3592,3528,3594,[3593,3852],3983,[3529,3985],3528,[3594,9496],[3907,9589],[3969,9590],3971,3520,3906,3905,3969,3969,3908,[3908,9784],[3971,9973],9974,9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[2762,10093],[2760,9224],[2825,9225],[2824,9226],[2760,10188],[2760,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,14,0,0,0,0,0,[9709,14],9710,[2759,9611],2824,2826,[2760,9610],9799,[9800,14],0,0,0,0,0,0,[9805,14],9806,[2826,9611],2760,2762,[2760,9610,8942],8943,[74,8944,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2768,9611],2832,2829,2831,2765,2767,2767,2830,2829,2832,2767,2767,2832,2765,[2831,10088,9514],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9727,9728,[607,9725],607,607,607,607,607,[607,9339],[607,9342],[607,9434],9435,9438,[607,9439],607,607,607,607,607,607,607,[607,9724],9625,9626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,8957],8958,[3063,8959],3063,3063,3063,3063,[3063,3884],[3063,4078],[2999,3886],3063,3062,3063,3062,[3062,10106],[3063,10109],[3063,10110],[3063,10111],3063,3062,3063,3063,3062,[3062,9529],9435,9436,9437,9438,[3063,9439],[3063,9434],[9530,14],0,0,[9727,14],9728,[3063,9629],3063,3062,3063,[3063,3883],[3062,4075,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[9530,14],0,0,0,[9631,14],9632,[4012,9629],3948,[2998,4015],2998,3062,3062,[3063,9532],9625,[9626,14],0,0,0,[9535,14],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,10024,[3164,9155],[3228,9156],[3164,9157],10019,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2930,9629],2866,2802,2930,2930,2802,2931,[2930,9339],[2867,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[2802,10111],[2931,10205],[2930,10206],[2930,3248],3188,3251,3187,[3187,10205],[3185,10206],[3185,10106],[3251,10107],[3185,10104],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3950,9439],3564,3562,3563,4013,4013,3499,[4013,9820],[3950,10009],10010,10011,10012,9914,9915,9916,9919,10011,10012,10013,10014,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15135,15070,15070,15199,15199,15198,15199,15006,15006,0,15261,15073,15260,15260,15260,15325,0,15325,15325,15325,15325,0,15325,0,15325,0,0,0,0,0,15070,15134,15134,15007,0,0,15133,15069,15069,15005,15004,15068,15068,15004,15132,15068,15132,15004,15133,15004,0,0,0,0,0,0,0,0,15069,15068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,10097,10001,10002,10003,[3978,9905],[3977,9809],3977,3914,3978,3913,3977,3913,3913,3914,3914,3978,3978,3977,3914,3913,3913,3914,3978,3913,3914,3978,3914,3977,3914,3913,3977,3978,3978,[3914,9718],[3977,9719],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2432,9545],2433,1920,2433,2433,[2368,10212],[2433,10213],[2369,10115,9541],9730,[9731,14],[9640,14],9641,[2433,9638],2368,1985,2432,2369,2433,2369,[2433,9538],[9539,14],0,0,0,0,0,0,[9640,14],9641,10024,[2433,10120],[2369,10214],[2432,10215],[2432,10212],[2369,10213],[2432,10214],[2369,10215],[2368,10115],10019,9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3919,10093,9515],3983,3983,3919,3983,[3983,2764],2830,[3920,2703,10187],[3919,10188],3983,3920,3983,[3919,2701],2766,[3920,2573],[3920,2639],3920,[3920,2638],[2829,10187],[3919,2639,10188],3983,3983,3920,3983,[3918,9321],[3919,9324],3917,3920,3920,3919,3983,[3983,2637],2831,[3918,2641],3919,[3920,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3908,9593],3908,3905,[3971,9691],[3908,9692],[3594,10075,9593],3529,[3528,3788],3919,3919,3983,3983,3919,3920,[3983,9787],[3983,9883],9975,9976,9979,[2435,10073],[1923,10074],[2371,10075],[2434,10169],[2434,10170],[2370,10070],9974,9975,9976,9979,[2370,9980],[2370,9785],2435,2370,2435,2371,2370,2370,2371,[2370,9496],[3920,9589],[3592,3727,9590],[3593,3728],[3594,3792],3594,3592,3592,[3528,3916],3919,[3529,3855],3530,[3530,9592],[3905,9685],[3906,9686],3905,3392,3908,3458,3969,3908,3969,3971,3907,[3905,10070],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2825,10093,9611],2762,2760,2759,2825,2762,[2824,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,[9805,14],8936,8937,8938,9900,[9800,14],0,0,0,0,[9613,14],9710,[2825,9611],2824,2824,[2761,9706],9895,9896,9897,9898,9899,9900,9897,9898,9901,9902,[2762,9707],2824,2761,[2825,9038],9039,[74,9040,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[2829,9611],2767,2767,2831,2831,2765,2768,2766,2832,2767,2768,2830,2765,2768,[2768,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9439],607,607,607,607,[607,9434],9435,9438,9530,0,0,9535,[607,9536],607,607,607,607,607,607,[607,9434],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9053],9054,[3063,9055],3063,3062,3062,3062,3062,[3063,9339],[2998,9340],[3063,9341],[3062,9342],3062,3062,3063,[3063,10205],[3062,10206],3063,3063,3063,3062,[3062,9339],[3062,9532,9342],9625,[9626,14],0,0,0,[9535,14],[9530,14],0,0,0,[9631,14],9632,[3063,9725],3062,3063,3063,3063,[3062,9724],9913,9914,9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3063,4077,9629],[2999,4078],[3062,3885],3062,3063,3063,[3062,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,[9823,14],9917,9918,9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,10024,[3164,10120],[3228,9251],[3228,9252],[3227,9253],[3163,10115],10019,9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[2930,9629],2866,2930,2931,2802,2802,[2867,9434],9435,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2802,10111,9629],2802,2931,[2930,3057],3250,3250,3185,3186,3249,3251,3249,[3249,10203],[3250,10200],[3188,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3562,9536],3564,4014,3948,3563,3563,3950,3949,[3947,10106],[3563,10107],[3500,10108],10010,10011,10012,10015,[3562,10107],[4012,10108],[3948,10109],[3562,10110],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15006,15134,15071,15006,15262,15263,15263,15263,15070,15135,15007,15134,15071,15006,15006,15325,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15006,15070,15006,15071,15007,0,0,15133,15132,15069,15068,15005,15068,15133,15069,15068,15132,15068,15005,15068,15132,15068,15068,15068,15004,15133,15132,15068,15133,15069,15004,15068,15133,15068,15004,15005,15005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10097,10098,10099,10001,[3977,9905],[3913,9906],[3914,9907],[3913,9809],3913,3913,3914,3913,3913,3977,3978,3977,3977,3914,[3914,9814],[3914,9906],[3913,9907],[3977,9809],3977,3913,3978,3913,3978,3913,3977,3978,3913,3913,[3914,9814],[3914,9815],9620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2369,9542],2433,2369,2369,2369,1984,[2369,9637],9634,[9635,14],[9736,14],9737,[2368,9638],2432,2369,2369,2369,2368,[2432,9541],9634,[9635,14],0,0,0,0,0,0,[9736,14],9737,[2369,10120],2369,2432,1921,2432,2368,2368,2369,2432,[2432,10115],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[3920,2639,9611],3918,3983,3919,3919,[3920,2828],[3919,2641],3917,3983,3920,3920,3919,3983,[3920,2701],2831,2765,[3917,2573],2831,2765,2765,[3981,2573],[3919,2640,9321],[3920,9324],[3917,9416],9417,9420,[3920,9421],3983,3983,3983,3919,[3983,2828],2767,[3981,2769],3920,[3920,9802],[3918,9991],[9992,9514],9607,[9608,14],0,0,0,0,0,[9805,14],9897,9898,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9788,[3906,9593],3907,3908,3458,[3908,9499],[3591,9500],3528,[3529,3916],3920,3919,3920,3919,[3528,3855],[3530,3854,9595],[3920,9596],[9979,9497],[2434,10071],[2434,10072],[2434,10075],[2435,10169],[2371,10170],2434,2435,2051,2434,[2435,10070],[2434,10071],[2434,10072],[2434,10075],2371,2178,2370,2435,2435,2370,2434,2435,2434,[2371,9592],[3920,9685],[3920,9686],3984,3920,[3593,3791],3592,[3528,3789],3920,[3593,3985],3594,3530,[3592,9592],[3906,9781],[3906,9782],3908,3392,3907,3971,3457,3969,3457,3971,3905,[3905,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2762,9707],2826,2759,2823,2826,2760,[2760,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9032,9033,9034,9996,9896,[9800,14],0,0,0,[9709,14],9614,[2761,9611],2825,2825,[2824,9802],[2759,9991],9992,9993,9994,9995,9996,9993,9994,9997,[2825,9998],[2762,9803],2825,2826,[2760,9134],[74,9135],[74,9136,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2831,9611],2831,2768,2766,2766,2831,2829,2831,2831,2831,2830,2767,2768,2831,[2766,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,[607,9536],[607,9339],[607,9342],[607,9529],9530,0,0,0,0,0,0,9535,[607,9536],[607,9339],[607,9340],[607,9341],[607,9342],[607,9529],9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[74,9149],[74,9150],[3063,9151],3063,3063,2999,2999,[3063,9529],9435,9436,9437,9438,[3062,9439],[3062,9339],[3063,9342],3062,3062,3062,3062,3062,[2998,9434],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9439],3062,3062,3063,3063,[3063,9820],[3063,10009],10010,10011,10012,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[2998,9629],3063,3063,3062,3063,3062,[3062,9724],9721,[9722,14],0,0,0,0,[9823,14],9915,9916,9917,9918,9919,10013,10014,10011,10012,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[3227,10120],3164,3228,3227,3164,3227,[3163,10115],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[2802,9725],2930,2930,2866,2930,[2802,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[2802,9629],2802,[2802,2992],3186,3251,3249,3251,[2802,3313],[2931,3314],3249,3249,3185,3187,3187,[3188,10106,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3950,9533],3500,3947,4014,3499,4014,3434,3949,[4011,10203],[3950,10204],[3499,10106],[4014,10107],[4011,10108],[3564,10111],[3563,10203],[3948,10204],[3947,10205],[3499,10206],[4014,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15070,15071,15135,15135,15070,0,15327,15327,0,15070,15134,15135,15135,15071,15006,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,15070,15071,15007,15070,15135,0,0,15069,15068,15132,15005,15068,15133,15069,15069,15132,15005,15069,15069,15133,15004,15133,15004,15004,15133,15068,15133,15069,15133,15133,15004,15196,15197,15197,15069,15004,15132,15069,15004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,10097,10001,10002,10003,[3978,9905],[3978,9908],[3977,9909],[3914,9906],[3914,9907],[3913,9809],3978,3977,3913,3914,[3913,9814],[3913,9910],10002,10003,[3914,9905],[3914,9809],3977,3977,[3914,9814],[3978,9906],[3913,9907],[3977,9809],3978,3978,[3913,9814],[3914,9910],9911,9716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2368,9638],2369,2369,2433,2432,2433,[2369,9637],9730,[9731,14],[9640,14],9641,[2368,9638],2369,2369,2368,2433,2368,[2433,9637],9730,[9731,14],0,0,0,0,0,0,0,[9544,14],[2432,9448],2368,2433,2369,2433,2369,1921,2433,2369,[2369,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[3981,2833,9707],3920,3919,3983,[3919,2638],2830,[3981,2705],3917,[3981,9321],[3918,9324],3920,3983,3919,3919,[3983,2828],2766,[3918,2893],[3919,2894],[3917,2703],[3983,2701],[3919,2893,9416],9417,9420,[9512,14],0,0,[9517,14],[3983,9518],[3919,9321],[3919,9324],[3981,2637],2832,2766,2766,[3920,2639],3983,3919,[3920,10088,9610],9799,[9800,14],0,0,0,0,[9805,14],9901,9993,9994,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[9884,9497],[3907,9689],3394,3906,3905,[3906,9595],[3456,9596],[3529,9497],[3529,3853],3983,3919,3919,[3593,3793],3592,[3528,9691],[3592,9692],[2370,10075,9593],[2370,10167],[2370,10168],2370,2434,2371,2435,2434,2370,2434,2371,[2435,10167],[2370,10168],2434,2371,2434,2435,2371,2370,2435,2370,1923,2370,[2434,9592],[3920,9781],[3919,9782],3984,3983,3919,[3594,3725],3919,3984,3920,[3593,3791],3594,[3593,3789,9688],9877,[3971,9878],[3907,9782],3908,3905,3908,3522,3969,3907,3905,[3908,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2760,9421],2759,2825,2823,2824,2825,[2759,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[2760,9128],[2761,9129],[2760,9130],[2825,10092],[9992,9514],9703,14,0,0,[9613,14],9710,[2760,9611],2825,2761,2760,2760,[2824,10088],[2826,10089],[2759,10090],[2823,10091],[2826,10092],[2761,10089],[2824,10090],[2761,10093],2762,2824,2823,2825,[2761,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2832,9611],2766,2766,2767,2768,2831,2830,2830,2765,2832,2768,2830,2766,2829,[2832,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9535,9435,9438,9530,0,0,0,0,0,0,0,0,9535,9435,9436,9437,9438,9530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9536],[3062,9339],[3062,9340],[3062,9341],[3063,9532,9342],9625,[9626,14],0,0,0,[9535,14],9435,9438,[3062,9439],[3062,9339],[3063,9340],[2998,9341],[3063,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9536],3063,3063,3062,3062,3063,[3062,10106],[3062,3946,10107],[4012,10108],[10010,9532],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[3063,9725],3063,3063,3063,3063,3063,[3062,9529],[9530,14],0,0,0,0,[9823,14],9919,10011,10012,10013,10014,10015,[3062,10109],[3062,10110],[3063,10107],[3063,4010,10108],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9833,3228,3228,3227,3227,3227,3227,3227,9826,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[2931,10016],[2802,9821],2802,2802,2930,2802,[2867,9628],9721,[9722,14],0,0,0,0,0,[9823,14],9917,9918,[9818,14],0,0,0,0,0,[9823,14],9919,9920,[2866,9725],2802,[2930,3248],3251,3187,3249,[2802,3123],2930,2931,[2802,3121],3188,3187,3250,3250,[2931,3124,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3499,9629],3949,3562,3564,3948,4014,3950,3500,4014,3435,3499,[3630,10203],[3631,10204],4014,3947,4011,3434,3563,4011,[3499,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15070,15134,15135,15134,15071,15135,15071,15006,15006,15135,15006,15007,15071,15006,15134,15007,15006,15006,15007,15134,15135,15007,15135,0,0,0,0,15070,15071,15006,15070,15071,15135,15007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15007,15135,15134,15135,15134,0,0,15004,15133,15069,15132,15004,15069,15132,15004,15004,15004,15068,15004,15132,15004,15068,15132,15068,15068,15196,15196,15196,15197,15196,15196,15261,15260,15261,15004,15068,15004,15005,15133,15068,15133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10097,10098,10099,10001,10004,10005,10002,10003,[3913,9905],[3913,9809],3914,3913,[3978,9814],[3914,9910],10006,10098,10099,10001,[3914,9905],[3978,9908],[3977,9909],[3978,9910],10002,10003,[3977,9905],[3977,9906],[3913,9907],[3913,9910],10006,10007,9812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9833,[2369,9638],2433,2433,2369,2368,2433,[2432,9733],9730,[9731,14],[9832,14],9833,[2368,9638],2368,2369,1921,2433,2369,[2433,9538],[9539,14],0,0,0,0,0,0,0,0,0,[9544,14],[2368,9448],2369,2432,2432,2433,2369,2368,[2432,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[9997,9515],[3919,2828,9998],[2766,9803],[3983,2639],[3983,2638],[3983,2573],2765,2831,[3919,2769],[3920,9511],9417,9420,[3919,9421],[3917,9321],[3920,9324],[3920,2637],2832,[3981,2704],3917,3918,3920,[3983,9514],9607,[9608,14],0,0,0,0,0,[9517,14],9417,9420,[2829,9421],2767,2829,2830,[3983,2833],3919,3920,[3919,9706],9895,9896,9897,9898,9899,9900,9901,9997,[3920,10089],[3983,10090],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,[3520,9692],[3906,9980,9593],[3908,9785],3969,3907,3906,[3905,9691],[3905,9692],[3594,9593],3530,[3592,3788],3919,3919,[3593,3857],3528,[3593,9595],[3530,9596],[2434,9593],2370,2435,2371,2371,2050,2435,2371,2370,1987,2435,2434,2371,2370,2434,2370,2434,1922,2434,2371,2371,1923,2371,[2371,9688],9877,[3983,9878],[3920,9879],[3983,9880],[3919,9882],[3528,4045,9782],[3529,4046],[3594,4047],[3529,4048],3984,[3593,3725],[3984,9784],[3983,9973],[9974,9496],[3907,9589],[3588,9590],3589,3906,3971,3905,3456,3908,[3907,9592],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2760,9518],2760,2762,2759,2826,[2826,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,[9709,14],9710,[2760,10093,9515],[2825,9224],[2759,9225],[2760,9226],[2762,10188],[2826,10088,9610],9607,14,0,0,[9709,14],9614,[2762,9611],2826,2759,2759,2760,2762,[2824,10185],[2823,10186],[2759,10187],[2762,10188],[2762,10185],[2762,10186],2762,2824,2761,2761,2825,[2825,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2829,9707],2832,2832,2832,2766,2768,2765,2768,2831,2831,2830,2832,2829,2832,[2832,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9436,9437,9438,[9530,14],0,0,0,0,0,0,0,[9535,14],9435,9436,9437,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3062,9533],3063,3062,3062,3063,3062,[3063,4010,10203],[3948,10204],[3949,10106,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,10015,[3063,10016],[3063,9821],3063,3062,3062,3063,[3062,8960],8961,[74,8962],0,0,0,[9631,14],9632,10015,[3948,10107],[4012,10108],[4012,10109],[3063,3951,10110],[3063,10111],[3062,10205],[3062,10206],[3062,10203],[3062,3883,10204],[4012,10106],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9832,9928,9929,3227,3227,3164,3163,3164,3163,3164,9922,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2867,10111,9629],2931,2803,2931,2802,2931,2866,[2866,9628],9817,[9818,14],0,0,0,0,[9823,14],9919,10013,10014,9914,[9818,14],0,0,0,[9631,14],9632,[10015,9533],[2931,10016],[2931,9821],2930,[2802,3312],[2931,3315],[2802,3316],[2930,3124],2867,2930,2802,2931,[2867,3248],3188,3249,[2802,3253],[2931,9820],[2866,10009],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3948,9629],3563,3950,3950,4011,3498,3563,[3564,9339],[3500,9342],3950,3948,3694,3695,3500,3949,3948,3498,3564,3947,[3563,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15006,15071,15070,15070,15070,15006,15007,15135,15134,15134,15006,15007,15007,15071,15135,15134,15006,15070,15006,15070,15070,15199,15199,0,0,0,0,15135,15135,15134,15071,15070,15070,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15199,15198,15006,15070,15006,15199,0,0,15133,15004,15004,15004,15068,15004,15068,15133,15069,15005,15069,15133,15133,15133,15004,15004,15197,15196,15260,15261,15261,15260,15261,15260,15325,15325,15325,15133,15133,15132,15133,15132,15004,15068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,10097,10100,10101,10098,10099,10001,[3913,9905],[3978,9906],[3914,9907],[3914,9910],10006,10102,10194,10195,10097,10001,10004,10005,10006,10098,10099,10001,10002,10003,10006,10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9924,9925,9926,9927,9928,9929,[2432,9734],2433,2433,2368,2432,2432,[2369,9443],[9539,14],[9832,14],9928,9929,[2369,9734],2433,2368,2368,2432,[2433,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2433,9542],2433,2369,2368,2432,[2368,9541],9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3920,10093,9611],[3920,2892],[3920,2893],[3983,2894],2768,2832,2765,[2766,9321],[2766,9514,9324],9607,[9608,14],0,[9517,14],9417,9420,[3917,9421],[3919,2703],3920,3919,3983,3983,[3920,9610],9703,[9704,14],0,[9805,14],9897,9898,[9800,14],0,0,0,[9517,14],[2766,9421],[2767,9321],[2832,9324],[3983,2703],3917,3919,[3920,9802],[3983,2638,9991],9992,9993,9994,9995,9996,9997,[3983,10093],[3983,10185],[3919,10186],[3919,2636,10088,9514],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3905,9403],3905,3969,3908,3971,[3907,9595],[3520,9596],[3530,9593],3592,[3529,3852],3983,3983,[3529,3921],3592,[3528,9691],[3528,9692],[1922,9689],2435,2434,2435,2435,2371,2370,2370,2370,2435,2371,2371,2370,2371,2370,1986,2434,2435,1986,2434,2434,2371,1987,[2371,9784],[2435,9973],9974,9975,9976,9978,[3529,9878],[3592,9782],3529,3528,[3529,3853],3984,3984,3983,[3919,10070,9592],[3971,9685],[3652,9686],3653,3906,3969,3969,3907,3906,[3908,9688],9877,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2762,9518],2762,2759,2762,[2760,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,[9613,14],9614,[2825,9611],2759,2824,2762,2825,[2824,9610],9703,14,0,0,[9709,14],9710,[2824,9611],2823,2826,2824,2826,2761,2823,2761,2823,2823,2762,2824,2825,2760,2761,2824,2761,[2759,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2832,9421],2829,2765,2831,2767,2829,2766,2765,2830,2830,2768,2767,2830,2766,[2766,9416],9512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3062,9725],3063,3062,3062,3062,[3062,3819],3630,3631,[3948,9628],[3948,9721],[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3063,10111],3062,3063,3062,2998,3063,2998,[3062,9056],9057,[74,9058],0,0,0,[9727,14],9728,[4011,10111],[3950,10203],[3948,10204],[4012,10205],[3063,3886,10206],3062,3063,3062,3063,[3063,3754],4013,[4014,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,10024,[3164,10025],3163,3164,3228,3228,3228,3163,3163,[3163,10018],10019,9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2802,9439],2931,2802,2931,2802,2867,2802,[2802,9724],9913,9914,9915,9916,9917,9918,9919,10015,[2930,10109],[2930,10110],10010,9914,[9818,14],0,0,[9727,14],9728,[2930,10111,9629],2930,2802,2930,2866,2930,2802,2931,2802,2931,2931,2931,[2867,3312],[2866,3315],[2931,3316],[2931,3317],2930,2866,[2930,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3947,9629],3947,4012,3950,3948,3499,[4013,9434],9435,9438,[4013,9439],3950,4014,3499,3562,[4013,9339],[4012,9340],[3562,9341],[3563,9342],[4013,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15006,15006,15199,15198,15198,15198,15198,15199,15198,15198,15071,15198,15199,15199,15198,15199,15199,15198,15199,15135,15134,15263,15263,0,0,0,0,15199,15199,15071,15134,15070,15134,15198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15263,15262,15198,15198,15199,15262,0,0,15196,15197,15197,15133,15133,15133,15069,15069,15004,15005,15068,15132,15197,15196,15196,15196,15260,15261,15325,15324,15325,15325,15325,15325,0,0,0,15132,15069,15004,15133,15197,15197,15196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10196,10197,10194,10195,10097,10001,10002,10003,10006,10102,0,0,0,0,10097,10100,10101,10102,10194,10195,10097,10098,10099,10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10020,10021,10022,10023,10024,[2368,10025],[2368,9830],2368,1984,2369,2433,[2432,9443],[9539,14],[9640,14],9641,10024,[2368,10025],[2368,9830],2433,2432,2433,[2368,9541],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,[9832,14],9833,[2369,9638],2433,2432,2369,2369,[2433,9637],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3920,9518],3919,3920,3983,[3919,2702],[2766,9415],[2766,9416],9417,9420,[9512,14],0,0,0,0,0,[9517,14],[3983,9518],3981,3983,3983,3920,[3983,9610],9799,9897,9898,9901,9993,9994,9896,[9800,14],0,0,0,[9517,14],9417,9420,[3981,9518],3983,[3919,2637],[3919,2573],2832,[3983,2833,10088],[3920,10089],[3920,10090],[3920,10091],[2828,10092],[3983,2641,10093],3983,3919,3983,[3920,2700,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3905,9500],3971,3908,3907,[3969,9691],[3971,9692],[3593,9689],3528,[3530,3916],3920,3984,3984,[3529,3792],3592,[3594,9499],[2371,9500],[2370,9303],[2371,9306],2434,2370,1986,2371,2434,1986,2370,2370,2370,2435,2371,2435,2434,2434,2434,2371,2370,2371,1922,2434,2435,2371,[2435,10070],[1987,10071],[2371,10072],[2371,10074],9974,[3529,9878],[3592,9782],3592,3530,[3333,4044],[3529,4045],[3528,4046],[3529,4047,9592],[3908,9589],[3522,9590],3907,3907,3908,3394,3394,3908,[3520,9784],[3905,9973],9974,9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2760,9515],2761,2761,[2825,9802],[2760,9991],9992,9896,[9800,14],0,0,0,0,0,0,0,[9709,14],9710,[2759,9611],2825,2759,2825,2826,[2823,9610],9799,[9800,14],0,0,[9805,14],9806,[2824,9611],2759,2823,2824,2823,2762,[2824,9321],[2760,9324],[2824,9321],[2760,9322],[2826,9323],[2825,9324],[2761,9321],[2824,9322],[2760,9323],[2826,9324],[2760,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2829,9518],2831,2765,2766,2766,2765,2831,2829,2766,2831,2830,2832,[2768,9511],9512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9439],3062,3063,3062,3063,[3063,3883],3694,3695,[4013,9724],[4013,9721],[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9439],3063,3063,3062,3062,3063,3062,[3062,9152],[74,9153],[74,9154],0,0,0,[74,8957],8958,[3947,8959],4013,4012,3948,[3063,3821],3063,3062,3063,[3063,3820],4012,4013,[3063,3885],[3062,10106,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,[3164,10120],3163,3227,3164,3164,3228,3164,3227,3164,3227,[3164,10115],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2930,9439],2930,2930,2930,2931,2930,[2931,9820],[2930,10009],10010,10011,10012,10013,10014,10015,[2802,10111],[2930,10205],[2930,10206],[2930,10106],10010,9914,[9818,14],0,[9727,14],9728,[2931,9629],2930,2931,2931,2930,2802,2930,2802,2803,2866,2802,2802,2931,2802,2931,2931,2931,2931,2930,[2931,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[3949,9629],4013,3499,3563,3947,[4011,9529],[9530,14],0,0,[9535,14],[3948,9536],[3947,9339],[3950,9342],[4014,9434],9435,9436,9437,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15070,15199,15262,15263,15263,15262,15263,15263,15263,15263,15134,15262,15263,15262,15262,15262,15263,15262,15262,15007,15134,15327,0,0,0,0,0,15262,15263,15199,15198,15134,15198,15263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15263,15262,15263,15327,0,0,15260,15261,15260,15069,15133,15068,15005,15068,15068,15132,15133,15133,15261,15261,15260,15261,15324,15325,0,0,0,0,0,0,0,0,0,15132,15132,15005,15068,15261,15260,15261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10097,10098,10099,10102,0,0,0,0,0,0,10196,10197,0,0,0,0,10194,10195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10024,[2432,10116],[2433,10117],[2368,10118],[2432,10119],[2368,10120],2369,2433,2368,2369,2432,[2432,9541],9634,[9635,14],[9736,14],9737,[2369,10120,9542],2433,2369,2433,2433,2433,[2369,9637],9730,[9731,14],0,0,0,0,0,0,0,[9832,14],9926,9927,9928,9929,[2433,9734],2368,2368,2368,2368,[2432,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3920,9515],3919,3983,3920,[3917,2701,9511],[9512,14],0,0,0,0,0,0,0,0,[9709,14],9710,[3920,9515],3983,3918,3983,[3983,9706],9895,9993,9994,9997,[3920,10089],[3920,10090],9992,9896,[9800,14],0,0,0,0,[9613,14],9614,[3919,9515],[3919,2701],[3981,2893],2767,2830,[3919,2640,10185],[3920,10186],[3983,2638,10187],[2830,10188],[3919,2769],3918,3983,3920,[3983,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3971,9497],3906,3971,3971,[3906,9499],[3529,9500],3594,[3530,3853],3919,3920,3919,3920,[3594,3791],3529,[3594,9499],[3529,9399],[3530,9402],[2434,9500],2370,2434,2371,2434,2370,2434,2434,2370,2434,2370,2371,1986,2435,2371,2434,2371,2434,2434,2434,2371,2435,2434,[2370,10167],[2434,10168],[2370,10170],[2371,10070],[9974,9496],[3594,9589],[3528,9590],3593,3528,3593,3593,[3593,9592],[3907,9781],[3905,9782],3907,3971,3969,3905,3393,3969,3969,3906,[3971,10070],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2825,9611],2826,2760,2759,2761,[2823,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,[9613,14],9614,[2762,9611],2826,2826,2824,2761,[2823,9706],9895,9896,9899,9900,9901,9902,[2823,9707],2759,2824,2759,2826,[2825,9416],9417,9420,9417,9418,9419,9420,9417,9418,9419,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2767,9421],2767,2831,2768,2768,2831,2766,2831,2831,2767,[2766,9416],9512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9536],3063,3062,3062,3063,[3062,3818],4014,[3949,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9536],3063,3063,3062,3062,3062,[3062,9532],9817,[9818,14],0,0,0,[74,9053],9054,[3063,4074,9055],[3063,3885],[2998,3884],3948,3950,[3063,3822],3063,[3062,3819],3950,4012,[3062,3885],3063,[3062,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,3163,3228,3163,3163,3163,3163,3164,3228,3227,3228,3164,9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2802,9439],[2802,9339],[2930,9342],2930,2802,2931,2802,[2867,10106],[2931,10107],[2930,10108],[2802,10109],[2930,10110],[2931,10111],2931,2930,2803,2867,[2931,10106],[10010,9532],9625,[9626,14],[9631,14],9632,[2867,9629],2930,2931,2866,2930,2930,2930,2931,2931,2867,2931,2930,2802,2802,2931,2802,2930,2803,2802,[2930,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[3950,9725],3562,3562,4011,[3949,9532],9625,[9626,14],0,0,0,[9535,14],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15135,15263,0,15327,15327,0,0,0,15327,15327,15006,0,0,15327,0,15327,15327,0,15327,15007,15006,0,0,0,0,0,0,0,15327,15262,15263,15006,15263,15327,0,15004,15004,15068,15068,15068,15069,15068,15133,15004,15132,15068,15069,0,0,0,0,15327,0,0,0,0,15325,15325,15324,15197,15196,15196,15197,15197,15196,15008,15197,15196,15325,15325,15324,15325,0,0,0,0,0,0,0,0,0,0,0,15133,15069,15197,15196,15325,15324,15324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10194,10195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10024,[2368,10120],[2369,10212],[2369,10213],[2433,10214],[2432,10215],2368,1985,2433,2368,2368,2369,[2368,9637],9730,[9731,14],[9640,14],9641,[2368,9638],2368,2368,2368,2432,2433,[2433,9637],9826,[9827,14],0,0,0,0,0,0,[9832,14],9928,10022,10023,10024,[2369,10025],[2433,9830],2432,2433,2369,[2369,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3983,9611],3919,3983,[3983,9514],9703,[9704,14],0,0,0,0,0,0,0,0,[9805,14],9806,[3983,2573,9611],[3983,2639],3983,[3919,2637],[3919,2573,9802],[2765,9991],[3983,10089],[3917,10090],[3920,10093],[3919,10185],[3983,10186],[3919,10088],9992,9607,[9608,14],0,0,0,[9709,14],9710,[3919,9611],3983,3981,[3920,2701],[3919,2893],2766,[3919,2573],2767,[3918,2896],[3919,2704],3983,3919,3983,[3983,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3971,9593],3905,3522,3906,[3905,9595],[3971,9596],[3593,9497],3528,[3269,3980],3983,3983,3983,[3528,3793],3594,[3530,3789],[3592,3725],[3530,3726,9595],[3726,9596],[2370,9497],1923,2370,2434,2434,2434,2371,2370,2434,2371,2370,2370,2434,1987,2435,2371,2371,1923,2434,2435,2434,2371,2435,2434,2435,2434,[2434,10070,9592],[3530,9781],[3594,9782],3529,3530,3594,3593,[3592,9688],9877,[3907,9878],[3969,9782],3971,3456,3969,3906,3969,3906,3905,[3394,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2825,9611],2760,2762,2823,2825,2823,[2824,10088,9610],9703,[9704,14],0,0,0,0,0,0,[9709,14],9710,[2759,9611],2759,2826,2762,2825,[2823,9802],[2762,9991],9992,9995,9996,9997,[2823,9998],[2761,9803],2761,2761,2761,[2823,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2832,9518],2767,2832,2829,2765,2768,2829,2829,[2830,9511],9512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9439],[3062,9339],[3063,9340],[3063,9341],[3063,3882,9342],[4012,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,3062,3062,3062,3063,2999,[2998,9724],9913,9914,[9818,14],0,0,[74,9149],[74,9150],[3063,9151],3062,3063,[3063,3818],3950,[3063,3951],[3063,9339],[2999,4010,9342],3947,4011,[3063,3822],3063,[2999,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9640,9641,3228,3164,3227,3227,3228,3164,3227,3163,3228,3163,3163,9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[2930,9439],2931,2866,2930,2931,[2802,10203],[2802,10204],[2930,10205],[2931,10206],2930,2930,2931,2930,2802,2931,[2866,10106,9628],9721,[9722,14],[9727,14],9728,[2930,9725],2802,2931,2802,2867,2802,2867,2930,2802,2930,2931,2802,2802,2802,2866,2867,2930,2802,2866,[2931,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[3949,10016],[3563,9821],4013,3563,3948,[4014,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15006,15327,0,0,0,15006,15135,15134,0,0,15007,0,0,0,0,0,0,0,0,15134,15135,15135,15135,15135,15006,15071,15135,15135,0,0,15327,15134,15263,0,0,15133,15069,15005,15004,15068,15132,15004,15004,15068,15004,15132,15069,15005,15132,0,0,0,0,0,0,0,0,0,0,15261,15261,15261,15260,15261,15261,15072,15260,15261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15196,15009,15261,15261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10024,[2369,10120],2368,1984,2433,2369,2369,2368,2369,2433,2369,2369,2369,[2369,9538],[9539,14],0,[9736,14],9737,[2368,9638],2368,1920,2433,2369,2433,[2433,9733],9922,9923,[9827,14],0,0,0,0,[9832,14],9928,10024,[2433,10118],[2369,10119],[2433,10120],2433,2369,2433,2368,[2368,9541],9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[3983,2576,9611],[3983,2577],3920,[3983,9610],9799,9897,9898,[9800,14],0,0,0,0,0,[9805,14],9901,9902,[3983,2893,9707],[3920,2894],[3920,2573],2766,2765,[3920,2704],[3920,10185],[3919,10186],3920,3919,3920,3919,[3919,10088],9607,[9608,14],0,0,0,[9805,14],9806,[3983,9611],3919,3983,3919,3983,[3917,2701],2768,[3920,2703],3919,3920,[3919,2572],[3919,2574],[3983,2576],[3919,2577,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9788,[3906,9593],3906,3908,3908,[3908,9691],[3393,9692],[3592,9593],3530,[3594,4044],[3528,4045],3983,3984,[3528,3921],[3592,3790],3920,3983,[3920,9691],[3983,9692],[2434,9593],1923,2370,1923,2370,2370,2371,2370,2435,2370,2434,1923,2371,2434,2434,2435,2051,2434,2371,2435,2371,2371,2434,2114,2434,2371,[2434,9688],9877,[3528,9878],[3528,9782],3593,3593,3594,[3529,9784],[3594,9973],[9974,9496],[3969,9589],[3907,9590],3906,3905,3905,3906,3906,[3971,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2826,9611],2759,2759,2823,2824,2759,[2762,9610],9799,[9800,14],0,0,0,0,0,0,[9805,14],9806,[2761,9611],2826,2759,2759,2761,2761,2762,[2760,10088],[2760,10091],[2761,10092],[2824,10093],2824,2762,2823,2823,[2762,9514],9607,[9608,14],0,0,0,0,[9805,14],9897,9898,9899,9900,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2831,9515],2768,2832,2767,2765,2829,[2830,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9436,9437,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9439],3062,3062,3062,2998,[3062,9820],[3062,3819,10009],[10010,9532],9625,[9626,14],0,0,[9535,14],[3063,9439],3062,3062,[3063,3882],3950,[4013,9434],9435,9438,[4014,9439],[3948,9339],[3063,4015,9342],[2999,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9736,9737,3164,3227,3227,3228,3228,3228,3227,3164,3228,3228,3163,9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2802,9439],2866,2930,2930,2802,2802,2931,2802,2802,2802,2802,2802,2930,2930,[2802,9724],9625,[9626,14],0,[9535,14],[2931,9439],2866,2866,2931,2802,2802,2930,2802,2802,2802,2803,2802,2802,2802,2930,2930,2931,2931,2802,[2930,9820],[2931,10009],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3949,10111,9629],4014,4014,3947,4014,3435,[3948,9628],9817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15071,0,0,0,0,15006,0,15134,0,0,15071,0,0,0,0,0,0,0,0,15071,15199,15198,15199,15199,15199,15135,15006,15070,15134,0,0,15071,0,0,0,15197,15196,15197,15197,15004,15005,15133,15068,15005,15133,15068,15005,15069,15133,15069,15133,15068,15132,15069,0,0,15070,[15007,15450],[15071,15451],[15007,15451],[15135,15452],[15135,15451],[15135,15452],[15070,15453],15134,15006,15135,15071,15006,15071,15134,15007,15071,0,0,0,0,0,0,0,0,0,0,15261,15073,15070,15135,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[10024,9542],[2369,10120],2368,2433,2368,2432,1921,2369,2369,2368,2369,[2433,9348],[2369,9351],[2369,9443],[9539,14],0,0,[9832,14],9833,[2369,9638],2433,2432,2433,2433,2433,[2432,9829],[2433,10018],10019,9730,[9731,14],0,0,[9736,14],9737,[10024,9542],[2368,10120],[2368,10214],[2368,10215],2433,2433,2432,1921,2368,[2368,9637],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[3920,2636,9707],[3919,2703],3919,[3983,9706],9895,9993,9994,9896,[9800,14],0,0,0,[9613,14],9614,9997,[3920,9998],[3920,9803],3920,[3981,2701],2830,2766,[3919,2639],3920,3920,3920,3919,3920,[3983,9321],[3918,9324],9703,[9704,14],0,0,[9805,14],9901,9902,[3919,9707],3919,3919,3919,3919,[3919,2637],[2766,9321],[3983,2640,9324],3920,3920,[3981,2828],2765,[3920,2895],[3919,2704,9802],[3981,9991],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9787,9883,9884,[3969,9689],3908,3905,3969,3907,[3908,9499],[3527,9403],3528,3594,3529,[3592,4044],3920,3920,3983,3983,[3529,4047],[3529,4048,9787],[3919,9788],[2371,9593],2370,2434,2434,2370,2370,2050,2435,1923,2434,2435,2371,2371,2435,1986,2371,2371,2435,2370,2370,2370,2371,2435,2435,2370,2434,[2434,9784],[2434,9973],[9974,9496],[3530,9589],[3529,9590],3593,3594,3529,3528,[3530,10070,9592],[3971,9685],[3907,9686],3969,3971,3908,3908,[3971,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2761,9611],2761,2823,2759,2826,2823,[2760,9706],9895,9896,9897,9898,9899,9900,9899,9900,9901,9902,[2824,9707],2759,2824,2762,2823,2761,2761,2823,[2823,10187],[2761,10188],2826,2824,2759,2825,2762,[2761,9610],9703,[9608,14],0,0,0,[9805,14],9901,9993,9994,9995,9996,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2765,9611],2829,2832,2832,2831,2832,[2766,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3062,9536],3062,3063,[3062,3754],[3063,3755],3947,[3947,10106,9628],9721,[9722,14],0,0,0,[9535,14],[2999,9536],[3062,9339],[3063,3946,9342],[3950,9529],[9530,14],0,0,[9535,14],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[3227,9448],3163,3163,3164,3228,3228,3228,3164,3228,3227,[3227,9443],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2931,9536],2802,2866,2802,2802,2867,2931,2931,[2802,9339],[2930,9340],[2931,9342],2931,[2930,9433],[2930,9434],[9530,14],0,0,0,[9535,14],[2931,9439],2867,2931,2931,2802,2802,[2930,3340],[2931,3342],[2866,3343],[2802,3344],[2931,3345],2930,2802,2931,[2931,3405],[2930,3341],[2930,3345],2931,2802,2931,[2930,3406,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3948,9725],4014,3500,3947,3948,3564,[3563,9724],9913,9914,9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,15006,0,0,0,0,15006,15071,15070,0,0,15071,0,0,0,0,0,0,0,0,15135,15263,15263,15262,15262,15263,15198,15199,15071,15071,15135,15007,15006,0,0,0,15260,15261,15260,15261,15196,15197,15196,15196,15196,15133,15068,15133,15005,15004,15004,15132,15133,15069,15069,0,0,15070,15514,15515,15515,15516,15515,15516,15517,15071,15007,15070,15135,15071,15134,15134,15071,15007,0,0,0,0,0,0,0,0,15006,15134,15006,15134,15135,15071,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2369,10120,9638],2368,2368,2368,2368,2369,2433,2368,2369,2368,[2432,9538],9444,9447,[9539,14],[9832,14],9926,9927,9928,9929,[2368,9734],2433,2433,2369,2432,2369,2432,2432,[2433,10115,9541],9826,[9827,14],0,0,[9832,14],9833,[2369,10120,9638],2368,2432,2368,2433,2433,2369,2369,2433,[2433,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[3917,9998],[3920,2764,9803],[3983,2639],3919,[3917,9802],[3917,9991],[3918,10089],[3919,10090],9992,9896,[9800,14],0,0,[9709,14],9710,[3920,10093],3917,3920,3920,3919,[3919,2828],2767,[3919,2833],3918,3920,3919,[3920,9321],[3983,9416],9417,9420,[9512,14],0,0,[9805,14],9901,9997,[2831,9998],[3917,2639,9803],3983,3983,3981,3981,[3919,2828,9416],9417,9420,[3920,9518],[3920,2638],2831,[3981,2703],3983,3917,3919,[3919,10088],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[9979,9497],[3969,9980],[3908,9785],3394,3907,3969,3908,3905,[3906,9499],[3530,9500],3528,3530,3530,[3593,3788],3983,3919,[3592,3855],[3594,9787],[3528,9883],9884,[2370,9689],2434,2371,2371,2435,2434,2370,2434,2370,2371,2434,2370,2370,2435,1923,2371,2370,1923,2434,2371,2435,2370,2435,2435,2371,1922,2435,2370,[2434,10070,9592],[3528,9685],[3593,9686],3530,3594,3529,3593,[3528,9592],[3971,9781],[3520,9782],3969,3521,3969,3905,[3906,9592],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2761,9611],2823,2823,2760,2823,2759,[2761,9802],[2826,9991],9992,9993,9994,9995,9996,9995,9996,9997,[2762,9998],[2759,9803],2762,2760,2761,2762,2824,2824,2760,2762,2761,2823,2759,2760,2759,2826,[2759,9610],9607,[9704,14],0,0,[9805,14],9901,9997,[2761,10089],[2825,10090],[2759,10091],[2823,10092],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2830,9611],2832,2829,2832,2830,2830,[2768,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,9439],3063,[3062,4010],3498,3949,[4012,9724],9721,[9722,14],0,0,0,0,[9535,14],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[3227,9448],3227,3227,3228,3228,3164,3228,3164,[3164,9538],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2931,9533],2930,2802,2931,2802,[2931,9433],[2866,9434],9435,9436,9438,[2931,9439],[2931,9529],[9530,14],0,0,0,0,0,[9535,14],[2930,9536],2931,2930,2930,[2931,3405],3534,3599,3597,3599,3533,[2802,3342],[2931,3343,9339],[2930,3341,9340],[3533,9342],3534,3598,[2802,3342],[2802,3343],[2930,3344],3598,[3534,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3947,9536],3563,4011,3563,4011,3950,[3500,9820],[4014,10009],10010,10011,10012,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15198,0,0,0,0,15198,15198,15198,0,0,15135,0,0,0,0,0,0,0,0,15007,0,0,15327,0,15327,15263,15262,15198,15135,15007,15134,15070,0,0,0,15134,15071,15071,15006,15260,15261,15260,15261,15260,15132,15068,15132,15005,15005,15133,15132,15068,15004,15132,0,0,15006,15514,15516,15516,15515,15515,15710,15581,15135,15006,15006,15006,15071,15070,15007,15070,15070,0,0,0,0,15135,15007,15071,15134,15007,15007,15007,15006,15007,15007,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2433,9638],2369,2433,2368,2433,2432,2369,2432,2432,[2368,9443],[9539,14],0,0,[9832,14],9928,10022,10023,10024,[2432,10025],[2433,9830],2369,2433,2432,[2368,9348],[2433,9351],1920,2369,[2368,9733],9922,9923,9924,9925,9928,9929,[2433,9734],2368,2432,2433,2432,2369,[2433,9348],[2433,9351],[2432,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3983,10093],3983,[3920,2828],2765,[3919,2573],[3920,2574],[3983,2576],[3983,2573,10185],[3918,2640,10186],[3983,10088],9992,9607,[9608,14],0,0,[9517,14],[3983,9421],3919,3919,3920,[3920,2638],2832,2765,2768,[3983,2639],3983,[3917,9416],9417,[9512,14],0,0,0,0,[9613,14],9614,[9997,9515],[3919,2702,10093],[3920,2893],2768,[3920,2577],3983,3917,[3920,9514],9607,[9608,14],[9613,14],9614,2767,[3983,2641],3919,3919,3983,3920,[3983,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3906,10075,9593],3907,3907,3456,3971,3907,3907,3971,3906,[3905,9499],[3594,9500],3592,3530,[3594,3852],3984,[3593,3793],[3528,9595],[3592,9596],[9979,9497],[2370,9980],[2434,9785],2370,2370,2370,2434,2370,2434,2371,2435,1922,1922,2434,1922,2435,2370,2434,2434,2435,2371,2435,2370,1987,2434,2370,2434,2370,2434,2370,[2370,9398],[3529,9494],3528,3528,3530,[3592,3724],[3592,3725],[3983,9688],9877,[3907,9878],[3907,9782],3908,3905,3905,[3969,9688],9877,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,9901,9902,[2762,9707],2826,2761,2760,2761,2823,2825,2762,[2760,10088],[2760,10089],[2762,10090],[2823,10091],[2826,10092],[2762,10091],[2761,10092],[2762,10093],2760,2762,2760,2825,2823,2823,2762,[2759,9321],[2824,9322],[2825,9323],[2826,9324],2825,2761,2825,2761,2826,[2825,9610],9703,[9608,14],0,[9709,14],9710,[9997,9515],[2825,10093],[2826,10185],[2826,10186],[2759,10187],[2825,10188],[2826,10088],[9992,9514],9607,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2831,9611],2766,2765,2766,2768,2832,[2768,9610],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3063,3820,9536],4011,3950,4014,[4012,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,[3164,9545],[3164,9348],[3227,9349],[3164,9350],[3228,9351],[3227,9351],[3164,9443],9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2802,9629],2802,2867,2931,2802,[2866,9529],[9530,14],0,0,0,[9535,14],[9530,14],0,0,0,0,0,0,[9631,14],9632,[2930,9533,9339],[2930,9340],[2802,3340,9342],3598,3599,3533,3533,3535,3600,[3535,9529],9435,9436,9438,[3536,9439],3536,3535,3597,3598,3599,[3535,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[4011,9536],4013,3563,4013,3947,4012,3499,[3563,10106],[3563,10107],[3947,10108],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15263,0,0,0,0,15262,15262,15262,0,0,15135,0,0,0,0,0,0,0,0,15006,0,0,0,0,0,15327,15327,15263,15198,15199,15199,15070,0,0,0,15007,15070,15071,15006,15007,15007,15134,15007,15135,15196,15068,15005,15132,15069,15068,15005,15069,15133,15069,0,0,15135,15514,15710,15579,15711,15515,15517,15007,15007,15006,15007,15135,15071,15071,15071,15070,15006,0,0,15070,15134,15007,15006,15134,15007,15006,15135,15070,15071,15135,15070,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2368,9638],2369,2433,1920,2369,2368,1921,2368,[2432,9541],9634,[9635,14],0,[9832,14],9928,10024,[2432,10118],[2432,10119],[2368,10120],1984,2433,2369,2433,[2369,9443],9444,9447,[2369,9545],2368,[2433,9829],[2369,10018],10019,10020,10021,10024,[2432,10025],[2432,9830],1920,2433,2369,2368,[2432,9443],9444,9447,[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3983,9518],3983,[3981,2701],[3920,2893],[3983,2703],[3919,2702],2830,2832,[3983,2893],[3919,2577],[3918,10088],9703,[9704,14],0,0,0,[9517,14],[3981,9518],[3919,2637],[3983,2573],2829,2829,[3920,2893],[3917,2894],[3983,2893],[3983,9511],[9512,14],0,0,0,0,0,0,[9709,14],9710,[3920,10093,9611],3983,3919,[3983,2701],2829,[3920,2640],3920,[3919,9610],9703,[9704,14],0,[9517,14],[2766,9421],[3919,2705],3983,3983,3919,[3983,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9403],3907,3906,3392,3907,3908,3905,3392,3393,[3393,9691],[3969,9692],[3528,9497],3529,[3528,3916],3919,[3593,3857],[3530,9691],[3528,9692],[2435,10075,9593],2435,2370,2434,2434,2434,2434,2434,2434,2371,2435,2371,2435,2371,2435,2434,2435,2435,1923,2434,2435,2435,2435,2370,2371,2371,2371,2370,2435,[2434,9493],[3593,9494],3592,3592,3592,3593,[3528,3788],3984,[3919,9784],[3919,9973],[9974,9496],[3520,9589],[3971,9590],3908,3906,[3456,9784],[3907,9973],9974,9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9997,[2826,9998],[2825,9803],2761,2759,2823,2823,2761,2762,2826,2826,[2761,10185],[2762,10186],[2762,10187],[2762,10188],[2759,10187],[2760,10188],2826,2760,2823,2760,2761,2823,2760,[2823,9416],9417,9418,9419,9420,[2761,9421],2762,2824,2762,2826,[2826,9610],9607,[9704,14],0,[9613,14],9614,[2823,10093,9611],2824,2826,2824,2762,2760,2760,[2761,10088,9610],9703,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2832,9611],2831,2767,2832,2829,2765,[2767,9610],9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[4011,9533,9339],[4012,9340],[3950,9532,9342],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9544,9444,9445,9446,9447,9447,9539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2931,9629],2802,2930,2930,[2931,9532],9625,9617,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9436,9438,[3535,9536],3536,3535,3598,3598,[3600,9532],9721,[9722,14],0,0,[9535,14],[3535,9536],3536,3597,3599,3535,[3600,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3564,9533],4014,4011,4012,3947,3948,4012,[3499,10203],[3563,10204],[3563,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15327,0,0,0,0,0,0,0,0,0,15006,0,0,0,0,0,0,0,0,15135,15006,0,0,0,0,0,0,15327,15263,15262,15263,15070,0,0,0,15199,15198,15199,15199,15071,15070,15134,15135,15134,15261,15197,15196,15197,15196,15009,15009,15196,15196,15197,0,0,15007,15578,15581,15007,15578,15579,15581,15006,15070,15006,15071,15134,15070,15070,15006,15135,15007,0,0,15006,15071,15135,15070,15070,15134,15071,15134,15007,15006,15198,15198,15199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2432,9734],2369,2369,2432,2432,2368,2368,2432,[2369,9538],[9539,14],0,[9640,14],9641,10024,[2432,10120],[2432,10214],[2368,10215],2433,2432,2433,2432,[2368,8969],8970,[74,8971,14],[9640,14],9641,[2433,9542],2433,2432,[2433,10115],[2433,10116],[2368,10117],[2368,10120],2433,2368,2368,2433,2368,[2432,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3983,9515],3920,3983,3983,[3919,2638],2832,[3919,2703],3920,[3920,2701],[3918,2639,9511],[9512,14],0,0,0,0,[9709,14],9710,[2765,9515],2768,2766,[3919,2703],3919,3920,[3917,9514],9607,[9608,14],0,0,0,0,0,0,0,[9517,14],[3917,9518],3983,3981,3983,[3919,2892],2765,[3920,2573],[3983,2574,9610],9607,[9608,14],0,0,[9517,14],[3920,9421],[3983,9321],[3983,9324],[3919,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9500],3392,3906,3908,3907,3971,3971,3971,[3908,9787],[3907,9788],[3528,9593],3530,[3594,3980],3983,[3528,3921],3529,[3593,9499],[2371,9500],2371,2435,2434,2370,2114,2434,2434,2370,1987,2434,2434,2435,2434,2371,2114,2435,2371,2435,2371,2371,2434,2371,2371,2435,2178,2434,2370,[2371,9496],[3983,9589],[3592,3791,9590],3529,3528,3530,3530,[3530,3916],3920,3919,3984,[3919,10070,9592],[3906,9685],[3520,9686],3908,3906,3905,3969,[3457,10070],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2826,10089],[2760,10090],[2759,10093],2825,2759,2761,2761,2823,2760,2760,2826,2826,2824,2823,2761,2762,2759,2826,2762,2823,2759,2826,2824,2824,2759,[2826,9511],[9512,14],0,0,0,0,[9517,14],[2762,9518],2824,2823,2825,[2824,9610],9703,[9608,14],0,[9709,14],9710,[2825,9611],2760,2761,2761,2759,2762,[2824,9321],[2759,9706,9324],9703,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2830,9707],2767,2765,[2829,64],2765,2768,[2832,9706],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9436,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2802,9629],2930,2802,2802,[2866,9628],9721,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[3599,9533],3533,3599,3536,[3536,9628],9625,[9626,14],0,0,[9631,14],9632,[3598,9533],3598,3597,3533,[3534,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3562,9725],3562,3950,4012,4014,4012,3563,3630,3631,3948,[3949,10106,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,15007,15070,15134,15006,15070,15134,15006,15134,15007,15135,15071,15007,15071,15006,15071,15134,15070,15070,0,0,0,0,0,0,0,0,15007,15070,0,0,0,0,0,0,0,0,15327,0,15007,0,0,0,15263,15262,15262,15263,15198,15198,15199,15007,15007,15007,15261,15261,15260,15261,15261,15073,15261,15260,15261,0,0,15006,15007,15006,15134,15006,15007,15006,15070,15070,15007,15070,15134,15071,15135,15135,15134,15071,0,0,15071,15134,15007,15071,15071,15134,15071,15135,15199,15199,15262,15262,15263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2432,9545],[2433,9348],[2368,8775],[2432,8776],[2432,8777],[2432,9350],[2433,9351],[2368,9538],[9539,14],0,0,[9736,14],9737,[2432,10120],2433,2369,2368,2432,2369,2433,2433,[2368,9065],9066,[74,9067,14],[9736,14],9737,[2368,9638],2368,2369,1985,[2368,10212],[2369,10213],2369,2433,2368,2369,2369,2432,9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3983,9611],3920,[3919,2572],[3919,2573],2830,[3920,2833],3918,3919,[3920,9511],[9512,14],0,0,0,0,0,[9805,14],9806,[2830,9611],2831,2765,[3919,2640],3920,3983,[3919,9610],9703,[9704,14],0,0,0,0,0,0,0,[9613,14],9614,[3920,9515],3920,3920,3920,[3920,2701],2831,[2766,9706],9607,[9608,14],0,0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3908,9497],3908,3971,3908,3905,3908,[3905,9787],[3906,9883],9884,[3594,3791,9689],[3594,3790],3983,3920,[3529,3856],3592,[3594,9691],[3530,9692],[2371,9497],2434,2371,2371,2434,2371,2435,2371,2434,2434,2371,2371,2434,2434,2370,2435,2370,2434,2434,2370,1922,2371,2435,2370,2434,2370,2434,[2371,9592],[3919,9685],[3983,9686],[3530,3725],[3528,3726],[3592,3727],[3594,3728],3983,3983,[3529,4045],[3594,4046,9397],[4046,9398],[3971,9494],3971,3907,3906,3969,3906,[3905,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9897,9898,9901,9997,[2823,10093],[2761,10185],[2825,10186],2762,2825,2761,2762,2825,2823,2824,2762,2825,2825,2762,[2826,9321],[2826,9324],[2761,9321],[2823,9322],[2826,9323],[2762,9324],2760,2761,2825,2823,2761,[2761,9514],9607,[9608,14],0,0,0,0,[9613,14],9614,[2823,9515],2762,2759,[2762,9610],9607,[9704,14],0,[9613,14],9614,[2826,9611],2826,2762,2762,2826,[2762,9416],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],[9901,9514],[9902,9703],[2831,9704,9803],2831,2831,2767,2767,2768,[2766,9709,9802],[9895,9710],[9896,9515],9800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2802,9629],2930,2930,2930,[2930,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[3598,9629],3597,3598,3534,[3599,9628],9721,[9722,14],0,0,[9727,14],9728,[3534,9629],3598,3599,3533,[3599,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[4014,9439],3949,3436,[3950,9339],[3947,9342],4013,3563,3694,3695,4013,[3564,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15198,15198,15199,15198,15198,15199,15198,15198,15198,15199,15199,15198,15199,15199,15199,15198,15199,15199,0,0,0,0,0,0,0,0,15006,15071,0,0,0,0,0,0,0,0,0,0,15135,0,0,0,15327,15327,15327,0,15263,15262,15262,15199,15198,15070,15070,15007,15071,15134,15007,15135,15070,15135,15006,0,15071,15135,15135,15071,15135,15071,15007,15007,15134,15070,15071,15007,15134,15007,15135,15007,15007,15071,0,0,15198,15135,15006,15007,15071,15071,15006,15007,15262,15262,15327,0,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,[74,8871],8872,[74,8873],9446,9447,[9539,14],0,0,0,0,[9544,14],[2369,9448],[2433,9348],[2433,9349],[2369,9350],[2433,9351],2369,2369,2432,[2432,9161],[74,9162],[74,9163,14],[9640,14],9641,[2432,9734],2368,2368,2433,2369,2369,2432,2368,2432,2433,[2368,9442],[2368,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3983,9707],3920,[3983,2828],2765,2768,[3920,2704],[3983,2637],[2765,9514],9703,[9704,14],0,0,0,0,[9805,14],9901,9902,[3920,2701,9707],[3919,2893],2767,2831,[3983,2573],[3983,2639],[3920,9511],[9512,14],0,0,0,0,0,0,0,0,[9709,14],9710,[3920,9611],3983,3983,3983,3983,[3920,2828],[2832,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3907,9593],3521,3905,3908,3393,[3522,9595],[3969,9596],[9979,9497],[3984,9980],[3984,9785],3919,3919,3920,[3529,3791],3333,[3529,9787],[3592,9788],[2371,9593],2371,2371,2370,2434,2435,2434,2435,2370,2370,2371,2371,2370,2434,2371,2434,2435,2370,2435,2371,2434,2434,2435,2370,2434,2434,2370,[2370,9592],[3983,9589],[3984,9590],3984,3983,[3529,4046],[3332,4047],[3592,4048],[3592,3855],3530,[3530,9493],[3905,9494],3971,3522,3457,3969,3971,[3905,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9993,9994,9997,[2761,10093],2760,2826,2759,2824,2823,2762,2823,2761,2760,2759,2761,2762,2760,[2762,9416],9417,9420,9417,9418,9419,9420,[2760,9421],2760,2760,2760,2762,[2824,9610],9703,[9704,14],0,0,0,0,[9709,14],9710,[2762,9611],2825,2760,[2824,9610],9703,[9608,14],0,[9709,14],9710,[2825,9611],2761,2826,2759,[2760,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,[9997,9610],[9998,9799],[2768,9897],[2767,9898],[2832,9899],[2830,9900],[2768,9897],[2766,9898],[2767,9900],[9991,9806],[9992,9611],9896,9800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[2931,9629],2866,2930,2802,[2931,9724],9913,9914,9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[3533,9629],3534,3599,3597,[3597,9628],9817,[9818,14],0,0,[9823,14],9824,[3533,9629],3535,3598,3599,[3533,9820],[3599,10009],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[4012,9536],[3949,9434],9435,9438,[4013,9439],3500,3949,3499,3563,[3947,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15263,15263,15262,15262,15262,15263,15262,15262,15263,15262,15262,15263,15262,15263,15262,15263,15263,15263,0,0,0,0,0,0,0,0,15006,15135,0,0,15135,15134,0,0,0,0,0,0,15134,0,0,0,0,0,0,0,15327,0,15327,15262,15263,15070,15070,15006,15134,15007,15070,15134,15006,15007,15071,15071,15134,15071,15007,15071,15134,15135,15134,15134,15071,15006,15006,15007,15070,15071,15006,15070,15135,15070,0,0,15263,15199,15070,15071,15071,15006,15070,15006,0,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,74,74,0,0,0,[9832,14],9924,9925,[9827,14],0,[9544,14],9444,9445,9446,9447,[2433,9545],[2432,9348],[2369,9351],[2369,9443],[9539,14],0,0,[9544,14],[2433,9545],2432,2368,2433,1920,2368,2369,2432,2369,2369,[2368,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3983,9421],[3983,2637],2830,[3920,2893],[3983,2897],3920,[3920,2828],[2829,9610],9799,[9800,14],0,0,0,[9709,14],9710,9997,[3920,9998],[3919,9803],3920,[3917,2702],2832,2766,[2766,9511],[9512,14],0,0,0,0,0,0,0,[9805,14],9897,9898,9806,[3983,9611],3920,3919,3981,3920,[3981,2892,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3456,9593],3906,3971,3456,3971,[3908,9691],[3906,9692],[3984,10075,9593],3919,3984,3983,3984,3919,[3530,3855],[3592,9787],[3530,9883],9884,[2435,9689],2370,2371,2370,2434,2434,2434,2435,2434,2434,2370,2370,2371,1987,2434,2434,2435,2370,2434,2371,2434,2435,2370,2371,2371,1987,2435,[2371,9592],[3983,9781],[3984,9782],3920,[3528,3855],3528,3594,3592,3594,[3530,9496],[3457,9589],[3907,9590],3969,3457,3907,3971,3905,[3969,9592],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2759,10089],[2823,10090],[2823,10093],2761,2760,2825,2825,2762,[2823,9321],[2824,9322],[2761,9323],[2824,9324],[2823,9321],[2826,9322],[2825,9323],[2760,9324],[2826,9511],[9512,14],0,0,0,0,0,0,[9517,14],[2759,9518],2761,2824,2760,[2823,9610],9607,[9608,14],0,0,0,0,[9613,14],9614,[2824,9611],2760,2826,[2824,9610],9703,[9704,14],0,[9613,14],9614,[2823,9611],2761,2759,[2761,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[2768,10093,9706],9895,9993,9994,9995,9996,9993,9994,9996,9902,[2831,10088,9707],9992,9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[2930,9725],2802,2930,2802,[2930,9820],[2930,10009],10010,10011,10012,9914,[9818,14],0,0,0,0,0,0,0,0,[9823,14],9915,9916,9919,9920,[3536,9725],3598,3536,3535,[3534,9724],9913,9914,9915,9916,9919,9920,[2931,9725],[2802,3470],3534,3600,3597,3536,[3599,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[9530,14],0,0,[9535,14],[4011,9536],[3564,9339],[3948,9342],[3949,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,0,0,15327,0,0,0,0,0,15327,0,0,0,0,0,0,0,15327,0,0,0,0,0,0,0,0,0,15070,15135,15006,15134,15135,15134,15134,15134,15071,15006,15071,15070,15134,0,0,0,0,0,0,0,0,0,0,0,15327,15007,15071,15070,15070,15135,15006,15006,15134,15070,15134,15071,15007,15134,15007,15071,15135,15071,15006,15135,15135,15070,15134,15134,15199,15199,15199,15198,15198,15199,0,0,0,15262,15070,15134,15134,15134,15070,15198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],8963,8964,9927,[9827,14],0,0,[9832,14],9928,10020,10021,9923,9924,9925,[9827,14],0,0,0,[9544,14],9444,9447,[9539,14],0,0,0,0,[9544,14],[2368,9545],2369,2369,2432,2432,2369,2369,[2368,9442],[2433,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2765,9518],[3919,2703],3920,3983,3919,[3981,2892],[3918,2769,9706],9895,9896,[9800,14],0,0,[9613,14],9614,[3983,10093,9515],3983,3981,3919,3983,[3917,2701],[3983,2893,9514],9703,[9704,14],0,0,0,0,0,0,[9805,14],9901,9993,9994,9902,[3920,9707],3920,3919,3920,[3983,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3457,9689],3588,3589,3906,3458,3905,[3908,9499],[3982,9403],3919,3920,3984,[3530,4045],[3594,4049],[3530,9595],[3592,9596],[9979,9497],[2434,9980],[2370,9785],2371,2435,2370,2434,2370,2435,2370,2434,2371,2435,2370,1923,2371,1987,2435,2435,2435,2434,2371,2371,1923,2371,2370,2434,2434,2434,[2435,9688],9877,[3919,9878],[3530,3855,9782],3529,3529,3530,3528,3593,[3593,9493],[3971,9494],3969,3969,3908,3907,3907,3907,[3907,9688],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,9997,[2760,10093],[2762,10185],[2825,10186],2760,2823,2761,2761,2826,[2760,9416],9417,9418,9419,9420,9417,9418,9419,9420,[9512,14],0,0,0,0,0,0,0,[9613,14],9614,[2824,9515],2759,2824,[2760,9610],9703,[9704,14],0,0,0,0,[9709,14],9710,[2761,9611],2760,2760,[2760,9610],9799,[9800,14],0,[9709,14],9710,[2762,9611],2825,2825,[2760,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2767,10093,9515],[2766,9802],[2766,9991],[2765,10089],[2766,10090],[2765,10091],[2829,10092],[2831,10089],[2830,10090],[2766,10092],[2766,9998],[2829,9803],[2832,10088,9514],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[2930,10016],[2802,9821],2930,2931,2930,2802,2802,[2931,10106],[2802,10107],[2802,10108],10010,9914,[9818,14],0,0,0,0,0,0,[9823,14],9919,10011,10012,10015,[3534,10016],[3600,9821],3599,3597,3535,[3597,9820],[3597,10009],10010,10011,10012,10015,[2930,10016],[2930,9821],[2802,3406],3600,3536,3534,3536,[3534,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15135,15135,15006,15007,15007,15135,15006,15134,15135,15071,15006,15007,15134,15006,15135,15135,15135,15006,15006,15006,15070,15006,15135,15135,15006,15134,15006,15071,15071,15006,15135,15134,15071,15134,15006,15006,15135,15070,15006,15070,15006,15134,15007,15070,15134,15070,15007,15262,15263,15262,15262,15263,15263,0,0,0,0,15198,15134,15070,15007,15135,15262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,9059,9060,9061,9923,9924,9925,9928,10024,[2432,10116],[2369,10117],10019,10020,10021,9923,9924,9925,[9827,14],0,0,0,0,0,0,0,0,0,[9544,14],[2368,9448],2432,2432,2432,2369,2368,[2433,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3919,9515],3920,3920,3981,[3919,2637],[3983,2833,9802],[3983,9991],9992,9607,[9608,14],0,[9709,14],9710,[3919,9611],3920,3919,3920,3920,3920,[3919,9610],9607,[9608,14],0,0,0,0,0,[9805,14],9901,9997,[3983,10089],[3920,10090],[3920,9998],[3920,9803],3920,3920,3919,[3920,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3907,9403],3652,3653,3907,3969,3908,3907,[3908,9499],[3920,9500],[3528,4048],[3529,3856],3530,3529,[3528,9691],[3592,9692],[2434,10075,9593],2370,2370,2435,2435,2435,1986,2435,2434,2435,2242,2243,2371,2435,2371,2434,2370,2434,2370,2435,2435,2434,2370,1923,2435,2370,2434,2371,2371,[2370,9784],[2434,9973],[9974,9496],[3529,9589],[3594,9590],3529,3594,3529,[3528,9496],[3520,9589],[3906,9590],3905,3907,3586,3587,3906,3906,[3905,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2825,10093,9515],2823,2759,2823,2760,2823,2761,2824,[2825,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2762,9611],2760,2824,[2761,9610],9799,[9800,14],0,0,0,0,[9805,14],9806,[2823,9611],2762,2761,[2825,9706],9895,9896,9897,9898,9806,[2824,9611],2760,2761,[2824,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2831,9611],2832,2765,[2832,10185],[2830,10186],[2767,10187],[2765,10188],[2765,10185],[2766,10186],[2765,10188],2766,2829,[2832,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2930,10111,9629],2802,2931,2931,2802,2931,2866,2931,2802,[2931,10203],[2931,10204],[2931,10106],[10010,9532],9625,[9626,14],0,0,0,0,[9823,14],9919,10015,[2802,3532,10107],[3535,10108],[3600,10111],3534,3536,3597,3536,3536,3533,3599,[3597,10106],[3599,10107],[3600,10108],[2802,10111],2802,2802,[2802,3596],3599,3600,3533,3600,[3597,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,0,0,0,0,0,0,0,0,0,0,0,15071,[15134,3051],[15071,2987],[15006,2991],15007,0,0,0,0,0,0,0,0,0,0,15199,15134,15071,15199,15198,15070,15006,15071,15007,15199,15198,15198,15198,15198,15199,15198,15199,15199,15198,15198,15199,15199,15199,15199,15198,15199,15199,15198,15199,15198,15135,15070,15198,15199,15198,15199,15199,15198,15199,15199,15198,15198,15199,15198,15199,15199,15198,15199,0,15327,0,15327,15327,15327,0,0,0,0,15262,15199,15199,15198,15199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[10024,9542],[2368,9155],[2432,9156],[2433,9157],10019,10020,10021,10024,[2432,10120],[1921,10212],[2433,10213],[2433,10115],[2369,10116],[2368,10117],10019,10020,10021,9923,[9827,14],0,0,0,0,0,0,0,0,[9640,14],9641,[2433,9542],2369,2368,2368,[2369,9541],9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3920,9611],3981,[3919,2637],[3920,2573],2767,[3983,2704],3919,[3919,10088,9514],9703,[9704,14],0,[9805,14],9806,[3920,9611],3983,3920,3983,3981,3919,[3919,9610],9703,[9704,14],0,0,0,0,[9709,14],9710,[9997,9515],[3981,2639,10093],[3920,10185],[3981,10186],3919,3920,3919,3919,3917,[3920,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3906,9500],3905,3394,3905,3969,3905,[3907,9595],[3458,9596],[3593,9497],3592,3593,3529,3530,[3594,9499],[2434,9500],2435,2435,2434,1922,2435,2370,2370,2434,2371,2306,2307,2434,1986,2371,2371,2370,2371,2435,2434,2434,2434,2371,2434,2370,2371,2242,2243,2434,2435,2435,[2435,10070,9592],[3593,9685],[3528,9686],3594,3594,3594,[3594,9688],[3906,9685],[3971,9686],3905,3906,3650,3651,3971,[3969,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2824,9611],2824,2824,2824,2759,2759,2824,[2824,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2823,9611],2762,2826,[2762,9706],9895,9896,[9800,14],0,0,[9805,14],9901,9902,[2759,9707],2826,2826,[2824,9802],[2823,9991],9992,9993,9994,9902,[2759,9707],2761,2824,[2762,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2766,9611],2766,2830,2832,2831,2830,[2766,64],2829,2830,2830,2829,2766,[2767,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2931,9439],2802,2930,2931,2930,2867,2930,2930,2867,2802,2867,2802,[2930,10106,9628],9721,[9722,14],0,0,0,[9631,14],9632,[10015,9533],[2930,10111],[2802,3596,10203],[3533,10204],3534,3599,3598,3599,3534,3534,3600,3597,3533,[3600,10203],[3600,10204],[2802,3342],[2931,3343],[2866,3344],3599,3600,3534,3536,3535,[3533,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,0,0,0,0,0,0,15071,15071,15135,15134,15135,15007,[15070,3242],3246,3245,[15006,3054],0,0,0,0,0,0,0,0,0,0,15263,15070,15135,15262,15262,15198,15199,15199,15199,15262,15262,15263,15262,15262,15263,15262,15262,15263,15262,15263,15262,15263,15262,15263,15262,15262,15263,15263,15263,15262,15134,15070,15263,15263,15262,15262,15263,15262,15262,15262,15263,15263,15262,15262,15262,15262,15262,15262,0,0,0,0,0,0,0,0,0,0,15327,15263,15262,15262,15262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2368,10120,9638],[2369,9251],[2368,9252],[2369,9253],[2368,10115],[2433,10116],[2433,10117],[2369,10120],2433,2369,2369,2433,[2368,10212],[2368,10213],[2433,10115],[2433,10116],[2369,10117],10019,9923,[9827,14],0,0,0,0,0,0,0,[9736,14],9737,[2433,9638],2433,2369,2432,[2369,9637],9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3920,9707],3919,[3919,2828],2767,[3983,2833],3919,3918,[3920,9610],9799,9897,9898,9901,9902,[3920,2764,9707],[3983,2639],3919,3919,3920,3983,[3920,9610],9799,[9800,14],0,0,0,0,[9805,14],9806,[2830,10093,9611],2829,[3983,2573],[3919,2640],3983,[3920,2637],[3920,2573],[3919,2639],[3918,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9500],3905,3908,3908,3392,[3908,9691],[3971,9692],[3528,9593],3529,3529,3529,3528,3529,[3592,9499],[2370,9500],[2371,9303],[2435,9306],2371,2370,2434,2434,2371,2434,2435,2370,2434,2370,2370,1987,2370,2371,2434,2371,2178,2434,2435,1922,2434,2371,2306,2307,2371,2371,2435,[2371,9493],[3530,9494],3592,3530,3528,3592,[3530,9493],[3969,9494],3905,3969,3907,3969,3907,[3905,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2762,9707],2825,2760,2760,2825,2759,2762,[2759,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2762,9611],2762,2825,[2762,9802],[2826,9991],9992,9896,9897,9898,9901,9997,[2760,9998],[2759,9803],2826,2825,2762,2826,[2825,10088],[2824,10089],[2826,10090],[2759,9998],[2762,9803],2824,2823,[2761,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2829,9611],2830,2831,2830,2768,2831,2829,2830,2831,2832,2766,2765,[2830,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2931,9439],2931,2930,2931,2802,2930,2867,2931,2931,2802,2867,[2930,9628],9817,[9818,14],0,0,0,[9727,14],9728,[2802,10111,9629],2930,[2802,3660],3599,3597,3599,3534,3535,[3535,9339],[3600,9340],[3536,9342],3536,3534,3597,3533,3597,3536,3533,3597,3598,3598,3533,3534,[3533,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,0,0,0,0,0,15007,15135,15070,15071,15070,15071,[15071,3051],3243,3243,3181,[15135,3118],0,0,0,0,0,0,0,0,0,0,0,15134,15071,0,0,15263,15262,15262,15263,0,15327,0,15327,15327,15327,15327,0,0,15327,0,0,0,15327,0,0,15327,0,15327,15327,15327,15134,15071,15327,0,15327,15327,0,0,15327,15327,15327,0,15327,0,15327,0,15327,15327,0,0,0,0,0,0,0,0,0,0,0,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2433,9638],2433,1984,2433,2432,[2368,10212],[2433,10213],2368,2369,2368,2433,2368,2432,2369,2369,[2433,10212],[2433,10213],[2433,10115],10019,9634,[9635,14],0,0,0,0,0,0,[9736,14],9737,[2368,9638],2368,1984,2432,[2432,9637],9826,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3919,9421],[3919,2638],2831,[3983,2893],[3983,2897],3981,3983,[3983,2637,9706],9895,9993,9994,9997,[3920,9998],[3920,2636,9803],[3983,2833],3983,3920,3919,3920,[3917,9706],9895,9896,9897,9898,9899,9900,9901,9902,[3919,2702,9707],[3983,2894],[3920,2893],[3920,2897],3919,[3919,2892],2830,[2765,9514],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3971,9497],3906,3905,3905,[3971,9595],[3906,9596],[3592,9593],3594,3332,3530,3594,3528,3530,[3529,3789,9499],[3920,9399],[3528,3793,9402],[2371,9500],2371,2434,2371,2435,1923,2371,1986,2435,1987,2434,2370,2434,2434,2435,2434,2370,2434,2434,2370,2370,2434,2434,2435,2370,2371,[2434,9496],[3594,9589],[3530,9590],3529,3529,3593,[3593,9496],[3969,9589],[3907,9590],3905,3971,3906,3905,[3969,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2762,9421],2760,2824,2761,2826,2824,2825,[2761,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2760,9611],2759,2826,2824,2826,[2823,10088],9992,9993,9994,9997,[2759,10093],2823,2823,2762,2759,2823,2761,2760,[2761,10185],[2760,10186],2762,2824,2760,2824,[2826,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2767,9611],2832,2831,2830,2765,2766,2829,2829,2829,2829,2832,2831,[2830,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2931,9536],2930,2930,2930,2866,2930,2931,2866,2931,2802,[2930,9724],9913,9914,9915,9916,9917,9918,9824,[2931,9629],2930,2931,[2802,3469],3598,3534,[3536,9433],[3600,9434],9435,9436,9438,[3534,9536],3534,3533,3597,3598,3597,3599,3600,3536,3536,3600,3536,[3535,9820],[3534,10009],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15135,15007,15007,15135,15006,15007,15071,15071,15070,15070,15006,[15135,3306],[15007,3307],[15134,3308],[15135,3311],15071,0,0,0,0,0,0,0,0,0,0,0,15135,15135,0,0,0,15327,0,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2432,9734,9348],[2432,9351],2432,2368,2433,2368,2368,2433,[2368,9348],[2432,9351],2369,2433,2433,2368,1985,2369,2369,2368,[2368,10115],9826,[9827,14],0,0,0,0,0,0,[9832,14],9833,[2369,9638],2432,2369,2432,[2432,9733],9922,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2765,9518],[3919,2703],3920,3981,3917,[3920,2572],[2766,9802],[2767,9991],[3920,2769,10089],[3919,10090],[3981,10093],3920,[3920,2700],2832,[3919,2640],[3920,2638],[3983,2573],[3919,2640],[3919,9802],[3920,9991],9992,9993,9994,9995,9996,9997,[3983,9998],[3918,9803],3983,3919,3919,3920,3920,[3920,2701],[3920,2893,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3393,9689],3908,3969,3905,[3908,9691],[3522,9692],[3592,9689],3593,3594,3592,3528,3530,3593,[3529,3980],3984,[3529,3855,9595],[3593,9596],[2370,9497],2435,2434,2434,2371,2371,2435,1923,2370,2370,2370,2435,2434,2370,2435,2434,1986,2435,2434,2370,2435,2435,2434,2435,2435,[2435,9398],[3594,9494],3592,3594,3528,3529,[3528,9592],[3393,9685],[3905,9686],3908,3456,3969,[3969,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2761,9518],[2823,9321],[2825,9322],[2759,9323],[2761,9324],[2825,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2760,9707],2826,2823,2760,2760,2762,[2759,10088],[2823,10089],[2762,10090],[2761,10093],2826,2825,2760,2759,[2761,9321],[2826,9324],2824,2824,2825,2826,2759,2760,2759,2759,[2761,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2831,9611],2829,2766,2766,2829,2767,2829,2765,2831,2832,2768,2765,[2832,9610],9799,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2930,9533],2802,2802,2867,2802,2866,2930,2930,2930,[2802,9820],[2930,10009],10010,10011,10012,10013,10014,9920,[2802,9725],2931,2802,2930,[2930,3596],3535,[3600,9529],[9530,14],0,0,[9631,14],9632,[3533,9533],3533,3535,3598,3598,3598,3535,3597,3536,3600,3600,3597,3535,[3533,10106,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15071,15007,15134,15134,15135,15006,15135,15134,15134,15007,15134,15135,15071,15007,15071,15070,0,0,0,0,0,0,0,0,0,0,0,15135,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15007,15135,15071,15070,15071,15070,15070,15135,15135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15070,0,0,0,0,15070,15071,15006,15070,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,9447,[2432,9545],2368,2368,2368,2368,[2432,9538],[9444,14],[9447,14],[2368,9545],2369,2369,2368,2432,2369,2432,2368,2432,9922,9923,[9827,14],0,0,0,0,[9832,14],9928,9929,[2432,9734],2369,2368,2368,[2368,9829],[2432,10018],10019,9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3983,9515],3983,3919,3920,[3983,2702],2831,2765,[3920,2704,10185],[3920,10186],3919,3919,[3920,2764],2829,[2831,9321],[2765,9324],2832,2765,[3918,2639],3919,[3920,10088],[3917,10089],[3919,10090],[3919,10091],[3983,10092],[3983,2700,10093],[3983,2639],3917,3920,3983,3920,3983,3920,3919,[3920,9802],[3917,9991],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3907,9403],3905,3971,3905,3905,[3969,9499],[3529,9403],3593,3529,3593,3594,3332,3528,[3594,3853],3920,[3333,3792,9691],[3592,9692],[2371,9593],2434,2434,2435,2435,[2371,9303],[2434,9304],[2371,9305],[2435,9306],2435,2370,2370,2370,2435,2371,2435,2371,2370,2435,2370,2434,2370,1986,2435,[2435,9493],[3920,9494],[3592,3728],[3594,3729],3530,3269,3592,[3528,9592],[3971,9589],[3522,9590],3393,3969,3907,[3969,9592],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9418,9419,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2826,9421],2759,2823,2823,2825,2762,2823,[2824,10185],[2824,10186],2825,2759,2823,2823,[2823,9416],9417,9420,[2823,9421],2823,2825,2762,2760,2759,2759,[2825,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[2765,9707],2831,2832,2768,2765,2832,2830,2832,2832,2766,2765,2767,[2831,9706],9895,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2802,9629],2930,2931,2930,2866,2803,2802,2930,2930,2930,2930,[2930,10106],[2802,10107],[2867,10108],[2930,10109],[2930,10110],[2930,10016],[2931,9821],2930,2930,2931,[2931,3660],[3534,9529],[9530,14],0,0,0,[9631,14],9632,[3600,9629],3600,3535,3534,3533,3597,3599,3534,3534,3535,3599,3534,[3600,9433],[3597,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15006,15198,15198,15199,15199,15071,15071,15007,15007,15007,15135,15135,15006,15071,15071,15134,0,15006,15071,15070,15134,0,0,0,0,0,0,15007,15007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15071,15134,15070,15006,15006,15070,15135,15070,15070,15134,0,0,0,0,0,0,0,0,15003,15067,15130,15003,15067,15131,15002,15003,15130,15066,15003,0,0,0,0,15198,15007,15135,15071,0,0,15135,15134,15135,15071,15135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2369,9545],[2433,9348],[2369,9351],[2433,9538],[9539,14],0,0,[9544,14],[2369,9448],2433,2368,2369,2369,2433,2433,2432,[2368,10018],10019,9634,[9635,14],0,0,[9640,14],9641,[10024,9542],[2432,10025],[2432,9830],2433,2433,2369,2368,2432,[2432,10115,9541],9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3983,9518],3919,3919,3919,[3920,2637],2765,[3920,2833],3919,3920,3920,3917,[3983,2828],[2767,9416],9417,9420,[2765,9421],2766,[3983,2641],3983,3983,[3983,10185],[3919,10186],[3981,10187],[3983,10188],[3920,2764],2831,[3983,2573],[3983,2639],3983,3983,3920,3920,3983,3920,3920,[3919,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9500],3971,3905,3394,3971,[3969,9499],[3529,9500],[3592,9303],[3593,9306],3530,3529,3530,3592,[3592,3980],[3593,3793],[3530,9499],[2371,9500],2371,[2435,9303],[2435,9306],[2435,9398],[3528,9399],[3530,9400],[3592,9401],[3594,9402],[2370,9500],1922,1922,2371,2370,2370,2434,2435,2434,2371,2371,2435,2370,2371,[2435,9398],[3983,9494],3919,3919,[3528,3793],3530,3594,3594,[3592,9688],[3969,9685],[3971,9686],3907,3906,3521,[3908,9688],9877,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2823,9518],2826,2825,2762,2825,2824,2825,2762,2762,2825,2760,[2823,9511],[9512,14],0,0,[9517,14],[2826,9421],2761,2760,2761,2826,[2823,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2765,9998],[2832,9803],2829,2831,2767,2829,2765,2830,2829,2767,2829,2766,2767,[2767,9802],[2767,9991],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9924,9925,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2931,9629],2802,2930,2802,2930,2930,2931,2931,2930,2930,2930,2931,[2931,10203],[2930,10204],[2930,10205],[2931,10206],2930,2930,2930,2802,2931,[2931,9532],9625,[9626,14],0,0,0,[9727,14],9728,[3535,9629],3534,3536,3597,3598,3534,3598,3535,3597,3599,3536,3534,[3535,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15134,15263,15263,15263,15263,15134,15007,15134,15070,15071,15006,15071,15135,15071,15006,15070,15134,15006,15007,15071,15135,15006,15071,15071,15070,0,0,15006,15007,0,0,15071,15006,[15134,2986],[15135,2988],[15135,3054],0,0,0,0,0,0,15007,15135,15006,15007,0,0,0,15071,15070,15006,15134,15071,15070,15135,15071,15006,15007,15007,15070,0,0,0,0,0,0,0,15066,15066,15002,15066,15130,15130,15131,15131,15130,15131,15002,0,0,0,0,15263,15198,15199,15198,0,0,15006,15007,15006,15198,15199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,9447,[9539,14],0,0,0,[9640,14],9641,[2369,9542],2369,2368,2432,2369,2432,2432,2369,[2432,10115,9541],9730,[9731,14],0,0,[9736,14],9737,[2432,10120,9638],2432,2368,2432,2433,2368,1984,1984,[2432,9637],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[3981,9515],3920,[3919,2572],2832,2768,[3919,2703],3917,3983,3920,3917,[3920,2892,9514],9607,[9608,14],0,[9517,14],[2830,9518],[3983,2705],3920,3917,3919,3919,3983,3983,[3919,2701],2830,2832,2768,[3981,2573],[3920,2574],[3920,2576],[3919,2639],3983,3983,3919,[3981,9706],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3905,9497],3907,3907,3906,3905,[3971,9499],[3969,9399],[3908,9402],[3529,9403],3530,3528,[3592,3790],3983,[3529,3857],[3592,9691],[3594,9692],[2434,9497,9398],[3528,9399],[3592,9402],[3529,9494],3594,[3529,3724],[3594,3729],[3530,9595],[3594,9596],[2370,9497],2370,2370,2435,2434,2434,2371,2371,2371,1986,2434,2434,[1923,9496],[3920,9589],[3920,9590],3984,3984,[3592,3921],3594,3529,[3592,9397],[3530,9398],[3971,9494],3908,3520,3522,3907,[3908,9784],[3908,9973],[9974,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2760,9518],[2762,9321],[2823,9324],2761,2824,2760,2759,2762,2824,[2762,9514],9607,14,0,0,0,[9517,14],[2760,9518],[2761,9321],[2825,9324],[2824,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2766,10093],2765,2831,2765,2829,2767,2768,2829,2765,2767,2768,2767,2768,2765,2767,2768,[2830,10088],9992,9896,[9800,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9924,9925,8964,8965,9827,0,0,[9832,14],9926,9927,9928,10020,10021,9923,9924,9925,9827,0,0,0,0,0,0,0,0,0,0,[9832,14],9924,8963,8964,8965,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[2930,9629],2931,2802,2866,2867,2866,2802,2802,2802,2802,2930,2802,2866,2931,2802,2802,2931,2930,2930,2802,2931,[2930,9628],9721,[9722,14],0,0,0,[9631,14],9632,[3598,9629],3536,3536,3598,3598,3598,3600,3535,3599,3597,[2931,3663],[3599,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15135,0,0,0,15327,15199,15070,15071,15070,15070,15199,15198,15199,15199,15070,15007,15135,15070,15007,15070,15135,15071,15070,15070,15006,15134,15134,15071,15006,15134,15071,15135,[15135,3051],3243,3246,[15071,3055],0,0,0,0,0,15135,15071,15006,15007,15135,0,0,0,15199,15199,15198,15198,15134,15070,15007,15135,15135,15071,15007,15134,15070,0,0,0,0,0,0,15194,15195,15067,15003,15002,15130,15002,15130,15194,15194,15195,0,15004,15005,0,15327,15263,15263,15263,0,0,15070,15006,15199,15262,15263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9978,9878,9879,9880,9881,9882,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2432,9638],2432,2368,1920,2433,2369,2369,2369,[2369,9637],9634,[9635,14],0,0,[9736,14],9737,[2368,9734,9348],[2433,9351],2433,2369,1984,2369,2432,2433,[2368,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[3919,9611,9321],[3920,9324],[3920,2636],2831,[3919,2833],3919,3917,3920,3983,3918,[3983,9610],9607,[9608,14],0,[9613,14],9614,[3983,9515],3920,3919,3983,3983,3919,3919,3920,[3981,2828],2829,2829,[3919,2893],2765,2832,[3920,2641],3983,[3983,9321],[3920,9324],[3918,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3908,9689],3521,3394,3905,3969,3971,3907,[3906,9595],[3392,9596],[3528,3790,9497],[3529,3725],3983,3920,[3594,3921],3528,[3592,9499],[3529,9494],3528,3594,3594,[3594,3789],3920,3984,[3592,3792,9691],[3528,9692],[1922,9593],1923,2435,2434,2051,2371,2435,2435,1986,2434,1986,1987,[2371,9592],[3528,3853,9685],[3983,9686],3920,3919,[3592,3856],[3529,9303],[3592,9306],[3592,9493],[3969,9494],3908,3907,3907,3969,3905,3971,3969,[3905,10070,9592],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[2760,9421],2826,2826,2761,2823,2759,[2824,9610],9703,14,0,0,0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9997,[2831,10093],2767,2832,2829,2767,2829,2767,2767,2832,2830,2829,2830,2766,2765,2767,2766,2831,2832,[2831,10088],9992,9896,9800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10020,9059,9060,9061,9923,9924,9925,9928,10022,10023,10024,[3913,10116],[3978,10117],10019,10020,10021,9923,9924,9925,9827,0,0,0,0,0,0,[9832,14],9928,10020,9059,9060,9061,9923,9827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[2802,9725],2931,2931,2867,2930,2931,[2802,9339],[2931,9341],[2802,9342],2930,2867,2931,2930,2931,2802,[2931,9339],[2930,9340],[2931,9341],[2802,9342],2930,[2930,9433],[2866,9434],[9530,14],0,0,0,0,[9727,14],9728,[3599,9725],3533,3599,3534,3535,3536,3535,3597,3534,[2931,3601],2931,[2802,3469,9724],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15134,0,0,0,0,15263,15199,15198,15199,15198,15262,15263,15262,15263,15198,15198,15007,15071,15134,15007,15070,15134,15134,15071,15070,15134,15006,15134,15070,15070,15071,15134,[15006,3242],3182,3243,[15070,3119],0,0,0,0,0,15071,15006,15070,15134,15007,15071,0,0,15263,15263,15263,15263,15007,15134,15134,15071,15135,15135,15070,15006,15071,15007,0,0,0,0,0,15258,15258,15066,15131,15131,15131,15131,15067,15258,15258,15259,0,15068,15069,0,0,15327,15327,0,0,0,15134,15070,15262,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3907,10071],[3971,10074],9974,9975,9976,9977,9978,9878,[9782,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9924,9925,9926,9927,9833,[2368,9638],2432,2369,2369,2368,2369,2432,2368,[2432,9637],9826,[9827,14],0,0,0,[9544,14],9444,9447,[2433,9448],2432,2432,2368,2433,[2432,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[2765,9421],[2832,9422],2765,[3919,2639],3983,3920,3983,3920,[3920,9610],9799,[9800,14],0,[9709,14],9710,[3917,9707],3983,3920,3920,3918,[3920,9321],[3983,9324],[3919,2638],2831,2765,[3920,2704],3983,[3920,2702],2831,[3983,2705],[3920,9416],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3908,9403],3906,3907,3905,3908,3520,3457,[3907,9595],[3908,9596],[3920,9593],3919,3919,3983,3984,[3594,3725],[3594,3726],[3529,3727],[3530,3728],[3593,3725],[3592,3728],3983,3919,3919,[3594,3856],[3592,9499],[2434,9403],2434,2435,2435,2371,2434,2371,2434,2370,2435,2370,2435,[2435,9493],[3529,9494],[3529,3980],3919,[3592,3985],[3529,9398],[3971,9399],[3969,9402],[3906,9494],3908,3456,3905,3971,3907,3906,3907,3908,[3907,9688],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2760,9421],2824,2760,2760,2823,[2825,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[2766,10093],2829,2766,2768,2767,2831,2767,2831,2830,2765,2830,2767,2831,2830,2832,2830,2829,2767,2830,2832,[2832,10088],[9992,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10024,[3978,10116],[3914,9155],[3977,9156],[3978,9157],10019,10020,10021,10024,[3978,10118],[3977,10119],[3978,10120],[3978,10212],[3914,10213],[3914,10115],[3914,10116],[3913,10117],10019,10020,10021,9923,9827,0,0,0,0,[9832,14],9928,10024,[3914,10116],[3977,9155],[3977,9156],[3914,9157],[10019,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,10015,[2866,10016],[2930,9821],2930,2930,2930,[2802,9433],[2802,9434],9435,9437,9438,[2930,9439],2802,2802,2931,2931,[2931,9434],9435,9436,9437,9438,[2867,9439],[2867,9529],[9530,14],0,0,0,0,0,0,[9535,14],[3599,9439],3598,3599,3599,3599,3600,3597,3535,[2802,3664],[2931,3665],[2931,9433],[2930,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15071,0,0,0,0,15327,15262,15262,15262,15263,0,15327,15327,0,15263,15262,15199,15071,15006,15070,15007,15135,15070,15070,15007,15134,15007,15071,15007,15007,15135,15070,[15134,3242],3244,3246,[15134,3183],0,0,0,0,0,15071,15006,15071,15070,15006,15199,0,0,0,15327,0,15327,15135,15134,15007,15134,15070,15071,15071,15007,15134,15071,0,0,0,0,0,0,0,15194,15009,15002,15130,15009,15194,0,0,0,0,15196,15196,0,0,0,0,0,0,0,15135,15071,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,[9782,14],0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3906,10075],[3907,10167],[3906,10170],[3906,10070],[3905,10071],[3393,10072],[3969,10073],[3528,3973,10074],9974,9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10020,10021,10022,10023,9929,[2369,9734],2369,2432,2369,2432,2432,2369,2369,[2369,9733],9922,9923,9924,9925,[9827,14],0,0,0,[9544,14],[2432,9545],[2432,9348],[2432,9351],[2369,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2765,9518],2767,2830,[3920,2640],3920,3919,3920,[3920,9706],9895,9896,[9800,14],0,[9517,14],[3920,9518],3981,3919,3920,[3981,9416],9417,9420,[2767,9421],2768,[3920,2833],3919,3919,3983,[3919,2828],[3917,2769,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3969,9500],3907,3906,3907,3521,3458,[3458,9691],[3906,9692],[3983,9689],3920,3983,3920,3920,3983,3919,[3269,4045],[3530,4046],[3592,4047],[3592,4048],3983,3984,3919,[3529,3792],3592,[3528,9499],[2434,9403],2370,2371,2371,2434,2435,2370,2435,2371,2371,[2371,9493],[3529,9494],3592,[3528,3980],3983,[3530,4049,9496],[3905,9589],[3969,9590],3393,3905,3907,3969,3907,3907,3905,3906,3907,3907,[3906,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2760,9518],[2825,9321],[2759,9324],[2823,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2830,10093,9611],2829,2766,2765,2768,2768,2831,2831,2765,2829,2768,2766,2767,2765,2831,2766,2832,2829,2831,2768,2829,2766,[2765,10088,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[10024,9542],[3978,10120],[3978,10212],[3978,9251],[3978,9252],[3978,9253],[3914,10115],[3977,10116],[3914,10117],[3914,10120],[3913,10214],[3977,10215],3913,3977,3913,3914,[3914,10212],[3914,10213],[3977,10115],[4097,3915,10116],[4097,10117],10019,9634,9635,0,0,[9640,14],9641,[10024,9542],[3978,10120],[3978,10212],[3913,9251],[3977,9252],[3977,9253],[3977,10115,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[10015,9533],[2931,10111],2930,2930,2802,2931,2930,[2931,9529],[9530,14],0,0,[9727,14],9728,[2931,9533],2931,2802,[2866,9532],9625,[9626,14],0,0,0,[9535,14],[9530,14],0,0,0,0,0,0,0,0,[9535,14],[3535,9439],3597,3535,3597,3598,3600,[2930,3601],2931,2802,[2930,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15006,0,0,0,0,0,15327,0,15327,0,0,0,0,0,15327,15327,15263,15070,15007,15198,15199,15199,15199,15199,15134,15135,15007,15071,15006,15007,15006,15135,[15135,3306],[15134,3307],[15006,3308],[15007,3311],0,0,0,0,0,15198,15199,15007,15006,15198,15263,0,0,0,0,0,0,15199,15198,15199,15199,15199,15006,15134,15135,15070,15135,15134,15006,15071,15070,15070,15070,15006,15258,15073,15194,15194,15073,15258,15006,15006,15135,15006,15260,15260,15071,0,0,0,0,0,0,15071,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9878,[9782,14],0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3530,10075],[3268,3842],3457,3907,[3593,4033],[3530,4034,10167],[3529,4035,10168],[3592,4036,10169],[3530,3844,10170],[3528,10070],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10024,[2369,10116],[2368,10117],[2369,10118],[2432,10119],[2368,10025],[2433,9830],2433,2432,2432,2432,2368,2433,2368,[2368,9829],[2369,10018],10019,10020,10021,9923,[9827,14],0,0,0,[9544,14],9444,9447,[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2768,9515],2831,[3983,2833],[3919,2637],[3920,2573],[3919,2574],[3983,2575,9802],[3920,2576,9991],[9992,9514],9607,[9608,14],[9709,14],9710,[3917,9515,9321],[3983,9324],[3919,9511],[9512,14],0,0,[9517,14],[2766,9518],[3919,2703],3920,3920,3920,[3983,2892,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9595,9596,[3907,9497],3906,3905,3906,3393,3969,[3969,9499],[3984,9403],3983,3983,3920,3920,[3920,9303],[3528,3855,9306],3529,3528,3594,3594,[3530,3854],3984,3920,[3528,3793],3593,3528,[3592,9499],[2434,9403],2435,2370,2434,2370,2370,2435,2435,[1987,9496],[3528,9589],[3528,9590],[3530,3789],3920,[3529,3856],[3594,9592],[3908,9685],[3905,9686],3969,3969,3971,3969,3906,3969,3971,[3969,9303],[3971,9306],[3907,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2830,9611],2766,2767,2766,2830,2829,2832,2830,2831,2766,2767,2767,2765,2829,2830,2830,2768,2830,2765,2767,2768,2829,[2767,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[3913,10120,9638],3914,3913,3914,3914,3913,3978,[3978,10212],[3913,10213],3978,3914,3978,3914,3978,3977,3913,3914,3977,3978,[4097,3979,10212],[4097,10213],[4097,10115,9541],9730,9731,0,0,[9736,14],9737,[3978,10120,9638],3977,3913,3977,3977,3977,[3914,9733],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2931,10111,9629],2802,2802,2931,2930,2802,[2930,9532],9625,[9626,14],0,0,[9631,14],9632,[2931,9629],2930,2802,[2867,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[3599,9536],[3533,9339],[3536,9340],[3600,9341],[2930,3664,9342],[2802,3665],[2802,9433],[2931,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15135,15263,15262,15263,15262,15263,15198,15199,15199,15134,15071,15071,15007,15070,15070,15006,15070,15199,0,0,0,0,0,15263,15263,15199,15199,15262,15327,0,0,0,0,0,0,15262,15263,15262,15263,15262,15198,15006,15135,15135,15134,15007,15135,15071,15071,15011,15011,15134,15070,15006,15258,15258,15006,15070,15135,15070,15071,15006,15070,15135,15006,0,0,0,0,15070,15070,15071,15070,15135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3594,10071],[3594,10072],9974,9878,[9782,14],0,0,0,0,0,0,[9595,14],9596,9979,[3529,10075],3530,3529,[3594,4032],[3594,3843],3594,3594,3592,3528,3528,[3528,8924],8925,[74,8926,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,10024,[2432,10120],[2432,10212],[2433,10213],[2432,10214],[2368,10215],2369,1921,2369,[2368,9348],[2432,9349],[2368,9350],[2432,9351],2368,2369,2369,2369,[2433,10115],[2432,10116],[2368,10117],[10019,9541],9634,[9635,14],0,0,0,0,0,[9832,14],9924,9925,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2768,9611],2832,[3919,2703],[3917,2828],2832,2830,2768,2829,[2832,10088,9610],9703,[9704,14],0,[9517,14],9417,9420,[9512,14],0,0,0,[9613,14],9614,[3919,9515],3920,3920,3983,[3920,9706],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3905,9593],3907,3905,3905,3907,3458,3969,[3908,9499],[3982,9500],[3983,9303],[3917,9306],[3919,9398],[3906,9399],[3905,9402],[3529,9403],3593,3594,3528,3529,[3530,3788],3984,[3593,3857],3592,3592,3529,[3593,9499],[2371,9403],[2371,9303],[2435,9304],[2434,9306],1923,2435,2371,[2371,9592],[3528,9685],[3594,9686],[3528,3980],[3333,3793],3593,[3529,9688],[3971,9589],[3905,9590],3908,3971,3969,3971,3392,3971,[3908,9398],9399,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[2832,9611],2765,2830,2768,2768,2766,2832,2768,2766,2765,2768,2829,2829,2767,2832,2765,2831,2765,2768,2830,2831,2831,[2829,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[3913,9638],3913,3978,3978,3978,3977,3978,3913,3978,3913,3977,3913,3913,3913,3913,3977,3978,3978,3977,3975,[4097,3785],[4097,9637],9826,9827,0,0,[9832,14],9833,[3914,9638],3977,3978,3914,3914,3914,[3913,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2931,9629],2802,2866,2930,2931,2930,[2802,9628],9721,[9722,14],0,0,[9727,14],9728,[2930,9629],2930,2802,[2930,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9436,9437,9438,[2931,9439],[2930,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,15071,0,15327,0,0,0,15262,15263,15262,15199,15198,15199,15198,15071,15007,15198,15198,15262,0,0,0,0,0,0,15327,15262,15262,0,0,0,0,0,0,0,0,0,15327,0,0,15327,15262,15198,15006,15134,15071,15071,15135,15134,[15007,15450],15076,15075,[15006,15450],[15007,15451],[15006,15452],[15007,15452],[15070,15452],[15135,15452],[15007,15453],15070,15071,15006,15135,15135,15007,15071,0,0,0,15071,15135,15007,15007,15071,15070,15007,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[9979,9497],[3592,10075],[3593,10167],[3268,10168],[3268,10070],9974,9878,[9782,14],0,0,0,0,0,[9691,14],9692,[3530,10075],3593,3529,3529,3530,3592,3268,3593,3530,3530,3528,[3594,9020],9021,[74,9022,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2368,10120],2432,2432,1984,2433,2433,2369,2433,[2432,9443],9444,9445,9446,9447,[2433,9448],2432,2369,1985,2433,[2433,10212],[2433,10213],[2433,10115,9637],9634,[9635,14],0,0,[9832,14],9924,9925,9928,10020,10021,9923,9924,9925,9926,9927,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2831,9611],[3920,2641],3983,[3918,2892],[3983,2893],2832,2830,2768,[2766,9416],[9512,14],0,0,0,0,0,0,0,0,0,[9709,14],9710,[3919,9707],3920,3983,3918,[3981,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9691,9692,[3393,9689],3969,3394,3969,3907,3905,3457,3908,[3969,9499],[3905,9399],[3969,9402],[3588,9494],3589,3971,[3521,9499],[3530,9500],3593,3528,3592,[3592,3852],3919,[3529,3921],3592,3594,3594,3528,[3594,9499],[3594,3854,9399],[3920,9400],[3919,9402],[2434,9403],[2435,9303],[2371,9306],[2370,9398],[3594,9494],[3593,3789],3919,[3530,3857],3593,[3529,9493],[3908,9494],3908,3971,3908,3906,3905,3908,[3907,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2767,9611],2832,2765,2832,2830,2831,2766,2831,2831,2831,2766,2768,2832,2830,2831,2829,2766,2830,2830,2829,2765,2767,[2766,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[3977,9734],3978,3977,3978,3977,3913,3977,3914,3977,3914,3913,3913,3978,3913,[3977,9348],[3977,9351],3913,3913,3914,3913,3975,[4097,3719,9733],9922,9923,9926,9927,9928,9929,[3913,9734],3913,3913,3977,3977,[3978,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2930,9629],2931,2931,2802,2802,2930,[2802,9628],9625,[9626,14],0,0,[9631,14],9632,[2930,9629],2867,2931,[2931,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15134,0,0,0,0,0,0,15327,0,15262,15262,15263,15262,15198,15198,15262,15262,15327,0,0,0,0,0,0,0,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15262,15007,15006,15135,15007,15007,15135,15514,[15076,15139],[15075,15140],15646,15515,15515,15516,15516,15515,15647,[15006,15453],15134,15070,15007,15071,15006,15134,15070,15007,15134,15134,15007,15006,15134,15007,15071,15135,15198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3530,10075,9689],3593,3530,3268,3530,[3594,10070],9974,9589,[9590,14],0,0,0,0,[9787,14],9788,3530,3268,3592,3528,3528,3268,3529,3268,3268,3594,3530,[3592,9116],[74,9117],[74,9118,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2433,9448],2432,2432,2433,2368,2432,2432,[2432,9541],9634,[9635,14],0,0,[9640,14],9641,[2433,9542],2433,1921,2368,2432,2368,[2432,9637],9730,[9731,14],0,[9832,14],9928,10020,10021,10024,[2432,10116],[2369,10117],10019,10020,10021,10022,10023,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9806,[2765,9611],[3981,2705],3919,3917,3919,[3981,2701,9321],[2829,9324],[2766,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,[9517,14],[3920,9518],[3920,9321],[3918,9324],[3981,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9403],3905,3458,3971,3905,3907,3907,3971,3971,3392,3905,3652,3653,3969,3971,[3458,9499],[3530,9500],3528,3592,[3528,3916],3983,[3592,3985],3593,3528,3529,3594,3528,3594,[3528,3854],3920,[3983,9499],[3984,9399],[3528,3985,9402],[3593,9494],3592,[3593,3788],3984,[3529,3921],[3529,9496],[3971,9589],[3908,9590],3908,3906,3393,3969,3969,3908,[3906,9592],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[2768,9611],2831,2829,2829,2831,2766,2765,2766,2832,2765,2830,2829,2765,2829,2829,2830,2765,2829,2767,2767,2768,2768,[2830,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[3977,9545],[3913,9348],[3914,9349],[3914,9350],[3914,9351],3978,3914,[3978,9348],[3914,9351],3978,3914,3913,3914,[3913,9443],9444,9447,[3978,9448],3978,3914,3977,3978,[3914,9829],[3977,10018],10019,10022,10023,10024,[3977,10025],[3913,9830],3913,3914,3914,[3977,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2802,9725],2866,2931,2931,2930,2931,[2931,9628],9721,[9722,14],0,0,[9727,14],9728,[2867,9629],2930,2931,[2802,9724],9913,9914,9915,9916,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15006,15007,0,0,0,0,0,0,0,0,15327,0,0,15327,15262,15263,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15134,15134,15071,15007,15070,15070,15578,15579,15711,15515,15516,15516,15516,15515,15516,15515,15517,15135,15135,15135,15134,15071,15006,15134,15007,15071,15006,15134,15007,15135,15135,15135,15007,15262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9500],3530,3528,3530,3593,3593,[3528,10070,9496],9685,[9686,14],0,0,0,[9787,14],9883,9884,3592,3592,3593,3530,[3333,3778],[3594,3713],[3268,3717,9303],[3268,9306],[3528,3777],[3593,3713],[3594,3714],[3530,3713],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2368,9542],2369,2369,2432,2368,2369,[2432,9637],9634,[9635,14],0,0,[9736,14],9737,[2432,9734],2432,2368,2369,2432,2433,[2433,9637],9826,9924,9925,9928,10024,[2432,10116],[2432,10117],[2368,10120],[2432,10212],[2369,10213],[2432,10115],[2368,10116],[2369,10117],[2433,10118],[2432,10119],10019,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9805,14],9901,9902,[2766,9707],[3983,2769],3919,3920,[3983,9416],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3969,9500],[3906,9303],[3971,9306],3906,3908,3908,3521,3905,3969,3971,3905,3907,3969,3969,[3905,9595],[3971,9596],[3594,9497],3530,[3529,4044],[3529,4045],[3593,3856],[3528,9303],[3530,9306],3592,3593,[3528,9498],3528,3593,[3592,3980],3919,3983,[3593,3985],3528,3594,[3530,3916],3984,[3592,3793],[3592,9592],[3521,9685],[3584,9686],3585,3905,3971,3971,3908,3908,[3969,9592],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2831,9611],2768,2830,2768,2830,2768,2766,2831,2767,2766,2831,2766,2765,2832,2766,2830,2767,2831,2765,2765,2765,2831,[2830,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,9445,9446,9447,[3977,9448],[3977,9443],9444,9447,[3978,9448],[3977,9348],[3978,9351],[3978,9538],[9539,14],0,0,[9544,14],[3914,9545],3977,3914,3913,3914,3913,[3977,10115],[4097,3979,10118],[4097,10119],[4097,3782,10120],3977,3914,3913,3914,[3977,9541],9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2931,9439],2802,2930,2802,2930,2931,[2866,9628],9817,[9818,14],0,0,[9823,14],9824,[2802,9629],2802,2931,[2930,9820],[2802,10009],10010,10011,10012,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15007,0,0,0,0,15007,15135,15007,15007,15070,0,0,0,0,15134,15134,15007,15006,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,0,0,0,0,0,0,0,0,0,15134,15134,15007,15071,15006,15007,15007,15134,15134,15006,15134,15135,15071,0,0,0,0,0,15006,15135,15006,15135,15135,15135,15006,15006,15578,15711,15515,15515,15516,15515,15515,15710,15581,15006,15135,15006,15071,15006,15070,15006,15006,15135,15006,15135,15134,15134,15070,15070,15198,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9500],3528,3268,3592,3594,[3268,9592],9589,[9590,14],0,0,[9595,14],9596,9979,[3593,9980],3592,3528,3594,[3593,3777],3971,[3969,9493],9399,9402,[3908,9403],[3906,9303],[3907,9306],[3969,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2432,9638],2369,2433,1920,2368,2369,[2432,9733],9730,[9731,14],0,0,0,[9544,14],[2369,9448],2369,2368,2368,2433,2432,[2368,9733],9922,10020,10021,10024,[2432,10120],[2368,10212],[1920,10213],2432,2368,2433,1921,[2368,10212],[2433,10213],[2433,10214],[2368,10215],[2368,10115],[10019,9541],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[9997,9515],[3983,2705,9998],[3920,2702,9803],[3983,2704],[3919,2637],[3983,2573,9514],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9402,[3906,9403],3969,3907,3907,3908,3521,3906,3907,3907,3905,3907,[3522,9691],[3907,9692],[3594,9689,9303],[3529,9304],[3969,3655,9305],[3529,9306],[3529,9398],[3908,9399],[3906,9402],[3529,9403],3528,3594,3593,3593,[3332,4044],[3593,4045],[3529,4046],[3528,3856],3594,3592,[3529,3980],3983,[3530,3857],[3530,9592],[3905,9781],[3648,9782],3649,3905,3520,3907,3905,3906,[3907,9592],9781,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[2765,9611],2832,2765,2767,2765,2768,2766,2767,2832,2768,2765,2768,2768,2832,2831,2829,2765,2829,2767,2768,2768,2767,[2765,9610],9703,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[9539,14],0,0,[9544,14],9444,9447,[9539,14],0,0,0,[9736,14],9737,[3978,9542],3914,3977,3978,3913,3911,[4097,3850,10214],[4097,10215],[4097,3846],3978,3978,3978,3913,[3978,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2802,9536],2930,2930,2802,2931,[2802,9724],9913,9914,9915,9916,9919,9920,[2930,9725],2931,2930,2930,2931,[2802,10106],[2931,10107],[2931,10108],10010,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,15070,0,0,15071,15070,15070,15007,15070,15006,15007,15007,15071,15070,15071,15007,15070,15134,15134,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15134,15006,15006,15070,15071,15070,15134,15071,15070,15135,15135,15135,15070,15134,15071,15135,15006,15006,15134,15006,15135,15006,15135,15135,15134,15135,15578,15579,15580,15579,15580,15579,15581,15006,15006,15071,15006,15135,15070,15007,15006,15070,15007,15007,15071,15134,15071,15070,15135,15263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9879,9880,[9782,14],0,[9691,14],9692,[3592,9497],3333,3594,3593,[3332,9592],9685,[9686,14],0,0,[9691,14],9692,[3268,10075],3592,3592,3528,3268,[3268,3776],[3971,9496],[3969,9589],[9590,14],0,[9499,14],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2368,9734],2369,2433,2369,2433,2433,[2432,9538],[9539,14],0,0,0,0,0,[9544,14],[2368,9448],2433,2433,2433,2433,[2432,9829],[2432,10018],[2432,10116],[2368,10117],[2369,10120],2369,2368,2368,2433,2369,2369,2433,2432,2369,2433,2369,2432,[2369,10115,9637],9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9614,[2829,10093,9611],[3920,2769],3920,3920,[3920,2636],[2829,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3969,9500],[3456,9303],[3906,9306],3907,3906,3906,3907,3906,3392,3905,3906,[3905,9499],[3905,9399],[3906,9400],[3907,9401],[3905,9402],[3906,9494],3969,3906,[3969,9499],[3528,9500],3592,3594,3593,3594,3592,3594,3593,3594,3529,[3593,4044],3920,[3528,3921],[3594,9688],9877,[3908,9878],[3905,9782],3905,3457,3971,3906,3906,[3969,9688],9877,9878,9782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2768,9611],2766,2767,2831,2830,2830,2830,2765,2767,2830,2829,2831,2831,2767,2831,2768,2832,2830,2831,2829,2766,2766,[2767,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[3914,9638],3977,3977,3914,3977,[4097,3979],4097,4097,[4097,3910],3977,3977,3914,3978,[3913,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2931,9533],2802,2802,2802,[2930,9820],[2802,10009],10010,10011,10012,10015,[2930,10016],[2802,9821],2802,2931,2930,2931,2931,[2931,10203],[2931,10204],[2867,10106],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15070,15007,15134,[15070,2986],[15070,2987],[15007,2988],[15134,2989],[15007,2990],[15134,2991],15135,[15071,3052],[15134,3054],15135,15007,15070,15134,15134,15134,15071,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15134,15135,15134,15070,15135,15134,15007,15070,15135,15007,15007,15071,15007,15007,15135,15071,15070,15007,15134,15135,15070,15070,15070,15071,15006,15006,15135,15071,15070,15135,15070,15071,15135,15006,15134,15134,15070,15007,15070,15071,15134,15134,15199,15198,15199,15198,15070,15007,15071,15198,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9975,9976,9878,9879,9882,9788,[3593,3717,9593],3268,3268,3530,[3530,9592],9781,[9782,14],0,0,[9787,14],9788,3530,3529,3593,3592,3528,[3529,3840],[3908,9688],[3907,9589],[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2433,9448],[2432,9348],[2369,8775],[2433,8776],[2432,8777],[2368,9541,9351],[9541,9730,14],9731,0,0,0,0,0,[9640,14],9641,[2433,9542],2369,1985,2369,2369,2432,[2432,10212],[2369,10213],2369,2433,2368,2432,2368,2369,[2368,9348],[2433,9351],2369,2368,2432,1985,2368,[2432,9637],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9710,[2766,9707],[3920,2641],3919,3920,[3981,2764],[2829,9610],9607,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9402,[3971,9403],3520,3908,3905,3456,3907,3969,3907,3905,3969,3522,3392,3971,3908,3906,3907,[3393,9691],[3908,9692],[3591,9497],3594,3593,3528,[3530,9303],[3528,9304],[3529,9306],3528,3528,3594,[3594,3853],3984,[3528,3791,9784],[3594,3789,9973],9974,[3905,9589],[3969,9590],3905,3906,3969,3969,[3458,9784],[3969,9973],[9974,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9613,14],9710,[2829,9611],2768,2768,2830,2768,2831,2831,2832,2766,2768,2767,2767,2766,2766,2832,2831,2765,2830,2829,2831,2765,2765,[2830,9610],9703,[9608,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[3977,9638],3978,3913,3914,3914,3975,[4097,3786,9348],[4097,9351],[4097,3974],3913,3977,3977,[3914,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2930,9629],2930,2930,2931,2930,2931,[2930,10106],[2930,10107],[2867,10108],[2802,10111],2930,2802,2931,2930,2930,2930,2931,2802,2802,2931,[2931,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15135,15071,15134,[15007,3050],3245,3180,3180,3243,3180,[15007,2987],3246,3244,[15070,2991],15007,15135,15071,15071,15007,15135,15134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15070,15135,15006,15071,15198,15199,15199,15199,15198,15199,15198,15006,15006,15070,15071,15134,15071,15135,15135,15071,15070,15070,15007,15007,15006,15006,15198,15198,15199,15199,15199,15135,15071,15007,15135,15006,15007,15071,15070,15071,15198,15263,15262,15263,15262,15198,15199,15199,15262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9787,14],9883,9979,[3530,10071],[3777,10072],9974,9975,9978,9884,[3969,9689],[3592,3717],3268,3530,[3333,9688],9877,9878,9881,9882,9883,9884,3528,3268,3528,3268,3594,[3528,3904],[3905,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,[74,8871],8872,[74,8873],[9447,14],9539,0,0,0,0,0,0,[9736,14],9737,[2433,9734],2368,2432,2368,2432,2432,2433,2369,2432,2369,1920,2369,2369,[2369,9538],9444,9447,[2433,9545],2368,2368,2432,2368,[2369,9637],9826,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2768,9518],[3918,2769,9321],[3920,8552],[3983,8553],[3920,2828,8554],[2831,9706,9324],[9703,14],9704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9500],[3969,9303],[3971,9306],3969,3908,3905,3522,3907,3971,3969,3522,3457,3905,3971,3906,3971,[3969,9499],[3530,9403],[3529,9303],[3594,9306],[3530,9398],[3907,9399],[3908,9400],[3906,9402],[3593,9403],[3530,9303],[3530,9306],[3530,3789],3984,3984,3984,[3920,10070],[3907,9685],[3971,9686],3907,3905,3971,3522,3908,3905,[3905,10070,9688],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9709,14],9614,[2767,9707],2830,2829,2767,2767,2766,2832,2832,2831,2832,2768,2830,2765,2830,2766,2829,2768,2832,2765,2765,2831,2831,[2832,9706],9607,[9704,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9833,[3914,9638],3978,3913,3977,3914,[3978,9443],9444,9447,[3914,9448],[3914,9348],[3913,9351],[3914,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2931,9439],2930,2930,2803,2931,2930,2930,[2802,10203],[2931,10204],2930,2802,2802,2802,2930,2930,2931,2930,2802,2802,[2930,9433],[2930,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15006,15006,15135,[15070,3178],3180,3246,3245,3246,3182,3245,3246,3244,[15071,3055],15070,15135,15071,15006,15006,15135,15199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15070,15135,15007,15006,15134,15263,15262,15262,15262,15263,15262,15263,15198,15199,15198,15198,15198,15198,15198,15199,15198,15198,15199,15198,15199,15198,15199,15262,15262,15262,15263,15263,15199,15198,15198,15199,15199,15198,15199,15199,15198,15263,0,0,15327,0,15263,15262,15262,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,[9814,14],9907,[9809,14],0,0,0,0,[9814,14],9906,9903,9909,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,9979,[3527,10075],[3527,10167],[3529,3968,10168],[3907,10070],[3907,10071],[3906,10074],[3521,9980],[3905,9785],[3529,3843],3594,3268,[3592,9784],[3593,9973],9974,9977,9978,9979,[3529,9980],3268,3530,3593,3592,3593,[3594,3776,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,[74,14],74,0,0,0,0,0,0,0,0,0,[9544,14],[2369,9545],2433,2368,2368,2433,2432,2368,2433,2369,2433,2433,2368,[2433,9541],[2433,9634],[9635,14],0,[9544,14],[2369,9545],2368,2432,2369,[2369,9733],9922,9923,9924,9925,9926,9927,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,[74,8648],8649,[74,8650],[9420,14],9512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9402,[3969,9403],3907,3907,3908,3458,3906,3908,3907,3907,3907,3906,3971,3969,3971,[3907,9499],[3906,9399],[3969,9402],[3520,9494],3906,3588,3589,[3907,9499],[3907,9399],[3906,9402],[3981,9500],3919,3919,3919,[3918,9493],[3969,9494],3522,3971,3905,3905,3969,3907,[3906,9397],[3969,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2830,9421],2768,2766,2829,2831,2832,2829,2767,2767,2832,2832,2832,2765,2829,2832,2767,2832,2768,2829,2829,2832,2832,[2767,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9926,9927,9928,9929,[3913,9734],3913,3977,3913,[3978,9541],9634,9635,0,[9544,14],9444,9447,[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2930,9536],2930,2930,2930,2931,2930,2802,2802,2802,2931,2802,2931,2931,2866,2930,2931,2931,2931,[2931,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15070,15071,15007,[15006,3115],[15134,3307],3179,3245,3180,3179,3180,3181,3181,[15135,3247],15070,15006,15134,15135,15135,15198,15263,0,0,0,0,0,15071,15007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15135,15134,15071,15071,0,15327,0,0,15327,0,15327,15262,15262,15263,15263,15262,15262,15263,15263,15262,15263,15263,15263,15262,15262,15263,15327,15327,0,0,0,15263,15263,15263,15263,15263,15262,15263,15262,15262,0,0,0,0,0,15327,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9906,9907,[9809,14],0,0,[9814,14],9908,9909,9910,10003,9905,[9809,14],0,0,[9814,14],9910,10002,9999,10005,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3529,10075,9497],3530,3528,[3528,3842],[3529,4033],[3593,4034,10167],[3592,4035,10170],[3529,4036],[3528,4037],3268,3593,3530,3528,3530,[3593,10070],[3529,10073],[3594,10074],[3592,10075],3529,3528,3528,3530,3528,[3528,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2433,9545],[2432,9348],[2433,9351],2369,2433,2433,2432,1921,2433,2433,2369,[2369,9637],[2433,9634],[9635,14],0,[9640,14],9641,[2368,9542],2433,2433,[2368,9829],[2368,10018],10019,10020,10021,10022,10023,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,[74,14],74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3906,9500],[3906,9303],[3908,9306],3908,3969,3969,3907,3521,3908,3908,3971,3969,3969,3905,3971,3907,3906,3908,3652,3653,3906,3971,[3907,9691],[3906,9692],[3918,9497,9303],[3920,9306],[3918,9493],[3971,9494],3907,3969,3971,3458,3905,[3908,9303],[3907,9306],[3969,9493],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2832,9518],2832,2765,2831,2830,2829,2832,2831,2765,2767,2829,2766,2831,2829,2767,2765,2832,2766,2830,2765,[2831,9511],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10022,10023,10024,[3977,10025],[3914,9830],3978,3977,3913,[3914,9637],9730,9731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2802,9439],2930,2802,2866,2802,2930,2930,2802,2931,2802,2931,2802,2931,2802,2931,2802,[2931,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15006,15135,15135,15134,15134,15071,[15135,3115],3182,3245,3182,3179,[15071,3309],[15135,3310],[15135,3311],15134,15006,15134,15007,15199,15262,15327,0,0,0,0,15071,15071,15135,15135,15070,15006,0,0,0,0,0,15007,15135,15071,15135,15007,15071,15071,15007,15006,15135,15071,15198,0,0,0,0,0,0,0,15327,0,0,15327,15327,15327,15327,0,0,15327,15327,15327,15327,15327,15327,0,0,0,0,0,15327,15327,15327,0,15327,15327,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10002,10003,9905,9908,9909,9910,10004,10005,10006,[4097,10099],10001,9905,9906,9907,9910,10006,[3914,10098],[3914,10095],[3978,10101],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3530,9593],3529,3529,3268,3593,3268,3530,3594,3530,3528,3592,3268,3592,3269,3594,[3528,10169],[3593,10170],3332,3529,[3529,3777],[3529,3713],[3530,3780],3528,[3592,9398],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,9447,[2432,9545],2369,2369,2432,2432,2368,2432,2433,[2432,9733],9730,[9731,14],0,[9736,14],9737,[2368,9734],2369,2369,2368,2433,[2368,10115],[2368,10116],[2433,10117],[2433,10118],[2368,10119],10019,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9402,[3906,9403],3969,3456,3393,3394,3907,3971,3906,3908,3905,3971,[3969,9303],[3969,9306],3908,3905,3906,3971,3908,3907,3906,[3456,9499],[3457,9399],[3392,9402],[3522,9494],3906,3905,3971,3908,3907,[3908,9398],9399,9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],[2832,9421],[2767,9321],[2765,9322],[2829,9323],[2832,9324],[2830,9321],[2765,9322],[2765,9323],[2765,9324],[2767,9321],[2830,9322],[2765,9323],[2765,9324],[2832,9321],[2767,9322],[2768,9323],[2830,9323],[2832,9324],[2831,9416],[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9832,14],9928,10024,[3914,10118],[3978,10119],[3913,10120],3978,3913,3913,3913,3977,[3978,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2930,9536],[2930,9339],[2930,9342],2930,2931,2930,[2931,9339],[2930,9340],[2931,9341],[2931,9342],2866,2867,2930,2931,2930,[2930,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15006,15007,15134,15134,15006,15006,[15007,3306],[15007,3307],[15134,3308],[15070,3118],15070,15070,15071,15135,15071,15135,15199,15262,15327,0,0,0,0,0,15134,15006,15007,15134,15007,15071,15006,15007,0,15071,15070,15007,15135,15135,15135,15135,15071,15006,15007,15134,15135,15006,15263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15071,15070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,[9814,14],9910,10006,[4097,10098],[4097,10099],10001,10004,10005,10006,[4097,10100],[4097,10101],[4097,10102],[4097,10195],[4097,10097],10001,10002,10003,10006,[4097,3910,10102],[3977,10194],[3914,10191],3978,[3914,10097],10001,9905,[9809,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3594,9593],3333,3593,3592,3530,3529,3593,3592,3593,[3593,3712],[3593,3713],[3593,3779],3593,3594,3592,3530,3529,3268,3529,[3593,3776],3908,3905,[3527,3780,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2368,9545],2433,2368,2369,2432,2368,2368,[2368,9443],[9539,14],0,0,0,[9544,14],[2433,9448],2433,1920,2368,2432,2369,[2368,10212],[2433,10213],[2369,10214],[2368,10215],[2369,10115],10019,9923,[9827,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3969,9403],3906,3907,3394,3905,[3905,9303],[3906,9306],3908,3906,[3969,9398],9399,9402,[3969,9500],3456,3907,3971,3971,3971,3969,3905,3521,3522,3908,3969,3908,3907,3458,[3906,9496],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9517,14],9417,9418,9419,9420,9417,9418,9419,9420,9417,9418,9419,9420,9417,9418,9419,9419,9420,[9512,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[10024,9542],[3913,10120],[3914,10214],[3977,10215],3913,3913,3977,[3978,9348],[3913,9351],[3978,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9438,[2866,9536],[2802,9433],[2930,9434],9435,9436,9437,9438,[2930,9536],2802,2930,2931,2930,[2931,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15199,15199,15007,15135,15006,15006,15007,15135,15135,15135,15134,15006,15007,15135,15134,15134,15199,15263,0,0,0,0,0,0,0,15199,15198,15199,15006,15006,15007,15006,15006,15006,15070,15135,15071,15006,15199,15198,15198,15198,15199,15199,15199,15199,15199,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15132,15132,15132,0,0,0,0,0,15007,15007,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,15135,15134,15134,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9912,9909,[9809,14],[9814,14],9910,10006,[4097,10102],[4097,10194],[4097,10195],[4097,10097],[4097,10100],[4097,10101],[4097,10102],[4097,10196],[4097,10197],4097,4097,4097,[4097,10097],[4097,10098],[4097,10099],[4097,10102],[4097,3974],3913,3977,3914,3978,[3914,10097],[10001,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9595,14],9596,[3527,9593],3530,3593,3528,3528,3332,3528,3529,3592,[3530,3968],3457,3906,[3268,3717],3268,3528,3592,3593,3594,3529,[3593,3904],3969,[3971,9496],9589,[9590,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2368,9542],2369,2432,2433,2368,[2369,9541],9634,[9635,14],0,0,0,[9640,14],9641,[2368,9542],2368,2432,[2432,9348],[2368,9351],2368,2432,2369,2369,2433,[2432,10115],10019,9634,[9635,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3971,9403],[3456,9303],[3907,9306],[3907,9398],9399,9402,[3969,9403],[3971,9493],9494,0,9595,9596,[3971,9497],3971,3905,3969,3906,3906,3971,3969,3392,3457,3971,3906,3905,3907,[3392,9592],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[3978,10120,9638],3977,3978,3913,3978,3913,[3914,9443],9444,9447,[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[2930,9533,9529],[9530,14],0,0,0,[9631,14],9632,[2930,9533],2931,2803,2931,[2930,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15262,15263,15199,15198,15198,15134,15070,15071,15135,15071,15007,15198,15199,15199,15198,15199,15262,15327,0,0,0,0,0,0,0,15263,15262,15262,15198,15199,15071,15006,15070,15135,15007,15070,15199,15198,15262,15263,15262,15263,15263,15263,15262,15262,15263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15132,15132,15005,0,0,0,0,0,15071,15135,15135,0,0,0,0,0,0,0,0,0,0,0,0,15006,15135,15135,15007,15135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10008,10005,9905,9910,10006,[4097,10102],4097,4097,4097,4097,[4097,10196],[4097,10197],4097,4097,4097,4097,4096,4097,4097,[4097,10194],[4097,10195],4097,[4097,3847],3912,3977,3914,3978,3978,[3913,10097,9619],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9691,14],9692,[3594,9689],3592,3594,3268,3593,3530,[3268,9303],[3268,9306],[3268,3777],3456,3907,3908,[3527,3781],3528,[3528,9303],[3530,9304],[3529,9305],[3268,9306],3593,[3530,3968],3908,[3907,9592],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2433,9734],2369,2432,1984,2433,[2432,9733],9730,[9731,14],0,0,0,[9736,14],9737,[2368,9734,9348],[2368,9351],[2369,9538],9444,9447,[2433,9448],2369,2368,2368,1984,2433,[2433,10115],9730,[9731,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9399,9402,9494,0,0,9499,9494,0,0,9691,9692,[3969,9593],3908,3969,3969,[3522,9303],[3907,9304],[3908,9305],[3905,9306],3908,3905,3905,3522,3393,3906,[3971,9688],9685,9686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[3914,9734],3978,3914,3913,3977,3913,9634,9635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[9530,14],0,0,0,0,[9727,14],9728,[2802,9629],2802,2931,2931,[2930,9628],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15262,15262,15262,15198,15199,15199,15199,15198,15199,15263,15262,15262,15262,15263,0,0,0,0,0,0,0,0,0,0,15327,0,15263,15262,15198,15199,15070,15070,15006,15198,15262,15262,15327,0,15327,0,15327,0,0,15327,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15004,15005,15132,0,0,0,0,0,15198,15199,15198,0,0,0,0,0,0,0,0,0,0,0,15134,15071,15007,15071,15070,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9814,14],9910,10006,[3978,10104],[3913,10101],10001,10006,[4097,10102],4097,4097,4192,[4097,3784],[4097,3723,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,565],[4097,3782,565],3914,3977,3914,3914,[3914,9715],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3528,9403],3591,3530,3592,3592,[3593,9493],9399,9402,[3906,9500],[3456,9303],[3971,9304],[3971,9305],[3593,3845,9306],[3527,9493],9399,9400,9401,9402,[3528,9403],[3530,3968,9303],[3908,9306],[3905,9493],[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2433,9448],2432,2432,2369,2433,[2368,9443],[9539,14],0,0,0,0,0,[9544,14],9444,9447,[9539,14],0,[9736,14],9737,[2369,9542],2369,2369,2433,2368,[2369,8969],8970,[74,8971,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3906,9403],3905,3521,[3907,9398],9399,9400,9401,9402,[3971,9403],3905,3969,3908,3969,3969,[3905,9398],9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[3914,9448],3914,3913,3914,3913,[3977,9443],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9824,[2930,9629],2931,2802,2802,[2930,9628],9817,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15327,15262,15262,15262,15263,15262,15263,0,15327,0,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,0,15263,15262,15070,15071,15070,15262,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15068,15133,15132,0,0,0,0,0,15263,15263,15263,0,0,0,0,0,0,0,0,0,0,0,15071,15006,15071,15134,15007,15198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[10006,9524],[3914,10102],[3978,10200],[3977,10197],[3978,10097],[3975,10102],[4097,3719],[4097,3785],[4097,3783],[4097,3719],3976,629,629,629,629,629,629,629,629,629,629,629,629,629,629,629,3977,3914,3977,3913,[3978,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3591,9403],3593,3592,[3593,9496],9589,[9590,14],0,[9499,14],9399,9400,9401,9402,[9494,14],0,0,0,0,[9499,14],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2368,9448],[2368,9348],[2368,9351],[2433,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[2369,9545],2433,2369,2433,2433,[2368,9065],9066,[74,9067,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,[3907,9403],[3906,9493],9494,0,0,0,9595,9596,[3969,9497,9303],[3906,8730],[3905,8731],[3393,8732],[3521,9496,9306],9589,9590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],[3914,9545],[3978,9348],[3913,9351],[3978,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9823,14],9919,9920,[2930,9725],2930,2802,2930,[2930,9724],9913,9914,[9818,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,0,0,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15007,15134,15135,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15199,15069,15069,15133,15068,0,0,0,0,15327,0,0,0,0,0,0,0,0,0,0,0,0,15198,15199,15199,15198,15198,15263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3977,10102,9620],3977,3914,3978,3913,3913,3977,3975,3976,3977,3913,[3914,757],[4097,3787,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,757],[4097,3910,757],3913,3977,3914,[3914,9523],9616,[9617,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],[3592,9500],[3593,9303],[3593,9592,9306],9685,[9686,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,9447,[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,[9640,14],9641,[2369,9542],2368,2368,2368,[2433,9161],[74,9162],[74,9163,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9499,9494,0,0,0,0,0,9499,9399,[74,8826],8827,[74,8828],9402,9494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9544,14],9444,9447,[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9631,14],9632,[10015,9533],[2802,10016],[2930,9821],2931,2931,2931,[2867,9820],[2930,10009],[10010,9532],9625,[9626,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15007,15007,15071,15006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15262,15199,15069,15068,15132,15005,15132,15005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15263,15262,15263,15263,15262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3914,9620],3913,3978,3913,3913,3913,3977,3914,3978,3978,3913,3977,[4097,3851],4097,4096,4097,4097,4097,4097,4097,4097,4192,4097,[4097,9330],[4097,9333],[4097,3974],3911,[4097,4039],3912,[3914,9715],9712,[9713,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9499,14],9399,9402,[9494,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9736,14],9737,[2432,9734,9348],[2369,9349],[2432,9350],[2369,9351],[2369,9538],[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,[74,14],74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9727,14],9728,[2802,10111,9629],2931,2930,2931,2867,2931,2930,2931,[2930,10106,9628],9721,[9722,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15198,15199,15199,15198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15263,15198,15004,15004,15133,15133,15068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,0,0,15327,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3977,9620],3913,3977,3978,3913,3913,3978,3978,3913,3977,3977,3977,[4097,3915],4097,[4097,9330],[4097,9333],4097,4097,4097,4097,4097,[4097,9424],[4097,9425],[9426,14],[9429,14],[3911,9527],[4097,3849],4192,[4097,3848],[3978,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,[9544,14],9444,9445,9446,9447,[9539,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2930,9439],2931,2931,2802,2931,2867,2931,[2930,9433],[2802,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15262,15262,15263,15262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15263,15199,15068,15068,15133,15133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9622,14],9623,[3914,9620],3914,3913,3977,3913,3978,3978,3914,3978,3977,3978,3914,[4097,3979],[4097,9425],[9426,14],[9429,14],[4097,9430],[4097,9330],[4097,9331],[4097,9332],[4097,9333],[4097,9520],[9521,14],0,[9718,14],9719,[4097,9524,9330],[4097,9333],[4097,9520],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2931,9439],2931,2802,2931,2930,[2930,9433],[2931,9434],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15263,15198,15199,15199,15198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9718,14],9719,[3978,9716],3913,3914,3914,3913,3977,[3913,9330],[3914,9333],3914,3978,3913,3977,[3975,9520],[9521,14],0,0,[9526,14],[9426,14],[9427,14],[9428,14],[9429,14],[9521,14],0,0,0,[9526,14],[9426,14],[9429,14],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],[2931,9536],[2802,9339],[2930,9340],[2930,9342],[2802,9529],[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15262,15263,15263,15262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3913,9430],3914,3913,3978,[3977,9424],[3977,9425],[9426,14],[9429,14],[3978,9430],[3977,9330],[3913,9333],[3913,9425],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9535,14],9435,9436,9438,[9530,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15327,15327,15327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[3977,9527],[3977,9330],[3977,9333],[3978,9520],[9521,14],0,0,[9526,14],[9426,14],[9429,14],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[9526,14],[9426,14],[9429,14],[9521,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[659,14],[660,14],[661,14],[662,14],[661,14],[662,14],[661,14],[662,14],[661,14],[662,14],[661,14],[662,14],[661,14],[662,14],[663,14],[664,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16210,16342,16342,16342,16342,16342,16211,16342,16342,16342,16213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[723,14],724,725,726,725,726,725,726,725,726,725,726,725,726,727,[728,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16274,16406,[16406,17237],16406,16406,16406,16275,16406,[16406,17237],16406,16277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[787,14],788,2371,[2370,448],[2435,449],2434,2370,2434,[2371,15059],2434,2370,2434,2370,2434,791,[792,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16274,16339,16340,16340,16339,16340,16339,16339,16340,[16340,15121],16277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[787,14],788,2178,[2371,512],[2434,513],2371,2434,2435,2114,2435,2434,[2051,4347],[2435,4348],[2370,4349],855,[856,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16336,16337,16338,16467,16404,16531,16532,16532,16531,16467,16404,16404,16341,16342,16343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[851,14],852,2370,[2434,576],[2435,577],2371,2371,2178,2370,2370,2370,2371,2434,2371,791,[792,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16400,[16401,17237],16402,16403,16532,16467,16467,[16531,14999],16531,16467,16404,16403,16405,[16406,17237],16407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[787,14],788,2370,2435,2434,2435,2371,2434,2371,2370,2435,2371,2434,2435,855,[856,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16400,16467,16403,16467,16404,16404,[16467,15062],[16532,15063],[16403,15064],[16532,15065],16531,16532,16404,16403,16407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[851,14],852,2371,2435,2371,2371,2371,2242,2243,2435,2434,2434,2435,2370,855,[856,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16400,16531,16404,16468,16467,16403,16404,16467,[16467,15128],16532,16468,16404,16403,16467,16407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9908,9909,9809,0,0,9814,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9908,9909,9910,10002,10003,10005,9905,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[787,14],788,2434,2371,2435,2434,2370,2306,2307,2434,2370,2370,2370,2178,791,[792,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16400,16531,16531,16531,16467,16404,16531,16532,16404,16467,16532,16403,16532,16531,16407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15698,15699,15700,15700,15699,15700,15699,[15700,15441],[15699,15442],15700,15699,15700,15701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10002,10003,10004,10005,9905,9908,9909,9910,10004,10005,9905,9906,9907,9809,0,0,0,0,9814,9906,9907,9910,10002,10003,10004,10005,10006,[3913,10098],[3913,10099],[3913,10101],10001,10002,10003,9905,9906,9907,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[851,14],852,2434,2435,2114,2371,[2370,1427],[2434,1428],[2434,1429],2434,2434,2370,2435,2370,855,[856,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16464,16465,16465,16465,16465,16466,16532,16532,16403,16469,16470,16470,16470,16470,16471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15763,15764,[15764,15572],[15763,15573],[15764,15574],[15763,15504],[15764,15505],[15763,15506],[15764,15507],15763,15764,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3914,10098],[3978,10099],[3913,10100],[3913,10101],10001,10004,10005,10006,[3977,10100],[3978,10101],10001,10002,10003,9905,9906,9907,9908,9909,9910,10002,10003,10006,[3978,10098],[3978,10099],[3914,10100],[3977,10101],[3977,10102],[3914,10194],[3914,10195],[3914,10197],[3978,10097],[3977,10098],[3977,10099],10001,10002,10003,10004,10005,9905,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[915,14],916,917,918,917,918,[2434,1491],[2435,1492],[2435,1493],918,917,918,917,918,919,[920,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16528,16529,16529,16529,16529,16530,16468,16404,16403,16533,16534,16534,16534,16534,16535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15827,15828,[15828,15636],[15827,15637],[15828,15638],[15827,15568],[15828,15569],15570,[15828,15571],15827,15828,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3978,10102],[3977,10194],[3914,10195],[3977,10196],[3977,10197],[3914,10097],[3978,10100],[3977,10101],[3913,10102],[3978,10196],[3978,10197],[3914,10097],[3914,10098],[3914,10099],10001,10002,10003,10004,10005,10006,[3914,10098],[3913,10099],[3913,10102],[3978,10194],[3978,10195],[3914,10196],[3977,10197],3978,3914,3977,3913,3913,[3978,10194],[3914,10195],[3913,10097],[3913,10098],[3977,10099],[3914,10100],[3914,10101],10001,10004,10005,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[979,14],[980,14],[981,14],[982,14],[981,14],[982,14],[1555,14],[1556,14],[1557,14],[982,14],[981,14],[982,14],[981,14],[982,14],[983,14],[984,14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16594,16853,[16531,16854],16855,16597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15955,15955,15891,15955,16019,[17170,15632],[16019,15633],[16020,15634],[16019,15635],17169,16020,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[3913,10102,9620],3978,3913,3978,3977,3977,3913,[3914,10196],[3914,10197],3914,3914,3913,3978,[3978,10194],[3977,10195],[3913,10097],[3977,10098],[3913,10099],[3978,10100],[3914,10101],[3977,10102],[3978,10194],[3913,10195],3914,3977,3913,3977,3978,3914,3913,3978,3913,3914,3978,3914,3978,[3978,10194],[3914,10195],[3978,10196],[3913,10197],[3978,10097],[3977,10100],[3913,10101],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16658,16917,16918,16919,16661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15956,15892,16019,15956,15955,15955,16020,15956,15891,15955,16020,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9910,9911,[3977,9716],3914,3978,3978,3913,3913,3978,3914,3913,3977,3977,3977,3913,3914,3978,3914,[3914,10194],[3914,10195],[3978,10196],[3978,10197],3978,3914,3913,3913,3914,3914,3914,3914,3978,3914,3977,3913,3914,3913,3913,3914,3913,3914,3913,3978,3914,[3977,10196],[3913,10197],[3914,10097],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15956,17170,15955,16019,15955,15891,15891,16019,16020,15955,16019,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10004,10005,10006,[3913,10007],[3978,9812],3913,3977,3914,3914,3977,3978,3913,3977,3914,3913,3914,3914,3978,3914,3913,3913,3913,3977,3978,3978,3978,3913,3977,3977,3914,3978,3914,3978,3978,3978,3977,3978,3914,3977,3914,3914,3914,3914,3914,3978,3978,3978,3978,[3978,10097,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,15956,15956,15892,16019,16020,15891,15955,15891,16020,16020,15955,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9906,9907,9908,9909,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3978,10100],[3913,10101],[3914,10102],3978,3977,3913,3978,3913,3914,3977,3978,3978,3914,3913,3977,3977,3913,3913,3977,3978,3978,3914,3914,3977,3913,3913,3977,3914,3977,3978,3978,3913,3977,3978,3913,3913,3977,3978,3978,3977,3913,3977,3978,3978,3914,3914,3978,3914,[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15762,16019,16020,15956,15956,15891,16020,15955,15955,16020,15891,16020,15765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9809,0,0,0,0,0,0,0,0,9814,9906,9907,9809,0,0,0,0,9814,9906,9907,9908,9909,9809,0,0,0,0,0,0,9814,9910,10002,10003,10004,10005,9905,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3978,10102],[3977,10196],[3913,10197],3977,3977,3913,3978,3977,3978,3914,3913,3977,3914,3913,3977,3914,3913,3913,3978,3977,3978,3914,3914,3977,3977,3913,3978,3978,3977,3977,3914,3977,3914,3977,3977,3913,3913,3977,3977,3914,3977,3977,3914,3913,3913,3913,3977,3977,[3914,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15824,15825,15826,15956,15892,15891,16019,15955,15955,16020,16019,15955,16020,15955,15829,15830,15831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10004,10005,9905,9906,9907,9809,0,0,0,0,9814,9910,10002,10003,9905,9809,0,0,9814,9910,10002,10003,10004,10005,9905,9809,0,0,0,0,9814,9910,10006,[3978,10098],[3913,10099],[3977,10100],[3914,10101],10001,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,10102,9620],3978,3913,3978,3977,3978,3978,3914,3914,3913,3977,3914,3978,3977,3913,3977,3913,3977,3914,3914,3977,3913,3913,3978,3977,3978,3977,3914,3978,3913,3978,3913,3913,3913,3913,3978,3914,3978,3978,3914,3977,3977,3977,3978,3978,3914,3913,3914,[3914,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15889,15890,15891,16019,16019,16019,16019,15956,16020,15892,15891,16020,16020,15893,15894,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,10006,10100,[4097,10101],10001,10002,10003,9905,8945,8946,8947,9909,9910,10006,[3978,10098],[3914,10099],10001,9905,9906,9907,9910,10006,[3913,10098],[3978,10099],[3978,10100],[3977,10101],10001,9905,9809,0,0,9718,9719,10006,[3914,10102],[3978,10194],[3978,10195],[3913,10196],[3914,10197],[3978,10097],[3977,10098],[3977,10099],10001,9905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[3913,9620],3913,3914,3913,3914,3977,3978,3978,3977,3913,3978,3913,3913,3914,3913,3913,3913,3913,3913,3913,3978,3978,3977,3914,3914,3978,3913,3978,3914,3977,3977,3914,3977,3914,3977,3913,3913,3977,3977,3978,3977,3977,3978,3977,3913,3913,3914,3978,[3914,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15827,15828,15956,15955,[15892,17234],15955,15891,16019,16019,15892,16019,[15891,17234],15892,15827,15828,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[4097,10102,9524],[4097,10196],[4097,10197],[4097,10097],[3912,10098],[3913,10099],10001,9041,9042,9043,10005,10006,[3978,10102],[3977,10194],[3913,10195],[3978,10097],10001,10002,10003,10006,[3914,10102],[3977,10194],[3978,10195],[3978,10196],[3978,10197],[3978,10097],10001,9905,9809,0,9622,9623,[3978,10102],3913,3977,3914,3978,3978,3977,[3977,10194],[3978,10195],[3914,10097],10001,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,9911,[3977,9716],3913,3977,3978,3977,3914,3977,3914,3914,3914,3977,3977,3914,3914,3913,3914,3914,3913,3977,3913,3913,3977,3914,3914,3978,3913,3913,3977,3914,3914,3978,3913,3977,3913,3913,3913,3914,3913,3978,3977,3977,3913,3977,3978,3978,3978,3977,3978,[3914,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,1044,1045,1046,1045,1046,1045,1046,1045,1046,1045,1046,1045,1046,1045,1046,1045,1046,1045,1046,1045,1046,1045,1046,1046,1047,1048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15956,16020,16019,16019,16020,15956,16020,16019,15892,16019,16019,15891,17170,15955,16020,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[4097,9524,9620],4097,4097,[4097,3784],[3976,10194],[3913,10195],[3914,10097],[3913,9137],[3977,9138],[3977,9139],[3977,10101],[3913,10102],3913,3914,3913,3914,[3913,10097],[3914,10098],[3977,10099],[3913,10102],3914,3914,3978,3913,3914,3978,[3977,10097],10001,9616,9617,0,9526,[3977,9527],3977,3978,3913,3913,3977,3913,3914,3977,3913,[3913,10097],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3913,10007],[3978,9812],3913,3913,3913,3913,3914,3913,3978,3914,3913,3977,3914,3913,3977,3913,3977,3978,3914,3978,3978,3913,3977,3914,3978,3914,3977,3978,3978,3978,3978,3913,3914,3977,3978,3913,3914,3978,3977,3914,3913,3913,3978,3978,3978,3914,3914,3913,3913,[3913,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,1108,1109,1110,1109,1110,1109,1110,1109,1110,1109,1110,[1109,15231],[1110,15232],[1109,15233],1110,1109,1110,1109,1110,1109,1110,1109,1110,1110,1111,1112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,15891,17170,15955,16020,15956,15955,16019,15956,16020,16019,15892,15891,15892,15955,16020,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[4097,9620],4096,4097,[4097,3782],3977,3978,3978,[3914,9233],[3978,9234],[3913,9235],[3978,10197],3978,3977,3914,3977,3914,3978,[3914,10194],[3978,10195],3978,3978,3977,3914,3977,3977,3977,3914,[3913,10097],9712,9713,0,9718,9719,3978,3978,3914,3977,3978,3977,3978,3977,3913,3913,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,10102,9620],3977,3914,3977,3977,3914,3914,3977,3978,3914,3977,3978,3978,3914,3914,3913,3913,3913,3913,3913,3913,3913,3978,3913,3913,3914,3977,3914,3977,3913,3978,3914,3914,3978,3977,3978,3978,3977,3978,3913,3913,3978,3977,3978,3914,3913,3913,3914,3977,3977,[3914,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,1172,1174,1174,1174,1174,1174,1174,1174,1174,1174,15294,15295,15296,15297,15298,1174,1174,1174,1174,1174,1174,1174,1174,1238,1239,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15952,15953,15953,15953,15953,15958,15954,16019,15956,15955,15957,15958,15958,15958,15958,15958,15959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[4097,9620],4097,4097,[4097,3910],3913,3977,3913,3914,3977,3977,3913,3913,3913,3978,3914,3978,3913,3913,3913,3977,3978,3914,3913,3914,3914,3913,3978,[3978,8951],8952,[74,8953],0,[74,8948],8949,[3913,8950],3913,3913,3914,3914,3977,3978,3913,3914,3978,9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[3914,9620],3978,3913,3977,3914,3978,3978,3978,3913,3977,3914,3914,3978,3977,3914,3977,3914,3977,3977,3913,3913,3978,3914,3913,3977,3913,3977,3977,3914,3913,3977,3913,3913,3914,3913,3977,3977,3977,3978,3913,3978,3978,3977,3977,3913,3913,3978,3914,3914,3913,[3977,9811],[3977,10000],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1235,1236,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,15358],15359,15360,15361,[1174,15362],1174,1174,1174,1174,1174,1174,1174,1174,1238,1239,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16016,16017,16017,16017,16017,16022,16018,15955,15956,[16020,17234],16021,16022,16022,16022,16022,16022,16023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[4097,3786,9620],4097,[4097,3783],3976,3913,3978,3978,3978,3977,3913,3978,3978,3913,3914,3911,[4097,4039],3912,3977,3913,3977,3914,3914,3913,3913,3977,3977,3913,[3914,9047],9048,[74,9049],0,[74,9044],9045,[3913,9046],3913,3978,3978,3914,3977,3913,3914,3914,3914,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9908,9909,9910,9911,[3914,9716],3913,3913,3913,3977,3978,3978,3978,3914,3913,3914,3978,3977,3977,3914,3977,3914,3978,3978,3978,3913,3914,3914,3978,3914,3913,3978,3978,3913,3913,3914,3978,3977,3913,3978,3977,3978,3913,3977,3977,3913,3914,3913,3914,3913,3914,3978,3978,3913,3913,3913,3914,[3913,10097,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,1172,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,15422],15423,15424,15425,[1174,15426],1174,1174,1174,1174,1174,1174,1174,1174,1238,1175,1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15888,16020,15955,15892,15895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,9911,[3975,9716],[4097,3719],3976,3913,3913,3978,3978,3914,3913,3913,3913,3913,3911,[4097,4042],[4097,3849],4097,[4097,3848,9330],[3914,9333],3913,3977,3914,3913,3978,3914,3914,3978,3914,[3914,9143],[74,9144],[74,9145],0,[74,9140],[74,9141],[3913,9142],3977,3978,3977,3914,3977,3914,3978,3978,[3978,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10004,10005,10006,[3914,10007],[3977,9812],3978,3914,3978,3913,3977,3978,3977,3978,3914,3914,3914,3914,3978,3914,3913,3977,3977,3978,3914,3913,3978,3977,3977,3978,3914,3913,3913,3977,3978,3913,3978,3914,3977,3914,3978,3914,3913,3978,3913,3977,3913,3978,3914,3978,3913,3913,3913,3913,3913,3978,3977,[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1235,1236,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,15486],[1174,15487],15488,[1174,15489],[1174,15490],1174,1174,1174,1174,1174,1174,1174,1174,1238,1239,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16594,16853,[16020,16854],16855,16597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,10006,[3977,10007],[3914,9812],3977,3977,3977,3977,3914,3914,3913,3978,3913,3914,3911,[4097,3849],4192,4097,[4097,9425],9426,9429,[3977,9527],3978,3978,3911,[4097,4039],3912,3913,3978,3978,[3914,9425],9521,0,0,9814,9815,3914,3977,3977,3914,3913,3978,3978,3913,[3977,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,10006,[3978,10100],[3977,10101],[3913,10102],3977,3977,3977,3977,3978,3978,3913,3978,3914,3913,3914,3977,3913,3914,3977,3977,3913,3977,3978,3914,3978,3913,3913,3914,3913,3913,3914,3978,3913,3977,3978,3914,3913,3913,3977,3977,3913,3978,3978,3913,3978,3977,3978,3978,3914,3978,3978,3978,3977,3914,3977,3913,[3914,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,1172,1174,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,15551],[1174,15552],[1174,15553],1174,1174,1174,1174,1174,1174,1174,1174,1174,1238,1175,1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16210,[16211,14996],[16212,14997],16211,16212,[16211,14996],[16212,14997],16211,16212,16213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,660,661,662,661,662,661,662,661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,660,661,662,661,662,661,662,661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16658,16917,16918,16919,16661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3913,10102],3914,3977,3977,3914,3913,[3914,9330],[3977,9331],[3978,9332],[3977,9333],3913,3977,3977,[4097,3979],4097,4097,[4097,9425],9521,0,9718,9719,[3914,9524,9330],[3977,9333],[4097,3849],4097,[4097,3847],[4097,4040],[4097,4040],[4043,9520],9521,0,0,9622,9623,9911,3913,3978,3914,3977,3977,3977,3913,3978,9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3978,10102],[3913,10196],[3978,10197],3914,3913,3913,3914,3978,3913,3913,3914,3977,3978,3913,3978,3978,3978,3977,3977,3913,3978,3977,3978,3978,3977,3914,3977,3978,3914,3913,3977,3914,3914,3977,3978,3978,3977,3977,3977,3913,3913,3914,3914,3913,3977,3913,3978,3913,3913,3977,3978,3977,3978,3913,3978,[3977,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1235,1236,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,372],[1174,373],[1174,373],[1174,373],[1174,374],1174,1174,1174,1174,1174,1174,1174,1174,1238,1239,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16274,[16275,15060],[16276,15061],[16275,17237],16276,[16275,15060],[16276,15061],[16275,17237],16276,16277,16210,16211,16212,16213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,724,725,726,725,726,725,726,725,726,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,724,725,726,725,726,725,726,725,726,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3977,9527],3978,3914,3977,3913,[3978,9425],9426,9427,9428,9429,[3977,9430],3914,3914,3975,[4097,3785],[4097,9425],9521,0,0,0,9526,9426,9429,[4097,9430],4097,4192,4097,[4097,9523],9616,9617,0,0,9622,9623,[3977,10007],3914,3978,3978,3977,3978,3978,3914,3978,9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,10102,9620],3913,3914,3977,3977,3977,3913,3914,3977,3977,3913,3913,3978,3913,3914,3978,3913,3978,3914,3914,3914,3978,3914,3914,3978,3914,3977,3977,3978,3914,3914,3978,3913,3913,3977,3978,3913,3978,3913,3913,3913,3913,3913,3978,3913,3978,3913,3978,3978,3914,3913,3913,3978,3978,3978,3914,[3913,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,1172,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,436],437,437,437,[1174,438],1174,1174,1174,1174,1174,1174,1174,1174,1238,1175,1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16274,[16339,15124],[16340,15125],16339,16340,[16339,15124],[16340,15125],16339,16340,16341,16338,16275,[16276,17237],16277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,790,789,790,854,790,790,854,853,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,790,789,790,854,790,790,854,853,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9527],[3913,9330],[3914,9333],[3977,9520],9521,0,0,0,0,9526,[3914,9527],[3913,9330],[3978,9333],[3979,9520],9521,0,0,0,0,0,0,0,9526,[4097,9430],[4097,9330],[4097,9333],[4097,9520],9521,0,0,0,9718,9719,3913,3978,3914,3914,3977,3978,3913,3914,[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3978,9716],3978,3977,3978,3914,3913,3977,3913,3978,3977,3977,3914,3914,3977,3978,3977,3913,3913,3978,3978,3977,3913,3913,3978,3978,3977,3914,3978,3977,3913,3978,3913,3977,3914,3914,3913,3978,3977,3913,3914,3978,3977,3914,3977,3914,3978,3977,3914,3914,3978,3914,3977,3977,3914,3978,3977,[3914,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1235,1236,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,436],437,437,437,[1174,438],1174,1174,1174,1174,1174,1174,1174,1174,1238,1239,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16336,16337,16338,16532,16403,16467,16468,16404,16403,16532,16404,16405,16402,16339,16340,16341,16213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,790,789,789,853,854,789,790,[789,3260],[853,3261],3262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3068,[790,3069],[790,3070],789,789,853,854,789,790,853,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,9521,0,0,0,0,0,0,9526,9426,9429,9521,0,0,0,0,0,0,0,0,0,9526,9426,9429,9521,0,0,0,0,0,9526,[3978,9527],[3914,9330],[3977,9333],[3978,9330],[3978,9331],[3977,9332],[3913,9333],[3913,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3977,9430],3914,3977,3977,3977,3913,3913,3977,3978,3914,3914,3977,3914,3914,3914,3914,3978,3978,3977,3978,3978,3914,3913,3913,3914,3914,3978,3914,3914,3977,3913,3977,3913,3914,3978,3913,3914,3914,3978,3978,3914,3913,3977,3914,3977,3978,3977,3977,3913,3914,3914,3977,3913,3978,3914,3914,[3913,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,1172,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,436],437,437,437,[1174,438],1174,1174,1174,1174,1174,1174,1174,1174,1238,1175,1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16400,[16401,17237],16402,16403,16532,16468,16532,16468,16468,16468,16468,16468,16531,16531,16468,16405,16277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,790,790,854,790,853,790,790,[789,3324],[854,3325],3326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3132,[853,3133],[789,3134],790,854,790,853,790,790,789,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,9426,9427,9428,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3977,9527],3978,3913,3913,3978,3977,3977,3914,3913,3913,3977,3977,3978,3977,3914,3914,3977,3914,3914,3978,3978,3977,3977,3913,3978,3914,3913,3978,3977,3913,3914,3913,3977,3913,3913,3913,3913,3913,3977,3914,3978,3913,3914,3913,3913,3978,3914,3914,3913,3914,3914,3914,3977,3913,3978,[3978,9715],9904,9905,9906,9907,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1235,1236,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,436],437,437,437,[1174,438],1174,1174,1174,1174,1174,1174,1174,1174,1238,1239,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16400,[16532,15121],16468,16532,16467,16403,16404,16532,16403,16468,16467,16531,16403,16531,[16532,15639],[16531,15640],16277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,790,790,853,790,[790,1427],[789,1428],[853,1429],[790,3388],[854,3389],3390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3196,[854,3197],[853,3198],790,[854,1427],[853,1428],[789,1429],790,854,854,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,9524],3977,3978,3977,3977,3913,3913,3913,3913,3978,3913,3977,3914,3913,3977,3978,3977,3978,3913,3978,3914,3977,3914,3978,3913,3914,3977,3977,3913,3978,3914,3914,3978,3978,3977,3913,3977,3977,3978,3977,3977,3913,3914,3914,3913,3978,3977,3914,3977,3913,3977,3977,3913,3914,[3978,9811],[3913,10000],10001,10002,10003,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,1172,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,436],437,437,437,[1174,438],1174,1174,1174,1174,1174,1174,1174,1174,1238,1175,1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16400,16532,16404,16532,16403,16532,16531,16468,16404,16467,16531,16467,16467,[16403,15702],[16404,15703],[16468,15704],16407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,918,917,918,[790,1491],[853,1492],[854,1493],918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,918,[789,1491],[789,1492],[854,1493],917,918,918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3913,9620],3978,3913,3977,3913,3914,3913,3913,3913,3978,3978,3978,3978,3978,3977,3977,3978,3914,3913,3977,3978,3913,3913,3977,3978,3913,3978,3914,3913,3978,3914,3978,3978,3977,3914,3913,3978,3914,3913,3914,3914,3977,3978,3914,3913,3914,3913,3977,3978,3914,3913,3913,3977,3978,3978,3913,[3977,10097],[3977,10098],[3977,10099],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1235,1236,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,436],437,437,437,[1174,438],1174,1174,1174,1174,1174,1174,1174,1174,1238,1239,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16464,16465,16466,16532,16468,16403,16467,16468,16532,16404,16531,16532,16403,[16468,15766],[16468,15767],[16468,15768],16407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,982,981,982,1555,1556,1557,982,983,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,982,1555,1556,1557,981,982,982,983,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[3913,9620],3977,3977,3978,3913,3977,3978,3913,3977,3913,3913,3914,3913,3978,3977,3914,3914,3914,3913,3977,3977,3913,3978,3977,3978,3913,3913,3914,3914,3913,3913,3914,3913,3978,3978,3977,3913,3913,3978,3913,3977,3978,3978,3913,3914,3913,3914,3913,3977,3913,3978,3978,3978,3914,3978,3913,3978,[3977,10194],[3913,10195],[3978,10097],10001,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,1172,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,436],437,437,437,[1174,438],1174,1174,1174,1174,1174,1174,1174,1174,1238,1175,1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16528,16529,16530,16468,16467,16532,16404,16531,16468,16531,16403,16469,16470,16470,16470,16470,16471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,9911,[3914,9716],3914,3913,3914,3978,3914,3913,3913,3977,3914,3977,3978,3913,3914,3978,3914,3978,3914,3914,3978,3914,3913,3914,3977,3914,3914,3914,3978,3913,3914,3914,3913,3913,3978,3914,3914,3914,3977,3977,3913,3914,3914,3978,3977,3914,3977,3914,3977,3913,3977,3913,3978,3914,3977,3914,3914,3914,3914,3978,3977,[3913,10097],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1235,1236,1174,1174,1174,1174,1174,1174,1174,1174,1174,[1174,500],[1174,501],[1174,501],[1174,501],[1174,502],1174,1174,1174,1174,1174,1174,1174,1174,1238,1239,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16274,16532,16404,16404,16467,16467,16403,16467,16531,16533,16534,16534,16534,16534,16535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3978,10007],[3914,9812],3914,3977,3913,3978,3913,3913,3914,3977,3978,3914,3977,3977,3978,3977,3913,3913,3913,3978,3978,3977,3978,3978,3914,3914,3977,3913,3977,3977,3914,3977,3914,3913,3914,3913,3914,3914,3977,3978,3977,3914,3978,3913,3913,3977,3913,3977,3977,3913,3978,3978,3913,3914,3978,3978,3913,3977,3913,3913,3913,3977,[3978,10097,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1299,1300,1301,1302,1301,1302,1301,1302,1301,1302,1301,1302,[1174,1523],[1174,1524],[1174,1525],1302,1301,1302,1301,1302,1301,1302,1301,1302,1302,1303,1304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16594,16595,16596,16595,16853,[16404,16854],16855,16595,16596,16597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,10102,9620],3913,3977,3914,3977,3977,3977,3977,3977,3978,3977,3913,3913,3913,3978,3913,3977,3977,3978,3913,3977,3914,3977,3978,3978,3913,3914,3978,3914,3978,3977,3913,3977,3977,3914,3978,3977,3977,3977,3978,3977,3978,3913,3914,3978,3977,3978,3913,3914,3913,3977,3913,3914,3977,3914,3978,3978,3913,3914,3977,3978,3913,3913,[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1363,1364,1365,1366,1365,1366,1365,1366,1365,1366,1365,1366,1587,1588,1589,1366,1365,1366,1365,1366,1365,1366,1365,1366,1366,1367,1368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16658,16659,16660,16659,16917,16918,16919,16659,16660,16661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,660,661,661,661,661,661,661,661,661,661,662,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,9620],3914,3978,3914,3914,3914,3913,3978,3977,3978,3978,3978,3977,3913,3913,3914,3978,3977,3977,3978,3914,3914,3977,3977,3913,3914,3914,3977,3977,3913,3977,3978,3978,3913,3978,3977,3914,3913,3913,3913,3914,3977,3978,3977,3913,3977,3913,3977,3977,3913,3978,3977,3978,3978,3913,3914,3978,3977,3977,3914,3914,3913,[3978,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,724,725,725,725,725,725,725,725,725,725,726,726,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,660,661,661,661,661,661,661,661,661,661,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3914,9716],3978,3913,3978,3913,3978,3914,3977,3914,3978,3978,3914,3978,3914,3913,3913,3913,3977,3913,3977,3977,3977,3977,3913,3914,3978,3914,3914,3978,3914,3913,3914,3913,3913,3977,3914,3978,3978,3914,3913,3977,3978,3914,3913,3977,3977,3977,3978,3978,3914,3914,3913,3977,3977,3913,3978,3913,3978,3913,3913,3913,[3977,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2371,2370,2371,2370,2371,2370,2371,2370,2370,2371,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,724,725,725,725,725,725,725,725,725,725,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9430],3977,3978,3978,3978,3977,3977,3977,3913,3978,3913,3977,3913,3977,3977,3913,3978,3913,3913,3913,3978,3914,3978,3914,3977,3914,3978,3913,3913,3978,3978,3978,3978,3914,3914,3913,3978,3977,3977,3977,3914,3977,3977,3914,3977,3914,3978,3978,3978,3977,3914,3914,3977,3913,3913,3977,3977,3913,3978,3978,3977,[3913,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2434,2435,2434,2435,[2434,4347],[2435,4348],[2434,4349],2435,2434,2434,2435,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2371,2370,[2371,4347],[2370,4348],[2371,4349],2370,2371,2370,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],3914,3913,3978,3977,3977,3977,3914,3914,3913,3977,3978,3978,3913,3914,3978,3913,3978,3977,3978,3913,3913,3914,3978,3978,3977,3914,3914,3977,3913,3913,3977,3913,3914,3913,3913,3978,3977,3977,3977,3978,3913,3914,3914,3914,3913,3913,3978,3913,3913,3978,3977,3977,3978,3977,3913,3913,3978,3977,3978,[3978,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2370,2370,2370,2370,2370,2370,2370,2370,2434,2435,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2434,2435,2434,2435,2434,2435,2434,2435,2434,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,9524],3977,3977,3914,3977,3914,3914,3978,3978,3914,3978,3914,3913,3977,3913,3914,3978,3914,3914,3978,3913,3978,3978,3977,3977,3913,3977,3978,3914,3914,3913,3914,3978,3978,3914,3914,3913,3913,3914,3913,3978,3977,3914,3978,3977,3913,3978,3914,3977,3977,3914,3977,3913,3978,3978,3913,3978,3913,3914,[3977,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[2434,4347],[2434,4348],[2434,4349],2434,2434,2434,2434,2434,[2434,4347],[2434,4348],[2435,4349],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2370,2370,2370,2370,2370,2370,2370,2370,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,9620],3914,3914,3978,3913,3914,3978,3978,3913,3977,3913,3914,3978,3914,3913,3913,3913,3913,3913,3978,3914,3978,3978,3978,3914,3977,3914,3914,3977,3914,3977,3913,3914,3977,3977,3914,3914,3977,3978,3977,3914,3913,3913,3977,3913,3978,3913,3978,3977,3978,3913,3977,3978,3914,3978,3913,3978,3978,3914,[3977,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2370,2370,2370,2370,2370,2370,2370,2370,2434,2435,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[2434,4348],[2434,4349],2434,2434,2434,2434,2434,[2434,4347],[2434,4348],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],3978,3978,3914,3977,3977,3978,3913,3977,3978,3913,3914,3913,3977,3914,3978,3978,3978,3914,3914,3977,3978,3914,3978,3914,3913,3913,3914,3977,3914,3978,3977,3913,3913,3914,3977,3977,3913,3914,3978,3977,3977,3977,3913,3977,3978,3913,3977,3913,3978,3913,3913,3977,3977,3977,3914,3978,3977,3977,[3977,9811],[3977,10000],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2370,2370,2370,[2370,4347],[2370,4348],[2370,4349],2370,2370,2434,2435,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2370,2370,2370,2370,2370,2370,2370,2370,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],3914,3913,3913,3913,3977,3913,3913,3977,3914,3914,3978,3977,3977,3914,3977,3913,3914,3913,3977,3913,3978,3978,3914,3978,3913,3978,3978,3977,3914,3977,3977,3913,3913,3914,3913,3913,3913,3977,3977,3977,3913,3977,3977,3913,3913,3977,3978,3914,3978,3977,3978,3913,3914,3978,3914,3977,3913,3913,3914,[3914,10097,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2434,2370,2370,2370,2370,2370,2370,2370,2370,2371,2435,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2370,2370,2370,2370,2370,2370,2370,2370,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3977,9524],3977,3977,3914,3913,3913,3977,3978,3914,3978,3914,3978,3914,3977,3977,3978,3914,3978,3913,3977,3914,3977,3913,3978,3913,3914,3914,3913,3913,3914,3977,3978,3913,3913,3977,3978,3977,3913,3913,3977,3913,3978,3977,3978,3913,3977,3978,3978,3977,3978,3914,3977,3978,3978,3977,3913,3913,3914,3978,[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2370,2434,2434,2370,2371,2371,2371,2371,2371,[2371,4153],2371,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2434,2370,2370,[2370,4347],[2370,4348],[2370,4349],2370,2370,2370,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3977,9620],3978,3914,3914,3914,3977,3977,3978,3914,3913,3914,3977,3913,3914,3978,3977,3978,3978,3978,3978,3978,3977,3978,3914,3913,3914,3914,3913,3913,3977,3914,3914,3978,3914,3977,3977,3978,3977,3977,3913,3913,3914,3913,3977,3914,3978,3977,3914,3913,3978,3977,3977,3913,3978,3913,3977,3914,3914,[3913,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,2434,2434,2435,2434,[2435,1427],[2435,1428],[2435,1429],2435,2435,2435,2435,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,917,917,917,917,917,917,918,918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3913,9620],3977,3914,3977,3978,3913,3978,3978,3913,3977,3977,3978,3978,3977,3978,3978,3977,3913,3914,3914,3913,3978,3977,3913,3913,3913,3913,3913,3914,3913,3914,3978,3978,3913,3977,3977,3978,3977,3977,3913,3977,3913,3978,3914,3978,3977,3913,3913,3978,3914,3977,3977,3913,3913,3914,3977,3913,[3913,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,917,917,917,[2435,1491],[2435,1492],[2435,1493],917,917,918,917,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,981,981,981,981,981,981,982,982,983,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9815,[3977,9620],3977,3977,3913,3914,3977,3914,3977,3978,3977,3913,3977,3913,3977,3914,3913,3914,3913,3977,3978,3977,3978,3914,3914,3977,3977,3977,3914,3977,3977,3913,3978,3913,3977,3978,3978,3978,3913,3914,3978,3914,3913,3914,3977,3913,3914,3913,3914,3913,3977,3977,3977,3913,3913,3978,3977,3978,[3913,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,981,981,981,1555,1556,1557,981,981,982,981,983,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9814,9910,9911,[3913,9716],3913,3914,3913,3978,3913,3978,3977,3913,3978,3977,3914,3913,3978,3977,3914,3914,3978,3914,3977,3913,3914,3977,3913,3913,3914,3978,3914,3914,3913,3977,3914,3914,3913,3977,3914,3977,3913,3914,3914,3913,3977,3977,3913,3977,3914,3978,3914,3914,3913,3914,3978,3914,3913,3914,3913,3978,[3977,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,660,661,661,662,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[10006,9524],[3978,10007],[3977,9812],3914,3978,3978,3913,3978,3914,3914,3977,3977,3977,3978,3913,3978,3978,3978,3914,3978,3914,3977,3914,3914,3913,3978,3914,3977,3977,3978,3978,3914,3913,3914,3978,3978,3977,3978,3913,3977,3977,3978,3914,3978,3913,3913,3978,3913,3977,3977,3914,3914,3977,3977,3914,3977,3978,3914,[3913,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,724,725,725,726,726,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3978,10102,9620],3978,3914,3978,3913,3913,3978,3977,3977,3914,3914,3978,3914,3977,3978,3977,3913,3913,3913,3977,3913,3977,3977,3977,3913,3913,3914,3977,3914,3977,3913,3977,3914,3977,3977,3978,3977,3978,3914,3977,3913,3977,3913,3978,3914,3913,3977,3977,3914,3977,3978,3914,3978,3977,3914,3914,3914,[3978,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,660,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,789,789,790,790,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3977,9430],3914,3978,3977,3913,3914,3914,3978,3913,3913,3914,3977,3914,3914,3978,3913,3978,3913,3913,3913,3914,3914,3914,3913,3914,3913,3977,3913,3978,3977,3978,3913,3978,3913,3914,3978,3978,3913,3977,3913,3977,3913,3914,3914,3913,3913,3978,3913,3914,3913,3913,3978,3913,3914,3978,3914,3977,[3913,9619],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,724,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,725,726,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,789,789,789,790,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],3914,3913,3913,3977,3914,3978,3913,3978,3913,3913,3977,3914,3913,3914,3978,3914,3977,3914,3914,3978,3978,3977,3978,3914,3978,3977,3914,3913,3977,3913,3977,3978,3978,3914,3913,3977,3913,3914,3913,3978,3914,3914,3914,3914,3913,3913,3977,3914,3913,3977,3913,3914,3913,3977,3914,[3914,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[789,183],[790,184],[789,184],[790,184],[789,184],[790,184],[789,184],[790,184],[789,184],[790,184],[789,184],[790,184],[789,184],[790,184],[789,184],[790,185],789,[790,375],[789,376],[790,376],[789,376],[790,376],[789,376],[790,376],[789,376],[790,376],[789,376],[790,376],[789,376],[790,376],[789,376],[790,376],[789,377],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,853,853,854,854,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3978,9524],3913,3977,3977,3977,3914,3977,3914,3977,3977,3978,3913,3977,3978,3914,3914,3978,3913,3913,3978,3978,3978,3913,3978,3914,3913,3913,3978,3978,3978,3977,3977,3914,3977,3913,3977,3913,3977,3978,3913,3977,3914,3978,3914,3914,3977,3913,3977,3913,3914,3914,3914,3914,3978,3977,[3914,9619],9808,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,[853,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[854,249],853,[854,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[853,441],855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,917,918,918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3913,9620],3978,3977,3914,3978,3913,3914,3913,3977,3978,3978,3913,3978,3978,3977,3977,3977,3913,3914,3914,3913,3914,3913,3978,3977,3913,3914,3913,3914,3914,3913,3914,3913,3913,3978,3914,3913,3977,3977,3914,3913,3914,3978,3978,3913,3977,3914,3914,3978,3914,3978,3977,3913,3914,3914,[3978,9715],9904,9905,9809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[789,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[790,249],789,[790,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[789,441],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,981,982,982,983,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9430],3914,3913,3914,3913,3913,3914,3977,3978,3913,3978,3978,3978,3977,3978,3977,3914,3914,3978,3977,3913,3913,3977,3978,3913,3914,3914,3977,3977,3978,3978,3914,3914,3978,3913,3914,3914,3913,3913,3914,3978,3978,3914,3977,3913,3977,3978,3914,3914,3914,3913,3978,3913,3978,3913,[3913,9811],[3913,10000],[10001,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,1056,1057,1058,1057,1058,1057,1058,1057,1058,1057,1058,1057,1058,1057,1057,1058,1059,1060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,[853,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[854,249],853,[854,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[853,441],855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9527],3914,3978,3977,3914,3977,3977,3977,3914,3914,3977,3977,3914,3913,3914,3977,3977,3913,3913,3977,3914,3978,3978,3913,3978,3913,3978,3913,3978,3914,3977,3978,3977,3913,3913,3978,3978,3913,3978,3978,3914,3913,3977,3913,3914,3977,3913,3913,3914,3977,3914,3914,3913,3977,3977,3977,[3978,10097,9715],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1119,1120,1121,1122,1121,1122,1121,1122,[1121,15610],[1122,15611],[1121,15612],1122,1121,1122,1121,1121,1122,1123,1124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[789,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[790,249],789,[790,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[789,441],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,660,661,661,661,[662,3221227029],[661,3221227028],[661,3221227027],661,661,661,661,661,661,[661,3221227029],[661,3221227028],[662,3221227027],661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9622,9623,[3913,9524],3914,3913,3977,3913,3913,3914,3914,3977,3914,3977,3978,3977,3914,3978,3977,3914,3977,3914,3914,3913,3978,3914,3914,3914,3913,3977,3978,3913,3977,3977,3977,3914,3913,3977,3977,3913,3978,3914,3914,3977,3978,3977,3914,3914,3978,3977,3914,3977,3978,3913,3914,3914,3913,3914,[3914,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1183,1184,1185,1186,1185,1186,1185,[1186,15673],[1185,15674],[1186,15675],[1185,15676],[1186,15677],1185,1186,1185,1186,1185,1581,1582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,[853,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[854,249],853,[854,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[853,441],855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,724,725,725,725,[2689,3221226965],[2689,3221226964],[2689,3221226963],725,725,725,725,725,725,[3983,3221226965],[3983,3221226964],[3983,3221226963],725,726,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9718,9719,[3978,9620],3914,3977,3978,3914,3913,3914,3977,3913,3977,3978,3913,3978,3977,3978,3978,3978,3978,3977,3914,3914,3913,3914,3977,3913,3977,3978,3977,3978,3977,3913,3913,3914,3913,3978,3977,3913,3914,3978,3977,3913,3977,3977,3913,3913,3914,3913,3914,3978,3914,3913,3914,3978,3977,[3977,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,1248,1249,1250,1249,1250,1249,[1250,15737],[1249,15738],[1250,15739],[1249,15740],[1250,15741],1249,1250,1249,1250,1249,[1250,1645],1646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1061,1062,1063,1064,1063,1064,1063,1064,1063,1064,1063,1064,1063,1064,1063,1064,1063,1063,1063,1064,1065,1066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[789,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[790,249],789,[790,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[789,441],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2688,2689,2690,[2688,3221226901],[2689,3221226900],[2689,3221226899],2688,2689,[2690,3788],3983,3983,3918,[3919,3221226901],[3983,3221226900],[3983,3221226899],3983,3920,791,792,0,0,0,0,0,0,0,0,0,0,659,660,661,661,661,661,661,661,661,661,661,662,662,662,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3913,9430],3913,3978,3978,3914,[3977,9330],[3977,9331],[3978,9332],[3914,9333],3913,3977,3977,3913,3914,3914,3913,3913,3914,3977,3913,3914,3977,3978,3977,3913,3978,3913,3978,3913,3977,3914,3914,3977,3914,3913,3913,3913,3913,3913,3977,3977,3914,3914,3978,3914,3977,3913,3978,3978,3977,3977,3977,3978,[3913,9523],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1183,1184,1185,1186,1185,1186,1185,[1186,15801],[1185,15802],[1186,15803],[1185,15804],[1186,15805],1185,1186,1185,1186,1185,1709,1710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1125,1126,1127,1128,1127,1128,1127,1128,1127,1128,[1127,15615],[1128,15616],[1127,15617],1128,1127,1128,1127,1127,1127,1128,1129,1130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,[853,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[854,249],853,[854,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[853,441],855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2752,2753,2754,2752,2755,2689,[2752,2627],2753,[2754,3852],3917,3983,3983,3983,3983,3983,3919,3983,791,792,0,0,0,0,0,0,0,0,0,0,723,724,725,725,725,725,725,725,725,725,725,726,726,726,726,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3914,9430],[3978,9330],[3914,9333],[3978,9520],9426,9427,9428,9429,[3913,9430],3914,3977,[3978,9330],[3914,9331],[3977,9332],[3913,9333],3913,3978,3914,3913,3977,3977,3914,3913,3978,3913,3978,3977,3977,3978,3914,3978,3978,3977,3977,3978,3913,3977,3978,3913,3978,3914,3914,3914,3977,3977,3978,3977,3913,3977,3978,3977,3913,[3978,9619],9616,9617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,1248,1249,1250,1249,1250,1249,[1250,15865],[1249,15866],[1250,15867],[1249,15868],[1250,15869],1249,1250,1249,1250,1249,1187,1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1393,[1192,1394],1192,1192,1192,1192,1192,1192,1192,[1192,15678],[1192,15679],[1192,15680],[1192,15681],[1192,15682],1192,1192,1192,1192,1192,1192,1193,1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[789,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[790,249],789,[790,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[789,441],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2816,2817,2818,2625,2817,2818,2816,2817,[2818,3916],[3917,566],[3983,567],3983,3983,3917,3983,3919,3919,791,792,0,0,0,0,0,0,0,0,0,0,787,788,3908,3908,3971,3905,3971,3907,3971,3908,3971,3906,3971,3459,[3908,60],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3977,9426],[3977,9429],9521,0,0,0,0,9526,[3977,9527],[3913,9425],9426,9427,9428,9429,[3977,9430],3978,3914,3978,3977,3977,3913,3913,3914,3977,3978,3913,3914,3914,3977,3977,3914,3977,3914,3977,3978,3978,3913,3914,3977,3978,3913,3978,3977,3914,3978,3978,3913,3978,3978,3977,3913,[3913,9715,9330],9712,9713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1183,1184,1185,1186,1185,1186,1185,1186,[1185,15930],[1186,15931],[1185,15932],1186,1185,1186,1185,1186,1185,1251,1252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1457,[1192,1458],1192,1192,1192,1192,1192,1192,1192,[1192,15742],[1192,15743],[1192,15744],[1192,15745],[1192,15746],1192,1192,1192,1192,1192,1192,1257,1258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,[853,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[854,249],853,[854,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[853,441],855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2688,2753,2689,2688,2689,2689,2688,2689,[2690,3980],[3917,630],[3983,631],3983,3983,3983,3918,3919,3920,791,792,0,0,0,0,0,0,0,0,0,0,787,788,3908,3971,3971,3971,3906,3971,3908,3906,3905,3971,3971,3906,3907,791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9521,0,0,0,0,9526,[3978,9527],[3914,9330],[3913,9333],3977,3913,3914,3977,3913,3913,3913,3978,3914,3913,3977,3914,3977,3977,3978,3913,3977,3913,3977,3913,3977,3914,3977,[3978,9330],[3977,9331],[3978,9332],[3977,9333],3977,3913,3978,3977,3914,[3913,9425],9426,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,1248,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1187,1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,[1192,1522],1192,1192,1192,1192,1192,1192,1192,[1192,15806],[1192,15807],[1192,15808],[1192,15809],[1192,15810],1192,1192,1192,1192,1192,1192,1193,1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[789,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[790,249],789,[790,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[789,441],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2690,2755,2754,2752,2755,2754,2752,2755,[2754,3916],[3917,694],[3983,695],3919,3983,3983,3983,3919,3983,791,792,0,0,0,0,0,0,0,0,0,0,787,788,3971,3971,3907,3459,3971,3971,3971,3971,3395,3971,3971,3906,3907,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,[3914,9430],3978,3914,[3978,9330],[3977,9331],[3978,9333],3914,3977,3913,3913,3978,3977,3914,3978,3913,3914,3913,3977,[3978,9330],[3914,9333],3914,3977,[3913,9425],9426,9427,9428,9429,[3977,9430],3913,[3914,9330],[3913,9333],[3914,9520],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1183,1184,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1251,1252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1253,1254,1192,1192,1192,1192,1192,1192,1192,[1192,15870],[1192,15871],[1192,15872],[1192,15873],[1192,15874],1192,1192,1192,1192,1192,1192,1257,1258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,[853,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[854,249],853,[854,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[853,441],855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,2816,[2817,2626],2818,2816,2817,2755,2816,2817,[2818,3980],3917,3920,3983,3983,3983,3983,3983,3983,791,792,0,0,0,0,0,0,0,0,0,0,787,788,3971,3906,3907,3905,3971,3971,3971,3971,3971,3971,3971,3971,3971,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,[3978,9527],[3978,9425],9426,9427,9429,[3914,9430],3914,3977,[3913,9330],[3914,9331],[3978,9333],3977,3978,3978,3914,3978,[3913,9425],9426,9429,[3977,9430],[3977,9425],9521,0,0,0,9622,9623,[3913,9524,9425],9426,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,1248,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1187,1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,1190,1192,1192,1192,1192,1192,1192,1192,1192,[1192,15935],[1192,15936],[1192,15937],1192,1192,1192,1192,1192,1192,1192,1193,1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,788,[789,247],248,248,248,248,248,248,248,248,248,248,248,248,248,248,[790,249],789,[790,439],440,440,440,440,440,440,440,440,440,440,440,440,440,440,[789,441],791,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,2816,2816,2816,2816,2816,[2816,2691],2816,2817,[2818,3980],3918,3919,3983,3983,3919,3920,3983,3920,855,856,0,0,0,0,0,0,0,0,0,0,787,788,3971,3971,3971,3971,3971,3907,3908,3971,3905,3971,3971,3971,3907,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9521,0,0,0,9526,[3978,9430],[3977,9425],9426,9427,9429,[3913,9430],3977,3914,3978,[3914,9523],9616,9617,0,9526,9521,0,0,0,0,0,9526,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1183,1184,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1186,1185,1251,1252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1253,1254,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1257,1258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,852,[853,311],[854,312],[853,312],[854,312],[853,312],[854,312],[853,312],[854,312],[853,312],[854,312],[853,312],[854,312],[853,312],[854,312],[853,312],[854,1427,313],[854,1428],[854,1429,503],[853,504],[854,504],[853,504],[854,504],[853,504],[854,504],[853,504],[854,504],[853,504],[854,504],[853,504],[854,504],[853,504],[854,504],[853,505],855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,917,917,917,917,917,917,917,917,917,917,917,917,917,918,917,918,919,920,0,0,0,0,0,0,0,0,0,0,787,788,3908,3395,3907,3905,3971,3971,3971,3971,3971,3906,3905,3906,3907,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9521,0,0,0,9526,[3913,9527],[3913,9330],[3978,9333],[3914,9425],9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,1248,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1250,1249,1251,1252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,1190,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1193,1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,918,917,918,918,917,918,917,918,917,918,917,918,917,918,[854,1491],[854,1492],[854,1493],918,917,918,917,918,917,918,917,918,917,918,917,918,917,918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,981,981,981,981,981,981,981,981,981,981,981,981,981,982,981,982,983,984,0,0,0,0,0,0,0,0,0,0,787,788,[3908,62],3908,3905,3905,3905,[3905,1427],[3906,1428],[3907,1429],3905,3906,3459,3908,3908,855,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9526,9426,9429,9521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1311,1312,1313,1314,1313,1314,1313,1314,[1250,1265],[1249,1266],[1185,1267],1313,1314,1313,1314,1313,1314,1315,1316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1253,1254,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1192,1257,1258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,982,981,982,982,981,982,981,982,981,982,981,982,981,982,1555,1556,1557,982,981,982,981,982,981,982,981,982,981,982,981,982,981,982,983,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,916,917,917,917,917,917,[3971,1491],[3971,1492],[3971,1493],917,918,918,918,918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,1376,1377,1378,1377,1378,1377,1378,1329,1330,1331,1377,1378,1377,1378,1377,1378,1379,1380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1317,1318,1319,1320,1319,1320,1319,1320,1319,1320,[1192,1134],[1192,1135],[1192,1136],1320,1319,1320,1319,1320,1319,1320,1321,1322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,980,981,981,981,981,981,1555,1556,1557,981,982,982,982,982,983,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,1382,1383,1384,1383,1384,1383,1384,1383,1384,1198,1199,1200,1384,1383,1384,1383,1384,1383,1384,1385,1386],"collisions":[14,20,21,22,23,24,25,29,33,40,41,42,43,44,45,46,81,82,83,84,85,86,87,88,89,90,93,97,102,104,105,106,108,110,111,112,113,114,115,119,120,122,123,124,125,126,146,148,149,150,151,152,153,154,155,156,157,161,166,168,169,170,171,172,188,189,190,210,212,213,214,215,216,217,218,219,220,221,225,229,230,231,232,233,239,240,241,250,251,252,254,256,257,276,278,280,282,284,285,289,296,297,298,299,300,301,302,303,306,324,325,326,327,328,331,332,333,334,335,336,340,342,344,346,348,349,353,358,360,361,362,364,366,367,370,384,385,388,389,390,391,392,395,396,397,398,399,400,403,404,405,406,407,408,409,415,416,417,418,419,420,422,424,425,426,427,428,431,434,448,449,451,452,453,454,455,456,457,459,460,461,462,463,464,467,468,469,470,471,472,473,479,480,481,482,483,484,485,486,487,488,489,512,513,515,516,517,518,519,520,521,523,524,525,526,527,528,531,532,533,534,535,536,537,546,547,548,552,553,554,555,556,561,562,563,576,577,579,580,581,582,583,584,585,587,588,589,590,591,592,595,596,597,598,599,600,601,607,608,609,610,611,612,614,616,618,619,620,642,643,645,646,647,678,680,681,682,683,686,694,695,708,709,710,711,712,714,715,716,717,718,719,720,721,722,724,725,726,727,730,731,732,733,736,737,738,739,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,768,769,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,788,791,794,797,800,803,808,809,810,811,814,832,833,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,852,855,858,861,864,867,870,872,874,882,883,885,886,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,916,917,918,919,922,923,924,925,928,929,930,931,934,936,937,938,939,940,946,947,949,950,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,997,998,999,1000,1001,1002,1003,1004,1005,1006,1024,1025,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1076,1077,1078,1079,1080,1088,1089,1091,1092,1093,1094,1095,1096,1097,1101,1102,1103,1108,1109,1110,1111,1114,1115,1116,1117,1120,1121,1122,1123,1126,1127,1128,1129,1131,1133,1134,1136,1140,1142,1143,1144,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1172,1175,1178,1181,1184,1187,1190,1193,1195,1196,1197,1198,1199,1200,1216,1218,1236,1239,1242,1245,1248,1251,1254,1257,1259,1260,1261,1262,1263,1264,1265,1267,1280,1281,1282,1300,1301,1302,1303,1306,1307,1308,1309,1312,1313,1314,1315,1318,1319,1320,1321,1323,1325,1326,1328,1329,1330,1331,1344,1346,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1408,1409,1410,1431,1432,1433,1434,1435,1436,1437,1442,1443,1444,1445,1446,1451,1452,1453,1456,1457,1459,1461,1472,1474,1491,1493,1495,1496,1497,1498,1499,1500,1501,1503,1505,1506,1507,1508,1509,1510,1515,1516,1517,1518,1519,1520,1521,1522,1523,1525,1536,1537,1538,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1559,1560,1561,1562,1563,1564,1565,1567,1568,1569,1570,1571,1572,1573,1574,1579,1580,1581,1582,1587,1588,1589,1600,1601,1602,1611,1612,1613,1614,1615,1616,1617,1618,1619,1623,1624,1625,1626,1627,1628,1629,1634,1635,1636,1637,1638,1645,1646,1664,1666,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1687,1688,1689,1690,1691,1692,1693,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1718,1719,1720,1721,1722,1723,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1764,1765,1766,1767,1768,1769,1770,1771,1772,1782,1783,1784,1785,1786,1787,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1828,1829,1830,1831,1832,1833,1834,1835,1836,1841,1846,1847,1849,1850,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1892,1893,1894,1895,1896,1897,1898,1899,1900,1924,1925,1926,1927,1928,1929,1930,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1988,1989,1990,1991,1992,1993,1994,1996,1997,1998,1999,2000,2001,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2026,2027,2028,2052,2053,2054,2055,2056,2057,2058,2060,2061,2062,2063,2064,2065,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2086,2090,2091,2092,2116,2117,2118,2119,2120,2121,2122,2125,2126,2127,2128,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2154,2155,2156,2180,2181,2182,2183,2184,2185,2186,2189,2190,2191,2192,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2218,2219,2220,2684,2685,2690,2748,2812,2813,2834,2835,2836,2837,2838,2839,2877,2878,2898,2899,2900,2901,2902,2903,2942,3005,3006,3068,3069,3132,3196,3197,3261,3262,3264,3265,3266,3318,3319,3320,3326,3389,3390,3461,3479,3497,3515,3567,3573,3584,3585,3586,3587,3588,3589,3602,3603,3604,3605,3606,3607,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,3648,3649,3650,3651,3652,3653,3666,3667,3668,3669,3670,3671,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,3772,3773,3774,3900,3901,3902,4028,4029,4030,4096,4097,4145,4146,4147,4148,4153,4154,4155,4156,4157,4158,4159,4192,4233,4234,4235,4236,4242,4243,4254,4255,4280,4281,4282,4283,4329,4332,4334,4335,4338,4339,4350,4351,4425,4428,4430,4431,4433,4434,4435,4436,4446,4447,4472,4473,4474,4475,4480,4521,4522,4523,4524,4542,4543,4576,4638,4639,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4672,4712,4713,4714,4715,4716,4717,4718,4734,4735,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4768,4808,4810,4811,4814,4830,4831,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4864,4904,4906,4907,4908,4909,4910,4926,4927,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4960,5000,5001,5002,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5022,5023,5038,5039,5041,5043,5045,5046,5047,5099,5100,5101,5102,5108,5109,5110,5111,5112,5113,5114,5115,5116,5192,5194,5195,5196,5197,5198,5202,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5288,5289,5290,5292,5293,5294,5298,5300,5301,5302,5304,5305,5309,5310,5311,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5385,5399,5400,5401,5402,5405,5406,5407,5440,5441,5442,5443,5444,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5481,5483,5484,5495,5496,5497,5498,5536,5537,5538,5539,5540,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5575,5576,5577,5578,5579,5580,5591,5592,5593,5594,5597,5598,5599,5632,5633,5634,5635,5636,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5671,5672,5673,5674,5675,5676,5687,5688,5689,5690,5693,5694,5695,5728,5729,5730,5731,5732,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5767,5768,5783,5784,5785,5786,5789,5790,5791,5824,5825,5826,5827,5828,5830,5831,5832,5833,5834,5835,5837,5838,5839,5840,5841,5842,5863,5864,5879,5880,5881,5882,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5976,5977,5989,5990,5991,6085,6087,6165,6166,6167,6168,6169,6261,6262,6263,6264,6265,6357,6358,6359,6360,6361,6453,6454,6455,6456,6457,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6748,6750,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6844,6846,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6940,6942,6977,6978,6979,6980,6983,6984,6985,6986,6987,6990,6991,6992,6993,6994,7038,7079,7080,7082,7083,7132,7134,7228,7230,7324,7326,7381,7382,7383,7384,7385,7422,7477,7478,7479,7480,7481,7482,7483,7484,7573,7574,7575,7576,7577,7578,7579,7580,8064,8065,8066,8067,8068,8069,8159,8166,8255,8262,8351,8358,8372,8374,8447,8454,8464,8465,8466,8467,8468,8469,8470,8543,8544,8545,8546,8547,8548,8549,8550,8560,8561,8562,8563,8564,8565,8566,8620,8621,8640,8641,8642,8643,8644,8645,8646,8648,8650,8654,8656,8657,8658,8659,8660,8661,8666,8667,8668,8669,8675,8676,8677,8678,8684,8685,8686,8687,8693,8694,8695,8696,8736,8737,8738,8739,8740,8741,8748,8749,8750,8752,8753,8754,8755,8762,8763,8764,8765,8771,8772,8773,8774,8780,8781,8782,8783,8789,8790,8791,8792,8805,8806,8807,8817,8819,8826,8828,8848,8849,8850,8851,8860,8861,8862,8864,8869,8870,8871,8873,8878,8879,8880,8882,8887,8888,8889,8891,8900,8901,8904,8905,8909,8910,8911,8912,8913,8916,8917,8918,8919,8920,8921,8922,8925,8926,8928,8929,8930,8931,8936,8937,8938,8939,8940,8943,8944,8945,8946,8947,8948,8949,8952,8953,8954,8955,8956,8957,8958,8961,8962,8963,8964,8965,8966,8967,8970,8971,8972,8973,8974,8975,8976,8979,8980,8981,8982,8983,8984,8985,8988,8989,8993,8994,8995,8996,8997,9000,9001,9005,9006,9007,9008,9009,9012,9013,9014,9015,9016,9017,9018,9021,9022,9024,9032,9033,9034,9035,9036,9039,9040,9041,9042,9043,9044,9045,9048,9049,9050,9051,9052,9053,9054,9057,9058,9059,9060,9061,9062,9063,9066,9067,9068,9069,9070,9071,9072,9075,9076,9077,9078,9079,9080,9081,9084,9085,9092,9097,9101,9103,9104,9109,9110,9112,9113,9118,9128,9130,9131,9136,9137,9139,9140,9145,9146,9148,9149,9154,9155,9157,9158,9163,9164,9166,9167,9172,9173,9175,9176,9181,9312,9313,9314,9315,9378,9379,9380,9381,9382,9383,9389,9390,9391,9392,9393,9394,9398,9399,9400,9401,9402,9403,9407,9408,9409,9410,9411,9412,9416,9417,9418,9419,9420,9421,9425,9426,9427,9428,9429,9430,9434,9435,9436,9437,9438,9439,9443,9444,9445,9446,9447,9448,9452,9453,9454,9455,9456,9457,9461,9462,9463,9464,9465,9466,9473,9476,9477,9480,9484,9487,9488,9491,9493,9496,9497,9500,9502,9505,9506,9509,9511,9514,9515,9518,9520,9523,9524,9527,9529,9532,9533,9536,9538,9541,9542,9545,9547,9550,9551,9554,9556,9559,9560,9563,9569,9571,9572,9573,9574,9576,9580,9583,9584,9587,9589,9592,9593,9596,9598,9601,9602,9605,9607,9610,9611,9614,9616,9619,9620,9623,9625,9627,9628,9629,9630,9632,9634,9636,9637,9638,9639,9641,9643,9645,9646,9647,9648,9650,9652,9654,9655,9656,9657,9659,9665,9667,9668,9669,9670,9672,9676,9679,9680,9683,9685,9688,9689,9692,9694,9697,9698,9701,9703,9706,9707,9710,9712,9715,9716,9719,9721,9723,9724,9725,9726,9728,9730,9732,9733,9734,9735,9737,9739,9741,9742,9743,9744,9746,9748,9750,9751,9752,9753,9755,9761,9768,9772,9779,9781,9788,9790,9797,9799,9806,9808,9814,9815,9817,9824,9826,9833,9835,9842,9844,9851,9857,9858,9859,9860,9861,9862,9863,9864,9868,9869,9870,9871,9872,9873,9874,9875,9877,9878,9879,9880,9881,9882,9883,9884,9886,9887,9888,9889,9890,9891,9892,9893,9895,9896,9897,9898,9899,9900,9901,9902,9904,9905,9906,9907,9908,9909,9910,9911,9913,9914,9915,9916,9917,9918,9919,9920,9922,9923,9924,9925,9926,9927,9928,9929,9931,9932,9933,9934,9935,9936,9937,9938,9940,9941,9942,9943,9944,9945,9946,9947,9953,9954,9955,9956,9957,9958,9959,9960,9964,9965,9966,9967,9968,9969,9970,9971,9973,9974,9975,9976,9977,9978,9979,9980,9982,9983,9984,9985,9986,9987,9988,9989,9991,9992,9993,9994,9995,9996,9997,9998,10000,10001,10002,10003,10004,10005,10006,10007,10009,10010,10011,10012,10013,10014,10015,10016,10018,10019,10020,10021,10022,10023,10024,10025,10027,10028,10029,10030,10031,10032,10033,10034,10036,10037,10038,10039,10040,10041,10042,10043,10050,10051,10052,10053,10054,10055,10061,10062,10063,10064,10065,10066,10070,10071,10072,10073,10074,10079,10080,10081,10082,10083,10084,10088,10089,10090,10091,10092,10093,10097,10098,10099,10100,10101,10102,10106,10107,10108,10109,10110,10111,10115,10116,10117,10118,10119,10120,10124,10125,10126,10127,10128,10129,10133,10134,10135,10136,10137,10138,10175,10176,10177,10178,10179,10180,10230,10231,10232,10233,10276,10278,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10342,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10406,10437,10438,10439,10440,10441,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10470,10501,10502,10503,10504,10505,10513,10514,10515,10516,10517,10518,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10534,10565,10566,10567,10568,10569,10577,10578,10579,10580,10581,10582,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10598,10629,10630,10631,10632,10633,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10715,10717,10762,10763,10764,10765,10822,10823,10824,10881,10882,10883,10884,10890,10891,10892,10893,10905,10906,10907,10908,10909,10910,10911,10945,10946,10947,10948,10969,10970,10971,10972,10973,10974,10975,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11033,11034,11035,11036,11037,11038,11039,11097,11098,11099,11100,11101,11102,11103,11136,11138,11141,11148,11149,11161,11162,11163,11164,11165,11166,11167,11207,11208,11209,11210,11212,11213,11264,11265,11266,11271,11272,11273,11274,11276,11277,11289,11290,11291,11292,11293,11294,11335,11338,11392,11393,11394,11404,11405,11468,11469,11520,11521,11522,11523,11532,11533,11648,11649,11650,11651,11660,11661,11662,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11722,11723,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11778,11779,11786,11787,11788,11789,11790,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,12097,12098,12099,12100,12101,12102,12106,12107,12108,12109,12110,12161,12162,12163,12164,12165,12166,12170,12171,12172,12173,12174,12225,12226,12227,12228,12229,12230,12234,12235,12236,12237,12238,12255,12256,12257,12258,12259,12260,12261,12262,12289,12290,12291,12292,12293,12294,12298,12299,12300,12301,12302,12304,12305,12306,12319,12320,12321,12322,12323,12324,12325,12326,12353,12354,12355,12356,12357,12358,12362,12363,12364,12365,12366,12368,12370,12383,12384,12385,12386,12387,12388,12389,12390,12447,12448,12449,12453,12454,12545,12546,12547,12548,12549,12552,12553,12554,12555,12556,12559,12560,12561,12562,12563,12564,12565,12609,12610,12611,12612,12613,12616,12617,12618,12619,12620,12623,12624,12625,12626,12627,12628,12629,12673,12674,12675,12676,12677,12680,12681,12682,12683,12684,12687,12688,12689,12690,12691,12692,12693,12737,12738,12739,12740,12741,12744,12745,12746,12747,12748,12751,12752,12753,12754,12755,12756,12757,12801,12802,12803,12804,12805,12808,12809,12810,12811,12812,12815,12816,12817,12818,12819,12820,12821,12872,12873,12874,12875,12876,12879,12880,12881,12882,12883,12884,12885,12895,12896,12899,12900,12936,12937,12938,12939,12940,12943,12944,12945,12946,12947,12948,12949,12958,12959,12960,12961,12962,12963,12964,12965,13534,13539,13544,13549,13677,13726,13731,13814,13864,13933,13938,13942,14051,14243,14248,14253,14258,14263,14268,14999,15014,15029,15030,15059,15060,15061,15062,15063,15064,15065,15093,15094,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15113,15115,15117,15121,15124,15125,15128,15139,15142,15149,15150,15157,15194,15195,15196,15197,15198,15199,15203,15213,15214,15241,15243,15245,15253,15254,15255,15256,15258,15259,15260,15261,15262,15263,15270,15277,15282,15283,15284,15285,15286,15313,15314,15315,15322,15323,15324,15325,15326,15327,15342,15343,15344,15345,15346,15347,15350,15351,15364,15365,15377,15378,15379,15382,15386,15387,15388,15389,15390,15391,15399,15400,15406,15407,15408,15409,15410,15411,15414,15415,15428,15429,15432,15433,15434,15435,15448,15450,15451,15452,15453,15470,15471,15472,15473,15474,15475,15476,15477,15492,15493,15495,15510,15514,15515,15516,15517,15520,15521,15538,15539,15540,15541,15542,15543,15556,15557,15559,15560,15561,15562,15563,15568,15569,15570,15571,15578,15579,15580,15581,15582,15583,15597,15598,15599,15600,15601,15604,15605,15636,15637,15642,15643,15644,15645,15646,15647,15666,15698,15699,15700,15701,15702,15703,15704,15706,15707,15708,15709,15710,15711,15762,15763,15764,15765,15770,15771,15772,15773,15774,15775,15824,15825,15826,15829,15830,15831,15888,15889,15890,15893,15894,15895,15922,15952,15953,15954,15957,15958,15959,15986,16018,16021,16050,16082,16083,16084,16085,16147,16148,16210,16211,16212,16213,16274,16275,16276,16277,16282,16283,16285,16336,16337,16338,16341,16342,16343,16346,16347,16400,16401,16402,16405,16406,16407,16410,16411,16464,16465,16466,16469,16470,16471,16530,16533,16594,16595,16596,16597,16602,16603,16604,16605,16666,16667,16668,16669,16730,16731,16732,16733,16848,16851,16853,16855,16912,16915,16917,16919,16976,16979,17040,17043,17045,17046,17047,17109,17111,17296,17299,17360,17363,17488,17489,17490,17552,17554],"areas":{"regions (visualization only)":[{"id":560,"name":"","x":96,"y":96,"width":48,"height":48},{"id":642,"name":"","x":144,"y":96,"width":48,"height":48},{"id":643,"name":"","x":96,"y":144,"width":48,"height":48},{"id":644,"name":"","x":144,"y":144,"width":48,"height":48},{"id":645,"name":"","x":192,"y":96,"width":48,"height":48},{"id":646,"name":"","x":240,"y":96,"width":48,"height":48},{"id":647,"name":"","x":192,"y":144,"width":48,"height":48},{"id":648,"name":"","x":240,"y":144,"width":48,"height":48},{"id":649,"name":"","x":96,"y":192,"width":48,"height":48},{"id":650,"name":"","x":144,"y":192,"width":48,"height":48},{"id":651,"name":"","x":96,"y":240,"width":48,"height":48},{"id":652,"name":"","x":144,"y":240,"width":48,"height":48},{"id":653,"name":"","x":192,"y":192,"width":48,"height":48},{"id":654,"name":"","x":240,"y":192,"width":48,"height":48},{"id":655,"name":"","x":192,"y":240,"width":48,"height":48},{"id":656,"name":"","x":240,"y":240,"width":48,"height":48},{"id":673,"name":"","x":288,"y":96,"width":48,"height":48},{"id":674,"name":"","x":336,"y":96,"width":48,"height":48},{"id":675,"name":"","x":288,"y":144,"width":48,"height":48},{"id":676,"name":"","x":336,"y":144,"width":48,"height":48},{"id":677,"name":"","x":384,"y":96,"width":48,"height":48},{"id":678,"name":"","x":432,"y":96,"width":48,"height":48},{"id":679,"name":"","x":384,"y":144,"width":48,"height":48},{"id":680,"name":"","x":432,"y":144,"width":48,"height":48},{"id":681,"name":"","x":288,"y":192,"width":48,"height":48},{"id":682,"name":"","x":336,"y":192,"width":48,"height":48},{"id":683,"name":"","x":288,"y":240,"width":48,"height":48},{"id":684,"name":"","x":336,"y":240,"width":48,"height":48},{"id":685,"name":"","x":384,"y":192,"width":48,"height":48},{"id":686,"name":"","x":432,"y":192,"width":48,"height":48},{"id":687,"name":"","x":384,"y":240,"width":48,"height":48},{"id":688,"name":"","x":432,"y":240,"width":48,"height":48},{"id":689,"name":"","x":96,"y":288,"width":48,"height":48},{"id":690,"name":"","x":144,"y":288,"width":48,"height":48},{"id":691,"name":"","x":96,"y":336,"width":48,"height":48},{"id":692,"name":"","x":144,"y":336,"width":48,"height":48},{"id":693,"name":"","x":192,"y":288,"width":48,"height":48},{"id":694,"name":"","x":240,"y":288,"width":48,"height":48},{"id":695,"name":"","x":192,"y":336,"width":48,"height":48},{"id":696,"name":"","x":240,"y":336,"width":48,"height":48},{"id":697,"name":"","x":96,"y":384,"width":48,"height":48},{"id":698,"name":"","x":144,"y":384,"width":48,"height":48},{"id":699,"name":"","x":96,"y":432,"width":48,"height":48},{"id":700,"name":"","x":144,"y":432,"width":48,"height":48},{"id":701,"name":"","x":192,"y":384,"width":48,"height":48},{"id":702,"name":"","x":240,"y":384,"width":48,"height":48},{"id":703,"name":"","x":192,"y":432,"width":48,"height":48},{"id":704,"name":"","x":240,"y":432,"width":48,"height":48},{"id":705,"name":"","x":288,"y":288,"width":48,"height":48},{"id":706,"name":"","x":336,"y":288,"width":48,"height":48},{"id":707,"name":"","x":288,"y":336,"width":48,"height":48},{"id":708,"name":"","x":336,"y":336,"width":48,"height":48},{"id":709,"name":"","x":384,"y":288,"width":48,"height":48},{"id":710,"name":"","x":432,"y":288,"width":48,"height":48},{"id":711,"name":"","x":384,"y":336,"width":48,"height":48},{"id":712,"name":"","x":432,"y":336,"width":48,"height":48},{"id":713,"name":"","x":288,"y":384,"width":48,"height":48},{"id":714,"name":"","x":336,"y":384,"width":48,"height":48},{"id":715,"name":"","x":288,"y":432,"width":48,"height":48},{"id":716,"name":"","x":336,"y":432,"width":48,"height":48},{"id":717,"name":"","x":384,"y":384,"width":48,"height":48},{"id":718,"name":"","x":432,"y":384,"width":48,"height":48},{"id":719,"name":"","x":384,"y":432,"width":48,"height":48},{"id":720,"name":"","x":432,"y":432,"width":48,"height":48},{"id":721,"name":"","x":480,"y":96,"width":48,"height":48},{"id":722,"name":"","x":528,"y":96,"width":48,"height":48},{"id":723,"name":"","x":480,"y":144,"width":48,"height":48},{"id":724,"name":"","x":528,"y":144,"width":48,"height":48},{"id":725,"name":"","x":576,"y":96,"width":48,"height":48},{"id":726,"name":"","x":624,"y":96,"width":48,"height":48},{"id":727,"name":"","x":576,"y":144,"width":48,"height":48},{"id":728,"name":"","x":624,"y":144,"width":48,"height":48},{"id":729,"name":"","x":480,"y":192,"width":48,"height":48},{"id":730,"name":"","x":528,"y":192,"width":48,"height":48},{"id":731,"name":"","x":480,"y":240,"width":48,"height":48},{"id":732,"name":"","x":528,"y":240,"width":48,"height":48},{"id":733,"name":"","x":576,"y":192,"width":48,"height":48},{"id":734,"name":"","x":624,"y":192,"width":48,"height":48},{"id":735,"name":"","x":576,"y":240,"width":48,"height":48},{"id":736,"name":"","x":624,"y":240,"width":48,"height":48},{"id":737,"name":"","x":672,"y":96,"width":48,"height":48},{"id":738,"name":"","x":720,"y":96,"width":48,"height":48},{"id":739,"name":"","x":672,"y":144,"width":48,"height":48},{"id":740,"name":"","x":720,"y":144,"width":48,"height":48},{"id":741,"name":"","x":768,"y":96,"width":48,"height":48},{"id":742,"name":"","x":816,"y":96,"width":48,"height":48},{"id":743,"name":"","x":768,"y":144,"width":48,"height":48},{"id":744,"name":"","x":816,"y":144,"width":48,"height":48},{"id":745,"name":"","x":672,"y":192,"width":48,"height":48},{"id":746,"name":"","x":720,"y":192,"width":48,"height":48},{"id":747,"name":"","x":672,"y":240,"width":48,"height":48},{"id":748,"name":"","x":720,"y":240,"width":48,"height":48},{"id":749,"name":"","x":768,"y":192,"width":48,"height":48},{"id":750,"name":"","x":816,"y":192,"width":48,"height":48},{"id":751,"name":"","x":768,"y":240,"width":48,"height":48},{"id":752,"name":"","x":816,"y":240,"width":48,"height":48},{"id":753,"name":"","x":480,"y":288,"width":48,"height":48},{"id":754,"name":"","x":528,"y":288,"width":48,"height":48},{"id":755,"name":"","x":480,"y":336,"width":48,"height":48},{"id":756,"name":"","x":528,"y":336,"width":48,"height":48},{"id":757,"name":"","x":576,"y":288,"width":48,"height":48},{"id":758,"name":"","x":624,"y":288,"width":48,"height":48},{"id":759,"name":"","x":576,"y":336,"width":48,"height":48},{"id":760,"name":"","x":624,"y":336,"width":48,"height":48},{"id":761,"name":"","x":480,"y":384,"width":48,"height":48},{"id":762,"name":"","x":528,"y":384,"width":48,"height":48},{"id":763,"name":"","x":480,"y":432,"width":48,"height":48},{"id":764,"name":"","x":528,"y":432,"width":48,"height":48},{"id":765,"name":"","x":576,"y":384,"width":48,"height":48},{"id":766,"name":"","x":624,"y":384,"width":48,"height":48},{"id":767,"name":"","x":576,"y":432,"width":48,"height":48},{"id":768,"name":"","x":624,"y":432,"width":48,"height":48},{"id":769,"name":"","x":672,"y":288,"width":48,"height":48},{"id":770,"name":"","x":720,"y":288,"width":48,"height":48},{"id":771,"name":"","x":672,"y":336,"width":48,"height":48},{"id":772,"name":"","x":720,"y":336,"width":48,"height":48},{"id":773,"name":"","x":768,"y":288,"width":48,"height":48},{"id":774,"name":"","x":816,"y":288,"width":48,"height":48},{"id":775,"name":"","x":768,"y":336,"width":48,"height":48},{"id":776,"name":"","x":816,"y":336,"width":48,"height":48},{"id":777,"name":"","x":672,"y":384,"width":48,"height":48},{"id":778,"name":"","x":720,"y":384,"width":48,"height":48},{"id":779,"name":"","x":672,"y":432,"width":48,"height":48},{"id":780,"name":"","x":720,"y":432,"width":48,"height":48},{"id":781,"name":"","x":768,"y":384,"width":48,"height":48},{"id":782,"name":"","x":816,"y":384,"width":48,"height":48},{"id":783,"name":"","x":768,"y":432,"width":48,"height":48},{"id":784,"name":"","x":816,"y":432,"width":48,"height":48},{"id":785,"name":"","x":864,"y":96,"width":48,"height":48},{"id":786,"name":"","x":912,"y":96,"width":48,"height":48},{"id":787,"name":"","x":864,"y":144,"width":48,"height":48},{"id":788,"name":"","x":912,"y":144,"width":48,"height":48},{"id":789,"name":"","x":960,"y":96,"width":48,"height":48},{"id":790,"name":"","x":1008,"y":96,"width":48,"height":48},{"id":791,"name":"","x":960,"y":144,"width":48,"height":48},{"id":792,"name":"","x":1008,"y":144,"width":48,"height":48},{"id":793,"name":"","x":864,"y":192,"width":48,"height":48},{"id":794,"name":"","x":912,"y":192,"width":48,"height":48},{"id":795,"name":"","x":864,"y":240,"width":48,"height":48},{"id":796,"name":"","x":912,"y":240,"width":48,"height":48},{"id":797,"name":"","x":960,"y":192,"width":48,"height":48},{"id":798,"name":"","x":1008,"y":192,"width":48,"height":48},{"id":799,"name":"","x":960,"y":240,"width":48,"height":48},{"id":800,"name":"","x":1008,"y":240,"width":48,"height":48},{"id":801,"name":"","x":1056,"y":96,"width":48,"height":48},{"id":802,"name":"","x":1104,"y":96,"width":48,"height":48},{"id":803,"name":"","x":1056,"y":144,"width":48,"height":48},{"id":804,"name":"","x":1104,"y":144,"width":48,"height":48},{"id":809,"name":"","x":1056,"y":192,"width":48,"height":48},{"id":810,"name":"","x":1104,"y":192,"width":48,"height":48},{"id":811,"name":"","x":1056,"y":240,"width":48,"height":48},{"id":812,"name":"","x":1104,"y":240,"width":48,"height":48},{"id":817,"name":"","x":864,"y":288,"width":48,"height":48},{"id":818,"name":"","x":912,"y":288,"width":48,"height":48},{"id":819,"name":"","x":864,"y":336,"width":48,"height":48},{"id":820,"name":"","x":912,"y":336,"width":48,"height":48},{"id":821,"name":"","x":960,"y":288,"width":48,"height":48},{"id":822,"name":"","x":1008,"y":288,"width":48,"height":48},{"id":823,"name":"","x":960,"y":336,"width":48,"height":48},{"id":824,"name":"","x":1008,"y":336,"width":48,"height":48},{"id":825,"name":"","x":864,"y":384,"width":48,"height":48},{"id":826,"name":"","x":912,"y":384,"width":48,"height":48},{"id":827,"name":"","x":864,"y":432,"width":48,"height":48},{"id":828,"name":"","x":912,"y":432,"width":48,"height":48},{"id":829,"name":"","x":960,"y":384,"width":48,"height":48},{"id":830,"name":"","x":1008,"y":384,"width":48,"height":48},{"id":831,"name":"","x":960,"y":432,"width":48,"height":48},{"id":832,"name":"","x":1008,"y":432,"width":48,"height":48},{"id":833,"name":"","x":1056,"y":288,"width":48,"height":48},{"id":834,"name":"","x":1104,"y":288,"width":48,"height":48},{"id":835,"name":"","x":1056,"y":336,"width":48,"height":48},{"id":836,"name":"","x":1104,"y":336,"width":48,"height":48},{"id":841,"name":"","x":1056,"y":384,"width":48,"height":48},{"id":842,"name":"","x":1104,"y":384,"width":48,"height":48},{"id":843,"name":"","x":1056,"y":432,"width":48,"height":48},{"id":844,"name":"","x":1104,"y":432,"width":48,"height":48},{"id":849,"name":"","x":96,"y":480,"width":48,"height":48},{"id":850,"name":"","x":144,"y":480,"width":48,"height":48},{"id":851,"name":"","x":96,"y":528,"width":48,"height":48},{"id":852,"name":"","x":144,"y":528,"width":48,"height":48},{"id":853,"name":"","x":192,"y":480,"width":48,"height":48},{"id":854,"name":"","x":240,"y":480,"width":48,"height":48},{"id":855,"name":"","x":192,"y":528,"width":48,"height":48},{"id":856,"name":"","x":240,"y":528,"width":48,"height":48},{"id":857,"name":"","x":96,"y":576,"width":48,"height":48},{"id":858,"name":"","x":144,"y":576,"width":48,"height":48},{"id":859,"name":"","x":96,"y":624,"width":48,"height":48},{"id":860,"name":"","x":144,"y":624,"width":48,"height":48},{"id":861,"name":"","x":192,"y":576,"width":48,"height":48},{"id":862,"name":"","x":240,"y":576,"width":48,"height":48},{"id":863,"name":"","x":192,"y":624,"width":48,"height":48},{"id":864,"name":"","x":240,"y":624,"width":48,"height":48},{"id":865,"name":"","x":288,"y":480,"width":48,"height":48},{"id":866,"name":"","x":336,"y":480,"width":48,"height":48},{"id":867,"name":"","x":288,"y":528,"width":48,"height":48},{"id":868,"name":"","x":336,"y":528,"width":48,"height":48},{"id":869,"name":"","x":384,"y":480,"width":48,"height":48},{"id":870,"name":"","x":432,"y":480,"width":48,"height":48},{"id":871,"name":"","x":384,"y":528,"width":48,"height":48},{"id":872,"name":"","x":432,"y":528,"width":48,"height":48},{"id":873,"name":"","x":288,"y":576,"width":48,"height":48},{"id":874,"name":"","x":336,"y":576,"width":48,"height":48},{"id":875,"name":"","x":288,"y":624,"width":48,"height":48},{"id":876,"name":"","x":336,"y":624,"width":48,"height":48},{"id":877,"name":"","x":384,"y":576,"width":48,"height":48},{"id":878,"name":"","x":432,"y":576,"width":48,"height":48},{"id":879,"name":"","x":384,"y":624,"width":48,"height":48},{"id":880,"name":"","x":432,"y":624,"width":48,"height":48},{"id":881,"name":"","x":96,"y":672,"width":48,"height":48},{"id":882,"name":"","x":144,"y":672,"width":48,"height":48},{"id":883,"name":"","x":96,"y":720,"width":48,"height":48},{"id":884,"name":"","x":144,"y":720,"width":48,"height":48},{"id":885,"name":"","x":192,"y":672,"width":48,"height":48},{"id":886,"name":"","x":240,"y":672,"width":48,"height":48},{"id":887,"name":"","x":192,"y":720,"width":48,"height":48},{"id":888,"name":"","x":240,"y":720,"width":48,"height":48},{"id":889,"name":"","x":96,"y":768,"width":48,"height":48},{"id":890,"name":"","x":144,"y":768,"width":48,"height":48},{"id":891,"name":"","x":96,"y":816,"width":48,"height":48},{"id":892,"name":"","x":144,"y":816,"width":48,"height":48},{"id":893,"name":"","x":192,"y":768,"width":48,"height":48},{"id":894,"name":"","x":240,"y":768,"width":48,"height":48},{"id":895,"name":"","x":192,"y":816,"width":48,"height":48},{"id":896,"name":"","x":240,"y":816,"width":48,"height":48},{"id":897,"name":"","x":288,"y":672,"width":48,"height":48},{"id":898,"name":"","x":336,"y":672,"width":48,"height":48},{"id":899,"name":"","x":288,"y":720,"width":48,"height":48},{"id":900,"name":"","x":336,"y":720,"width":48,"height":48},{"id":901,"name":"","x":384,"y":672,"width":48,"height":48},{"id":902,"name":"","x":432,"y":672,"width":48,"height":48},{"id":903,"name":"","x":384,"y":720,"width":48,"height":48},{"id":904,"name":"","x":432,"y":720,"width":48,"height":48},{"id":905,"name":"","x":288,"y":768,"width":48,"height":48},{"id":906,"name":"","x":336,"y":768,"width":48,"height":48},{"id":907,"name":"","x":288,"y":816,"width":48,"height":48},{"id":908,"name":"","x":336,"y":816,"width":48,"height":48},{"id":909,"name":"","x":384,"y":768,"width":48,"height":48},{"id":910,"name":"","x":432,"y":768,"width":48,"height":48},{"id":911,"name":"","x":384,"y":816,"width":48,"height":48},{"id":912,"name":"","x":432,"y":816,"width":48,"height":48},{"id":913,"name":"","x":480,"y":480,"width":48,"height":48},{"id":914,"name":"","x":528,"y":480,"width":48,"height":48},{"id":915,"name":"","x":480,"y":528,"width":48,"height":48},{"id":916,"name":"","x":528,"y":528,"width":48,"height":48},{"id":917,"name":"","x":576,"y":480,"width":48,"height":48},{"id":918,"name":"","x":624,"y":480,"width":48,"height":48},{"id":919,"name":"","x":576,"y":528,"width":48,"height":48},{"id":920,"name":"","x":624,"y":528,"width":48,"height":48},{"id":921,"name":"","x":480,"y":576,"width":48,"height":48},{"id":922,"name":"","x":528,"y":576,"width":48,"height":48},{"id":923,"name":"","x":480,"y":624,"width":48,"height":48},{"id":924,"name":"","x":528,"y":624,"width":48,"height":48},{"id":925,"name":"","x":576,"y":576,"width":48,"height":48},{"id":926,"name":"","x":624,"y":576,"width":48,"height":48},{"id":927,"name":"","x":576,"y":624,"width":48,"height":48},{"id":928,"name":"","x":624,"y":624,"width":48,"height":48},{"id":929,"name":"","x":672,"y":480,"width":48,"height":48},{"id":930,"name":"","x":720,"y":480,"width":48,"height":48},{"id":931,"name":"","x":672,"y":528,"width":48,"height":48},{"id":932,"name":"","x":720,"y":528,"width":48,"height":48},{"id":933,"name":"","x":768,"y":480,"width":48,"height":48},{"id":934,"name":"","x":816,"y":480,"width":48,"height":48},{"id":935,"name":"","x":768,"y":528,"width":48,"height":48},{"id":936,"name":"","x":816,"y":528,"width":48,"height":48},{"id":937,"name":"","x":672,"y":576,"width":48,"height":48},{"id":938,"name":"","x":720,"y":576,"width":48,"height":48},{"id":939,"name":"","x":672,"y":624,"width":48,"height":48},{"id":940,"name":"","x":720,"y":624,"width":48,"height":48},{"id":941,"name":"","x":768,"y":576,"width":48,"height":48},{"id":942,"name":"","x":816,"y":576,"width":48,"height":48},{"id":943,"name":"","x":768,"y":624,"width":48,"height":48},{"id":944,"name":"","x":816,"y":624,"width":48,"height":48},{"id":945,"name":"","x":480,"y":672,"width":48,"height":48},{"id":946,"name":"","x":528,"y":672,"width":48,"height":48},{"id":947,"name":"","x":480,"y":720,"width":48,"height":48},{"id":948,"name":"","x":528,"y":720,"width":48,"height":48},{"id":949,"name":"","x":576,"y":672,"width":48,"height":48},{"id":950,"name":"","x":624,"y":672,"width":48,"height":48},{"id":951,"name":"","x":576,"y":720,"width":48,"height":48},{"id":952,"name":"","x":624,"y":720,"width":48,"height":48},{"id":953,"name":"","x":480,"y":768,"width":48,"height":48},{"id":954,"name":"","x":528,"y":768,"width":48,"height":48},{"id":955,"name":"","x":480,"y":816,"width":48,"height":48},{"id":956,"name":"","x":528,"y":816,"width":48,"height":48},{"id":957,"name":"","x":576,"y":768,"width":48,"height":48},{"id":958,"name":"","x":624,"y":768,"width":48,"height":48},{"id":959,"name":"","x":576,"y":816,"width":48,"height":48},{"id":960,"name":"","x":624,"y":816,"width":48,"height":48},{"id":961,"name":"","x":672,"y":672,"width":48,"height":48},{"id":962,"name":"","x":720,"y":672,"width":48,"height":48},{"id":963,"name":"","x":672,"y":720,"width":48,"height":48},{"id":964,"name":"","x":720,"y":720,"width":48,"height":48},{"id":965,"name":"","x":768,"y":672,"width":48,"height":48},{"id":966,"name":"","x":816,"y":672,"width":48,"height":48},{"id":967,"name":"","x":768,"y":720,"width":48,"height":48},{"id":968,"name":"","x":816,"y":720,"width":48,"height":48},{"id":969,"name":"","x":672,"y":768,"width":48,"height":48},{"id":970,"name":"","x":720,"y":768,"width":48,"height":48},{"id":971,"name":"","x":672,"y":816,"width":48,"height":48},{"id":972,"name":"","x":720,"y":816,"width":48,"height":48},{"id":973,"name":"","x":768,"y":768,"width":48,"height":48},{"id":974,"name":"","x":816,"y":768,"width":48,"height":48},{"id":975,"name":"","x":768,"y":816,"width":48,"height":48},{"id":976,"name":"","x":816,"y":816,"width":48,"height":48},{"id":977,"name":"","x":864,"y":480,"width":48,"height":48},{"id":978,"name":"","x":912,"y":480,"width":48,"height":48},{"id":979,"name":"","x":864,"y":528,"width":48,"height":48},{"id":980,"name":"","x":912,"y":528,"width":48,"height":48},{"id":981,"name":"","x":960,"y":480,"width":48,"height":48},{"id":982,"name":"","x":1008,"y":480,"width":48,"height":48},{"id":983,"name":"","x":960,"y":528,"width":48,"height":48},{"id":984,"name":"","x":1008,"y":528,"width":48,"height":48},{"id":985,"name":"","x":864,"y":576,"width":48,"height":48},{"id":986,"name":"","x":912,"y":576,"width":48,"height":48},{"id":987,"name":"","x":864,"y":624,"width":48,"height":48},{"id":988,"name":"","x":912,"y":624,"width":48,"height":48},{"id":989,"name":"","x":960,"y":576,"width":48,"height":48},{"id":990,"name":"","x":1008,"y":576,"width":48,"height":48},{"id":991,"name":"","x":960,"y":624,"width":48,"height":48},{"id":992,"name":"","x":1008,"y":624,"width":48,"height":48},{"id":993,"name":"","x":1056,"y":480,"width":48,"height":48},{"id":994,"name":"","x":1104,"y":480,"width":48,"height":48},{"id":995,"name":"","x":1056,"y":528,"width":48,"height":48},{"id":996,"name":"","x":1104,"y":528,"width":48,"height":48},{"id":997,"name":"","x":1056,"y":576,"width":48,"height":48},{"id":998,"name":"","x":1104,"y":576,"width":48,"height":48},{"id":999,"name":"","x":1056,"y":624,"width":48,"height":48},{"id":1000,"name":"","x":1104,"y":624,"width":48,"height":48},{"id":1001,"name":"","x":864,"y":672,"width":48,"height":48},{"id":1002,"name":"","x":912,"y":672,"width":48,"height":48},{"id":1003,"name":"","x":864,"y":720,"width":48,"height":48},{"id":1004,"name":"","x":912,"y":720,"width":48,"height":48},{"id":1005,"name":"","x":960,"y":672,"width":48,"height":48},{"id":1006,"name":"","x":1008,"y":672,"width":48,"height":48},{"id":1007,"name":"","x":960,"y":720,"width":48,"height":48},{"id":1008,"name":"","x":1008,"y":720,"width":48,"height":48},{"id":1009,"name":"","x":864,"y":768,"width":48,"height":48},{"id":1010,"name":"","x":912,"y":768,"width":48,"height":48},{"id":1011,"name":"","x":864,"y":816,"width":48,"height":48},{"id":1012,"name":"","x":912,"y":816,"width":48,"height":48},{"id":1013,"name":"","x":960,"y":768,"width":48,"height":48},{"id":1014,"name":"","x":1008,"y":768,"width":48,"height":48},{"id":1015,"name":"","x":960,"y":816,"width":48,"height":48},{"id":1016,"name":"","x":1008,"y":816,"width":48,"height":48},{"id":1017,"name":"","x":1056,"y":672,"width":48,"height":48},{"id":1018,"name":"","x":1104,"y":672,"width":48,"height":48},{"id":1019,"name":"","x":1056,"y":720,"width":48,"height":48},{"id":1020,"name":"","x":1104,"y":720,"width":48,"height":48},{"id":1021,"name":"","x":1056,"y":768,"width":48,"height":48},{"id":1022,"name":"","x":1104,"y":768,"width":48,"height":48},{"id":1023,"name":"","x":1056,"y":816,"width":48,"height":48},{"id":1024,"name":"","x":1104,"y":816,"width":48,"height":48}],"signs":[{"id":352,"name":"","x":796,"y":646,"width":1,"height":1,"text":"Tread carefully of what lies ahead."},{"id":364,"name":"","x":124,"y":851,"width":1,"height":1,"text":"One shouldn't venture alone in these caves."},{"id":368,"name":"","x":199,"y":783,"width":1,"height":1,"text":"In memory of Azaria,my dearest friend."},{"id":371,"name":"","x":197,"y":783,"width":1,"height":1,"text":"Here lies R,a bittersweet memory,at peace."},{"id":372,"name":"","x":201,"y":783,"width":1,"height":1,"text":"Iz."},{"id":426,"name":"","x":285,"y":125,"width":1,"height":1,"text":"A path may open once the lord of ogres perishes."},{"id":444,"name":"","x":593,"y":821,"width":1,"height":1,"text":"Do not underestimate."},{"id":465,"name":"","x":793,"y":818,"width":1,"height":1,"text":"An ancient warrior carrying a forgotten weapon."},{"id":503,"name":"","x":123,"y":140,"width":1,"height":1,"text":"The Queen's death will open a path."},{"id":506,"name":"","x":459,"y":806,"width":1,"height":1,"text":"Turn back now,or bring an army."},{"id":548,"name":"","x":197,"y":777,"width":1,"height":1,"text":"A graveyard created to come to peace., With all of it."},{"id":1052,"name":"","x":112,"y":125,"width":1,"height":1,"text":"This rock was used to test tile rotations.,I now refuse to remove it."},{"id":1104,"name":"","x":107,"y":225,"width":1,"height":1,"text":"This is a Sandy lump of sand.,Quite Sandy indeed.,Did I mention Sandy?,Isn't this pile of sand funny?"},{"id":1155,"name":"","x":429,"y":907,"width":1,"height":1,"text":"We're no strangers to love ♫"}],"music":[{"id":265,"name":"","x":186,"y":216,"width":0,"height":0,"polygon":[{"x":190,"y":212},{"x":190,"y":210},{"x":191,"y":209},{"x":206,"y":209},{"x":206,"y":240},{"x":104,"y":240},{"x":104,"y":210},{"x":109,"y":210},{"x":111,"y":208},{"x":113,"y":208},{"x":114,"y":209},{"x":116,"y":209},{"x":117,"y":208},{"x":119,"y":208},{"x":122,"y":205},{"x":126,"y":205},{"x":127,"y":206},{"x":127,"y":209},{"x":130,"y":212},{"x":135,"y":212},{"x":138,"y":206},{"x":143,"y":206},{"x":146,"y":211},{"x":154,"y":206},{"x":160,"y":206},{"x":163,"y":210},{"x":175,"y":210},{"x":180,"y":215},{"x":187,"y":215}],"song":"beach"},{"id":266,"name":"","x":323,"y":888,"width":12,"height":9,"song":"codingroom"},{"id":404,"name":"","x":270,"y":332,"width":104,"height":39,"song":"meadowofthepast"},{"id":405,"name":"","x":167,"y":182,"width":0,"height":0,"polygon":[{"x":167,"y":182},{"x":212,"y":182},{"x":212,"y":140},{"x":181,"y":140},{"x":169,"y":155},{"x":169,"y":161},{"x":160,"y":172},{"x":160,"y":182}],"song":"smalltown"},{"id":407,"name":"","x":95,"y":96,"width":141,"height":44,"song":"forest"},{"id":1118,"name":"","x":236,"y":96,"width":0,"height":0,"polygon":[{"x":236,"y":96},{"x":314,"y":96},{"x":319,"y":153},{"x":314,"y":161},{"x":321,"y":191},{"x":225,"y":191},{"x":229,"y":181},{"x":223,"y":173},{"x":230,"y":165},{"x":230,"y":160},{"x":228,"y":156},{"x":236,"y":140}],"song":"desert"},{"id":1119,"name":"","x":220,"y":191,"width":101,"height":62,"song":"desert2"},{"id":1121,"name":"","x":321,"y":187,"width":79,"height":61,"polygon":[{"x":321,"y":187},{"x":400,"y":187},{"x":400,"y":248},{"x":388,"y":248},{"x":386,"y":241},{"x":378,"y":236},{"x":360,"y":237},{"x":358,"y":230},{"x":341,"y":234},{"x":342,"y":254},{"x":333,"y":254},{"x":331,"y":250},{"x":321,"y":250}],"song":"desert3"},{"id":1122,"name":"","x":321,"y":111,"width":48,"height":76,"song":"lavaland"},{"id":1123,"name":"","x":417,"y":105,"width":167,"height":88,"song":"lavaland2"},{"id":1124,"name":"","x":20,"y":301,"width":142,"height":120,"song":"underwater"}],"minigame":[{"id":311,"name":"","x":367,"y":915,"width":33,"height":15,"mObjectType":"lobby","minigame":"teamwar"},{"id":312,"name":"","x":677,"y":792,"width":11,"height":8,"ignore":true,"mObjectType":"redteamspawn","minigame":"teamwar"},{"id":313,"name":"","x":648,"y":767,"width":11,"height":8,"ignore":true,"mObjectType":"blueteamspawn","minigame":"teamwar"},{"id":1078,"name":"","x":133,"y":629,"width":20,"height":15,"mObjectType":"lobby","minigame":"coursing"},{"id":1081,"name":"","x":139,"y":880,"width":10,"height":11,"mObjectType":"lobby","minigame":"coursing"},{"id":1084,"name":"","x":203,"y":919,"width":36,"height":6,"ignore":true,"mObjectType":"preyspawn","minigame":"coursing"},{"id":1085,"name":"","x":209,"y":896,"width":11,"height":8,"ignore":true,"mObjectType":"hunterspawn","minigame":"coursing"},{"id":1088,"name":"","x":187,"y":883,"width":5,"height":39,"ignore":true,"mObjectType":"preyspawn","minigame":"coursing"},{"id":1090,"name":"","x":195,"y":875,"width":41,"height":5,"ignore":true,"mObjectType":"preyspawn","minigame":"coursing"},{"id":1091,"name":"","x":233,"y":895,"width":6,"height":24,"ignore":true,"mObjectType":"preyspawn","minigame":"coursing"},{"id":1092,"name":"","x":232,"y":880,"width":4,"height":15,"ignore":true,"mObjectType":"preyspawn","minigame":"coursing"},{"id":1093,"name":"","x":214,"y":900,"width":1,"height":1,"ignore":true,"mObjectType":"centre","minigame":"coursing"}],"warps":[{"id":285,"name":"mudwich","x":188,"y":157,"width":4,"height":4,"level":1},{"id":334,"name":"aynor","x":411,"y":288,"width":5,"height":5,"quest":"ancientlands"},{"id":437,"name":"lakesworld","x":319,"y":281,"width":8,"height":6,"quest":"desertquest"},{"id":507,"name":"patsow","x":343,"y":127,"width":3,"height":3,"achievement":"patsow"},{"id":508,"name":"crullfield","x":266,"y":158,"width":4,"height":4,"quest":"desertquest"},{"id":509,"name":"undersea","x":43,"y":313,"width":4,"height":4,"achievement":"waterguardian"}],"doors":[{"id":223,"name":"","x":326,"y":891,"width":1,"height":1},{"id":251,"name":"","x":284,"y":897,"width":1,"height":1,"destination":252},{"id":252,"name":"","x":290,"y":349,"width":1,"height":1,"destination":251},{"id":253,"name":"","x":329,"y":898,"width":1,"height":1,"destination":254},{"id":254,"name":"","x":184,"y":116,"width":1,"height":1,"destination":253},{"id":255,"name":"","x":173,"y":98,"width":1,"height":1,"achievement":"ahiddenpath","destination":258},{"id":256,"name":"","x":112,"y":183,"width":1,"height":1,"destination":257},{"id":257,"name":"","x":125,"y":733,"width":1,"height":1,"destination":256},{"id":258,"name":"","x":154,"y":675,"width":1,"height":1,"destination":255},{"id":259,"name":"","x":179,"y":671,"width":1,"height":1,"destination":260},{"id":260,"name":"","x":177,"y":675,"width":1,"height":1,"destination":259},{"id":261,"name":"","x":113,"y":105,"width":1,"height":1,"achievement":"ahiddenpath","destination":262},{"id":262,"name":"","x":143,"y":675,"width":1,"height":1,"achievement":"ahiddenpath","destination":261},{"id":267,"name":"","x":395,"y":893,"width":1,"height":1,"destination":270},{"id":268,"name":"","x":369,"y":893,"width":1,"height":1,"destination":269},{"id":269,"name":"","x":181,"y":157,"width":1,"height":1,"destination":268},{"id":270,"name":"","x":199,"y":149,"width":1,"height":1,"destination":267},{"id":271,"name":"","x":123,"y":205,"width":1,"height":1,"destination":272},{"id":272,"name":"","x":164,"y":741,"width":1,"height":1,"destination":271},{"id":276,"name":"","x":154,"y":231,"width":1,"height":1,"destination":277},{"id":277,"name":"","x":234,"y":662,"width":1,"height":1,"achievement":"crabproblem","destination":276},{"id":278,"name":"","x":158,"y":232,"width":1,"height":1,"destination":279},{"id":279,"name":"","x":220,"y":686,"width":1,"height":1,"destination":278},{"id":283,"name":"","x":501,"y":247,"width":1,"height":1,"destination":284},{"id":284,"name":"","x":512,"y":342,"width":1,"height":1,"destination":283},{"id":287,"name":"","x":352,"y":730,"width":1,"height":1,"destination":288},{"id":288,"name":"","x":289,"y":137,"width":1,"height":1,"destination":287},{"id":289,"name":"","x":287,"y":178,"width":1,"height":1,"destination":290},{"id":290,"name":"","x":357,"y":770,"width":1,"height":1,"destination":289},{"id":291,"name":"","x":281,"y":930,"width":1,"height":1,"destination":293},{"id":292,"name":"","x":324,"y":931,"width":1,"height":1,"destination":294},{"id":293,"name":"","x":283,"y":296,"width":1,"height":1,"destination":291},{"id":294,"name":"","x":358,"y":269,"width":1,"height":1,"destination":292,"reqQuest":"seaactivities"},{"id":297,"name":"","x":370,"y":747,"width":1,"height":1,"destination":298},{"id":298,"name":"","x":375,"y":745,"width":1,"height":1,"destination":297},{"id":299,"name":"","x":379,"y":744,"width":1,"height":1,"destination":300},{"id":300,"name":"","x":386,"y":745,"width":1,"height":1,"destination":299},{"id":302,"name":"","x":386,"y":738,"width":1,"height":1,"destination":303,"reqAchievement":"ogreguardian"},{"id":303,"name":"","x":389,"y":170,"width":1,"height":1,"destination":302},{"id":308,"name":"","x":273,"y":162,"width":1,"height":1,"destination":309,"reqAchievement":"ogresgateway"},{"id":309,"name":"","x":269,"y":131,"width":1,"height":1,"destination":308,"reqAchievement":"ogresgateway"},{"id":314,"name":"","x":383,"y":929,"width":1,"height":1,"destination":315},{"id":315,"name":"","x":164,"y":113,"width":1,"height":1,"destination":314,"level":45},{"id":321,"name":"","x":724,"y":810,"width":1,"height":1,"destination":322},{"id":322,"name":"","x":386,"y":282,"width":1,"height":1,"destination":321,"reqAchievement":"frozentundra"},{"id":323,"name":"","x":814,"y":792,"width":1,"height":1,"destination":324},{"id":324,"name":"","x":419,"y":285,"width":1,"height":1,"destination":323},{"id":326,"name":"","x":378,"y":740,"width":1,"height":1,"destination":329},{"id":329,"name":"","x":301,"y":132,"width":1,"height":1,"destination":326},{"id":332,"name":"","x":708,"y":104,"width":1,"height":1,"destination":333},{"id":333,"name":"","x":194,"y":218,"width":1,"height":1,"destination":332},{"id":336,"name":"","x":292,"y":734,"width":1,"height":1,"destination":337,"reqAchievement":"waterguardian"},{"id":337,"name":"","x":56,"y":311,"width":1,"height":1,"destination":336},{"id":338,"name":"","x":395,"y":157,"width":1,"height":1,"destination":339},{"id":339,"name":"","x":697,"y":647,"width":1,"height":1,"destination":338},{"id":340,"name":"","x":704,"y":632,"width":1,"height":1,"destination":341},{"id":341,"name":"","x":393,"y":143,"width":1,"height":1,"destination":340},{"id":342,"name":"","x":345,"y":273,"width":1,"height":1,"destination":343},{"id":343,"name":"","x":700,"y":662,"width":1,"height":1,"destination":342},{"id":344,"name":"","x":742,"y":636,"width":1,"height":1,"achievement":"patsow","destination":345},{"id":345,"name":"","x":359,"y":123,"width":1,"height":1,"achievement":"patsow","destination":344},{"id":346,"name":"","x":764,"y":640,"width":1,"height":1,"destination":347},{"id":347,"name":"","x":383,"y":159,"width":1,"height":1,"destination":346},{"id":353,"name":"","x":801,"y":643,"width":1,"height":1,"destination":354},{"id":354,"name":"","x":355,"y":157,"width":1,"height":1,"destination":353},{"id":356,"name":"","x":794,"y":633,"width":1,"height":1,"destination":357},{"id":357,"name":"","x":337,"y":143,"width":1,"height":1,"destination":356,"reqAchievement":"pathofdeath"},{"id":358,"name":"","x":392,"y":154,"width":1,"height":1,"destination":359},{"id":359,"name":"","x":160,"y":785,"width":1,"height":1,"destination":358},{"id":360,"name":"","x":101,"y":851,"width":1,"height":1,"destination":361},{"id":361,"name":"","x":396,"y":131,"width":1,"height":1,"destination":360},{"id":362,"name":"","x":125,"y":847,"width":1,"height":1,"destination":363},{"id":363,"name":"","x":114,"y":800,"width":1,"height":1,"destination":362},{"id":365,"name":"","x":191,"y":840,"width":1,"height":1,"destination":366},{"id":366,"name":"","x":106,"y":160,"width":1,"height":1,"destination":365},{"id":369,"name":"","x":197,"y":768,"width":1,"height":1,"destination":370},{"id":370,"name":"","x":187,"y":183,"width":1,"height":1,"achievement":"gravemystery","destination":369},{"id":374,"name":"","x":733,"y":105,"width":1,"height":1,"destination":375},{"id":375,"name":"","x":310,"y":264,"width":1,"height":1,"destination":374},{"id":376,"name":"","x":263,"y":793,"width":1,"height":1,"destination":377},{"id":377,"name":"","x":126,"y":417,"width":1,"height":1,"destination":376},{"id":378,"name":"","x":266,"y":824,"width":1,"height":1,"destination":379},{"id":379,"name":"","x":75,"y":422,"width":1,"height":1,"destination":378},{"id":381,"name":"","x":285,"y":824,"width":1,"height":1,"destination":382},{"id":382,"name":"","x":83,"y":422,"width":1,"height":1,"destination":381,"reqAchievement":"babyseadragon"},{"id":383,"name":"","x":109,"y":426,"width":1,"height":1,"destination":386},{"id":384,"name":"","x":265,"y":828,"width":1,"height":1,"destination":387},{"id":386,"name":"","x":315,"y":855,"width":1,"height":1,"destination":383},{"id":387,"name":"","x":51,"y":415,"width":1,"height":1,"destination":384},{"id":388,"name":"","x":67,"y":434,"width":1,"height":1,"destination":389},{"id":389,"name":"","x":272,"y":846,"width":1,"height":1,"destination":388},{"id":393,"name":"","x":260,"y":102,"width":1,"height":1,"destination":394},{"id":394,"name":"","x":349,"y":847,"width":1,"height":1,"destination":393},{"id":395,"name":"","x":702,"y":585,"width":1,"height":1,"destination":396},{"id":396,"name":"","x":607,"y":327,"width":1,"height":1,"destination":395},{"id":397,"name":"","x":527,"y":252,"width":1,"height":1,"destination":398},{"id":398,"name":"","x":733,"y":604,"width":1,"height":1,"destination":397},{"id":399,"name":"","x":741,"y":694,"width":1,"height":1,"destination":400},{"id":400,"name":"","x":136,"y":170,"width":1,"height":1,"destination":399},{"id":401,"name":"","x":753,"y":688,"width":1,"height":1,"destination":402},{"id":402,"name":"","x":742,"y":687,"width":1,"height":1,"destination":419},{"id":403,"name":"","x":792,"y":696,"width":1,"height":1,"destination":400},{"id":408,"name":"","x":745,"y":687,"width":1,"height":1,"destination":414},{"id":409,"name":"","x":748,"y":687,"width":1,"height":1,"destination":416},{"id":410,"name":"","x":757,"y":688,"width":1,"height":1,"destination":412},{"id":411,"name":"","x":752,"y":722,"width":1,"height":1,"destination":415},{"id":412,"name":"","x":757,"y":728,"width":1,"height":1,"destination":401},{"id":413,"name":"","x":746,"y":724,"width":1,"height":1,"destination":408},{"id":414,"name":"","x":792,"y":688,"width":1,"height":1,"destination":419},{"id":415,"name":"","x":797,"y":689,"width":1,"height":1,"destination":409},{"id":416,"name":"","x":801,"y":689,"width":1,"height":1,"destination":410},{"id":417,"name":"","x":807,"y":688,"width":1,"height":1,"destination":420},{"id":418,"name":"","x":810,"y":692,"width":1,"height":1,"destination":411},{"id":419,"name":"","x":748,"y":733,"width":1,"height":1,"destination":400},{"id":420,"name":"","x":798,"y":730,"width":1,"height":1,"destination":400},{"id":427,"name":"","x":314,"y":924,"width":1,"height":1,"destination":428},{"id":428,"name":"","x":808,"y":598,"width":1,"height":1,"destination":427,"reqQuest":"seaactivities"},{"id":429,"name":"","x":777,"y":598,"width":1,"height":1,"destination":430},{"id":430,"name":"","x":289,"y":921,"width":1,"height":1,"destination":429},{"id":432,"name":"","x":557,"y":681,"width":1,"height":1,"destination":433},{"id":433,"name":"","x":379,"y":205,"width":1,"height":1,"destination":432},{"id":438,"name":"","x":587,"y":651,"width":1,"height":1,"destination":439},{"id":439,"name":"","x":607,"y":756,"width":1,"height":1,"destination":438},{"id":440,"name":"","x":513,"y":726,"width":1,"height":1,"destination":441},{"id":441,"name":"","x":554,"y":758,"width":1,"height":1,"destination":440},{"id":442,"name":"","x":509,"y":688,"width":1,"height":1,"destination":443},{"id":443,"name":"","x":518,"y":758,"width":1,"height":1,"destination":442},{"id":445,"name":"","x":591,"y":822,"width":1,"height":1,"destination":446},{"id":446,"name":"","x":591,"y":828,"width":1,"height":1,"destination":445},{"id":447,"name":"","x":595,"y":776,"width":1,"height":1,"destination":448},{"id":448,"name":"","x":562,"y":810,"width":1,"height":1,"destination":447},{"id":449,"name":"","x":534,"y":811,"width":1,"height":1,"destination":450},{"id":450,"name":"","x":547,"y":719,"width":1,"height":1,"destination":449},{"id":451,"name":"","x":514,"y":769,"width":1,"height":1,"destination":452},{"id":452,"name":"","x":515,"y":807,"width":1,"height":1,"destination":451},{"id":453,"name":"","x":601,"y":711,"width":1,"height":1,"destination":454},{"id":454,"name":"","x":591,"y":805,"width":1,"height":1,"destination":453},{"id":457,"name":"","x":790,"y":769,"width":1,"height":1,"destination":458},{"id":458,"name":"","x":795,"y":768,"width":1,"height":1,"destination":457},{"id":459,"name":"","x":799,"y":816,"width":1,"height":1,"destination":460},{"id":460,"name":"","x":793,"y":814,"width":1,"height":1,"destination":459},{"id":463,"name":"","x":406,"y":292,"width":1,"height":1,"destination":464,"reqQuest":"ancientlands"},{"id":464,"name":"","x":433,"y":270,"width":1,"height":1,"destination":463,"reqQuest":"ancientlands"},{"id":468,"name":"","x":702,"y":613,"width":1,"height":1,"destination":469},{"id":469,"name":"","x":483,"y":275,"width":1,"height":1,"destination":468},{"id":472,"name":"","x":283,"y":124,"width":1,"height":1,"destination":473,"reqAchievement":"ogrelord"},{"id":473,"name":"","x":867,"y":722,"width":1,"height":1,"destination":472,"reqAchievement":"ogrelord"},{"id":474,"name":"","x":851,"y":750,"width":1,"height":1,"destination":475},{"id":475,"name":"","x":269,"y":176,"width":1,"height":1,"destination":474},{"id":476,"name":"","x":852,"y":760,"width":1,"height":1,"destination":478},{"id":477,"name":"","x":852,"y":765,"width":1,"height":1,"destination":481},{"id":478,"name":"","x":852,"y":763,"width":1,"height":1,"destination":476},{"id":479,"name":"","x":855,"y":764,"width":1,"height":1,"destination":480},{"id":480,"name":"","x":859,"y":764,"width":1,"height":1,"destination":479},{"id":481,"name":"","x":852,"y":772,"width":1,"height":1,"destination":477},{"id":482,"name":"","x":873,"y":761,"width":1,"height":1,"destination":483},{"id":483,"name":"","x":875,"y":757,"width":1,"height":1,"destination":482},{"id":484,"name":"","x":876,"y":757,"width":1,"height":1,"destination":485},{"id":485,"name":"","x":878,"y":761,"width":1,"height":1,"destination":484},{"id":486,"name":"","x":867,"y":747,"width":1,"height":1,"destination":487},{"id":487,"name":"","x":867,"y":751,"width":1,"height":1,"destination":486},{"id":488,"name":"","x":855,"y":780,"width":1,"height":1,"destination":489},{"id":489,"name":"","x":860,"y":785,"width":1,"height":1,"destination":488},{"id":490,"name":"","x":870,"y":781,"width":1,"height":1,"destination":491},{"id":491,"name":"","x":870,"y":784,"width":1,"height":1,"destination":490},{"id":492,"name":"","x":869,"y":775,"width":1,"height":1,"destination":493},{"id":493,"name":"","x":874,"y":773,"width":1,"height":1,"destination":492},{"id":495,"name":"","x":336,"y":304,"width":1,"height":1,"destination":496},{"id":496,"name":"","x":423,"y":738,"width":1,"height":1,"destination":495},{"id":504,"name":"","x":136,"y":106,"width":1,"height":1,"destination":505,"reqAchievement":"queenant"},{"id":505,"name":"","x":472,"y":855,"width":1,"height":1,"destination":504,"reqAchievement":"queenant"},{"id":510,"name":"","x":895,"y":718,"width":1,"height":1,"destination":511},{"id":511,"name":"","x":895,"y":718,"width":1,"height":1,"destination":512},{"id":512,"name":"","x":90,"y":367,"width":1,"height":1,"achievement":"pirates","destination":511},{"id":513,"name":"","x":908,"y":712,"width":1,"height":1,"destination":514},{"id":514,"name":"","x":939,"y":719,"width":1,"height":1,"destination":513},{"id":515,"name":"","x":942,"y":708,"width":1,"height":1,"destination":516},{"id":516,"name":"","x":942,"y":711,"width":1,"height":1,"destination":515},{"id":517,"name":"","x":960,"y":710,"width":1,"height":1,"destination":518},{"id":518,"name":"","x":954,"y":703,"width":1,"height":1,"destination":517},{"id":519,"name":"","x":957,"y":722,"width":1,"height":1,"destination":520},{"id":520,"name":"","x":952,"y":722,"width":1,"height":1,"destination":519},{"id":521,"name":"","x":962,"y":728,"width":1,"height":1,"destination":522},{"id":522,"name":"","x":955,"y":728,"width":1,"height":1,"destination":521},{"id":523,"name":"","x":944,"y":723,"width":1,"height":1,"destination":526},{"id":524,"name":"","x":959,"y":730,"width":1,"height":1,"destination":525},{"id":525,"name":"","x":935,"y":741,"width":1,"height":1,"destination":524},{"id":526,"name":"","x":920,"y":734,"width":1,"height":1,"destination":523},{"id":529,"name":"","x":387,"y":110,"width":1,"height":1,"destination":530},{"id":530,"name":"","x":389,"y":106,"width":1,"height":1,"destination":529},{"id":531,"name":"","x":391,"y":109,"width":1,"height":1,"destination":532},{"id":532,"name":"","x":396,"y":107,"width":1,"height":1,"destination":531},{"id":536,"name":"","x":693,"y":836,"width":1,"height":1,"destination":537,"quest":"seaactivities","stage":4},{"id":537,"name":"","x":858,"y":808,"width":1,"height":1,"destination":536,"quest":"seaactivities","stage":4},{"id":538,"name":"","x":665,"y":836,"width":1,"height":1,"destination":539},{"id":539,"name":"","x":46,"y":363,"width":1,"height":1,"destination":538},{"id":542,"name":"","x":528,"y":347,"width":1,"height":1,"destination":543,"reqQuest":"evilsanta"},{"id":543,"name":"","x":899,"y":802,"width":1,"height":1,"destination":542},{"id":544,"name":"","x":966,"y":746,"width":1,"height":1,"destination":545,"quest":"evilsanta","stage":3},{"id":545,"name":"","x":748,"y":607,"width":1,"height":1,"destination":544,"quest":"evilsanta","reqItem":"candykey","stage":3},{"id":546,"name":"","x":909,"y":799,"width":1,"height":1,"destination":547},{"id":547,"name":"","x":531,"y":263,"width":1,"height":1,"destination":546,"quest":"evilsanta","stage":2},{"id":550,"name":"","x":379,"y":331,"width":1,"height":1,"destination":551},{"id":551,"name":"","x":971,"y":782,"width":1,"height":1,"destination":550},{"id":552,"name":"","x":997,"y":803,"width":1,"height":1,"destination":553},{"id":553,"name":"","x":988,"y":700,"width":1,"height":1,"destination":552},{"id":556,"name":"","x":683,"y":844,"width":1,"height":1,"destination":557,"reqAchievement":"mermaidguard"},{"id":557,"name":"","x":688,"y":844,"width":1,"height":1,"destination":556,"reqAchievement":"mermaidguard"},{"id":558,"name":"","x":372,"y":891,"width":1,"height":1,"destination":559},{"id":559,"name":"","x":391,"y":891,"width":1,"height":1,"destination":558},{"id":1025,"name":"","x":379,"y":388,"width":1,"height":1,"destination":1026},{"id":1026,"name":"","x":1138,"y":800,"width":1,"height":1,"destination":1025},{"id":1027,"name":"","x":1111,"y":775,"width":1,"height":1,"destination":1028,"reqAchievement":"roadtohell"},{"id":1028,"name":"","x":1053,"y":758,"width":1,"height":1,"destination":1027},{"id":1029,"name":"","x":931,"y":806,"width":1,"height":1,"achievement":"iceworld","destination":1030},{"id":1030,"name":"","x":608,"y":335,"width":1,"height":1,"achievement":"iceworld","destination":1029},{"id":1031,"name":"","x":343,"y":132,"width":1,"height":1,"destination":1032},{"id":1032,"name":"","x":342,"y":687,"width":1,"height":1,"destination":1031},{"id":1033,"name":"","x":375,"y":132,"width":1,"height":1,"destination":1034},{"id":1034,"name":"","x":357,"y":687,"width":1,"height":1,"destination":1033},{"id":1038,"name":"","x":279,"y":113,"width":1,"height":1,"destination":1039},{"id":1039,"name":"","x":667,"y":685,"width":1,"height":1,"destination":1038},{"id":1040,"name":"","x":369,"y":118,"width":1,"height":1,"destination":1041},{"id":1041,"name":"","x":688,"y":707,"width":1,"height":1,"destination":1040},{"id":1044,"name":"","x":147,"y":113,"width":1,"height":1,"destination":1045},{"id":1045,"name":"","x":776,"y":114,"width":1,"height":1,"destination":1044},{"id":1048,"name":"","x":326,"y":174,"width":1,"height":1,"destination":1049,"reqQuest":"minersquest2"},{"id":1049,"name":"","x":669,"y":619,"width":1,"height":1,"destination":1048,"reqQuest":"minersquest2"},{"id":1050,"name":"","x":654,"y":648,"width":1,"height":1,"destination":1051,"level":50,"skill":"Mining"},{"id":1051,"name":"","x":644,"y":602,"width":1,"height":1,"destination":1050,"level":50,"skill":"Mining"},{"id":1053,"name":"","x":273,"y":338,"width":1,"height":1,"destination":1054},{"id":1054,"name":"","x":1115,"y":668,"width":1,"height":1,"destination":1053},{"id":1055,"name":"","x":1146,"y":681,"width":1,"height":1,"destination":1056},{"id":1056,"name":"","x":337,"y":358,"width":1,"height":1,"destination":1055},{"id":1057,"name":"","x":1082,"y":714,"width":1,"height":1,"destination":1058,"quest":"royaldrama","stage":2},{"id":1058,"name":"","x":1090,"y":707,"width":1,"height":1,"destination":1057,"quest":"royaldrama","stage":2},{"id":1059,"name":"","x":1112,"y":775,"width":1,"height":1,"destination":1028,"reqAchievement":"roadtohell"},{"id":1062,"name":"","x":702,"y":554,"width":1,"height":1,"destination":1063},{"id":1063,"name":"","x":579,"y":335,"width":1,"height":1,"destination":1062},{"id":1065,"name":"","x":848,"y":672,"width":1,"height":1,"destination":1066},{"id":1066,"name":"","x":625,"y":290,"width":1,"height":1,"destination":1065},{"id":1074,"name":"","x":141,"y":624,"width":1,"height":1,"destination":1075},{"id":1075,"name":"","x":140,"y":630,"width":1,"height":1,"destination":1074},{"id":1076,"name":"","x":144,"y":624,"width":1,"height":1,"destination":1077},{"id":1077,"name":"","x":145,"y":630,"width":1,"height":1,"destination":1076},{"id":1079,"name":"","x":135,"y":886,"width":1,"height":1,"destination":1080},{"id":1080,"name":"","x":139,"y":886,"width":1,"height":1,"destination":1079},{"id":1082,"name":"","x":343,"y":119,"width":1,"height":1,"destination":1083},{"id":1083,"name":"","x":115,"y":882,"width":1,"height":1,"destination":1082},{"id":1107,"name":"","x":369,"y":872,"width":1,"height":1,"destination":1109},{"id":1108,"name":"","x":374,"y":866,"width":1,"height":1,"destination":1110},{"id":1109,"name":"","x":169,"y":174,"width":1,"height":1,"destination":1107},{"id":1110,"name":"","x":776,"y":658,"width":1,"height":1,"destination":1108},{"id":1111,"name":"","x":407,"y":874,"width":1,"height":1,"destination":1112},{"id":1112,"name":"","x":337,"y":344,"width":1,"height":1,"destination":1111},{"id":1114,"name":"","x":439,"y":887,"width":1,"height":1,"destination":1115},{"id":1115,"name":"","x":201,"y":168,"width":1,"height":1,"destination":1114,"npc":"blacksmith","quest":"anvilsechoes","stage":"2"},{"id":1128,"name":"","x":425,"y":901,"width":1,"height":1,"destination":1131},{"id":1131,"name":"","x":453,"y":904,"width":1,"height":1},{"id":1137,"name":"","x":425,"y":909,"width":1,"height":1,"destination":1138},{"id":1138,"name":"","x":260,"y":229,"width":1,"height":1,"destination":1137,"quest":"ricksroll","stage":"2"},{"id":1140,"name":"","x":453,"y":907,"width":1,"height":1,"destination":1141},{"id":1141,"name":"","x":426,"y":927,"width":1,"height":1},{"id":1142,"name":"","x":455,"y":930,"width":1,"height":1,"destination":1138},{"id":1143,"name":"","x":431,"y":920,"width":1,"height":1,"destination":1142},{"id":1145,"name":"","x":449,"y":904,"width":1,"height":1,"destination":1137},{"id":1146,"name":"","x":425,"y":905,"width":1,"height":1,"destination":1137},{"id":1147,"name":"","x":421,"y":903,"width":1,"height":1,"destination":1137},{"id":1148,"name":"","x":429,"y":903,"width":1,"height":1,"destination":1137},{"id":1149,"name":"","x":453,"y":901,"width":1,"height":1,"destination":1137},{"id":1150,"name":"","x":457,"y":904,"width":1,"height":1,"destination":1137},{"id":1151,"name":"","x":422,"y":920,"width":1,"height":1,"destination":1137},{"id":1156,"name":"","x":134,"y":569,"width":1,"height":1,"destination":1157,"quest":"tutorial","stage":"1"},{"id":1157,"name":"","x":57,"y":600,"width":1,"height":1},{"id":1158,"name":"","x":39,"y":611,"width":1,"height":1,"destination":1159,"quest":"tutorial","stage":"9"},{"id":1159,"name":"","x":25,"y":540,"width":1,"height":1},{"id":1160,"name":"","x":40,"y":549,"width":1,"height":1,"destination":1161,"quest":"tutorial","stage":"15"},{"id":1161,"name":"","x":326,"y":891,"width":1,"height":1}],"chest":[{"id":273,"name":"","x":188,"y":746,"width":1,"height":1,"achievement":"sandtreasure","items":"boweggplant"},{"id":304,"name":"","x":271,"y":731,"width":1,"height":1,"mimic":true},{"id":348,"name":"","x":349,"y":289,"width":1,"height":1,"mimic":true},{"id":355,"name":"","x":802,"y":651,"width":1,"height":1,"mimic":true},{"id":390,"name":"","x":305,"y":809,"width":1,"height":1,"achievement":"underwatertreasure","items":"cobaltaxe,ring1,bowocean"},{"id":392,"name":"","x":292,"y":852,"width":1,"height":1,"items":"guardarmor,flask,scimitar"},{"id":421,"name":"","x":803,"y":726,"width":1,"height":1,"achievement":"wormholes","items":"leatherarmor,morningstar,leatherarcherarmor,plasticbow"},{"id":455,"name":"","x":507,"y":828,"width":1,"height":1,"mimic":true},{"id":456,"name":"","x":556,"y":821,"width":1,"height":1,"mimic":true},{"id":466,"name":"","x":773,"y":767,"width":1,"height":1,"mimic":true},{"id":527,"name":"","x":933,"y":704,"width":1,"height":1,"achievement":"piratestreasure","items":"cure,manaflask"},{"id":528,"name":"","x":951,"y":707,"width":1,"height":1,"mimic":true}],"chests":[{"id":248,"name":"","x":110,"y":108,"width":5,"height":3,"achievement":"hiddenreward","items":"bronzesword","spawnX":110,"spawnY":106},{"id":249,"name":"","x":187,"y":204,"width":4,"height":2,"items":"woodenbow","spawnX":188,"spawnY":203},{"id":250,"name":"","x":278,"y":163,"width":7,"height":5,"achievement":"ogresgateway","items":"ironsword,bronzechestplate,aquastaff,bronzelegplates","spawnX":280,"spawnY":165},{"id":282,"name":"","x":360,"y":316,"width":5,"height":3,"items":"nisocsword,bronzering,zondullogs,accuracypotion,defensepotion,rawtuna","spawnX":362,"spawnY":318},{"id":319,"name":"","x":381,"y":278,"width":2,"height":6,"achievement":"frozentundra","items":"cobaltsword","spawnX":381,"spawnY":281},{"id":494,"name":"","x":880,"y":772,"width":1,"height":1,"items":"bigflask,flask,manaflask","spawnX":806,"spawnY":75},{"id":549,"name":"","x":988,"y":704,"width":1,"height":1,"items":"lightningbead,cinnabarore,steelboots,poisonarrow","spawnX":989,"spawnY":705}],"pvp":[{"id":316,"name":"","x":645,"y":761,"width":54,"height":42},{"id":533,"name":"","x":322,"y":103,"width":46,"height":46},{"id":534,"name":"","x":368,"y":101,"width":49,"height":77},{"id":535,"name":"","x":35,"y":434,"width":112,"height":64}],"overlay":[{"id":310,"name":"","x":120,"y":644,"width":189,"height":104,"darkness":0.75,"type":"dark"},{"id":367,"name":"","x":195,"y":768,"width":8,"height":16,"darkness":0.6,"type":"inside"},{"id":434,"name":"","x":497,"y":650,"width":117,"height":199,"darkness":0.78,"type":"dark"},{"id":435,"name":"","x":160,"y":837,"width":31,"height":17,"darkness":0.7,"type":"dark"},{"id":436,"name":"","x":699,"y":632,"width":105,"height":39,"darkness":0.85,"type":"dark"},{"id":467,"name":"","x":440,"y":241,"width":98,"height":145,"polygon":[{"x":440,"y":241},{"x":539,"y":243},{"x":544,"y":276},{"x":541,"y":338},{"x":536,"y":340},{"x":531,"y":382},{"x":439,"y":386},{"x":434,"y":359},{"x":442,"y":353}],"darkness":0.4,"fog":"fog","type":"freezing"},{"id":1042,"name":"","x":1038,"y":665,"width":115,"height":199,"darkness":0.85,"type":"dark"},{"id":1067,"name":"","x":832,"y":576,"width":94,"height":102,"darkness":0.75,"type":"dark"},{"id":1068,"name":"","x":893,"y":778,"width":108,"height":81,"darkness":0.75,"type":"dark"},{"id":1069,"name":"","x":725,"y":760,"width":100,"height":63,"darkness":0.75,"type":"dark"},{"id":1105,"name":"","x":32,"y":306,"width":115,"height":125,"darkness":0.55,"rgb":"22,124,184","type":"dim"},{"id":1113,"name":"","x":32,"y":431,"width":117,"height":66,"darkness":0.55,"rgb":"184,124,22","type":"dim"}],"camera":[],"lights":[{"id":1096,"name":"","x":164,"y":668,"width":1,"height":1,"diffuse":0.3,"distance":160},{"id":1097,"name":"","x":154,"y":664,"width":1,"height":1,"diffuse":0.4,"distance":100},{"id":1098,"name":"","x":178,"y":667,"width":1,"height":1,"diffuse":0.3,"distance":200}],"dynamic":[{"id":274,"name":"","x":153,"y":229,"width":3,"height":4,"achievement":"crabproblem","mapping":275},{"id":275,"name":"","x":1146,"y":89,"width":3,"height":4},{"id":280,"name":"","x":1145,"y":101,"width":1,"height":1},{"id":281,"name":"","x":292,"y":734,"width":1,"height":1,"achievement":"waterguardian","mapping":280},{"id":295,"name":"","x":386,"y":738,"width":1,"height":1,"achievement":"ogreguardian","mapping":296},{"id":296,"name":"","x":1144,"y":101,"width":1,"height":1},{"id":305,"name":"","x":1143,"y":101,"width":1,"height":1},{"id":306,"name":"","x":269,"y":131,"width":1,"height":1,"achievement":"ogresgateway","mapping":305},{"id":307,"name":"","x":273,"y":162,"width":1,"height":1,"achievement":"ogresgateway","mapping":305},{"id":317,"name":"","x":1149,"y":89,"width":3,"height":4},{"id":318,"name":"","x":385,"y":280,"width":3,"height":4,"achievement":"frozentundra","mapping":317},{"id":350,"name":"","x":1149,"y":100,"width":3,"height":2},{"id":351,"name":"","x":336,"y":142,"width":3,"height":2,"achievement":"pathofdeath","mapping":350},{"id":422,"name":"","x":1146,"y":93,"width":3,"height":3},{"id":423,"name":"","x":82,"y":421,"width":3,"height":3,"achievement":"babyseadragon","mapping":422},{"id":424,"name":"","x":282,"y":123,"width":3,"height":3,"achievement":"ogrelord","mapping":425},{"id":425,"name":"","x":1149,"y":96,"width":3,"height":3},{"id":461,"name":"","x":1145,"y":100,"width":1,"height":1},{"id":462,"name":"","x":406,"y":292,"width":1,"height":1,"mapping":461,"quest":"ancientlands"},{"id":497,"name":"","x":126,"y":137,"width":3,"height":3,"achievement":"queenant","mapping":498},{"id":498,"name":"","x":1144,"y":97,"width":3,"height":3},{"id":499,"name":"","x":135,"y":108,"width":3,"height":5,"achievement":"queenant","mapping":500},{"id":500,"name":"","x":1141,"y":96,"width":3,"height":5},{"id":501,"name":"","x":135,"y":105,"width":3,"height":2,"achievement":"queenant","mapping":502},{"id":502,"name":"","x":1149,"y":102,"width":3,"height":2},{"id":540,"name":"","x":1140,"y":96,"width":1,"height":4},{"id":541,"name":"","x":525,"y":340,"width":1,"height":4,"mapping":540,"quest":"evilsanta"},{"id":554,"name":"","x":683,"y":844,"width":1,"height":1,"achievement":"mermaidguard","mapping":296},{"id":555,"name":"","x":688,"y":844,"width":1,"height":1,"achievement":"mermaidguard","mapping":296},{"id":1035,"name":"","x":312,"y":114,"width":12,"height":4,"achievement":"ogrelord","mapping":1037},{"id":1037,"name":"","x":1140,"y":104,"width":12,"height":4},{"id":1060,"name":"","x":1110,"y":773,"width":4,"height":3,"achievement":"roadtohell","mapping":1061},{"id":1061,"name":"","x":1136,"y":96,"width":4,"height":3}],"area names":[{"id":1070,"name":"","x":137,"y":160,"width":41,"height":16},{"id":1072,"name":"","x":303,"y":283,"width":41,"height":16},{"id":1073,"name":"","x":265,"y":166,"width":41,"height":16},{"id":1099,"name":"","x":445,"y":331,"width":65,"height":39},{"id":1100,"name":"","x":615,"y":433,"width":60,"height":16},{"id":1101,"name":"","x":298,"y":394,"width":69,"height":16},{"id":1102,"name":"","x":72,"y":381,"width":49,"height":16},{"id":1103,"name":"","x":408,"y":143,"width":54,"height":23}]},"plateau":{"110688":1,"110689":1,"110690":1,"110691":1,"110692":1,"110693":1,"110694":1,"110695":1,"110696":1,"110697":1,"110698":1,"110699":1,"110700":1,"110701":1,"110702":1,"110703":1,"110704":1,"110705":1,"110706":1,"110707":1,"110708":1,"110709":1,"110710":1,"110711":1,"110712":1,"110713":1,"110714":1,"110715":1,"110716":1,"110717":1,"110718":1,"110719":1,"110720":1,"110721":1,"110722":1,"110723":1,"110724":1,"110725":1,"110726":1,"110727":1,"110728":1,"110729":1,"110730":1,"110731":1,"110732":1,"110733":1,"110734":1,"110735":1,"110736":1,"110737":1,"110738":1,"110739":1,"110740":1,"110741":1,"110742":1,"110743":1,"110744":1,"110745":1,"110746":1,"110747":1,"110748":1,"110749":1,"110756":1,"110757":1,"110758":1,"110759":1,"110760":1,"110761":1,"110762":1,"110763":1,"110764":1,"110765":1,"110766":1,"110767":1,"110768":1,"110769":1,"110770":1,"110771":1,"110772":1,"110773":1,"110774":1,"110775":1,"110776":1,"110777":1,"110778":1,"110779":1,"110780":1,"110781":1,"110782":1,"110783":1,"110784":1,"110785":1,"110786":1,"110787":1,"110788":1,"110789":1,"110790":1,"110791":1,"110792":1,"110793":1,"110794":1,"110795":1,"110796":1,"110797":1,"110798":1,"110799":1,"110800":1,"110801":1,"110802":1,"110803":1,"110804":1,"110805":1,"110806":1,"110807":1,"110808":1,"110809":1,"110810":1,"110811":1,"110812":1,"110813":1,"110814":1,"110815":1,"110816":1,"110817":1,"110818":1,"110819":1,"110820":1,"110821":1,"110822":1,"110823":1,"110824":1,"110825":1,"110826":1,"110827":1,"110828":1,"110829":1,"110830":1,"110831":1,"110832":2,"110833":2,"110834":2,"110835":2,"110836":2,"110837":2,"110838":2,"110839":2,"110840":2,"110841":2,"110842":2,"110843":2,"110844":2,"110845":2,"110846":2,"110847":2,"110848":2,"110849":2,"110850":2,"110851":2,"110852":2,"110853":2,"110854":2,"110855":2,"110856":2,"110857":2,"110858":2,"110859":2,"110860":2,"110861":2,"110862":2,"110863":2,"110864":2,"110865":2,"110866":2,"110867":2,"110868":2,"110869":2,"110870":2,"110871":2,"110872":2,"110873":2,"110874":2,"110875":2,"110876":2,"110877":2,"110878":2,"110879":2,"110880":2,"110881":2,"110882":2,"110883":2,"110884":2,"110885":2,"110886":2,"110887":2,"110888":2,"110889":2,"110890":2,"110891":2,"110892":2,"110893":2,"110894":2,"110895":2,"110896":2,"110897":2,"110898":2,"110899":2,"110900":2,"110901":2,"110902":2,"110903":2,"111840":1,"111841":1,"111844":1,"111845":1,"111846":1,"111847":1,"111848":1,"111849":1,"111850":1,"111851":1,"111852":1,"111853":1,"111854":1,"111855":1,"111856":1,"111857":1,"111858":1,"111859":1,"111860":1,"111863":1,"111864":1,"111865":1,"111875":1,"111876":1,"111877":1,"111878":1,"111879":1,"111880":1,"111881":1,"111882":1,"111883":1,"111884":1,"111885":1,"111886":1,"111887":1,"111888":1,"111889":1,"111890":1,"111891":1,"111892":1,"111893":1,"111894":1,"111895":1,"111896":1,"111897":1,"111898":1,"111899":1,"111900":1,"111901":1,"111908":1,"111909":1,"111910":1,"111911":1,"111912":1,"111913":1,"111914":1,"111920":1,"111921":1,"111922":1,"111923":1,"111924":1,"111925":1,"111926":1,"111927":1,"111928":1,"111929":1,"111930":1,"111931":1,"111932":1,"111933":1,"111934":1,"111935":1,"111936":1,"111937":1,"111938":1,"111939":1,"111940":1,"111941":1,"111942":1,"111943":1,"111944":1,"111945":1,"111946":1,"111947":1,"111948":1,"111949":1,"111950":1,"111951":1,"111952":1,"111953":1,"111954":1,"111955":1,"111956":1,"111957":1,"111958":1,"111959":1,"111960":1,"111961":1,"111962":1,"111963":1,"111964":1,"111965":1,"111966":1,"111967":1,"111968":1,"111969":1,"111970":1,"111971":1,"111972":1,"111973":1,"111974":1,"111975":1,"111976":1,"111977":1,"111978":1,"111979":1,"111980":1,"111981":1,"111982":1,"111983":1,"111984":2,"111985":2,"111986":2,"111987":2,"111988":2,"111989":2,"111990":2,"111991":2,"111992":2,"111993":2,"111994":2,"111995":2,"111996":2,"111997":2,"111998":2,"111999":2,"112000":2,"112001":2,"112002":2,"112003":2,"112004":2,"112005":2,"112006":2,"112007":2,"112008":2,"112009":2,"112010":2,"112011":2,"112012":2,"112013":2,"112014":2,"112015":2,"112016":2,"112017":2,"112018":2,"112019":2,"112020":2,"112021":2,"112022":2,"112023":2,"112024":2,"112025":2,"112026":2,"112027":2,"112028":2,"112029":2,"112030":2,"112031":2,"112032":2,"112033":2,"112034":2,"112035":2,"112036":2,"112037":2,"112038":2,"112039":2,"112040":2,"112041":2,"112042":2,"112043":2,"112044":2,"112045":2,"112046":2,"112047":2,"112048":2,"112049":2,"112050":2,"112051":2,"112052":2,"112053":2,"112054":2,"112055":2,"112056":2,"112992":1,"112993":1,"112996":1,"112997":1,"112998":1,"112999":1,"113000":1,"113001":1,"113004":1,"113005":1,"113006":1,"113007":1,"113008":1,"113011":1,"113012":1,"113015":1,"113016":1,"113028":1,"113029":1,"113030":1,"113031":1,"113032":1,"113033":1,"113034":1,"113035":1,"113036":1,"113037":1,"113038":1,"113039":1,"113040":1,"113041":1,"113042":1,"113043":1,"113044":1,"113045":1,"113046":1,"113047":1,"113048":1,"113049":1,"113050":1,"113051":1,"113052":1,"113053":1,"113060":1,"113061":1,"113062":1,"113063":1,"113064":1,"113065":1,"113073":1,"113074":1,"113075":1,"113076":1,"113077":1,"113078":1,"113079":1,"113080":1,"113081":1,"113082":1,"113083":1,"113084":1,"113085":1,"113086":1,"113087":1,"113088":1,"113089":1,"113090":1,"113091":1,"113092":1,"113093":1,"113094":1,"113095":1,"113096":1,"113097":1,"113098":1,"113099":1,"113100":1,"113101":1,"113102":1,"113103":1,"113104":1,"113105":1,"113106":1,"113107":1,"113108":1,"113109":1,"113110":1,"113111":1,"113112":1,"113113":1,"113114":1,"113115":1,"113116":1,"113117":1,"113118":1,"113119":1,"113120":1,"113121":1,"113122":1,"113123":1,"113124":1,"113125":1,"113126":1,"113127":1,"113128":1,"113129":1,"113130":1,"113131":1,"113132":1,"113133":1,"113134":1,"113135":1,"113136":2,"113137":2,"113138":2,"113139":2,"113140":2,"113141":2,"113142":2,"113143":2,"113144":2,"113145":2,"113146":2,"113147":2,"113148":2,"113149":2,"113150":2,"113151":2,"113152":2,"113153":2,"113154":2,"113155":2,"113156":2,"113157":2,"113158":2,"113159":2,"113160":2,"113161":2,"113162":2,"113163":2,"113164":2,"113165":2,"113166":2,"113167":2,"113168":2,"113169":2,"113170":2,"113171":2,"113172":2,"113173":2,"113174":2,"113175":2,"113176":2,"113177":2,"113178":2,"113179":2,"113180":2,"113181":2,"113182":2,"113183":2,"113184":2,"113185":2,"113186":2,"113187":2,"113188":2,"113189":2,"113190":2,"113191":2,"113192":2,"113193":2,"113194":2,"113195":2,"113196":2,"113197":2,"113198":2,"113199":2,"113200":2,"113201":2,"113202":2,"113203":2,"113204":2,"113205":2,"113206":2,"113207":2,"113208":2,"113209":2,"114144":1,"114145":1,"114146":1,"114147":1,"114148":1,"114149":1,"114152":1,"114153":1,"114156":1,"114157":1,"114158":1,"114159":1,"114164":1,"114165":1,"114166":1,"114167":1,"114181":1,"114182":1,"114183":1,"114184":1,"114185":1,"114186":1,"114187":1,"114188":1,"114189":1,"114190":1,"114191":1,"114192":1,"114193":1,"114198":1,"114199":1,"114200":1,"114201":1,"114202":1,"114203":1,"114204":1,"114205":1,"114206":1,"114211":1,"114212":1,"114213":1,"114214":1,"114215":1,"114216":1,"114226":1,"114227":1,"114228":1,"114229":1,"114230":1,"114231":1,"114232":1,"114233":1,"114234":1,"114235":1,"114236":1,"114237":1,"114238":1,"114239":1,"114240":1,"114241":1,"114242":1,"114243":1,"114244":1,"114245":1,"114246":1,"114247":1,"114248":1,"114249":1,"114250":1,"114251":1,"114252":1,"114253":1,"114254":1,"114255":1,"114256":1,"114257":1,"114258":1,"114259":1,"114260":1,"114261":1,"114262":1,"114263":1,"114264":1,"114265":1,"114266":1,"114267":1,"114268":1,"114269":1,"114270":1,"114271":1,"114272":1,"114273":1,"114274":1,"114275":1,"114276":1,"114277":1,"114278":1,"114279":1,"114280":1,"114281":1,"114282":1,"114283":1,"114284":1,"114285":1,"114286":1,"114287":1,"114288":2,"114289":2,"114290":2,"114291":2,"114292":2,"114293":2,"114294":2,"114295":2,"114296":2,"114297":2,"114298":2,"114299":2,"114300":2,"114301":2,"114302":2,"114303":2,"114304":2,"114305":2,"114306":2,"114307":2,"114308":2,"114309":2,"114310":2,"114311":2,"114312":2,"114313":2,"114314":2,"114315":2,"114316":2,"114317":2,"114318":2,"114319":2,"114320":2,"114321":2,"114322":2,"114323":2,"114324":2,"114325":2,"114326":2,"114327":2,"114328":2,"114329":2,"114330":2,"114331":2,"114332":2,"114333":2,"114334":2,"114335":2,"114336":2,"114337":2,"114338":2,"114339":2,"114340":2,"114341":2,"114342":2,"114343":2,"114344":2,"114345":2,"114346":2,"114347":2,"114348":2,"114349":2,"114350":2,"114351":2,"114352":2,"114353":2,"114354":2,"114355":2,"114356":2,"114357":2,"114358":2,"114359":2,"114360":2,"114361":2,"115296":1,"115297":1,"115298":1,"115299":1,"115300":1,"115305":1,"115306":1,"115307":1,"115308":1,"115309":1,"115310":1,"115334":1,"115335":1,"115336":1,"115337":1,"115338":1,"115339":1,"115340":1,"115341":1,"115342":1,"115343":1,"115344":1,"115351":1,"115352":1,"115353":1,"115354":1,"115355":1,"115356":1,"115357":1,"115358":1,"115359":1,"115360":1,"115361":1,"115362":1,"115363":1,"115364":1,"115365":1,"115366":1,"115367":1,"115368":1,"115379":1,"115380":1,"115381":1,"115382":1,"115383":1,"115384":1,"115385":1,"115386":1,"115387":1,"115388":1,"115389":1,"115390":1,"115391":1,"115392":1,"115393":1,"115394":1,"115395":1,"115396":1,"115397":1,"115398":1,"115399":1,"115400":1,"115401":1,"115402":1,"115403":1,"115404":1,"115405":1,"115406":1,"115407":1,"115408":1,"115409":1,"115410":1,"115411":1,"115412":1,"115413":1,"115414":1,"115415":1,"115416":1,"115417":1,"115418":1,"115419":1,"115420":1,"115421":1,"115422":1,"115423":1,"115424":1,"115425":1,"115426":1,"115427":1,"115428":1,"115429":1,"115430":1,"115431":1,"115432":1,"115433":1,"115434":1,"115435":1,"115436":1,"115437":1,"115438":1,"115439":1,"115440":2,"115441":2,"115442":2,"115443":2,"115444":2,"115445":2,"115446":2,"115447":2,"115448":2,"115449":2,"115450":2,"115451":2,"115452":2,"115453":2,"115454":2,"115455":2,"115456":2,"115457":2,"115458":2,"115465":2,"115466":2,"115467":2,"115468":2,"115469":2,"115470":2,"115471":2,"115472":2,"115473":2,"115474":2,"115475":2,"115476":2,"115477":2,"115478":2,"115479":2,"115480":2,"115481":2,"115482":2,"115483":2,"115484":2,"115485":2,"115486":2,"115487":2,"115488":2,"115489":2,"115490":2,"115491":2,"115492":2,"115493":2,"115494":2,"115495":2,"115496":2,"115497":2,"115498":2,"115499":2,"115500":2,"115501":2,"115502":2,"115503":2,"115504":2,"115505":2,"115506":2,"115507":2,"115508":2,"115509":2,"115510":2,"115511":2,"115512":2,"115513":2,"116448":1,"116449":1,"116450":1,"116451":1,"116492":1,"116493":1,"116494":1,"116495":1,"116510":1,"116511":1,"116512":1,"116513":1,"116514":1,"116515":1,"116516":1,"116517":1,"116518":1,"116519":1,"116532":1,"116533":1,"116534":1,"116535":1,"116536":1,"116537":1,"116538":1,"116539":1,"116540":1,"116541":1,"116542":1,"116543":1,"116544":1,"116545":1,"116546":1,"116547":1,"116548":1,"116549":1,"116550":1,"116551":1,"116552":1,"116553":1,"116554":1,"116555":1,"116556":1,"116557":1,"116558":1,"116559":1,"116560":1,"116561":1,"116562":1,"116563":1,"116564":1,"116565":1,"116566":1,"116567":1,"116568":1,"116569":1,"116570":1,"116571":1,"116572":1,"116579":1,"116580":1,"116581":1,"116582":1,"116583":1,"116584":1,"116585":1,"116586":1,"116587":1,"116588":1,"116589":1,"116590":1,"116591":1,"116592":2,"116593":2,"116594":2,"116595":2,"116596":2,"116597":2,"116598":2,"116599":2,"116600":2,"116601":2,"116602":2,"116603":2,"116604":2,"116605":2,"116606":2,"116607":2,"116608":2,"116609":2,"116618":2,"116619":2,"116620":2,"116621":2,"116627":2,"116628":2,"116629":2,"116630":2,"116631":2,"116632":2,"116633":2,"116634":2,"116635":2,"116636":2,"116637":2,"116638":2,"116639":2,"116640":2,"116641":2,"116642":2,"116643":2,"116644":2,"116645":2,"116646":2,"116647":2,"116648":2,"116649":2,"116650":2,"116651":2,"116652":2,"116653":2,"116654":2,"116655":2,"116656":2,"116657":2,"116658":2,"116659":2,"116660":2,"116661":2,"116662":2,"116663":2,"116664":2,"116665":2,"117600":1,"117601":1,"117602":1,"117603":1,"117663":1,"117664":1,"117665":1,"117666":1,"117667":1,"117668":1,"117669":1,"117670":1,"117689":1,"117690":1,"117691":1,"117692":1,"117693":1,"117694":1,"117695":1,"117696":1,"117697":1,"117698":1,"117699":1,"117700":1,"117701":1,"117702":1,"117703":1,"117704":1,"117705":1,"117706":1,"117707":1,"117708":1,"117709":1,"117710":1,"117711":1,"117712":1,"117713":1,"117714":1,"117715":1,"117716":1,"117717":1,"117718":1,"117719":1,"117720":1,"117721":1,"117722":1,"117723":1,"117732":1,"117733":1,"117734":1,"117735":1,"117736":1,"117737":1,"117738":1,"117739":1,"117740":1,"117741":1,"117742":1,"117743":1,"117744":2,"117745":2,"117746":2,"117747":2,"117748":2,"117749":2,"117750":2,"117751":2,"117752":2,"117753":2,"117754":2,"117755":2,"117756":2,"117757":2,"117758":2,"117759":2,"117760":2,"117779":2,"117780":2,"117781":2,"117782":2,"117783":2,"117784":2,"117785":2,"117786":2,"117787":2,"117788":2,"117789":2,"117790":2,"117791":2,"117792":2,"117793":2,"117794":2,"117795":2,"117796":2,"117797":2,"117798":2,"117799":2,"117800":2,"117801":2,"117802":2,"117803":2,"117804":2,"117805":2,"117806":2,"117807":2,"117808":2,"117809":2,"117810":2,"117811":2,"117812":2,"117813":2,"117814":2,"117815":2,"117816":2,"117817":2,"117904":2,"117905":2,"117906":2,"117907":2,"118752":1,"118753":1,"118754":1,"118755":1,"118842":1,"118843":1,"118844":1,"118845":1,"118846":1,"118847":1,"118848":1,"118849":1,"118850":1,"118851":1,"118852":1,"118853":1,"118854":1,"118855":1,"118856":1,"118857":1,"118858":1,"118859":1,"118860":1,"118861":1,"118862":1,"118863":1,"118864":1,"118865":1,"118866":1,"118867":1,"118868":1,"118869":1,"118870":1,"118871":1,"118872":1,"118873":1,"118874":1,"118885":1,"118886":1,"118887":1,"118888":1,"118889":1,"118890":1,"118891":1,"118892":1,"118893":1,"118894":1,"118895":1,"118896":2,"118897":2,"118898":2,"118899":2,"118900":2,"118901":2,"118902":2,"118903":2,"118904":2,"118905":2,"118906":2,"118907":2,"118908":2,"118909":2,"118910":2,"118911":2,"118912":2,"118931":2,"118932":2,"118933":2,"118934":2,"118935":2,"118936":2,"118937":2,"118938":2,"118939":2,"118947":2,"118948":2,"118949":2,"118950":2,"118951":2,"118952":2,"118953":2,"118954":2,"118955":2,"118956":2,"118957":2,"118958":2,"118959":2,"118960":2,"118961":2,"118962":2,"118963":2,"118964":2,"118965":2,"118966":2,"118967":2,"118968":2,"118969":2,"119055":2,"119056":2,"119058":2,"119059":2,"119060":2,"119061":2,"119062":2,"119063":2,"119064":2,"119065":2,"119904":1,"119905":1,"119906":1,"119907":1,"119995":1,"119996":1,"119997":1,"119998":1,"119999":1,"120000":1,"120001":1,"120002":1,"120003":1,"120004":1,"120005":1,"120006":1,"120007":1,"120008":1,"120009":1,"120010":1,"120011":1,"120012":1,"120013":1,"120014":1,"120015":1,"120016":1,"120017":1,"120018":1,"120019":1,"120020":1,"120021":1,"120022":1,"120023":1,"120024":1,"120025":1,"120026":1,"120037":1,"120038":1,"120039":1,"120040":1,"120041":1,"120042":1,"120043":1,"120044":1,"120045":1,"120046":1,"120047":1,"120048":2,"120049":2,"120050":2,"120051":2,"120052":2,"120053":2,"120054":2,"120055":2,"120056":2,"120057":2,"120058":2,"120059":2,"120060":2,"120061":2,"120062":2,"120063":2,"120084":2,"120085":2,"120086":2,"120087":2,"120088":2,"120105":2,"120106":2,"120107":2,"120108":2,"120109":2,"120110":2,"120111":2,"120112":2,"120113":2,"120114":2,"120115":2,"120116":2,"120117":2,"120118":2,"120119":2,"120120":2,"120211":2,"120212":2,"120213":2,"120214":2,"120215":2,"120216":2,"120217":2,"121056":1,"121057":1,"121058":1,"121059":1,"121148":1,"121149":1,"121150":1,"121151":1,"121152":1,"121153":1,"121162":1,"121163":1,"121164":1,"121165":1,"121166":1,"121167":1,"121168":1,"121169":1,"121170":1,"121171":1,"121172":1,"121173":1,"121174":1,"121175":1,"121176":1,"121177":1,"121178":1,"121189":1,"121190":1,"121191":1,"121192":1,"121193":1,"121194":1,"121195":1,"121196":1,"121197":1,"121198":1,"121199":1,"121200":2,"121201":2,"121202":2,"121203":2,"121204":2,"121205":2,"121206":2,"121207":2,"121208":2,"121209":2,"121210":2,"121211":2,"121212":2,"121213":2,"121214":2,"121236":2,"121237":2,"121238":2,"121239":2,"121258":2,"121259":2,"121260":2,"121261":2,"121262":2,"121263":2,"121264":2,"121265":2,"121266":2,"121267":2,"121268":2,"121269":2,"121270":2,"121271":2,"121364":2,"121365":2,"121366":2,"121367":2,"121368":2,"121369":2,"122208":1,"122211":1,"122212":1,"122213":1,"122303":1,"122304":1,"122319":1,"122320":1,"122321":1,"122322":1,"122323":1,"122324":1,"122325":1,"122326":1,"122327":1,"122328":1,"122329":1,"122330":1,"122341":1,"122342":1,"122343":1,"122344":1,"122345":1,"122346":1,"122347":1,"122348":1,"122349":1,"122350":1,"122353":2,"122354":2,"122355":2,"122356":2,"122357":2,"122358":2,"122359":2,"122360":2,"122361":2,"122362":2,"122363":2,"122364":2,"122365":2,"122389":2,"122390":2,"122411":2,"122412":2,"122413":2,"122414":2,"122415":2,"122416":2,"122417":2,"122418":2,"122419":2,"122420":2,"122421":2,"122422":2,"122485":3,"122486":3,"122501":1,"122502":1,"122515":2,"122516":2,"122517":2,"122518":2,"122520":2,"122521":2,"123360":1,"123363":1,"123364":1,"123365":1,"123366":1,"123472":1,"123473":1,"123474":1,"123475":1,"123476":1,"123477":1,"123478":1,"123479":1,"123480":1,"123481":1,"123494":1,"123495":1,"123496":1,"123497":1,"123498":1,"123499":1,"123506":2,"123507":2,"123508":2,"123509":2,"123510":2,"123511":2,"123512":2,"123513":2,"123514":2,"123515":2,"123516":2,"123517":2,"123563":2,"123564":2,"123565":2,"123566":2,"123567":2,"123568":2,"123569":2,"123570":2,"123571":2,"123572":2,"123573":2,"123635":3,"123636":3,"123637":3,"123638":3,"123639":3,"123653":1,"123654":1,"123655":1,"123661":2,"123662":2,"123666":2,"123667":2,"123668":2,"123669":2,"123673":2,"124512":1,"124513":1,"124514":1,"124515":1,"124516":1,"124517":1,"124518":1,"124519":1,"124624":1,"124625":1,"124626":1,"124627":1,"124628":1,"124629":1,"124630":1,"124631":1,"124632":1,"124663":2,"124664":2,"124665":2,"124666":2,"124667":2,"124668":2,"124669":2,"124716":2,"124717":2,"124718":2,"124719":2,"124720":2,"124721":2,"124722":2,"124723":2,"124724":2,"124786":3,"124787":3,"124789":3,"124790":3,"124791":3,"124792":3,"124793":3,"124794":3,"124795":3,"124796":3,"124797":3,"124798":3,"124799":3,"124800":3,"124806":1,"124807":1,"124812":2,"124813":2,"124814":2,"124815":2,"124816":2,"124817":2,"124818":2,"124825":2,"124826":2,"125664":1,"125665":1,"125666":1,"125667":1,"125668":1,"125669":1,"125670":1,"125671":1,"125776":1,"125777":1,"125778":1,"125779":1,"125780":1,"125781":1,"125782":1,"125783":1,"125816":2,"125817":2,"125818":2,"125819":2,"125820":2,"125821":2,"125937":3,"125938":3,"125942":3,"125943":3,"125947":3,"125948":3,"125949":3,"125950":3,"125951":3,"125952":3,"125959":1,"125963":2,"125964":2,"125965":2,"125966":2,"125977":2,"125978":2,"125979":2,"126816":1,"126817":1,"126818":1,"126819":1,"126820":1,"126821":1,"126822":1,"126823":1,"126928":1,"126929":1,"126930":1,"126931":1,"126932":1,"126933":1,"126934":1,"127089":3,"127094":3,"127095":3,"127102":3,"127103":3,"127104":3,"127115":2,"127116":2,"127117":2,"127128":2,"127129":2,"127130":2,"127131":2,"127132":2,"127133":2,"127134":2,"127141":1,"127142":1,"127143":1,"127144":1,"127968":1,"127969":1,"127970":1,"127971":1,"127972":1,"127973":1,"127974":1,"128081":1,"128082":1,"128083":1,"128084":1,"128085":1,"128086":1,"128156":1,"128157":1,"128158":1,"128159":1,"128240":3,"128241":3,"128245":3,"128246":3,"128247":3,"128255":3,"128256":3,"128257":3,"128258":3,"128259":3,"128266":2,"128267":2,"128268":2,"128279":2,"128280":2,"128281":2,"128282":2,"128283":2,"128284":2,"128285":2,"128292":1,"128293":1,"128294":1,"128295":1,"128296":1,"128297":1,"129120":1,"129121":1,"129122":1,"129123":1,"129124":1,"129125":1,"129160":2,"129234":1,"129235":1,"129236":1,"129237":1,"129307":1,"129308":1,"129309":1,"129310":1,"129311":1,"129312":1,"129313":1,"129314":1,"129348":2,"129349":2,"129390":3,"129391":3,"129392":3,"129393":3,"129394":3,"129396":3,"129397":3,"129398":3,"129399":3,"129408":3,"129409":3,"129410":3,"129411":3,"129418":2,"129419":2,"129420":2,"129426":1,"129435":2,"129436":2,"129437":2,"129438":2,"129443":1,"129444":1,"129446":1,"129447":1,"129448":1,"129449":1,"129450":1,"129451":1,"130272":1,"130273":1,"130274":1,"130275":1,"130276":1,"130277":1,"130312":2,"130460":1,"130461":1,"130462":1,"130463":1,"130464":1,"130465":1,"130466":1,"130499":2,"130500":2,"130501":2,"130502":2,"130542":3,"130543":3,"130544":3,"130545":3,"130546":3,"130547":3,"130548":3,"130549":3,"130550":3,"130551":3,"130552":3,"130553":3,"130554":3,"130561":3,"130562":3,"130563":3,"130570":2,"130571":2,"130572":2,"130574":1,"130578":1,"130579":1,"130588":2,"130589":2,"130595":1,"130596":1,"130597":1,"130598":1,"130599":1,"130600":1,"130601":1,"130602":1,"130603":1,"130604":1,"131424":1,"131425":1,"131428":1,"131429":1,"131463":2,"131464":2,"131612":1,"131613":1,"131614":1,"131615":1,"131616":1,"131617":1,"131618":1,"131650":2,"131651":2,"131652":2,"131654":2,"131655":2,"131656":2,"131657":2,"131671":2,"131672":2,"131694":3,"131695":3,"131696":3,"131697":3,"131698":3,"131699":3,"131700":3,"131701":3,"131702":3,"131703":3,"131720":2,"131721":2,"131722":2,"131723":2,"131726":1,"131727":1,"131731":1,"131732":1,"131739":2,"131740":2,"131741":2,"131747":1,"131748":1,"131749":1,"131750":1,"131751":1,"131752":1,"131753":1,"131754":1,"131755":1,"131756":1,"131757":1,"132576":1,"132577":1,"132580":1,"132581":1,"132614":2,"132615":2,"132616":2,"132764":1,"132765":1,"132766":1,"132767":1,"132768":1,"132769":1,"132770":1,"132771":1,"132802":2,"132803":2,"132804":2,"132806":2,"132807":2,"132808":2,"132809":2,"132810":2,"132822":2,"132823":2,"132824":2,"132825":2,"132850":3,"132851":3,"132852":3,"132853":3,"132854":3,"132855":3,"132872":2,"132873":2,"132874":2,"132878":1,"132879":1,"132883":1,"132884":1,"132885":1,"132891":2,"132892":2,"132893":2,"132898":1,"132899":1,"132900":1,"132901":1,"132902":1,"132903":1,"132904":1,"132905":1,"132906":1,"132907":1,"132908":1,"132909":1,"133728":1,"133729":1,"133730":1,"133731":1,"133732":1,"133766":2,"133767":2,"133768":2,"133916":1,"133917":1,"133918":1,"133919":1,"133920":1,"133921":1,"133922":1,"133923":1,"133924":1,"133954":2,"133955":2,"133956":2,"133957":2,"133958":2,"133959":2,"133960":2,"133961":2,"133962":2,"133963":2,"133964":2,"133965":2,"133974":2,"133975":2,"133976":2,"133977":2,"133978":2,"134002":3,"134003":3,"134004":3,"134005":3,"134006":3,"134007":3,"134030":1,"134031":1,"134032":1,"134036":1,"134037":1,"134050":1,"134051":1,"134052":1,"134053":1,"134054":1,"134055":1,"134056":1,"134057":1,"134058":1,"134059":1,"134060":1,"134880":1,"134881":1,"134882":1,"134883":1,"134918":2,"134919":2,"134920":2,"134921":2,"135068":1,"135069":1,"135070":1,"135071":1,"135072":1,"135073":1,"135074":1,"135075":1,"135076":1,"135077":1,"135078":1,"135079":1,"135106":2,"135107":2,"135108":2,"135109":2,"135110":2,"135111":2,"135112":2,"135113":2,"135114":2,"135115":2,"135116":2,"135117":2,"135118":2,"135125":2,"135126":2,"135127":2,"135128":2,"135129":2,"135130":2,"135154":3,"135155":3,"135156":3,"135157":3,"135158":3,"135159":3,"135168":1,"135169":1,"135170":1,"135171":1,"135183":1,"135184":1,"135185":1,"135187":1,"135188":1,"135189":1,"135203":1,"135204":1,"135205":1,"135206":1,"135207":1,"135208":1,"135209":1,"135210":1,"135211":1,"136032":1,"136033":1,"136034":1,"136037":1,"136038":1,"136039":1,"136071":2,"136072":2,"136073":2,"136074":2,"136219":1,"136220":1,"136221":1,"136228":1,"136229":1,"136230":1,"136231":1,"136259":2,"136260":2,"136261":2,"136262":2,"136263":2,"136264":2,"136265":2,"136266":2,"136267":2,"136268":2,"136269":2,"136270":2,"136271":2,"136272":2,"136273":2,"136274":2,"136275":2,"136276":2,"136277":2,"136278":2,"136279":2,"136281":2,"136282":2,"136283":2,"136306":3,"136307":3,"136308":3,"136309":3,"136310":3,"136317":1,"136318":1,"136319":1,"136320":1,"136321":1,"136322":1,"136323":1,"136324":1,"136329":1,"136330":1,"136331":1,"136336":1,"136337":1,"136338":1,"136339":1,"136340":1,"136341":1,"136356":1,"136357":1,"136358":1,"136359":1,"136360":1,"136361":1,"136362":1,"136363":1,"137184":1,"137185":1,"137186":1,"137188":1,"137189":1,"137190":1,"137191":1,"137223":2,"137224":2,"137225":2,"137226":2,"137370":1,"137371":1,"137372":1,"137373":1,"137379":1,"137380":1,"137381":1,"137382":1,"137412":2,"137413":2,"137414":2,"137415":2,"137416":2,"137417":2,"137418":2,"137419":2,"137420":2,"137421":2,"137422":2,"137423":2,"137424":2,"137425":2,"137426":2,"137427":2,"137428":2,"137429":2,"137430":2,"137431":2,"137433":2,"137434":2,"137435":2,"137436":2,"137437":2,"137438":2,"137439":2,"137458":3,"137459":3,"137460":3,"137461":3,"137469":1,"137470":1,"137471":1,"137473":1,"137474":1,"137475":1,"137476":1,"137477":1,"137478":1,"137479":1,"137480":1,"137481":1,"137482":1,"137483":1,"137484":1,"137487":1,"137488":1,"137489":1,"137490":1,"137491":1,"137493":1,"137510":1,"137511":1,"137512":1,"137513":1,"137514":1,"137515":1,"138336":1,"138337":1,"138338":1,"138340":1,"138341":1,"138342":1,"138343":1,"138375":2,"138376":2,"138377":2,"138378":2,"138522":1,"138523":1,"138524":1,"138531":1,"138532":1,"138533":1,"138569":2,"138570":2,"138571":2,"138572":2,"138573":2,"138574":2,"138575":2,"138576":2,"138577":2,"138578":2,"138579":2,"138580":2,"138581":2,"138582":2,"138583":2,"138584":2,"138585":2,"138586":2,"138587":2,"138588":2,"138589":2,"138590":2,"138591":2,"138592":2,"138593":2,"138594":2,"138595":2,"138596":2,"138597":2,"138598":2,"138599":2,"138610":3,"138611":3,"138612":3,"138615":1,"138616":1,"138621":1,"138622":1,"138627":1,"138628":1,"138629":1,"138630":1,"138631":1,"138633":1,"138634":1,"138635":1,"138636":1,"138637":1,"138638":1,"138639":1,"138640":1,"138641":1,"138642":1,"138663":1,"138664":1,"138665":1,"138666":1,"138667":1,"139488":1,"139489":1,"139490":1,"139492":1,"139493":1,"139527":2,"139528":2,"139529":2,"139655":1,"139656":1,"139657":1,"139676":1,"139683":1,"139684":1,"139685":1,"139722":2,"139723":2,"139724":2,"139725":2,"139726":2,"139727":2,"139728":2,"139729":2,"139730":2,"139731":2,"139732":2,"139733":2,"139734":2,"139735":2,"139736":2,"139737":2,"139738":2,"139739":2,"139740":2,"139741":2,"139742":2,"139743":2,"139744":2,"139745":2,"139746":2,"139747":2,"139748":2,"139749":2,"139750":2,"139751":2,"139752":2,"139762":3,"139763":3,"139764":3,"139767":1,"139768":1,"139773":1,"139774":1,"139775":1,"139780":1,"139781":1,"139782":1,"139786":1,"139787":1,"139788":1,"139789":1,"139790":1,"139791":1,"139792":1,"139793":1,"139794":1,"139815":1,"139816":1,"139817":1,"139818":1,"139819":1,"139820":1,"140642":1,"140644":1,"140645":1,"140679":2,"140680":2,"140806":1,"140807":1,"140808":1,"140809":1,"140810":1,"140826":1,"140827":1,"140828":1,"140835":1,"140836":1,"140837":1,"140874":2,"140875":2,"140876":2,"140877":2,"140878":2,"140879":2,"140880":2,"140881":2,"140882":2,"140883":2,"140884":2,"140885":2,"140886":2,"140887":2,"140888":2,"140889":2,"140890":2,"140891":2,"140892":2,"140893":2,"140894":2,"140895":2,"140896":2,"140897":2,"140898":2,"140899":2,"140900":2,"140901":2,"140902":2,"140903":2,"140904":2,"140905":2,"140920":1,"140921":1,"140924":1,"140925":1,"140926":1,"140927":1,"140945":1,"140946":1,"140947":1,"140967":1,"140968":1,"140969":1,"140970":1,"140972":1,"140973":1,"141794":1,"141796":1,"141797":1,"141798":1,"141799":1,"141831":2,"141832":2,"141954":1,"141955":1,"141956":1,"141957":1,"141958":1,"141959":1,"141960":1,"141961":1,"141962":1,"141963":1,"141967":1,"141977":1,"141978":1,"141979":1,"141980":1,"141981":1,"141986":1,"141987":1,"141988":1,"141989":1,"142026":2,"142027":2,"142028":2,"142029":2,"142030":2,"142031":2,"142032":2,"142033":2,"142034":2,"142035":2,"142036":2,"142037":2,"142038":2,"142039":2,"142040":2,"142041":2,"142042":2,"142043":2,"142044":2,"142045":2,"142046":2,"142047":2,"142048":2,"142049":2,"142050":2,"142051":2,"142052":2,"142053":2,"142054":2,"142055":2,"142056":2,"142057":2,"142058":2,"142073":1,"142074":1,"142075":1,"142076":1,"142077":1,"142078":1,"142079":1,"142080":1,"142098":1,"142099":1,"142100":1,"142120":1,"142121":1,"142122":1,"142123":1,"142124":1,"142125":1,"142944":1,"142945":1,"142946":1,"142948":1,"142949":1,"142950":1,"142951":1,"142983":2,"142984":2,"143105":1,"143106":1,"143107":1,"143108":1,"143109":1,"143110":1,"143111":1,"143112":1,"143113":1,"143114":1,"143115":1,"143116":1,"143117":1,"143118":1,"143119":1,"143120":1,"143128":1,"143129":1,"143133":1,"143134":1,"143135":1,"143136":1,"143137":1,"143138":1,"143139":1,"143140":1,"143178":2,"143179":2,"143180":2,"143181":2,"143182":2,"143183":2,"143184":2,"143185":2,"143186":2,"143187":2,"143194":2,"143195":2,"143196":2,"143197":2,"143198":2,"143199":2,"143200":2,"143201":2,"143202":2,"143203":2,"143205":2,"143206":2,"143207":2,"143208":2,"143209":2,"143210":2,"143227":1,"143228":1,"143229":1,"143230":1,"143231":1,"143232":1,"143233":1,"143245":2,"143246":2,"143247":2,"143250":1,"143251":1,"143252":1,"143253":1,"143273":1,"143274":1,"143275":1,"143276":1,"144096":1,"144097":1,"144098":1,"144099":1,"144100":1,"144101":1,"144102":1,"144134":2,"144135":2,"144136":2,"144256":1,"144257":1,"144258":1,"144259":1,"144260":1,"144261":1,"144262":1,"144263":1,"144264":1,"144267":1,"144268":1,"144269":1,"144270":1,"144271":1,"144272":1,"144273":1,"144280":1,"144281":1,"144285":1,"144286":1,"144287":1,"144288":1,"144330":2,"144331":2,"144332":2,"144333":2,"144334":2,"144335":2,"144336":2,"144337":2,"144338":2,"144339":2,"144347":2,"144348":2,"144349":2,"144350":2,"144351":2,"144352":2,"144353":2,"144354":2,"144355":2,"144357":2,"144358":2,"144359":2,"144360":2,"144361":2,"144362":2,"144380":1,"144381":1,"144382":1,"144383":1,"144384":1,"144391":2,"144398":2,"144399":2,"144400":2,"144402":1,"144403":1,"144404":1,"144405":1,"144406":1,"144407":1,"145248":1,"145249":1,"145250":1,"145251":1,"145252":1,"145253":1,"145254":1,"145285":2,"145286":2,"145287":2,"145288":2,"145408":1,"145409":1,"145410":1,"145411":1,"145412":1,"145413":1,"145414":1,"145415":1,"145416":1,"145417":1,"145418":1,"145419":1,"145420":1,"145421":1,"145422":1,"145423":1,"145424":1,"145433":1,"145434":1,"145435":1,"145436":1,"145437":1,"145438":1,"145439":1,"145482":2,"145483":2,"145484":2,"145485":2,"145486":2,"145487":2,"145488":2,"145489":2,"145490":2,"145491":2,"145499":2,"145500":2,"145501":2,"145502":2,"145503":2,"145504":2,"145505":2,"145506":2,"145507":2,"145508":2,"145509":2,"145510":2,"145511":2,"145512":2,"145513":2,"145514":2,"145515":2,"145533":1,"145534":1,"145535":1,"145542":2,"145543":2,"145544":2,"145551":2,"145556":1,"145557":1,"145558":1,"145559":1,"145560":1,"146400":1,"146401":1,"146402":1,"146403":1,"146404":1,"146437":2,"146438":2,"146439":2,"146440":2,"146441":2,"146560":1,"146561":1,"146562":1,"146563":1,"146564":1,"146565":1,"146566":1,"146567":1,"146568":1,"146569":1,"146570":1,"146571":1,"146572":1,"146573":1,"146574":1,"146575":1,"146576":1,"146586":1,"146587":1,"146588":1,"146589":1,"146590":1,"146591":1,"146633":2,"146634":2,"146635":2,"146636":2,"146637":2,"146638":2,"146639":2,"146640":2,"146641":2,"146642":2,"146651":2,"146653":2,"146654":2,"146655":2,"146656":2,"146657":2,"146658":2,"146659":2,"146660":2,"146661":2,"146662":2,"146663":2,"146664":2,"146665":2,"146666":2,"146667":2,"146668":2,"146684":1,"146685":1,"146686":1,"146687":1,"146695":2,"146696":2,"146697":2,"146703":2,"146709":1,"146710":1,"146711":1,"146712":1,"146713":1,"147552":1,"147553":1,"147554":1,"147555":1,"147556":1,"147557":1,"147589":2,"147590":2,"147591":2,"147592":2,"147593":2,"147594":2,"147711":1,"147712":1,"147713":1,"147714":1,"147715":1,"147716":1,"147717":1,"147718":1,"147719":1,"147720":1,"147721":1,"147722":1,"147723":1,"147724":1,"147725":1,"147726":1,"147727":1,"147728":1,"147738":1,"147739":1,"147740":1,"147741":1,"147742":1,"147782":2,"147783":2,"147784":2,"147785":2,"147786":2,"147787":2,"147788":2,"147789":2,"147790":2,"147791":2,"147793":2,"147794":2,"147802":2,"147803":2,"147805":2,"147806":2,"147807":2,"147808":2,"147809":2,"147810":2,"147811":2,"147812":2,"147813":2,"147814":2,"147815":2,"147816":2,"147817":2,"147818":2,"147819":2,"147820":2,"147832":1,"147833":1,"147834":1,"147835":1,"147836":1,"147837":1,"147838":1,"147839":1,"147841":2,"147848":2,"147849":2,"147850":2,"147851":2,"147855":2,"147862":1,"147863":1,"147865":1,"148704":1,"148705":1,"148706":1,"148707":1,"148708":1,"148709":1,"148710":1,"148740":2,"148741":2,"148742":2,"148743":2,"148744":2,"148745":2,"148862":1,"148863":1,"148864":1,"148865":1,"148868":1,"148869":1,"148870":1,"148871":1,"148872":1,"148873":1,"148874":1,"148875":1,"148876":1,"148877":1,"148878":1,"148879":1,"148880":1,"148890":1,"148891":1,"148892":1,"148933":2,"148934":2,"148935":2,"148936":2,"148937":2,"148938":2,"148939":2,"148940":2,"148941":2,"148942":2,"148943":2,"148945":2,"148946":2,"148955":2,"148956":2,"148957":2,"148958":2,"148959":2,"148960":2,"148961":2,"148962":2,"148963":2,"148964":2,"148965":2,"148966":2,"148967":2,"148968":2,"148969":2,"148970":2,"148971":2,"148983":1,"148984":1,"148985":1,"148986":1,"148987":1,"148988":1,"148989":1,"148990":1,"148991":1,"148993":2,"148994":2,"148995":2,"148996":2,"148997":2,"148999":2,"149000":2,"149001":2,"149002":2,"149003":2,"149004":2,"149005":2,"149006":2,"149007":2,"149013":1,"149014":1,"149856":1,"149857":1,"149858":1,"149859":1,"149860":1,"149863":1,"149890":2,"149891":2,"149892":2,"149893":2,"149894":2,"149895":2,"150015":1,"150016":1,"150017":1,"150018":1,"150019":1,"150020":1,"150021":1,"150022":1,"150023":1,"150024":1,"150025":1,"150026":1,"150027":1,"150028":1,"150029":1,"150030":1,"150031":1,"150032":1,"150043":1,"150058":1,"150059":1,"150060":1,"150061":1,"150062":1,"150084":2,"150085":2,"150087":2,"150088":2,"150089":2,"150090":2,"150091":2,"150092":2,"150093":2,"150094":2,"150095":2,"150096":2,"150097":2,"150098":2,"150110":2,"150111":2,"150112":2,"150113":2,"150114":2,"150115":2,"150116":2,"150117":2,"150118":2,"150119":2,"150120":2,"150121":2,"150122":2,"150135":1,"150136":1,"150137":1,"150138":1,"150139":1,"150141":1,"150142":1,"150143":1,"150146":2,"150147":2,"150148":2,"150149":2,"150150":2,"150151":2,"150154":2,"150155":2,"150156":2,"150157":2,"150158":2,"150159":2,"150164":1,"150165":1,"150166":1,"151008":1,"151009":1,"151010":1,"151011":1,"151012":1,"151015":1,"151041":2,"151042":2,"151043":2,"151044":2,"151045":2,"151046":2,"151170":1,"151171":1,"151172":1,"151173":1,"151174":1,"151175":1,"151176":1,"151177":1,"151178":1,"151179":1,"151180":1,"151181":1,"151182":1,"151183":1,"151184":1,"151208":1,"151209":1,"151210":1,"151211":1,"151212":1,"151213":1,"151214":1,"151215":1,"151236":2,"151237":2,"151239":2,"151240":2,"151241":2,"151242":2,"151243":2,"151244":2,"151245":2,"151246":2,"151247":2,"151248":2,"151249":2,"151250":2,"151262":2,"151263":2,"151264":2,"151265":2,"151266":2,"151267":2,"151268":2,"151269":2,"151270":2,"151271":2,"151272":2,"151273":2,"151274":2,"151288":1,"151289":1,"151290":1,"151294":1,"151295":1,"151296":1,"151307":2,"151308":2,"151309":2,"151310":2,"151311":2,"151317":1,"151318":1,"151319":1,"152160":1,"152161":1,"152162":1,"152163":1,"152164":1,"152165":1,"152166":1,"152167":1,"152193":2,"152194":2,"152195":2,"152196":2,"152197":2,"152323":1,"152324":1,"152325":1,"152326":1,"152327":1,"152328":1,"152329":1,"152330":1,"152331":1,"152332":1,"152333":1,"152334":1,"152335":1,"152359":1,"152360":1,"152361":1,"152362":1,"152363":1,"152364":1,"152365":1,"152366":1,"152367":1,"152368":1,"152389":2,"152390":2,"152391":2,"152392":2,"152393":2,"152394":2,"152395":2,"152396":2,"152397":2,"152398":2,"152399":2,"152400":2,"152401":2,"152402":2,"152414":2,"152415":2,"152416":2,"152417":2,"152418":2,"152419":2,"152420":2,"152421":2,"152422":2,"152423":2,"152424":2,"152425":2,"152426":2,"152441":1,"152447":1,"152448":1,"152449":1,"152458":2,"152459":2,"152460":2,"152461":2,"152470":1,"152471":1,"152472":1,"153312":1,"153313":1,"153314":1,"153315":1,"153316":1,"153317":1,"153318":1,"153319":1,"153345":2,"153346":2,"153347":2,"153348":2,"153349":2,"153478":1,"153479":1,"153480":1,"153483":1,"153484":1,"153485":1,"153486":1,"153508":1,"153509":1,"153510":1,"153511":1,"153512":1,"153513":1,"153514":1,"153515":1,"153516":1,"153517":1,"153518":1,"153519":1,"153520":1,"153521":1,"153542":2,"153543":2,"153544":2,"153545":2,"153546":2,"153547":2,"153548":2,"153549":2,"153550":2,"153551":2,"153552":2,"153553":2,"153554":2,"153566":2,"153567":2,"153568":2,"153569":2,"153570":2,"153571":2,"153572":2,"153573":2,"153574":2,"153575":2,"153576":2,"153577":2,"153578":2,"153598":1,"153599":1,"153600":1,"153605":1,"153609":2,"153610":2,"153611":2,"153612":2,"153619":2,"153624":1,"153625":1,"153626":1,"154466":1,"154467":1,"154468":1,"154469":1,"154470":1,"154497":2,"154498":2,"154499":2,"154500":2,"154501":2,"154633":1,"154634":1,"154635":1,"154636":1,"154637":1,"154638":1,"154659":1,"154660":1,"154661":1,"154662":1,"154663":1,"154664":1,"154665":1,"154666":1,"154667":1,"154668":1,"154669":1,"154670":1,"154671":1,"154672":1,"154673":1,"154694":2,"154695":2,"154696":2,"154697":2,"154698":2,"154699":2,"154700":2,"154701":2,"154702":2,"154703":2,"154704":2,"154705":2,"154706":2,"154707":2,"154716":2,"154717":2,"154718":2,"154719":2,"154720":2,"154721":2,"154722":2,"154723":2,"154724":2,"154725":2,"154726":2,"154727":2,"154728":2,"154729":2,"154730":2,"154731":2,"154750":1,"154751":1,"154756":1,"154757":1,"154760":2,"154761":2,"154762":2,"154763":2,"154764":2,"154768":2,"154770":2,"154771":2,"154772":2,"154777":1,"154778":1,"154779":1,"155618":1,"155619":1,"155649":2,"155650":2,"155651":2,"155652":2,"155786":1,"155787":1,"155788":1,"155789":1,"155810":1,"155811":1,"155812":1,"155813":1,"155814":1,"155815":1,"155816":1,"155817":1,"155818":1,"155819":1,"155820":1,"155821":1,"155822":1,"155823":1,"155824":1,"155846":2,"155847":2,"155848":2,"155849":2,"155850":2,"155851":2,"155852":2,"155853":2,"155854":2,"155855":2,"155856":2,"155857":2,"155858":2,"155859":2,"155860":2,"155861":2,"155866":2,"155867":2,"155868":2,"155869":2,"155870":2,"155871":2,"155872":2,"155873":2,"155874":2,"155875":2,"155876":2,"155877":2,"155878":2,"155879":2,"155880":2,"155881":2,"155882":2,"155883":2,"155884":2,"155903":1,"155907":1,"155908":1,"155909":1,"155910":1,"155912":2,"155915":2,"155916":2,"155917":2,"155919":2,"155920":2,"155921":2,"155922":2,"155923":2,"155924":2,"155928":1,"155929":1,"155930":1,"155931":1,"156768":1,"156769":1,"156770":1,"156800":2,"156801":2,"156802":2,"156962":1,"156963":1,"156964":1,"156965":1,"156966":1,"156967":1,"156968":1,"156969":1,"156970":1,"156971":1,"156972":1,"156973":1,"156974":1,"156975":1,"156997":2,"156998":2,"156999":2,"157000":2,"157001":2,"157002":2,"157003":2,"157004":2,"157005":2,"157006":2,"157007":2,"157008":2,"157009":2,"157010":2,"157011":2,"157012":2,"157013":2,"157014":2,"157015":2,"157016":2,"157017":2,"157018":2,"157019":2,"157020":2,"157021":2,"157022":2,"157023":2,"157024":2,"157025":2,"157026":2,"157027":2,"157028":2,"157029":2,"157030":2,"157032":2,"157033":2,"157034":2,"157035":2,"157036":2,"157055":1,"157059":1,"157060":1,"157061":1,"157064":2,"157068":2,"157069":2,"157070":2,"157071":2,"157072":2,"157073":2,"157074":2,"157075":2,"157076":2,"157079":1,"157080":1,"157081":1,"157082":1,"157083":1,"157920":1,"157921":1,"158115":1,"158116":1,"158117":1,"158118":1,"158119":1,"158120":1,"158121":1,"158122":1,"158123":1,"158124":1,"158148":2,"158149":2,"158150":2,"158151":2,"158152":2,"158153":2,"158154":2,"158155":2,"158156":2,"158157":2,"158158":2,"158159":2,"158160":2,"158161":2,"158162":2,"158163":2,"158164":2,"158165":2,"158166":2,"158167":2,"158168":2,"158169":2,"158170":2,"158171":2,"158172":2,"158173":2,"158174":2,"158175":2,"158176":2,"158177":2,"158178":2,"158179":2,"158180":2,"158181":2,"158182":2,"158184":2,"158185":2,"158186":2,"158187":2,"158188":2,"158207":1,"158208":1,"158210":1,"158211":1,"158212":1,"158216":2,"158220":2,"158221":2,"158222":2,"158223":2,"158224":2,"158225":2,"158226":2,"158227":2,"158230":1,"158231":1,"158232":1,"158233":1,"158234":1,"159072":1,"159268":1,"159269":1,"159270":1,"159271":1,"159272":1,"159273":1,"159274":1,"159275":1,"159300":2,"159301":2,"159302":2,"159303":2,"159304":2,"159305":2,"159306":2,"159307":2,"159308":2,"159309":2,"159310":2,"159311":2,"159312":2,"159313":2,"159314":2,"159315":2,"159316":2,"159317":2,"159318":2,"159319":2,"159320":2,"159321":2,"159322":2,"159323":2,"159324":2,"159325":2,"159326":2,"159327":2,"159328":2,"159329":2,"159330":2,"159331":2,"159332":2,"159333":2,"159334":2,"159335":2,"159336":2,"159337":2,"159338":2,"159339":2,"159340":2,"159359":1,"159360":1,"159361":1,"159362":1,"159363":1,"159364":1,"159367":2,"159368":2,"159372":2,"159373":2,"159374":2,"159381":1,"159382":1,"159383":1,"159384":1,"160224":1,"160420":1,"160421":1,"160422":1,"160423":1,"160424":1,"160425":1,"160426":1,"160427":1,"160453":2,"160454":2,"160455":2,"160456":2,"160457":2,"160458":2,"160459":2,"160460":2,"160461":2,"160462":2,"160463":2,"160464":2,"160465":2,"160466":2,"160467":2,"160468":2,"160469":2,"160470":2,"160471":2,"160472":2,"160473":2,"160474":2,"160475":2,"160476":2,"160477":2,"160478":2,"160479":2,"160480":2,"160481":2,"160482":2,"160483":2,"160484":2,"160485":2,"160486":2,"160487":2,"160488":2,"160489":2,"160490":2,"160491":2,"160511":1,"160512":1,"160513":1,"160514":1,"160515":1,"160516":1,"160518":2,"160519":2,"160520":2,"160521":2,"160525":2,"160532":1,"160533":1,"160534":1,"160535":1,"161376":1,"161401":2,"161402":2,"161404":2,"161405":2,"161406":2,"161407":2,"161572":1,"161573":1,"161574":1,"161575":1,"161576":1,"161577":1,"161578":1,"161579":1,"161606":2,"161607":2,"161608":2,"161609":2,"161610":2,"161611":2,"161612":2,"161613":2,"161614":2,"161615":2,"161616":2,"161617":2,"161618":2,"161619":2,"161620":2,"161621":2,"161622":2,"161623":2,"161624":2,"161625":2,"161626":2,"161627":2,"161628":2,"161629":2,"161630":2,"161631":2,"161633":2,"161634":2,"161635":2,"161636":2,"161637":2,"161638":2,"161639":2,"161640":2,"161641":2,"161642":2,"161663":1,"161664":1,"161665":1,"161666":1,"161667":1,"161668":1,"161670":2,"161671":2,"161672":2,"161673":2,"161679":1,"161680":1,"161684":1,"161685":1,"161686":1,"162528":1,"162552":2,"162555":2,"162556":2,"162557":2,"162558":2,"162559":2,"162725":1,"162726":1,"162727":1,"162728":1,"162729":1,"162730":1,"162758":2,"162759":2,"162760":2,"162761":2,"162763":2,"162764":2,"162765":2,"162766":2,"162767":2,"162768":2,"162769":2,"162770":2,"162771":2,"162772":2,"162773":2,"162774":2,"162775":2,"162776":2,"162777":2,"162778":2,"162779":2,"162780":2,"162781":2,"162782":2,"162786":2,"162787":2,"162788":2,"162789":2,"162790":2,"162791":2,"162792":2,"162793":2,"162794":2,"162814":1,"162815":1,"162816":1,"162817":1,"162818":1,"162819":1,"162820":1,"162823":2,"162824":2,"162825":2,"162830":1,"162831":1,"162835":1,"162836":1,"162837":1,"162838":1,"163680":1,"163681":1,"163704":2,"163707":2,"163708":2,"163878":1,"163879":1,"163880":1,"163881":1,"163910":2,"163911":2,"163912":2,"163913":2,"163915":2,"163916":2,"163917":2,"163918":2,"163919":2,"163920":2,"163921":2,"163922":2,"163923":2,"163924":2,"163925":2,"163926":2,"163927":2,"163929":2,"163930":2,"163931":2,"163932":2,"163933":2,"163939":2,"163940":2,"163941":2,"163942":2,"163943":2,"163944":2,"163945":2,"163946":2,"163965":1,"163966":1,"163967":1,"163968":1,"163969":1,"163970":1,"163971":1,"163976":2,"163977":2,"163982":1,"163983":1,"163987":1,"163988":1,"163989":1,"163990":1,"164832":1,"164833":1,"164834":1,"164856":2,"164857":2,"164858":2,"164859":2,"164860":2,"165063":2,"165064":2,"165065":2,"165066":2,"165067":2,"165068":2,"165069":2,"165070":2,"165071":2,"165072":2,"165073":2,"165074":2,"165075":2,"165076":2,"165077":2,"165078":2,"165079":2,"165081":2,"165082":2,"165083":2,"165084":2,"165085":2,"165091":2,"165092":2,"165093":2,"165094":2,"165095":2,"165096":2,"165097":2,"165098":2,"165114":1,"165115":1,"165116":1,"165118":1,"165119":1,"165120":1,"165121":1,"165122":1,"165134":1,"165135":1,"165140":1,"165141":1,"165984":1,"165985":1,"165986":1,"165987":1,"166008":2,"166009":2,"166010":2,"166011":2,"166012":2,"166153":2,"166154":2,"166155":2,"166216":2,"166217":2,"166218":2,"166219":2,"166220":2,"166221":2,"166222":2,"166223":2,"166224":2,"166225":2,"166226":2,"166227":2,"166228":2,"166229":2,"166230":2,"166231":2,"166232":2,"166233":2,"166234":2,"166235":2,"166236":2,"166237":2,"166243":2,"166244":2,"166245":2,"166246":2,"166247":2,"166248":2,"166249":2,"166250":2,"166251":2,"166265":1,"166266":1,"166267":1,"166271":1,"166272":1,"166273":1,"166274":1,"166281":1,"166282":1,"166286":1,"166287":1,"166288":1,"166291":1,"166292":1,"166293":1,"167136":1,"167139":1,"167140":1,"167159":2,"167160":2,"167161":2,"167162":2,"167163":2,"167164":2,"167302":2,"167303":2,"167304":2,"167305":2,"167306":2,"167307":2,"167308":2,"167373":2,"167374":2,"167375":2,"167376":2,"167377":2,"167384":2,"167385":2,"167386":2,"167387":2,"167388":2,"167389":2,"167396":2,"167397":2,"167398":2,"167399":2,"167400":2,"167401":2,"167402":2,"167403":2,"167404":2,"167417":1,"167418":1,"167419":1,"167423":1,"167424":1,"167425":1,"167432":1,"167433":1,"167434":1,"167438":1,"167439":1,"167440":1,"167441":1,"167442":1,"167443":1,"167444":1,"167445":1,"168288":1,"168291":1,"168292":1,"168308":2,"168309":2,"168310":2,"168311":2,"168312":2,"168313":2,"168314":2,"168315":2,"168316":2,"168317":2,"168453":2,"168454":2,"168455":2,"168456":2,"168457":2,"168458":2,"168459":2,"168460":2,"168461":2,"168462":2,"168526":2,"168527":2,"168537":2,"168538":2,"168549":2,"168550":2,"168551":2,"168552":2,"168553":2,"168554":2,"168555":2,"168556":2,"168570":1,"168575":1,"168576":1,"168577":1,"168578":1,"168580":1,"168581":1,"168582":1,"168583":1,"168584":1,"168585":1,"168586":1,"168590":1,"168591":1,"168592":1,"168596":1,"169440":1,"169441":1,"169442":1,"169443":1,"169444":1,"169459":2,"169460":2,"169461":2,"169462":2,"169469":2,"169470":2,"169471":2,"169472":2,"169605":2,"169606":2,"169607":2,"169608":2,"169609":2,"169610":2,"169611":2,"169612":2,"169613":2,"169614":2,"169615":2,"169702":2,"169703":2,"169704":2,"169705":2,"169706":2,"169707":2,"169726":1,"169727":1,"169728":1,"169729":1,"169730":1,"169731":1,"169732":1,"169733":1,"169734":1,"169735":1,"169736":1,"169737":1,"169738":1,"169742":1,"169743":1,"170592":1,"170593":1,"170594":1,"170595":1,"170596":1,"170610":2,"170611":2,"170612":2,"170613":2,"170622":2,"170623":2,"170624":2,"170625":2,"170626":2,"170756":2,"170757":2,"170758":2,"170759":2,"170760":2,"170761":2,"170762":2,"170763":2,"170764":2,"170767":2,"170768":2,"170855":2,"170856":2,"170857":2,"170858":2,"170877":1,"170878":1,"170879":1,"170880":1,"170881":1,"170882":1,"170883":1,"170884":1,"170885":1,"170886":1,"170887":1,"170888":1,"170889":1,"170894":1,"170895":1,"170896":1,"171744":1,"171745":1,"171746":1,"171747":1,"171748":1,"171749":1,"171759":2,"171760":2,"171761":2,"171762":2,"171763":2,"171775":2,"171776":2,"171777":2,"171778":2,"171779":2,"171906":2,"171907":2,"171908":2,"171909":2,"171910":2,"171911":2,"171912":2,"171913":2,"171914":2,"171915":2,"171916":2,"171919":2,"171920":2,"172028":1,"172029":1,"172030":1,"172031":1,"172033":1,"172034":1,"172035":1,"172036":1,"172037":1,"172038":1,"172039":1,"172040":1,"172041":1,"172042":1,"172046":1,"172047":1,"172048":1,"172049":1,"172088":1,"172896":1,"172897":1,"172898":1,"172899":1,"172900":1,"172901":1,"172910":2,"172911":2,"172912":2,"172913":2,"172914":2,"172915":2,"172928":2,"172929":2,"172930":2,"172931":2,"173052":2,"173057":2,"173058":2,"173059":2,"173060":2,"173061":2,"173062":2,"173063":2,"173064":2,"173065":2,"173066":2,"173067":2,"173068":2,"173069":2,"173070":2,"173071":2,"173180":1,"173181":1,"173182":1,"173187":1,"173188":1,"173189":1,"173190":1,"173191":1,"173192":1,"173193":1,"173194":1,"173195":1,"173197":1,"173198":1,"173199":1,"173200":1,"173201":1,"173239":1,"173240":1,"173241":1,"174048":1,"174049":1,"174050":1,"174051":1,"174052":1,"174053":1,"174062":2,"174063":2,"174064":2,"174065":2,"174066":2,"174067":2,"174068":2,"174069":2,"174070":2,"174081":2,"174082":2,"174083":2,"174203":2,"174204":2,"174205":2,"174206":2,"174207":2,"174208":2,"174210":2,"174211":2,"174212":2,"174213":2,"174214":2,"174215":2,"174216":2,"174217":2,"174218":2,"174219":2,"174220":2,"174221":2,"174222":2,"174332":1,"174333":1,"174334":1,"174335":1,"174340":1,"174341":1,"174342":1,"174343":1,"174344":1,"174345":1,"174346":1,"174347":1,"174348":1,"174349":1,"174350":1,"174351":1,"174352":1,"174353":1,"174390":1,"174391":1,"174392":1,"174393":1,"174394":1,"175204":1,"175205":1,"175206":1,"175214":2,"175215":2,"175216":2,"175217":2,"175218":2,"175219":2,"175220":2,"175221":2,"175222":2,"175223":2,"175233":2,"175234":2,"175235":2,"175354":2,"175355":2,"175356":2,"175357":2,"175358":2,"175359":2,"175360":2,"175362":2,"175363":2,"175364":2,"175365":2,"175366":2,"175367":2,"175368":2,"175369":2,"175484":1,"175485":1,"175486":1,"175487":1,"175488":1,"175495":1,"175496":1,"175497":1,"175498":1,"175499":1,"175504":1,"175505":1,"175534":1,"175535":1,"175542":1,"175543":1,"175544":1,"175545":1,"175546":1,"176357":1,"176358":1,"176359":1,"176374":2,"176375":2,"176376":2,"176377":2,"176387":2,"176506":2,"176507":2,"176508":2,"176509":2,"176510":2,"176511":2,"176512":2,"176513":2,"176514":2,"176515":2,"176516":2,"176517":2,"176518":2,"176519":2,"176520":2,"176636":1,"176637":1,"176638":1,"176639":1,"176640":1,"176648":1,"176649":1,"176650":1,"176657":1,"176683":1,"176684":1,"176685":1,"176686":1,"176687":1,"176688":1,"176693":1,"176694":1,"176695":1,"176696":1,"176697":1,"176698":1,"177510":1,"177511":1,"177512":1,"177526":2,"177527":2,"177528":2,"177529":2,"177539":2,"177540":2,"177659":2,"177660":2,"177661":2,"177662":2,"177663":2,"177664":2,"177665":2,"177666":2,"177667":2,"177668":2,"177669":2,"177670":2,"177671":2,"177672":2,"177739":1,"177750":1,"177751":1,"177760":1,"177788":1,"177789":1,"177790":1,"177791":1,"177808":1,"177809":1,"177810":1,"177835":1,"177836":1,"177837":1,"177838":1,"177839":1,"177840":1,"177841":1,"177842":1,"177843":1,"177844":1,"177845":1,"177846":1,"177847":1,"177848":1,"177849":1,"177850":1,"177851":1,"178662":1,"178663":1,"178664":1,"178665":1,"178689":2,"178690":2,"178691":2,"178692":2,"178693":2,"178812":2,"178813":2,"178814":2,"178815":2,"178816":2,"178817":2,"178818":2,"178819":2,"178820":2,"178821":2,"178822":2,"178823":2,"178824":2,"178890":1,"178891":1,"178892":1,"178901":1,"178902":1,"178903":1,"178904":1,"178911":1,"178912":1,"178913":1,"178914":1,"178915":1,"178941":1,"178942":1,"178943":1,"178946":2,"178947":2,"178959":1,"178960":1,"178961":1,"178962":1,"178963":1,"178987":1,"178988":1,"178989":1,"178990":1,"178991":1,"178993":1,"178994":1,"178995":1,"178996":1,"178997":1,"178998":1,"178999":1,"179000":1,"179001":1,"179002":1,"179003":1,"179004":1,"179005":1,"179814":1,"179815":1,"179816":1,"179817":1,"179839":2,"179840":2,"179841":2,"179842":2,"179843":2,"179844":2,"179845":2,"179846":2,"179847":2,"179848":2,"179849":2,"179850":2,"179965":2,"179966":2,"179967":2,"179968":2,"179969":2,"179970":2,"179971":2,"179972":2,"179973":2,"179974":2,"179975":2,"180041":1,"180042":1,"180043":1,"180044":1,"180045":1,"180046":1,"180047":1,"180048":1,"180049":1,"180050":1,"180051":1,"180052":1,"180053":1,"180054":1,"180055":1,"180056":1,"180057":1,"180058":1,"180059":1,"180060":1,"180061":1,"180062":1,"180063":1,"180064":1,"180065":1,"180066":1,"180067":1,"180068":1,"180094":1,"180095":1,"180097":2,"180098":2,"180099":2,"180100":2,"180103":2,"180104":2,"180105":2,"180108":1,"180109":1,"180110":1,"180111":1,"180112":1,"180113":1,"180114":1,"180115":1,"180138":1,"180139":1,"180140":1,"180141":1,"180142":1,"180143":1,"180144":1,"180145":1,"180146":1,"180147":1,"180148":1,"180149":1,"180150":1,"180152":1,"180153":1,"180154":1,"180155":1,"180156":1,"180157":1,"180158":1,"180966":1,"180967":1,"180968":1,"180969":1,"180991":2,"180992":2,"180993":2,"180994":2,"180995":2,"180996":2,"180997":2,"180998":2,"180999":2,"181000":2,"181004":2,"181005":2,"181006":2,"181007":2,"181117":2,"181118":2,"181119":2,"181120":2,"181121":2,"181122":2,"181123":2,"181124":2,"181193":1,"181194":1,"181195":1,"181196":1,"181197":1,"181198":1,"181199":1,"181200":1,"181201":1,"181202":1,"181203":1,"181204":1,"181205":1,"181206":1,"181207":1,"181208":1,"181209":1,"181210":1,"181211":1,"181212":1,"181213":1,"181214":1,"181215":1,"181216":1,"181218":1,"181219":1,"181220":1,"181221":1,"181241":1,"181242":1,"181247":1,"181249":2,"181250":2,"181251":2,"181252":2,"181253":2,"181254":2,"181255":2,"181256":2,"181257":2,"181258":2,"181260":1,"181261":1,"181264":1,"181265":1,"181266":1,"181267":1,"181290":1,"181291":1,"181292":1,"181293":1,"181294":1,"181295":1,"181296":1,"181297":1,"181298":1,"181299":1,"181300":1,"181301":1,"181302":1,"181303":1,"181304":1,"181305":1,"181306":1,"181307":1,"181308":1,"181309":1,"181310":1,"181311":1,"182118":1,"182119":1,"182120":1,"182121":1,"182143":2,"182144":2,"182145":2,"182146":2,"182147":2,"182148":2,"182149":2,"182150":2,"182151":2,"182152":2,"182153":2,"182156":2,"182157":2,"182158":2,"182159":2,"182160":2,"182269":2,"182270":2,"182271":2,"182272":2,"182273":2,"182274":2,"182275":2,"182345":1,"182346":1,"182348":1,"182349":1,"182350":1,"182351":1,"182352":1,"182353":1,"182354":1,"182355":1,"182356":1,"182357":1,"182358":1,"182359":1,"182360":1,"182361":1,"182362":1,"182363":1,"182364":1,"182365":1,"182366":1,"182367":1,"182368":1,"182369":1,"182370":1,"182371":1,"182372":1,"182373":1,"182392":1,"182393":1,"182394":1,"182399":1,"182401":2,"182402":2,"182403":2,"182408":2,"182409":2,"182410":2,"182417":1,"182418":1,"182442":1,"182443":1,"182444":1,"182445":1,"182446":1,"182447":1,"182448":1,"182449":1,"182450":1,"182451":1,"182452":1,"182453":1,"182454":1,"182455":1,"182456":1,"182457":1,"182458":1,"182459":1,"182460":1,"182462":1,"182463":1,"183271":1,"183272":1,"183273":1,"183295":2,"183296":2,"183298":2,"183299":2,"183300":2,"183301":2,"183302":2,"183303":2,"183304":2,"183305":2,"183306":2,"183307":2,"183308":2,"183309":2,"183310":2,"183313":2,"183421":2,"183422":2,"183423":2,"183424":2,"183425":2,"183426":2,"183427":2,"183497":1,"183498":1,"183499":1,"183500":1,"183501":1,"183502":1,"183503":1,"183504":1,"183505":1,"183506":1,"183507":1,"183508":1,"183509":1,"183510":1,"183511":1,"183512":1,"183513":1,"183514":1,"183515":1,"183516":1,"183517":1,"183518":1,"183519":1,"183520":1,"183521":1,"183522":1,"183523":1,"183524":1,"183543":1,"183544":1,"183545":1,"183546":1,"183553":2,"183554":2,"183561":2,"183562":2,"183569":1,"183587":1,"183588":1,"183593":1,"183594":1,"183595":1,"183596":1,"183597":1,"183598":1,"183599":1,"183600":1,"183601":1,"183602":1,"183603":1,"183604":1,"183605":1,"183606":1,"183607":1,"183608":1,"183609":1,"183610":1,"183611":1,"183612":1,"183613":1,"183614":1,"184423":1,"184424":1,"184425":1,"184449":2,"184450":2,"184451":2,"184452":2,"184453":2,"184454":2,"184455":2,"184456":2,"184457":2,"184458":2,"184459":2,"184460":2,"184461":2,"184462":2,"184465":2,"184466":2,"184467":2,"184468":2,"184573":2,"184574":2,"184575":2,"184576":2,"184577":2,"184578":2,"184579":2,"184649":1,"184650":1,"184651":1,"184652":1,"184653":1,"184654":1,"184655":1,"184656":1,"184657":1,"184658":1,"184659":1,"184660":1,"184661":1,"184662":1,"184663":1,"184664":1,"184665":1,"184666":1,"184667":1,"184668":1,"184669":1,"184670":1,"184671":1,"184672":1,"184673":1,"184674":1,"184675":1,"184695":1,"184696":1,"184697":1,"184698":1,"184705":2,"184714":2,"184720":1,"184721":1,"184733":1,"184734":1,"184738":1,"184739":1,"184740":1,"184741":1,"184742":1,"184743":1,"184744":1,"184745":1,"184746":1,"184747":1,"184748":1,"184749":1,"184750":1,"184751":1,"184752":1,"184753":1,"184754":1,"184755":1,"184756":1,"184757":1,"184758":1,"184759":1,"184760":1,"184761":1,"184762":1,"184763":1,"184764":1,"184765":1,"184778":2,"184779":2,"184780":2,"184781":2,"185575":1,"185576":1,"185577":1,"185601":2,"185602":2,"185603":2,"185604":2,"185605":2,"185606":2,"185607":2,"185608":2,"185609":2,"185610":2,"185611":2,"185612":2,"185613":2,"185614":2,"185615":2,"185616":2,"185617":2,"185618":2,"185619":2,"185620":2,"185724":2,"185725":2,"185726":2,"185727":2,"185728":2,"185729":2,"185730":2,"185731":2,"185745":1,"185746":1,"185754":1,"185755":1,"185756":1,"185800":1,"185801":1,"185802":1,"185803":1,"185804":1,"185805":1,"185806":1,"185807":1,"185808":1,"185809":1,"185810":1,"185811":1,"185812":1,"185813":1,"185814":1,"185815":1,"185816":1,"185817":1,"185818":1,"185819":1,"185820":1,"185821":1,"185822":1,"185823":1,"185824":1,"185825":1,"185826":1,"185827":1,"185847":1,"185848":1,"185849":1,"185850":1,"185851":1,"185856":2,"185857":2,"185866":2,"185867":2,"185870":1,"185871":1,"185872":1,"185873":1,"185884":1,"185885":1,"185886":1,"185887":1,"185888":1,"185889":1,"185890":1,"185891":1,"185892":1,"185893":1,"185894":1,"185895":1,"185896":1,"185897":1,"185898":1,"185899":1,"185900":1,"185901":1,"185902":1,"185903":1,"185904":1,"185905":1,"185906":1,"185907":1,"185908":1,"185909":1,"185910":1,"185911":1,"185912":1,"185913":1,"185914":1,"185929":2,"185930":2,"185931":2,"185932":2,"185933":2,"186727":1,"186728":1,"186729":1,"186730":1,"186753":2,"186754":2,"186755":2,"186756":2,"186763":2,"186764":2,"186765":2,"186766":2,"186767":2,"186768":2,"186769":2,"186770":2,"186771":2,"186772":2,"186874":2,"186875":2,"186876":2,"186877":2,"186878":2,"186879":2,"186880":2,"186881":2,"186882":2,"186883":2,"186896":1,"186897":1,"186898":1,"186899":1,"186900":1,"186901":1,"186902":1,"186904":1,"186905":1,"186906":1,"186908":1,"186909":1,"186951":1,"186952":1,"186953":1,"186954":1,"186955":1,"186956":1,"186957":1,"186958":1,"186959":1,"186960":1,"186961":1,"186962":1,"186963":1,"186964":1,"186965":1,"186966":1,"186967":1,"186968":1,"186969":1,"186970":1,"186971":1,"186972":1,"186973":1,"186974":1,"186975":1,"186976":1,"186977":1,"186978":1,"186979":1,"186999":1,"187000":1,"187001":1,"187002":1,"187003":1,"187008":2,"187009":2,"187018":2,"187019":2,"187022":1,"187023":1,"187024":1,"187025":1,"187036":1,"187037":1,"187039":1,"187040":1,"187041":1,"187042":1,"187043":1,"187044":1,"187045":1,"187046":1,"187047":1,"187048":1,"187049":1,"187050":1,"187051":1,"187052":1,"187053":1,"187054":1,"187055":1,"187056":1,"187057":1,"187058":1,"187059":1,"187060":1,"187061":1,"187062":1,"187063":1,"187064":1,"187065":1,"187080":2,"187081":2,"187082":2,"187083":2,"187084":2,"187085":2,"187086":2,"187879":1,"187880":1,"187881":1,"187882":1,"187883":1,"187905":2,"187906":2,"187907":2,"187916":2,"187917":2,"187918":2,"187919":2,"187920":2,"187921":2,"187922":2,"187923":2,"187924":2,"188025":2,"188026":2,"188027":2,"188028":2,"188029":2,"188030":2,"188031":2,"188032":2,"188033":2,"188034":2,"188035":2,"188036":2,"188047":1,"188048":1,"188049":1,"188050":1,"188051":1,"188052":1,"188053":1,"188054":1,"188055":1,"188056":1,"188057":1,"188058":1,"188059":1,"188060":1,"188061":1,"188062":1,"188063":1,"188064":1,"188065":1,"188066":1,"188067":1,"188068":1,"188069":1,"188102":1,"188103":1,"188104":1,"188105":1,"188106":1,"188107":1,"188108":1,"188109":1,"188110":1,"188111":1,"188112":1,"188113":1,"188114":1,"188115":1,"188116":1,"188117":1,"188118":1,"188119":1,"188120":1,"188121":1,"188122":1,"188123":1,"188124":1,"188125":1,"188126":1,"188127":1,"188128":1,"188129":1,"188130":1,"188131":1,"188150":1,"188151":1,"188152":1,"188153":1,"188154":1,"188155":1,"188161":2,"188162":2,"188170":2,"188171":2,"188173":1,"188174":1,"188175":1,"188176":1,"188177":1,"188189":1,"188190":1,"188191":1,"188192":1,"188193":1,"188194":1,"188195":1,"188196":1,"188197":1,"188198":1,"188199":1,"188200":1,"188201":1,"188202":1,"188203":1,"188204":1,"188205":1,"188206":1,"188207":1,"188209":1,"188210":1,"188211":1,"188212":1,"188213":1,"188214":1,"188215":1,"188216":1,"188217":1,"188229":2,"188230":2,"188231":2,"188232":2,"188233":2,"188234":2,"188235":2,"188236":2,"188237":2,"188238":2,"188239":2,"188240":2,"189030":1,"189031":1,"189032":1,"189033":1,"189034":1,"189035":1,"189057":2,"189058":2,"189069":2,"189070":2,"189071":2,"189072":2,"189073":2,"189074":2,"189075":2,"189176":2,"189177":2,"189178":2,"189179":2,"189180":2,"189181":2,"189182":2,"189183":2,"189184":2,"189185":2,"189186":2,"189187":2,"189188":2,"189189":2,"189197":1,"189198":1,"189199":1,"189200":1,"189201":1,"189202":1,"189203":1,"189204":1,"189205":1,"189206":1,"189207":1,"189208":1,"189209":1,"189210":1,"189211":1,"189212":1,"189213":1,"189214":1,"189215":1,"189216":1,"189217":1,"189218":1,"189219":1,"189222":1,"189223":1,"189224":1,"189253":1,"189254":1,"189255":1,"189256":1,"189257":1,"189258":1,"189259":1,"189260":1,"189261":1,"189262":1,"189263":1,"189264":1,"189265":1,"189266":1,"189267":1,"189268":1,"189269":1,"189271":1,"189272":1,"189273":1,"189274":1,"189275":1,"189276":1,"189277":1,"189278":1,"189279":1,"189280":1,"189281":1,"189282":1,"189283":1,"189284":1,"189301":1,"189302":1,"189303":1,"189304":1,"189305":1,"189306":1,"189307":1,"189309":2,"189313":2,"189314":2,"189315":2,"189322":2,"189323":2,"189325":1,"189326":1,"189327":1,"189328":1,"189329":1,"189342":1,"189343":1,"189344":1,"189345":1,"189346":1,"189347":1,"189348":1,"189349":1,"189351":1,"189352":1,"189353":1,"189354":1,"189355":1,"189356":1,"189357":1,"189358":1,"189359":1,"189360":1,"189361":1,"189362":1,"189363":1,"189364":1,"189365":1,"189366":1,"189367":1,"189368":1,"189369":1,"189381":2,"189382":2,"189383":2,"189384":2,"189385":2,"189386":2,"189387":2,"189388":2,"189389":2,"189390":2,"189391":2,"189392":2,"189393":2,"190181":1,"190182":1,"190183":1,"190184":1,"190185":1,"190186":1,"190187":1,"190209":2,"190210":2,"190221":2,"190222":2,"190223":2,"190224":2,"190225":2,"190226":2,"190227":2,"190328":2,"190331":2,"190332":2,"190333":2,"190334":2,"190335":2,"190336":2,"190337":2,"190338":2,"190339":2,"190340":2,"190341":2,"190348":1,"190349":1,"190352":1,"190353":1,"190354":1,"190355":1,"190357":1,"190358":1,"190359":1,"190360":1,"190361":1,"190362":1,"190363":1,"190364":1,"190365":1,"190367":1,"190368":1,"190369":1,"190370":1,"190371":1,"190374":1,"190375":1,"190376":1,"190377":1,"190405":1,"190406":1,"190407":1,"190408":1,"190409":1,"190410":1,"190411":1,"190412":1,"190413":1,"190414":1,"190415":1,"190416":1,"190417":1,"190418":1,"190419":1,"190420":1,"190421":1,"190422":1,"190423":1,"190424":1,"190425":1,"190426":1,"190427":1,"190428":1,"190429":1,"190430":1,"190431":1,"190432":1,"190433":1,"190435":1,"190436":1,"190437":1,"190454":1,"190455":1,"190456":1,"190457":1,"190458":1,"190459":1,"190461":2,"190466":2,"190467":2,"190468":2,"190472":2,"190473":2,"190474":2,"190477":1,"190478":1,"190479":1,"190480":1,"190494":1,"190495":1,"190496":1,"190497":1,"190498":1,"190499":1,"190500":1,"190501":1,"190502":1,"190503":1,"190504":1,"190505":1,"190506":1,"190507":1,"190508":1,"190509":1,"190510":1,"190511":1,"190512":1,"190513":1,"190514":1,"190515":1,"190516":1,"190517":1,"190518":1,"190519":1,"190520":1,"190521":1,"190532":2,"190533":2,"190534":2,"190535":2,"190536":2,"190537":2,"190538":2,"190539":2,"190540":2,"190541":2,"190542":2,"190543":2,"190544":2,"190545":2,"190546":2,"191333":1,"191334":1,"191335":1,"191336":1,"191337":1,"191338":1,"191339":1,"191361":2,"191362":2,"191374":2,"191375":2,"191376":2,"191377":2,"191378":2,"191379":2,"191481":2,"191482":2,"191483":2,"191484":2,"191485":2,"191486":2,"191491":2,"191492":2,"191500":1,"191501":1,"191504":1,"191505":1,"191506":1,"191507":1,"191508":1,"191509":1,"191510":1,"191511":1,"191512":1,"191513":1,"191514":1,"191515":1,"191516":1,"191517":1,"191518":1,"191519":1,"191520":1,"191521":1,"191522":1,"191523":1,"191524":1,"191525":1,"191526":1,"191527":1,"191528":1,"191529":1,"191530":1,"191558":1,"191559":1,"191560":1,"191561":1,"191562":1,"191563":1,"191564":1,"191565":1,"191566":1,"191567":1,"191568":1,"191569":1,"191570":1,"191571":1,"191572":1,"191573":1,"191574":1,"191575":1,"191576":1,"191577":1,"191578":1,"191579":1,"191580":1,"191581":1,"191582":1,"191583":1,"191584":1,"191585":1,"191586":1,"191587":1,"191588":1,"191589":1,"191607":1,"191608":1,"191609":1,"191610":1,"191611":1,"191613":2,"191619":2,"191620":2,"191621":2,"191622":2,"191623":2,"191624":2,"191625":2,"191628":1,"191629":1,"191630":1,"191631":1,"191632":1,"191646":1,"191647":1,"191648":1,"191649":1,"191650":1,"191651":1,"191652":1,"191653":1,"191654":1,"191655":1,"191656":1,"191657":1,"191658":1,"191659":1,"191660":1,"191661":1,"191662":1,"191663":1,"191664":1,"191665":1,"191666":1,"191667":1,"191668":1,"191669":1,"191670":1,"191671":1,"191673":1,"191674":1,"191681":2,"191682":2,"191683":2,"191684":2,"191685":2,"191686":2,"191687":2,"191688":2,"191689":2,"191691":2,"191692":2,"191693":2,"191694":2,"191695":2,"191696":2,"191697":2,"191698":2,"192485":1,"192486":1,"192487":1,"192488":1,"192489":1,"192490":1,"192513":2,"192514":2,"192526":2,"192527":2,"192528":2,"192529":2,"192530":2,"192531":2,"192634":2,"192635":2,"192636":2,"192637":2,"192643":2,"192644":2,"192653":1,"192654":1,"192655":1,"192656":1,"192657":1,"192658":1,"192659":1,"192660":1,"192661":1,"192662":1,"192663":1,"192664":1,"192665":1,"192666":1,"192667":1,"192668":1,"192669":1,"192670":1,"192671":1,"192672":1,"192673":1,"192674":1,"192675":1,"192676":1,"192677":1,"192678":1,"192679":1,"192680":1,"192681":1,"192682":1,"192711":1,"192712":1,"192713":1,"192714":1,"192715":1,"192716":1,"192717":1,"192718":1,"192719":1,"192720":1,"192721":1,"192722":1,"192723":1,"192724":1,"192725":1,"192726":1,"192727":1,"192728":1,"192729":1,"192730":1,"192731":1,"192732":1,"192733":1,"192734":1,"192735":1,"192736":1,"192737":1,"192738":1,"192739":1,"192740":1,"192760":1,"192761":1,"192762":1,"192763":1,"192765":2,"192766":2,"192767":2,"192774":2,"192775":2,"192776":2,"192777":2,"192780":1,"192781":1,"192782":1,"192783":1,"192784":1,"192798":1,"192799":1,"192800":1,"192801":1,"192802":1,"192803":1,"192804":1,"192805":1,"192806":1,"192807":1,"192808":1,"192809":1,"192810":1,"192811":1,"192812":1,"192813":1,"192814":1,"192815":1,"192816":1,"192817":1,"192818":1,"192819":1,"192820":1,"192821":1,"192822":1,"192823":1,"192824":1,"192825":1,"192832":2,"192833":2,"192834":2,"192835":2,"192836":2,"192837":2,"192838":2,"192839":2,"192840":2,"192841":2,"192842":2,"192843":2,"192844":2,"192845":2,"192846":2,"192847":2,"192848":2,"192849":2,"193638":1,"193639":1,"193640":1,"193641":1,"193663":2,"193664":2,"193665":2,"193666":2,"193667":2,"193678":2,"193679":2,"193680":2,"193681":2,"193682":2,"193683":2,"193787":2,"193788":2,"193795":2,"193796":2,"193806":1,"193807":1,"193808":1,"193809":1,"193810":1,"193811":1,"193812":1,"193813":1,"193814":1,"193815":1,"193816":1,"193817":1,"193818":1,"193819":1,"193820":1,"193821":1,"193822":1,"193823":1,"193824":1,"193827":1,"193828":1,"193829":1,"193830":1,"193831":1,"193832":1,"193833":1,"193863":1,"193864":1,"193865":1,"193866":1,"193867":1,"193868":1,"193869":1,"193870":1,"193871":1,"193872":1,"193873":1,"193874":1,"193875":1,"193876":1,"193877":1,"193878":1,"193879":1,"193880":1,"193881":1,"193882":1,"193883":1,"193884":1,"193885":1,"193886":1,"193887":1,"193888":1,"193889":1,"193890":1,"193891":1,"193908":1,"193913":1,"193914":1,"193915":1,"193918":2,"193919":2,"193922":1,"193923":1,"193924":1,"193927":2,"193928":2,"193932":1,"193933":1,"193934":1,"193935":1,"193949":1,"193950":1,"193951":1,"193952":1,"193953":1,"193954":1,"193955":1,"193956":1,"193957":1,"193958":1,"193959":1,"193960":1,"193961":1,"193962":1,"193963":1,"193964":1,"193965":1,"193966":1,"193967":1,"193968":1,"193973":1,"193974":1,"193975":1,"193976":1,"193983":2,"193984":2,"193985":2,"193986":2,"193987":2,"193988":2,"193989":2,"193990":2,"193991":2,"193992":2,"193993":2,"193994":2,"193995":2,"193996":2,"193997":2,"193998":2,"193999":2,"194000":2,"194791":1,"194792":1,"194793":1,"194815":2,"194816":2,"194817":2,"194818":2,"194819":2,"194820":2,"194829":2,"194830":2,"194831":2,"194832":2,"194833":2,"194834":2,"194835":2,"194947":2,"194948":2,"194961":1,"194962":1,"194963":1,"194964":1,"194965":1,"194966":1,"194968":1,"194969":1,"194970":1,"194972":1,"194973":1,"194974":1,"194975":1,"194976":1,"194977":1,"194978":1,"194979":1,"194980":1,"194981":1,"194982":1,"194983":1,"194984":1,"195015":1,"195016":1,"195017":1,"195018":1,"195019":1,"195020":1,"195021":1,"195022":1,"195023":1,"195024":1,"195025":1,"195026":1,"195027":1,"195028":1,"195029":1,"195030":1,"195031":1,"195032":1,"195033":1,"195034":1,"195035":1,"195036":1,"195037":1,"195038":1,"195039":1,"195040":1,"195059":1,"195060":1,"195065":1,"195066":1,"195067":1,"195073":1,"195074":1,"195075":1,"195076":1,"195077":1,"195086":1,"195087":1,"195101":1,"195102":1,"195103":1,"195104":1,"195105":1,"195106":1,"195107":1,"195108":1,"195109":1,"195110":1,"195111":1,"195112":1,"195113":1,"195114":1,"195115":1,"195135":2,"195136":2,"195137":2,"195138":2,"195139":2,"195140":2,"195141":2,"195142":2,"195143":2,"195144":2,"195145":2,"195146":2,"195147":2,"195148":2,"195149":2,"195150":2,"195151":2,"195152":2,"195943":1,"195944":1,"195945":1,"195967":2,"195968":2,"195969":2,"195970":2,"195971":2,"195972":2,"195973":2,"195980":2,"195981":2,"195982":2,"195983":2,"195984":2,"195985":2,"195986":2,"196099":2,"196100":2,"196114":1,"196115":1,"196116":1,"196117":1,"196118":1,"196119":1,"196120":1,"196121":1,"196122":1,"196123":1,"196124":1,"196125":1,"196126":1,"196127":1,"196128":1,"196129":1,"196130":1,"196131":1,"196168":1,"196169":1,"196170":1,"196171":1,"196172":1,"196173":1,"196174":1,"196175":1,"196176":1,"196177":1,"196178":1,"196179":1,"196180":1,"196181":1,"196182":1,"196183":1,"196184":1,"196185":1,"196186":1,"196187":1,"196188":1,"196189":1,"196190":1,"196191":1,"196211":1,"196212":1,"196213":1,"196217":1,"196218":1,"196223":1,"196224":1,"196225":1,"196226":1,"196227":1,"196228":1,"196229":1,"196230":1,"196238":1,"196253":1,"196254":1,"196255":1,"196256":1,"196257":1,"196258":1,"196259":1,"196260":1,"196261":1,"196262":1,"196263":1,"196264":1,"196287":2,"196288":2,"196289":2,"196290":2,"196291":2,"196292":2,"196293":2,"196294":2,"196295":2,"196296":2,"196297":2,"196298":2,"196299":2,"196300":2,"196301":2,"196302":2,"196303":2,"196304":2,"197095":1,"197096":1,"197097":1,"197119":2,"197120":2,"197121":2,"197122":2,"197123":2,"197124":2,"197125":2,"197126":2,"197127":2,"197128":2,"197130":2,"197131":2,"197132":2,"197133":2,"197134":2,"197135":2,"197136":2,"197137":2,"197138":2,"197251":2,"197252":2,"197254":2,"197255":2,"197256":2,"197266":1,"197269":1,"197270":1,"197271":1,"197272":1,"197273":1,"197274":1,"197275":1,"197276":1,"197277":1,"197278":1,"197279":1,"197280":1,"197281":1,"197282":1,"197321":1,"197322":1,"197323":1,"197325":1,"197326":1,"197327":1,"197328":1,"197329":1,"197330":1,"197331":1,"197332":1,"197333":1,"197334":1,"197335":1,"197336":1,"197337":1,"197338":1,"197339":1,"197341":1,"197342":1,"197343":1,"197363":1,"197364":1,"197365":1,"197366":1,"197367":1,"197368":1,"197369":1,"197370":1,"197375":1,"197376":1,"197377":1,"197378":1,"197379":1,"197380":1,"197381":1,"197382":1,"197383":1,"197384":1,"197385":1,"197404":1,"197405":1,"197407":1,"197408":1,"197409":1,"197410":1,"197411":1,"197412":1,"197413":1,"197414":1,"197415":1,"197438":2,"197439":2,"197440":2,"197441":2,"197442":2,"197443":2,"197444":2,"197445":2,"197446":2,"197447":2,"197448":2,"197449":2,"197450":2,"197451":2,"197452":2,"197453":2,"197454":2,"197455":2,"197456":2,"198246":1,"198247":1,"198248":1,"198271":2,"198272":2,"198273":2,"198274":2,"198275":2,"198276":2,"198277":2,"198278":2,"198279":2,"198280":2,"198281":2,"198282":2,"198283":2,"198284":2,"198285":2,"198286":2,"198287":2,"198288":2,"198289":2,"198290":2,"198403":2,"198404":2,"198405":2,"198406":2,"198407":2,"198408":2,"198409":2,"198418":1,"198419":1,"198420":1,"198421":1,"198422":1,"198423":1,"198424":1,"198425":1,"198426":1,"198427":1,"198428":1,"198429":1,"198430":1,"198431":1,"198432":1,"198433":1,"198434":1,"198473":1,"198474":1,"198475":1,"198476":1,"198477":1,"198478":1,"198479":1,"198480":1,"198481":1,"198482":1,"198483":1,"198484":1,"198485":1,"198486":1,"198487":1,"198488":1,"198489":1,"198490":1,"198491":1,"198492":1,"198493":1,"198494":1,"198495":1,"198515":1,"198516":1,"198517":1,"198518":1,"198519":1,"198520":1,"198521":1,"198522":1,"198523":1,"198524":1,"198526":1,"198527":1,"198528":1,"198529":1,"198530":1,"198531":1,"198532":1,"198538":1,"198539":1,"198540":1,"198557":1,"198558":1,"198559":1,"198560":1,"198561":1,"198562":1,"198563":1,"198564":1,"198565":1,"198566":1,"198590":2,"198591":2,"198593":2,"198594":2,"198595":2,"198596":2,"198597":2,"198598":2,"198599":2,"198600":2,"198601":2,"198602":2,"198603":2,"198604":2,"198605":2,"198606":2,"198607":2,"198608":2,"199397":1,"199398":1,"199399":1,"199400":1,"199423":2,"199424":2,"199425":2,"199426":2,"199427":2,"199428":2,"199429":2,"199430":2,"199431":2,"199432":2,"199433":2,"199434":2,"199435":2,"199436":2,"199437":2,"199438":2,"199439":2,"199440":2,"199441":2,"199442":2,"199552":2,"199555":2,"199556":2,"199557":2,"199558":2,"199561":2,"199562":2,"199570":1,"199571":1,"199572":1,"199573":1,"199574":1,"199575":1,"199576":1,"199577":1,"199578":1,"199579":1,"199580":1,"199581":1,"199582":1,"199583":1,"199584":1,"199585":1,"199586":1,"199625":1,"199626":1,"199627":1,"199628":1,"199629":1,"199630":1,"199631":1,"199632":1,"199633":1,"199634":1,"199639":1,"199640":1,"199641":1,"199642":1,"199643":1,"199644":1,"199645":1,"199646":1,"199668":1,"199669":1,"199670":1,"199671":1,"199675":1,"199676":1,"199677":1,"199678":1,"199679":1,"199690":1,"199691":1,"199709":1,"199710":1,"199711":1,"199712":1,"199713":1,"199714":1,"199715":1,"199716":1,"199717":1,"199718":1,"199734":2,"199743":2,"199744":2,"199745":2,"199746":2,"199747":2,"199748":2,"199749":2,"199750":2,"199751":2,"199752":2,"199753":2,"199754":2,"199755":2,"199756":2,"199757":2,"199759":2,"200548":1,"200549":1,"200550":1,"200551":1,"200552":1,"200576":2,"200577":2,"200578":2,"200579":2,"200580":2,"200581":2,"200582":2,"200583":2,"200584":2,"200585":2,"200591":2,"200592":2,"200593":2,"200594":2,"200703":2,"200704":2,"200705":2,"200706":2,"200707":2,"200708":2,"200709":2,"200710":2,"200713":2,"200714":2,"200722":1,"200723":1,"200724":1,"200725":1,"200726":1,"200727":1,"200728":1,"200729":1,"200730":1,"200731":1,"200732":1,"200733":1,"200734":1,"200735":1,"200736":1,"200737":1,"200738":1,"200778":1,"200779":1,"200780":1,"200781":1,"200782":1,"200783":1,"200796":1,"200797":1,"200821":1,"200822":1,"200827":1,"200828":1,"200829":1,"200830":1,"200840":1,"200841":1,"200842":1,"200843":1,"200861":1,"200862":1,"200863":1,"200864":1,"200865":1,"200866":1,"200867":1,"200868":1,"200869":1,"200870":1,"200881":2,"200882":2,"200883":2,"200884":2,"200885":2,"200886":2,"200887":2,"200896":2,"200897":2,"200898":2,"200899":2,"200900":2,"200901":2,"200902":2,"200903":2,"200904":2,"200905":2,"200906":2,"200907":2,"200908":2,"200909":2,"200910":2,"201700":1,"201701":1,"201702":1,"201703":1,"201729":2,"201730":2,"201731":2,"201732":2,"201733":2,"201734":2,"201735":2,"201736":2,"201743":2,"201744":2,"201745":2,"201746":2,"201856":2,"201857":2,"201858":2,"201859":2,"201860":2,"201861":2,"201862":2,"201863":2,"201864":2,"201865":2,"201875":1,"201876":1,"201877":1,"201878":1,"201879":1,"201880":1,"201881":1,"201882":1,"201883":1,"201884":1,"201885":1,"201886":1,"201887":1,"201888":1,"201889":1,"201890":1,"201891":1,"201931":1,"201932":1,"201973":1,"201974":1,"201991":1,"201992":1,"201993":1,"201994":1,"202013":1,"202014":1,"202015":1,"202016":1,"202017":1,"202018":1,"202019":1,"202020":1,"202022":1,"202031":2,"202032":2,"202033":2,"202034":2,"202035":2,"202036":2,"202037":2,"202038":2,"202039":2,"202040":2,"202048":2,"202049":2,"202050":2,"202051":2,"202052":2,"202053":2,"202054":2,"202055":2,"202056":2,"202057":2,"202058":2,"202059":2,"202060":2,"202061":2,"202062":2,"202852":1,"202853":1,"202854":1,"202855":1,"202881":2,"202882":2,"202883":2,"202884":2,"202885":2,"202886":2,"202887":2,"202897":2,"202898":2,"202899":2,"203009":2,"203010":2,"203011":2,"203012":2,"203013":2,"203014":2,"203015":2,"203016":2,"203028":1,"203029":1,"203032":1,"203033":1,"203034":1,"203035":1,"203036":1,"203037":1,"203038":1,"203039":1,"203040":1,"203041":1,"203042":1,"203043":1,"203044":1,"203159":1,"203160":1,"203164":1,"203165":1,"203166":1,"203167":1,"203168":1,"203169":1,"203170":1,"203171":1,"203172":1,"203173":1,"203183":2,"203184":2,"203185":2,"203186":2,"203187":2,"203188":2,"203189":2,"203190":2,"203191":2,"203192":2,"203193":2,"203201":2,"203202":2,"203203":2,"203204":2,"203205":2,"203206":2,"203207":2,"203209":2,"203210":2,"203211":2,"203212":2,"203213":2,"203214":2,"204004":1,"204005":1,"204006":1,"204007":1,"204033":2,"204034":2,"204035":2,"204036":2,"204037":2,"204038":2,"204050":2,"204051":2,"204052":2,"204161":2,"204162":2,"204163":2,"204164":2,"204165":2,"204166":2,"204167":2,"204168":2,"204180":1,"204181":1,"204184":1,"204185":1,"204186":1,"204187":1,"204188":1,"204189":1,"204190":1,"204191":1,"204192":1,"204193":1,"204194":1,"204195":1,"204196":1,"204197":1,"204310":1,"204311":1,"204312":1,"204313":1,"204314":1,"204315":1,"204316":1,"204317":1,"204318":1,"204319":1,"204320":1,"204321":1,"204322":1,"204323":1,"204324":1,"204334":2,"204335":2,"204336":2,"204337":2,"204338":2,"204339":2,"204340":2,"204341":2,"204342":2,"204343":2,"204344":2,"204345":2,"204354":2,"204355":2,"204356":2,"204357":2,"204358":2,"204359":2,"204360":2,"204361":2,"204362":2,"204363":2,"204364":2,"204365":2,"204366":2,"205155":1,"205156":1,"205157":1,"205158":1,"205159":1,"205185":2,"205186":2,"205187":2,"205188":2,"205189":2,"205190":2,"205202":2,"205203":2,"205204":2,"205313":2,"205314":2,"205315":2,"205316":2,"205317":2,"205318":2,"205319":2,"205320":2,"205332":1,"205333":1,"205334":1,"205335":1,"205336":1,"205337":1,"205338":1,"205339":1,"205340":1,"205341":1,"205342":1,"205343":1,"205344":1,"205345":1,"205346":1,"205347":1,"205348":1,"205349":1,"205461":1,"205462":1,"205463":1,"205464":1,"205465":1,"205466":1,"205467":1,"205468":1,"205469":1,"205470":1,"205471":1,"205472":1,"205473":1,"205485":2,"205486":2,"205487":2,"205488":2,"205489":2,"205490":2,"205491":2,"205492":2,"205493":2,"205494":2,"205495":2,"205496":2,"205497":2,"205506":2,"205507":2,"205508":2,"205509":2,"205510":2,"205511":2,"205512":2,"205513":2,"205514":2,"205515":2,"205516":2,"205517":2,"205518":2,"205519":2,"205523":2,"205524":2,"205525":2,"205526":2,"206306":1,"206307":1,"206308":1,"206309":1,"206310":1,"206311":1,"206337":2,"206338":2,"206339":2,"206340":2,"206341":2,"206354":2,"206355":2,"206356":2,"206465":2,"206466":2,"206467":2,"206468":2,"206469":2,"206470":2,"206471":2,"206472":2,"206473":2,"206474":2,"206475":2,"206476":2,"206477":2,"206483":1,"206484":1,"206485":1,"206486":1,"206487":1,"206488":1,"206489":1,"206490":1,"206491":1,"206492":1,"206493":1,"206494":1,"206495":1,"206496":1,"206497":1,"206498":1,"206499":1,"206500":1,"206501":1,"206613":1,"206614":1,"206615":1,"206616":1,"206617":1,"206618":1,"206619":1,"206620":1,"206621":1,"206622":1,"206623":1,"206624":1,"206637":2,"206638":2,"206639":2,"206640":2,"206641":2,"206642":2,"206643":2,"206644":2,"206645":2,"206646":2,"206647":2,"206648":2,"206649":2,"206650":2,"206658":2,"206659":2,"206660":2,"206661":2,"206662":2,"206663":2,"206664":2,"206665":2,"206666":2,"206667":2,"206668":2,"206669":2,"206670":2,"206671":2,"206672":2,"206673":2,"206674":2,"206675":2,"206676":2,"206677":2,"206678":2,"206679":2,"207456":1,"207457":1,"207458":1,"207459":1,"207460":1,"207461":1,"207462":1,"207463":1,"207464":1,"207487":2,"207488":2,"207489":2,"207490":2,"207491":2,"207492":2,"207493":2,"207505":2,"207506":2,"207507":2,"207508":2,"207617":2,"207618":2,"207619":2,"207620":2,"207621":2,"207622":2,"207623":2,"207624":2,"207625":2,"207626":2,"207627":2,"207628":2,"207629":2,"207635":1,"207636":1,"207637":1,"207638":1,"207639":1,"207640":1,"207641":1,"207642":1,"207643":1,"207644":1,"207645":1,"207646":1,"207647":1,"207648":1,"207649":1,"207650":1,"207653":1,"207654":1,"207763":1,"207764":1,"207765":1,"207766":1,"207767":1,"207768":1,"207769":1,"207770":1,"207771":1,"207772":1,"207773":1,"207790":2,"207791":2,"207792":2,"207793":2,"207794":2,"207795":2,"207796":2,"207797":2,"207798":2,"207799":2,"207800":2,"207802":2,"207803":2,"207810":2,"207811":2,"207812":2,"207813":2,"207814":2,"207815":2,"207816":2,"207817":2,"207818":2,"207819":2,"207820":2,"207821":2,"207822":2,"207823":2,"207824":2,"207825":2,"207826":2,"207827":2,"207828":2,"207829":2,"207830":2,"208608":1,"208609":1,"208610":1,"208611":1,"208612":1,"208613":1,"208614":1,"208615":1,"208616":1,"208617":1,"208639":2,"208640":2,"208641":2,"208642":2,"208643":2,"208656":2,"208657":2,"208658":2,"208659":2,"208769":2,"208770":2,"208771":2,"208772":2,"208773":2,"208774":2,"208775":2,"208777":2,"208787":1,"208788":1,"208789":1,"208790":1,"208791":1,"208792":1,"208793":1,"208794":1,"208795":1,"208796":1,"208797":1,"208798":1,"208799":1,"208800":1,"208801":1,"208802":1,"208803":1,"208804":1,"208805":1,"208806":1,"208807":1,"208914":1,"208915":1,"208916":1,"208917":1,"208918":1,"208919":1,"208920":1,"208921":1,"208922":1,"208923":1,"208924":1,"208925":1,"208943":2,"208944":2,"208951":2,"208952":2,"208953":2,"208954":2,"208961":2,"208962":2,"208963":2,"208964":2,"208965":2,"208966":2,"208967":2,"208968":2,"208969":2,"208970":2,"208971":2,"208972":2,"208973":2,"208974":2,"208975":2,"208976":2,"208977":2,"208978":2,"208979":2,"208980":2,"208981":2,"209760":1,"209761":1,"209762":1,"209763":1,"209764":1,"209765":1,"209766":1,"209767":1,"209768":1,"209769":1,"209790":2,"209791":2,"209792":2,"209793":2,"209794":2,"209795":2,"209808":2,"209809":2,"209810":2,"209920":2,"209921":2,"209922":2,"209923":2,"209924":2,"209925":2,"209926":2,"209927":2,"209929":2,"209938":1,"209939":1,"209940":1,"209941":1,"209942":1,"209943":1,"209944":1,"209945":1,"209946":1,"209947":1,"209948":1,"209949":1,"209950":1,"209951":1,"209952":1,"209953":1,"209954":1,"209955":1,"209956":1,"209957":1,"209958":1,"210066":1,"210067":1,"210069":1,"210070":1,"210071":1,"210072":1,"210073":1,"210074":1,"210075":1,"210076":1,"210077":1,"210104":2,"210105":2,"210112":2,"210113":2,"210114":2,"210116":2,"210117":2,"210118":2,"210119":2,"210120":2,"210121":2,"210122":2,"210123":2,"210124":2,"210125":2,"210126":2,"210127":2,"210128":2,"210129":2,"210130":2,"210131":2,"210132":2,"210133":2,"210912":1,"210913":1,"210914":1,"210915":1,"210916":1,"210917":1,"210918":1,"210919":1,"210920":1,"210921":1,"210941":2,"210942":2,"210943":2,"210944":2,"210945":2,"210946":2,"210960":2,"210961":2,"210962":2,"211071":2,"211072":2,"211073":2,"211076":2,"211077":2,"211078":2,"211079":2,"211080":2,"211081":2,"211082":2,"211090":1,"211091":1,"211093":1,"211094":1,"211095":1,"211096":1,"211097":1,"211098":1,"211099":1,"211100":1,"211101":1,"211102":1,"211105":1,"211106":1,"211107":1,"211108":1,"211109":1,"211219":1,"211220":1,"211221":1,"211222":1,"211223":1,"211224":1,"211225":1,"211226":1,"211227":1,"211228":1,"211229":1,"211265":2,"211266":2,"211267":2,"211268":2,"211273":2,"211274":2,"211275":2,"211276":2,"211277":2,"211278":2,"211279":2,"211280":2,"211281":2,"211282":2,"211283":2,"211284":2,"211285":2,"212064":1,"212065":1,"212066":1,"212067":1,"212068":1,"212069":1,"212070":1,"212071":1,"212072":1,"212073":1,"212093":2,"212094":2,"212095":2,"212096":2,"212097":2,"212098":2,"212112":2,"212113":2,"212114":2,"212224":2,"212225":2,"212228":2,"212229":2,"212230":2,"212231":2,"212232":2,"212233":2,"212234":2,"212243":1,"212245":1,"212246":1,"212247":1,"212248":1,"212249":1,"212250":1,"212251":1,"212252":1,"212253":1,"212254":1,"212257":1,"212258":1,"212259":1,"212260":1,"212261":1,"212372":1,"212373":1,"212374":1,"212375":1,"212376":1,"212377":1,"212378":1,"212379":1,"212380":1,"212381":1,"212418":2,"212419":2,"212426":2,"212427":2,"212428":2,"212429":2,"212430":2,"212431":2,"212432":2,"212433":2,"212434":2,"212435":2,"212436":2,"212437":2,"213216":1,"213217":1,"213218":1,"213219":1,"213220":1,"213221":1,"213222":1,"213223":1,"213224":1,"213245":2,"213246":2,"213247":2,"213248":2,"213249":2,"213263":2,"213264":2,"213265":2,"213266":2,"213377":2,"213378":2,"213379":2,"213380":2,"213381":2,"213382":2,"213383":2,"213384":2,"213385":2,"213396":1,"213397":1,"213398":1,"213399":1,"213400":1,"213401":1,"213402":1,"213403":1,"213404":1,"213405":1,"213406":1,"213407":1,"213408":1,"213409":1,"213410":1,"213411":1,"213412":1,"213524":1,"213525":1,"213526":1,"213527":1,"213528":1,"213529":1,"213530":1,"213531":1,"213532":1,"213533":1,"213578":2,"213579":2,"213580":2,"213581":2,"213582":2,"213583":2,"213584":2,"213585":2,"213586":2,"213587":2,"213588":2,"213589":2,"213590":2,"214368":1,"214369":1,"214370":1,"214371":1,"214372":1,"214373":1,"214374":1,"214375":1,"214397":2,"214398":2,"214399":2,"214400":2,"214401":2,"214414":2,"214415":2,"214418":2,"214529":2,"214530":2,"214531":2,"214532":2,"214533":2,"214534":2,"214535":2,"214536":2,"214549":1,"214550":1,"214551":1,"214552":1,"214553":1,"214554":1,"214555":1,"214556":1,"214557":1,"214558":1,"214559":1,"214560":1,"214561":1,"214562":1,"214563":1,"214676":1,"214677":1,"214678":1,"214679":1,"214680":1,"214681":1,"214682":1,"214683":1,"214684":1,"214685":1,"214686":1,"214731":2,"214733":2,"214734":2,"214735":2,"214736":2,"214737":2,"214738":2,"214739":2,"214741":2,"214742":2,"215520":1,"215521":1,"215522":1,"215523":1,"215524":1,"215525":1,"215526":1,"215527":1,"215549":2,"215550":2,"215551":2,"215552":2,"215563":2,"215564":2,"215565":2,"215566":2,"215567":2,"215682":2,"215683":2,"215684":2,"215685":2,"215706":1,"215707":1,"215712":1,"215713":1,"215714":1,"215715":1,"215829":1,"215830":1,"215831":1,"215832":1,"215833":1,"215834":1,"215835":1,"215837":1,"215838":1,"215839":1,"215847":3,"215848":3,"215849":3,"215850":3,"215851":3,"215885":2,"215890":2,"215891":2,"215892":2,"215893":2,"216672":1,"216673":1,"216674":1,"216675":1,"216676":1,"216677":1,"216678":1,"216679":1,"216714":2,"216715":2,"216716":2,"216717":2,"216718":2,"216719":2,"216720":2,"216721":2,"216865":1,"216866":1,"216982":1,"216983":1,"216984":1,"216985":1,"216986":1,"216987":1,"216988":1,"216989":1,"216990":1,"216991":1,"216998":3,"216999":3,"217000":3,"217001":3,"217002":3,"217003":3,"217005":3,"217010":3,"217011":3,"217043":2,"217044":2,"217050":1,"217051":1,"217824":1,"217825":1,"217826":1,"217827":1,"217828":1,"217829":1,"217830":1,"217831":1,"217866":2,"217867":2,"217870":2,"217871":2,"217872":2,"217873":2,"218134":1,"218135":1,"218136":1,"218137":1,"218138":1,"218139":1,"218140":1,"218141":1,"218142":1,"218150":3,"218151":3,"218152":3,"218153":3,"218154":3,"218155":3,"218156":3,"218157":3,"218158":3,"218159":3,"218160":3,"218161":3,"218162":3,"218163":3,"218164":3,"218201":1,"218202":1,"218203":1,"218204":1,"218976":1,"218977":1,"218978":1,"218979":1,"218980":1,"218981":1,"218982":1,"218983":1,"219018":2,"219019":2,"219022":2,"219023":2,"219024":2,"219025":2,"219286":1,"219287":1,"219288":1,"219289":1,"219290":1,"219291":1,"219292":1,"219293":1,"219301":3,"219302":3,"219303":3,"219304":3,"219305":3,"219306":3,"219307":3,"219308":3,"219309":3,"219310":3,"219311":3,"219312":3,"219313":3,"219314":3,"219315":3,"219316":3,"219317":3,"219353":1,"219354":1,"219355":1,"219356":1,"219357":1,"219360":1,"220128":1,"220129":1,"220130":1,"220131":1,"220132":1,"220133":1,"220134":1,"220135":1,"220170":2,"220171":2,"220172":2,"220173":2,"220174":2,"220175":2,"220176":2,"220177":2,"220438":1,"220439":1,"220440":1,"220441":1,"220442":1,"220443":1,"220444":1,"220445":1,"220451":3,"220452":3,"220453":3,"220454":3,"220455":3,"220456":3,"220457":3,"220458":3,"220459":3,"220460":3,"220461":3,"220462":3,"220463":3,"220464":3,"220465":3,"220466":3,"220468":3,"220469":3,"220505":1,"220506":1,"220507":1,"220508":1,"220509":1,"220510":1,"220511":1,"220512":1,"220513":1,"221280":1,"221281":1,"221282":1,"221283":1,"221284":1,"221285":1,"221286":1,"221287":1,"221321":2,"221322":2,"221323":2,"221324":2,"221325":2,"221326":2,"221327":2,"221328":2,"221329":2,"221589":1,"221590":1,"221591":1,"221592":1,"221593":1,"221594":1,"221595":1,"221596":1,"221597":1,"221602":3,"221603":3,"221604":3,"221605":3,"221606":3,"221607":3,"221608":3,"221609":3,"221610":3,"221611":3,"221612":3,"221613":3,"221614":3,"221615":3,"221616":3,"221617":3,"221618":3,"221619":3,"221620":3,"221628":1,"221629":1,"221630":1,"221631":1,"221632":1,"221634":1,"221635":1,"221636":1,"221656":1,"221657":1,"221658":1,"221659":1,"221660":1,"221661":1,"221662":1,"221663":1,"221664":1,"221665":1,"221666":1,"222432":1,"222433":1,"222434":1,"222435":1,"222436":1,"222437":1,"222438":1,"222439":1,"222440":1,"222470":2,"222471":2,"222472":2,"222473":2,"222474":2,"222475":2,"222476":2,"222477":2,"222478":2,"222479":2,"222480":2,"222481":2,"222482":2,"222741":1,"222742":1,"222744":1,"222745":1,"222746":1,"222747":1,"222748":1,"222749":1,"222754":3,"222755":3,"222756":3,"222757":3,"222758":3,"222759":3,"222760":3,"222761":3,"222762":3,"222763":3,"222764":3,"222765":3,"222766":3,"222767":3,"222768":3,"222769":3,"222770":3,"222771":3,"222779":1,"222780":1,"222781":1,"222782":1,"222783":1,"222784":1,"222785":1,"222786":1,"222787":1,"222788":1,"222789":1,"222808":1,"222809":1,"222811":1,"222812":1,"222813":1,"222814":1,"222815":1,"222816":1,"222817":1,"222818":1,"223584":1,"223585":1,"223586":1,"223587":1,"223588":1,"223589":1,"223590":1,"223591":1,"223592":1,"223622":2,"223623":2,"223624":2,"223625":2,"223626":2,"223627":2,"223628":2,"223629":2,"223630":2,"223631":2,"223632":2,"223633":2,"223634":2,"223894":1,"223895":1,"223896":1,"223897":1,"223898":1,"223899":1,"223900":1,"223901":1,"223907":3,"223908":3,"223909":3,"223910":3,"223911":3,"223912":3,"223913":3,"223914":3,"223915":3,"223916":3,"223917":3,"223918":3,"223919":3,"223920":3,"223921":3,"223922":3,"223931":1,"223932":1,"223933":1,"223934":1,"223935":1,"223936":1,"223937":1,"223938":1,"223939":1,"223940":1,"223941":1,"223960":1,"223961":1,"223962":1,"223963":1,"223964":1,"223965":1,"223966":1,"223967":1,"223968":1,"223969":1,"224736":1,"224737":1,"224738":1,"224739":1,"224740":1,"224741":1,"224742":1,"224743":1,"224744":1,"224774":2,"224775":2,"224776":2,"224777":2,"224778":2,"224779":2,"224780":2,"224781":2,"224782":2,"224783":2,"224784":2,"224785":2,"224786":2,"224847":1,"224848":1,"225047":1,"225048":1,"225049":1,"225050":1,"225051":1,"225052":1,"225053":1,"225060":3,"225061":3,"225062":3,"225063":3,"225064":3,"225065":3,"225066":3,"225067":3,"225068":3,"225069":3,"225070":3,"225071":3,"225072":3,"225073":3,"225074":3,"225075":3,"225083":1,"225084":1,"225085":1,"225086":1,"225087":1,"225088":1,"225089":1,"225090":1,"225091":1,"225092":1,"225093":1,"225094":1,"225112":1,"225113":1,"225114":1,"225115":1,"225116":1,"225117":1,"225118":1,"225119":1,"225120":1,"225888":1,"225889":1,"225890":1,"225891":1,"225892":1,"225893":1,"225894":1,"225895":1,"225896":1,"225927":2,"225928":2,"225929":2,"225930":2,"225931":2,"225932":2,"225933":2,"225934":2,"225935":2,"225936":2,"225937":2,"225938":2,"225998":1,"225999":1,"226000":1,"226001":1,"226199":1,"226200":1,"226201":1,"226202":1,"226203":1,"226204":1,"226205":1,"226206":1,"226212":3,"226213":3,"226214":3,"226216":3,"226217":3,"226218":3,"226219":3,"226220":3,"226221":3,"226222":3,"226223":3,"226224":3,"226225":3,"226226":3,"226227":3,"226236":1,"226237":1,"226238":1,"226239":1,"226240":1,"226241":1,"226242":1,"226243":1,"226244":1,"226245":1,"226264":1,"226265":1,"226266":1,"226267":1,"226268":1,"226269":1,"227040":1,"227041":1,"227042":1,"227043":1,"227044":1,"227045":1,"227046":1,"227047":1,"227080":2,"227081":2,"227082":2,"227083":2,"227084":2,"227085":2,"227086":2,"227087":2,"227088":2,"227089":2,"227090":2,"227149":1,"227150":1,"227151":1,"227152":1,"227153":1,"227154":1,"227155":1,"227156":1,"227351":1,"227352":1,"227353":1,"227354":1,"227355":1,"227356":1,"227357":1,"227358":1,"227359":1,"227365":3,"227366":3,"227367":3,"227368":3,"227369":3,"227370":3,"227371":3,"227372":3,"227373":3,"227374":3,"227375":3,"227376":3,"227377":3,"227378":3,"227391":1,"227392":1,"227393":1,"227394":1,"227395":1,"227396":1,"227417":1,"227418":1,"228192":1,"228193":1,"228194":1,"228195":1,"228196":1,"228197":1,"228198":1,"228199":1,"228233":2,"228234":2,"228235":2,"228236":2,"228237":2,"228238":2,"228239":2,"228240":2,"228241":2,"228299":1,"228300":1,"228301":1,"228302":1,"228303":1,"228304":1,"228305":1,"228306":1,"228307":1,"228308":1,"228309":1,"228504":1,"228505":1,"228506":1,"228507":1,"228508":1,"228510":1,"228511":1,"228518":3,"228519":3,"228520":3,"228521":3,"228526":3,"228527":3,"228528":3,"228529":3,"228544":1,"228545":1,"229344":1,"229345":1,"229346":1,"229347":1,"229348":1,"229349":1,"229350":1,"229351":1,"229385":2,"229386":2,"229387":2,"229388":2,"229389":2,"229390":2,"229391":2,"229392":2,"229450":1,"229451":1,"229452":1,"229453":1,"229454":1,"229455":1,"229456":1,"229457":1,"229458":1,"229459":1,"229460":1,"229461":1,"229462":1,"229657":1,"229658":1,"229659":1,"229660":1,"229661":1,"229662":1,"230496":1,"230497":1,"230498":1,"230499":1,"230500":1,"230501":1,"230502":1,"230503":1,"230601":1,"230602":1,"230603":1,"230604":1,"230605":1,"230606":1,"230607":1,"230608":1,"230609":1,"230610":1,"230611":1,"230612":1,"230613":1,"230812":1,"230813":1,"231648":1,"231649":1,"231650":1,"231651":1,"231652":1,"231753":1,"231754":1,"231755":1,"231756":1,"231757":1,"231758":1,"231759":1,"231760":1,"231761":1,"231762":1,"231763":1,"232905":1,"232906":1,"232907":1,"232908":1,"232909":1,"232910":1,"232911":1,"232912":1,"232913":1,"234056":1,"234057":1,"234058":1,"234059":1,"234060":1,"234061":1,"234062":1,"234063":1,"235207":1,"235208":1,"235209":1,"235210":1,"235211":1,"235212":1,"235213":1,"235214":1,"236359":1,"236360":1,"236361":1,"236362":1,"236363":1,"236364":1,"236365":1,"236366":1,"237511":1,"237512":1,"237513":1,"237514":1,"237515":1,"237516":1,"237517":1,"237518":1,"238663":1,"238664":1,"238665":1,"238666":1,"238667":1,"238668":1,"238669":1,"238670":1,"239816":1,"239817":1,"239818":1,"239819":1,"239820":1,"239821":1,"239822":1,"240969":1,"240970":1,"240971":1,"240972":1,"240973":1,"240974":1,"242026":1,"242027":1,"242121":1,"242122":1,"242123":1,"242124":1,"242125":1,"242126":1,"243176":1,"243177":1,"243178":1,"243273":1,"243274":1,"243275":1,"243276":1,"243277":1,"243278":1,"244328":1,"244329":1,"244425":1,"244426":1,"244427":1,"244428":1,"244429":1,"244430":1,"245480":1,"245481":1,"245577":1,"245578":1,"245579":1,"245580":1,"245581":1,"245582":1,"246632":1,"246633":1,"246728":1,"246729":1,"246730":1,"246731":1,"246732":1,"246733":1,"246734":1,"247784":1,"247785":1,"247879":1,"247880":1,"247882":1,"247883":1,"247884":1,"247885":1,"247886":1,"248935":1,"248936":1,"248937":1,"249031":1,"249032":1,"249034":1,"249035":1,"249036":1,"249037":1,"250087":1,"250088":1,"250089":1,"250090":1,"250184":1,"250185":1,"250186":1,"250187":1,"250188":1,"251239":1,"251240":1,"251241":1,"251242":1,"251243":1,"251336":1,"251337":1,"251338":1,"251339":1,"252391":1,"252392":1,"252393":1,"252394":1,"252395":1,"252488":1,"252489":1,"252490":1,"252491":1,"253543":1,"253544":1,"253545":1,"253546":1,"253547":1,"253640":1,"253641":1,"253642":1,"254695":1,"254696":1,"254697":1,"254698":1,"254699":1,"254792":1,"254793":1,"255847":1,"255848":1,"255849":1,"255850":1,"255943":1,"255944":1,"256999":1,"257000":1,"257001":1,"258151":1,"258152":1,"258153":1,"259303":1,"259304":1,"259305":1,"259371":1,"259372":1,"259373":1,"259374":1,"259375":1,"259376":1,"259377":1,"259378":1,"260455":1,"260456":1,"260457":1,"260522":1,"260523":1,"260524":1,"260525":1,"260526":1,"260527":1,"260528":1,"260529":1,"260530":1,"260531":1,"261607":1,"261608":1,"261609":1,"261673":1,"261674":1,"261675":1,"261676":1,"261677":1,"261678":1,"261679":1,"261680":1,"261681":1,"261682":1,"261683":1,"262759":1,"262760":1,"262761":1,"262762":1,"262812":1,"262813":1,"262814":1,"262815":1,"262816":1,"262817":1,"262824":1,"262825":1,"262826":1,"262827":1,"262828":1,"262829":1,"262830":1,"262831":1,"262832":1,"262833":1,"262834":1,"263911":1,"263912":1,"263913":1,"263914":1,"263915":1,"263963":1,"263964":1,"263965":1,"263966":1,"263967":1,"263968":1,"263969":1,"263970":1,"263971":1,"263972":1,"263973":1,"263974":1,"263975":1,"263976":1,"263977":1,"263978":1,"263979":1,"263980":1,"263981":1,"263982":1,"263983":1,"263984":1,"263985":1,"265063":1,"265064":1,"265065":1,"265066":1,"265067":1,"265115":1,"265116":1,"265117":1,"265118":1,"265119":1,"265120":1,"265121":1,"265122":1,"265123":1,"265124":1,"265125":1,"265126":1,"265127":1,"265128":1,"265129":1,"265130":1,"265131":1,"265132":1,"265133":1,"265134":1,"265135":1,"265136":1,"265137":1,"266215":1,"266216":1,"266217":1,"266218":1,"266267":1,"266268":1,"266269":1,"266270":1,"266271":1,"266272":1,"266273":1,"266274":1,"266275":1,"266276":1,"266277":1,"266278":1,"266279":1,"266280":1,"266281":1,"266282":1,"266283":1,"266284":1,"266285":1,"266286":1,"266287":1,"266288":1,"266289":1,"266313":1,"267367":1,"267368":1,"267369":1,"267420":1,"267421":1,"267422":1,"267423":1,"267424":1,"267425":1,"267426":1,"267427":1,"267428":1,"267429":1,"267430":1,"267431":1,"267432":1,"267433":1,"267434":1,"267435":1,"267436":1,"267437":1,"267438":1,"267439":1,"267440":1,"267441":1,"267464":1,"267465":1,"268519":1,"268520":1,"268573":1,"268574":1,"268575":1,"268576":1,"268577":1,"268578":1,"268579":1,"268580":1,"268581":1,"268582":1,"268583":1,"268584":1,"268585":1,"268586":1,"268587":1,"268588":1,"268589":1,"268590":1,"268591":1,"268592":1,"268615":1,"268616":1,"268617":1,"269671":1,"269728":1,"269729":1,"269730":1,"269731":1,"269732":1,"269733":1,"269734":1,"269735":1,"269736":1,"269737":1,"269738":1,"269739":1,"269740":1,"269741":1,"269764":1,"269765":1,"269766":1,"269767":1,"269768":1,"269769":1,"270881":1,"270882":1,"270883":1,"270884":1,"270885":1,"270889":1,"270890":1,"270891":1,"270892":1,"270915":1,"270916":1,"270917":1,"270918":1,"270919":1,"270920":1,"270921":1,"272066":1,"272067":1,"272068":1,"272069":1,"272070":1,"273218":1,"273219":1,"273220":1,"273221":1,"273222":1,"274371":1,"274372":1,"274373":1,"274374":1,"275524":1,"275525":1,"275526":1,"276677":1,"276678":1,"277830":1,"278150":1,"278151":1,"278152":1,"278153":1,"278154":1,"278155":1,"278156":1,"278157":1,"278158":1,"278159":1,"278160":1,"278161":1,"278162":1,"278163":1,"279260":1,"279261":1,"279262":1,"279263":1,"279302":1,"279303":1,"279304":1,"279305":1,"279306":1,"279307":1,"279308":1,"279309":1,"279310":1,"279311":1,"279312":1,"279313":1,"279314":1,"279315":1,"279316":1,"280382":1,"280383":1,"280384":1,"280385":1,"280394":1,"280395":1,"280411":1,"280412":1,"280413":1,"280414":1,"280415":1,"280416":1,"280454":1,"280455":1,"280456":1,"280458":1,"280459":1,"280460":1,"280461":1,"280462":1,"280463":1,"280464":1,"280465":1,"280466":1,"280467":1,"280468":1,"280469":1,"280474":1,"280475":1,"280476":1,"280477":1,"280478":1,"281531":1,"281532":1,"281533":1,"281534":1,"281535":1,"281536":1,"281537":1,"281538":1,"281543":1,"281544":1,"281545":1,"281546":1,"281547":1,"281548":1,"281562":1,"281563":1,"281564":1,"281565":1,"281566":1,"281567":1,"281568":1,"281569":1,"281606":1,"281607":1,"281608":1,"281609":1,"281610":1,"281611":1,"281612":1,"281613":1,"281614":1,"281615":1,"281616":1,"281617":1,"281618":1,"281619":1,"281620":1,"281621":1,"281622":1,"281625":1,"281626":1,"281627":1,"281628":1,"281629":1,"281630":1,"282678":1,"282679":1,"282680":1,"282681":1,"282682":1,"282683":1,"282684":1,"282685":1,"282686":1,"282687":1,"282688":1,"282689":1,"282690":1,"282691":1,"282692":1,"282693":1,"282694":1,"282695":1,"282696":1,"282697":1,"282698":1,"282700":1,"282701":1,"282714":1,"282715":1,"282716":1,"282717":1,"282718":1,"282719":1,"282720":1,"282721":1,"282722":1,"282758":1,"282759":1,"282760":1,"282761":1,"282762":1,"282763":1,"282764":1,"282765":1,"282766":1,"282767":1,"282768":1,"282769":1,"282770":1,"282771":1,"282772":1,"282773":1,"282774":1,"282775":1,"282776":1,"282777":1,"282778":1,"282779":1,"282780":1,"282781":1,"282782":1,"283830":1,"283831":1,"283832":1,"283833":1,"283834":1,"283835":1,"283836":1,"283837":1,"283838":1,"283839":1,"283840":1,"283841":1,"283842":1,"283843":1,"283844":1,"283845":1,"283846":1,"283847":1,"283848":1,"283849":1,"283850":1,"283851":1,"283852":1,"283853":1,"283866":1,"283867":1,"283868":1,"283869":1,"283871":1,"283872":1,"283873":1,"283874":1,"283875":1,"283910":1,"283911":1,"283912":1,"283913":1,"283914":1,"283915":1,"283916":1,"283917":1,"283918":1,"283919":1,"283920":1,"283921":1,"283922":1,"283923":1,"283924":1,"283925":1,"283926":1,"283927":1,"283928":1,"283929":1,"283930":1,"283931":1,"283932":1,"283933":1,"283934":1,"284983":1,"284984":1,"284986":1,"284987":1,"284988":1,"284989":1,"284990":1,"284991":1,"284992":1,"284993":1,"284994":1,"284995":1,"284996":1,"284997":1,"284998":1,"284999":1,"285000":1,"285001":1,"285002":1,"285003":1,"285004":1,"285005":1,"285017":1,"285018":1,"285019":1,"285020":1,"285021":1,"285022":1,"285023":1,"285024":1,"285025":1,"285026":1,"285027":1,"285028":1,"285029":1,"285030":1,"285031":1,"285032":1,"285033":1,"285034":1,"285035":1,"285036":1,"285043":1,"285044":1,"285045":1,"285046":1,"285062":1,"285063":1,"285064":1,"285065":1,"285066":1,"285067":1,"285068":1,"285069":1,"285070":1,"285071":1,"285072":1,"285073":1,"285074":1,"285075":1,"285076":1,"285077":1,"285078":1,"285079":1,"285080":1,"285081":1,"285082":1,"285083":1,"285084":1,"285085":1,"285086":1,"286136":1,"286137":1,"286138":1,"286139":1,"286140":1,"286141":1,"286142":1,"286143":1,"286144":1,"286146":1,"286147":1,"286148":1,"286149":1,"286150":1,"286151":1,"286152":1,"286153":1,"286154":1,"286155":1,"286156":1,"286157":1,"286168":1,"286169":1,"286170":1,"286171":1,"286172":1,"286173":1,"286174":1,"286175":1,"286176":1,"286177":1,"286178":1,"286179":1,"286180":1,"286181":1,"286182":1,"286183":1,"286184":1,"286185":1,"286186":1,"286187":1,"286188":1,"286189":1,"286194":1,"286195":1,"286196":1,"286197":1,"286198":1,"286199":1,"286214":1,"286215":1,"286216":1,"286217":1,"286218":1,"286219":1,"286220":1,"286226":1,"286227":1,"286228":1,"286229":1,"286230":1,"286231":1,"286232":1,"286233":1,"286234":1,"286235":1,"286236":1,"286237":1,"287134":3,"287137":3,"287138":3,"287139":3,"287140":3,"287141":3,"287142":3,"287288":1,"287289":1,"287290":1,"287291":1,"287292":1,"287293":1,"287294":1,"287295":1,"287296":1,"287297":1,"287298":1,"287299":1,"287300":1,"287301":1,"287302":1,"287303":1,"287304":1,"287305":1,"287306":1,"287307":1,"287308":1,"287309":1,"287310":1,"287319":1,"287320":1,"287321":1,"287322":1,"287323":1,"287324":1,"287325":1,"287326":1,"287327":1,"287328":1,"287329":1,"287330":1,"287331":1,"287332":1,"287333":1,"287334":1,"287335":1,"287336":1,"287337":1,"287338":1,"287340":1,"287341":1,"287342":1,"287343":1,"287344":1,"287345":1,"287346":1,"287347":1,"287348":1,"287350":1,"287351":1,"287367":1,"287368":1,"287369":1,"287370":1,"287371":1,"287372":1,"287378":1,"287379":1,"287380":1,"287381":1,"287382":1,"287383":1,"287384":1,"287385":1,"287386":1,"287387":1,"287388":1,"288286":3,"288289":3,"288290":3,"288291":3,"288292":3,"288293":3,"288294":3,"288440":1,"288441":1,"288442":1,"288443":1,"288444":1,"288445":1,"288446":1,"288447":1,"288448":1,"288449":1,"288450":1,"288451":1,"288452":1,"288453":1,"288454":1,"288455":1,"288456":1,"288457":1,"288458":1,"288459":1,"288460":1,"288461":1,"288462":1,"288463":1,"288468":1,"288469":1,"288470":1,"288471":1,"288472":1,"288473":1,"288474":1,"288475":1,"288476":1,"288477":1,"288478":1,"288479":1,"288480":1,"288481":1,"288482":1,"288483":1,"288484":1,"288485":1,"288486":1,"288487":1,"288488":1,"288489":1,"288490":1,"288491":1,"288492":1,"288493":1,"288494":1,"288495":1,"288496":1,"288497":1,"288498":1,"288499":1,"288500":1,"288501":1,"288502":1,"288503":1,"288520":1,"288521":1,"288522":1,"288523":1,"288524":1,"288530":1,"288531":1,"288532":1,"288533":1,"288534":1,"288536":1,"288537":1,"288538":1,"288539":1,"288540":1,"289438":3,"289439":3,"289440":3,"289441":3,"289442":3,"289443":3,"289444":3,"289445":3,"289446":3,"289593":1,"289594":1,"289595":1,"289596":1,"289597":1,"289598":1,"289599":1,"289600":1,"289601":1,"289602":1,"289603":1,"289604":1,"289605":1,"289606":1,"289607":1,"289608":1,"289609":1,"289610":1,"289611":1,"289612":1,"289613":1,"289614":1,"289615":1,"289616":1,"289617":1,"289618":1,"289619":1,"289620":1,"289621":1,"289622":1,"289623":1,"289624":1,"289625":1,"289626":1,"289627":1,"289628":1,"289629":1,"289630":1,"289631":1,"289632":1,"289633":1,"289634":1,"289635":1,"289636":1,"289637":1,"289638":1,"289639":1,"289640":1,"289641":1,"289642":1,"289643":1,"289644":1,"289645":1,"289646":1,"289647":1,"289648":1,"289649":1,"289650":1,"289651":1,"289652":1,"289653":1,"289654":1,"289655":1,"289656":1,"289673":1,"289674":1,"289675":1,"289676":1,"289682":1,"289683":1,"289684":1,"289685":1,"289686":1,"289687":1,"289688":1,"289689":1,"289690":1,"289691":1,"289692":1,"290590":3,"290591":3,"290592":3,"290593":3,"290594":3,"290595":3,"290596":3,"290597":3,"290598":3,"290746":1,"290747":1,"290748":1,"290749":1,"290750":1,"290751":1,"290752":1,"290753":1,"290754":1,"290755":1,"290756":1,"290757":1,"290758":1,"290759":1,"290760":1,"290761":1,"290762":1,"290763":1,"290764":1,"290765":1,"290766":1,"290767":1,"290768":1,"290769":1,"290770":1,"290771":1,"290772":1,"290773":1,"290774":1,"290775":1,"290776":1,"290777":1,"290778":1,"290779":1,"290780":1,"290781":1,"290782":1,"290783":1,"290784":1,"290785":1,"290786":1,"290787":1,"290788":1,"290789":1,"290790":1,"290791":1,"290792":1,"290793":1,"290794":1,"290795":1,"290796":1,"290797":1,"290798":1,"290799":1,"290800":1,"290801":1,"290802":1,"290803":1,"290804":1,"290805":1,"290806":1,"290807":1,"290808":1,"290809":1,"290826":1,"290827":1,"290828":1,"290834":1,"290835":1,"290836":1,"290837":1,"290838":1,"290839":1,"290840":1,"290841":1,"290842":1,"290843":1,"291742":3,"291743":3,"291744":3,"291745":3,"291746":3,"291747":3,"291748":3,"291898":1,"291899":1,"291900":1,"291901":1,"291902":1,"291903":1,"291904":1,"291905":1,"291906":1,"291907":1,"291908":1,"291909":1,"291910":1,"291911":1,"291912":1,"291913":1,"291914":1,"291915":1,"291916":1,"291917":1,"291918":1,"291919":1,"291920":1,"291921":1,"291922":1,"291923":1,"291924":1,"291925":1,"291926":1,"291927":1,"291928":1,"291929":1,"291930":1,"291931":1,"291932":1,"291933":1,"291934":1,"291935":1,"291936":1,"291937":1,"291938":1,"291939":1,"291940":1,"291941":1,"291942":1,"291943":1,"291944":1,"291945":1,"291946":1,"291947":1,"291948":1,"291949":1,"291950":1,"291951":1,"291952":1,"291953":1,"291954":1,"291955":1,"291956":1,"291957":1,"291958":1,"291959":1,"291960":1,"291961":1,"291978":1,"291979":1,"291980":1,"291981":1,"291982":1,"291983":1,"291984":1,"291985":1,"291986":1,"291987":1,"291988":1,"291989":1,"291990":1,"291991":1,"291992":1,"291993":1,"291994":1,"292894":3,"292895":3,"292896":3,"292897":3,"292898":3,"292899":3,"292900":3,"293050":1,"293051":1,"293052":1,"293053":1,"293054":1,"293055":1,"293056":1,"293057":1,"293058":1,"293059":1,"293060":1,"293061":1,"293062":1,"293063":1,"293064":1,"293065":1,"293066":1,"293067":1,"293068":1,"293069":1,"293070":1,"293071":1,"293072":1,"293073":1,"293074":1,"293075":1,"293076":1,"293077":1,"293078":1,"293079":1,"293080":1,"293081":1,"293082":1,"293083":1,"293084":1,"293085":1,"293086":1,"293087":1,"293088":1,"293089":1,"293090":1,"293091":1,"293092":1,"293093":1,"293094":1,"293095":1,"293096":1,"293097":1,"293098":1,"293099":1,"293100":1,"293101":1,"293102":1,"293103":1,"293104":1,"293105":1,"293106":1,"293107":1,"293108":1,"293109":1,"293110":1,"293111":1,"293112":1,"293113":1,"293130":1,"293131":1,"293132":1,"293133":1,"293134":1,"293135":1,"293136":1,"293137":1,"293138":1,"293139":1,"293140":1,"293141":1,"293142":1,"293143":1,"293144":1,"293145":1,"293146":1,"294046":3,"294047":3,"294048":3,"294049":3,"294050":3,"294051":3,"294052":3,"294203":1,"294204":1,"294205":1,"294206":1,"294207":1,"294208":1,"294209":1,"294210":1,"294211":1,"294212":1,"294213":1,"294214":1,"294215":1,"294216":1,"294217":1,"294218":1,"294219":1,"294220":1,"294222":1,"294223":1,"294224":1,"294225":1,"294226":1,"294227":1,"294228":1,"294229":1,"294230":1,"294231":1,"294232":1,"294233":1,"294234":1,"294236":1,"294237":1,"294238":1,"294239":1,"294246":1,"294247":1,"294248":1,"294249":1,"294250":1,"294251":1,"294252":1,"294253":1,"294254":1,"294255":1,"294256":1,"294257":1,"294258":1,"294259":1,"294260":1,"294261":1,"294262":1,"294263":1,"294264":1,"294265":1,"294266":1,"294281":1,"294282":1,"294283":1,"294284":1,"294285":1,"294286":1,"294287":1,"294288":1,"294289":1,"294290":1,"294291":1,"294292":1,"294293":1,"294294":1,"294295":1,"294296":1,"294297":1,"294298":1,"295199":3,"295200":3,"295201":3,"295202":3,"295203":3,"295204":3,"295205":3,"295356":1,"295357":1,"295358":1,"295359":1,"295360":1,"295361":1,"295362":1,"295363":1,"295364":1,"295365":1,"295366":1,"295367":1,"295368":1,"295369":1,"295370":1,"295371":1,"295372":1,"295373":1,"295374":1,"295375":1,"295376":1,"295377":1,"295378":1,"295379":1,"295380":1,"295381":1,"295382":1,"295383":1,"295384":1,"295385":1,"295386":1,"295387":1,"295388":1,"295389":1,"295390":1,"295399":1,"295400":1,"295401":1,"295402":1,"295403":1,"295404":1,"295405":1,"295406":1,"295407":1,"295408":1,"295409":1,"295410":1,"295411":1,"295412":1,"295413":1,"295414":1,"295415":1,"295416":1,"295417":1,"295418":1,"295419":1,"295432":1,"295433":1,"295434":1,"295435":1,"295436":1,"295437":1,"295438":1,"295439":1,"295440":1,"295441":1,"295442":1,"295443":1,"295444":1,"295445":1,"295446":1,"295447":1,"295448":1,"295449":1,"295450":1,"296352":3,"296353":3,"296354":3,"296355":3,"296356":3,"296357":3,"296508":1,"296509":1,"296510":1,"296512":1,"296513":1,"296514":1,"296515":1,"296516":1,"296517":1,"296518":1,"296519":1,"296520":1,"296521":1,"296522":1,"296529":1,"296530":1,"296531":1,"296533":1,"296534":1,"296541":1,"296542":1,"296556":1,"296557":1,"296558":1,"296559":1,"296564":1,"296565":1,"296566":1,"296567":1,"296568":1,"296569":1,"296570":1,"296571":1,"296582":1,"296583":1,"296584":1,"296585":1,"296586":1,"296587":1,"296588":1,"296589":1,"296590":1,"296591":1,"296592":1,"296593":1,"296594":1,"296595":1,"296596":1,"296597":1,"296598":1,"296599":1,"296600":1,"296601":1,"296602":1,"296603":1,"297660":1,"297661":1,"297662":1,"297663":1,"297664":1,"297665":1,"297666":1,"297667":1,"297668":1,"297669":1,"297682":1,"297683":1,"297684":1,"297685":1,"297694":1,"297709":1,"297710":1,"297717":1,"297718":1,"297719":1,"297720":1,"297721":1,"297722":1,"297723":1,"297734":1,"297735":1,"297736":1,"297737":1,"297738":1,"297739":1,"297740":1,"297741":1,"297742":1,"297743":1,"297744":1,"297745":1,"297746":1,"297747":1,"297748":1,"297750":1,"297751":1,"297752":1,"297753":1,"297754":1,"297755":1,"297756":1,"298663":1,"298664":1,"298665":1,"298666":1,"298812":1,"298813":1,"298814":1,"298815":1,"298816":1,"298817":1,"298818":1,"298819":1,"298820":1,"298870":1,"298871":1,"298872":1,"298873":1,"298874":1,"298875":1,"298876":1,"298886":1,"298887":1,"298888":1,"298889":1,"298890":1,"298891":1,"298892":1,"298893":1,"298894":1,"298895":1,"298896":1,"298897":1,"298898":1,"298899":1,"298900":1,"298901":1,"298902":1,"298903":1,"298904":1,"298905":1,"298906":1,"298907":1,"298908":1,"299814":1,"299815":1,"299816":1,"299817":1,"299818":1,"299819":1,"299929":1,"299930":1,"299938":1,"299939":1,"299940":1,"299941":1,"299963":1,"299964":1,"299965":1,"299966":1,"299967":1,"299968":1,"299969":1,"299970":1,"299971":1,"299972":1,"300022":1,"300023":1,"300024":1,"300025":1,"300026":1,"300027":1,"300028":1,"300029":1,"300039":1,"300040":1,"300041":1,"300043":1,"300044":1,"300045":1,"300046":1,"300047":1,"300048":1,"300049":1,"300050":1,"300051":1,"300052":1,"300053":1,"300054":1,"300055":1,"300056":1,"300057":1,"300058":1,"300059":1,"300060":1,"300966":1,"300967":1,"300968":1,"300969":1,"300970":1,"300971":1,"300972":1,"300973":1,"300974":1,"301081":1,"301082":1,"301090":1,"301091":1,"301092":1,"301093":1,"301114":1,"301115":1,"301116":1,"301117":1,"301118":1,"301119":1,"301120":1,"301121":1,"301122":1,"301123":1,"301174":1,"301175":1,"301176":1,"301177":1,"301178":1,"301179":1,"301180":1,"301181":1,"301192":1,"301193":1,"301194":1,"301195":1,"301196":1,"301197":1,"301198":1,"301199":1,"301200":1,"301201":1,"301202":1,"301203":1,"301204":1,"301205":1,"301206":1,"301207":1,"301208":1,"301209":1,"301210":1,"301211":1,"301212":1,"302118":1,"302119":1,"302120":1,"302121":1,"302122":1,"302123":1,"302124":1,"302125":1,"302126":1,"302234":1,"302242":1,"302243":1,"302244":1,"302245":1,"302266":1,"302267":1,"302268":1,"302269":1,"302270":1,"302271":1,"302272":1,"302273":1,"302274":1,"302326":1,"302327":1,"302328":1,"302329":1,"302330":1,"302331":1,"302332":1,"302333":1,"302345":1,"302346":1,"302347":1,"302348":1,"302349":1,"302350":1,"302351":1,"302352":1,"302353":1,"302354":1,"302355":1,"302356":1,"302357":1,"302358":1,"302359":1,"302360":1,"302361":1,"302362":1,"302363":1,"303270":1,"303271":1,"303272":1,"303273":1,"303274":1,"303275":1,"303277":1,"303278":1,"303386":1,"303393":1,"303394":1,"303395":1,"303396":1,"303397":1,"303398":1,"303420":1,"303421":1,"303422":1,"303423":1,"303424":1,"303425":1,"303426":1,"303477":1,"303478":1,"303479":1,"303480":1,"303481":1,"303482":1,"303483":1,"303484":1,"303485":1,"303497":1,"303498":1,"303499":1,"303500":1,"303501":1,"303502":1,"303503":1,"303504":1,"303505":1,"303506":1,"303507":1,"303508":1,"303509":1,"303510":1,"303511":1,"303512":1,"303513":1,"303514":1,"304422":1,"304423":1,"304424":1,"304425":1,"304426":1,"304429":1,"304430":1,"304538":1,"304539":1,"304544":1,"304545":1,"304546":1,"304547":1,"304548":1,"304549":1,"304550":1,"304551":1,"304571":1,"304572":1,"304573":1,"304574":1,"304575":1,"304576":1,"304577":1,"304578":1,"304628":1,"304629":1,"304630":1,"304631":1,"304632":1,"304633":1,"304634":1,"304635":1,"304636":1,"304637":1,"304638":1,"304649":1,"304650":1,"304651":1,"304652":1,"304653":1,"304654":1,"304655":1,"304656":1,"304657":1,"304658":1,"304659":1,"304660":1,"304661":1,"304662":1,"304663":1,"304664":1,"304665":1,"304666":1,"305573":1,"305574":1,"305575":1,"305576":1,"305577":1,"305578":1,"305581":1,"305582":1,"305690":1,"305691":1,"305692":1,"305693":1,"305694":1,"305695":1,"305696":1,"305697":1,"305698":1,"305699":1,"305700":1,"305701":1,"305702":1,"305703":1,"305723":1,"305724":1,"305725":1,"305726":1,"305727":1,"305728":1,"305729":1,"305730":1,"305755":1,"305756":1,"305757":1,"305758":1,"305759":1,"305764":1,"305765":1,"305766":1,"305767":1,"305768":1,"305779":1,"305781":1,"305782":1,"305783":1,"305784":1,"305785":1,"305786":1,"305787":1,"305788":1,"305789":1,"305790":1,"305791":1,"305802":1,"305803":1,"305804":1,"305805":1,"305806":1,"305807":1,"305808":1,"305809":1,"305810":1,"305811":1,"305812":1,"305813":1,"305814":1,"305815":1,"305817":1,"305818":1,"306724":1,"306725":1,"306726":1,"306727":1,"306728":1,"306729":1,"306730":1,"306731":1,"306732":1,"306733":1,"306734":1,"306735":1,"306843":1,"306844":1,"306845":1,"306846":1,"306847":1,"306848":1,"306849":1,"306850":1,"306851":1,"306852":1,"306853":1,"306854":1,"306855":1,"306876":1,"306877":1,"306878":1,"306879":1,"306880":1,"306881":1,"306882":1,"306883":1,"306907":1,"306908":1,"306909":1,"306910":1,"306911":1,"306912":1,"306915":1,"306916":1,"306917":1,"306918":1,"306919":1,"306920":1,"306921":1,"306931":1,"306932":1,"306933":1,"306934":1,"306935":1,"306936":1,"306937":1,"306938":1,"306939":1,"306940":1,"306941":1,"306942":1,"306943":1,"306955":1,"306956":1,"306957":1,"306958":1,"306959":1,"306960":1,"306961":1,"306962":1,"306963":1,"306964":1,"306965":1,"306966":1,"306967":1,"306968":1,"306969":1,"306970":1,"307875":1,"307876":1,"307877":1,"307878":1,"307879":1,"307880":1,"307881":1,"307882":1,"307883":1,"307884":1,"307885":1,"307886":1,"307887":1,"307888":1,"307995":1,"307996":1,"307997":1,"307998":1,"307999":1,"308000":1,"308001":1,"308002":1,"308003":1,"308004":1,"308005":1,"308006":1,"308007":1,"308029":1,"308030":1,"308031":1,"308032":1,"308033":1,"308034":1,"308035":1,"308036":1,"308059":1,"308060":1,"308062":1,"308063":1,"308064":1,"308065":1,"308066":1,"308067":1,"308068":1,"308069":1,"308070":1,"308071":1,"308072":1,"308073":1,"308084":1,"308085":1,"308086":1,"308087":1,"308088":1,"308089":1,"308090":1,"308091":1,"308092":1,"308094":1,"308095":1,"308108":1,"308109":1,"308110":1,"308111":1,"308112":1,"308113":1,"308114":1,"308115":1,"308116":1,"308117":1,"308118":1,"308119":1,"308120":1,"308121":1,"308122":1,"308123":1,"309026":1,"309027":1,"309028":1,"309029":1,"309030":1,"309031":1,"309032":1,"309033":1,"309034":1,"309035":1,"309036":1,"309037":1,"309038":1,"309039":1,"309040":1,"309041":1,"309148":1,"309149":1,"309150":1,"309151":1,"309152":1,"309153":1,"309154":1,"309155":1,"309156":1,"309157":1,"309158":1,"309159":1,"309181":1,"309182":1,"309183":1,"309184":1,"309185":1,"309186":1,"309187":1,"309188":1,"309210":1,"309211":1,"309212":1,"309213":1,"309214":1,"309215":1,"309216":1,"309217":1,"309218":1,"309219":1,"309220":1,"309221":1,"309222":1,"309223":1,"309224":1,"309237":1,"309238":1,"309239":1,"309240":1,"309241":1,"309242":1,"309243":1,"309244":1,"309245":1,"309246":1,"309247":1,"309261":1,"309262":1,"309263":1,"309264":1,"309265":1,"309266":1,"309267":1,"309268":1,"309269":1,"309270":1,"309271":1,"309272":1,"309273":1,"309274":1,"309275":1,"309276":1,"310178":1,"310179":1,"310181":1,"310182":1,"310183":1,"310184":1,"310185":1,"310186":1,"310187":1,"310188":1,"310189":1,"310190":1,"310191":1,"310192":1,"310193":1,"310194":1,"310301":1,"310302":1,"310303":1,"310304":1,"310305":1,"310306":1,"310307":1,"310308":1,"310309":1,"310310":1,"310311":1,"310333":1,"310334":1,"310335":1,"310336":1,"310337":1,"310338":1,"310339":1,"310340":1,"310361":1,"310362":1,"310363":1,"310364":1,"310365":1,"310366":1,"310367":1,"310368":1,"310369":1,"310370":1,"310371":1,"310372":1,"310373":1,"310374":1,"310375":1,"310376":1,"310377":1,"310390":1,"310391":1,"310392":1,"310393":1,"310394":1,"310395":1,"310396":1,"310413":1,"310414":1,"310415":1,"310416":1,"310417":1,"310418":1,"310419":1,"310420":1,"310421":1,"310422":1,"310423":1,"310424":1,"310425":1,"310426":1,"310427":1,"310428":1,"311330":1,"311331":1,"311332":1,"311333":1,"311334":1,"311335":1,"311337":1,"311338":1,"311339":1,"311340":1,"311341":1,"311342":1,"311343":1,"311344":1,"311345":1,"311346":1,"311347":1,"311453":1,"311454":1,"311455":1,"311456":1,"311457":1,"311458":1,"311459":1,"311460":1,"311461":1,"311462":1,"311486":1,"311487":1,"311488":1,"311489":1,"311490":1,"311491":1,"311492":1,"311493":1,"311512":1,"311513":1,"311514":1,"311515":1,"311516":1,"311517":1,"311518":1,"311519":1,"311520":1,"311526":1,"311527":1,"311528":1,"311529":1,"311542":1,"311543":1,"311544":1,"311545":1,"311546":1,"311547":1,"311565":1,"311566":1,"311567":1,"311568":1,"311569":1,"311570":1,"311571":1,"311572":1,"311573":1,"311574":1,"311575":1,"311576":1,"311577":1,"311578":1,"311579":1,"311580":1,"311581":1,"312465":1,"312466":1,"312467":1,"312468":1,"312469":1,"312470":1,"312481":1,"312482":1,"312483":1,"312484":1,"312485":1,"312486":1,"312487":1,"312488":1,"312489":1,"312490":1,"312491":1,"312492":1,"312493":1,"312494":1,"312495":1,"312496":1,"312497":1,"312498":1,"312500":1,"312501":1,"312502":1,"312503":1,"312504":1,"312505":1,"312506":1,"312507":1,"312508":1,"312605":1,"312606":1,"312607":1,"312608":1,"312609":1,"312610":1,"312611":1,"312612":1,"312613":1,"312639":1,"312640":1,"312641":1,"312642":1,"312643":1,"312644":1,"312645":1,"312646":1,"312659":1,"312660":1,"312661":1,"312662":1,"312663":1,"312664":1,"312665":1,"312666":1,"312667":1,"312668":1,"312669":1,"312670":1,"312671":1,"312672":1,"312678":1,"312679":1,"312680":1,"312681":1,"312694":1,"312695":1,"312696":1,"312697":1,"312698":1,"312699":1,"312716":1,"312717":1,"312718":1,"312719":1,"312720":1,"312721":1,"312722":1,"312723":1,"312724":1,"312725":1,"312726":1,"312727":1,"312728":1,"312729":1,"312730":1,"312731":1,"312732":1,"312733":1,"312734":1,"313616":1,"313617":1,"313618":1,"313619":1,"313620":1,"313621":1,"313622":1,"313623":1,"313632":1,"313633":1,"313634":1,"313635":1,"313636":1,"313637":1,"313638":1,"313639":1,"313640":1,"313641":1,"313642":1,"313643":1,"313644":1,"313645":1,"313646":1,"313647":1,"313648":1,"313649":1,"313650":1,"313651":1,"313652":1,"313653":1,"313654":1,"313655":1,"313656":1,"313657":1,"313659":1,"313660":1,"313758":1,"313759":1,"313760":1,"313761":1,"313762":1,"313763":1,"313764":1,"313791":1,"313792":1,"313793":1,"313794":1,"313795":1,"313796":1,"313797":1,"313798":1,"313799":1,"313811":1,"313812":1,"313813":1,"313814":1,"313815":1,"313816":1,"313817":1,"313818":1,"313819":1,"313820":1,"313821":1,"313822":1,"313823":1,"313824":1,"313830":1,"313831":1,"313832":1,"313833":1,"313845":1,"313846":1,"313847":1,"313848":1,"313849":1,"313850":1,"313851":1,"313865":1,"313866":1,"313867":1,"313868":1,"313869":1,"313870":1,"313871":1,"313872":1,"313873":1,"313874":1,"313875":1,"313876":1,"313877":1,"313878":1,"313879":1,"313880":1,"313881":1,"313882":1,"313883":1,"313884":1,"313885":1,"313886":1,"314767":1,"314768":1,"314769":1,"314770":1,"314772":1,"314773":1,"314774":1,"314775":1,"314776":1,"314783":1,"314784":1,"314785":1,"314786":1,"314787":1,"314788":1,"314789":1,"314790":1,"314792":1,"314793":1,"314794":1,"314795":1,"314796":1,"314797":1,"314798":1,"314799":1,"314801":1,"314802":1,"314803":1,"314804":1,"314805":1,"314806":1,"314807":1,"314808":1,"314809":1,"314810":1,"314811":1,"314812":1,"314869":1,"314870":1,"314871":1,"314872":1,"314910":1,"314911":1,"314912":1,"314916":1,"314943":1,"314944":1,"314945":1,"314946":1,"314947":1,"314948":1,"314949":1,"314950":1,"314951":1,"314952":1,"314963":1,"314964":1,"314965":1,"314966":1,"314967":1,"314968":1,"314969":1,"314970":1,"314971":1,"314972":1,"314973":1,"314974":1,"314975":1,"314976":1,"314982":1,"314983":1,"314984":1,"314985":1,"314996":1,"314997":1,"314998":1,"314999":1,"315000":1,"315001":1,"315002":1,"315003":1,"315017":1,"315018":1,"315019":1,"315021":1,"315022":1,"315023":1,"315024":1,"315025":1,"315026":1,"315027":1,"315028":1,"315029":1,"315030":1,"315031":1,"315032":1,"315033":1,"315034":1,"315035":1,"315036":1,"315037":1,"315038":1,"315918":1,"315919":1,"315920":1,"315921":1,"315922":1,"315923":1,"315924":1,"315925":1,"315926":1,"315927":1,"315928":1,"315934":1,"315935":1,"315936":1,"315937":1,"315938":1,"315939":1,"315940":1,"315941":1,"315942":1,"315943":1,"315944":1,"315945":1,"315946":1,"315947":1,"315948":1,"315949":1,"315950":1,"315951":1,"315952":1,"315953":1,"315954":1,"315955":1,"315956":1,"315957":1,"315958":1,"315959":1,"315960":1,"315961":1,"315962":1,"315963":1,"315964":1,"315992":2,"315993":2,"315994":2,"315995":2,"316016":1,"316017":1,"316018":1,"316019":1,"316020":1,"316021":1,"316022":1,"316023":1,"316024":1,"316063":1,"316064":1,"316068":1,"316095":1,"316096":1,"316097":1,"316098":1,"316099":1,"316100":1,"316101":1,"316103":1,"316104":1,"316114":1,"316115":1,"316116":1,"316117":1,"316118":1,"316119":1,"316120":1,"316121":1,"316122":1,"316123":1,"316124":1,"316125":1,"316126":1,"316127":1,"316128":1,"316134":1,"316135":1,"316136":1,"316137":1,"316147":1,"316148":1,"316149":1,"316150":1,"316151":1,"316152":1,"316153":1,"316154":1,"316155":1,"316169":1,"316170":1,"316171":1,"316172":1,"316173":1,"316174":1,"316175":1,"316176":1,"316177":1,"316178":1,"316179":1,"316180":1,"316181":1,"316182":1,"316183":1,"316184":1,"316186":1,"316187":1,"316188":1,"316189":1,"316190":1,"317070":1,"317071":1,"317072":1,"317073":1,"317078":1,"317079":1,"317080":1,"317086":1,"317087":1,"317088":1,"317089":1,"317090":1,"317091":1,"317092":1,"317093":1,"317094":1,"317095":1,"317096":1,"317097":1,"317098":1,"317099":1,"317100":1,"317106":1,"317107":1,"317108":1,"317109":1,"317110":1,"317111":1,"317112":1,"317113":1,"317114":1,"317115":1,"317143":2,"317144":2,"317145":2,"317146":2,"317147":2,"317148":2,"317168":1,"317169":1,"317170":1,"317171":1,"317172":1,"317173":1,"317174":1,"317175":1,"317176":1,"317215":1,"317216":1,"317220":1,"317246":1,"317247":1,"317248":1,"317249":1,"317250":1,"317251":1,"317252":1,"317253":1,"317254":1,"317255":1,"317265":1,"317266":1,"317267":1,"317268":1,"317269":1,"317270":1,"317271":1,"317272":1,"317273":1,"317274":1,"317275":1,"317276":1,"317277":1,"317278":1,"317279":1,"317280":1,"317286":1,"317287":1,"317288":1,"317289":1,"317290":1,"317298":1,"317299":1,"317300":1,"317301":1,"317302":1,"317303":1,"317304":1,"317305":1,"317306":1,"317307":1,"317322":1,"317323":1,"317324":1,"317325":1,"317326":1,"317327":1,"317328":1,"317329":1,"317330":1,"317331":1,"317332":1,"317333":1,"317334":1,"317335":1,"317336":1,"317337":1,"317338":1,"317339":1,"317340":1,"317341":1,"318222":1,"318223":1,"318224":1,"318225":1,"318230":1,"318231":1,"318232":1,"318233":1,"318238":1,"318239":1,"318240":1,"318241":1,"318242":1,"318243":1,"318244":1,"318245":1,"318246":1,"318247":1,"318248":1,"318249":1,"318250":1,"318251":1,"318259":1,"318260":1,"318261":1,"318262":1,"318263":1,"318264":1,"318265":1,"318266":1,"318295":2,"318296":2,"318297":2,"318298":2,"318299":2,"318300":2,"318320":1,"318322":1,"318323":1,"318324":1,"318325":1,"318326":1,"318327":1,"318328":1,"318329":1,"318370":1,"318371":1,"318372":1,"318397":1,"318398":1,"318399":1,"318400":1,"318401":1,"318402":1,"318403":1,"318404":1,"318405":1,"318406":1,"318417":1,"318418":1,"318419":1,"318420":1,"318421":1,"318422":1,"318423":1,"318424":1,"318425":1,"318426":1,"318427":1,"318428":1,"318429":1,"318430":1,"318431":1,"318432":1,"318433":1,"318434":1,"318435":1,"318436":1,"318437":1,"318438":1,"318439":1,"318440":1,"318441":1,"318442":1,"318449":1,"318450":1,"318451":1,"318452":1,"318453":1,"318454":1,"318455":1,"318456":1,"318457":1,"318459":1,"318475":1,"318476":1,"318477":1,"318478":1,"318479":1,"318480":1,"318481":1,"318482":1,"318483":1,"318484":1,"318485":1,"318486":1,"318487":1,"318488":1,"318489":1,"318490":1,"318491":1,"318492":1,"319375":1,"319376":1,"319377":1,"319382":1,"319383":1,"319384":1,"319385":1,"319386":1,"319389":1,"319390":1,"319391":1,"319392":1,"319393":1,"319394":1,"319395":1,"319396":1,"319397":1,"319398":1,"319399":1,"319400":1,"319401":1,"319402":1,"319403":1,"319412":1,"319413":1,"319414":1,"319415":1,"319416":1,"319417":1,"319447":2,"319448":2,"319449":2,"319450":2,"319451":2,"319452":2,"319472":1,"319473":1,"319474":1,"319475":1,"319476":1,"319477":1,"319478":1,"319479":1,"319480":1,"319481":1,"319482":1,"319521":1,"319522":1,"319523":1,"319524":1,"319549":1,"319550":1,"319551":1,"319552":1,"319553":1,"319554":1,"319555":1,"319556":1,"319557":1,"319569":1,"319570":1,"319571":1,"319572":1,"319573":1,"319574":1,"319575":1,"319576":1,"319577":1,"319578":1,"319579":1,"319580":1,"319581":1,"319582":1,"319583":1,"319584":1,"319585":1,"319586":1,"319587":1,"319588":1,"319589":1,"319590":1,"319591":1,"319592":1,"319593":1,"319594":1,"319601":1,"319603":1,"319604":1,"319605":1,"319606":1,"319607":1,"319608":1,"319609":1,"319610":1,"319611":1,"319628":1,"319629":1,"319630":1,"319631":1,"319632":1,"319633":1,"319634":1,"319635":1,"319636":1,"319637":1,"319638":1,"319639":1,"319640":1,"319641":1,"319642":1,"319643":1,"319644":1,"320531":1,"320532":1,"320533":1,"320534":1,"320536":1,"320537":1,"320538":1,"320539":1,"320540":1,"320541":1,"320542":1,"320543":1,"320544":1,"320545":1,"320546":1,"320547":1,"320548":1,"320549":1,"320550":1,"320551":1,"320552":1,"320553":1,"320554":1,"320555":1,"320564":1,"320565":1,"320566":1,"320567":1,"320568":1,"320569":1,"320599":2,"320600":2,"320601":2,"320603":2,"320604":2,"320605":2,"320625":1,"320626":1,"320627":1,"320628":1,"320629":1,"320630":1,"320631":1,"320633":1,"320634":1,"320673":1,"320674":1,"320675":1,"320676":1,"320701":1,"320702":1,"320704":1,"320705":1,"320706":1,"320707":1,"320708":1,"320709":1,"320721":1,"320722":1,"320724":1,"320725":1,"320726":1,"320727":1,"320728":1,"320729":1,"320730":1,"320731":1,"320732":1,"320733":1,"320734":1,"320735":1,"320736":1,"320737":1,"320738":1,"320739":1,"320740":1,"320741":1,"320742":1,"320743":1,"320744":1,"320745":1,"320746":1,"320753":1,"320754":1,"320755":1,"320756":1,"320757":1,"320758":1,"320759":1,"320760":1,"320761":1,"320762":1,"320763":1,"320780":1,"320781":1,"320782":1,"320783":1,"320784":1,"320785":1,"320786":1,"320787":1,"320788":1,"320789":1,"320790":1,"320791":1,"320792":1,"320793":1,"320794":1,"320795":1,"320796":1,"321684":1,"321685":1,"321686":1,"321687":1,"321688":1,"321689":1,"321690":1,"321691":1,"321692":1,"321693":1,"321694":1,"321695":1,"321696":1,"321697":1,"321698":1,"321699":1,"321700":1,"321701":1,"321702":1,"321703":1,"321704":1,"321705":1,"321706":1,"321707":1,"321716":1,"321717":1,"321718":1,"321719":1,"321720":1,"321721":1,"321751":2,"321752":2,"321753":2,"321754":2,"321755":2,"321756":2,"321757":2,"321758":2,"321778":1,"321779":1,"321780":1,"321781":1,"321782":1,"321783":1,"321784":1,"321785":1,"321786":1,"321825":1,"321826":1,"321827":1,"321828":1,"321854":1,"321855":1,"321856":1,"321857":1,"321858":1,"321859":1,"321860":1,"321861":1,"321862":1,"321873":1,"321874":1,"321875":1,"321876":1,"321877":1,"321878":1,"321879":1,"321880":1,"321881":1,"321882":1,"321883":1,"321884":1,"321885":1,"321886":1,"321887":1,"321888":1,"321889":1,"321890":1,"321891":1,"321892":1,"321893":1,"321894":1,"321895":1,"321896":1,"321897":1,"321907":1,"321908":1,"321909":1,"321910":1,"321911":1,"321912":1,"321913":1,"321914":1,"321915":1,"321932":1,"321933":1,"321934":1,"321935":1,"321936":1,"321937":1,"321938":1,"321939":1,"321941":1,"321942":1,"321943":1,"321944":1,"321945":1,"321946":1,"321947":1,"322024":1,"322025":1,"322026":1,"322027":1,"322837":1,"322838":1,"322839":1,"322840":1,"322841":1,"322842":1,"322843":1,"322844":1,"322845":1,"322846":1,"322847":1,"322848":1,"322849":1,"322850":1,"322851":1,"322852":1,"322853":1,"322854":1,"322855":1,"322856":1,"322857":1,"322858":1,"322902":2,"322903":2,"322904":2,"322905":2,"322906":2,"322907":2,"322908":2,"322909":2,"322910":2,"322911":2,"322912":2,"322913":2,"322930":1,"322931":1,"322932":1,"322933":1,"322934":1,"322935":1,"322936":1,"322937":1,"322938":1,"322977":1,"322978":1,"322979":1,"322980":1,"323007":1,"323008":1,"323009":1,"323010":1,"323011":1,"323012":1,"323013":1,"323014":1,"323015":1,"323025":1,"323026":1,"323027":1,"323028":1,"323029":1,"323030":1,"323031":1,"323032":1,"323033":1,"323034":1,"323035":1,"323036":1,"323037":1,"323038":1,"323039":1,"323040":1,"323041":1,"323042":1,"323043":1,"323044":1,"323045":1,"323046":1,"323047":1,"323048":1,"323049":1,"323060":1,"323061":1,"323062":1,"323063":1,"323064":1,"323065":1,"323066":1,"323067":1,"323068":1,"323084":1,"323086":1,"323087":1,"323088":1,"323089":1,"323090":1,"323091":1,"323092":1,"323093":1,"323094":1,"323095":1,"323096":1,"323097":1,"323098":1,"323175":1,"323176":1,"323177":1,"323178":1,"323179":1,"323180":1,"323184":1,"323185":1,"323989":1,"323990":1,"323991":1,"323992":1,"323993":1,"323994":1,"323995":1,"323996":1,"323997":1,"323998":1,"324000":1,"324001":1,"324002":1,"324003":1,"324004":1,"324005":1,"324006":1,"324007":1,"324008":1,"324009":1,"324053":2,"324054":2,"324055":2,"324056":2,"324057":2,"324058":2,"324059":2,"324061":2,"324062":2,"324063":2,"324064":2,"324065":2,"324066":2,"324081":1,"324082":1,"324083":1,"324084":1,"324085":1,"324086":1,"324087":1,"324088":1,"324089":1,"324129":1,"324130":1,"324131":1,"324132":1,"324159":1,"324160":1,"324161":1,"324162":1,"324163":1,"324164":1,"324165":1,"324166":1,"324167":1,"324168":1,"324180":1,"324181":1,"324182":1,"324183":1,"324184":1,"324185":1,"324186":1,"324187":1,"324188":1,"324189":1,"324190":1,"324191":1,"324192":1,"324193":1,"324194":1,"324195":1,"324196":1,"324197":1,"324198":1,"324199":1,"324200":1,"324201":1,"324202":1,"324212":1,"324213":1,"324214":1,"324215":1,"324216":1,"324217":1,"324218":1,"324219":1,"324220":1,"324221":1,"324222":1,"324223":1,"324236":1,"324237":1,"324238":1,"324239":1,"324240":1,"324241":1,"324242":1,"324243":1,"324244":1,"324245":1,"324246":1,"324247":1,"324248":1,"324249":1,"324327":1,"324328":1,"324329":1,"324330":1,"324331":1,"324332":1,"324333":1,"324334":1,"324335":1,"324336":1,"324337":1,"324338":1,"324339":1,"325140":1,"325141":1,"325142":1,"325143":1,"325144":1,"325145":1,"325146":1,"325147":1,"325148":1,"325149":1,"325150":1,"325151":1,"325152":1,"325153":1,"325154":1,"325155":1,"325156":1,"325157":1,"325158":1,"325159":1,"325160":1,"325161":1,"325205":2,"325206":2,"325207":2,"325208":2,"325209":2,"325210":2,"325211":2,"325212":2,"325213":2,"325214":2,"325215":2,"325216":2,"325217":2,"325218":2,"325232":1,"325233":1,"325234":1,"325235":1,"325236":1,"325237":1,"325238":1,"325239":1,"325240":1,"325241":1,"325280":1,"325281":1,"325282":1,"325283":1,"325284":1,"325311":1,"325312":1,"325313":1,"325314":1,"325315":1,"325316":1,"325317":1,"325318":1,"325319":1,"325320":1,"325333":1,"325334":1,"325335":1,"325336":1,"325338":1,"325339":1,"325340":1,"325341":1,"325342":1,"325343":1,"325344":1,"325345":1,"325346":1,"325348":1,"325349":1,"325350":1,"325351":1,"325352":1,"325353":1,"325354":1,"325355":1,"325356":1,"325357":1,"325364":1,"325365":1,"325366":1,"325367":1,"325368":1,"325369":1,"325370":1,"325371":1,"325372":1,"325373":1,"325374":1,"325375":1,"325376":1,"325389":1,"325390":1,"325391":1,"325392":1,"325393":1,"325394":1,"325395":1,"325396":1,"325397":1,"325398":1,"325399":1,"325400":1,"325478":1,"325479":1,"325480":1,"325481":1,"325482":1,"325483":1,"325484":1,"325485":1,"325486":1,"325487":1,"325488":1,"325489":1,"325490":1,"325491":1,"325492":1,"326291":1,"326292":1,"326293":1,"326294":1,"326295":1,"326296":1,"326297":1,"326298":1,"326299":1,"326300":1,"326301":1,"326302":1,"326303":1,"326304":1,"326305":1,"326306":1,"326307":1,"326308":1,"326310":1,"326311":1,"326312":1,"326313":1,"326357":2,"326358":2,"326359":2,"326360":2,"326361":2,"326362":2,"326363":2,"326364":2,"326365":2,"326366":2,"326367":2,"326368":2,"326369":2,"326370":2,"326381":1,"326382":1,"326383":1,"326384":1,"326385":1,"326386":1,"326387":1,"326388":1,"326389":1,"326390":1,"326391":1,"326392":1,"326393":1,"326431":1,"326432":1,"326433":1,"326434":1,"326435":1,"326436":1,"326437":1,"326463":1,"326464":1,"326465":1,"326466":1,"326467":1,"326468":1,"326469":1,"326471":1,"326472":1,"326486":1,"326487":1,"326488":1,"326489":1,"326490":1,"326491":1,"326492":1,"326493":1,"326494":1,"326495":1,"326496":1,"326497":1,"326498":1,"326499":1,"326500":1,"326501":1,"326502":1,"326503":1,"326504":1,"326505":1,"326506":1,"326507":1,"326508":1,"326509":1,"326517":1,"326518":1,"326519":1,"326520":1,"326521":1,"326522":1,"326523":1,"326524":1,"326525":1,"326526":1,"326528":1,"326529":1,"326542":1,"326543":1,"326544":1,"326545":1,"326546":1,"326547":1,"326548":1,"326549":1,"326550":1,"326551":1,"326630":1,"326631":1,"326632":1,"326633":1,"326634":1,"326635":1,"326636":1,"326637":1,"326638":1,"326639":1,"326640":1,"326641":1,"326642":1,"326643":1,"326644":1,"326645":1,"327442":1,"327443":1,"327444":1,"327445":1,"327446":1,"327447":1,"327448":1,"327449":1,"327450":1,"327451":1,"327452":1,"327453":1,"327454":1,"327455":1,"327456":1,"327457":1,"327458":1,"327459":1,"327460":1,"327461":1,"327462":1,"327463":1,"327464":1,"327465":1,"327509":2,"327511":2,"327512":2,"327513":2,"327514":2,"327515":2,"327516":2,"327517":2,"327518":2,"327519":2,"327520":2,"327521":2,"327522":2,"327532":1,"327533":1,"327534":1,"327535":1,"327536":1,"327537":1,"327538":1,"327539":1,"327540":1,"327541":1,"327542":1,"327543":1,"327544":1,"327578":1,"327579":1,"327580":1,"327581":1,"327582":1,"327583":1,"327584":1,"327585":1,"327586":1,"327587":1,"327588":1,"327589":1,"327590":1,"327615":1,"327616":1,"327617":1,"327618":1,"327619":1,"327620":1,"327621":1,"327622":1,"327623":1,"327639":1,"327640":1,"327641":1,"327642":1,"327643":1,"327644":1,"327645":1,"327646":1,"327647":1,"327648":1,"327649":1,"327650":1,"327651":1,"327652":1,"327653":1,"327654":1,"327655":1,"327656":1,"327657":1,"327658":1,"327659":1,"327661":1,"327669":1,"327670":1,"327671":1,"327672":1,"327673":1,"327674":1,"327675":1,"327676":1,"327677":1,"327678":1,"327679":1,"327680":1,"327681":1,"327695":1,"327696":1,"327697":1,"327698":1,"327699":1,"327700":1,"327701":1,"327702":1,"327785":1,"327786":1,"327787":1,"327788":1,"327789":1,"327790":1,"327791":1,"327794":1,"327795":1,"327796":1,"328593":1,"328594":1,"328595":1,"328596":1,"328597":1,"328598":1,"328599":1,"328600":1,"328601":1,"328602":1,"328603":1,"328604":1,"328605":1,"328606":1,"328607":1,"328608":1,"328609":1,"328610":1,"328611":1,"328612":1,"328613":1,"328614":1,"328615":1,"328616":1,"328617":1,"328618":1,"328661":2,"328662":2,"328663":2,"328664":2,"328665":2,"328666":2,"328667":2,"328668":2,"328669":2,"328670":2,"328671":2,"328672":2,"328673":2,"328680":1,"328681":1,"328682":1,"328683":1,"328684":1,"328685":1,"328686":1,"328688":1,"328689":1,"328690":1,"328691":1,"328692":1,"328693":1,"328694":1,"328695":1,"328728":1,"328729":1,"328730":1,"328731":1,"328732":1,"328733":1,"328734":1,"328735":1,"328736":1,"328737":1,"328738":1,"328739":1,"328740":1,"328741":1,"328742":1,"328743":1,"328767":1,"328768":1,"328769":1,"328770":1,"328771":1,"328772":1,"328773":1,"328774":1,"328792":1,"328793":1,"328794":1,"328795":1,"328796":1,"328797":1,"328798":1,"328799":1,"328800":1,"328801":1,"328802":1,"328803":1,"328804":1,"328805":1,"328806":1,"328807":1,"328808":1,"328809":1,"328810":1,"328811":1,"328812":1,"328821":1,"328822":1,"328823":1,"328824":1,"328825":1,"328826":1,"328827":1,"328828":1,"328829":1,"328830":1,"328831":1,"328832":1,"328847":1,"328848":1,"328849":1,"328850":1,"328851":1,"328852":1,"328853":1,"328854":1,"328938":1,"328939":1,"328940":1,"328941":1,"328942":1,"328943":1,"328944":1,"328945":1,"328946":1,"328947":1,"329745":1,"329746":1,"329748":1,"329749":1,"329750":1,"329751":1,"329752":1,"329753":1,"329754":1,"329755":1,"329756":1,"329757":1,"329758":1,"329759":1,"329760":1,"329761":1,"329762":1,"329763":1,"329764":1,"329765":1,"329766":1,"329767":1,"329768":1,"329769":1,"329770":1,"329771":1,"329800":1,"329801":1,"329802":1,"329803":1,"329804":1,"329813":2,"329814":2,"329815":2,"329816":2,"329817":2,"329818":2,"329819":2,"329820":2,"329821":2,"329822":2,"329823":2,"329824":2,"329832":1,"329834":1,"329835":1,"329836":1,"329837":1,"329838":1,"329839":1,"329840":1,"329841":1,"329842":1,"329843":1,"329844":1,"329845":1,"329846":1,"329847":1,"329880":1,"329881":1,"329882":1,"329883":1,"329884":1,"329885":1,"329886":1,"329887":1,"329888":1,"329889":1,"329890":1,"329891":1,"329892":1,"329893":1,"329894":1,"329895":1,"329896":1,"329918":1,"329919":1,"329920":1,"329921":1,"329922":1,"329923":1,"329924":1,"329925":1,"329944":1,"329945":1,"329946":1,"329947":1,"329948":1,"329949":1,"329950":1,"329951":1,"329952":1,"329953":1,"329954":1,"329955":1,"329956":1,"329957":1,"329958":1,"329959":1,"329960":1,"329961":1,"329962":1,"329963":1,"329974":1,"329975":1,"329976":1,"329977":1,"329978":1,"329979":1,"329980":1,"329981":1,"329998":1,"329999":1,"330000":1,"330001":1,"330002":1,"330003":1,"330004":1,"330005":1,"330006":1,"330090":1,"330094":1,"330095":1,"330096":1,"330097":1,"330098":1,"330099":1,"330898":1,"330899":1,"330900":1,"330901":1,"330902":1,"330903":1,"330904":1,"330905":1,"330906":1,"330907":1,"330908":1,"330909":1,"330910":1,"330911":1,"330912":1,"330913":1,"330914":1,"330915":1,"330916":1,"330917":1,"330918":1,"330919":1,"330920":1,"330921":1,"330922":1,"330923":1,"330951":1,"330952":1,"330953":1,"330954":1,"330955":1,"330956":1,"330965":2,"330966":2,"330967":2,"330968":2,"330969":2,"330970":2,"330971":2,"330972":2,"330973":2,"330974":2,"330975":2,"330976":2,"330984":1,"330985":1,"330986":1,"330987":1,"330989":1,"330990":1,"330991":1,"330992":1,"330993":1,"330994":1,"330995":1,"330996":1,"330997":1,"330998":1,"330999":1,"331031":1,"331032":1,"331033":1,"331034":1,"331035":1,"331036":1,"331037":1,"331038":1,"331039":1,"331040":1,"331041":1,"331042":1,"331043":1,"331044":1,"331045":1,"331046":1,"331047":1,"331048":1,"331069":1,"331070":1,"331071":1,"331072":1,"331073":1,"331074":1,"331075":1,"331076":1,"331077":1,"331096":1,"331097":1,"331098":1,"331099":1,"331100":1,"331101":1,"331102":1,"331103":1,"331104":1,"331105":1,"331106":1,"331107":1,"331108":1,"331109":1,"331110":1,"331111":1,"331112":1,"331113":1,"331114":1,"331126":1,"331127":1,"331128":1,"331129":1,"331130":1,"331131":1,"331132":1,"331149":1,"331150":1,"331151":1,"331152":1,"331153":1,"331154":1,"331155":1,"331156":1,"331157":1,"331158":1,"331242":1,"331246":1,"331247":1,"331248":1,"331249":1,"331250":1,"331251":1,"332051":1,"332052":1,"332053":1,"332054":1,"332055":1,"332056":1,"332057":1,"332058":1,"332059":1,"332060":1,"332061":1,"332062":1,"332063":1,"332064":1,"332065":1,"332066":1,"332067":1,"332068":1,"332069":1,"332070":1,"332071":1,"332072":1,"332073":1,"332074":1,"332075":1,"332076":1,"332102":1,"332104":1,"332105":1,"332106":1,"332107":1,"332108":1,"332119":2,"332120":2,"332121":2,"332122":2,"332123":2,"332124":2,"332125":2,"332126":2,"332128":2,"332138":1,"332139":1,"332140":1,"332141":1,"332142":1,"332143":1,"332144":1,"332145":1,"332146":1,"332147":1,"332148":1,"332150":1,"332151":1,"332183":1,"332184":1,"332185":1,"332186":1,"332187":1,"332188":1,"332189":1,"332190":1,"332191":1,"332192":1,"332193":1,"332194":1,"332195":1,"332196":1,"332197":1,"332198":1,"332199":1,"332200":1,"332221":1,"332222":1,"332223":1,"332224":1,"332225":1,"332226":1,"332227":1,"332228":1,"332229":1,"332248":1,"332249":1,"332250":1,"332251":1,"332252":1,"332253":1,"332254":1,"332255":1,"332256":1,"332257":1,"332258":1,"332259":1,"332260":1,"332261":1,"332262":1,"332263":1,"332264":1,"332265":1,"332266":1,"332278":1,"332279":1,"332280":1,"332281":1,"332282":1,"332283":1,"332299":1,"332300":1,"332301":1,"332302":1,"332303":1,"332304":1,"332305":1,"332306":1,"332307":1,"332308":1,"332309":1,"332310":1,"332311":1,"332395":1,"332396":1,"332397":1,"332398":1,"332399":1,"332400":1,"332401":1,"332402":1,"333204":1,"333205":1,"333206":1,"333207":1,"333208":1,"333209":1,"333210":1,"333211":1,"333212":1,"333213":1,"333214":1,"333215":1,"333216":1,"333217":1,"333218":1,"333219":1,"333220":1,"333221":1,"333222":1,"333223":1,"333224":1,"333225":1,"333229":1,"333253":1,"333254":1,"333255":1,"333256":1,"333257":1,"333258":1,"333259":1,"333271":2,"333272":2,"333273":2,"333274":2,"333275":2,"333276":2,"333277":2,"333278":2,"333279":2,"333280":2,"333290":1,"333291":1,"333292":1,"333293":1,"333294":1,"333295":1,"333296":1,"333297":1,"333298":1,"333299":1,"333300":1,"333301":1,"333302":1,"333303":1,"333335":1,"333336":1,"333337":1,"333338":1,"333339":1,"333340":1,"333341":1,"333342":1,"333343":1,"333344":1,"333345":1,"333346":1,"333347":1,"333348":1,"333349":1,"333350":1,"333351":1,"333352":1,"333353":1,"333360":1,"333373":1,"333374":1,"333375":1,"333376":1,"333377":1,"333378":1,"333379":1,"333380":1,"333381":1,"333382":1,"333396":1,"333397":1,"333398":1,"333399":1,"333400":1,"333401":1,"333402":1,"333403":1,"333404":1,"333405":1,"333406":1,"333407":1,"333408":1,"333409":1,"333410":1,"333411":1,"333413":1,"333414":1,"333415":1,"333416":1,"333417":1,"333418":1,"333430":1,"333431":1,"333432":1,"333433":1,"333434":1,"333435":1,"333451":1,"333452":1,"333453":1,"333454":1,"333455":1,"333456":1,"333457":1,"333458":1,"333459":1,"333460":1,"333461":1,"333462":1,"333463":1,"333464":1,"333548":1,"333549":1,"334357":1,"334358":1,"334359":1,"334360":1,"334361":1,"334362":1,"334363":1,"334364":1,"334365":1,"334366":1,"334367":1,"334368":1,"334369":1,"334370":1,"334371":1,"334372":1,"334373":1,"334374":1,"334375":1,"334376":1,"334377":1,"334378":1,"334381":1,"334405":1,"334406":1,"334407":1,"334408":1,"334409":1,"334410":1,"334426":2,"334428":2,"334429":2,"334430":2,"334431":2,"334432":2,"334442":1,"334443":1,"334444":1,"334445":1,"334446":1,"334447":1,"334448":1,"334449":1,"334450":1,"334451":1,"334452":1,"334453":1,"334454":1,"334455":1,"334456":1,"334487":1,"334488":1,"334489":1,"334490":1,"334491":1,"334492":1,"334493":1,"334494":1,"334495":1,"334496":1,"334497":1,"334498":1,"334499":1,"334500":1,"334501":1,"334502":1,"334503":1,"334504":1,"334505":1,"334506":1,"334507":1,"334508":1,"334509":1,"334510":1,"334511":1,"334512":1,"334513":1,"334526":1,"334527":1,"334528":1,"334529":1,"334530":1,"334531":1,"334532":1,"334533":1,"334534":1,"334535":1,"334547":1,"334548":1,"334549":1,"334550":1,"334551":1,"334552":1,"334553":1,"334554":1,"334555":1,"334556":1,"334557":1,"334558":1,"334559":1,"334560":1,"334561":1,"334562":1,"334563":1,"334564":1,"334565":1,"334566":1,"334567":1,"334568":1,"334569":1,"334570":1,"334571":1,"334581":1,"334582":1,"334583":1,"334584":1,"334585":1,"334603":1,"334604":1,"334605":1,"334607":1,"334608":1,"334609":1,"334610":1,"334611":1,"334612":1,"334613":1,"334614":1,"334615":1,"334616":1,"334617":1,"334618":1,"334619":1,"334620":1,"334621":1,"335509":1,"335510":1,"335511":1,"335512":1,"335513":1,"335514":1,"335515":1,"335516":1,"335517":1,"335518":1,"335519":1,"335520":1,"335521":1,"335522":1,"335523":1,"335524":1,"335525":1,"335526":1,"335527":1,"335528":1,"335529":1,"335530":1,"335531":1,"335532":1,"335558":1,"335559":1,"335560":1,"335561":1,"335562":1,"335594":1,"335595":1,"335596":1,"335597":1,"335598":1,"335599":1,"335600":1,"335601":1,"335602":1,"335603":1,"335604":1,"335605":1,"335606":1,"335607":1,"335608":1,"335609":1,"335636":1,"335637":1,"335638":1,"335639":1,"335640":1,"335641":1,"335642":1,"335643":1,"335644":1,"335645":1,"335646":1,"335647":1,"335648":1,"335649":1,"335650":1,"335651":1,"335656":1,"335657":1,"335658":1,"335659":1,"335660":1,"335661":1,"335662":1,"335663":1,"335664":1,"335665":1,"335679":1,"335680":1,"335681":1,"335682":1,"335683":1,"335684":1,"335685":1,"335686":1,"335687":1,"335688":1,"335699":1,"335700":1,"335701":1,"335702":1,"335703":1,"335704":1,"335705":1,"335706":1,"335707":1,"335709":1,"335710":1,"335711":1,"335712":1,"335713":1,"335714":1,"335715":1,"335716":1,"335717":1,"335718":1,"335719":1,"335720":1,"335721":1,"335722":1,"335723":1,"335724":1,"335732":1,"335733":1,"335734":1,"335735":1,"335736":1,"335756":1,"335757":1,"335758":1,"335759":1,"335760":1,"335761":1,"335762":1,"335763":1,"335764":1,"335765":1,"335766":1,"335767":1,"335768":1,"335769":1,"335770":1,"335771":1,"335772":1,"335773":1,"336661":1,"336662":1,"336663":1,"336664":1,"336665":1,"336666":1,"336667":1,"336668":1,"336669":1,"336670":1,"336671":1,"336672":1,"336673":1,"336674":1,"336675":1,"336676":1,"336677":1,"336678":1,"336679":1,"336680":1,"336681":1,"336682":1,"336683":1,"336709":1,"336710":1,"336711":1,"336712":1,"336713":1,"336714":1,"336715":1,"336746":1,"336748":1,"336749":1,"336750":1,"336751":1,"336752":1,"336753":1,"336754":1,"336755":1,"336756":1,"336757":1,"336758":1,"336759":1,"336760":1,"336761":1,"336788":1,"336789":1,"336790":1,"336791":1,"336792":1,"336793":1,"336794":1,"336795":1,"336796":1,"336797":1,"336798":1,"336799":1,"336800":1,"336808":1,"336809":1,"336810":1,"336811":1,"336812":1,"336813":1,"336814":1,"336815":1,"336831":1,"336832":1,"336833":1,"336834":1,"336835":1,"336836":1,"336837":1,"336838":1,"336839":1,"336840":1,"336851":1,"336853":1,"336854":1,"336855":1,"336856":1,"336857":1,"336858":1,"336859":1,"336860":1,"336861":1,"336862":1,"336863":1,"336864":1,"336865":1,"336866":1,"336867":1,"336868":1,"336869":1,"336870":1,"336871":1,"336872":1,"336873":1,"336874":1,"336875":1,"336876":1,"336877":1,"336883":1,"336884":1,"336885":1,"336886":1,"336887":1,"336909":1,"336910":1,"336911":1,"336912":1,"336913":1,"336914":1,"336915":1,"336916":1,"336917":1,"336918":1,"336919":1,"336920":1,"336921":1,"336922":1,"336923":1,"336924":1,"336925":1,"337813":1,"337814":1,"337825":1,"337826":1,"337827":1,"337829":1,"337830":1,"337831":1,"337832":1,"337833":1,"337834":1,"337865":1,"337866":1,"337867":1,"337868":1,"337897":1,"337898":1,"337899":1,"337900":1,"337901":1,"337902":1,"337903":1,"337904":1,"337905":1,"337906":1,"337907":1,"337908":1,"337909":1,"337911":1,"337912":1,"337913":1,"337940":1,"337941":1,"337942":1,"337943":1,"337944":1,"337945":1,"337946":1,"337947":1,"337948":1,"337949":1,"337950":1,"337951":1,"337952":1,"337963":1,"337964":1,"337965":1,"337966":1,"337983":1,"337984":1,"337985":1,"337986":1,"337987":1,"337988":1,"337989":1,"337990":1,"337991":1,"337992":1,"338004":1,"338005":1,"338006":1,"338007":1,"338008":1,"338009":1,"338010":1,"338011":1,"338012":1,"338013":1,"338014":1,"338015":1,"338016":1,"338017":1,"338018":1,"338019":1,"338020":1,"338021":1,"338022":1,"338023":1,"338024":1,"338025":1,"338026":1,"338027":1,"338028":1,"338029":1,"338035":1,"338036":1,"338037":1,"338038":1,"338039":1,"338062":1,"338063":1,"338064":1,"338065":1,"338066":1,"338067":1,"338068":1,"338069":1,"338070":1,"338071":1,"338072":1,"338074":1,"338075":1,"338965":1,"338966":1,"338977":1,"338978":1,"338979":1,"338980":1,"338981":1,"338982":1,"338983":1,"338984":1,"338985":1,"338986":1,"339018":1,"339019":1,"339020":1,"339021":1,"339022":1,"339023":1,"339048":1,"339049":1,"339050":1,"339051":1,"339052":1,"339053":1,"339054":1,"339055":1,"339056":1,"339057":1,"339058":1,"339059":1,"339060":1,"339061":1,"339062":1,"339092":1,"339093":1,"339094":1,"339095":1,"339096":1,"339097":1,"339098":1,"339099":1,"339100":1,"339101":1,"339102":1,"339103":1,"339104":1,"339135":1,"339136":1,"339137":1,"339138":1,"339139":1,"339140":1,"339141":1,"339143":1,"339144":1,"339145":1,"339157":1,"339158":1,"339159":1,"339160":1,"339161":1,"339162":1,"339163":1,"339164":1,"339165":1,"339166":1,"339167":1,"339168":1,"339169":1,"339170":1,"339171":1,"339172":1,"339173":1,"339174":1,"339175":1,"339176":1,"339177":1,"339178":1,"339179":1,"339180":1,"339181":1,"339187":1,"339188":1,"339189":1,"339190":1,"339191":1,"339214":1,"339215":1,"339216":1,"339217":1,"339218":1,"339219":1,"339220":1,"339221":1,"339222":1,"339223":1,"339224":1,"339225":1,"339226":1,"340117":1,"340118":1,"340129":1,"340130":1,"340131":1,"340132":1,"340133":1,"340134":1,"340135":1,"340136":1,"340137":1,"340138":1,"340139":1,"340149":1,"340150":1,"340151":1,"340152":1,"340153":1,"340154":1,"340171":1,"340172":1,"340173":1,"340174":1,"340175":1,"340200":1,"340201":1,"340202":1,"340203":1,"340204":1,"340205":1,"340206":1,"340208":1,"340209":1,"340210":1,"340211":1,"340212":1,"340213":1,"340245":1,"340246":1,"340247":1,"340248":1,"340249":1,"340286":1,"340287":1,"340288":1,"340289":1,"340290":1,"340291":1,"340292":1,"340293":1,"340294":1,"340295":1,"340296":1,"340297":1,"340298":1,"340310":1,"340311":1,"340312":1,"340313":1,"340314":1,"340315":1,"340316":1,"340317":1,"340318":1,"340319":1,"340320":1,"340321":1,"340322":1,"340323":1,"340324":1,"340325":1,"340326":1,"340327":1,"340328":1,"340329":1,"340330":1,"340331":1,"340332":1,"340340":1,"340341":1,"340342":1,"340343":1,"340365":1,"340366":1,"340367":1,"340368":1,"340369":1,"340370":1,"340371":1,"340372":1,"340373":1,"340374":1,"340375":1,"340376":1,"340377":1,"341273":1,"341277":1,"341281":1,"341282":1,"341283":1,"341284":1,"341285":1,"341286":1,"341287":1,"341288":1,"341289":1,"341290":1,"341291":1,"341292":1,"341299":1,"341300":1,"341301":1,"341302":1,"341303":1,"341304":1,"341305":1,"341306":1,"341323":1,"341325":1,"341326":1,"341327":1,"341353":1,"341354":1,"341355":1,"341356":1,"341357":1,"341358":1,"341359":1,"341360":1,"341361":1,"341362":1,"341363":1,"341364":1,"341398":1,"341399":1,"341400":1,"341437":1,"341438":1,"341439":1,"341440":1,"341441":1,"341442":1,"341443":1,"341444":1,"341445":1,"341446":1,"341447":1,"341448":1,"341449":1,"341450":1,"341451":1,"341462":1,"341463":1,"341464":1,"341465":1,"341466":1,"341467":1,"341468":1,"341469":1,"341470":1,"341471":1,"341472":1,"341473":1,"341474":1,"341475":1,"341476":1,"341477":1,"341478":1,"341479":1,"341480":1,"341481":1,"341482":1,"341483":1,"341493":1,"341494":1,"341495":1,"341496":1,"341516":1,"341517":1,"341518":1,"341519":1,"341520":1,"341521":1,"341522":1,"341523":1,"341524":1,"341525":1,"341526":1,"341527":1,"341528":1,"342424":1,"342425":1,"342426":1,"342427":1,"342428":1,"342429":1,"342430":1,"342431":1,"342432":1,"342433":1,"342434":1,"342435":1,"342436":1,"342437":1,"342438":1,"342439":1,"342440":1,"342441":1,"342442":1,"342443":1,"342444":1,"342445":1,"342450":1,"342451":1,"342452":1,"342453":1,"342454":1,"342455":1,"342457":1,"342458":1,"342475":1,"342476":1,"342477":1,"342478":1,"342479":1,"342504":1,"342505":1,"342506":1,"342507":1,"342508":1,"342509":1,"342510":1,"342511":1,"342512":1,"342513":1,"342514":1,"342515":1,"342516":1,"342550":1,"342551":1,"342589":1,"342590":1,"342591":1,"342592":1,"342593":1,"342594":1,"342595":1,"342596":1,"342597":1,"342598":1,"342599":1,"342600":1,"342601":1,"342602":1,"342603":1,"342614":1,"342615":1,"342616":1,"342617":1,"342618":1,"342619":1,"342620":1,"342621":1,"342622":1,"342623":1,"342624":1,"342625":1,"342626":1,"342627":1,"342628":1,"342629":1,"342630":1,"342631":1,"342632":1,"342633":1,"342634":1,"342635":1,"342645":1,"342646":1,"342647":1,"342648":1,"342649":1,"342650":1,"342651":1,"342667":1,"342668":1,"342669":1,"342670":1,"342671":1,"342672":1,"342673":1,"342674":1,"342675":1,"342676":1,"342677":1,"342678":1,"342679":1,"343577":1,"343578":1,"343579":1,"343580":1,"343581":1,"343582":1,"343583":1,"343584":1,"343585":1,"343586":1,"343587":1,"343588":1,"343589":1,"343590":1,"343591":1,"343592":1,"343593":1,"343594":1,"343595":1,"343596":1,"343597":1,"343598":1,"343599":1,"343600":1,"343601":1,"343602":1,"343603":1,"343604":1,"343605":1,"343606":1,"343607":1,"343608":1,"343609":1,"343610":1,"343626":1,"343627":1,"343628":1,"343629":1,"343630":1,"343631":1,"343656":1,"343657":1,"343658":1,"343659":1,"343660":1,"343661":1,"343662":1,"343663":1,"343664":1,"343665":1,"343666":1,"343667":1,"343668":1,"343669":1,"343702":1,"343703":1,"343741":1,"343742":1,"343743":1,"343744":1,"343745":1,"343746":1,"343747":1,"343748":1,"343749":1,"343750":1,"343751":1,"343752":1,"343753":1,"343754":1,"343755":1,"343767":1,"343768":1,"343769":1,"343770":1,"343771":1,"343772":1,"343773":1,"343777":1,"343778":1,"343779":1,"343780":1,"343781":1,"343782":1,"343783":1,"343784":1,"343785":1,"343787":1,"343797":1,"343798":1,"343799":1,"343800":1,"343801":1,"343802":1,"343803":1,"343804":1,"343819":1,"343820":1,"343821":1,"343822":1,"343823":1,"343824":1,"343825":1,"343826":1,"343827":1,"343828":1,"343829":1,"343830":1,"343831":1,"344730":1,"344731":1,"344732":1,"344733":1,"344734":1,"344735":1,"344736":1,"344737":1,"344738":1,"344739":1,"344740":1,"344741":1,"344742":1,"344743":1,"344744":1,"344745":1,"344746":1,"344747":1,"344748":1,"344749":1,"344750":1,"344751":1,"344752":1,"344753":1,"344754":1,"344755":1,"344756":1,"344757":1,"344758":1,"344759":1,"344760":1,"344761":1,"344775":1,"344776":1,"344777":1,"344778":1,"344779":1,"344780":1,"344781":1,"344782":1,"344783":1,"344784":1,"344807":1,"344808":1,"344809":1,"344810":1,"344811":1,"344812":1,"344813":1,"344814":1,"344815":1,"344816":1,"344817":1,"344818":1,"344819":1,"344820":1,"344821":1,"344822":1,"344854":1,"344855":1,"344893":1,"344895":1,"344896":1,"344897":1,"344898":1,"344899":1,"344900":1,"344901":1,"344902":1,"344903":1,"344904":1,"344905":1,"344920":1,"344922":1,"344923":1,"344924":1,"344925":1,"344930":1,"344931":1,"344932":1,"344933":1,"344934":1,"344935":1,"344936":1,"344937":1,"344938":1,"344949":1,"344950":1,"344951":1,"344952":1,"344953":1,"344955":1,"344956":1,"344971":1,"344972":1,"344973":1,"344975":1,"344976":1,"344977":1,"344978":1,"344979":1,"344980":1,"344981":1,"344982":1,"345883":1,"345884":1,"345885":1,"345886":1,"345887":1,"345888":1,"345889":1,"345890":1,"345891":1,"345892":1,"345893":1,"345894":1,"345895":1,"345896":1,"345897":1,"345899":1,"345900":1,"345901":1,"345902":1,"345903":1,"345904":1,"345905":1,"345906":1,"345907":1,"345908":1,"345927":1,"345928":1,"345929":1,"345930":1,"345931":1,"345932":1,"345933":1,"345934":1,"345935":1,"345936":1,"345937":1,"345958":1,"345959":1,"345960":1,"345961":1,"345962":1,"345963":1,"345964":1,"345965":1,"345966":1,"345967":1,"345968":1,"345969":1,"345970":1,"345971":1,"345972":1,"345973":1,"345974":1,"346006":1,"346007":1,"346045":1,"346046":1,"346047":1,"346048":1,"346049":1,"346050":1,"346051":1,"346052":1,"346053":1,"346054":1,"346055":1,"346056":1,"346083":1,"346084":1,"346085":1,"346086":1,"346087":1,"346088":1,"346089":1,"346101":1,"346102":1,"346103":1,"346104":1,"346105":1,"346106":1,"346107":1,"346123":1,"346124":1,"346125":1,"346126":1,"346127":1,"346128":1,"346129":1,"346130":1,"346131":1,"346132":1,"346133":1,"347035":1,"347036":1,"347037":1,"347038":1,"347039":1,"347040":1,"347041":1,"347042":1,"347043":1,"347044":1,"347045":1,"347046":1,"347047":1,"347048":1,"347049":1,"347050":1,"347051":1,"347052":1,"347053":1,"347054":1,"347055":1,"347056":1,"347059":1,"347079":1,"347080":1,"347081":1,"347082":1,"347083":1,"347084":1,"347085":1,"347092":1,"347093":1,"347094":1,"347095":1,"347096":1,"347097":1,"347098":1,"347105":1,"347106":1,"347107":1,"347108":1,"347109":1,"347110":1,"347111":1,"347112":1,"347113":1,"347114":1,"347115":1,"347116":1,"347117":1,"347118":1,"347119":1,"347120":1,"347121":1,"347122":1,"347123":1,"347124":1,"347125":1,"347126":1,"347198":1,"347199":1,"347200":1,"347201":1,"347202":1,"347203":1,"347204":1,"347205":1,"347206":1,"347207":1,"347238":1,"347239":1,"347240":1,"347241":1,"347252":1,"347253":1,"347254":1,"347255":1,"347256":1,"347257":1,"347258":1,"347276":1,"347277":1,"347278":1,"347279":1,"347280":1,"347281":1,"347282":1,"347283":1,"347284":1,"347285":1,"348187":1,"348188":1,"348189":1,"348190":1,"348191":1,"348193":1,"348194":1,"348195":1,"348196":1,"348197":1,"348198":1,"348199":1,"348200":1,"348201":1,"348202":1,"348203":1,"348204":1,"348205":1,"348206":1,"348207":1,"348208":1,"348231":1,"348233":1,"348234":1,"348235":1,"348236":1,"348244":1,"348245":1,"348246":1,"348247":1,"348248":1,"348249":1,"348250":1,"348251":1,"348256":1,"348257":1,"348258":1,"348260":1,"348261":1,"348262":1,"348263":1,"348264":1,"348265":1,"348266":1,"348267":1,"348268":1,"348269":1,"348270":1,"348272":1,"348273":1,"348274":1,"348276":1,"348351":1,"348352":1,"348353":1,"348354":1,"348355":1,"348356":1,"348357":1,"348358":1,"348390":1,"348391":1,"348392":1,"348393":1,"348403":1,"348404":1,"348405":1,"348406":1,"348407":1,"348408":1,"348409":1,"348429":1,"348430":1,"348431":1,"348432":1,"348433":1,"348435":1,"348436":1,"348437":1,"348438":1,"349339":1,"349340":1,"349341":1,"349342":1,"349343":1,"349344":1,"349345":1,"349346":1,"349347":1,"349348":1,"349349":1,"349350":1,"349351":1,"349352":1,"349353":1,"349354":1,"349355":1,"349356":1,"349357":1,"349359":1,"349360":1,"349361":1,"349362":1,"349383":1,"349384":1,"349385":1,"349386":1,"349387":1,"349396":1,"349397":1,"349398":1,"349399":1,"349400":1,"349401":1,"349402":1,"349403":1,"349404":1,"349407":1,"349408":1,"349409":1,"349410":1,"349411":1,"349412":1,"349413":1,"349414":1,"349415":1,"349416":1,"349417":1,"349418":1,"349419":1,"349420":1,"349421":1,"349422":1,"349423":1,"349424":1,"349425":1,"349426":1,"349427":1,"349503":1,"349504":1,"349505":1,"349506":1,"349507":1,"349508":1,"349509":1,"349555":1,"349556":1,"349558":1,"349559":1,"349560":1,"349561":1,"349582":1,"349583":1,"349584":1,"349585":1,"349586":1,"349587":1,"349588":1,"349589":1,"349590":1,"349591":1,"350490":1,"350491":1,"350492":1,"350493":1,"350494":1,"350495":1,"350496":1,"350497":1,"350498":1,"350499":1,"350500":1,"350501":1,"350502":1,"350503":1,"350504":1,"350505":1,"350506":1,"350507":1,"350508":1,"350509":1,"350538":1,"350539":1,"350540":1,"350541":1,"350547":1,"350548":1,"350549":1,"350550":1,"350551":1,"350552":1,"350553":1,"350554":1,"350555":1,"350556":1,"350557":1,"350558":1,"350559":1,"350560":1,"350561":1,"350562":1,"350563":1,"350564":1,"350565":1,"350566":1,"350567":1,"350568":1,"350569":1,"350570":1,"350571":1,"350572":1,"350573":1,"350574":1,"350575":1,"350576":1,"350577":1,"350578":1,"350655":1,"350656":1,"350657":1,"350658":1,"350659":1,"350660":1,"350661":1,"350708":1,"350709":1,"350710":1,"350711":1,"350712":1,"350713":1,"350734":1,"350735":1,"350736":1,"350737":1,"350738":1,"350739":1,"350740":1,"350741":1,"350742":1,"350743":1,"350744":1,"351641":1,"351642":1,"351643":1,"351644":1,"351645":1,"351646":1,"351647":1,"351648":1,"351649":1,"351650":1,"351651":1,"351652":1,"351653":1,"351654":1,"351655":1,"351656":1,"351657":1,"351658":1,"351659":1,"351660":1,"351691":1,"351692":1,"351693":1,"351694":1,"351695":1,"351696":1,"351697":1,"351698":1,"351699":1,"351700":1,"351701":1,"351702":1,"351703":1,"351704":1,"351705":1,"351706":1,"351707":1,"351708":1,"351709":1,"351710":1,"351711":1,"351712":1,"351713":1,"351714":1,"351715":1,"351716":1,"351717":1,"351718":1,"351719":1,"351720":1,"351721":1,"351722":1,"351723":1,"351724":1,"351725":1,"351726":1,"351727":1,"351728":1,"351729":1,"351730":1,"351807":1,"351808":1,"351809":1,"351810":1,"351811":1,"351812":1,"351813":1,"351861":1,"351862":1,"351863":1,"351864":1,"351865":1,"351886":1,"351887":1,"351888":1,"351889":1,"351890":1,"351891":1,"351892":1,"351893":1,"351894":1,"351895":1,"351896":1,"352793":1,"352794":1,"352795":1,"352796":1,"352797":1,"352798":1,"352799":1,"352800":1,"352801":1,"352802":1,"352803":1,"352804":1,"352805":1,"352806":1,"352807":1,"352808":1,"352809":1,"352810":1,"352811":1,"352844":1,"352845":1,"352846":1,"352847":1,"352848":1,"352849":1,"352850":1,"352851":1,"352852":1,"352853":1,"352854":1,"352855":1,"352856":1,"352857":1,"352858":1,"352859":1,"352860":1,"352861":1,"352862":1,"352863":1,"352864":1,"352865":1,"352866":1,"352867":1,"352868":1,"352869":1,"352870":1,"352871":1,"352872":1,"352873":1,"352874":1,"352879":1,"352880":1,"352881":1,"352882":1,"352958":1,"352959":1,"352960":1,"352961":1,"352962":1,"352963":1,"352964":1,"352965":1,"353014":1,"353015":1,"353016":1,"353017":1,"353018":1,"353037":1,"353038":1,"353039":1,"353040":1,"353041":1,"353042":1,"353043":1,"353044":1,"353045":1,"353046":1,"353047":1,"353048":1,"353950":1,"353951":1,"353952":1,"353954":1,"353955":1,"353956":1,"353958":1,"353959":1,"353960":1,"353961":1,"353962":1,"353997":1,"353998":1,"353999":1,"354000":1,"354001":1,"354002":1,"354003":1,"354008":1,"354010":1,"354011":1,"354012":1,"354013":1,"354014":1,"354015":1,"354016":1,"354017":1,"354018":1,"354019":1,"354020":1,"354021":1,"354022":1,"354023":1,"354024":1,"354109":1,"354110":1,"354111":1,"354112":1,"354113":1,"354114":1,"354115":1,"354116":1,"354117":1,"354118":1,"354166":1,"354167":1,"354168":1,"354169":1,"354170":1,"354171":1,"354187":1,"354188":1,"354189":1,"354190":1,"354191":1,"354192":1,"354193":1,"354194":1,"354195":1,"354196":1,"354197":1,"354198":1,"354199":1,"355103":1,"355104":1,"355105":1,"355106":1,"355107":1,"355108":1,"355109":1,"355110":1,"355111":1,"355112":1,"355113":1,"355114":1,"355149":1,"355150":1,"355151":1,"355152":1,"355153":1,"355154":1,"355161":1,"355162":1,"355163":1,"355164":1,"355165":1,"355166":1,"355167":1,"355168":1,"355169":1,"355170":1,"355171":1,"355172":1,"355173":1,"355174":1,"355235":1,"355236":1,"355237":1,"355238":1,"355239":1,"355240":1,"355259":1,"355260":1,"355261":1,"355262":1,"355263":1,"355264":1,"355265":1,"355266":1,"355267":1,"355268":1,"355269":1,"355270":1,"355271":1,"355318":1,"355319":1,"355320":1,"355321":1,"355322":1,"355323":1,"355324":1,"355339":1,"355340":1,"355342":1,"355343":1,"355344":1,"355345":1,"355346":1,"355347":1,"355348":1,"355349":1,"355350":1,"356256":1,"356257":1,"356258":1,"356259":1,"356260":1,"356261":1,"356262":1,"356263":1,"356264":1,"356265":1,"356301":1,"356302":1,"356303":1,"356304":1,"356305":1,"356314":1,"356315":1,"356316":1,"356317":1,"356318":1,"356320":1,"356321":1,"356322":1,"356323":1,"356324":1,"356325":1,"356381":1,"356382":1,"356383":1,"356384":1,"356385":1,"356386":1,"356387":1,"356388":1,"356389":1,"356390":1,"356391":1,"356392":1,"356393":1,"356411":1,"356412":1,"356413":1,"356414":1,"356415":1,"356416":1,"356417":1,"356418":1,"356419":1,"356420":1,"356421":1,"356422":1,"356423":1,"356470":1,"356471":1,"356472":1,"356473":1,"356474":1,"356475":1,"356476":1,"356492":1,"356493":1,"356494":1,"356495":1,"356496":1,"356497":1,"356498":1,"356499":1,"356500":1,"356501":1,"356502":1,"357453":1,"357454":1,"357455":1,"357457":1,"357467":1,"357468":1,"357469":1,"357470":1,"357471":1,"357472":1,"357473":1,"357474":1,"357476":1,"357477":1,"357533":1,"357534":1,"357535":1,"357536":1,"357537":1,"357538":1,"357539":1,"357540":1,"357541":1,"357542":1,"357543":1,"357544":1,"357545":1,"357562":1,"357563":1,"357564":1,"357565":1,"357566":1,"357567":1,"357568":1,"357569":1,"357570":1,"357571":1,"357572":1,"357573":1,"357574":1,"357575":1,"357621":1,"357622":1,"357623":1,"357624":1,"357625":1,"357626":1,"357627":1,"357645":1,"357646":1,"357647":1,"357648":1,"357649":1,"357650":1,"357651":1,"357652":1,"357653":1,"358619":1,"358620":1,"358621":1,"358622":1,"358623":1,"358624":1,"358625":1,"358626":1,"358684":1,"358685":1,"358686":1,"358687":1,"358688":1,"358689":1,"358690":1,"358691":1,"358692":1,"358693":1,"358694":1,"358695":1,"358696":1,"358697":1,"358714":1,"358715":1,"358716":1,"358717":1,"358718":1,"358719":1,"358720":1,"358721":1,"358722":1,"358723":1,"358724":1,"358725":1,"358726":1,"358727":1,"358728":1,"358772":1,"358773":1,"358774":1,"358775":1,"358776":1,"358777":1,"358798":1,"358799":1,"358800":1,"358801":1,"358802":1,"358803":1,"358804":1,"359771":1,"359772":1,"359773":1,"359774":1,"359775":1,"359776":1,"359777":1,"359835":1,"359836":1,"359837":1,"359838":1,"359839":1,"359840":1,"359841":1,"359842":1,"359843":1,"359844":1,"359845":1,"359846":1,"359847":1,"359848":1,"359849":1,"359850":1,"359866":1,"359867":1,"359868":1,"359869":1,"359870":1,"359871":1,"359872":1,"359873":1,"359874":1,"359875":1,"359876":1,"359877":1,"359879":1,"359880":1,"359881":1,"359924":1,"359925":1,"359926":1,"359927":1,"359928":1,"359929":1,"359951":1,"359952":1,"359953":1,"359954":1,"359955":1,"360923":1,"360924":1,"360925":1,"360926":1,"360927":1,"360928":1,"360987":1,"360988":1,"360989":1,"360990":1,"360991":1,"360992":1,"360993":1,"360994":1,"360995":1,"360996":1,"360997":1,"360998":1,"360999":1,"361000":1,"361001":1,"361002":1,"361003":1,"361004":1,"361005":1,"361006":1,"361007":1,"361018":1,"361019":1,"361020":1,"361021":1,"361022":1,"361023":1,"361024":1,"361025":1,"361026":1,"361027":1,"361028":1,"361029":1,"361030":1,"361031":1,"361032":1,"361033":1,"361034":1,"361076":1,"361077":1,"361078":1,"361079":1,"361080":1,"361081":1,"361103":1,"361104":1,"361105":1,"361106":1,"361107":1,"362075":1,"362076":1,"362077":1,"362078":1,"362079":1,"362139":1,"362140":1,"362141":1,"362142":1,"362143":1,"362144":1,"362145":1,"362148":1,"362149":1,"362150":1,"362151":1,"362152":1,"362153":1,"362154":1,"362155":1,"362156":1,"362157":1,"362158":1,"362159":1,"362160":1,"362170":1,"362171":1,"362172":1,"362173":1,"362174":1,"362175":1,"362176":1,"362177":1,"362178":1,"362179":1,"362180":1,"362181":1,"362182":1,"362183":1,"362184":1,"362185":1,"362186":1,"362187":1,"362188":1,"362189":1,"362190":1,"362191":1,"362227":1,"362228":1,"362229":1,"362230":1,"362231":1,"362232":1,"362233":1,"362255":1,"362256":1,"362257":1,"362258":1,"362259":1,"362260":1,"363227":1,"363228":1,"363229":1,"363230":1,"363231":1,"363291":1,"363292":1,"363293":1,"363294":1,"363295":1,"363296":1,"363303":1,"363304":1,"363305":1,"363306":1,"363307":1,"363308":1,"363309":1,"363310":1,"363311":1,"363312":1,"363313":1,"363322":1,"363323":1,"363324":1,"363325":1,"363326":1,"363327":1,"363328":1,"363329":1,"363330":1,"363331":1,"363332":1,"363333":1,"363334":1,"363335":1,"363336":1,"363337":1,"363338":1,"363339":1,"363340":1,"363341":1,"363342":1,"363343":1,"363378":1,"363379":1,"363380":1,"363381":1,"363382":1,"363383":1,"363384":1,"363385":1,"363407":1,"363408":1,"363409":1,"363410":1,"363411":1,"363412":1,"363413":1,"364379":1,"364380":1,"364381":1,"364382":1,"364383":1,"364443":1,"364444":1,"364445":1,"364446":1,"364447":1,"364448":1,"364456":1,"364457":1,"364458":1,"364459":1,"364460":1,"364461":1,"364462":1,"364463":1,"364464":1,"364465":1,"364474":1,"364475":1,"364476":1,"364477":1,"364478":1,"364479":1,"364480":1,"364481":1,"364482":1,"364483":1,"364484":1,"364485":1,"364486":1,"364487":1,"364488":1,"364489":1,"364490":1,"364491":1,"364492":1,"364493":1,"364494":1,"364495":1,"364496":1,"364529":1,"364530":1,"364531":1,"364532":1,"364533":1,"364534":1,"364535":1,"364536":1,"364537":1,"364538":1,"364558":1,"364559":1,"364560":1,"364561":1,"364562":1,"364563":1,"364564":1,"364565":1,"364566":1,"365534":1,"365595":1,"365596":1,"365597":1,"365598":1,"365599":1,"365600":1,"365609":1,"365610":1,"365611":1,"365612":1,"365613":1,"365614":1,"365615":1,"365616":1,"365617":1,"365630":1,"365631":1,"365632":1,"365633":1,"365634":1,"365635":1,"365636":1,"365637":1,"365638":1,"365639":1,"365640":1,"365641":1,"365642":1,"365643":1,"365644":1,"365645":1,"365646":1,"365647":1,"365648":1,"365681":1,"365682":1,"365683":1,"365684":1,"365685":1,"365686":1,"365687":1,"365688":1,"365689":1,"365690":1,"365691":1,"365707":1,"365708":1,"365709":1,"365710":1,"365711":1,"365712":1,"365713":1,"365714":1,"365715":1,"365716":1,"365718":1,"366748":1,"366749":1,"366750":1,"366751":1,"366752":1,"366761":1,"366762":1,"366763":1,"366764":1,"366765":1,"366766":1,"366767":1,"366768":1,"366769":1,"366770":1,"366783":1,"366784":1,"366785":1,"366786":1,"366787":1,"366788":1,"366789":1,"366790":1,"366791":1,"366792":1,"366793":1,"366794":1,"366795":1,"366796":1,"366797":1,"366798":1,"366799":1,"366800":1,"366801":1,"366833":1,"366834":1,"366835":1,"366836":1,"366837":1,"366838":1,"366839":1,"366840":1,"366841":1,"366842":1,"366843":1,"366844":1,"366845":1,"366846":1,"366858":1,"366859":1,"366860":1,"366861":1,"366862":1,"366863":1,"366864":1,"366865":1,"366866":1,"366867":1,"366868":1,"366869":1,"366870":1,"367901":1,"367902":1,"367903":1,"367904":1,"367905":1,"367913":1,"367914":1,"367915":1,"367916":1,"367919":1,"367920":1,"367921":1,"367922":1,"367937":1,"367938":1,"367939":1,"367940":1,"367941":1,"367942":1,"367943":1,"367944":1,"367945":1,"367946":1,"367947":1,"367948":1,"367949":1,"367950":1,"367951":1,"367952":1,"367953":1,"367984":1,"367985":1,"367986":1,"367987":1,"367988":1,"367989":1,"367990":1,"367991":1,"367992":1,"367993":1,"367994":1,"367995":1,"367996":1,"367997":1,"367998":1,"367999":1,"368009":1,"368010":1,"368011":1,"368012":1,"368013":1,"368014":1,"368015":1,"368016":1,"368017":1,"368018":1,"368019":1,"368020":1,"368021":1,"369053":1,"369054":1,"369055":1,"369056":1,"369057":1,"369058":1,"369072":1,"369073":1,"369074":1,"369089":1,"369090":1,"369091":1,"369092":1,"369093":1,"369094":1,"369095":1,"369096":1,"369097":1,"369098":1,"369099":1,"369100":1,"369101":1,"369102":1,"369103":1,"369104":1,"369105":1,"369135":1,"369136":1,"369137":1,"369138":1,"369139":1,"369140":1,"369141":1,"369142":1,"369143":1,"369144":1,"369145":1,"369146":1,"369147":1,"369148":1,"369149":1,"369150":1,"369151":1,"369161":1,"369162":1,"369163":1,"369164":1,"369165":1,"369166":1,"369167":1,"369168":1,"369169":1,"369170":1,"369171":1,"369172":1,"370205":1,"370206":1,"370207":1,"370208":1,"370209":1,"370210":1,"370241":1,"370242":1,"370243":1,"370244":1,"370245":1,"370246":1,"370247":1,"370248":1,"370249":1,"370250":1,"370251":1,"370252":1,"370253":1,"370254":1,"370255":1,"370256":1,"370257":1,"370287":1,"370288":1,"370289":1,"370290":1,"370291":1,"370292":1,"370293":1,"370294":1,"370295":1,"370296":1,"370297":1,"370298":1,"370299":1,"370300":1,"370301":1,"370303":1,"370313":1,"370314":1,"370315":1,"370317":1,"370318":1,"370319":1,"370320":1,"370321":1,"370322":1,"370323":1,"371358":1,"371359":1,"371360":1,"371361":1,"371362":1,"371394":1,"371395":1,"371396":1,"371397":1,"371398":1,"371399":1,"371400":1,"371401":1,"371402":1,"371403":1,"371404":1,"371405":1,"371406":1,"371407":1,"371408":1,"371409":1,"371410":1,"371439":1,"371441":1,"371442":1,"371443":1,"371444":1,"371445":1,"371446":1,"371447":1,"371448":1,"371449":1,"371450":1,"371451":1,"371452":1,"371453":1,"371454":1,"371455":1,"371456":1,"371465":1,"371466":1,"371467":1,"371468":1,"371469":1,"371470":1,"371471":1,"371472":1,"371473":1,"371474":1,"372511":1,"372512":1,"372513":1,"372514":1,"372515":1,"372547":1,"372548":1,"372549":1,"372550":1,"372551":1,"372552":1,"372553":1,"372554":1,"372555":1,"372556":1,"372557":1,"372558":1,"372559":1,"372560":1,"372561":1,"372562":1,"372563":1,"372590":1,"372591":1,"372592":1,"372593":1,"372594":1,"372595":1,"372596":1,"372597":1,"372598":1,"372599":1,"372600":1,"372601":1,"372602":1,"372603":1,"372604":1,"372605":1,"372606":1,"372607":1,"372608":1,"372609":1,"372618":1,"372619":1,"372620":1,"372621":1,"372622":1,"372623":1,"372624":1,"372625":1,"372626":1,"373366":1,"373663":1,"373664":1,"373665":1,"373666":1,"373667":1,"373668":1,"373699":1,"373700":1,"373701":1,"373702":1,"373703":1,"373704":1,"373705":1,"373706":1,"373707":1,"373708":1,"373709":1,"373710":1,"373711":1,"373712":1,"373713":1,"373714":1,"373715":1,"373716":1,"373741":1,"373742":1,"373743":1,"373744":1,"373745":1,"373746":1,"373747":1,"373748":1,"373749":1,"373750":1,"373751":1,"373752":1,"373753":1,"373754":1,"373755":1,"373756":1,"373757":1,"373758":1,"373759":1,"373760":1,"373761":1,"373771":1,"373772":1,"373773":1,"373774":1,"373775":1,"373776":1,"373777":1,"373778":1,"373779":1,"374509":1,"374510":1,"374511":1,"374512":1,"374517":1,"374518":1,"374519":1,"374520":1,"374814":1,"374815":1,"374816":1,"374817":1,"374818":1,"374819":1,"374820":1,"374852":1,"374853":1,"374854":1,"374855":1,"374856":1,"374857":1,"374858":1,"374859":1,"374860":1,"374861":1,"374862":1,"374863":1,"374864":1,"374865":1,"374866":1,"374867":1,"374868":1,"374869":1,"374870":1,"374871":1,"374890":1,"374891":1,"374892":1,"374893":1,"374894":1,"374895":1,"374896":1,"374897":1,"374898":1,"374899":1,"374900":1,"374901":1,"374902":1,"374903":1,"374904":1,"374905":1,"374906":1,"374907":1,"374908":1,"374909":1,"374910":1,"374911":1,"374912":1,"374924":1,"374925":1,"374926":1,"374927":1,"374928":1,"374929":1,"374930":1,"374931":1,"374932":1,"375658":1,"375659":1,"375660":1,"375661":1,"375662":1,"375663":1,"375664":1,"375665":1,"375666":1,"375667":1,"375668":1,"375669":1,"375670":1,"375671":1,"375672":1,"375673":1,"375965":1,"375966":1,"375967":1,"375968":1,"375969":1,"375970":1,"375971":1,"375972":1,"376004":1,"376005":1,"376006":1,"376007":1,"376008":1,"376009":1,"376010":1,"376011":1,"376012":1,"376013":1,"376014":1,"376015":1,"376016":1,"376017":1,"376018":1,"376019":1,"376020":1,"376021":1,"376022":1,"376023":1,"376024":1,"376029":1,"376030":1,"376031":1,"376032":1,"376041":1,"376042":1,"376043":1,"376044":1,"376045":1,"376046":1,"376047":1,"376048":1,"376049":1,"376050":1,"376051":1,"376052":1,"376053":1,"376054":1,"376055":1,"376056":1,"376057":1,"376058":1,"376059":1,"376060":1,"376061":1,"376076":1,"376077":1,"376078":1,"376079":1,"376080":1,"376081":1,"376082":1,"376083":1,"376084":1,"376085":1,"376086":1,"376809":1,"376810":1,"376811":1,"376812":1,"376813":1,"376814":1,"376815":1,"376816":1,"376817":1,"376818":1,"376819":1,"376820":1,"376821":1,"376822":1,"376823":1,"376824":1,"376825":1,"377116":1,"377117":1,"377118":1,"377119":1,"377120":1,"377121":1,"377122":1,"377123":1,"377124":1,"377157":1,"377158":1,"377159":1,"377160":1,"377161":1,"377162":1,"377163":1,"377164":1,"377165":1,"377166":1,"377167":1,"377168":1,"377169":1,"377170":1,"377171":1,"377172":1,"377173":1,"377174":1,"377175":1,"377176":1,"377177":1,"377178":1,"377179":1,"377180":1,"377181":1,"377182":1,"377183":1,"377184":1,"377185":1,"377192":1,"377193":1,"377194":1,"377195":1,"377196":1,"377197":1,"377198":1,"377199":1,"377200":1,"377201":1,"377202":1,"377203":1,"377204":1,"377205":1,"377206":1,"377207":1,"377208":1,"377209":1,"377210":1,"377211":1,"377212":1,"377228":1,"377229":1,"377230":1,"377231":1,"377232":1,"377233":1,"377234":1,"377235":1,"377236":1,"377238":1,"377961":1,"377962":1,"377963":1,"377964":1,"377965":1,"377966":1,"377967":1,"377968":1,"377969":1,"377970":1,"377971":1,"377972":1,"377973":1,"377974":1,"377975":1,"377976":1,"377977":1,"378268":1,"378269":1,"378270":1,"378271":1,"378272":1,"378273":1,"378274":1,"378275":1,"378310":1,"378311":1,"378312":1,"378313":1,"378314":1,"378315":1,"378316":1,"378317":1,"378318":1,"378319":1,"378320":1,"378321":1,"378322":1,"378323":1,"378324":1,"378325":1,"378326":1,"378328":1,"378329":1,"378330":1,"378331":1,"378332":1,"378333":1,"378335":1,"378336":1,"378337":1,"378338":1,"378343":1,"378344":1,"378345":1,"378346":1,"378347":1,"378348":1,"378349":1,"378350":1,"378351":1,"378352":1,"378353":1,"378354":1,"378355":1,"378356":1,"378357":1,"378358":1,"378359":1,"378360":1,"378361":1,"378362":1,"378363":1,"378380":1,"378381":1,"378382":1,"378383":1,"378384":1,"378385":1,"378386":1,"378387":1,"378388":1,"378389":1,"378390":1,"379112":1,"379113":1,"379114":1,"379115":1,"379116":1,"379117":1,"379118":1,"379119":1,"379120":1,"379121":1,"379122":1,"379123":1,"379124":1,"379125":1,"379126":1,"379127":1,"379128":1,"379129":1,"379420":1,"379421":1,"379422":1,"379423":1,"379424":1,"379425":1,"379426":1,"379463":1,"379464":1,"379465":1,"379466":1,"379467":1,"379468":1,"379469":1,"379470":1,"379471":1,"379472":1,"379473":1,"379474":1,"379475":1,"379476":1,"379477":1,"379478":1,"379479":1,"379480":1,"379481":1,"379482":1,"379483":1,"379484":1,"379485":1,"379486":1,"379487":1,"379488":1,"379489":1,"379490":1,"379491":1,"379492":1,"379493":1,"379494":1,"379495":1,"379496":1,"379497":1,"379498":1,"379499":1,"379500":1,"379501":1,"379502":1,"379503":1,"379504":1,"379505":1,"379506":1,"379507":1,"379508":1,"379509":1,"379510":1,"379511":1,"379512":1,"379513":1,"379514":1,"379515":1,"379532":1,"379533":1,"379534":1,"379535":1,"379536":1,"379537":1,"379538":1,"379539":1,"379540":1,"379541":1,"380261":1,"380262":1,"380263":1,"380264":1,"380265":1,"380266":1,"380267":1,"380268":1,"380269":1,"380270":1,"380271":1,"380272":1,"380273":1,"380274":1,"380275":1,"380276":1,"380277":1,"380278":1,"380279":1,"380280":1,"380281":1,"380573":1,"380574":1,"380575":1,"380576":1,"380577":1,"380578":1,"380616":1,"380617":1,"380618":1,"380619":1,"380620":1,"380621":1,"380622":1,"380623":1,"380624":1,"380625":1,"380626":1,"380627":1,"380628":1,"380629":1,"380630":1,"380631":1,"380632":1,"380633":1,"380634":1,"380635":1,"380636":1,"380637":1,"380638":1,"380639":1,"380640":1,"380641":1,"380642":1,"380643":1,"380644":1,"380645":1,"380646":1,"380647":1,"380648":1,"380649":1,"380650":1,"380651":1,"380652":1,"380653":1,"380654":1,"380655":1,"380656":1,"380657":1,"380658":1,"380659":1,"380660":1,"380661":1,"380662":1,"380663":1,"380664":1,"380683":1,"380684":1,"380685":1,"380686":1,"380687":1,"380688":1,"380689":1,"380690":1,"380691":1,"380692":1,"381412":1,"381413":1,"381414":1,"381415":1,"381416":1,"381417":1,"381418":1,"381419":1,"381420":1,"381421":1,"381422":1,"381423":1,"381424":1,"381425":1,"381426":1,"381427":1,"381428":1,"381429":1,"381430":1,"381431":1,"381432":1,"381433":1,"381769":1,"381770":1,"381771":1,"381772":1,"381773":1,"381774":1,"381775":1,"381776":1,"381777":1,"381778":1,"381779":1,"381780":1,"381781":1,"381782":1,"381783":1,"381784":1,"381785":1,"381786":1,"381787":1,"381788":1,"381789":1,"381790":1,"381791":1,"381792":1,"381793":1,"381794":1,"381795":1,"381796":1,"381797":1,"381798":1,"381799":1,"381800":1,"381801":1,"381802":1,"381803":1,"381804":1,"381805":1,"381806":1,"381807":1,"381808":1,"381809":1,"381811":1,"381812":1,"381813":1,"381814":1,"381815":1,"381832":1,"381833":1,"381834":1,"381835":1,"381836":1,"381837":1,"381838":1,"381839":1,"381840":1,"381841":1,"381842":1,"381843":1,"381844":1,"382559":1,"382560":1,"382561":1,"382562":1,"382563":1,"382564":1,"382565":1,"382566":1,"382567":1,"382568":1,"382569":1,"382570":1,"382571":1,"382572":1,"382573":1,"382574":1,"382575":1,"382576":1,"382577":1,"382578":1,"382579":1,"382580":1,"382581":1,"382582":1,"382583":1,"382584":1,"382585":1,"382586":1,"382922":1,"382923":1,"382924":1,"382925":1,"382926":1,"382927":1,"382928":1,"382929":1,"382930":1,"382931":1,"382932":1,"382933":1,"382934":1,"382935":1,"382936":1,"382937":1,"382938":1,"382939":1,"382940":1,"382941":1,"382942":1,"382943":1,"382944":1,"382945":1,"382946":1,"382947":1,"382949":1,"382950":1,"382951":1,"382952":1,"382953":1,"382954":1,"382955":1,"382956":1,"382957":1,"382958":1,"382959":1,"382960":1,"382961":1,"382962":1,"382963":1,"382964":1,"382965":1,"382966":1,"382983":1,"382984":1,"382985":1,"382987":1,"382988":1,"382989":1,"382990":1,"382991":1,"382992":1,"382993":1,"382994":1,"382995":1,"382996":1,"383710":1,"383711":1,"383712":1,"383713":1,"383714":1,"383715":1,"383716":1,"383717":1,"383718":1,"383719":1,"383720":1,"383721":1,"383722":1,"383723":1,"383724":1,"383725":1,"383726":1,"383727":1,"383728":1,"383729":1,"383730":1,"383731":1,"383732":1,"383733":1,"383734":1,"383735":1,"383736":1,"383737":1,"383738":1,"383739":1,"384075":1,"384076":1,"384077":1,"384078":1,"384079":1,"384080":1,"384081":1,"384082":1,"384083":1,"384084":1,"384085":1,"384086":1,"384087":1,"384088":1,"384089":1,"384090":1,"384091":1,"384092":1,"384093":1,"384094":1,"384095":1,"384096":1,"384097":1,"384098":1,"384099":1,"384100":1,"384101":1,"384102":1,"384103":1,"384104":1,"384105":1,"384106":1,"384107":1,"384108":1,"384109":1,"384110":1,"384111":1,"384112":1,"384113":1,"384114":1,"384115":1,"384116":1,"384117":1,"384134":1,"384135":1,"384136":1,"384137":1,"384138":1,"384139":1,"384140":1,"384141":1,"384142":1,"384143":1,"384144":1,"384145":1,"384146":1,"384147":1,"384862":1,"384863":1,"384864":1,"384865":1,"384866":1,"384867":1,"384868":1,"384869":1,"384870":1,"384871":1,"384872":1,"384873":1,"384874":1,"384875":1,"384876":1,"384877":1,"384878":1,"384879":1,"384880":1,"384881":1,"384882":1,"384883":1,"384884":1,"384885":1,"384886":1,"384887":1,"384888":1,"384889":1,"384890":1,"384891":1,"384892":1,"384893":1,"384894":1,"385227":1,"385228":1,"385229":1,"385230":1,"385231":1,"385232":1,"385233":1,"385234":1,"385235":1,"385236":1,"385237":1,"385238":1,"385239":1,"385240":1,"385241":1,"385242":1,"385243":1,"385244":1,"385245":1,"385246":1,"385247":1,"385248":1,"385249":1,"385250":1,"385251":1,"385252":1,"385253":1,"385254":1,"385255":1,"385256":1,"385257":1,"385258":1,"385259":1,"385260":1,"385261":1,"385262":1,"385263":1,"385264":1,"385265":1,"385266":1,"385267":1,"385268":1,"385269":1,"385286":1,"385287":1,"385288":1,"385289":1,"385290":1,"385291":1,"385292":1,"385293":1,"385294":1,"385295":1,"385296":1,"385297":1,"385298":1,"386014":1,"386015":1,"386016":1,"386017":1,"386018":1,"386019":1,"386020":1,"386021":1,"386022":1,"386023":1,"386024":1,"386025":1,"386026":1,"386027":1,"386028":1,"386029":1,"386030":1,"386031":1,"386032":1,"386033":1,"386034":1,"386035":1,"386036":1,"386037":1,"386038":1,"386039":1,"386040":1,"386041":1,"386042":1,"386043":1,"386044":1,"386045":1,"386046":1,"386379":1,"386380":1,"386381":1,"386382":1,"386383":1,"386384":1,"386385":1,"386386":1,"386387":1,"386388":1,"386389":1,"386390":1,"386391":1,"386392":1,"386393":1,"386394":1,"386395":1,"386396":1,"386397":1,"386398":1,"386399":1,"386400":1,"386401":1,"386402":1,"386403":1,"386404":1,"386405":1,"386406":1,"386407":1,"386408":1,"386409":1,"386410":1,"386411":1,"386412":1,"386413":1,"386414":1,"386415":1,"386416":1,"386417":1,"386418":1,"386419":1,"386420":1,"386421":1,"386438":1,"386439":1,"386440":1,"386441":1,"386442":1,"386443":1,"386444":1,"386445":1,"386446":1,"386447":1,"386448":1,"386449":1,"387166":1,"387167":1,"387168":1,"387169":1,"387170":1,"387171":1,"387172":1,"387173":1,"387174":1,"387175":1,"387176":1,"387177":1,"387178":1,"387179":1,"387180":1,"387181":1,"387182":1,"387183":1,"387184":1,"387185":1,"387186":1,"387187":1,"387188":1,"387189":1,"387190":1,"387191":1,"387192":1,"387193":1,"387194":1,"387195":1,"387196":1,"387197":1,"387198":1,"387531":1,"387532":1,"387533":1,"387534":1,"387535":1,"387536":1,"387537":1,"387538":1,"387539":1,"387540":1,"387541":1,"387542":1,"387543":1,"387544":1,"387545":1,"387546":1,"387547":1,"387548":1,"387549":1,"387550":1,"387551":1,"387552":1,"387553":1,"387554":1,"387555":1,"387556":1,"387557":1,"387558":1,"387559":1,"387560":1,"387561":1,"387562":1,"387563":1,"387564":1,"387565":1,"387566":1,"387567":1,"387568":1,"387569":1,"387570":1,"387571":1,"387572":1,"387589":1,"387590":1,"387591":1,"387592":1,"387593":1,"387594":1,"387595":1,"387596":1,"387597":1,"387598":1,"387599":1,"387600":1,"388317":1,"388318":1,"388319":1,"388320":1,"388321":1,"388322":1,"388323":1,"388324":1,"388325":1,"388326":1,"388327":1,"388328":1,"388329":1,"388330":1,"388331":1,"388332":1,"388333":1,"388334":1,"388335":1,"388336":1,"388337":1,"388338":1,"388339":1,"388340":1,"388341":1,"388342":1,"388343":1,"388344":1,"388345":1,"388346":1,"388347":1,"388348":1,"388349":1,"388350":1,"388683":1,"388684":1,"388685":1,"388686":1,"388687":1,"388688":1,"388689":1,"388690":1,"388691":1,"388692":1,"388693":1,"388694":1,"388695":1,"388696":1,"388697":1,"388698":1,"388699":1,"388700":1,"388701":1,"388702":1,"388703":1,"388704":1,"388705":1,"388706":1,"388707":1,"388708":1,"388709":1,"388710":1,"388711":1,"388712":1,"388713":1,"388714":1,"388715":1,"388716":1,"388717":1,"388718":1,"388719":1,"388720":1,"388721":1,"388722":1,"388723":1,"388740":1,"388741":1,"388742":1,"388743":1,"388744":1,"388745":1,"388746":1,"388747":1,"388748":1,"388749":1,"388750":1,"388751":1,"388752":1,"389468":1,"389469":1,"389470":1,"389471":1,"389472":1,"389473":1,"389474":1,"389475":1,"389476":1,"389477":1,"389478":1,"389479":1,"389480":1,"389481":1,"389482":1,"389483":1,"389484":1,"389485":1,"389486":1,"389487":1,"389488":1,"389489":1,"389490":1,"389491":1,"389492":1,"389493":1,"389494":1,"389495":1,"389496":1,"389497":1,"389498":1,"389499":1,"389500":1,"389501":1,"389502":1,"389834":1,"389835":1,"389836":1,"389837":1,"389838":1,"389839":1,"389840":1,"389841":1,"389842":1,"389843":1,"389844":1,"389845":1,"389846":1,"389847":1,"389848":1,"389849":1,"389850":1,"389851":1,"389852":1,"389853":1,"389854":1,"389855":1,"389856":1,"389857":1,"389858":1,"389859":1,"389860":1,"389861":1,"389862":1,"389863":1,"389864":1,"389865":1,"389866":1,"389867":1,"389868":1,"389869":1,"389870":1,"389872":1,"389873":1,"389874":1,"389891":1,"389892":1,"389893":1,"389894":1,"389895":1,"389896":1,"389897":1,"389898":1,"389899":1,"389900":1,"389902":1,"389903":1,"389904":1,"390620":1,"390621":1,"390622":1,"390623":1,"390624":1,"390625":1,"390626":1,"390627":1,"390628":1,"390629":1,"390630":1,"390631":1,"390632":1,"390633":1,"390634":1,"390635":1,"390636":1,"390637":1,"390638":1,"390639":1,"390640":1,"390641":1,"390642":1,"390643":1,"390644":1,"390645":1,"390646":1,"390647":1,"390648":1,"390649":1,"390650":1,"390651":1,"390652":1,"390653":1,"390654":1,"390985":1,"390986":1,"390987":1,"390988":1,"390989":1,"390990":1,"390991":1,"390992":1,"390993":1,"390994":1,"390995":1,"390996":1,"390997":1,"390998":1,"390999":1,"391000":1,"391002":1,"391003":1,"391004":1,"391005":1,"391006":1,"391007":1,"391008":1,"391009":1,"391010":1,"391011":1,"391012":1,"391013":1,"391014":1,"391015":1,"391016":1,"391017":1,"391018":1,"391019":1,"391020":1,"391021":1,"391022":1,"391023":1,"391024":1,"391025":1,"391026":1,"391038":1,"391039":1,"391040":1,"391041":1,"391042":1,"391043":1,"391044":1,"391045":1,"391046":1,"391047":1,"391048":1,"391049":1,"391050":1,"391051":1,"391052":1,"391053":1,"391054":1,"391055":1,"391056":1,"391773":1,"391774":1,"391775":1,"391776":1,"391777":1,"391778":1,"391779":1,"391780":1,"391781":1,"391782":1,"391783":1,"391784":1,"391785":1,"391786":1,"391787":1,"391788":1,"391789":1,"391790":1,"391791":1,"391792":1,"391793":1,"391794":1,"391795":1,"391796":1,"391797":1,"391798":1,"391799":1,"391800":1,"391801":1,"391802":1,"391803":1,"391804":1,"391805":1,"392137":1,"392138":1,"392139":1,"392140":1,"392141":1,"392142":1,"392143":1,"392144":1,"392145":1,"392146":1,"392147":1,"392148":1,"392149":1,"392150":1,"392151":1,"392152":1,"392153":1,"392154":1,"392155":1,"392156":1,"392157":1,"392158":1,"392159":1,"392160":1,"392161":1,"392162":1,"392163":1,"392164":1,"392165":1,"392166":1,"392167":1,"392168":1,"392169":1,"392170":1,"392171":1,"392172":1,"392173":1,"392174":1,"392175":1,"392176":1,"392177":1,"392178":1,"392190":1,"392191":1,"392192":1,"392193":1,"392194":1,"392195":1,"392196":1,"392197":1,"392198":1,"392199":1,"392200":1,"392201":1,"392202":1,"392203":1,"392925":1,"392926":1,"392927":1,"392928":1,"392929":1,"392930":1,"392931":1,"392932":1,"392933":1,"392934":1,"392935":1,"392936":1,"392937":1,"392938":1,"392939":1,"392940":1,"392941":1,"392942":1,"392943":1,"392944":1,"392945":1,"392946":1,"392947":1,"392948":1,"392949":1,"392950":1,"392951":1,"392952":1,"393290":1,"393291":1,"393292":1,"393293":1,"393294":1,"393295":1,"393296":1,"393297":1,"393298":1,"393299":1,"393300":1,"393301":1,"393302":1,"393303":1,"393304":1,"393305":1,"393306":1,"393307":1,"393308":1,"393309":1,"393310":1,"393311":1,"393312":1,"393313":1,"393314":1,"393316":1,"393317":1,"393318":1,"393319":1,"393320":1,"393321":1,"393322":1,"393323":1,"393324":1,"393325":1,"393326":1,"393327":1,"393328":1,"393329":1,"393330":1,"393342":1,"393343":1,"393345":1,"393346":1,"393347":1,"393348":1,"393349":1,"393350":1,"393351":1,"393352":1,"393353":1,"393354":1,"394077":1,"394078":1,"394079":1,"394080":1,"394085":1,"394086":1,"394087":1,"394088":1,"394089":1,"394090":1,"394091":1,"394092":1,"394093":1,"394094":1,"394095":1,"394096":1,"394097":1,"394098":1,"394099":1,"394100":1,"394101":1,"394102":1,"394103":1,"394443":1,"394444":1,"394445":1,"394446":1,"394447":1,"394448":1,"394449":1,"394450":1,"394451":1,"394452":1,"394453":1,"394454":1,"394455":1,"394456":1,"394457":1,"394458":1,"394459":1,"394460":1,"394461":1,"394462":1,"394463":1,"394464":1,"394465":1,"394466":1,"394467":1,"394468":1,"394469":1,"394470":1,"394471":1,"394472":1,"394473":1,"394474":1,"394475":1,"394476":1,"394477":1,"394478":1,"394479":1,"394480":1,"394481":1,"394482":1,"394494":1,"394495":1,"394496":1,"394497":1,"394498":1,"394499":1,"394500":1,"394501":1,"394502":1,"394503":1,"394504":1,"394505":1,"395229":1,"395230":1,"395231":1,"395238":1,"395239":1,"395240":1,"395241":1,"395242":1,"395243":1,"395244":1,"395245":1,"395246":1,"395247":1,"395248":1,"395249":1,"395250":1,"395251":1,"395252":1,"395595":1,"395596":1,"395597":1,"395598":1,"395599":1,"395600":1,"395601":1,"395602":1,"395603":1,"395604":1,"395605":1,"395606":1,"395607":1,"395608":1,"395609":1,"395610":1,"395611":1,"395612":1,"395613":1,"395614":1,"395615":1,"395616":1,"395617":1,"395618":1,"395619":1,"395620":1,"395621":1,"395622":1,"395623":1,"395624":1,"395625":1,"395626":1,"395627":1,"395628":1,"395629":1,"395630":1,"395631":1,"395632":1,"395633":1,"395634":1,"395647":1,"395648":1,"395649":1,"395650":1,"395651":1,"395652":1,"395653":1,"395654":1,"395655":1,"395656":1,"396399":1,"396400":1,"396401":1,"396402":1,"396403":1,"396747":1,"396748":1,"396749":1,"396750":1,"396751":1,"396752":1,"396753":1,"396754":1,"396755":1,"396756":1,"396757":1,"396758":1,"396759":1,"396760":1,"396761":1,"396762":1,"396763":1,"396764":1,"396765":1,"396766":1,"396767":1,"396768":1,"396769":1,"396770":1,"396771":1,"396772":1,"396773":1,"396774":1,"396775":1,"396776":1,"396777":1,"396778":1,"396779":1,"396780":1,"396781":1,"396782":1,"396783":1,"396784":1,"396785":1,"396786":1,"396973":1,"396974":1,"396975":1,"396976":1,"396977":1,"396978":1,"396981":1,"396982":1,"396983":1,"396984":1,"396985":1,"396986":1,"396987":1,"396988":1,"397552":1,"397553":1,"397554":1,"397555":1,"397898":1,"397899":1,"397900":1,"397901":1,"397902":1,"397903":1,"397904":1,"397905":1,"397906":1,"397907":1,"397908":1,"397909":1,"397910":1,"397911":1,"397912":1,"397913":1,"397914":1,"397915":1,"397916":1,"397917":1,"397918":1,"397919":1,"397920":1,"397921":1,"397922":1,"397923":1,"397924":1,"397925":1,"397926":1,"397927":1,"397928":1,"397929":1,"397930":1,"397931":1,"397932":1,"397933":1,"397934":1,"397935":1,"397936":1,"397937":1,"397938":1,"397939":1,"398125":1,"398126":1,"398127":1,"398128":1,"398129":1,"398130":1,"398133":1,"398134":1,"398135":1,"398136":1,"398137":1,"398138":1,"398139":1,"398140":1,"399049":1,"399050":1,"399051":1,"399052":1,"399053":1,"399054":1,"399055":1,"399056":1,"399057":1,"399058":1,"399059":1,"399060":1,"399061":1,"399062":1,"399064":1,"399065":1,"399066":1,"399067":1,"399068":1,"399069":1,"399070":1,"399071":1,"399072":1,"399073":1,"399074":1,"399075":1,"399076":1,"399077":1,"399078":1,"399079":1,"399080":1,"399081":1,"399082":1,"399083":1,"399084":1,"399085":1,"399086":1,"399087":1,"399088":1,"399089":1,"399090":1,"399091":1,"399092":1,"399280":1,"399281":1,"399282":1,"399283":1,"399284":1,"399285":1,"399286":1,"399287":1,"399288":1,"399289":1,"399292":1,"400201":1,"400202":1,"400203":1,"400204":1,"400205":1,"400206":1,"400207":1,"400208":1,"400209":1,"400210":1,"400211":1,"400212":1,"400213":1,"400214":1,"400215":1,"400216":1,"400217":1,"400218":1,"400219":1,"400220":1,"400221":1,"400222":1,"400223":1,"400224":1,"400225":1,"400226":1,"400227":1,"400228":1,"400229":1,"400230":1,"400231":1,"400232":1,"400233":1,"400234":1,"400235":1,"400236":1,"400237":1,"400238":1,"400239":1,"400240":1,"400241":1,"400242":1,"400243":1,"400244":1,"400432":1,"400433":1,"400434":1,"400435":1,"400436":1,"400437":1,"400438":1,"400439":1,"400440":1,"400441":1,"400444":1,"400449":1,"401353":1,"401354":1,"401355":1,"401356":1,"401357":1,"401358":1,"401359":1,"401360":1,"401361":1,"401362":1,"401363":1,"401364":1,"401365":1,"401366":1,"401367":1,"401368":1,"401369":1,"401370":1,"401371":1,"401372":1,"401373":1,"401374":1,"401375":1,"401376":1,"401377":1,"401378":1,"401379":1,"401380":1,"401381":1,"401382":1,"401383":1,"401384":1,"401385":1,"401386":1,"401387":1,"401388":1,"401389":1,"401390":1,"401391":1,"401392":1,"401393":1,"401394":1,"401395":1,"401396":1,"401584":1,"401585":1,"401586":1,"401587":1,"401588":1,"401589":1,"401590":1,"401591":1,"401592":1,"401593":1,"401594":1,"401595":1,"401596":1,"401597":1,"401598":1,"401599":1,"401600":1,"401601":1,"402338":1,"402341":1,"402342":1,"402504":1,"402505":1,"402506":1,"402507":1,"402508":1,"402509":1,"402510":1,"402511":1,"402512":1,"402513":1,"402514":1,"402515":1,"402516":1,"402517":1,"402518":1,"402519":1,"402520":1,"402521":1,"402522":1,"402523":1,"402524":1,"402525":1,"402526":1,"402527":1,"402528":1,"402529":1,"402530":1,"402531":1,"402532":1,"402533":1,"402534":1,"402535":1,"402536":1,"402537":1,"402538":1,"402539":1,"402540":1,"402541":1,"402542":1,"402543":1,"402544":1,"402545":1,"402546":1,"402547":1,"402548":1,"402734":1,"402735":1,"402736":1,"402737":1,"402738":1,"402739":1,"402740":1,"402741":1,"402742":1,"402743":1,"402744":1,"402745":1,"402746":1,"402747":1,"402748":1,"402749":1,"402750":1,"402751":1,"402752":1,"402753":1,"403486":1,"403487":1,"403488":1,"403489":1,"403490":1,"403491":1,"403492":1,"403493":1,"403494":1,"403647":1,"403648":1,"403655":1,"403656":1,"403657":1,"403658":1,"403659":1,"403660":1,"403661":1,"403662":1,"403663":1,"403664":1,"403666":1,"403667":1,"403668":1,"403669":1,"403670":1,"403671":1,"403672":1,"403673":1,"403674":1,"403675":1,"403676":1,"403677":1,"403678":1,"403679":1,"403680":1,"403681":1,"403682":1,"403683":1,"403684":1,"403685":1,"403686":1,"403687":1,"403688":1,"403689":1,"403690":1,"403691":1,"403692":1,"403693":1,"403694":1,"403695":1,"403696":1,"403697":1,"403698":1,"403699":1,"403700":1,"403886":1,"403887":1,"403888":1,"403889":1,"403890":1,"403891":1,"403892":1,"403893":1,"403894":1,"403895":1,"403896":1,"403897":1,"403898":1,"403899":1,"403900":1,"403901":1,"403904":1,"403905":1,"404635":1,"404636":1,"404637":1,"404638":1,"404639":1,"404640":1,"404641":1,"404642":1,"404643":1,"404644":1,"404645":1,"404646":1,"404798":1,"404799":1,"404800":1,"404801":1,"404802":1,"404803":1,"404804":1,"404805":1,"404806":1,"404807":1,"404808":1,"404809":1,"404810":1,"404811":1,"404812":1,"404813":1,"404814":1,"404815":1,"404816":1,"404817":1,"404818":1,"404819":1,"404820":1,"404821":1,"404822":1,"404823":1,"404824":1,"404825":1,"404826":1,"404827":1,"404828":1,"404829":1,"404830":1,"404831":1,"404832":1,"404833":1,"404834":1,"404835":1,"404836":1,"404837":1,"404838":1,"404839":1,"404840":1,"404841":1,"404843":1,"404844":1,"404845":1,"404846":1,"404847":1,"404848":1,"404849":1,"404850":1,"404851":1,"404852":1,"404853":1,"405038":1,"405039":1,"405040":1,"405041":1,"405042":1,"405043":1,"405044":1,"405045":1,"405046":1,"405047":1,"405048":1,"405049":1,"405050":1,"405051":1,"405052":1,"405053":1,"405056":1,"405787":1,"405788":1,"405789":1,"405790":1,"405791":1,"405792":1,"405796":1,"405797":1,"405798":1,"405950":1,"405951":1,"405952":1,"405953":1,"405954":1,"405955":1,"405956":1,"405957":1,"405958":1,"405959":1,"405960":1,"405961":1,"405962":1,"405963":1,"405964":1,"405965":1,"405966":1,"405967":1,"405968":1,"405969":1,"405970":1,"405971":1,"405972":1,"405973":1,"405974":1,"405975":1,"405976":1,"405977":1,"405978":1,"405979":1,"405980":1,"405981":1,"405982":1,"405983":1,"405984":1,"405985":1,"405986":1,"405987":1,"405988":1,"405989":1,"405990":1,"405991":1,"405992":1,"405993":1,"405994":1,"405995":1,"405996":1,"405997":1,"405998":1,"405999":1,"406000":1,"406001":1,"406002":1,"406003":1,"406004":1,"406005":1,"406006":1,"406190":1,"406191":1,"406192":1,"406193":1,"406194":1,"406195":1,"406196":1,"406197":1,"406198":1,"406199":1,"406200":1,"406201":1,"406202":1,"406203":1,"406204":1,"406205":1,"406206":1,"406207":1,"406208":1,"407102":1,"407103":1,"407104":1,"407105":1,"407106":1,"407107":1,"407108":1,"407109":1,"407110":1,"407111":1,"407112":1,"407113":1,"407114":1,"407115":1,"407116":1,"407117":1,"407118":1,"407119":1,"407120":1,"407121":1,"407122":1,"407123":1,"407124":1,"407125":1,"407126":1,"407127":1,"407128":1,"407129":1,"407130":1,"407131":1,"407132":1,"407133":1,"407134":1,"407135":1,"407136":1,"407137":1,"407138":1,"407139":1,"407140":1,"407141":1,"407142":1,"407143":1,"407144":1,"407145":1,"407146":1,"407147":1,"407148":1,"407149":1,"407150":1,"407151":1,"407153":1,"407154":1,"407155":1,"407156":1,"407157":1,"407158":1,"407343":1,"407344":1,"407345":1,"407346":1,"407347":1,"407348":1,"407349":1,"407350":1,"407351":1,"407352":1,"407353":1,"407354":1,"407355":1,"407356":1,"407357":1,"407358":1,"407359":1,"407360":1,"408253":1,"408254":1,"408255":1,"408256":1,"408257":1,"408258":1,"408259":1,"408260":1,"408261":1,"408262":1,"408263":1,"408264":1,"408265":1,"408266":1,"408267":1,"408268":1,"408269":1,"408270":1,"408271":1,"408272":1,"408273":1,"408274":1,"408275":1,"408276":1,"408277":1,"408278":1,"408279":1,"408280":1,"408281":1,"408282":1,"408283":1,"408284":1,"408285":1,"408286":1,"408287":1,"408288":1,"408289":1,"408290":1,"408291":1,"408292":1,"408293":1,"408294":1,"408295":1,"408296":1,"408297":1,"408298":1,"408299":1,"408300":1,"408301":1,"408302":1,"408303":1,"408304":1,"408305":1,"408306":1,"408307":1,"408308":1,"408309":1,"408310":1,"408496":1,"408497":1,"408498":1,"408499":1,"408500":1,"408501":1,"408502":1,"408503":1,"408506":1,"408507":1,"408508":1,"408509":1,"408510":1,"408511":1,"409404":1,"409405":1,"409406":1,"409407":1,"409408":1,"409409":1,"409411":1,"409412":1,"409413":1,"409414":1,"409415":1,"409416":1,"409417":1,"409418":1,"409419":1,"409420":1,"409421":1,"409422":1,"409423":1,"409424":1,"409425":1,"409426":1,"409427":1,"409428":1,"409429":1,"409430":1,"409431":1,"409432":1,"409433":1,"409434":1,"409435":1,"409436":1,"409438":1,"409439":1,"409440":1,"409441":1,"409442":1,"409444":1,"409445":1,"409446":1,"409447":1,"409448":1,"409449":1,"409450":1,"409451":1,"409452":1,"409453":1,"409454":1,"409455":1,"409456":1,"409457":1,"409458":1,"409459":1,"409460":1,"409461":1,"409462":1,"409463":1,"409648":1,"409649":1,"409650":1,"409651":1,"409652":1,"409653":1,"409654":1,"409655":1,"409658":1,"409659":1,"409660":1,"409661":1,"409662":1,"409663":1,"410551":1,"410552":1,"410553":1,"410554":1,"410555":1,"410556":1,"410557":1,"410558":1,"410559":1,"410560":1,"410561":1,"410562":1,"410563":1,"410564":1,"410565":1,"410566":1,"410567":1,"410568":1,"410569":1,"410570":1,"410571":1,"410572":1,"410573":1,"410574":1,"410575":1,"410576":1,"410577":1,"410578":1,"410579":1,"410580":1,"410581":1,"410582":1,"410583":1,"410584":1,"410585":1,"410586":1,"410587":1,"410588":1,"410589":1,"410590":1,"410591":1,"410592":1,"410593":1,"410594":1,"410595":1,"410596":1,"410597":1,"410598":1,"410599":1,"410600":1,"410601":1,"410602":1,"410603":1,"410604":1,"410605":1,"410606":1,"410607":1,"410608":1,"410609":1,"410610":1,"410611":1,"410612":1,"410613":1,"410614":1,"410615":1,"410616":1,"410800":1,"410803":1,"410804":1,"410805":1,"410806":1,"410807":1,"410808":1,"410809":1,"410810":1,"410811":1,"410812":1,"410813":1,"410814":1,"410815":1,"411702":1,"411703":1,"411704":1,"411705":1,"411706":1,"411707":1,"411708":1,"411709":1,"411710":1,"411711":1,"411712":1,"411713":1,"411714":1,"411715":1,"411716":1,"411717":1,"411718":1,"411719":1,"411720":1,"411721":1,"411722":1,"411723":1,"411724":1,"411725":1,"411726":1,"411727":1,"411728":1,"411729":1,"411730":1,"411731":1,"411732":1,"411733":1,"411734":1,"411735":1,"411736":1,"411737":1,"411738":1,"411739":1,"411740":1,"411741":1,"411742":1,"411743":1,"411744":1,"411745":1,"411746":1,"411747":1,"411748":1,"411749":1,"411750":1,"411751":1,"411752":1,"411753":1,"411754":1,"411755":1,"411756":1,"411757":1,"411758":1,"411759":1,"411760":1,"411761":1,"411762":1,"411763":1,"411764":1,"411765":1,"411766":1,"411767":1,"411768":1,"411952":1,"411955":1,"411956":1,"411957":1,"411958":1,"411959":1,"411960":1,"411961":1,"411962":1,"411963":1,"411964":1,"411965":1,"411966":1,"411967":1,"411968":1,"412853":1,"412854":1,"412855":1,"412856":1,"412857":1,"412858":1,"412859":1,"412860":1,"412861":1,"412862":1,"412863":1,"412864":1,"412865":1,"412866":1,"412867":1,"412868":1,"412869":1,"412870":1,"412878":1,"412879":1,"412880":1,"412881":1,"412882":1,"412883":1,"412884":1,"412885":1,"412886":1,"412887":1,"412888":1,"412889":1,"412890":1,"412891":1,"412892":1,"412893":1,"412894":1,"412895":1,"412896":1,"412897":1,"412898":1,"412899":1,"412900":1,"412901":1,"412902":1,"412903":1,"412904":1,"412905":1,"412906":1,"412907":1,"412908":1,"412909":1,"412910":1,"412911":1,"412912":1,"412913":1,"412914":1,"412915":1,"412916":1,"412917":1,"412918":1,"412919":1,"413071":1,"413104":1,"413105":1,"413106":1,"413107":1,"413108":1,"413109":1,"413110":1,"413111":1,"413112":1,"413113":1,"413114":1,"413115":1,"413116":1,"413117":1,"413118":1,"413119":1,"413120":1,"413121":1,"414005":1,"414006":1,"414007":1,"414008":1,"414009":1,"414010":1,"414011":1,"414012":1,"414013":1,"414014":1,"414015":1,"414016":1,"414017":1,"414018":1,"414019":1,"414020":1,"414021":1,"414022":1,"414030":1,"414031":1,"414032":1,"414033":1,"414034":1,"414035":1,"414036":1,"414037":1,"414038":1,"414039":1,"414040":1,"414041":1,"414042":1,"414043":1,"414044":1,"414045":1,"414046":1,"414047":1,"414048":1,"414049":1,"414050":1,"414051":1,"414052":1,"414053":1,"414054":1,"414055":1,"414056":1,"414057":1,"414058":1,"414059":1,"414060":1,"414061":1,"414062":1,"414063":1,"414064":1,"414065":1,"414066":1,"414067":1,"414068":1,"414069":1,"414070":1,"414222":1,"414223":1,"414224":1,"414225":1,"414226":1,"414255":1,"414256":1,"414257":1,"414258":1,"414259":1,"414260":1,"414261":1,"414262":1,"414263":1,"414264":1,"414265":1,"414266":1,"414267":1,"414268":1,"414269":1,"414270":1,"414271":1,"414272":1,"414273":1,"415157":1,"415158":1,"415159":1,"415160":1,"415161":1,"415162":1,"415163":1,"415164":1,"415165":1,"415166":1,"415167":1,"415168":1,"415169":1,"415170":1,"415171":1,"415172":1,"415173":1,"415174":1,"415182":1,"415183":1,"415184":1,"415186":1,"415187":1,"415188":1,"415189":1,"415190":1,"415191":1,"415192":1,"415193":1,"415194":1,"415195":1,"415196":1,"415197":1,"415198":1,"415199":1,"415200":1,"415201":1,"415202":1,"415203":1,"415204":1,"415205":1,"415206":1,"415207":1,"415208":1,"415209":1,"415210":1,"415211":1,"415212":1,"415213":1,"415214":1,"415215":1,"415216":1,"415217":1,"415218":1,"415219":1,"415220":1,"415221":1,"415374":1,"415375":1,"415376":1,"415377":1,"415378":1,"415379":1,"415380":1,"415381":1,"415406":1,"415407":1,"415408":1,"415409":1,"415410":1,"415411":1,"415412":1,"415413":1,"415414":1,"415415":1,"415416":1,"415417":1,"415418":1,"415419":1,"415420":1,"415421":1,"415422":1,"415425":1,"416308":1,"416309":1,"416310":1,"416311":1,"416312":1,"416313":1,"416314":1,"416315":1,"416316":1,"416317":1,"416318":1,"416319":1,"416320":1,"416321":1,"416322":1,"416323":1,"416324":1,"416325":1,"416326":1,"416334":1,"416335":1,"416336":1,"416337":1,"416338":1,"416339":1,"416340":1,"416341":1,"416342":1,"416343":1,"416345":1,"416346":1,"416347":1,"416348":1,"416349":1,"416350":1,"416351":1,"416352":1,"416353":1,"416354":1,"416355":1,"416356":1,"416357":1,"416358":1,"416359":1,"416360":1,"416361":1,"416362":1,"416363":1,"416364":1,"416365":1,"416366":1,"416367":1,"416368":1,"416369":1,"416370":1,"416371":1,"416372":1,"416526":1,"416527":1,"416528":1,"416529":1,"416530":1,"416531":1,"416532":1,"416533":1,"416534":1,"416558":1,"416559":1,"416560":1,"416561":1,"416562":1,"416563":1,"416564":1,"416565":1,"416566":1,"416567":1,"416568":1,"416569":1,"416570":1,"416571":1,"416572":1,"416573":1,"416574":1,"417459":1,"417460":1,"417461":1,"417462":1,"417463":1,"417464":1,"417465":1,"417467":1,"417468":1,"417469":1,"417470":1,"417471":1,"417472":1,"417473":1,"417474":1,"417475":1,"417476":1,"417477":1,"417478":1,"417486":1,"417487":1,"417488":1,"417489":1,"417490":1,"417491":1,"417492":1,"417493":1,"417494":1,"417495":1,"417496":1,"417497":1,"417498":1,"417499":1,"417500":1,"417501":1,"417502":1,"417503":1,"417504":1,"417505":1,"417506":1,"417507":1,"417508":1,"417509":1,"417510":1,"417511":1,"417512":1,"417513":1,"417514":1,"417515":1,"417516":1,"417517":1,"417518":1,"417519":1,"417520":1,"417521":1,"417522":1,"417524":1,"417658":1,"417659":1,"417678":1,"417679":1,"417680":1,"417681":1,"417682":1,"417683":1,"417684":1,"417685":1,"417686":1,"417687":1,"417710":1,"417711":1,"417712":1,"417713":1,"417714":1,"417715":1,"417716":1,"417717":1,"417718":1,"417719":1,"417720":1,"417721":1,"417722":1,"417723":1,"417724":1,"417725":1,"417726":1,"417727":1,"417728":1,"418611":1,"418612":1,"418613":1,"418614":1,"418615":1,"418616":1,"418617":1,"418618":1,"418619":1,"418620":1,"418621":1,"418622":1,"418623":1,"418624":1,"418625":1,"418626":1,"418627":1,"418628":1,"418629":1,"418630":1,"418638":1,"418639":1,"418640":1,"418641":1,"418642":1,"418643":1,"418644":1,"418645":1,"418646":1,"418647":1,"418648":1,"418649":1,"418650":1,"418651":1,"418652":1,"418653":1,"418654":1,"418655":1,"418656":1,"418657":1,"418658":1,"418659":1,"418660":1,"418661":1,"418662":1,"418663":1,"418664":1,"418665":1,"418666":1,"418667":1,"418668":1,"418669":1,"418670":1,"418671":1,"418672":1,"418673":1,"418674":1,"418675":1,"418676":1,"418809":1,"418810":1,"418811":1,"418812":1,"418813":1,"418829":1,"418830":1,"418831":1,"418832":1,"418833":1,"418834":1,"418835":1,"418836":1,"418837":1,"418838":1,"418839":1,"418861":1,"418862":1,"418863":1,"418864":1,"418865":1,"418866":1,"418867":1,"418868":1,"418869":1,"418870":1,"418871":1,"418872":1,"418873":1,"418874":1,"418875":1,"418876":1,"418877":1,"418878":1,"418879":1,"418880":1,"419768":1,"419769":1,"419770":1,"419771":1,"419772":1,"419773":1,"419774":1,"419775":1,"419776":1,"419777":1,"419778":1,"419779":1,"419780":1,"419781":1,"419782":1,"419783":1,"419784":1,"419785":1,"419786":1,"419787":1,"419788":1,"419789":1,"419790":1,"419791":1,"419792":1,"419793":1,"419794":1,"419795":1,"419796":1,"419797":1,"419798":1,"419799":1,"419800":1,"419801":1,"419802":1,"419803":1,"419804":1,"419805":1,"419806":1,"419807":1,"419808":1,"419809":1,"419810":1,"419811":1,"419812":1,"419813":1,"419814":1,"419815":1,"419816":1,"419817":1,"419818":1,"419819":1,"419820":1,"419822":1,"419823":1,"419824":1,"419825":1,"419826":1,"419827":1,"419959":1,"419960":1,"419961":1,"419962":1,"419963":1,"419964":1,"419965":1,"419966":1,"419979":1,"419980":1,"419981":1,"419982":1,"419983":1,"419985":1,"419986":1,"419987":1,"419988":1,"419989":1,"419990":1,"420011":1,"420012":1,"420013":1,"420014":1,"420015":1,"420016":1,"420017":1,"420018":1,"420019":1,"420020":1,"420021":1,"420022":1,"420023":1,"420024":1,"420027":1,"420028":1,"420029":1,"420030":1,"420031":1,"420032":1,"420921":1,"420922":1,"420923":1,"420924":1,"420925":1,"420926":1,"420927":1,"420928":1,"420929":1,"420930":1,"420931":1,"420932":1,"420933":1,"420934":1,"420935":1,"420936":1,"420937":1,"420938":1,"420939":1,"420940":1,"420941":1,"420942":1,"420943":1,"420944":1,"420945":1,"420946":1,"420947":1,"420948":1,"420949":1,"420950":1,"420951":1,"420952":1,"420953":1,"420954":1,"420955":1,"420956":1,"420957":1,"420958":1,"420959":1,"420960":1,"420961":1,"420962":1,"420963":1,"420964":1,"420965":1,"420966":1,"420967":1,"420968":1,"420969":1,"420970":1,"420971":1,"420972":1,"420973":1,"420974":1,"421110":1,"421111":1,"421112":1,"421113":1,"421114":1,"421115":1,"421116":1,"421117":1,"421118":1,"421119":1,"421120":1,"421121":1,"421122":1,"421123":1,"421124":1,"421125":1,"421126":1,"421127":1,"421128":1,"421129":1,"421130":1,"421131":1,"421132":1,"421133":1,"421134":1,"421135":1,"421136":1,"421137":1,"421138":1,"421139":1,"421140":1,"421141":1,"421162":1,"421163":1,"421164":1,"421165":1,"421168":1,"421169":1,"421170":1,"421171":1,"421172":1,"421173":1,"421174":1,"421175":1,"421176":1,"421179":1,"421180":1,"421181":1,"421182":1,"421183":1,"421184":1,"421185":1,"421698":1,"421699":1,"422074":1,"422075":1,"422076":1,"422077":1,"422078":1,"422079":1,"422080":1,"422081":1,"422082":1,"422083":1,"422084":1,"422085":1,"422086":1,"422087":1,"422088":1,"422089":1,"422090":1,"422091":1,"422092":1,"422093":1,"422094":1,"422095":1,"422096":1,"422097":1,"422098":1,"422099":1,"422100":1,"422101":1,"422102":1,"422103":1,"422104":1,"422105":1,"422106":1,"422107":1,"422108":1,"422109":1,"422110":1,"422111":1,"422112":1,"422113":1,"422114":1,"422115":1,"422116":1,"422117":1,"422118":1,"422119":1,"422120":1,"422121":1,"422122":1,"422123":1,"422124":1,"422125":1,"422259":1,"422260":1,"422261":1,"422262":1,"422264":1,"422265":1,"422266":1,"422267":1,"422268":1,"422269":1,"422270":1,"422271":1,"422272":1,"422273":1,"422274":1,"422275":1,"422276":1,"422277":1,"422278":1,"422279":1,"422280":1,"422281":1,"422282":1,"422283":1,"422284":1,"422285":1,"422286":1,"422287":1,"422288":1,"422289":1,"422290":1,"422291":1,"422292":1,"422293":1,"422314":1,"422315":1,"422316":1,"422317":1,"422320":1,"422321":1,"422322":1,"422323":1,"422324":1,"422325":1,"422326":1,"422327":1,"422328":1,"422329":1,"422330":1,"422331":1,"422332":1,"422333":1,"422334":1,"422335":1,"422850":1,"422851":1,"422852":1,"422857":1,"422858":1,"422859":1,"422860":1,"423227":1,"423228":1,"423229":1,"423230":1,"423231":1,"423232":1,"423233":1,"423234":1,"423235":1,"423236":1,"423237":1,"423238":1,"423239":1,"423240":1,"423241":1,"423242":1,"423243":1,"423244":1,"423245":1,"423246":1,"423247":1,"423248":1,"423249":1,"423250":1,"423251":1,"423252":1,"423253":1,"423254":1,"423255":1,"423256":1,"423257":1,"423258":1,"423259":1,"423260":1,"423261":1,"423262":1,"423263":1,"423264":1,"423265":1,"423266":1,"423267":1,"423268":1,"423269":1,"423270":1,"423271":1,"423272":1,"423273":1,"423274":1,"423275":1,"423276":1,"423410":1,"423411":1,"423412":1,"423413":1,"423414":1,"423415":1,"423416":1,"423417":1,"423418":1,"423419":1,"423420":1,"423421":1,"423422":1,"423434":1,"423435":1,"423436":1,"423437":1,"423438":1,"423439":1,"423440":1,"423441":1,"423442":1,"423443":1,"423444":1,"423466":1,"423467":1,"423468":1,"423469":1,"423470":1,"423471":1,"423472":1,"423473":1,"423474":1,"423475":1,"423476":1,"423477":1,"423478":1,"423479":1,"423480":1,"423481":1,"423482":1,"423483":1,"423484":1,"423485":1,"423486":1,"423487":1,"424002":1,"424003":1,"424004":1,"424005":1,"424006":1,"424007":1,"424008":1,"424009":1,"424010":1,"424011":1,"424012":1,"424013":1,"424379":1,"424380":1,"424381":1,"424382":1,"424383":1,"424384":1,"424385":1,"424386":1,"424387":1,"424388":1,"424389":1,"424390":1,"424391":1,"424392":1,"424393":1,"424394":1,"424395":1,"424396":1,"424397":1,"424398":1,"424399":1,"424400":1,"424401":1,"424402":1,"424403":1,"424404":1,"424405":1,"424406":1,"424407":1,"424408":1,"424409":1,"424410":1,"424411":1,"424412":1,"424413":1,"424414":1,"424415":1,"424416":1,"424417":1,"424418":1,"424419":1,"424420":1,"424421":1,"424422":1,"424423":1,"424424":1,"424425":1,"424426":1,"424427":1,"424563":1,"424564":1,"424565":1,"424566":1,"424567":1,"424568":1,"424569":1,"424570":1,"424571":1,"424572":1,"424573":1,"424574":1,"424585":1,"424586":1,"424587":1,"424588":1,"424589":1,"424590":1,"424591":1,"424592":1,"424593":1,"424620":1,"424621":1,"424622":1,"424623":1,"424624":1,"424625":1,"424626":1,"424627":1,"424628":1,"424629":1,"424630":1,"424631":1,"424632":1,"424633":1,"424634":1,"424635":1,"424636":1,"424637":1,"424638":1,"424639":1,"425141":1,"425142":1,"425147":1,"425148":1,"425153":1,"425154":1,"425155":1,"425156":1,"425157":1,"425158":1,"425159":1,"425160":1,"425161":1,"425162":1,"425163":1,"425164":1,"425165":1,"425531":1,"425532":1,"425533":1,"425534":1,"425535":1,"425536":1,"425537":1,"425538":1,"425539":1,"425540":1,"425541":1,"425542":1,"425543":1,"425544":1,"425545":1,"425546":1,"425547":1,"425548":1,"425549":1,"425550":1,"425551":1,"425552":1,"425553":1,"425554":1,"425555":1,"425556":1,"425557":1,"425558":1,"425559":1,"425560":1,"425561":1,"425562":1,"425563":1,"425565":1,"425566":1,"425567":1,"425568":1,"425569":1,"425570":1,"425571":1,"425572":1,"425573":1,"425574":1,"425575":1,"425576":1,"425577":1,"425578":1,"425716":1,"425717":1,"425722":1,"425723":1,"425724":1,"425725":1,"425726":1,"425737":1,"425738":1,"425739":1,"425740":1,"425741":1,"425742":1,"425773":1,"425774":1,"425775":1,"425776":1,"425777":1,"425778":1,"425779":1,"425780":1,"425781":1,"425782":1,"425783":1,"425784":1,"425785":1,"425786":1,"425787":1,"425788":1,"425789":1,"425790":1,"426292":1,"426293":1,"426294":1,"426295":1,"426296":1,"426297":1,"426298":1,"426299":1,"426300":1,"426301":1,"426302":1,"426303":1,"426304":1,"426305":1,"426306":1,"426307":1,"426308":1,"426309":1,"426310":1,"426311":1,"426312":1,"426313":1,"426314":1,"426315":1,"426316":1,"426317":1,"426318":1,"426359":1,"426360":1,"426361":1,"426362":1,"426683":1,"426684":1,"426685":1,"426686":1,"426687":1,"426688":1,"426689":1,"426690":1,"426691":1,"426692":1,"426693":1,"426694":1,"426695":1,"426696":1,"426697":1,"426698":1,"426699":1,"426700":1,"426701":1,"426702":1,"426703":1,"426704":1,"426705":1,"426706":1,"426707":1,"426708":1,"426709":1,"426710":1,"426711":1,"426712":1,"426713":1,"426714":1,"426715":1,"426716":1,"426717":1,"426718":1,"426719":1,"426720":1,"426721":1,"426722":1,"426723":1,"426724":1,"426725":1,"426726":1,"426727":1,"426728":1,"426729":1,"426730":1,"426875":1,"426876":1,"426877":1,"426890":1,"426891":1,"426892":1,"426893":1,"426926":1,"426927":1,"426928":1,"426929":1,"426930":1,"426931":1,"426932":1,"426933":1,"426934":1,"426937":1,"426938":1,"426939":1,"426940":1,"426941":1,"427444":1,"427445":1,"427446":1,"427447":1,"427448":1,"427449":1,"427450":1,"427451":1,"427452":1,"427453":1,"427454":1,"427455":1,"427456":1,"427457":1,"427458":1,"427459":1,"427460":1,"427461":1,"427462":1,"427463":1,"427464":1,"427465":1,"427466":1,"427467":1,"427468":1,"427469":1,"427470":1,"427471":1,"427508":1,"427509":1,"427510":1,"427511":1,"427512":1,"427513":1,"427514":1,"427515":1,"427835":1,"427836":1,"427837":1,"427838":1,"427839":1,"427840":1,"427841":1,"427842":1,"427843":1,"427844":1,"427845":1,"427846":1,"427847":1,"427848":1,"427849":1,"427850":1,"427851":1,"427852":1,"427853":1,"427854":1,"427855":1,"427856":1,"427857":1,"427858":1,"427859":1,"427860":1,"427861":1,"427862":1,"427863":1,"427864":1,"427865":1,"427866":1,"427867":1,"427868":1,"427869":1,"427870":1,"427871":1,"427872":1,"427873":1,"427874":1,"427875":1,"427876":1,"427877":1,"427878":1,"427879":1,"427880":1,"427881":1,"427882":1,"428079":1,"428080":1,"428081":1,"428082":1,"428083":1,"428084":1,"428085":1,"428086":1,"428089":1,"428090":1,"428091":1,"428092":1,"428093":1,"428597":1,"428598":1,"428599":1,"428600":1,"428601":1,"428602":1,"428603":1,"428604":1,"428605":1,"428606":1,"428607":1,"428608":1,"428609":1,"428610":1,"428611":1,"428612":1,"428613":1,"428614":1,"428615":1,"428616":1,"428617":1,"428618":1,"428619":1,"428620":1,"428621":1,"428622":1,"428623":1,"428624":1,"428625":1,"428626":1,"428653":1,"428654":1,"428655":1,"428656":1,"428657":1,"428658":1,"428659":1,"428660":1,"428661":1,"428662":1,"428663":1,"428664":1,"428665":1,"428666":1,"428667":1,"428668":1,"428669":1,"428670":1,"428987":1,"428988":1,"428989":1,"428990":1,"428991":1,"428992":1,"428993":1,"428995":1,"428996":1,"428997":1,"428998":1,"428999":1,"429000":1,"429001":1,"429002":1,"429003":1,"429004":1,"429005":1,"429006":1,"429007":1,"429008":1,"429009":1,"429010":1,"429011":1,"429012":1,"429013":1,"429014":1,"429015":1,"429016":1,"429017":1,"429018":1,"429019":1,"429020":1,"429021":1,"429022":1,"429023":1,"429024":1,"429025":1,"429026":1,"429027":1,"429028":1,"429029":1,"429030":1,"429031":1,"429032":1,"429033":1,"429034":1,"429232":1,"429233":1,"429234":1,"429235":1,"429236":1,"429237":1,"429238":1,"429239":1,"429240":1,"429241":1,"429242":1,"429243":1,"429244":1,"429245":1,"429750":1,"429751":1,"429752":1,"429753":1,"429754":1,"429755":1,"429756":1,"429757":1,"429758":1,"429759":1,"429760":1,"429761":1,"429762":1,"429763":1,"429764":1,"429765":1,"429766":1,"429767":1,"429768":1,"429769":1,"429770":1,"429771":1,"429772":1,"429773":1,"429774":1,"429775":1,"429776":1,"429777":1,"429778":1,"429779":1,"429802":1,"429803":1,"429804":1,"429805":1,"429806":1,"429807":1,"429808":1,"429809":1,"429810":1,"429811":1,"429812":1,"429813":1,"429814":1,"429815":1,"429816":1,"429817":1,"429818":1,"429819":1,"429820":1,"429821":1,"429822":1,"429823":1,"430138":1,"430139":1,"430140":1,"430141":1,"430142":1,"430143":1,"430144":1,"430145":1,"430146":1,"430147":1,"430148":1,"430149":1,"430150":1,"430151":1,"430152":1,"430153":1,"430154":1,"430155":1,"430156":1,"430157":1,"430158":1,"430159":1,"430160":1,"430161":1,"430162":1,"430163":1,"430164":1,"430165":1,"430166":1,"430167":1,"430168":1,"430169":1,"430170":1,"430171":1,"430172":1,"430173":1,"430174":1,"430175":1,"430176":1,"430177":1,"430178":1,"430179":1,"430180":1,"430181":1,"430182":1,"430183":1,"430184":1,"430185":1,"430186":1,"430187":1,"430385":1,"430390":1,"430391":1,"430392":1,"430393":1,"430394":1,"430395":1,"430396":1,"430902":1,"430903":1,"430904":1,"430905":1,"430906":1,"430907":1,"430908":1,"430909":1,"430910":1,"430911":1,"430912":1,"430913":1,"430914":1,"430915":1,"430916":1,"430917":1,"430918":1,"430919":1,"430920":1,"430921":1,"430922":1,"430923":1,"430924":1,"430925":1,"430926":1,"430927":1,"430928":1,"430929":1,"430930":1,"430931":1,"430953":1,"430954":1,"430955":1,"430956":1,"430957":1,"430958":1,"430959":1,"430960":1,"430961":1,"430962":1,"430963":1,"430964":1,"430965":1,"430966":1,"430967":1,"430968":1,"430969":1,"430970":1,"430971":1,"430972":1,"430973":1,"430974":1,"430975":1,"431289":1,"431290":1,"431291":1,"431292":1,"431293":1,"431294":1,"431295":1,"431296":1,"431297":1,"431298":1,"431299":1,"431300":1,"431301":1,"431302":1,"431303":1,"431304":1,"431305":1,"431306":1,"431308":1,"431309":1,"431310":1,"431311":1,"431312":1,"431313":1,"431314":1,"431315":1,"431316":1,"431317":1,"431318":1,"431319":1,"431320":1,"431321":1,"431322":1,"431323":1,"431324":1,"431325":1,"431326":1,"431327":1,"431328":1,"431329":1,"431330":1,"431331":1,"431332":1,"431333":1,"431334":1,"431335":1,"431336":1,"431337":1,"431338":1,"431339":1,"431340":1,"432054":1,"432055":1,"432056":1,"432057":1,"432058":1,"432059":1,"432060":1,"432061":1,"432062":1,"432063":1,"432064":1,"432065":1,"432066":1,"432067":1,"432068":1,"432069":1,"432070":1,"432071":1,"432072":1,"432073":1,"432074":1,"432075":1,"432076":1,"432077":1,"432078":1,"432079":1,"432080":1,"432081":1,"432082":1,"432083":1,"432105":1,"432106":1,"432107":1,"432108":1,"432109":1,"432110":1,"432111":1,"432112":1,"432113":1,"432114":1,"432115":1,"432116":1,"432117":1,"432118":1,"432119":1,"432120":1,"432121":1,"432122":1,"432123":1,"432124":1,"432125":1,"432126":1,"432127":1,"432441":1,"432442":1,"432443":1,"432444":1,"432445":1,"432446":1,"432447":1,"432448":1,"432449":1,"432450":1,"432451":1,"432452":1,"432453":1,"432454":1,"432455":1,"432456":1,"432457":1,"432458":1,"432459":1,"432460":1,"432461":1,"432462":1,"432463":1,"432464":1,"432465":1,"432466":1,"432467":1,"432468":1,"432469":1,"432470":1,"432471":1,"432472":1,"432474":1,"432475":1,"432476":1,"432477":1,"432478":1,"432479":1,"432480":1,"432487":1,"432488":1,"432489":1,"432490":1,"432491":1,"432492":1,"433205":1,"433206":1,"433207":1,"433208":1,"433209":1,"433210":1,"433211":1,"433212":1,"433213":1,"433214":1,"433215":1,"433216":1,"433217":1,"433218":1,"433219":1,"433220":1,"433221":1,"433222":1,"433223":1,"433224":1,"433225":1,"433226":1,"433227":1,"433228":1,"433229":1,"433230":1,"433231":1,"433232":1,"433233":1,"433234":1,"433235":1,"433256":1,"433257":1,"433258":1,"433259":1,"433260":1,"433261":1,"433262":1,"433263":1,"433264":1,"433265":1,"433266":1,"433267":1,"433268":1,"433269":1,"433270":1,"433271":1,"433272":1,"433273":1,"433274":1,"433275":1,"433276":1,"433277":1,"433278":1,"433279":1,"433280":1,"433602":1,"433603":1,"433604":1,"433605":1,"433606":1,"433607":1,"433608":1,"433609":1,"433610":1,"433611":1,"433612":1,"433613":1,"433614":1,"433615":1,"433616":1,"433617":1,"433618":1,"433619":1,"433620":1,"433621":1,"433622":1,"433623":1,"433624":1,"433625":1,"433626":1,"433627":1,"433628":1,"433629":1,"433630":1,"433631":1,"433640":1,"433641":1,"433642":1,"433643":1,"433644":1,"434356":1,"434357":1,"434358":1,"434359":1,"434360":1,"434361":1,"434362":1,"434363":1,"434364":1,"434365":1,"434366":1,"434367":1,"434368":1,"434369":1,"434370":1,"434371":1,"434372":1,"434373":1,"434374":1,"434375":1,"434376":1,"434377":1,"434378":1,"434379":1,"434380":1,"434381":1,"434382":1,"434383":1,"434384":1,"434385":1,"434386":1,"434407":1,"434408":1,"434409":1,"434410":1,"434411":1,"434412":1,"434413":1,"434414":1,"434415":1,"434416":1,"434417":1,"434418":1,"434419":1,"434420":1,"434421":1,"434422":1,"434423":1,"434424":1,"434425":1,"434426":1,"434427":1,"434428":1,"434429":1,"434430":1,"434431":1,"434432":1,"434433":1,"434755":1,"434756":1,"434757":1,"434758":1,"434759":1,"434760":1,"434761":1,"434762":1,"434763":1,"434764":1,"434765":1,"434766":1,"434767":1,"434768":1,"434769":1,"434770":1,"434771":1,"434772":1,"434773":1,"434774":1,"434775":1,"434776":1,"434777":1,"434778":1,"434779":1,"434780":1,"434781":1,"434782":1,"434793":1,"434794":1,"434795":1,"434796":1,"435508":1,"435509":1,"435510":1,"435511":1,"435512":1,"435513":1,"435514":1,"435515":1,"435516":1,"435517":1,"435518":1,"435519":1,"435520":1,"435521":1,"435522":1,"435523":1,"435524":1,"435525":1,"435526":1,"435527":1,"435528":1,"435529":1,"435530":1,"435531":1,"435532":1,"435533":1,"435534":1,"435535":1,"435536":1,"435537":1,"435559":1,"435560":1,"435561":1,"435562":1,"435563":1,"435564":1,"435565":1,"435566":1,"435567":1,"435568":1,"435569":1,"435570":1,"435571":1,"435572":1,"435573":1,"435574":1,"435575":1,"435576":1,"435577":1,"435578":1,"435579":1,"435580":1,"435581":1,"435582":1,"435583":1,"435584":1,"435585":1,"435910":1,"435911":1,"435912":1,"435913":1,"435914":1,"435915":1,"435922":1,"435923":1,"435924":1,"435925":1,"435926":1,"435927":1,"435928":1,"435929":1,"435930":1,"435931":1,"435932":1,"435933":1,"435934":1,"436660":1,"436661":1,"436662":1,"436663":1,"436664":1,"436665":1,"436666":1,"436667":1,"436668":1,"436669":1,"436670":1,"436671":1,"436672":1,"436673":1,"436674":1,"436675":1,"436676":1,"436677":1,"436678":1,"436679":1,"436680":1,"436681":1,"436682":1,"436683":1,"436684":1,"436685":1,"436686":1,"436687":1,"436688":1,"436689":1,"436711":1,"436712":1,"436713":1,"436714":1,"436715":1,"436716":1,"436717":1,"436718":1,"436719":1,"436720":1,"436721":1,"436722":1,"436723":1,"436724":1,"436725":1,"436726":1,"436727":1,"436728":1,"436729":1,"436730":1,"436731":1,"436732":1,"436733":1,"436734":1,"436735":1,"436736":1,"436737":1,"437063":1,"437064":1,"437065":1,"437066":1,"437075":1,"437076":1,"437077":1,"437078":1,"437079":1,"437080":1,"437081":1,"437082":1,"437083":1,"437084":1,"437085":1,"437086":1,"437813":1,"437814":1,"437815":1,"437816":1,"437817":1,"437818":1,"437819":1,"437824":1,"437825":1,"437826":1,"437827":1,"437828":1,"437829":1,"437830":1,"437831":1,"437832":1,"437833":1,"437834":1,"437835":1,"437836":1,"437837":1,"437838":1,"437839":1,"437840":1,"437841":1,"437863":1,"437864":1,"437865":1,"437866":1,"437867":1,"437868":1,"437869":1,"437870":1,"437871":1,"437872":1,"437873":1,"437874":1,"437875":1,"437876":1,"437877":1,"437878":1,"437879":1,"437880":1,"437881":1,"437882":1,"437883":1,"437884":1,"437885":1,"437886":1,"437887":1,"437888":1,"437889":1,"438227":1,"438228":1,"438229":1,"438230":1,"438231":1,"438234":1,"438235":1,"438236":1,"438237":1,"438238":1,"438297":1,"438298":1,"438299":1,"438300":1,"438301":1,"438302":1,"439015":1,"439016":1,"439017":1,"439018":1,"439019":1,"439020":1,"439021":1,"439022":1,"439023":1,"439024":1,"439025":1,"439026":1,"439027":1,"439028":1,"439029":1,"439030":1,"439031":1,"439032":1,"439033":1,"439034":1,"439035":1,"439036":1,"439037":1,"439038":1,"439039":1,"439379":1,"439380":1,"439381":1,"439382":1,"439387":1,"439388":1,"439389":1,"439390":1,"439449":1,"439450":1,"439451":1,"439452":1,"439453":1,"439454":1,"440167":1,"440168":1,"440169":1,"440170":1,"440171":1,"440172":1,"440173":1,"440174":1,"440175":1,"440176":1,"440177":1,"440178":1,"440179":1,"440180":1,"440181":1,"440182":1,"440183":1,"440184":1,"440185":1,"440186":1,"440187":1,"440188":1,"440189":1,"440190":1,"440600":1,"440601":1,"440602":1,"440603":1,"440604":1,"440605":1,"440606":1,"440607":1,"441322":1,"441323":1,"441324":1,"441325":1,"441326":1,"441327":1,"441328":1,"441329":1,"441330":1,"441331":1,"441332":1,"441333":1,"441334":1,"441335":1,"441336":1,"441337":1,"441338":1,"441339":1,"441340":1,"441341":1,"441752":1,"441753":1,"441754":1,"441755":1,"441756":1,"441757":1,"441758":1,"441759":1,"441760":1,"442475":1,"442476":1,"442477":1,"442478":1,"442479":1,"442480":1,"442481":1,"442482":1,"442489":1,"442490":1,"442491":1,"442492":1,"442903":1,"442904":1,"442905":1,"442906":1,"442907":1,"442908":1,"442909":1,"442910":1,"442911":1,"442912":1,"442913":1,"442914":1,"442915":1,"442916":1,"442917":1,"444056":1,"444057":1,"444058":1,"444059":1,"444060":1,"444061":1,"444062":1,"444063":1,"444064":1,"444065":1,"444066":1,"444067":1,"444068":1,"444069":1,"444070":1,"445210":1,"445211":1,"445212":1,"445213":1,"445214":1,"445215":1,"445216":1,"445217":1,"445218":1,"445219":1,"445220":1,"445221":1,"446363":1,"446364":1,"446365":1,"446366":1,"446367":1,"446368":1,"446369":1,"446370":1,"446371":1,"446372":1,"447516":1,"447517":1,"447518":1,"447519":1,"447520":1,"447521":1,"447522":1,"447523":1,"447524":1,"447538":1,"447539":1,"447543":1,"447544":1,"448668":1,"448669":1,"448670":1,"448671":1,"448672":1,"448673":1,"448674":1,"448675":1,"448676":1,"448689":1,"448690":1,"448691":1,"448692":1,"448693":1,"448694":1,"448695":1,"448696":1,"448697":1,"449820":1,"449821":1,"449822":1,"449823":1,"449824":1,"449825":1,"449826":1,"449827":1,"449828":1,"449840":1,"449841":1,"449842":1,"449843":1,"449844":1,"449845":1,"449846":1,"449847":1,"449848":1,"449849":1,"450973":1,"450974":1,"450975":1,"450976":1,"450977":1,"450978":1,"450979":1,"450980":1,"450992":1,"450993":1,"450994":1,"450995":1,"450996":1,"450997":1,"450998":1,"450999":1,"451000":1,"451001":1,"452126":1,"452127":1,"452128":1,"452129":1,"452130":1,"452131":1,"452132":1,"452133":1,"452145":1,"452146":1,"452147":1,"452148":1,"452149":1,"452150":1,"452151":1,"452152":1,"452153":1,"452154":1,"453278":1,"453279":1,"453280":1,"453281":1,"453282":1,"453283":1,"453284":1,"453285":1,"453286":1,"453298":1,"453299":1,"453300":1,"453301":1,"453302":1,"453303":1,"453304":1,"453305":1,"453306":1,"453307":1,"454430":1,"454431":1,"454432":1,"454433":1,"454434":1,"454435":1,"454436":1,"454437":1,"454438":1,"454450":1,"454451":1,"454452":1,"454453":1,"454454":1,"454455":1,"454456":1,"454457":1,"454458":1,"454459":1,"454460":1,"454461":1,"454462":1,"455582":1,"455583":1,"455584":1,"455585":1,"455586":1,"455587":1,"455588":1,"455589":1,"455590":1,"455602":1,"455603":1,"455604":1,"455605":1,"455606":1,"455607":1,"455608":1,"455609":1,"455610":1,"455611":1,"455612":1,"455613":1,"455614":1,"455615":1,"455628":1,"455629":1,"456734":1,"456735":1,"456736":1,"456737":1,"456738":1,"456739":1,"456740":1,"456741":1,"456755":1,"456756":1,"456757":1,"456758":1,"456759":1,"456760":1,"456761":1,"456762":1,"456763":1,"456764":1,"456765":1,"456766":1,"456780":1,"456781":1,"456782":1,"456783":1,"457886":1,"457887":1,"457888":1,"457889":1,"457890":1,"457891":1,"457892":1,"457893":1,"457909":1,"457910":1,"457911":1,"457912":1,"457913":1,"457914":1,"457915":1,"457916":1,"457917":1,"457932":1,"457933":1,"457934":1,"457935":1,"459037":1,"459038":1,"459039":1,"459040":1,"459041":1,"459042":1,"459043":1,"459044":1,"459045":1,"459062":1,"459063":1,"459064":1,"459065":1,"459066":1,"459067":1,"459068":1,"459069":1,"459083":1,"459084":1,"459085":1,"459086":1,"459087":1,"460185":1,"460186":1,"460187":1,"460188":1,"460189":1,"460190":1,"460191":1,"460192":1,"460193":1,"460194":1,"460195":1,"460196":1,"460197":1,"460215":1,"460216":1,"460217":1,"460218":1,"460219":1,"460220":1,"460221":1,"460234":1,"460235":1,"460236":1,"460237":1,"460238":1,"460239":1,"461336":1,"461337":1,"461338":1,"461339":1,"461340":1,"461341":1,"461342":1,"461343":1,"461344":1,"461345":1,"461346":1,"461347":1,"461348":1,"461349":1,"461367":1,"461368":1,"461369":1,"461370":1,"461371":1,"461372":1,"461373":1,"461387":1,"461388":1,"461389":1,"461390":1,"461391":1,"461392":1,"462028":1,"462029":1,"462030":1,"462031":1,"462032":1,"462033":1,"462037":1,"462038":1,"462039":1,"462040":1,"462041":1,"462042":1,"462489":1,"462490":1,"462491":1,"462492":1,"462493":1,"462494":1,"462495":1,"462496":1,"462497":1,"462498":1,"462499":1,"462500":1,"462501":1,"462502":1,"462519":1,"462520":1,"462521":1,"462522":1,"462523":1,"462524":1,"462525":1,"462540":1,"462541":1,"462542":1,"462543":1,"462544":1,"462545":1,"463160":1,"463161":1,"463162":1,"463163":1,"463164":1,"463165":1,"463168":1,"463169":1,"463170":1,"463180":1,"463181":1,"463182":1,"463183":1,"463184":1,"463185":1,"463186":1,"463187":1,"463188":1,"463189":1,"463190":1,"463191":1,"463192":1,"463193":1,"463194":1,"463642":1,"463643":1,"463644":1,"463645":1,"463646":1,"463647":1,"463648":1,"463653":1,"463654":1,"463655":1,"463656":1,"463657":1,"463672":1,"463673":1,"463674":1,"463675":1,"463676":1,"463677":1,"463678":1,"463692":1,"463693":1,"463694":1,"463695":1,"463696":1,"463697":1,"464312":1,"464313":1,"464314":1,"464315":1,"464316":1,"464317":1,"464318":1,"464319":1,"464320":1,"464321":1,"464322":1,"464332":1,"464333":1,"464334":1,"464335":1,"464336":1,"464337":1,"464338":1,"464339":1,"464340":1,"464341":1,"464342":1,"464343":1,"464344":1,"464345":1,"464346":1,"464355":1,"464356":1,"464357":1,"464358":1,"464359":1,"464360":1,"464361":1,"464362":1,"464363":1,"464364":1,"464365":1,"464375":1,"464376":1,"464377":1,"464378":1,"464379":1,"464380":1,"464381":1,"464382":1,"464383":1,"464384":1,"464385":1,"464386":1,"464794":1,"464795":1,"464796":1,"464797":1,"464798":1,"464806":1,"464807":1,"464808":1,"464809":1,"464810":1,"464825":1,"464826":1,"464827":1,"464828":1,"464829":1,"464830":1,"464831":1,"464844":1,"464845":1,"464846":1,"464847":1,"464848":1,"464849":1,"465464":1,"465465":1,"465466":1,"465467":1,"465468":1,"465469":1,"465470":1,"465471":1,"465472":1,"465473":1,"465474":1,"465484":1,"465485":1,"465486":1,"465487":1,"465488":1,"465489":1,"465490":1,"465491":1,"465492":1,"465493":1,"465494":1,"465495":1,"465496":1,"465497":1,"465507":1,"465508":1,"465509":1,"465510":1,"465511":1,"465512":1,"465513":1,"465514":1,"465515":1,"465516":1,"465517":1,"465527":1,"465528":1,"465529":1,"465530":1,"465531":1,"465532":1,"465533":1,"465534":1,"465535":1,"465536":1,"465537":1,"465538":1,"465946":1,"465947":1,"465948":1,"465949":1,"465958":1,"465959":1,"465960":1,"465961":1,"465962":1,"465977":1,"465978":1,"465979":1,"465980":1,"465981":1,"465982":1,"465983":1,"465996":1,"465997":1,"465998":1,"465999":1,"466000":1,"466001":1,"466002":1,"466619":1,"466620":1,"466621":1,"466622":1,"466639":1,"466640":1,"466641":1,"466642":1,"466645":1,"466646":1,"466647":1,"466648":1,"466659":1,"466660":1,"466661":1,"466662":1,"466663":1,"466664":1,"466665":1,"466666":1,"466667":1,"466668":1,"466669":1,"466679":1,"466680":1,"466681":1,"466682":1,"466683":1,"466684":1,"466685":1,"466686":1,"466687":1,"466688":1,"466689":1,"466690":1,"467098":1,"467099":1,"467100":1,"467110":1,"467111":1,"467112":1,"467113":1,"467114":1,"467129":1,"467130":1,"467131":1,"467132":1,"467133":1,"467134":1,"467135":1,"467147":1,"467148":1,"467149":1,"467150":1,"467151":1,"467152":1,"467153":1,"467154":1,"467155":1,"467798":1,"467799":1,"467800":1,"467814":1,"467815":1,"467816":1,"467817":1,"467831":1,"467832":1,"467833":1,"467834":1,"467835":1,"467836":1,"467837":1,"467838":1,"467839":1,"467840":1,"467841":1,"467842":1,"468250":1,"468251":1,"468252":1,"468262":1,"468263":1,"468264":1,"468265":1,"468266":1,"468267":1,"468282":1,"468283":1,"468284":1,"468285":1,"468286":1,"468287":1,"468288":1,"468298":1,"468299":1,"468300":1,"468301":1,"468302":1,"468303":1,"468304":1,"468305":1,"468306":1,"468307":1,"468967":1,"468968":1,"468983":1,"468984":1,"468985":1,"468986":1,"468989":1,"468990":1,"468991":1,"468992":1,"468993":1,"468994":1,"469401":1,"469402":1,"469403":1,"469404":1,"469415":1,"469416":1,"469417":1,"469418":1,"469419":1,"469420":1,"469436":1,"469437":1,"469438":1,"469439":1,"469440":1,"469441":1,"469450":1,"469451":1,"469452":1,"469453":1,"469454":1,"469455":1,"469456":1,"469457":1,"469458":1,"470552":1,"470553":1,"470554":1,"470555":1,"470556":1,"470568":1,"470569":1,"470570":1,"470571":1,"470572":1,"470573":1,"470589":1,"470590":1,"470591":1,"470592":1,"470593":1,"470602":1,"470603":1,"470604":1,"470605":1,"470606":1,"470607":1,"470608":1,"471705":1,"471706":1,"471707":1,"471708":1,"471720":1,"471721":1,"471722":1,"471723":1,"471724":1,"471725":1,"471742":1,"471743":1,"471744":1,"471745":1,"471746":1,"471753":1,"471754":1,"471755":1,"471756":1,"471757":1,"471758":1,"471759":1,"472858":1,"472859":1,"472860":1,"472861":1,"472872":1,"472873":1,"472874":1,"472875":1,"472876":1,"472877":1,"472878":1,"472894":1,"472895":1,"472896":1,"472897":1,"472898":1,"472899":1,"472904":1,"472905":1,"472906":1,"472907":1,"472908":1,"472909":1,"472910":1,"474010":1,"474011":1,"474012":1,"474013":1,"474014":1,"474025":1,"474026":1,"474027":1,"474028":1,"474029":1,"474030":1,"474031":1,"474046":1,"474047":1,"474048":1,"474049":1,"474050":1,"474051":1,"474052":1,"474053":1,"474054":1,"474055":1,"474056":1,"474057":1,"474058":1,"474059":1,"474060":1,"474061":1,"474062":1,"475162":1,"475163":1,"475164":1,"475165":1,"475166":1,"475179":1,"475180":1,"475181":1,"475182":1,"475183":1,"475198":1,"475199":1,"475200":1,"475201":1,"475202":1,"475203":1,"475204":1,"475205":1,"475206":1,"475207":1,"475208":1,"475209":1,"475210":1,"475211":1,"475212":1,"475213":1,"475214":1,"476314":1,"476315":1,"476316":1,"476317":1,"476318":1,"476319":1,"476332":1,"476333":1,"476334":1,"476335":1,"476336":1,"476350":1,"476351":1,"476352":1,"476353":1,"476354":1,"476355":1,"476356":1,"476357":1,"476358":1,"476359":1,"476360":1,"476365":1,"477466":1,"477467":1,"477468":1,"477469":1,"477470":1,"477471":1,"477472":1,"477485":1,"477486":1,"477487":1,"477488":1,"477489":1,"477502":1,"477503":1,"477504":1,"477505":1,"477506":1,"477507":1,"477508":1,"477509":1,"477510":1,"477511":1,"478617":1,"478618":1,"478619":1,"478620":1,"478621":1,"478622":1,"478623":1,"478624":1,"478625":1,"478626":1,"478627":1,"478637":1,"478638":1,"478639":1,"478640":1,"478641":1,"478653":1,"478654":1,"478655":1,"478656":1,"478657":1,"478658":1,"478659":1,"478660":1,"479768":1,"479769":1,"479770":1,"479771":1,"479772":1,"479773":1,"479774":1,"479775":1,"479776":1,"479777":1,"479778":1,"479779":1,"479780":1,"479789":1,"479790":1,"479791":1,"479792":1,"479793":1,"479804":1,"479805":1,"479806":1,"479807":1,"479808":1,"479809":1,"480917":1,"480918":1,"480919":1,"480920":1,"480921":1,"480922":1,"480923":1,"480924":1,"480925":1,"480926":1,"480927":1,"480928":1,"480929":1,"480930":1,"480931":1,"480932":1,"480941":1,"480942":1,"480943":1,"480944":1,"480945":1,"480956":1,"480957":1,"480958":1,"480959":1,"480960":1,"482068":1,"482069":1,"482070":1,"482071":1,"482072":1,"482073":1,"482074":1,"482075":1,"482076":1,"482077":1,"482078":1,"482079":1,"482080":1,"482081":1,"482082":1,"482083":1,"482084":1,"482093":1,"482094":1,"482095":1,"482096":1,"482097":1,"482098":1,"482107":1,"482108":1,"482109":1,"482110":1,"482111":1,"483221":1,"483222":1,"483223":1,"483224":1,"483225":1,"483226":1,"483227":1,"483228":1,"483229":1,"483230":1,"483231":1,"483232":1,"483233":1,"483234":1,"483235":1,"483236":1,"483237":1,"483244":1,"483245":1,"483246":1,"483247":1,"483248":1,"483249":1,"483250":1,"483251":1,"483258":1,"483259":1,"483260":1,"483261":1,"483262":1,"483263":1,"484374":1,"484375":1,"484376":1,"484377":1,"484378":1,"484379":1,"484380":1,"484381":1,"484382":1,"484383":1,"484384":1,"484385":1,"484386":1,"484387":1,"484388":1,"484389":1,"484390":1,"484395":1,"484396":1,"484397":1,"484398":1,"484399":1,"484400":1,"484401":1,"484402":1,"484403":1,"484404":1,"484405":1,"484406":1,"484407":1,"484408":1,"484409":1,"484410":1,"484411":1,"484412":1,"484413":1,"484414":1,"484415":1,"485526":1,"485527":1,"485528":1,"485529":1,"485530":1,"485531":1,"485532":1,"485533":1,"485534":1,"485539":1,"485540":1,"485541":1,"485542":1,"485543":1,"485544":1,"485545":1,"485546":1,"485547":1,"485548":1,"485549":1,"485550":1,"485551":1,"485552":1,"485553":1,"485554":1,"485555":1,"485556":1,"485557":1,"485558":1,"485559":1,"485560":1,"485561":1,"485562":1,"485563":1,"485564":1,"485565":1,"485566":1,"486678":1,"486679":1,"486680":1,"486681":1,"486682":1,"486683":1,"486684":1,"486685":1,"486692":1,"486693":1,"486694":1,"486695":1,"486696":1,"486697":1,"486698":1,"486699":1,"486700":1,"486701":1,"486706":1,"486707":1,"486708":1,"486713":1,"486714":1,"486715":1,"487366":1,"487367":1,"487368":1,"487369":1,"487370":1,"487371":1,"487372":1,"487373":1,"487374":1,"487375":1,"487376":1,"487377":1,"487378":1,"487379":1,"487380":1,"487381":1,"487382":1,"487383":1,"487831":1,"487832":1,"487833":1,"487834":1,"487835":1,"487836":1,"487847":1,"487848":1,"487849":1,"487850":1,"487851":1,"487852":1,"487859":1,"487866":1,"488518":1,"488519":1,"488520":1,"488521":1,"488522":1,"488523":1,"488524":1,"488525":1,"488526":1,"488527":1,"488528":1,"488529":1,"488530":1,"488531":1,"488532":1,"488533":1,"488534":1,"488535":1,"488984":1,"488985":1,"488986":1,"488987":1,"488988":1,"489000":1,"489001":1,"489002":1,"489003":1,"489670":1,"489671":1,"489672":1,"489673":1,"489674":1,"489675":1,"489676":1,"489677":1,"489678":1,"489679":1,"489680":1,"489681":1,"489682":1,"489683":1,"489684":1,"489685":1,"489686":1,"489687":1,"490138":1,"490139":1,"490140":1,"490822":1,"490823":1,"490824":1,"490825":1,"490826":1,"490827":1,"490828":1,"490829":1,"490830":1,"490831":1,"490832":1,"490833":1,"490834":1,"490835":1,"490836":1,"490837":1,"490838":1,"490839":1,"491291":1,"491974":1,"491975":1,"491976":1,"491977":1,"491978":1,"491979":1,"491980":1,"491981":1,"491982":1,"491983":1,"491984":1,"491985":1,"491986":1,"491987":1,"491988":1,"491989":1,"491990":1,"491991":1,"492010":1,"492011":1,"492012":1,"492013":1,"492014":1,"492015":1,"492016":1,"492017":1,"493126":1,"493127":1,"493128":1,"493129":1,"493130":1,"493131":1,"493138":1,"493139":1,"493140":1,"493141":1,"493142":1,"493143":1,"493162":1,"493163":1,"493164":1,"493165":1,"493166":1,"493167":1,"493168":1,"493169":1,"493431":1,"493432":1,"493433":1,"493434":1,"493435":1,"493440":1,"493441":1,"493442":1,"493443":1,"493444":1,"493445":1,"494314":1,"494315":1,"494316":1,"494317":1,"494318":1,"494319":1,"494320":1,"494321":1,"494578":1,"494581":1,"494582":1,"494583":1,"494584":1,"494585":1,"494586":1,"494587":1,"494590":1,"494591":1,"494592":1,"494593":1,"494596":1,"494597":1,"494598":1,"495466":1,"495467":1,"495468":1,"495469":1,"495470":1,"495471":1,"495472":1,"495729":1,"495730":1,"495733":1,"495734":1,"495735":1,"495736":1,"495737":1,"495738":1,"495739":1,"495742":1,"495743":1,"495744":1,"495745":1,"495748":1,"495749":1,"495750":1,"496618":1,"496619":1,"496620":1,"496621":1,"496622":1,"496623":1,"496879":1,"496880":1,"496881":1,"496882":1,"496883":1,"496884":1,"496885":1,"496886":1,"496887":1,"496888":1,"496889":1,"496890":1,"496891":1,"496892":1,"496893":1,"496894":1,"496895":1,"496896":1,"496897":1,"496898":1,"496899":1,"496900":1,"496901":1,"496902":1,"498031":1,"498032":1,"498033":1,"498034":1,"498035":1,"498036":1,"498037":1,"498038":1,"498039":1,"498040":1,"498041":1,"498042":1,"498043":1,"498044":1,"498045":1,"498046":1,"498047":1,"498048":1,"498049":1,"498050":1,"498051":1,"498052":1,"498053":1,"498054":1,"499185":1,"499186":1,"499187":1,"499188":1,"499189":1,"499190":1,"499191":1,"499192":1,"499193":1,"499194":1,"499195":1,"499196":1,"499197":1,"499198":1,"499199":1,"499200":1,"499201":1,"499202":1,"499203":1,"499204":1,"499205":1,"499206":1,"500340":1,"500341":1,"500342":1,"500343":1,"500344":1,"500345":1,"500346":1,"500347":1,"500353":1,"500354":1,"500355":1,"500356":1,"500357":1,"500358":1,"501492":1,"501493":1,"501496":1,"501505":1,"501506":1,"501507":1,"501508":1,"501509":1,"501510":1,"502644":1,"502645":1,"502648":1,"502657":1,"502658":1,"502659":1,"502660":1,"502661":1,"502662":1,"503809":1,"503812":1,"504961":1,"504964":1,"609439":1,"609440":1,"610590":1,"610591":1,"610592":1,"610593":1,"610594":1,"610595":1,"611743":1,"611744":1,"611745":1,"611746":1,"611747":1,"611748":1,"611749":1,"612896":1,"612897":1,"612898":1,"612899":1,"612900":1,"612901":1,"614048":1,"614049":1,"614050":1,"614051":1,"614052":1,"615200":1,"615201":1,"615202":1,"615203":1,"616351":1,"616352":1,"616353":1,"616354":1,"616355":1,"617503":1,"617504":1,"617505":1,"617506":1,"617507":1,"618655":1,"618656":1,"618657":1,"618658":1,"618659":1,"622105":2,"622106":2,"622110":2,"622111":2,"622113":2,"622114":2,"623256":2,"623257":2,"623258":2,"623259":2,"623260":2,"623261":2,"623262":2,"623263":2,"623264":2,"623265":2,"623266":2,"623267":2,"623268":2,"623269":2,"624408":2,"624409":2,"624410":2,"624411":2,"624412":2,"624413":2,"624414":2,"624415":2,"624416":2,"624417":2,"624418":2,"624419":2,"624420":2,"624421":2,"625560":2,"625561":2,"625562":2,"625563":2,"625564":2,"625565":2,"625566":2,"625567":2,"625568":2,"625569":2,"625570":2,"625571":2,"625572":2,"626712":2,"626713":2,"626714":2,"626715":2,"626716":2,"626717":2,"626718":2,"626719":2,"626720":2,"626721":2,"626722":2,"626723":2,"627864":2,"627865":2,"627866":2,"627867":2,"627868":2,"627869":2,"627870":2,"627871":2,"627872":2,"627873":2,"627874":2,"629016":2,"629017":2,"629018":2,"629019":2,"629024":2,"629025":2,"630169":2,"630170":2,"777776":1,"777778":1,"777779":1,"778928":1,"778929":1,"778930":1,"778931":1,"778932":1,"780081":1,"780082":1,"780083":1,"780084":1,"781233":1,"781234":1,"781235":1,"781236":1,"782385":1,"782386":1,"782387":1,"782388":1,"783537":1,"783538":1,"783539":1,"783540":1,"783541":1,"784689":1,"784690":1,"784691":1,"784692":1,"784693":1,"805199":1,"805200":1,"805201":1,"805202":1,"805203":1,"805204":1,"805205":1,"805206":1,"805207":1,"805208":1,"806351":1,"806352":1,"806353":1,"806354":1,"806355":1,"806356":1,"806357":1,"806358":1,"806359":1,"806360":1,"806361":1,"806362":1,"806363":1,"806364":1,"806365":1,"806366":1,"806367":1,"806368":1,"806369":1,"806370":1,"806371":1,"806372":1,"806373":1,"806374":1,"806375":1,"806376":1,"806377":1,"806378":1,"806379":1,"806380":1,"806381":1,"806382":1,"806383":1,"806384":1,"806385":1,"807503":1,"807504":1,"807505":1,"807506":1,"807507":1,"807508":1,"807509":1,"807510":1,"807511":1,"807512":1,"807513":1,"807514":1,"807515":1,"807516":1,"807517":1,"807518":1,"807519":1,"807520":1,"807521":1,"807522":1,"807523":1,"807524":1,"807525":1,"807526":1,"807527":1,"807528":1,"807529":1,"807530":1,"807531":1,"807532":1,"807533":1,"807534":1,"807535":1,"807536":1,"807537":1,"807538":1,"808655":1,"808656":1,"808658":1,"808659":1,"808660":1,"808661":1,"808662":1,"808663":1,"808666":1,"808667":1,"808668":1,"808669":1,"808670":1,"808671":1,"808672":1,"808673":1,"808674":1,"808675":1,"808676":1,"808677":1,"808678":1,"808679":1,"808680":1,"808681":1,"808682":1,"808683":1,"808684":1,"808685":1,"808686":1,"808687":1,"808688":1,"808689":1,"808690":1,"809807":1,"809811":1,"809812":1,"809814":1,"809819":1,"809822":1,"809823":1,"809829":1,"809830":1,"809831":1,"809832":1,"809833":1,"809834":1,"809835":1,"809836":1,"809839":1,"809840":1,"809841":1,"809842":1,"810985":1,"810986":1,"810991":1,"810992":1,"812143":1,"815554":1,"815555":1,"815556":1,"815557":1,"815558":1,"815559":1,"815560":1,"815561":1,"815562":1,"815563":1,"815564":1,"816706":1,"816707":1,"816708":1,"816709":1,"816710":1,"816711":1,"816712":1,"816713":1,"816714":1,"816715":1,"816716":1,"817858":1,"817859":1,"819010":1,"819011":1,"820159":1,"820160":1,"820161":1,"820162":1,"820163":1,"821311":1,"821312":1,"821313":1,"821314":1,"821315":1,"822463":1,"822466":1,"822467":1,"823618":1,"823619":1,"824770":1,"824771":1,"824781":2,"824782":2,"824807":2,"825922":1,"825923":1,"825930":2,"825931":2,"825932":2,"825933":2,"825934":2,"825958":2,"825959":2,"827082":2,"827083":2,"827084":2,"827085":2,"827086":2,"827087":2,"827088":2,"827089":2,"827090":2,"827091":2,"827092":2,"827093":2,"827094":2,"827095":2,"827096":2,"827097":2,"827098":2,"827099":2,"827100":2,"827101":2,"827102":2,"827103":2,"827104":2,"827105":2,"827106":2,"827107":2,"827108":2,"827109":2,"827110":2,"827111":2,"828237":2,"828238":2,"828262":2,"828263":2,"829389":2,"829390":2,"829414":2,"829415":2,"830541":2,"830542":2,"830543":2,"830544":2,"830545":2,"830546":2,"830547":2,"830548":2,"830549":2,"830550":2,"830551":2,"830552":2,"830553":2,"830554":2,"830555":2,"830556":2,"830557":2,"830558":2,"830559":2,"830560":2,"830561":2,"830562":2,"830563":2,"830564":2,"830565":2,"830566":2,"830567":2,"854009":1,"854010":1,"855160":1,"855161":1,"855162":1,"855163":1,"856311":1,"856312":1,"856313":1,"856314":1,"856315":1,"857463":1,"857464":1,"857465":1,"857466":1,"857467":1,"857468":1,"858615":1,"858616":1,"858617":1,"858618":1,"858619":1,"858620":1,"859767":1,"859768":1,"859769":1,"859770":1,"859771":1,"859772":1,"860920":1,"860921":1,"860922":1,"860923":1,"860924":1,"862073":1,"862074":1,"862075":1,"862076":1,"863227":1,"868306":1,"868307":1,"868308":1,"869457":1,"869458":1,"869459":1,"869460":1,"869461":1,"870610":1,"870611":1,"870612":1,"870613":1,"870614":1,"871763":1,"871764":1,"871765":1,"871766":1,"872915":1,"872916":1,"872917":1,"874067":1,"874068":1,"875219":1,"875220":1,"875232":2,"875233":2,"875234":2,"875235":2,"876371":1,"876384":2,"876385":2,"876386":2,"876387":2,"876388":2,"876393":2,"876394":2,"876397":3,"876398":3,"876403":3,"876404":3,"877535":2,"877536":2,"877537":2,"877538":2,"877539":2,"877540":2,"877541":2,"877542":2,"877543":2,"877544":2,"877546":2,"877549":3,"877550":3,"877551":3,"877552":3,"877553":3,"877554":3,"877555":3,"877556":3,"877557":3,"878686":2,"878687":2,"878688":2,"878689":2,"878690":2,"878691":2,"878692":2,"878693":2,"878694":2,"878695":2,"878696":2,"878701":3,"878702":3,"878703":3,"878704":3,"878705":3,"878706":3,"878707":3,"878708":3,"879835":2,"879836":2,"879837":2,"879838":2,"879839":2,"879840":2,"879844":2,"879845":2,"879846":2,"879847":2,"879854":3,"879855":3,"879856":3,"879857":3,"879858":3,"880986":2,"880988":2,"880989":2,"880990":2,"880991":2,"881007":3,"881008":3,"881009":3,"882139":2,"882140":2,"882141":2,"882142":2,"882159":3,"882160":3,"883079":1,"883080":1,"883081":1,"883085":1,"883089":1,"884230":1,"884231":1,"884232":1,"884233":1,"884234":1,"884235":1,"884236":1,"884237":1,"884238":1,"884239":1,"884240":1,"884241":1,"884242":1,"885381":1,"885382":1,"885383":1,"885384":1,"885385":1,"885386":1,"885387":1,"885388":1,"885389":1,"885390":1,"885391":1,"885392":1,"885393":1,"885394":1,"885395":1,"885615":1,"885616":1,"886533":1,"886534":1,"886535":1,"886536":1,"886537":1,"886538":1,"886539":1,"886540":1,"886541":1,"886542":1,"886543":1,"886544":1,"886545":1,"886546":1,"886547":1,"886767":1,"886768":1,"887686":1,"887687":1,"887688":1,"887689":1,"887690":1,"887691":1,"887692":1,"887693":1,"887694":1,"887695":1,"887696":1,"887697":1,"887698":1,"887699":1,"887918":1,"887919":1,"887920":1,"887921":1,"888839":1,"888840":1,"888841":1,"888842":1,"888843":1,"888844":1,"888845":1,"888846":1,"888847":1,"888848":1,"888849":1,"888850":1,"888851":1,"888852":1,"889069":1,"889070":1,"889071":1,"889072":1,"889073":1,"889074":1,"889991":1,"889992":1,"889993":1,"889994":1,"889995":1,"889996":1,"889997":1,"889998":1,"889999":1,"890000":1,"890001":1,"890002":1,"890003":1,"890004":1,"890005":1,"890006":1,"890195":1,"890197":1,"890217":1,"890218":1,"890219":1,"890220":1,"890221":1,"890222":1,"890223":1,"890224":1,"890225":1,"890226":1,"890227":1,"890228":1,"890229":1,"890438":1,"890439":1,"890440":1,"890441":1,"890442":1,"890443":1,"890444":1,"890445":1,"890446":1,"890447":1,"890448":1,"890449":1,"890450":1,"890451":1,"890452":1,"890453":1,"890458":1,"890459":1,"890460":1,"890461":1,"890462":1,"890463":1,"890464":1,"890465":1,"890466":1,"890467":1,"891143":1,"891144":1,"891145":1,"891146":1,"891147":1,"891148":1,"891149":1,"891150":1,"891151":1,"891152":1,"891153":1,"891154":1,"891155":1,"891156":1,"891157":1,"891158":1,"891346":1,"891347":1,"891348":1,"891349":1,"891350":1,"891357":1,"891358":1,"891365":2,"891369":1,"891371":1,"891372":1,"891373":1,"891374":1,"891375":1,"891376":1,"891377":1,"891378":1,"891379":1,"891380":1,"891381":1,"891382":1,"891590":1,"891591":1,"891592":1,"891593":1,"891594":1,"891595":1,"891596":1,"891597":1,"891598":1,"891599":1,"891600":1,"891601":1,"891602":1,"891603":1,"891604":1,"891605":1,"891610":1,"891611":1,"891612":1,"891613":1,"891614":1,"891615":1,"891616":1,"891617":1,"891618":1,"891619":1,"891768":2,"891769":2,"891770":2,"891771":2,"892296":1,"892297":1,"892298":1,"892299":1,"892300":1,"892301":1,"892302":1,"892303":1,"892304":1,"892305":1,"892306":1,"892307":1,"892497":1,"892498":1,"892499":1,"892500":1,"892501":1,"892502":1,"892503":1,"892504":1,"892505":1,"892506":1,"892507":1,"892508":1,"892509":1,"892510":1,"892513":2,"892514":2,"892515":2,"892516":2,"892517":2,"892521":1,"892522":1,"892523":1,"892524":1,"892525":1,"892526":1,"892527":1,"892531":1,"892532":1,"892533":1,"892742":1,"892743":1,"892744":1,"892745":1,"892746":1,"892747":1,"892748":1,"892749":1,"892750":1,"892751":1,"892752":1,"892753":1,"892754":1,"892755":1,"892756":1,"892757":1,"892762":1,"892763":1,"892764":1,"892765":1,"892766":1,"892767":1,"892768":1,"892769":1,"892770":1,"892771":1,"892919":2,"892920":2,"892921":2,"892922":2,"892923":2,"892924":2,"892929":2,"892930":2,"893449":1,"893450":1,"893451":1,"893452":1,"893453":1,"893454":1,"893455":1,"893456":1,"893457":1,"893458":1,"893649":1,"893650":1,"893651":1,"893652":1,"893653":1,"893654":1,"893655":1,"893656":1,"893657":1,"893658":1,"893659":1,"893660":1,"893661":1,"893662":1,"893665":2,"893666":2,"893667":2,"893668":2,"893677":1,"893678":1,"893894":1,"893895":1,"893896":1,"893897":1,"893898":1,"893899":1,"893900":1,"893901":1,"893902":1,"893903":1,"893904":1,"893905":1,"893906":1,"893907":1,"893908":1,"893909":1,"893914":1,"893915":1,"893916":1,"893917":1,"893918":1,"893919":1,"893920":1,"893921":1,"893922":1,"893923":1,"894070":2,"894071":2,"894072":2,"894073":2,"894074":2,"894075":2,"894076":2,"894077":2,"894078":2,"894079":2,"894080":2,"894081":2,"894082":2,"894083":2,"894605":1,"894606":1,"894802":1,"894803":1,"894804":1,"894805":1,"894806":1,"894807":1,"894808":1,"894809":1,"894810":1,"894816":2,"894817":2,"894818":2,"894819":2,"894820":2,"894821":2,"894822":2,"894823":2,"895221":2,"895222":2,"895223":2,"895224":2,"895225":2,"895226":2,"895227":2,"895228":2,"895229":2,"895230":2,"895231":2,"895232":2,"895233":2,"895234":2,"895757":1,"895758":1,"895957":1,"895958":1,"895959":1,"895960":1,"895961":1,"895970":2,"895971":2,"895972":2,"895973":2,"895974":2,"896373":2,"896374":2,"896375":2,"896376":2,"896377":2,"896378":2,"896379":2,"896380":2,"896381":2,"896382":2,"896383":2,"896384":2,"896385":2,"896396":1,"896397":1,"896909":1,"896910":1,"897110":1,"897111":1,"897112":1,"897123":2,"897124":2,"897125":2,"897126":2,"897350":2,"897351":2,"897352":2,"897353":2,"897354":2,"897355":2,"897356":2,"897357":2,"897358":2,"897359":2,"897360":2,"897361":2,"897362":2,"897363":2,"897364":2,"897365":2,"897366":2,"897367":2,"897368":2,"897369":2,"897370":2,"897371":2,"897372":2,"897373":2,"897374":2,"897375":2,"897376":2,"897377":2,"897378":2,"897379":2,"897526":2,"897527":2,"897528":2,"897529":2,"897530":2,"897531":2,"897532":2,"897533":2,"897534":2,"897535":2,"897536":2,"897537":2,"897548":1,"897549":1,"898263":1,"898264":1,"898276":2,"898277":2,"898278":2,"898502":2,"898503":2,"898504":2,"898505":2,"898506":2,"898507":2,"898508":2,"898509":2,"898510":2,"898511":2,"898512":2,"898513":2,"898514":2,"898515":2,"898516":2,"898517":2,"898518":2,"898519":2,"898520":2,"898521":2,"898522":2,"898523":2,"898524":2,"898525":2,"898526":2,"898527":2,"898528":2,"898529":2,"898530":2,"898531":2,"898678":2,"898679":2,"898680":2,"898681":2,"898682":2,"898683":2,"898684":2,"898685":2,"898686":2,"898687":2,"898688":2,"898689":2,"898700":1,"898701":1,"899416":1,"899429":2,"899430":2,"899654":2,"899655":2,"899656":2,"899657":2,"899658":2,"899659":2,"899660":2,"899661":2,"899662":2,"899663":2,"899664":2,"899665":2,"899666":2,"899667":2,"899668":2,"899669":2,"899670":2,"899671":2,"899672":2,"899673":2,"899674":2,"899675":2,"899676":2,"899677":2,"899678":2,"899679":2,"899680":2,"899681":2,"899682":2,"899683":2,"899830":2,"899831":2,"899832":2,"899833":2,"899834":2,"899835":2,"899836":2,"899837":2,"899838":2,"899839":2,"899840":2,"899841":2,"899852":1,"899853":1,"900568":1,"900581":2,"900806":2,"900807":2,"900808":2,"900809":2,"900810":2,"900811":2,"900812":2,"900813":2,"900814":2,"900815":2,"900816":2,"900817":2,"900818":2,"900819":2,"900820":2,"900821":2,"900822":2,"900823":2,"900824":2,"900825":2,"900826":2,"900827":2,"900828":2,"900829":2,"900830":2,"900831":2,"900832":2,"900833":2,"900834":2,"900835":2,"900982":2,"900983":2,"900984":2,"900985":2,"900986":2,"900987":2,"900988":2,"900989":2,"900990":2,"900991":2,"900992":2,"900998":1,"900999":1,"901000":1,"901001":1,"901002":1,"901003":1,"901004":1,"901005":1,"901006":1,"901022":1,"901023":1,"901720":1,"901958":2,"901959":2,"901960":2,"901961":2,"901962":2,"901963":2,"901964":2,"901965":2,"901966":2,"901967":2,"901968":2,"901969":2,"901970":2,"901971":2,"901972":2,"901973":2,"901974":2,"901975":2,"901976":2,"901977":2,"901978":2,"901979":2,"901980":2,"901981":2,"901982":2,"901983":2,"901984":2,"901985":2,"901986":2,"901987":2,"902133":2,"902134":2,"902135":2,"902136":2,"902137":2,"902138":2,"902139":2,"902140":2,"902141":2,"902142":2,"902143":2,"902150":1,"902151":1,"902152":1,"902153":1,"902154":1,"902155":1,"902156":1,"902157":1,"902158":1,"902159":1,"902160":1,"902161":1,"902162":1,"902163":1,"902164":1,"902165":1,"902173":1,"902174":1,"902175":1,"902176":1,"903111":2,"903112":2,"903113":2,"903114":2,"903115":2,"903116":2,"903117":2,"903118":2,"903119":2,"903120":2,"903121":2,"903122":2,"903123":2,"903124":2,"903125":2,"903126":2,"903127":2,"903128":2,"903129":2,"903130":2,"903131":2,"903132":2,"903133":2,"903134":2,"903135":2,"903136":2,"903137":2,"903138":2,"903139":2,"903284":2,"903285":2,"903286":2,"903287":2,"903288":2,"903289":2,"903290":2,"903291":2,"903292":2,"903293":2,"903294":2,"903295":2,"903305":1,"903306":1,"903307":1,"903308":1,"903309":1,"903310":1,"903311":1,"903312":1,"903313":1,"903314":1,"903315":1,"903316":1,"903317":1,"903318":1,"903319":1,"903320":1,"903321":1,"903322":1,"903323":1,"903324":1,"903325":1,"903326":1,"903327":1,"903328":1,"903329":1,"904036":3,"904037":3,"904039":3,"904040":3,"904263":2,"904264":2,"904265":2,"904266":2,"904267":2,"904268":2,"904269":2,"904270":2,"904271":2,"904272":2,"904273":2,"904274":2,"904275":2,"904276":2,"904277":2,"904278":2,"904281":2,"904282":2,"904283":2,"904284":2,"904285":2,"904286":2,"904287":2,"904288":2,"904289":2,"904290":2,"904291":2,"904431":2,"904432":2,"904433":2,"904434":2,"904435":2,"904436":2,"904437":2,"904438":2,"904439":2,"904440":2,"904441":2,"904442":2,"904443":2,"904444":2,"904445":2,"904446":2,"904447":2,"904458":1,"904459":1,"904460":1,"904461":1,"904464":1,"904465":1,"904466":1,"904467":1,"904468":1,"904469":1,"904470":1,"904471":1,"904472":1,"904473":1,"904474":1,"904475":1,"904476":1,"904477":1,"904478":1,"904479":1,"904480":1,"904481":1,"905179":3,"905181":3,"905182":3,"905187":3,"905188":3,"905189":3,"905190":3,"905191":3,"905417":2,"905418":2,"905419":2,"905420":2,"905421":2,"905422":2,"905423":2,"905424":2,"905425":2,"905426":2,"905427":2,"905428":2,"905436":2,"905437":2,"905438":2,"905439":2,"905440":2,"905441":2,"905583":2,"905584":2,"905585":2,"905586":2,"905587":2,"905588":2,"905589":2,"905590":2,"905591":2,"905592":2,"905593":2,"905594":2,"905595":2,"905596":2,"905597":2,"905598":2,"905599":2,"905610":1,"905611":1,"905612":1,"905621":1,"905622":1,"905623":1,"905624":1,"905625":1,"905626":1,"905627":1,"905628":1,"905629":1,"905630":1,"905631":1,"905632":1,"905633":1,"906331":3,"906332":3,"906333":3,"906334":3,"906335":3,"906336":3,"906337":3,"906338":3,"906339":3,"906340":3,"906341":3,"906342":3,"906343":3,"906570":2,"906571":2,"906572":2,"906573":2,"906574":2,"906575":2,"906576":2,"906577":2,"906578":2,"906590":2,"906591":2,"906736":2,"906737":2,"906738":2,"906739":2,"906740":2,"906741":2,"906742":2,"906743":2,"906744":2,"906745":2,"906746":2,"906747":2,"906748":2,"906749":2,"906750":2,"906751":2,"906762":1,"906763":1,"906774":1,"906775":1,"906776":1,"906777":1,"906783":1,"906784":1,"907307":1,"907308":1,"907487":3,"907488":3,"907489":3,"907490":3,"907491":3,"907492":3,"907493":3,"907494":3,"907495":3,"907724":2,"907725":2,"907726":2,"907727":2,"907728":2,"907889":2,"907890":2,"907891":2,"907892":2,"907893":2,"907894":2,"907895":2,"907896":2,"907897":2,"907898":2,"907899":2,"907900":2,"907901":2,"907902":2,"907903":2,"908459":1,"908460":1,"908640":3,"908641":3,"908646":3,"908877":2,"908878":2,"909041":2,"909042":2,"909043":2,"909044":2,"909045":2,"909046":2,"909047":2,"909048":2,"909049":2,"909050":2,"909051":2,"909052":2,"909053":2,"909054":2,"909055":2,"909056":2,"909057":2,"909058":2,"909611":1,"909612":1,"910193":2,"910194":2,"910195":2,"910196":2,"910197":2,"910198":2,"910199":2,"910200":2,"910201":2,"910202":2,"910203":2,"910204":2,"910205":2,"910206":2,"910207":2,"910208":2,"910209":2,"910210":2,"910211":2,"910761":1,"910762":1,"910763":1,"910764":1,"910765":1,"910766":1,"911345":2,"911346":2,"911347":2,"911348":2,"911349":2,"911350":2,"911351":2,"911352":2,"911353":2,"911354":2,"911355":2,"911356":2,"911357":2,"911358":2,"911359":2,"911360":2,"911361":2,"911362":2,"911363":2,"911910":1,"911911":1,"911912":1,"911913":1,"911914":1,"911915":1,"911916":1,"911917":1,"911918":1,"911919":1,"911920":1,"912496":2,"912497":2,"912498":2,"912499":2,"912500":2,"912501":2,"912502":2,"912503":2,"912504":2,"912505":2,"912506":2,"912507":2,"912508":2,"912509":2,"912510":2,"912511":2,"912512":2,"912513":2,"912514":2,"913061":1,"913062":1,"913063":1,"913064":1,"913065":1,"913066":1,"913067":1,"913068":1,"913069":1,"913070":1,"913071":1,"913072":1,"913073":1,"913647":2,"913648":2,"913649":2,"913650":2,"913651":2,"913652":2,"913653":2,"913654":2,"913655":2,"913656":2,"913657":2,"913658":2,"913659":2,"913660":2,"913661":2,"913662":2,"913663":2,"913664":2,"913665":2,"914212":1,"914213":1,"914214":1,"914215":1,"914216":1,"914217":1,"914218":1,"914219":1,"914220":1,"914221":1,"914222":1,"914223":1,"914224":1,"914225":1,"914798":2,"914799":2,"914800":2,"914801":2,"914802":2,"914803":2,"914804":2,"914805":2,"914806":2,"914807":2,"914808":2,"914809":2,"914810":2,"914811":2,"914812":2,"914813":2,"914814":2,"914815":2,"914816":2,"914817":2,"915364":1,"915365":1,"915366":1,"915367":1,"915368":1,"915369":1,"915370":1,"915371":1,"915372":1,"915373":1,"915374":1,"915375":1,"915376":1,"915377":1,"915378":1,"915950":2,"915951":2,"915952":2,"915953":2,"915954":2,"915955":2,"915956":2,"915957":2,"915958":2,"915959":2,"915960":2,"915961":2,"915962":2,"915963":2,"915964":2,"915965":2,"915966":2,"915967":2,"915968":2,"915969":2,"916292":1,"916293":1,"916515":1,"916516":1,"916517":1,"916518":1,"916519":1,"916520":1,"916521":1,"916522":1,"916523":1,"916524":1,"916525":1,"916526":1,"916527":1,"916528":1,"916529":1,"916925":2,"916926":2,"916927":2,"916928":2,"916929":2,"917103":2,"917104":2,"917105":2,"917106":2,"917107":2,"917108":2,"917109":2,"917110":2,"917111":2,"917112":2,"917113":2,"917114":2,"917115":2,"917116":2,"917117":2,"917118":2,"917119":2,"917120":2,"917443":1,"917445":1,"917446":1,"917447":1,"917449":1,"917450":1,"917665":1,"917666":1,"917667":1,"917668":1,"917669":1,"917670":1,"917671":1,"917672":1,"917673":1,"917674":1,"917675":1,"917676":1,"917677":1,"917678":1,"917679":1,"917680":1,"917681":1,"918075":2,"918076":2,"918077":2,"918078":2,"918079":2,"918080":2,"918081":2,"918082":2,"918083":2,"918084":2,"918085":2,"918086":2,"918256":2,"918257":2,"918258":2,"918259":2,"918260":2,"918261":2,"918262":2,"918263":2,"918264":2,"918265":2,"918266":2,"918267":2,"918268":2,"918269":2,"918595":1,"918596":1,"918597":1,"918598":1,"918599":1,"918600":1,"918601":1,"918602":1,"918603":1,"918817":1,"918818":1,"918819":1,"918820":1,"918821":1,"918822":1,"918823":1,"918824":1,"918825":1,"918826":1,"918827":1,"918828":1,"918829":1,"918830":1,"918831":1,"918832":1,"918833":1,"919227":2,"919228":2,"919229":2,"919230":2,"919231":2,"919232":2,"919233":2,"919234":2,"919235":2,"919236":2,"919237":2,"919238":2,"919239":2,"919240":2,"919241":2,"919281":2,"919282":2,"919283":2,"919284":2,"919408":2,"919409":2,"919410":2,"919411":2,"919412":2,"919413":2,"919414":2,"919415":2,"919416":2,"919417":2,"919418":2,"919419":2,"919420":2,"919746":1,"919747":1,"919748":1,"919749":1,"919750":1,"919751":1,"919752":1,"919753":1,"919754":1,"919755":1,"919756":1,"919757":1,"919971":1,"919972":1,"919973":1,"919974":1,"919975":1,"919976":1,"919977":1,"919978":1,"919979":1,"919980":1,"919981":1,"919982":1,"919983":1,"919984":1,"920379":2,"920380":2,"920381":2,"920382":2,"920383":2,"920384":2,"920385":2,"920386":2,"920387":2,"920388":2,"920389":2,"920390":2,"920391":2,"920392":2,"920393":2,"920433":2,"920434":2,"920435":2,"920436":2,"920560":2,"920561":2,"920562":2,"920563":2,"920564":2,"920565":2,"920566":2,"920567":2,"920568":2,"920569":2,"920570":2,"920571":2,"920572":2,"920897":1,"920898":1,"920899":1,"920900":1,"920901":1,"920902":1,"920903":1,"920904":1,"920905":1,"920906":1,"920908":1,"920909":1,"920910":1,"920911":1,"920913":1,"920915":1,"921124":1,"921125":1,"921126":1,"921127":1,"921128":1,"921129":1,"921130":1,"921131":1,"921132":1,"921133":1,"921134":1,"921135":1,"921532":2,"921533":2,"921534":2,"921535":2,"921536":2,"921537":2,"921538":2,"921539":2,"921540":2,"921541":2,"921542":2,"921543":2,"921544":2,"921545":2,"921585":2,"921586":2,"921587":2,"921588":2,"921712":2,"921713":2,"921714":2,"921715":2,"921716":2,"921717":2,"921718":2,"921719":2,"921720":2,"921721":2,"921722":2,"921723":2,"922047":1,"922048":1,"922049":1,"922050":1,"922051":1,"922052":1,"922053":1,"922054":1,"922055":1,"922056":1,"922057":1,"922058":1,"922059":1,"922060":1,"922061":1,"922063":1,"922064":1,"922065":1,"922066":1,"922067":1,"922068":1,"922277":1,"922278":1,"922279":1,"922280":1,"922281":1,"922282":1,"922283":1,"922284":1,"922285":1,"922286":1,"922686":2,"922687":2,"922688":2,"922689":2,"922690":2,"922691":2,"922692":2,"922693":2,"922694":2,"922695":2,"922726":2,"922727":2,"922728":2,"922729":2,"922730":2,"922731":2,"922732":2,"922865":2,"922866":2,"922867":2,"922868":2,"923197":1,"923198":1,"923199":1,"923200":1,"923201":1,"923202":1,"923203":1,"923204":1,"923205":1,"923206":1,"923207":1,"923208":1,"923209":1,"923210":1,"923211":1,"923212":1,"923213":1,"923214":1,"923215":1,"923216":1,"923218":1,"923219":1,"923220":1,"923430":1,"923431":1,"923432":1,"923433":1,"923434":1,"923435":1,"923839":2,"923840":2,"923841":2,"923842":2,"923843":2,"923844":2,"923845":2,"923846":2,"923877":2,"923878":2,"923879":2,"923880":2,"923881":2,"923882":2,"923883":2,"923884":2,"923885":2,"924340":1,"924341":1,"924348":1,"924349":1,"924350":1,"924351":1,"924352":1,"924353":1,"924354":1,"924356":1,"924357":1,"924358":1,"924360":1,"924361":1,"924362":1,"924363":1,"924364":1,"924365":1,"924366":1,"924367":1,"924368":1,"924369":1,"924370":1,"924371":1,"924372":1,"924373":1,"924585":1,"924586":1,"924994":2,"924995":2,"924996":2,"924997":2,"924998":2,"925029":2,"925030":2,"925031":2,"925032":2,"925033":2,"925034":2,"925035":2,"925036":2,"925037":2,"925491":1,"925493":1,"925494":1,"925495":1,"925496":1,"925497":1,"925498":1,"925499":1,"925500":1,"925501":1,"925502":1,"925503":1,"925504":1,"925505":1,"925506":1,"925507":1,"925508":1,"925509":1,"925510":1,"925512":1,"925513":1,"925514":1,"925515":2,"925517":1,"925518":1,"925519":1,"925520":1,"925521":1,"925522":1,"925523":1,"925524":1,"925525":1,"925526":1,"926146":2,"926147":2,"926148":2,"926149":2,"926150":2,"926182":2,"926183":2,"926184":2,"926185":2,"926186":2,"926187":2,"926188":2,"926189":2,"926643":1,"926644":1,"926645":1,"926646":1,"926647":1,"926648":1,"926650":1,"926651":1,"926652":1,"926653":1,"926654":1,"926655":1,"926656":1,"926657":1,"926658":1,"926659":1,"926660":1,"926661":1,"926664":2,"926665":2,"926666":2,"926667":2,"926670":1,"926671":1,"926672":1,"926673":1,"926674":1,"926676":1,"926677":1,"926678":1,"926679":1,"926680":1,"926681":1,"927298":2,"927299":2,"927300":2,"927301":2,"927302":2,"927336":2,"927337":2,"927338":2,"927339":2,"927340":2,"927795":1,"927796":1,"927797":1,"927798":1,"927799":1,"927800":1,"927801":1,"927802":1,"927803":1,"927804":1,"927805":1,"927806":1,"927807":1,"927808":1,"927809":1,"927810":1,"927811":1,"927812":1,"927816":2,"927817":2,"927818":2,"927819":2,"927823":1,"927824":1,"927825":1,"927826":1,"927827":1,"927828":1,"927829":1,"927830":1,"927831":1,"927832":1,"927833":1,"927834":1,"928450":2,"928451":2,"928452":2,"928453":2,"928454":2,"928946":1,"928947":1,"928948":1,"928949":1,"928950":1,"928951":1,"928952":1,"928953":1,"928954":1,"928955":1,"928956":1,"928959":1,"928961":1,"928963":1,"928968":2,"928969":2,"928970":2,"928971":2,"928972":2,"928975":1,"928977":1,"928978":1,"928979":1,"928980":1,"928981":1,"928982":1,"928983":1,"928984":1,"928986":1,"929602":2,"929603":2,"929604":2,"929605":2,"929606":2,"930095":1,"930096":1,"930097":1,"930099":1,"930100":1,"930101":1,"930102":1,"930103":1,"930104":1,"930105":1,"930106":1,"930107":1,"930112":1,"930113":1,"930114":1,"930115":1,"930118":2,"930119":2,"930120":2,"930121":2,"930122":2,"930123":2,"930124":2,"930125":2,"930127":1,"930128":1,"930129":1,"930130":1,"930131":1,"930132":1,"930133":1,"930134":1,"930135":1,"930136":1,"930137":1,"930784":1,"930785":1,"930786":1,"930787":1,"930788":1,"930789":1,"931246":1,"931247":1,"931248":1,"931249":1,"931250":1,"931251":1,"931252":1,"931253":1,"931254":1,"931255":1,"931256":1,"931270":2,"931271":2,"931272":2,"931273":2,"931274":2,"931275":2,"931276":2,"931277":2,"931279":1,"931280":1,"931281":1,"931282":1,"931283":1,"931284":1,"931285":1,"931286":1,"931287":1,"931288":1,"931926":2,"931927":2,"931928":2,"931929":2,"931932":1,"931933":1,"931934":1,"931935":1,"931936":1,"931937":1,"931938":1,"931939":1,"931940":1,"931941":1,"931942":1,"931943":1,"931944":1,"931945":1,"932397":1,"932398":1,"932399":1,"932400":1,"932401":1,"932402":1,"932403":1,"932404":1,"932405":1,"932413":2,"932414":2,"932421":2,"932422":2,"932423":2,"932424":2,"932425":2,"932426":2,"932427":2,"932428":2,"932431":1,"932432":1,"932433":1,"932434":1,"932435":1,"932436":1,"932437":1,"932438":1,"932439":1,"932440":1,"933076":2,"933077":2,"933078":2,"933079":2,"933080":2,"933081":2,"933084":1,"933085":1,"933086":1,"933087":1,"933088":1,"933089":1,"933090":1,"933091":1,"933092":1,"933093":1,"933094":1,"933095":1,"933096":1,"933097":1,"933098":1,"933099":1,"933100":1,"933101":1,"933102":1,"933103":1,"933104":1,"933105":1,"933106":1,"933107":1,"933108":1,"933109":1,"933110":1,"933111":1,"933112":1,"933113":1,"933550":1,"933552":1,"933553":1,"933554":1,"933555":1,"933556":1,"933562":2,"933563":2,"933564":2,"933565":2,"933566":2,"933567":2,"933572":2,"933573":2,"933574":2,"933575":2,"933576":2,"933577":2,"933578":2,"933579":2,"933580":2,"933582":1,"933583":1,"933584":1,"933585":1,"933586":1,"933587":1,"933588":1,"933589":1,"933590":1,"933592":1,"934228":2,"934229":2,"934230":2,"934231":2,"934232":2,"934233":2,"934236":1,"934237":1,"934238":1,"934239":1,"934240":1,"934241":1,"934242":1,"934243":1,"934244":1,"934245":1,"934246":1,"934247":1,"934248":1,"934249":1,"934250":1,"934251":1,"934252":1,"934253":1,"934254":1,"934255":1,"934256":1,"934257":1,"934258":1,"934259":1,"934263":1,"934264":1,"934265":1,"934266":1,"934267":1,"934702":1,"934703":1,"934704":1,"934705":1,"934706":1,"934707":1,"934708":1,"934711":2,"934712":2,"934713":2,"934714":2,"934715":2,"934716":2,"934717":2,"934718":2,"934719":2,"934720":2,"934721":2,"934722":2,"934723":2,"934724":2,"934725":2,"934726":2,"934727":2,"934728":2,"934729":2,"934730":2,"934731":2,"934732":2,"934734":1,"934737":1,"934738":1,"934739":1,"934740":1,"934741":1,"934742":1,"934743":1,"934744":1,"935331":1,"935332":1,"935333":1,"935334":1,"935335":1,"935336":1,"935337":1,"935338":1,"935339":1,"935340":1,"935341":1,"935342":1,"935380":2,"935381":2,"935382":2,"935383":2,"935384":2,"935385":2,"935388":1,"935389":1,"935390":1,"935391":1,"935392":1,"935393":1,"935394":1,"935395":1,"935396":1,"935397":1,"935398":1,"935399":1,"935400":1,"935401":1,"935402":1,"935403":1,"935404":1,"935405":1,"935415":1,"935416":1,"935417":1,"935418":1,"935419":1,"935420":1,"935421":1,"935854":1,"935855":1,"935856":1,"935857":1,"935858":1,"935859":1,"935860":1,"935862":2,"935863":2,"935864":2,"935865":2,"935866":2,"935867":2,"935868":2,"935869":2,"935870":2,"935871":2,"935872":2,"935873":2,"935874":2,"935875":2,"935876":2,"935877":2,"935878":2,"935879":2,"935880":2,"935881":2,"935882":2,"935883":2,"935884":2,"935887":1,"935888":1,"935889":1,"935890":1,"935891":1,"935892":1,"935893":1,"935894":1,"935895":1,"935896":1,"935897":1,"936483":1,"936484":1,"936485":1,"936486":1,"936487":1,"936488":1,"936489":1,"936490":1,"936491":1,"936492":1,"936493":1,"936494":1,"936534":2,"936535":2,"936536":2,"936540":1,"936541":1,"936542":1,"936543":1,"936544":1,"936545":1,"936546":1,"936547":1,"936548":1,"936549":1,"936550":1,"936551":1,"936552":1,"936553":1,"936554":1,"936555":1,"936567":1,"936568":1,"936569":1,"936570":1,"936571":1,"936572":1,"936573":1,"937006":1,"937007":1,"937008":1,"937009":1,"937010":1,"937011":1,"937012":1,"937015":2,"937016":2,"937017":2,"937018":2,"937019":2,"937020":2,"937021":2,"937022":2,"937023":2,"937024":2,"937025":2,"937026":2,"937027":2,"937028":2,"937029":2,"937030":2,"937031":2,"937032":2,"937033":2,"937034":2,"937035":2,"937036":2,"937037":2,"937044":1,"937045":1,"937046":1,"937047":1,"937048":1,"937050":1,"937635":1,"937636":1,"937637":1,"937646":1,"937695":1,"937696":1,"937697":1,"937698":1,"937699":1,"937700":1,"937701":1,"937702":1,"937703":1,"937719":1,"937720":1,"937721":1,"937722":1,"938158":1,"938159":1,"938160":1,"938161":1,"938162":1,"938163":1,"938165":1,"938169":2,"938170":2,"938171":2,"938172":2,"938173":2,"938174":2,"938175":2,"938176":2,"938177":2,"938178":2,"938179":2,"938180":2,"938181":2,"938182":2,"938183":2,"938184":2,"938185":2,"938186":2,"938187":2,"938188":2,"938189":2,"938190":2,"938197":1,"938198":1,"938199":1,"938200":1,"938201":1,"938202":1,"938787":1,"938788":1,"938798":1,"938847":1,"938848":1,"938849":1,"938850":1,"938851":1,"938852":1,"938853":1,"938854":1,"938855":1,"938871":1,"938872":1,"938873":1,"938874":1,"939311":1,"939312":1,"939313":1,"939314":1,"939315":1,"939316":1,"939317":1,"939318":1,"939319":1,"939322":2,"939323":2,"939324":2,"939325":2,"939326":2,"939327":2,"939328":2,"939329":2,"939330":2,"939331":2,"939332":2,"939333":2,"939334":2,"939335":2,"939336":2,"939337":2,"939338":2,"939339":2,"939340":2,"939341":2,"939342":2,"939343":2,"939344":2,"939345":2,"939346":2,"939349":1,"939350":1,"939351":1,"939352":1,"939353":1,"939354":1,"939939":1,"939940":1,"939950":1,"939975":1,"939976":1,"939977":1,"939978":1,"939979":1,"939980":1,"939981":1,"939982":1,"939983":1,"939984":1,"939985":1,"939986":1,"940023":1,"940024":1,"940463":1,"940464":1,"940466":1,"940467":1,"940468":1,"940469":1,"940470":1,"940471":1,"940472":1,"940475":2,"940476":2,"940477":2,"940478":2,"940479":2,"940480":2,"940481":2,"940482":2,"940483":2,"940484":2,"940485":2,"940486":2,"940487":2,"940488":2,"940489":2,"940490":2,"940491":2,"940492":2,"940493":2,"940494":2,"940495":2,"940496":2,"940497":2,"940498":2,"940499":2,"940502":1,"940503":1,"940504":1,"940505":1,"940506":1,"941091":1,"941092":1,"941102":1,"941127":1,"941128":1,"941129":1,"941130":1,"941131":1,"941132":1,"941133":1,"941134":1,"941135":1,"941136":1,"941137":1,"941138":1,"941139":1,"941140":1,"941615":1,"941616":1,"941617":1,"941618":1,"941619":1,"941620":1,"941621":1,"941622":1,"941624":1,"941625":1,"941627":2,"941628":2,"941629":2,"941630":2,"941631":2,"941632":2,"941633":2,"941634":2,"941635":2,"941636":2,"941637":2,"941638":2,"941639":2,"941640":2,"941641":2,"941642":2,"941643":2,"941644":2,"941645":2,"941646":2,"941647":2,"941648":2,"941649":2,"941650":2,"941651":2,"941655":1,"941656":1,"941657":1,"941658":1,"941659":1,"942243":1,"942244":1,"942254":1,"942283":1,"942284":1,"942285":1,"942286":1,"942287":1,"942288":1,"942289":1,"942290":1,"942291":1,"942292":1,"942293":1,"942294":1,"942295":1,"942296":1,"942297":1,"942329":3,"942330":3,"942331":3,"942768":1,"942769":1,"942770":1,"942771":1,"942772":1,"942773":1,"942774":1,"942776":1,"942779":2,"942780":2,"942781":2,"942782":2,"942783":2,"942784":2,"942785":2,"942786":2,"942787":2,"942788":2,"942789":2,"942790":2,"942791":2,"942792":2,"942793":2,"942794":2,"942795":2,"942796":2,"942797":2,"942798":2,"942799":2,"942800":2,"942801":2,"942802":2,"942803":2,"942804":2,"942807":1,"942808":1,"942809":1,"942810":1,"942811":1,"942812":1,"943395":1,"943396":1,"943406":1,"943440":1,"943441":1,"943442":1,"943443":1,"943444":1,"943445":1,"943446":1,"943447":1,"943448":1,"943449":1,"943477":3,"943478":3,"943479":3,"943480":3,"943481":3,"943482":3,"943483":3,"943921":1,"943922":1,"943923":1,"943924":1,"943925":1,"943926":1,"943927":1,"943931":2,"943932":2,"943933":2,"943934":2,"943935":2,"943936":2,"943937":2,"943938":2,"943939":2,"943940":2,"943941":2,"943942":2,"943943":2,"943944":2,"943945":2,"943946":2,"943947":2,"943948":2,"943949":2,"943950":2,"943951":2,"943952":2,"943953":2,"943954":2,"943955":2,"943956":2,"943957":2,"943959":1,"943960":1,"943961":1,"943963":1,"943964":1,"944547":1,"944558":1,"944592":1,"944593":1,"944594":1,"944595":1,"944596":1,"944597":1,"944598":1,"944599":1,"944600":1,"944601":1,"944625":3,"944626":3,"944627":3,"944628":3,"944629":3,"944630":3,"944631":3,"944632":3,"944633":3,"944634":3,"944635":3,"945074":1,"945075":1,"945076":1,"945077":1,"945078":1,"945079":1,"945082":2,"945083":2,"945084":2,"945085":2,"945086":2,"945087":2,"945088":2,"945089":2,"945090":2,"945091":2,"945092":2,"945093":2,"945094":2,"945095":2,"945096":2,"945097":2,"945098":2,"945099":2,"945100":2,"945101":2,"945102":2,"945103":2,"945104":2,"945105":2,"945106":2,"945107":2,"945108":2,"945109":2,"945111":1,"945112":1,"945113":1,"945114":1,"945115":1,"945116":1,"945699":1,"945710":1,"945745":1,"945746":1,"945747":1,"945748":1,"945749":1,"945750":1,"945751":1,"945752":1,"945753":1,"945775":3,"945776":3,"945777":3,"945778":3,"945779":3,"945780":3,"945781":3,"945782":3,"945783":3,"945784":3,"945785":3,"945786":3,"945787":3,"946226":1,"946227":1,"946228":1,"946229":1,"946230":1,"946231":1,"946233":2,"946234":2,"946235":2,"946236":2,"946237":2,"946238":2,"946239":2,"946240":2,"946241":2,"946242":2,"946243":2,"946244":2,"946245":2,"946246":2,"946247":2,"946248":2,"946249":2,"946250":2,"946251":2,"946252":2,"946253":2,"946254":2,"946255":2,"946256":2,"946257":2,"946258":2,"946259":2,"946260":2,"946263":1,"946264":1,"946265":1,"946266":1,"946267":1,"946268":1,"946269":1,"946851":1,"946862":1,"946927":3,"946928":3,"946929":3,"946930":3,"946931":3,"946932":3,"946933":3,"946934":3,"946935":3,"946936":3,"947378":1,"947379":1,"947380":1,"947381":1,"947382":1,"947383":1,"947386":2,"947387":2,"947388":2,"947389":2,"947390":2,"947391":2,"947392":2,"947393":2,"947394":2,"947395":2,"947396":2,"947397":2,"947398":2,"947399":2,"947400":2,"947401":2,"947402":2,"947403":2,"947404":2,"947405":2,"947406":2,"947407":2,"947408":2,"947409":2,"947410":2,"947411":2,"947414":1,"947415":1,"947416":1,"947417":1,"947418":1,"947419":1,"947420":1,"947422":1,"948003":1,"948004":1,"948005":1,"948006":1,"948007":1,"948008":1,"948009":1,"948010":1,"948011":1,"948012":1,"948013":1,"948014":1,"948079":3,"948080":3,"948081":3,"948082":3,"948083":3,"948084":3,"948085":3,"948086":3,"948530":1,"948531":1,"948532":1,"948533":1,"948534":1,"948536":1,"948538":2,"948539":2,"948540":2,"948541":2,"948542":2,"948543":2,"948544":2,"948545":2,"948546":2,"948547":2,"948548":2,"948549":2,"948550":2,"948551":2,"948552":2,"948553":2,"948554":2,"948555":2,"948556":2,"948557":2,"948558":2,"948559":2,"948560":2,"948561":2,"948562":2,"948563":2,"948565":1,"948566":1,"948567":1,"948568":1,"948569":1,"948570":1,"948571":1,"948572":1,"948573":1,"949232":3,"949233":3,"949234":3,"949235":3,"949236":3,"949237":3,"949238":3,"949681":1,"949682":1,"949683":1,"949684":1,"949685":1,"949686":1,"949687":1,"949690":2,"949691":2,"949692":2,"949693":2,"949694":2,"949695":2,"949696":2,"949697":2,"949698":2,"949699":2,"949700":2,"949701":2,"949702":2,"949703":2,"949704":2,"949705":2,"949706":2,"949707":2,"949708":2,"949709":2,"949710":2,"949711":2,"949712":2,"949713":2,"949714":2,"949715":2,"949717":1,"949719":1,"949720":1,"949721":1,"949722":1,"949723":1,"949724":1,"950385":3,"950386":3,"950387":3,"950388":3,"950389":3,"950390":3,"950832":1,"950835":1,"950836":1,"950837":1,"950838":1,"950842":2,"950843":2,"950844":2,"950845":2,"950846":2,"950847":2,"950848":2,"950849":2,"950850":2,"950851":2,"950852":2,"950853":2,"950854":2,"950855":2,"950856":2,"950857":2,"950858":2,"950859":2,"950860":2,"950861":2,"950862":2,"950863":2,"950864":2,"950865":2,"950866":2,"950867":2,"950870":1,"950871":1,"950872":1,"950873":1,"950874":1,"950875":1,"950876":1,"951537":3,"951538":3,"951539":3,"951540":3,"951541":3,"951985":1,"951986":1,"951987":1,"951988":1,"951989":1,"951990":1,"951993":2,"951994":2,"951995":2,"951996":2,"951997":2,"951998":2,"951999":2,"952000":2,"952001":2,"952002":2,"952003":2,"952004":2,"952005":2,"952006":2,"952007":2,"952008":2,"952009":2,"952010":2,"952011":2,"952012":2,"952013":2,"952014":2,"952015":2,"952016":2,"952017":2,"952018":2,"952019":2,"952023":1,"952024":1,"952025":1,"952026":1,"952027":1,"952028":1,"952690":3,"952691":3,"952692":3,"952693":3,"953138":1,"953139":1,"953140":1,"953141":1,"953142":1,"953144":2,"953145":2,"953146":2,"953147":2,"953148":2,"953149":2,"953150":2,"953151":2,"953152":2,"953153":2,"953154":2,"953155":2,"953156":2,"953157":2,"953158":2,"953159":2,"953160":2,"953161":2,"953162":2,"953163":2,"953164":2,"953165":2,"953166":2,"953167":2,"953168":2,"953169":2,"953170":2,"953171":2,"953172":2,"953175":1,"953176":1,"953177":1,"953178":1,"953179":1,"953290":1,"953291":1,"953292":1,"953293":1,"953294":1,"953295":1,"953296":1,"953297":1,"953298":1,"953299":1,"954290":1,"954291":1,"954292":1,"954293":1,"954294":1,"954297":2,"954298":2,"954299":2,"954300":2,"954301":2,"954302":2,"954303":2,"954304":2,"954305":2,"954306":2,"954307":2,"954308":2,"954309":2,"954310":2,"954311":2,"954312":2,"954313":2,"954314":2,"954315":2,"954316":2,"954317":2,"954318":2,"954319":2,"954320":2,"954321":2,"954322":2,"954323":2,"954324":2,"954325":2,"954327":1,"954328":1,"954329":1,"954330":1,"954331":1,"954442":1,"954443":1,"954444":1,"954445":1,"954446":1,"954447":1,"954448":1,"954449":1,"954450":1,"954451":1,"955442":1,"955443":1,"955444":1,"955445":1,"955446":1,"955447":1,"955451":2,"955452":2,"955453":2,"955454":2,"955455":2,"955456":2,"955457":2,"955458":2,"955459":2,"955460":2,"955461":2,"955462":2,"955463":2,"955464":2,"955465":2,"955466":2,"955467":2,"955468":2,"955469":2,"955470":2,"955471":2,"955472":2,"955473":2,"955474":2,"955475":2,"955476":2,"955477":2,"955480":1,"955481":1,"955482":1,"955483":1,"955594":1,"955595":1,"955596":1,"955597":1,"955598":1,"955599":1,"955600":1,"955601":1,"955602":1,"955603":1,"956594":1,"956595":1,"956596":1,"956597":1,"956598":1,"956599":1,"956600":1,"956601":1,"956604":2,"956605":2,"956606":2,"956607":2,"956608":2,"956609":2,"956610":2,"956611":2,"956612":2,"956613":2,"956614":2,"956615":2,"956616":2,"956617":2,"956618":2,"956619":2,"956620":2,"956621":2,"956622":2,"956623":2,"956624":2,"956625":2,"956626":2,"956627":2,"956628":2,"956632":1,"956633":1,"956634":1,"956746":1,"956747":1,"956748":1,"956749":1,"956750":1,"956751":1,"956752":1,"956753":1,"956754":1,"956755":1,"957296":2,"957746":1,"957747":1,"957748":1,"957749":1,"957750":1,"957751":1,"957752":1,"957754":1,"957757":2,"957758":2,"957759":2,"957760":2,"957761":2,"957762":2,"957763":2,"957764":2,"957765":2,"957766":2,"957767":2,"957768":2,"957769":2,"957770":2,"957771":2,"957772":2,"957773":2,"957774":2,"957775":2,"957776":2,"957777":2,"957778":2,"957779":2,"957780":2,"957783":1,"957784":1,"957785":1,"957786":1,"957898":1,"957899":1,"957900":1,"957901":1,"957902":1,"957903":1,"957904":1,"957905":1,"957906":1,"957907":1,"958448":2,"958449":2,"958899":1,"958900":1,"958901":1,"958902":1,"958903":1,"958904":1,"958905":1,"958906":1,"958907":1,"958909":2,"958910":2,"958911":2,"958912":2,"958917":2,"958918":2,"958919":2,"958920":2,"958921":2,"958922":2,"958923":2,"958924":2,"958925":2,"958926":2,"958927":2,"958928":2,"958929":2,"958930":2,"958931":2,"958934":1,"958935":1,"958936":1,"958937":1,"958938":1,"959050":1,"959051":1,"959052":1,"959053":1,"959054":1,"959055":1,"959056":1,"959057":1,"959058":1,"959059":1,"959585":2,"959586":2,"959587":2,"959588":2,"959589":2,"959590":2,"959591":2,"959592":2,"959593":2,"959594":2,"959595":2,"959601":2,"959602":2,"959603":2,"960053":1,"960054":1,"960055":1,"960056":1,"960057":1,"960058":1,"960059":1,"960061":2,"960066":1,"960067":1,"960070":2,"960071":2,"960072":2,"960073":2,"960074":2,"960075":2,"960076":2,"960077":2,"960078":2,"960079":2,"960080":2,"960081":2,"960082":2,"960085":1,"960086":1,"960087":1,"960088":1,"960089":1,"960090":1,"960201":1,"960202":1,"960203":1,"960204":1,"960205":1,"960206":1,"960207":1,"960208":1,"960209":1,"960210":1,"960211":1,"960212":1,"960711":2,"960712":2,"960713":2,"960714":2,"960737":2,"960738":2,"960739":2,"960740":2,"960741":2,"960742":2,"960743":2,"960744":2,"960745":2,"960746":2,"960747":2,"961206":1,"961207":1,"961208":1,"961209":1,"961210":1,"961211":1,"961215":1,"961216":1,"961217":1,"961219":1,"961220":1,"961222":2,"961223":2,"961224":2,"961225":2,"961226":2,"961227":2,"961228":2,"961229":2,"961230":2,"961231":2,"961232":2,"961233":2,"961236":1,"961237":1,"961238":1,"961239":1,"961240":1,"961241":1,"961242":1,"961352":1,"961353":1,"961354":1,"961355":1,"961356":1,"961357":1,"961358":1,"961359":1,"961360":1,"961361":1,"961362":1,"961363":1,"961364":1,"961365":1,"961862":2,"961863":2,"961864":2,"961865":2,"961866":2,"961891":2,"961892":2,"961893":2,"961894":2,"961895":2,"961896":2,"961901":3,"961902":3,"962359":1,"962360":1,"962361":1,"962362":1,"962363":1,"962364":1,"962365":1,"962366":1,"962368":1,"962369":1,"962371":1,"962372":1,"962374":2,"962375":2,"962376":2,"962377":2,"962378":2,"962379":2,"962380":2,"962381":2,"962382":2,"962383":2,"962384":2,"962385":2,"962387":1,"962388":1,"962389":1,"962390":1,"962391":1,"962392":1,"962393":1,"962503":1,"962504":1,"962505":1,"962506":1,"962507":1,"962508":1,"962509":1,"962510":1,"962511":1,"962512":1,"962513":1,"962514":1,"962515":1,"962516":1,"962517":1,"962518":1,"963014":2,"963015":2,"963016":2,"963017":2,"963018":2,"963019":2,"963043":2,"963044":2,"963045":2,"963046":2,"963047":2,"963048":2,"963053":3,"963054":3,"963511":1,"963512":1,"963513":1,"963514":1,"963515":1,"963516":1,"963517":1,"963518":1,"963519":1,"963520":1,"963521":1,"963522":1,"963523":1,"963524":1,"963527":2,"963528":2,"963529":2,"963530":2,"963531":2,"963532":2,"963533":2,"963534":2,"963535":2,"963536":2,"963537":2,"963539":1,"963540":1,"963541":1,"963542":1,"963543":1,"963654":1,"963655":1,"963656":1,"963657":1,"963658":1,"963659":1,"963660":1,"963661":1,"963662":1,"963663":1,"963664":1,"963665":1,"963666":1,"963667":1,"963668":1,"963669":1,"963670":1,"963671":1,"964166":2,"964167":2,"964168":2,"964169":2,"964170":2,"964197":2,"964198":2,"964663":1,"964665":1,"964666":1,"964667":1,"964668":1,"964669":1,"964670":1,"964671":1,"964672":1,"964673":1,"964674":1,"964675":1,"964676":1,"964677":1,"964680":2,"964681":2,"964682":2,"964683":2,"964684":2,"964685":2,"964686":2,"964687":2,"964688":2,"964691":1,"964692":1,"964693":1,"964694":1,"964805":1,"964806":1,"964807":1,"964808":1,"964809":1,"964810":1,"964811":1,"964812":1,"964813":1,"964814":1,"964815":1,"964816":1,"964817":1,"964818":1,"964819":1,"964820":1,"964821":1,"964822":1,"964823":1,"964824":1,"965320":2,"965321":2,"965816":1,"965821":1,"965822":1,"965823":1,"965824":1,"965825":1,"965826":1,"965827":1,"965828":1,"965829":1,"965833":2,"965834":2,"965835":2,"965836":2,"965837":2,"965838":2,"965839":2,"965840":2,"965842":1,"965843":1,"965844":1,"965845":1,"965957":1,"965958":1,"965959":1,"965960":1,"965961":1,"965962":1,"965963":1,"965964":1,"965965":1,"965966":1,"965967":1,"965968":1,"965969":1,"965970":1,"965971":1,"965972":1,"965973":1,"965974":1,"965975":1,"965976":1,"966974":1,"966975":1,"966976":1,"966977":1,"966978":1,"966979":1,"966980":1,"966981":1,"966982":1,"966983":1,"966986":2,"966990":2,"966991":2,"966992":2,"966994":1,"966995":1,"966996":1,"966997":1,"967109":1,"967110":1,"967111":1,"967112":1,"967113":1,"967114":1,"967115":1,"967116":1,"967117":1,"967118":1,"967119":1,"967120":1,"967121":1,"967122":1,"967123":1,"967124":1,"967125":1,"967126":1,"967127":1,"967128":1,"968128":1,"968129":1,"968130":1,"968131":1,"968132":1,"968133":1,"968134":1,"968135":1,"968136":1,"968140":1,"968143":2,"968146":1,"968147":1,"968148":1,"968149":1,"968261":1,"968262":1,"968263":1,"968264":1,"968265":1,"968266":1,"968267":1,"968268":1,"968269":1,"968270":1,"968271":1,"968272":1,"968273":1,"968274":1,"968275":1,"968276":1,"968277":1,"968278":1,"968279":1,"968280":1,"969280":1,"969281":1,"969282":1,"969284":1,"969285":1,"969286":1,"969287":1,"969288":1,"969289":1,"969290":1,"969291":1,"969292":1,"969293":1,"969297":1,"969298":1,"969299":1,"969300":1,"969413":1,"969414":1,"969415":1,"969416":1,"969417":1,"969418":1,"969419":1,"969420":1,"969421":1,"969422":1,"969423":1,"969424":1,"969425":1,"969426":1,"969427":1,"969428":1,"969429":1,"969430":1,"969431":1,"969432":1,"970432":1,"970433":1,"970434":1,"970435":1,"970436":1,"970440":1,"970441":1,"970442":1,"970443":1,"970444":1,"970445":1,"970446":1,"970447":1,"970448":1,"970449":1,"970450":1,"970451":1,"970452":1,"970565":1,"970566":1,"970567":1,"970568":1,"970569":1,"970570":1,"970571":1,"970572":1,"970573":1,"970574":1,"970575":1,"970576":1,"970577":1,"970578":1,"970579":1,"970580":1,"970581":1,"970582":1,"970583":1,"970584":1,"971592":1,"971593":1,"971594":1,"971595":1,"971596":1,"971597":1,"971598":1,"971599":1,"971600":1,"971601":1,"971602":1,"971603":1,"971604":1,"971717":1,"971718":1,"971719":1,"971720":1,"971721":1,"971722":1,"971723":1,"971724":1,"971725":1,"971726":1,"971727":1,"971728":1,"971729":1,"971730":1,"971731":1,"971732":1,"971733":1,"971734":1,"971735":1,"971736":1,"972747":1,"972748":1,"972749":1,"972750":1,"972751":1,"972752":1,"972754":1,"972755":1,"972756":1,"972869":1,"972870":1,"972871":1,"972872":1,"972873":1,"972874":1,"972875":1,"972876":1,"972877":1,"972878":1,"972879":1,"972880":1,"972881":1,"972882":1,"972883":1,"972884":1,"972885":1,"972886":1,"972887":1,"972888":1,"973905":1,"973906":1,"973907":1,"973908":1,"973909":1,"974021":1,"974022":1,"974023":1,"974024":1,"974025":1,"974026":1,"974027":1,"974028":1,"974029":1,"974030":1,"974031":1,"974032":1,"974033":1,"974034":1,"974035":1,"974036":1,"974037":1,"974038":1,"974039":1,"974040":1,"975060":1,"975062":1,"975173":1,"975174":1,"975175":1,"975176":1,"975177":1,"975178":1,"975179":1,"975180":1,"975181":1,"975182":1,"975183":1,"975184":1,"975185":1,"975186":1,"975187":1,"975188":1,"975189":1,"975190":1,"975191":1,"975192":1,"976213":1,"976326":1,"976327":1,"976328":1,"976329":1,"976330":1,"976331":1,"976332":1,"976333":1,"976334":1,"976335":1,"976336":1,"976337":1,"976338":1,"976339":1,"976340":1,"976341":1,"976342":1,"976343":1,"977479":1,"977480":1,"977481":1,"977482":1,"977483":1,"977484":1,"977485":1,"977486":1,"977487":1,"977488":1,"977489":1,"977490":1,"977491":1,"977492":1,"977493":1,"977494":1,"979172":2,"979189":2,"979190":2,"980315":2,"980316":2,"980317":2,"980323":2,"980324":2,"980325":2,"980339":2,"980340":2,"980341":2,"980342":2,"981467":2,"981468":2,"981469":2,"981475":2,"981476":2,"981477":2,"981490":2,"981491":2,"981492":2,"981493":2,"981494":2,"982619":2,"982620":2,"982621":2,"982641":2,"982642":2,"982643":2,"982644":2,"982645":2,"982646":2,"983771":2,"983772":2,"983773":2,"983793":2,"983794":2,"983795":2,"983796":2,"983797":2,"984924":2,"984925":2,"984926":2,"984927":2,"986077":2,"986078":2,"986079":2,"986080":2,"986081":2,"986082":2,"987230":2,"987231":2,"987232":2,"987233":2,"987234":2,"988383":2,"988384":2,"988385":2,"988386":2},"high":[17,18,19,58,59,74,77,78,81,82,83,131,132,133,134,135,136,137,140,141,142,143,186,187,192,193,195,196,197,198,199,200,201,203,204,205,206,207,208,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,320,321,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,387,393,394,401,458,465,566,567,630,631,640,641,704,705,896,897,960,961,1292,1293,1356,1357,1399,1401,1414,1415,1416,1419,1420,1421,1422,1423,1424,1425,1426,1462,1463,1464,1465,1466,1477,1478,1479,1480,1481,1483,1484,1485,1486,1487,1488,1489,1490,1526,1527,1528,1529,1530,1531,1532,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1590,1591,1592,1593,1594,1595,1596,1604,1605,1606,1607,1608,1609,1610,1648,1649,1650,1653,1654,1655,1656,1657,1658,1659,1660,1668,1669,1670,1671,1672,1673,1674,1712,1713,1714,1717,1718,1719,1720,1721,1722,1723,1776,1777,1778,1781,1782,1787,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1845,1846,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1942,1949,1950,1951,1952,1953,1954,1955,2004,2005,2068,2069,4174,4175,4178,4179,4182,4184,4185,4186,4187,4270,4271,4273,4274,4275,4276,4277,4278,4279,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,5005,5006,5058,5059,5060,5068,5069,5070,5117,5118,5119,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5344,5345,5346,5347,5348,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5387,5388,5440,5441,5442,5443,5444,5501,5502,5503,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5892,5893,5894,5895,5896,5960,5961,5962,6018,6019,6032,6056,6057,6058,6059,6069,6070,6071,6072,6073,6113,6114,6115,6116,6117,6127,6128,6129,6130,6152,6153,6154,6155,6208,6209,6210,6211,6212,6213,6216,6217,6218,6221,6222,6223,6224,6225,6226,6248,6249,6250,6304,6305,6306,6307,6308,6311,6312,6313,6314,6315,6317,6318,6319,6320,6321,6322,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,8276,8277,8278,8372,8373,8374,8552,8553,8554,8648,8649,8650,8709,8710,8711,8721,8722,8723,8730,8731,8732,8766,8767,8768,8775,8776,8777,8784,8785,8786,8793,8794,8795,8805,8806,8807,8817,8818,8819,8826,8827,8828,8862,8863,8864,8871,8872,8873,8880,8881,8882,8889,8890,8891,8900,8901,8902,8903,8904,8905,8912,8913,8914,8915,8916,8917,8921,8922,8923,8924,8925,8926,8939,8940,8941,8942,8943,8944,8948,8949,8950,8951,8952,8953,8957,8958,8959,8960,8961,8962,8966,8967,8968,8969,8970,8971,8975,8976,8977,8978,8979,8980,8984,8985,8986,8987,8988,8989,8996,8997,8998,8999,9000,9001,9008,9009,9010,9011,9012,9013,9017,9018,9019,9020,9021,9022,9035,9036,9037,9038,9039,9040,9044,9045,9046,9047,9048,9049,9053,9054,9055,9056,9057,9058,9062,9063,9064,9065,9066,9067,9071,9072,9073,9074,9075,9076,9080,9081,9082,9083,9084,9085,9092,9093,9094,9095,9096,9097,9104,9105,9106,9107,9108,9109,9113,9114,9115,9116,9117,9118,9131,9132,9133,9134,9135,9136,9140,9141,9142,9143,9144,9145,9149,9150,9151,9152,9153,9154,9158,9159,9160,9161,9162,9163,9167,9168,9169,9170,9171,9172,9176,9177,9178,9179,9180,9181,9294,9295,9296,9297,9303,9304,9305,9306,9321,9322,9323,9324,9330,9331,9332,9333,9339,9340,9341,9342,9348,9349,9350,9351,9357,9358,9359,9360,9366,9367,9368,9369,10245,10246,10247,10248,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10309,10310,10311,10312,10313,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10373,10374,10375,10376,10377,10393,10403,10457,10467,10521,10531,10698,10699,10700,10701,10753,10754,10755,10756,10757,10758,10759,10760,10777,10778,10779,10780,10781,10782,10783,10817,10818,10819,10820,10826,10827,10829,10841,10842,10843,10844,10845,10846,10847,10881,10882,10883,10884,10905,10906,10907,10908,10909,10910,10911,10944,10949,10950,10951,10952,10953,10954,10955,10956,10957,10969,10975,11033,11039,11072,11074,11077,11079,11080,11081,11082,11084,11085,11143,11144,11145,11146,11200,11201,11202,11207,11208,11209,11210,11328,11329,11330,11340,11341,11456,11457,11458,11459,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11584,11585,11586,11587,11596,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11714,11715,11726,11737,11750,11801,11814,11905,11906,11907,11908,11909,11910,11911,11913,11914,11915,11916,11917,11918,11919,11920,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12063,12064,12065,12066,12067,12068,12069,12070,12096,12097,12098,12099,12100,12101,12102,12103,12105,12106,12107,12108,12109,12110,12111,12127,12128,12129,12130,12131,12132,12133,12134,12160,12161,12166,12167,12169,12175,12191,12192,12193,12194,12195,12196,12197,12198,12224,12225,12230,12231,12233,12239,12288,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12608,12609,12613,12614,12615,12621,12622,12630,12639,12640,12643,12644,12672,12673,12677,12678,12679,12685,12686,12694,12702,12703,12704,12705,12706,12707,12708,12709,12743,12749,12750,12758,12766,12767,12768,12769,12770,12771,12772,12773,12807,12813,12814,12822,12830,12831,12832,12835,12836,12837,12886,12894,12897,12898,12901,12950,13278,13283,13286,13287,13288,13289,13290,13291,13340,13341,13342,13343,13345,13346,13347,13348,13350,13351,13352,13353,13354,13355,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13470,13475,13476,13477,13479,13480,13481,13482,13485,13671,13672,13673,13674,13734,13735,13736,13737,13740,13741,13742,13745,13746,13747,13749,13750,13751,13798,13799,13800,13801,13803,13804,13805,13806,13808,13809,13810,13811,13812,13867,13868,13869,13870,13872,13873,13874,13875,13876,13991,13992,13993,14054,14055,14056,14057,14058,14060,14061,14062,14065,14066,14067,14070,14071,14072,14075,14076,14077,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14182,14183,14184,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14996,14997,15011,15012,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15049,15051,15053,15075,15076,15114,15116,15118,15139,15140,15177,15179,15181,15184,15185,15186,15189,15190,15191,15192,15242,15244,15246,15248,15249,15250,15251,15252,15313,15314,15315,15316,15317,15318,15319,15320,15368,15369,15370,15371,15384,15441,15442,15445,15446,15447,15496,15497,15498,15499,15504,15505,15506,15507,15572,15573,15639,15842,15858,15906,16854],"objects":[20,21,22,23,24,25,148,149,150,151,152,153,154,155,156,257,276,278,280,282,284,385,2690,4153,4154,4155,4156,4157,15059,15100,15101,15104,15105,15108,15111,15121,15241,15243,15245,15253,15254,15255,15256,15492,15493,15556,15557,15559,15560,15561,15562,15563,15569,15570,15571,15637],"cursors":{"20":"pickaxe","21":"pickaxe","22":"pickaxe","23":"pickaxe","24":"pickaxe","25":"pickaxe","148":"pickaxe","149":"pickaxe","150":"pickaxe","151":"pickaxe","152":"pickaxe","153":"pickaxe","154":"pickaxe","155":"pickaxe","156":"pickaxe","276":"pickaxe","278":"pickaxe","280":"pickaxe","282":"pickaxe","284":"pickaxe","15057":"cooking","15059":"alchemy","15100":"foraging","15101":"foraging","15104":"foraging","15105":"foraging","15108":"foraging","15111":"foraging","15121":"cooking","15241":"foraging","15243":"foraging","15245":"foraging","15253":"crafting","15254":"crafting","15255":"crafting","15256":"crafting","15492":"foraging","15493":"foraging","15556":"foraging","15557":"foraging","15559":"foraging","15560":"foraging","15561":"foraging","15562":"foraging","15563":"foraging","15569":"smelting","15570":"smelting","15571":"smelting","15637":"smithing"},"entities":{"115372":"oak","116528":"peachbush","117058":"sorcerer","117087":"villagegirl","117651":"oak","118812":"blueberrybush","118825":"peachbush","119916":"goblin","119957":"bat","120214":"deathknight","121078":"oak","121092":"blueberrybush","121182":"oak","121184":"rat","122217":"oak","122296":"rat","122338":"blueberrybush","122383":"oak3","122517":"deathknight","122888":"oldlady","123416":"oak","123441":"bat","123484":"tomatobush","123524":"ogre","123553":"desertscorpion","124530":"skeleton","124535":"goblin","124604":"peachbush","124673":"ogre","124678":"cactus","124814":"spectre","125690":"oak","125694":"oak","125737":"oak","125744":"oak","125766":"oak","125793":"rat","125942":"preta","125948":"preta","125950":"adherer","125951":"preta","125964":"spectre","125978":"spectre","126830":"skeleton","126832":"skeleton","126838":"rat","126911":"oak","126959":"oak","126997":"cactus","127014":"oak3","127115":"spectre","127494":"rat","127500":"rat","128025":"rat","128044":"blueberrybush","128051":"blueberrybush","128100":"oak","128256":"preta","128284":"deathknight","129153":"blueberrybush","129156":"oak","129175":"blueberrybush","129181":"oak","129214":"bat","129229":"bat","129243":"oak","129308":"cactus","129392":"preta","129802":"rat","130289":"goblin","130300":"blueberrybush","130379":"blueberrybush","130422":"oak3","130445":"cactus","130472":"desertscorpion","130552":"preta","130949":"rat","131469":"tomatobush","131477":"tomatobush","131490":"tomatobush","131494":"boxingman","131526":"villager4","131544":"forestnpc","131566":"blueberrybush","131578":"cactus","131617":"cactus","132669":"tomatobush","132735":"ogre","132760":"oak3","132777":"cactus","132785":"cactus","132884":"spectre","133743":"rat","133767":"rat","133809":"oak","133956":"eye","134901":"goblin","134907":"goblin","134928":"oak","134936":"oak","134978":"oak","135004":"blueberrybush","135008":"rat","135009":"oak","135014":"rat","135030":"snek","135045":"oak3","136042":"goblin","136109":"rat","136142":"oak","136150":"oak","136210":"desertscorpion","136220":"cactus","136234":"desertscorpion","136241":"snek","136266":"eye","136338":"golem","137220":"rat","137243":"rat","137266":"rat","137282":"rat","137338":"ogre","137390":"desertscorpion","138409":"oak","138443":"blueberrybush","138516":"cactus","138549":"oak2","138580":"spectre","138629":"golem","139501":"goblin","139504":"rat","139534":"rat","139601":"rat","139652":"ogre","139726":"eye","140646":"oak","140664":"oak","140675":"goblin","140710":"rat","140775":"oak","140776":"bat","140813":"snek","140926":"adherer","141806":"rat","141814":"goblin","141882":"blueberrybush","141894":"oak","141947":"snek","141973":"cactus","141987":"cactus","141993":"snek","142000":"cactus","142043":"eye","142971":"rat","142987":"oak","143004":"bat","143009":"oak","143029":"oak","143066":"bat","143202":"spectre","144109":"blueberrybush","144114":"goblin","144119":"blueberrybush","144130":"rat","144154":"oak","144179":"tomatobush","144246":"snek","144307":"cactus","145277":"goblin","145367":"oak","145374":"blueberrybush","145382":"tomatobush","145438":"cactus","145451":"cactus","145453":"snek","145534":"spectre","145558":"golem","146414":"rat","146451":"rat","146476":"rat","146514":"tomatobush","146554":"desertscorpion","146568":"oldogre","146597":"snek","146601":"desertscorpion","146696":"adherer","147572":"goblin","147579":"rat","147597":"tomatobush","147617":"blueberrybush","147623":"oak","147698":"oak3","147789":"eye","147816":"eye","148742":"rat","148807":"rat","148867":"oak3","148961":"spectre","148986":"ironogre","149881":"goblin","149912":"blueberrybush","149924":"rat","149944":"bat","149956":"oak","150036":"snek","150158":"adherer","151019":"oak","151049":"oak","151097":"oak","151117":"oak","151218":"cactus","151318":"spectre","152178":"oak","152296":"blueberrybush","152345":"oak3","152373":"oak2","152396":"eye","153361":"oak","153373":"oak","153429":"oak","153433":"rat","153451":"oak","153483":"oak3","153493":"cactus","153571":"eye","154515":"rat","154560":"tomatobush","154611":"snek","154652":"snek","154656":"lavanpc","154660":"oak3","154762":"adherer","155628":"blueberrybush","155638":"rat","155769":"cactus","155818":"vulture","155848":"eye","155921":"adherer","156807":"rat","156847":"oak","156928":"snek","157939":"goblin","157965":"rat","158042":"blueberrybush","158174":"spectre","158222":"adherer","159080":"oak","159249":"oak3","159313":"spectre","159382":"golem","160270":"bat","160297":"blueberrybush","160353":"oak","160368":"oak3","160378":"snek","160387":"snek","160411":"cactus","160469":"eye","161386":"goblin","161396":"oak","161506":"rat","161511":"peachbush","161586":"desertscorpion","162543":"goblin","162701":"cactus","162708":"snek","162731":"oak3","162791":"spectre","162816":"ironogre","162835":"golem","163714":"blueberrybush","163733":"oak","163749":"oak","163786":"rat","163791":"oak","163828":"snek","164856":"rat","164876":"oak","164998":"snek","165041":"desertscorpion","166000":"goblin","166011":"goblin","166037":"bat","166146":"oak3","166222":"ironogre","167150":"blueberrybush","167233":"oak","167271":"guard","167334":"snek","167438":"golem","168328":"villagegirl2","168334":"rat","168415":"oak","168447":"snek","168494":"cactus","169449":"oak","169505":"peachbush","169566":"rat","169631":"cactus","169649":"snek","170617":"blueberrybush","170651":"oak","170687":"bat","170700":"oak","170740":"snek","170786":"desertscorpion","170887":"adherer","171759":"oddeyecat","171794":"bat","171807":"blueberrybush","171827":"oak","171869":"blueberrybush","171918":"oak3","172912":"rat","172930":"goblin","172939":"blueberrybush","173065":"snek","173081":"cactus","173107":"snek","174139":"oak","174182":"tomatobush","174194":"cactus","174229":"snek","174252":"cactus","174262":"cactus","175222":"goblin","175258":"rat","175282":"rat","175485":"adherer","176394":"rat","176398":"oak","176451":"oak","176493":"oak3","176508":"cactus","176547":"oak2","176555":"desertscorpion","176569":"oak2","177515":"oak","177521":"tomatobush","177554":"tomatobush","177567":"bat","177573":"peachbush","178707":"rat","178734":"oak","178767":"oak","178854":"cactus","178874":"cactus","179822":"rat","179833":"blueberrybush","179843":"goblin","179874":"oak","179989":"snek","180114":"golem","181001":"tomatobush","181041":"rat","181146":"oak3","181257":"deathknight","182151":"goblin","182168":"oak","182202":"oak","182238":"oak","182239":"rat","182402":"blackwizard","183299":"goblin","183328":"bat","183330":"blueberrybush","183354":"rat","183370":"oak","183413":"snek","183436":"snek","183442":"vulture","183468":"oak3","183544":"spectre","183608":"lavaslime","183609":"lavaslime","184439":"peachbush","184514":"spruce","184541":"bat","184561":"cactus","184573":"oak3","184629":"oak3","185587":"bat","185594":"bat","185624":"blueberrybush","185736":"oak3","185760":"cactus","185777":"desertscorpion","185849":"preta","186825":"bat","186858":"oak3","187019":"blackwizard","187024":"spectre","187930":"bat","188030":"snek","188054":"ogre","188057":"ogre","188078":"cactus","189073":"goblin","189103":"oak","189155":"blueberrybush","189164":"snek","189199":"oak3","189238":"cactus","189267":"ogrelord","190232":"tomatobush","190266":"oak","190284":"oak","190301":"rat","190364":"ogre","190373":"oak3","190508":"lavaslime","190565":"lavaslime","191343":"oak","191349":"oak","191367":"oak","191474":"snek","191534":"cactus","191621":"deathknight","191630":"adherer","192541":"oak","192600":"oak","192665":"ogre","193655":"bat","193666":"goblin","193731":"oak","193801":"desertscorpion","194796":"blueberrybush","194812":"blueberrybush","194887":"blacksmith","195066":"spectre","195169":"lavaslime","195968":"rat","196074":"snek","196078":"cactus","196126":"oak2","197129":"agent","197147":"bat","197171":"oak","197377":"spectre","198294":"oak","198518":"preta","198639":"lavaslime","199449":"blueberrybush","199485":"oak","199497":"rat","199525":"oak3","199546":"snek","199690":"preta","199779":"lavaslime","200570":"oak","200653":"oak","200667":"bat","200744":"oak3","201707":"oak","201763":"oak","202093":"lavaslime","202865":"rat","202916":"rat","203031":"oak3","204010":"bat","204018":"oak","204037":"goblin","204041":"blueberrybush","204077":"goblin","204101":"oak","204151":"oak3","204175":"cactus","204320":"lavaslime","205227":"rat","205232":"oak","205295":"desertscorpion","205352":"snek","205358":"cactus","205367":"cactus","205379":"miner","205463":"lavaslime","205513":"lavaslime","206314":"peachbush","206332":"peachbush","206347":"oak","206425":"oak","206432":"blueberrybush","206453":"snek","207487":"rat","207506":"rat","207593":"cactus","207643":"snek","208656":"tomatobush","208820":"cactus","208980":"lavaslime","209877":"tomatobush","209902":"oak2","210142":"lavaslime","210934":"rat","210936":"oak","210955":"blueberrybush","212089":"bat","212118":"oak","212122":"bat","212180":"rat","212211":"cactus","212228":"oak3","212247":"snek","212268":"cactus","213247":"tomatobush","213342":"oak","213410":"oak3","214430":"oak","214458":"oak","214544":"desertscorpion","214679":"lavaslime","215539":"blueberrybush","215576":"tomatobush","215620":"oak","215641":"bat","215733":"oak2","215742":"oak3","215767":"oak3","216710":"bat","216729":"rat","216778":"bat","216780":"blueberrybush","216904":"oak3","217835":"bat","217889":"blueberrybush","217907":"oak","217912":"blueberrybush","217926":"rat","218003":"cactus","218089":"oak2","218121":"oak2","218203":"lavaslime","218985":"blueberrybush","219001":"oak","219020":"oak","219036":"bat","219046":"oak","219050":"blueberrybush","219058":"rat","219088":"oak","219097":"oak","219133":"oak3","220176":"rat","220219":"rat","220299":"oak3","220419":"oak3","221374":"oak","221444":"snek","222491":"oak","222513":"tomatobush","222518":"treestump1","222549":"bat","222573":"skeleton2","222577":"skeleton","222581":"skeleton","222781":"lavaslime","223660":"rat","223690":"rat","223699":"blueberrybush","223709":"blueberrybush","223760":"desertscorpion","223769":"oak2","223778":"cactus","223837":"oak2","223967":"lavaslime","224749":"oak","224766":"bat","224871":"oak3","224877":"skeleton2","224879":"skeleton","224881":"skeleton2","224883":"skeleton","224885":"skeleton2","224915":"oak6","224965":"desertnpc","225039":"oak3","225113":"lavaslime","225937":"bat","225969":"bat","225995":"tomatobush","226011":"peachbush","226093":"cactus","226123":"oak2","226160":"oak3","226243":"lavaslime","227060":"oak","227068":"oak","227106":"oak","227117":"oak","227140":"oak","227203":"oak6","227219":"desertscorpion","227354":"lavaslime","228204":"blueberrybush","228234":"crab","228258":"rat","228455":"cactus","228470":"oak2","229395":"tomatobush","229399":"oak","229418":"blueberrybush","230512":"rat","230595":"rat","230613":"oak","230657":"desertscorpion","230722":"oak3","230781":"oak3","230785":"snek","231744":"tomatobush","232813":"peachbush","232851":"rat","232860":"crab","232875":"rat","232887":"oak","232984":"cactus","233002":"cactus","233984":"blueberrybush","234080":"oak3","234108":"oak2","234210":"oak3","235126":"peachbush","235139":"rat","235198":"goblin","235269":"oak3","235315":"oak3","235329":"cactus","236274":"oak","236306":"blueberrybush","236328":"blueberrybush","236347":"goblin","236365":"oak","236455":"cactus","236497":"cactus","236557":"oak2","237435":"crab","237447":"peachbush","237462":"tomatobush","237509":"peachbush","237568":"rooster","237586":"oak2","237685":"snek","238567":"oak","238627":"tomatobush","238637":"oak","238695":"oak3","238731":"rooster","238996":"alkythn","239746":"oak","239832":"oak3","239943":"oak3","239960":"cactus","240878":"palm","240945":"blueberrybush","241086":"cactus","241145":"desertscorpion","241333":"alkythn","242009":"palm","242036":"palm","242044":"palm","242077":"crab","242107":"peachbush","242112":"palm","242163":"oak3","242254":"cactus","242332":"alkythn","243190":"crab","243199":"crab","243222":"crab","243232":"palm","243253":"oak","243269":"crab","243326":"oak3","244364":"crab","244389":"crab","244651":"alkythn","244727":"alkythn","244766":"alkythn","245471":"palm","245479":"palm","245527":"palm","245544":"palm","245574":"palm","245646":"oak2","245720":"cactus","245775":"oak3","245864":"alkythn","246664":"palm","246752":"oak3","246776":"oak3","247794":"crab","247800":"palm","247816":"crab","247855":"crab","247999":"cactus","248032":"oak3","248051":"oak3","248070":"oak3","248127":"alkythn","248196":"alkythn","248406":"icegolem","248953":"crab","249011":"crab","250095":"palm","250112":"palm","250128":"palm","250141":"palm","250147":"crab","250175":"crab","250697":"icegolem","251220":"palm","251275":"crab","251318":"palm","251332":"crab","251436":"oak3","251497":"cactus","251540":"alkythn","252399":"crab","252444":"crab","252464":"crab","252474":"crab","252748":"alkythn","252766":"alkythn","252783":"alkythn","253533":"palm","253607":"crab","253612":"palm","253821":"oak3","253857":"alkythn","254131":"icegolem","254719":"crab","254735":"crab","254742":"crab","254789":"palm","255043":"alkythn","255153":"alkythn","255274":"icegolem","255846":"palm","255865":"crab","255884":"palm","256006":"oak3","256065":"oak6","256071":"cactus","256442":"icegolem","257020":"palm","257028":"crab","257053":"crab","257057":"palm","257240":"oak3","257603":"icegolem","257611":"icegolem","258230":"crab","258328":"oak3","258716":"icegolem","258731":"icegolem","259350":"palm","259391":"crab","259597":"oak3","259739":"alkythn","259930":"icegolem","260446":"palm","260462":"crab","260464":"palm","260499":"crab","260540":"palm","260589":"oak3","261042":"icegolem","261621":"crab","261636":"palm","261686":"crab","261839":"oak3","261968":"alkythn","262737":"palm","263083":"alkythn","264030":"oak3","264174":"oak3","264253":"alkythn","264280":"alkythn","264294":"alkythn","264483":"icegolem","265063":"palm","265148":"crab","265155":"palm","265257":"oak3","265460":"alkythn","265683":"icegolem","266233":"beachnpc","266247":"crab","266282":"skeleton","266530":"alkythn","266634":"alkythn","266699":"bluepreta","266728":"bluepreta","267916":"icegolem","267923":"icegolem","268509":"palm","268728":"oak3","268975":"bluepreta","269806":"oak6","269843":"oak3","269916":"cuminbush","269953":"oak3","269969":"alkythn","270122":"icevulture","270883":"skeleton","270891":"skeleton","271043":"oak3","271057":"oak6","271073":"heliphatit","271376":"icegolem","271449":"icegolem","272432":"icevulture","272489":"bluepreta","273257":"oak3","273380":"blackberrybush","273397":"aquasillius","273452":"alkythn","273586":"icevulture","273608":"bluepreta","274420":"oak3","274519":"heliphatit","274782":"bluepreta","274787":"bluepreta","274841":"icegolem","275738":"alkythn","275892":"bluepreta","275920":"icevulture","276783":"oak3","276828":"paprikabush","277079":"bluepreta","277102":"bluepreta","277857":"oak3","277918":"oak3","277997":"aquasillius","278011":"heliphatit","279154":"mustardbush","279167":"raspberrybush","279361":"bluepreta","280210":"oak3","280457":"pine","281352":"oak3","281421":"oak3","281483":"oak3","281678":"icevulture","281785":"darkregion","282494":"oak3","282699":"pine","282809":"icevulture","283742":"aquasillius","283748":"heliphatit","283870":"snowoak","284050":"icegolem","284122":"icegolem","284946":"alkythn","284985":"pine","285971":"tomatobush","285994":"rooster","286070":"heliphatit","286117":"alkythn","286124":"alkythn","286145":"snowoak","286317":"icevulture","287210":"cuminbush","287231":"heliphatit","287330":"whitebear","287339":"snowoak","287349":"pine","287446":"icevulture","287460":"bluepreta","288271":"tomatobush","288278":"bluelilybush","288290":"rooster","288345":"heliphatit","288366":"heliphatit","288535":"pine","289394":"oak3","289427":"tomatobush","289444":"orc","289597":"snowrabbit","289602":"whitebear","289628":"snowwolf","289650":"snowrabbit","289732":"icevulture","290578":"mustardbush","290584":"mustardbush","290621":"mustardbush","290658":"blackberrybush","290715":"alkythn","290721":"bluelilybush","290731":"bluelilybush","290737":"bluelilybush","290794":"snowwolf","290861":"bluepreta","290863":"bluepreta","291713":"aquasillius","291717":"tomatobush","291727":"tomatobush","291739":"aquasillius","291742":"orc","291760":"clamspot","291762":"clamspot","291776":"jellyfishspot","291781":"heliphatit","291832":"tomatobush","291850":"alkythn","291913":"snowrabbit","291958":"snowwolf","292024":"icevulture","292183":"icegolem","292921":"cuminbush","292929":"wolf","292978":"tomatobush","293007":"bluelilybush","293080":"snowrabbit","293101":"snowrabbit","293133":"snowwolf","293182":"icevulture","293273":"icegolem","294026":"tomatobush","294051":"orc","294056":"aquasillius","294068":"aquasillius","294118":"aquasillius","294164":"alkythn","294221":"snowoak","294235":"snowoak","294351":"icevulture","295215":"mustardbush","295253":"mustardbush","295287":"orc","295314":"wolf","295333":"alkythn","295337":"wolf","296327":"cuminbush","296333":"hobgoblin","296356":"tomatobush","296368":"orc","296409":"wolf","296436":"cuminbush","296453":"alkythn","296475":"bluelilybush","296511":"snowoak","296532":"pine","296721":"icegolem","297466":"aquasillius","297545":"orc","297597":"aquasillius","297654":"alkythn","297749":"snowoak","297831":"bluepreta","297847":"bluepreta","298634":"rooster","298683":"heliphatit","298695":"rooster","298702":"heliphatit","298773":"bluelilybush","298798":"alkythn","298857":"pine","298865":"snowoak","298874":"snowrabbit","299805":"aquasillius","299869":"heliphatit","299888":"heliphatit","299944":"bluelilybush","300002":"snowoak","300042":"snowoak","300194":"icegolem","300934":"tomatobush","300963":"wolf","300991":"orc","300995":"aquasillius","301009":"rooster","301013":"aquasillius","301058":"bluelilybush","301273":"bluepreta","302080":"aquasillius","302093":"heliphatit","302101":"heliphatit","302140":"wolf","302196":"wolf","302214":"icevulture","302258":"bluelilybush","302287":"pine","302387":"bluepreta","302406":"bluepreta","302432":"icevulture","303241":"mustardbush","303273":"wolf","303276":"aquasillius","303344":"rooster","303357":"cuminbush","303369":"bluelilybush","303374":"wolf","303405":"bluelilybush","303419":"pine","303445":"whitebear","303451":"snowrabbit","303464":"snowwolf","303549":"bluepreta","303600":"bluepreta","303705":"icegolem","304396":"wolf","304408":"mustardbush","304418":"rooster","304467":"hobgoblin","304585":"snowoak","305648":"mustardbush","305660":"orc","305713":"wolf","305728":"snowrabbit","305780":"pine","305816":"pine","305898":"bluepreta","305908":"icevulture","306693":"tomatobush","306706":"tomatobush","306720":"orc","306744":"mustardbush","306760":"aquasillius","306817":"tomatobush","306829":"alkythn","306893":"snowwolf","307847":"cuminbush","307927":"orc","307952":"orc","307959":"aquasillius","307999":"alkythn","308061":"snowoak","308077":"snowoak","308090":"whitebear","308093":"snowoak","308269":"icegolem","308287":"icegolem","309011":"orc","309041":"rooster","309045":"wolf","309055":"hobgoblin","309067":"hobgoblin","309205":"snowoak","309267":"snowwolf","309298":"icevulture","309458":"icegolem","310180":"heliphatit","310224":"heliphatit","310234":"aquasillius","310261":"rooster","310292":"alkythn","310297":"bluelilybush","310309":"alkythn","311325":"wolf","311336":"cuminbush","311372":"cuminbush","311406":"heliphatit","311410":"wolf","311416":"orc","311420":"orc","311475":"bluelilybush","312458":"aquasillius","312467":"wolf","312474":"rooster","312499":"mustardbush","312527":"orc","312579":"alkythn","312620":"wolf","312644":"whitebear","313643":"wolf","313658":"heliphatit","313667":"heliphatit","313707":"orc","313770":"alkythn","313820":"snowrabbit","313848":"snowrabbit","314771":"mustardbush","314791":"mustardbush","314800":"heliphatit","314815":"orc","314899":"bluelilybush","315020":"pine","315192":"icegolem","315200":"icegolem","316005":"orc","316013":"rooster","316030":"heliphatit","316044":"wolf","316077":"icevulture","316102":"snowoak","316109":"snowrabbit","316185":"pine","317071":"rooster","317108":"wolf","317115":"wolf","317125":"rooster","317176":"wolf","317186":"tomatobush","317194":"alkythn","317215":"alkythn","317223":"bluelilybush","317396":"iceoak","317518":"icegolem","318242":"wolf","318304":"aquasillius","318313":"rooster","318321":"heliphatit","318357":"icevulture","318391":"alkythn","318458":"snowoak","318539":"iceoak","319390":"tomatobush","319442":"orc","319466":"orc","319488":"orc","319578":"whitebear","319602":"snowoak","319672":"iceoak","319728":"iceoak","319829":"icegolem","320531":"rooster","320535":"heliphatit","320552":"wolf","320573":"mustardbush","320602":"heliphatit","320614":"rooster","320632":"bluelilybush","320637":"icegolem","320703":"snowoak","320723":"pine","320829":"iceoak6","321718":"wolf","321796":"bluelilybush","321940":"snowoak","322001":"icerat","322041":"iceoak","322816":"aquasillius","322823":"heliphatit","322828":"orc","322882":"aquasillius","322919":"orc","322926":"wolf","322970":"bluelilybush","323048":"snowrabbit","323064":"snowrabbit","323085":"pine","323267":"icegolem","323992":"orc","323999":"mustardbush","324015":"orc","324045":"herbalist","324060":"cuminbush","324074":"rooster","324103":"alkythn","324113":"alkythn","324140":"alkythn","324152":"wolf","324163":"snowwolf","324208":"snowwolf","324319":"iceoak","324352":"iceoak","324426":"icegolem","325171":"tomatobush","325192":"mustardbush","325200":"orc","325337":"snowoak","325343":"snowwolf","325347":"snowoak","325435":"icerat","325442":"iceoak","325473":"icerat","325502":"icebat","326309":"heliphatit","326315":"tomatobush","326338":"orc","326398":"icegolem","326410":"bluelilybush","326458":"alkythn","326470":"pine","326523":"snowwolf","326527":"pine","327432":"tomatobush","327439":"wolf","327510":"aquasillius","327560":"wolf","327578":"bluelilybush","327756":"iceoak6","327775":"icevulture","327792":"iceoak","327802":"icebat","327816":"iceoak","328647":"orc","328687":"mustardbush","328793":"snowrabbit","328811":"snowoak","328880":"iceoak","328905":"icerat","328925":"icerat","329739":"heliphatit","329747":"heliphatit","329774":"heliphatit","329788":"cuminbush","329813":"hobgoblin","329833":"aquasillius","329872":"bluelilybush","329921":"snowrabbit","329935":"snowwolf","330047":"icebat","330115":"icebat","330933":"aquasillius","330948":"mustardbush","330988":"bluelilybush","331002":"mustardbush","331082":"pine","331187":"icerat","331195":"iceoak","331235":"icebat","331385":"iceoak","332084":"orc","332103":"bluelilybush","332127":"heliphatit","332149":"aquasillius","332197":"alkythn","333226":"mustardbush","333313":"alkythn","333359":"bluelilybush","333412":"pine","333424":"snowrabbit","333457":"snowwolf","333529":"iceoak","333558":"iceoak","334376":"hobgoblin","334386":"rooster","334392":"rooster","334427":"mustardbush","334438":"orc","334449":"wolf","334478":"wolf","334487":"alkythn","334583":"snowrabbit","334606":"snowoak","334663":"iceoak","334684":"icerat","334695":"icebat","334719":"iceoak","334736":"icerat","335549":"orc","335557":"bluelilybush","335562":"wolf","335628":"alkythn","335708":"snowoak","335720":"snowwolf","335822":"icebat","335886":"iceoak","335970":"iceoak","336645":"aquasillius","336688":"orc","336703":"aquasillius","336747":"tomatobush","336852":"snowoak","336942":"iceoak","336960":"iceoak6","337021":"icegoblin","337031":"iceoak","337047":"iceoak","337112":"iceoak6","337135":"iceoak6","337807":"heliphatit","337828":"heliphatit","337889":"tomatobush","337910":"bluelilybush","338073":"pine","338098":"icerat","338145":"iceoak","338181":"icevulture","338208":"iceoak6","338280":"iceoak5","339004":"mustardbush","339070":"rooster","339103":"ancientmanumentnpc","339142":"snowoak","339309":"iceoak","340164":"tomatobush","340207":"heliphatit","340264":"bluelilybush","340279":"alkythn","340324":"snowrabbit","340436":"iceoak","340454":"icerat","340457":"icebat","340473":"icegoblin","340510":"icebat","340521":"iceoak","341300":"hobgoblin","341312":"rooster","341318":"tunaspot","341324":"bluelilybush","341345":"hobgoblin","341352":"bluelilybush","341376":"orc","341381":"alkythn","341393":"bluelilybush","341445":"snowwolf","341456":"whitebear","341467":"snowwolf","342416":"tomatobush","342456":"heliphatit","342468":"orc","342483":"rooster","342521":"orc","342524":"tomatobush","342538":"wolf","342555":"bluelilybush","342572":"alkythn","342724":"iceoak","342732":"iceoak","342766":"icerat","342786":"iceoak5","342809":"icerat","342900":"iceoak","342906":"iceoak5","343660":"wolf","343786":"pine","343923":"iceoak","343942":"icebat","343975":"icerat","344703":"aquasillius","344737":"orc","344756":"hobgoblin","344846":"alkythn","344894":"pine","344921":"snowoak","344944":"snowwolf","344954":"pine","344974":"snowoak","345021":"icerat","345052":"icevulture","345084":"iceoak","345101":"icebat","345143":"icebat","345861":"heliphatit","345896":"hobgoblin","345898":"paprikabush","346013":"icevulture","346024":"wolf","346216":"iceoak","346257":"iceoak","346271":"iceoak","346298":"iceoak5","346327":"iceoak6","346341":"iceoak5","347020":"heliphatit","347032":"tomatobush","347071":"orc","347214":"snowwolf","347319":"iceoak","347487":"iceoak5","348192":"mustardbush","348219":"mustardbush","348232":"heliphatit","348259":"aquasillius","348271":"bluelilybush","348275":"tomatobush","348281":"wolf","348287":"aquasillius","348308":"infectedguard","348313":"alkythn","348337":"alkythn","348340":"bluelilybush","348434":"pine","348466":"icerat","348499":"iceoak","348575":"icerat","348585":"icerat","348651":"iceoak5","349341":"orc","349358":"aquasillius","349365":"bluelilybush","349388":"bluelilybush","349444":"bluelilybush","349454":"bluelilybush","349463":"infectedguard","349557":"snowoak","349686":"icebat","349815":"iceoak6","350484":"heliphatit","350590":"hobgoblin","350631":"wolf","350635":"wolf","350649":"alkythn","350830":"iceoak","350895":"iceoak5","351669":"wolf","351695":"babyspider","351697":"babyspider","351779":"alkythn","351793":"wolf","351809":"snowrabbit","351864":"snowrabbit","351964":"iceoak","351971":"iceoak","352008":"icebat","352060":"icebat","352787":"wolf","352833":"aquasillius","352890":"rooster","352928":"bluelilybush","352941":"bluelilybush","352990":"snowwolf","353065":"iceoak","353155":"iceoak","353174":"iceoak","353187":"iceoak6","353206":"icerat","353228":"iceoak5","353235":"iceoak","353953":"aquasillius","353957":"mustardbush","353961":"wolf","353977":"heliphatit","354009":"aquasillius","354047":"orc","354067":"infectedguard","354136":"pine","354157":"snowrabbit","354228":"icebat","354235":"icebat","354250":"villagegirl4","354275":"icerat","354300":"iceoak","354353":"icebat","355118":"bluelilybush","355189":"cuminbush","355206":"alkythn","355277":"pine","355342":"pine","355347":"snowwolf","355498":"iceoak","355547":"iceoak6","355571":"iceoak5","355579":"iceoak5","356258":"hobgoblin","356274":"tunaspot","356315":"wolf","356319":"heliphatit","356363":"alkythn","356620":"iceoak","356627":"icerat","356642":"icebat","356707":"iceoak5","357172":"sponge","357431":"tunaspot","357439":"wolf","357456":"bluelilybush","357475":"cuminbush","357483":"tunaspot","357490":"orc","357526":"bluelilybush","357529":"alkythn","357588":"snowwolf","357623":"snowwolf","357683":"icerat","357695":"iceoak","357724":"icebat","357825":"iceoak","358319":"greenfish","358336":"yellowfish","358533":"aquasillius","358542":"heliphatit","358595":"wolf","358646":"wolf","358659":"bluelilybush","358761":"snowwolf","358869":"iceoak","358940":"iceoak","358968":"iceoak5","358983":"iceoak6","359533":"greenfish","359703":"wolf","359707":"aquasillius","359734":"wolf","359783":"tomatobush","359802":"heliphatit","359878":"snowoak","359918":"pine","359992":"iceoak","360103":"icebat","360144":"iceoak5","360169":"iceoak5","360875":"aquasillius","360942":"clamspot","360945":"mustardbush","360948":"rooster","360971":"icevulture","361054":"snowwolf","361061":"whitebear","361128":"iceoak6","361152":"icebat","362006":"mustardbush","362046":"heliphatit","362059":"rooster","362131":"bluelilybush","362287":"iceoak","362313":"iceoak","362322":"icebat","362362":"iceoak","362417":"iceoak6","362487":"iceoak5","362923":"mermaid","362941":"redfish","362946":"mermaid","363171":"heliphatit","363220":"wolf","363234":"tomatobush","363260":"orc","363333":"snowrabbit","363443":"icerat","363540":"icevulture","363581":"icebat","363615":"iceoak6","364081":"redfish","364309":"rooster","364337":"wolf","364340":"aquasillius","364365":"orc","364367":"heliphatit","364376":"mustardbush","364394":"hobgoblin","364396":"hobgoblin","364405":"wolf","364429":"alkythn","364463":"wolf","364662":"icebat","364675":"iceoak","365466":"hobgoblin","365468":"wolf","365479":"tomatobush","365533":"aquasillius","365562":"mustardbush","365717":"pine","365807":"iceoak","365820":"icebat","365833":"icebat","365870":"icerat","365886":"iceoak","365913":"iceoak6","365934":"iceoak","366436":"redfish","366455":"redfish","366594":"heliphatit","366639":"mustardbush","366658":"clamspot","366660":"fisherman","366663":"redguard","366696":"hobgoblin","366741":"bluelilybush","366772":"bluelilybush","366809":"snowoak","366941":"iceoak","366990":"iceoak","367017":"iceoak","367026":"icebat","367050":"iceoak6","367601":"redfish","367761":"aquasillius","367767":"hobgoblin","367790":"rooster","367802":"tunaspot","367807":"tunaspot","367856":"aquasillius","367872":"aquasillius","367945":"snowwolf","367965":"snowrabbit","367973":"snowwolf","368060":"iceoak","368104":"villagegirl5","368208":"iceoak6","368748":"mermaid","368933":"wolf","368940":"hobgoblin","369013":"wolf","369030":"alkythn","369035":"bluelilybush","369141":"snowrabbit","369194":"iceoak","369238":"iceoak","369243":"icerat","369281":"icerat","369307":"iceoak","369348":"iceoak","369916":"greenfish","370075":"hobgoblin","370147":"aquasillius","370168":"tunaspot","370173":"clamspot","370196":"icevulture","370242":"snowrabbit","370302":"pine","370316":"snowoak","370373":"iceoak","370451":"icerat","370489":"iceoak","370547":"iceoak","370982":"mermaid","371036":"greenfish","371209":"heliphatit","371231":"heliphatit","371291":"orc","371306":"orc","371309":"rooster","371345":"alkythn","371353":"alkythn","371380":"icevulture","371440":"pine","371532":"icebat","371557":"icebat","371678":"iceoak5","372687":"iceoak","372714":"iceoak","372725":"iceoak","372841":"iceoak","373297":"yellowfish","373303":"mermaid","373313":"redfish","373318":"mermaid","373327":"redfish","373521":"mustardbush","373565":"jellyfishspot","373573":"redguard","373577":"tunaspot","373598":"wolf","373603":"hobgoblin","373619":"orc","373655":"bluelilybush","373733":"pine","373757":"snowwolf","373810":"iceoak","373824":"icebat","373882":"icebat","373910":"iceoak","373937":"icerat","374500":"yellowfish","374681":"wolf","374694":"hobgoblin","374758":"paprikabush","374775":"mustardbush","374778":"hobgoblin","374862":"snowrabbit","375022":"icerat","375126":"iceoak5","375678":"greenfish","375812":"aquasillius","375824":"tomatobush","375829":"heliphatit","375838":"paprikabush","375909":"orc","375914":"aquasillius","375918":"wolf","375990":"alkythn","376194":"iceoak","376226":"icerat","376244":"iceoak","376796":"yellowfish","377001":"heliphatit","377072":"aquasillius","377100":"wolf","377200":"snowwolf","377327":"iceoak5","377353":"iceoak","377362":"icerat","377409":"iceoak6","377420":"iceoak","377443":"iceoak","377465":"iceoak5","377919":"yellowfish","378124":"heliphatit","378192":"shrimpspot","378207":"rooster","378252":"alkythn","378265":"wolf","378282":"alkythn","378288":"bluelilybush","378324":"snowrabbit","378327":"snowoak","378334":"pine","378388":"snowoak","378420":"icebat","378472":"icebat","378521":"icebat","378534":"iceoak","378609":"iceoak6","379093":"yellowfish","379387":"hobgoblin","379509":"snowrabbit","379577":"iceoak","380216":"redfish","380237":"mermaid","380291":"mermaid","380504":"heliphatit","380516":"heliphatit","380542":"aquasillius","380559":"bluelilybush","380565":"alkythn","380581":"bluelilybush","380686":"snowwolf","380718":"iceoak","380761":"iceoak","380796":"iceoak","380838":"icerat","380891":"iceoak","380905":"iceoak6","381635":"cornbush","381665":"cuminbush","381687":"heliphatit","381799":"snowrabbit","381810":"snowoak","381895":"icebat","381900":"iceoak","381927":"iceoak","381945":"icebat","381969":"icerat","382011":"icebat","382023":"iceoak6","382773":"tunaspot","382784":"clamspot","382798":"tunaspot","382938":"snowman","382948":"snowoak","383057":"icebat","383094":"iceoak5","383131":"iceoak","383149":"iceoak","383920":"zondul","383924":"cornbush","383946":"zondul","384016":"wolf","384030":"bluelilybush","384138":"pine","384220":"icebat","384270":"iceoak","385066":"cornbush","385069":"tunaspot","385084":"zondul","385162":"bluelilybush","385193":"wolf","385201":"wolf","385286":"snowoak","385320":"iceoak","385331":"icerat","385391":"iceoak","385525":"iceoak","385974":"yellowfish","386000":"yellowfish","386008":"mermaid","386266":"tunaspot","386402":"snowrabbit","386616":"iceelfnpc","386636":"iceoak","387114":"mermaid","387363":"clamspot","387390":"cowwarrior","387396":"cowwarrior","387425":"cornbush","387434":"jellyfishspot","387484":"icevulture","387494":"wolf","387506":"wolf","387513":"bluelilybush","387542":"snowwolf","387560":"snowwolf","387592":"snowshepherdboy","387796":"iceoak6","387808":"iceoak6","387822":"iceoak5","388291":"mermaid","388295":"yellowfish","388496":"zondul","388630":"alkythn","388649":"bluelilybush","388655":"alkythn","388821":"iceoak","388826":"icebat","389437":"mermaid","389656":"zoncil","389665":"cornbush","389871":"pine","389901":"pine","389935":"iceoak","389949":"iceoak","389961":"iceoak","389990":"icepalm","390579":"mermaid","390609":"redfish","390801":"frog","390831":"zoncil","390840":"zondul","390855":"zoncil","390884":"zoncil","390894":"cornbush","390904":"clamspot","390927":"alkythn","390967":"bluelilybush","390991":"whitebear","391001":"pine","391164":"icepalm","391215":"iceoak","391236":"iceoak","391718":"yellowfish","391990":"frog","392000":"zoncil","392024":"cornbush","392027":"cornbush","392034":"slime","392052":"clamspot","392093":"alkythn","392110":"wolf","392159":"snowrabbit","392334":"icepalm","392355":"icepalm","392378":"iceoak","392922":"greenfish","393110":"cornbush","393199":"slime","393243":"wolf","393315":"snowoak","393348":"snowwolf","393376":"iceoak","393404":"icebat","393454":"clam","393461":"clam","393468":"clam","393477":"clam","393490":"clam","393494":"icepalm","394036":"redfish","394044":"mermaid","394056":"mermaid","394117":"yellowfish","394308":"frog","394334":"heliphatit","394356":"cornbush","394386":"wolf","394391":"bluelilybush","394470":"snowrabbit","394552":"iceoak","394564":"iceoak","394601":"clam","394610":"icepalm","395265":"yellowfish","395445":"cowwarrior","395450":"slime","395555":"wolf","395653":"snowoak","395689":"iceoak","395756":"icepalm","395769":"icepalm","395776":"icecrab","395800":"clam","395862":"iceoak","396561":"zondul","396686":"bluelilybush","396782":"whitebear","396850":"icebat","396875":"icevulture","396964":"clam","397027":"iceoak","397036":"iceoak","397485":"mermaid","397560":"greenfish","397746":"zoncil","397991":"icebat","398030":"iceoak","398044":"iceoak","398064":"icecrab","398077":"clam","398085":"icepalm","398094":"icepalm","398128":"flastel","398686":"greenfish","398697":"redfish","398864":"tunaspot","398915":"bluelilybush","398922":"zondul","399009":"alkythn","399063":"snowoak","399131":"iceoak","399147":"icerat","399194":"icerat","399287":"miniknight5","399302":"iceoak6","399311":"iceoak","399351":"iceoak","399796":"mermaid","399855":"greenfish","400062":"zondul","400086":"slime","400088":"zondul","400147":"alkythn","400169":"bluelilybush","400219":"whitebear","400341":"iceoak","400366":"clam","400374":"miniseadragon","400403":"icecrab","400412":"icepalm","400416":"clam","400435":"skyelf","401202":"cornbush","401229":"slime","401257":"shepherdboy","401306":"wolf","401378":"snowwolf","401455":"iceoak","401521":"icepalm","401545":"miniseadragon","402097":"mermaid","402126":"yellowfish","402145":"redfish","402326":"cornbush","402359":"zondul","402365":"slime","402398":"zoncil","402416":"slime","402419":"zoncil","402422":"clamspot","402460":"wolf","402623":"iceoak","402630":"iceoak","402635":"icerat","402667":"clam","402681":"icecrab","402729":"icepalm","402745":"flastel","402752":"flastel","403262":"greenfish","403287":"mermaid","403308":"redfish","403323":"yellowfish","403332":"redfish","403608":"wolf","403665":"pine","403795":"icerat","404435":"mermaid","404625":"zoncil","404640":"blackwizard","404644":"blackwizard","404656":"cornbush","404702":"slime","404712":"slime","404749":"alkythn","404842":"snowoak","404953":"icebat","404994":"icepalm","405026":"icepalm","405045":"miniknight4","405080":"iceoak5","405619":"greenfish","405817":"cowwarrior","405830":"zoncil","405832":"slime","405874":"cornbush","405913":"alkythn","405921":"bluelilybush","406072":"iceoak","406118":"icepalm","406160":"icepalm","406167":"clam","406194":"puhrix","406930":"tunaspot","406936":"cornbush","406992":"zondul","407124":"snowrabbit","407152":"pine","407258":"iceoak","407280":"icepalm","407284":"clam","407307":"clam","407366":"iceoak5","407399":"iceoak6","408107":"zoncil","408127":"zoncil","408175":"frog","408179":"tunaspot","408361":"icegoblin","408369":"icerat","408383":"icerat","408395":"iceoak6","408398":"icerat","408479":"clam","408529":"iceoak6","408542":"iceoak6","409235":"slime","409268":"frog","409295":"frog","409314":"zondul","409319":"cowwarrior","409323":"zondul","409330":"cornbush","409364":"bluelilybush","409410":"pine","409415":"snowrabbit","409437":"snowoak","409443":"pine","409499":"iceoak","409506":"iceoak","409543":"icebat","409594":"blackpirateskeleton","409635":"clam","409654":"miniknight1","409715":"iceoak5","410202":"greenfish","410205":"greenfish","410219":"redfish","410405":"zondul","410662":"icegoblin","410735":"icecrab","410742":"icepalm","410761":"icepalm","411588":"slime","411610":"zondul","411640":"shrimpspot","411822":"iceoak","411866":"icerat","411899":"blackpirateskeleton","411902":"blackpirateskeleton","411904":"blackpirateskeleton","411930":"icepalm","411944":"icepalm","411961":"flastel","412012":"iceoak","412473":"mermaid","412726":"zoncil","412759":"slime","412768":"frog","412783":"slime","412992":"iceoak","413011":"iceoak","413115":"skyelf","413132":"iceoak","413896":"cornbush","413903":"cornbush","413932":"cowwarrior","413937":"frog","413978":"wolf","413983":"alkythn","414174":"iceoak","414244":"bluebikinigirlnpc","414256":"puhrix","414296":"iceoak6","414343":"inibti","414994":"clamspot","415001":"cowwarrior","415004":"zondul","415025":"paprikabush","415045":"shrimpspot","415093":"cornbush","415185":"snowoak","415198":"snowrabbit","415217":"whitebear","415271":"iceoak","415284":"iceoak","415409":"pinkelf","415414":"pinkelf","415998":"mermaid","416149":"zoncil","416170":"zoncil","416178":"slime","416193":"cornbush","416210":"tunaspot","416344":"pine","416421":"icebat","416433":"icebat","416457":"iceoak","416478":"icerat","416575":"puhrix","416582":"iceoak","416642":"inibti","417094":"yellowfish","417115":"greenfish","417121":"mermaid","417337":"slime","417341":"zoncil","417346":"shrimpspot","417397":"clamspot","417434":"wolf","417466":"pine","417513":"snowrabbit","417523":"snowoak","417579":"icebat","417746":"iceoak6","418229":"greenfish","418281":"mermaid","418294":"mermaid","418306":"yellowfish","418466":"slime","418471":"slime","418528":"slime","418540":"frog","418580":"alkythn","418590":"bluelilybush","418622":"snowrabbit","418741":"icerat","418811":"octopus","418877":"skyelf","418909":"bloodwood","419388":"greenfish","419451":"greenfish","419671":"tunaspot","419672":"shrimpspot","419689":"zoncil","419821":"pine","419921":"icerat","419932":"icerat","420021":"flastel","420072":"flastel","420566":"pirateskeleton","420592":"mermaid","420799":"jellyfishspot","420835":"alkythn","420848":"zoncil","420854":"tunaspot","421053":"iceoak","421075":"iceoak5","421902":"cornbush","421979":"zondul","421982":"cowwarrior","421996":"cowwarrior","422099":"snowrabbit","422175":"iceoak","422189":"iceoak","422317":"puhrix","422394":"flastel","422880":"redfish","422889":"yellowfish","422912":"mermaid","423062":"slime","423150":"slime","423239":"snowrabbit","423367":"icevulture","423382":"icebat","423474":"miniknight2","423484":"flastel","424023":"greenfish","424028":"pirateskeleton","424239":"zoncil","424249":"zondul","424292":"frog","424499":"icerat","424501":"iceoak","424504":"icerat","424623":"skyelf","424708":"bloodwood","425177":"pirateskeleton","425220":"yellowfish","425371":"zondul","425381":"zoncil","425399":"cowwarrior","425408":"shrimpspot","425433":"shrimpspot","425434":"tunaspot","425564":"snowoak","425827":"inibti","425843":"puhrix","426309":"clam","426333":"pirateskeleton","426514":"zondul","426529":"raspberrybush","426615":"cornbush","426616":"clamspot","426829":"iceoak","426940":"skyelf","426956":"puhrix","426971":"flastel","427528":"mermaid","427666":"cowwarrior","427679":"cowwarrior","427686":"frog","427696":"cowwarrior","427706":"slime","427714":"clamspot","427740":"slime","427752":"zoncil","427757":"frog","427973":"iceoak","428087":"puhrix","428600":"clam","428607":"clam","428620":"clam","428855":"paprikabush","428864":"frog","428902":"cowwarrior","428994":"pine","429025":"whitebear","429091":"bloodwood","429136":"icerat","429145":"iceoak","429251":"flastel","429742":"redfish","429812":"clam","429821":"clam","429967":"cowwarrior","430020":"shrimpspot","430047":"zoncil","430076":"clamspot","430161":"snowman","430223":"bloodwood","430234":"miniiceknight1","430237":"miniiceknight1","430382":"flastel","430444":"bloodwood","430464":"puhrix","430983":"greenfish","431117":"cornbush","431124":"frog","431145":"cornbush","431171":"cornbush","431195":"cornbush","431220":"cowwarrior","431307":"snowoak","431382":"bloodwood","431400":"miniiceknight3","431560":"puhrix","431573":"puhrix","431591":"bloodwood","432292":"cornbush","432295":"clamspot","432316":"zoncil","432350":"cowwarrior","432382":"cornbush","432473":"pine","432555":"bloodwood","432562":"iceoak","432574":"iceoak","432594":"iceoak","432720":"inibti","433438":"zoncil","433450":"tunaspot","433454":"clamspot","433464":"cowwarrior","433473":"jellyfishspot","433499":"clamspot","433500":"shrimpspot","433520":"slime","433528":"zoncil","433685":"miniiceknight3","433692":"miniiceknight5","433911":"bloodwood","434372":"clam","434384":"clam","434583":"zondul","434593":"jellyfishspot","434624":"cornbush","434652":"tunaspot","434657":"slime","434687":"jellyfishspot","434837":"miniiceknight5","435001":"miniknight4","435037":"bloodwood","435547":"redfish","435555":"mermaid","435562":"clam","435574":"clam","435595":"redfish","435724":"cornbush","435739":"frog","435779":"shrimpspot","435818":"zondul","435993":"bloodwood","436007":"miniiceknight1","436008":"bloodwood","436043":"iceoak","436062":"bloodwood","436158":"bloodwood","436663":"clam","436881":"zondul","436935":"cornbush","436937":"jellyfishspot","436938":"clamspot","436957":"cornbush","436983":"frog","437153":"bloodwood","437251":"flastel","437372":"bloodwood","437883":"clam","437894":"mermaid","438028":"clamspot","438029":"tunaspot","438067":"slime","438098":"shrimpspot","438107":"shrimpspot","438120":"slime","438338":"bloodwood","438409":"puhrix","438452":"pinkelf","438467":"flastel","438476":"puhrix","439181":"shrimpspot","439233":"slime","439245":"zondul","439249":"cornbush","439257":"jellyfishspot","439258":"clamspot","439280":"cowwarrior","439296":"cornbush","439453":"minidragon","439473":"miniiceknight3","439479":"bloodwood","439491":"miniiceknight2","439519":"miniiceknight1","439538":"inibti","439553":"miniknight1","440405":"zondul","440422":"cowwarrior","440430":"slime","440444":"zondul","440590":"bloodwood","440596":"miniiceknight5","440662":"bloodwood","440667":"bloodwood","440714":"miniknight1","440732":"skyelf","440744":"pinkelf","440839":"puhrix","441263":"mermaid","441326":"clam","441488":"frog","441496":"slime","441511":"cornbush","441518":"cornbush","441529":"zoncil","441535":"raspberrybush","441599":"shrimpspot","441773":"bloodwood","441782":"miniiceknight3","441826":"bloodwood","441831":"bloodwood","441850":"flastel","441857":"pinkelf","441871":"inibti","441885":"puhrix","442501":"mermaid","442717":"slime","442721":"zoncil","442746":"blackwizard","442938":"miniiceknight2","442960":"bloodwood","442963":"miniiceknight2","442990":"flastel","443000":"pinkelf","443026":"pinkelf","443031":"puhrix","443056":"miniknight3","443099":"bloodwood","443137":"bloodwood","443597":"mermaid","443620":"greenfish","443637":"greenfish","443803":"zondul","443811":"zondul","443832":"frog","443845":"zoncil","443854":"cowwarrior","443862":"slime","443881":"slime","444095":"miniiceknight2","444099":"bloodwood","444104":"bloodwood","444125":"miniiceknight2","444132":"miniiceknight3","444190":"miniknight5","444195":"bloodwood","444201":"puhrix","444212":"bloodwood","444221":"flastel","444732":"greenfish","444741":"greenfish","444947":"zondul","444970":"zondul","444975":"cowwarrior","445001":"frog","445046":"blackwizard","445213":"miniiceknight1","445227":"miniiceknight3","445254":"miniiceknight4","445270":"miniiceknight5","445317":"bloodwood","445321":"miniknight1","445398":"bloodwood","445408":"bloodwood","445912":"yellowfish","445958":"redfish","446108":"slime","446126":"raspberrybush","446176":"slime","446184":"cowwarrior","446189":"zondul","446353":"miniiceknight1","446356":"bloodwood","446363":"bloodwood","446371":"bloodwood","446426":"miniiceknight2","446580":"bloodwood","447244":"zondul","447256":"cowwarrior","447269":"frog","447294":"cowwarrior","447299":"frog","447318":"cowwarrior","447505":"miniiceknight5","447549":"miniiceknight1","447564":"miniiceknight3","447601":"bloodwood","447639":"miniknight4","447657":"miniknight1","447666":"pinkelf","447674":"miniknight3","447686":"inibti","448243":"yellowfish","448401":"cornbush","448404":"slime","448459":"paprikabush","448463":"raspberrybush","448674":"minidragon","448696":"minidragon","448727":"bloodwood","448736":"bloodwood","448756":"miniknight3","448765":"miniknight1","448850":"puhrix","449382":"mermaid","449404":"yellowfish","449550":"tunaspot","449551":"shrimpspot","449578":"frog","449586":"frog","449627":"zondul","449633":"cornbush","449637":"zoncil","449841":"bloodwood","449866":"miniiceknight1","449899":"bloodwood","449912":"inibti","450718":"zoncil","450794":"jellyfishspot","450796":"cornbush","450803":"blackwizard","450809":"clamspot","450959":"bloodwood","451000":"miniiceknight3","451024":"bloodwood","451032":"miniiceknight1","451040":"miniiceknight3","451074":"flastel","451089":"puhrix","451099":"miniknight6","451136":"puhrix","451660":"greenfish","451858":"jellyfishspot","451898":"cowwarrior","451919":"cowwarrior","451923":"frog","451944":"shrimpspot","451951":"jellyfishspot","451959":"jellyfishspot","452108":"miniiceknight4","452117":"miniiceknight4","452127":"minidragon","452146":"miniiceknight1","452218":"pinkelf","452228":"miniknight4","452254":"flastel","452359":"bloodwood","453009":"jellyfishspot","453029":"cornbush","453036":"cornbush","453047":"zoncil","453067":"frog","453079":"slime","453086":"slime","453100":"clamspot","453304":"bloodwood","453318":"miniiceknight5","453386":"puhrix","453412":"flastel","453450":"puhrix","453486":"bloodwood","454163":"cornbush","454166":"zondul","454173":"cornbush","454177":"cornbush","454196":"cornbush","454212":"cowwarrior","454242":"cornbush","454410":"miniiceknight3","454412":"miniiceknight3","454426":"miniiceknight2","454483":"miniiceknight2","454495":"miniiceknight5","454551":"bloodwood","455322":"shrimpspot","455333":"clamspot","455339":"shrimpspot","455350":"clamspot","455380":"cornbush","455560":"bloodwood","455608":"miniiceknight2","455613":"miniiceknight1","455630":"miniiceknight1","455667":"flastel","455669":"miniknight6","455725":"flastel","455770":"inibti","455784":"bloodwood","455809":"flastel","456268":"yellowfish","456478":"shrimpspot","456507":"clamspot","456511":"frog","456524":"cornbush","456525":"tunaspot","456527":"tunaspot","456530":"shrimpspot","456723":"miniiceknight4","456828":"flastel","456885":"puhrix","457672":"shrimpspot","457953":"bloodwood","457983":"skyelf","458011":"miniknight4","458016":"pinkelf","458067":"flastel","458550":"redfish","458594":"redfish","458827":"clamspot","458844":"cornbush","458849":"cornbush","458865":"heliphatit","459010":"bloodwood","459022":"bloodwood","459041":"miniiceknight4","459064":"minidragon","459091":"puhrix","459094":"miniiceknight2","459130":"miniknight3","459184":"pinkelf","459202":"inibti","459764":"mermaid","459941":"zoncil","459970":"jellyfishspot","460004":"zoncil","460228":"miniiceknight1","460235":"bloodwood","460249":"bloodwood","460326":"pinkelf","460403":"inibti","461101":"zoncil","461110":"zoncil","461117":"cornbush","461121":"cornbush","461143":"zondul","461326":"miniiceknight4","461348":"minidragon","461391":"miniiceknight1","461422":"puhrix","461437":"pinkelf","461450":"miniknight3","462087":"greenfish","462233":"zoncil","462250":"raspberrybush","462274":"jellyfishspot","462302":"cornbush","462472":"miniiceknight5","462535":"miniiceknight1","462548":"miniiceknight5","462555":"miniiceknight4","462570":"bloodwood","462634":"inibti","462647":"pinkelf","462653":"puhrix","463420":"tunaspot","463424":"tunaspot","463434":"yellowbat","463438":"paprikabush","463637":"bloodwood","463667":"bloodwood","463717":"miniiceknight2","463733":"inibti","463765":"flastel","463866":"bloodwood","464370":"yellowfish","464582":"heliphatit","464796":"miniiceknight5","464834":"miniiceknight5","464862":"miniiceknight3","464910":"bloodwood","464923":"bloodwood","464931":"flastel","464945":"inibti","465934":"miniiceknight5","466016":"bloodwood","466039":"miniknight1","466054":"bloodwood","466609":"redfish","466849":"zoncil","466861":"raspberrybush","466898":"heliphatit","467076":"bloodwood","467130":"bloodwood","467199":"bloodwood","467211":"miniknight4","467214":"skyelf","467246":"miniknight4","467278":"bloodwood","467298":"flastel","467310":"flastel","467784":"yellowfish","468018":"zoncil","468240":"bloodwood","468242":"miniiceknight4","468257":"bloodwood","468286":"minidragon","468306":"bloodwood","468384":"miniknight1","468419":"bloodwood","469000":"yellowfish","469195":"heliphatit","469238":"heliphatit","469246":"mantis","469415":"bloodwood","469464":"bloodwood","469511":"miniknight3","469544":"miniknight6","470110":"greenfish","470302":"paprikabush","470312":"zoncil","470352":"yellowbat","470538":"bloodwood","470570":"miniiceknight3","470623":"miniiceknight3","470640":"bloodwood","470697":"puhrix","470715":"inibti","471447":"zoncil","471689":"miniiceknight3","471757":"miniiceknight5","471761":"minidragon","471803":"miniknight4","471810":"miniknight1","471844":"pinkelf","471854":"pinkelf","471858":"miniknight6","472604":"raspberrybush","472695":"yellowbat","472882":"bloodwood","472911":"miniiceknight4","472921":"miniiceknight3","472950":"bloodwood","473043":"puhrix","473546":"darkskeleton","473598":"soldier","473834":"heliphatit","474059":"minidragon","474068":"miniiceknight5","474086":"bloodwood","474138":"flastel","474142":"miniknight4","474200":"inibti","474679":"darkskeleton","474714":"darkskeleton","474752":"yellowfish","474947":"cuminbush","475145":"miniiceknight5","475157":"miniiceknight1","475205":"miniiceknight4","475251":"skyelf","475258":"miniknight2","475273":"inibti","476153":"heliphatit","476316":"minidragon","476355":"minidragon","476391":"miniiceknight1","476471":"bloodwood","476484":"inibti","476539":"flastel","477051":"darkskeleton","477274":"paprikabush","477297":"heliphatit","477455":"bloodwood","477510":"bloodwood","477521":"bloodwood","477572":"inibti","477585":"flastel","477617":"inibti","477677":"puhrix","478410":"aquasillius","478639":"minidragon","478677":"miniiceknight5","478704":"puhrix","478713":"miniknight2","478716":"flastel","478751":"inibti","478759":"flastel","479360":"darkskeleton","479568":"aquasillius","479759":"miniiceknight5","479777":"bloodwood","479785":"bloodwood","479821":"miniiceknight3","479881":"pinkelf","479917":"pinkelf","479952":"inibti","480762":"mantis","481838":"blackberrybush","481843":"alkythn","481870":"paprikabush","481900":"heliphatit","481904":"yellowbat","482075":"bloodwood","482080":"miniiceknight5","482140":"bloodwood","482166":"bloodwood","482177":"miniknight6","482236":"flastel","482263":"inibti","482985":"yellowbat","483012":"aquasillius","483016":"greencockroach","483038":"aquasillius","483212":"miniiceknight1","483261":"miniiceknight5","483269":"miniiceknight4","483281":"miniiceknight2","483341":"skyelf","483349":"skyelf","483365":"miniknight5","484126":"blackberrybush","484172":"yellowbat","484181":"cuminbush","484213":"heliphatit","484422":"bloodwood","484443":"miniiceknight3","484448":"miniiceknight2","484473":"skyelf","484505":"miniknight4","484546":"puhrix","484572":"inibti","485273":"alkythn","485298":"yellowbat","485530":"minidragon","485550":"bloodwood","485555":"minidragon","485562":"minidragon","485640":"miniknight2","485647":"inibti","485674":"inibti","486434":"alkythn","486484":"greencockroach","486679":"miniiceknight1","486729":"miniiceknight1","486734":"bloodwood","486755":"inibti","486813":"inibti","486820":"puhrix","486892":"inibti","486903":"flastel","487580":"yellowbat","487675":"heliphatit","487850":"miniiceknight3","487917":"flastel","487922":"inibti","487933":"flastel","487986":"bloodwood","488037":"bloodwood","488815":"heliphatit","488972":"bloodwood","489026":"miniiceknight5","489092":"inibti","489108":"puhrix","489212":"puhrix","489679":"miniseadragon","490122":"miniiceknight3","490129":"miniiceknight4","490132":"bloodwood","490354":"inibti","491052":"alkythn","491300":"miniiceknight1","491325":"miniiceknight4","491331":"bloodwood","491462":"puhrix","492017":"zombiegf","492202":"greencockroach","492213":"alkythn","492244":"cobra","492447":"miniiceknight4","492468":"miniiceknight2","492507":"bloodwood","492641":"bloodwood","493164":"darkskeleton","493385":"mantis","493620":"bloodwood","493634":"miniiceknight5","493640":"bloodwood","493737":"puhrix","494511":"yellowbat","494579":"heliphatit","494738":"miniiceknight5","494763":"miniiceknight5","494775":"miniiceknight2","494782":"inibti","494800":"bloodwood","495647":"alkythn","495705":"heliphatit","495742":"heliphatit","495748":"heliphatit","495880":"bloodwood","495885":"miniiceknight3","495971":"puhrix","495989":"flastel","496031":"puhrix","496089":"bloodwood","496807":"cobra","496813":"paprikabush","496837":"heliphatit","496841":"cuminbush","496846":"aquasillius","496851":"cuminbush","497065":"miniiceknight4","497129":"bloodwood","497159":"bloodwood","497214":"inibti","497955":"blackberrybush","498197":"bloodwood","498207":"bloodwood","498213":"bloodwood","498223":"miniiceknight2","498227":"miniiceknight1","498238":"miniiceknight4","498416":"bloodwood","499183":"paprikabush","499347":"miniiceknight2","499353":"miniiceknight1","499396":"bloodwood","499457":"puhrix","499588":"puhrix","499597":"inibti","500623":"flastel","500630":"inibti","500649":"inibti","500655":"puhrix","500715":"bloodwood","501648":"miniiceknight1","501664":"miniiceknight5","501676":"bloodwood","501837":"inibti","501855":"bloodwood","502559":"yellowbat","502577":"alkythn","502646":"heliphatit","502827":"miniiceknight4","502843":"bloodwood","503037":"flastel","503567":"darkskeleton","503725":"blackberrybush","503962":"bloodwood","503986":"miniiceknight2","504046":"puhrix","504091":"puhrix","504646":"darkskeleton","504664":"zombie","504696":"darkskeleton","504962":"heliphatit","505183":"bloodwood","505272":"inibti","505337":"bloodwood","506022":"alkythn","506082":"alkythn","506260":"bloodwood","506328":"bloodwood","506458":"bloodwood","507162":"alkythn","507226":"alkythn","507260":"alkythn","507469":"flastel","507588":"flastel","507659":"bloodwood","508577":"bloodwood","508582":"bloodwood","508666":"flastel","508801":"inibti","509234":"darkskeleton","509517":"alkythn","509544":"alkythn","509560":"paprikabush","510470":"darkskeleton","511060":"bloodwood","511552":"zombie","511814":"alkythn","511854":"alkythn","511860":"alkythn","512012":"bloodwood","512026":"bloodwood","512107":"puhrix","512118":"inibti","512746":"darkskeleton","512980":"alkythn","512998":"mantis","513009":"yellowbat","513195":"bloodwood","513254":"bloodwood","513402":"bloodwood","514113":"yellowbat","514128":"yellowbat","514173":"blackberrybush","514544":"bloodwood","515298":"alkythn","515476":"bloodwood","515545":"bloodwood","515551":"bloodwood","515658":"inibti","516386":"alkythn","516473":"alkythn","517364":"zombie","517372":"darkskeleton","517544":"alkythn","517553":"alkythn","517798":"bloodwood","517910":"bloodwood","518542":"darkskeleton","518727":"greencockroach","518731":"alkythn","518760":"alkythn","518785":"alkythn","518793":"blackberrybush","518961":"bloodwood","519050":"bloodwood","519081":"bloodwood","519128":"bloodwood","519178":"flastel","519837":"alkythn","519849":"greencockroach","519927":"mantis","520189":"puhrix","520289":"bloodwood","520320":"inibti","520768":"darkskeleton","520785":"darkskeleton","520839":"zombie","521015":"alkythn","521038":"raspberrybush","521048":"alkythn","521075":"alkythn","521088":"yellowbat","521247":"bloodwood","521284":"flastel","521462":"bloodwood","521905":"zombie","521952":"darkskeleton","522381":"bloodwood","522441":"inibti","522543":"bloodwood","523082":"darkskeleton","523301":"raspberrybush","523308":"alkythn","523313":"paprikabush","523331":"alkythn","523401":"cuminbush","523639":"inibti","523663":"bloodwood","524269":"darkskeleton","524278":"darkskeleton","524454":"cobra","524499":"greencockroach","524514":"alkythn","524525":"alkythn","524538":"alkythn","524750":"puhrix","524824":"bloodwood","524856":"bloodwood","525661":"paprikabush","525844":"bloodwood","525862":"bloodwood","525935":"puhrix","526022":"bloodwood","526060":"bloodwood","526518":"zombie","526823":"yellowbat","527064":"bloodwood","527081":"bloodwood","527166":"bloodwood","527662":"darkskeleton","527691":"zombie","527928":"greencockroach","527948":"yellowbat","527984":"yellowbat","527987":"cuminbush","528004":"alkythn","528180":"inibti","528252":"bloodwood","528291":"bloodwood","528349":"bloodwood","528831":"darkskeleton","529055":"alkythn","529096":"alkythn","529103":"alkythn","529111":"alkythn","529153":"mantis","529548":"flastel","530217":"alkythn","530226":"alkythn","530280":"alkythn","530607":"bloodwood","531597":"bloodwood","531646":"puhrix","531827":"bloodwood","532346":"darkskeleton","532575":"alkythn","532581":"blackberrybush","532590":"alkythn","532598":"alkythn","532833":"bloodwood","532854":"flastel","532963":"bloodwood","532999":"flastel","533711":"raspberrybush","533717":"mantis","533757":"alkythn","533929":"flastel","534084":"bloodwood","534906":"paprikabush","535116":"inibti","535191":"bloodwood","535275":"flastel","535761":"darkskeleton","535772":"darkskeleton","535971":"alkythn","535979":"greencockroach","536212":"bloodwood","536240":"puhrix","536275":"inibti","536299":"bloodwood","536383":"bloodwood","536402":"puhrix","536447":"flastel","536881":"darkskeleton","536933":"zombie","536944":"darkskeleton","537132":"alkythn","537144":"alkythn","538047":"darkskeleton","538309":"alkythn","538315":"alkythn","538322":"alkythn","538330":"alkythn","538346":"alkythn","538527":"bloodwood","538632":"bloodwood","538678":"bloodwood","539260":"zombie","539270":"darkskeleton","539443":"alkythn","539478":"yellowbat","539507":"mantis","539661":"bloodwood","539718":"bloodwood","539772":"bloodwood","539794":"bloodwood","539817":"bloodwood","539853":"inibti","539914":"flastel","540361":"darkskeleton","540591":"raspberrybush","540664":"alkythn","541000":"bloodwood","541478":"darkskeleton","541581":"darkskeleton","541742":"cobra","541758":"alkythn","541785":"paprikabush","541792":"alkythn","541799":"mantis","541824":"alkythn","541830":"paprikabush","542184":"inibti","542879":"alkythn","542883":"cuminbush","542927":"greencockroach","542973":"yellowbat","543221":"flastel","543244":"inibti","543796":"zombie","543801":"darkskeleton","543844":"darkskeleton","544114":"alkythn","544359":"bloodwood","544444":"flastel","544503":"flastel","545221":"blackberrybush","545433":"bloodwood","545476":"bloodwood","545564":"flastel","546128":"darkskeleton","546346":"alkythn","546376":"alkythn","546407":"alkythn","546577":"bloodwood","546657":"bloodwood","546777":"bloodwood","546787":"flastel","546814":"flastel","547522":"greencockroach","547538":"alkythn","547565":"alkythn","547570":"cuminbush","547579":"blackberrybush","547856":"flastel","547882":"puhrix","547912":"flastel","548461":"zombie","548479":"darkskeleton","548715":"yellowbat","548945":"bloodwood","548953":"bloodwood","548988":"inibti","549568":"darkskeleton","549838":"yellowbat","549878":"alkythn","550129":"flastel","550178":"puhrix","550938":"alkythn","550999":"alkythn","551041":"alkythn","551229":"bloodwood","551353":"bloodwood","551406":"inibti","551850":"zombie","551885":"zombie","551894":"darkskeleton","551906":"darkskeleton","552102":"alkythn","552119":"alkythn","552127":"alkythn","552162":"alkythn","552187":"mantis","552332":"bloodwood","552396":"bloodwood","552453":"puhrix","553244":"cobra","553489":"inibti","553591":"bloodwood","553612":"puhrix","553625":"flastel","554231":"darkskeleton","554392":"blackberrybush","554410":"cobra","554413":"alkythn","554425":"paprikabush","554673":"bloodwood","554680":"bloodwood","554718":"puhrix","555555":"greencockroach","555591":"alkythn","555599":"alkythn","555624":"blackberrybush","555647":"blackberrybush","555804":"bloodwood","555877":"bloodwood","556735":"yellowbat","556783":"alkythn","556788":"paprikabush","556951":"bloodwood","557041":"bloodwood","557700":"zombie","557857":"yellowbat","557872":"paprikabush","558781":"zombie","559023":"yellowbat","559036":"cuminbush","559048":"cuminbush","559298":"bloodwood","559941":"darkskeleton","560155":"alkythn","560166":"alkythn","560420":"bloodwood","560429":"bloodwood","561312":"blackberrybush","562498":"alkythn","562715":"puhrix","563457":"darkskeleton","563622":"redbikinigirlnpc","563858":"bloodwood","564565":"darkskeleton","564779":"alkythn","565042":"bloodwood","565053":"bloodwood","565691":"darkskeleton","568480":"bloodwood","571951":"bloodwood","571960":"bloodwood","609440":"crab","610591":"crab","611746":"crab","612900":"crab","614050":"crab","615200":"crab","616354":"crab","617505":"crab","617507":"crab","618655":"crab","623260":"guard","623266":"rat","623268":"rat","624416":"rat","625571":"rat","626718":"rat","626722":"rat","627864":"rat","627873":"rat","629018":"rat","634298":"doctor","644101":"coder","669039":"miniiceknight","670010":"redstoremannpc","670017":"elfnpc","671335":"icewizard","673643":"crystalscorpion","673647":"icewizard","674815":"miniiceknight","678016":"citrinerock","678018":"ironrock","678019":"lapislazulirock","678253":"snowman2","678257":"crystalscorpion","678275":"miniiceknight","679165":"lapislazulirock","679402":"icewizard","680320":"emeraldrock","680326":"ironrock","680327":"taaffeiterock","680571":"crystalscorpion","680599":"oldlady2","681480":"citrinerock","681685":"miniiceknight","681735":"crystalscorpion","681739":"crystalscorpion","682632":"taaffeiterock","682852":"icewizard","684921":"topazrock","684935":"peridotrock","685157":"snowman2","685174":"miniiceknight","686070":"topazrock","686082":"emeraldrock","686178":"santaelf","686183":"santaelf","687221":"topazrock","687227":"amethystrock","687236":"ironrock","687379":"guardmace","687389":"guardmace","687395":"guardsword","687435":"crystalscorpion","687438":"icewizard","688373":"peridotrock","688477":"santaelf","688484":"santaelf","688493":"santaelfnpc","688525":"guardmace","688534":"guard2","688536":"guardsword","688539":"royalguard","688657":"crystalscorpion","689526":"rubyrock","689539":"ironrock","689765":"crystalscorpion","689779":"icewizard","689796":"crystalscorpion","690791":"santaelf","690833":"guardsword","690838":"guard2","690843":"royalguard","690848":"guardsword","690853":"guardmace","690897":"miniiceknight","690901":"icewizard","690944":"miniiceknight","691936":"santaelf","691979":"guardmace","691993":"guardmace","692412":"guard","693083":"santaelf","693230":"miniiceknight","693268":"miniiceknight","694139":"citrinerock","694140":"lapislazulirock","694252":"santaelf","696554":"santaelf","697807":"crystalscorpion","697857":"crystalscorpion","698974":"icewizard","699972":"redstoremannpc","701118":"iamverycoldnpc","701293":"miniiceknight","702413":"icewizard","702438":"miniiceknight","702452":"snowman2","702768":"","702770":"","703618":"crystalscorpion","703635":"crystalscorpion","703919":"","703924":"","704794":"miniiceknight","705072":"","706226":"","706227":"","707061":"miniiceknight","707071":"miniiceknight","707085":"icewizard","709403":"icewizard","710485":"crystalscorpion","710486":"crystalscorpion","711650":"icewizard","712771":"icewizard","716292":"crystalscorpion","717210":"redstoremannpc","717404":"icewizard","719720":"snowman2","719735":"crystalscorpion","720871":"crystalscorpion","721993":"miniiceknight","722013":"icewizard","722067":"icewizard","722965":"coalrock","724106":"coalrock","724111":"coalrock","724113":"coalrock","724115":"tinrock","724122":"tinrock","724297":"icewizard","725259":"coalrock","725260":"tinrock","725261":"coalrock","725262":"tinrock","725271":"bat","725273":"tinrock","725472":"miniiceknight","725473":"crystalscorpion","726657":"miniiceknight","727568":"rat","727576":"tinrock","727747":"icewizard","727764":"icewizard","727795":"crystalscorpion","727826":"icewizard","728716":"bat","728728":"coalrock","729864":"coalrock","729879":"coalrock","731013":"copperrock","731014":"coalrock","731021":"opalrock","731069":"adherer","731280":"icewizard","732164":"copperrock","732177":"opalrock","732180":"bat","732314":"adherer","732406":"crystalscorpion","732418":"crystalscorpion","733316":"copperrock","733378":"golem","733431":"spectre","733539":"icewizard","734474":"rat","734477":"opalrock","734567":"spectre","734680":"icewizard","734738":"crystalscorpion","735771":"adherer","735869":"icewizard","736772":"rat","736786":"rat","736792":"goldrock","736877":"eye","736884":"spectre","737930":"topazrock","737939":"coalrock","737945":"goldrock","738041":"eye","738160":"icewizard","738184":"icewizard","739090":"coalrock","739271":"snowman2","740230":"coalrock","740235":"copperrock","740249":"coalrock","740325":"eye","740378":"adherer","741375":"copperrock","741381":"berylrock","741397":"copperrock","741441":"deathknight","741573":"crystalscorpion","741577":"icewizard","741581":"crystalscorpion","742526":"topazrock","742532":"copperrock","742539":"copperrock","742545":"nisocrock","742548":"tinrock","742554":"coalrock","742780":"crystalscorpion","743678":"tinrock","743684":"topazrock","743692":"copperrock","743694":"cinnabarrock","743696":"nisocrock","743700":"tinrock","743707":"coalrock","743833":"ironogre","743914":"icewizard","744830":"topazrock","744833":"bat","744837":"coalrock","744855":"rat","744860":"coalrock","745075":"miniiceknight","745596":"hermitcrab","745983":"copperrock","745991":"coalrock","746045":"deathknight","746138":"ironogre","746144":"ironogre","746202":"icewizard","746260":"icewizard","747144":"coalrock","747145":"berylrock","747154":"tinrock","747164":"copperrock","747340":"snowman2","747367":"snowman2","747918":"crab","748300":"coalrock","748304":"coalrock","748305":"tinrock","749051":"crab","749461":"taaffeiterock","749469":"copperrock","749713":"icewizard","750540":"soldierant","750622":"copperrock","751747":"berylrock","751754":"rat","751765":"taaffeiterock","751973":"crystalscorpion","752509":"hermitcrab","752526":"hermitcrab","752899":"berylrock","753099":"icewizard","753166":"miniiceknight","753171":"crystalscorpion","753681":"crab","754063":"goldrock","755210":"topazrock","755225":"berylrock","755423":"icewizard","755480":"miniiceknight","756268":"ant","756281":"ant","756360":"rubyrock","756375":"berylrock","756376":"berylrock","756415":"golem","756606":"icewizard","757379":"ant","757400":"ant","757445":"ant","759879":"deathknight","760069":"crystalscorpion","760087":"icewizard","760577":"crab","760911":"ant","761024":"deathknight","761177":"icewizard","761203":"icewizard","762027":"soldierant","762351":"snowman2","763471":"crystalscorpion","763478":"snowman2","763500":"crystalscorpion","763526":"miniiceknight","764015":"crab","764290":"ant","765096":"rat","765785":"crystalscorpion","765800":"icewizard","765809":"miniiceknight","765849":"icewizard","765935":"miner2","766239":"rat","766252":"rat","766340":"hermitcrab","766343":"crab","766433":"blacksmith2","766606":"soldierant","766648":"ant","766681":"ant","766957":"crystalscorpion","767465":"crab","767470":"crab","767768":"ant","767777":"ant","767995":"scientist","768084":"icewizard","768106":"snowman2","768549":"rat","768560":"rat","768666":"hermitcrab","768962":"ant","769223":"snowman2","769231":"miniiceknight","769303":"miniiceknight","770127":"ant","770379":"crystalscorpion","770419":"icewizard","770843":"rat","770857":"rat","770922":"crab","770926":"crab","771562":"crystalscorpion","771565":"snowman2","772400":"ant","772427":"soldierant","772749":"miniiceknight","772949":"bat","773155":"rat","773509":"ant","773556":"ant","774296":"rat","775536":"crab","775832":"ant","776168":"crystalscorpion","776406":"slime","776415":"bat","776691":"crab","776705":"crab","777041":"ant","777860":"crab","778146":"ant","778203":"ant","778210":"soldierant","778916":"rat","778931":"rat","779870":"slime","780181":"hermitcrab","781018":"orc","781402":"redstoremannpc","781410":"greenstoremannpc","781717":"blackwizard","781725":"blackwizard","782729":"ant","782773":"ant","782787":"soldierant","782885":"blackwizard","783310":"orc","783501":"rat","783511":"rat","783620":"hermitcrab","783632":"crab","783870":"ant","783912":"ant","784450":"orc","784470":"slime","784656":"rat","784692":"rat","784754":"hermitcrab","785012":"soldierant","785600":"slime","785819":"rat","785842":"rat","786320":"blackwizard","787047":"hermitcrab","787498":"redguard","787942":"bat","788113":"rat","788504":"ant","789056":"orc","789065":"slime","789078":"bat","789367":"hobgoblin","789686":"ant","790526":"hobgoblin","790922":"blackwizard","791344":"slime","791349":"slime","791355":"slime","791390":"slime","791602":"rat","791936":"ant","793077":"ant","793121":"ant","793219":"adherer","794023":"skeleton2","794328":"soldierant","794339":"ant","794825":"slime","794835":"smalldevil","795470":"ant","796001":"smalldevil","796211":"rat","796251":"skeleton","796324":"skeleton2","797140":"slime","797713":"ant","797838":"blackwizard","798256":"slime","798272":"slime","798558":"skeleton","798572":"skeleton","798888":"soldierant","799022":"redguard","799434":"slime","799454":"slime","799767":"crab","800010":"ant","800052":"ant","800062":"ant","800812":"rat","800867":"skeleton","801280":"ironogre","801315":"blackwizard","801970":"rat","802047":"hobgoblin","802067":"hermitcrab","802087":"skeleton","802903":"smalldevil","803111":"rat","803180":"skeleton","804322":"skeleton","804328":"skeleton","804609":"soldierant","804745":"ironogre","804766":"golem","804777":"redguard","805183":"ratnpc","805192":"slime","805204":"smalldevil","805522":"hermitcrab","806344":"slime","806352":"smalldevil","806571":"rat","806647":"skeleton2","806670":"crab","806690":"skeleton","806944":"ant","806987":"ant","807479":"slime","807517":"smalldevil","807534":"smalldevil","808197":"adherer","808249":"redguard","808458":"blackpirateskeleton","808678":"smalldevil","808878":"rat","808962":"hermitcrab","809315":"ant","809366":"golem","809603":"redfish","809775":"slime","810120":"hermitcrab","810744":"pirateskeleton","810757":"pirateskeleton","810792":"pirateskeleton","810807":"blackpirateskeleton","810921":"slime","810931":"slime","811252":"skeleton2","811511":"ant","811572":"ant","811609":"soldierant","811708":"redguard","811996":"bluepreta","812113":"skeleton","812714":"ant","813068":"pirateskeleton","813847":"ant","814203":"greenfish","815359":"greenpirateskeleton","815370":"greenfish","815400":"yellowfish","815537":"slime","815545":"slime","815558":"skeleton","815581":"slime","815902":"skeleton","816278":"golem","816305":"vampire","816747":"slime","816907":"wizard","817010":"skeleton2","817704":"redpirateskeleton","817708":"pirateskeleton","817713":"redpirateskeleton","817886":"slime","819369":"yellowmouse","819662":"ant","820134":"slime","820185":"slime","820195":"slime","820472":"skeleton2","820729":"soldierant","820741":"ant","820896":"golem","821114":"pirateskeleton","821119":"yellowfish","821328":"skeleton","821362":"slime","821369":"slime","821657":"skeleton","821679":"yellowmouse","822038":"golem","822066":"golem","822075":"golem","822322":"redpirateskeleton","822335":"pirateskeleton","822451":"slime","822794":"wizard","823046":"soldierant","824192":"ant","824251":"ant","824337":"golem","824618":"pirateskeleton","824771":"slime","824961":"wizard","825354":"ant","825363":"ant","825379":"ant","825387":"ant","825728":"pirateskeleton","825794":"blackpirateskeleton","826107":"wizard","826244":"skeleton","826278":"yellowmouse","826565":"ant","826658":"oldogre","826942":"redpirateskeleton","827122":"king2","828086":"pirateskeleton","828262":"slime","828559":"wizard","828572":"yellowmouse","828862":"ant","828990":"golem","829688":"skeleton2","830126":"golem","830541":"slime","830760":"crab","831203":"ant","831244":"golem","831255":"oldogre","832346":"soldierant","833061":"crab","833186":"yellowmouse","833340":"babyspider","833844":"redpirateskeleton","834321":"wizard","834410":"brownmouse","834719":"golem","835324":"wizard","835436":"skeleton2","835632":"hellspider","835727":"soldierant","835773":"soldierant","835881":"golem","836158":"pirateskeleton","836612":"skeleton","836710":"brownmouse","836789":"firespider","836899":"soldierant","836943":"ant","837011":"golem","837633":"wizard","837697":"crab","837744":"skeleton2","837954":"spider","838207":"oldogre","839349":"oldogre","839524":"blackwizard","839615":"blackpirateskeleton","839975":"crab","840008":"hermitcrab","840101":"redguard","840229":"spider","840255":"poisonspider","840356":"ant","841123":"crab","841316":"brownmouse","841323":"brownmouse","841389":"poisonspider","841646":"oldogre","841818":"blackwizard","841827":"earthworm","842625":"soldierant","842639":"ant","842710":"ant","842975":"earthworm","843433":"crab","843455":"crab","844119":"earthworm","844593":"crab","845824":"skeleton","845926":"brownmouse","845986":"spider","845989":"babyspider","846025":"hellspider","846433":"earthworm","846907":"crab","847403":"oldogre","848037":"crab","848123":"skeleton","848305":"hellspider","849493":"babyspider","849887":"earthworm","850356":"crab","850431":"skeleton","850624":"firespider","850651":"blazespider","851028":"blackwizard","851512":"crab","851691":"wizard","852867":"ironogre","853325":"earthworm","853341":"blackwizard","854092":"poisonspider","854498":"earthworm","855250":"firespider","855634":"earthworm","856313":"golem","856366":"poisonspider","856376":"poisonspider","857446":"wizard","857515":"spider","858607":"redguard","859578":"crab","859841":"babyspider","859845":"spider","860906":"wizard","860923":"golem","862121":"babyspider","862163":"spider","863217":"redguard","863323":"hellspider","863727":"poisonspider","864357":"wizard","864444":"hellspider","864926":"piratecaptain","866732":"spider","868321":"babyspider","868966":"smalldevil","869073":"hellspider","870197":"poisonspider","870612":"redcockroach","871346":"hellspider","871373":"poisonspider","873040":"santa","873578":"skeleton","873660":"babyspider","873681":"blazespider","874818":"hellspider","874846":"babyspider","875877":"smalldevil","875977":"firespider","877145":"poisonspider","877279":"ant","877537":"redcockroach","877555":"poisonspider","878342":"ant","878694":"redcockroach","879342":"smalldevil","879581":"ant","879776":"slime","880683":"ant","880990":"redcockroach","881795":"ant","881877":"ant","882031":"darkogre","882938":"ant","883947":"skeleton","884145":"ant","884369":"snowwolf","885537":"whitemouse","885789":"hellhound","886256":"skeleton","886495":"soldierant","886627":"darkogre","886636":"darkogre","886649":"livingarmor","888965":"infectedguard","889699":"skeleton","889895":"ant","889940":"ant","890224":"goldgolem","891256":"livingarmor","891300":"smalldevil","892011":"skeleton","892249":"ant","892515":"rat","893155":"skeleton","893548":"oldogre","893599":"livingarmor","893651":"whitemouse","893655":"whitemouse","894770":"slime","894774":"whitemouse","894809":"whitemouse","895715":"ant","895865":"livingarmor","895916":"whitemouse","897039":"infectedguard","897051":"whitemouse","897072":"infectedguard","897123":"rat","897126":"rat","897368":"darkwolf","898155":"oldogre","898504":"minidragon","898759":"rat","899109":"ant","899327":"livingarmor","899331":"infectedguard","899481":"santaelf","899682":"darkskeleton","899833":"skeletonking","900310":"soldierant","900464":"oldogre","900468":"livingarmor","900815":"darkskeleton","900831":"darkwolf","901414":"soldierant","901660":"slime","901959":"darkwolf","902150":"spectre","902797":"infectedguard","902949":"santaelf","902953":"santaelf","903116":"minidragon","903770":"ant","904288":"darkwolf","904459":"spectre","904470":"spectre","905119":"whitemouse","905237":"santaelf","906224":"oldogre","906335":"smalldevil","906339":"smalldevil","906439":"earthworm","906445":"bluepreta","906449":"earthworm","906573":"darkwolf","907375":"oldogre","907494":"smalldevil","907563":"santaelf","908641":"smalldevil","909046":"wizard","909380":"oak","910036":"minidragon","911006":"santaelf","911013":"santaelf","911199":"minidragon","911982":"infectedguard","912152":"santaelf","913360":"earthworm","913661":"wizard","914346":"slime","914475":"santaelf","915152":"oak","915791":"minidragon","916633":"whitemouse","916818":"bluepreta","917910":"santaelf","917981":"darkogre","918398":"yellowfish","918408":"greenfish","918952":"whitemouse","918959":"whitemouse","919232":"darkscorpion","919736":"oak","920066":"slime","920293":"darkogre","920380":"darkwolf","920391":"darkwolf","920415":"minidragon","920719":"livingarmor","920733":"greenfish","920904":"minidragon","921205":"infectedguard","921362":"santaelf","921379":"santaelf","921430":"darkogre","921881":"infectedguard","921895":"greenfish","922049":"minidragon","922705":"minidragon","923512":"livingarmor","923844":"darkscorpion","924367":"minidragon","924657":"smalldevil","924685":"whitemouse","924706":"whitemouse","925967":"santaelf","926196":"smalldevil","926647":"minidragon","926655":"minidragon","926999":"slime","927003":"infectedguard","927632":"infectedguard","927830":"minidragon","928093":"smalldevil","928107":"smalldevil","928340":"darkogre","928451":"darkwolf","928458":"minidragon","928498":"darkskeleton","929264":"slime","929413":"icegolem","930145":"oak","930425":"smalldevil","930803":"darkskeleton","931170":"ogre","931412":"ant","931545":"slime","931714":"icegolem","931793":"earthworm","931932":"darkskeleton","932256":"livingarmor","932341":"ogre","932709":"smalldevil","933090":"darkskeleton","933464":"ogre","933555":"minidragon","933587":"minidragon","933635":"ant","933708":"ant","934248":"darkskeleton","934255":"darkskeleton","934696":"oak","934819":"ant","935062":"whitemouse","935168":"icegolem","935253":"earthworm","935266":"earthworm","935332":"darkskeleton","935351":"darkscorpion","935363":"darkscorpion","935391":"darkskeleton","935417":"darkskeleton","935730":"greenfish","936018":"ant","936345":"icevulture","936494":"darkskeleton","936572":"smalldevil","936852":"greenfish","937341":"smalldevil","937384":"iceknight","937504":"icerat","937701":"darkskeleton","938262":"ant","939738":"picklemob","939812":"icevulture","940411":"ogre","940419":"ogre","940514":"oak","940822":"slime","940932":"icegolem","940940":"icegolem","940958":"miniiceknight4","941118":"darkwolf","941657":"minidragon","942105":"icerat","942605":"livingarmor","942870":"ant","942925":"soldierant","942929":"soldierant","943314":"blazespider","943775":"infectedguard","943847":"ogre","943913":"oak","943925":"minidragon","944033":"ant","944618":"darkscorpion","944634":"darkscorpion","944923":"clam","944938":"infectedguard","945028":"ogre","945739":"blackwizard","945743":"blackwizard","945776":"darkscorpion","946772":"earthworm","946862":"darkskeleton","946892":"blackwizard","947287":"ogre","947321":"ogre","947462":"ant","947846":"icegolem","947927":"blazespider","948551":"forestdragon","949235":"darkscorpion","949731":"oak","950185":"icerat","950354":"darkscorpion","950370":"darkscorpion","951844":"greenfish","952026":"minidragon","952632":"darkskeleton","952638":"darkscorpion","953629":"icevulture","954759":"icerat","955437":"oak","955444":"minidragon","955946":"miniiceknight5","956069":"darkwolf","956517":"ogre","957579":"darkskeleton","957590":"darkskeleton","958376":"darkwolf","958809":"ogre","958838":"ogre","959371":"icerat","959535":"blackwizard","959607":"darkwolf","960088":"minidragon","960549":"miniiceknight1","960675":"blackwizard","960704":"rick","961061":"clam","961133":"ogre","961842":"darkskeleton","961877":"darkwolf","962833":"icerat","962858":"icerat","963000":"darkwolf","963351":"redfish","963515":"minidragon","963552":"oak","964157":"darkskeleton","964675":"minidragon","965305":"darkskeleton","965560":"rat","965747":"ogre","966039":"blackwizard","966052":"skeleton","966067":"picklenpc","966506":"darkwolf","967001":"oak","967952":"darkskeleton","968031":"ogre","968114":"oak","968346":"skeleton","968352":"livingarmor","968581":"icerat","968999":"ogre","969013":"bat","969116":"livingarmor","969299":"minidragon","969975":"darkwolf","970666":"skeleton","971055":"darkskeleton","971596":"minidragon","972237":"darkwolf","972252":"darkwolf","972268":"darkwolf","972590":"darkskeleton","972879":"queenant","973622":"rat","973734":"infectedguard","974508":"darkskeleton","975038":"oak","975508":"icerat","975646":"darkskeleton","976840":"darkwolf","977354":"oak","977803":"icerat","977974":"darkskeleton","978210":"goblin","978215":"bat","979114":"darkskeleton","979129":"darkwolf","979141":"darkskeleton","979492":"darkskeleton","980257":"darkskeleton","980287":"darkskeleton","980514":"rat","980526":"rat","980529":"bat","980662":"darkskeleton","980819":"oak","981028":"mermaid","983924":"skeleton2","983934":"skeleton2","984893":"darkwolf","987028":"icerat","987369":"skeleton2","987373":"skeleton2","989669":"skeleton2","996887":"madscientist","999152":"rat","1001461":"rat","1002606":"rat","1016184":"redstoremannpc","1018652":"king","1022106":"royalguard2","1022110":"royalguard3","1024492":"redstoremannpc","1024520":"purplestoremannpc","1024527":"bluestoremannpc","1025611":"coder","1027948":"vendingmachine","1031322":"redstoremannpc","1031326":"redstoremannpc","1053040":"prisoner","1061273":"guildnpc","1063716":"palm","1063729":"cactus","1064727":"guard2","1064731":"guard2","1064772":"picklenpc","1064871":"crab","1064903":"rickgf","1066019":"crab","1066051":"zondul","1069515":"zondul"}} \ No newline at end of file diff --git a/packages/server/data/minigames.json b/packages/server/data/minigames.json index 7a73a41bfd..0967ef424b 100644 --- a/packages/server/data/minigames.json +++ b/packages/server/data/minigames.json @@ -1,2 +1 @@ -{ -} \ No newline at end of file +{} diff --git a/packages/server/data/mobs.json b/packages/server/data/mobs.json index 9bef2e4799..573abc8057 100644 --- a/packages/server/data/mobs.json +++ b/packages/server/data/mobs.json @@ -1,5198 +1,5202 @@ { - "rat": { - "name": "Rat", - "description": "Ah yes, this rat is made out of rat.", - "hitPoints": 34, - "defenseLevel": 1, - "attackLevel": 1, - "level": 1, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 1400, - "movementSpeed": 450, - "respawnDelay": 10000, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 1, - "magic": 1 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 + "rat": { + "name": "Rat", + "description": "Ah yes, this rat is made out of rat.", + "drops": [ + { + "key": "petrat", + "chance": 5 + } + ], + "dropTables": ["ordinary"], + "hitPoints": 20, + "level": 1, + "aggroRange": 1, + "attackRate": 1400, + "movementSpeed": 450, + "respawnDelay": 10000, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -3, + "slash": -5, + "stab": -4, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + }, + "skills": { + "accuracy": 2, + "strength": 1, + "defense": 0, + "archery": 0, + "magic": 0 + } + }, + + "bat": { + "name": "Batterfly", + "description": "A bat that is also a butterfly, what a strange creature.", + "dropTables": ["ordinary"], + "hitPoints": 65, + "level": 4, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 420, + "respawnDelay": 20000, + "attackStats": { + "crush": 3, + "slash": 3, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 1, + "strength": 1, + "archery": 0, + "magic": 0 + } + }, + + "crab": { + "name": "Crab", + "description": "I wonder if I can eat this.", + "dropTables": ["ordinary"], + "hitPoints": 15, + "level": 1, + "aggroRange": 1, + "attackRate": 1200, + "movementSpeed": 500, + "respawnDelay": 20000, + "attackStats": { + "crush": 2, + "slash": 1, + "stab": 2, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "wizard": { + "name": "Wizard", + "description": "Why does every MMORPG have one of these things?", + "drops": [ + { + "key": "wizardhatblack", + "chance": 10000 + }, + { + "key": "wizardhatblue", + "chance": 10000 + }, + { + "key": "wizardhatcrimson", + "chance": 10000 + }, + { + "key": "wizardhatdarkblue", + "chance": 10000 + }, + { + "key": "wizardhatgreen", + "chance": 10000 + }, + { + "key": "wizardhatpink", + "chance": 10000 + }, + { + "key": "wizardhatpurple", + "chance": 10000 + }, + { + "key": "wizardhatred", + "chance": 10000 + }, + { + "key": "wizardhatturquoise", + "chance": 10000 + }, + { + "key": "wizardhatwhite", + "chance": 10000 + }, + { + "key": "wizardhatyellow", + "chance": 10000 + } + ], + "dropTables": ["ordinary", "unusual"], + "hitPoints": 130, + "level": 11, + "aggroRange": 3, + "attackRange": 4, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 350, + "projectileName": "fireball", + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 16 + }, + "defenseStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 2, + "magic": 4 + }, + "bonuses": { + "accuracy": 2, + "strength": 0, + "archery": 0, + "magic": 3 + } + }, + + "goblin": { + "name": "Goblin", + "description": "Didn't I see this same style of goblin in RuneScape?", + "drops": [ + { + "key": "tinsword", + "chance": 10000 + }, + { + "key": "copperhelmet", + "chance": 10000 + }, + { + "key": "tinchestplate", + "chance": 10000 + } + ], + "dropTables": ["ordinary", "arrows", "unusual", "vegetables", "fruits", "mushrooms"], + "hitPoints": 90, + "level": 7, + "aggroRange": 1, + "attackRate": 1400, + "movementSpeed": 300, + "respawnDelay": 55000, + "attackStats": { + "crush": 2, + "slash": 4, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 4, + "stab": 4, + "archery": 1, + "magic": 1 + }, + "bonuses": { + "accuracy": 3, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "skeleton": { + "name": "Spooky Skeleton", + "description": "I wonder if this skeleton is made out of bones.", + "drops": [ + { + "key": "bronzespear", + "chance": 10000 + }, + { + "key": "bronzesword", + "chance": 10000 + }, + { + "key": "skeletonkingtalisman", + "chance": 100000, + "quest": "codersglitch", + "status": "started" + } + ], + "dropTables": ["ordinary", "arrows"], + "hitPoints": 140, + "level": 14, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 350, + "respawnDelay": 65000, + "attackStats": { + "crush": 2, + "slash": 6, + "stab": 5, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -5, + "slash": 6, + "stab": 6, + "archery": 6, + "magic": -3 + }, + "bonuses": { + "accuracy": 3, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "ogre": { + "name": "Ogre", + "description": "I really feel like the developers had to include generic fantasy creatures.", + "drops": [ + { + "key": "ironspear", + "chance": 10000 + }, + { + "key": "ironsword", + "chance": 10000 + }, + { + "key": "ironscythe", + "chance": 10000 + } + ], + "dropTables": ["ordinary", "unusual", "vegetables", "fruits", "mushrooms"], + "hitPoints": 150, + "level": 18, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1250, + "movementSpeed": 300, + "respawnDelay": 45000, + "attackStats": { + "crush": 13, + "slash": 11, + "stab": 10, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 13, + "slash": 1, + "stab": -3, + "archery": 4, + "magic": 11 + }, + "bonuses": { + "accuracy": 2, + "strength": 6, + "archery": 0, + "magic": 0 + } + }, + + "skeleton2": { + "name": "Scary Skeleton", + "description": "Ah yes, it's not spooky, this one is scary.", + "drops": [ + { + "key": "bronzespear", + "chance": 10000 + }, + { + "key": "bronzesword", + "chance": 10000 + }, + { + "key": "bronzescythe", + "chance": 10000 + } + ], + "dropTables": ["ordinary", "shards", "arrows", "unusual"], + "hitPoints": 375, + "level": 30, + "aggroRange": 2, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 350, + "respawnDelay": 60000, + "attackStats": { + "crush": 6, + "slash": 10, + "stab": 14, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 10, + "stab": 11, + "archery": 12, + "magic": -5 + }, + "bonuses": { + "accuracy": 5, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + + "snek": { + "name": "Snek", + "description": "Snek, where you going? Snek, stahp!", + "dropTables": ["ordinary"], + "hitPoints": 85, + "level": 16, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 350, + "respawnDelay": 35000, + "poisonous": true, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 13, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 6, + "stab": 9, + "archery": 10, + "magic": 2 + }, + "bonuses": { + "accuracy": 5, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "spectre": { + "name": "Spectre", + "description": "Has a scythe and looks like it's floating.", + "drops": [ + { + "key": "ironscythe", + "chance": 10000 + }, + { + "key": "sycophant", + "chance": 100 + } + ], + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 270, + "level": 32, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 350, + "respawnDelay": 35000, + "attackStats": { + "crush": 9, + "slash": 16, + "stab": 13, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 14, + "slash": 16, + "stab": 18, + "archery": 12, + "magic": -15 + }, + "bonuses": { + "accuracy": 2, + "strength": 5, + "archery": 0, + "magic": 6 + } + }, + + "lavaslime": { + "name": "Lava Slime", + "description": "A cute little slime made out of molten rock.", + "dropTables": ["ordinary", "shards"], + "hitPoints": 270, + "level": 32, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 350, + "respawnDelay": 35000, + "attackStats": { + "crush": 9, + "slash": 16, + "stab": 13, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 14, + "slash": 16, + "stab": 18, + "archery": 12, + "magic": -15 + }, + "bonuses": { + "accuracy": 2, + "strength": 5, + "archery": 0, + "magic": 6 + } + }, + + "eye": { + "name": "Eye", + "description": [ + "Must have really poor depth perception when you think about it.", + "Eye really can't seem to figure out how that thing works." + ], + "drops": [ + { + "key": "eyesword", + "chance": 1000 + } + ], + "dropTables": ["ordinary", "unusual", "shards"], + "hitPoints": 160, + "level": 33, + "aggroRange": 1, + "attackRate": 1100, + "movementSpeed": 350, + "respawnDelay": 35000, + "attackStats": { + "crush": 16, + "slash": 12, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 12, + "slash": 9, + "stab": -10, + "archery": -8, + "magic": 10 + }, + "bonuses": { + "accuracy": 0, + "strength": 6, + "archery": 0, + "magic": 0 + } + }, + + "deathknight": { + "name": "Death Knight", + "description": "Seriously, who comes up with the names for these things?", + "dropTables": ["ordinary", "unusual", "shards"], + "hitPoints": 185, + "level": 40, + "aggroRange": 4, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 350, + "respawnDelay": 65000, + "attackStats": { + "crush": 10, + "slash": 13, + "stab": 15, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 14, + "slash": 10, + "stab": 13, + "archery": 12, + "magic": -8 + }, + "bonuses": { + "accuracy": 3, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "adherer": { + "name": "Dark Mage", + "description": "I heard that these things drop roses that I can then use to hit things with.", + "drops": [ + { + "key": "darkmagehood", + "chance": 600 + }, + { + "key": "darkmagehoodgold", + "chance": 20 + } + ], + "dropTables": ["ordinary", "unusual", "shards"], + "hitPoints": 200, + "level": 38, + "aggroRange": 6, + "attackRange": 4, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 450, + "projectileName": "fireball", + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 31 + }, + "defenseStats": { + "crush": -5, + "slash": -8, + "stab": -9, + "archery": -6, + "magic": 32 + }, + "bonuses": { + "accuracy": 8, + "strength": 0, + "archery": 0, + "magic": 16 + } + }, + + "regionhenchman": { + "name": "Dark Region Henchman", + "description": "I heard that these things drop roses that I can then use to hit things with.", + "dropTables": ["ordinary", "unusual", "shards"], + "hitPoints": 200, + "level": 38, + "aggroRange": 6, + "attackRange": 4, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 450, + "projectileName": "fireball", + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 31 + }, + "defenseStats": { + "crush": -5, + "slash": -8, + "stab": -9, + "archery": -6, + "magic": 32 + }, + "bonuses": { + "accuracy": 8, + "strength": 0, + "archery": 0, + "magic": 16 + } + }, + + "angel": { + "name": "Angel", + "description": "Holy moly, this is nothing like how they're described in the bible.", + "hitPoints": 1200, + "level": 98, + "aggroRange": 6, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 450, + "respawnDelay": 35000, + "attackStats": { + "crush": 40, + "slash": 30, + "stab": 30, + "archery": 0, + "magic": 61 + }, + "defenseStats": { + "crush": 35, + "slash": 18, + "stab": 29, + "archery": 16, + "magic": 52 + }, + "bonuses": { + "accuracy": 8, + "strength": 21, + "archery": 4, + "magic": 10 + } + }, + + "ant": { + "name": "Worker Ant", + "description": "A hardworking small itty bitty ant!", + "dropTables": ["ordinary", "fruits", "mushrooms", "vegetables"], + "hitPoints": 300, + "level": 46, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1000, + "movementSpeed": 600, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 11, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 15, + "slash": 30, + "stab": 30, + "archery": 30, + "magic": 19 + }, + "bonuses": { + "accuracy": 0, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + + "beetle": { + "name": "Beetle", + "description": "Ever heard of a Dung Beetle, well I'm better!", + "hitPoints": 600, + "level": 45, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 60, + "slash": 23, + "stab": 36, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 21, + "slash": 29, + "stab": 8, + "archery": 23, + "magic": -14 + }, + "bonuses": { + "accuracy": 15, + "strength": 7, + "archery": 0, + "magic": 0 + } + }, + + "card": { + "name": "Poker Card", + "description": "What's it gonna do, gamble me to death?", + "hitPoints": 1300, + "level": 104, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 60, + "slash": 23, + "stab": 36, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 21, + "slash": 29, + "stab": 8, + "archery": 23, + "magic": -14 + }, + "bonuses": { + "accuracy": 15, + "strength": 7, + "archery": 0, + "magic": 0 + } + }, + + "card2": { + "name": "Another Card", + "description": "Okay but like, how does this even make sense as a mob?", + "hitPoints": 1300, + "level": 102, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 60, + "slash": 23, + "stab": 36, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 21, + "slash": 29, + "stab": 8, + "archery": 23, + "magic": -14 + }, + "bonuses": { + "accuracy": 15, + "strength": 7, + "archery": 0, + "magic": 0 + } + }, + + "cowwarrior": { + "name": "Cow Warrior", + "description": "The cows are rising up!", + "dropTables": ["ordinary", "shards", "unusual", "fruits", "mushrooms", "vegetables"], + "hitPoints": 800, + "level": 54, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 30, + "slash": 13, + "stab": 26, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 11, + "slash": 19, + "stab": 8, + "archery": 13, + "magic": -14 + }, + "bonuses": { + "accuracy": 12, + "strength": 7, + "archery": 0, + "magic": 0 + } + }, + + "rooster": { + "name": "Angry Rooster", + "description": "It's a sleeping rooster that attacks you...", + "drops": [ + { + "key": "pytharring", + "chance": 3000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "fruits", "mushrooms", "vegetables"], + "hitPoints": 320, + "level": 54, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 30, + "slash": 13, + "stab": 26, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 11, + "slash": 19, + "stab": 8, + "archery": 13, + "magic": -14 + }, + "bonuses": { + "accuracy": 12, + "strength": 7, + "archery": 0, + "magic": 0 + } + }, + + "pirateskeleton": { + "name": "Pirate Skeleton", + "drops": [ + { + "key": "scimitar", + "chance": 2500 + } + ], + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 460, + "level": 54, + "aggroRange": 4, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 600, + "respawnDelay": 95000, + "attackStats": { + "crush": 13, + "slash": 22, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -15, + "slash": 20, + "stab": 19, + "archery": 21, + "magic": -11 + }, + "bonuses": { + "accuracy": 7, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + + "greenpirateskeleton": { + "name": "Green Pirate Skeleton", + "description": "Isn't this just a skeleton but wearing a pirate hat?", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 585, + "level": 64, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 400, + "respawnDelay": 65000, + "attackStats": { + "crush": 15, + "slash": 30, + "stab": 34, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -13, + "slash": 23, + "stab": 21, + "archery": 23, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 6, + "archery": 0, + "magic": 0 + } + }, + + "redpirateskeleton": { + "name": "Red Pirate Skeleton", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 640, + "level": 69, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 400, + "respawnDelay": 65000, + "attackStats": { + "crush": 17, + "slash": 32, + "stab": 36, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -11, + "slash": 25, + "stab": 23, + "archery": 25, + "magic": -9 + }, + "bonuses": { + "accuracy": 9, + "strength": 7, + "archery": 0, + "magic": 0 + } + }, + + "blackpirateskeleton": { + "name": "Blue Pirate Skeleton", + "description": "Isn't this just a skeleton but wearing a pirate hat?", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 625, + "level": 70, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 400, + "respawnDelay": 65000, + "attackStats": { + "crush": 18, + "slash": 34, + "stab": 37, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -9, + "slash": 29, + "stab": 25, + "archery": 29, + "magic": -12 + }, + "bonuses": { + "accuracy": 10, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + + "piratecaptain": { + "name": "Pirate Captain", + "hitPoints": 4750, + "level": 175, + "aggroRange": 10, + "aggressive": true, + "projectileName": "iceball", + "roamingDistance": 12, + "attackRate": 1100, + "movementSpeed": 350, + "respawnDelay": 70000, + "plugin": "piratecaptain", + "attackStats": { + "crush": 61, + "slash": 64, + "stab": 63, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 31, + "slash": 62, + "stab": 66, + "archery": 65, + "magic": 34 + }, + "bonuses": { + "accuracy": 20, + "strength": 28, + "archery": 0, + "magic": 18 + } + }, + + "blackwizard": { + "name": "Dark Wizard", + "description": "They don't look all that different from the other ones.", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 170, + "level": 32, + "aggroRange": 6, + "attackRange": 7, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 400, + "projectileName": "terror", + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 46 + }, + "defenseStats": { + "crush": -5, + "slash": -9, + "stab": -10, + "archery": -7, + "magic": 37 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 16 + } + }, + + "icewizard": { + "name": "Ice Wizard", + "description": "It's like similar to some other type of wizard I've encountered before.", + "drops": [ + { + "key": "bluemoonstaff", + "chance": 5000 + } + ], + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 470, + "level": 92, + "aggroRange": 6, + "attackRange": 7, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "projectileName": "iceball", + "freezing": true, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 46 + }, + "defenseStats": { + "crush": -5, + "slash": -9, + "stab": -10, + "archery": -7, + "magic": 37 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 16 + } + }, + + "babyspider": { + "name": "Baby Spooder", + "description": "It's cute now but give it a while...", + "dropTables": ["ordinary", "unusual"], + "hitPoints": 400, + "level": 34, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 18, + "slash": 23, + "stab": 29, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -15, + "slash": 30, + "stab": 33, + "archery": 27, + "magic": -13 + }, + "bonuses": { + "accuracy": 2, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + + "spider": { + "name": "Spooder", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 650, + "level": 47, + "aggroRange": 1, + "aggressive": true, + "poisonous": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 22, + "slash": 24, + "stab": 31, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -13, + "slash": 32, + "stab": 38, + "archery": 30, + "magic": -12 + }, + "bonuses": { + "accuracy": 4, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + + "poisonspider": { + "name": "Poison Spooder", + "description": "I swear this thing is gonna poison me as soon as I engage it.", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 990, + "level": 49, + "aggroRange": 1, + "aggressive": true, + "poisonous": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 32, + "slash": 47, + "stab": 54, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -9, + "slash": 37, + "stab": 45, + "archery": 32, + "magic": -11 + }, + "bonuses": { + "accuracy": 9, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + + "firespider": { + "name": "Fire Spooder", + "description": "Damn, that is one hot spider.", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 850, + "level": 61, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 34, + "slash": 49, + "stab": 56, + "archery": 0, + "magic": 40 + }, + "defenseStats": { + "crush": -8, + "slash": 38, + "stab": 46, + "archery": 33, + "magic": -10 + }, + "bonuses": { + "accuracy": 9, + "strength": 5, + "archery": 0, + "magic": 11 + } + }, + + "blazespider": { + "name": "Blaze Spooder", + "description": "I wonder how high this spider is...", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 1350, + "level": 77, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 36, + "slash": 51, + "stab": 58, + "archery": 0, + "magic": 42 + }, + "defenseStats": { + "crush": -7, + "slash": 38, + "stab": 46, + "archery": 33, + "magic": -9 + }, + "bonuses": { + "accuracy": 10, + "strength": 6, + "archery": 0, + "magic": 14 + } + }, + + "hellspider": { + "name": "Hell Spooder", + "description": "Aren't all spiders technically from hell?", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 780, + "level": 56, + "aggroRange": 1, + "aggressive": true, + "poisonous": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 38, + "slash": 55, + "stab": 59, + "archery": 0, + "magic": 45 + }, + "defenseStats": { + "crush": -5, + "slash": 42, + "stab": 47, + "archery": 35, + "magic": -7 + }, + "bonuses": { + "accuracy": 11, + "strength": 7, + "archery": 0, + "magic": 15 + } + }, + + "bluepreta": { + "name": "Blue Preta", + "dropTables": ["ordinary", "shards", "unusual", "fruits", "vegetables"], + "hitPoints": 600, + "level": 85, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 28, + "slash": 25, + "stab": 19, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 25, + "slash": 22, + "stab": 27, + "archery": 15, + "magic": -12 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 10 + } + }, + + "cactus": { + "name": "Cactus", + "description": "So it's like, a cactus, that can move?", + "dropTables": ["ordinary", "shards", "unusual", "vegetables", "fruits", "mushrooms"], + "hitPoints": 160, + "level": 16, + "aggroRange": 2, + "alwaysAggressive": true, + "roaming": false, + "attackRate": 1300, + "movementSpeed": 400, + "respawnDelay": 35000, + "hiddenName": true, + "attackStats": { + "crush": 0, + "slash": 8, + "stab": 14, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 24, + "slash": -16, + "stab": -12, + "archery": -8, + "magic": 21 + }, + "bonuses": { + "accuracy": 6, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "cat": { + "name": "Cat", + "hitPoints": 600, + "level": 35, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 1, + "slash": 4, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 0, + "slash": 1, + "stab": 1, + "archery": 1, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "clam": { + "name": "Clam", + "description": "Now this would make a good stew!", + "dropTables": ["ordinary", "shards", "unusual", "mushrooms"], + "hitPoints": 450, + "level": 66, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 28, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -12, + "slash": 25, + "stab": 23, + "archery": 22, + "magic": 6 + }, + "bonuses": { + "accuracy": 0, + "strength": 10, + "archery": 0, + "magic": 0 + } + }, + + "cobra": { + "name": "Cobra", + "hitPoints": 1150, + "level": 91, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 16, + "slash": 18, + "stab": 32, + "archery": 14, + "magic": 0 + }, + "defenseStats": { + "crush": 18, + "slash": 24, + "stab": 19, + "archery": 14, + "magic": -8 + }, + "bonuses": { + "accuracy": 4, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + + "crystalscorpion": { + "name": "Crystal Scorpion", + "description": "It's a scorpion that is made out of crystal, that's really original.", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 1450, + "level": 105, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 35, + "slash": 23, + "stab": 32, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 7, + "slash": 23, + "stab": 35, + "archery": 32, + "magic": 2 + }, + "bonuses": { + "accuracy": 11, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "cursedhahoemask": { + "name": "Cursed Hahoe Mask", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 2100, + "level": 115, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 28 + }, + "defenseStats": { + "crush": 10, + "slash": 25, + "stab": 12, + "archery": 15, + "magic": 8 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 13 + } + }, + + "curseddjangseung": { + "name": "Cursed Djangseung", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 1900, + "level": 110, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 27 + }, + "defenseStats": { + "crush": -12, + "slash": 22, + "stab": 24, + "archery": 23, + "magic": 25 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 12 + } + }, + + "darkogre": { + "name": "Dark Ogre", + "description": "It didn't get to see much sun...", + "dropTables": ["ordinary", "shards", "unusual", "mushrooms"], + "hitPoints": 900, + "level": 68, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 32, + "slash": 28, + "stab": 26, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 34, + "slash": 12, + "stab": 28, + "archery": 26, + "magic": 15 + }, + "bonuses": { + "accuracy": 5, + "strength": 14, + "archery": 0, + "magic": 0 + } + }, + + "darkscorpion": { + "name": "Dark Scorpion", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 1150, + "level": 101, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 65000, + "attackStats": { + "crush": 15, + "slash": 10, + "stab": 15, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 5, + "slash": 10, + "stab": 8, + "archery": 9, + "magic": 5 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "darkskeleton": { + "name": "Dark Skeleton", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 740, + "level": 76, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 18, + "slash": 32, + "stab": 14, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 16, + "slash": 34, + "stab": 25, + "archery": 35, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 10, + "archery": 0, + "magic": 0 + } + }, + + "desertscorpion": { + "name": "Desert Scorpion", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 124, + "level": 24, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 320, + "respawnDelay": 55000, + "attackStats": { + "crush": 16, + "slash": 14, + "stab": 17, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -12, + "slash": 16, + "stab": 14, + "archery": 15, + "magic": -9 + }, + "bonuses": { + "accuracy": 7, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + + "devilkazya": { + "name": "Devil Blox", + "hitPoints": 2300, + "level": 135, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 25, + "slash": 11, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 14, + "slash": 30, + "stab": 30, + "archery": 30, + "magic": 30 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "earthworm": { + "name": "Earth Worm", + "description": "You know, it would make sense that earth worms are underground.", + "dropTables": ["ordinary", "shards", "unusual", "fruits", "vegetables", "mushrooms"], + "hitPoints": 815, + "level": 74, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 55, + "slash": 30, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 34, + "slash": 36, + "stab": 45, + "archery": 45, + "magic": 0 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "flaredanceknight": { + "name": "Cursed Knight", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 1000, + "level": 65, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 8, + "slash": 10, + "stab": 10, + "archery": 0, + "magic": 4 + }, + "defenseStats": { + "crush": 10, + "slash": 15, + "stab": 15, + "archery": 8, + "magic": 7 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "frog": { + "name": "Frog", + "drops": [ + { + "key": "froghelm", + "chance": 5000 + } + ], + "description": "Just look at it hop around and things and stuff.", + "dropTables": ["ordinary", "shards", "unusual", "vegetables", "fruits", "mushrooms"], + "hitPoints": 788, + "level": 56, + "aggroRange": 1, + "roamDistance": 5, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 25, + "slash": 18, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 17, + "slash": 13, + "stab": 12, + "archery": 6, + "magic": 6 + }, + "bonuses": { + "accuracy": 0, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + + "ghostrider": { + "name": "Skeleton Knight", + "hitPoints": 700, + "level": 19, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 11, + "slash": 13, + "stab": 15, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 14, + "slash": 22, + "stab": 30, + "archery": 30, + "magic": 17 + }, + "bonuses": { + "accuracy": 6, + "strength": 11, + "archery": 0, + "magic": 8 + } + }, + + "goldgolem": { + "name": "Golden Golem", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 1200, + "level": 75, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 15, + "slash": 10, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 4, + "slash": 10, + "stab": 10, + "archery": 10, + "magic": 10 + }, + "bonuses": { + "accuracy": 0, + "strength": 10, + "archery": 0, + "magic": 0 + } + }, + + "golem": { + "name": "Golem", + "drops": [ + { + "key": "golemsmace", + "chance": 250 + } + ], + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 350, + "level": 38, + "aggroRange": 1, + "aggressive": true, + "attackRate": 750, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 15, + "slash": 10, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 11, + "slash": 25, + "stab": 25, + "archery": 25, + "magic": 25 + }, + "bonuses": { + "accuracy": 0, + "strength": 10, + "archery": 0, + "magic": 0 + } + }, + + "redfish": { + "name": "Red Fesh", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 100, + "level": 46, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 13, + "slash": 11, + "stab": 9, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 15, + "slash": 13, + "stab": -13, + "archery": -11, + "magic": 9 + }, + "bonuses": { + "accuracy": 0, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + + "yellowfish": { + "name": "Yellow Fesh", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 135, + "level": 44, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 13, + "slash": 11, + "stab": 9, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 15, + "slash": 13, + "stab": -13, + "archery": -11, + "magic": 9 + }, + "bonuses": { + "accuracy": 0, + "strength": 2, + "archery": 0, + "magic": 0 + } + }, + + "greenfish": { + "name": "Green Fesh", + "dropTables": ["ordinary", "shards", "unusual"], + "hitPoints": 200, + "level": 45, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 15, + "slash": 13, + "stab": 11, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 17, + "slash": 15, + "stab": -12, + "archery": -10, + "magic": 10 + }, + "bonuses": { + "accuracy": 0, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + + "hermitcrab": { + "name": "Hermit Crab", + "dropTables": ["ordinary", "unusual"], + "hitPoints": 155, + "level": 15, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 4, + "slash": 2, + "stab": 3, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -6, + "slash": 15, + "stab": 13, + "archery": 12, + "magic": 10 + }, + "bonuses": { + "accuracy": 0, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + + "hobgoblin": { + "name": "Hobgoblin", + "dropTables": ["ordinary", "shards", "unusual", "vegetables", "fruits", "mushrooms"], + "hitPoints": 260, + "level": 42, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 55000, + "attackStats": { + "crush": 12, + "slash": 28, + "stab": 19, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 18, + "slash": 28, + "stab": 18, + "archery": 14, + "magic": 3 + }, + "bonuses": { + "accuracy": 4, + "strength": 6, + "archery": 0, + "magic": 0 + } + }, + + "hongcheol": { + "name": "Hong Chul", + "hitPoints": 1550, + "level": 100, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 15, + "slash": 12, + "stab": 11, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 15, + "slash": 15, + "stab": 15, + "archery": 15, + "magic": 15 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "icegolem": { + "name": "Ice Golem", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 700, + "level": 46, + "aggroRange": 5, + "attackRange": 7, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "projectileName": "iceball", + "freezing": true, + "attackStats": { + "crush": 10, + "slash": 5, + "stab": 6, + "archery": 0, + "magic": 35 + }, + "defenseStats": { + "crush": 13, + "slash": 27, + "stab": 18, + "archery": 18, + "magic": 39 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 9 + } + }, + + "iceknight": { + "name": "Ice Knight", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 550, + "level": 37, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 25, + "slash": 38, + "stab": 33, + "archery": 0, + "magic": 8 + }, + "defenseStats": { + "crush": 9, + "slash": 22, + "stab": 30, + "archery": 28, + "magic": -15 + }, + "bonuses": { + "accuracy": 9, + "strength": 11, + "archery": 0, + "magic": 8 + } + }, + + "icevulture": { + "name": "Ice Vulture", + "description": "It's like a frozen version of the vicious bird I've seen before.", + "drops": [ + { + "key": "feather", + "chance": 25000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 300, + "level": 96, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 18, + "slash": 33, + "stab": 30, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 34, + "slash": 27, + "stab": 21, + "archery": -10, + "magic": -17 + }, + "bonuses": { + "accuracy": 12, + "strength": 0, + "archery": 0, + "magic": 7 + } + }, + + "infectedguard": { + "name": "Infected Guard", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 750, + "level": 61, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 18, + "slash": 34, + "stab": 32, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 16, + "slash": 20, + "stab": 22, + "archery": -9, + "magic": -12 + }, + "bonuses": { + "accuracy": -15, + "strength": 12, + "archery": 0, + "magic": 0 + } + }, + + "ironogre": { + "name": "Iron Ogre", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 300, + "level": 20, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 10, + "stab": 9, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 24, + "slash": 15, + "stab": 13, + "archery": 12, + "magic": -4 + }, + "bonuses": { + "accuracy": 6, + "strength": 11, + "archery": 0, + "magic": 0 + } + }, + + "livingarmor": { + "name": "Living armor", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 340, + "level": 45, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 30, + "slash": 34, + "stab": 31, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 24, + "stab": 27, + "archery": 25, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 10, + "archery": 0, + "magic": 0 + } + }, + + "mantis": { + "name": "Praying Mantis", + "dropTables": ["ordinary", "shards", "unusual", "vegetables", "fruits", "mushrooms", "arrows"], + "hitPoints": 1000, + "level": 56, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 350, + "respawnDelay": 35000, + "attackStats": { + "crush": 6, + "slash": 15, + "stab": 11, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 7, + "stab": 6, + "archery": 7, + "magic": -10 + }, + "bonuses": { + "accuracy": 3, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "mermaid": { + "name": "Mermaid", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 150, + "level": 40, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 115000, + "attackStats": { + "crush": 18, + "slash": 20, + "stab": 22, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 22, + "slash": 17, + "stab": 5, + "archery": 19, + "magic": 10 + }, + "bonuses": { + "accuracy": 8, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "mimic": { + "name": "Mimic", + "dropTables": ["ordinary", "shards", "unusual", "mushrooms", "vegetables", "fruits", "arrows"], + "hitPoints": 1200, + "level": 25, + "aggroRange": 1, + "alwaysAggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "hiddenName": true, + "roamingDistance": 12, + "attackStats": { + "crush": 18, + "slash": 17, + "stab": 15, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 22, + "slash": 18, + "stab": 10, + "archery": -10, + "magic": 12 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "miniiceknight1": { + "name": "Mini Ice Knight", + "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 1100, + "level": 144, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 12, + "slash": 18, + "stab": 21, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -3, + "slash": 14, + "stab": 19, + "archery": 12, + "magic": 18 + }, + "bonuses": { + "accuracy": 5, + "strength": 0, + "archery": 0, + "magic": 3 + } + }, + + "miniiceknight2": { + "name": "Mini Ice Knight", + "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 1100, + "level": 144, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 12, + "slash": 18, + "stab": 21, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -3, + "slash": 14, + "stab": 19, + "archery": 12, + "magic": 18 + }, + "bonuses": { + "accuracy": 5, + "strength": 0, + "archery": 0, + "magic": 3 + } + }, + + "miniiceknight3": { + "name": "Mini Ice Knight", + "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 1100, + "level": 144, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 12, + "slash": 18, + "stab": 21, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -3, + "slash": 14, + "stab": 19, + "archery": 12, + "magic": 18 + }, + "bonuses": { + "accuracy": 5, + "strength": 0, + "archery": 0, + "magic": 3 + } + }, + + "miniiceknight4": { + "name": "Mini Ice Knight", + "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 1100, + "level": 144, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 12, + "slash": 18, + "stab": 21, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -3, + "slash": 14, + "stab": 19, + "archery": 12, + "magic": 18 + }, + "bonuses": { + "accuracy": 5, + "strength": 0, + "archery": 0, + "magic": 3 + } + }, + + "miniiceknight5": { + "name": "Mini Ice Knight", + "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 1100, + "level": 144, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1200, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 12, + "slash": 18, + "stab": 21, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -3, + "slash": 14, + "stab": 19, + "archery": 12, + "magic": 18 + }, + "bonuses": { + "accuracy": 5, + "strength": 0, + "archery": 0, + "magic": 3 + } + }, + + "miniknight1": { + "name": "Mini Knight", + "description": "A little ferocious tiny knight that might actually hurt me.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 950, + "level": 116, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "miniknight2": { + "name": "Mini Knight", + "description": "A little ferocious tiny knight that might actually hurt me.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 950, + "level": 116, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "miniknight3": { + "name": "Mini Knight", + "description": "A little ferocious tiny knight that might actually hurt me.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 950, + "level": 116, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "miniknight4": { + "name": "Mini Knight", + "description": "A little ferocious tiny knight that might actually hurt me.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 950, + "level": 116, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "miniknight5": { + "name": "Mini Knight", + "description": "A little ferocious tiny knight that might actually hurt me.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 950, + "level": 116, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "miniknight6": { + "name": "Mini Knight", + "description": "A little ferocious tiny knight that might actually hurt me.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 950, + "level": 116, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "miniemperor": { + "name": "Mini Emperor", + "description": "It looks like the leader of this band of mini knights.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 3950, + "level": 316, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "achievement": "miniemperor", + "respawnDelay": 35000, + "attackStats": { + "crush": 54, + "slash": 49, + "stab": 94, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -18, + "slash": 78, + "stab": 54, + "archery": 82, + "magic": 40 + }, + "bonuses": { + "accuracy": 15, + "strength": 24, + "archery": 0, + "magic": 18 + } + }, + + "oldogre": { + "name": "Old Ogre", + "description": "He's old, and balding, but still dangerous.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 256, + "level": 23, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 22, + "slash": 18, + "stab": 16, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 25, + "slash": 17, + "stab": -8, + "archery": -3, + "magic": 12 + }, + "bonuses": { + "accuracy": -3, + "strength": 10, + "archery": 0, + "magic": -5 + } + }, + + "orc": { + "name": "Orc", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 275, + "level": 47, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 18, + "stab": 20, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 15, + "slash": 25, + "stab": 14, + "archery": 24, + "magic": -6 + }, + "bonuses": { + "accuracy": 4, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + + "infectedvillager": { + "name": "Infected Villager", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 1550, + "level": 73, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 5, + "archery": 4, + "magic": 2 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "penguin": { + "name": "Penguin", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 526, + "level": 41, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 1, + "slash": 1, + "stab": 1, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 3, + "slash": 3, + "stab": 2, + "archery": 3, + "magic": 4 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "pierrot": { + "name": "Clown", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 150, + "level": 12, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 8, + "slash": 11, + "stab": 12, + "archery": 0, + "magic": 15 + }, + "defenseStats": { + "crush": 18, + "slash": 30, + "stab": 30, + "archery": 26, + "magic": 14 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "pinkelf": { + "name": "Pink Elf", + "description": "A pink elf, it's pink, what else do you want to know.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 925, + "level": 123, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "preta": { + "name": "Preta", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 495, + "level": 36, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 21, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 12 + }, + "defenseStats": { + "crush": 17, + "slash": 19, + "stab": 21, + "archery": 18, + "magic": -10 + }, + "bonuses": { + "accuracy": -4, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "purplepreta": { + "name": "Purple Preta", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 431, + "level": 31, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 18, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 9 + }, + "defenseStats": { + "crush": 14, + "slash": 11, + "stab": 16, + "archery": 10, + "magic": -12 + }, + "bonuses": { + "accuracy": -5, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "greencockroach": { + "name": "Green Cockroach", + "description": "Ew, a cockroach.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 785, + "level": 55, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 11, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -15, + "slash": 27, + "stab": 25, + "archery": 26, + "magic": -14 + }, + "bonuses": { + "accuracy": 0, + "strength": 10, + "archery": 0, + "magic": 0 + } + }, + + "redcockroach": { + "name": "Red Cockroach", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 669, + "level": 44, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 300, + "respawnDelay": 45000, + "attackStats": { + "crush": 12, + "slash": 9, + "stab": 10, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -17, + "slash": 25, + "stab": 22, + "archery": 23, + "magic": -15 + }, + "bonuses": { + "accuracy": 0, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + + "redelf": { + "name": "Red Elf", + "description": "It's an elf, and it is red, kinda looks like the developer ran out of assets.", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "mushrooms", "fruits", "vegetables"], + "hitPoints": 850, + "level": 110, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "guardsword": { + "name": "Guard", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 625, + "level": 47, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 21, + "slash": 25, + "stab": 25, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 21, + "slash": 30, + "stab": 14, + "archery": 18, + "magic": 12 + }, + "bonuses": { + "accuracy": 0, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + + "guardmace": { + "name": "Guard", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 625, + "level": 45, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 23, + "slash": 28, + "stab": 28, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 21, + "slash": 30, + "stab": 14, + "archery": 18, + "magic": 12 + }, + "bonuses": { + "accuracy": 0, + "strength": 3, + "archery": 0, + "magic": 0 + } + }, + + "redguard": { + "name": "Bandit", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 335, + "level": 44, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 19, + "slash": 28, + "stab": 17, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 20, + "slash": 40, + "stab": 9, + "archery": 12, + "magic": -4 + }, + "bonuses": { + "accuracy": 4, + "strength": 12, + "archery": 0, + "magic": 0 + } + }, + + "redmouse": { + "name": "Red Mouse", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 160, + "level": 24, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 12, + "stab": 16, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -10, + "slash": -5, + "stab": 0, + "archery": 5, + "magic": -15 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "rhaphidophoridae": { + "name": "Cricket", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 3500, + "level": 93, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 25, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -10, + "slash": 12, + "stab": 10, + "archery": 10, + "magic": -18 + }, + "bonuses": { + "accuracy": 2, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "rudolf": { + "name": "Raindeer", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 5550, + "level": 129, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 20, + "slash": 0, + "stab": 16, + "archery": 0, + "magic": 14 + }, + "defenseStats": { + "crush": 16, + "slash": 25, + "stab": 22, + "archery": -18, + "magic": 30 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 10 + } + }, + + "santaelf": { + "name": "Santa's Elf", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 610, + "level": 136, + "aggroRange": 1, + "alwaysAggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 18, + "stab": 18, + "archery": 0, + "magic": 22 + }, + "defenseStats": { + "crush": -20, + "slash": 17, + "stab": 22, + "archery": 27, + "magic": 24 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 30 + } + }, + + "scorpion": { + "name": "Scorpion", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 2700, + "level": 80, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawDelay": 35000, + "attackStats": { + "crush": 18, + "slash": 10, + "stab": 20, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -10, + "slash": 12, + "stab": 15, + "archery": 15, + "magic": -13 + }, + "bonuses": { + "accuracy": -5, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "skyelf": { + "name": "Sky Elf", + "description": "An elf that lives in the sky... What is it doing here?", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 1000, + "level": 134, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "slime": { + "name": "Slime", + "description": "Why does every game have a slime in it?", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits"], + "hitPoints": 694, + "level": 48, + "aggroRange": 3, + "attackRange": 6, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "poisonous": true, + "projectileName": "poisonball", + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 46, + "magic": 0 + }, + "defenseStats": { + "crush": 24, + "slash": 30, + "stab": 19, + "archery": 30, + "magic": -12 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 10, + "magic": 0 + } + }, + + "smalldevil": { + "name": "Corrupted Bat", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 100, + "level": 13, + "aggroRange": 2, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 2 + }, + "defenseStats": { + "crush": 5, + "slash": -3, + "stab": 2, + "archery": 2, + "magic": -7 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "snowelf": { + "name": "Snow Elf", + "description": "A magical tiny elf from the snow realm.", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 920, + "level": 99, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 19, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -8, + "slash": 18, + "stab": 24, + "archery": 22, + "magic": 20 + }, + "bonuses": { + "accuracy": 5, + "strength": 4, + "archery": 0, + "magic": 0 + } + }, + + "snowman": { + "name": "Snowman", + "description": "A magical snowman from the snow realm.", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 750, + "level": 43, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 10, + "slash": 7, + "stab": 0, + "archery": 0, + "magic": 5 + }, + "defenseStats": { + "crush": -10, + "slash": 8, + "stab": 11, + "archery": 0, + "magic": -15 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 8 + } + }, + + "snowman2": { + "name": "Snowman", + "description": "I wonder if it'll be resilient to fire.", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 850, + "level": 93, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 15, + "slash": 12, + "stab": 0, + "archery": 0, + "magic": 10 + }, + "defenseStats": { + "crush": -10, + "slash": 10, + "stab": 13, + "archery": 0, + "magic": -15 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 10 + } + }, + + "rabbitman": { + "name": "The Rabbit Man", + "description": "A dude... dressed as a rabbit... why?", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 385, + "level": 37, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 7, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 10, + "slash": -6, + "stab": -8, + "archery": -5, + "magic": -10 + }, + "bonuses": { + "accuracy": 0, + "strength": -5, + "archery": 0, + "magic": 0 + } + }, + + "snowrabbit": { + "name": "Snow Rabbit", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 340, + "level": 29, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 7, + "stab": 4, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -10, + "slash": 3, + "stab": 4, + "archery": 0, + "magic": -2 + }, + "bonuses": { + "accuracy": 5, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "snowwolf": { + "name": "Snow Wolf", + "description": "I really expected the wolf to be made out of snow :(", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 1185, + "level": 55, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 10, + "slash": 15, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 10, + "slash": 7, + "stab": 8, + "archery": -2, + "magic": -5 + }, + "bonuses": { + "accuracy": 0, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + + "icegoblin": { + "name": "Frost Goblin", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 475, + "level": 28, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 8, + "stab": 10, + "archery": 0, + "magic": 5 + }, + "defenseStats": { + "crush": -6, + "slash": 8, + "stab": 7, + "archery": 7, + "magic": -5 + }, + "bonuses": { + "accuracy": 4, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "soldierant": { + "name": "Soldier Ant", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 526, + "level": 60, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 30, + "slash": 0, + "stab": 26, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -16, + "slash": 32, + "stab": 36, + "archery": 28, + "magic": -25 + }, + "bonuses": { + "accuracy": 0, + "strength": 10, + "archery": 0, + "magic": 0 + } + }, + + "soybeanbug": { + "name": "Soy Bean Bug", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 3500, + "level": 103, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 17, + "slash": 11, + "stab": 10, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -12, + "slash": 27, + "stab": 15, + "archery": 12, + "magic": -15 + }, + "bonuses": { + "accuracy": 0, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + + "suicideghost": { + "name": "Ghost", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 750, + "level": 62, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 12 + }, + "defenseStats": { + "crush": 15, + "slash": 15, + "stab": 15, + "archery": 15, + "magic": -17 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 4 + } + }, + + "vulture": { + "name": "Vulture", + "drops": [ + { + "key": "feather", + "chance": 25000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 100, + "level": 16, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 5, + "slash": 8, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 10, + "slash": 10, + "stab": 8, + "archery": -5, + "magic": -8 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "whitebear": { + "name": "Molar Bear", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 1300, + "level": 42, + "aggroRange": 2, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 24, + "slash": 21, + "stab": 16, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 20, + "slash": 14, + "stab": 16, + "archery": 9, + "magic": -20 + }, + "bonuses": { + "accuracy": 0, + "strength": 7, + "archery": 0, + "magic": 0 + } + }, + + "whitemouse": { + "name": "Mouse", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 750, + "level": 45, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 11, + "stab": 8, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -12, + "slash": 10, + "stab": 8, + "archery": 6, + "magic": -14 + }, + "bonuses": { + "accuracy": 2, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "whitetiger": { + "name": "Tiger", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 3350, + "level": 98, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 28, + "slash": 33, + "stab": 24, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 31, + "slash": 27, + "stab": 25, + "archery": 20, + "magic": -11 + }, + "bonuses": { + "accuracy": 6, + "strength": 10, + "archery": 0, + "magic": 0 + } + }, + "wolf": { + "name": "Wolf", + "drops": [ + { + "key": "wolfhelmet", + "chance": 5000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 350, + "level": 45, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 14, + "slash": 28, + "stab": 12, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 18, + "slash": 10, + "stab": 29, + "archery": 14, + "magic": -6 + }, + "bonuses": { + "accuracy": 4, + "strength": 8, + "archery": 0, + "magic": 0 + } + }, + + "darkwolf": { + "name": "Dark Wolf", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 850, + "level": 118, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 375, + "respawnDelay": 75000, + "attackStats": { + "crush": 24, + "slash": 38, + "stab": 22, + "archery": 0, + "magic": 5 + }, + "defenseStats": { + "crush": 28, + "slash": 20, + "stab": 39, + "archery": 24, + "magic": -6 + }, + "bonuses": { + "accuracy": 7, + "strength": 12, + "archery": 0, + "magic": 0 + } + }, + + "yellowbat": { + "name": "Mutated Bat", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 650, + "level": 60, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 18, + "slash": 28, + "stab": 12, + "archery": 14, + "magic": 0 + }, + "defenseStats": { + "crush": 18, + "slash": 10, + "stab": 29, + "archery": 14, + "magic": -8 + }, + "bonuses": { + "accuracy": 4, + "strength": 8, + "archery": 4, + "magic": 0 + } + }, + + "paladin": { + "name": "Paladin", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 350, + "level": 16, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 6, + "stab": 4, + "archery": 0, + "magic": 2 + }, + "defenseStats": { + "crush": -12, + "slash": 10, + "stab": 8, + "archery": 6, + "magic": -14 + }, + "bonuses": { + "accuracy": 2, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "yellowmouse": { + "name": "Yellow Mouse", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 750, + "level": 39, + "aggroRange": 1, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 8, + "stab": 6, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -14, + "slash": 8, + "stab": 6, + "archery": 5, + "magic": -14 + }, + "bonuses": { + "accuracy": 1, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "yellowpreta": { + "name": "Yellow Preta", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 526, + "level": 39, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 22, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 13 + }, + "defenseStats": { + "crush": 18, + "slash": 20, + "stab": 22, + "archery": 19, + "magic": -10 + }, + "bonuses": { + "accuracy": -3, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "zombie": { + "name": "Zombie", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 1250, + "level": 69, + "aggroRange": 1, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 43, + "slash": 14, + "stab": 18, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 38, + "slash": 30, + "stab": 14, + "archery": 10, + "magic": -10 + }, + "bonuses": { + "accuracy": 8, + "strength": 18, + "archery": 0, + "magic": 0 + } + }, + + "brownmouse": { + "name": "Brown Mouse", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 140, + "level": 22, + "aggroRange": 1, + "attackRate": 1100, + "movementSpeed": 400, + "respawnDelay": 35000, + "attackStats": { + "crush": 0, + "slash": 12, + "stab": 16, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": -10, + "slash": -5, + "stab": 0, + "archery": 5, + "magic": -15 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 0 + } + }, + + "picklemob": { + "name": "Sea Cucumber", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 1250, + "level": 88, + "aggroRange": 4, + "attackRange": 10, + "alwaysAggressive": true, + "attackRate": 1300, + "movementSpeed": 1000, + "respawnDelay": 65000, + "projectileName": "terror", + "attackStats": { + "crush": 37, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 30, + "slash": 21, + "stab": 19, + "archery": 17, + "magic": 15 + }, + "bonuses": { + "accuracy": 0, + "strength": 5, + "archery": 0, + "magic": 0 + } + }, + + "icerat": { + "name": "Ice Rat", + "drops": [ + { + "key": "rathatpet", + "chance": 3 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 710, + "level": 80, + "aggroRange": 1, + "attackRate": 1500, + "movementSpeed": 500, + "respawnDelay": 10000, + "attackStats": { + "crush": 18, + "slash": 29, + "stab": 30, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 18, + "slash": 24, + "stab": 15, + "archery": 18, + "magic": -15 + }, + "bonuses": { + "accuracy": 15, + "strength": 16, + "archery": 0, + "magic": 0 + } + }, + + "icebat": { + "name": "Frozen Bat", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 825, + "level": 86, + "aggroRange": 1, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 350, + "respawnDelay": 20000, + "attackStats": { + "crush": 18, + "slash": 29, + "stab": 34, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 18, + "slash": 29, + "stab": 30, + "archery": 20, + "magic": -15 + }, + "bonuses": { + "accuracy": 19, + "strength": 18, + "archery": 0, + "magic": 0 + } + }, + + "icecrab": { + "name": "Ice Crab", + "dropTables": ["ordinary", "shards", "unusual", "arrows"], + "hitPoints": 860, + "level": 89, + "aggroRange": 1, + "attackRate": 1200, + "movementSpeed": 300, + "respawnDelay": 20000, + "attackStats": { + "crush": 20, + "slash": 31, + "stab": 34, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 21, + "slash": 29, + "stab": 32, + "archery": 20, + "magic": -15 + }, + "bonuses": { + "accuracy": 19, + "strength": 19, + "archery": 0, + "magic": 0 + } + }, + + "skeletonking": { + "name": "Skeleton King", + "description": "Here he is, the chad of r/neverbrokeabone.", + "drops": [ + { + "key": "goldshield", + "chance": 2000 + }, + { + "key": "royalrapier", + "chance": 2000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 1850, + "level": 32, + "aggroRange": 5, + "aggressive": true, + "attackRate": 900, + "movementSpeed": 420, + "respawnDelay": 80000, + "plugin": "skeletonking", + "boss": true, + "roamDistance": 16, + "achievement": "skeletonking", + "attackStats": { + "crush": 20, + "slash": 35, + "stab": 33, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 20, + "slash": 37, + "stab": 40, + "archery": 38, + "magic": 18 + }, + "bonuses": { + "accuracy": 15, + "strength": 10, + "archery": 0, + "magic": 0 + }, + "skills": { + "accuracy": 38, + "strength": 43, + "defense": 40, + "archery": 0, + "magic": 0 + } + }, + + "ogrelord": { + "name": "Ogre Lord", + "description": "I better keep a distance before this thing turns me into a stew!", + "drops": [ + { + "key": "firesword", + "chance": 1000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 2850, + "level": 44, + "aggroRange": 12, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 420, + "respawnDelay": 90000, + "roamingDistance": 16, + "plugin": "ogrelord", + "boss": true, + "achievement": "ogrelord", + "attackStats": { + "crush": 47, + "slash": 36, + "stab": 30, + "archery": 0, + "magic": 0 + }, + "defenseStats": { + "crush": 44, + "slash": 26, + "stab": 33, + "archery": 25, + "magic": 18 + }, + "bonuses": { + "accuracy": 0, + "strength": 17, + "archery": 0, + "magic": 0 + }, + "skills": { + "accuracy": 38, + "strength": 33, + "defense": 40, + "archery": 0, + "magic": 0 + } + }, + + "hellhound": { + "name": "Hellhound", + "description": "I better keep a distance before this thing turns me into a stew!", + "drops": [ + { + "key": "hellhoundfang", + "chance": 250 + }, + { + "key": "hellkeeperhelm", + "chance": 400 + }, + { + "key": "hellkeeperchestplate", + "chance": 400 + }, + { + "key": "hellkeeperlegs", + "chance": 400 + }, + { + "key": "hellkeeperboots", + "chance": 400 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 4550, + "level": 344, + "aggroRange": 12, + "aggressive": true, + "attackRate": 1000, + "movementSpeed": 420, + "respawnDelay": 90000, + "roamingDistance": 16, + "projectileName": "yellowlightning", + "plugin": "hellhound", + "boss": true, + "achievement": "hellhound", + "attackStats": { + "crush": 120, + "slash": 140, + "stab": 160, + "archery": 100, + "magic": 100 + }, + "defenseStats": { + "crush": 160, + "slash": 120, + "stab": 130, + "archery": 50, + "magic": 130 + }, + "bonuses": { + "accuracy": 50, + "strength": 50, + "archery": 20, + "magic": 40 + }, + "skills": { + "accuracy": 80, + "strength": 70, + "defense": 50, + "archery": 80, + "magic": 70 + } + }, + + "windguardian": { + "name": "Wind Guardian", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 15000, + "projectileName": "iceball", + "level": 195, + "aggroRange": 3, + "attackRange": 6, + "aggressive": true, + "attackRate": 1300, + "movementSpeed": 500, + "respawnDelay": 95000, + "attackStats": { + "crush": 85, + "slash": 104, + "stab": 112, + "archery": 0, + "magic": 97 + }, + "defenseStats": { + "crush": 80, + "slash": 85, + "stab": 97, + "archery": 93, + "magic": 65 + }, + "bonuses": { + "accuracy": 25, + "strength": 18, + "archery": 0, + "magic": 10 + }, + "skills": { + "accuracy": 40, + "strength": 70, + "defense": 30, + "archery": 80, + "magic": 70 + } + }, + + "lightningguardian": { + "name": "Lightning Guardian", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 4500, + "level": 64, + "aggroRange": 6, + "aggressive": true, + "attackRate": 1750, + "movementSpeed": 600, + "respawnDelay": 95000, + "attackStats": { + "crush": 145, + "slash": 154, + "stab": 162, + "archery": 0, + "magic": 167 + }, + "defenseStats": { + "crush": 40, + "slash": 45, + "stab": 57, + "archery": 53, + "magic": 35 + }, + "bonuses": { + "accuracy": 5, + "strength": 7, + "archery": 0, + "magic": 12 + }, + "skills": { + "accuracy": 40, + "strength": 70, + "defense": 30, + "archery": 80, + "magic": 70 + } + }, + + "darkregion": { + "name": "Tenebris", + "drops": [ + { + "key": "bladeofdarkness", + "chance": 2000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 4000, + "level": 79, + "aggroRange": 5, + "aggressive": true, + "attackRate": 1500, + "movementSpeed": 600, + "respawnDelay": 95000, + "attackStats": { + "crush": 130, + "slash": 224, + "stab": 126, + "archery": 0, + "magic": 150 + }, + "defenseStats": { + "crush": 133, + "slash": 136, + "stab": 135, + "archery": 0, + "magic": 195 + }, + "bonuses": { + "accuracy": 80, + "strength": 90, + "archery": 0, + "magic": 72 + }, + "skills": { + "accuracy": 140, + "strength": 150, + "defense": 130, + "archery": 140, + "magic": 130 + } + }, + + "darkregionillusion": { + "name": "Tenebris", + "hitPoints": 500, + "level": 79, + "aggroRange": 8, + "aggressive": true, + "attackRate": 1300, + "movementSpeed": 800, + "attackStats": { + "crush": 6, + "slash": 4, + "stab": 5, + "archery": 0, + "magic": 9 + }, + "defenseStats": { + "crush": 3, + "slash": 6, + "stab": 5, + "archery": 5, + "magic": 2 + }, + "bonuses": { + "accuracy": 0, + "strength": 0, + "archery": 0, + "magic": 5 + } + }, + + "miniseadragon": { + "name": "Mini Sea Dragon", + "description": "Aww it's a little version of something that's gonna stomp me later!", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 1200, + "level": 52, + "aggroRange": 6, + "aggressive": true, + "attackRate": 1500, + "movementSpeed": 450, + "respawnDelay": 95000, + "attackStats": { + "crush": 48, + "slash": 52, + "stab": 51, + "archery": 0, + "magic": 55 + }, + "defenseStats": { + "crush": 61, + "slash": 66, + "stab": 60, + "archery": 54, + "magic": 30 + }, + "bonuses": { + "accuracy": 9, + "strength": 0, + "archery": 0, + "magic": 8 + }, + "skills": { + "accuracy": 40, + "strength": 50, + "defense": 30, + "archery": 40, + "magic": 30 + } + }, + + "forestdragon": { + "name": "Forest Dragon", + "description": "Keros' favourite pet!", + "drops": [ + { + "key": "dragonscale", + "chance": 1500 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 6942, + "level": 258, + "aggroRange": 8, + "roamDistance": 20, + "alwaysAggressive": true, + "attackRate": 1200, + "movementSpeed": 600, + "respawnDelay": 180000, + "projectileName": "fireball", + "achievement": "forestdragon", + "plugin": "forestdragon", + "attackStats": { + "crush": 110, + "slash": 128, + "stab": 133, + "archery": 120, + "magic": 136 + }, + "defenseStats": { + "crush": 160, + "slash": 120, + "stab": 130, + "archery": 50, + "magic": 130 + }, + "bonuses": { + "accuracy": 50, + "strength": 50, + "archery": 20, + "magic": 40 + }, + "skills": { + "accuracy": 90, + "strength": 100, + "defense": 80, + "archery": 110, + "magic": 100 + } + }, + + "enel": { + "name": "Lucendi", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 25000, + "level": 256, + "aggroRange": 2, + "attackRange": 2, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 800, + "respawnDelay": 95000, + "attackStats": { + "crush": 130, + "slash": 158, + "stab": 163, + "archery": 0, + "magic": 186 + }, + "defenseStats": { + "crush": 190, + "slash": 155, + "stab": 156, + "archery": 163, + "magic": 180 + }, + "bonuses": { + "accuracy": 70, + "strength": 60, + "archery": 30, + "magic": 80 + } + }, + + "seadragon": { + "name": "Sea Dragon", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 100, + "level": 485, + "aggroRange": 4, + "aggressive": true, + "attackRate": 1500, + "movementSpeed": 600, + "respawnDelay": 95000, + "attackStats": { + "crush": 82, + "slash": 77, + "stab": 78, + "archery": 0, + "magic": 85 + }, + "defenseStats": { + "crush": 100, + "slash": 95, + "stab": 88, + "archery": 95, + "magic": 80 + }, + "bonuses": { + "accuracy": 48, + "strength": 52, + "archery": 0, + "magic": 60 + } + }, + + "minidragon": { + "name": "Mini Dragon", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 380, + "level": 77, + "aggroRange": 5, + "attackRange": 9, + "aggressive": true, + "attackRate": 1500, + "movementSpeed": 600, + "respawnDelay": 95000, + "projectileName": "fireball", + "attackStats": { + "crush": 0, + "slash": 22, + "stab": 25, + "archery": 0, + "magic": 30 + }, + "defenseStats": { + "crush": 22, + "slash": 18, + "stab": 15, + "archery": 14, + "magic": 10 + }, + "bonuses": { + "accuracy": 0, + "strength": 6, + "archery": 0, + "magic": 12 + } + }, + + "queenant": { + "name": "Queen Ant", + "drops": [ + { + "key": "helmofliberty", + "chance": 2000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 4200, + "level": 94, + "aggroRange": 14, + "alwaysAggressive": true, + "attackRate": 1500, + "roamDistance": 12, + "movementSpeed": 600, + "projectileName": "terror", + "respawnDelay": 80000, + "healRate": 1000, + "achievement": "queenant", + "plugin": "queenant", + "attackStats": { + "crush": 80, + "slash": 72, + "stab": 77, + "archery": 0, + "magic": 78 + }, + "defenseStats": { + "crush": 100, + "slash": 140, + "stab": 120, + "archery": 40, + "magic": 60 + }, + "bonuses": { + "accuracy": 0, + "strength": 20, + "archery": 0, + "magic": 0 + }, + "skills": { + "accuracy": 68, + "strength": 73, + "defense": 40, + "archery": 55, + "magic": 60 + } + }, + + "skydinosaur": { + "name": "Fulgur", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 50000, + "level": 435, + "aggroRange": 4, + "attackRange": 2, + "aggressive": true, + "attackRate": 1800, + "movementSpeed": 500, + "respawnDelay": 95000, + "attackStats": { + "crush": 170, + "slash": 185, + "stab": 180, + "archery": 0, + "magic": 150 + }, + "defenseStats": { + "crush": 190, + "slash": 165, + "stab": 160, + "archery": 156, + "magic": 150 + }, + "bonuses": { + "accuracy": 52, + "strength": 65, + "archery": 45, + "magic": 68 + }, + "skills": { + "accuracy": 168, + "strength": 173, + "defense": 140, + "archery": 155, + "magic": 90 + } + }, + + "squid": { + "name": "Great Squid", + "drops": [ + { + "key": "twilightgreataxe", + "chance": 2500 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 3800, + "level": 171, + "aggroRange": 7, + "attackRange": 4, + "aggressive": true, + "projectileName": "terror", + "attackRate": 1300, + "movementSpeed": 1200, + "respawnDelay": 95000, + "attackStats": { + "crush": 140, + "slash": 147, + "stab": 145, + "archery": 140, + "magic": 120 + }, + "defenseStats": { + "crush": 143, + "slash": 138, + "stab": 130, + "archery": 128, + "magic": 100 + }, + "bonuses": { + "accuracy": 35, + "strength": 30, + "archery": 45, + "magic": 30 + }, + "skills": { + "accuracy": 98, + "strength": 103, + "defense": 60, + "archery": 75, + "magic": 90 + } + }, + + "snowlady": { + "name": "Queen of Snow", + "drops": [ + { + "key": "swashbuckler", + "chance": 1000 + }, + + { + "key": "bident", + "chance": 1500 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 2800, + "level": 180, + "aggroRange": 7, + "attackRange": 4, + "aggressive": true, + "projectileName": "iceball", + "attackRate": 1300, + "movementSpeed": 1200, + "respawnDelay": 95000, + "attackStats": { + "crush": 60, + "slash": 0, + "stab": 0, + "archery": 0, + "magic": 65 + }, + "defenseStats": { + "crush": 33, + "slash": 58, + "stab": 60, + "archery": 59, + "magic": 20 + }, + "bonuses": { + "accuracy": 10, + "strength": 20, + "archery": 0, + "magic": 30 + } + }, + + "frostqueen": { + "name": "Frost Queen", + "drops": [ + { + "key": "timelessglaive", + "chance": 2000 + }, + { + "key": "moongreataxe", + "chance": 40 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 2800, + "level": 180, + "aggroRange": 7, + "attackRange": 4, + "aggressive": true, + "projectileName": "iceball", + "attackRate": 1300, + "movementSpeed": 1200, + "respawnDelay": 95000, + "attackStats": { + "crush": 0, + "slash": 50, + "stab": 58, + "archery": 60, + "magic": 65 + }, + "defenseStats": { + "crush": 43, + "slash": 62, + "stab": 65, + "archery": 59, + "magic": 22 + }, + "bonuses": { + "accuracy": 10, + "strength": 20, + "archery": 0, + "magic": 30 + } + }, + + "eliminator": { + "name": "Eliminator", + "drops": [ + { + "key": "executionershammer", + "chance": 1000 + } + ], + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 2000, + "level": 65, + "aggroRange": 7, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 500, + "respawnDelay": 95000, + "attackStats": { + "crush": 44, + "slash": 47, + "stab": 49, + "archery": 41, + "magic": 0 + }, + "defenseStats": { + "crush": 38, + "slash": 50, + "stab": 48, + "archery": 49, + "magic": 30 + }, + "bonuses": { + "accuracy": 15, + "strength": 13, + "archery": 0, + "magic": 0 + } + }, + + "santa": { + "name": "Santa", + "dropTables": ["ordinary", "shards", "unusual", "arrows", "vegetables", "fruits", "mushrooms"], + "hitPoints": 7500, + "level": 240, + "aggroRange": 18, + "attackRange": 16, + "aggressive": true, + "attackRate": 1100, + "movementSpeed": 500, + "respawnDelay": 180000, + "projectileName": "gift", + "plugin": "santa", + "roamingDistance": 16, + "attackStats": { + "crush": 145, + "slash": 120, + "stab": 137, + "archery": 0, + "magic": 150 + }, + "defenseStats": { + "crush": 160, + "slash": 152, + "stab": 145, + "archery": 140, + "magic": 120 + }, + "bonuses": { + "accuracy": 54, + "strength": 80, + "archery": 0, + "magic": 63 + }, + "skills": { + "accuracy": 71, + "strength": 83, + "defense": 66, + "archery": 76, + "magic": 83 + } } - }, - - "bat": { - "name": "Batterfly", - "description": "A bat that is also a butterfly, what a strange creature.", - "hitPoints": 68, - "defenseLevel": 3, - "attackLevel": 2, - "level": 4, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 420, - "respawnDelay": 20000, - "attackStats": { - "crush": 1, - "slash": 2, - "stab": 2, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 1, - "slash": 2, - "stab": 3, - "archery": 3, - "magic": 2 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "crab": { - "name": "Crab", - "description": "I wonder if I can eat this.", - "hitPoints": 15, - "defenseLevel": 1, - "attackLevel": 1, - "level": 1, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 420, - "respawnDelay": 20000, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 0, - "slash": 1, - "stab": 1, - "archery": 1, - "magic": 1 - }, - "bonuses": { - "accuracy": 0, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "wizard": { - "name": "Wizard", - "description": "Why does every MMORPG have one of these things?", - "hitPoints": 130, - "defenseLevel": 3, - "attackLevel": 16, - "level": 11, - "aggroRange": 3, - "attackRange": 4, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 350, - "projectileName": "fireball", - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 16 - }, - "defenseStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 2, - "magic": 4 - }, - "bonuses": { - "accuracy": 2, - "strength": 0, - "archery": 0, - "magic": 3 - } - }, - - "goblin": { - "name": "Goblin", - "description": "Didn't I see this same style of goblin in RuneScape?", - "hitPoints": 90, - "defenseLevel": 4, - "attackLevel": 4, - "level": 7, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 1400, - "movementSpeed": 300, - "respawnDelay": 55000, - "attackStats": { - "crush": 2, - "slash": 4, - "stab": 4, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 4, - "slash": 4, - "stab": 4, - "archery": 1, - "magic": 1 - }, - "bonuses": { - "accuracy": 3, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "skeleton": { - "name": "Spooky Skeleton", - "description": "I wonder if this skeleton is made out of bones.", - "hitPoints": 140, - "defenseLevel": 6, - "attackLevel": 6, - "level": 14, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 350, - "respawnDelay": 65000, - "attackStats": { - "crush": 2, - "slash": 6, - "stab": 5, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -5, - "slash": 6, - "stab": 6, - "archery": 6, - "magic": -3 - }, - "bonuses": { - "accuracy": 3, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "ogre": { - "name": "Ogre", - "description": "I really feel like the developers had to include generic fantasy creatures.", - "hitPoints": 150, - "defenseLevel": 9, - "attackLevel": 9, - "level": 18, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1250, - "movementSpeed": 300, - "respawnDelay": 45000, - "attackStats": { - "crush": 13, - "slash": 11, - "stab": 10, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 13, - "slash": 1, - "stab": -3, - "archery": 4, - "magic": 11 - }, - "bonuses": { - "accuracy": 2, - "strength": 6, - "archery": 0, - "magic": 0 - } - }, - - "skeleton2": { - "name": "Scary Skeleton", - "description": "Ah yes, it's not spooky, this one is scary.", - "hitPoints": 375, - "defenseLevel": 10, - "attackLevel": 10, - "level": 30, - "aggroRange": 2, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 350, - "respawnDelay": 60000, - "attackStats": { - "crush": 6, - "slash": 10, - "stab": 14, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 10, - "stab": 11, - "archery": 12, - "magic": -5 - }, - "bonuses": { - "accuracy": 5, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "snek": { - "name": "Snek", - "description": "Snek, where you going? Snek, stahp!", - "hitPoints": 85, - "defenseLevel": 7, - "attackLevel": 12, - "level": 16, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 350, - "respawnDelay": 35000, - "poisonous": true, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 13, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 0, - "slash": 6, - "stab": 9, - "archery": 10, - "magic": 2 - }, - "bonuses": { - "accuracy": 5, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "spectre": { - "name": "Spectre", - "description": "Has a scythe and looks like it's floating.", - "hitPoints": 270, - "defenseLevel": 18, - "attackLevel": 12, - "level": 32, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 350, - "respawnDelay": 35000, - "attackStats": { - "crush": 9, - "slash": 16, - "stab": 13, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 14, - "slash": 16, - "stab": 18, - "archery": 12, - "magic": -15 - }, - "bonuses": { - "accuracy": 2, - "strength": 5, - "archery": 0, - "magic": 6 - } - }, - - "eye": { - "name": "Eye", - "description": ["Must have really poor depth perception when you think about it.", "Eye really can't seem to figure out how that thing works."], - "hitPoints": 160, - "defenseLevel": 8, - "attackLevel": 20, - "level": 33, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 350, - "respawnDelay": 35000, - "attackStats": { - "crush": 16, - "slash": 12, - "stab": 8, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 12, - "slash": 9, - "stab": -10, - "archery": -8, - "magic": 10 - }, - "bonuses": { - "accuracy": 0, - "strength": 6, - "archery": 0, - "magic": 0 - } - }, - - "deathknight": { - "name": "Death Knight", - "description": "Seriously, who comes up with the names for these things?", - "hitPoints": 185, - "defenseLevel": 19, - "attackLevel": 12, - "level": 40, - "aggroRange": 4, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 350, - "respawnDelay": 65000, - "attackStats": { - "crush": 10, - "slash": 13, - "stab": 15, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 14, - "slash": 10, - "stab": 13, - "archery": 12, - "magic": -8 - }, - "bonuses": { - "accuracy": 3, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "adherer": { - "name": "Dark Mage", - "description": "I heard that these things drop roses that I can then use to hit things with.", - "hitPoints": 200, - "defenseLevel": 18, - "attackLevel": 31, - "level": 38, - "aggroRange": 6, - "attackRange": 4, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 450, - "projectileName": "fireball", - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 31 - }, - "defenseStats": { - "crush": -5, - "slash": -8, - "stab": -9, - "archery": -6, - "magic": 32 - }, - "bonuses": { - "accuracy": 8, - "strength": 0, - "archery": 0, - "magic": 16 - } - }, - - "angel": { - "name": "Angel", - "description": "Holy moly, this is nothing like how they're described in the bible.", - "hitPoints": 1200, - "defenseLevel": 18, - "attackLevel": 31, - "level": 98, - "aggroRange": 6, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 450, - "respawnDelay": 35000, - "attackStats": { - "crush": 40, - "slash": 30, - "stab": 30, - "archery": 0, - "magic": 61 - }, - "defenseStats": { - "crush": 35, - "slash": 18, - "stab": 29, - "archery": 16, - "magic": 52 - }, - "bonuses": { - "accuracy": 8, - "strength": 21, - "archery": 4, - "magic": 10 - } - }, - - "ant": { - "name": "Worker Ant", - "description": "A hardworking small itty bitty ant!", - "hitPoints": 300, - "defenseLevel": 30, - "attackLevel": 14, - "level": 46, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1000, - "movementSpeed": 600, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 11, - "stab": 12, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 15, - "slash": 30, - "stab": 30, - "archery": 30, - "magic": 19 - }, - "bonuses": { - "accuracy": 0, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "beetle": { - "name": "Beetle", - "description": "Ever heard of a Dung Beetle, well I'm better!", - "hitPoints": 600, - "defenseLevel": 5, - "attackLevel": 10, - "level": 45, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 60, - "slash": 23, - "stab": 36, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 21, - "slash": 29, - "stab": 8, - "archery": 23, - "magic": -14 - }, - "bonuses": { - "accuracy": 15, - "strength": 7, - "archery": 0, - "magic": 0 - } - }, - - "card": { - "name": "Poker Card", - "description": "What's it gonna do, gamble me to death?", - "hitPoints": 1300, - "defenseLevel": 5, - "attackLevel": 10, - "level": 104, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 60, - "slash": 23, - "stab": 36, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 21, - "slash": 29, - "stab": 8, - "archery": 23, - "magic": -14 - }, - "bonuses": { - "accuracy": 15, - "strength": 7, - "archery": 0, - "magic": 0 - } - }, - - "card2": { - "name": "Another Card", - "description": "Okay but like, how does this even make sense as a mob?", - "hitPoints": 1300, - "defenseLevel": 15, - "attackLevel": 35, - "level": 102, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 60, - "slash": 23, - "stab": 36, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 21, - "slash": 29, - "stab": 8, - "archery": 23, - "magic": -14 - }, - "bonuses": { - "accuracy": 15, - "strength": 7, - "archery": 0, - "magic": 0 - } - }, - - "cowwarrior": { - "name": "Cow Warrior", - "description": "The cows are rising up!", - "hitPoints": 800, - "defenseLevel": 15, - "attackLevel": 35, - "level": 54, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 30, - "slash": 13, - "stab": 26, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 11, - "slash": 19, - "stab": 8, - "archery": 13, - "magic": -14 - }, - "bonuses": { - "accuracy": 12, - "strength": 7, - "archery": 0, - "magic": 0 - } - }, - - "rooster": { - "name": "Angry Rooster", - "description": "It's a sleeping rooster that attacks you...", - "hitPoints": 800, - "defenseLevel": 15, - "attackLevel": 35, - "level": 54, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 30, - "slash": 13, - "stab": 26, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 11, - "slash": 19, - "stab": 8, - "archery": 13, - "magic": -14 - }, - "bonuses": { - "accuracy": 12, - "strength": 7, - "archery": 0, - "magic": 0 - } - }, - - "pirateskeleton": { - "name": "Pirate Skeleton", - "hitPoints": 460, - "defenseLevel": 18, - "attackLevel": 22, - "level": 54, - "aggroRange": 4, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 600, - "respawnDelay": 95000, - "attackStats": { - "crush": 13, - "slash": 22, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -15, - "slash": 20, - "stab": 19, - "archery": 21, - "magic": -11 - }, - "bonuses": { - "accuracy": 7, - "strength": 5, - "archery": 0, - "magic": 0 - } - }, - - "greenpirateskeleton": { - "name": "Green Pirate Skeleton", - "description": "Isn't this just a skeleton but wearing a pirate hat?", - "hitPoints": 585, - "defenseLevel": 42, - "attackLevel": 24, - "level": 64, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 400, - "respawnDelay": 65000, - "attackStats": { - "crush": 15, - "slash": 30, - "stab": 34, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -13, - "slash": 23, - "stab": 21, - "archery": 23, - "magic": -10 - }, - "bonuses": { - "accuracy": 8, - "strength": 6, - "archery": 0, - "magic": 0 - } - }, - - "redpirateskeleton": { - "name": "Red Pirate Skeleton", - "hitPoints": 640, - "defenseLevel": 13, - "attackLevel": 18, - "level": 69, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 400, - "respawnDelay": 65000, - "attackStats": { - "crush": 17, - "slash": 32, - "stab": 36, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -11, - "slash": 25, - "stab": 23, - "archery": 25, - "magic": -9 - }, - "bonuses": { - "accuracy": 9, - "strength": 7, - "archery": 0, - "magic": 0 - } - }, - - "blackpirateskeleton": { - "name": "Blue Pirate Skeleton", - "description": "Isn't this just a skeleton but wearing a pirate hat?", - "hitPoints": 625, - "defenseLevel": 14, - "attackLevel": 18, - "level": 70, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 400, - "respawnDelay": 65000, - "attackStats": { - "crush": 18, - "slash": 34, - "stab": 37, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -9, - "slash": 29, - "stab": 25, - "archery": 29, - "magic": -12 - }, - "bonuses": { - "accuracy": 10, - "strength": 8, - "archery": 0, - "magic": 0 - } - }, - - "piratecaptain": { - "name": "Pirate Captain", - "hitPoints": 4750, - "defenseLevel": 56, - "attackLevel": 64, - "level": 175, - "aggroRange": 10, - "attackRange": 1, - "aggressive": true, - "projectileName": "iceball", - "roaming": true, - "roamingDistance": 12, - "attackRate": 1100, - "movementSpeed": 350, - "respawnDelay": 70000, - "plugin": "piratecaptain", - "attackStats": { - "crush": 61, - "slash": 64, - "stab": 63, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 31, - "slash": 62, - "stab": 66, - "archery": 65, - "magic": 34 - }, - "bonuses": { - "accuracy": 20, - "strength": 28, - "archery": 0, - "magic": 18 - } - }, - - "blackwizard": { - "name": "Dark Wizard", - "description": "They don't look all that different from the other ones.", - "hitPoints": 170, - "defenseLevel": 30, - "attackLevel": 46, - "level": 32, - "aggroRange": 6, - "attackRange": 7, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 400, - "projectileName": "terror", - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 46 - }, - "defenseStats": { - "crush": -5, - "slash": -9, - "stab": -10, - "archery": -7, - "magic": 37 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 16 - } - }, - - "icewizard": { - "name": "Ice Wizard", - "description": "It's like similar to some other type of wizard I've encountered before.", - "hitPoints": 470, - "defenseLevel": 30, - "attackLevel": 46, - "level": 92, - "aggroRange": 6, - "attackRange": 7, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "projectileName": "iceball", - "freezing": true, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 46 - }, - "defenseStats": { - "crush": -5, - "slash": -9, - "stab": -10, - "archery": -7, - "magic": 37 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 16 - } - }, - - "babyspider": { - "name": "Baby Spooder", - "description": "It's cute now but give it a while...", - "hitPoints": 400, - "defenseLevel": 44, - "attackLevel": 34, - "level": 34, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 18, - "slash": 23, - "stab": 29, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -15, - "slash": 30, - "stab": 33, - "archery": 27, - "magic": -13 - }, - "bonuses": { - "accuracy": 2, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "spider": { - "name": "Spooder", - "hitPoints": 650, - "defenseLevel": 45, - "attackLevel": 26, - "level": 47, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "poisonous": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 22, - "slash": 24, - "stab": 31, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -13, - "slash": 32, - "stab": 38, - "archery": 30, - "magic": -12 - }, - "bonuses": { - "accuracy": 4, - "strength": 3, - "archery": 0, - "magic": 0 - } - }, - - "poisonspider": { - "name": "Poison Spooder", - "description": "I swear this thing is gonna poison me as soon as I engage it.", - "hitPoints": 990, - "defenseLevel": 40, - "attackLevel": 63, - "level": 49, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "poisonous": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 32, - "slash": 47, - "stab": 54, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -9, - "slash": 37, - "stab": 45, - "archery": 32, - "magic": -11 - }, - "bonuses": { - "accuracy": 9, - "strength": 5, - "archery": 0, - "magic": 0 - } - }, - - "firespider": { - "name": "Fire Spooder", - "description": "Damn, that is one hot spider.", - "hitPoints": 850, - "defenseLevel": 50, - "attackLevel": 40, - "level": 61, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 34, - "slash": 49, - "stab": 56, - "archery": 0, - "magic": 40 - }, - "defenseStats": { - "crush": -8, - "slash": 38, - "stab": 46, - "archery": 33, - "magic": -10 - }, - "bonuses": { - "accuracy": 9, - "strength": 5, - "archery": 0, - "magic": 11 - } - }, - - "blazespider": { - "name": "Blaze Spooder", - "description": "I wonder how high this spider is...", - "hitPoints": 1350, - "defenseLevel": 44, - "attackLevel": 50, - "level": 77, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 36, - "slash": 51, - "stab": 58, - "archery": 0, - "magic": 42 - }, - "defenseStats": { - "crush": -7, - "slash": 38, - "stab": 46, - "archery": 33, - "magic": -9 - }, - "bonuses": { - "accuracy": 10, - "strength": 6, - "archery": 0, - "magic": 14 - } - }, - - "hellspider": { - "name": "Hell Spooder", - "description": "Aren't all spiders technically from hell?", - "hitPoints": 780, - "defenseLevel": 60, - "attackLevel": 28, - "level": 56, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "poisonous": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 38, - "slash": 55, - "stab": 59, - "archery": 0, - "magic": 45 - }, - "defenseStats": { - "crush": -5, - "slash": 42, - "stab": 47, - "archery": 35, - "magic": -7 - }, - "bonuses": { - "accuracy": 11, - "strength": 7, - "archery": 0, - "magic": 15 - } - }, - - "bluepreta": { - "name": "Blue Preta", - "hitPoints": 600, - "defenseLevel": 50, - "attackLevel": 80, - "level": 85, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 28, - "slash": 25, - "stab": 19, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 25, - "slash": 22, - "stab": 27, - "archery": 15, - "magic": -12 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 10 - } - }, - - "cactus": { - "name": "Cactus", - "description": "So it's like, a cactus, that can move?", - "hitPoints": 160, - "defenseLevel": 34, - "attackLevel": 10, - "level": 16, - "aggroRange": 2, - "attackRange": 1, - "alwaysAggressive": true, - "roaming": false, - "attackRate": 1300, - "movementSpeed": 400, - "respawnDelay": 35000, - "hiddenName": true, - "attackStats": { - "crush": 0, - "slash": 8, - "stab": 14, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 24, - "slash": -16, - "stab": -12, - "archery": -8, - "magic": 21 - }, - "bonuses": { - "accuracy": 6, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "cat": { - "name": "Cat", - "hitPoints": 600, - "defenseLevel": 1, - "attackLevel": 4, - "level": 35, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 1, - "slash": 4, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 0, - "slash": 1, - "stab": 1, - "archery": 1, - "magic": 0 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "clam": { - "name": "Clam", - "description": "Now this would make a good stew!", - "hitPoints": 450, - "defenseLevel": 36, - "attackLevel": 28, - "level": 66, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 28, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -12, - "slash": 25, - "stab": 23, - "archery": 22, - "magic": 6 - }, - "bonuses": { - "accuracy": 0, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "cobra": { - "name": "Cobra", - "hitPoints": 1150, - "defenseLevel": 3, - "attackLevel": 10, - "level": 91, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 37, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 0, - "slash": 26, - "stab": 29, - "archery": 20, - "magic": -2 - }, - "bonuses": { - "accuracy": 11, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "crystalscorpion": { - "name": "Crystal Scorpion", - "description": "It's a scorpion that is made out of crystal, that's really original.", - "hitPoints": 1450, - "defenseLevel": 35, - "attackLevel": 45, - "level": 105, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 35, - "slash": 23, - "stab": 32, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 7, - "slash": 23, - "stab": 35, - "archery": 32, - "magic": 2 - }, - "bonuses": { - "accuracy": 11, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "cursedhahoemask": { - "name": "Cursed Hahoe Mask", - "hitPoints": 2100, - "defenseLevel": 25, - "attackLevel": 5, - "level": 115, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 28 - }, - "defenseStats": { - "crush": 10, - "slash": 25, - "stab": 12, - "archery": 15, - "magic": 8 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 13 - } - }, - - "curseddjangseung": { - "name": "Cursed Djangseung", - "hitPoints": 1900, - "defenseLevel": 25, - "attackLevel": 10, - "level": 110, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 27 - }, - "defenseStats": { - "crush": -12, - "slash": 22, - "stab": 24, - "archery": 23, - "magic": 25 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 12 - } - }, - - "darkogre": { - "name": "Dark Ogre", - "description": "It didn't get to see much sun...", - "hitPoints": 900, - "defenseLevel": 89, - "attackLevel": 45, - "level": 68, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 32, - "slash": 28, - "stab": 26, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 34, - "slash": 12, - "stab": 28, - "archery": 26, - "magic": 15 - }, - "bonuses": { - "accuracy": 5, - "strength": 14, - "archery": 0, - "magic": 0 - } - }, - - "darkscorpion": { - "name": "Dark Scorpion", - "hitPoints": 1150, - "defenseLevel": 20, - "attackLevel": 35, - "level": 101, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 65000, - "attackStats": { - "crush": 15, - "slash": 10, - "stab": 15, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 5, - "slash": 10, - "stab": 8, - "archery": 9, - "magic": 5 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "darkskeleton": { - "name": "Dark Skeleton", - "hitPoints": 740, - "defenseLevel": 15, - "attackLevel": 32, - "level": 76, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 18, - "slash": 32, - "stab": 14, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 16, - "slash": 34, - "stab": 25, - "archery": 35, - "magic": -10 - }, - "bonuses": { - "accuracy": 8, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "desertscorpion": { - "name": "Desert Scorpion", - "hitPoints": 124, - "defenseLevel": 16, - "attackLevel": 16, - "level": 24, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 320, - "respawnDelay": 55000, - "attackStats": { - "crush": 16, - "slash": 14, - "stab": 17, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -12, - "slash": 16, - "stab": 14, - "archery": 15, - "magic": -9 - }, - "bonuses": { - "accuracy": 7, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "devilkazya": { - "name": "Devil Blox", - "hitPoints": 2300, - "defenseLevel": 30, - "attackLevel": 25, - "level": 135, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 25, - "slash": 11, - "stab": 6, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 14, - "slash": 30, - "stab": 30, - "archery": 30, - "magic": 30 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "earthworm": { - "name": "Earth Worm", - "description": "You know, it would make sense that earth worms are underground.", - "hitPoints": 815, - "defenseLevel": 88, - "attackLevel": 55, - "level": 74, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 55, - "slash": 30, - "stab": 12, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 34, - "slash": 36, - "stab": 45, - "archery": 45, - "magic": 0 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "flaredanceknight": { - "name": "Cursed Knight", - "hitPoints": 1000, - "defenseLevel": 15, - "attackLevel": 10, - "level": 65, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 8, - "slash": 10, - "stab": 10, - "archery": 0, - "magic": 4 - }, - "defenseStats": { - "crush": 10, - "slash": 15, - "stab": 15, - "archery": 8, - "magic": 7 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "frog": { - "name": "Frog", - "description": "Just look at it hop around and things and stuff.", - "hitPoints": 788, - "defenseLevel": 7, - "attackLevel": 15, - "level": 56, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "roamDistance": 5, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 25, - "slash": 18, - "stab": 8, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 17, - "slash": 13, - "stab": 12, - "archery": 6, - "magic": 6 - }, - "bonuses": { - "accuracy": 0, - "strength": 8, - "archery": 0, - "magic": 0 - } - }, - - "ghostrider": { - "name": "Skeleton Knight", - "hitPoints": 700, - "defenseLevel": 30, - "attackLevel": 15, - "level": 19, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 11, - "slash": 13, - "stab": 15, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 14, - "slash": 22, - "stab": 30, - "archery": 30, - "magic": 17 - }, - "bonuses": { - "accuracy": 6, - "strength": 11, - "archery": 0, - "magic": 8 - } - }, - - "goldgolem": { - "name": "Golden Golem", - "hitPoints": 1200, - "defenseLevel": 10, - "attackLevel": 15, - "level": 75, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 15, - "slash": 10, - "stab": 6, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 4, - "slash": 10, - "stab": 10, - "archery": 10, - "magic": 10 - }, - "bonuses": { - "accuracy": 0, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "golem": { - "name": "Golem", - "hitPoints": 350, - "defenseLevel": 25, - "attackLevel": 15, - "level": 38, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 750, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 15, - "slash": 10, - "stab": 6, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 11, - "slash": 25, - "stab": 25, - "archery": 25, - "magic": 25 - }, - "bonuses": { - "accuracy": 0, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "redfish": { - "name": "Red Fesh", - "hitPoints": 100, - "defenseLevel": 1, - "attackLevel": 1, - "level": 46, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 13, - "slash": 11, - "stab": 9, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 15, - "slash": 13, - "stab": -13, - "archery": -11, - "magic": 9 - }, - "bonuses": { - "accuracy": 0, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "yellowfish": { - "name": "Yellow Fesh", - "hitPoints": 135, - "defenseLevel": 3, - "attackLevel": 1, - "level": 44, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 13, - "slash": 11, - "stab": 9, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 15, - "slash": 13, - "stab": -13, - "archery": -11, - "magic": 9 - }, - "bonuses": { - "accuracy": 0, - "strength": 2, - "archery": 0, - "magic": 0 - } - }, - - "greenfish": { - "name": "Green Fesh", - "hitPoints": 200, - "defenseLevel": 1, - "attackLevel": 1, - "level": 45, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 15, - "slash": 13, - "stab": 11, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 17, - "slash": 15, - "stab": -12, - "archery": -10, - "magic": 10 - }, - "bonuses": { - "accuracy": 0, - "strength": 3, - "archery": 0, - "magic": 0 - } - }, - - "hermitcrab": { - "name": "Hermit Crab", - "hitPoints": 155, - "defenseLevel": 12, - "attackLevel": 4, - "level": 15, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 4, - "slash": 2, - "stab": 3, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -6, - "slash": 15, - "stab": 13, - "archery": 12, - "magic": 10 - }, - "bonuses": { - "accuracy": 0, - "strength": 5, - "archery": 0, - "magic": 0 - } - }, - - "hobgoblin": { - "name": "Hobgoblin", - "hitPoints": 260, - "defenseLevel": 8, - "attackLevel": 8, - "level": 42, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 55000, - "attackStats": { - "crush": 12, - "slash": 28, - "stab": 19, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 18, - "slash": 28, - "stab": 18, - "archery": 14, - "magic": 3 - }, - "bonuses": { - "accuracy": 4, - "strength": 6, - "archery": 0, - "magic": 0 - } - }, - - "hongcheol": { - "name": "Hong Chul", - "hitPoints": 1550, - "defenseLevel": 15, - "attackLevel": 15, - "level": 100, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 15, - "slash": 12, - "stab": 11, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 15, - "slash": 15, - "stab": 15, - "archery": 15, - "magic": 15 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "icegolem": { - "name": "Ice Golem", - "hitPoints": 700, - "defenseLevel": 9, - "attackLevel": 5, - "level": 46, - "aggroRange": 5, - "attackRange": 7, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "projectileName": "iceball", - "freezing": true, - "attackStats": { - "crush": 10, - "slash": 5, - "stab": 6, - "archery": 0, - "magic": 35 - }, - "defenseStats": { - "crush": 13, - "slash": 27, - "stab": 18, - "archery": 18, - "magic": 39 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 9 - } - }, - - "iceknight": { - "name": "Ice Knight", - "hitPoints": 550, - "defenseLevel": 12, - "attackLevel": 8, - "level": 37, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 25, - "slash": 38, - "stab": 33, - "archery": 0, - "magic": 8 - }, - "defenseStats": { - "crush": 9, - "slash": 22, - "stab": 30, - "archery": 28, - "magic": -15 - }, - "bonuses": { - "accuracy": 9, - "strength": 11, - "archery": 0, - "magic": 8 - } - }, - - "icevulture": { - "name": "Ice Vulture", - "description": "It's like a frozen version of the vicious bird I've seen before.", - "hitPoints": 300, - "defenseLevel": 1, - "attackLevel": 3, - "level": 38, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 18, - "slash": 33, - "stab": 30, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 34, - "slash": 27, - "stab": 21, - "archery": -10, - "magic": -17 - }, - "bonuses": { - "accuracy": 12, - "strength": 0, - "archery": 0, - "magic": 7 - } - }, - - "infectedguard": { - "name": "Infected Guard", - "hitPoints": 750, - "defenseLevel": 18, - "attackLevel": 30, - "level": 61, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 18, - "slash": 34, - "stab": 32, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 16, - "slash": 20, - "stab": 22, - "archery": -9, - "magic": -12 - }, - "bonuses": { - "accuracy": -15, - "strength": 12, - "archery": 0, - "magic": 0 - } - }, - - "ironogre": { - "name": "Iron Ogre", - "hitPoints": 300, - "defenseLevel": 5, - "attackLevel": 4, - "level": 20, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 10, - "stab": 9, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 24, - "slash": 15, - "stab": 13, - "archery": 12, - "magic": -4 - }, - "bonuses": { - "accuracy": 6, - "strength": 11, - "archery": 0, - "magic": 0 - } - }, - - "livingarmor": { - "name": "Living armor", - "hitPoints": 340, - "defenseLevel": 4, - "attackLevel": 1, - "level": 45, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 30, - "slash": 34, - "stab": 31, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 24, - "stab": 27, - "archery": 25, - "magic": -10 - }, - "bonuses": { - "accuracy": 8, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "mantis": { - "name": "Praying Mantis", - "hitPoints": 1000, - "defenseLevel": 7, - "attackLevel": 15, - "level": 56, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 350, - "respawnDelay": 35000, - "attackStats": { - "crush": 6, - "slash": 15, - "stab": 11, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 7, - "stab": 6, - "archery": 7, - "magic": -10 - }, - "bonuses": { - "accuracy": 3, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "mermaid": { - "name": "Mermaid", - "hitPoints": 150, - "defenseLevel": 12, - "attackLevel": 14, - "level": 40, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 115000, - "attackStats": { - "crush": 18, - "slash": 20, - "stab": 22, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 22, - "slash": 17, - "stab": 5, - "archery": 19, - "magic": 10 - }, - "bonuses": { - "accuracy": 8, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "mimic": { - "name": "Mimic", - "hitPoints": 1200, - "defenseLevel": 12, - "attackLevel": 8, - "level": 25, - "aggroRange": 1, - "attackRange": 1, - "alwaysAggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "hiddenName": true, - "roamingDistance": 12, - "attackStats": { - "crush": 18, - "slash": 17, - "stab": 15, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 22, - "slash": 18, - "stab": 10, - "archery": -10, - "magic": 12 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "miniiceknight1": { - "name": "Mini Ice Knight", - "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", - "hitPoints": 1100, - "defenseLevel": 44, - "attackLevel": 23, - "level": 144, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 12, - "slash": 18, - "stab": 21, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -3, - "slash": 14, - "stab": 19, - "archery": 12, - "magic": 18 - }, - "bonuses": { - "accuracy": 5, - "strength": 0, - "archery": 0, - "magic": 3 - } - }, - - "miniiceknight2": { - "name": "Mini Ice Knight", - "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", - "hitPoints": 1100, - "defenseLevel": 44, - "attackLevel": 23, - "level": 144, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 12, - "slash": 18, - "stab": 21, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -3, - "slash": 14, - "stab": 19, - "archery": 12, - "magic": 18 - }, - "bonuses": { - "accuracy": 5, - "strength": 0, - "archery": 0, - "magic": 3 - } - }, - - "miniiceknight3": { - "name": "Mini Ice Knight", - "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", - "hitPoints": 1100, - "defenseLevel": 44, - "attackLevel": 23, - "level": 144, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 12, - "slash": 18, - "stab": 21, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -3, - "slash": 14, - "stab": 19, - "archery": 12, - "magic": 18 - }, - "bonuses": { - "accuracy": 5, - "strength": 0, - "archery": 0, - "magic": 3 - } - }, - - "miniiceknight4": { - "name": "Mini Ice Knight", - "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", - "hitPoints": 1100, - "defenseLevel": 44, - "attackLevel": 23, - "level": 144, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 12, - "slash": 18, - "stab": 21, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -3, - "slash": 14, - "stab": 19, - "archery": 12, - "magic": 18 - }, - "bonuses": { - "accuracy": 5, - "strength": 0, - "archery": 0, - "magic": 3 - } - }, - - "miniiceknight5": { - "name": "Mini Ice Knight", - "description": "It's a little teeny tiny knight in a little teeny tiny suit of armor.", - "hitPoints": 1100, - "defenseLevel": 44, - "attackLevel": 23, - "level": 144, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 12, - "slash": 18, - "stab": 21, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -3, - "slash": 14, - "stab": 19, - "archery": 12, - "magic": 18 - }, - "bonuses": { - "accuracy": 5, - "strength": 0, - "archery": 0, - "magic": 3 - } - }, - - "miniknight1": { - "name": "Mini Knight", - "description": "A little ferocious tiny knight that might actually hurt me.", - "hitPoints": 950, - "defenseLevel": 23, - "attackLevel": 25, - "level": 116, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "miniknight2": { - "name": "Mini Knight", - "description": "A little ferocious tiny knight that might actually hurt me.", - "hitPoints": 950, - "defenseLevel": 23, - "attackLevel": 25, - "level": 116, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "miniknight3": { - "name": "Mini Knight", - "description": "A little ferocious tiny knight that might actually hurt me.", - "hitPoints": 950, - "defenseLevel": 23, - "attackLevel": 25, - "level": 116, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "miniknight4": { - "name": "Mini Knight", - "description": "A little ferocious tiny knight that might actually hurt me.", - "hitPoints": 950, - "defenseLevel": 23, - "attackLevel": 25, - "level": 116, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "miniknight5": { - "name": "Mini Knight", - "description": "A little ferocious tiny knight that might actually hurt me.", - "hitPoints": 950, - "defenseLevel": 23, - "attackLevel": 25, - "level": 116, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "miniknight6": { - "name": "Mini Knight", - "description": "A little ferocious tiny knight that might actually hurt me.", - "hitPoints": 950, - "defenseLevel": 23, - "attackLevel": 25, - "level": 116, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "miniemperor": { - "name": "Mini Emperor", - "description": "It looks like the leader of this band of mini knights.", - "hitPoints": 3950, - "defenseLevel": 93, - "attackLevel": 75, - "level": 316, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "achievement": "miniemperor", - "respawnDelay": 35000, - "attackStats": { - "crush": 54, - "slash": 49, - "stab": 94, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -18, - "slash": 78, - "stab": 54, - "archery": 82, - "magic": 40 - }, - "bonuses": { - "accuracy": 15, - "strength": 24, - "archery": 0, - "magic": 18 - } - }, - - "oldogre": { - "name": "Old Ogre", - "description": "He's old, and balding, but still dangerous.", - "hitPoints": 256, - "defenseLevel": 5, - "attackLevel": 1, - "level": 23, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 22, - "slash": 18, - "stab": 16, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 25, - "slash": 17, - "stab": -8, - "archery": -3, - "magic": 12 - }, - "bonuses": { - "accuracy": -3, - "strength": 10, - "archery": 0, - "magic": -5 - } - }, - - "orc": { - "name": "Orc", - "hitPoints": 275, - "defenseLevel": 5, - "attackLevel": 4, - "level": 47, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 18, - "stab": 20, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 15, - "slash": 25, - "stab": 14, - "archery": 24, - "magic": -6 - }, - "bonuses": { - "accuracy": 4, - "strength": 8, - "archery": 0, - "magic": 0 - } - }, - - "pain": { - "name": "Infected Villager", - "hitPoints": 1550, - "defenseLevel": 5, - "attackLevel": 1, - "level": 73, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 3, - "stab": 5, - "archery": 4, - "magic": 2 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "penguin": { - "name": "Penguin", - "hitPoints": 526, - "defenseLevel": 4, - "attackLevel": 1, - "level": 41, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 1, - "slash": 1, - "stab": 1, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 3, - "slash": 3, - "stab": 2, - "archery": 3, - "magic": 4 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "pierrot": { - "name": "Clown", - "hitPoints": 150, - "defenseLevel": 30, - "attackLevel": 15, - "level": 12, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 8, - "slash": 11, - "stab": 12, - "archery": 0, - "magic": 15 - }, - "defenseStats": { - "crush": 18, - "slash": 30, - "stab": 30, - "archery": 26, - "magic": 14 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "pinkelf": { - "name": "Pink Elf", - "description": "A pink elf, it's pink, what else do you want to know.", - "hitPoints": 925, - "defenseLevel": 28, - "attackLevel": 24, - "level": 123, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "preta": { - "name": "Preta", - "hitPoints": 495, - "defenseLevel": 1, - "attackLevel": 7, - "level": 36, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 21, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 12 - }, - "defenseStats": { - "crush": 17, - "slash": 19, - "stab": 21, - "archery": 18, - "magic": -10 - }, - "bonuses": { - "accuracy": -4, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "purplepreta": { - "name": "Purple Preta", - "hitPoints": 431, - "defenseLevel": 1, - "attackLevel": 6, - "level": 31, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 18, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 9 - }, - "defenseStats": { - "crush": 14, - "slash": 11, - "stab": 16, - "archery": 10, - "magic": -12 - }, - "bonuses": { - "accuracy": -5, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "greencockroach": { - "name": "Blue Cockroach", - "description": "Ew, a cockroach.", - "hitPoints": 785, - "defenseLevel": 5, - "attackLevel": 0, - "level": 55, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 11, - "stab": 12, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -15, - "slash": 27, - "stab": 25, - "archery": 26, - "magic": -14 - }, - "bonuses": { - "accuracy": 0, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "redcockroach": { - "name": "Red Cockroach", - "hitPoints": 669, - "defenseLevel": 10, - "attackLevel": 5, - "level": 44, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 300, - "respawnDelay": 45000, - "attackStats": { - "crush": 12, - "slash": 9, - "stab": 10, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -17, - "slash": 25, - "stab": 22, - "archery": 23, - "magic": -15 - }, - "bonuses": { - "accuracy": 0, - "strength": 8, - "archery": 0, - "magic": 0 - } - }, - - "redelf": { - "name": "Red Elf", - "description": "It's an elf, and it is red, kinda looks like the developer ran out of assets.", - "hitPoints": 850, - "defenseLevel": 35, - "attackLevel": 25, - "level": 110, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "guardsword": { - "name": "Guard", - "hitPoints": 625, - "defenseLevel": 30, - "attackLevel": 25, - "level": 47, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 21, - "slash": 25, - "stab": 25, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 21, - "slash": 30, - "stab": 14, - "archery": 18, - "magic": 12 - }, - "bonuses": { - "accuracy": 0, - "strength": 3, - "archery": 0, - "magic": 0 - } - }, - - "guardmace": { - "name": "Guard", - "hitPoints": 625, - "defenseLevel": 30, - "attackLevel": 28, - "level": 45, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 23, - "slash": 28, - "stab": 28, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 21, - "slash": 30, - "stab": 14, - "archery": 18, - "magic": 12 - }, - "bonuses": { - "accuracy": 0, - "strength": 3, - "archery": 0, - "magic": 0 - } - }, - - "redguard": { - "name": "Bandit", - "hitPoints": 335, - "defenseLevel": 10, - "attackLevel": 5, - "level": 44, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 19, - "slash": 28, - "stab": 17, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 20, - "slash": 40, - "stab": 9, - "archery": 12, - "magic": -4 - }, - "bonuses": { - "accuracy": 4, - "strength": 12, - "archery": 0, - "magic": 0 - } - }, - - "redmouse": { - "name": "Red Mouse", - "hitPoints": 160, - "defenseLevel": 1, - "attackLevel": 1, - "level": 24, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 12, - "stab": 16, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -10, - "slash": -5, - "stab": 0, - "archery": 5, - "magic": -15 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "rhaphidophoridae": { - "name": "Cricket", - "hitPoints": 3500, - "defenseLevel": 5, - "attackLevel": 10, - "level": 93, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 25, - "stab": 12, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -10, - "slash": 12, - "stab": 10, - "archery": 10, - "magic": -18 - }, - "bonuses": { - "accuracy": 2, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "rudolf": { - "name": "Raindeer", - "hitPoints": 5550, - "defenseLevel": 10, - "attackLevel": 15, - "level": 129, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 20, - "slash": 0, - "stab": 16, - "archery": 0, - "magic": 14 - }, - "defenseStats": { - "crush": 16, - "slash": 25, - "stab": 22, - "archery": -18, - "magic": 30 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 10 - } - }, - - "santaelf": { - "name": "Santa's Elf", - "hitPoints": 610, - "defenseLevel": 15, - "attackLevel": 35, - "level": 136, - "aggroRange": 1, - "attackRange": 1, - "alwaysAggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 18, - "stab": 18, - "archery": 0, - "magic": 22 - }, - "defenseStats": { - "crush": -20, - "slash": 17, - "stab": 22, - "archery": 27, - "magic": 24 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 30 - } - }, - - "scorpion": { - "name": "Scorpion", - "hitPoints": 2700, - "defenseLevel": 10, - "attackLevel": 15, - "level": 80, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawDelay": 35000, - "attackStats": { - "crush": 18, - "slash": 10, - "stab": 20, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -10, - "slash": 12, - "stab": 15, - "archery": 15, - "magic": -13 - }, - "bonuses": { - "accuracy": -5, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "skyelf": { - "name": "Sky Elf", - "description": "An elf that lives in the sky... What is it doing here?", - "hitPoints": 1000, - "defenseLevel": 36, - "attackLevel": 26, - "level": 134, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "slime": { - "name": "Slime", - "description": "Why does every game have a slime in it?", - "hitPoints": 694, - "defenseLevel": 42, - "attackLevel": 10, - "level": 48, - "aggroRange": 3, - "attackRange": 6, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "poisonous": true, - "projectileName": "poisonball", - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 46, - "magic": 0 - }, - "defenseStats": { - "crush": 24, - "slash": 30, - "stab": 19, - "archery": 30, - "magic": -12 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 10, - "magic": 0 - } - }, - - "smalldevil": { - "name": "Corrupted Bat", - "hitPoints": 100, - "defenseLevel": 3, - "attackLevel": 5, - "level": 13, - "aggroRange": 2, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 6, - "stab": 4, - "archery": 0, - "magic": 2 - }, - "defenseStats": { - "crush": 5, - "slash": -3, - "stab": 2, - "archery": 2, - "magic": -7 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "snowelf": { - "name": "Snow Elf", - "description": "A magical tiny elf from the snow realm.", - "hitPoints": 920, - "defenseLevel": 20, - "attackLevel": 25, - "level": 99, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 19, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -8, - "slash": 18, - "stab": 24, - "archery": 22, - "magic": 20 - }, - "bonuses": { - "accuracy": 5, - "strength": 4, - "archery": 0, - "magic": 0 - } - }, - - "snowman": { - "name": "Snowman", - "description": "A magical snowman from the snow realm.", - "hitPoints": 750, - "defenseLevel": 3, - "attackLevel": 3, - "level": 43, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 10, - "slash": 7, - "stab": 0, - "archery": 0, - "magic": 5 - }, - "defenseStats": { - "crush": -10, - "slash": 8, - "stab": 11, - "archery": 0, - "magic": -15 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 8 - } - }, - -"snowman2": { - "name": "Snowman", - "description": "I wonder if it'll be resilient to fire.", - "hitPoints": 850, - "defenseLevel": 23, - "attackLevel": 33, - "level": 93, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 15, - "slash": 12, - "stab": 0, - "archery": 0, - "magic": 10 - }, - "defenseStats": { - "crush": -10, - "slash": 10, - "stab": 13, - "archery": 0, - "magic": -15 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 10 - } - }, - - "rabbitman": { - "name": "The Rabbit Man", - "description": "A dude... dressed as a rabbit... why?", - "hitPoints": 385, - "defenseLevel": 8, - "attackLevel": 6, - "level": 37, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 7, - "stab": 8, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 10, - "slash": -6, - "stab": -8, - "archery": -5, - "magic": -10 - }, - "bonuses": { - "accuracy": 0, - "strength": -5, - "archery": 0, - "magic": 0 - } - }, - - "snowrabbit": { - "name": "Snow Rabbit", - "hitPoints": 340, - "defenseLevel": 4, - "attackLevel": 5, - "level": 29, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 7, - "stab": 4, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -10, - "slash": 3, - "stab": 4, - "archery": 0, - "magic": -2 - }, - "bonuses": { - "accuracy": 5, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "snowwolf": { - "name": "Snow Wolf", - "description": "I really expected the wolf to be made out of snow :(", - "hitPoints": 1185, - "defenseLevel": 8, - "attackLevel": 3, - "level": 55, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 10, - "slash": 15, - "stab": 8, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 10, - "slash": 7, - "stab": 8, - "archery": -2, - "magic": -5 - }, - "bonuses": { - "accuracy": 0, - "strength": 5, - "archery": 0, - "magic": 0 - } - }, - - "icegoblin": { - "name": "Frost Goblin", - "hitPoints": 475, - "defenseLevel": 3, - "attackLevel": 8, - "level": 28, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 8, - "stab": 10, - "archery": 0, - "magic": 5 - }, - "defenseStats": { - "crush": -6, - "slash": 8, - "stab": 7, - "archery": 7, - "magic": -5 - }, - "bonuses": { - "accuracy": 4, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "soldierant": { - "name": "Soldier Ant", - "hitPoints": 526, - "defenseLevel": 42, - "attackLevel": 28, - "level": 60, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 30, - "slash": 0, - "stab": 26, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -16, - "slash": 32, - "stab": 36, - "archery": 28, - "magic": -25 - }, - "bonuses": { - "accuracy": 0, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "soybeanbug": { - "name": "Soy Bean Bug", - "hitPoints": 3500, - "defenseLevel": 30, - "attackLevel": 15, - "level": 103, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 17, - "slash": 11, - "stab": 10, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -12, - "slash": 27, - "stab": 15, - "archery": 12, - "magic": -15 - }, - "bonuses": { - "accuracy": 0, - "strength": 8, - "archery": 0, - "magic": 0 - } - }, - - "suicideghost": { - "name": "Ghost", - "hitPoints": 750, - "defenseLevel": 1, - "attackLevel": 5, - "level": 62, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 12 - }, - "defenseStats": { - "crush": 15, - "slash": 15, - "stab": 15, - "archery": 15, - "magic": -17 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 4 - } - }, - - "vulture": { - "name": "Vulture", - "hitPoints": 100, - "defenseLevel": 5, - "attackLevel": 1, - "level": 16, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 5, - "slash": 8, - "stab": 12, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 10, - "slash": 10, - "stab": 8, - "archery": -5, - "magic": -8 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "whitebear": { - "name": "Molar Bear", - "hitPoints": 1300, - "defenseLevel": 7, - "attackLevel": 10, - "level": 42, - "aggroRange": 2, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 24, - "slash": 21, - "stab": 16, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 20, - "slash": 14, - "stab": 16, - "archery": 9, - "magic": -20 - }, - "bonuses": { - "accuracy": 0, - "strength": 7, - "archery": 0, - "magic": 0 - } - }, - - "whitemouse": { - "name": "Mouse", - "hitPoints": 750, - "defenseLevel": 16, - "attackLevel": 3, - "level": 45, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 11, - "stab": 8, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -12, - "slash": 10, - "stab": 8, - "archery": 6, - "magic": -14 - }, - "bonuses": { - "accuracy": 2, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "whitetiger": { - "name": "Tiger", - "hitPoints": 3350, - "defenseLevel": 1, - "attackLevel": 15, - "level": 98, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 28, - "slash": 33, - "stab": 24, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 31, - "slash": 27, - "stab": 25, - "archery": 20, - "magic": -11 - }, - "bonuses": { - "accuracy": 6, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "wolf": { - "name": "Wolf", - "hitPoints": 350, - "defenseLevel": 3, - "attackLevel": 12, - "level": 55, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 14, - "slash": 28, - "stab": 12, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 18, - "slash": 10, - "stab": 29, - "archery": 14, - "magic": -6 - }, - "bonuses": { - "accuracy": 4, - "strength": 8, - "archery": 0, - "magic": 0 - } - }, - - "darkwolf": { - "name": "Dark Wolf", - "hitPoints": 850, - "defenseLevel": 33, - "attackLevel": 45, - "level": 118, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 375, - "respawnDelay": 75000, - "attackStats": { - "crush": 24, - "slash": 38, - "stab": 22, - "archery": 0, - "magic": 5 - }, - "defenseStats": { - "crush": 28, - "slash": 20, - "stab": 39, - "archery": 24, - "magic": -6 - }, - "bonuses": { - "accuracy": 7, - "strength": 12, - "archery": 0, - "magic": 0 - } - }, - - "yellowbat": { - "name": "Mutated Bat", - "hitPoints": 350, - "defenseLevel": 30, - "attackLevel": 15, - "level": 16, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 6, - "stab": 4, - "archery": 0, - "magic": 2 - }, - "defenseStats": { - "crush": -12, - "slash": 10, - "stab": 8, - "archery": 6, - "magic": -14 - }, - "bonuses": { - "accuracy": 2, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "yellowmouse": { - "name": "Yellow Mouse", - "hitPoints": 750, - "defenseLevel": 3, - "attackLevel": 1, - "level": 39, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 8, - "stab": 6, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -14, - "slash": 8, - "stab": 6, - "archery": 5, - "magic": -14 - }, - "bonuses": { - "accuracy": 1, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "yellowpreta": { - "name": "Yellow Preta", - "hitPoints": 526, - "defenseLevel": 4, - "attackLevel": 4, - "level": 39, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 22, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 13 - }, - "defenseStats": { - "crush": 18, - "slash": 20, - "stab": 22, - "archery": 19, - "magic": -10 - }, - "bonuses": { - "accuracy": -3, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "zombie": { - "name": "Zombie", - "hitPoints": 1250, - "defenseLevel": 1, - "attackLevel": 1, - "level": 69, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 43, - "slash": 14, - "stab": 18, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 38, - "slash": 30, - "stab": 14, - "archery": 10, - "magic": -10 - }, - "bonuses": { - "accuracy": 8, - "strength": 18, - "archery": 0, - "magic": 0 - } - - }, - - "skeletonking": { - "name": "Skeleton King", - "description": "Here he is, the chad of r/neverbrokeabone.", - "hitPoints": 1850, - "defenseLevel": 35, - "attackLevel": 27, - "level": 32, - "aggroRange": 5, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 900, - "movementSpeed": 420, - "respawnDelay": 80000, - "plugin": "skeletonking", - "boss": true, - "roamDistance": 16, - "achievement": "skeletonking", - "attackStats": { - "crush": 20, - "slash": 35, - "stab": 33, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 20, - "slash": 37, - "stab": 40, - "archery": 38, - "magic": 18 - }, - "bonuses": { - "accuracy": 15, - "strength": 10, - "archery": 0, - "magic": 0 - } - - }, - - "ogrelord": { - "name": "Ogre Lord", - "description": "I better keep a distance before this thing turns me into a stew!", - "hitPoints": 2850, - "defenseLevel": 40, - "attackLevel": 38, - "level": 44, - "aggroRange": 12, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 420, - "respawnDelay": 90000, - "roamingDistance": 16, - "plugin": "ogrelord", - "boss": true, - "achievement": "ogrelord", - "attackStats": { - "crush": 47, - "slash": 36, - "stab": 30, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 44, - "slash": 26, - "stab": 33, - "archery": 25, - "magic": 18 - }, - "bonuses": { - "accuracy": 0, - "strength": 17, - "archery": 0, - "magic": 0 - } - - }, - - "hellhound": { - "name": "Hellhound", - "description": "I better keep a distance before this thing turns me into a stew!", - "hitPoints": 4550, - "defenseLevel": 80, - "attackLevel": 58, - "level": 344, - "aggroRange": 12, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1000, - "movementSpeed": 420, - "respawnDelay": 90000, - "roamingDistance": 16, - "projectileName": "yellowlightning", - "plugin": "hellhound", - "boss": true, - "achievement": "hellhound", - "attackStats": { - "crush": 120, - "slash": 140, - "stab": 160, - "archery": 100, - "magic": 100 - }, - "defenseStats": { - "crush": 160, - "slash": 120, - "stab": 130, - "archery": 50, - "magic": 130 - }, - "bonuses": { - "accuracy": 50, - "strength": 50, - "archery": 20, - "magic": 40 - } - }, - - "windguardian": { - "name": "Wind Guardian", - "hitPoints": 15000, - "defenseLevel": 40, - "attackLevel": 100, - "projectileName": "iceball", - "level": 195, - "aggroRange": 3, - "attackRange": 6, - "aggressive": true, - "roaming": true, - "attackRate": 1300, - "movementSpeed": 500, - "respawnDelay": 95000, - "attackStats": { - "crush": 85, - "slash": 104, - "stab": 112, - "archery": 0, - "magic": 97 - }, - "defenseStats": { - "crush": 80, - "slash": 85, - "stab": 97, - "archery": 93, - "magic": 65 - }, - "bonuses": { - "accuracy": 25, - "strength": 18, - "archery": 0, - "magic": 10 - } - }, - - "lightningguardian": { - "name": "Lightning Guardian", - "hitPoints": 4500, - "defenseLevel": 25, - "attackLevel": 35, - "level": 64, - "aggroRange": 6, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1750, - "movementSpeed": 600, - "respawnDelay": 95000, - "attackStats": { - "crush": 45, - "slash": 54, - "stab": 62, - "archery": 0, - "magic": 67 - }, - "defenseStats": { - "crush": 40, - "slash": 45, - "stab": 57, - "archery": 53, - "magic": 35 - }, - "bonuses": { - "accuracy": 5, - "strength": 7, - "archery": 0, - "magic": 12 - } - }, - - "darkregion": { - "name": "Tenebris", - "hitPoints": 4000, - "defenseLevel": 20, - "attackLevel": 40, - "level": 79, - "aggroRange": 5, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1500, - "movementSpeed": 600, - "respawnDelay": 95000, - "attackStats": { - "crush": 30, - "slash": 24, - "stab": 26, - "archery": 0, - "magic": 50 - }, - "defenseStats": { - "crush": 33, - "slash": 36, - "stab": 35, - "archery": 35, - "magic": 20 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 12 - } - }, - - "darkregionillusion": { - "name": "Tenebris", - "hitPoints": 500, - "defenseLevel": 4, - "attackLevel": 5, - "level": 79, - "aggroRange": 8, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1300, - "movementSpeed": 800, - "respawnDelay": -1, - "attackStats": { - "crush": 6, - "slash": 4, - "stab": 5, - "archery": 0, - "magic": 9 - }, - "defenseStats": { - "crush": 3, - "slash": 6, - "stab": 5, - "archery": 5, - "magic": 2 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 5 - } - }, - - "miniseadragon": { - "name": "Mini Sea Dragon", - "description": "Aww it's a little version of something that's gonna stomp me later!", - "hitPoints": 1200, - "defenseLevel": 22, - "attackLevel": 15, - "level": 52, - "aggroRange": 6, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1500, - "movementSpeed": 450, - "respawnDelay": 95000, - "attackStats": { - "crush": 48, - "slash": 52, - "stab": 51, - "archery": 0, - "magic": 55 - }, - "defenseStats": { - "crush": 61, - "slash": 66, - "stab": 60, - "archery": 54, - "magic": 30 - }, - "bonuses": { - "accuracy": 9, - "strength": 0, - "archery": 0, - "magic": 8 - } - - }, - - "forestdragon": { - "name": "Forest Dragon", - "description": "Keros' favourite pet!", - "hitPoints": 6942, - "defenseLevel": 80, - "attackLevel": 100, - "level": 258, - "aggroRange": 10, - "attackRange": 1, - "alwaysAggressive": true, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 600, - "respawnDelay": 180000, - "projectileName": "fireball", - "achievement": "forestdragon", - "plugin": "forestdragon", - "attackStats": { - "crush": 110, - "slash": 128, - "stab": 133, - "archery": 0, - "magic": 136 - }, - "defenseStats": { - "crush": 160, - "slash": 120, - "stab": 130, - "archery": 50, - "magic": 130 - }, - "bonuses": { - "accuracy": 50, - "strength": 50, - "archery": 20, - "magic": 40 - } - }, - - "enel": { - "name": "Lucendi", - "hitPoints": 25000, - "defenseLevel": 150, - "attackLevel": 120, - "level": 256, - "aggroRange": 2, - "attackRange": 2, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 800, - "respawnDelay": 95000, - "attackStats": { - "crush": 130, - "slash": 158, - "stab": 163, - "archery": 0, - "magic": 186 - }, - "defenseStats": { - "crush": 190, - "slash": 155, - "stab": 156, - "archery": 163, - "magic": 180 - }, - "bonuses": { - "accuracy": 70, - "strength": 60, - "archery": 30, - "magic": 80 - } - }, - - "seadragon": { - "name": "Sea Dragon", - "hitPoints": 100, - "defenseLevel": 5, - "attackLevel": 10, - "level": 485, - "aggroRange": 4, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1500, - "movementSpeed": 600, - "respawnDelay": 95000, - "attackStats": { - "crush": 82, - "slash": 77, - "stab": 78, - "archery": 0, - "magic": 85 - }, - "defenseStats": { - "crush": 100, - "slash": 95, - "stab": 88, - "archery": 95, - "magic": 80 - }, - "bonuses": { - "accuracy": 48, - "strength": 52, - "archery": 0, - "magic": 60 - } - - }, - - "minidragon": { - "name": "Mini Dragon", - "hitPoints": 380, - "defenseLevel": 5, - "attackLevel": 15, - "level": 77, - "aggroRange": 5, - "attackRange": 9, - "aggressive": true, - "roaming": true, - "attackRate": 1500, - "movementSpeed": 600, - "respawnDelay": 95000, - "projectileName": "fireball", - "attackStats": { - "crush": 0, - "slash": 22, - "stab": 25, - "archery": 0, - "magic": 30 - }, - "defenseStats": { - "crush": 22, - "slash": 18, - "stab": 15, - "archery": 14, - "magic": 10 - }, - "bonuses": { - "accuracy": 0, - "strength": 6, - "archery": 0, - "magic": 12 - } - - }, - - "queenant": { - "name": "Queen Ant", - "hitPoints": 4200, - "defenseLevel": 85, - "attackLevel": 70, - "level": 94, - "aggroRange": 14, - "attackRange": 1, - "alwaysAggressive": true, - "roaming": true, - "attackRate": 1500, - "roamDistance": 12, - "movementSpeed": 600, - "projectileName": "terror", - "respawnDelay": 80000, - "healRate": 1000, - "achievement": "queenant", - "plugin": "queenant", - "attackStats": { - "crush": 80, - "slash": 72, - "stab": 77, - "archery": 0, - "magic": 78 - }, - "defenseStats": { - "crush": 100, - "slash": 140, - "stab": 120, - "archery": 40, - "magic": 60 - }, - "bonuses": { - "accuracy": 0, - "strength": 20, - "archery": 0, - "magic": 0 - } - }, - - "skydinosaur": { - "name": "Fulgur", - "hitPoints": 50000, - "defenseLevel": 400, - "attackLevel": 200, - "level": 435, - "aggroRange": 4, - "attackRange": 2, - "aggressive": true, - "roaming": true, - "attackRate": 1800, - "movementSpeed": 500, - "respawnDelay": 95000, - "attackStats": { - "crush": 170, - "slash": 185, - "stab": 180, - "archery": 0, - "magic": 150 - }, - "defenseStats": { - "crush": 190, - "slash": 165, - "stab": 160, - "archery": 156, - "magic": 150 - }, - "bonuses": { - "accuracy": 52, - "strength":65, - "archery": 0, - "magic": 68 - } - }, - - "squid": { - "name": "Great Squid", - "hitPoints": 2800, - "defenseLevel": 45, - "attackLevel": 30, - "level": 71, - "aggroRange": 7, - "attackRange": 4, - "aggressive": true, - "projectileName": "terror", - "roaming": true, - "attackRate": 1300, - "movementSpeed": 1200, - "respawnDelay": 95000, - "attackStats": { - "crush": 40, - "slash": 47, - "stab": 45, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 43, - "slash": 38, - "stab": 30, - "archery": 28, - "magic": 10 - }, - "bonuses": { - "accuracy": 15, - "strength": 10, - "archery": 0, - "magic": 0 - } - }, - - "snowlady": { - "name": "Queen of Snow", - "hitPoints": 2800, - "defenseLevel": 10, - "attackLevel": 90, - "level": 180, - "aggroRange": 7, - "attackRange": 4, - "aggressive": true, - "projectileName": "iceball", - "roaming": true, - "attackRate": 1300, - "movementSpeed": 1200, - "respawnDelay": 95000, - "attackStats": { - "crush": 60, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 65 - }, - "defenseStats": { - "crush": 33, - "slash": 58, - "stab": 60, - "archery": 59, - "magic": 20 - }, - "bonuses": { - "accuracy": 10, - "strength": 20, - "archery": 0, - "magic": 30 - } - }, - - "frostqueen": { - "name": "Frost Queen", - "hitPoints": 2800, - "defenseLevel": 10, - "attackLevel": 90, - "level": 180, - "aggroRange": 7, - "attackRange": 4, - "aggressive": true, - "projectileName": "iceball", - "roaming": true, - "attackRate": 1300, - "movementSpeed": 1200, - "respawnDelay": 95000, - "attackStats": { - "crush": 0, - "slash": 50, - "stab": 58, - "archery": 60, - "magic": 65 - }, - "defenseStats": { - "crush": 43, - "slash": 62, - "stab": 65, - "archery": 59, - "magic": 22 - }, - "bonuses": { - "accuracy": 10, - "strength": 20, - "archery": 0, - "magic": 30 - } - }, - - "eliminator": { - "name": "Eliminator", - "hitPoints": 2000, - "defenseLevel": 45, - "attackLevel": 30, - "level": 65, - "aggroRange": 7, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 500, - "respawnDelay": 95000, - "attackStats": { - "crush": 44, - "slash": 47, - "stab": 49, - "archery": 41, - "magic": 0 - }, - "defenseStats": { - "crush": 38, - "slash": 50, - "stab": 48, - "archery": 49, - "magic": 30 - }, - "bonuses": { - "accuracy": 15, - "strength": 13, - "archery": 0, - "magic": 0 - } - }, - - "santa": { - "name": "Santa", - "hitPoints": 7500, - "defenseLevel": 95, - "attackLevel": 105, - "level": 240, - "aggroRange": 18, - "attackRange": 16, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 500, - "respawnDelay": 180000, - "projectileName": "gift", - "plugin": "santa", - "roamingDistance": 16, - "attackStats": { - "crush": 145, - "slash": 120, - "stab": 137, - "archery": 0, - "magic": 150 - }, - "defenseStats": { - "crush": 160, - "slash": 152, - "stab": 145, - "archery": 140, - "magic": 120 - }, - "bonuses": { - "accuracy": 54, - "strength": 80, - "archery": 0, - "magic": 63 - } - - }, - - "brownmouse": { - "name": "Brown Mouse", - "hitPoints": 140, - "defenseLevel": 1, - "attackLevel": 1, - "level": 22, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 400, - "respawnDelay": 35000, - "attackStats": { - "crush": 0, - "slash": 12, - "stab": 16, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": -10, - "slash": -5, - "stab": 0, - "archery": 5, - "magic": -15 - }, - "bonuses": { - "accuracy": 0, - "strength": 0, - "archery": 0, - "magic": 0 - } - }, - - "picklemob": { - "name": "Sea Cucumber", - "hitPoints": 1250, - "defenseLevel": 34, - "attackLevel": 35, - "level": 88, - "aggroRange": 4, - "attackRange": 10, - "alwaysAggressive": true, - "roaming": true, - "attackRate": 1300, - "movementSpeed": 1000, - "respawnDelay": 65000, - "projectileName": "terror", - "attackStats": { - "crush": 37, - "slash": 0, - "stab": 0, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 30, - "slash": 21, - "stab": 19, - "archery": 17, - "magic": 15 - }, - "bonuses": { - "accuracy": 0, - "strength": 5, - "archery": 0, - "magic": 0 - } - }, - - "icerat": { - "name": "Ice Rat", - "hitPoints": 710, - "defenseLevel": 2, - "attackLevel": 5, - "level": 80, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 1500, - "movementSpeed": 500, - "respawnDelay": 10000, - "attackStats": { - "crush": 18, - "slash": 29, - "stab": 30, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 18, - "slash": 24, - "stab": 15, - "archery": 18, - "magic": -15 - }, - "bonuses": { - "accuracy": 15, - "strength": 16, - "archery": 0, - "magic": 0 - } - }, - - "icebat": { - "name": "Frozen Bat", - "hitPoints": 825, - "defenseLevel": 22, - "attackLevel": 26, - "level": 86, - "aggroRange": 1, - "attackRange": 1, - "aggressive": true, - "roaming": true, - "attackRate": 1100, - "movementSpeed": 350, - "respawnDelay": 20000, - "attackStats": { - "crush": 18, - "slash": 29, - "stab": 34, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 18, - "slash": 29, - "stab": 30, - "archery": 20, - "magic": -15 - }, - "bonuses": { - "accuracy": 19, - "strength": 18, - "archery": 0, - "magic": 0 - } - }, - - "icecrab": { - "name": "Ice Crab", - "hitPoints": 860, - "defenseLevel": 22, - "attackLevel": 27, - "level": 89, - "aggroRange": 1, - "attackRange": 1, - "aggressive": false, - "roaming": true, - "attackRate": 1200, - "movementSpeed": 300, - "respawnDelay": 20000, - "attackStats": { - "crush": 20, - "slash": 31, - "stab": 34, - "archery": 0, - "magic": 0 - }, - "defenseStats": { - "crush": 21, - "slash": 29, - "stab": 32, - "archery": 20, - "magic": -15 - }, - "bonuses": { - "accuracy": 19, - "strength": 19, - "archery": 0, - "magic": 0 - } - } } diff --git a/packages/server/data/npcs.json b/packages/server/data/npcs.json index ad5117b198..a4d4f3b7be 100644 --- a/packages/server/data/npcs.json +++ b/packages/server/data/npcs.json @@ -1,291 +1,469 @@ { - "king": { - "name": "King", - "text": ["Welcome to the kingdom of Kaetram!", "You have travelled long and far, and for that you have my respect."] - }, - - "king2": { - "name": "King" - }, - - "villagegirl": { - "name": "Wife", - "text": ["Please, call me Azaria."] - }, - - "villagegirl2": { - "name": "Village Girl", - "text": ["Hope you're having a good day!"] - }, - - "villagegirl3": { - "name": "Another Village Girl", - "text": ["How's yous doings?"] - }, - - "villager": { - "name": "Forester", - "text": ["Good day to you!"], - "store": "forester" - }, - - "miner": { - "name": "Miner", - "text": ["Leave me alone, I'm busy pretending to work!"], - "store": "miner" - }, - - "beachnpc": { - "name": "Bubba", - "text": [ - "Well, thanks for the help.", - "Not really doing much but thanks regardless.", - "Though I did hear some crunbling east of here, a cave might've opened up.", - "This might just be an urban legend but it is said that an entire", - "underworld exists beneath the surface of this beach."] - }, - - "agent": { - "name": "Secret Agent", - "text": [ - "Hello there, would you be so kind as to assist me?", - "It seems I have stumbled upon this strange phenomenon.", - "You see, this cave I am heavily guarding appears to be", - "exhibiting a warm-hole like situation.", - "Regardless, I feel its best to send a stup-", - "I mean, brave adventurer in there rather than me." - ] - }, - - "nyan": { - "name": "Nyan Cat (Stale Meme)" - }, - - "rick": { - "name": "Rick" - }, - - "priest": { - "name": "Priest" - }, - - "guard": { - "name": "Guard", - "text": ["We're seriously busy at the moment."] - }, - - "guard2": { - "name": "Royal Guard", - "text": ["Any form of defiance will be met with death."] - }, - - "scientist": { - "name": "Scientist" - }, - - "desertnpc": { - "name": "Billey" - }, - - "lavanpc": { - "name": "Dying Soldier", - "text": ["Thank you for all your help. I will perish in your absence."] - }, - - "boxingman": { - "name": "Mike Tyson", - "text": ["Woosh."] - }, - - "vampire": { - "name": "Vampire" - }, - - "doctor": { - "name": "Doctor", - "text": ["I'm a doctor, not a magician."] - }, - - "oddeyecat": { - "name": "Odd-Eyed Cat" - }, - - "sorcerer": { - "name": "Sorcerer", - "store": "sorcerer" - }, - - "coder": { - "name": "Programmer", - "text": ["Oh.. This is awkward...", "You may be wondering why I'm here as well.", "Well just letting you know..", - "It's definitely not because we're running low on pixel art..", "Regardless.. If you want to join the community", - "Our Discord is available here!"] - }, - - "forestnpc": { - "name": "Forester" - }, - - "octocat": { - "name": "Octocat", - "text": ["Hey there!", + "king": { + "name": "King", + "text": [ + "Welcome to the kingdom of Kaetram!", + "You have travelled long and far, and for that you have my respect." + ] + }, + + "king2": { + "name": "King" + }, + + "prisoner": { + "name": "Prisoner", + "text": [ + "Oh hey there, it's been so long since I've seen a new face.", + "I've been trapped here for ages.", + "But you'll probably be fine to be honest.", + "I'm guessing you did something to get in here?", + "Let me let you in on a little secret.", + "This whole world is a prison.", + "I don't even think it's real.", + "I think it's just a simulation.", + "I think we're all just a simulation.", + "I think I'm just a simulation.", + "I think you're just a simulation.", + "Anyway, hang in there and when your time runs out,", + "You can just teleport back.", + "As for me, I'll stay here...", + "Forever..." + ] + }, + + "villagegirl": { + "name": "Wife", + "text": ["Please, call me Azaria."] + }, + + "villagegirl2": { + "name": "Village Girl", + "text": ["Hope you're having a good day!"] + }, + + "villagegirl3": { + "name": "Another Village Girl", + "text": ["How's yous doings?"] + }, + + "villagegirl4": { + "name": "Another Village Girl", + "text": ["How's yous doings?"] + }, + + "villagegirl5": { + "name": "Yet Another Village Girl", + "text": ["How's yous doings?"] + }, + + "villagegirl6": { + "name": "Just Village Girl", + "text": ["How's yous doings?"] + }, + + "villagegirl7": { + "name": "Village Girl", + "text": ["How's yous doings?"] + }, + + "forestnpc": { + "name": "Forester", + "text": ["Good day to you!"], + "store": "forester" + }, + + "miner": { + "name": "Miner", + "text": ["Leave me alone, I'm busy pretending to work!"], + "store": "miner" + }, + + "miner2": { + "name": "Yet Another Miner", + "text": ["Leave me alone, I'm busy pretending to work!"], + "store": "miner" + }, + + "beachnpc": { + "name": "Bubba", + "text": [ + "Well, thanks for the help.", + "Not really doing much but thanks regardless.", + "Though I did hear some crunbling east of here, a cave might've opened up.", + "This might just be an urban legend but it is said that an entire", + "underworld exists beneath the surface of this beach." + ] + }, + + "agent": { + "name": "Secret Agent", + "text": [ + "Hello there, would you be so kind as to assist me?", + "It seems I have stumbled upon this strange phenomenon.", + "You see, this cave I am heavily guarding appears to be", + "exhibiting a warm-hole like situation.", + "Regardless, I feel its best to send a stup-", + "I mean, brave adventurer in there rather than me." + ] + }, + + "nyan": { + "name": "Nyan Cat (Stale Meme)" + }, + + "rick": { + "name": "Rick", + "text": [ + "We're no strangers to love...", + "You know the rules and so do I...", + "A full commitment's what I'm thinking of...", + "You wouldn't get this from any other guy...", + "I just wanna tell you how I'm feeling...", + "Gotta make you understand...", + "Never gonna give you up...", + "Never gonna let you down...", + "Never gonna run around and desert you...", + "Never gonna make you cry...", + "Never gonna say goodbye...", + "Never gonna tell a lie and hurt you...", + "We've known each other for so long...", + "Your heart's been aching but you're too shy to say it...", + "Inside we both know what's been going on...", + "We know the game and we're gonna play it...", + "And if you ask me how I'm feeling...", + "Don't tell me you're too blind to see...", + "Never gonna give you up...", + "Never gonna let you down...", + "Never gonna run around and desert you...", + "Never gonna make you cry...", + "Never gonna say goodbye...", + "Never gonna tell a lie and hurt you...", + "Never gonna give you up...", + "Never gonna let you down...", + "Never gonna run around and desert you...", + "Never gonna make you cry...", + "Never gonna say goodbye...", + "Never gonna tell a lie and hurt you...", + "Never gonna give, never gonna give...", + "(Give you up)", + "(Ooh) Never gonna give, never gonna give...", + "(Give you up)", + "We've known each other for so long...", + "Your heart's been aching but you're too shy to say it...", + "Inside we both know what's been going on..." + ] + }, + + "rick2": { + "name": "Rick", + "text": [ + "We're no strangers to love...", + "You know the rules and so do I...", + "A full commitment's what I'm thinking of...", + "You wouldn't get this from any other guy...", + "I just wanna tell you how I'm feeling...", + "Gotta make you understand...", + "Never gonna give you up...", + "Never gonna let you down...", + "Never gonna run around and desert you...", + "Never gonna make you cry...", + "Never gonna say goodbye...", + "Never gonna tell a lie and hurt you...", + "We've known each other for so long...", + "Your heart's been aching but you're too shy to say it...", + "Inside we both know what's been going on...", + "We know the game and we're gonna play it...", + "And if you ask me how I'm feeling...", + "Don't tell me you're too blind to see...", + "Never gonna give you up...", + "Never gonna let you down...", + "Never gonna run around and desert you...", + "Never gonna make you cry...", + "Never gonna say goodbye...", + "Never gonna tell a lie and hurt you...", + "Never gonna give you up...", + "Never gonna let you down...", + "Never gonna run around and desert you...", + "Never gonna make you cry...", + "Never gonna say goodbye...", + "Never gonna tell a lie and hurt you...", + "Never gonna give, never gonna give...", + "(Give you up)", + "(Ooh) Never gonna give, never gonna give...", + "(Give you up)", + "We've known each other for so long...", + "Your heart's been aching but you're too shy to say it...", + "Inside we both know what's been going on..." + ] + }, + + "priest": { + "name": "Priest" + }, + + "guard": { + "name": "Guard", + "text": ["We're seriously busy at the moment."] + }, + + "guard2": { + "name": "Royal Guard", + "text": ["Any form of defiance will be met with death."] + }, + + "scientist": { + "name": "Scientist" + }, + + "madscientist": { + "name": "Mad Scientisto" + }, + + "desertnpc": { + "name": "Billey" + }, + + "lavanpc": { + "name": "Dying Soldier", + "text": ["Thank you for all your help. I will perish in your absence."] + }, + + "boxingman": { + "name": "Bike Lyson", + "text": ["Woosh."] + }, + + "vampire": { + "name": "Vampire" + }, + + "doctor": { + "name": "Doctor", + "text": ["I'm a doctor, not a magician."] + }, + + "oddeyecat": { + "name": "Odd-Eyed Cat" + }, + + "sorcerer": { + "name": "Sorcerer", + "store": "sorcerer" + }, + + "coder": { + "name": "Programmer", + "text": [ + "Well well, hello there. Seems you managed to esca- I mean,", + "find your way out of that tutorial.", + "Listen, your first task should be to discover the world around you.", + "Why don't you go talk to the villagers for starters?", + "After that, maybe we can look into getting you some tasks to do." + ] + }, + + "villager": { + "name": "Villager", + "text": ["Howdy!"] + }, + + "villager2": { + "name": "Villager", + "text": ["Howdy!"] + }, + + "villager3": { + "name": "Villager", + "text": ["Howdy!"] + }, + + "villager4": { + "name": "Villager", + "text": ["Howdy!"] + }, + + "octocat": { + "name": "Octocat", + "text": [ + "Hey there!", "I am the Octocat, the programmer and I", "are very well acquainted.", "In case you did not know, Kaetram is completely open-source.", - "You can check out the source on GitHub!"] - }, - - "soldier": { - "name": "Soldier" - }, - - "fisherman": { - "name": "Fisherman", - "store": "fishingstore" - }, - - "octopus": { - "name": "Octopus" - }, - - "mermaidnpc": { - "name": "Mermaid" - }, - - "sponge": { - "name": "Sponge" - }, - - "fairynpc": { - "name": "Fairy" - }, - - "shepherdboy": { - "name": "Shepherd Boy" - }, - - "zombiegf": { - "name": "Zombie Girlfriend" - }, - - "pirategirlnpc": { - "name": "Pirate Girl", - "text": ["Hi"] - }, - - "bluebikinigirlnpc": { - "name": "Pretzel" - }, - - "redbikinigirlnpc": { - "name": "Flaris" - }, - - "iamverycoldnpc": { - "name": "Babushka", - "store": "ingredientsstore" - }, - - "iceelfnpc": { - "name": "Ice Elf" - }, - - "elfnpc": { - "name": "Elf" - }, - - "snowshepherdboy": { - "name": "Sherpa", - "text": ["Hello dear adventurer!", "Hope you're enjoying the beautiful sights!"] - }, - - "angelnpc": { - "name": "Angel" - }, - - "momangelnpc": { - "name": "Archangel" - }, - - "superiorangelnpc": { - "name": "Mentor" - }, - - "firstsonangelnpc": { - "name": "Angel" - }, - - "secondsonangelnpc": { - "name": "Superior Angel" - }, - - "mojojojonpc": { - "name": "Monky" - }, - - "ancientmanumentnpc": { - "name": "Ancient Monument" - }, - - "vendingmachine": { - "name": "Enchantment Vendor", - "role": "enchanter" - }, - - "redstoremannpc": { - "name": "Banker", - "role": "banker" - }, - - "purplestoremannpc": { - "name": "Kosmetics Vendor", - "store": "cosmetics" - }, - - "bluestoremannpc": { - "name": "Clerk", - "store": "startshop" - }, - - "royalguard": { - "name": "Royal Guard", - "text": ["There shall be no trespassing!"] - }, - - "royalguard2": { - "name": "Royal Guard", - "text": ["There shall be no trespassing!"] - }, - - "royalguard3": { - "name": "Royal Guard", - "text": ["There shall be no trespassing!"] - }, - - "picklenpc": { - "name": "Sea Cucumber" - }, - - "guildnpc": { - "name": "Guild Master" - }, - - "santaelfnpc": { - "name": "Santa's Helper", - "text": ["What do you want? I'm busy being overworked."] - }, - - "oldlady": { - "name": "Old Lady", - "text": ["Hello there dear adventurer!", "Make sure you're careful on your adventures."] - }, - - "oldlady2": { - "name": "Old Lady" - }, - - "ratnpc": { - "name": "Rat", - "text": ["Squeak!"] - } + "You can check out the source on GitHub!" + ] + }, + + "soldier": { + "name": "Soldier" + }, + + "fisherman": { + "name": "Fisherman", + "store": "fishingstore" + }, + + "octopus": { + "name": "Octopus" + }, + + "mermaidnpc": { + "name": "Mermaid" + }, + + "sponge": { + "name": "Sponge" + }, + + "fairynpc": { + "name": "Fairy" + }, + + "shepherdboy": { + "name": "Shepherd Boy" + }, + + "zombiegf": { + "name": "Zombie Girlfriend" + }, + + "pirategirlnpc": { + "name": "Pirate Girl", + "text": ["Hi"] + }, + + "bluebikinigirlnpc": { + "name": "Pretzel" + }, + + "redbikinigirlnpc": { + "name": "Flaris" + }, + + "iamverycoldnpc": { + "name": "Babushka", + "store": "ingredientsstore" + }, + + "iceelfnpc": { + "name": "Ice Elf" + }, + + "elfnpc": { + "name": "Elf" + }, + + "snowshepherdboy": { + "name": "Sherpa", + "text": ["Hello dear adventurer!", "Hope you're enjoying the beautiful sights!"] + }, + + "angelnpc": { + "name": "Angel" + }, + + "momangelnpc": { + "name": "Archangel" + }, + + "superiorangelnpc": { + "name": "Mentor" + }, + + "firstsonangelnpc": { + "name": "Angel" + }, + + "secondsonangelnpc": { + "name": "Superior Angel" + }, + + "mojojojonpc": { + "name": "Monky" + }, + + "ancientmanumentnpc": { + "name": "Ancient Monument" + }, + + "vendingmachine": { + "name": "Enchantment Vendor", + "role": "enchanter" + }, + + "redstoremannpc": { + "name": "Banker", + "role": "banker" + }, + + "purplestoremannpc": { + "name": "Kosmetics Vendor", + "store": "cosmetics" + }, + + "bluestoremannpc": { + "name": "Clerk", + "store": "startshop" + }, + + "royalguard": { + "name": "Royal Guard", + "text": ["There shall be no trespassing!"] + }, + + "royalguard2": { + "name": "Royal Guard", + "text": ["There shall be no trespassing!"] + }, + + "royalguard3": { + "name": "Royal Guard", + "text": ["There shall be no trespassing!"] + }, + + "picklenpc": { + "name": "Sea Cucumber" + }, + + "guildnpc": { + "name": "Guild Master" + }, + + "santaelfnpc": { + "name": "Santa's Helper", + "text": ["What do you want? I'm busy being overworked."] + }, + + "oldlady": { + "name": "Old Lady", + "text": ["Hello there dear adventurer!", "Make sure you're careful on your adventures."] + }, + + "oldlady2": { + "name": "Old Lady" + }, + + "ratnpc": { + "name": "Rat", + "text": ["Squeak!"] + }, + + "blacksmith": { + "name": "Blacksmith", + "text": ["Hi!"] + }, + + "blacksmith2": { + "name": "Blacksmith", + "text": ["Hi!"] + }, + + "herbalist": { + "name": "Herby Mc. Herb", + "text": ["Hi!"] + }, + "rickgf": { + "name": "Lena", + "text": ["Oh, it's been so long since I've seen another soul.", "Have you seen my love, Rick?"] + } } diff --git a/packages/server/data/plugins/items/blackpotion.ts b/packages/server/data/plugins/items/blackpotion.ts index a63aef88cb..cad46c3544 100644 --- a/packages/server/data/plugins/items/blackpotion.ts +++ b/packages/server/data/plugins/items/blackpotion.ts @@ -1,9 +1,11 @@ +import { t } from '@kaetram/common/i18n'; + import type { Plugin } from '.'; import type Player from '@kaetram/server/src/game/entity/character/player/player'; export default class BlackPotion implements Plugin { public onUse(player: Player): boolean { - player.notify(`You drink the black potion and start feeling unwell.`); + player.notify(t('misc:BLACK_POTION')); setTimeout(() => player.hit(player.hitPoints.getHitPoints() - 1), 5000); diff --git a/packages/server/data/plugins/items/chisel.ts b/packages/server/data/plugins/items/chisel.ts new file mode 100644 index 0000000000..7c2ef9c558 --- /dev/null +++ b/packages/server/data/plugins/items/chisel.ts @@ -0,0 +1,17 @@ +import { Modules } from '@kaetram/common/network'; + +import type { Plugin } from '.'; +import type Player from '@kaetram/server/src/game/entity/character/player/player'; + +export default class Chisel implements Plugin { + public onUse(player: Player): boolean { + if (player.inCombat()) { + player.notify(`You cannot activate the fletching menu while in combat.`); + return false; + } + + player.world.crafting.open(player, Modules.Skills.Chiseling); + + return true; + } +} diff --git a/packages/server/data/plugins/items/effectpotion.ts b/packages/server/data/plugins/items/effectpotion.ts index df03854be3..f6079eb2cd 100644 --- a/packages/server/data/plugins/items/effectpotion.ts +++ b/packages/server/data/plugins/items/effectpotion.ts @@ -30,19 +30,47 @@ export default class EffectPotion implements Plugin { private getEffect(): Modules.Effects { switch (this.effect) { case 'accuracy': { - return Modules.Effects.AccuracyPotion; + return Modules.Effects.AccuracyBuff; } case 'strength': { - return Modules.Effects.StrengthPotion; + return Modules.Effects.StrengthBuff; } case 'defense': { - return Modules.Effects.DefensePotion; + return Modules.Effects.DefenseBuff; + } + + case 'magic': { + return Modules.Effects.MagicBuff; + } + + case 'archery': { + return Modules.Effects.ArcheryBuff; + } + + case 'accuracysuper': { + return Modules.Effects.AccuracySuperBuff; + } + + case 'strengthsuper': { + return Modules.Effects.StrengthSuperBuff; + } + + case 'defensesuper': { + return Modules.Effects.DefenseSuperBuff; + } + + case 'magicsuper': { + return Modules.Effects.MagicSuperBuff; + } + + case 'archerysuper': { + return Modules.Effects.ArcherySuperBuff; } default: { - return Modules.Effects.StrengthPotion; + return Modules.Effects.StrengthBuff; } } } diff --git a/packages/server/data/plugins/items/index.ts b/packages/server/data/plugins/items/index.ts index a985f1709b..782f1ce007 100644 --- a/packages/server/data/plugins/items/index.ts +++ b/packages/server/data/plugins/items/index.ts @@ -5,6 +5,7 @@ import hotsauce from './hotsauce'; import snowpotion from './snowpotion'; import firepotion from './firepotion'; import knife from './knife'; +import chisel from './chisel'; import effectpotion from './effectpotion'; import type Player from '@kaetram/server/src/game/entity/character/player/player'; @@ -21,5 +22,6 @@ export default { snowpotion, firepotion, knife, + chisel, effectpotion }; diff --git a/packages/server/data/plugins/mobs/default.ts b/packages/server/data/plugins/mobs/default.ts index 55269e2a33..5e3253ef2f 100644 --- a/packages/server/data/plugins/mobs/default.ts +++ b/packages/server/data/plugins/mobs/default.ts @@ -1,5 +1,5 @@ import { Modules } from '@kaetram/common/network'; -import { Spawn } from '@kaetram/common/network/impl'; +import { SpawnPacket } from '@kaetram/common/network/impl'; import Formulas from '@kaetram/server/src/info/formulas'; import Hit from '@kaetram/server/src/game/entity/character/combat/hit'; import Handler from '@kaetram/server/src/game/entity/character/mob/handler'; @@ -28,10 +28,10 @@ export default class Default extends Handler { protected attackAll(hitType = Modules.Hits.Normal, aoe = this.mob.aoe): void { this.mob.forEachAttacker((attacker: Character) => { - let hit = new Hit(hitType, Formulas.getDamage(this.mob, attacker), true, aoe), + let hit = new Hit(hitType, Formulas.getDamage(this.mob, attacker), true, aoe, true), projectile = this.world.entities.spawnProjectile(this.mob, attacker, hit); - this.mob.sendToRegions(new Spawn(projectile)); + this.mob.sendToRegions(new SpawnPacket(projectile)); }); } diff --git a/packages/server/data/plugins/mobs/hellhound.ts b/packages/server/data/plugins/mobs/hellhound.ts index 1b8a2dd98d..be4bea774b 100644 --- a/packages/server/data/plugins/mobs/hellhound.ts +++ b/packages/server/data/plugins/mobs/hellhound.ts @@ -10,8 +10,8 @@ const MAX_MINIONS = 8; export default class Hellhound extends Default { // Positions where minions will spawn. private positions: Position[] = [ - { x: 963, y: 668 }, - { x: 948, y: 666 } + { x: 1059, y: 765 }, + { x: 1047, y: 768 } ]; private minionsSpawned = 0; diff --git a/packages/server/data/plugins/mobs/ogrelord.ts b/packages/server/data/plugins/mobs/ogrelord.ts index 7698782480..99d02f3c67 100644 --- a/packages/server/data/plugins/mobs/ogrelord.ts +++ b/packages/server/data/plugins/mobs/ogrelord.ts @@ -13,10 +13,10 @@ export default class OgreLord extends Default { ]; private positions: Position[] = [ - { x: 240, y: 65 }, - { x: 248, y: 65 }, - { x: 240, y: 70 }, - { x: 248, y: 70 } + { x: 338, y: 160 }, + { x: 346, y: 164 }, + { x: 342, y: 169 }, + { x: 335, y: 164 } ]; // Waves of minions the boss spawns. @@ -85,6 +85,8 @@ export default class OgreLord extends Default { let minion = super.spawn(key, position.x, position.y), target = super.getTarget(); + minion.roamDistance = 24; + // Have the minions attack one of the boss' attackers. if (target) minion.combat.attack(target); } diff --git a/packages/server/data/plugins/mobs/piratecaptain.ts b/packages/server/data/plugins/mobs/piratecaptain.ts index ef3f7f3ddf..3bc4359f34 100644 --- a/packages/server/data/plugins/mobs/piratecaptain.ts +++ b/packages/server/data/plugins/mobs/piratecaptain.ts @@ -1,7 +1,6 @@ import Default from './default'; import Utils from '@kaetram/common/util/utils'; -import { Teleport } from '@kaetram/common/network/impl'; import type Mob from '@kaetram/server/src/game/entity/character/mob/mob'; import type Character from '@kaetram/server/src/game/entity/character/character'; @@ -16,17 +15,17 @@ export default class PirateCaptain extends Default { private lastPickedTeleport: Position = { x: 0, y: 0 }; private teleportSpots: Position[] = [ - { x: 822, y: 649 }, - { x: 825, y: 659 }, - { x: 836, y: 659 }, - { x: 834, y: 649 } + { x: 935, y: 743 }, + { x: 930, y: 755 }, + { x: 920, y: 753 }, + { x: 918, y: 743 } ]; private minionSpots: Position[] = [ - { x: 826, y: 651 }, - { x: 837, y: 650 }, - { x: 835, y: 657 }, - { x: 824, y: 654 } + { x: 923, y: 745 }, + { x: 931, y: 746 }, + { x: 929, y: 754 }, + { x: 923, y: 752 } ]; public constructor(mob: Mob) { @@ -43,6 +42,7 @@ export default class PirateCaptain extends Default { for (let minion of Object.values(this.minions)) minion.deathCallback?.(); this.minionsSpawned = 0; + this.mob.attackRange = 1; } /** @@ -70,7 +70,7 @@ export default class PirateCaptain extends Default { // Stop all players from attacking the pirate captain. this.mob.world.cleanCombat(this.mob); - this.mob.attackRange = 14; + this.mob.attackRange = 11; // Update the position and teleport the captain with an animation. this.mob.teleport(position.x, position.y, true); @@ -88,7 +88,7 @@ export default class PirateCaptain extends Default { target = super.getTarget(); // Pick a random target from the attackers // Update the roam distance for minions (so they don't go back to spawn point). - minion.roamDistance = this.mob.roamDistance; + minion.roamDistance = 20; // Set the target for the minion. if (target) minion.combat.attack(target); diff --git a/packages/server/data/plugins/mobs/queenant.ts b/packages/server/data/plugins/mobs/queenant.ts index bf129667ab..0645a516c3 100644 --- a/packages/server/data/plugins/mobs/queenant.ts +++ b/packages/server/data/plugins/mobs/queenant.ts @@ -7,7 +7,7 @@ import { Modules } from '@kaetram/common/network'; import type Character from '@kaetram/server/src/game/entity/character/character'; import type Mob from '@kaetram/server/src/game/entity/character/mob/mob'; -import type { RawData } from '@kaetram/common/types/mob'; +import type { RawMobData } from '@kaetram/common/types/mob'; export default class QueenAnt extends Default { private positions: Position[]; @@ -65,7 +65,7 @@ export default class QueenAnt extends Default { minion.onDeathImpl(() => { if (Object.keys(this.minions).length > 0) return; - this.mob.attackRate = (Mobs as RawData)[this.mob.key].attackRate!; + this.mob.attackRate = (Mobs as RawMobData)[this.mob.key].attackRate!; }); } @@ -86,7 +86,7 @@ export default class QueenAnt extends Default { for (let minion of Object.values(this.minions)) minion.deathCallback?.(); this.minionsSpawned = false; - this.mob.attackRate = (Mobs as RawData)[this.mob.key].attackRate!; + this.mob.attackRate = (Mobs as RawMobData)[this.mob.key].attackRate!; } /** diff --git a/packages/server/data/plugins/mobs/skeletonking.ts b/packages/server/data/plugins/mobs/skeletonking.ts index a3e3333fe6..431ca323e6 100644 --- a/packages/server/data/plugins/mobs/skeletonking.ts +++ b/packages/server/data/plugins/mobs/skeletonking.ts @@ -10,8 +10,8 @@ const MAX_MINIONS = 6; export default class SkeletonKing extends Default { // Two positions where the minions will spawn. private positions: Position[] = [ - { x: 22, y: 684 }, - { x: 28, y: 684 } + { x: 139, y: 782 }, + { x: 125, y: 785 } ]; private minionsSpawned = 0; @@ -63,7 +63,7 @@ export default class SkeletonKing extends Default { target = super.getTarget(); // Minions have the same roaming distance as the skeleton king. - minion.roamDistance = this.mob.roamDistance; + minion.roamDistance = 24; if (target) minion.combat.attack(target); diff --git a/packages/server/data/quest_bases/bowmastersrequest.json b/packages/server/data/quest_bases/bowmastersrequest.json new file mode 100644 index 0000000000..ba379d5605 --- /dev/null +++ b/packages/server/data/quest_bases/bowmastersrequest.json @@ -0,0 +1,41 @@ +{ + "name": "The Grand Bowmaster's Request", + "description": "The Grand Bowmaster requires a special bow, one that's beyond ordinary. Help him craft the legendary Moonlit Bow.", + "rewards": ["Moonlit Bow Blueprint", "2500 Fletching experience"], + "skillRequirements": { + "fletching": 30 + }, + "stages": { + "0": { + "task": "talk", + "npc": "bowmaster", + "text": [ + "Adventurer! I need a bow made from the elusive Moonwood Tree.", + "Will you aid me in this endeavor?" + ], + "completedText": ["Seek the Moonwood Tree in the Midnight Grove."] + }, + "1": { + "task": "collect", + "itemRequirements": [{ "key": "moonwood", "count": 10 }], + "completedText": ["Return to the Bowmaster with the Moonwood."] + }, + "2": { + "task": "talk", + "npc": "bowmaster", + "hasItemText": ["Ah, perfect! With this, I can teach you to craft the Moonlit Bow."], + + "skillRewards": [ + { + "key": "fletching", + "experience": 2500 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You've been awarded @crimson@2500 Fletching experience@green@ and the @crimson@Moonlit Bow Blueprint@green@.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/codedmessage.json b/packages/server/data/quest_bases/codedmessage.json new file mode 100644 index 0000000000..1533ab3961 --- /dev/null +++ b/packages/server/data/quest_bases/codedmessage.json @@ -0,0 +1,45 @@ +{ + "name": "The Coded Message", + "description": "Decipher the mysterious scroll.", + "rewards": ["500 Gold", "Scholar's Ring"], + "stages": { + "0": { + "task": "talk", + "npc": "oldscholar", + "text": [ + "Ah, young traveler! I've found this old scroll, but I can't seem to decode its message.", + "It might lead to an ancient treasure. Will you assist me?" + ], + "completedText": ["Please decipher the coded scroll.", "I believe it hides a clue."] + }, + "1": { + "task": "decode", + "item": "mysteriousscroll", + "completedText": ["Once decoded, return to me with the message."] + }, + "2": { + "task": "talk", + "npc": "oldscholar", + "hasItemText": [ + "Fascinating! This indeed is a map. Let's find this treasure together!", + "Follow the clues and retrieve what's hidden." + ], + "completedText": ["Return once you have found the treasure."] + }, + "3": { + "task": "explore", + "location": "ancientruins", + "findItem": "ancientartifact", + "completedText": ["Return to the scholar with the artifact."] + }, + "4": { + "task": "talk", + "npc": "oldscholar", + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@The Coded Message@green@ quest and received @crimson@500 Gold@green@ and a @crimson@Scholar's Ring@green@.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/coralcrisis.json b/packages/server/data/quest_bases/coralcrisis.json new file mode 100644 index 0000000000..3ebaa43a85 --- /dev/null +++ b/packages/server/data/quest_bases/coralcrisis.json @@ -0,0 +1,80 @@ +{ + "name": "Coral Crisis", + "description": "Mirela, a concerned mermaid, needs your assistance.|The coral reefs in the underwater world are dying. Mirela believes a dark sorcerer is poisoning the waters and has sought your help to put an end to this malevolent act.", + "rewards": ["1500 gold", "coralcrown"], + "stages": { + "0": { + "task": "talk", + "npc": "mirela", + "text": [ + "Adventurer! It's a relief to see you!", + "The corals are dying and I believe it's no natural occurrence.", + "I suspect a dark sorcerer is poisoning the waters. Can you help?" + ], + "completedText": ["You must investigate the situation!"] + }, + "1": { + "task": "talk", + "npc": "darksorcerer", + "text": [ + "Heh! The little mermaid sent you?", + "Yes, I poisoned the water, and no, you can't stop me.", + "But if you're so eager to try, meet me at the Forbidden Caves!" + ], + "completedText": ["Prove yourself, if you dare!"] + }, + "2": { + "task": "kill", + "mob": ["darkminions"], + "mobCountRequirement": 3 + }, + "3": { + "task": "talk", + "npc": "mirela", + "text": [ + "You did it! The water seems to be purifying.", + "But we need the purecoralessence to fully heal the corals. Can you get it?" + ], + "completedText": ["Find the purecoralessence in the Shimmering Grotto."] + }, + "4": { + "task": "talk", + "npc": "guardianofgrotto", + "text": [ + "Seeking the purecoralessence, are you?", + "To earn it, you must prove your worth by defeating me!" + ], + "completedText": ["Prepare for battle!"] + }, + "5": { + "task": "kill", + "mob": ["guardianofgrotto"], + "mobCountRequirement": 1 + }, + "6": { + "task": "talk", + "npc": "mirela", + "itemRequirements": [ + { + "key": "purecoralessence", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "gold", + "count": 1500 + }, + { + "key": "coralcrown", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Coral Crisis@green@. You have gained 1500 gold and a Coral Crown!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/crystalsofyontil.json b/packages/server/data/quest_bases/crystalsofyontil.json new file mode 100644 index 0000000000..0d205c19a9 --- /dev/null +++ b/packages/server/data/quest_bases/crystalsofyontil.json @@ -0,0 +1,38 @@ +{ + "name": "Crystals of Yontil", + "description": "Mystic ores have been discovered deep within the Yontil Mines. Excavate and learn their secrets.", + "rewards": ["Access to Mystic Ore", "3500 Mining experience"], + "skillRequirements": { + "mining": 40 + }, + "stages": { + "0": { + "task": "talk", + "npc": "oldminer", + "text": ["Adventurer! The Yontil Mines hold mystic ores.", "I'll guide you if you can fetch them for me."], + "completedText": ["Descend into Yontil Mines."] + }, + "1": { + "task": "collect", + "itemRequirements": [{ "key": "mysticore", "count": 5 }], + "completedText": ["Bring the Mystic Ores to the old miner."] + }, + "2": { + "task": "talk", + "npc": "oldminer", + "hasItemText": ["You've done it! This ore is precious. Here's how you can best utilize it."], + + "skillRewards": [ + { + "key": "mining", + "experience": 3500 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You've gained @crimson@Mystic Ore Knowledge@green@ and @crimson@3500 Mining experience@green@.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/culinarymysteries.json b/packages/server/data/quest_bases/culinarymysteries.json new file mode 100644 index 0000000000..bc490b0fb5 --- /dev/null +++ b/packages/server/data/quest_bases/culinarymysteries.json @@ -0,0 +1,76 @@ +{ + "name": "Culinary Mysteries", + "description": "Chef Gustavo is known across the land for his delicious dishes. However, he's hit a roadblock trying to recreate a historic recipe. Can you help him solve this culinary conundrum?", + "rewards": ["Chef's Special Apron", "2500 Cooking experience"], + "skillRequirements": { + "cooking": 20 + }, + "stages": { + "0": { + "task": "talk", + "npc": "chefgustavo", + "text": [ + "Ah, a fellow cooking enthusiast! I've recently discovered an ancient recipe", + "that I've been trying to recreate. But it's missing some ingredients.", + "The recipe calls for a rare Moonlit Mushroom. Would you be able to fetch it for me?" + ], + "completedText": [ + "Have you found the Moonlit Mushroom?", + "It's crucial to the dish I'm trying to recreate." + ] + }, + "1": { + "task": "talk", + "npc": "chefgustavo", + "hasItemText": [ + "Ah, the Moonlit Mushroom! Fantastic! But there's one more thing...", + "The recipe mentions a 'secret spice'. No one seems to know what it is.", + "However, old tales speak of a hermit living atop the snowy peaks who", + "might have knowledge about this. Could you consult him?" + ], + "itemRequirements": [ + { + "key": "moonlitmushroom", + "count": 1 + } + ] + }, + "2": { + "task": "talk", + "npc": "snowyhermit", + "text": [ + "Ah, Chef Gustavo's 'secret spice'. It's not a spice at all!", + "It's the dried petal of a Frozen Rose, found deep within these mountains.", + "Retrieve it, and the recipe will be complete." + ], + "completedText": ["The Frozen Rose is a rare flower.", "Take care when searching for it."] + }, + "3": { + "task": "talk", + "npc": "chefgustavo", + "hasItemText": [ + "The Frozen Rose petal! The final ingredient!", + "Now, watch as I create culinary history...", + "Thank you, dear adventurer. For your help, I bestow upon you", + "the Chef's Special Apron. May it aid you in all your culinary endeavors!" + ], + "itemRequirements": [ + { + "key": "frozenrosepetal", + "count": 1 + } + ], + "skillRewards": [ + { + "key": "cooking", + "experience": 2500 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Culinary Mysteries@green@. You've been awarded @crimson@2500@green@ Cooking experience and a @crimson@Chef's Special Apron@green@!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/dynastiesofthedeep.json b/packages/server/data/quest_bases/dynastiesofthedeep.json new file mode 100644 index 0000000000..101a287816 --- /dev/null +++ b/packages/server/data/quest_bases/dynastiesofthedeep.json @@ -0,0 +1,79 @@ +{ + "name": "Dynasties of the Deep", + "description": "Underwater politics.|The sea cucumber, a former antagonist, is actually King Cucumis of the Seaweed Dynasty. He needs your help to strengthen ties with the other underwater royal families and possibly uncover a conspiracy.", + "rewards": ["royalseal", "5000 gold"], + "stages": { + "0": { + "task": "talk", + "npc": "kingcucumis", + "text": [ + "Ah, it's you again. Our previous encounter was... unfortunate.", + "I need an outsider's help, someone uninvolved in our politics.", + "Three other royal families rule these waters with me. Can you act as my envoy?" + ], + "completedText": ["Meet with representatives of the three royal families."] + }, + "1": { + "task": "talk", + "npc": "princesscoral", + "text": [ + "Greetings, envoy of King Cucumis. I am Princess Coral of the Reef Dynasty.", + "A clandestine group opposes the unity of our families.", + "Find out who they are and I shall consider an alliance." + ], + "completedText": ["Investigate the clandestine group."] + }, + "2": { + "task": "talk", + "npc": "lordkelp", + "text": [ + "I am Lord Kelp of the Tidal Dynasty. Cucumis and I have our differences.", + "Yet, a bigger threat emerges from the abyss.", + "Retrieve a dark pearl from the abyss, and I'll hear your plea." + ], + "completedText": ["Retrieve the dark pearl from the abyss."] + }, + "3": { + "task": "talk", + "npc": "ladybubbles", + "text": [ + "Oh, hello! I'm Lady Bubbles of the Bubble Dynasty.", + "A secret tryst between two families might lead to war.", + "Discover which families, and I shall align with King Cucumis." + ], + "completedText": ["Discover the families involved in the secret tryst."] + }, + "4": { + "task": "talk", + "npc": "clandestinemember", + "text": [ + "You've uncovered our plan! Yet, we only wish for equal power among families.", + "Convince the king to a council, where all voices are heard, and conflict will cease." + ], + "completedText": ["Return to King Cucumis with the information."] + }, + "5": { + "task": "talk", + "npc": "kingcucumis", + "text": [ + "A council, you say? I've been blind, letting power dictate our paths.", + "Let's bring unity to our underwater world. Here's a reward for your invaluable aid." + ], + "itemRewards": [ + { + "key": "royalseal", + "count": 1 + }, + { + "key": "gold", + "count": 5000 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have diplomatically navigated the @crimson@Dynasties of the Deep@green@. King Cucumis awards you with the Royal Seal and 5000 gold!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/echoesoftheforge.json b/packages/server/data/quest_bases/echoesoftheforge.json new file mode 100644 index 0000000000..1fef15a006 --- /dev/null +++ b/packages/server/data/quest_bases/echoesoftheforge.json @@ -0,0 +1,122 @@ +{ + "name": "Echoes of the Forge", + "description": "The Weapon of Legends has awoken ancient evils.|The forging of the mighty weapon has inadvertently unleashed old and powerful forces. They threaten the land, and only the combined effort of Thrain and the player can quell them.", + "rewards": ["5000 gold", "legendaryarmorset"], + "stages": { + "0": { + "task": "talk", + "npc": "thrain", + "text": [ + "It seems the forging of the weapon has disturbed ancient powers.", + "Dark creatures have emerged, drawn to the weapon's energy.", + "We must find a way to contain this power before it's too late." + ], + "completedText": ["Seek the wisdom of the Oracle to find a solution."] + }, + "1": { + "task": "talk", + "npc": "oracle", + "text": [ + "The weapon you forged is both a blessing and a curse.", + "To contain its power, you must seek the Seals of Balance.", + "They are scattered in the three Temples of Equilibrium." + ], + "completedText": ["Retrieve the first Seal from the Temple of Earth."] + }, + "2": { + "task": "talk", + "npc": "earthpriest", + "text": ["You wish to claim the Seal? Prove your connection to the earth by defeating the Stone Golems."], + "completedText": ["Defeat the Stone Golems to claim the Seal."] + }, + "3": { + "task": "kill", + "mob": ["stonegolems"], + "mobCountRequirement": 5 + }, + "4": { + "task": "talk", + "npc": "earthpriest", + "text": ["You've proven your worth. Here is the Seal of Earth."], + "itemRewards": [ + { + "key": "sealofearth", + "count": 1 + } + ], + "completedText": ["Now head to the Temple of Water."] + }, + "5": { + "task": "talk", + "npc": "waterpriestess", + "text": ["To earn the Seal of Water, navigate the water maze and face the trials within."], + "completedText": ["Navigate the maze and retrieve the Seal of Water."] + }, + "6": { + "task": "talk", + "npc": "waterguardian", + "text": ["Impressive. You've made it this far. Here's the Seal of Water."], + "itemRewards": [ + { + "key": "sealofwater", + "count": 1 + } + ], + "completedText": ["Finally, proceed to the Temple of Wind."] + }, + "7": { + "task": "talk", + "npc": "windshaman", + "text": [ + "Prove your mastery of the winds by flying through the Sky Rings.", + "Once completed, the Seal of Wind is yours." + ], + "completedText": ["Fly through the Sky Rings."] + }, + "8": { + "task": "talk", + "npc": "windshaman", + "text": ["You have the heart of an eagle. The Seal of Wind is now yours."], + "itemRewards": [ + { + "key": "sealofwind", + "count": 1 + } + ], + "completedText": ["Return to Thrain with all the Seals."] + }, + "9": { + "task": "talk", + "npc": "thrain", + "itemRequirements": [ + { + "key": "sealofearth", + "count": 1 + }, + { + "key": "sealofwater", + "count": 1 + }, + { + "key": "sealofwind", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "gold", + "count": 5000 + }, + { + "key": "legendaryarmorset", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Echoes of the Forge@green@. You have gained 5000 gold and the Legendary Armor Set!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/elementalarchery.json b/packages/server/data/quest_bases/elementalarchery.json new file mode 100644 index 0000000000..4cfcca3494 --- /dev/null +++ b/packages/server/data/quest_bases/elementalarchery.json @@ -0,0 +1,84 @@ +{ + "name": "Elemental Archery", + "description": "Legends speak of arrows imbued with the essence of nature's elements. Master Archer Elandrial holds the secrets of crafting such arrows but needs assistance in gathering the components.", + "rewards": ["Ability to craft Elemental Arrows", "3000 Archery experience"], + "skillRequirements": { + "archery": 25 + }, + "stages": { + "0": { + "task": "talk", + "npc": "elandrial", + "text": [ + "Ah, a fellow archer! I've been trying to recreate the legendary elemental arrows.", + "These arrows were once used by ancient archers to battle the forces of darkness.", + "To craft these, I require special elements from the land. Will you help me?" + ], + "completedText": ["The journey won't be easy.", "Are you sure you're up for the task?"] + }, + "1": { + "task": "talk", + "npc": "elandrial", + "text": [ + "First, we'll need the 'Heart of Flame' from the Fire Pits deep within the Inferno Caverns.", + "This will be used to craft the Fire Arrows. Be cautious, the caverns are treacherous." + ], + "completedText": ["Have you retrieved the Heart of Flame?", "It's vital for crafting the Fire Arrows."] + }, + "2": { + "task": "talk", + "npc": "elandrial", + "hasItemText": [ + "Excellent work! Next, we need the 'Tear of Frost' from the Ice Spirit residing atop the Frosted Peaks.", + "With it, we can craft the Ice Arrows." + ], + "itemRequirements": [ + { + "key": "heartofflame", + "count": 1 + } + ] + }, + "3": { + "task": "talk", + "npc": "elandrial", + "hasItemText": [ + "You've proven your dedication! Now for the final element: 'Whisper of Wind'.", + "This can be found in the Whispering Woods, where the trees converse with the wind.", + "Retrieve it, and we'll have everything to craft the Wind Arrows." + ], + "itemRequirements": [ + { + "key": "tearoffrost", + "count": 1 + } + ] + }, + "4": { + "task": "talk", + "npc": "elandrial", + "hasItemText": [ + "With the Whisper of Wind, we now have all the components.", + "I'll now pass on the knowledge to craft Elemental Arrows.", + "Use them wisely, for with great power comes great responsibility." + ], + "itemRequirements": [ + { + "key": "whisperofwind", + "count": 1 + } + ], + "skillRewards": [ + { + "key": "archery", + "experience": 3000 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Elemental Archery@green@. You've been awarded @crimson@3000@green@ Archery experience and the @crimson@Ability to craft Elemental Arrows@green@!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/elementalgastronomy.json b/packages/server/data/quest_bases/elementalgastronomy.json new file mode 100644 index 0000000000..727025b914 --- /dev/null +++ b/packages/server/data/quest_bases/elementalgastronomy.json @@ -0,0 +1,89 @@ +{ + "name": "The Elemental Gastronomy", + "description": "Master Chef Elandrial seeks the ultimate ingredients.|Chef Elandrial believes that combining elements through cooking can create dishes with magical properties. To prove his theory, he seeks the assistance of a versatile adventurer to gather and craft the needed ingredients.", + "rewards": ["Elemental Dish", "Experience in Cooking, Fletching, and Magic"], + "stages": { + "0": { + "task": "talk", + "npc": "elandrial", + "text": [ + "Ah, adventurer! I've heard tales of your versatility.", + "I have a theory that fusing elemental properties in food can create something extraordinary.", + "First, I need you to explore the Frozen Caves to find the Icecap Mushroom.", + "But be wary, the caves are known to be treacherous!" + ], + "completedText": ["The Frozen Caves await.", "Seek out the Icecap Mushroom."] + }, + "1": { + "task": "talk", + "npc": "elandrial", + "hasItemText": [ + "Perfect! Now, for the next ingredient.", + "We need an arrow with fiery properties. But not just any arrow, an arrow crafted with the Feather of a Phoenix.", + "You'll need to use your fletching skills to craft this arrow." + ], + "completedText": ["Combine the Phoenix Feather with an arrow shaft.", "Craft the Fiery Phoenix Arrow."], + "itemRequirements": [ + { + "key": "icecapmushroom", + "count": 1 + } + ] + }, + "2": { + "task": "fletching", + "item": "fieryphoenixarrow", + "npc": "elandrial", + "completedText": ["Once you've crafted the Fiery Phoenix Arrow,", "return to me."] + }, + "3": { + "task": "talk", + "npc": "elandrial", + "hasItemText": [ + "Magnificent! Now, for the final touch, we will imbue this arrow with an enchantment.", + "Use your magic to cast a spell of levitation on this arrow.", + "It will become the Levitating Fiery Phoenix Arrow!" + ], + "completedText": ["Utilize your magic.", "Craft the Levitating Fiery Phoenix Arrow."], + "itemRequirements": [ + { + "key": "fieryphoenixarrow", + "count": 1 + } + ] + }, + "4": { + "task": "magic", + "spell": "levitation", + "item": "levitatingfieryphoenixarrow", + "npc": "elandrial", + "completedText": ["Once enchanted, return to me with the arrow.", "We're close to completing the dish!"] + }, + "5": { + "task": "talk", + "npc": "elandrial", + "hasItemText": [ + "This is it, adventurer! The final step.", + "Now, using your cooking skills, combine the Icecap Mushroom and the Levitating Fiery Phoenix Arrow.", + "The result will be a dish never seen before!" + ], + "completedText": ["Unite the elements through cooking.", "Create the Elemental Dish."], + "itemRequirements": [ + { + "key": "levitatingfieryphoenixarrow", + "count": 1 + } + ] + }, + "6": { + "task": "cooking", + "recipe": "elementaldish", + "npc": "elandrial", + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@The Elemental Gastronomy@green@. You've been awarded an @crimson@Elemental Dish@green@ and experience in Cooking, Fletching, and Magic!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/elixirofluminance.json b/packages/server/data/quest_bases/elixirofluminance.json new file mode 100644 index 0000000000..5c75e3ccea --- /dev/null +++ b/packages/server/data/quest_bases/elixirofluminance.json @@ -0,0 +1,43 @@ +{ + "name": "The Elixir of Luminance", + "description": "Alchemy Master Alden needs rare ingredients to craft the Elixir of Luminance. Aid him and learn the secrets of the potion.", + "rewards": ["Elixir of Luminance Recipe", "3200 Alchemy experience"], + "skillRequirements": { + "alchemy": 38 + }, + "stages": { + "0": { + "task": "talk", + "npc": "alden", + "text": [ + "Adventurer, I require assistance to craft the Elixir of Luminance.", + "Can you fetch the Moonshade Herb for me?" + ], + "completedText": ["Seek out the elusive Moonshade Herb."] + }, + "1": { + "task": "collect", + "itemRequirements": [{ "key": "moonshadeherb", "count": 3 }], + "completedText": ["Return to Master Alden with the herbs."] + }, + "2": { + "task": "talk", + "npc": "alden", + "hasItemText": [ + "You've done it! Now, observe as I craft the Elixir.", + "I shall share its secret with you." + ], + "skillRewards": [ + { + "key": "alchemy", + "experience": 3200 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You've unlocked the @crimson@Elixir of Luminance Recipe@green@ and gained @crimson@3200 Alchemy experience@green@.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/fishermandespair.json b/packages/server/data/quest_bases/fishermandespair.json new file mode 100644 index 0000000000..f98490149c --- /dev/null +++ b/packages/server/data/quest_bases/fishermandespair.json @@ -0,0 +1,47 @@ +{ + "name": "Fisherman's Despair", + "description": "A lonesome fisherman by the coast is struggling to catch the rare golden fish.|He's tried every bait and trick in the book but to no avail. The fisherman is starting to believe the golden fish is just a myth. Will you be the one to restore his hope?", + "rewards": ["Golden Fishing Rod", "1500 Fishing experience"], + "stages": { + "0": { + "task": "talk", + "npc": "fisher", + "text": [ + "Ahoy there, traveler. Ever heard of the golden fish?", + "Legends say it grants wishes to those who catch it.", + "I've spent half my life in pursuit but never even got a glimpse.", + "Could you perhaps try your hand at it? If you bring me the", + "golden fish, I'll share with you a secret of the seas!" + ], + "completedText": ["Any luck finding the golden fish?", "Remember, it's just a legend. Or is it?"] + }, + "1": { + "task": "talk", + "npc": "fisher", + "hasItemText": [ + "I can't believe it! You've actually found the golden fish!", + "I've been such a fool to doubt its existence.", + "As promised, here's a secret of the seas:", + "The Golden Fishing Rod! It's been in my family for generations.", + "Now it's yours. May it bring you luck and fortune!" + ], + "itemRequirements": [ + { + "key": "goldenfish", + "count": 1 + } + ], + "skillRewards": [ + { + "key": "fishing", + "experience": 1500 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Fisherman's Despair@green@. You've been awarded @crimson@1500@green@ Fishing experience and a @crimson@Golden Fishing Rod@green@!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/forgeoffate.json b/packages/server/data/quest_bases/forgeoffate.json new file mode 100644 index 0000000000..b6fb62f39b --- /dev/null +++ b/packages/server/data/quest_bases/forgeoffate.json @@ -0,0 +1,112 @@ +{ + "name": "Forge of Fate", + "description": "Thrain, the legendary blacksmith, requires unique materials.|Thrain's ambition is to forge the mightiest weapon ever seen. But to do that, he requires rare materials scattered across the land. Embark on a journey to gather these for him.", + "rewards": ["3500 gold", "weaponoflegends"], + "stages": { + "0": { + "task": "talk", + "npc": "thrain", + "text": [ + "Ah, adventurer! You've arrived at the right time.", + "I aim to craft a weapon of legends, but I need special materials.", + "Will you assist me in this noble endeavor?" + ], + "completedText": ["The first material is called Luminite Ore, found in the Luminescent Caves."] + }, + "1": { + "task": "talk", + "npc": "caveguardian", + "text": [ + "You seek the Luminite Ore? Not many come here for it.", + "Prove your worth by defeating the Luminescent Golems, and I shall grant you access." + ], + "completedText": ["Face the Luminescent Golems!"] + }, + "2": { + "task": "kill", + "mob": ["luminescentgolems"], + "mobCountRequirement": 4 + }, + "3": { + "task": "talk", + "npc": "caveguardian", + "text": ["You've proven yourself. Here, take the Luminite Ore."], + "itemRewards": [ + { + "key": "luminiteore", + "count": 3 + } + ], + "completedText": ["Return to Thrain with the Luminite Ore."] + }, + "4": { + "task": "talk", + "npc": "thrain", + "text": [ + "Excellent work! The next material is the Heart of the Forest.", + "It's a magical gem located deep within the Enchanted Woods." + ], + "completedText": ["Venture into the Enchanted Woods and retrieve the Heart of the Forest."] + }, + "5": { + "task": "talk", + "npc": "treantelder", + "text": [ + "Why do you seek the Heart? Oh, for Thrain's quest?", + "Solve the riddles of the woods and the Heart shall be yours." + ], + "completedText": ["Solve the riddles and navigate the Enchanted Woods."] + }, + "6": { + "task": "talk", + "npc": "woodsspirit", + "text": ["You've solved the riddles. Here is the Heart of the Forest."], + "itemRewards": [ + { + "key": "heartoftheforest", + "count": 1 + } + ], + "completedText": ["Return to Thrain with the Heart of the Forest."] + }, + "7": { + "task": "talk", + "npc": "thrain", + "text": [ + "You've done splendidly. The last item I require is the Ember of Eternity.", + "It's said to be in the grasp of the Phoenix atop the Tower of Flames." + ], + "completedText": ["Climb the Tower of Flames and retrieve the Ember of Eternity."] + }, + "8": { + "task": "kill", + "mob": ["flamephoenix"], + "mobCountRequirement": 1 + }, + "9": { + "task": "talk", + "npc": "thrain", + "itemRequirements": [ + { + "key": "emberofeternity", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "gold", + "count": 3500 + }, + { + "key": "weaponoflegends", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Forge of Fate@green@. You have gained 3500 gold and the Weapon of Legends!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/gnomemoreproblems.json b/packages/server/data/quest_bases/gnomemoreproblems.json new file mode 100644 index 0000000000..86e4a61aa4 --- /dev/null +++ b/packages/server/data/quest_bases/gnomemoreproblems.json @@ -0,0 +1,46 @@ +{ + "name": "Gnome More Problems", + "description": "Tall tales.|Gary the Gnome claims he was once as tall as a giant! Retrieve his 'height potion' from the mischievous squirrels that stole it.", + "rewards": ["giant-hat", "3 acorns"], + "stages": { + "0": { + "task": "talk", + "npc": "garygnome", + "text": [ + "Ah, adventurer! I was once taller than the mightiest tree!", + "Those darn squirrels stole my height potion!", + "Would you help an old gnome out and get it back?" + ], + "completedText": ["Retrieve the height potion from those sneaky squirrels."] + }, + "1": { + "task": "kill", + "mob": ["sneakysquirrel"], + "mobCountRequirement": 5 + }, + "2": { + "task": "talk", + "npc": "garygnome", + "text": [ + "You got it! Watch as I become... still the same size.", + "Eh, probably expired. Thanks anyway!", + "Here, take this giant hat and some acorns!" + ], + "itemRewards": [ + { + "key": "giant-hat", + "count": 1 + }, + { + "key": "acorn", + "count": 3 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@Gary is still gnome-sized, but you've made a tiny friend for life! Enjoy your @crimson@giant-hat@green@ and acorns.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/guardianoftheoasis.json b/packages/server/data/quest_bases/guardianoftheoasis.json new file mode 100644 index 0000000000..d5f1bfeb0c --- /dev/null +++ b/packages/server/data/quest_bases/guardianoftheoasis.json @@ -0,0 +1,72 @@ +{ + "name": "Guardian of the Oasis", + "description": "Desert secrets await your discovery.|Legends speak of a hidden oasis, guarded by a majestic creature. Villagers are running out of water, and only the oasis can save them now.", + "rewards": ["elixiroflife"], + "stages": { + "0": { + "task": "talk", + "npc": "villageelder", + "text": [ + "Brave traveler, our village is in peril.", + "We've heard of an oasis hidden within the desert's heart.", + "But it's guarded by a creature. Will you help?" + ], + "completedText": ["Venture into the desert."] + }, + "1": { + "task": "talk", + "npc": "deserthermit", + "text": [ + "Ah, seeking the oasis? It's real, but not easy to find.", + "Follow the path where cacti bloom at midnight." + ], + "completedText": ["Seek the blooming cacti."] + }, + "2": { + "task": "talk", + "npc": "bloomingcacti", + "text": [ + "The cacti glow mysteriously, leading a path deeper into the desert.", + "You feel a presence watching you." + ], + "completedText": ["Continue on the path."] + }, + "3": { + "task": "talk", + "npc": "oasisguardian", + "text": [ + "You've found the oasis, and its guardian stands before you.", + "Why have you come? Only those with pure intentions may access this sacred water." + ], + "completedText": ["Speak your intentions."] + }, + "4": { + "task": "talk", + "npc": "oasisguardian", + "text": [ + "Very well. I sense truth in your words.", + "Collect the water, but remember: take only what you need." + ], + "completedText": ["Collect the oasis water."] + }, + "5": { + "task": "talk", + "npc": "villageelder", + "itemRequirements": [ + { + "key": "oasiswater", + "count": 1 + } + ], + "text": [ + "You've returned! And with the oasis water!", + "Our village is saved. As a token of our gratitude, take this Elixir of Life." + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have completed @crimson@Guardian of the Oasis@green@. The villagers have gifted you the Elixir of Life!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/keroschickenconundrum.json b/packages/server/data/quest_bases/keroschickenconundrum.json new file mode 100644 index 0000000000..c39aed6269 --- /dev/null +++ b/packages/server/data/quest_bases/keroschickenconundrum.json @@ -0,0 +1,58 @@ +{ + "name": "Keros' Chicken Conundrum", + "description": "The fix had some... side effects.|After resolving Keros' hat-based hiccup, it seems not everything reverted correctly. Now, there's a realm where chickens rule. Dive into the Feathery Realm to restore balance.", + "rewards": ["chicken slayer title", "feathered cape"], + "stages": { + "0": { + "task": "talk", + "npc": "keros", + "text": [ + "So, remember that tiny mistake with the chickens?", + "It looks like when we fixed it, a new realm formed where chickens rule the land.", + "And they aren't happy about losing their status in our realm!", + "Can you venture in and negotiate peace with the Chicken King?" + ], + "completedText": ["Enter the Feathery Realm portal to the east."] + }, + "1": { + "task": "talk", + "npc": "chickenking", + "text": [ + "Bawk! Bawk! Who dares enter the realm of the mighty Chicken King?", + "Ah, you're from Keros' realm. We won't forget his... adjustments.", + "To prove you come in peace, I challenge you to a game of... Feathered Fetch!" + ], + "completedText": ["Play Feathered Fetch with the Chicken King."] + }, + "2": { + "task": "talk", + "npc": "keros", + "text": ["You've played the game? That's great news!", "Did you manage to win the Chicken King's trust?"], + "completedText": ["Share your experience with Keros."] + }, + "3": { + "task": "talk", + "npc": "chickenking", + "text": [ + "You've shown me that not all from Keros' realm are bad.", + "In recognition of your efforts, I grant you the title of Chicken Slayer.", + "Use it well, and may our realms coexist in peace!" + ], + "itemRewards": [ + { + "key": "chicken slayer title", + "count": 1 + }, + { + "key": "feathered cape", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You've bridged the gap between realms and earned the respect of the Chicken King. Wear your @crimson@feathered cape@green@ as a symbol of unity.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/keroscodecatastrophe.json b/packages/server/data/quest_bases/keroscodecatastrophe.json new file mode 100644 index 0000000000..0048cca5c3 --- /dev/null +++ b/packages/server/data/quest_bases/keroscodecatastrophe.json @@ -0,0 +1,53 @@ +{ + "name": "Keros' Code Catastrophe", + "description": "Oops, he did it again!|Our dear developer, Keros, tried to implement a 'funny hat' feature but accidentally turned all monsters into chickens. Can you help revert his... 'enhancements'?", + "rewards": ["debugger's helm", "chicken plushie"], + "stages": { + "0": { + "task": "talk", + "npc": "keros", + "text": [ + "Okay, I may have made a tiny mistake.", + "Who would have thought that adding a hat would turn all the dragons into chickens?", + "Please help me fix this!" + ], + "completedText": ["Seek the Code Guru in the Pixel Forest."] + }, + "1": { + "task": "talk", + "npc": "codeguru", + "text": [ + "Ah, Keros' masterpieces. Always so... unexpected.", + "You'll need the Debug Elixir from the Glitch Grotto.", + "Bring it to me, and we'll set things right." + ], + "completedText": ["Retrieve the Debug Elixir from the Glitch Grotto."] + }, + "2": { + "task": "talk", + "npc": "keros", + "text": [ + "You've got the elixir? Great!", + "Let's pour this on the main server... carefully...", + "...and voila! The monsters are back!", + "Maybe I'll stick to just designing hats from now on.", + "Thanks for the help! Here's a token of my appreciation." + ], + "itemRewards": [ + { + "key": "debugger's helm", + "count": 1 + }, + { + "key": "chicken plushie", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@Thanks to you, the game's integrity is restored! Wear the @crimson@debugger's helm@green@ with pride, and cuddle with your chicken plushie – a reminder of Keros' little mishap.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/legacyartifact.json b/packages/server/data/quest_bases/legacyartifact.json new file mode 100644 index 0000000000..ed9f03befb --- /dev/null +++ b/packages/server/data/quest_bases/legacyartifact.json @@ -0,0 +1,92 @@ +{ + "name": "The Legacy Artifact", + "description": "In an ancient legend, an artifact of immense power was torn apart and scattered. The pieces, when brought together and reforged, promise unimaginable might. Take on this challenging quest, drawing upon a multitude of skills, to bring the artifact back to life.", + "rewards": ["Magic Lamp"], + "stages": { + "0": { + "task": "talk", + "npc": "elderMage", + "text": [ + "Greetings, adventurer. Legends speak of a powerful artifact,", + "one that requires mastery of various skills to restore.", + "The first part is the Elemental Ore, a mineral buried deep within", + "the earth. Mine it so we can begin our journey." + ], + "completedText": ["Have you found the Elemental Ore yet?"] + }, + "1": { + "task": "mine", + "itemRequirements": [ + { + "key": "elementalore", + "count": 1 + } + ], + "nextStage": "Using the elemental ore, you must now combine it with your knowledge of smithing to forge the Elemental Blade Base.", + "popup": { + "title": "Stage completed!", + "text": "@green@You have mined the @crimson@Elemental Ore@green@. Proceed to the next step to smith the blade base.", + "colour": "#33cc33" + } + }, + "2": { + "task": "smith", + "itemRequirements": [ + { + "key": "elementalbladebase", + "count": 1 + } + ], + "nextStage": "With the Elemental Blade Base crafted, it's time to move onto fletching. Craft an Elemental Bowstring using ancient woods.", + "popup": { + "title": "Stage completed!", + "text": "@green@You have smithed the @crimson@Elemental Blade Base@green@. Proceed to the next step to craft the bowstring.", + "colour": "#33cc33" + } + }, + "3": { + "task": "fletch", + "itemRequirements": [ + { + "key": "elementalbowstring", + "count": 1 + } + ], + "nextStage": "Now that you have the Elemental Bowstring, combine it with the Blade Base to create the Elemental Bow Frame using crafting.", + "popup": { + "title": "Stage completed!", + "text": "@green@You have fletched the @crimson@Elemental Bowstring@green@. Proceed to the next step to craft the bow frame.", + "colour": "#33cc33" + } + }, + "4": { + "task": "craft", + "itemRequirements": [ + { + "key": "elementalbowframe", + "count": 1 + } + ], + "nextStage": "With the Elemental Bow Frame in hand, the final step is to infuse it with magic using alchemy to unlock its true potential.", + "popup": { + "title": "Stage completed!", + "text": "@green@You have crafted the @crimson@Elemental Bow Frame@green@. Proceed to the final step to infuse it with magic.", + "colour": "#33cc33" + } + }, + "5": { + "task": "alchemy", + "itemRequirements": [ + { + "key": "legacyartifact", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@Congratulations! You have successfully combined all the components and crafted the @crimson@Legacy Artifact@green@. As a reward, you've been given a @crimson@Magic Lamp@green@!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/llamadrama.json b/packages/server/data/quest_bases/llamadrama.json new file mode 100644 index 0000000000..567a2acb88 --- /dev/null +++ b/packages/server/data/quest_bases/llamadrama.json @@ -0,0 +1,51 @@ +{ + "name": "Llama Drama", + "description": "Spit happens.|Larry's llama ran away after a silly argument about the best grass flavor. Help him find his spitting buddy.", + "rewards": ["llama-wool", "spit-proof cloak"], + "stages": { + "0": { + "task": "talk", + "npc": "larry", + "text": [ + "I just can't believe it! Lulu and I had such a petty squabble!", + "Please, find her for me. I think she headed towards the clover fields." + ], + "completedText": ["Locate Lulu in the clover fields."] + }, + "1": { + "task": "talk", + "npc": "lulu", + "text": [ + "*spits* You're here to bring me back, aren't you?", + "Tell Larry mint-flavored grass is superior, and I might consider it!" + ], + "completedText": ["Inform Larry of Lulu's demands."] + }, + "2": { + "task": "talk", + "npc": "larry", + "text": ["Mint, really? I guess I can give it a try...", "Bring her back and I'll reward you!"], + "completedText": ["Lead Lulu back to Larry."] + }, + "3": { + "task": "talk", + "npc": "lulu", + "text": ["Well, alright, if he's trying mint...", "Let's go back, and thanks!"], + "itemRewards": [ + { + "key": "llama-wool", + "count": 5 + }, + { + "key": "spit-proof cloak", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@Lulu and Larry are reunited, and it feels so good! Enjoy your @crimson@llama-wool@green@ and stay dry with the spit-proof cloak.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/mismatchedsocksaga.json b/packages/server/data/quest_bases/mismatchedsocksaga.json new file mode 100644 index 0000000000..274e1e6ca7 --- /dev/null +++ b/packages/server/data/quest_bases/mismatchedsocksaga.json @@ -0,0 +1,45 @@ +{ + "name": "Mismatched Socks Saga", + "description": "Socks are missing...again.|Tired of always having mismatched socks? So is Timmy. He believes his socks are going on adventures without him. Help him find out where they're off to!", + "rewards": ["sockpuppet"], + "stages": { + "0": { + "task": "talk", + "npc": "timmy", + "text": [ + "Hey there! My socks keep disappearing.", + "I've set up a little trap to find out where they go at night.", + "Can you help me spy on them?" + ], + "completedText": ["Spy on the socks."] + }, + "1": { + "task": "talk", + "npc": "socktrap", + "text": [ + "You and Timmy lie in wait. As midnight strikes, the socks begin to... move?", + "They're dancing! And there's a sock party happening!" + ], + "completedText": ["Join the sock party or tell Timmy?"] + }, + "2": { + "task": "talk", + "npc": "partysock", + "text": [ + "Welcome, honorary sock! We just needed to unwind. Get it? Unwind?", + "As a token of our appreciation for not blowing our cover, take this." + ], + "itemRewards": [ + { + "key": "sockpuppet", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You've unraveled the @crimson@Mismatched Socks Saga@green@. You now have your very own sock puppet!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/mysteriesofthehiddenglade.json b/packages/server/data/quest_bases/mysteriesofthehiddenglade.json new file mode 100644 index 0000000000..76e1ea9d78 --- /dev/null +++ b/packages/server/data/quest_bases/mysteriesofthehiddenglade.json @@ -0,0 +1,65 @@ +{ + "name": "Mysteries of the Hidden Glade", + "description": "A sealed forest awaits.|Rumors speak of a sealed glade, hidden away from the world. Deep within, a creature of power guards a great treasure.", + "rewards": ["gladering"], + "stages": { + "0": { + "task": "talk", + "npc": "villagehistorian", + "text": [ + "Greetings, adventurer. Have you heard of the Hidden Glade?", + "It's a mystical forest sealed by our ancestors due to the danger within.", + "Could you perhaps venture in and discover its secrets?" + ], + "completedText": ["Find the entrance to the Hidden Glade."] + }, + "1": { + "task": "talk", + "npc": "gladeentrance", + "text": [ + "A sealed gate stands before you, adorned with ancient symbols.", + "By solving a riddle, the gate slowly opens, revealing the glade within." + ], + "completedText": ["Enter the Hidden Glade."] + }, + "2": { + "task": "talk", + "npc": "mysteriousaltar", + "text": ["Deep within the glade, an altar beckons. Placing an offering might grant you safe passage."], + "completedText": ["Seek the creature guarding the treasure."] + }, + "3": { + "task": "talk", + "npc": "gladeboss", + "text": [ + "A creature of immense power stands before you, its eyes watching your every move.", + "To reach the treasure, you must first defeat this guardian." + ], + "completedText": ["Prepare for battle!"] + }, + "4": { + "task": "kill", + "mob": ["gladeboss"], + "mobCountRequirement": 1 + }, + "5": { + "task": "talk", + "npc": "gladetreasure", + "text": [ + "Having defeated the guardian, a chest materializes before you.", + "Inside, you find a ring that radiates energy." + ], + "itemRewards": [ + { + "key": "gladering", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have completed @crimson@Mysteries of the Hidden Glade@green@. The glade's treasure, the Glade Ring, is now yours!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/mystictimber.json b/packages/server/data/quest_bases/mystictimber.json new file mode 100644 index 0000000000..710ee40dec --- /dev/null +++ b/packages/server/data/quest_bases/mystictimber.json @@ -0,0 +1,95 @@ +{ + "name": "Mystic Timber", + "description": "A legendary tree of magic awaits.|In the heart of the Enchanted Forest lies a tree said to hold boundless magical properties. Only those with pure intent can locate and harness its might.", + "rewards": ["magicwood"], + "stages": { + "0": { + "task": "talk", + "npc": "oldlumberjack", + "text": [ + "Adventurer, have you heard tales of the Mystic Tree?", + "Its wood is said to possess incredible magical power.", + "If you wish to find it, you must first seek the Forest Guardian." + ], + "completedText": ["Find the Forest Guardian."] + }, + "1": { + "task": "talk", + "npc": "forestguardian", + "text": [ + "Seeker of the Mystic Tree, why do you desire its wood?", + "Only those with pure intent can find it.", + "To prove your worth, help me with a few tasks." + ], + "completedText": ["What can you help with?"] + }, + "2": { + "task": "talk", + "npc": "forestguardian", + "text": [ + "Firstly, the animals of this forest are restless.", + "Calm them by collecting the Tranquil Berries nearby.", + "Bring me 5 of them, and I'll share the next step." + ], + "completedText": ["Collect 5 Tranquil Berries."] + }, + "3": { + "task": "talk", + "npc": "forestguardian", + "itemRequirements": [ + { + "key": "tranquilberries", + "count": 5 + } + ], + "text": [ + "Well done! Now, there's a dark spirit that lurks in the forest.", + "Defeat it, and you'll prove your commitment to the balance of nature." + ], + "completedText": ["Defeat the dark spirit."] + }, + "4": { + "task": "kill", + "mob": ["darkspirit"], + "mobCountRequirement": 1 + }, + "5": { + "task": "talk", + "npc": "forestguardian", + "text": [ + "Impressive! Your intent seems pure.", + "To find the Mystic Tree, follow the path of glowing mushrooms.", + "But remember, respect the tree and only take what it willingly gives." + ], + "completedText": ["Follow the path of glowing mushrooms."] + }, + "6": { + "task": "talk", + "npc": "mystictree", + "text": [ + "You stand before me, adventurer. I sense your pure intent.", + "Cut a small piece of my wood, but promise to use its magic for good." + ], + "completedText": ["Cut the Mystic Tree."] + }, + "7": { + "task": "talk", + "npc": "oldlumberjack", + "itemRequirements": [ + { + "key": "magicwood", + "count": 1 + } + ], + "text": [ + "You've done it! The power of the Mystic Tree is now yours to wield.", + "Use it wisely, and always respect the balance of nature." + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Mystic Timber@green@. The power of the Mystic Tree is now in your hands!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/pieinthesky.json b/packages/server/data/quest_bases/pieinthesky.json new file mode 100644 index 0000000000..93140dbdc0 --- /dev/null +++ b/packages/server/data/quest_bases/pieinthesky.json @@ -0,0 +1,45 @@ +{ + "name": "Pie in the Sky", + "description": "Dreamy desserts.|Patty Pie-maker dreams of a pie so light it floats. Help her create this culinary marvel.", + "rewards": ["floating-pie", "recipe-scroll"], + "stages": { + "0": { + "task": "talk", + "npc": "pattypie", + "text": [ + "I have a dream of a pie that floats! But I need cloud-fluff...", + "Could you ascend the Floating Peaks and grab me some?" + ], + "completedText": ["Collect cloud-fluff from the Floating Peaks."] + }, + "1": { + "task": "talk", + "npc": "cloudsprite", + "text": ["Oh my! You want some of my fluff?", "Only if you tickle me first! Tee-hee!"], + "completedText": ["Engage in a tickle fight with the Cloud Sprite!"] + }, + "2": { + "task": "talk", + "npc": "pattypie", + "text": [ + "You've got it! Now to bake the masterpiece...", + "Voilà! A floating pie! And here's the recipe too." + ], + "itemRewards": [ + { + "key": "floating-pie", + "count": 1 + }, + { + "key": "recipe-scroll", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You've created culinary history! Relish your @crimson@floating-pie@green@ and perhaps bake your own with the recipe scroll.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/theelementalblade.json b/packages/server/data/quest_bases/theelementalblade.json new file mode 100644 index 0000000000..97690c84ba --- /dev/null +++ b/packages/server/data/quest_bases/theelementalblade.json @@ -0,0 +1,144 @@ +{ + "name": "The Elemental Blade", + "description": "The world's elements seek a worthy bearer.|Legends speak of a blade that embodies the very essence of earth, fire, water, and air. Begin the journey to forge this elemental masterpiece and command its boundless power.", + "rewards": ["elementalsword"], + "stages": { + "0": { + "task": "talk", + "npc": "eldersmith", + "text": [ + "Ah, an adventurer! Have you heard of the Elemental Blade?", + "It is a sword that channels the forces of nature.", + "To craft it, you must gather the four Elemental Shards from across the land." + ], + "completedText": ["Your journey begins in the Earth Caverns."] + }, + "1": { + "task": "talk", + "npc": "earthguard", + "text": [ + "Seeking the Earth Shard? Prove your worth by defeating the Earth Elementals.", + "Return with their Essence, and I shall grant you the Shard." + ], + "completedText": ["Defeat the Earth Elementals."] + }, + "2": { + "task": "kill", + "mob": ["earthelementals"], + "mobCountRequirement": 5 + }, + "3": { + "task": "talk", + "npc": "earthguard", + "text": [ + "You have done well. Here is the Earth Shard.", + "Now, seek the Flame Spirit in the Lava Pits for the Fire Shard." + ], + "itemRewards": [ + { + "key": "earthshard", + "count": 1 + } + ] + }, + "4": { + "task": "talk", + "npc": "flamespirit", + "text": [ + "To earn my Fire Shard, navigate through the Lava Maze.", + "Survive its trials, and the Shard is yours." + ], + "completedText": ["Navigate the Lava Maze."] + }, + "5": { + "task": "talk", + "npc": "flamespirit", + "text": [ + "You burn with determination. Take the Fire Shard.", + "Next, journey to the Water Temple for the Water Shard." + ], + "itemRewards": [ + { + "key": "fireshard", + "count": 1 + } + ] + }, + "6": { + "task": "talk", + "npc": "watertemplar", + "text": [ + "Retrieve the Sacred Pearl from the depths to earn the Water Shard.", + "But be wary, the depths hide many secrets." + ], + "completedText": ["Retrieve the Sacred Pearl."] + }, + "7": { + "task": "talk", + "npc": "watertemplar", + "text": ["The Water Shard is yours.", "Finally, ascend the Sky Tower for the Air Shard."], + "itemRewards": [ + { + "key": "watershard", + "count": 1 + } + ] + }, + "8": { + "task": "talk", + "npc": "windkeeper", + "text": [ + "To claim the Air Shard, fly through the Cloud Rings.", + "Only those light of heart and sure of purpose will succeed." + ], + "completedText": ["Fly through the Cloud Rings."] + }, + "9": { + "task": "talk", + "npc": "windkeeper", + "text": [ + "With the power of air now yours, return to Elder Smith.", + "He will guide you in forging the Elemental Blade." + ], + "itemRewards": [ + { + "key": "airshard", + "count": 1 + } + ] + }, + "10": { + "task": "talk", + "npc": "eldersmith", + "itemRequirements": [ + { + "key": "earthshard", + "count": 1 + }, + { + "key": "fireshard", + "count": 1 + }, + { + "key": "watershard", + "count": 1 + }, + { + "key": "airshard", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "elementalsword", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@The Elemental Blade@green@. You now wield the power of the elements!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/thegreatpieheist.json b/packages/server/data/quest_bases/thegreatpieheist.json new file mode 100644 index 0000000000..d215556da2 --- /dev/null +++ b/packages/server/data/quest_bases/thegreatpieheist.json @@ -0,0 +1,51 @@ +{ + "name": "The Great Pie Heist", + "description": "Pie's gone missing!|Someone in town has taken Mrs. Berry's award-winning blueberry pie. It's up to you to follow the crumbs and solve this tasty mystery!", + "rewards": ["sliceofpie"], + "stages": { + "0": { + "task": "talk", + "npc": "mrsberry", + "text": [ + "Adventurer! My blueberry pie is gone!", + "I was going to enter it in the competition tomorrow!", + "Find it and there's a slice in it for you." + ], + "completedText": ["Sniff out the pie thief!"] + }, + "1": { + "task": "talk", + "npc": "piecrumbs", + "text": [ + "Following the trail of pie crumbs, you stumble upon a suspicious-looking squirrel.", + "It seems to be enjoying... a blueberry?" + ], + "completedText": ["Confront the squirrel."] + }, + "2": { + "task": "talk", + "npc": "squirrelnapper", + "text": [ + "Okay, okay! I took the pie! But it was for a good cause!", + "There's a party in the tree tonight. Want to join?" + ], + "completedText": ["Return the pie... or party first?"] + }, + "3": { + "task": "talk", + "npc": "mrsberry", + "text": ["You brought it back! Thank you, dear!", "Now, about that slice I promised..."], + "itemRewards": [ + { + "key": "sliceofpie", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have cracked @crimson@The Great Pie Heist@green@. Enjoy your well-deserved slice of pie!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/thelostlaugh.json b/packages/server/data/quest_bases/thelostlaugh.json new file mode 100644 index 0000000000..7913dda093 --- /dev/null +++ b/packages/server/data/quest_bases/thelostlaugh.json @@ -0,0 +1,46 @@ +{ + "name": "The Lost Laugh", + "description": "Comic relief.|Jester Jestin has lost his ability to laugh! Find the tickling feather that can restore his jovial spirit.", + "rewards": ["giggly-potion", "jester-boots"], + "stages": { + "0": { + "task": "talk", + "npc": "jesterjestin", + "text": [ + "Woe is me! My laugh, my joy, it's all gone!", + "Legend says a mystical tickling feather can bring it back.", + "Would you be a dear and find it for me?" + ], + "completedText": ["Search for the legendary tickling feather."] + }, + "1": { + "task": "talk", + "npc": "oldchicken", + "text": ["Bawk! Oh, the tickling feather? I might have it...", "But I need some worms first. Bawk!"], + "completedText": ["Fetch some worms for the old chicken."] + }, + "2": { + "task": "talk", + "npc": "jesterjestin", + "text": [ + "Ha-HA! That's the stuff! I feel giggly already!", + "Here's a potion to share the giggles and some jester boots." + ], + "itemRewards": [ + { + "key": "giggly-potion", + "count": 1 + }, + { + "key": "jester-boots", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@Jester Jestin's laugh is back, all thanks to you! Enjoy spreading giggles with the @crimson@giggly-potion@green@ and strut in your new jester boots.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/thelostmelody.json b/packages/server/data/quest_bases/thelostmelody.json new file mode 100644 index 0000000000..943a3e5cb5 --- /dev/null +++ b/packages/server/data/quest_bases/thelostmelody.json @@ -0,0 +1,60 @@ +{ + "name": "The Lost Melody", + "description": "A forgotten song needs to be revived.|Ancient tales tell of a melody that could summon rains and heal the earth. The village bard believes the notes are scattered, waiting to be pieced together.", + "rewards": ["ancientlute"], + "stages": { + "0": { + "task": "talk", + "npc": "villagebard", + "text": [ + "Greetings, traveler. I've been trying to recall a melody.", + "Its notes are said to be hidden in old monuments across the land.", + "Could you help me gather them?" + ], + "completedText": ["Seek the first monument."] + }, + "1": { + "task": "talk", + "npc": "stonepillar", + "text": [ + "Upon this stone, a note is faintly etched. It resonates softly.", + "You've discovered the first note!" + ], + "completedText": ["Find the next monument."] + }, + "2": { + "task": "talk", + "npc": "ancientstatue", + "text": [ + "Water trickles down the statue, revealing a hidden musical note.", + "Another piece of the puzzle!" + ], + "completedText": ["Seek the third note."] + }, + "3": { + "task": "talk", + "npc": "cavepainting", + "text": ["The cave's walls reverberate with a unique tone.", "You've found the third musical note!"], + "completedText": ["Return to the bard."] + }, + "4": { + "task": "talk", + "npc": "villagebard", + "itemRequirements": [ + { + "key": "musicalnotes", + "count": 3 + } + ], + "text": [ + "Ah, these are the notes! Let me piece them together...", + "Marvelous! As thanks, please take this ancient lute." + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have completed @crimson@The Lost Melody@green@. The village bard has gifted you an ancient lute!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/thenotsogreatpotato.json b/packages/server/data/quest_bases/thenotsogreatpotato.json new file mode 100644 index 0000000000..156bb73860 --- /dev/null +++ b/packages/server/data/quest_bases/thenotsogreatpotato.json @@ -0,0 +1,39 @@ +{ + "name": "The Not-So-Great Potato", + "description": "Root of all humor.|The potato king insists he's a tomato. Help him come to terms with his tuber truth.", + "rewards": ["potato"], + "stages": { + "0": { + "task": "talk", + "npc": "petepotato", + "text": ["I'm a juicy red tomato! I swear!", "Prove me wrong and I'll give you treasures."], + "completedText": ["Seek evidence about Pete's true identity."] + }, + "1": { + "task": "talk", + "npc": "vegetablevendor", + "text": ["Oh, Pete? He's definitely a potato.", "I've got an old photo of him sprouting!"], + "completedText": ["Return to Pete with the photo."] + }, + "2": { + "task": "talk", + "npc": "petepotato", + "text": ["Oh dear, I'm really a potato, huh?", "Thanks for setting me straight. Here's your reward!"], + "itemRewards": [ + { + "key": "potato-tiara", + "count": 1 + }, + { + "key": "sack of confused veggies", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You've unveiled the truth of Pete's past! Enjoy your sparkling @crimson@potato-tiara@green@ and a sack of very bewildered vegetables.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quest_bases/whaleslament.json b/packages/server/data/quest_bases/whaleslament.json new file mode 100644 index 0000000000..560be4b9bd --- /dev/null +++ b/packages/server/data/quest_bases/whaleslament.json @@ -0,0 +1,65 @@ +{ + "name": "Whale's Lament", + "description": "A lonely whale calls for assistance.|Wally, a giant whale, has been separated from his family due to a mysterious underwater current. Navigate the treacherous waters and reunite him with his lost pod.", + "rewards": ["2000 gold", "whalecompanion"], + "stages": { + "0": { + "task": "talk", + "npc": "wally", + "text": [ + "Oh, dear adventurer! I've lost my way in these waters.", + "A strong current separated me from my family.", + "Can you help me find them?" + ], + "completedText": ["Please find clues about my family's whereabouts."] + }, + "1": { + "task": "talk", + "npc": "merfolkelder", + "text": [ + "Ah, Wally's family? I believe they were pulled towards the Abyssal Trench.", + "It's a dangerous place, young one. Beware of the creatures that lurk there!" + ], + "completedText": ["Venture into the Abyssal Trench with caution."] + }, + "2": { + "task": "kill", + "mob": ["abyssalhunters"], + "mobCountRequirement": 5 + }, + "3": { + "task": "talk", + "npc": "lostwhale", + "text": [ + "Who are you? Oh, you're here to help?", + "I got stuck in a cave after being chased by those abyssal hunters.", + "Thank you for defeating them." + ], + "completedText": ["Guide me back to Wally, please!"] + }, + "4": { + "task": "talk", + "npc": "wally", + "text": [ + "My family! You found them!", + "I cannot express my gratitude enough.", + "As a token of my appreciation, please accept this gift." + ], + "itemRewards": [ + { + "key": "gold", + "count": 2000 + }, + { + "key": "whalecompanion", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Whale's Lament@green@. You have gained 2000 gold and a Whale Companion!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests.json b/packages/server/data/quests.json deleted file mode 100644 index 0aa75bbbe9..0000000000 --- a/packages/server/data/quests.json +++ /dev/null @@ -1,1005 +0,0 @@ -{ - "tutorial": { - "name": "Welcome to Kaetram", - "description": "Teaching you the very basics of Kaetram.|This tutorial will teach you how to move around, attack, interact with objects and use ranged weapons. Follow the arrows and talk to the NPCs if you are stuck.", - "rewards": ["Knowledge of the game :)"], - "stages": { - "0": { - "task": "talk", - "npc": "coder", - "text": [ - "Hello there bud, I am the programmer of this world.", - "Like most MMORPGs, this is a tutorial. You must complete it unfortunately.", - "Do not worry, I coded it to be pretty short.", - "Go through those doors over there to proceed."], - "completedText": ["Why don't you just walk through that door over there eh?"], - "pointer": { - "type": 0, - "x": 584, - "y": 9 - } - }, - - "1": { - "task": "door", - "pointer": { - "type": 0, - "x": 581, - "y": 11 - } - }, - - "2": { - "task": "talk", - "npc": "guard", - "text": [ - "I see... a new adventurer.", - "Let me tell you a bit about these lands.", - "You'll be killing stuff...", - "A lot of stuff actually...", - "And when you're not killing stuff...", - "You'll still be killing stuff!", - "But regardless, I won't ask you to kill stuff just yet.", - "Take this axe and cut down 2 trees for me." - ], - "completedText": ["What are you waiting for?", "Go cut me some trees."], - "itemKey": "axe", - "popup": { - "title": "Item acquired!", - "text": "You've just received an axe! Equip it using your inventory!", - "colour": "#33cc33" - }, - "pointer": { - "type": 0, - "x": 570, - "y": 43 - } - }, - - "3": { - "task": "tree", - "tree": "tutorialsnowoak", - "treeCount": 2 - }, - - "4": { - "task": "talk", - "npc": "guard", - "text": [ - "Thank you soldier, meet me in the cave below!" - ], - "completedText": [ - "I'm not sure what you're waiting for...", - "head on over to the cave below!"], - "pointer": { - "type": 0, - "x": 570, - "y": 43 - } - }, - - "5": { - "task": "door", - "pointer": { - "type": 0, - "x": 574, - "y": 53 - } - }, - - "6": { - "task": "talk", - "npc": "guard", - "text": [ - "Soldier! We have a crab infestation!", - "How did crabs make their way into a", - "volcanic cave under a snowy field?", - "You're not here to ask questions soldier!", - "Use the axe I just gave you to cut down 5 crabs!"], - "completedText": ["No more chit chatter, go slice me some crabs!"], - "pointer": { - "type": 0, - "x": 544, - "y": 15 - } - }, - - "7": { - "task": "kill", - "mob": ["crab"], - "mobCountRequirement": 5 - }, - - "8": { - "task": "talk", - "npc": "guard", - "text": [ - "Phew, that was a close one. Those crabs can sure do some damage.", - "Head on over through that portal for the next part of your training!"], - "completedText": [ - "Well don't just sit there, go through the portal!" - ], - "pointer": { - "type": 0, - "x": 544, - "y": 15 - } - }, - - "9": { - "task": "door", - "pointer": { - "type": 0, - "x": 542, - "y": 13 - } - }, - - "10": { - "task": "talk", - "npc": "sorcerer", - "text": [ - "Sup there young one, how's it hangin'?", - "Welcome to my little pocket dimensions I call home!", - "Over there is my small rat farm!", - "I'm actually going to need you to uhm...", - "filter out the population.", - "Take this bow and shoot 5 of them for me!", - "Don't worry, in this magical land, you don't need arrows!"], - "completedText": ["Don't be afraid young one, they'll grow back very quickly!", "Kill 5 rats for me please!"], - "itemKey": "woodenbow", - "popup": { - "title": "Item acquired!", - "text": "You've just received a bow! Equip it using your inventory!", - "colour": "#33cc33" - }, - "pointer": { - "type": 0, - "x": 520, - "y": 37 - } - }, - - "11": { - "task": "kill", - "mob": ["rat"], - "mobCountRequirement": 5 - }, - - "12": { - "task": "npc", - "npc": "sorcerer", - "text": [ - "Thank you so much young one!", - "Rat population tends to get out of control quickly if left unchecked.", - "Regardless, you are now free to exit through the portal over there!"], - "completedText": ["Thank you again adventurer! You're free to exit anytime!"], - "pointer": { - "type": 0, - "x": 520, - "y": 37 - } - }, - - "13": { - "task": "door", - "pointer": { - "type": 0, - "x": 513, - "y": 37 - } - } - } - }, - - "foresting": { - "name": "Foresting", - "description": "Help the forester with foresting stuff.|The forester needs your help with foresting-related things such as trees and axes and stuff like that. I don't know I'm just a quest description stop asking me questions.", - "rewards": ["A Rusted Axe", "Access to Forester's store"], - "stages": { - "0": { - "task": "talk", - "npc": "villager", - "text": [ - "Greetings dear adventurer!", - "Please, you must help me.", - "I simply cannot take it much longer, I've been", - "cutting trees for the past few days.", - "I'm rather exhausted, would you be so kind as", - "to bring me 10 logs?" - ], - "completedText": [ - "Please adventurer, bring me 10 logs.", - "That's all I ask from you!" - ] - }, - - "1": { - "task": "talk", - "npc": "villager", - "hasItemText": [ - "Oh my, dear adventurer", - "These logs seem to have too many imperfections in them", - "Would you be so kind as to bring me another 10?" - ], - "completedText": ["Please adventurer, I beg of you, just 10 more logs."], - "itemRequirement": ["logs"], - "itemRequirementCount": [10] - }, - - "2": { - "task": "talk", - "npc": "villager", - "hasItemText": [ - "Ah yes, you see, these logs are suitable for my needs.", - "Thank you so much dear adventurer. Please take this reward!" - ], - "itemRequirement": ["logs"], - "itemRequirementCount": [10], - "itemKey": "rustedaxe", - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Foresting@green@ quest. You have received a @crimson@Rusted Axe@green@!", - "colour": "#33cc33" - } - } - } - }, - - "scavenger": { - "name": "Scavenger", - "description": "The local village girl needs your help to get out of her responsibilities.|Quick, there is a village girl who does not want to fulfill her duties towards her grandmother and you must go help her immediately. I think this quest involves scavenging for ingredients and stuff but I'm not particularly sure.", - "rewards": ["Nothing in particular, but it'll be fun!"], - "stages": { - "0": { - "task": "talk", - "npc": "villagegirl2", - "text": [ - "Hey you, you look like someone particularly du-", - "I mean, you look like someone who can help me.", - "You see, my grandmother asked me to bring her some flowers", - "and blueberries, and some mushrooms, and some coal, and some logs", - "and some tomatoes, and some potatoes, and some string, and some strawberries", - "anyway, I won't have you bring all that.", - "Can you go check on my grandma first, she's probably in one of those houses", - "I'm not sure, try looking around." - ], - "completedText": [ - "Look through the houses for my grandma and see what she needs." - ] - }, - "1": { - "task": "talk", - "npc": "oldlady", - "text": [ - "Oh hello, please don't mind the random tent in my house.", - "I've been waiting for my granddaughter to bring me some ingredients", - "but that was months ago. Do you think you can help me out?", - "I only ask that you bring me 2 tomatoes, 2 strawberries, and a piece of string.", - "I will grant you a reward if you do.", - "You can find those ingredients throughout the world, just look around." - ], - "completedText": [ - "Please bring me 2 tomatoes, 2 strawberries, and a piece of string." - ] - }, - "2": { - "task": "talk", - "npc": "oldlady", - "hasItemText": [ - "Thank you so much young one. You're so helpful.", - "Unlike that granddaughter of mine.", - "Here, take this gold as a reward for your troubles." - ], - "itemRequirement": ["tomato", "strawberry", "string"], - "itemRequirementCount": [2, 2, 1], - "itemKey": "gold", - "itemCount": 7500, - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Scavenger@green@. You've been awarded @crimson@7500@green@ gold coins!", - "colour": "#33cc33" - } - } - } - }, - - "minersquest": { - "name": "Miner's Quest", - "description": "The miner needs your help with acuqiring ore.|A miner is in need of your immediate assistance. Instead of going out and looking for ore by himself, he wants to harass random adventurers to do his job for him. You can find him pretending to mine where the desert meets the volcano.", - "rewards": ["Access to Miner's store", "2000 Mining experience"], - "stages": { - "0": { - "task": "talk", - "npc": "miner", - "text": [ - "Oh please, adventurer, please help me.", - "I'm supposed to be mining, but I really don't feel like it.", - "Please you must help me before my supervisor finds out.", - "I need to collect 15 nisoc ores by the end of the day or else", - "I'm going to be fired!", "Bring me 15 of those ores and I'll", - "give you access to my store!"], - "completedText": [ - "Please hurry, the time is ticking!", - "Bring me 15 nisoc ores."] - }, - "1": { - "task": "talk", - "npc": "miner", - "hasItemText": [ - "Phew, thank you for your help, now I can just do nothing.", - "It sure is nice being self-employed eh?", - "Come back any time and I'll buy your ores at a better price", - "than any other store!" - ], - "itemRequirement": ["nisocore"], - "itemRequirementCount": [15], - "skill": "mining", - "experience": 2000, - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Miner's Quest@green@. You've been awarded @crimson@2000@green@ Mining experience!", - "colour": "#33cc33" - } - } - } - }, - - "minersquest2": { - "name": "Miner's Quest II", - "description": "The miner is at it again, this time he doesn't just need ores.|The miner requires your help once again, this time his sketch creations include bars of metals and stuff like that. You should probably go see what he's up to and whatnot.", - "rewards": ["Access to the mining cave"], - "skillRequirements": {"mining": 30}, - "questRequirements": ["minersquest"], - "stages": { - "0": { - "task": "talk", - "npc": "miner", - "text": [ - "Oh it's you again, seems you didn't learn your lesson last time.", - "Anyway, what do you say you help me out again, this time I need", - "to do something with the ores I've collected.", - "But I'm not gonna give them to you, you have to actually go", - "and collect ores again and this time smelt them.", - "Doesn't that sound like an amazing deal where only I benefit?", - "Tell you what, you help me out and I will give you access to", - "my special secret cave where only miners are allowed.", - "Okay so anyway, I need you to bring me 5 tin bars, 5 copper bars." - ], - "completedText": [ - "Please hurry, the time is ticking!", - "Bring me 5 tin bars and 5 copper bars."] - }, - - "1": { - "task": "talk", - "npc": "miner", - "hasItemText": [ - "Oh wonderful, but unfortunately it's not enough.", - "I want you to bring me 5 bronze bars." - ], - "completedText": [ - "Please hurry, the time is ticking!", - "Bring me 5 bronze bars."], - "itemRequirement": ["tinbar", "copperbar"], - "itemRequirementCount": [5, 5] - }, - - "2": { - "task": "talk", - "npc": "miner", - "hasItemText": [ - "Okay fine, I think I'm done sending you on errands.", - "For now that is, who knows maybe I'll need you in", - "the future for redundant tasks like these.", - "Thank you for your help, I guess you can use my cave now." - ], - "itemRequirement": ["bronzebar"], - "itemRequirementCount": [5], - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Miner's Quest II@green@. You've been awarded @crimson@Access to the mining cave@green@!", - "colour": "#33cc33" - } - } - } - }, - - "sorcery": { - "name": "Sorcery and Stuff", - "description": "Learn the basics to sorcery|The sorcerer needs your help to re-assemble a long-lost magic staff that he lost on the beach. Help him out and perhaps he may teach you a thing or two about sorcery and stuff.", - "rewards": ["A Magic Staff", "Access to Sorcerer's store"], - "stages": { - "0": { - "task": "talk", - "npc": "sorcerer", - "text": [ - "Oh dear adventurer, it's you! One of the thousands", - "I've trained and definitely not someone I don't remember.", - "Listen, I'm on vacation here and was relaxing on the beach", - "when all of the sudden I lost my entire magic contrband!", - "I can't run a business if I don't have my equipment.", - "Tell you what, if you bring me back 3 magic beads, I'll", - "grant you access to my shop!", "You'll be taught how to", - "craft your own magic staffs!" - ], - "completedText": [ - "Please bring me 3 magic beads.", - "If I recall correctly, some big macho crab took it", - "and then retreated in a cave west of here." - ] - }, - - "1": { - "task": "talk", - "npc": "sorcerer", - "hasItemText": [ - "Perfect, just perfect. These will surely be great." - ], - "itemRequirement": ["bead"], - "itemRequirementCount": [3], - "itemKey": "staff", - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Sorcery and Stuff@green@ quest. You have received a @crimson@Magic Staff@green@!", - "colour": "#33cc33" - } - } - } - }, - - "desertquest": { - "name": "Desert Quest", - "description": "Help the dying adventurer send a letter to his wife.|The adventurer is dying and is in dire need of your help with super important matters prior to his death. You can find him in the desert.", - "rewards": ["Secret Reward"], - "hideNPCs": { "lavanpc": "after" }, - "stages": { - "0": { - "task": "talk", - "npc": "lavanpc", - "text": [ - "Please dear adventurer, beware of what lies ahead.", - "I am no longer able to carry on forth.", - "Would you please be so kind as to aid me?", - "I must tell my wife I will no longer be coming home.", - "Could you deliver this CD for me?", - "She lives south of the desert." - ], - "completedText": [ - "Please adventurer, deliver the CD.", - "It's my new Demo Tape, I must ensure she hears it." - ], - "itemKey": "cd" - }, - - "1": { - "task": "talk", - "npc": "villagegirl", - "text": [ - "Hello? Why are you in my house..?" - ], - "hasItemText": [ - "Who are you and why are you in my house?", - "Is it about my husband?", - "Oh my god I knew it, that bastard is cheating on me!", - "Wait, I can sorta read your thoughts.", - "Oh no, he's dying. That is super sad", - "He wanted me to have this CD?", - "That bastard is still trying to sell his", - "demo tape even on his death bed.", - "Tell him I'll take it but will probably never listen to it." - ], - "completedText": [ - "Go on now, tell him." - ], - "itemRequirement": ["cd"] - }, - - "2": { - "task": "talk", - "npc": "lavanpc", - "text": [ - "Well? Did you tell her? Was she super happy?", - "Oh she said she'll take it?", - "Well, at least I can die knowing I was unloved." - ], - "completedText": [ - "Farewell adventurer, this may be the last time we meet." - ], - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Desert Quest@green@. You have gained nothing out of that!", - "colour": "#33cc33" - } - } - } - }, - - "seaactivities": { - "name": "Sea Activities", - "description": "A mysterious being needs your help under the sea.|Venture under the sea by unlocking a secret entrance on the beach and talk to a fishy being about some underwater sea activities. If I remember correctly he may need your help with something.", - "rewards": ["1000 gold"], - "stages": { - "0": { - "task": "talk", - "npc": "sponge", - "text": [ - "HELP ME PLEASE!", "THE EVIL SEA CUCUMBER STOLE MY MONEY", - "I SWEAR!", "PLEASE HE WENT SOMEWHERE SOUTH OF HERE", - "FIND HIM PLEASE AND GET MY MONEY BACK!" - ], - - "completedText": [ - "FIND THE SEA CUCUMBER PLEASE!" - ] - }, - - "1": { - "task": "talk", - "npc": "picklenpc", - "text": [ - "Wait why are you here in my house?", "Is it about that stupid sponge?", - "Listen man, I only took his money because he owed me", - "a lot of money for the last 10 years.", "I'm not giving it back.", - "Now get out of my house." - ], - - "completedText": [ - "I said I'm not giving it back, now beat it." - ] - }, - - "2": { - "task": "talk", - "npc": "sponge", - "text": [ - "Did you get my money back?", "He doesn't want to give it back?", - "Tell that stupid cucumber to give it back or else!" - ], - - "completedText": [ - "Go tell him to give me my money back!" - ] - }, - - "3": { - "task": "talk", - "npc": "picklenpc", - "text": [ - "Okay you know what, I asked you to leave my house", - "if you don't want to do that, then I'll have to fight you.", - "I'll meet you in my personal arena then." - ], - - "completedText": [ - "Go through the door and fight me fair and square!" - ] - }, - - "4": { - "task": "kill", - "mob": ["picklemob"], - "mobCountRequirement": 1 - }, - - "5": { - "task": "talk", - "npc": "picklenpc", - "text": [ - "All right all right. You win, I'll give that stupid sponge his gold.", - "Here, now get out of here and leave me alone." - ], - "itemKey": "gold", - "popup": { - "title": "Item acquired!", - "text": "The mysterious pickle-looking cucumber just gave you 1 whole gold coin!", - "colour": "#33cc33" - } - }, - - "6": { - "task": "talk", - "npc": "sponge", - "hasItemText": [ - "Thank you adventurer! With this gold I can finally buy a new house!", - "Just you look at me, Mr. Sponge, homeowner!" - ], - "itemRequirement": ["gold"], - "itemKey": "gold", - "itemCount": 10000, - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Sea Activities@green@. You have gained 10000 gold!", - "colour": "#33cc33" - } - } - } - }, - - "royaldrama": { - "name": "Royal Drama", - "description": "The king of Kaetram is in need of your help.|The king of Kaetram is missing and no one knows about his whereabouts. Perhaps you should go speak to the guards and see what they might not know about him.", - "rewards": ["Access to the castle"], - "hideNPCs": { "king": "before", "king2": "after", "royalguard2": "after" }, - "stages": { - "0": { - "task": "talk", - "npc": "royalguard2", - "text": [ - "Sir, please, you must help us.", - "We were moving the king around to this new and improved castle", - "and then we lost him.", "We were walking over the local sewers", - "and I think he may have fallen off into the sewers.", - "We didn't notice until we got here, honest to god!", - "You should try searching the sewers and see if you can find any clues." - ], - "completedText": [ - "Please, you must help us find the king.", - "Look into the sewers and see if you can find any clues." - ] - }, - - "1": { - "task": "talk", - "npc": "ratnpc", - "text": [ - "No please don't hit me.", "Listen I'll tell you everything I know about the king.", - "I saw him fall into the sewers, and he went into one of these pipes.", - "I know there should be a way to get deeper into the sewers from here.", - "That's all I know I swear!" - ], - "completedText": [ - "I'm telling you everything I know about the king!", - "Just look deeper into the sewer." - ] - }, - - "2": { - "task": "talk", - "npc": "king2", - "text": [ - "Oh dear adventurer, thank you so much for finding me.", - "Those filthy guards threw me in the sewers and didn't look back.", - "I will reward you greatly for your help.", - "Now I have to go back to the castle and get my affairs in order." - ], - - "itemKey": "gold", - "itemCount": 10000, - - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Royal Drama@green@. You have gained 10000 gold!", - "colour": "#33cc33" - } - } - } - }, - - "artsandcrafts": { - "name": "Arts and Crafts", - "description": "Help the old lady on the great mountai with her crafts.|The old lady on the great mountain is very cold and needs a brave adventurer to run errands for her. In exchange you will be taught how to start crafting items.", - "rewards": ["Access to crafting benches"], - "stages": { - "0": { - "task": "talk", - "npc": "iamverycoldnpc", - "text": [ - "Hello there young one...", - "Would you be interested in learning how to craft things?", - "I can teach you, but you'll need to bring me some materials first.", - "I'm gonna teach you how to make pendants.", - "First bring me some string, you can craft it by finding blue lilies.", - "Secondly I will need some beryl, you can find it in various caves.", - "You can use the crafting table to make a Beryl Pendant." - ], - - "completedText": [ - "Bring me some string and some beryl gemstone and use it to make a pendant." - ] - }, - - "1": { - "task": "talk", - "npc": "iamverycoldnpc", - "hasItemText": [ - "Wonderful, now you can use crafting in combination with other skills", - "to create more complex items. Fletch a small bowl and bring it to me." - ], - "completedText": [ - "Fletch me a small bowl and bring it to me." - ], - - "itemRequirement": ["berylpendant"] - }, - - "2": { - "task": "talk", - "npc": "iamverycoldnpc", - "hasItemText": [ - "Perfect, I'm gonna take that bowl just to annoy you. Go make another", - "one and use this tomato to make a stew using the cauldron.", - "You may need to go find the rest of the ingredients, I'm getting old." - ], - "completedText": [ - "Try making a stew using a bowl, a tomato, and the cauldron." - ], - - "itemRequirement": ["bowlsmall"], - "itemKey": "tomato" - }, - - "3": { - "task": "talk", - "npc": "iamverycoldnpc", - "hasItemText": [ - "Wonderful, see, you're getting the hang of it." - ], - - "itemRequirement": ["stew"], - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Arts and Craft@green@ quest.", - "colour": "#33cc33" - } - } - } - }, - - "ancientlands": { - "name": "Ancient Lands", - "description": "Discover the lands that lie beyond the great mountains.|A very spooky monument lies hidden in a peculiar icy place. You can find it by exploring the caves in the swamp lands. They may or may not be guarded by some ice golems or something, but you didn't hear that from me, I wouldn't possibly want to spoil anything for you.", - "rewards": ["Snow potion", "Access to the mountains beyond"], - "stages": { - "0": { - "task": "talk", - "npc": "ancientmanumentnpc", - "text": [ - "You seek to venture further east to the great beyond?", - "Adventurer, I recognize your past experience", - "I was there when you first arrived in this land.", - "Should you know of the perils, I may not hold you back.", - "But you must first complete a task to unlock the path.", - "South of here lies a great maze, dark, cold, and full of perils.", - "You must bring back the ancient ice sword lost within.", - "In exchange, I will grant you access to the ancient lands.", - "As well as knowledge of the snow potions, necessary for your survival beyond." - ], - - "completedText": [ - "Find the ancient ice sword!" - ] - }, - - "1": { - "task": "talk", - "npc": "ancientmanumentnpc", - "hasItemText": [ - "You have returned with the ancient ice sword?", - "I see, you have proven yourself worthy.", - "Take this knowledge of the snow potions, and the path shall be yours." - ], - "itemRequirement": ["icesword"], - "itemKey": "snowpotion", - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Ancient Lands@green@ quest. You have received a @crimson@Snow Potion@green@!", - "colour": "#33cc33" - } - } - } - }, - - "evilsanta": { - "name": "Evil Santa", - "description": "The young sherpa on the mountain needs your help!|Okay so here's what's happening. You know how Santa is supposed to be nice and bring you presents? Well this one throws them in your face, so he must be stopped before he goes on one of his yearly rampages again!", - "rewards": ["Access to the ice world!"], - "stages": { - "0": { - "task": "talk", - "npc": "snowshepherdboy", - "text": [ - "Oh dear adventurer, I'm so glad you're here!", - "I have discovered something sinister.", - "You see, I came up here looking for Santa.", - "But while I was looking through his factory", - "I've stumbled upon his evil plan to take over the world!", - "Please, you must help me defeat him.", - "In exchange I will show you how to get to the hidden ice world." - ], - "completedText": [ - "Please start by exploring the factory on the northern side of the mountain.", - "Come back to me when you have found any information." - ] - }, - "1": { - "task": "door", - "npc": "santaelfnpc", - "text": [ - "Welcome to Santa's sweatshop, how may I help you?", - "Oh, an adventurer! Please, you must try to help me!", - "The other 50 of you died trying to take on Santa!", - "It's not worth it man, oh geez, just please, help me!", - "No, please, don't try to fight Santa, he's too strong!", - "But if you really insist you must first obtain a key..." - ], - - "completedText": [ - "If you really feel you can take him on, the only way", - "is by obtaining the magical key that lets you in his chamber." - ] - }, - "2": { - "task": "talk", - "npc": "snowshepherdboy", - "text": [ - "You have some information don't you?", - "I see, you need a magical key to get into Santa's room.", - "I know the elves hold the key, but it's a hit or miss", - "if you'll be able to get one out of them. I guess you can try.", - "However I think there is a less dangerous way to get the key.", - "Perhaps it's worth checking out the underground factory?" - ], - - "completedText": [ - "Try finding a key in the underground factory.", - "If you manage, defeat the evil Santa and save the world!" - ] - }, - "3": { - "task": "kill", - "mob": ["santa"], - "mobCountRequirement": 1 - }, - "4": { - "task": "talk", - "npc": "snowshepherdboy", - "text": [ - "Congratulations, you did it!", - "I will make sure to tell everyone about your heroic deeds.", - "I will open up a path for you to the ice world." - ], - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Evil Santa@green@ quest. You can now access the @crimson@Ice World@green@", - "colour": "#33cc33" - } - } - } - }, - - "clamchowder": { - "name": "Clam Chowder", - "description": "Some human being needs your help in the ice world.|Someone, somewhere, I can't say where because I'm spoiling what's upcoming in this game needs your help to make some clam chowder. You know, I feel like I'm spoiling it already by telling you what the quest requires but knowing how these quests are setup should tell you that it may not just be about clam chowder.", - "reward": ["Nothing in particular"], - - "stages": { - "0": { - "task": "talk", - "npc": "bluebikinigirlnpc", - "text": [ - "Oh hello, you look particularly capable of running some errands.", - "You see, I was trying to cook some clam chowder but I'm missing the ingredients", - "primarily the clam meat.", "Could you defeat some clams and bring me some meat?", - "Lets say 5 of them?" - ], - "completedText": [ - "Please bring me 5 clam meat." - ] - }, - - "1": { - "task": "talk", - "npc": "bluebikinigirlnpc", - "hasItemText": [ - "Oh no adventurer, I almost forgot!", - "I don't actually need the clam chowder.", - "So you've probably heard this before but I'm too lazy", - "to come up with a better lie.", - "Okay, so my grandmother is very sick and I need you", - "to find out where she is.", "I was supposed to take care", - "of her but I really wanted to go to the ice beach.", - "I know one of the villagers might've seen her recently." - ], - - "completedText": [ - "Please find out where my grandmother is.", - "If you ask some of the villagers you might find some information." - ], - - "itemRequirement": ["clamobject"], - "itemRequirementCount": [5] - }, - - "2": { - "task": "talk", - "npc": "doctor", - "text": [ - "Oh hey there, how is your day going?", - "Oh you are looking for that girl's grandmother?", - "You know that's not actually her grandmother, she just likes", - "sending adventurers on redundant quests.", - "Regardless, I can tell you where she was last seen", - "if you bring me 2 clam chowders." - ], - - "completedText": [ - "Please bring me 2 clam chowders and I'll tell you what I know." - ] - }, - - "3": { - "task": "talk", - "npc": "doctor", - "hasItemText": [ - "Thank you so much, clam chowder is quite the delicacy around here.", - "Maybe it has something to do with the surplus of clams.", - "Anyway, I can tell you that I've seen that old lady venture", - "into the ice forest in one of the caves trying to find mushrooms.", - "It's probably your best bet to check out the caves nearby." - ], - - "completedText": [ - "You should probably check out the caves nearby." - ], - - "itemRequirement": ["clamchowder"], - "itemRequirementCount": [2] - }, - - "4": { - "task": "talk", - "npc": "oldlady2", - "text": [ - "No no no, absolutely not!", - "I am not moving from here, let me just enjoy my last days.", - "Unless of course you bring me 2 hot bowls of clam chowder.", - "But even then I might not actually wanna go.", - "That granddaughter of mine doesn't care about me.", - "Why is it such a recurring theme in this game?" - ], - - "completedText": [ - "I might sorta possibly potentially move if you bring me", - "2 hot bowls of clam chowder." - ] - }, - - "5": { - "task": "talk", - "npc": "oldlady2", - "hasItemText": [ - "Oh my, this is delicious!", - "I guess I'll get out of here.", - "Tell that granddaughter of mine that I am very hurt." - ], - - "completedText": [ - "Tell that granddaughter of mine that I am very hurt." - ], - - "itemRequirement": ["clamchowder"], - "itemRequirementCount": [2] - }, - - "6": { - "task": "talk", - "npc": "bluebikinigirlnpc", - "text": [ - "Oh my, I really didn't expect to see you again.", - "Oh you even found her? That's... great!", - "Here is a small reward for your troubles." - ], - - "itemKey": "gold", - "itemAmount": 7500, - - "popup": { - "title": "Quest completed!", - "text": "@green@You have just finished @crimson@Clam Chowder@green@ quest.", - "colour": "#33cc33" - } - } - } - } -} diff --git a/packages/server/data/quests/ancientlands.json b/packages/server/data/quests/ancientlands.json new file mode 100644 index 0000000000..8a86957a61 --- /dev/null +++ b/packages/server/data/quests/ancientlands.json @@ -0,0 +1,49 @@ +{ + "name": "Ancient Lands", + "description": "Discover the lands that lie beyond the great mountains.|A very spooky monument lies hidden in a peculiar icy place. You can find it by exploring the caves in the swamp lands. They may or may not be guarded by some ice golems or something, but you didn't hear that from me, I wouldn't possibly want to spoil anything for you.", + "rewards": ["Snow potion", "Access to the mountains beyond"], + "stages": { + "0": { + "task": "talk", + "npc": "ancientmanumentnpc", + "text": [ + "You seek to venture further east to the great beyond?", + "Adventurer, I recognize your past experience", + "I was there when you first arrived in this land.", + "Should you know of the perils, I may not hold you back.", + "But you must first complete a task to unlock the path.", + "South of here lies a great maze, dark, cold, and full of perils.", + "You must bring back the ancient ice sword lost within.", + "In exchange, I will grant you access to the ancient lands.", + "As well as knowledge of the snow potions, necessary for your survival beyond." + ], + "completedText": ["Find the ancient ice sword!"] + }, + "1": { + "task": "talk", + "npc": "ancientmanumentnpc", + "hasItemText": [ + "You have returned with the ancient ice sword?", + "I see, you have proven yourself worthy.", + "Take this knowledge of the snow potions, and the path shall be yours." + ], + "itemRequirements": [ + { + "key": "icesword", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "snowpotion", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Ancient Lands@green@ quest. You have received a @crimson@Snow Potion@green@!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/anvilsechoes.json b/packages/server/data/quests/anvilsechoes.json new file mode 100644 index 0000000000..1decc5a500 --- /dev/null +++ b/packages/server/data/quests/anvilsechoes.json @@ -0,0 +1,59 @@ +{ + "name": "Anvil's Echoes", + "description": "The local blacksmith has lost his hammer and needs your help.|Seriously, he was just using it and now it's gone. I'm sure he'll be offering you a very nice reward for it if you help him out. Just go talk to him, he should be located somewhere in Mudwich, like right in the centre or something.", + "rewards": ["Blacksmith's Boots", "420 Smithing experience", "Access to the Smithing skill"], + "stages": { + "0": { + "task": "talk", + "npc": "blacksmith", + "text": [ + "Dear adventurer, I have a huge problem.", + "My ancestral hammer has been stolen by a thief.", + "Without it I cannot produce some of my finest work.", + "I'm now stuck having to use this old hammer.", + "Listen, if you help me out I will give you something cool.", + "How about some smithing boots? They will help you smith faster.", + "It's definitely not some voodoo magic, I promise.", + "I last seen it when I was trying to smith on the beach.", + "I looked away for a second and it was gone.", + "I think you should start there and see if you can find any clues." + ], + "completedText": ["Please, go check out the beach for any clues."] + }, + "1": { + "task": "talk", + "npc": "blacksmith", + "text": ["Please, go check out the beach for any clues."], + "hasItemText": [ + "Oh! My wonderful hammer!", + "I can finally get back to break- I mean smithing.", + "Here, take these smithing boots as a reward.", + "You can also use my anvil to smith anything you want.", + "I'm sure you'll find it useful." + ], + "skillRewards": [ + { + "key": "smithing", + "experience": 420 + } + ], + "itemRequirements": [ + { + "key": "hammer", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "smithingboots", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You've been awarded @crimson@3000 Smithing experience@green@ and @crimson@Smithing Gloves@green@.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/artsandcrafts.json b/packages/server/data/quests/artsandcrafts.json new file mode 100644 index 0000000000..4a77d47740 --- /dev/null +++ b/packages/server/data/quests/artsandcrafts.json @@ -0,0 +1,74 @@ +{ + "name": "Arts and Crafts", + "description": "Help the old lady on the great mountai with her crafts.|The old lady on the great mountain is very cold and needs a brave adventurer to run errands for her. In exchange you will be taught how to start crafting items.", + "rewards": ["Access to crafting benches"], + "stages": { + "0": { + "task": "talk", + "npc": "iamverycoldnpc", + "text": [ + "Hello there young one...", + "Would you be interested in learning how to craft things?", + "I can teach you, but you'll need to bring me some materials first.", + "I'm gonna teach you how to make pendants.", + "First bring me some string, you can craft it by finding blue lilies.", + "Secondly I will need some beryl, you can find it in various caves.", + "You can use the crafting table to make a Beryl Pendant." + ], + "completedText": ["Bring me some string and some beryl gemstone and use it to make a pendant."] + }, + "1": { + "task": "talk", + "npc": "iamverycoldnpc", + "hasItemText": [ + "Wonderful, now you can use crafting in combination with other skills", + "to create more complex items. Fletch a small bowl and bring it to me." + ], + "completedText": ["Fletch me a small bowl and bring it to me."], + "itemRequirements": [ + { + "key": "berylpendant", + "count": 1 + } + ] + }, + "2": { + "task": "talk", + "npc": "iamverycoldnpc", + "hasItemText": [ + "Perfect, I'm gonna take that bowl just to annoy you. Go make another", + "one and use this tomato to make a stew using the cauldron.", + "You may need to go find the rest of the ingredients, I'm getting old." + ], + "completedText": ["Try making a stew using a bowl, a tomato, and the cauldron."], + "itemRequirements": [ + { + "key": "bowlsmall", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "tomato", + "count": 1 + } + ] + }, + "3": { + "task": "talk", + "npc": "iamverycoldnpc", + "hasItemText": ["Wonderful, see, you're getting the hang of it."], + "itemRequirements": [ + { + "key": "stew", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Arts and Craft@green@ quest.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/clamchowder.json b/packages/server/data/quests/clamchowder.json new file mode 100644 index 0000000000..c9b207e703 --- /dev/null +++ b/packages/server/data/quests/clamchowder.json @@ -0,0 +1,124 @@ +{ + "name": "Clam Chowder", + "description": "Some human being needs your help in the ice world.|Someone, somewhere, I can't say where because I'm spoiling what's upcoming in this game needs your help to make some clam chowder. You know, I feel like I'm spoiling it already by telling you what the quest requires but knowing how these quests are setup should tell you that it may not just be about clam chowder.", + "reward": ["Nothing in particular"], + "stages": { + "0": { + "task": "talk", + "npc": "bluebikinigirlnpc", + "text": [ + "Oh hello, you look particularly capable of running some errands.", + "You see, I was trying to cook some clam chowder but I'm missing the ingredients", + "primarily the clam meat.", + "Could you defeat some clams and bring me some meat?", + "Lets say 5 of them?" + ], + "completedText": ["Please bring me 5 clam meat."] + }, + "1": { + "task": "talk", + "npc": "bluebikinigirlnpc", + "hasItemText": [ + "Oh no adventurer, I almost forgot!", + "I don't actually need the clam chowder.", + "So you've probably heard this before but I'm too lazy", + "to come up with a better lie.", + "Okay, so my grandmother is very sick and I need you", + "to find out where she is.", + "I was supposed to take care", + "of her but I really wanted to go to the ice beach.", + "I know one of the villagers might've seen her recently." + ], + "completedText": [ + "Please find out where my grandmother is.", + "If you ask some of the villagers you might find some information." + ], + "itemRequirements": [ + { + "key": "clamobject", + "count": 5 + } + ] + }, + "2": { + "task": "talk", + "npc": "doctor", + "text": [ + "Oh hey there, how is your day going?", + "Oh you are looking for that girl's grandmother?", + "You know that's not actually her grandmother, she just likes", + "sending adventurers on redundant quests.", + "Regardless, I can tell you where she was last seen", + "if you bring me 2 clam chowders." + ], + "completedText": ["Please bring me 2 clam chowders and I'll tell you what I know."] + }, + "3": { + "task": "talk", + "npc": "doctor", + "hasItemText": [ + "Thank you so much, clam chowder is quite the delicacy around here.", + "Maybe it has something to do with the surplus of clams.", + "Anyway, I can tell you that I've seen that old lady venture", + "into the ice forest in one of the caves trying to find mushrooms.", + "It's probably your best bet to check out the caves nearby." + ], + "completedText": ["You should probably check out the caves nearby."], + "itemRequirements": [ + { + "key": "clamchowder", + "count": 2 + } + ] + }, + "4": { + "task": "talk", + "npc": "oldlady2", + "text": [ + "No no no, absolutely not!", + "I am not moving from here, let me just enjoy my last days.", + "Unless of course you bring me 2 hot bowls of clam chowder.", + "But even then I might not actually wanna go.", + "That granddaughter of mine doesn't care about me.", + "Why is it such a recurring theme in this game?" + ], + "completedText": ["I might sorta possibly potentially move if you bring me", "2 hot bowls of clam chowder."] + }, + "5": { + "task": "talk", + "npc": "oldlady2", + "hasItemText": [ + "Oh my, this is delicious!", + "I guess I'll get out of here.", + "Tell that granddaughter of mine that I am very hurt." + ], + "completedText": ["Tell that granddaughter of mine that I am very hurt."], + "itemRequirements": [ + { + "key": "clamchowder", + "count": 2 + } + ] + }, + "6": { + "task": "talk", + "npc": "bluebikinigirlnpc", + "text": [ + "Oh my, I really didn't expect to see you again.", + "Oh you even found her? That's... great!", + "Here is a small reward for your troubles." + ], + "itemRewards": [ + { + "key": "gold", + "count": 7500 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Clam Chowder@green@ quest.", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/codersfallacy.json b/packages/server/data/quests/codersfallacy.json new file mode 100644 index 0000000000..d3dd53fa53 --- /dev/null +++ b/packages/server/data/quests/codersfallacy.json @@ -0,0 +1,17 @@ +{ + "name": "Coder's Fallacy", + "description": "A distressed villager wants to talk to you.|Find him by the balloons desk in the village. It might be important. Might have something to do with something that someone (or perhaps you) did.", + "rewards": ["Key to a secret room"], + "questRequirements": ["codersglitch2", "anvilsechoes", "scientistspotion"], + "skillRequirements": { + "alchemy": 35, + "smithing": 45 + }, + + "stages": { + "0": { + "task": "talk", + "npc": "villager4" + } + } +} diff --git a/packages/server/data/quests/codersglitch.json b/packages/server/data/quests/codersglitch.json new file mode 100644 index 0000000000..d674e108a0 --- /dev/null +++ b/packages/server/data/quests/codersglitch.json @@ -0,0 +1,78 @@ +{ + "name": "The Coder's Glitch", + "description": "The coder requires your help sorting out his bugs.|The coder (as you were probably told about in the tutorial if you didn't skip it), requires your help with defeating the bugs he has created. He seeks the trophy of the first three bosses.", + "rewards": ["5000 strength experience", "A surprise weapon"], + "questRequirements": ["foresting", "desertquest", "sorcery"], + "skillRequirements": { + "accuracy": 15, + "strength": 20, + "defense": 15 + }, + + "stages": { + "0": { + "task": "talk", + "noc": "coder", + "text": [ + "Alright perfect, seems you have gotten the gist of how this world works.", + "One of my first glitches is the Skeleton King.", + "I created this entity due to needing a boss in this ga- I mean, world.", + "Turns out he's rather unstable and tends to attack random people in his", + "suspiciously boss-like-shaped room. I need you to defeat him and bring me", + "his head as a trophy.", + "The skeleton king resides east of the desert within", + "the volcano land known as Patsow." + ], + + "completedText": [ + "Find and defeat the Skeleton King. He's located east of the desert.", + "Within the lavalands known as Patsow. Bring me his talisman." + ] + }, + + "1": { + "task": "kill", + "mob": ["skeletonking"] + }, + + "2": { + "task": "talk", + "npc": "coder", + "hasItemText": [ + "Wow I really didn't think I'd see you aga-", + "Sorry, congratulations hero! Thank you for doing this task for me.", + "It is super important that you do this for me, as I need to test", + "the limits of the real cod- I mean, the limits of this world.", + "Well, regardless. I may have another task for you in the nearby future.", + "Why don't you go and explore the world a bit more? I'm sure you'll", + "find something or someone interesting..." + ], + "itemRequirements": [ + { + "key": "skeletonkingtalisman", + "count": 1 + } + ], + + "itemRewards": [ + { + "key": "club", + "count": 1 + } + ], + + "skillRewards": [ + { + "key": "strength", + "experience": 5000 + } + ], + + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Coder's Glitch@green@. You've been awarded @crimson@5000@green@ Strength experience!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/codersglitch2.json b/packages/server/data/quests/codersglitch2.json new file mode 100644 index 0000000000..c013c7f767 --- /dev/null +++ b/packages/server/data/quests/codersglitch2.json @@ -0,0 +1,101 @@ +{ + "name": "The Coder's Glitch II", + "description": "The coder yet again needs your help with his silly glitches.|He's done it again, well, more like, he already has done it and is waiting on you to get strong enough so that you can actually help him out with the tasks at hand. Probably something more about slaying stuff, you know, the generic things.", + "rewards": ["7500 Accuracy experience", "4500 Strength experience", "3000 Defense experience", "A surprise shield"], + "questRequirements": ["codersglitch", "minersquest", "scavenger"], + "skillRequirements": { + "accuracy": 25, + "strength": 40, + "defense": 30 + }, + + "hideNPCs": { + "coder": "after", + "villager4": "before" + }, + + "stages": { + "0": { + "task": "talk", + "npc": "coder", + "text": [ + "Okay, so like, I need more of those glitchy things defeated.", + "Listen, they are slowly deteriorating these lands so we must hurry.", + "Because I want this quest to waste as much of your time as possible,", + "I will require you bring me three talismans in order to continue.", + "But here's the catch, I also want you to defeat the said bosses.", + "That way you can't just sneak in there and pick up the talismans.", + "I'm not sure how you would do that, but I'm sure you would find a way.", + "Anyways, I want you to defeat the following bosses:", + "The Ogre Lord, the Queen Ant, and the Forest Dragon.", + "You must defeat the bosses in order." + ], + "completedText": [ + "Head out and defeat the Ogre Lord, the Queen Ant, and the Forest Dragon.", + "You must defeat the bosses in order." + ] + }, + "1": { + "task": "kill", + "mob": ["ogrelord"], + "mobCountRequirement": 1 + }, + "2": { + "task": "kill", + "mob": ["queenant"], + "mobCountRequirement": 1 + }, + "3": { + "task": "kill", + "mob": ["forestdragon"], + "mobCountRequirement": 1 + }, + "4": { + "task": "talk", + "npc": "coder", + "hasItemText": [ + "Wonderful, the anti-coder will surely be displeased- Oh sorry, amazing job man!", + "Your work is surely masterful and very exquisite, I must say.", + "No I'm not losing my mind haha, you are. I'm perfectly fine the way I am.", + "Regardless, thank you for your help." + ], + + "itemRequirements": [ + { + "key": "ogrelordtalisman", + "count": 1 + }, + { + "key": "queenanttalisman", + "count": 1 + }, + { + "key": "forestdragontalisman", + "count": 1 + } + ], + + "skillRewards": [ + { + "key": "accuracy", + "experience": 7500 + }, + { + "key": "strength", + "experience": 4500 + }, + { + "key": "defense", + "experience": 3000 + } + ], + + "itemRewards": [ + { + "key": "ironroundshield", + "count": 1 + } + ] + } + } +} diff --git a/packages/server/data/quests/desertquest.json b/packages/server/data/quests/desertquest.json new file mode 100644 index 0000000000..50f4048328 --- /dev/null +++ b/packages/server/data/quests/desertquest.json @@ -0,0 +1,70 @@ +{ + "name": "Desert Quest", + "description": "Help the dying adventurer send a letter to his wife.|The adventurer is dying and is in dire need of your help with super important matters prior to his death. You can find him in the desert.", + "rewards": ["Secret Reward"], + "hideNPCs": { + "lavanpc": "after" + }, + "stages": { + "0": { + "task": "talk", + "npc": "lavanpc", + "text": [ + "Please dear adventurer, beware of what lies ahead.", + "I am no longer able to carry on forth.", + "Would you please be so kind as to aid me?", + "I must tell my wife I will no longer be coming home.", + "Could you deliver this CD for me?", + "She lives south of the desert." + ], + "completedText": [ + "Please adventurer, deliver the CD.", + "It's my new Demo Tape, I must ensure she hears it." + ], + "itemRewards": [ + { + "key": "cd", + "count": 1 + } + ] + }, + "1": { + "task": "talk", + "npc": "villagegirl", + "text": ["Hello? Why are you in my house..?"], + "hasItemText": [ + "Who are you and why are you in my house?", + "Is it about my husband?", + "Oh my god I knew it, that bastard is cheating on me!", + "Wait, I can sorta read your thoughts.", + "Oh no, he's dying. That is super sad", + "He wanted me to have this CD?", + "That bastard is still trying to sell his", + "demo tape even on his death bed.", + "Tell him I'll take it but will probably never listen to it." + ], + "completedText": ["Go on now, tell him."], + "itemRequirements": [ + { + "key": "cd", + "count": 1 + } + ] + }, + "2": { + "task": "talk", + "npc": "lavanpc", + "text": [ + "Well? Did you tell her? Was she super happy?", + "Oh she said she'll take it?", + "Well, at least I can die knowing I was unloved." + ], + "completedText": ["Farewell adventurer, this may be the last time we meet."], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Desert Quest@green@. You have gained nothing out of that!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/evilsanta.json b/packages/server/data/quests/evilsanta.json new file mode 100644 index 0000000000..48dfca250a --- /dev/null +++ b/packages/server/data/quests/evilsanta.json @@ -0,0 +1,75 @@ +{ + "name": "Evil Santa", + "description": "The young sherpa on the mountain needs your help!|Okay so here's what's happening. You know how Santa is supposed to be nice and bring you presents? Well this one throws them in your face, so he must be stopped before he goes on one of his yearly rampages again!", + "rewards": ["Access to the ice world!"], + "stages": { + "0": { + "task": "talk", + "npc": "snowshepherdboy", + "text": [ + "Oh dear adventurer, I'm so glad you're here!", + "I have discovered something sinister.", + "You see, I came up here looking for Santa.", + "But while I was looking through his factory", + "I've stumbled upon his evil plan to take over the world!", + "Please, you must help me defeat him.", + "In exchange I will show you how to get to the hidden ice world." + ], + "completedText": [ + "Please start by exploring the factory on the northern side of the mountain.", + "Come back to me when you have found any information." + ] + }, + "1": { + "task": "door", + "npc": "santaelfnpc", + "text": [ + "Welcome to Santa's sweatshop, how may I help you?", + "Oh, an adventurer! Please, you must try to help me!", + "The other 50 of you died trying to take on Santa!", + "It's not worth it man, oh geez, just please, help me!", + "No, please, don't try to fight Santa, he's too strong!", + "But if you really insist you must first obtain a key..." + ], + "completedText": [ + "If you really feel you can take him on, the only way", + "is by obtaining the magical key that lets you in his chamber." + ] + }, + "2": { + "task": "talk", + "npc": "snowshepherdboy", + "text": [ + "You have some information don't you?", + "I see, you need a magical key to get into Santa's room.", + "I know the elves hold the key, but it's a hit or miss", + "if you'll be able to get one out of them. I guess you can try.", + "However I think there is a less dangerous way to get the key.", + "Perhaps it's worth checking out the underground factory?" + ], + "completedText": [ + "Try finding a key in the underground factory.", + "If you manage, defeat the evil Santa and save the world!" + ] + }, + "3": { + "task": "kill", + "mob": ["santa"], + "mobCountRequirement": 1 + }, + "4": { + "task": "talk", + "npc": "snowshepherdboy", + "text": [ + "Congratulations, you did it!", + "I will make sure to tell everyone about your heroic deeds.", + "I will open up a path for you to the ice world." + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Evil Santa@green@ quest. You can now access the @crimson@Ice World@green@", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/foresting.json b/packages/server/data/quests/foresting.json new file mode 100644 index 0000000000..6028c2fe08 --- /dev/null +++ b/packages/server/data/quests/foresting.json @@ -0,0 +1,61 @@ +{ + "name": "Foresting", + "description": "Help the forester with foresting stuff.|The forester needs your help with foresting-related things such as trees and axes and stuff like that. I don't know I'm just a quest description stop asking me questions.", + "rewards": ["A Rusted Axe", "Access to Forester's store"], + "stages": { + "0": { + "task": "talk", + "npc": "forestnpc", + "text": [ + "Greetings dear adventurer!", + "Please, you must help me.", + "I simply cannot take it much longer, I've been", + "cutting trees for the past few days.", + "I'm rather exhausted, would you be so kind as", + "to bring me 10 logs?" + ], + "completedText": ["Please adventurer, bring me 10 logs.", "That's all I ask from you!"] + }, + "1": { + "task": "talk", + "npc": "forestnpc", + "hasItemText": [ + "Oh my, dear adventurer", + "These logs seem to have too many imperfections in them", + "Would you be so kind as to bring me another 10?" + ], + "completedText": ["Please adventurer, I beg of you, just 10 more logs."], + "itemRequirements": [ + { + "key": "logs", + "count": 10 + } + ] + }, + "2": { + "task": "talk", + "npc": "forestnpc", + "hasItemText": [ + "Ah yes, you see, these logs are suitable for my needs.", + "Thank you so much dear adventurer. Please take this reward!" + ], + "itemRequirements": [ + { + "key": "logs", + "count": 10 + } + ], + "itemRewards": [ + { + "key": "ironaxe", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Foresting@green@ quest. You have received a @crimson@Rusted Axe@green@!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/herbalistdesperation.json b/packages/server/data/quests/herbalistdesperation.json new file mode 100644 index 0000000000..2b1da1edee --- /dev/null +++ b/packages/server/data/quests/herbalistdesperation.json @@ -0,0 +1,77 @@ +{ + "name": "Herbalist's Desperation", + "description": "A local herbalist is in dire need of rare herbs.|The small village of Lakesworld relies on the potions of a local herbalist for their daily needs. However, the herbalist has run out of their most important ingredients and seeks the aid of a brave adventurer. Travel to the Misty Marshlands and obtain these elusive herbs for them.", + "rewards": ["Mystical Potion", "1500 Foraging experience"], + "stages": { + "0": { + "task": "talk", + "npc": "herbalist", + "text": [ + "Ah, adventurer! Just the person I was hoping to see.", + "You see, I have a bit of a predicament.", + "The herbs I need for my potions are all gone!", + "Could you fetch me 3 Blue Lilies?", + "I would go myself, but the marshes are treacherous and I am no fighter." + ], + "completedText": [ + "The villagers are crossing their fingers, toes, and spaghetti noodles in anticipation.", + "Please bring back 3 Blue Lilies." + ] + }, + "1": { + "task": "talk", + "npc": "herbalist", + "hasItemText": [ + "Ah! These are perfect! However...", + "It seems I've omitted to mention a few more ingredients.", + "My bad, it's been a wacky day.", + "Could you kindly round up 2 paprikas and 2 tomatoes for me?", + "I have a hunch they're lurking nearby", + "I promise, this will be the last request." + ], + "completedText": ["The villagers are getting restless.", "Please bring back 2 paprikas and 2 tomatoes."], + "itemRequirements": [ + { + "key": "bluelily", + "count": 3 + } + ] + }, + "2": { + "task": "talk", + "npc": "herbalist", + "hasItemText": [ + "You've done it! The potions can now be made.", + "Thank you, brave adventurer. Take this potion as a token of my never-ending gratitude.", + "See you around!" + ], + "itemRequirements": [ + { + "key": "tomato", + "count": 2 + }, + { + "key": "paprika", + "count": 2 + } + ], + "skillRewards": [ + { + "key": "foraging", + "experience": 1500 + } + ], + "itemRewards": [ + { + "key": "hotsauce", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Herbalist's Desperation@green@. You've been awarded a @crimson@Hot Sauce@green@ and @crimson@1500@green@ Foragingexperience!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/minersquest.json b/packages/server/data/quests/minersquest.json new file mode 100644 index 0000000000..789be2c02e --- /dev/null +++ b/packages/server/data/quests/minersquest.json @@ -0,0 +1,48 @@ +{ + "name": "Miner's Quest", + "description": "The miner needs your help with acuqiring ore.|A miner is in need of your immediate assistance. Instead of going out and looking for ore by himself, he wants to harass random adventurers to do his job for him. You can find him pretending to mine where the desert meets the volcano.", + "rewards": ["Access to Miner's store", "2000 Mining experience"], + "stages": { + "0": { + "task": "talk", + "npc": "miner", + "text": [ + "Oh please, adventurer, please help me.", + "I'm supposed to be mining, but I really don't feel like it.", + "Please you must help me before my supervisor finds out.", + "I need to collect 15 nisoc ores by the end of the day or else", + "I'm going to be fired!", + "Bring me 15 of those ores and I'll", + "give you access to my store!" + ], + "completedText": ["Please hurry, the time is ticking!", "Bring me 15 nisoc ores."] + }, + "1": { + "task": "talk", + "npc": "miner", + "hasItemText": [ + "Phew, thank you for your help, now I can just do nothing.", + "It sure is nice being self-employed eh?", + "Come back any time and I'll buy your ores at a better price", + "than any other store!" + ], + "itemRequirements": [ + { + "key": "nisocore", + "count": 15 + } + ], + "skillRewards": [ + { + "key": "mining", + "experience": 2000 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Miner's Quest@green@. You've been awarded @crimson@2000@green@ Mining experience!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/minersquest2.json b/packages/server/data/quests/minersquest2.json new file mode 100644 index 0000000000..8dd12c422b --- /dev/null +++ b/packages/server/data/quests/minersquest2.json @@ -0,0 +1,67 @@ +{ + "name": "Miner's Quest II", + "description": "The miner is at it again, this time he doesn't just need ores.|The miner requires your help once again, this time his sketch creations include bars of metals and stuff like that. You should probably go see what he's up to and whatnot.", + "rewards": ["Access to the mining cave"], + "skillRequirements": { + "mining": 30 + }, + "questRequirements": ["minersquest"], + "stages": { + "0": { + "task": "talk", + "npc": "miner", + "text": [ + "Oh it's you again, seems you didn't learn your lesson last time.", + "Anyway, what do you say you help me out again, this time I need", + "to do something with the ores I've collected.", + "But I'm not gonna give them to you, you have to actually go", + "and collect ores again and this time smelt them.", + "Doesn't that sound like an amazing deal where only I benefit?", + "Tell you what, you help me out and I will give you access to", + "my special secret cave where only miners are allowed.", + "Okay so anyway, I need you to bring me 5 tin bars, 5 copper bars." + ], + "completedText": ["Please hurry, the time is ticking!", "Bring me 5 tin bars and 5 copper bars."] + }, + "1": { + "task": "talk", + "npc": "miner", + "hasItemText": [ + "Oh wonderful, but unfortunately it's not enough.", + "I want you to bring me 5 bronze bars." + ], + "completedText": ["Please hurry, the time is ticking!", "Bring me 5 bronze bars."], + "itemRequirements": [ + { + "key": "tinbar", + "count": 5 + }, + { + "key": "copperbar", + "count": 5 + } + ] + }, + "2": { + "task": "talk", + "npc": "miner", + "hasItemText": [ + "Okay fine, I think I'm done sending you on errands.", + "For now that is, who knows maybe I'll need you in", + "the future for redundant tasks like these.", + "Thank you for your help, I guess you can use my cave now." + ], + "itemRequirements": [ + { + "key": "bronzebar", + "count": 5 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Miner's Quest II@green@. You've been awarded @crimson@Access to the mining cave@green@!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/ricksroll.json b/packages/server/data/quests/ricksroll.json new file mode 100644 index 0000000000..299bfcd46a --- /dev/null +++ b/packages/server/data/quests/ricksroll.json @@ -0,0 +1,96 @@ +{ + "name": "Rick's Roll", + "description": "Rick needs help to make his famous roll to be together forever with his girlfriend.|Rick finds himself in need of assistance to create his famous roll. Go talk to him and see what he needs! ", + "rewards": ["1987 Cooking experience"], + "stages": { + "0": { + "task": "cooking", + "npc": "rick", + "text": [ + "Hello adventurer please help me.", + "Me and my girlfriend are no strangers to love", + "She knows the rules and so do I", + "A full commitment’s what I’m thinking of", + "She wouldn’t get this from any other guy", + "I just wanna tell her how I’m feeling", + "Gotta make her understand", + "That's why I need your help", + "Please bring me 5 cooked shrimps", + "They are the key ingredients of my perfect rolls", + "I need to make it so we could be together forever" + ], + "completedText": [ + "Don't give up on me", + "Don't let me down", + "Don't let me say goodbye", + "Please bring me 5 cooked shrimps" + ] + }, + "1": { + "task": "cooking", + "npc": "rick", + "hasItemText": [ + "Thank you. I'm so touched", + "I'll never gonna go around and desert you", + "Give me a second", + "....", + "....", + "Perfect!", + "Could you do me a favour and give my rolls to my girlfriend?" + ], + "itemRequirements": [ + { + "key": "cookedshrimp", + "count": 5 + } + ], + "itemRewards": [ + { + "key": "seaweedroll", + "count": 1 + } + ], + "popup": { + "title": "Item acquired!", + "text": "Rick handed over his rolls, you can tell that it was made with love!", + "colour": "#33cc33" + }, + "completedText": [ + "Don't give up on me", + "Don't let me down", + "Don't let me say goodbye", + "Please deliver my rolls to my girlfriend, Lena!" + ] + }, + "2": { + "task": "door" + }, + "3": { + "task": "talk", + "npc": "rickgf", + "hasItemText": [ + "Oh!", + "Is this from Rick?", + "Thank you so much adventurer!", + "Please take this as a token of my appreciation" + ], + "itemRequirements": [ + { + "key": "seaweedroll", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "gold", + "count": 1987 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Rick's Roll@green@. You have gained 1987 gold!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/royaldrama.json b/packages/server/data/quests/royaldrama.json new file mode 100644 index 0000000000..2f74b8b40b --- /dev/null +++ b/packages/server/data/quests/royaldrama.json @@ -0,0 +1,62 @@ +{ + "name": "Royal Drama", + "description": "The king of Kaetram is in need of your help.|The king of Kaetram is missing and no one knows about his whereabouts. Perhaps you should go speak to the guards and see what they might not know about him.", + "rewards": ["Access to the castle"], + "hideNPCs": { + "king": "before", + "king2": "after", + "royalguard2": "after" + }, + "stages": { + "0": { + "task": "talk", + "npc": "royalguard2", + "text": [ + "Sir, please, you must help us.", + "We were moving the king around to this new and improved castle", + "and then we lost him.", + "We were walking over the local sewers", + "and I think he may have fallen off into the sewers.", + "We didn't notice until we got here, honest to god!", + "You should try searching the sewers and see if you can find any clues." + ], + "completedText": [ + "Please, you must help us find the king.", + "Look into the sewers and see if you can find any clues." + ] + }, + "1": { + "task": "talk", + "npc": "ratnpc", + "text": [ + "No please don't hit me.", + "Listen I'll tell you everything I know about the king.", + "I saw him fall into the sewers, and he went into one of these pipes.", + "I know there should be a way to get deeper into the sewers from here.", + "That's all I know I swear!" + ], + "completedText": ["I'm telling you everything I know about the king!", "Just look deeper into the sewer."] + }, + "2": { + "task": "talk", + "npc": "king2", + "text": [ + "Oh dear adventurer, thank you so much for finding me.", + "Those filthy guards threw me in the sewers and didn't look back.", + "I will reward you greatly for your help.", + "Now I have to go back to the castle and get my affairs in order." + ], + "itemRewards": [ + { + "key": "gold", + "count": 10000 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Royal Drama@green@. You have gained 10000 gold!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/royalpet.json b/packages/server/data/quests/royalpet.json new file mode 100644 index 0000000000..a260ca95a6 --- /dev/null +++ b/packages/server/data/quests/royalpet.json @@ -0,0 +1,107 @@ +{ + "name": "Royal Pet", + "description": "The king needs your help with distributing the good news to the people of Kaetram.|The king has asked you personally, yes, you, to run a couple errands for him. You must deliver some stuff and whatnot. Actually why don't you go talk to him instead of reading this description and spoiling the surprise. By surprise I mean you have to run around the place doing stupid stuff, but whatever, who cares, that's why you signed up on this game didn't you. Or was it because you wanted to grind but your addiction to being a completionist leads you to complete these useless quests. Oh well, this description is long enough.", + "rewards": ["A cute little pet kitty"], + "questRequirements": ["royaldrama"], + "stages": { + "0": { + "task": "talk", + "npc": "king", + "text": [ + "Hello fellow idiot, I mean adventurer.", + "I must distribute the good news to the residents of Kaetram", + "I have all these books that I must hand out. Would you be so kind", + "as to deliver these to some of Kaetram's residents.", + "There should be a couple located throughout the city and in the swamp." + ], + "completedText": [ + "Please deliver the books to residents of Kaetram. They're located", + "throughout the city and in the swamp." + ], + "itemRewards": [ + { + "key": "book", + "count": 3 + } + ] + }, + "1": { + "task": "talk", + "subStages": [ + { + "task": "talk", + "npc": "shepherdboy", + "text": ["Oh hello there adventurer!"], + "hasItemText": [ + "Hello there adventurer!", + "Oh, you have a book from the king?", + "Is he hiring random people to hand out pamphlets again?", + "Oh well, I'll take it I guess." + ], + "completedText": ["Thank you for the book I guess."], + "itemRequirements": [ + { + "key": "book", + "count": 1 + } + ] + }, + { + "task": "talk", + "npc": "redbikinigirlnpc", + "text": ["Oh hello!"], + "hasItemText": [ + "Oh, hello there, what are you doing here?", + "Oh, you have more propagan- I mean, news from the king?", + "Okay well thank you I guess..." + ], + "completedText": ["Oh hello adventurer."], + "itemRequirements": [ + { + "key": "book", + "count": 1 + } + ] + }, + { + "task": "talk", + "npc": "fisherman", + "text": ["Oh hello there adventurer!"], + "hasItemText": [ + "Oh, hello there, what are you doing here?", + "Oh, you have more propagan- I mean, news from the king?", + "Okay well thank you I guess..." + ], + "completedText": ["Oh hello adventurer."], + "itemRequirements": [ + { + "key": "book", + "count": 1 + } + ] + } + ] + }, + "2": { + "task": "talk", + "npc": "king", + "text": [ + "Thank you for delivering the books adventurer.", + "I have a special reward for you.", + "I have this cute little kitty that I want to give to you.", + "I hope you enjoy it." + ], + "itemRewards": [ + { + "key": "catpet", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Royal Pet@green@. You have gained a cute little pet kitty!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/scavenger.json b/packages/server/data/quests/scavenger.json new file mode 100644 index 0000000000..752fff507b --- /dev/null +++ b/packages/server/data/quests/scavenger.json @@ -0,0 +1,69 @@ +{ + "name": "Scavenger", + "description": "The local village girl needs your help to get out of her responsibilities.|Quick, there is a village girl who does not want to fulfill her duties towards her grandmother and you must go help her immediately. I think this quest involves scavenging for ingredients and stuff but I'm not particularly sure.", + "rewards": ["Nothing in particular, but it'll be fun!"], + "stages": { + "0": { + "task": "talk", + "npc": "villagegirl2", + "text": [ + "Hey you, you look like someone particularly du-", + "I mean, you look like someone who can help me.", + "You see, my grandmother asked me to bring her some flowers", + "and blueberries, and some mushrooms, and some coal, and some logs", + "and some tomatoes, and some potatoes, and some string, and some strawberries", + "anyway, I won't have you bring all that.", + "Can you go check on my grandma first, she's probably in one of those houses", + "I'm not sure, try looking around." + ], + "completedText": ["Look through the houses for my grandma and see what she needs."] + }, + "1": { + "task": "talk", + "npc": "oldlady", + "text": [ + "Oh hello, please don't mind the random tent in my house.", + "I've been waiting for my granddaughter to bring me some ingredients", + "but that was months ago. Do you think you can help me out?", + "I only ask that you bring me 2 tomatoes, 2 strawberries, and a piece of string.", + "I will grant you a reward if you do.", + "You can find those ingredients throughout the world, just look around." + ], + "completedText": ["Please bring me 2 tomatoes, 2 strawberries, and a piece of string."] + }, + "2": { + "task": "talk", + "npc": "oldlady", + "hasItemText": [ + "Thank you so much young one. You're so helpful.", + "Unlike that granddaughter of mine.", + "Here, take this gold as a reward for your troubles." + ], + "itemRequirements": [ + { + "key": "tomato", + "count": 2 + }, + { + "key": "strawberry", + "count": 2 + }, + { + "key": "string", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "gold", + "count": 7500 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Scavenger@green@. You've been awarded @crimson@7500@green@ gold coins!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/scientistspotion.json b/packages/server/data/quests/scientistspotion.json new file mode 100644 index 0000000000..3c36383b47 --- /dev/null +++ b/packages/server/data/quests/scientistspotion.json @@ -0,0 +1,22 @@ +{ + "name": "Scientist's Potion", + "description": "The local scientist needs your help with creating his special potion.|A lonely scientist is in dire need of your assistance in creating his magica- I mean, scientific concotions. No seriously, this quest is pretty essential if you wish to create potions that'll help you in fighting bigger and badder monsters in the future. Just trust me, this quest prompt. I'm not making any of this up. Just go help the dude out, he's located somewhere in Mudwich, possibly in one of the houses. It's more mysterious if I give cryptic hints.", + "rewards": ["Access to the Potion store", "2000 Alchemy experience"], + "stages": { + "0": { + "task": "talk", + "npc": "scientist", + "text": [ + "Hey there kid, do you wanna help me with something?", + "Listen, I need a bunch of ingredients in order to create a potion", + "this is the perfect potion. It'll make you stronger, faster, and smarter", + "all at the same time.", + "Listen, if you help me out I'll let you in on a little secret", + "I'll teach you how to make potions all by yourself.", + "Heck, I'll even give you access to all my cauldr- I mean,", + "my scientific equipment throughout the world.", + "Okay so what I need is you to make me one of my special potions." + ] + } + } +} diff --git a/packages/server/data/quests/seaactivities.json b/packages/server/data/quests/seaactivities.json new file mode 100644 index 0000000000..23c3d92ee0 --- /dev/null +++ b/packages/server/data/quests/seaactivities.json @@ -0,0 +1,101 @@ +{ + "name": "Sea Activities", + "description": "A mysterious being needs your help under the sea.|Venture under the sea by unlocking a secret entrance on the beach and talk to a fishy being about some underwater sea activities. If I remember correctly he may need your help with something.", + "rewards": ["1000 gold"], + "stages": { + "0": { + "task": "talk", + "npc": "sponge", + "text": [ + "HELP ME PLEASE!", + "THE EVIL SEA CUCUMBER STOLE MY MONEY", + "I SWEAR!", + "PLEASE HE WENT SOMEWHERE SOUTH OF HERE", + "FIND HIM PLEASE AND GET MY MONEY BACK!" + ], + "completedText": ["FIND THE SEA CUCUMBER PLEASE!"] + }, + "1": { + "task": "talk", + "npc": "picklenpc", + "text": [ + "Wait why are you here in my house?", + "Is it about that stupid sponge?", + "Listen man, I only took his money because he owed me", + "a lot of money for the last 10 years.", + "I'm not giving it back.", + "Now get out of my house." + ], + "completedText": ["I said I'm not giving it back, now beat it."] + }, + "2": { + "task": "talk", + "npc": "sponge", + "text": [ + "Did you get my money back?", + "He doesn't want to give it back?", + "Tell that stupid cucumber to give it back or else!" + ], + "completedText": ["Go tell him to give me my money back!"] + }, + "3": { + "task": "talk", + "npc": "picklenpc", + "text": [ + "Okay you know what, I asked you to leave my house", + "if you don't want to do that, then I'll have to fight you.", + "I'll meet you in my personal arena then." + ], + "completedText": ["Go through the door and fight me fair and square!"] + }, + "4": { + "task": "kill", + "mob": ["picklemob"], + "mobCountRequirement": 1 + }, + "5": { + "task": "talk", + "npc": "picklenpc", + "text": [ + "All right all right. You win, I'll give that stupid sponge his gold.", + "Here, now get out of here and leave me alone." + ], + "itemRewards": [ + { + "key": "gold", + "count": 1 + } + ], + "popup": { + "title": "Item acquired!", + "text": "The mysterious pickle-looking cucumber just gave you 1 whole gold coin!", + "colour": "#33cc33" + } + }, + "6": { + "task": "talk", + "npc": "sponge", + "hasItemText": [ + "Thank you adventurer! With this gold I can finally buy a new house!", + "Just you look at me, Mr. Sponge, homeowner!" + ], + "itemRequirements": [ + { + "key": "gold", + "count": 1 + } + ], + "itemRewards": [ + { + "key": "gold", + "count": 10000 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Sea Activities@green@. You have gained 10000 gold!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/sorcery.json b/packages/server/data/quests/sorcery.json new file mode 100644 index 0000000000..c98534b12b --- /dev/null +++ b/packages/server/data/quests/sorcery.json @@ -0,0 +1,49 @@ +{ + "name": "Sorcery and Stuff", + "description": "Learn the basics to sorcery|The sorcerer needs your help to re-assemble a long-lost magic staff that he lost on the beach. Help him out and perhaps he may teach you a thing or two about sorcery and stuff.", + "rewards": ["A Magic Staff", "Access to Sorcerer's store"], + "stages": { + "0": { + "task": "talk", + "npc": "sorcerer", + "text": [ + "Oh dear adventurer, it's you! One of the thousands", + "I've trained and definitely not someone I don't remember.", + "Listen, I'm on vacation here and was relaxing on the beach", + "when all of the sudden I lost my entire magic contrband!", + "I can't run a business if I don't have my equipment.", + "Tell you what, if you bring me back 3 magic beads, I'll", + "grant you access to my shop!", + "You'll be taught how to", + "craft your own magic staffs!" + ], + "completedText": [ + "Please bring me 3 magic beads.", + "If I recall correctly, some big macho crab took it", + "and then retreated in a cave west of here." + ] + }, + "1": { + "task": "talk", + "npc": "sorcerer", + "hasItemText": ["Perfect, just perfect. These will surely be great."], + "itemRequirements": [ + { + "key": "bead", + "count": 3 + } + ], + "itemRewards": [ + { + "key": "staff", + "count": 1 + } + ], + "popup": { + "title": "Quest completed!", + "text": "@green@You have just finished @crimson@Sorcery and Stuff@green@ quest. You have received a @crimson@Magic Staff@green@!", + "colour": "#33cc33" + } + } + } +} diff --git a/packages/server/data/quests/tutorial.json b/packages/server/data/quests/tutorial.json new file mode 100644 index 0000000000..73c29c3c3b --- /dev/null +++ b/packages/server/data/quests/tutorial.json @@ -0,0 +1,273 @@ +{ + "name": "Welcome to Kaetram", + "description": "Teaching you the very basics of Kaetram.|This tutorial will teach you how to move around, attack, interact with objects and use ranged weapons. Follow the arrows and talk to the NPCs if you are stuck.", + "rewards": ["Knowledge of the game :)"], + "stages": { + "0": { + "task": "talk", + "npc": "coder", + "text": [ + "Oh, hello! Welcome! Click on me again!", + "You're getting the hang of it, keep clicking.", + "Perfect, seems like you get the gist of it.", + "I am the coder, I created this world, and, well, you.", + "Listen, to me you are just a more sophisticated AI.", + "So I'm gonna need you to get used to this world and help me out.", + "You see, I created these previous AIs, but they went rogue.", + "They are now trying to destroy this world.", + "So, I created you in order to stop them and save us all.", + "Before we get to any of that, we need to teach you some of the basics.", + "You can move around by clicking, or using WASD keys, or arrow keys.", + "Make sure you talk to everyone you meet fully, you never know what you might learn.", + "Whenever you feel like you're ready, head on outside and talk to the guard." + ], + "completedText": ["Whenever you are ready, head outside and talk to the guard."], + "pointer": { + "type": 0, + "x": 134, + "y": 559 + } + }, + + "1": { + "task": "door", + "pointer": { + "type": 0, + "x": 135, + "y": 569 + } + }, + + "2": { + "task": "talk", + "npc": "guard", + "text": [ + "Oh great anot- nevermind.", + "Welcome to the world of Kaetram.", + "I'm here to teach you about skills and combat.", + "Skills are activities that allow you to collect items and gain experience.", + "You can use the experience to discover new areas and engage in more complex tasks.", + "Before we get to any combat-related skills, I want you to cut two trees for me.", + "Here, take this axe, open your inventory, and equip it." + ], + + "completedText": ["Go on, cut two trees for me."], + + "itemRewards": [ + { + "key": "bronzeaxe", + "count": 1 + } + ], + + "pointer": { + "type": 0, + "x": 60, + "y": 602 + } + }, + + "3": { + "task": "tree", + "tree": "tutorialoak", + "treeCount": 2 + }, + + "4": { + "task": "npc", + "npc": "guard", + + "text": [ + "Okay perfect, you can use logs to make sticks.", + "Take this knife and use it to fletch some sticks.", + "Simply click on the item in your inventory and select the interact option." + ], + "completedText": ["Go on, fletch the logs into sticks for me."], + + "itemRewards": [ + { + "key": "knife", + "count": 1 + } + ], + "pointer": { + "type": 0, + "x": 60, + "y": 602 + } + }, + + "5": { + "task": "talk", + "npc": "guard", + + "hasItemText": [ + "Awesome, just bear with me a little longer.", + "I know it's boring but I am obligated to teach you this.", + "Now take this fishing pole and go catch two shrimps for me." + ], + + "completedText": ["Go on, catch two shrimps for me."], + + "itemRequirements": [ + { + "key": "stick", + "count": 1 + } + ], + + "itemRewards": [ + { + "key": "stick", + "count": 1 + }, + { + "key": "fishingpole", + "count": 1 + } + ] + }, + + "6": { + "task": "fish", + "fish": "tutorialshrimpspot", + "fishCount": 2 + }, + + "7": { + "task": "talk", + "npc": "guard", + + "text": [ + "Great, one more thing and we're done with the boring stuff.", + "It's as much of a chore for me as it is for you so don't worry.", + "Go click on that cooking pot and cook these shrimps for me." + ], + "completedText": ["Go on, cook the shrimps for me."], + "pointer": { + "type": 0, + "x": 60, + "y": 602 + } + }, + + "8": { + "task": "talk", + "npc": "guard", + + "hasItemText": [ + "Awesome, you're done with the boring stuff.", + "Head down that suspicious ladder to the left and meet me in the cave.", + "Don't question it, just trust me." + ], + "completedText": ["Head down the ladder and meet me in the cave."], + "itemRequirements": [ + { + "key": "cookedshrimp", + "count": 1 + } + ] + }, + + "9": { + "task": "door", + "pointer": { + "type": 0, + "x": 39, + "y": 612 + } + }, + + "10": { + "task": "talk", + "npc": "guard", + + "text": [ + "Okay, now listen closely. Our budget is running low.", + "So we need to hurry this up. I have to teach you about combat.", + "Because of said budget, I can only give the very basics.", + "Here is a copper sword, I want you to slay 5 rats for me." + ], + "completedText": ["Go on, slay 3 rats for me."], + "itemRewards": [ + { + "key": "coppersword", + "count": 1 + } + ], + "pointer": { + "type": 0, + "x": 29, + "y": 541 + } + }, + + "11": { + "task": "kill", + "mob": ["rat"], + "mobCountRequirement": 3 + }, + + "12": { + "task": "talk", + "npc": "guard", + + "text": [ + "Wow I actually didn't expect you to be competent.", + "You see how slow that was? That's because you don't have any fancy equipments.", + "Once you're out of here you'll be able to get better equipments.", + "Anyway, last thing I can teach you within my curriculum is archery.", + "For the sake of this tutorial, you will not need to equip any arrows.", + "Plus it saves us a ton of money for the arrows we don't have to give you.", + "So anyway, I want you to kill 2 crabs with this bow." + ], + "completedText": ["Go on, kill 2 crabs for me."], + "itemRewards": [ + { + "key": "woodenbow", + "count": 1 + } + ], + "pointer": { + "type": 0, + "x": 29, + "y": 541 + } + }, + + "13": { + "task": "kill", + "mob": ["crab"], + "mobCountRequirement": 2 + }, + + "14": { + "task": "talk", + "npc": "guard", + + "text": [ + "That will be all. The rest is up to you to discover.", + "You may leave the tutorial by going through the portal." + ], + "completedText": [ + "That will be all. The rest is up to you to discover.", + "You may leave the tutorial by going through the portal." + ], + + "pointer": { + "type": 0, + "x": 29, + "y": 541 + } + }, + + "15": { + "task": "door", + "pointer": { + "type": 0, + "x": 41, + "y": 549 + } + } + } +} diff --git a/packages/server/data/rocks.json b/packages/server/data/rocks.json index 8b075f69c0..5cfc749a24 100644 --- a/packages/server/data/rocks.json +++ b/packages/server/data/rocks.json @@ -1,5 +1,6 @@ { - "nisoc": { + "nisocrock": { + "name": "Nisoc Rock", "levelRequirement": 1, "experience": 20, "difficulty": 15, @@ -7,35 +8,40 @@ "achievement": "firstrock" }, - "cinnabar": { + "cinnabarrock": { + "name": "Cinnabar Rock", "levelRequirement": 5, "experience": 30, "difficulty": 20, "item": "cinnabarore" }, - "pythar": { + "pytharrock": { + "name": "Pythar Rock", "levelRequirement": 15, "experience": 70, "difficulty": 40, "item": "pytharore" }, - "gold": { + "goldrock": { + "name": "Gold Ore", "levelRequirement": 25, "experience": 150, "difficulty": 80, "item": "goldnugget" }, - "ibo": { + "iborock": { + "name": "Ibo Rock", "levelRequirement": 30, "experience": 210, "difficulty": 160, "item": "iboore" }, - "moonrock": { + "moonrockrock": { + "name": "Moonrock Rock", "levelRequirement": 40, "experience": 300, "difficulty": 220, @@ -43,14 +49,16 @@ "respawnTime": 90000 }, - "topaz": { + "topazrock": { + "name": "Topaz Rock", "levelRequirement": 15, "experience": 160, "difficulty": 160, "item": "topaz" }, - "beryl": { + "berylrock": { + "name": "Beryl Rock", "levelRequirement": 1, "experience": 22, "difficulty": 20, @@ -59,14 +67,16 @@ "achievement": "firstrock" }, - "lapislazuli": { + "lapislazulirock": { + "name": "Lapis Lazuli Rock", "levelRequirement": 45, "experience": 350, "difficulty": 250, "item": "lapislazuli" }, - "citrine": { + "citrinerock": { + "name": "Citrine Rock", "levelRequirement": 50, "experience": 400, "difficulty": 285, @@ -74,7 +84,8 @@ "respawnTime": 98000 }, - "taaffeite": { + "taaffeiterock": { + "name": "Taaffeite Rock", "levelRequirement": 30, "experience": 310, "difficulty": 225, @@ -82,7 +93,8 @@ "respawnTime": 90000 }, - "ruby": { + "rubyrock": { + "name": "Ruby Rock", "levelRequirement": 62, "experience": 550, "difficulty": 325, @@ -90,7 +102,8 @@ "respawnTime": 276000 }, - "peridot": { + "peridotrock": { + "name": "Peridot Rock", "levelRequirement": 55, "experience": 475, "difficulty": 345, @@ -98,14 +111,16 @@ "respawnTime": 140000 }, - "opal": { + "opalrock": { + "name": "Opal Rock", "levelRequirement": 10, "experience": 100, "difficulty": 140, "item": "opal" }, - "emerald": { + "emeraldrock": { + "name": "Emerald Rock", "levelRequirement": 57, "experience": 510, "difficulty": 345, @@ -113,7 +128,8 @@ "respawnTime": 180000 }, - "amethyst": { + "amethystrock": { + "name": "Amethyst Rock", "levelRequirement": 65, "experience": 580, "difficulty": 375, @@ -121,7 +137,8 @@ "respawnTime": 300000 }, - "coal": { + "coalrock": { + "name": "Coal", "levelRequirement": 1, "experience": 20, "difficulty": 5, @@ -129,7 +146,8 @@ "achievement": "firstrock" }, - "copper": { + "copperrock": { + "name": "Copper Ore", "levelRequirement": 1, "experience": 20, "difficulty": 15, @@ -137,7 +155,8 @@ "achievement": "firstrock" }, - "tin": { + "tinrock": { + "name": "Tin Ore", "levelRequirement": 1, "experience": 20, "difficulty": 15, @@ -145,10 +164,11 @@ "achievement": "firstrock" }, - "iron": { + "ironrock": { + "name": "Iron Ore", "levelRequirement": 10, "experience": 40, "difficulty": 15, "item": "ironore" } -} \ No newline at end of file +} diff --git a/packages/server/data/spawns.json b/packages/server/data/spawns.json index 59c8fd6fa3..2d1ac1ecae 100644 --- a/packages/server/data/spawns.json +++ b/packages/server/data/spawns.json @@ -1,194 +1,336 @@ { - "163-339": { - "name": "Ancient Wizard", - "roaming": true, - "miniboss": true, - "hitPoints": 250, - "level": 10, - "attackLevel": 7, - "defenseLevel": 5, - "projectileName": "fireball2", - "achievement": "ancientwizard" - }, - - "224-359": { - "name": "Hermit Crab Warrior", - "drops": { - "flask": 200, - "gold": 750, - "spear": 75, - "platearmor": 100 - }, - "dropTables": ["ordinary", "unusual", "warriorcrab"], - "roaming": true, - "miniboss": true, - "hitPoints": 300, - "level": 30, - "aggroRange": 3, - "aggressive": true, - "attackLevel": 10, - "defenseLevel": 15, - "achievement": "warriorcrab" - }, - - "197-633": { - "name": "Water Guardian", - "drops": { - "redguardarmor": 75, - "redguardarcherarmor": 75, - "ring1": 100, - "scimitar": 100, - "watermelonbow": 100 - }, - "miniboss": true, - "level": 36, - "hitPoints": 350, - "attackLevel": 8, - "defenseLevel": 18, - "achievement": "waterguardian" - }, - - "291-644": { - "name": "Ogre Guardian", - "miniboss": true, - "level": 32, - "hitPoints": 650, - "defenseLevel": 8, - "experience": 120, - "respawnDelay": 180000, - "achievement": "ogreguardian" - }, - - "175-635": { - "name": "Mimic", - "achievement": "notwhatitseems", - "drops": {"gold": 700, "bigflask": 300, "spear": 100, "ring1": 100, "pendant1": 100, "goldring": 14} - }, - - "411-732": { - "name": "Mimic", - "achievement": "treadcarefully", - "drops": {"gold": 300, "bigflask": 500, "spear": 100, "ring1": 100, "pendant1": 100} - }, - - "228-156": { - "name": "Mimic", - "achievement": "notwhatitseems", - "hitPoints": 1500, - "level": 30, - "defenseLevel": 10, - "drops": {"gold": 800, "bigflask": 400, "silverring": 10, "scimitar": 75, "pendant1": 125} - }, - - "460-725": { - "name": "Mimic", - "achievement": "notwhatitseems", - "hitPoints": 2200, - "level": 84, - "defenseLevel": 10, - "drops": {"gold": 800, "manaflask": 100, "sproutring": 10, "bluescimitar": 50, "shardt1": 50} - }, - - "855-611": { - "name": "Mimic", - "achievement": "notwhatitseems", - "hitPoints": 2200, - "level": 84, - "defenseLevel": 10, - "drops": {"gold": 800, "cure": 100, "shardt2": 25, "bluescimitar": 50, "greenpendant": 50} - }, - - "677-671": { - "name": "Mimic", - "achievement": "notwhatitseems", - "hitPoints": 2200, - "level": 84, - "defenseLevel": 10, - "drops": {"gold": 800, "cure": 100, "shardt2": 25, "bluescimitar": 50, "greenpendant": 50} - }, - - "706-555": { - "name": "Mimic", - "achievement": "notwhatitseems", - "hitPoints": 1300, - "level": 62, - "defenseLevel": 15, - "drops": {"gold": 500, "cure": 50, "shardt1": 50, "bluescimitar": 50, "greenpendant": 45} - }, - - "168-31": { - "name": "Old Ogre", - "miniboss": true - }, - - "259-151": { - "name": "Ice Guardian", - "miniboss": true, - "defenseLevel": 15, - "level": 35 - }, - - "260-156": { - "name": "Ice Guardian", - "miniboss": true, - "defenseLevel": 15, - "level": 35 - }, - - "202-39": { - "name": "Vulture", - "achievement": "vulture" - }, - - "238-48": { - "name": "Iron Ogre", - "miniboss": true, - "level": 25, - "attackLevel": 8, - "achievement": "pathofdeath" - }, - - "53-306": { - "name": "Baby Sea Dragon", - "miniboss": true, - "achievement": "babyseadragon" - }, - - "712-717": { - "name": "Ice Knight", - "miniboss": true, - "level": 62, - "attackLevel": 14, - "drops": {"gold": 300, "icesword": 1000} - }, - - "784-676": { - "name": "Golden Golem", - "miniboss": true, - "achievement": "goldengolem" - }, - - "769-657": { - "name": "Big Baby Spooder", - "miniboss": true, - "achievement": "webdeveloper", - "level": 45 - }, - - "580-755": { - "name": "Mermaid", - "miniboss": true, - "achievement": "mermaidguard", - "defenseLevel": 28, - "level": 55 - }, - - "1016-682": { - "name": "Dark Wolf", - "miniboss": true, - "achievement": "roadtohell", - "hitPoints": 1050, - "attackLevel": 54, - "attackRate": 800 - } + "259-435": { + "name": "Ancient Wizard", + "roaming": true, + "miniboss": true, + "hitPoints": 250, + "level": 10, + "projectileName": "fireball2", + "achievement": "ancientwizard" + }, + + "320-455": { + "name": "Hermit Crab Warrior", + "drops": [ + { + "key": "flask", + "chance": 2000 + }, + { + "key": "gold", + "chance": 7500 + }, + { + "key": "ironspear", + "chance": 750 + }, + { + "key": "platearmor", + "chance": 1000 + } + ], + "dropTables": ["ordinary", "unusual", "warriorcrab"], + "roaming": true, + "miniboss": true, + "hitPoints": 300, + "level": 30, + "aggroRange": 3, + "aggressive": true, + "achievement": "warriorcrab" + }, + + "293-729": { + "name": "Water Guardian", + "drops": [ + { + "key": "ring1", + "chance": 1000 + } + ], + "miniboss": true, + "level": 36, + "hitPoints": 350, + "achievement": "waterguardian" + }, + + "387-740": { + "name": "Ogre Guardian", + "miniboss": true, + "level": 32, + "hitPoints": 650, + "defenseLevel": 8, + "experience": 120, + "respawnDelay": 180000, + "achievement": "ogreguardian" + }, + + "271-731": { + "name": "Mimic", + "achievement": "notwhatitseems", + "drops": [ + { + "key": "gold", + "chance": 7000 + }, + { + "key": "bigflask", + "chance": 3000 + }, + { + "key": "crystalspear", + "chance": 1000 + }, + { + "key": "ring1", + "chance": 1000 + }, + { + "key": "pendant1", + "chance": 1000 + }, + { + "key": "goldnugget", + "chance": 1000 + } + ] + }, + + "507-828": { + "name": "Mimic", + "achievement": "treadcarefully", + "drops": [ + { + "key": "gold", + "chance": 7000 + }, + { + "key": "bigflask", + "chance": 3000 + }, + { + "key": "crystalspear", + "chance": 1000 + }, + { + "key": "ring1", + "chance": 1000 + }, + { + "key": "pendant1", + "chance": 1000 + }, + { + "key": "goldnugget", + "chance": 1000 + } + ] + }, + + "324-252": { + "name": "Mimic", + "achievement": "notwhatitseems", + "hitPoints": 1500, + "level": 30, + "defenseLevel": 10, + "drops": [ + { + "key": "gold", + "chance": 7000 + }, + { + "key": "bigflask", + "chance": 3000 + }, + { + "key": "crystalspear", + "chance": 1000 + }, + { + "key": "ring1", + "chance": 1000 + }, + { + "key": "pendant1", + "chance": 1000 + }, + { + "key": "goldnugget", + "chance": 1000 + } + ] + }, + + "556-821": { + "name": "Mimic", + "achievement": "notwhatitseems", + "hitPoints": 2200, + "level": 84, + "defenseLevel": 10, + "drops": [ + { + "key": "gold", + "chance": 7000 + }, + { + "key": "manaflask", + "chance": 3000 + }, + { + "key": "sproutring", + "chance": 100 + }, + { + "key": "shardt2", + "chance": 3000 + } + ] + }, + + "951-707": { + "name": "Mimic", + "achievement": "notwhatitseems", + "hitPoints": 2200, + "level": 84, + "defenseLevel": 10, + "drops": [ + { + "key": "gold", + "chance": 8000 + }, + { + "key": "cure", + "chance": 3000 + }, + { + "key": "greenpendant", + "chance": 500 + } + ] + }, + + "773-767": { + "name": "Mimic", + "achievement": "notwhatitseems", + "hitPoints": 2200, + "level": 84, + "defenseLevel": 10, + "drops": [ + { + "key": "gold", + "chance": 8000 + }, + { + "key": "cure", + "chance": 3000 + }, + { + "key": "greenpendant", + "chance": 500 + } + ] + }, + + "802-651": { + "name": "Mimic", + "achievement": "notwhatitseems", + "hitPoints": 1300, + "level": 62, + "defenseLevel": 15, + "drops": [ + { + "key": "gold", + "chance": 8000 + }, + { + "key": "cure", + "chance": 3000 + }, + { + "key": "greenpendant", + "chance": 500 + } + ] + }, + + "264-127": { + "name": "Old Ogre", + "miniboss": true + }, + + "355-247": { + "name": "Ice Guardian", + "miniboss": true, + "defenseLevel": 15, + "level": 35 + }, + + "356-252": { + "name": "Ice Guardian", + "miniboss": true, + "defenseLevel": 15, + "level": 35 + }, + + "398-135": { + "name": "Vulture", + "achievement": "vulture" + }, + + "334-144": { + "name": "Iron Ogre", + "miniboss": true, + "level": 25, + "achievement": "pathofdeath" + }, + + "149-402": { + "name": "Baby Sea Dragon", + "miniboss": true, + "achievement": "babyseadragon" + }, + + "808-813": { + "name": "Ice Knight", + "miniboss": true, + "level": 62, + "drops": [ + { + "key": "gold", + "chance": 3000 + }, + { + "key": "icesword", + "chance": 10000 + } + ] + }, + + "880-772": { + "name": "Golden Golem", + "miniboss": true, + "achievement": "goldengolem" + }, + + "865-753": { + "name": "Big Baby Spooder", + "miniboss": true, + "achievement": "webdeveloper", + "level": 45 + }, + + "676-851": { + "name": "Mermaid", + "miniboss": true, + "achievement": "mermaidguard", + "defenseLevel": 28, + "level": 55 + }, + + "1112-778": { + "name": "Dark Wolf", + "miniboss": true, + "achievement": "roadtohell", + "hitPoints": 1050, + "attackRate": 800 + } } diff --git a/packages/server/data/stores.json b/packages/server/data/stores.json index 6b0796bc90..bc3fb2944f 100644 --- a/packages/server/data/stores.json +++ b/packages/server/data/stores.json @@ -52,24 +52,30 @@ "items": [ { "key": "bronzeaxe", - "count": 15 - }, - - { - "key": "cobaltaxe", - "count": 15 + "count": 15, + "price": 1000 }, { "key": "ironaxe", - "count": 15 - }, - - { - "key": "goldaxe", - "count": 15 + "count": 15, + "price": 5000 } ], + "allowedItems": [ + "logs", + "palmlogs", + "pinelogs", + "icelogs", + "icepalmlogs", + "icepinelogs", + "aquasilliuslogs", + "alkythnlogs", + "heliphatitlogs", + "zoncillogs", + "zondullogs", + "bloodwoodlogs" + ], "refresh": 120000, "currency": "gold" }, @@ -101,37 +107,95 @@ }, "miner": { "items": [ + { + "key": "coal", + "count": 100, + "price": 50 + }, + { + "key": "copperore", + "count": 25, + "price": 150 + }, + { + "key": "tinore", + "count": 25, + "price": 150 + }, + { + "key": "bronzeore", + "count": 15, + "price": 200 + }, + { + "key": "goldore", + "count": 5, + "price": 500 + }, + { + "key": "goldnugget", + "count": 0, + "price": 500 + }, { "key": "nisocore", - "count": 1, - "price": 220 + "count": 0, + "price": 450 }, { "key": "cinnabarore", "count": 0, - "price": 460 + "price": 500 }, { "key": "pytharore", "count": 0, - "price": 670 + "price": 600 }, { - "key": "goldnugget", + "key": "iboore", "count": 0, - "price": 1650 + "price": 700 }, { - "key": "iboore", + "key": "moonrockore", "count": 0, - "price": 1250 + "price": 1000 } ], - "refresh": 600000, + "alloweditems": [ + "coal", + "copperore", + "tinore", + "bronzeore", + "goldore", + "nisocore", + "cinnabarore", + "pytharore", + "goldnugget", + "iboore", + "moonrockore" + ], + "refresh": 120000, "currency": "gold" }, "cosmetics": { "items": [ + { + "key": "lolipop", + "count": 5, + "price": 15 + }, + { + "key": "spoon", + "count": 5, + "price": 15 + }, + { + "key": "cellobello", + "count": 5, + "price": 15 + }, { "key": "taekwondo", "count": 5, diff --git a/packages/server/data/tables.json b/packages/server/data/tables.json index 9483fced23..479a2aa805 100644 --- a/packages/server/data/tables.json +++ b/packages/server/data/tables.json @@ -1,74 +1,286 @@ { "warriorcrab": { - "bead": 10000 + "drops": [ + { + "key": "bead", + "chance": 100000 + } + ] }, "ordinary": { - "gold": 3000, - "flask": 1200, - "bigflask": 720, - "manaflask": 760, - "bigmanaflask": 500, - "burger": 680, - "string": 1200, - "feather": 1000 + "drops": [ + { + "key": "gold", + "chance": 30000 + }, + { + "key": "flask", + "chance": 12000 + }, + { + "key": "bigflask", + "chance": 7200 + }, + { + "key": "manaflask", + "chance": 7600 + }, + { + "key": "bigmanaflask", + "chance": 5000 + }, + { + "key": "burger", + "chance": 100000 + }, + { + "key": "string", + "chance": 100000 + }, + { + "key": "feather", + "chance": 100000 + } + ] }, "arrows": { - "arrow": 2400, - "firearrow": 750, - "poisonarrow": 700, - "lightningarrow": 650, - "icearrow": 400, - "nisocarrow": 300, - "cinnabararrow": 250, - "pythararrow": 250, - "iboarrow": 250 + "drops": [ + { + "key": "arrow", + "chance": 24000 + }, + { + "key": "firearrow", + "chance": 7500 + }, + { + "key": "poisonarrow", + "chance": 7000 + }, + { + "key": "lightningarrow", + "chance": 6500 + }, + { + "key": "icearrow", + "chance": 4000 + }, + { + "key": "nisocarrow", + "chance": 3000 + }, + { + "key": "cinnabararrow", + "chance": 2500 + }, + { + "key": "pythararrow", + "chance": 2500 + }, + { + "key": "iboarrow", + "chance": 2500 + } + ] }, "unusual": { - "blackpotion": 300, - "hotsauce": 300, - "cure": 300, - "logs": 200, - "stick": 500, - "bead": 300, - "banana": 300, - "watermelon": 300, - "apple": 300 + "drops": [ + { + "key": "blackpotion", + "chance": 3000 + }, + { + "key": "cure", + "chance": 3000 + }, + { + "key": "logs", + "chance": 4500 + }, + { + "key": "stick", + "chance": 5000 + }, + { + "key": "bead", + "chance": 2500 + } + ] }, "shards": { - "shardt1": 200, - "shardt2": 150, - "shardt3": 100, - "shardt4": 50, - "shardt5": 20 + "drops": [ + { + "key": "shardt1", + "chance": 2000 + }, + { + "key": "shardt2", + "chance": 1500 + }, + { + "key": "shardt3", + "chance": 1000 + }, + { + "key": "shardt4", + "chance": 500 + }, + { + "key": "shardt5", + "chance": 200 + } + ] }, "vegetables": { - "onion": 500, - "chilli": 500, - "potato": 500, - "tomato": 500 + "drops": [ + { + "key": "onion", + "chance": 5000 + }, + { + "key": "chilli", + "chance": 5000 + }, + { + "key": "potato", + "chance": 5000 + }, + { + "key": "tomato", + "chance": 5000 + } + ] }, "fruits": { - "strawberry": 800, - "raspberry": 800, - "plum": 800, - "pineapple": 800, - "peach": 800, - "mulberry": 800, - "mango": 800 + "drops": [ + { + "key": "strawberry", + "chance": 8000 + }, + { + "key": "raspberry", + "chance": 8000 + }, + { + "key": "plum", + "chance": 8000 + }, + { + "key": "pineapple", + "chance": 8000 + }, + { + "key": "peach", + "chance": 8000 + }, + { + "key": "mulberry", + "chance": 8000 + }, + { + "key": "mango", + "chance": 8000 + }, + { + "key": "banana", + "chance": 8000 + }, + { + "key": "watermelon", + "chance": 8000 + }, + { + "key": "apple", + "chance": 8000 + } + ] }, "mushrooms": { - "mushroom1": 600, - "mushroom2": 600, - "mushroom3": 600, - "mushroom4": 600, - "mushroom5": 600, - "mushroom6": 600 + "drops": [ + { + "key": "mushroom1", + "chance": 6000 + }, + { + "key": "mushroom2", + "chance": 6000 + }, + { + "key": "mushroom3", + "chance": 6000 + }, + { + "key": "mushroom4", + "chance": 6000 + }, + { + "key": "mushroom5", + "chance": 6000 + }, + { + "key": "mushroom6", + "chance": 6000 + } + ] + }, + + "manafruits": { + "drops": [ + { + "key": "arcanahypercube", + "chance": 5000 + }, + { + "key": "ettispinefruit", + "chance": 5000 + }, + { + "key": "galaxylilies", + "chance": 5000 + }, + { + "key": "godscroissant", + "chance": 5000 + }, + { + "key": "stellarcluster", + "chance": 5000 + }, + { + "key": "harmoniccrossband", + "chance": 5000 + }, + { + "key": "livinganchorroot", + "chance": 5000 + }, + { + "key": "manaberry", + "chance": 5000 + }, + { + "key": "nexuscross", + "chance": 5000 + }, + { + "key": "orchardsbane", + "chance": 5000 + }, + { + "key": "wartberries", + "chance": 5000 + }, + { + "key": "zephyrsgaleblade", + "chance": 5000 + } + ] } -} \ No newline at end of file +} diff --git a/packages/server/data/trees.json b/packages/server/data/trees.json index 86145ecab5..5e632dafe7 100644 --- a/packages/server/data/trees.json +++ b/packages/server/data/trees.json @@ -1,40 +1,92 @@ { "oak": { + "name": "Oak", "levelRequirement": 1, "experience": 10, "difficulty": 10, + "item": "logs", + "randomItems": [ + { + "key": "apple", + "chance": 800 + } + ] + }, + "tutorialoak": { + "name": "Oak", + "levelRequirement": 1, + "experience": 10, + "difficulty": 2, + "item": "logs", + "quest": "tutorial" + }, + + "spruce": { + "name": "Spruce", + "levelRequirement": 10, + "experience": 24, + "difficulty": 30, "item": "logs" }, "oak2": { + "name": "Oak", "levelRequirement": 1, "experience": 10, "difficulty": 10, - "item": "logs" + "item": "logs", + "randomItems": [ + { + "key": "apple", + "chance": 800 + } + ] }, "oak3": { + "name": "Oak", "levelRequirement": 1, "experience": 10, "difficulty": 10, - "item": "logs" + "item": "logs", + "randomItems": [ + { + "key": "apple", + "chance": 800 + } + ] }, "oak4": { + "name": "Oak", "levelRequirement": 1, "experience": 10, "difficulty": 10, - "item": "logs" + "item": "logs", + "randomItems": [ + { + "key": "apple", + "chance": 800 + } + ] }, "oak5": { + "name": "Oak", "levelRequirement": 1, "experience": 10, "difficulty": 10, - "item": "logs" + "item": "logs", + "randomItems": [ + { + "key": "apple", + "chance": 800 + } + ] }, "snowoak": { + "name": "Snow Oak", "levelRequirement": 20, "experience": 75, "difficulty": 90, @@ -42,6 +94,7 @@ }, "tutorialsnowoak": { + "name": "Snow Oak", "levelRequirement": 1, "experience": 10, "difficulty": 5, @@ -50,13 +103,21 @@ }, "palm": { + "name": "Palm", "levelRequirement": 5, "experience": 15, "difficulty": 25, - "item": "palmlogs" + "item": "palmlogs", + "randomItems": [ + { + "key": "banana", + "chance": 10000 + } + ] }, "iceoak": { + "name": "Ice Oak", "levelRequirement": 10, "experience": 30, "difficulty": 50, @@ -64,6 +125,7 @@ }, "iceoak2": { + "name": "Ice Oak", "levelRequirement": 10, "experience": 30, "difficulty": 50, @@ -71,6 +133,7 @@ }, "iceoak3": { + "name": "Ice Oak", "levelRequirement": 10, "experience": 30, "difficulty": 50, @@ -78,6 +141,23 @@ }, "iceoak4": { + "name": "Ice Oak", + "levelRequirement": 10, + "experience": 30, + "difficulty": 50, + "item": "icelogs" + }, + + "iceoak5": { + "name": "Ice Oak", + "levelRequirement": 10, + "experience": 30, + "difficulty": 50, + "item": "icelogs" + }, + + "iceoak6": { + "name": "Ice Oak", "levelRequirement": 10, "experience": 30, "difficulty": 50, @@ -85,6 +165,7 @@ }, "icepalm": { + "name": "Ice Palm", "levelRequirement": 15, "experience": 55, "difficulty": 65, @@ -92,23 +173,74 @@ }, "pine": { + "name": "Pine", "levelRequirement": 20, "experience": 75, "difficulty": 80, "item": "icepinelogs" }, - "willow": { + "alkythn": { + "name": "Alkythn", + "levelRequirement": 25, + "experience": 105, + "difficulty": 90, + "item": "alkythnlogs" + }, + + "heliphatit": { + "name": "Heliphatit", "levelRequirement": 30, - "experience": 150, - "difficulty": 160, - "item": "willowlogs" + "experience": 125, + "difficulty": 100, + "item": "heliphatitlogs" + }, + + "aquasillius": { + "name": "Aquasillius", + "levelRequirement": 35, + "experience": 160, + "difficulty": 115, + "item": "aquasilliuslogs" + }, + + "zoncil": { + "name": "Zoncil", + "levelRequirement": 35, + "experience": 160, + "difficulty": 115, + "item": "zoncillogs" + }, + + "zondul": { + "name": "Zondul", + "levelRequirement": 35, + "experience": 160, + "difficulty": 115, + "item": "zondullogs" }, "bloodwood": { + "name": "Bloodwood", "levelRequirement": 40, "experience": 350, "difficulty": 240, "item": "bloodwoodlogs" + }, + + "flastel": { + "name": "Flastel", + "levelRequirement": 50, + "experience": 400, + "difficulty": 320, + "item": "bloodwoodlogs" + }, + + "puhrix": { + "name": "Puhrix", + "levelRequirement": 50, + "experience": 400, + "difficulty": 320, + "item": "bloodwoodlogs" } -} \ No newline at end of file +} diff --git a/packages/server/package.json b/packages/server/package.json index 7551fe70c8..ae3d7cdb77 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -2,34 +2,33 @@ "name": "@kaetram/server", "type": "module", "scripts": { - "start": "tsx --preserve-symlinks ./src/main.ts", - "dev": "tsx watch --preserve-symlinks ./src/main.ts", - "build": "tsc --noEmit" + "dev": "tsx watch --preserve-symlinks --clear-screen=false ./src/main.ts", + "build": "tsc && tsx --preserve-symlinks ./build.ts", + "start": "node --enable-source-maps ./dist/main.js" }, "dependencies": { "@kaetram/common": "workspace:*", - "@sentry/node": "^7.45.0", - "@sentry/tracing": "^7.45.0", - "axios": "^1.2.3", - "discord.js": "^14.3.0", + "@sentry/node": "^7.68.0", + "@sentry/tracing": "^7.68.0", + "axios": "^1.5.0", + "discord.js": "^14.13.0", "dotenv-extended": "^2.9.0", "dotenv-parse-variables": "^2.0.0", "express": "^4.18.2", - "mongodb": "^4.8.1", + "mongodb": "^6.0.0", "sanitizer": "^0.1.3", - "tslib": "^2.4.0", - "tsx": "^3.12.6", - "uws": "https://github.com/uNetworking/uWebSockets.js.git#commit=42c9c0d5d31f46ca4115dc75672b0037ec970f28", + "tsx": "^3.12.10", + "uws": "https://github.com/uNetworking/uWebSockets.js.git#commit=e6ecc2102d68d99dc35969b0898fbd201e0f252b", "websocket": "^1.0.34" }, "devDependencies": { "@kaetram/tools": "workspace:*", - "@types/bcryptjs": "^2.4.2", + "@types/bcryptjs": "^2.4.3", "@types/dotenv-parse-variables": "^2.0.1", - "@types/express": "^4.17.13", - "@types/node": "^18.15.5", + "@types/express": "^4.17.17", "@types/sanitizer": "^0.0.28", - "@types/websocket": "^1.0.5", - "typescript": "^5.0.4" + "@types/websocket": "^1.0.6", + "esbuild": "^0.19.2", + "typescript": "^5.2.2" } } diff --git a/packages/server/src/args.ts b/packages/server/src/args.ts new file mode 100644 index 0000000000..2ef08beb7d --- /dev/null +++ b/packages/server/src/args.ts @@ -0,0 +1,60 @@ +import config from '@kaetram/common/config'; + +/** + * Class responsible for overriding the default arguments. + */ + +export default class Args { + public constructor(private params: string[] = process.argv) { + if (params.length < 2) return; + + // Iterate through the additional parameters and override the default values. + for (let i = 2; i < this.params.length; i += 2) { + let paramIdentifier = this.params[i], + paramValue = this.params[i + 1]; + + this.override(paramIdentifier, paramValue); + } + } + + /** + * Takes a parameter key and overrides the environment variables in the + * configuration based on that. + * @param key The key of the parameter. + * @param value The value of the parameter. + */ + + private override(key: string, value: string): void { + switch (key) { + case '--host': { + config.host = value; + break; + } + + case '--port': { + config.port = parseInt(value); + config.apiPort = parseInt(value) + 1; + break; + } + + case '--remoteServerHost': { + config.remoteServerHost = value; + break; + } + + case '--serverId': { + config.serverId = parseInt(value); + break; + } + + case '--updateTime': { + config.updateTime = parseInt(value); + break; + } + + case '--maxPlayers': { + config.maxPlayers = parseInt(value); + } + } + } +} diff --git a/packages/server/src/console.ts b/packages/server/src/console.ts index a510c1f02c..92086148cd 100644 --- a/packages/server/src/console.ts +++ b/packages/server/src/console.ts @@ -1,5 +1,5 @@ -import { Modules } from '@kaetram/common/network'; import log from '@kaetram/common/util/log'; +import { Modules } from '@kaetram/common/network'; import type World from './game/world'; import type Player from './game/entity/character/player/player'; diff --git a/packages/server/src/controllers/commands.ts b/packages/server/src/controllers/commands.ts index 5b5fb96e23..34398b2fd5 100644 --- a/packages/server/src/controllers/commands.ts +++ b/packages/server/src/controllers/commands.ts @@ -1,20 +1,27 @@ -import Character from '../game/entity/character/character'; -import Item from '../game/entity/objects/item'; import Formulas from '../info/formulas'; +import Item from '../game/entity/objects/item'; +import Character from '../game/entity/character/character'; +import Items from '../../data/items.json'; import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import Filter from '@kaetram/common/util/filter'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { Command, Notification, NPC, Pointer, Store } from '@kaetram/common/network/impl'; +import { + CommandPacket, + DespawnPacket, + NPCPacket, + SpawnPacket, + StorePacket +} from '@kaetram/common/network/impl'; +import type Region from '../game/map/region'; +import type Entity from '../game/entity/entity'; import type Mob from '../game/entity/character/mob/mob'; -import type Achievement from '../game/entity/character/player/achievement/achievement'; import type Player from '../game/entity/character/player/player'; import type Quest from '../game/entity/character/player/quest/quest'; import type Skill from '../game/entity/character/player/skill/skill'; -import type Entity from '../game/entity/entity'; -import type Region from '../game/map/region'; +import type Achievement from '../game/entity/character/player/achievement/achievement'; export default class Commands { private world; @@ -45,7 +52,7 @@ export default class Commands { * @param blocks Associated string blocks after the command. */ - private handlePlayerCommands(command: string, blocks: string[]): void { + private async handlePlayerCommands(command: string, blocks: string[]): Promise { switch (command) { case 'players': { let players = this.world.entities.getPlayerUsernames(), @@ -64,14 +71,12 @@ export default class Commands { return; } - case 'pickup': { - return this.player.removePet(); - } - case 'coords': { return this.player.notify(`x: ${this.player.x} y: ${this.player.y}`); } + case 'g': + case 'gc': case 'global': { return this.player.chat( Filter.clean(blocks.join(' ')), @@ -116,6 +121,8 @@ export default class Commands { this.world.guilds.kick(this.player, username); + this.player.notify(`You have kicked ${username} from your guild.`); + break; } @@ -132,7 +139,22 @@ export default class Commands { if (parseInt(rank) === 7 || rank === 'landlord') return this.player.notify('You cannot set a rank to landlord.'); - this.world.guilds.setRank(this.player, username, parseInt(rank)); + let guild = await this.world.guilds.getGuild(this.player.guild); + + if (!guild) return this.player.notify('You are not in a guild.'); + + let member = await this.world.guilds.getMember(guild, username); + + if (!member) + return this.player.notify( + `Could not find a member with the name: ${username}.` + ); + + this.world.guilds.setRank(guild, this.player, member, parseInt(rank)); + + this.player.notify(`You have set ${username}'s rank to ${rank}.`); + + break; } } @@ -154,13 +176,17 @@ export default class Commands { case 'mute': case 'ban': { let duration = parseInt(blocks.shift()!), - targetName = blocks.join(' '); + targetName = blocks.join(' ').toLowerCase(); if (!duration || !targetName) return this.player.notify( 'Malformed command, expected /ban(mute) [duration] [username]' ); + // Prevent banning yourself. + if (targetName === this.player.username) + return this.player.notify(`You cannot ban yourself you silly. Thanks James.`); + let user: Player = this.world.getPlayerByName(targetName); if (!user) @@ -172,6 +198,8 @@ export default class Commands { if (command === 'ban' && duration > 72) duration = 72; } + let hours = duration; + // Convert hours to milliseconds. duration *= 60 * 60 * 1000; @@ -181,14 +209,14 @@ export default class Commands { user.mute = timeFrame; user.save(); - this.player.notify(`${user.username} has been muted for ${duration} hours.`); + this.player.notify(`${user.username} has been muted for ${hours} hours.`); } else if (command === 'ban') { user.ban = timeFrame; user.connection.sendUTF8('ban'); user.connection.close('banned'); - this.player.notify(`${user.username} has been banned for ${duration} hours.`); + this.player.notify(`${user.username} has been banned for ${hours} hours.`); } return; @@ -228,6 +256,55 @@ export default class Commands { break; } + + case 'jail': { + let duration = parseInt(blocks.shift()!), + username = blocks.join(' '); + + if (!duration || !username) + return this.player.notify( + 'Malformed command, expected /jail [duration] [username]' + ); + + let player = this.world.getPlayerByName(username); + + if (!player) + return this.player.notify(`Could not find player with name: ${username}`); + + // Limit the duration of the jail sentence for mods. + if (this.player.isMod() && duration > 12) duration = 12; + + let hours = duration; + + // Convert hours to milliseconds. + duration *= 60 * 60 * 1000; + + player.jail = Date.now() + duration; + player.sendToSpawn(); + + player.notify(`You have been jailed for ${hours} hours.`, 'crimsonred'); + this.player.notify(`${player.username} has been jailed for ${hours} hours.`); + + break; + } + + case 'unjail': { + let username = blocks.join(' '); + + if (!username) + return this.player.notify(`Malformed command, expected /unjail [username]`); + + let player = this.world.getPlayerByName(username); + + if (!player) + return this.player.notify(`Could not find player with name: ${username}`); + + player.jail = 0; + player.sendToSpawn(); + + player.notify(`You have been unjailed.`); + this.player.notify(`${player.username} has been unjailed.`); + } } } @@ -353,6 +430,8 @@ export default class Commands { } this.player.notify(`Copied ${username}'s ${command} to your ${command}.`); + + break; } case 'drop': { @@ -364,6 +443,8 @@ export default class Commands { if (!count) count = 1; this.world.entities.spawnItem(key, this.player.x, this.player.y, true, count); + + break; } case 'remove': { @@ -386,7 +467,7 @@ export default class Commands { y = parseInt(blocks.shift()!), withAnimation = parseInt(blocks.shift()!); - if (x && y) this.player.teleport(x, y, !!withAnimation); + if (x && y) this.player.teleport(x, y, !!withAnimation, false, true); return; } @@ -395,7 +476,7 @@ export default class Commands { username = blocks.join(' '); player = this.world.getPlayerByName(username); - player?.teleport(this.player.x, this.player.y); + player?.teleport(this.player.x, this.player.y, false, false, true); return; } @@ -404,11 +485,12 @@ export default class Commands { username = blocks.join(' '); player = this.world.getPlayerByName(username); - if (player) this.player.teleport(player.x, player.y); + if (player) this.player.teleport(player.x, player.y, false, false, true); return; } + case 'immortal': case 'nohit': case 'invincible': { if (this.player.status.has(Modules.Effects.Invincible)) { @@ -464,22 +546,23 @@ export default class Commands { if (!posX || !posY) return; - this.player.send( - new Pointer(Opcodes.Pointer.Location, { - id: this.player.instance, - x: posX, - y: posY - }) - ); + this.player.pointer({ + type: Opcodes.Pointer.Location, + instance: this.player.instance, + x: posX, + y: posY + }); } else { let instance = blocks.shift()!; if (!instance) return; - this.player.send( - new Pointer(Opcodes.Pointer.Entity, { - id: instance - }) + this.player.pointer( + { + type: Opcodes.Pointer.Entity, + instance + }, + false ); } @@ -488,7 +571,7 @@ export default class Commands { case 'teleall': { this.entities.forEachPlayer((player: Player) => { - player.teleport(this.player.x, this.player.y); + player.teleport(this.player.x, this.player.y, false, false, true); }); return; @@ -500,7 +583,7 @@ export default class Commands { } case 'debug': { - this.player.send(new Command({ command: 'debug' })); + this.player.send(new CommandPacket({ command: 'debug' })); return; } @@ -562,7 +645,7 @@ export default class Commands { case 'max': { this.player.skills.forEachSkill((skill: Skill) => { skill.setExperience(0); - skill.addExperience(669_420_769); + skill.addExperience(696_420_969); }); break; } @@ -611,6 +694,13 @@ export default class Commands { return; } + if (isNaN(movementSpeed)) { + this.player.notify('Invalid movement speed specified.'); + return; + } + + if (movementSpeed > 10_000) movementSpeed = 2000; + if (movementSpeed < 75) // Just to not break stuff. movementSpeed = 75; @@ -629,8 +719,24 @@ export default class Commands { break; } + case 'undostage': { + key = blocks.shift()!; + + if (!key) return this.player.notify('No quest specified.'); + + let quest = this.player.quests.get(key); + + if (!quest) return this.player.notify('Could not find quest.'); + + quest.setStage(quest.getStage() - 1); + + break; + } + case 'resetquests': { - this.player.quests.forEachQuest((quest: Quest) => quest.setStage(0)); + this.player.quests.forEachQuest((quest: Quest) => { + quest.setStage(0, undefined, true, true); + }); break; } @@ -639,7 +745,9 @@ export default class Commands { if (!key) return this.player.notify('No quest specified.'); - this.player.quests.get(key)?.setStage(0); + let quest = this.player.quests.get(key); + + quest.setStage(0, undefined, true, true); break; } @@ -665,7 +773,7 @@ export default class Commands { if (!entity) return this.player.notify(`Entity not found.`); - if (entity.isMob()) entity.move(x, y); + if (entity.isMob()) entity.setPosition(x, y); break; } @@ -917,7 +1025,9 @@ export default class Commands { if (!key) return this.player.notify(`Malformed command, expected /store key`); - this.player.send(new Store(Opcodes.Store.Open, this.world.stores.serialize(key))); + this.player.send( + new StorePacket(Opcodes.Store.Open, this.world.stores.serialize(key)) + ); this.player.storeOpen = key; @@ -930,7 +1040,9 @@ export default class Commands { } case 'bank': { - this.player.send(new NPC(Opcodes.NPC.Bank, this.player.bank.serialize())); + this.player.canAccessContainer = true; + + this.player.send(new NPCPacket(Opcodes.NPC.Bank, this.player.bank.serialize())); break; } @@ -944,7 +1056,7 @@ export default class Commands { if (!player) return this.player.notify(`Could not find player: ${username}`); - this.player.send(new NPC(Opcodes.NPC.Bank, player.bank.serialize())); + this.player.send(new NPCPacket(Opcodes.NPC.Bank, player.bank.serialize())); break; } @@ -983,14 +1095,48 @@ export default class Commands { if (!key) return this.player.notify(`Malformed command, expected /setpet key`); this.player.setPet(key); + + break; } case 'opencrafting': { return this.world.crafting.open(this.player, Modules.Skills.Crafting); } + case 'openalchemy': { + return this.world.crafting.open(this.player, Modules.Skills.Alchemy); + } + + case 'opencooking': { + return this.world.crafting.open(this.player, Modules.Skills.Cooking); + } + + case 'opensmithing': { + return this.world.crafting.open(this.player, Modules.Skills.Smithing); + } + + case 'opensmelting': { + return this.world.crafting.open(this.player, Modules.Skills.Smelting); + } + + case 'lootbag': { + let items: Item[] = [ + new Item('oldonesblade', -1, -1, false, 1), + new Item('froghelm', -1, -1, false, 1), + new Item('gold', -1, -1, false, 1500) + ]; + + this.world.entities.spawnLootBag( + this.player.x, + this.player.y, + this.player.username, + items + ); + break; + } + case 'ipban': { - let username = blocks.join(' '); + let username = blocks.join(' ').toLowerCase(); if (!username) return log.info(`Malformed command, expected /${command} `); @@ -1006,6 +1152,8 @@ export default class Commands { // Kick all players with the same IP. for (let p of this.entities.getPlayersByIp(player.connection.address)) p.connection.reject('banned'); + + break; } case 'countdown': { @@ -1014,6 +1162,140 @@ export default class Commands { if (!time) return this.player.notify(`Malformed command, expected /countdown time`); this.player.countdown(time); + + break; + } + + case 'find': { + let npc = this.world.entities.getNPCByKey(blocks.join(' ')); + + this.player.notify( + npc + ? `Found NPC: ${npc.name} at x: ${npc.x}, y: ${npc.y}` + : `Could not find NPC.` + ); + + break; + } + + case 'testitems': { + this.player.bank.empty(); + + // Add 100 of each item into the bank. + for (let key in Items) this.player.bank.add(new Item(key, -1, -1, false, 100)); + + break; + } + + case 'collision': { + let x = parseInt(blocks.shift()!) || this.player.x, + y = parseInt(blocks.shift()!) || this.player.y; + + if (!x || !y) + return this.player.notify(`Malformed command, expected /collision x y`); + + let index = this.world.map.coordToIndex(x, y); + + this.player.notify(`${this.world.map.isColliding(x, y)} - index: ${index}`); + + log.debug(`Data: ${this.world.map.data[index]}`); + + break; + } + + case 'hide': { + this.player.visible = !this.player.visible; + + if (this.player.visible) { + this.player.notify(`You are now visible.`); + + this.player.sendToRegions(new SpawnPacket(this.player), true); + } else { + this.player.notify(`You are now invisible.`); + + this.player.sendToRegions( + new DespawnPacket({ instance: this.player.instance }), + true + ); + } + + break; + } + + case 'tp': { + let key = blocks.shift()!; + + switch (key) { + case 'home': { + return this.player.teleport(191, 166, true, false, true); + } + + case 'underwater': { + return this.player.teleport(119, 290, true, false, true); + } + + case 'underwatervolcano': { + return this.player.teleport(194, 427, true, false, true); + } + + case 'kok': { + return this.player.teleport(290, 357, true, false, true); + } + + case 'mountain': { + return this.player.teleport(440, 312, true, false, true); + } + + case 'santa': { + return this.player.teleport(526, 256, true, false, true); + } + + case 'ice': { + return this.player.teleport(608, 332, true, false, true); + } + + case 'pink': { + return this.player.teleport(685, 433, true, false, true); + } + + case 'hell': { + return this.player.teleport(1112, 787, true, false, true); + } + + case 'sewer': { + return this.player.teleport(1117, 709, true, false, true); + } + + case 'shroom': { + return this.player.teleport(992, 631, true, false, true); + } + + case 'skeletonking': { + return this.player.teleport(120, 794, true, false, true); + } + + case 'ogrelord': { + return this.player.teleport(342, 166, true, false, true); + } + + case 'queenant': { + return this.player.teleport(591, 820, true, false, true); + } + + case 'forestdragon': { + return this.player.teleport(457, 807, true, false, true); + } + + case 'crystalcave': { + return this.player.teleport(886, 622, true, false, true); + } + + case 'piratecaptain': { + return this.player.teleport(930, 752, true, false, true); + } + } + + break; } case 'toggle': { @@ -1042,10 +1324,10 @@ export default class Commands { } case 'terror': { - if (this.player.status.has(Modules.Effects.Terror)) - return this.player.status.remove(Modules.Effects.Terror); + if (this.player.status.has(Modules.Effects.TerrorStatus)) + return this.player.status.remove(Modules.Effects.TerrorStatus); - effect = Modules.Effects.Terror; + effect = Modules.Effects.TerrorStatus; break; } @@ -1057,12 +1339,16 @@ export default class Commands { break; } + case 'hide': { + return this.player.send(new CommandPacket({ command: 'hide' })); + } + default: { return this.player.status.clear(); } } - return this.player.status.add(effect); + return this.player.status.addWithTimeout(effect, 60_000); } } } diff --git a/packages/server/src/controllers/crafting.ts b/packages/server/src/controllers/crafting.ts index 80252773d5..bf2db26b33 100644 --- a/packages/server/src/controllers/crafting.ts +++ b/packages/server/src/controllers/crafting.ts @@ -1,15 +1,20 @@ import Item from '../game/entity/objects/item'; -import CraftingData from '../../data/crafting.json'; +import CraftingData from '../../data/crafting'; import Items from '../../data/items.json'; import Utils from '@kaetram/common/util/utils'; import CraftingEn from '@kaetram/common/text/en/crafting'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { Crafting as CraftingPacket } from '@kaetram/common/network/impl'; +import { CraftingPacket } from '@kaetram/common/network/impl'; import type Player from '../game/entity/character/player/player'; -import type { CraftingInfo } from '@kaetram/common/types/crafting'; import type { ItemData } from '@kaetram/common/types/item'; +import type { + CraftingInfo, + CraftingItem, + CraftingItemPreview, + CraftingRequirement +} from '@kaetram/common/network/impl/crafting'; /** * The crafting mechanism is shared by multiple skills and works largely the same way. We use @@ -29,18 +34,18 @@ export default class Crafting { public open(player: Player, type: Modules.Skills): void { // Attempt to obtain the keys and if none are available then we cannot open the interface. - let keys = this.getCraftingKeys(type); + let previews = this.getCraftingPreviews(type); - if (!keys) return player.notify(`You cannot do that right now.`); + if (!previews) return player.notify('misc:CANNOT_DO_THAT'); // Set the currently active crafting interface. player.activeCraftingInterface = type; - // Send a packet to the client to open the crafting interface and pass the keys. + // Send a packet to the client to open the crafting interface and pass the previews. player.send( new CraftingPacket(Opcodes.Crafting.Open, { type, - keys + previews }) ); } @@ -59,14 +64,13 @@ export default class Crafting { craftingData = (CraftingData as CraftingInfo)[skillName]; // Another layer of checking the validity of the crafting data. - if (!craftingData) - return player.notify(`Invalid crafting data, please submit a bug report.`); + if (!craftingData) return player.notify('crafting:INVALID_DATA'); // Get the item key from the crafting keys based on the index the player selected. let craftingItem = craftingData[key]; // Ensure that the item exists. - if (!craftingItem) return player.notify(`Invalid item selected...`); + if (!craftingItem) return player.notify('crafting:INVALID_ITEM'); // Send the requirements and result to the player. player.send( @@ -75,7 +79,7 @@ export default class Crafting { name: (Items as RawData)[key]?.name, level: craftingItem.level, result: craftingItem.result.count, - requirements: craftingItem.requirements + requirements: this.getRequirements(craftingItem) }) ); } @@ -93,7 +97,7 @@ export default class Crafting { if (!player.canCraft()) return; // Ensure the index is valid. - if (!key) return player.notify(`You must select an item to craft.`); + if (!key) return player.notify('crafting:SELECT_ITEM'); // Verify that the count is valid. if (isNaN(count) || count < 1) count = 1; @@ -105,19 +109,14 @@ export default class Crafting { craftingData = (CraftingData as CraftingInfo)[skillName]; // Verify the crafting data - if (!craftingData) - return player.notify(`Invalid crafting data, please submit a bug report.`); + if (!craftingData) return player.notify('crafting:INVALID_DATA'); // The skill that is being used to craft the item. let craftingItem = craftingData[key], - skill = player.skills.get( - player.activeCraftingInterface === Modules.Skills.Smelting - ? Modules.Skills.Smithing - : player.activeCraftingInterface - ); + skill = player.skills.get(this.getSkillByInterface(player.activeCraftingInterface)); // Verify the crafting data - if (!craftingItem) return player.notify(`Invalid item selected...`); + if (!craftingItem) return player.notify('crafting:INVALID_ITEM'); // Ensure the player has the correct level to craft the item. if (skill.level < craftingItem.level) @@ -138,7 +137,7 @@ export default class Crafting { for (let requirement of craftingItem.requirements) { // Stop the loop if the player does not have one of the requirements. if (!player.inventory.hasItem(requirement.key, requirement.count)) - return player.notify(`You do not have the required items to craft that.`); + return player.notify('crafting:INVALID_ITEMS'); let itemCount = player.inventory.count(requirement.key), requestedAmount = requirement.count * count; @@ -163,7 +162,13 @@ export default class Crafting { // Notify the players of the amount of failures. if (failures > 0) - player.notify(`You have failed to craft ${failures}x ${(Items as RawData)[key].name}.`); + player.notify( + failures > 1 + ? `crafting:FAILED_CRAFT;failedText=${failures}x ${ + (Items as RawData)[key].name + }.` + : 'crafting:FAILED_CRAFT_ONE' + ); // Award experience to the player. skill.addExperience(craftingItem.experience * actualCount); @@ -173,15 +178,67 @@ export default class Crafting { } /** - * Returns a list of the keys of items available for crafting given a skill. + * Returns a list of the crafting item previews. These contain the key + * of the item and the level required to craft the item. * @param skill The skill to get the crafting keys for. - * @returns An array of item keys that the player can craft. + * @returns An array of item previews that contain the key and level required to craft the item. */ - public getCraftingKeys(skill: Modules.Skills): string[] { + public getCraftingPreviews(skill: Modules.Skills): CraftingItemPreview[] { // Skill name based on the enum. - let skillName = Modules.Skills[skill].toLowerCase(); + let skillName = Modules.Skills[skill].toLowerCase(), + data = (CraftingData as CraftingInfo)[skillName], + previews: CraftingItemPreview[] = []; + + // Iterate through the crafting data and add the key and level to the previews. + for (let key in data) previews.push({ key, level: data[key].level }); + + return previews; + } + + /** + * Gets all the requirements for an item and adds the name of the + * item that is requried. This is displayed on the client side in + * the list of requirements. + * @param craftingItem The crafting item we are trying to get the requirements for. + * @returns THe requirements for the item containing the name of each requirement. + */ + + public getRequirements(craftingItem: CraftingItem): CraftingRequirement[] { + let { requirements } = craftingItem; + + // Iterate through the requirements and add the name of the item. + for (let requirement of requirements) { + let item = (Items as RawData)[requirement.key]; - return Object.keys((CraftingData as CraftingInfo)[skillName]); + if (item?.name) requirement.name = item.name; + } + + return requirements; + } + + /** + * Certain skills are only used to differently identify crafting interfaces. So in this case they reward + * the same experience as their normal skill. One example is smelting and smithing, smelting does not exist + * as a separate skill, but is referred in-game as something separate from smithing, but they both reward + * experience in the same skill. + * @param activeCraftingInterface The currently active interface that the player is using. + * @returns The skills identifier. + */ + + private getSkillByInterface(activeCraftingInterface: number): Modules.Skills { + switch (activeCraftingInterface) { + case Modules.Skills.Smelting: { + return Modules.Skills.Smithing; + } + + case Modules.Skills.Chiseling: { + return Modules.Skills.Crafting; + } + + default: { + return activeCraftingInterface; + } + } } } diff --git a/packages/server/src/controllers/enchanter.ts b/packages/server/src/controllers/enchanter.ts index ce5adf2483..c33f130b5a 100644 --- a/packages/server/src/controllers/enchanter.ts +++ b/packages/server/src/controllers/enchanter.ts @@ -1,8 +1,7 @@ import Formulas from '../info/formulas'; import Utils from '@kaetram/common/util/utils'; -import EnchantEn from '@kaetram/common/text/en/enchant'; -import { Enchant } from '@kaetram/common/network/impl'; +import { EnchantPacket } from '@kaetram/common/network/impl'; import { Opcodes } from '@kaetram/common/network'; import type Item from '../game/entity/objects/item'; @@ -18,28 +17,28 @@ export default class Enchanter { public select(player: Player, index = -1) { // Prevent against packet manipulation. - if (isNaN(index) || index === -1) return player.notify(EnchantEn.CANNOT_ENCHANT); + if (isNaN(index) || index === -1) return player.notify('enchant:CANNOT_ENCHANT'); // Grab the slot at the index provided. let slot = player.inventory.get(index); // Preliminary checks for item validity. - if (!slot?.key) return player.notify(EnchantEn.CANNOT_ENCHANT); + if (!slot?.key) return player.notify('enchant:CANNOT_ENCHANT'); // Send a select packet to the client if the item is a shard. if (slot.key.startsWith('shardt')) - return player.send(new Enchant(Opcodes.Enchant.Select, { index, isShard: true })); + return player.send(new EnchantPacket(Opcodes.Enchant.Select, { index, isShard: true })); // Check that the item is enchantable. if (slot.count > 1 || !slot.equippable || slot.maxStackSize > 1) - return player.notify(EnchantEn.CANNOT_ENCHANT); + return player.notify('enchant:CANNOT_ENCHANT'); // Check that the item has available enchantments. if (player.inventory.getItem(slot).getAvailableEnchantments().length === 0) - return player.notify(EnchantEn.CANNOT_ENCHANT); + return player.notify('enchant:CANNOT_ENCHANT'); // Send a select packet to the client. - player.send(new Enchant(Opcodes.Enchant.Select, { index })); + player.send(new EnchantPacket(Opcodes.Enchant.Select, { index })); } /** @@ -53,24 +52,24 @@ export default class Enchanter { public enchant(player: Player, index = -1, shardIndex = -1): void { // Prevent invalid data from being used. if (shardIndex === -1 || index === -1 || isNaN(index) || isNaN(shardIndex)) - return player.notify(EnchantEn.NO_ITEM_SELECTED); + return player.notify('enchant:NO_ITEM_SELECTED'); // Attempt to grab the items from the inventory and verify that they exist. let itemSlot = player.inventory.get(index), shardSlot = player.inventory.get(shardIndex); // Ensure the slot element has an item before creating an item instance. - if (!itemSlot?.key || !shardSlot?.key) return player.notify(EnchantEn.NO_ITEM_SELECTED); + if (!itemSlot?.key || !shardSlot?.key) return player.notify('enchant:NO_ITEM_SELECTED'); // Ensure the player is providing shards to enchant an item. - if (!shardSlot.key.startsWith('shardt')) return player.notify(EnchantEn.NO_SHARD); + if (!shardSlot.key.startsWith('shardt')) return player.notify('enchant:NO_SHARD'); // Item instance that we can manipulate and do checking on. let item = player.inventory.getItem(itemSlot).copy(), enchantments = item.getAvailableEnchantments(); // No enchantments available means the item cannot be enchanted. - if (enchantments.length === 0) return player.notify(EnchantEn.CANNOT_ENCHANT); + if (enchantments.length === 0) return player.notify('enchant:NO_ITEM_SELECTED'); // Get the shard tier by removing the `shardt` prefix from the shard key. let tier = parseInt(shardSlot.key.split('shardt')[1]), @@ -80,7 +79,7 @@ export default class Enchanter { player.inventory.remove(shardIndex, 1); // Enchantment failed to apply. - if (!chance) return player.notify(EnchantEn.FAILED_ENCHANT); + if (!chance) player.notify('enchant:FAILED_ENCHANT'); /** * Pick out a random enchantment from the available enchantments and @@ -91,8 +90,7 @@ export default class Enchanter { let enchantment = enchantments[Utils.randomInt(0, enchantments.length - 1)], level = Utils.randomInt(1, tier); - if (!this.canEnchant(item, enchantment, level)) - return player.notify(EnchantEn.FAILED_ENCHANT); + if (!this.canEnchant(item, enchantment, level)) player.notify('enchant:FAILED_ENCHANT'); // Apply the enchantment only if the level is greater or it doesn't exist. item.setEnchantment(enchantment, level); @@ -101,7 +99,7 @@ export default class Enchanter { itemSlot.update(item); // Send a notification to the player. - player.notify(EnchantEn.SUCCESSFUL_ENCHANT); + player.notify('enchant:SUCCESSFUL_ENCHANT'); // Synchronize the inventory with the new slots. player.inventory.loadCallback?.(); diff --git a/packages/server/src/controllers/entities.ts b/packages/server/src/controllers/entities.ts index cdf0ac2adf..29147a0ead 100644 --- a/packages/server/src/controllers/entities.ts +++ b/packages/server/src/controllers/entities.ts @@ -1,6 +1,10 @@ import mobData from '../../data/mobs.json'; import itemData from '../../data/items.json'; import npcData from '../../data/npcs.json'; +import treeData from '../../data/trees.json'; +import rockData from '../../data/rocks.json'; +import fishSpotData from '../../data/fishing.json'; +import foragingData from '../../data/foraging.json'; import NPC from '../game/entity/npc/npc'; import Item from '../game/entity/objects/item'; import Chest from '../game/entity/objects/chest'; @@ -10,19 +14,23 @@ import Projectile from '../game/entity/objects/projectile'; import LootBag from '../game/entity/objects/lootbag'; import Pet from '../game/entity/character/pet/pet'; import Effect from '../game/entity/objects/effect'; +import Tree from '../game/entity/objects/resource/impl/tree'; +import Rock from '../game/entity/objects/resource/impl/rock'; +import FishSpot from '../game/entity/objects/resource/impl/fishspot'; +import Foraging from '../game/entity/objects/resource/impl/foraging'; import log from '@kaetram/common/util/log'; import { Modules } from '@kaetram/common/network'; -import { Blink, Despawn } from '@kaetram/common/network/impl'; +import { BlinkPacket, DespawnPacket, ResourcePacket } from '@kaetram/common/network/impl'; -import type { Enchantments } from '@kaetram/common/types/item'; -import type Hit from '../game/entity/character/combat/hit'; -import type Player from '../game/entity/character/player/player'; -import type Entity from '../game/entity/entity'; import type Map from '../game/map/map'; import type World from '../game/world'; -import type Regions from '../game/map/regions'; import type Grids from '../game/map/grids'; +import type Regions from '../game/map/regions'; +import type Entity from '../game/entity/entity'; +import type Hit from '../game/entity/character/combat/hit'; +import type Player from '../game/entity/character/player/player'; +import type { Enchantments } from '@kaetram/common/types/item'; export default class Entities { private map: Map; @@ -40,6 +48,10 @@ export default class Entities { private pets: { [instance: string]: Pet } = {}; private lootBags: { [instance: string]: LootBag } = {}; private effects: { [instance: string]: Effect } = {}; + private trees: { [instance: string]: Tree } = {}; + private rocks: { [instance: string]: Rock } = {}; + private fishSpots: { [instance: string]: FishSpot } = {}; + private foragings: { [instance: string]: Foraging } = {}; public constructor(private world: World) { this.map = world.map; @@ -71,10 +83,32 @@ export default class Entities { case Modules.EntityType.Mob: { return this.spawnMob(key, position.x, position.y); } + + case Modules.EntityType.Tree: { + return this.spawnTree(key, position.x, position.y); + } + + case Modules.EntityType.Rock: { + return this.spawnRock(key, position.x, position.y); + } + + case Modules.EntityType.FishSpot: { + return this.spawnFishSpots(key, position.x, position.y); + } + + case Modules.EntityType.Foraging: { + return this.spawnForaging(key, position.x, position.y); + } } }); - log.info(`Spawned ${Object.keys(this.entities).length} entities!`); + log.info(`Spawned ${Object.keys(this.items).length} items!`); + log.info(`Spawned ${Object.keys(this.npcs).length} NPCs!`); + log.info(`Spawned ${Object.keys(this.mobs).length} mobs!`); + log.info(`Spawned ${Object.keys(this.trees).length} trees!`); + log.info(`Spawned ${Object.keys(this.rocks).length} rocks!`); + log.info(`Spawned ${Object.keys(this.fishSpots).length} fish spots!`); + log.info(`Spawned ${Object.keys(this.foragings).length} foraging spots!`); // Spawns the static chests throughout the world. @@ -92,7 +126,17 @@ export default class Entities { // Initialize the roaming interval for mobs setInterval( - () => this.forEachMob((mob) => mob.roamingCallback?.()), + () => + this.forEachMob((mob) => { + // Roaming only when players are in the region when there are more than 30 players online. + if ( + !this.regions.get(mob.region)?.hasPlayersInRegion() && + this.world.getPopulation() > 30 + ) + return; + + mob.roamingCallback?.(); + }), Modules.MobDefaults.ROAM_FREQUENCY ); } @@ -133,7 +177,7 @@ export default class Entities { // Do not spawn a loot bag if it is empty. if (items.length === 0) return; - this.addLootBag(new LootBag(x, y, owner, items)); + this.addLootBag(new LootBag(this.world, x, y, owner, items)); } /** @@ -154,6 +198,118 @@ export default class Entities { return mob; } + /** + * Spawns a tree in the world and adds it to the world. + * @param key The key of the tree, used to determine its sprite. + * @param x The x grid coordinate of the tree spawn. + * @param y The y grid coordinate of the tree spawn. + * @returns A new tree object. + */ + + public spawnTree(key: string, x: number, y: number): Tree { + let tree = new Tree(key, x, y); + + tree.onStateChange(() => { + this.world.push(Modules.PacketType.Regions, { + region: tree.region, + packet: new ResourcePacket({ + instance: tree.instance, + state: tree.state + }) + }); + }); + + this.add(tree); + + this.trees[tree.instance] = tree; + + return tree; + } + + /** + * Spawns a rock in the world and adds it to the world. + * @param key The key of the rock, used to determine its sprite. + * @param x The x grid coordinate of the rock spawn. + * @param y The y grid coordinate of the rock spawn. + * @returns A new rock object. + */ + + public spawnRock(key: string, x: number, y: number): Tree { + let rock = new Rock(key, x, y); + + rock.onStateChange(() => { + this.world.push(Modules.PacketType.Regions, { + region: rock.region, + packet: new ResourcePacket({ + instance: rock.instance, + state: rock.state + }) + }); + }); + + this.add(rock); + + this.rocks[rock.instance] = rock; + + return rock; + } + + /** + * Spawns a fish spots in the world and adds it to the world. + * @param key The key of the fish spots, used to determine its sprite. + * @param x The x grid coordinate of the fish spots spawn. + * @param y The y grid coordinate of the fish spots spawn. + * @returns A new fish spots object. + */ + + public spawnFishSpots(key: string, x: number, y: number): Tree { + let fishSpots = new FishSpot(key, x, y); + + fishSpots.onStateChange(() => { + this.world.push(Modules.PacketType.Regions, { + region: fishSpots.region, + packet: new ResourcePacket({ + instance: fishSpots.instance, + state: fishSpots.state + }) + }); + }); + + this.add(fishSpots); + + this.fishSpots[fishSpots.instance] = fishSpots; + + return fishSpots; + } + + /** + * Spawns a foraging spot in the world and adds it to the world. + * @param key The key of the foraging spot, used to determine its sprite. + * @param x The x grid coordinate of the foraging spot spawn. + * @param y The y grid coordinate of the foraging spot spawn. + * @returns A new foraging spot object. + */ + + public spawnForaging(key: string, x: number, y: number): Tree { + let foraging = new Foraging(key, x, y); + + foraging.onStateChange(() => { + this.world.push(Modules.PacketType.Regions, { + region: foraging.region, + packet: new ResourcePacket({ + instance: foraging.instance, + state: foraging.state + }) + }); + }); + + this.add(foraging); + + this.foragings[foraging.instance] = foraging; + + return foraging; + } + /** * Spawns a chest in the world at the given position. * @param items The items that the chest might drop. @@ -320,7 +476,7 @@ export default class Entities { // Blinking timeout before the item despawns. item.onBlink(() => this.world.push(Modules.PacketType.Broadcast, { - packet: new Blink(item.instance) + packet: new BlinkPacket(item.instance) }) ); } else item.onRespawn(() => this.addItem(item)); @@ -400,6 +556,8 @@ export default class Entities { */ private addEffect(effect: Effect): void { + effect.onDespawn(() => this.removeEffect(effect)); + this.add(effect); this.effects[effect.instance] = effect; @@ -414,7 +572,7 @@ export default class Entities { // Signal to nearby regions that the entity has been removed. this.world.push(Modules.PacketType.Regions, { region: entity.region, - packet: new Despawn({ + packet: new DespawnPacket({ instance: entity.instance }) }); @@ -563,6 +721,17 @@ export default class Entities { ); } + /** + * Attempts to find an NPC based on a key. Note that this will find the first + * NPC we come across with the key, so it is not recommended to use this + * function if there are multiple NPCs with the same key. + * @param key The key of the NPC we are looking for. + */ + + public getNPCByKey(key: string): NPC | undefined { + return Object.values(this.npcs).find((npc: NPC) => npc.key === key); + } + /** * Looks for the string of the entity in all the data files * and returns the type of entity it is. @@ -574,6 +743,10 @@ export default class Entities { if (key in itemData) return Modules.EntityType.Item; if (key in npcData) return Modules.EntityType.NPC; if (key in mobData) return Modules.EntityType.Mob; + if (key in treeData) return Modules.EntityType.Tree; + if (key in rockData) return Modules.EntityType.Rock; + if (key in fishSpotData) return Modules.EntityType.FishSpot; + if (key in foragingData) return Modules.EntityType.Foraging; return -1; } diff --git a/packages/server/src/controllers/guilds.ts b/packages/server/src/controllers/guilds.ts index b432493a84..ae382df369 100644 --- a/packages/server/src/controllers/guilds.ts +++ b/packages/server/src/controllers/guilds.ts @@ -1,13 +1,13 @@ import log from '@kaetram/common/util/log'; import config from '@kaetram/common/config'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { Guild as GuildPacket } from '@kaetram/common/network/impl'; +import { GuildPacket } from '@kaetram/common/network/impl'; import type World from '../game/world'; import type Player from '../game/entity/character/player/player'; import type MongoDB from '@kaetram/common/database/mongodb/mongodb'; -import type { GuildData, ListInfo, Member } from '@kaetram/common/types/guild'; -import type { GuildPacket as OutgoingGuildPacket } from '@kaetram/common/types/messages/outgoing'; +import type { GuildData, ListInfo, Member } from '@kaetram/common/network/impl/guild'; +import type { GuildPacketData } from '@kaetram/common/types/messages/outgoing'; export default class Guilds { private database: MongoDB; @@ -23,79 +23,81 @@ export default class Guilds { * @param name The name of the guild. */ - public create( + public async create( player: Player, name: string, banner: Modules.BannerColour, outline: Modules.BannerOutline, outlineColour: Modules.BannerColour, crest: Modules.BannerCrests - ): void { + ): Promise { // Ensure the player isn't already in a guild. - if (player.guild) return player.notify('You are already in a guild.'); + if (player.guild) return player.notify('guilds:ALREADY_IN_GUILD'); + + // Ensure that guests cannot create guilds. + if (player.isGuest) return player.notify('guilds:NOT_ALLOWED_GUESTS_CREATE'); // Prevent players from creating a guild if they haven't finished the tutorial. if (!player.quests.isTutorialFinished()) - return player.guildNotify('You must finish the tutorial before creating a guild.'); + return player.guildNotify('guilds:MUST_FINISH_TUTORIAL_CREATE'); // Ensure the player has enough gold to create a guild. if (!player.inventory.hasItem('gold', 30_000)) - return player.guildNotify('You need 30,000 gold in your inventory to create a guild.'); + return player.guildNotify('guilds:NOT_ENOUGH_GOLD'); /** * We use the lower case of the guild name as the identifier. That way * we allow players to have guilds with capital letters in their name. */ - let identifier = name.toLowerCase(); + let identifier = name.toLowerCase(), + guild = await this.database.loader.loadGuild(identifier); - this.database.loader.loadGuild(identifier, (guild?: GuildData) => { - // Ensure a guild doesn't already exist with that name. - if (guild) return player.guildNotify('A guild with that name already exists.'); + // Ensure a guild doesn't already exist with that name. + if (guild) return player.guildNotify('A guild with that name already exists.'); - // Remove the gold from the player's inventory. - player.inventory.removeItem('gold', 30_000); + // Remove the gold from the player's inventory. + player.inventory.removeItem('gold', 30_000); - let data: GuildData = { - identifier, - name, - creationDate: Date.now(), - inviteOnly: false, - experience: 0, - owner: player.username, - members: [ - { - username: player.username, - rank: Modules.GuildRank.Landlord, - joinDate: Date.now() - } - ], - decoration: { - banner, - outline, - outlineColour, - crest + let data: GuildData = { + identifier, + name, + creationDate: Date.now(), + inviteOnly: false, + experience: 0, + owner: player.username, + members: [ + { + username: player.username, + rank: Modules.GuildRank.Landlord, + joinDate: Date.now() } - }; + ], + decoration: { + banner, + outline, + outlineColour, + crest + } + }; - this.database.creator.saveGuild(data); + this.database.creator.saveGuild(data); - // Send the join packet to the player. - player.send( - new GuildPacket(Opcodes.Guild.Login, { - name, - owner: player.username, - members: data.members, - decoration: data.decoration - }) - ); + // Send the join packet to the player. + player.send( + new GuildPacket(Opcodes.Guild.Login, { + name, + owner: player.username, + members: data.members, + decoration: data.decoration + }) + ); - // Assign the guild identifier to the player. - player.guild = identifier; + // Assign the guild identifier to the player. + player.guild = identifier; - // Save the player - player.save(); - }); + // Save the player + player.save(); } /** @@ -108,34 +110,34 @@ export default class Guilds { * @param identifier The string identifier of the guild (to load from the database). */ - public connect(player: Player, identifier: string): void { + public async connect(player: Player, identifier: string): Promise { // Attempt to grab the guild from the database. - this.database.loader.loadGuild(identifier, (guild?: GuildData) => { - if (!guild) { - // Erase the guild identifier from the player. - player.guild = ''; - return; - } + let guild = await this.database.loader.loadGuild(identifier); - // Remove the player if they are not in the guild. - if (!guild.members.some((member) => member.username === player.username)) { - player.guild = ''; - return; - } + if (!guild) { + // Erase the guild identifier from the player. + player.guild = ''; + return; + } - // Send the join packet to the player. - player.send( - new GuildPacket(Opcodes.Guild.Login, { - name: guild.name, - owner: guild.owner, - members: guild.members, - decoration: guild.decoration - }) - ); + // Remove the player if they are not in the guild. + if (!guild.members.some((member) => member.username === player.username)) { + player.guild = ''; + return; + } - // Synchronize the connection with all the members in the guild. - this.updateStatus(player, guild.members); - }); + // Send the join packet to the player. + player.send( + new GuildPacket(Opcodes.Guild.Login, { + name: guild.name, + owner: guild.owner, + members: guild.members, + decoration: guild.decoration + }) + ); + + // Synchronize the connection with all the members in the guild. + this.updateStatus(player, guild.members); } /** @@ -145,55 +147,59 @@ export default class Guilds { * @param identifier Used to determine the guild the player is joining. */ - public join(player: Player, identifier: string): void { - if (player.isGuest) return player.notify('Guests are not allowed to join a guild.'); + public async join(player: Player, identifier: string): Promise { + if (player.isGuest) return player.notify('guilds:NOT_ALLOWED_GUESTS_JOIN'); - if (player.guild) return player.notify('You are already in a guild.'); + if (player.guild) return player.notify('guilds:ALREADY_IN_GUILD'); // Attempt to grab the guild from the database. - this.database.loader.loadGuild(identifier, (guild?: GuildData) => { - if (!guild) - return log.general( - `Player ${player.username} tried to join a guild that doesn't exist.` - ); - - // Ensure the guild isn't full. - if (guild.members.length >= Modules.Constants.MAX_GUILD_MEMBERS) - return player.notify('This guild is already at maximum capacity.'); - - // Append the player to the guild's member list. - guild.members.push({ - username: player.username, - rank: Modules.GuildRank.Fledgling, - joinDate: Date.now() - }); + let guild = await this.database.loader.loadGuild(identifier); - // Save the guild to the database. - this.database.creator.saveGuild(guild, () => { - // Set the guild identifier on the player. - player.guild = identifier; - - // Save the player. - player.save(); - - // Connect the player to the guild. - this.connect(player, identifier); - - // Send the join packet to the player. - player.send( - new GuildPacket(Opcodes.Guild.Login, { - name: guild.name, - owner: guild.owner, - members: guild.members, - decoration: guild.decoration - }) - ); - - // Sync to all the members in the guild. - this.synchronize(guild.members, Opcodes.Guild.Join, { - username: player.username, - serverId: config.serverId - }); + if (!guild) { + // Attempt to send the player the updated guild list. + this.get(player, 0, 10); + + return log.general( + `Player ${player.username} tried to join a guild that doesn't exist.` + ); + } + + // Ensure the guild isn't full. + if (guild.members.length >= Modules.Constants.MAX_GUILD_MEMBERS) + return player.notify('guilds:GUILD_FULL'); + + // Append the player to the guild's member list. + guild.members.push({ + username: player.username, + rank: Modules.GuildRank.Fledgling, + joinDate: Date.now() + }); + + // Save the guild to the database. + this.database.creator.saveGuild(guild, () => { + // Set the guild identifier on the player. + player.guild = identifier; + + // Save the player. + player.save(); + + // Connect the player to the guild. + this.connect(player, identifier); + + // Send the join packet to the player. + player.send( + new GuildPacket(Opcodes.Guild.Login, { + name: guild!.name, + owner: guild!.owner, + members: guild!.members, + decoration: guild!.decoration + }) + ); + + // Sync to all the members in the guild. + this.synchronize(guild!.members, Opcodes.Guild.Join, { + username: player.username, + serverId: config.serverId }); }); } @@ -204,48 +210,51 @@ export default class Guilds { * @param player The player that is leaving the guild. */ - public leave(player: Player): void { + public async leave(player: Player): Promise { // No need to do anything if the player doesn't have a guild. if (!player.guild) return log.warning(`${player.username} tried to leave a guild that they're not in.`); // Grab the guild from the database. - this.database.loader.loadGuild(player.guild, (guild?: GuildData) => { - if (!guild) - return log.general( - `Player ${player.username} tried to leave a guild that doesn't exist.` - ); + let guild = await this.database.loader.loadGuild(player.guild); + + if (!guild) + return log.general( + `Player ${player.username} tried to leave a guild that doesn't exist.` + ); - // Disband the guild if the player is the owner. - if (player.username === guild.owner) { - // Send the leave packet to all the members in the guild. - this.synchronize(guild.members, Opcodes.Guild.Leave); + // Disband the guild if the player is the owner. + if (player.username === guild.owner) { + // Send the leave packet to all the members in the guild. + for (let member of guild.members) + if (member.username !== player.username) await this.kick(player, member.username); - // Disband the guild - this.database.deleteGuild(player.guild); + this.synchronize(guild.members, Opcodes.Guild.Leave); - // Remove the guild identifier from the player. - player.guild = ''; + // Disband the guild + this.database.deleteGuild(player.guild); - return; - } + // Remove the guild identifier from the player. + player.guild = ''; + + return; + } - // Remove the player from the guild's member list. - guild.members = guild.members.filter((member) => member.username !== player.username); + // Remove the player from the guild's member list. + guild.members = guild.members.filter((member) => member.username !== player.username); - // Save the guild to the database. - this.database.creator.saveGuild(guild); + // Save the guild to the database. + this.database.creator.saveGuild(guild); - // Remove the guild object from the player. - player.guild = ''; + // Remove the guild object from the player. + player.guild = ''; - // Send the leave packet to the player. - player.send(new GuildPacket(Opcodes.Guild.Leave)); + // Send the leave packet to the player. + player.send(new GuildPacket(Opcodes.Guild.Leave)); - // Sync to all the members in the guild. - this.synchronize(guild.members, Opcodes.Guild.Leave, { - username: player.username - }); + // Sync to all the members in the guild. + this.synchronize(guild.members, Opcodes.Guild.Leave, { + username: player.username }); } @@ -256,43 +265,41 @@ export default class Guilds { * @param username The username of the player that is being kicked. */ - public kick(player: Player, username: string): void { + public async kick(player: Player, username: string): Promise { if (!player.guild) return log.warning( `${player.username} tried to kick someone from a guild that they're not in.` ); // Grab the guild from the database. - this.database.loader.loadGuild(player.guild, (guild?: GuildData) => { - if (!guild) - return log.general( - `Player ${player.username} tried to kick someone from a guild that doesn't exist.` - ); + let guild = await this.database.loader.loadGuild(player.guild); - // Ensure the player is the owner of the guild. - if (player.username !== guild.owner) - return player.notify('You do not have permission to kick members from this guild.'); + if (!guild) + return log.general( + `Player ${player.username} tried to kick someone from a guild that doesn't exist.` + ); - // Ensure the player is not kicking themselves. - if (player.username === username) - return player.notify('You cannot kick yourself from the guild.'); + // Ensure the player is the owner of the guild. + if (player.username !== guild.owner) return player.notify('guilds:NO_PERMISSION'); - let otherPlayer = this.world.getPlayerByName(username); + // Ensure the player is not kicking themselves. + if (player.username === username) return player.notify('guilds:CANNOT_KICK_YOURSELF'); - // Remove the guild from the player being kicked if they're online. - if (otherPlayer) otherPlayer.guild = ''; + let otherPlayer = this.world.getPlayerByName(username); - // Sync to all the members in the guild. - this.synchronize(guild.members, Opcodes.Guild.Leave, { - username - }); + // Remove the guild from the player being kicked if they're online. + if (otherPlayer) otherPlayer.guild = ''; - // Remove the player from the guild's member list. - guild.members = guild.members.filter((member) => member.username !== username); - - // Save the guild to the database. - this.database.creator.saveGuild(guild); + // Sync to all the members in the guild. + this.synchronize(guild.members, Opcodes.Guild.Leave, { + username }); + + // Remove the player from the guild's member list. + guild.members = guild.members.filter((member) => member.username !== username); + + // Save the guild to the database. + this.database.creator.saveGuild(guild); } /** @@ -301,24 +308,72 @@ export default class Guilds { * @param message The message that the player is sending. */ - public chat(player: Player, message: string): void { + public async chat(player: Player, message: string): Promise { if (!player.guild) return log.warning(`${player.username} tried to chat in a guild that they're not in.`); - this.database.loader.loadGuild(player.guild, (guild?: GuildData) => { - if (!guild) - return log.general( - `Player ${player.username} tried to chat in a guild that doesn't exist.` - ); + let guild = await this.database.loader.loadGuild(player.guild); - this.synchronize(guild.members, Opcodes.Guild.Chat, { - username: player.username, - serverId: config.serverId, - message - }); + if (!guild) + return log.general( + `Player ${player.username} tried to chat in a guild that doesn't exist.` + ); + + this.synchronize(guild.members, Opcodes.Guild.Chat, { + username: player.username, + serverId: config.serverId, + message }); } + /** + * Handles relaying a promotion packet to all the members in the guild. + * @param player The player that is promoting someone. + * @param username The username of the player that is being promoted. + */ + + public async promote(player: Player, username: string): Promise { + let guild = await this.getGuild(player.guild); + + if (!guild) + return log.warning( + `${player.username} tried to promote someone in a guild that they're not in.` + ); + + let member = await this.getMember(guild, username); + + if (member?.rank === undefined) + return log.warning( + `${player.username} tried to promote someone in a guild that they're not in.` + ); + + this.setRank(guild, player, member, member.rank + 1); + } + + /** + * Handles relaying a demotion packet to all the members in the guild. + * @param player The player that is demoting someone. + * @param username The username of the player that is being demoted. + */ + + public async demote(player: Player, username: string): Promise { + let guild = await this.getGuild(player.guild); + + if (!guild) + return log.warning( + `${player.username} tried to promote someone in a guild that they're not in.` + ); + + let member = await this.getMember(guild, username); + + if (member?.rank === undefined) + return log.warning( + `${player.username} tried to promote someone in a guild that they're not in.` + ); + + this.setRank(guild, player, member, member.rank - 1); + } + /** * Adds an experience to a guild and relays the information to all the members * in the guild. @@ -326,25 +381,25 @@ export default class Guilds { * @param experience The amount of experience that is being added. */ - public addExperience(player: Player, experience: number): void { + public async addExperience(player: Player, experience: number): Promise { if (!player.guild) return log.warning( `${player.username} tried to add experience to a guild that they're not in.` ); - this.database.loader.loadGuild(player.guild, (guild?: GuildData) => { - if (!guild) - return log.general( - `Player ${player.username} tried to add experience to a guild that doesn't exist.` - ); + let guild = await this.database.loader.loadGuild(player.guild); - guild.experience += experience; + if (!guild) + return log.general( + `Player ${player.username} tried to add experience to a guild that doesn't exist.` + ); - this.database.creator.saveGuild(guild); + guild.experience += experience; - this.synchronize(guild.members, Opcodes.Guild.Experience, { - experience: guild.experience - }); + this.database.creator.saveGuild(guild); + + this.synchronize(guild.members, Opcodes.Guild.Experience, { + experience: guild.experience }); } @@ -356,54 +411,95 @@ export default class Guilds { * @param rank The rank that the player is being updated to. */ - public setRank(player: Player, username: string, rank: Modules.GuildRank): void { + public async setRank( + guild: GuildData, + player: Player, + member: Member, + rank: Modules.GuildRank + ): Promise { if (!player.guild) return log.warning( `${player.username} tried to set a rank in a guild that they're not in.` ); - this.database.loader.loadGuild(player.guild, (guild?: GuildData) => { - if (!guild) - return log.general( - `Player ${player.username} tried to set a rank in a guild that doesn't exist.` - ); + if (!guild) + return log.general( + `Player ${player.username} tried to set a rank in a guild that doesn't exist.` + ); - // Ensure the player has the correct permissions to update the rank. - if (player.username !== guild.owner) - return player.notify( - 'You do not have permission to update the rank of this player.' - ); + let { username } = member; - // Iterate through the members and skip if the username doesn't match. - for (let member of guild.members) { - if (member.username !== username) continue; + if (player.username === username) + return log.warning(`${player.username} tried to set their own rank.`); - // Update the rank of the member. - member.rank = rank; - } + if (member?.rank === undefined) + return log.warning(`Player ${username} is not in the guild.`); - this.database.creator.saveGuild(guild); + if (rank < Modules.GuildRank.Fledgling || rank > Modules.GuildRank.Landlord) + return log.warning(`Player ${username} tried to set an invalid rank.`); - this.synchronize(guild.members, Opcodes.Guild.Rank, { - username, - rank - }); + let playerMember = await this.getMember(guild, player.username); + + if (playerMember?.rank === undefined) + return log.warning( + `${player.username} tried to set a rank in a guild that they're not in.` + ); + + // Ensure the player has the correct permissions to update the rank. + if (playerMember.rank - rank < 1) return player.notify('guilds:NO_PERMISSION_RANK'); + + member.rank = rank; + + this.database.creator.saveGuild(guild); + + this.synchronize(guild.members, Opcodes.Guild.Rank, { + username, + rank }); } /** - * Iterates through the members in the world that are active in the guild and + * Attempts to grab a guild from the database based on the identifier. + * @param identifier The isntance identifier of the guild. + * @returns A guild object or undefined if it doesn't exist. + */ + + public async getGuild(identifier: string): Promise { + let guild = await this.database.loader.loadGuild(identifier); + + if (!guild) log.warning(`Guild ${identifier} does not exist.`); + + return guild; + } + + /** + * Grabs a member based on the guild and username. + * @param guild The guild data from the database. + * @param username The username of the member that we are grabbing. + * @returns A promise that resolves to the member or undefined if they are not in the guild. + */ + + public async getMember(guild: GuildData, username: string): Promise { + let member = guild.members.find((member) => member.username === username); + + if (!member) { + log.warning(`Player ${username} is not in the guild.`); + + return; + } + + return member; + } + + /** + * Iterates through the members in the world that are active in the guild andthe members in the world that are active in the guild and * sends a packet. The remaining members are relayed through the hub. * @param members The members in the group that we are sending packets to. * @param opcode The opcode of the packet that we are sending. * @param data The data that we are sending to the client. */ - private synchronize( - members: Member[], - opcode: Opcodes.Guild, - data?: OutgoingGuildPacket - ): void { + private synchronize(members: Member[], opcode: Opcodes.Guild, data?: GuildPacketData): void { for (let member of members) { let player = this.world.getPlayerByName(member.username), packet = new GuildPacket(opcode, data); @@ -459,7 +555,7 @@ export default class Guilds { * @param to The index at which we stop grabbing guilds. */ - public get(player: Player, from: number, to: number): void { + public get(player: Player, from = 0, to = 50): void { this.database.loader.loadGuilds(from, to, (info: GuildData[], total: number) => { // Filter guild data that are full and/or invite only. info = info.filter( diff --git a/packages/server/src/controllers/incoming.ts b/packages/server/src/controllers/incoming.ts index 9d7b881142..9f6f1dcd3b 100644 --- a/packages/server/src/controllers/incoming.ts +++ b/packages/server/src/controllers/incoming.ts @@ -1,16 +1,15 @@ import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import { Packets, Opcodes } from '@kaetram/common/network'; -import { Guild } from '@kaetram/common/network/impl'; +import { GuildPacket } from '@kaetram/common/network/impl'; import Packet from '@kaetram/common/network/packet'; import type World from '../game/world'; -import type { GuildPacket } from '@kaetram/common/types/messages/outgoing'; +import type { GuildPacketData, PlayerPacketData } from '@kaetram/common/types/messages/outgoing'; import type { - ChatPacket, - FriendsPacket, - PlayerPacket, - RelayPacket + ChatPacketData, + FriendsPacketData, + RelayPacketData } from '@kaetram/common/types/messages/hub'; /** @@ -33,23 +32,23 @@ export default class Incoming { public handle([packet, opcode, data]: [number, unknown, unknown]): void { switch (packet) { case Packets.Player: { - return this.handlePlayer(opcode as number, data as PlayerPacket); + return this.handlePlayer(opcode as number, data as PlayerPacketData); } case Packets.Chat: { - return this.handleChat(opcode as ChatPacket); + return this.handleChat(opcode as ChatPacketData); } case Packets.Guild: { - return this.handleGuild(opcode as number, data as GuildPacket); + return this.handleGuild(opcode as number, data as GuildPacketData); } case Packets.Friends: { - return this.handleFriends(data as FriendsPacket); + return this.handleFriends(data as FriendsPacketData); } case Packets.Relay: { - return this.handleRelay(opcode as RelayPacket); + return this.handleRelay(opcode as RelayPacketData); } } } @@ -62,7 +61,7 @@ export default class Incoming { * @param data Contains the player's username and server id. */ - private handlePlayer(opcode: Opcodes.Player, data: PlayerPacket): void { + private handlePlayer(opcode: Opcodes.Player, data: PlayerPacketData): void { // Synchronize the player's login or logout to the guild members. if (data.guild) this.world.syncGuildMembers( @@ -86,12 +85,12 @@ export default class Incoming { * @param chat Contains information about the message. */ - private handleChat(data: ChatPacket) { + private handleChat(data: ChatPacketData) { // Not found occurs when the hub could not find the player anywhere. if (data.notFound) { let player = this.world.getPlayerByName(data.source!); - return player?.notify(`Player @aquamarine@${data.target}@white@ is not online.`); + return player?.notify(`misc:NOT_ONLINE;username=${data.target}`); } // Success is an event sent from the hub when the message was successfully delivered. @@ -129,7 +128,7 @@ export default class Incoming { * @param data Contains information about the opcode. */ - private handleGuild(opcode: Opcodes.Guild, data: GuildPacket): void { + private handleGuild(opcode: Opcodes.Guild, data: GuildPacketData): void { switch (opcode) { case Opcodes.Guild.Update: { if (!data.username || !data.members) return; @@ -137,7 +136,8 @@ export default class Incoming { let player = this.world.getPlayerByName(data.username); // Send the packet to the player's client. - if (player) player.send(new Guild(Opcodes.Guild.Update, { members: data.members })); + if (player) + player.send(new GuildPacket(Opcodes.Guild.Update, { members: data.members })); return; } @@ -152,7 +152,7 @@ export default class Incoming { * @param data Contains the player's username and their active friends (alongside their serverId). */ - private handleFriends(data: FriendsPacket): void { + private handleFriends(data: FriendsPacketData): void { let player = this.world.getPlayerByName(data.username!); if (data.activeFriends) player?.friends.setActiveFriends(data.activeFriends); @@ -165,7 +165,7 @@ export default class Incoming { * @param data Contains the player's username and the packet we want to send to them. */ - private handleRelay(data: RelayPacket): void { + private handleRelay(data: RelayPacketData): void { let [username, info] = data, player = this.world.getPlayerByName(username); diff --git a/packages/server/src/controllers/stores.ts b/packages/server/src/controllers/stores.ts index 957be8283c..8077774669 100644 --- a/packages/server/src/controllers/stores.ts +++ b/packages/server/src/controllers/stores.ts @@ -2,24 +2,25 @@ import storeData from '../../data/stores.json'; import Item from '../game/entity/objects/item'; import log from '@kaetram/common/util/log'; -import StoreEn from '@kaetram/common/text/en/store'; +import { t } from '@kaetram/common/i18n'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { Store as StorePacket } from '@kaetram/common/network/impl'; +import { StorePacket } from '@kaetram/common/network/impl'; +import type World from '../game/world'; +import type NPC from '../game/entity/npc/npc'; +import type Player from '../game/entity/character/player/player'; import type { RawStore, SerializedStoreInfo, SerializedStoreItem, StoreData -} from '@kaetram/common/types/stores'; -import type Player from '../game/entity/character/player/player'; -import type NPC from '../game/entity/npc/npc'; -import type World from '../game/world'; +} from '@kaetram/common/network/impl/store'; interface StoreInfo { items: Item[]; refresh: number; currency: string; + allowedItems?: string[]; restricted?: boolean; lastUpdate?: number; } @@ -67,7 +68,7 @@ export default class Stores { // Skip if an item already exists with the same key. if (items.some(({ key: itemKey }) => itemKey === key)) { - log.warning(`${StoreEn.WARNING_DUPLICATE}'${key}'.`); + log.warning(`${t('store:WARNING_DUPLICATE')}'${key}'.`); continue; } @@ -153,7 +154,7 @@ export default class Stores { public open(player: Player, npc: NPC): void { let store = this.getStore(npc); - if (!store) return log.debug(`[${player.username}] ${StoreEn.INVALID_STORE}.`); + if (!store) return log.debug(`[${player.username}] ${t('store:INVALID_STORE')}.`); player.send(new StorePacket(Opcodes.Store.Open, this.serialize(npc.store))); @@ -177,21 +178,21 @@ export default class Stores { item = store.items[index]; // Prevent hollow admins from buying any of the items. - if (player.isHollowAdmin()) return player.notify(StoreEn.HOLLOW_ADMIN); + if (player.isHollowAdmin()) return player.notify('store:HOLLOW_ADMIN'); // Prevent cheaters from buying any of the items. - if (player.isCheater()) return player.notify(StoreEn.CHEATER); + if (player.isCheater()) return player.notify('store:CHEATER'); // First and foremost check the user has enough space. if (!player.inventory.hasSpace() && !player.inventory.hasItem(item.key)) - return player.notify(StoreEn.NOT_ENOUGH_SPACE); + return player.notify('store:NOT_ENOUGH_SPACE'); // Check if item exists if (!item) - return log.error(`${player.username} ${StoreEn.PURCHASE_INVALID_STORE}${storeKey}.`); + return log.error(`${player.username} ${t('store:PURCHASE_INVALID_STORE')}${storeKey}.`); if (item.count !== -1) { - if (item.count < 1) return player.notify(StoreEn.ITEM_OUT_OF_STOCK); + if (item.count < 1) return player.notify('store:ITEM_OUT_OF_STOCK'); // Prevent buying more than store has stock. Default to max stock. count = item.count < count ? item.count : count; @@ -201,7 +202,7 @@ export default class Stores { let currency = player.inventory.getIndex(store.currency, item.price * count); // If no inventory slot index with currency is found, stop the purchase. - if (currency < 0) return player.notify(StoreEn.NOT_ENOUGH_CURRENCY); + if (currency < 0) return player.notify('store:NOT_ENOUGH_CURRENCY'); // Clone the item we are adding let itemToAdd = item.copy(); @@ -249,18 +250,22 @@ export default class Stores { if (!this.verifyStore(player, key)) return; // Ensure the count is correct. - if (count < 1) return player.notify(StoreEn.INVALID_ITEM_COUNT); + if (count < 1) return player.notify('store:INVALID_ITEM_COUNT'); let slot = player.inventory.get(index); // Ensure the item in the slot exists. if (slot.isEmpty()) - return log.warning(`[${player.username}] ${StoreEn.INVALID_ITEM_SELECTION}`); + return log.warning(`[${player.username}] ${t('store:INVALID_ITEM_SELECTION')}`); let store = this.stores[key]; + // If the store has a list of allowed items, ensure the item is allowed. + if (store.allowedItems && !store.allowedItems.includes(slot.key)) + return player.notify('store:RESTRICTED_ITEM'); + // Disable selling in restricted stores. - if (store.restricted) return player.notify(StoreEn.RESTRICTED_STORE); + if (store.restricted) return player.notify('store:RESTRICTED_STORE'); /** * Although a lot of these checks are similar to `select()` they are necessary @@ -268,7 +273,7 @@ export default class Stores { * project, is to be expected and frankly, quite reasonable. */ - if (slot.key === store.currency) return player.notify(StoreEn.CANNOT_SELL_ITEM); + if (slot.key === store.currency) return player.notify('store:CANNOT_SELL_ITEM'); // Temporary fix until we have a more suitable UI. ({ count } = slot); @@ -276,16 +281,17 @@ export default class Stores { // Find the item in the store if it exists. let item = player.inventory.getItem(slot), storeItem = store.items.find((item) => item.key === slot.key), - price = Math.ceil((storeItem ? storeItem.price : item.price) / 2) * count; // Use store price or item default. + price = storeItem?.price || item.price, // Price of the item being sold. + totalCoins = this.getTotalCost(count, price, storeItem?.count); // Amount of coins the player will be receiving. - // Items without prices (quest items) cannot be sold. - if (price < 0) return player.notify(StoreEn.CANNOT_SELL_ITEM); + // Total amount of coins is invalid, this shouldn't technically happen. + if (totalCoins < 0) return player.notify('store:CANNOT_SELL_ITEM'); player.inventory.remove(index, count); // Very weird if this somehow happened at this point in the code, I'd be curious to see how. - if (player.inventory.add(this.getCurrency(store.currency, price)) < 1) - return player.notify(StoreEn.NOT_ENOUGH_CURRENCY); + if (player.inventory.add(this.getCurrency(store.currency, totalCoins)) < 1) + return player.notify('store:NOT_ENOUGH_CURRENCY'); // Increment the item count or add to store only if the player isn't a cheater :) if (!player.isCheater() && !player.isHollowAdmin()) @@ -314,12 +320,12 @@ export default class Stores { // This shouldn't get called unless there is a bug or client was messed with. if (slot.isEmpty()) - return log.warning(`[${player.username}] ${StoreEn.INVALID_ITEM_SELECTION}`); + return log.warning(`[${player.username}] ${t('store:INVALID_ITEM_SELECTION')}`); let store = this.stores[key]; // Check that the player isn't trying to sell the currency to the store. - if (slot.key === store.currency) return player.notify(StoreEn.CANNOT_SELL_ITEM); + if (slot.key === store.currency) return player.notify('store:CANNOT_SELL_ITEM'); // Temporary fix until we have a more suitable UI. ({ count } = slot); @@ -327,13 +333,14 @@ export default class Stores { // Create an instance of an item and try to check if that item exists in the store. let item = player.inventory.getItem(slot), storeItem = store.items.find((item) => item.key === slot.key), - price = Math.ceil((storeItem ? storeItem.price : item.price) / 2) * count; // Use store price or item default. + price = storeItem?.price || item.price, // Price of the item being sold. + totalCoins = this.getTotalCost(count, price, storeItem?.count); // Amount of coins the player will be receiving. - // Items without prices (quest items) cannot be sold. - if (price < 1) return player.notify(StoreEn.CANNOT_SELL_ITEM); + // An invalid amount of coins was calculated, this shouldn't happen. + if (totalCoins < 1) return player.notify('store:CANNOT_SELL_ITEM'); // Invalid price, this shouldn't happen. - if (isNaN(price)) return log.error(`Malformed pricing for item selection.`); + if (isNaN(totalCoins)) return log.error(`Malformed pricing for item selection.`); log.stores( `Player ${player.username} sold ${count} ${item.key} for ${item.price * count} ${ @@ -349,7 +356,7 @@ export default class Stores { key: item.key, name: item.name, count, - price, + price: totalCoins, index } }) @@ -379,7 +386,7 @@ export default class Stores { private verifyStore(player: Player, storeKey: string): boolean { if (player.storeOpen !== storeKey) { - log.warning(`[${player.username}] ${StoreEn.ACTION_STORE_NOT_OPEN}`); + log.warning(`[${player.username}] ${t('store:ACTION_STORE_NOT_OPEN')}`); return false; } @@ -439,6 +446,42 @@ export default class Stores { return new Item(key, -1, -1, false, count); } + /** + * Uses a linear decrease in the price based on the amount of items in the store. Given + * the number of items that the player wants to sell, and the amount of items in the store + * we calculate how much currency the player will receive. + * @param count The amount of the item that the player is trying to sell. + * @param price The price of the item (either default or store price). + * @param storeCount The current amount of items in the store. + * @param limit The limit at which the stock reaches minimum price. + * @returns A total cost for each item. + */ + + private getTotalCost(count: number, price: number, storeCount = 0, limit = 10): number { + let totalCost = 0; + + // If there is more than 10 items then the total cost is 20% of the price. + if (storeCount > limit) return 0.2 * price * count; + + // Used to store value limits. + let remaining = count; + + // Iterate through the items and calculate the cost of each item. + for (let i = 0; i < count; i++) { + // Break after the tenth item since we'll reach the limit. + if (i > limit) break; + + totalCost += ((50 - 3 * Math.min(storeCount + i, limit)) / 100) * price; + + remaining--; + } + + // Add the remaining items at 20% of the price. + totalCost += 0.2 * price * remaining; + + return Math.floor(totalCost); + } + /** * Checks if the item is original stock of the store by comparing the * item's key against the store's JSON data. This is used to remove diff --git a/packages/server/src/controllers/warps.ts b/packages/server/src/controllers/warps.ts index f3ad6818ba..86248c5e11 100644 --- a/packages/server/src/controllers/warps.ts +++ b/packages/server/src/controllers/warps.ts @@ -1,16 +1,16 @@ -import { Modules } from '@kaetram/common/network'; import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; +import { Modules } from '@kaetram/common/network'; -import type { ProcessedArea } from '@kaetram/common/types/map'; -import type Player from '../game/entity/character/player/player'; import type World from '../game/world'; +import type Player from '../game/entity/character/player/player'; +import type { ProcessedArea } from '@kaetram/common/types/map'; export default class Warp { private warps: ProcessedArea[] = []; public lastWarp = 0; // The last time we warped to. - private warpTimeout = 300_000; // 30 seconds between using the warps. + private warpTimeout = 300_000; // 300 seconds between using the warps. public constructor(private world: World) { this.warps = this.world.map.warps; @@ -28,16 +28,19 @@ export default class Warp { public warp(player: Player, id: number): void { if (!this.warps) return; + // Prevent players from warping when they are jailed. + if (player.isJailed()) + return player.notify(`warps:CANNOT_WARP_JAIL;time=${player.getJailDuration()}`); + // Prevent warping outside the tutorial. - if (!player.quests.isTutorialFinished()) - return player.notify(`You must finish the tutorial before warping.`); + if (!player.quests.isTutorialFinished()) return player.notify('warps:CANNOT_WARP_TUTORIAL'); - if (player.inCombat()) - return player.notify(`You must wait 10 seconds after finishing combat to warp.`); + // Prevent warping while in combat. + if (player.inCombat()) return player.notify('warps:CANNOT_WARP_COMBAT'); // Prevent teleporting too often. if (!this.isCooldown(player)) - return player.notify(`You must wait another ${this.getDuration(player)} to warp.`); + return player.notify(`warps:CANNOT_WARP_COOLDOWN;time=${this.getDuration(player)}`); let warp = this.getWarp(id); @@ -62,7 +65,7 @@ export default class Warp { y = Utils.randomInt(warp.y, warp.y + warp.height - 1); player.teleport(x, y, true); - player.notify(`You have been warped to ${Utils.formatName(warp.name)}!`); + player.notify(`warps:WARPED_TO;name=${Utils.formatName(warp.name)}`); } /** @@ -97,7 +100,7 @@ export default class Warp { private hasRequirement(player: Player, warp: ProcessedArea): boolean { // Check if the warp has a level requirement. if (warp.level && player.level < warp.level) { - player.notify(`You must be level ${warp.level} to warp to ${warp.name}.`); + player.notify(`warps:CANNOT_WARP_LEVEL;level=${warp.level}`); return false; } @@ -107,7 +110,9 @@ export default class Warp { if (!quest?.isFinished()) { player.notify( - `You must complete ${quest.name} to warp to ${Utils.formatName(warp.name)}.` + `warps:CANNOT_WARP_QUEST;questName=${quest.name};name=${Utils.formatName( + warp.name + )}` ); return false; } @@ -115,7 +120,7 @@ export default class Warp { // Check if the warp has an achievement requirement. if (warp.achievement && !player.achievements.get(warp.achievement)?.isFinished()) { - player.notify(`This warp requires an achievement to be finished before use.`); + player.notify('warps:CANNOT_WARP_ACHIEVEMENT'); return false; } diff --git a/packages/server/src/game/entity/character/character.ts b/packages/server/src/game/entity/character/character.ts index f167da060e..2e5f7bf608 100644 --- a/packages/server/src/game/entity/character/character.ts +++ b/packages/server/src/game/entity/character/character.ts @@ -8,15 +8,16 @@ import Entity from '../entity'; import Formulas from '../../../info/formulas'; import Utils from '@kaetram/common/util/utils'; -import { PacketType } from '@kaetram/common/network/modules'; +import { Team } from '@kaetram/common/api/minigame'; import { Modules, Opcodes } from '@kaetram/common/network'; +import { PacketType } from '@kaetram/common/network/modules'; import { - Combat as CombatPacket, - Countdown, - Effect, - Movement, - Points, - Teleport + CombatPacket, + CountdownPacket, + EffectPacket, + MovementPacket, + PointsPacket, + TeleportPacket } from '@kaetram/common/network/impl'; import type World from '../../world'; @@ -65,9 +66,8 @@ export default abstract class Character extends Entity { public projectileName = 'arrow'; public lastStep = -1; - public lastMovement = -1; + public lastMovement = Date.now(); public lastRegionChange = -1; - public lastAttacker?: Character | undefined; private healingInterval?: NodeJS.Timeout | undefined; private effectInterval?: NodeJS.Timeout | undefined; @@ -109,7 +109,7 @@ export default abstract class Character extends Entity { private handleHitPoints(): void { // Sync the change in hitpoints to nearby entities. this.sendToRegions( - new Points({ + new PointsPacket({ instance: this.instance, hitPoints: this.hitPoints.getHitPoints(), maxHitPoints: this.hitPoints.getMaxHitPoints() @@ -127,7 +127,9 @@ export default abstract class Character extends Entity { // Synchronize the movement speed of the player when freezing applies. if (this.isPlayer() && effect === Modules.Effects.Freezing) this.sync(); - this.sendToRegions(new Effect(Opcodes.Effect.Add, { instance: this.instance, effect })); + this.sendToRegions( + new EffectPacket(Opcodes.Effect.Add, { instance: this.instance, effect }) + ); } /** @@ -146,7 +148,9 @@ export default abstract class Character extends Entity { if (this.inFreezingArea()) return this.status.add(Modules.Effects.Freezing); } - this.sendToRegions(new Effect(Opcodes.Effect.Remove, { instance: this.instance, effect })); + this.sendToRegions( + new EffectPacket(Opcodes.Effect.Remove, { instance: this.instance, effect }) + ); } /** @@ -348,26 +352,19 @@ export default abstract class Character extends Entity { }); } - /** - * Superclass empty method. - * @param x New x position. - * @param y New y position. - */ - - public move(x: number, y: number): void { - this.setPosition(x, y); - } - /** * When a character is on the same tile as another character and they are in a combat, * we use this function to move them near the other character. */ public findAdjacentTile(): void { - if (!this.world.map.isColliding(this.x + 1, this.y)) this.move(this.x + 1, this.y); - else if (!this.world.map.isColliding(this.x - 1, this.y)) this.move(this.x - 1, this.y); - else if (!this.world.map.isColliding(this.x, this.y + 1)) this.move(this.x, this.y + 1); - else if (!this.world.map.isColliding(this.x, this.y - 1)) this.move(this.x, this.y - 1); + if (!this.world.map.isColliding(this.x + 1, this.y)) this.setPosition(this.x + 1, this.y); + else if (!this.world.map.isColliding(this.x - 1, this.y)) + this.setPosition(this.x - 1, this.y); + else if (!this.world.map.isColliding(this.x, this.y + 1)) + this.setPosition(this.x, this.y + 1); + else if (!this.world.map.isColliding(this.x, this.y - 1)) + this.setPosition(this.x, this.y - 1); } /** @@ -439,7 +436,7 @@ export default abstract class Character extends Entity { if (!target && !this.hasTarget()) return; this.sendToRegions( - new Movement(Opcodes.Movement.Follow, { + new MovementPacket(Opcodes.Movement.Follow, { instance: this.instance, target: target?.instance || this.target!.instance }) @@ -457,7 +454,7 @@ export default abstract class Character extends Entity { this.setPosition(x, y, true); this.sendToRegions( - new Teleport({ + new TeleportPacket({ instance: this.instance, x, y, @@ -476,7 +473,7 @@ export default abstract class Character extends Entity { public countdown(time: number): void { this.sendToRegions( - new Countdown({ + new CountdownPacket({ instance: this.instance, time }) @@ -489,7 +486,7 @@ export default abstract class Character extends Entity { public stopMovement(): void { this.sendToRegions( - new Movement(Opcodes.Movement.Stop, { + new MovementPacket(Opcodes.Movement.Stop, { instance: this.instance }) ); @@ -789,6 +786,17 @@ export default abstract class Character extends Entity { return this.attackRange > 1; } + /** + * A default function for checking if the character is using bow attacks. Since mobs + * don't have such specification, we default to whether they're using ranged but not + * magic. + * @returns Whether or not the character is using a bow. + */ + + public isArcher(): boolean { + return this.isRanged() && !this.isMagic(); + } + /** * @returns Default implementation for characters. */ @@ -843,7 +851,7 @@ export default abstract class Character extends Entity { */ public isOnSameTile(): boolean { - return this.getDistance(this.target!) === 0; + return this.x === this.target?.x && this.y === this.target?.y; } /** @@ -867,8 +875,7 @@ export default abstract class Character extends Entity { protected canAttack(target: Character): boolean { // Prevent pets from being attacked. if (target.isPet()) { - if (this.isPlayer()) - this.notify(`Are you crazy? Are you out of your mind? Why would you attack a pet?`); + if (this.isPlayer()) this.notify('misc:CANNOT_ATTACK_PET'); return false; } @@ -876,7 +883,7 @@ export default abstract class Character extends Entity { if (target.isMob()) { // Restrict the mobs in tutorial from being attacked by the player. if (this.isPlayer() && !this.quests.canAttackInTutorial()) { - this.notify('You have no reason to attack these creatures.'); + this.notify('misc:CANNOT_ATTACK_MOB'); return false; } @@ -888,29 +895,40 @@ export default abstract class Character extends Entity { // Prevent cheaters from being targeted by other players. if (target.isCheater()) { - this.notify(`That player is a cheater, you don't wanna attack someone like that!`); + this.notify('misc:CANNOT_ATTACK_CHEATER'); return false; } // Prevent cheaters from starting a fight with other players. if (this.isCheater()) { - this.notify( - `Sorry but cheaters can't attack other players, that wouldn't be fair to them!` - ); + this.notify('misc:CANNOT_ATTACK_CHEATER_SELF'); return false; } - // Use minigame logic to determine if the players can attack each other. - if (this.inMinigame() && target.inMinigame()) return this.team !== target.team; + // Handle logic for in-minigame combat. + if (this.inMinigame()) { + if (this.team === Team.Prey) { + this.notify('misc:CANNOT_ATTACK_PREY'); + return false; + } + + if (this.team === Team.Hunter && target.instance !== this.coursingTarget) { + this.notify('misc:CANNOT_ATTACK_TARGET'); + return false; + } + + // Default implementation (used for team vs team minigames); + if (target.inMinigame()) return this.team !== target.team; + } // Prevent attacking in non-pvp areas. if (!this.pvp && !target.pvp) return false; // Prevent attacking when level difference is too great. if (Math.abs(this.level - target.level) > 30) { - this.notify('You cannot attack someone more than 30 levels above or below you.'); + this.notify('misc:CANNOT_ATTACK_LEVEL_DIFF'); return false; } diff --git a/packages/server/src/game/entity/character/combat/combat.ts b/packages/server/src/game/entity/character/combat/combat.ts index 9e504ca624..fb4c476f5b 100644 --- a/packages/server/src/game/entity/character/combat/combat.ts +++ b/packages/server/src/game/entity/character/combat/combat.ts @@ -4,7 +4,7 @@ import Formulas from '../../../../info/formulas'; import log from '@kaetram/common/util/log'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { Combat as CombatPacket, Spawn } from '@kaetram/common/network/impl'; +import { CombatPacket, SpawnPacket } from '@kaetram/common/network/impl'; import type Character from '../character'; @@ -12,6 +12,7 @@ export default class Combat { public started = false; public lastAttack = 0; + public lastFollow = 0; // The combat loop private loop?: NodeJS.Timeout | undefined; @@ -41,7 +42,7 @@ export default class Combat { if (this.loop) return; - this.loop = setInterval(this.handleLoop.bind(this), this.character.getAttackRate() / 2); + this.loop = setInterval(() => this.handleLoop(), this.character.getAttackRate() / 4); } /** @@ -74,7 +75,7 @@ export default class Combat { clearInterval(this.loop); - this.loop = setInterval(this.handleLoop.bind(this), this.character.getAttackRate() / 2); + this.loop = setInterval(() => this.handleLoop(), this.character.getAttackRate() / 4); } /** @@ -112,10 +113,21 @@ export default class Combat { */ private handleLoop(): void { - if (!this.character.hasTarget() || this.character.target?.isDead()) return this.stop(); - - // Do not attack while teleporting. - if (this.character.teleporting) return; + // No target or target is dead, stop combat. + if ( + !this.character.hasTarget() || + this.character.target?.isDead() || + this.character.teleporting + ) + return this.stop(); + + // Prevent combat loop from persisting during PVP flag changes. + if ( + this.character.isPlayer() && + this.character.target?.isPlayer() && + !this.character.target!.pvp + ) + return this.stop(); this.loopCallback?.(this.lastAttack); @@ -124,6 +136,8 @@ export default class Combat { if (this.character.isNearTarget()) { if (!this.canAttack()) return; + this.character.stopMovement(); + let hit = this.createHit(); this.sendAttack(hit); @@ -131,7 +145,20 @@ export default class Combat { this.lastAttack = Date.now(); this.attackCallback?.(); - } else this.character.follow(); + } else { + // Prevent follow spamming + if (Date.now() - this.lastFollow < 500) return; + + this.character.follow(); + this.lastFollow = Date.now(); + + if (this.shouldTeleportNearby()) + this.character.setPosition( + this.character.target!.x, + this.character.target!.y, + false + ); + } } /** @@ -141,7 +168,10 @@ export default class Combat { private checkTargetPosition(): void { if (!this.character.isOnSameTile()) return; - this.character.target!.findAdjacentTile(); + // Only move the character if it's a mob. + if (!this.character.isMob()) return; + + this.character.findAdjacentTile(); } /** @@ -186,7 +216,7 @@ export default class Combat { ); // Spawn the projectile in the game client. - this.character.sendToRegions(new Spawn(projectile)); + this.character.sendToRegions(new SpawnPacket(projectile)); } /** @@ -206,7 +236,10 @@ export default class Combat { damageType === Modules.Hits.Critical ), this.character.isRanged(), - this.character.getAoE() + this.character.getAoE(), + this.character.isMagic(), + this.character.isArcher(), + this.character.getAttackStyle() ); } @@ -228,6 +261,38 @@ export default class Combat { return Date.now() - this.lastAttack > 10_000; } + /** + * Checks whether or not both the player and the target are players and if the + * target is in a valid PVP zone in order to be attacked. + * @returns Whether or not the target is in a PVP zone. + */ + + public isPvp(): boolean { + return ( + this.character.isPlayer() && + !!this.character.target?.isPlayer() && + this.character.target?.pvp + ); + } + + /** + * Mob positions may not be updated if there is not a spectator and the player switches + * tabs. In this case we just teleport the mob next to the player. Because the lastMovement + * exceeds 5 seconds and the mob is still not nearby, we can conclude it's not able to + * move and we should teleport it. + * @returns Whether the character is a mob and it hasn't moved in the last 5 seconds. + */ + + private shouldTeleportNearby(): boolean { + if (!this.character.isMob()) return false; + + if (this.character.isStunned() || this.character.isDead()) return false; + + // Prevent teleporting when differences in plateau exist. + if (this.character.plateauLevel !== this.character.target?.plateauLevel) return false; + + return Date.now() - this.character.lastMovement > 5000; + } /** * Callback for when the combat starts. */ diff --git a/packages/server/src/game/entity/character/combat/hit.ts b/packages/server/src/game/entity/character/combat/hit.ts index 377dfa47a3..705227e7de 100644 --- a/packages/server/src/game/entity/character/combat/hit.ts +++ b/packages/server/src/game/entity/character/combat/hit.ts @@ -1,4 +1,5 @@ -import type { Modules } from '@kaetram/common/network'; +import { Modules } from '@kaetram/common/network'; + import type { HitData } from '@kaetram/common/types/info'; export default class Hit { @@ -6,7 +7,10 @@ export default class Hit { public type: Modules.Hits, private damage = 0, private ranged = false, - public aoe = 0 + public aoe = 0, + private magic = false, + private archery = false, + private attackStyle?: Modules.AttackStyle ) {} /** @@ -25,6 +29,51 @@ export default class Hit { return this.aoe > 0; } + /** + * @returns Whether or not the hit is ranged. + */ + + public getSkill(): string[] { + if (this.magic) return ['magic']; + + if (this.archery) return ['archery']; + + if (this.attackStyle !== Modules.AttackStyle.None) + switch (this.attackStyle) { + case Modules.AttackStyle.Stab: { + return ['accuracy']; + } + + case Modules.AttackStyle.Slash: { + return ['strength']; + } + + case Modules.AttackStyle.Defensive: { + return ['defense']; + } + + case Modules.AttackStyle.Crush: { + return ['accuracy', 'strength']; + } + + case Modules.AttackStyle.Shared: { + return ['accuracy', 'strength', 'defense']; + } + + case Modules.AttackStyle.Hack: { + return ['strength', 'defense']; + } + + case Modules.AttackStyle.Chop: { + return ['accuracy', 'defense']; + } + } + + if (this.type === Modules.Hits.Normal) return ['accuracy']; + + return []; + } + /** * Serializes the Hit object and converts * it into a JSON object. @@ -35,7 +84,8 @@ export default class Hit { type: this.type, damage: this.damage, ranged: this.ranged, - aoe: this.aoe + aoe: this.aoe, + skills: this.getSkill() }; } } diff --git a/packages/server/src/game/entity/character/effect/poison.ts b/packages/server/src/game/entity/character/effect/poison.ts index b587d2da78..61a1c65cac 100644 --- a/packages/server/src/game/entity/character/effect/poison.ts +++ b/packages/server/src/game/entity/character/effect/poison.ts @@ -12,7 +12,10 @@ export default class Poison { * @param start Epoch time of when the poison started. */ - public constructor(public type: Modules.PoisonTypes, public start = Date.now()) { + public constructor( + public type: Modules.PoisonTypes, + public start = Date.now() + ) { if (!this.start) this.start = Date.now(); this.name = Modules.PoisonInfo[this.type].name; diff --git a/packages/server/src/game/entity/character/effect/status.ts b/packages/server/src/game/entity/character/effect/status.ts index 5f8b1aa2fc..0331a7ea48 100644 --- a/packages/server/src/game/entity/character/effect/status.ts +++ b/packages/server/src/game/entity/character/effect/status.ts @@ -1,13 +1,36 @@ import { Modules } from '@kaetram/common/network'; +import type { Duration, SerializedDuration, SerializedEffects } from '@kaetram/common/types/status'; + export default class { private effects: Modules.Effects[] = []; - private timeouts: { [key: number]: NodeJS.Timeout } = {}; + private durations: { [key: number]: Duration } = {}; private addCallback?: (status: Modules.Effects) => void; private removeCallback?: (status: Modules.Effects) => void; + /** + * Loads the serialized status effects from the database and uses the start time + * relative to the duration of the effect to reinstantiate it if applicable. We use + * the calculated remaining time upon logging out to determine how long to set the + * timeout for. + * @param effects The list of serialized status effects from the database. + */ + + public load(effects: SerializedEffects): void { + console.log(effects); + + for (let type in effects) { + let effect = effects[type]; + + // Effect has already passed our current time, just ignore it. + if (effect.remainingTime < 100) continue; + + this.addWithTimeout(parseInt(type), effect.remainingTime); + } + } + /** * Adds a status effect to the character's list of effects if it has not * already been added. Effects can only be applied once. @@ -45,17 +68,22 @@ export default class { this.add(statusEffect); // Clear existing timeouts. - if (this.timeouts[statusEffect]) { - clearTimeout(this.timeouts[statusEffect]); - delete this.timeouts[statusEffect]; + if (this.durations[statusEffect]) { + clearTimeout(this.durations[statusEffect].timeout); + delete this.durations[statusEffect]; } - // Start a new timeout. - this.timeouts[statusEffect] = setTimeout(() => { - this.remove(statusEffect); - - callback?.(); - }, duration); + // Start a new effect duration handler. + this.durations[statusEffect] = { + // Begin the timeout and remove the status effect once it is up. + timeout: setTimeout(() => { + this.remove(statusEffect); + + callback?.(); + }, duration), + startTime: Date.now() - 1000, + duration + }; } /** @@ -67,6 +95,9 @@ export default class { for (let status of statusEffect) { this.effects = this.effects.filter((effect) => effect !== status); + // Remove the status effect from the list of durations. + if (this.durations[status]) delete this.durations[status]; + this.removeCallback?.(status); } } @@ -79,9 +110,9 @@ export default class { this.effects = []; // Clear all the timeouts. - for (let status in this.timeouts) { - clearTimeout(this.timeouts[status]); - delete this.timeouts[status]; + for (let status in this.durations) { + clearTimeout(this.durations[status].timeout); + delete this.durations[status]; } } @@ -102,7 +133,7 @@ export default class { */ public hasTimeout(status: Modules.Effects): boolean { - return !!this.timeouts[status]; + return !!this.durations[status]?.timeout; } /** @@ -116,6 +147,27 @@ export default class { return this.has(Modules.Effects.Freezing) && !this.hasTimeout(Modules.Effects.Freezing); } + /** + * Serializes the status effects for storing them into the database. + * This is to prevent people from logging out and back in to remove + * the status effects. + * @returns A serialized effects object containing all the currently active durations. + */ + + public serialize(): SerializedEffects { + let effects: SerializedEffects = {}; + + for (let status in this.durations) { + let duration = this.durations[status]; + + effects[status] = { + remainingTime: duration.startTime + duration.duration - Date.now() + } as SerializedDuration; + } + + return effects; + } + /** * Iterates through all the active status effects and executes the callback function. * @param callback Contains the status effect we are iterating through currently. diff --git a/packages/server/src/game/entity/character/mob/handler.ts b/packages/server/src/game/entity/character/mob/handler.ts index 80f7baf7df..a39004d689 100644 --- a/packages/server/src/game/entity/character/mob/handler.ts +++ b/packages/server/src/game/entity/character/mob/handler.ts @@ -1,12 +1,13 @@ import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import { Modules } from '@kaetram/common/network'; -import { Bubble } from '@kaetram/common/network/impl'; +import { BubblePacket } from '@kaetram/common/network/impl'; +import type Mob from './mob'; import type Map from '../../../map/map'; import type World from '../../../world'; import type Character from '../character'; -import type Mob from './mob'; +import type Player from '../player/player'; /** * The handler class file for the Mob object. We use this to better @@ -49,7 +50,13 @@ export default class Handler { */ // We double the roaming distance for the sake of combat. - if (this.mob.outsideRoaming(this.mob.target, this.mob.roamDistance * 2)) + if ( + this.mob.outsideRoaming( + this.mob.target?.x, + this.mob.target?.y, + this.mob.roamDistance * 2 + ) + ) if (this.mob.getAttackerCount() > 1) this.mob.setTarget(this.mob.findNearestTarget()); else this.mob.sendToSpawn(); } @@ -84,7 +91,11 @@ export default class Handler { [instance] = element, entity = this.world.entities.get(instance); - // Ignore non-player entities. + /** + * Ensure that the entity exists and that it's a player. Drops do not occur + * if the entity that kills the mob is non-existent (i.e. if killed via command.) + */ + if (!entity?.isPlayer()) continue; // Kill callback is sent to the player who dealt most amount of damage. @@ -93,7 +104,7 @@ export default class Handler { entity.killCallback?.(this.mob); // Drop the mob's loot and pass the owner's username. - this.mob.drop(entity.username); + this.mob.drop(entity as Player); } } @@ -178,7 +189,7 @@ export default class Handler { // Don't have mobs block a door. if (this.map.isDoor(newX, newY)) return; - this.mob.move(newX, newY); + this.mob.setPosition(newX, newY); } /** @@ -188,7 +199,7 @@ export default class Handler { protected handleTalk(text: string): void { this.mob.sendToRegions( - new Bubble({ + new BubblePacket({ instance: this.mob.instance, text }) diff --git a/packages/server/src/game/entity/character/mob/mob.ts b/packages/server/src/game/entity/character/mob/mob.ts index fb2cbc79ba..4dc917b49c 100644 --- a/packages/server/src/game/entity/character/mob/mob.ts +++ b/packages/server/src/game/entity/character/mob/mob.ts @@ -1,28 +1,34 @@ import MobHandler from './handler'; +import Character from '../character'; +import Item from '../../objects/item'; +import Formulas from '../../../../info/formulas'; import rawData from '../../../../../data/mobs.json'; +import Spawns from '../../../../../data/spawns.json'; import dropTables from '../../../../../data/tables.json'; import PluginIndex from '../../../../../data/plugins/mobs'; -import Spawns from '../../../../../data/spawns.json'; -import Formulas from '../../../../info/formulas'; -import Character from '../character'; import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { Heal, Movement } from '@kaetram/common/network/impl'; +import { HealPacket, MovementPacket, TeleportPacket } from '@kaetram/common/network/impl'; import { SpecialEntityTypes } from '@kaetram/common/network/modules'; -import type { EntityData, EntityDisplayInfo } from '@kaetram/common/types/entity'; -import type { Bonuses, Stats } from '@kaetram/common/types/item'; -import type { RawData, MobData } from '@kaetram/common/types/mob'; -import type DefaultPlugin from '../../../../../data/plugins/mobs/default'; import type Area from '../../../map/areas/area'; import type Areas from '../../../map/areas/areas'; import type World from '../../../world'; -import type Entity from '../../entity'; import type Chest from '../../objects/chest'; import type Player from '../player/player'; +import type DefaultPlugin from '../../../../../data/plugins/mobs/default'; +import type { Bonuses, Stats } from '@kaetram/common/types/item'; +import type { + RawMobData, + MobData, + MobSkills, + MobDrop, + MobDropTable +} from '@kaetram/common/types/mob'; +import type { EntityData, EntityDisplayInfo } from '@kaetram/common/types/entity'; interface ItemDrop { key: string; @@ -44,7 +50,7 @@ export default class Mob extends Character { public boss = false; public respawnable = true; public miniboss = false; - public roaming = false; + public roaming = true; // Roaming is true by default public poisonous = false; public freezing = false; public burning = false; @@ -57,26 +63,20 @@ export default class Mob extends Character { private defenseStats: Stats = Utils.getEmptyStats(); private bonuses: Bonuses = Utils.getEmptyBonuses(); - private drops: { [itemKey: string]: number } = {}; // Empty if not specified. - private dropTables: string[] = [ - 'ordinary', - 'arrows', - 'unusual', - 'shards', - 'fruits', - 'vegetables', - 'mushrooms' - ]; // Default drop table for all mobs. - - public health: number = Modules.MobDefaults.HEALTH_LEVEL; - public accuracy: number = Modules.MobDefaults.ACCURACY_LEVEL; - public strength: number = Modules.MobDefaults.STRENGTH_LEVEL; - public magic: number = Modules.MobDefaults.MAGIC_LEVEL; - public archery: number = Modules.MobDefaults.ARCHERY_LEVEL; - public defense = Modules.MobDefaults.DEFENSE_LEVEL; - public respawnDelay = Modules.MobDefaults.RESPAWN_DELAY; // Use default spawn delay if not specified. - public aggroRange = Modules.MobDefaults.AGGRO_RANGE; - public roamDistance = Modules.MobDefaults.ROAM_DISTANCE; + private drops: MobDrop[] = []; + private dropTables: string[] = []; + + private skills: MobSkills = { + accuracy: Modules.MobDefaults.ACCURACY_LEVEL, + strength: Modules.MobDefaults.STRENGTH_LEVEL, + defense: Modules.MobDefaults.DEFENSE_LEVEL, + magic: Modules.MobDefaults.MAGIC_LEVEL, + archery: Modules.MobDefaults.ARCHERY_LEVEL + }; + + public respawnDelay: number = Modules.MobDefaults.RESPAWN_DELAY; // Use default spawn delay if not specified. + public aggroRange: number = Modules.MobDefaults.AGGRO_RANGE; + public roamDistance: number = Modules.MobDefaults.ROAM_DISTANCE; private handler?: MobHandler | DefaultPlugin; @@ -93,7 +93,7 @@ export default class Mob extends Character { this.spawnX = this.x; this.spawnY = this.y; - this.data = (rawData as RawData)[key]; + this.data = (rawData as RawMobData)[key]; if (!this.data) { log.error(`[Mob] Could not find data for ${key}.`); @@ -103,7 +103,6 @@ export default class Mob extends Character { this.loadData(this.data); this.loadPlugin(plugin ? key : this.data.plugin!); // plugin boolean is used to load plugin based on key. this.loadSpawns(); - this.loadStats(); if (!this.handler) log.error(`[Mob] Mob handler for ${key} is not initialized.`); } @@ -123,15 +122,10 @@ export default class Mob extends Character { this.drops = data.drops || this.drops; this.dropTables = data.dropTables || this.dropTables; this.level = data.level || this.level; - this.health = data.health || this.health; - this.accuracy = data.accuracy || this.accuracy; - this.strength = data.strength || this.strength; - this.magic = data.magic || this.magic; - this.archery = data.archery || this.magic; + this.skills = data.skills || this.skills; this.attackStats = data.attackStats || this.attackStats; this.defenseStats = data.defenseStats || this.defenseStats; this.bonuses = data.bonuses || this.bonuses; - this.defense = data.defense || this.defense; this.attackRange = data.attackRange || this.attackRange; this.aggroRange = data.aggroRange || this.aggroRange; this.aggressive = data.aggressive || this.aggressive; @@ -149,7 +143,7 @@ export default class Mob extends Character { this.projectileName = data.projectileName || this.projectileName; this.roamDistance = data.roamDistance || this.roamDistance; this.healRate = data.healRate || this.healRate; - this.roaming = data.roaming || this.roaming; + this.roaming = data.roaming === undefined ? this.roaming : data.roaming; this.plateauLevel = this.world.map.getPlateauLevel(this.spawnX, this.spawnY); @@ -204,35 +198,6 @@ export default class Mob extends Character { if (data.plugin) this.loadPlugin(data.plugin); } - /** - * Loads the attack, defense stats, and the bonuses for the mob. - */ - - private loadStats(): void { - this.attackStats = { - crush: this.attackStats.crush, - stab: this.attackStats.stab, - slash: this.attackStats.slash, - archery: this.attackStats.archery, - magic: this.attackStats.magic - }; - - this.defenseStats = { - crush: this.defenseStats.crush, - stab: this.defenseStats.stab, - slash: this.defenseStats.slash, - archery: this.defenseStats.archery, - magic: this.defenseStats.magic - }; - - this.bonuses = { - accuracy: this.bonuses.accuracy, - strength: this.bonuses.strength, - archery: this.bonuses.archery, - magic: this.bonuses.magic - }; - } - /** * An override for the `heal` function which adds support for heal packet. * @param amount Amount we are healing the mob by. @@ -248,7 +213,7 @@ export default class Mob extends Character { // Send the heal packet to the nearby regions. this.sendToRegions( - new Heal({ + new HealPacket({ instance: this.instance, type, amount @@ -273,7 +238,7 @@ export default class Mob extends Character { this.respawn(); this.setPoison(); - this.setPosition(this.spawnX, this.spawnY); + this.setPosition(this.spawnX, this.spawnY, false); } /** @@ -289,17 +254,68 @@ export default class Mob extends Character { /** * Handles the dropping of items from the mob. - * @param owner The leading attacker in the mob's death. Only they will be able - * to pick up the drop for a certain period of time. + * @param player The leading player who dealt the most damage. */ - public drop(owner = ''): void { - let drops = this.getDrops(); + public drop(player: Player): void { + let drops = this.getDrops(player); + // No drops were calculated, so we stop here. if (drops.length === 0) return; - for (let drop of drops) - this.world.entities.spawnItem(drop.key, this.x, this.y, true, drop.count, {}, owner); + // If it's a single drop, drop only the item. + if (drops.length === 1) { + this.world.entities.spawnItem( + drops[0].key, + this.x, + this.y, + true, + drops[0].count, + {}, + player.username + ); + return; + } + + /** + * If we have more than two items in our drops list, then we must + * create a lootbag. First we turn all the ItemDrop types into actual + * item objects, we add those items to the lootbag alongside with spawning it. + */ + + let items: Item[] = []; + + // Create the item objects from the ItemDrop types. + for (let drop of drops) items.push(new Item(drop.key, -1, -1, false, drop.count)); + + // Spawn the loot bag. + this.world.entities.spawnLootBag(this.x, this.y, player.username, items); + } + + /** + * Override for the teleport functionality with added support for stopping + * all additional packets from being sent to the regions. + * @param x The x grid coordinate. + * @param y The y grid coordinate. + * @param withAnimation Whether or not to teleport with an animation. + */ + + public override teleport(x: number, y: number, withAnimation = false): void { + this.setPosition(x, y, false); + + this.teleporting = true; + + this.sendToRegions( + new TeleportPacket({ + instance: this.instance, + x, + y, + withAnimation + }) + ); + + // Untoggle the teleporting flag after 500ms. + setTimeout(() => (this.teleporting = false), 500); } /** @@ -307,21 +323,27 @@ export default class Mob extends Character { * to all the adjacent regions. * @param x The new x position of the mob. * @param y The new y position of the mob. + * @param withPacket Whether or not to send the movement packet. */ - public override move(x: number, y: number): void { - this.setPosition(x, y); + public override setPosition(x: number, y: number, withPacket = true): void { + if (this.teleporting) return; + + super.setPosition(x, y); this.calculateOrientation(); - this.world.push(Modules.PacketType.Regions, { - region: this.region, - packet: new Movement(Opcodes.Movement.Move, { - instance: this.instance, - x, - y - }) - }); + if (withPacket) + this.world.push(Modules.PacketType.Regions, { + region: this.region, + packet: new MovementPacket(Opcodes.Movement.Move, { + instance: this.instance, + x, + y + }) + }); + + this.lastMovement = Date.now(); } /** @@ -330,36 +352,46 @@ export default class Mob extends Character { * drop chance. We add the item to the list if the roll is successful. We continue * by looking through the mob's drop tables and doing the same thing. We then * return the list of items that the mob will drop. + * @param player Theplayer entity that we use to determine what drops we can use. * @returns A list of items that the mob will drop. */ - public getDrops(): ItemDrop[] { + public getDrops(player: Player): ItemDrop[] { let drops: ItemDrop[] = [], // The items that the mob will drop - randomItem = this.getRandomItem(this.drops); + randomItem = this.getRandomItem(this.drops, player); // Add a random item from the mob's personal list of drops. if (randomItem) drops.push(randomItem); // Add items from the mob's drop table. - drops = [...drops, ...this.getDropTableItems()]; + drops = [...drops, ...this.getDropTableItems(player)]; return drops; } /** * Looks through the drop tables of the mob and iterates through those to get items. + * @param player The player entity that killed the mob. Used for determining whether or + * not we can use the drop table. * @returns List of items from the drop table. */ - private getDropTableItems(): ItemDrop[] { + private getDropTableItems(player: Player): ItemDrop[] { let drops: ItemDrop[] = []; for (let key of Object.values(this.dropTables)) { - let table = dropTables[key as keyof typeof dropTables]; // Pick the table from the list of drop tables. + let table: MobDropTable = dropTables[key as keyof typeof dropTables]; // Pick the table from the list of drop tables. + + // Player doesn't have the achievement for the drop table completed. + if (table.achievement && !player.achievements.get(table.achievement)?.isFinished()) + continue; + + // Player doesn't have the quest completed to have access to the drop table. + if (table.quest && !player.quests.get(table.quest)?.isFinished()) continue; // Something went wrong. if (table) { - let randomItem = this.getRandomItem(table); + let randomItem = this.getRandomItem(table.drops, player); // Add a random item from the table. if (randomItem) drops.push(randomItem); @@ -374,20 +406,18 @@ export default class Mob extends Character { * a random item then roll that item's chance against the overall drop chance. We return * the item if the roll is successful, otherwise undefined. * @param items The list of items to pick from. + * @param player The player we are trying to get the item drop for. * @returns Returns an `ItemDrop` object containing the key and the count. */ - private getRandomItem(items: { [key: string]: number }): ItemDrop | undefined { - let keys = Object.keys(items); - + private getRandomItem(items: MobDrop[], player: Player): ItemDrop | undefined { // No items to pick from. - if (keys.length === 0) return undefined; + if (items.length === 0) return undefined; - let key = keys[Utils.randomInt(0, keys.length - 1)], - drop = items[key], - count = 1; + let drop = items[Utils.randomInt(0, items.length - 1)], + count = drop.count || 1; - switch (key) { + switch (drop.key) { case 'gold': { count = Utils.randomInt(this.level, this.level * 10); break; @@ -414,6 +444,14 @@ export default class Mob extends Character { } } + // Drop a varying amount depending on the variable property. + if (drop.variable) count = Utils.randomInt(1, count!); + + // Check for quest/achievement requirements. + if (drop.quest && !this.fullfillsQuest(player, drop)) return undefined; + if (drop.achievement && !player.achievements.get(drop.achievement)?.isFinished()) + return undefined; + // Something went wrong when trying to get the item drop. if (!drop) { log.warning(`Mob ${this.key} has an invalid drop.`); @@ -423,9 +461,9 @@ export default class Mob extends Character { let probability = this.world.getDropProbability(); // If the chance is greater than the drop probability, we adjust the drop - if (drop > probability) drop = probability; + if (drop.chance > probability) drop.chance = probability; - return Utils.randomInt(0, probability) < drop ? { key, count } : undefined; + return Utils.randomInt(0, probability) < drop.chance ? { key: drop.key, count } : undefined; } /** @@ -505,22 +543,20 @@ export default class Mob extends Character { public sendToSpawn(): void { this.combat.stop(); - this.move(this.spawnX, this.spawnY); + this.setPosition(this.spawnX, this.spawnY); } /** * Checks if the distance between the mob's current position and the spawn * point is greater than the roam distance. - * @param entity Optional parameter to check against the entity. + * @param x Optional parameter to specify custom x coordinate. We use this if provided. + * @param y Optional parameter to specify custom y coordinate. * @param distance Optional parameter to specify custom distance (used for combat). * @returns Whether or not the mob should return to the spawn. */ - public outsideRoaming(entity?: Entity, distance = this.roamDistance): boolean { - return ( - Utils.getDistance(entity?.x || this.x, entity?.y || this.y, this.spawnX, this.spawnY) > - distance - ); + public outsideRoaming(x?: number, y?: number, distance = this.roamDistance): boolean { + return Utils.getDistance(x || this.x, y || this.y, this.spawnX, this.spawnY) > distance; } /** @@ -597,6 +633,34 @@ export default class Mob extends Character { return false; } + /** + * Checks whether or not the player fullfills the quest requirements + * and the status provided by the mob drop. + * @param player The player entity that we are checking. + * @param drop The mob drop that we are checking. + */ + + private fullfillsQuest(player: Player, drop: MobDrop): boolean { + if (drop.status) + switch (drop.status) { + // Drop only available before the quest. + case 'notstarted': { + return !player.quests.get(drop.quest!)?.isStarted(); + } + + // Started but hasn't finished (during the quest). + case 'started': { + return ( + player.quests.get(drop.quest!)?.isStarted() && + !player.quests.get(drop.quest!)?.isFinished() + ); + } + } + + // Just check if quest is finished by default. Drop is only available after the quest. + return player.quests.get(drop.quest!)?.isFinished(); + } + /** * If the attack range is greater than 1, then the mob * is a ranged entity. @@ -692,7 +756,7 @@ export default class Mob extends Character { */ public override getAccuracyLevel(): number { - return this.accuracy; + return this.skills.accuracy; } /** @@ -702,7 +766,7 @@ export default class Mob extends Character { */ public override getStrengthLevel(): number { - return this.strength; + return this.skills.strength; } /** @@ -712,7 +776,7 @@ export default class Mob extends Character { */ public override getArcheryLevel(): number { - return this.archery; + return this.skills.archery; } /** @@ -722,7 +786,7 @@ export default class Mob extends Character { */ public override getDefenseLevel(): number { - return this.defense; + return this.skills.defense; } /** @@ -738,6 +802,16 @@ export default class Mob extends Character { return this.damageType; } + /** + * Checks whether the mob has a magic attack in its attack stats and whether + * it is using projectile based attacks. + * @return Whether or not the mob is a magic projectile based entity. + */ + + public override isMagic(): boolean { + return this.isRanged() && this.attackStats.magic > 0; + } + /** * Callback for when the mob respawns. */ diff --git a/packages/server/src/game/entity/character/pet/handler.ts b/packages/server/src/game/entity/character/pet/handler.ts deleted file mode 100644 index edda4f829a..0000000000 --- a/packages/server/src/game/entity/character/pet/handler.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type Pet from './pet'; - -export default class Handler { - public constructor(protected pet: Pet) { - //this.pet.onMovement(this.handleMovement.bind(this)); - } -} diff --git a/packages/server/src/game/entity/character/pet/pet.ts b/packages/server/src/game/entity/character/pet/pet.ts index 8b2bdd05f1..26ea1e3514 100644 --- a/packages/server/src/game/entity/character/pet/pet.ts +++ b/packages/server/src/game/entity/character/pet/pet.ts @@ -1,5 +1,3 @@ -import Handler from './handler'; - import Character from '../character'; import Utils from '@kaetram/common/util/utils'; @@ -9,12 +7,13 @@ import type Player from '../player/player'; import type { PetData } from '@kaetram/common/types/pet'; export default class Pet extends Character { - private handler: Handler; - - public constructor(public owner: Player, key: string, x = owner.x, y = owner.y) { + public constructor( + public owner: Player, + key: string, + x = owner.x, + y = owner.y + ) { super(Utils.createInstance(Modules.EntityType.Pet), owner.world, key, x, y); - - this.handler = new Handler(this); } /** diff --git a/packages/server/src/game/entity/character/player/abilities.ts b/packages/server/src/game/entity/character/player/abilities.ts index 4fa808a972..0f87355cb0 100644 --- a/packages/server/src/game/entity/character/player/abilities.ts +++ b/packages/server/src/game/entity/character/player/abilities.ts @@ -2,9 +2,9 @@ import AbilitiesIndex from './ability/impl/index'; import log from '@kaetram/common/util/log'; import { Opcodes } from '@kaetram/common/network'; -import { Ability as AbilityPacket } from '@kaetram/common/network/impl'; +import { AbilityPacket } from '@kaetram/common/network/impl'; -import type { AbilityData, SerializedAbility } from '@kaetram/common/types/ability'; +import type { AbilityData, SerializedAbility } from '@kaetram/common/network/impl/ability'; import type Ability from './ability/ability'; import type Player from './player'; diff --git a/packages/server/src/game/entity/character/player/ability/ability.ts b/packages/server/src/game/entity/character/player/ability/ability.ts index e22bd2510a..e148d58d11 100644 --- a/packages/server/src/game/entity/character/player/ability/ability.ts +++ b/packages/server/src/game/entity/character/player/ability/ability.ts @@ -3,20 +3,24 @@ import Data from '../../../../../../data/abilities.json'; import { Modules } from '@kaetram/common/network'; import log from '@kaetram/common/util/log'; -import type { AbilityData, RawAbility } from '@kaetram/common/types/ability'; +import type { AbilityData, RawAbility, RawAbilityData } from '@kaetram/common/network/impl/ability'; import type Player from '../player'; type DeactivateCallback = (player: Player) => void; type UpdateCallback = (key: string, level: number, quickSlot: number) => void; export default class Ability { - private data: RawAbility; + private data: RawAbilityData; private lastActivated = 0; private deactivateCallback?: DeactivateCallback; private updateCallback?: UpdateCallback; - public constructor(public key: string, private level = 1, private quickSlot = -1) { + public constructor( + public key: string, + private level = 1, + private quickSlot = -1 + ) { this.data = (Data as RawAbility)[this.key]; } @@ -45,17 +49,15 @@ export default class Ability { // Player doesn't have enough mana. if (player.mana.getMana() < mana) { - player.notify('You do not have enough mana to use this ability.'); + player.notify('misc:NOT_ENOUGH_MANA'); return false; } + let formattedDuration = Math.floor((cooldown - (Date.now() - this.lastActivated)) / 1000); + // Ensure the ability is not on cooldown. if (this.isCooldown(cooldown)) { - player.notify( - `You need to wait ${Math.floor( - (cooldown - (Date.now() - this.lastActivated)) / 1000 - )} seconds before using this ability again.` - ); + player.notify(`misc:NEED_WAIT_ABILITY;duration=${formattedDuration}`); return false; } diff --git a/packages/server/src/game/entity/character/player/ability/impl/hotshot.ts b/packages/server/src/game/entity/character/player/ability/impl/hotshot.ts index a0b5d0fb22..5fba37d90f 100644 --- a/packages/server/src/game/entity/character/player/ability/impl/hotshot.ts +++ b/packages/server/src/game/entity/character/player/ability/impl/hotshot.ts @@ -15,7 +15,7 @@ export default class HotShot extends Ability { public override activate(player: Player): boolean { if (!player.hasTarget()) { - player.notify(`You must be in combat to use this ability.`); + player.notify(`misc:NEED_COMBAT`); return false; } diff --git a/packages/server/src/game/entity/character/player/ability/impl/intimidate.ts b/packages/server/src/game/entity/character/player/ability/impl/intimidate.ts index c702e9bfad..c405a916cb 100644 --- a/packages/server/src/game/entity/character/player/ability/impl/intimidate.ts +++ b/packages/server/src/game/entity/character/player/ability/impl/intimidate.ts @@ -15,7 +15,7 @@ export default class Intimidate extends Ability { public override activate(player: Player): boolean { if (!player.hasTarget()) { - player.notify(`You must be in combat to use this ability.`); + player.notify(`misc:NEED_COMBAT`); return false; } diff --git a/packages/server/src/game/entity/character/player/ability/impl/precognition.ts b/packages/server/src/game/entity/character/player/ability/impl/precognition.ts index c4d83f84d5..08097eb623 100644 --- a/packages/server/src/game/entity/character/player/ability/impl/precognition.ts +++ b/packages/server/src/game/entity/character/player/ability/impl/precognition.ts @@ -15,7 +15,7 @@ export default class Precognition extends Ability { public override activate(player: Player): boolean { if (!player.hasTarget()) { - player.notify(`You must be in combat to use this ability.`); + player.notify(`misc:NEED_COMBAT`); return false; } diff --git a/packages/server/src/game/entity/character/player/ability/impl/secretcalling.ts b/packages/server/src/game/entity/character/player/ability/impl/secretcalling.ts index c52b9f8ced..be5ef78075 100644 --- a/packages/server/src/game/entity/character/player/ability/impl/secretcalling.ts +++ b/packages/server/src/game/entity/character/player/ability/impl/secretcalling.ts @@ -15,7 +15,7 @@ export default class SecretCalling extends Ability { public override activate(player: Player): boolean { if (!player.hasTarget()) { - player.notify(`You must be in combat to use this ability.`); + player.notify(`misc:NEED_COMBAT`); return false; } diff --git a/packages/server/src/game/entity/character/player/achievement/achievement.ts b/packages/server/src/game/entity/character/player/achievement/achievement.ts index 6213e197a8..3f264cf100 100644 --- a/packages/server/src/game/entity/character/player/achievement/achievement.ts +++ b/packages/server/src/game/entity/character/player/achievement/achievement.ts @@ -2,7 +2,7 @@ import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import type { Modules } from '@kaetram/common/network'; -import type { AchievementData, RawAchievement } from '@kaetram/common/types/achievement'; +import type { AchievementData, RawAchievement } from '@kaetram/common/network/impl/achievement'; import type { PopupData } from '@kaetram/common/types/popup'; import type NPC from '../../../npc/npc'; import type Mob from '../../mob/mob'; @@ -31,6 +31,7 @@ type KillCallback = (mob: Mob) => void; export default class Achievement { public name = ''; private description = ''; + private region = ''; private hidden = false; public secret = false; private stage = 0; // Current stage of the achievement. @@ -55,10 +56,14 @@ export default class Achievement { public talkCallback?: TalkCallback; public killCallback?: KillCallback; - public constructor(private key: string, rawData: RawAchievement) { + public constructor( + private key: string, + rawData: RawAchievement + ) { // Load all the data from the raw information. this.name = rawData.name; this.description = rawData.description || ''; + this.region = rawData.region || ''; this.hidden = !!rawData.hidden; this.secret = !!rawData.secret; this.npc = rawData.npc || ''; @@ -298,7 +303,8 @@ export default class Achievement { return { title: 'Achievement Completed!', text, - colour: '#33cc33' + colour: '#33cc33', + soundEffect: 'achievement' }; } @@ -319,9 +325,10 @@ export default class Achievement { if (withInfo) { data.name = this.getName(); data.description = this.getDescription(); + data.region = this.region; data.stageCount = this.stageCount; - // Only send secret achievement information if the achievemnet is secret. + // Only send secret achievement information if the achievement is secret. if (this.secret) data.secret = this.secret; } diff --git a/packages/server/src/game/entity/character/player/achievements.ts b/packages/server/src/game/entity/character/player/achievements.ts index 0a491df968..95df4dbcfa 100644 --- a/packages/server/src/game/entity/character/player/achievements.ts +++ b/packages/server/src/game/entity/character/player/achievements.ts @@ -4,10 +4,13 @@ import achievements from '../../../../../data/achievements.json'; import Item from '../../objects/item'; import { Opcodes } from '@kaetram/common/network'; -import { Achievement as AchievementPacket } from '@kaetram/common/network/impl'; +import { AchievementPacket } from '@kaetram/common/network/impl'; import type { Modules } from '@kaetram/common/network'; -import type { AchievementData, SerializedAchievement } from '@kaetram/common/types/achievement'; +import type { + AchievementData, + SerializedAchievement +} from '@kaetram/common/network/impl/achievement'; import type { PopupData } from '@kaetram/common/types/popup'; import type NPC from '../../npc/npc'; import type Mob from '../mob/mob'; @@ -121,7 +124,7 @@ export default class Achievements { */ private handlePopup(popup: PopupData): void { - this.player.popup(popup.title, popup.text, popup.colour); + this.player.popup(popup.title, popup.text, popup.colour, popup.soundEffect); } /** diff --git a/packages/server/src/game/entity/character/player/containers/container.ts b/packages/server/src/game/entity/character/player/containers/container.ts index 6bfd376750..461e6a1979 100644 --- a/packages/server/src/game/entity/character/player/containers/container.ts +++ b/packages/server/src/game/entity/character/player/containers/container.ts @@ -5,8 +5,8 @@ import Item from '../../../objects/item'; import log from '@kaetram/common/util/log'; import type { Modules } from '@kaetram/common/network'; -import type { ContainerItem, Enchantments } from '@kaetram/common/types/item'; import type { SlotData } from '@kaetram/common/types/slot'; +import type { ContainerItem, Enchantments } from '@kaetram/common/types/item'; interface SerializedContainer { slots: SlotData[]; @@ -33,7 +33,10 @@ export default abstract class Container { protected removeCallback?: RemoveCallback; protected notifyCallback?: NotifyCallback; - public constructor(public type: Modules.ContainerType, public size: number) { + public constructor( + public type: Modules.ContainerType, + public size: number + ) { // Create `size` amount of slots with empty data. for (let i = 0; i < size; i++) this.slots.push(new Slot(i)); } diff --git a/packages/server/src/game/entity/character/player/containers/impl/bank.ts b/packages/server/src/game/entity/character/player/containers/impl/bank.ts index 99747f2ae1..dc54b61c91 100644 --- a/packages/server/src/game/entity/character/player/containers/impl/bank.ts +++ b/packages/server/src/game/entity/character/player/containers/impl/bank.ts @@ -1,7 +1,7 @@ import Container from '../container'; -import { Modules } from '@kaetram/common/network'; import BankEn from '@kaetram/common/text/en/bank'; +import { Modules } from '@kaetram/common/network'; import type Item from '../../../../objects/item'; diff --git a/packages/server/src/game/entity/character/player/containers/impl/inventory.ts b/packages/server/src/game/entity/character/player/containers/impl/inventory.ts index 65e12f8614..4d4402de17 100644 --- a/packages/server/src/game/entity/character/player/containers/impl/inventory.ts +++ b/packages/server/src/game/entity/character/player/containers/impl/inventory.ts @@ -1,10 +1,10 @@ import Container from '../container'; -import { Modules } from '@kaetram/common/network'; import InventoryEn from '@kaetram/common/text/en/inventory'; +import { Modules } from '@kaetram/common/network'; -import type { SlotData } from '@kaetram/common/types/slot'; import type Item from '../../../../objects/item'; +import type { SlotData } from '@kaetram/common/types/slot'; export default class Inventory extends Container { public constructor(size: number) { diff --git a/packages/server/src/game/entity/character/player/containers/slot.ts b/packages/server/src/game/entity/character/player/containers/slot.ts index da83e79545..ca0dc57cf4 100644 --- a/packages/server/src/game/entity/character/player/containers/slot.ts +++ b/packages/server/src/game/entity/character/player/containers/slot.ts @@ -36,7 +36,7 @@ export default class Slot { public update(item: Item, stackSize = item.maxStackSize): void { if (!item.exists) - return log.trace(`Item doesn't exist: ${item.key}, deleting from existence.`); + return log.info(`Item doesn't exist: ${item.key}, deleting from existence.`); this.key = item.key; this.count = Math.min(item.count, stackSize); diff --git a/packages/server/src/game/entity/character/player/equipment/equipment.ts b/packages/server/src/game/entity/character/player/equipment/equipment.ts index f0fbd3169b..21a9c319fe 100644 --- a/packages/server/src/game/entity/character/player/equipment/equipment.ts +++ b/packages/server/src/game/entity/character/player/equipment/equipment.ts @@ -8,8 +8,8 @@ import Utils from '@kaetram/common/util/utils'; import type Item from '../../../objects/item'; import type { Modules } from '@kaetram/common/network'; -import type { EquipmentData } from '@kaetram/common/types/equipment'; -import type { Bonuses, Enchantments, Stats } from '@kaetram/common/types/item'; +import type { Bonuses, Enchantments, Light, Stats } from '@kaetram/common/types/item'; +import type { EquipmentData } from '@kaetram/common/network/impl/equipment'; export default class Equipment { // Properties @@ -19,6 +19,8 @@ export default class Equipment { public burning = false; public movementModifier = -1; + public light: Light = {}; + // Stats public attackStats: Stats = Utils.getEmptyStats(); public defenseStats: Stats = Utils.getEmptyStats(); @@ -69,6 +71,8 @@ export default class Equipment { this.burning = false; this.movementModifier = -1; + this.light = {}; + this.attackStats = Utils.getEmptyStats(); this.defenseStats = Utils.getEmptyStats(); this.bonuses = Utils.getEmptyBonuses(); diff --git a/packages/server/src/game/entity/character/player/equipment/impl/skin.ts b/packages/server/src/game/entity/character/player/equipment/impl/armourskin.ts similarity index 57% rename from packages/server/src/game/entity/character/player/equipment/impl/skin.ts rename to packages/server/src/game/entity/character/player/equipment/impl/armourskin.ts index 03cf0facc2..4a43e996fe 100644 --- a/packages/server/src/game/entity/character/player/equipment/impl/skin.ts +++ b/packages/server/src/game/entity/character/player/equipment/impl/armourskin.ts @@ -2,8 +2,8 @@ import Equipment from '../equipment'; import { Modules } from '@kaetram/common/network'; -export default class Skin extends Equipment { +export default class ArmourSkin extends Equipment { public constructor(key = '', count = -1) { - super(Modules.Equipment.Skin, key, count); + super(Modules.Equipment.ArmourSkin, key, count); } } diff --git a/packages/server/src/game/entity/character/player/equipment/impl/cape.ts b/packages/server/src/game/entity/character/player/equipment/impl/cape.ts new file mode 100644 index 0000000000..bcb1484d25 --- /dev/null +++ b/packages/server/src/game/entity/character/player/equipment/impl/cape.ts @@ -0,0 +1,11 @@ +import Equipment from '../equipment'; + +import { Modules } from '@kaetram/common/network'; + +import type { Enchantments } from '@kaetram/common/types/item'; + +export default class Cape extends Equipment { + public constructor(key = '', count = -1, enchantments: Enchantments = {}) { + super(Modules.Equipment.Cape, key, count, enchantments); + } +} diff --git a/packages/server/src/game/entity/character/player/equipment/impl/legs.ts b/packages/server/src/game/entity/character/player/equipment/impl/legplates.ts similarity index 80% rename from packages/server/src/game/entity/character/player/equipment/impl/legs.ts rename to packages/server/src/game/entity/character/player/equipment/impl/legplates.ts index 60b73c89cb..e514049fec 100644 --- a/packages/server/src/game/entity/character/player/equipment/impl/legs.ts +++ b/packages/server/src/game/entity/character/player/equipment/impl/legplates.ts @@ -5,9 +5,9 @@ import { Modules } from '@kaetram/common/network'; import type { Enchantments } from '@kaetram/common/types/item'; import type Item from '../../../../objects/item'; -export default class Legs extends Equipment { +export default class Legplates extends Equipment { public constructor(key = '', count = -1, enchantments: Enchantments = {}) { - super(Modules.Equipment.Legs, key, count, enchantments); + super(Modules.Equipment.Legplates, key, count, enchantments); } /** diff --git a/packages/server/src/game/entity/character/player/equipment/impl/shield.ts b/packages/server/src/game/entity/character/player/equipment/impl/shield.ts new file mode 100644 index 0000000000..0f7ddd0abd --- /dev/null +++ b/packages/server/src/game/entity/character/player/equipment/impl/shield.ts @@ -0,0 +1,40 @@ +import Equipment from '../equipment'; + +import { Modules } from '@kaetram/common/network'; + +import type Item from '../../../../objects/item'; +import type { Enchantments } from '@kaetram/common/types/item'; +import type { EquipmentData } from '@kaetram/common/network/impl/equipment'; + +export default class Shield extends Equipment { + public constructor(key = '', count = -1, enchantments: Enchantments = {}) { + super(Modules.Equipment.Shield, key, count, enchantments); + } + + /** + * Override for the update function to include the light property + * of the item the player is equipping. + * @param item The item object the player wants to equip. + */ + + public override update(item: Item): void { + super.update(item); + + this.light = item.light; + } + + /** + * Override for the serialize function to include the light + * object for the shield. + * @param clientInfo Whether or not the data is sent to the client + * or is used for database storage. + */ + + public override serialize(clientInfo = false): EquipmentData { + let data = super.serialize(clientInfo); + + if (clientInfo) data.light = this.light; + + return data; + } +} diff --git a/packages/server/src/game/entity/character/player/equipment/impl/weapon.ts b/packages/server/src/game/entity/character/player/equipment/impl/weapon.ts index ff19860a12..eed41321e8 100644 --- a/packages/server/src/game/entity/character/player/equipment/impl/weapon.ts +++ b/packages/server/src/game/entity/character/player/equipment/impl/weapon.ts @@ -3,8 +3,8 @@ import Equipment from '../equipment'; import { Modules } from '@kaetram/common/network'; import type Item from '../../../../objects/item'; -import type { EquipmentData } from '@kaetram/common/types/equipment'; import type { Enchantments } from '@kaetram/common/types/item'; +import type { EquipmentData } from '@kaetram/common/network/impl/equipment'; export default class Weapon extends Equipment { public attackRate: number = Modules.Defaults.ATTACK_RATE; @@ -21,8 +21,10 @@ export default class Weapon extends Equipment { public defaultAttackRate: number = Modules.Defaults.ATTACK_RATE; // Weapon type + private bow = false; private archer = false; private magic = false; + private twoHanded = false; private attackStyles: Modules.AttackStyle[] = []; public constructor(key = '', count = -1, enchantments: Enchantments = {}) { @@ -51,8 +53,10 @@ export default class Weapon extends Equipment { this.projectileName = item.projectileName; this.manaCost = item.manaCost; + this.bow = item.isBow(); this.archer = item.isArcherWeapon(); this.magic = item.isMagicWeapon(); + this.twoHanded = item.isTwoHanded(); /** * If a parameter is provided (generally the last used attack style for the weapon type) @@ -76,8 +80,10 @@ export default class Weapon extends Equipment { this.lumberjacking = -1; this.mining = -1; this.fishing = -1; + this.bow = false; this.archer = false; this.magic = false; + this.twoHanded = false; // Attack styles this.updateAttackStyle(Modules.AttackStyle.None); @@ -210,6 +216,14 @@ export default class Weapon extends Equipment { return Modules.Enchantment.Explosive in this.enchantments; } + /** + * @returns Whether or not the current weapon is two-handed. + */ + + public isTwoHanded(): boolean { + return this.twoHanded; + } + /** * Checks whether the weapon contains the attack style. * @param attackStyle The attack style to check for. @@ -223,6 +237,7 @@ export default class Weapon extends Equipment { /** * Override for the superclass where we add the attack styles. * @param clientInfo Whether or not to send the client information. + * @returns An object containing the equipment data. */ public override serialize(clientInfo = false): EquipmentData { @@ -234,6 +249,8 @@ export default class Weapon extends Equipment { if (clientInfo) { data.attackRange = this.attackRange; data.attackStyles = this.attackStyles; + data.bow = this.bow; + data.archer = this.archer; } return data; diff --git a/packages/server/src/game/entity/character/player/equipments.ts b/packages/server/src/game/entity/character/player/equipments.ts index 18873d0b02..773b93a241 100644 --- a/packages/server/src/game/entity/character/player/equipments.ts +++ b/packages/server/src/game/entity/character/player/equipments.ts @@ -1,13 +1,15 @@ import Helmet from './equipment/impl/helmet'; -import Chestplate from './equipment/impl/chestplate'; -import Legs from './equipment/impl/legs'; -import Skin from './equipment/impl/skin'; -import Boots from './equipment/impl/boots'; import Pendant from './equipment/impl/pendant'; -import Ring from './equipment/impl/ring'; +import Arrows from './equipment/impl/arrows'; +import Chestplate from './equipment/impl/chestplate'; import Weapon from './equipment/impl/weapon'; +import Shield from './equipment/impl/shield'; +import Ring from './equipment/impl/ring'; +import ArmourSkin from './equipment/impl/armourskin'; import WeaponSkin from './equipment/impl/weaponskin'; -import Arrows from './equipment/impl/arrows'; +import Legplates from './equipment/impl/legplates'; +import Cape from './equipment/impl/cape'; +import Boots from './equipment/impl/boots'; import Item from '../../objects/item'; @@ -15,36 +17,40 @@ import Utils from '@kaetram/common/util/utils'; import log from '@kaetram/common/util/log'; import { Modules } from '@kaetram/common/network'; -import type { EquipmentData, SerializedEquipment } from '@kaetram/common/types/equipment'; -import type { Bonuses, Stats } from '@kaetram/common/types/item'; -import type Equipment from './equipment/equipment'; import type Player from './player'; +import type Equipment from './equipment/equipment'; +import type { Bonuses, Stats } from '@kaetram/common/types/item'; +import type { EquipmentData, SerializedEquipment } from '@kaetram/common/network/impl/equipment'; export default class Equipments { private helmet: Helmet = new Helmet(); - private chestplate: Chestplate = new Chestplate(); - private legs: Legs = new Legs(); - private armourSkin: Skin = new Skin(); - private boots: Boots = new Boots(); private pendant: Pendant = new Pendant(); - private ring: Ring = new Ring(); + private arrows: Arrows = new Arrows(); + private chestplate: Chestplate = new Chestplate(); private weapon: Weapon = new Weapon(); + private shield: Shield = new Shield(); + private ring: Ring = new Ring(); + private armourSkin: ArmourSkin = new ArmourSkin(); private weaponSkin: WeaponSkin = new WeaponSkin(); - private arrows: Arrows = new Arrows(); + private legplates: Legplates = new Legplates(); + private cape: Cape = new Cape(); + private boots: Boots = new Boots(); // Store all equipments for parsing. // Make sure these are in the order of the enum. private equipments: Equipment[] = [ this.helmet, - this.chestplate, - this.legs, - this.armourSkin, - this.boots, this.pendant, - this.ring, this.arrows, + this.chestplate, this.weapon, - this.weaponSkin + this.shield, + this.ring, + this.armourSkin, + this.weaponSkin, + this.legplates, + this.cape, + this.boots ]; public totalAttackStats: Stats = Utils.getEmptyStats(); @@ -87,9 +93,11 @@ export default class Equipments { /** * Takes information about an item and equips it onto the player. It figures * out what equipment type it is, and updates that equipment's information. + * @param item The item to equip. + * @param fromIndex The index of the item in the inventory. */ - public equip(item: Item): void { + public equip(item: Item, fromIndex: number): void { if (!item) return log.warning( `[${this.player.username}] Attempted to equip something mysterious.` @@ -100,11 +108,39 @@ export default class Equipments { if (!equipment) return; + /** + * If the player is equipping a two-handed weapon and they have a shield currently equipped, then we + * need to ensure that they have enough space in their inventory before removing the shield. + */ + + if (item.isTwoHanded() && !this.getShield().isEmpty()) { + if (!this.player.inventory.hasSpace()) return this.player.notify('misc:NO_SPACE'); + + this.unequip(Modules.Equipment.Shield); + } + + /** + * Similarly to handling the two-handed weapon, we must also cover the case when the player tries + * to equip a shield while wielding a two-handed weapon. We must ensure that they have enough space + * in their inventory before removing the weapon. + */ + + if (type === Modules.Equipment.Shield && this.getWeapon().isTwoHanded()) { + if (!this.player.inventory.hasSpace()) return this.player.notify('misc:NO_SPACE'); + + this.unequip(Modules.Equipment.Weapon); + } + + // Remove the item from the inventory. + this.player.inventory.remove(fromIndex, item.count); + + // If there is already an item equipped, we unequip it. if (!equipment.isEmpty()) this.player.inventory.add( new Item(equipment.key, -1, -1, false, equipment.count, equipment.enchantments) ); + // Include the last attack style when we're equipping a weapon. if (equipment instanceof Weapon) equipment.update(item, this.player.getLastAttackStyle(item.weaponType)); else equipment.update(item); @@ -257,12 +293,12 @@ export default class Equipments { } /** - * Grabs the legs equipment of the player. - * @returns Legs equipment object. + * Grabs the legplates equipment of the player. + * @returns Legplates equipment object. */ - public getLegs(): Legs { - return this.get(Modules.Equipment.Legs) as Legs; + public getLegplates(): Legplates { + return this.get(Modules.Equipment.Legplates) as Legplates; } /** @@ -270,8 +306,8 @@ export default class Equipments { * @returns The armour skin equipment type. */ - public getSkin(): Skin { - return this.get(Modules.Equipment.Skin) as Skin; + public getSkin(): ArmourSkin { + return this.get(Modules.Equipment.ArmourSkin) as ArmourSkin; } /** @@ -319,6 +355,15 @@ export default class Equipments { return this.get(Modules.Equipment.Arrows) as Arrows; } + /** + * Grabs the shield equipment of the player. + * @returns Shield equipment object. + */ + + public getShield(): Shield { + return this.get(Modules.Equipment.Shield) as Shield; + } + /** * Goes through each one of our equipments and serializes it. It extracts * cruical information, such as the id, count, and enchantments diff --git a/packages/server/src/game/entity/character/player/friends.ts b/packages/server/src/game/entity/character/player/friends.ts index 3ea8ec03f6..2e9d9b47d1 100644 --- a/packages/server/src/game/entity/character/player/friends.ts +++ b/packages/server/src/game/entity/character/player/friends.ts @@ -1,9 +1,9 @@ import config from '@kaetram/common/config'; -import { Friends as FriendsPacket } from '@kaetram/common/network/impl'; import { Opcodes } from '@kaetram/common/network'; +import { FriendsPacket } from '@kaetram/common/network/impl'; import type Player from './player'; -import type { Friend } from '@kaetram/common/types/friends'; +import type { Friend } from '@kaetram/common/network/impl/friends'; type SyncCallback = (username: string, status: boolean, serverId: number) => void; @@ -48,20 +48,16 @@ export default class Friends { let username = (typeof player === 'string' ? player : player.username).toLowerCase(); // Check that someone isn't messing with the client input :) - if (username.length > 32) return this.player.notify('That username is too long.'); + if (username.length > 32) return this.player.notify('misc:FRIENDS_USERNAME_TOO_LONG'); - if (username === this.player.username) - return this.player.notify( - `Listen man I get it, you're lonely, but you can't add yourself to your friends list.` - ); + if (username === this.player.username) return this.player.notify('misc:FRIENDS_ADD_SELF'); // Ensure the player is not already on the list. - if (this.hasFriend(username)) - return this.player.notify('That player is already on your friends list.'); + if (this.hasFriend(username)) return this.player.notify('misc:FRIENDS_ALREADY_ADDED'); // Ensure the player exists. this.player.database.exists(username, (exists: boolean) => { - if (!exists) return this.player.notify('No player with that username exists.'); + if (!exists) return this.player.notify('misc:FRIENDS_USER_DOES_NOT_EXIST'); // Add the friend and check if they are online. let online = this.player.world.isOnline(username); @@ -88,8 +84,7 @@ export default class Friends { let username = (typeof player === 'string' ? player : player.username).toLowerCase(); // No username was found in the list. - if (!this.hasFriend(username)) - return this.player.notify('That player is not in your friends list.'); + if (!this.hasFriend(username)) return this.player.notify('misc:FRIENDS_NOT_IN_LIST'); delete this.list[username]; diff --git a/packages/server/src/game/entity/character/player/handler.ts b/packages/server/src/game/entity/character/player/handler.ts index 7fb2f37b35..addccf9478 100644 --- a/packages/server/src/game/entity/character/player/handler.ts +++ b/packages/server/src/game/entity/character/player/handler.ts @@ -4,33 +4,33 @@ import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import { Modules, Opcodes } from '@kaetram/common/network'; import { - Ability as AbilityPacket, - Achievement, - Container, - Death, - Despawn, - Equipment as EquipmentPacket, - Friends, - NPC as NPCPacket, - Overlay, - Points, - Poison as PoisonPacket, - Quest, - Skill, - Trade + AbilityPacket, + AchievementPacket, + ContainerPacket, + DeathPacket, + DespawnPacket, + EquipmentPacket, + FriendsPacket, + NPCPacket, + OverlayPacket, + PointsPacket, + PoisonPacket, + QuestPacket, + SkillPacket, + TradePacketPacket } from '@kaetram/common/network/impl'; -import type Light from '../../../globals/impl/light'; +import type Player from './player'; +import type NPC from '../../npc/npc'; +import type Entity from '../../entity'; import type Map from '../../../map/map'; import type World from '../../../world'; -import type Entity from '../../entity'; import type Character from '../character'; -import type Ability from './ability/ability'; import type Slot from './containers/slot'; +import type Ability from './ability/ability'; import type Equipment from './equipment/equipment'; import type Areas from '../../../map/areas/areas'; -import type NPC from '../../npc/npc'; -import type Player from './player'; +import type Light from '../../../globals/impl/light'; import type { Enchantments } from '@kaetram/common/types/item'; import type { ProcessedDoor } from '@kaetram/common/types/map'; @@ -157,7 +157,7 @@ export default class Handler { // Send despawn packet to all the nearby entities except the player. this.player.sendToRegions( - new Despawn({ + new DespawnPacket({ instance: this.player.instance }), true @@ -179,7 +179,7 @@ export default class Handler { this.player.save(); // Send death packet only to the player. - this.player.send(new Death(this.player.instance)); + this.player.send(new DeathPacket(this.player.instance)); } /** @@ -220,15 +220,23 @@ export default class Handler { if (this.player.isMagic()) { let { manaCost } = this.player.equipment.getWeapon(); - if (!this.player.hasManaForAttack()) - return this.player.notify('You are low on mana, your attacks will be weaker.'); + // If the player doesn't have enough mana to attack. + if (!this.player.hasManaForAttack()) { + // Warn the player once if they don't have enough mana. + if (!this.player.displayedManaWarning) this.player.notify('misc:LOW_MANA'); + + this.player.displayedManaWarning = true; + + return; + } + + this.player.displayedManaWarning = false; this.player.mana.decrement(manaCost); } if (this.player.isArcher()) { - if (!this.player.hasArrows()) - return this.player.notify('You do not have any arrows to shoot.'); + if (!this.player.hasArrows()) return this.player.notify('misc:NO_ARROWS'); this.player.equipment.decrementArrows(); } @@ -254,8 +262,8 @@ export default class Handler { ? this.player.skills.get(Utils.getSkill(door.skill)!).level : this.player.level, message = door.skill - ? `Your ${door.skill} level needs to be at least ${door.level} to enter.` - : `Your combat level must be at least ${door.level} to enter.`; + ? `misc:NO_SKILL_DOOR;skill=${door.skill};level=${door.level}` + : `misc:NO_COMBAT_DOOR;level=${door.level}`; if (level < door.level) return this.player.notify(message); } @@ -276,7 +284,7 @@ export default class Handler { if (!achievement?.isFinished()) return this.player.notify( - `You need to complete the achievement ${achievement?.name} to pass through this door.` + `misc:NO_ACHIEVEMENT_DOOR;achievement=${achievement?.name}` ); } @@ -285,9 +293,7 @@ export default class Handler { let quest = this.player.quests.get(door.reqQuest); if (!quest?.isFinished()) - return this.player.notify( - `You need to complete the quest ${quest?.name} to pass through this door.` - ); + return this.player.notify(`misc:NO_QUEST_DOOR;quest=${quest?.name}`); } // Handle door requiring an item to proceed (and remove the item from the player's inventory). @@ -295,13 +301,11 @@ export default class Handler { let count = door.reqItemCount || 1; if (!this.player.inventory.hasItem(door.reqItem, count)) - return this.player.notify( - 'You do not have the required key to pass through this door.' - ); + return this.player.notify('misc:NO_KEY_DOOR'); this.player.inventory.removeItem(door.reqItem, count); - this.player.notify(`The key crumbles to dust as you pass through the door.`); + this.player.notify('misc:DOOR_KEY_CRUMBLES'); } this.player.teleport(door.x, door.y); @@ -323,6 +327,7 @@ export default class Handler { this.detectAggro(); this.detectAreas(x, y); + this.detectEffects(x, y); this.player.storeOpen = ''; this.player.plateauLevel = this.map.getPlateauLevel(x, y); @@ -355,7 +360,7 @@ export default class Handler { this.handleLights(region); this.player.updateEntityList(); - this.player.updateEntityPositions(); + //this.player.updateEntityPositions(); this.player.lastRegionChange = Date.now(); } @@ -369,7 +374,7 @@ export default class Handler { //log.debug(`Sending despawn to recent regions: [${regions.join(', ')}].`); this.player.sendToRecentRegions( - new Despawn({ + new DespawnPacket({ instance: this.player.instance, regions }) @@ -455,7 +460,7 @@ export default class Handler { */ private handleTradeOpen(instance: string): void { - this.player.send(new Trade(Opcodes.Trade.Open, { instance })); + this.player.send(new TradePacketPacket(Opcodes.Trade.Open, { instance })); } /** @@ -466,7 +471,7 @@ export default class Handler { */ private handleTradeAdd(instance: string, index: number, count: number, key: string): void { - this.player.send(new Trade(Opcodes.Trade.Add, { instance, index, count, key })); + this.player.send(new TradePacketPacket(Opcodes.Trade.Add, { instance, index, count, key })); } /** @@ -476,7 +481,7 @@ export default class Handler { */ private handleTradeRemove(instance: string, index: number): void { - this.player.send(new Trade(Opcodes.Trade.Remove, { instance, index })); + this.player.send(new TradePacketPacket(Opcodes.Trade.Remove, { instance, index })); } /** @@ -485,7 +490,7 @@ export default class Handler { */ private handleTradeAccept(message?: string): void { - this.player.send(new Trade(Opcodes.Trade.Accept, { message })); + this.player.send(new TradePacketPacket(Opcodes.Trade.Accept, { message })); } /** @@ -495,7 +500,7 @@ export default class Handler { private handleInventory(): void { // Send Batch packet to the client. this.player.send( - new Container(Opcodes.Container.Batch, { + new ContainerPacket(Opcodes.Container.Batch, { type: Modules.ContainerType.Inventory, data: this.player.inventory.serialize(true) }) @@ -509,7 +514,7 @@ export default class Handler { private handleBank(): void { // Send Batch packet to the client. this.player.send( - new Container(Opcodes.Container.Batch, { + new ContainerPacket(Opcodes.Container.Batch, { type: Modules.ContainerType.Bank, data: this.player.bank.serialize(true) }) @@ -524,7 +529,7 @@ export default class Handler { private handleInventoryAdd(slot: Slot): void { this.player.send( - new Container(Opcodes.Container.Add, { + new ContainerPacket(Opcodes.Container.Add, { type: Modules.ContainerType.Inventory, slot }) @@ -552,14 +557,17 @@ export default class Handler { let item = new Item(key, this.player.x, this.player.y, true, count, enchantments); // Pets spawn an entity, and items spawn in the world. - if (item.isPetItem()) this.player.setPet(item.pet); - else this.world.entities.addItem(item); + if (item.isPetItem()) { + if (this.player.hasPet()) return this.player.notify('misc:ALREADY_HAVE_PET'); + + this.player.setPet(item.pet); + } else this.world.entities.addItem(item); log.drop(`Player ${this.player.username} dropped ${count} ${key}.`); } this.player.send( - new Container(Opcodes.Container.Remove, { + new ContainerPacket(Opcodes.Container.Remove, { type: Modules.ContainerType.Inventory, slot: slot.serialize(true) }) @@ -571,7 +579,7 @@ export default class Handler { */ private handleQuests(): void { - this.player.send(new Quest(Opcodes.Quest.Batch, this.player.quests?.serialize(true))); + this.player.send(new QuestPacket(Opcodes.Quest.Batch, this.player.quests?.serialize(true))); } /** @@ -580,7 +588,10 @@ export default class Handler { private handleAchievements(): void { this.player.send( - new Achievement(Opcodes.Achievement.Batch, this.player.achievements?.serialize(true)) + new AchievementPacket( + Opcodes.Achievement.Batch, + this.player.achievements?.serialize(true) + ) ); } @@ -590,7 +601,7 @@ export default class Handler { */ private handleSkills(): void { - this.player.send(new Skill(Opcodes.Skill.Batch, this.player.skills?.serialize(true))); + this.player.send(new SkillPacket(Opcodes.Skill.Batch, this.player.skills?.serialize(true))); } /** @@ -611,7 +622,7 @@ export default class Handler { private handleBankAdd(slot: Slot): void { this.player.send( - new Container(Opcodes.Container.Add, { + new ContainerPacket(Opcodes.Container.Add, { type: Modules.ContainerType.Bank, slot }) @@ -625,7 +636,7 @@ export default class Handler { private handleBankRemove(slot: Slot): void { this.player.send( - new Container(Opcodes.Container.Remove, { + new ContainerPacket(Opcodes.Container.Remove, { type: Modules.ContainerType.Bank, slot: slot.serialize(true) }) @@ -638,7 +649,7 @@ export default class Handler { private handleFriends(): void { this.player.send( - new Friends(Opcodes.Friends.List, { + new FriendsPacket(Opcodes.Friends.List, { list: this.player.friends?.getFriendsList() }) ); @@ -653,7 +664,7 @@ export default class Handler { private handleFriendsAdd(username: string, status: boolean, serverId: number): void { this.player.send( - new Friends(Opcodes.Friends.Add, { + new FriendsPacket(Opcodes.Friends.Add, { username, status, serverId @@ -667,7 +678,7 @@ export default class Handler { private handleFriendsRemove(username: string): void { this.player.send( - new Friends(Opcodes.Friends.Remove, { + new FriendsPacket(Opcodes.Friends.Remove, { username }) ); @@ -682,7 +693,7 @@ export default class Handler { private handleFriendsStatus(username: string, status: boolean, serverId: number): void { this.player.send( - new Friends(Opcodes.Friends.Status, { + new FriendsPacket(Opcodes.Friends.Status, { username, status, serverId @@ -779,8 +790,8 @@ export default class Handler { private handlePoison(type = -1, exists = false): void { // Notify the player when the poison status changes. - if (type === -1) this.player.notify('The poison has worn off.'); - else if (exists) this.player.notify(`You have been poisoned!`); + if (type === -1) this.player.notify('misc:POISONED'); + else if (exists) this.player.notify('misc:POISON_WORN_OFF'); this.player.send(new PoisonPacket(type)); } @@ -810,7 +821,7 @@ export default class Handler { private handleMana(): void { this.player.send( - new Points({ + new PointsPacket({ instance: this.player.instance, mana: this.player.mana.getMana(), maxMana: this.player.mana.getMaxMana() @@ -819,25 +830,27 @@ export default class Handler { } /** - * Synchronizes the lights within the region with the player. + * Sends the player the lights in the nearby regions. * @param regionId Identifier of the region we just entered. */ - private handleLights(regionId: number): void { - let region = this.map.regions.get(regionId); + private handleLights(region: number): void { + if (region < 0) return; - if (!region) return; + this.map.regions.forEachSurroundingRegion(region, (regionId: number) => { + let region = this.map.regions.get(regionId); - region.forEachLight((light: Light) => { - if (this.player.hasLoadedLight(light.id)) return; + region.forEachLight((light: Light) => { + if (this.player.hasLoadedLight(light.id)) return; - this.player.send( - new Overlay(Opcodes.Overlay.Lamp, { - light: light.serialize() - }) - ); + this.player.send( + new OverlayPacket(Opcodes.Overlay.Lamp, { + light: light.serialize() + }) + ); - this.player.lightsLoaded.push(light.id); + this.player.lightsLoaded.push(light.id); + }); }); } @@ -901,6 +914,28 @@ export default class Handler { }); } + /** + * Used for detecting effect entities at a specific coordinate. These are generally + * like ground hazards such as lava pools and slime pools. Walking on top of those + * applies a status effect to the player. + * @param x The x grid coordinate we are checking the effects at. + * @param y The y grid coordinate we are checking the effects at. + */ + + private detectEffects(x: number, y: number): void { + let entity = this.world.getGrids().getEffectAt(x, y); + + if (!entity) return; + + switch (entity.key) { + case 'lava': { + if (this.player.status.has(Modules.Effects.Burning)) return; + + return this.player.status.addWithTimeout(Modules.Effects.Burning, 15_000); + } + } + } + /** * Takes a `interval` value and modulos it against the current updateTicks. * This is to separate an event into a larger interval instead of starting diff --git a/packages/server/src/game/entity/character/player/incoming.ts b/packages/server/src/game/entity/character/player/incoming.ts index ee1738f1f1..ef55483291 100644 --- a/packages/server/src/game/entity/character/player/incoming.ts +++ b/packages/server/src/game/entity/character/player/incoming.ts @@ -6,13 +6,19 @@ import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import Filter from '@kaetram/common/util/filter'; import Creator from '@kaetram/common/database/mongodb/creator'; -import { Spawn } from '@kaetram/common/network/impl'; +import { SpawnPacket } from '@kaetram/common/network/impl'; import { Opcodes, Packets } from '@kaetram/common/network'; -import type MongoDB from '@kaetram/common/database/mongodb/mongodb'; -import type Entities from '../../../../controllers/entities'; +import type Player from './player'; +import type NPC from '../../npc/npc'; +import type Entity from '../../entity'; import type World from '../../../world'; +import type Character from '../character'; +import type Chest from '../../objects/chest'; +import type LootBag from '../../objects/lootbag'; +import type Entities from '../../../../controllers/entities'; import type Connection from '../../../../network/connection'; +import type MongoDB from '@kaetram/common/database/mongodb/mongodb'; import type { AbilityPacket, ContainerPacket, @@ -27,13 +33,11 @@ import type { HandshakePacket, EnchantPacket, GuildPacket, - CraftingPacket + CraftingPacket, + PetPacket, + LootBagPacket } from '@kaetram/common/types/messages/incoming'; -import type Character from '../character'; -import type Player from './player'; -import type Entity from '../../entity'; -import type NPC from '../../npc/npc'; -import type Chest from '../../objects/chest'; +import type { QuestPacketData } from '@kaetram/common/network/impl/quest'; export default class Incoming { private world: World; @@ -98,6 +102,9 @@ export default class Incoming { case Packets.Container: { return this.handleContainer(message); } + case Packets.Quest: { + return this.handleQuest(message); + } case Packets.Ability: { return this.handleAbility(message); } @@ -131,6 +138,12 @@ export default class Incoming { case Packets.Crafting: { return this.handleCrafting(message); } + case Packets.LootBag: { + return this.handleLootBag(message); + } + case Packets.Pet: { + return this.handlePet(message); + } } } catch (error) { log.error(error); @@ -191,6 +204,8 @@ export default class Incoming { } case Opcodes.Login.Register: { + if (config.disableRegister) return this.connection.reject('disabledregister'); + return this.database.register(this.player); } @@ -252,7 +267,10 @@ export default class Incoming { /* We handle player-specific entity statuses here. */ this.player.send( - new Spawn(entity, entity.hasDisplayInfo(this.player) ? this.player : undefined) + new SpawnPacket( + entity, + entity.hasDisplayInfo(this.player) ? this.player : undefined + ) ); } } @@ -287,10 +305,11 @@ export default class Incoming { requestY, playerX, playerY, + nextGridX, + nextGridY, movementSpeed, targetInstance, orientation, - following, timestamp } = data, entity: Entity; @@ -302,15 +321,16 @@ export default class Incoming { if (requestY) requestY = Utils.sanitizeNumber(requestY); if (playerX) playerX = Utils.sanitizeNumber(playerX); if (playerY) playerY = Utils.sanitizeNumber(playerY); + if (nextGridX) nextGridX = Utils.sanitizeNumber(nextGridX); + if (nextGridY) nextGridY = Utils.sanitizeNumber(nextGridY); + + // Prevent any crazy packet tampering. + if (this.world.map.isOutOfBounds(requestX!, requestY!)) return; + if (this.world.map.isOutOfBounds(playerX!, playerY!)) return; switch (opcode) { case Opcodes.Movement.Request: { - return this.player.handleMovementRequest( - playerX!, - playerY!, - targetInstance!, - following! - ); + return this.player.handleMovementRequest(playerX!, playerY!, targetInstance!); } case Opcodes.Movement.Started: { @@ -323,7 +343,13 @@ export default class Incoming { } case Opcodes.Movement.Step: { - return this.player.handleMovementStep(playerX!, playerY!, timestamp); + return this.player.handleMovementStep( + playerX!, + playerY!, + nextGridX!, + nextGridY!, + timestamp + ); } case Opcodes.Movement.Stop: { @@ -338,16 +364,29 @@ export default class Incoming { case Opcodes.Movement.Entity: { entity = this.entities.get(targetInstance!) as Character; + if (!entity) return; + + // Pet movement is only handled by the owner. + if (entity.isPet() && entity.owner?.instance === this.player.instance) + return entity.setPosition(requestX!, requestY!); + // Skip players or invalid entities. - if (!entity || entity.isPlayer()) return; + if (!entity?.isMob() || entity.isStunned() || entity.isDead()) return; + + // Do not update if it's the same value. + if (entity.x === requestX && entity.y === requestY) return; + + // Prevent crazy position updates, add some leeway to the roaming distance. + if (entity.outsideRoaming(requestX!, requestY!, entity.roamDistance * 2)) return; - return entity.setPosition(requestX!, requestY!); + // For mobs update the position without a packet. + return entity.setPosition(requestX!, requestY!, false); } } } - private handleTarget(message: [Opcodes.Target, string]): void { - let [opcode, instance] = message; + private handleTarget(message: [Opcodes.Target, string, number?, number?]): void { + let [opcode, instance, x, y] = message; switch (opcode) { case Opcodes.Target.Talk: { @@ -371,7 +410,7 @@ export default class Incoming { } case Opcodes.Target.Attack: { - return this.player.handleTargetAttack(instance); + return this.player.handleTargetAttack(instance, x, y); } case Opcodes.Target.Object: { @@ -410,7 +449,7 @@ export default class Incoming { if (text.startsWith('/') || text.startsWith(';')) return this.commands.parse(text); // Check for mute before filtering the message. - if (this.player.isMuted()) return this.player.notify('You are currently muted.', 'crimson'); + if (this.player.isMuted()) return this.player.notify('misc:MUTED', 'crimson'); this.player.chat(Filter.clean(text)); } @@ -428,8 +467,7 @@ export default class Incoming { switch (opcode) { case Opcodes.Command.CtrlClick: { - this.player.teleport(position.gridX, position.gridY, true); - break; + return this.player.teleport(position.gridX, position.gridY, true, false, true); } } } @@ -480,6 +518,19 @@ export default class Incoming { } } + /** + * Used for progressing the quest when the player accepts the start quest interface. + * @param packet Contains the key of the quest we are progressing. + */ + + private handleQuest(packet: QuestPacketData): void { + let quest = this.player.quests.get(packet.key!); + + if (!quest) return log.warning(`Quest ${packet.key} does not exist.`); + + quest.handlePrompt(); + } + /** * Handles incoming abilities actions from the client. Things such as using * an ability or moving one to a quick slot. @@ -502,12 +553,9 @@ export default class Incoming { } private handleTrade(packet: TradePacket): void { - // Sanitize the incoming packet information. - if (packet.count) packet.count = Utils.sanitizeNumber(packet.count, true); - switch (packet.opcode) { case Opcodes.Trade.Request: { - let oPlayer = this.entities.get(packet.instance!); + let oPlayer = this.entities.get(packet.instance); if (!oPlayer?.isPlayer()) return; @@ -523,11 +571,14 @@ export default class Incoming { } case Opcodes.Trade.Add: { - return this.player.trade.add(packet.index!, packet.count); + return this.player.trade.add( + packet.index, + Utils.sanitizeNumber(packet.count, true) + ); } case Opcodes.Trade.Remove: { - return this.player.trade.remove(packet.index!); + return this.player.trade.remove(packet.index); } } } @@ -539,8 +590,7 @@ export default class Incoming { */ private handleEnchant(packet: EnchantPacket): void { - if (!this.player.canAccessContainer) - return this.player.notify('You cannot do that right now.'); + if (!this.player.canAccessContainer) return this.player.notify('misc:CANNOT_DO_THAT'); // Sanitize the index and the shard index. if (packet.index) packet.index = Utils.sanitizeNumber(packet.index); @@ -565,7 +615,7 @@ export default class Incoming { private handleGuild(packet: GuildPacket): void { switch (packet.opcode) { case Opcodes.Guild.Create: { - return this.world.guilds.create( + this.world.guilds.create( this.player, packet.name!, packet.colour!, @@ -573,22 +623,50 @@ export default class Incoming { packet.outlineColour!, packet.crest! ); + + break; } case Opcodes.Guild.Join: { - return this.world.guilds.join(this.player, packet.identifier!); + this.world.guilds.join(this.player, packet.identifier!); + + break; } case Opcodes.Guild.Leave: { - return this.world.guilds.leave(this.player); + this.world.guilds.leave(this.player); + + break; } case Opcodes.Guild.List: { - return this.world.guilds.get(this.player, packet.from!, packet.to!); + this.world.guilds.get(this.player, packet.from!, packet.to!); + + break; } case Opcodes.Guild.Chat: { - return this.world.guilds.chat(this.player, packet.message!); + this.world.guilds.chat(this.player, packet.message!); + + break; + } + + case Opcodes.Guild.Promote: { + this.world.guilds.promote(this.player, packet.username!); + + break; + } + + case Opcodes.Guild.Demote: { + this.world.guilds.demote(this.player, packet.username!); + + break; + } + + case Opcodes.Guild.Kick: { + this.world.guilds.kick(this.player, packet.username!); + + break; } } } @@ -674,7 +752,7 @@ export default class Incoming { this.player.statistics.addMobExamine(entity.key); - if (!entity.description) return this.player.notify('I have no idea what that is.'); + if (!entity.description) return this.player.notify('misc:NO_IDEA'); this.player.notify(entity.getDescription()); } @@ -687,7 +765,7 @@ export default class Incoming { private handleCrafting(data: CraftingPacket): void { // Ensure the player is not maliciously trying to craft something. if (this.player.activeCraftingInterface === -1) - return this.player.notify(`You cannot do that right now.`); + return this.player.notify('misc:CANNOT_DO_THAT'); // Sanitize the packet information to prevent any funny business. if (data.count) data.count = Utils.sanitizeNumber(data.count, true); @@ -702,4 +780,41 @@ export default class Incoming { } } } + + /** + * Handles an incoming loot bag packet. This is generally for when a player + * attempts to take an item from the loot bag or when they close the interface. + * @param data Contains the opcode and optionally, the index of the item. + */ + + private handleLootBag(data: LootBagPacket): void { + switch (data.opcode) { + case Opcodes.LootBag.Take: { + let lootBag = this.world.entities.get(this.player.activeLootBag!) as LootBag; + + if (!lootBag) return; + + return lootBag.take(this.player, data.index!); + } + } + } + + /** + * Handles the pet packet actions received from the client. This can include picking up the + * pet. Further actions will be added in the future as needed. + * @param data Contains the opcode for the action. + */ + + private handlePet(data: PetPacket): void { + switch (data.opcode) { + case Opcodes.Pet.Pickup: { + if (this.player.pickingUpPet || !this.player.hasPet()) return; + + this.player.pickingUpPet = true; + this.player.pickingUpPet = !this.player.removePet(); + + return; + } + } + } } diff --git a/packages/server/src/game/entity/character/player/player.ts b/packages/server/src/game/entity/character/player/player.ts index 3ff158d4bd..4ac676a5ae 100644 --- a/packages/server/src/game/entity/character/player/player.ts +++ b/packages/server/src/game/entity/character/player/player.ts @@ -23,24 +23,24 @@ import { PacketType } from '@kaetram/common/network/modules'; import { Opcodes, Modules } from '@kaetram/common/network'; import { Team } from '@kaetram/common/api/minigame'; import { - Camera, - Chat, - Guild, - Heal, - Movement, - Music, - Network, - Notification, - Overlay, - Player as PlayerPacket, - Pointer, - PVP, - Rank, - Respawn, - Spawn, - Sync, - Teleport, - Welcome + CameraPacket, + ChatPacket, + GuildPacket, + HealPacket, + MovementPacket, + MusicPacket, + NetworkPacket, + NotificationPacket, + OverlayPacket, + PlayerPacket, + PointerPacket, + PVPPacket, + RankPacket, + RespawnPacket, + SpawnPacket, + SyncPacket, + TeleportPacket, + WelcomePacket } from '@kaetram/common/network/impl'; import type Pet from '../pet/pet'; @@ -51,7 +51,6 @@ import type World from '../../../world'; import type Area from '../../../map/areas/area'; import type Regions from '../../../map/regions'; import type Connection from '../../../../network/connection'; -import type Resource from '../../../globals/impl/resource'; import type Minigame from '../../../minigames/minigame'; import type Entities from '../../../../controllers/entities'; import type Packet from '@kaetram/common/network/packet'; @@ -59,8 +58,8 @@ import type MongoDB from '@kaetram/common/database/mongodb/mongodb'; import type { EntityDisplayInfo } from '@kaetram/common/types/entity'; import type { Bonuses, Stats } from '@kaetram/common/types/item'; import type { ProcessedDoor } from '@kaetram/common/types/map'; -import type { PlayerData } from '@kaetram/common/types/player'; -import type { PointerData } from '@kaetram/common/types/pointer'; +import type { PlayerData } from '@kaetram/common/network/impl/player'; +import type { PointerData } from '@kaetram/common/network/impl/pointer'; import type { PlayerInfo } from '@kaetram/common/database/mongodb/creator'; type KillCallback = (character: Character) => void; @@ -107,10 +106,12 @@ export default class Player extends Character { public isGuest = false; public canTalk = true; public noclip = false; - public jailed = false; public questsLoaded = false; + public invalidateMovement = false; public achievementsLoaded = false; - public invalidMovement = 0; + public displayedManaWarning = false; + public bypassAntiCheat = false; + public pickingUpPet = false; // Used to doubly ensure the player is not spamming the pickup button. public overrideMovementSpeed = -1; // Player info @@ -131,9 +132,10 @@ export default class Player extends Character { // Warps public lastWarp = 0; - // Ban and mute values + // Moderation variables public ban = 0; // epoch timestamp public mute = 0; + public jail = 0; // Player miscellaneous data public mapVersion = -1; @@ -141,17 +143,20 @@ export default class Player extends Character { public movementStart = 0; public pingTime = 0; + public lastCraft = 0; + public lastGlobalChat = 0; private lastNotify = 0; private lastEdible = 0; - public lastCraft = 0; private currentSong: string | undefined; + // Minigame variables public minigameArea: Area | undefined = undefined; + public coursingScore = 0; // Probably will have a dictionary for this data when we have more minigames. + public coursingTarget = ''; // The player we are chasing. // Region data public regionsLoaded: number[] = []; - public resourcesLoaded: { [instance: string]: Modules.ResourceState } = {}; public lightsLoaded: number[] = []; // NPC talking @@ -161,6 +166,7 @@ export default class Player extends Character { // Anti-cheat container public canAccessContainer = false; public activeCraftingInterface = -1; // The skill ID + public activeLootBag = ''; // The instance of the loot bag currently open // Minigame status of the player. public minigame?: Opcodes.Minigame; @@ -182,7 +188,11 @@ export default class Player extends Character { private cheatScoreCallback?: () => void; - public constructor(world: World, public database: MongoDB, public connection: Connection) { + public constructor( + world: World, + public database: MongoDB, + public connection: Connection + ) { super(connection.instance, world, '', -1, -1); this.connection.onClose(this.handleClose.bind(this)); @@ -219,6 +229,9 @@ export default class Player extends Character { */ public async load(data: PlayerInfo): Promise { + // The player's ban timestamp is in the future, so they are still banned. + if (data.ban > Date.now()) return this.connection.reject('banned'); + // Store coords for when we're done loading. this.x = data.x; this.y = data.y; @@ -226,11 +239,13 @@ export default class Player extends Character { this.guild = data.guild; this.rank = data.rank || Modules.Ranks.None; this.ban = data.ban; + this.jail = data.jail; this.mute = data.mute; this.orientation = data.orientation; this.mapVersion = data.mapVersion; this.userAgent = data.userAgent; this.regionsLoaded = data.regionsLoaded || []; + this.lastGlobalChat = data.lastGlobalChat || 0; this.setPoison(data.poison.type, Date.now() - data.poison.remaining); this.setLastWarp(data.lastWarp); @@ -263,6 +278,9 @@ export default class Player extends Character { // Spawn the pet if the player has one. if (data.pet) this.setPet(data.pet); + + // Apply the status effects from the database. + this.status.load(data.effects); } /** @@ -394,23 +412,27 @@ export default class Player extends Character { */ public intro(): void { - if (this.ban > Date.now()) return this.connection.reject('ban'); - + // Reset hitpoints if they are unitialized. if (this.hitPoints.getHitPoints() < 0) this.hitPoints.setHitPoints(this.hitPoints.getMaxHitPoints()); + // Reset mana if it is unitialized. if (this.mana.getMana() < 0) this.mana.setMana(this.mana.getMaxMana()); + // Update the player's timeout based on their rank. + if (this.rank !== Modules.Ranks.None) + this.connection.updateTimeout(this.getTimeoutByRank()); + // Timeout the player if the ready packet is not received within 10 seconds. this.readyTimeout = setTimeout(() => { if (!this.ready || this.connection.closed) this.connection.reject('error'); - }, 5000); + }, 7000); this.setPosition(this.x, this.y); this.entities.addPlayer(this); - this.send(new Welcome(this.serialize(false, true, true))); + this.send(new WelcomePacket(this.serialize(false, true, true))); } /** @@ -428,9 +450,9 @@ export default class Player extends Character { this.teleport(spawn.x, spawn.y); // Signal to other players that the player is spawning. - this.sendToRegions(new Spawn(this), true); + this.sendToRegions(new SpawnPacket(this), true); - this.send(new Respawn(this)); + this.send(new RespawnPacket(this)); this.hitPoints.reset(); this.mana.reset(); @@ -445,18 +467,25 @@ export default class Player extends Character { */ public welcome(): void { - if (this.isNew()) return this.notify(`Welcome to ${config.name}!`); + if (this.isNew()) { + this.save(); - this.notify(`Welcome back to ${config.name}!`); + return this.notify(`misc:WELCOME;name=${config.name}`); + } + + this.notify(`misc:WELCOME_BACK;name=${config.name}`); let population = this.world.getPopulation(), { activeEvent } = this.world.events; if (population > 1) - this.notify(`There are currently ${population} players online.`, '', '', true); + this.notify(`misc:PEOPLE_ONLINE;population=${population}`, '', '', true); if (activeEvent) this.notify(`The ${activeEvent} event is currently active!`, 'crimsonred', '', true); + + if (this.isJailed()) + this.notify(`misc:JAILED;duration=${this.getJailDuration()}`, 'crimsonred', '', true); } /** @@ -487,11 +516,13 @@ export default class Player extends Character { case 'hitpoints': case 'mana': { + if (this.isCheater()) this.notify(`Healing is disabled for cheaters, sorry.`); + if (type === 'hitpoints') this.hitPoints.increment(amount); else if (type === 'mana') this.mana.increment(amount); this.sendToRegions( - new Heal({ + new HealPacket({ instance: this.instance, type, amount @@ -521,6 +552,22 @@ export default class Player extends Character { loitering.addExperience(loitering.level * 5); } + /** + * When a character is on the same tile as another character and they are in a combat, + * we use this function to move them near the other character. + */ + + public override findAdjacentTile(): void { + if (!this.world.map.isColliding(this.x + 1, this.y)) + this.setPosition(this.x + 1, this.y, true); + else if (!this.world.map.isColliding(this.x - 1, this.y)) + this.setPosition(this.x - 1, this.y, true); + else if (!this.world.map.isColliding(this.x, this.y + 1)) + this.setPosition(this.x, this.y + 1, true); + else if (!this.world.map.isColliding(this.x, this.y - 1)) + this.setPosition(this.x, this.y - 1, true); + } + /** * Updates the region that the player is currently in. */ @@ -561,21 +608,26 @@ export default class Player extends Character { * @param withAnimation Whether or not to display a special effect when teleporting. */ - public override teleport(x: number, y: number, withAnimation = false, before = false): void { + public override teleport( + x: number, + y: number, + withAnimation = false, + before = false, + bypass = false + ): void { if (this.dead) return; + if (bypass) this.bypassAntiCheat = true; if (before) this.sendTeleportPacket(x, y, withAnimation); this.setPosition(x, y, false); this.world.cleanCombat(this); - // Stop combat and skill activity when teleporting - this.combat.stop(); - this.skills.stop(); - if (before) return; this.sendTeleportPacket(x, y, withAnimation); + + this.bypassAntiCheat = false; } /** @@ -587,7 +639,7 @@ export default class Player extends Character { private sendTeleportPacket(x: number, y: number, withAnimation = false): void { this.sendToRegions( - new Teleport({ + new TeleportPacket({ instance: this.instance, x, y, @@ -603,7 +655,9 @@ export default class Player extends Character { */ public incrementCheatScore(reason = '', amount = 1): void { + if (this.bypassAntiCheat) return; if (this.combat.started) return; + if (reason) log.debug(`[${this.username}] ${reason}`); this.cheatScore += amount; @@ -611,6 +665,19 @@ export default class Player extends Character { this.cheatScoreCallback?.(); } + /** + * Updates the coursing score of the player and handles edge cases + * for when we are setting negative score values for the parameter. + * @param score The score value we wish to increment by. + */ + + public incrementCoursingScore(score: number): void { + this.coursingScore += score; + + // If the score is negative, we set it to 0. + if (this.coursingScore < 0) this.coursingScore = 0; + } + /** * Verifies that the movement is valid and not no-clipping through collisions. * @param x The grid x coordinate we are checking. @@ -648,20 +715,19 @@ export default class Player extends Character { * of factors to avoid false-positives. * @param x The grid x coordinate we are checking. * @param y The grid y coordinate we are checking. - * @param timestamp Timestamp at which the packet was originally sent. + * @param latency The latency of the packet. */ - private verifyMovement(x: number, y: number, timestamp: number): boolean { + private verifyMovement(x: number, y: number, latency: number): boolean { let now = Date.now(), - stepDiff = now - this.lastStep + 7, // +7ms for margin of error. - regionDiff = now - this.lastRegionChange, - timestampDiff = now - timestamp; + stepDiff = now - this.lastStep - latency - 10, // subtract latency + regionDiff = now - this.lastRegionChange; // High latency may cause packets to be sent in a delayed manner, causing two to be sent/received at once. - if (timestampDiff > 35 && stepDiff < 35) return false; + if (latency > 35 && stepDiff < 35) return false; // Firstly ensure that the last step was behaving normally. - if (stepDiff >= this.getMovementSpeed()) return false; + if (stepDiff > this.getMovementSpeed()) return false; // A region change may trigger a movement anomaly, so we ignore movement for 1.5 seconds of a region change. if (regionDiff < 1500) return false; @@ -678,7 +744,7 @@ export default class Player extends Character { * @param instance The instance of the target we are attacking. */ - public handleTargetAttack(instance: string): void { + public handleTargetAttack(instance: string, x?: number, y?: number): void { // Prevent targetting yourself. if (instance === this.instance) return; @@ -690,6 +756,8 @@ export default class Player extends Character { // Ensure that the player can actually attack the target. if (!this.canAttack(target)) return; + if (target.isMob() && !target.combat.started && x && y) target.setPosition(x, y); + // Clear the cheat score this.cheatScore = 0; @@ -721,6 +789,7 @@ export default class Player extends Character { if (!item) return; + // Have the plugin handle the action if it exists. if (item.interactable && item.plugin?.onUse(this)) return; // Checks if the player can eat and uses the item's plugin to handle the action. @@ -734,16 +803,15 @@ export default class Player extends Character { this.inventory.add(new Item('bowlmedium', -1, -1, false, 1)); } - if (item.isEquippable() && item.canEquip(this)) { - this.inventory.remove(fromIndex, item.count); - this.equipment.equip(item); - } + // The item is equippable and the player has the requirements to equip it. + if (item.isEquippable() && item.canEquip(this)) + this.equipment.equip(item, fromIndex); break; } case Modules.ContainerType.Bank: { - if (!this.canAccessContainer) return this.notify(`You cannot do that right now.`); + if (!this.canAccessContainer) return this.notify(`misc:CANNOT_DO_THAT`); let from = fromContainer === Modules.ContainerType.Bank ? this.bank : this.inventory, @@ -766,12 +834,12 @@ export default class Player extends Character { */ public handleContainerRemove(type: Modules.ContainerType, index: number, count: number): void { - if (count < 1 || isNaN(count)) return this.notify('You have entered an invalid amount.'); + if (count < 1 || isNaN(count)) return this.notify('misc:INVALID_AMOUNT'); let container = type === Modules.ContainerType.Inventory ? this.inventory : this.bank; if (type === Modules.ContainerType.Inventory && this.map.isDoor(this.x, this.y)) - return this.notify('You cannot drop items while standing in a door.'); + return this.notify('misc:CANNOT_DROP_ITEM_DOOR'); container.remove(index, count, true); } @@ -793,6 +861,9 @@ export default class Player extends Character { `[${this.username}] Invalid container swap [${fromIndex}, ${toIndex}}]` ); + // Ignore same index swaps. + if (fromIndex === toIndex) return log.warning(`[${this.username}] Same index swap.`); + let container = type === Modules.ContainerType.Inventory ? this.inventory : this.bank; container.swap(fromIndex, container, toIndex); @@ -808,7 +879,24 @@ export default class Player extends Character { public handleObjectInteraction(instance: string): void { this.cheatScore = 0; - // Attempt to first find a sign with the given instance. + let entity = this.entities.get(instance); + + // Ensure that the entity is close enough to interact with. + if (entity?.getDistance(this) > 2) return; + + // If the entity is a tree we use the lumberjacking skill to handle the interaction. + if (entity?.isTree()) this.skills.getLumberjacking().cut(this, entity); + + // If the entity is a rock we use the mining skill to handle the interaction. + if (entity?.isRock()) this.skills.getMining().mine(this, entity); + + // If the entity is a fishing spot we use the fishing skill to handle the interaction. + if (entity?.isFishSpot()) this.skills.getFishing().catch(this, entity); + + // If the entity is a forageable plant we use the foraging skill to handle the interaction. + if (entity?.isForaging()) this.skills.getForaging().harvest(this, entity); + + // Attempt to find a sign first. let sign = this.world.globals.getSigns().get(instance); if (sign) return sign.talk(this); @@ -821,33 +909,14 @@ export default class Player extends Character { // Ensure that the player is close enough to the object. if (diffX > 2 || diffY > 2) return; - let index = this.map.coordToIndex(parseInt(coords[0]), parseInt(coords[1])), - tree = this.world.globals.getTrees().findResource(index); - - if (tree) return this.skills.getLumberjacking().cut(this, tree); - - // If we don't find a tree then we try finding a rock. - let rock = this.world.globals.getRocks().findResource(index); - - if (rock) return this.skills.getMining().mine(this, rock); - - // If we don't find a rock then we try finding a fishing spot. - let fishingSpot = this.world.globals.getFishingSpots().findResource(index); - - if (fishingSpot) return this.skills.getFishing().catch(this, fishingSpot); - - // If we don't find a fishing spot, look for foragable plants. - let forage = this.world.globals.getForaging().findResource(index); - - if (forage) return this.skills.getForaging().harvest(this, forage); - /** * Here we use the cursor (I know, it's a bit of a hack) to handle * interactions with objects in the world. Most of these * are used by crafting stations. */ - let cursor = this.map.getCursorFromIndex(index); + let index = this.map.coordToIndex(parseInt(coords[0]), parseInt(coords[1])), + cursor = this.map.getCursor(index); if (!cursor) return; @@ -866,8 +935,16 @@ export default class Player extends Character { } case 'crafting': { + if (!this.canUseCrafting()) return this.notify('misc:NO_KNOWLEDGE_USE'); + return this.world.crafting.open(this, Modules.Skills.Crafting); } + + case 'alchemy': { + if (!this.canUseAlchemy()) return this.notify('misc:NO_KNOWLEDGE_USE'); + + return this.world.crafting.open(this, Modules.Skills.Alchemy); + } } } @@ -1028,32 +1105,37 @@ export default class Player extends Character { * @param x The player's x coordinate as reported by the client. * @param y The player's y coordinate as reported by the client. * @param target If the player is requesting movement towards an entity. - * @param following Whether or not the player is actively following an entity. */ - public handleMovementRequest(x: number, y: number, target: string, following: boolean): void { + public handleMovementRequest(x: number, y: number, target: string): void { // Immediately clear the target to prevent combat from sticking to previous target. if (target !== this.target?.instance) this.target = undefined; // Stop the movement if the player is stunned. - if (this.isStunned()) return this.stopMovement(); + if (this.isStunned() || this.teleporting) return this.stopMovement(); // If the player clicked anywhere outside the bank then the bank is no longer opened. this.canAccessContainer = false; + this.activeLootBag = ''; this.activeCraftingInterface = -1; - if (this.map.isDoor(x, y) || (target && following) || this.inCombat()) return; + if (this.map.isDoor(x, y) || this.inCombat()) return; let diffX = Math.abs(this.x - x), diffY = Math.abs(this.y - y); - if (diffX > 1 || diffY > 1) { - this.notify(`No-clip detected at ${this.x}(${x}), ${this.y}(${y}).`); + // No-clip detection if the difference is greater than 2 tiles. + if (diffX > 2 || diffY > 2) { + this.notify(`No-clip detected at ${this.x}(${x}), ${this.y}(${y}). Please relog.`); - this.invalidMovement++; this.cheatScore++; log.bug(`${this.username} has no-clipped from ${this.x}(${x}), ${this.y}(${y}).`); + + this.teleport(this.oldX, this.oldY, false); + + this.invalidateMovement = true; + return; } } @@ -1068,6 +1150,13 @@ export default class Player extends Character { */ public handleMovementStarted(x: number, y: number, speed: number, target: string): void { + // Stop the movement if the client is reporting a different position. + let diffX = Math.abs(this.x - x), + diffY = Math.abs(this.y - y); + + // Refuse any movement if the starting point mismatches our player's position by more than 2 tiles. + if (diffX > 2 || diffY > 2) return; + this.movementStart = Date.now(); // Invalid movement speed reported by the client. @@ -1087,12 +1176,18 @@ export default class Player extends Character { * A movement step occurs every time a player traverses to the next tile. * @param x The current x coordinate of the player as reported by the client. * @param y The current y coordinate of the player as reported by the client. + * @param nextX The next x coordinate of the player as reported by the client. + * @param nextY The next y coordinate of the player as reported by the client. * @param timestamp The time when the packet was sent (UNIX timestamp). */ - public handleMovementStep(x: number, y: number, timestamp = Date.now()): void { - if (this.isInvalidMovement()) return; - + public handleMovementStep( + x: number, + y: number, + nextX: number, + nextY: number, + timestamp = Date.now() + ): void { // Increment cheat score if the player is moving while stunned. if (this.isStunned()) { this.incrementCheatScore(`[${this.username}] Movement while stunned.`); @@ -1100,12 +1195,16 @@ export default class Player extends Character { this.stopMovement(); } - if (this.verifyMovement(x, y, timestamp)) - this.incrementCheatScore(`Mismatch in movement speed: ${Date.now() - this.lastStep}`); + let latency = Date.now() - timestamp; + + // Ensure the movement is valid, negative latency is impossible lmfao. + if (this.verifyMovement(x, y, latency) || latency < 0) + this.incrementCheatScore(`Mismatch in movement speed: ${Date.now() - timestamp}`); this.setPosition(x, y); + this.resetTalk(); - this.lastStep = Date.now(); + this.lastStep = Date.now() - latency; } /** @@ -1117,37 +1216,50 @@ export default class Player extends Character { */ public handleMovementStop(x: number, y: number, target: string, orientation: number): void { - let entity = this.entities.get(target); + // Ignore movements that don't follow the packet order. + if (!this.moving) + return this.incrementCheatScore('Did not receive movement started packet.'); - // No start movement received. - if (!this.moving) this.incrementCheatScore('Did not receive movement started packet.'); + let entity = this.entities.get(target); // Update orientation this.setOrientation(orientation); + // Player has stopped on top of a loot bag. + if (entity?.isLootBag()) { + // Prevent access to the loot bag by other players. + if (!entity.isOwner(this.username)) + return this.notify(`This lootbag belongs to ${Utils.formatName(entity.owner)}.`); + + entity.open(this); + } + // Player has stopped on top of an item. if (entity?.isItem()) { + // Prevent cheaters from picking up item + if (this.isCheater()) return; + // Prevent picking up dropped items that belong to other players. if (!entity.isOwner(this.username)) return this.notify( - `This item can only be picked up by ${Utils.formatName(entity.owner)}.` + `misc:CANNOT_PICK_UP_ITEM;username=${Utils.formatName(entity.owner)}` ); + // If the item's owner is existent and the player is the owner we add it to the statistics. + if (entity.owner === this.username) this.statistics.addDrop(entity.key, entity.count); + this.inventory.add(entity); } // Update the player's position. - if (!this.isInvalidMovement()) this.setPosition(x, y); + this.setPosition(x, y); // Handle doors when the player stops on one. if (this.map.isDoor(x, y)) { - if (entity?.isMob()) return; - let door = this.map.getDoor(x, y); this.doorCallback?.(door); } - // Movement has come to an end. this.moving = false; this.lastMovement = Date.now(); @@ -1163,13 +1275,13 @@ export default class Player extends Character { // Skip if pvp state is the same or it's permanent if (this.pvp === pvp) return; - if (this.pvp && !pvp) this.notify('You are no longer in a PvP zone!'); - else this.notify('You have entered a PvP zone!'); + if (this.pvp && !pvp) this.notify('misc:NOT_IN_PVP_ZONE'); + else this.notify('misc:IN_PVP_ZONE'); this.pvp = pvp; this.send( - new PVP({ + new PVPPacket({ state: this.pvp }) ); @@ -1196,16 +1308,21 @@ export default class Player extends Character { if (!overlay) { tempOverlay?.removePlayer(this); - return this.send(new Overlay(Opcodes.Overlay.Remove)); + return this.send(new OverlayPacket(Opcodes.Overlay.Remove)); } // New overlay is being loaded, remove lights. this.lightsLoaded = []; + let colour = + overlay.rgb.length > 1 + ? `rgba(${overlay.rgb[0]}, ${overlay.rgb[1]}, ${overlay.rgb[2]}, ${overlay.darkness})` + : `rgba(0, 0, 0, ${overlay.darkness})`; + this.send( - new Overlay(Opcodes.Overlay.Set, { + new OverlayPacket(Opcodes.Overlay.Set, { image: overlay.fog || 'blank', - colour: `rgba(0, 0, 0, ${overlay.darkness})` + colour }) ); @@ -1225,21 +1342,21 @@ export default class Player extends Character { if (camera) switch (camera.type) { case 'lockX': { - this.send(new Camera(Opcodes.Camera.LockX)); + this.send(new CameraPacket(Opcodes.Camera.LockX)); break; } case 'lockY': { - this.send(new Camera(Opcodes.Camera.LockY)); + this.send(new CameraPacket(Opcodes.Camera.LockY)); break; } case 'player': { - this.send(new Camera(Opcodes.Camera.Player)); + this.send(new CameraPacket(Opcodes.Camera.Player)); break; } } - else this.send(new Camera(Opcodes.Camera.FreeFlow)); + else this.send(new CameraPacket(Opcodes.Camera.FreeFlow)); } /** @@ -1254,7 +1371,7 @@ export default class Player extends Character { this.currentSong = song; - this.send(new Music(song)); + this.send(new MusicPacket(song)); } /** @@ -1268,10 +1385,8 @@ export default class Player extends Character { let entering = info !== undefined && this.minigameArea === undefined; - if (entering) { - info?.enterCallback?.(this); - this.notify('Welcome to the TeamWar lobby!'); - } else this.minigameArea?.exitCallback?.(this); + if (entering) info?.enterCallback?.(this); + else this.minigameArea?.exitCallback?.(this); this.minigameArea = info; } @@ -1305,6 +1420,9 @@ export default class Player extends Character { ) speed = Math.floor(speed * 1.25); + // Halve speed if the player is cheating. + if (this.isCheater()) speed = Math.floor(speed * 2); + // Update the movement speed if there is a change from default. if (this.movementSpeed !== speed) this.setMovementSpeed(speed); @@ -1325,7 +1443,7 @@ export default class Player extends Character { // Sync to other players in the region. this.sendToRegions( - new Movement(Opcodes.Movement.Speed, { + new MovementPacket(Opcodes.Movement.Speed, { instance: this.instance, movementSpeed }) @@ -1350,7 +1468,7 @@ export default class Player extends Character { else this.status.remove(Modules.Effects.HotSauce); this.sendToRegions( - new Movement(Opcodes.Movement.Speed, { + new MovementPacket(Opcodes.Movement.Speed, { instance: this.instance, movementSpeed: this.getMovementSpeed() }) @@ -1384,14 +1502,12 @@ export default class Player extends Character { Modules.Effects.SnowPotion, Modules.Constants.SNOW_POTION_DURATION, () => { - this.notify('Your immunity to freezing effects has worn off.'); + this.notify('misc:FREEZE_IMMUNITY_WORN_OFF'); } ); this.notify( - `You are now immune to freezing effects for ${ - Modules.Constants.SNOW_POTION_DURATION / 1000 - } seconds.` + `misc:FREEZE_IMMUNITY;duration=${Modules.Constants.SNOW_POTION_DURATION / 1000}` ); } @@ -1408,15 +1524,13 @@ export default class Player extends Character { Modules.Effects.FirePotion, Modules.Constants.FIRE_POTION_DURATION, () => { - this.notify('Your immunity to fire effects has worn off.'); + this.notify('misc:FIRE_IMMUNITY_WORN_OFF'); } ); - this.notify( - `You are now immune to fire effects for ${ - Modules.Constants.FIRE_POTION_DURATION / 1000 - } seconds.` - ); + let duration = (Modules.Constants.FIRE_POTION_DURATION / 1000).toString(); + + this.notify(`misc:FIRE_IMMUNITY;duration=${duration}`); } /** @@ -1427,7 +1541,7 @@ export default class Player extends Character { public setRank(rank: Modules.Ranks = Modules.Ranks.None): void { this.rank = rank; - this.send(new Rank(rank)); + this.send(new RankPacket(rank)); } /** @@ -1444,7 +1558,7 @@ export default class Player extends Character { */ public override setPosition(x: number, y: number, forced = false, skip = false): void { - if (this.dead || this.verifyCollision(x, y)) return; + if (this.dead || this.verifyCollision(x, y) || this.invalidateMovement) return; // Sets the player's new position. super.setPosition(x, y); @@ -1453,10 +1567,11 @@ export default class Player extends Character { // Relay a packet to the nearby regions without including the player. this.sendToRegions( - new Movement(Opcodes.Movement.Move, { + new MovementPacket(Opcodes.Movement.Move, { instance: this.instance, x, y, + target: this.target?.instance, forced }), true @@ -1502,7 +1617,7 @@ export default class Player extends Character { */ public setPet(key: string): void { - if (this.hasPet()) return this.notify(`You already have a pet!`); + if (this.hasPet()) return this.notify(`misc:ALREADY_HAVE_PET`); // Create a new pet instance based on the key. this.pet = this.entities.spawnPet(this, key); @@ -1515,13 +1630,13 @@ export default class Player extends Character { * Removes the player's pet and adds it to their inventory if they have space. */ - public removePet(): void { - if (!this.hasPet()) return; + public removePet(): boolean { + if (!this.hasPet()) return false; // Ensure the player has enough space in their inventory. if (!this.inventory.hasSpace()) { - this.notify(`You do not have enough inventory space to store your pet.`); - return; + this.notify('misc:NO_SPACE_PET'); + return false; } // Create a pet item and add it to the player's inventory. @@ -1532,6 +1647,8 @@ export default class Player extends Character { // Remove the pet from the player. this.pet = undefined; + + return true; } /** @@ -1602,10 +1719,12 @@ export default class Player extends Character { */ public getSpawn(): Position { + if (this.isJailed()) return Utils.getPositionFromString(Modules.Constants.JAIL_SPAWN_POINT); + if (!this.quests.isTutorialFinished()) return Utils.getPositionFromString(Modules.Constants.TUTORIAL_SPAWN_POINT); - if (this.inMinigame()) return this.getMinigame()!.getRespawnPoint(this.team); + if (this.inMinigame()) return this.getMinigame()!.getSpawnPoint(this.team); return Utils.getPositionFromString(Modules.Constants.SPAWN_POINT); } @@ -1632,21 +1751,114 @@ export default class Player extends Character { } /** - * Adds a region id to the list of loaded regions. - * @param region The region id we are adding. + * This is the timeout duration in milliseconds for the player's connection + * depending on their rank. Patrons and administrators have a longer timeout + * duration than regular players. */ - public loadRegion(region: number): void { - this.regionsLoaded.push(region); + public getTimeoutByRank(): number { + switch (this.rank) { + case Modules.Ranks.TierOne: { + return 15 * 60_000; // 15 minutes + } + + case Modules.Ranks.TierTwo: { + return 20 * 60_000; // 20 minutes + } + + case Modules.Ranks.TierThree: { + return 25 * 60_000; // 25 minutes + } + + case Modules.Ranks.TierFour: { + return 30 * 60_000; // 30 minutes + } + + case Modules.Ranks.TierFive: { + return 35 * 60_000; // 35 minutes + } + + case Modules.Ranks.HollowAdmin: + case Modules.Ranks.Moderator: + case Modules.Ranks.TierSix: { + return 40 * 60_000; // 40 minutes + } + + case Modules.Ranks.Admin: + case Modules.Ranks.TierSeven: { + return 45 * 60_000; // 45 minutes + } + + default: { + return 10 * 60_000; // 10 minutes + } + } } /** - * Adds a resource to our loaded resource instances. - * @param resource The resource we are adding. + * Calculates the global chat cooldown based on the player's rank. */ - public loadResource(resource: Resource): void { - this.resourcesLoaded[resource.instance] = resource.state; + public getGlobalChatCooldown(): number { + switch (this.rank) { + case Modules.Ranks.TierOne: { + return 55 * 60_000; + } + + case Modules.Ranks.TierTwo: { + return 50 * 60_000; + } + + case Modules.Ranks.TierThree: { + return 45 * 60_000; + } + + case Modules.Ranks.TierFour: { + return 40 * 60_000; + } + + case Modules.Ranks.TierFive: { + return 35 * 60_000; + } + + case Modules.Ranks.TierSix: { + return 30 * 60_000; + } + + case Modules.Ranks.TierSeven: { + return 15 * 60_000; + } + + case Modules.Ranks.Moderator: + case Modules.Ranks.HollowAdmin: + case Modules.Ranks.Admin: { + return 5000; + } + + default: { + return 60 * 60_000; + } + } + } + + /** + * Converts the global chat cooldown duration into minutes. + * @returns An integer representing the minutes left. + */ + + public getGlobalChatDuration(): number { + let difference = this.getGlobalChatCooldown() - (Date.now() - this.lastGlobalChat); + + return Math.ceil(difference / 60_000); + } + + /** + * Adds a region id to the list of loaded regions. + * @param region The region id we are adding. + */ + + public loadRegion(region: number): void { + this.regionsLoaded.push(region); } /** @@ -1659,18 +1871,10 @@ export default class Player extends Character { } /** - * Checks if the resource is within our loaded resources and that the state matches. - * @param resource The resource we are chceking. - * @returns If the resource is loaded and the state matches. + * @param light The light that we are checking if it exists in the list of loaded lights. + * @returns Whether or not the light has been added to the list of loaded lights. */ - public hasLoadedResource(resource: Resource): boolean { - return ( - resource.instance in this.resourcesLoaded && - this.resourcesLoaded[resource.instance] === resource.state - ); - } - public hasLoadedLight(light: number): boolean { return this.lightsLoaded.includes(light); } @@ -1682,7 +1886,7 @@ export default class Player extends Character { public ping(): void { this.pingTime = Date.now(); - this.send(new Network(Opcodes.Network.Ping)); + this.send(new NetworkPacket(Opcodes.Network.Ping)); } /** @@ -1695,6 +1899,18 @@ export default class Player extends Character { this.overlayArea!.removePlayer(this); } + /** + * Clears a minigame instance from the player and erases + * all the minigame data for all minigames. + */ + + public clearMinigame(): void { + this.minigame = undefined; + + this.coursingScore = 0; + this.coursingTarget = ''; + } + /** * Resets the NPC instance and talking index. If a parameter is specified * then we set that NPC's instance as the one we are talking to. @@ -1715,6 +1931,14 @@ export default class Player extends Character { return this.mute - Date.now() > 0; } + /** + * @returns Whether or not the player is jailed. + */ + + public isJailed(): boolean { + return this.jail - Date.now() > 0; + } + /** * Checks if the player is currently in a minigame. */ @@ -1723,6 +1947,15 @@ export default class Player extends Character { return this.minigame !== undefined; } + /** + * Whether or not the player is in a team war minigame. + * @returns The player is in a team war minigame. + */ + + public inTeamWar(): boolean { + return this.minigame === Opcodes.Minigame.TeamWar; + } + /** * @returns Whether the player has the cheater rank. */ @@ -1774,19 +2007,11 @@ export default class Player extends Character { return Date.now() - this.statistics.creationTime < 60_000; } - /** - * @returns Whether or not the player's invalid movement count is greater than the threshold. - */ - - private isInvalidMovement(): boolean { - return this.invalidMovement >= Modules.Constants.INVALID_MOVEMENT_THRESHOLD; - } - /** * @returns Whether or not the player is using archery-based weapons. */ - public isArcher(): boolean { + public override isArcher(): boolean { return this.equipment.getWeapon().isArcher(); } @@ -1849,6 +2074,30 @@ export default class Player extends Character { return Date.now() - this.lastCraft > Modules.Constants.CRAFT_COOLDOWN; } + /** + * @returns Whether or not the player can use the global chat given his last global chat time. + */ + + public canGlobalChat(): boolean { + return Date.now() - this.lastGlobalChat > this.getGlobalChatCooldown(); + } + + /** + * @returns Whether or not the player has started the necessary quest to use crafting benches. + */ + + public canUseCrafting(): boolean { + return this.quests.get(Modules.Constants.CRAFTING_QUEST_KEY).isStarted(); + } + + /** + * @returns Whether or not the player has started the necessary quest to use alchemy. + */ + + public canUseAlchemy(): boolean { + return this.quests.get(Modules.Constants.ALCHEMY_QUEST_KEY).isStarted(); + } + /** * Miscellaneous */ @@ -1900,13 +2149,13 @@ export default class Player extends Character { public sendPrivateMessage(playerName: string, message: string): void { if (config.hubEnabled) { this.world.client.send( - new Chat({ source: this.username, message, target: playerName }) + new ChatPacket({ source: this.username, message, target: playerName }) ); return; } if (!this.world.isOnline(playerName)) - return this.notify(`@aquamarine@${playerName}@crimson@ is not online.`, 'crimson'); + return this.notify(`misc:NOT_ONLINE;username=${playerName}`, 'crimson'); this.sendMessage(playerName, message); } @@ -1943,7 +2192,7 @@ export default class Player extends Character { this.skills.sync(); // Sync the player information to the surrounding regions. - this.sendToRegions(new Sync(this.serialize(true)), true); + this.sendToRegions(new SyncPacket(this.serialize(true)), true); } /** @@ -1956,7 +2205,25 @@ export default class Player extends Character { */ public chat(message: string, global = false, withBubble = true, colour = ''): void { - if (!this.canTalk) return this.notify('You cannot talk at this time.', 'crimson'); + if (!this.canTalk) return this.notify('misc:CANNOT_TALK', 'crimson'); + + // Handle global chat + if (global) { + if (!this.quests.isTutorialFinished()) + return this.notify('misc:CANNOT_GLOBAL_CHAT_TUTORIAL', 'crimson'); + + // Jailed players cannot global chat. + if (this.isJailed()) return this.notify('misc:CANNOT_GLOBAL_CHAT_JAIL', 'crimson'); + + // Limit the global chat to the cooldown based on ranks. + if (!this.canGlobalChat()) + return this.notify( + `misc:CANNOT_GLOBAL_CHAT_MINUTES;duration=${this.getGlobalChatDuration()}`, + 'crimson' + ); + + this.lastGlobalChat = Date.now(); + } log.debug(`[${this.username}] ${message}`); @@ -1973,11 +2240,11 @@ export default class Player extends Character { this.world.discord.sendMessage(source, message, undefined, true); // Relay the hub so that it can handle the discord relay. - this.world.client.send(new Chat({ source, message })); + this.world.client.send(new ChatPacket({ source, message })); if (global) return this.world.globalMessage(name, message, colour); - let packet = new Chat({ + let packet = new ChatPacket({ instance: this.instance, message, withBubble, @@ -1995,19 +2262,18 @@ export default class Player extends Character { * @param title The header text for the popup. * @param message The text contents of the popup. * @param colour The colour of the popup's text. + * @param soundEffect The sound effect to play when the popup is displayed. */ - public popup(title: string, message: string, colour = '#00000'): void { + public popup(title: string, message: string, colour = '#00000', soundEffect = ''): void { if (!title) return; - title = Utils.parseMessage(title); - message = Utils.parseMessage(message); - this.send( - new Notification(Opcodes.Notification.Popup, { + new NotificationPacket(Opcodes.Notification.Popup, { title, message, - colour + colour, + soundEffect }) ); } @@ -2025,10 +2291,8 @@ export default class Player extends Character { // Prevent notify spams if (!bypass && Date.now() - this.lastNotify < 250) return; - message = Utils.parseMessage(message); - this.send( - new Notification(Opcodes.Notification.Text, { + new NotificationPacket(Opcodes.Notification.Text, { message, colour, source @@ -2044,26 +2308,25 @@ export default class Player extends Character { */ public guildNotify(message: string): void { - this.send(new Guild(Opcodes.Guild.Error, { message })); + this.send(new GuildPacket(Opcodes.Guild.Error, { message })); } /** * Sends a pointer data packet to the player. Removes all * existing pointers first to prevent multiple pointers. - * @param opcode The pointer opcode we are sending. - * @param info Information for the pointer such as position. + * @param info Generic pointer object that contains the type and + * associated information with the pointer. + * @param remove Whether or not we should remove all existing pointers. */ - public pointer(opcode: Opcodes.Pointer, info: PointerData): void { + public pointer(info: PointerData, remove = true): void { // Remove all existing pointers first. - this.send(new Pointer(Opcodes.Pointer.Remove)); + if (remove) this.send(new PointerPacket(Opcodes.Pointer.Remove)); // Invalid pointer data received. - if (!(opcode in Opcodes.Pointer)) return; - - info.instance = this.instance; + if (!(info.type in Opcodes.Pointer)) return; - this.send(new Pointer(opcode, info)); + this.send(new PointerPacket(info.type, info)); } /** @@ -2095,7 +2358,6 @@ export default class Player extends Character { let data = super.serialize() as PlayerData; // Sprite key is the armour key. - data.key = this.equipment.getSkin().key || 'base'; data.name = Utils.formatName(this.username); data.rank = this.rank; data.level = this.skills.getCombatLevel(); @@ -2104,10 +2366,10 @@ export default class Player extends Character { data.attackRange = this.attackRange; data.movementSpeed = this.getMovementSpeed(); - if (this.inMinigame()) data.displayInfo = this.getDisplayInfo(); + if (this.inTeamWar()) data.displayInfo = this.getDisplayInfo(); // Include equipment only when necessary. - if (withEquipment) data.equipments = this.equipment.serialize().equipments; + if (withEquipment) data.equipments = this.equipment.serialize(true).equipments; if (withExperience) data.experience = this.getTotalExperience(); @@ -2369,6 +2631,19 @@ export default class Player extends Character { return this.equipment.getWeapon().attackRate; } + /** + * Gets the remaining time amount in a string format. + * @returns The string format of the amount of minutes or seconds remaining. + */ + + public getJailDuration(): string { + let duration = this.jail - Date.now(); + + return duration > 60_000 + ? `${Math.ceil(duration / 60_000)} more minutes` + : `${Math.floor(duration / 1000)} more seconds`; + } + /** * Callback for when the current character kills another character. * @param callback Contains the character object that was killed. diff --git a/packages/server/src/game/entity/character/player/quest/impl/ancientlands.ts b/packages/server/src/game/entity/character/player/quest/impl/ancientlands.ts index f93c7b283b..97255363cf 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/ancientlands.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/ancientlands.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/ancientlands.json'; export default class AncientLands extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/anvilsechoes.ts b/packages/server/src/game/entity/character/player/quest/impl/anvilsechoes.ts new file mode 100644 index 0000000000..ef43f2c020 --- /dev/null +++ b/packages/server/src/game/entity/character/player/quest/impl/anvilsechoes.ts @@ -0,0 +1,31 @@ +import Quest from '../quest'; +import Data from '../../../../../../../data/quests/anvilsechoes.json'; + +import type { ProcessedDoor } from '@kaetram/common/types/map'; +import type Player from '../../player'; + +export default class AnvilsEchoes extends Quest { + public constructor(key: string) { + super(key, Data); + } + + /** + * Override for when the player goes through the door. We want to trigger an NPC + * dialogue when the player attempts to go through the door but hasn't finished + * the quest yet. + * @param door The door the player is going through. + * @param player The player going through the door. + */ + + protected override handleDoor(door: ProcessedDoor, player: Player): void { + if (this.stage < door.stage) { + let npc = player.world.entities.getNPCByKey(door.npc); + + npc?.talk(player, [`Hey, don't go in there, it's dangerous!`]); + + return; + } + + super.handleDoor(door, player); + } +} diff --git a/packages/server/src/game/entity/character/player/quest/impl/artsandcrafts.ts b/packages/server/src/game/entity/character/player/quest/impl/artsandcrafts.ts index 1220112c7d..f036fde06b 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/artsandcrafts.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/artsandcrafts.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/artsandcrafts.json'; export default class ArtsAndCrafts extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/clamchowder.ts b/packages/server/src/game/entity/character/player/quest/impl/clamchowder.ts index 789fe196a1..62e9b5ab21 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/clamchowder.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/clamchowder.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/clamchowder.json'; export default class ClamChowder extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/codersfallacy.ts b/packages/server/src/game/entity/character/player/quest/impl/codersfallacy.ts new file mode 100644 index 0000000000..5c3c14172f --- /dev/null +++ b/packages/server/src/game/entity/character/player/quest/impl/codersfallacy.ts @@ -0,0 +1,8 @@ +import Quest from '../quest'; +import Data from '../../../../../../../data/quests/codersfallacy.json'; + +export default class CodersFallacy extends Quest { + public constructor(key: string) { + super(key, Data); + } +} diff --git a/packages/server/src/game/entity/character/player/quest/impl/codersglitch.ts b/packages/server/src/game/entity/character/player/quest/impl/codersglitch.ts new file mode 100644 index 0000000000..abf2574f76 --- /dev/null +++ b/packages/server/src/game/entity/character/player/quest/impl/codersglitch.ts @@ -0,0 +1,8 @@ +import Quest from '../quest'; +import Data from '../../../../../../../data/quests/codersglitch.json'; + +export default class CodersGlitch extends Quest { + public constructor(key: string) { + super(key, Data); + } +} diff --git a/packages/server/src/game/entity/character/player/quest/impl/codersglitch2.ts b/packages/server/src/game/entity/character/player/quest/impl/codersglitch2.ts new file mode 100644 index 0000000000..eb874024f7 --- /dev/null +++ b/packages/server/src/game/entity/character/player/quest/impl/codersglitch2.ts @@ -0,0 +1,8 @@ +import Quest from '../quest'; +import Data from '../../../../../../../data/quests/codersglitch2.json'; + +export default class CodersGlitch2 extends Quest { + public constructor(key: string) { + super(key, Data); + } +} diff --git a/packages/server/src/game/entity/character/player/quest/impl/desertquest.ts b/packages/server/src/game/entity/character/player/quest/impl/desertquest.ts index 4a1aef7143..cb4f8997e0 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/desertquest.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/desertquest.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/desertquest.json'; export default class DesertQuest extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/evilsanta.ts b/packages/server/src/game/entity/character/player/quest/impl/evilsanta.ts index 2e58a8a5f8..9712610978 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/evilsanta.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/evilsanta.ts @@ -1,35 +1,41 @@ import Quest from '../quest'; +import Data from '../../../../../../../data/quests/evilsanta.json'; import log from '@kaetram/common/util/log'; import type Player from '../../player'; import type { ProcessedDoor } from '@kaetram/common/types/map'; -import type { RawQuest } from '@kaetram/common/types/quest'; export default class EvilSanta extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } + /** + * Override for the quest to prevent players from going through a door prior + * to completing a certain stage. + * @param door The door that the player is trying to enter through. + * @param player The player that is trying to enter through the door. + */ + protected override handleDoor(door: ProcessedDoor, player: Player): void { log.debug(`[${this.name}] Door: ${door.x}-${door.y} - stage: ${this.stage}.`); - if (this.stage === 0) return player.notify(`Now hang on, why would I wanna go in there?`); + if (this.stage === 0) return player.notify(`misc:WHY_GO_THERE`); // If the player is not on the correct stage, don't let them through. - if (this.stage < door.stage) - return player.notify(`I don't think I should go in there just yet...`); + if (this.stage < door.stage) return player.notify(`misc:DONT_THINK_GO_IN`); // Handle door requiring an item to proceed (and remove the item from the player's inventory). if (door.reqItem) { let count = door.reqItemCount || 1; if (!player.inventory.hasItem(door.reqItem, count)) - return player.notify('You do not have the required key to pass through this door.'); + return player.notify('misc:NO_KEY_DOOR'); player.inventory.removeItem(door.reqItem, count); - player.notify(`The key crumbles to dust as you pass through the door.`); + player.notify(`misc:DOOR_KEY_CRUMBLES`); } // Let the super class handle the rest. diff --git a/packages/server/src/game/entity/character/player/quest/impl/foresting.ts b/packages/server/src/game/entity/character/player/quest/impl/foresting.ts index 0ab2ab3ebd..f73923426f 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/foresting.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/foresting.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/foresting.json'; export default class Foresting extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/herbalistdesperation.ts b/packages/server/src/game/entity/character/player/quest/impl/herbalistdesperation.ts new file mode 100644 index 0000000000..6183c40a80 --- /dev/null +++ b/packages/server/src/game/entity/character/player/quest/impl/herbalistdesperation.ts @@ -0,0 +1,8 @@ +import Quest from '../quest'; +import Data from '../../../../../../../data/quests/herbalistdesperation.json'; + +export default class Scavenger extends Quest { + public constructor(key: string) { + super(key, Data); + } +} diff --git a/packages/server/src/game/entity/character/player/quest/impl/index.ts b/packages/server/src/game/entity/character/player/quest/impl/index.ts index 8677d2a3ec..4fee89f253 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/index.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/index.ts @@ -11,6 +11,14 @@ import scavenger from './scavenger'; import minersquest2 from './minersquest2'; import royaldrama from './royaldrama'; import clamchowder from './clamchowder'; +import royalpet from './royalpet'; +import scientistspotion from './scientistspotion'; +import anvilsechoes from './anvilsechoes.ts'; +import herbalistdesperation from './herbalistdesperation'; +import ricksroll from './ricksroll'; +import codersglitch from './codersglitch'; +import codersglitch2 from './codersglitch2'; +import codersfallacy from './codersfallacy'; export default { tutorial, @@ -25,5 +33,13 @@ export default { scavenger, minersquest2, royaldrama, - clamchowder + clamchowder, + royalpet, + scientistspotion, + anvilsechoes, + herbalistdesperation, + ricksroll, + codersglitch, + codersglitch2, + codersfallacy }; diff --git a/packages/server/src/game/entity/character/player/quest/impl/minersquest.ts b/packages/server/src/game/entity/character/player/quest/impl/minersquest.ts index 5db0c85c17..89cd9f8426 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/minersquest.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/minersquest.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/minersquest.json'; export default class MinersQuest extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/minersquest2.ts b/packages/server/src/game/entity/character/player/quest/impl/minersquest2.ts index 3434a79345..4755bc96de 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/minersquest2.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/minersquest2.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/minersquest2.json'; export default class MinersQuest2 extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/ricksroll.ts b/packages/server/src/game/entity/character/player/quest/impl/ricksroll.ts new file mode 100644 index 0000000000..7dcda4258f --- /dev/null +++ b/packages/server/src/game/entity/character/player/quest/impl/ricksroll.ts @@ -0,0 +1,8 @@ +import Quest from '../quest'; +import Data from '../../../../../../../data/quests/ricksroll.json'; + +export default class RicksRoll extends Quest { + public constructor(key: string) { + super(key, Data); + } +} diff --git a/packages/server/src/game/entity/character/player/quest/impl/royaldrama.ts b/packages/server/src/game/entity/character/player/quest/impl/royaldrama.ts index 3e38387273..bbac596621 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/royaldrama.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/royaldrama.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/royaldrama.json'; export default class RoyalDrama extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/royalpet.ts b/packages/server/src/game/entity/character/player/quest/impl/royalpet.ts new file mode 100644 index 0000000000..ca0afc8c2e --- /dev/null +++ b/packages/server/src/game/entity/character/player/quest/impl/royalpet.ts @@ -0,0 +1,8 @@ +import Quest from '../quest'; +import Data from '../../../../../../../data/quests/royalpet.json'; + +export default class RoyalPet extends Quest { + public constructor(key: string) { + super(key, Data); + } +} diff --git a/packages/server/src/game/entity/character/player/quest/impl/scavenger.ts b/packages/server/src/game/entity/character/player/quest/impl/scavenger.ts index a7f8e866a2..7f44e143bd 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/scavenger.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/scavenger.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/scavenger.json'; export default class Scavenger extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/scientistspotion.ts b/packages/server/src/game/entity/character/player/quest/impl/scientistspotion.ts new file mode 100644 index 0000000000..6c36a8b03f --- /dev/null +++ b/packages/server/src/game/entity/character/player/quest/impl/scientistspotion.ts @@ -0,0 +1,8 @@ +import Quest from '../quest'; +import Data from '../../../../../../../data/quests/scientistspotion.json'; + +export default class ScientistsPotion extends Quest { + public constructor(key: string) { + super(key, Data); + } +} diff --git a/packages/server/src/game/entity/character/player/quest/impl/seaactivities.ts b/packages/server/src/game/entity/character/player/quest/impl/seaactivities.ts index cb9bd230ae..74672b70f4 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/seaactivities.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/seaactivities.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/seaactivities.json'; export default class SeaActivities extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/sorcery.ts b/packages/server/src/game/entity/character/player/quest/impl/sorcery.ts index 6fd846d4e5..f033590b0a 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/sorcery.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/sorcery.ts @@ -1,9 +1,8 @@ import Quest from '../quest'; - -import type { RawQuest } from '@kaetram/common/types/quest'; +import Data from '../../../../../../../data/quests/sorcery.json'; export default class Sorcery extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + public constructor(key: string) { + super(key, Data); } } diff --git a/packages/server/src/game/entity/character/player/quest/impl/tutorial.ts b/packages/server/src/game/entity/character/player/quest/impl/tutorial.ts index a69faee1a0..d3a4fe47ed 100644 --- a/packages/server/src/game/entity/character/player/quest/impl/tutorial.ts +++ b/packages/server/src/game/entity/character/player/quest/impl/tutorial.ts @@ -1,12 +1,13 @@ import Quest from '../quest'; +import Data from '../../../../../../../data/quests/tutorial.json'; import config from '@kaetram/common/config'; -import type { RawQuest } from '@kaetram/common/types/quest'; - export default class Tutorial extends Quest { - public constructor(key: string, rawData: RawQuest) { - super(key, rawData); + protected override noPrompts = true; + + public constructor(key: string) { + super(key, Data); if (!config.tutorialEnabled) this.setStage(this.stageCount, 0, false); } diff --git a/packages/server/src/game/entity/character/player/quest/quest.ts b/packages/server/src/game/entity/character/player/quest/quest.ts index 9df2dc2701..2541d6121b 100644 --- a/packages/server/src/game/entity/character/player/quest/quest.ts +++ b/packages/server/src/game/entity/character/player/quest/quest.ts @@ -1,24 +1,25 @@ import Item from '../../../objects/item'; -import Quests from '../../../../../../data/quests.json'; import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import { Modules } from '@kaetram/common/network'; +import type Player from '../player'; +import type Mob from '../../mob/mob'; +import type NPC from '../../../npc/npc'; import type { ProcessedDoor } from '@kaetram/common/types/map'; -import type { PointerData } from '@kaetram/common/types/pointer'; +import type { PointerData } from '@kaetram/common/network/impl/pointer'; import type { PopupData } from '@kaetram/common/types/popup'; import type { QuestData, RawQuest, RawStage, StageData, - HideNPC -} from '@kaetram/common/types/quest'; -import type NPC from '../../../npc/npc'; -import type Mob from '../../mob/mob'; -import type Player from '../player'; + HideNPC, + QuestItem +} from '@kaetram/common/network/impl/quest'; +type InterfaceCallback = (key: string) => void; type ProgressCallback = (key: string, stage: number, subStage: number) => void; type PointerCallback = (pointer: PointerData) => void; type PopupCallback = (popup: PopupData) => void; @@ -27,6 +28,7 @@ type TalkCallback = (npc: NPC, player: Player) => void; type DoorCallback = (quest: ProcessedDoor, player: Player) => void; type KillCallback = (mob: Mob) => void; type ResourceCallback = (type: Modules.Skills, resourceType: string) => void; + export default abstract class Quest { /** * An abstract quest class that takes the raw quest data and @@ -38,10 +40,17 @@ export default abstract class Quest { private rewards: string[] = []; private skillRequirements: { [key: string]: number } = {}; private questRequirements: string[] = []; // List of quests required to start this quest. + private difficulty = ''; // Difficulty of the quest. private hideNPCs: HideNPC = {}; // NPCs to hide after quest. + private completedSubStages: string[] = []; // The substages that the player has completed, used for cases such as talking to an NPC. protected stage = 0; // How far along in the quest we are. - private subStage = 0; // Progress in the substage (say we're tasked to kill 20 rats). + private subStage = 0; // Progress in the substage (say we're tasked to kill 20 rats, or talk to multiple NPCs). protected stageCount = 0; // How long the quest is. + private timer = 0; // Used by timer to indicate duration amount of stage. + private expiration = 0; // Used by timer to indicate expiration date. + private pendingStart = false; // Whether or not the quest is pending start. + + protected noPrompts = false; // Used to skip the interface prompts for the quest. private stageData: StageData; // Current stage data, constantly updated when progression occurs. private stages: { [id: number]: RawStage } = {}; // All the stages from the JSON data. @@ -49,6 +58,9 @@ export default abstract class Quest { // Store all NPCs involved in the quest. private npcs: string[] = []; + private timerTimeout?: NodeJS.Timeout | undefined; + + private startCallback?: InterfaceCallback; private progressCallback?: ProgressCallback; private pointerCallback?: PointerCallback; private popupCallback?: PopupCallback; @@ -58,12 +70,16 @@ export default abstract class Quest { public killCallback?: KillCallback; public resourceCallback?: ResourceCallback; - public constructor(private key: string, rawData: RawQuest) { + public constructor( + private key: string, + rawData: RawQuest + ) { this.name = rawData.name; this.description = rawData.description; this.rewards = rawData.rewards || []; this.skillRequirements = rawData.skillRequirements || {}; this.questRequirements = rawData.questRequirements || []; + this.difficulty = rawData.difficulty || ''; this.hideNPCs = rawData.hideNPCs || {}; this.stageCount = Object.keys(rawData.stages).length; @@ -95,12 +111,18 @@ export default abstract class Quest { */ private loadNPCs(): void { - // Iterate through the stages and extract the NPCs - for (let i in this.stages) - if (this.stages[i].npc && !this.hasNPC(this.stages[i].npc!)) - this.npcs.push(this.stages[i].npc!); + // Iterate through the stages and extract the NPCs. + for (let stage of Object.values(this.stages)) { + // If the stage has sub-stages, iterate through those as well and extract the NPCs. + if (stage.subStages) + for (let subStage of stage.subStages) + if (subStage.npc && !this.hasNPC(subStage.npc)) this.npcs.push(subStage.npc); + + // Add each NPC to the list if the stage has one and it is not already in the list. + if (stage.npc && !this.hasNPC(stage.npc)) this.npcs.push(stage.npc); + } - // Look through the hideNPCs object and extract the NPCs + // Look through the hideNPCs object and extract the NPCs. for (let i in this.hideNPCs) if (!this.hasNPC(i)) this.npcs.push(i); } @@ -118,18 +140,27 @@ export default abstract class Quest { if (!dialogue) return log.warning(`[${this.name}] No dialogue found for NPC: ${npc.key}.`); + // Attempt to check for substage component and use that information instead. + let subStageNPC = this.getSubStageByNPC(npc.key), + stageInfo = subStageNPC || this.stageData; // Use whichever stage data is present. + /** * Ends the conversation. If the player has the required item in the inventory * it will check for that first. If the stage requires the player be given an item - * it must be given before the conversation ends and quest progresses. + * it must be given before the conversation ends and quest progresses. If we are dealing + * with sub stages then we must first ensure the NPC isn't marked as completed and just + * proceed with the dialogue instead. */ - if (this.stageData.npc === npc.key && dialogue.length === player.talkIndex) - if (this.hasItemRequirement()) this.handleItemRequirement(player, this.stageData); - else if (this.hasItemToGive()) { - if (this.givePlayerItem(player, this.stageData.itemKey!, this.stageData.itemCount)) - this.progress(); - } else if (this.hasAbility()) this.givePlayerAbility(player); - else if (this.hasExperience()) this.givePlayerExperience(player); + if ( + stageInfo.npc === npc.key && + dialogue.length === player.talkIndex && + !this.completedSubStages.includes(npc.key) + ) + if (this.hasItemRequirement(stageInfo)) this.handleItemRequirement(player, stageInfo); + else if (this.hasItemToGive(stageInfo)) + this.givePlayerRewards(player, stageInfo.itemRewards, true); + else if (this.hasAbility(stageInfo)) this.givePlayerAbility(player); + else if (this.hasExperience(stageInfo)) this.givePlayerExperience(player); else this.progress(); // Talk to the NPC and progress the dialogue. @@ -145,7 +176,7 @@ export default abstract class Quest { protected handleDoor(door: ProcessedDoor, player: Player): void { log.debug(`[${this.name}] Door: ${door.x}-${door.y} - stage: ${this.stage}.`); - if (this.stage < door.stage) return player.notify('You cannot pass through this door.'); + if (this.stage < door.stage) return player.notify('misc:CANNOT_PASS_DOOR'); player.teleport(door.x, door.y); @@ -167,6 +198,9 @@ export default abstract class Quest { if (!this.stageData.mob) return log.error(`[${this.name}] No mob data for stage: ${this.stage}.`); + // Stage progression has expired, so we don't progress. + if (this.timer && Date.now() - this.timer > this.expiration) return; + // Substage progression when the mob killed matches the quest's list of mobs. if (this.stageData.mob.includes(mob.key)) this.progress(true); @@ -185,49 +219,83 @@ export default abstract class Quest { // Stop if the quest has already been completed. if (this.isFinished()) return; + // Extract the type of resource based on the skill. + let resourceType = Utils.getResourceType(type), + resource = this.stageData[resourceType as keyof StageData], + resourceCount = this.stageData[`${resourceType}Count` as keyof StageData] as number; + // Stage data does not require a tree to be cut. - if (!this.stageData.tree) return; + if (!resource) return; // Don't progress if we are not cutting the tree specified. - if (this.stageData.tree !== subType) return; + if (resource !== subType) return; // Progress the quest if no tree count is specified but a tree stage is present. - if (!this.stageData.treeCount) return this.progress(); + if (!resourceCount) return this.progress(); // Progress substage. this.progress(true); // Progress to next stage if we fulfill the tree count requirement. - if (this.subStage >= this.stageData.treeCount) this.progress(); + if (this.subStage >= resourceCount) this.progress(); } /** - * Checks the player's inventory and progresses if - * he contains enough of the required item. + * Checks the player's inventory for a particular item and its amount and takes it + * if the player fulfills the requirement. We also handle giving the player an item + * reward if the stage contains one, as well as an ability. * @param player The player we are checking inventory of. + * @param stageData The stage data we are checking against, or substage data if specified. + * @param subStage (Optional) Specified by subbstage progression (in case of multiple NPC requirements). */ - private handleItemRequirement(player: Player, stageData: StageData): void { + private handleItemRequirement(player: Player, stageData: StageData | RawStage): void { // Extract the item key and count requirement. - let { itemRequirement, itemRequirementCount } = stageData; + let { itemRequirements, itemRewards, npc } = stageData; // Skip if the player does not have the required item and count in the inventory. - if (!this.hasAllItems(player, itemRequirement!, itemRequirementCount)) return; + if (!this.hasAllItems(player, itemRequirements)) return; + + // Skip if the player does not have enough space in the inventory for the item rewards. + if (itemRewards && !player.inventory.hasSpace(itemRewards.length)) + return player.notify('misc:NO_SPACE'); // Iterate through the items and remove them from the player's inventory. - for (let i = 0; i < itemRequirement!.length; i++) - player.inventory.removeItem(itemRequirement![i], (itemRequirementCount || [])[i]); + for (let item of itemRequirements!) player.inventory.removeItem(item.key, item.count); // If the stage contains item rewards, we give it to the player. - if (this.hasItemToGive()) - this.givePlayerItem(player, this.stageData.itemKey!, this.stageData.itemCount); + if (this.hasItemToGive(stageData)) this.givePlayerRewards(player, itemRewards!); - if (this.hasExperience()) this.givePlayerExperience(player); + // Grant the experience from the stage. + if (this.hasExperience(stageData)) this.givePlayerExperience(player); // If the stage rewards an ability, we give it to the player. - if (this.hasAbility()) this.givePlayerAbility(player); + if (this.hasAbility(stageData)) this.givePlayerAbility(player); + + // If we're dealing with substages, we add the NPC to the completed list. + if (this.stageData.subStages && !this.completedSubStages.includes(npc!)) + this.completedSubStages.push(npc!); + + /** + * A substage progression occurs if the current overall stage has a substage component + * and if the amount of completed NPCs is less than the amount of substages. + */ + let isSubStage = + this.stageData.subStages && + this.completedSubStages.length < this.stageData.subStages.length; + + this.progress(isSubStage); + } + + /** + * Used for verifying and progressing the quest via prompts for starting. + */ + + public handlePrompt(): void { + if (!this.pendingStart || this.isStarted()) return; - this.progress(); + // Progress the stage by skipping prompts. + this.setStage(this.stage + 1, 0, true, true); } /** @@ -235,22 +303,41 @@ export default abstract class Quest { */ private progress(subStage?: boolean): void { + // Apply the expiration timer if it's present in the current stage. + if (this.stageData.timer) { + this.timer = this.stageData.timer; + + this.expiration = Date.now() + this.stageData.timer; + } + // Progress substage only if the parameter is defined. if (subStage) this.setStage(this.stage, this.subStage + 1); else this.setStage(this.stage + 1); } /** - * Attemps to add an item into the player's inventory and returns - * the conditional status of that action. - * @param player The player we are adding the item to. - * @param key The item key's identifier. - * @param count The amount of the item we're adding. - * @returns Whether or not adding the item was successful. + * Responsible for giving the player the item rewards in an array. The function must first + * ensure that the player has enough inventory space for the item rewards. + * @param player The player we are giving the item to. + * @param itemRewards The item rewards we are giving to the player. + * @param progress Whether or not to progress to the next stage after giving the item rewards. */ - private givePlayerItem(player: Player, key: string, count = 1): boolean { - return player.inventory.add(new Item(key, -1, -1, false, count)) > 0; + private givePlayerRewards( + player: Player, + itemRewards: QuestItem[] = [], + progress = false + ): void { + // We play it extra safe by ensuring there are at least as many empty spaces as there are reward items. + if (!player.inventory.hasSpace(itemRewards.length)) + return player.notify(`misc:PLEASE_MAKE_ROOM_REWARD`); + + // Check if the player has enough inventory space for the item rewards. + for (let item of itemRewards) + player.inventory.add(new Item(item.key, -1, -1, false, item.count)); + + // Progress to the next stage if the parameter is true. + if (progress) this.progress(); } /** @@ -263,14 +350,26 @@ export default abstract class Quest { } /** - * Verifies the integrity of the skill and grants the player experience in that skill. + * Iterates through the list of skill rewards and grants the player experience + * for each skill specified. * @param player The player we are granting experience to. */ private givePlayerExperience(player: Player): void { - let skill = player.skills.get(Utils.getSkill(this.stageData.skill!)!); + for (let skillReward of this.stageData.skillRewards!) { + let skill = player.skills.get(Utils.getSkill(skillReward.key)!); + + skill?.addExperience(skillReward.experience); + } + } - skill?.addExperience(this.stageData.experience!); + /** + * Clears the timer timeout upon progression to the next stage. + */ + + private clearTimer(): void { + clearTimeout(this.timerTimeout); + this.timerTimeout = undefined; } /** @@ -284,61 +383,62 @@ export default abstract class Quest { } /** - * Checks if the current stage has an item requirement. - * @returns If the item requirement property exists in the current stage. + * Checks whether the stage parameter provided contains any items. Since the `itemRequirements` + * may be undefined, we default to an empty array in case it is. + * @param stageData Contains information about the current stage in a raw format or in a parsed format. + * @returns If there are any item requirements in the stage provided. */ - private hasItemRequirement(): boolean { - return !!this.stageData.itemRequirement; + private hasItemRequirement(stageData: StageData | RawStage): boolean { + return (stageData.itemRequirements || []).length > 0; } /** - * Checks if the current stage has an item to give to the player. - * @returns If the `itemKey` proprety exists in the current stage. + * Similarly to `hasItemRequirement`, we check if the stage parameter provided contains + * any item rewards. Since the `itemRewards` may be undefined, we default to an empty array in case it is. + * @param stageData Contains information about the current stage in a raw format or in a parsed format. + * @returns If there are any item rewards in the stage provided. */ - private hasItemToGive(): boolean { - return !!this.stageData.itemKey; + private hasItemToGive(stageData: StageData | RawStage): boolean { + return (stageData.itemRewards || []).length > 0; } /** * Checks whether or not the current stage has an ability to give to the player. + * @param stageData Contains information about the current stage in a raw format + * if processing a sub stage, or in a parsed format if processing the main stage. * @returns If the `ability` property exists in the current stage. */ - private hasAbility(): boolean { - return !!this.stageData.ability; + private hasAbility(stageData: StageData | RawStage): boolean { + return !!stageData.ability; } /** * Whether or not the quest grants experience to a skill. + * @param stageData Contains information about the current stage in a raw format + * if processing a sub stage, or in a parsed format if processing the main stage. * @returns Whether the stage data has an experience property and skill which to grant towards. */ - private hasExperience(): boolean { - return !!this.stageData.experience && !!this.stageData.skill; + private hasExperience(stageData: StageData | RawStage): boolean { + return (stageData.skillRewards?.length || 0) > 0; } /** - * Checks that the player has all the items required to progress the next - * stage in the quest. We parse through every item requirement and ensure - * that the player has the item and count specified. - * @param player The player that we are checking the inventory of. - * @param itemRequirement The item requirement array, string array of item keys. - * @param itemRequirementCount The item requirement count array, number array of item counts. - * @returns Whether or not the player has all the items. + * Checks whether the player has all the items in the specified array of items. + * Each eleemnt contains a key and a count, we check that against the player's inventory. + * @param player The player we are checking the inventory of. + * @param items The array of items we are checking for. */ - private hasAllItems( - player: Player, - itemRequirement: string[], - itemRequirementCount: number[] = [] - ): boolean { + private hasAllItems(player: Player, items: QuestItem[] = []): boolean { let hasItems = true; // Iterate and ensure that the player has all the items. - for (let i = 0; i < itemRequirement!.length; i++) - if (!player.inventory.hasItem(itemRequirement![i], (itemRequirementCount || [])[i])) { + for (let item of items) + if (!player.inventory.hasItem(item.key, item.count)) { hasItems = false; break; } @@ -376,11 +476,12 @@ export default abstract class Quest { /** * Checks if a quest is finished given the current progress and stage count. + * @param nextStage Whether or not to check the next stage. * @returns If the progress is greater or equal to stage count. */ - public isFinished(): boolean { - return this.stage >= this.stageCount; + public isFinished(nextStage = false): boolean { + return (nextStage ? this.stage + 1 : this.stage) >= this.stageCount; } /** @@ -398,6 +499,28 @@ export default abstract class Quest { return npc === 'before' ? this.isFinished() : !this.isFinished(); } + /** + * Whether or not the current stage we're on requires that the player + * talk to an NPC. + * @param npc The NPC we are checking. + * @returns Whether or not the NPC is the NPC required for the current stage. + */ + + public isNPCForStage(player: Player, npc: NPC): boolean { + let stage = this.getStageData(); + + // NPC is not in the current stage so we just skip. + if (stage.npc !== npc.key) return false; + + // If the stage doesn't have any item requirements, then the NPC belongs to the stage and the player must talk to them. + if (!this.hasItemRequirement(stage)) return true; + + // If the player has all the requirements for the stage. + if (this.hasAllItems(player, stage.itemRequirements)) return true; + + return false; + } + /** * @returns Whether or not the current task is to walk through a door. */ @@ -422,6 +545,35 @@ export default abstract class Quest { return this.stageData.task === 'tree'; } + /** + * @returns Whether or not the current stage is a fish task. + */ + + public isFishingTask(): boolean { + return this.stageData.task === 'fish'; + } + + /** + * Attempts to grab a sub stage NPC if it exists. Sub stage NPCs are those + * that a player must talk to multiple (in any order) in order to progress. + * @param key The key of the NPC we are trying to grab. + * @returns A StageNPC object if it exists, undefined otherwise. + */ + + public getSubStageByNPC(key: string): RawStage | undefined { + if (!this.stageData.subStages) return undefined; + + return this.stageData.subStages.find((subStage: RawStage) => subStage.npc === key); + } + + /** + * @returns The stage the quest is currently on. + */ + + public getStage(): number { + return this.stage; + } + /** * Returns a StageData object about the current stage. It contains information about * what NPC the player must interact with to progress, or how many mobs to kill to @@ -434,20 +586,23 @@ export default abstract class Quest { return { task: stage.task, - npc: stage.npc! || '', + subStages: stage.subStages || [], + npc: stage.npc || '', mob: stage.mob! || '', - mobCountRequirement: stage.mobCountRequirement! || 0, - itemRequirement: stage.itemRequirement! || [], - itemRequirementCount: stage.itemRequirementCount! || [], - text: stage.text! || [''], - pointer: stage.pointer! || undefined, - popup: stage.popup! || undefined, - itemKey: stage.itemKey! || '', - itemCount: stage.itemCount! || 1, - tree: stage.tree! || '', - treeCount: stage.treeCount! || 0, - skill: stage.skill! || '', - experience: stage.experience! || 0 + mobCountRequirement: stage.mobCountRequirement || 0, + itemRequirements: stage.itemRequirements || [], + itemRewards: stage.itemRewards || [], + text: stage.text || [''], + pointer: stage.pointer || undefined, + popup: stage.popup || undefined, + tree: stage.tree || '', + treeCount: stage.treeCount || 0, + fish: stage.fish || '', + fishCount: stage.fishCount || 0, + rock: stage.rock || '', + rockCount: stage.rockCount || 0, + skillRewards: stage.skillRewards || [], + timer: stage.timer || 0 }; } @@ -469,16 +624,27 @@ export default abstract class Quest { // We do not count iterations of stages above stage we are currently on. if (this.stage < i) continue; - let stage = this.stages[i]; + let stage = this.stages[i], + subStage = this.getSubStageByNPC(npc.key); // If no key is found, continue iterating. - if (stage.npc! !== npc.key) continue; + if (stage.npc! !== npc.key && !subStage) continue; + + // Substitute the sub stage information into the stage and use that to process the dialogue. + if (subStage) stage = subStage; + + /** + * If we are dealing with substages, then we want to return the completed + * text for the particular substage if it has been completed. + */ + + if (subStage && this.completedSubStages.includes(subStage.npc!)) + return stage.completedText!; // Ensure we are on the correct stage and that it has an item requirement, otherwise skip. - if (stage.itemRequirement! && this.stage === i) { + if (this.hasItemRequirement(stage) && this.stage === i) { // Verify that the player has the required items and return the dialogue for it. - if (this.hasAllItems(player, stage.itemRequirement, stage.itemRequirementCount)) - return stage.hasItemText!; + if (this.hasAllItems(player, stage.itemRequirements)) return stage.hasItemText!; // Skip to next stage iteration. continue; @@ -505,9 +671,15 @@ export default abstract class Quest { * @param stage The new stage we are setting the quest to. * @param subStage Optionally set the stage to a subStage index. * @param progressCallback Conditional on whether we want to make a callback or not. + * @param skipPrompts Whether to skip the starting/completing prompts */ - public setStage(stage: number, subStage = 0, progressCallback = true): void { + public setStage( + stage: number, + subStage = 0, + progressCallback = true, + skipPrompts = false + ): void { let isProgress = this.stage !== stage; // Send popup before setting the new stage. @@ -516,22 +688,64 @@ export default abstract class Quest { // Clear pointer preemptively if the current stage data contains it. if (this.stageData.pointer) this.pointerCallback?.(Modules.EmptyPointer); + // Clear the timer timeout. + this.clearTimer(); + + // Certain quests can skip the prompts (like the tutorial for example). + if (!this.noPrompts && !skipPrompts && progressCallback && !this.isStarted()) { + this.pendingStart = true; + return this.startCallback?.(this.key); + } + + // Reset the pending flags. + this.pendingStart = false; + this.stage = stage; this.subStage = subStage; - // Progression to a new stage. - if (isProgress && progressCallback) + /** + * Progression to a new stage occurs when the stage we are setting is different + * from the stage we are currently on. Unless we are explicitly avoiding + * progression callbacks, we make one. + */ + + if (isProgress && progressCallback) { + // Clear the completed substages. + this.completedSubStages = []; + + // Callback so that we send information to the player. this.progressCallback?.(this.key, stage, this.stageCount); + } if (this.isFinished()) return; // Update the latest stage data. this.stageData = this.getStageData(); + // Handle loading a stage that has a timer + if (this.stageData.timer) + if (progressCallback) { + this.timer = this.stageData.timer; + this.expiration = Date.now() + this.timer; + + // Create a timeout to roll back the stage if the timer expires without progression. + this.timerTimeout = setTimeout(() => this.setStage(stage - 1), this.timer); + } else this.setStage(stage - 1); + // Check if the current stage has any pointer information. if (this.stageData.pointer) this.pointerCallback?.(this.stageData.pointer); } + /** + * Updates the quest's completed substages. These are the keys of the substages + * that the player has completed. We use this function when we load the information + * from the database. + */ + + public setCompletedSubStages(subStages: string[] = []): void { + this.completedSubStages = subStages; + } + /** * Serializes the quest's data to be stored * in the database. Save information such as @@ -542,7 +756,8 @@ export default abstract class Quest { let data: QuestData = { key: this.key, stage: this.stage, - subStage: this.subStage + subStage: this.subStage, + completedSubStages: this.completedSubStages }; if (batch) { @@ -551,12 +766,24 @@ export default abstract class Quest { data.rewards = this.rewards; data.skillRequirements = this.skillRequirements; data.questRequirements = this.questRequirements; + data.difficulty = this.difficulty; data.stageCount = this.stageCount; } return data; } + /** + * Callback for when we want to prompt the player to start + * the quest. The quest will not progress until the player + * manually accepts the quest. + * @param callback Contains the key for the quest that we are starting. + */ + + public onStart(callback: InterfaceCallback): void { + this.startCallback = callback; + } + /** * A callback whenever we progress the quest. * @param callback The quest's key and progress count; diff --git a/packages/server/src/game/entity/character/player/quests.ts b/packages/server/src/game/entity/character/player/quests.ts index 46a8102c56..c0a6c80e8d 100644 --- a/packages/server/src/game/entity/character/player/quests.ts +++ b/packages/server/src/game/entity/character/player/quests.ts @@ -1,13 +1,11 @@ import QuestIndex from './quest/impl'; -import quests from '../../../../../data/quests.json'; - import { Modules, Opcodes } from '@kaetram/common/network'; -import { Quest as QuestPacket } from '@kaetram/common/network/impl'; +import { QuestPacket } from '@kaetram/common/network/impl'; -import type { PointerData } from '@kaetram/common/types/pointer'; +import type { PointerData } from '@kaetram/common/network/impl/pointer'; import type { PopupData } from '@kaetram/common/types/popup'; -import type { QuestData, SerializedQuest } from '@kaetram/common/types/quest'; +import type { QuestData, SerializedQuest } from '@kaetram/common/network/impl/quest'; import type Player from './player'; import type Quest from './quest/quest'; import type NPC from '../../npc/npc'; @@ -26,22 +24,16 @@ export default class Quests { private loadCallback?: () => void; public constructor(private player: Player) { - // Iterates through the raw quests in the JSON and creates an instance of them - for (let key in quests) { - // Checks if the JSON quest exists in our implementation. - if (!(key in QuestIndex)) continue; - - // Create an instance and pass the quest data along. - let quest = new QuestIndex[key as keyof typeof QuestIndex]( - key, - quests[key as keyof typeof quests] - ); + // Iterates through the quest indices and initializes them. + for (let key in QuestIndex) { + let quest = new QuestIndex[key as keyof typeof QuestIndex](key); this.quests[key] = quest; quest.onProgress(this.handleProgress.bind(this)); quest.onPointer(this.handlePointer.bind(this)); quest.onPopup(this.handlePopup.bind(this)); + quest.onStart((key: string) => this.handleInterface(key)); } } @@ -55,8 +47,15 @@ export default class Quests { for (let info of questInfo) { let quest = this.get(info.key); - // Set quest stage data without making a progress callback if it exists. - if (quest) quest.setStage(info.stage, info.subStage, false); + /** + * If the quest exists we set the stage without creating a callback (so we don't send anything + * to the player upon logging in). We also load the completed sub stages into the quest. + */ + + if (quest) { + quest.setStage(info.stage, info.subStage, false); + quest.setCompletedSubStages(info.completedSubStages); + } } // Trigger `loaded()` when we have no database information. @@ -84,6 +83,9 @@ export default class Quests { // Update region when quest is completed. if (this.get(key).isFinished()) this.player.updateRegion(); + // Stop skills when quest progress is made. + this.player.skills.stop(); + this.player.updateEntities(); this.player.save(); } @@ -96,7 +98,7 @@ export default class Quests { */ private handlePointer(pointer: PointerData): void { - this.player.pointer(pointer.type, pointer); + this.player.pointer(pointer); } /** @@ -108,6 +110,17 @@ export default class Quests { this.player.popup(popup.title, popup.text, popup.colour); } + /** + * Handles displaying an interface with the quest start. This is an interface + * that the player must manually accept before starting the quest. + * @param key The key for which we want to display the interface for (used to extract the quest information + * on the client side (i.e. name, description, rewards, etc.)) + */ + + private handleInterface(key: string): void { + this.player.send(new QuestPacket(Opcodes.Quest.Start, { key })); + } + /** * Grabs a quest with the key specified. Will return * undefined if the key is invalid. @@ -215,6 +228,18 @@ export default class Quests { return !!this.get(Modules.Constants.TUTORIAL_QUEST_KEY)?.isCutTreeTask(); } + /** + * Similar to `canAttackInTutorial` but for fishing. We want to prevent + * people from sitting in the tutorial area and continuously fishing. + * @returns Whether or not the tutorial task is that of a fish task. + */ + + public canFishInTutorial(): boolean { + if (this.isTutorialFinished()) return true; + + return !!this.get(Modules.Constants.TUTORIAL_QUEST_KEY)?.isFishingTask(); + } + /** * Iterates through all the quests and serializes them (saving the * key and progress of each one) and returns a SerializedQuest object. diff --git a/packages/server/src/game/entity/character/player/skill/impl/alchemy.ts b/packages/server/src/game/entity/character/player/skill/impl/alchemy.ts new file mode 100644 index 0000000000..e51d1dca07 --- /dev/null +++ b/packages/server/src/game/entity/character/player/skill/impl/alchemy.ts @@ -0,0 +1,9 @@ +import Skill from '../skill'; + +import { Modules } from '@kaetram/common/network'; + +export default class Alchemy extends Skill { + public constructor() { + super(Modules.Skills.Alchemy); + } +} diff --git a/packages/server/src/game/entity/character/player/skill/impl/fishing.ts b/packages/server/src/game/entity/character/player/skill/impl/fishing.ts index 7c1ddd66ff..e86c716913 100644 --- a/packages/server/src/game/entity/character/player/skill/impl/fishing.ts +++ b/packages/server/src/game/entity/character/player/skill/impl/fishing.ts @@ -1,18 +1,38 @@ import ResourceSkill from '../resourceskill'; -import FishingSpots from '../../../../../../../data/fishing.json'; +import Utils from '@kaetram/common/util/utils'; +import ResourceText from '@kaetram/common/text/en/resource'; import { Modules } from '@kaetram/common/network'; -import ResourceEn from '@kaetram/common/text/en/resource'; import type Player from '../../player'; -import type Resource from '../../../../../globals/impl/resource'; +import type Resource from '../../../../../entity/objects/resource/resource'; export default class Fishing extends ResourceSkill { // We want to randomize the depletion of the fishing spots. public override randomDepletion = true; public constructor() { - super(Modules.Skills.Fishing, FishingSpots); + super(Modules.Skills.Fishing); + + this.onExhaust(this.handleExhaust.bind(this)); + } + + /** + * After the player has caught a fish, we have a random chance of giving + * them kelp (or any random item in the future if we want). + * @param player The player that is receiving the kelp. + */ + + private handleExhaust(player: Player): void { + // Failed to roll against the chance of receiving kelp. + if (!this.canReceiveKelp()) return; + + // Create an item and make it belong to the player so others can't pick it up. + let item = this.getItem('kelp', player.username); + + // If the player has space in their inventory add the kelp there, otherwise drop it on the ground. + if (this.canHold(player)) player.inventory.add(item); + else player.world.entities.addItem(item); } /** @@ -26,8 +46,21 @@ export default class Fishing extends ResourceSkill { public catch(player: Player, spot: Resource): void { let weapon = player.equipment.getWeapon(); - if (!weapon.isFishing()) return player.notify(ResourceEn.INVALID_WEAPON(this.type)); + // Player's weapon is not a valid fishing weapon. + if (!weapon.isFishing()) return player.notify(ResourceText.INVALID_WEAPON(this.type)); + + // Player is in the tutorial, we want to prevent them from fishing. + if (!player.quests.canFishInTutorial()) return player.notify('resource:NO_REASON'); this.interact(player, spot, weapon.fishing); } + + /** + * Whether or not on this current depletion the player can receive kelp. + * @returns A 10% chance of receiving kelp using a random function. + */ + + private canReceiveKelp(): boolean { + return Utils.randomInt(0, 100) <= 10; + } } diff --git a/packages/server/src/game/entity/character/player/skill/impl/foraging.ts b/packages/server/src/game/entity/character/player/skill/impl/foraging.ts index d7d4f3c0b1..7eda5225f1 100644 --- a/packages/server/src/game/entity/character/player/skill/impl/foraging.ts +++ b/packages/server/src/game/entity/character/player/skill/impl/foraging.ts @@ -1,15 +1,14 @@ import ResourceSkill from '../resourceskill'; -import ForagingSpots from '../../../../../../../data/foraging.json'; import { Modules } from '@kaetram/common/network'; -import type { ResourceInfo } from '@kaetram/common/types/resource'; import type Player from '../../player'; -import type Resource from '../../../../../globals/impl/resource'; +import type Resource from '../../../../../entity/objects/resource/resource'; +import type { ResourceInfo } from '@kaetram/common/types/resource'; export default class Foraging extends ResourceSkill { public constructor() { - super(Modules.Skills.Foraging, ForagingSpots); + super(Modules.Skills.Foraging); } /** diff --git a/packages/server/src/game/entity/character/player/skill/impl/lumberjacking.ts b/packages/server/src/game/entity/character/player/skill/impl/lumberjacking.ts index b325baf434..041e2920a6 100644 --- a/packages/server/src/game/entity/character/player/skill/impl/lumberjacking.ts +++ b/packages/server/src/game/entity/character/player/skill/impl/lumberjacking.ts @@ -1,17 +1,30 @@ import ResourceSkill from '../resourceskill'; import Item from '../../../../objects/item'; -import Trees from '../../../../../../../data/trees.json'; import Utils from '@kaetram/common/util/utils'; -import ResourceEn from '@kaetram/common/text/en/resource'; +import ResourceText from '@kaetram/common/text/en/resource'; import { Modules } from '@kaetram/common/network'; import type Player from '../../player'; -import type Resource from '../../../../../globals/impl/resource'; +import type Resource from '../../../../../entity/objects/resource/resource'; export default class Lumberjacking extends ResourceSkill { public constructor() { - super(Modules.Skills.Lumberjacking, Trees); + super(Modules.Skills.Lumberjacking); + + this.onExhaust(this.handleExhaust.bind(this)); + } + + /** + * Handles obtaining the resource information and sending it to the superclass + * to process handling the random item rewarding. + * @param player The player that is cutting the tree. + * @param resource The resource belonging to the tree that was cut. + */ + + private handleExhaust(player: Player, resource?: Resource): void { + // Use the superclass logic to handle the random item selection. + super.handleRandomItems(player, resource!.data); } /** @@ -25,9 +38,10 @@ export default class Lumberjacking extends ResourceSkill { let weapon = player.equipment.getWeapon(); // Player's weapon is not a valid lumberjacking weapon. - if (!weapon.isLumberjacking()) return player.notify(ResourceEn.INVALID_WEAPON(this.type)); + if (!weapon.isLumberjacking()) return player.notify(ResourceText.INVALID_WEAPON(this.type)); - if (!player.quests.canCutTreesInTutorial()) return player.notify(ResourceEn.NO_REASON); + // Player is in the tutorial, we want to prevent them from cutting trees. + if (!player.quests.canCutTreesInTutorial()) return player.notify('resource:NO_REASON'); this.interact(player, tree, weapon.lumberjacking); } diff --git a/packages/server/src/game/entity/character/player/skill/impl/mining.ts b/packages/server/src/game/entity/character/player/skill/impl/mining.ts index 31847f4a16..cba84511bd 100644 --- a/packages/server/src/game/entity/character/player/skill/impl/mining.ts +++ b/packages/server/src/game/entity/character/player/skill/impl/mining.ts @@ -1,17 +1,30 @@ import ResourceSkill from '../resourceskill'; import Item from '../../../../objects/item'; -import Rocks from '../../../../../../../data/rocks.json'; import Utils from '@kaetram/common/util/utils'; +import ResourceText from '@kaetram/common/text/en/resource'; import { Modules } from '@kaetram/common/network'; -import ResourceEn from '@kaetram/common/text/en/resource'; import type Player from '../../player'; -import type Resource from '../../../../../globals/impl/resource'; +import type Resource from '../../../../../entity/objects/resource/resource'; export default class Mining extends ResourceSkill { public constructor() { - super(Modules.Skills.Mining, Rocks); + super(Modules.Skills.Mining); + + this.onExhaust(this.handleExhaust.bind(this)); + } + + /** + * Handles obtaining the resource information and sending it to the superclass + * to process handling the random item rewarding. + * @param player The player that is cutting the tree. + * @param resource The resource belonging to the tree that was cut. + */ + + private handleExhaust(player: Player, resource?: Resource): void { + // Use the superclass logic to handle the random item selection. + super.handleRandomItems(player, resource!.data); } /** @@ -25,7 +38,7 @@ export default class Mining extends ResourceSkill { let weapon = player.equipment.getWeapon(); // Player's weapon is not a valid mining weapon. - if (!weapon.isMining()) return player.notify(ResourceEn.INVALID_WEAPON(this.type)); + if (!weapon.isMining()) return player.notify(ResourceText.INVALID_WEAPON(this.type)); // Pass the info onto the super class interact function. this.interact(player, rock, weapon.mining); diff --git a/packages/server/src/game/entity/character/player/skill/resourceskill.ts b/packages/server/src/game/entity/character/player/skill/resourceskill.ts index 38d2d94f1c..050826d81b 100644 --- a/packages/server/src/game/entity/character/player/skill/resourceskill.ts +++ b/packages/server/src/game/entity/character/player/skill/resourceskill.ts @@ -3,18 +3,25 @@ import Skill from './skill'; import Item from '../../../objects/item'; import log from '@kaetram/common/util/log'; -import ResourceEn from '@kaetram/common/text/en/resource'; import Utils from '@kaetram/common/util/utils'; +import ResourceText from '@kaetram/common/text/en/resource'; import { Modules } from '@kaetram/common/network'; -import { Animation } from '@kaetram/common/network/impl'; +import { AnimationPacket } from '@kaetram/common/network/impl'; import type Player from '../player'; -import type Resource from '../../../../globals/impl/resource'; -import type { ResourceData, ResourceInfo } from '@kaetram/common/types/resource'; +import type Resource from '../../../objects/resource/resource'; +import type { ResourceInfo } from '@kaetram/common/types/resource'; + +type ExhaustCallback = (player: Player, resource?: Resource) => void; export default class ResourceSkill extends Skill { private loop?: NodeJS.Timeout | undefined; + private lastClickedResource = ''; // Instance of the last resource the player clicked on. + private lastClickedCount = 0; // Number of times the player has clicked on the resource. + + private exhaustCallback?: ExhaustCallback; + /** * Used to determine if the resources goes to its depleted state after a successful * harvest, or if there are multiple harvests per resource (fishing spots). @@ -22,7 +29,7 @@ export default class ResourceSkill extends Skill { public randomDepletion = false; - public constructor(type: Modules.Skills, private data: ResourceData) { + public constructor(type: Modules.Skills) { super(type); } @@ -41,32 +48,43 @@ export default class ResourceSkill extends Skill { `${player.username} attempted to interact with an exhausted resource.` ); - let resourceInfo = this.data[resource.type]; - // Could not find resource interaction data for the resource. - if (!resourceInfo) + if (!resource.data) return log.warning( `${player.username} attempted to interact with a resource with invalid data: ${resource.type}` ); // Level required for this resource is too high for the yplayer. - if (resourceInfo.levelRequirement > this.level) + if (resource.data.levelRequirement > this.level) return player.notify( - ResourceEn.INVALID_LEVEL(this.type, resourceInfo.levelRequirement) + ResourceText.INVALID_LEVEL(this.type, resource.data.levelRequirement) ); // Unable to interact with the resource if the player hasn't completed the required achievement. if ( - resourceInfo.reqAchievement && - !player.achievements.get(resourceInfo.reqAchievement)?.isFinished() + resource.data.reqAchievement && + !player.achievements.get(resource.data.reqAchievement)?.isFinished() ) - return player.notify(ResourceEn.UNABLE_TO_INTERACT(this.type)); + return player.notify(ResourceText.UNABLE_TO_INTERACT(this.type)); // Unable to interact with the resource if the player hasn't completed the required quest. - if (resourceInfo.reqQuest && !player.quests.get(resourceInfo.reqQuest)?.isFinished()) - return player.notify(ResourceEn.UNABLE_TO_INTERACT(this.type)); + if (resource.data.reqQuest && !player.quests.get(resource.data.reqQuest)?.isFinished()) + return player.notify(ResourceText.UNABLE_TO_INTERACT(this.type)); - if (!this.canHold(player)) return player.notify(ResourceEn.INVENTORY_FULL); + if (!this.canHold(player)) return player.notify('misc:NO_SPACE'); + + // Notification for the player to stop clicking on a resource repeatedly. + if (this.lastClickedResource === resource.instance) { + this.lastClickedCount++; + + if (this.lastClickedCount >= 2) { + player.notify('misc:NO_NEED_CLICK_REPEATEDLY'); + + // Reset the counter. + this.lastClickedCount = 0; + this.lastClickedResource = ''; + } + } else this.lastClickedCount = 0; /** * Stops the existing loop if the player is attempting to interact with the resource @@ -75,42 +93,87 @@ export default class ResourceSkill extends Skill { */ if (this.loop) this.stop(); + // Set the last clicked resource to the current resource. + this.lastClickedResource = resource.instance; + this.loop = setInterval(() => { // Stops the loop when the resource is depleted or the player cannot hold the resource. if (resource.isDepleted() || !this.canHold(player)) return this.stop(); // Send the animation packet to the region player is in. player.sendToRegion( - new Animation({ instance: player.instance, action: Modules.Actions.Attack }) + new AnimationPacket({ + instance: player.instance, + resourceInstance: resource.instance, + action: Modules.Actions.Attack + }) ); // Use probability to check if we can exhaust the resource. - if (this.canExhaustResource(weaponLevel, resourceInfo)) { + if (this.canExhaustResource(weaponLevel, resource.data)) { // Add the logs to the inventory. - player.inventory.add(this.getItem(resourceInfo.item)); + player.inventory.add(this.getItem(resource.data.item)); // Add experience to our skill. - this.addExperience(resourceInfo.experience); + this.addExperience(resource.data.experience); // Increment the statistics for the player. player.statistics.handleSkill(this.type); // If resource has an achievement, attempt to award it if it hasn't been awarded yet. - if (resourceInfo.achievement) - player.achievements.get(resourceInfo.achievement)?.finish(); + if (resource.data.achievement) + player.achievements.get(resource.data.achievement)?.finish(); // If the resource has a quest then we will call the resource callback. - if (resourceInfo.quest) + if (resource.data.quest) player.quests - .get(resourceInfo.quest) - ?.resourceCallback?.(this.type, resource.type); + .get(resource.data.quest) + ?.resourceCallback?.(this.type, resource.key); // Deplete the resource and send the signal to the region if (this.shouldDeplete()) resource.deplete(); + + // Call the exhaust callback after we have successfully exhausted the resource. + this.exhaustCallback?.(player, resource); } }, Modules.Constants.SKILL_LOOP); } + /** + * Handles the random item logic that can be applied to all resources. A resource can have + * a list of random items specified in the configuration file that will be added to the + * player's inventory (or dropped if they don't have space) upon exhausting the resource. + * For example, cutting down a tree has a chance of dropping a fruit. + * @param player The player who has exhausted the resource. + * @param resourceInfo Contains the information about the resource such as the random items. + */ + + protected handleRandomItems(player: Player, resourceInfo: ResourceInfo): void { + // If the resource doesn't have any random items then we can just return. + if (!resourceInfo?.randomItems) return; + + // Grab a random item from the list of random items and calculate the probability. + let randomItem = + resourceInfo.randomItems[Utils.randomInt(0, resourceInfo.randomItems.length - 1)], + chance = Utils.randomInt(0, Modules.Constants.DROP_PROBABILITY) < randomItem?.chance; + + // Probability didn't work out so stop here. + if (!chance) return; + + // Use the superclass `getItem` function to create the item instance since weekend events don't apply. + let item = this.getItem(randomItem.key, player.username); + + // If the player has space in their inventory add the item there, otherwise drop it on the ground. + if (this.canHold(player)) player.inventory.add(item); + else { + // Set the item's position to the player's position. + item.x = player.x; + item.y = player.y; + + player.world.entities.addItem(item); + } + } + /** * Stops the resource interaction loop. Called when the player * successfully depletes the resource or when the resource is depleted @@ -129,11 +192,12 @@ export default class ResourceSkill extends Skill { * Creates an item instance of the item that the resource rewards. * @param key The item key we are creating. * @param count The amount of the item we are creating. + * @param owner Optional parameter to make an item belong to a player. * @returns The newly created item instance. */ - protected getItem(key: string): Item { - return new Item(key, -1, -1, false, 1); + protected getItem(key: string, owner = ''): Item { + return new Item(key, -1, -1, false, 1, {}, owner); } /** @@ -182,4 +246,13 @@ export default class ResourceSkill extends Skill { // 1 in 10 chance. return Utils.randomInt(0, 10) === 4; } + + /** + * Callback for when the resource has been exhausted. This can be + * used by subclasses to apply additional logic after obtaining a resource. + */ + + protected onExhaust(callback: ExhaustCallback): void { + this.exhaustCallback = callback; + } } diff --git a/packages/server/src/game/entity/character/player/skill/skill.ts b/packages/server/src/game/entity/character/player/skill/skill.ts index c103a9b206..3f55ab89cd 100644 --- a/packages/server/src/game/entity/character/player/skill/skill.ts +++ b/packages/server/src/game/entity/character/player/skill/skill.ts @@ -2,7 +2,7 @@ import Formulas from '../../../../../info/formulas'; import { Modules } from '@kaetram/common/network'; -import type { SkillData } from '@kaetram/common/types/skills'; +import type { SkillData } from '@kaetram/common/network/impl/skill'; type ExperienceCallback = ( type: Modules.Skills, diff --git a/packages/server/src/game/entity/character/player/skills.ts b/packages/server/src/game/entity/character/player/skills.ts index 8249874348..eed6c27352 100644 --- a/packages/server/src/game/entity/character/player/skills.ts +++ b/packages/server/src/game/entity/character/player/skills.ts @@ -14,15 +14,16 @@ import Fletching from './skill/impl/fletching'; import Foraging from './skill/impl/foraging'; import Eating from './skill/impl/eating'; import Loitering from './skill/impl/loitering'; +import Alchemy from './skill/impl/alchemy'; import Formulas from '../../../../info/formulas'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { Experience, Points, Skill as SkillPacket } from '@kaetram/common/network/impl'; +import { ExperiencePacket, PointsPacket, SkillPacket } from '@kaetram/common/network/impl'; import type Player from './player'; import type Skill from './skill/skill'; -import type { SerializedSkills, SkillData } from '@kaetram/common/types/skills'; +import type { SerializedSkills, SkillData } from '@kaetram/common/network/impl/skill'; export default class Skills { private loaded = false; @@ -43,6 +44,7 @@ export default class Skills { private foraging: Foraging = new Foraging(); private eating: Eating = new Eating(); private loitering: Loitering = new Loitering(); + private alchemy: Alchemy = new Alchemy(); private skills: { [key: string]: Skill } = { [Modules.Skills.Accuracy]: this.accuracy, @@ -56,11 +58,13 @@ export default class Skills { [Modules.Skills.Fishing]: this.fishing, [Modules.Skills.Cooking]: this.cooking, [Modules.Skills.Smithing]: this.smithing, + // [Modules.Skills.Smelting]: this.smelting, [Modules.Skills.Crafting]: this.crafting, [Modules.Skills.Fletching]: this.fletching, [Modules.Skills.Foraging]: this.foraging, [Modules.Skills.Eating]: this.eating, - [Modules.Skills.Loitering]: this.loitering + [Modules.Skills.Loitering]: this.loitering, + [Modules.Skills.Alchemy]: this.alchemy }; private loadCallback?: () => void; @@ -112,7 +116,7 @@ export default class Skills { // Synchronize the player's level packet. this.player.send( - new Experience(Opcodes.Experience.Sync, { + new ExperiencePacket(Opcodes.Experience.Sync, { instance: this.player.instance, level: this.player.level }) @@ -120,7 +124,7 @@ export default class Skills { // Synchronize mana and hit points. this.player.send( - new Points({ + new PointsPacket({ instance: this.player.instance, hitPoints: this.player.hitPoints.getHitPoints(), maxHitPoints: this.player.hitPoints.getMaxHitPoints(), @@ -160,8 +164,8 @@ export default class Skills { ): void { if (newLevel) { this.player.popup( - 'Skill level up!', - `Congratulations, your ${name} has reached level ${level}!`, + `misc:SKILL_LEVEL_UP`, + `misc:SKILL_LEVEL_UP_DESC;name=${name};level=${level}`, '#9933ff' ); @@ -175,7 +179,7 @@ export default class Skills { if (withInfo) this.player.send( - new Experience(Opcodes.Experience.Skill, { + new ExperiencePacket(Opcodes.Experience.Skill, { instance: this.player.instance, amount: experience, skill: type diff --git a/packages/server/src/game/entity/character/player/statistics.ts b/packages/server/src/game/entity/character/player/statistics.ts index bcc2e52c29..f6fa61098a 100644 --- a/packages/server/src/game/entity/character/player/statistics.ts +++ b/packages/server/src/game/entity/character/player/statistics.ts @@ -11,15 +11,16 @@ export default class Statistics { public mobKills: { [key: string]: number } = {}; public mobExamines: string[] = []; public resources: { [key: string]: number } = {}; + public drops: { [key: string]: number } = {}; - public creationTime = Date.now(); // Time of game's creation. + public creationTime = this.getTime(); // Time of game's creation. public totalTimePlayed = 0; // Total time played in milliseconds. public averageTimePlayed = 0; - public lastLogin = Date.now(); + public lastLogin = this.getTime(); public loginCount = 1; // Class variables for calculating login time, etc. - public loginTime = Date.now(); // Time when player logged in. + public loginTime = this.getTime(); // Time when player logged in. public constructor(private player: Player) {} @@ -34,6 +35,7 @@ export default class Statistics { this.mobKills = data.mobKills || this.mobKills; this.mobExamines = data.mobExamines || this.mobExamines; this.resources = data.resources || this.resources; + this.drops = data.drops || this.drops; this.creationTime = data.creationTime || this.creationTime; this.totalTimePlayed = data.totalTimePlayed || this.totalTimePlayed; @@ -105,6 +107,20 @@ export default class Statistics { } } + /** + * Adds a drop to the player's statistics. This is called when a player + * receives a drop and we are incrementing the amount of items they have + * received of that type. + * @param key The key of the item that was dropped. + * @param count (Optional) The amount of items that were dropped. + */ + + public addDrop(key: string, count = 1): void { + if (!(key in this.drops)) this.drops[key] = count; + + this.drops[key] += count; + } + /** * Calculates the average time played by the player. Think of this as adding * every amount of time the player has been logged in together and dividing @@ -132,7 +148,7 @@ export default class Statistics { public serialize(): StatisticsData { // Serializing also gets treated as a logging out event, so we calculate stuff here. - this.lastLogin = Date.now(); + this.lastLogin = this.getTime(); this.totalTimePlayed += Date.now() - this.loginTime; // add time played to total time played. this.calculateAverageTimePlayed(); @@ -142,6 +158,7 @@ export default class Statistics { mobKills: this.mobKills, mobExamines: this.mobExamines, resources: this.resources, + drops: this.drops, creationTime: this.creationTime, totalTimePlayed: this.totalTimePlayed, averageTimePlayed: this.averageTimePlayed, @@ -150,4 +167,14 @@ export default class Statistics { cheater: this.player.isCheater() }; } + + /** + * Gets the UNIX epoch time in seconds. This is because storing seconds + * is easier for the database (as it can cause later down the line.) + * @returns The current UNIX epoch time in seconds. + */ + + private getTime(): number { + return Math.floor(Date.now() / 1000); + } } diff --git a/packages/server/src/game/entity/character/player/trade.ts b/packages/server/src/game/entity/character/player/trade.ts index fa24286bf2..e6b8c55940 100644 --- a/packages/server/src/game/entity/character/player/trade.ts +++ b/packages/server/src/game/entity/character/player/trade.ts @@ -1,7 +1,7 @@ import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; import { Opcodes } from '@kaetram/common/network'; -import { Trade as TradePacket } from '@kaetram/common/network/impl'; +import { TradePacketPacket } from '@kaetram/common/network/impl'; import type Player from './player'; import type Item from '../../objects/item'; @@ -60,7 +60,7 @@ export default class Trade { let offerIndex = this.getEmptySlot(); if (offerIndex === -1) - return this.player.notify(`You cannot add any more items to the trade.`, '', 'TRADE'); + return this.player.notify('misc:CANNOT_ADD_ITEMS_TRADE', '', 'TRADE'); // Grab the slot from the inventory. let slot = this.player.inventory.get(index); @@ -75,7 +75,7 @@ export default class Trade { if (!item) return; // Undroppable items are special items that cannot be traded. - if (item.undroppable) return this.player.notify(`You cannot trade this item.`, '', 'TRADE'); + if (item.undroppable) return this.player.notify('misc:CANNOT_TRADE_ITEM', '', 'TRADE'); // Handle existing items in the trade. let existingIndex = this.hasItem(slot.key); @@ -202,8 +202,8 @@ export default class Trade { this.accepted = true; // Relay to the client that one of the parties accepted the trade. - this.acceptCallback?.('You have accepted the trade.'); - this.getActiveTrade()?.acceptCallback?.('The other player has accepted the trade.'); + this.acceptCallback?.('misc:ACCEPTED_TRADE'); + this.getActiveTrade()?.acceptCallback?.('misc:ACCEPTED_TRADE_OTHER'); } /** @@ -218,31 +218,27 @@ export default class Trade { if (this.player.getDistance(target) > 1) return; // Prevent hollow admins from trading. - if (this.player.isHollowAdmin()) - return this.player.notify(`As an administrator you cannot influence the economy.`); + if (this.player.isHollowAdmin()) return this.player.notify('misc:CANNOT_TRADE_ADMIN'); - if (target.isHollowAdmin()) - return this.player.notify(`That player is an administrator and cannot be traded with.`); + if (target.isHollowAdmin()) return this.player.notify('misc:CANNOT_TRADE_ADMIN_OTHER'); // Prevent cheaters from trading. - if (this.player.isCheater()) - return this.player.notify('Sorry but cheaters are not allowed to trade.'); + if (this.player.isCheater()) return this.player.notify('misc:CANNOT_TRADE_CHEATER'); - if (target.isCheater()) - return this.player.notify('That player is a cheater, he might sell you contraband!'); + if (target.isCheater()) return this.player.notify('misc:CANNOT_TRADE_CHEATER_OTHER'); if (target.trade.lastRequest === this.player.instance) return this.open(target); this.lastRequest = target.instance; target.notify( - `${Utils.formatName(this.player.username)} has requested to trade with you.`, + `misc:TRADE_REQUEST_OTHER;username=${Utils.formatName(this.player.username)}`, 'rgb(84, 224, 255)', 'TRADE' ); this.player.notify( - `You have requested to trade with ${Utils.formatName(target.username)}.`, + `misc:TRADE_REQUEST;username=${Utils.formatName(target.username)}`, '', 'TRADE' ); @@ -286,10 +282,10 @@ export default class Trade { ); // Close the trade for the player. - this.player.send(new TradePacket(Opcodes.Trade.Close, {})); + this.player.send(new TradePacketPacket(Opcodes.Trade.Close, {})); // Close the trade for the other party if they are still trading. - this.activeTrade?.send(new TradePacket(Opcodes.Trade.Close, {})); + this.activeTrade?.send(new TradePacketPacket(Opcodes.Trade.Close, {})); // Clear the active trade for both players. this.getActiveTrade()?.clear(); // Clear first so it's not undefined. @@ -309,12 +305,8 @@ export default class Trade { this.acceptCallback?.(); this.getActiveTrade()?.acceptCallback?.(); - this.activeTrade?.notify( - `The other player does not have enough space in their inventory.`, - '', - 'TRADE' - ); - return this.player.notify(`You do not have enough space in your inventory.`, '', 'TRADE'); + this.activeTrade?.notify('misc:NO_SPACE_OTHER', '', 'TRADE'); + return this.player.notify('misc:NO_SPACE', '', 'TRADE'); } /** @@ -330,7 +322,7 @@ export default class Trade { let flagged = this.removeItemsBeforeTrade(); if (flagged) { - this.player.notify(`Please report a bug error, an error has occurred.`, '', 'TRADE'); + this.player.notify('misc:PLEASE_REPORT_BUG', '', 'TRADE'); log.warning( `Trade exchange failed for ${this.player.username} and ${this.activeTrade?.username}.` ); @@ -342,12 +334,12 @@ export default class Trade { // This is just a mini easter egg I like to include with basically everything at this point. if (totalItems === 0) { - this.player.notify(`Yo why are y'all trading nothing?`, '', 'TRADE'); - this.activeTrade?.notify(`Yo why are y'all trading nothing?`, '', 'TRADE'); + this.player.notify('misc:TRADE_EMPTY', '', 'TRADE'); + this.activeTrade?.notify('misc:TRADE_EMPTY', '', 'TRADE'); } else { // Notify both that the trade is complete. - this.player.notify(`Thank you for using Kaetram trading system!`, '', 'TRADE'); - this.activeTrade?.notify(`Thank you for using Kaetram trading system!`, '', 'TRADE'); + this.player.notify('misc:TRADE_COMPLETE', '', 'TRADE'); + this.activeTrade?.notify('misc:TRADE_COMPLETE', '', 'TRADE'); log.trade(this.produceTradeLog()); } diff --git a/packages/server/src/game/entity/entity.ts b/packages/server/src/game/entity/entity.ts index 4b98a1b195..dee55af3c4 100644 --- a/packages/server/src/game/entity/entity.ts +++ b/packages/server/src/game/entity/entity.ts @@ -1,7 +1,7 @@ import Character from './character/character'; -import { Modules } from '@kaetram/common/network'; import Utils from '@kaetram/common/util/utils'; +import { Modules } from '@kaetram/common/network'; import type NPC from './npc/npc'; import type Item from './objects/item'; @@ -10,6 +10,11 @@ import type Pet from './character/pet/pet'; import type Effect from './objects/effect'; import type Projectile from './objects/projectile'; import type Player from './character/player/player'; +import type LootBag from './objects/lootbag'; +import type Tree from './objects/resource/impl/tree'; +import type Rock from './objects/resource/impl/rock'; +import type FishSpot from './objects/resource/impl/fishspot'; +import type Foraging from './objects/resource/impl/foraging'; import type { EntityData, EntityDisplayInfo } from '@kaetram/common/types/entity'; type MovementCallback = (x: number, y: number) => void; @@ -21,7 +26,7 @@ type MovementCallback = (x: number, y: number) => void; */ abstract class Entity { - private type: number; // EntityType + public type: number; // EntityType public name = ''; public x = -1; @@ -41,7 +46,12 @@ abstract class Entity { public movementCallback?: MovementCallback; - protected constructor(public instance = '', public key = '', x: number, y: number) { + protected constructor( + public instance = '', + public key = '', + x: number, + y: number + ) { this.type = Utils.getEntityType(this.instance); this.updatePosition(x, y); @@ -213,7 +223,7 @@ abstract class Entity { */ public isMob(): this is Mob { - return this.type === Modules.EntityType.Mob; + return this.type === (Modules.EntityType.Mob as number); } /** @@ -222,7 +232,7 @@ abstract class Entity { */ public isNPC(): this is NPC { - return this.type === Modules.EntityType.NPC; + return this.type === (Modules.EntityType.NPC as number); } /** @@ -231,7 +241,16 @@ abstract class Entity { */ public isItem(): this is Item { - return this.type === Modules.EntityType.Item; + return this.type === (Modules.EntityType.Item as number); + } + + /** + * Checks whether the entity's type is a loot bag. + * @returns Whether the type is equal to the EntityType loot bag. + */ + + public isLootBag(): this is LootBag { + return this.type === (Modules.EntityType.LootBag as number); } /** @@ -240,7 +259,7 @@ abstract class Entity { */ public isChest(): this is Item { - return this.type === Modules.EntityType.Chest; + return this.type === (Modules.EntityType.Chest as number); } /** @@ -249,7 +268,7 @@ abstract class Entity { */ public isPlayer(): this is Player { - return this.type === Modules.EntityType.Player; + return this.type === (Modules.EntityType.Player as number); } /** @@ -258,7 +277,7 @@ abstract class Entity { */ public isProjectile(): this is Projectile { - return this.type === Modules.EntityType.Projectile; + return this.type === (Modules.EntityType.Projectile as number); } /** @@ -267,7 +286,7 @@ abstract class Entity { */ public isPet(): this is Pet { - return this.type === Modules.EntityType.Pet; + return this.type === (Modules.EntityType.Pet as number); } /** @@ -276,7 +295,52 @@ abstract class Entity { */ public isEffect(): this is Effect { - return this.type === Modules.EntityType.Effect; + return this.type === (Modules.EntityType.Effect as number); + } + + /** + * Checks whether or not the entity is a tree. + * @returns Whether the type is equal to the EntityType tree. + */ + + public isTree(): this is Tree { + return this.type === (Modules.EntityType.Tree as number); + } + + /** + * Checks whether or not the entity is a rock. + * @returns Whether the type is equal to the EntityType rock. + */ + + public isRock(): this is Rock { + return this.type === (Modules.EntityType.Rock as number); + } + + /** + * Checks whether or not the entity is a fish spot. + * @returns Whether the type is equal to the EntityType fish spot. + */ + + public isFishSpot(): this is FishSpot { + return this.type === (Modules.EntityType.FishSpot as number); + } + + /** + * Checks whether or not the entity is a foraging spot. + * @returns Whether the type is equal to the EntityType foraging spot. + */ + + public isForaging(): this is Foraging { + return this.type === (Modules.EntityType.Foraging as number); + } + + /** + * Checks whether or not the entity is a resource. + * @returns Whether the entity is a tree, rock, fish spot, or foraging spot. + */ + + public isResource(): boolean { + return this.isTree() || this.isRock() || this.isFishSpot() || this.isForaging(); } /** diff --git a/packages/server/src/game/entity/npc/npc.ts b/packages/server/src/game/entity/npc/npc.ts index b77db086f6..3a0d8dd570 100644 --- a/packages/server/src/game/entity/npc/npc.ts +++ b/packages/server/src/game/entity/npc/npc.ts @@ -3,15 +3,15 @@ import Entity from '../entity'; import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; -import { NPC as NPCPacket } from '@kaetram/common/network/impl'; +import { NPCPacket } from '@kaetram/common/network/impl'; import { Modules, Opcodes } from '@kaetram/common/network'; import { SpecialEntityTypes } from '@kaetram/common/network/modules'; -import type { EntityDisplayInfo } from '@kaetram/common/types/entity'; -import type { NPCData } from '@kaetram/common/types/npc'; import type Player from '../character/player/player'; +import type { NPCData } from '@kaetram/common/network/impl/npc'; +import type { EntityDisplayInfo } from '@kaetram/common/types/entity'; -interface RawData { +interface RawNPCData { [key: string]: NPCData; } @@ -28,7 +28,7 @@ export default class NPC extends Entity { public constructor(key: string, x: number, y: number) { super(Utils.createInstance(Modules.EntityType.NPC), key, x, y); - this.data = (rawData as RawData)[key]; + this.data = (rawData as RawNPCData)[key]; if (!this.data) { log.error(`[NPC] Could not find data for ${key}.`); @@ -103,6 +103,23 @@ export default class NPC extends Entity { return ''; } + /** + * Gets the exclamation sign that should be displayed above the NPC. + * @param player The player for which we are checking the NPC's status. + * @returns The string of the exclamation sign. + */ + + private getExclamation(player?: Player): string { + if (player) { + let quest = player.quests.getQuestFromNPC(this); + + if (quest?.isNPCForStage(player, this)) return 'blue'; + if (player?.achievements.getAchievementFromEntity(this)) return 'achievement'; + } + + return ''; + } + /** * Grabs the display info for the NPC. * @param player Optional paramater to grab the display based on the player. @@ -112,7 +129,8 @@ export default class NPC extends Entity { public override getDisplayInfo(player?: Player): EntityDisplayInfo { return { instance: this.instance, - colour: this.getNameColour(player) + colour: this.getNameColour(player), + exclamation: this.getExclamation(player) }; } diff --git a/packages/server/src/game/entity/objects/effect.ts b/packages/server/src/game/entity/objects/effect.ts index c0afdc937d..56ae5396bb 100644 --- a/packages/server/src/game/entity/objects/effect.ts +++ b/packages/server/src/game/entity/objects/effect.ts @@ -1,10 +1,45 @@ import Entity from '../entity'; +import rawData from '../../../../data/effectentities.json'; import Utils from '@kaetram/common/util/utils'; import { Modules } from '@kaetram/common/network'; +import log from '@kaetram/common/util/log'; + +interface EffectEntityData { + duration?: number; +} + +interface RawData { + [key: string]: EffectEntityData; +} export default class Effect extends Entity { + private data: EffectEntityData; + + private duration = 4000; + + private despawnCallback?: () => void; + public constructor(key: string, x: number, y: number) { super(Utils.createInstance(Modules.EntityType.Effect), key, x, y); + + this.data = (rawData as RawData)[key]; + + if (!this.data) { + log.error(`[NPC] Could not find data for ${key}.`); + return; + } + + this.duration = this.data.duration ?? this.duration; + + setTimeout(() => this.despawnCallback?.(), this.duration); + } + + /** + * Callback for when the entity has lived long enough and needs to be despawned. + */ + + public onDespawn(callback: () => void): void { + this.despawnCallback = callback; } } diff --git a/packages/server/src/game/entity/objects/item.ts b/packages/server/src/game/entity/objects/item.ts index ff9b646a2d..3ad5ceae97 100644 --- a/packages/server/src/game/entity/objects/item.ts +++ b/packages/server/src/game/entity/objects/item.ts @@ -3,13 +3,13 @@ import Entity from '../entity'; import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; -import { Modules } from '@kaetram/common/network'; import PluginIndex from '@kaetram/server/data/plugins/items'; +import { Modules } from '@kaetram/common/network'; +import type Player from '../character/player/player'; import type { EntityData } from '@kaetram/common/types/entity'; -import type { Bonuses, Enchantments, ItemData, Stats } from '@kaetram/common/types/item'; import type { Plugin } from '@kaetram/server/data/plugins/items'; -import type Player from '../character/player/player'; +import type { Bonuses, Enchantments, ItemData, Light, Stats } from '@kaetram/common/types/item'; interface RawData { [key: string]: ItemData; @@ -48,9 +48,12 @@ export default class Item extends Entity { // Equipment variables public attackRate: number = Modules.Defaults.ATTACK_RATE; + public twoHanded = false; public poisonous = false; public freezing = false; public burning = false; + + public light: Light = {}; public weaponType = ''; // Bowl variables @@ -125,9 +128,11 @@ export default class Item extends Entity { this.defenseStats = this.data.defenseStats || this.defenseStats; this.bonuses = this.data.bonuses || this.bonuses; this.attackRate = this.data.attackRate || this.attackRate; + this.twoHanded = this.data.twoHanded || this.twoHanded; this.poisonous = this.data.poisonous || this.poisonous; this.freezing = this.data.freezing || this.freezing; this.burning = this.data.burning || this.burning; + this.light = this.data.light || this.light; this.movementModifier = this.data.movementModifier || this.movementModifier; this.lumberjacking = this.data.lumberjacking || this.lumberjacking; this.mining = this.data.mining || this.mining; @@ -255,7 +260,7 @@ export default class Item extends Entity { if (skill.level < requirement) { // If the player's skill level is less than the requirement. player.notify( - `Your ${skill.name} level must be at least ${requirement} to equip this item.` + `item:SKILL_LEVEL_REQUIREMENT_EQUIP;skill=${skill.name};level=${requirement}` ); return false; } else return true; // If the player's skill fulfills the requirement. @@ -263,13 +268,13 @@ export default class Item extends Entity { // Default to using the total level for the requirement. if (player.level < requirement) { - player.notify(`Your total level must be at least ${requirement} to equip this item.`); + player.notify(`item:TOTAL_LEVEL_REQUIREMENT;level=${requirement}`); return false; } // Check if the item has an achievement requirement and if it is completed. if (this.achievement && !player.achievements.get(this.achievement)?.isFinished()) { - player.notify(`This item requires a secret achievement to wield.`); + player.notify(`item:REQUIRES_ACHIEVEMENT`); return false; } @@ -285,7 +290,7 @@ export default class Item extends Entity { // Check if the quest is finished. if (!quest.isFinished()) { - player.notify(`You must complete ${quest.name} to wield this item.`); + player.notify(`item:REQUIRES_QUEST;quest=${quest.name}`); return false; } } @@ -308,12 +313,12 @@ export default class Item extends Entity { return Modules.Equipment.Chestplate; } - case 'legs': { - return Modules.Equipment.Legs; + case 'legplates': { + return Modules.Equipment.Legplates; } case 'skin': { - return Modules.Equipment.Skin; + return Modules.Equipment.ArmourSkin; } case 'weapon': @@ -341,6 +346,14 @@ export default class Item extends Entity { case 'arrow': { return Modules.Equipment.Arrows; } + + case 'shield': { + return Modules.Equipment.Shield; + } + + case 'cape': { + return Modules.Equipment.Cape; + } } } @@ -440,6 +453,14 @@ export default class Item extends Entity { ]; } + case 'scythe': { + return [ + Modules.AttackStyle.Slash, + Modules.AttackStyle.Crush, + Modules.AttackStyle.Defensive + ]; + } + case 'bow': { return [ Modules.AttackStyle.Accurate, @@ -547,20 +568,24 @@ export default class Item extends Entity { */ public isEquippable(): boolean { - return ( - this.itemType === 'helmet' || - this.itemType === 'chestplate' || - this.itemType === 'legs' || - this.itemType === 'skin' || - this.itemType === 'weapon' || - this.itemType === 'weaponarcher' || - this.itemType === 'weaponmagic' || - this.itemType === 'weaponskin' || - this.itemType === 'pendant' || - this.itemType === 'boots' || - this.itemType === 'ring' || - this.itemType === 'arrow' - ); + let types = [ + 'helmet', + 'chestplate', + 'legplates', + 'skin', + 'weapon', + 'weaponarcher', + 'weaponmagic', + 'weaponskin', + 'pendant', + 'boots', + 'ring', + 'arrow', + 'shield', + 'cape' + ]; + + return types.includes(this.itemType); } /** @@ -613,6 +638,23 @@ export default class Item extends Entity { return this.pet !== ''; } + /** + * Checks whether the weapon type is a bow. + * @returns Whether or not the item is a bow. + */ + + public isBow(): boolean { + return this.weaponType === 'bow'; + } + + /** + * @returns Whether or not the equipment is two handed. + */ + + public isTwoHanded(): boolean { + return this.twoHanded; + } + /** * Sets an enchantment onto an item or updates the level if it already exists. * @param id The id of the enchantment. diff --git a/packages/server/src/game/entity/objects/lootbag.ts b/packages/server/src/game/entity/objects/lootbag.ts index dfb8353533..08f89165da 100644 --- a/packages/server/src/game/entity/objects/lootbag.ts +++ b/packages/server/src/game/entity/objects/lootbag.ts @@ -1,10 +1,14 @@ import Entity from '../entity'; +import log from '@kaetram/common/util/log'; import Utils from '@kaetram/common/util/utils'; -import { Modules } from '@kaetram/common/network'; +import { Modules, Opcodes } from '@kaetram/common/network'; +import { LootBagPacket } from '@kaetram/common/network/impl'; -import type Player from '../character/player/player'; import type Item from './item'; +import type Player from '../character/player/player'; +import type { SlotData } from '@kaetram/common/types/slot'; +import type World from '../../world'; /** * The loot bag functions similarly to an item, it drops on the ground and floats. @@ -24,7 +28,13 @@ export default class LootBag extends Entity { private blinkTimeout?: NodeJS.Timeout | undefined; private destroyTimeout?: NodeJS.Timeout | undefined; - public constructor(x: number, y: number, private owner: string, items: Item[]) { + public constructor( + private world: World, + x: number, + y: number, + public owner: string, + items: Item[] + ) { super(Utils.createInstance(Modules.EntityType.LootBag), 'lootbag', x, y); // Iterate through the items and add them to the loot bag. @@ -34,7 +44,14 @@ export default class LootBag extends Entity { this.timer(); } + /** + * Removes all the timeouts and creates a callback to + * remove the entity from the world. + */ + private destroy(): void { + this.close(); + // Clear the timeouts. clearTimeout(this.blinkTimeout!); clearTimeout(this.destroyTimeout!); @@ -73,7 +90,19 @@ export default class LootBag extends Entity { */ public open(player: Player): void { - // + // Prevent cheating and packet manipulation. + if (this.getDistance(player) > 1) + return log.warning( + `open(): Player ${player.username} tried to open a loot bag that was too far away.` + ); + + player.activeLootBag = this.instance; + + player.send( + new LootBagPacket(Opcodes.LootBag.Open, { + items: this.getItems() + }) + ); } /** @@ -84,7 +113,21 @@ export default class LootBag extends Entity { * player is requesting to take. */ - public take(player: Player, index: number): void { + public take(player: Player, index: number, count = 1): void { + if (this.instance !== player.activeLootBag) + return log.warning( + `Player ${player.username} tried to take an item from a loot bag without opening it.` + ); + + // Double check that the player has access to the loot bag. + if (!this.isOwner(player.username)) return player.notify(`item:CANNOT_ACCESS_LOOTBAG`); + + // Verify that the player is close enough to the lootbag. + if (this.getDistance(player) > 1) + return log.warning( + `take(): Player ${player.username} tried to take an item from a loot bag that was too far away.` + ); + let item = this.container[index]; // This is to prevent taking items at the same time/that don't exist. @@ -97,7 +140,10 @@ export default class LootBag extends Entity { */ if (this.owner && this.owner !== player.username) - return player.notify(`You cannot access this loot bag right now.`); + return player.notify(`item:CANNOT_ACCESS_LOOTBAG`); + + // Ensure the player has enough space in their inventory. + if (!player.inventory.hasSpace()) return player.notify(`misc:NO_SPACE`); // Removes the item from the loot bag. delete this.container[index]; @@ -107,20 +153,46 @@ export default class LootBag extends Entity { // Destroy the loot bag if it is empty. if (this.isEmpty()) this.destroy(); + else this.sendTakePacket(index); + } + + /** + * Sends a packet to all the players nearby (who may have the loot bag open) + * to close the loot bag interface. + * @param player The player about which we are sending the packet. + */ + + public close(): void { + this.world.network.sendToSurroundingRegions( + this.region, + new LootBagPacket(Opcodes.LootBag.Close, {}) + ); + } + + /** + * Sends a packet to the nearby regions of the loot bag regarding + * which item in the lootbag was taken. + * @param index The index of the lootbag item that was taken. + */ + + public sendTakePacket(index: number): void { + this.world.network.sendToSurroundingRegions( + this.region, + new LootBagPacket(Opcodes.LootBag.Take, { index }) + ); } /** * Used to limit actions to the owner of the loot bag. If no owner * is set then the loot bag is freely accessible from any player. - * @param instance The instance of the player that is attempting to - * access the loot bag. + * @param username The username of the owner of the loot bag. * @returns Whether or not the player is the owner of the loot bag. */ - public isOwner(instance: string): boolean { + public isOwner(username: string): boolean { if (!this.owner) return true; - return this.owner === instance; + return this.owner === username; } /** @@ -132,6 +204,32 @@ export default class LootBag extends Entity { return Object.keys(this.container).length === 0; } + /** + * Obtains the list of items in a simple array format that is then + * read by the client and displayed in the loot bag menu. We convert + * each item to a simple SlotData object. + * @returns The list of items in the loot bag in the SlotData format. + */ + + private getItems(): SlotData[] { + let items: SlotData[] = []; + + for (let i in this.container) { + let item = this.container[i]; + + if (!item) continue; + + items.push({ + index: parseInt(i), + key: item.key, + count: item.count, + enchantments: item.enchantments + }); + } + + return items; + } + /** * Callback for when the loot bag has been emptied. Used for * removing the entity from the world and relaying that diff --git a/packages/server/src/game/entity/objects/projectile.ts b/packages/server/src/game/entity/objects/projectile.ts index 3e027d36b7..c561695b92 100644 --- a/packages/server/src/game/entity/objects/projectile.ts +++ b/packages/server/src/game/entity/objects/projectile.ts @@ -1,16 +1,20 @@ import Entity from '../entity'; -import { Modules } from '@kaetram/common/network'; import Utils from '@kaetram/common/util/utils'; +import { Modules } from '@kaetram/common/network'; -import type { EntityData } from '@kaetram/common/types/entity'; -import type Character from '../character/character'; import type Hit from '../character/combat/hit'; +import type Character from '../character/character'; +import type { EntityData } from '@kaetram/common/types/entity'; export default class Projectile extends Entity { private impactCallback?: () => void; - public constructor(public owner: Character, public target: Character, public hit: Hit) { + public constructor( + public owner: Character, + public target: Character, + public hit: Hit + ) { super( Utils.createInstance(Modules.EntityType.Projectile), owner.getProjectileName(), @@ -57,8 +61,7 @@ export default class Projectile extends Entity { data.ownerInstance = this.owner.instance; data.targetInstance = this.target.instance; - data.damage = this.hit.getDamage() || 0; - data.hitType = this.hit.type; + data.hit = this.hit.serialize(); return data; } diff --git a/packages/server/src/game/entity/objects/resource/impl/fishspot.ts b/packages/server/src/game/entity/objects/resource/impl/fishspot.ts new file mode 100644 index 0000000000..528b0871cb --- /dev/null +++ b/packages/server/src/game/entity/objects/resource/impl/fishspot.ts @@ -0,0 +1,13 @@ +import Resource from '../resource'; +import fishSpots from '../../../../../../data/fishing.json'; + +import Utils from '@kaetram/common/util/utils'; +import { Modules } from '@kaetram/common/network'; + +export default class FishSpot extends Resource { + public constructor(key: string, x: number, y: number) { + super(Utils.createInstance(Modules.EntityType.FishSpot), key, x, y); + + this.setData(fishSpots[key as keyof typeof fishSpots]); + } +} diff --git a/packages/server/src/game/entity/objects/resource/impl/foraging.ts b/packages/server/src/game/entity/objects/resource/impl/foraging.ts new file mode 100644 index 0000000000..5af6944f64 --- /dev/null +++ b/packages/server/src/game/entity/objects/resource/impl/foraging.ts @@ -0,0 +1,13 @@ +import Resource from '../resource'; +import foragingSpots from '../../../../../../data/foraging.json'; + +import Utils from '@kaetram/common/util/utils'; +import { Modules } from '@kaetram/common/network'; + +export default class Foraging extends Resource { + public constructor(key: string, x: number, y: number) { + super(Utils.createInstance(Modules.EntityType.Foraging), key, x, y); + + this.setData(foragingSpots[key as keyof typeof foragingSpots]); + } +} diff --git a/packages/server/src/game/entity/objects/resource/impl/rock.ts b/packages/server/src/game/entity/objects/resource/impl/rock.ts new file mode 100644 index 0000000000..6922f028cf --- /dev/null +++ b/packages/server/src/game/entity/objects/resource/impl/rock.ts @@ -0,0 +1,13 @@ +import Resource from '../resource'; +import rocks from '../../../../../../data/rocks.json'; + +import Utils from '@kaetram/common/util/utils'; +import { Modules } from '@kaetram/common/network'; + +export default class Rock extends Resource { + public constructor(key: string, x: number, y: number) { + super(Utils.createInstance(Modules.EntityType.Rock), key, x, y); + + this.setData(rocks[key as keyof typeof rocks]); + } +} diff --git a/packages/server/src/game/entity/objects/resource/impl/tree.ts b/packages/server/src/game/entity/objects/resource/impl/tree.ts new file mode 100644 index 0000000000..38979b81b4 --- /dev/null +++ b/packages/server/src/game/entity/objects/resource/impl/tree.ts @@ -0,0 +1,13 @@ +import Resource from '../resource'; +import trees from '../../../../../../data/trees.json'; + +import Utils from '@kaetram/common/util/utils'; +import { Modules } from '@kaetram/common/network'; + +export default class Tree extends Resource { + public constructor(key: string, x: number, y: number) { + super(Utils.createInstance(Modules.EntityType.Tree), key, x, y); + + this.setData(trees[key as keyof typeof trees]); + } +} diff --git a/packages/server/src/game/entity/objects/resource/resource.ts b/packages/server/src/game/entity/objects/resource/resource.ts new file mode 100644 index 0000000000..8f735ac7a0 --- /dev/null +++ b/packages/server/src/game/entity/objects/resource/resource.ts @@ -0,0 +1,121 @@ +import Entity from '../../entity'; + +import { Modules } from '@kaetram/common/network'; + +import type { ResourceEntityData, ResourceInfo } from '@kaetram/common/types/resource'; + +export default abstract class Resource extends Entity { + // Amount of time it takes for the resource to respawn. + protected respawnTime: number = Modules.Constants.RESOURCE_RESPAWN; + + // Empty initialization for the resource info, subclasses will override this. + public data: ResourceInfo = { + levelRequirement: 1, + experience: 0, + difficulty: 0, + item: '' + }; + + // The state of the resource + public state: Modules.ResourceState = Modules.ResourceState.Default; + + // Callbacks for when the resource state changes. + private respawnTimeout?: NodeJS.Timeout | undefined; + private stateCallback?: () => void; + + public constructor(instance: string, key: string, x: number, y: number) { + super(instance, key, x, y); + } + + /** + * Depletes a resource by updating its state. We create a respawn + * timeout that respawns the resource and updates the nearby + * region when the timeout expires. + */ + + public deplete(): void { + // Cannot cut a tree that's already cut. + if (this.respawnTimeout) return; + + this.setState(Modules.ResourceState.Depleted); + + // Reset the tree once the timeout expires. + this.respawnTimeout = setTimeout(() => { + this.setState(Modules.ResourceState.Default); + + this.respawnTimeout = undefined; + }, this.respawnTime); + } + + /** + * Default implementation for respawn time. Each subsequent entity that extends + * this class will override the respawn time with their own implementation. + * @returns Default respawn time for this resource abstract. + */ + + public getRespawnTime(): number { + return this.respawnTime; + } + + /** + * Checks whether the resource is depleted or not. + * @returns If the current state is that of a depleted resource state. + */ + + public isDepleted(): boolean { + return this.state === Modules.ResourceState.Depleted; + } + + /** + * Updates the state of the resource and creates a callback. + * @param state The new state of the resource. + */ + + private setState(state: Modules.ResourceState): void { + this.state = state; + + this.stateCallback?.(); + } + + /** + * Updates the respawn time of the resource. + * @param time New time (in milliseconds) for the resource to respawn. + */ + + public setRespawnTime(time = this.getRespawnTime()): void { + this.respawnTime = time; + } + + /** + * Updates the resource data and applies the new name. + * @param data The new data to apply to the resource. + */ + + protected setData(data: ResourceInfo): void { + this.data = data; + + this.name = data.name ?? this.name; + } + + /** + * Override for the entity serialization to also include the state + * of the resource currently. + * @returns A serialized version of the resource to be rendered on the client side. + */ + + public override serialize(): ResourceEntityData { + let data = super.serialize() as ResourceEntityData; + + data.state = this.state; + + return data; + } + + /** + * Callback for when a resource undergoes a state change. + */ + + public onStateChange(callback: () => void): void { + this.stateCallback = callback; + } +} diff --git a/packages/server/src/game/globals/fishspots.ts b/packages/server/src/game/globals/fishspots.ts deleted file mode 100644 index 781c186c5f..0000000000 --- a/packages/server/src/game/globals/fishspots.ts +++ /dev/null @@ -1,24 +0,0 @@ -import Resources from './resources'; - -import log from '@kaetram/common/util/log'; - -import type World from '../world'; - -export default class FishSpots extends Resources { - public constructor(world: World) { - super(world, world.map.fishSpots); - } - - /** - * Override for the resource loading function to display - * debug message of how many trees were loaded. - */ - - protected override load(): void { - super.load(); - - let amount = Object.keys(this.resources).length; - - log.info(`Loaded ${amount} fishing spot${amount > 1 ? 's' : ''}.`); - } -} diff --git a/packages/server/src/game/globals/foraging.ts b/packages/server/src/game/globals/foraging.ts deleted file mode 100644 index 75bfbe630a..0000000000 --- a/packages/server/src/game/globals/foraging.ts +++ /dev/null @@ -1,24 +0,0 @@ -import Resources from './resources'; - -import log from '@kaetram/common/util/log'; - -import type World from '../world'; - -export default class Foraging extends Resources { - public constructor(world: World) { - super(world, world.map.foraging); - } - - /** - * Override for the resource loading function to display - * debug message of how many trees were loaded. - */ - - protected override load(): void { - super.load(); - - let amount = Object.keys(this.resources).length; - - log.info(`Loaded ${amount} foraging spot${amount > 1 ? 's' : ''}.`); - } -} diff --git a/packages/server/src/game/globals/globals.ts b/packages/server/src/game/globals/globals.ts index 59cefb4740..e924d3cca9 100644 --- a/packages/server/src/game/globals/globals.ts +++ b/packages/server/src/game/globals/globals.ts @@ -1,9 +1,5 @@ import Lights from './lights'; import Signs from './signs'; -import Trees from './trees'; -import Rocks from './rocks'; -import FishSpots from './fishspots'; -import Foraging from './foraging'; import type World from '../world'; @@ -13,54 +9,14 @@ import type World from '../world'; */ export default class Globals { - private trees: Trees; - private rocks: Rocks; - private fishSpots: FishSpots; - private foraging: Foraging; private lights: Lights; private signs: Signs; public constructor(private world: World) { - this.trees = new Trees(this.world); - this.rocks = new Rocks(this.world); - this.fishSpots = new FishSpots(this.world); - this.foraging = new Foraging(this.world); this.lights = new Lights(this.world.map); this.signs = new Signs(this.world.map); } - /** - * @returns The trees handler object. - */ - - public getTrees(): Trees { - return this.trees; - } - - /** - * @returns The rocks handler object. - */ - - public getRocks(): Rocks { - return this.rocks; - } - - /** - * @returns The fishing spots handler object. - */ - - public getFishingSpots(): FishSpots { - return this.fishSpots; - } - - /** - * @returns The foraging handler object. - */ - - public getForaging(): Foraging { - return this.foraging; - } - /** * @returns Returns the signs handler object. */ diff --git a/packages/server/src/game/globals/impl/light.ts b/packages/server/src/game/globals/impl/light.ts index cd45d134ed..c356a02b3b 100644 --- a/packages/server/src/game/globals/impl/light.ts +++ b/packages/server/src/game/globals/impl/light.ts @@ -1,4 +1,4 @@ -import type { SerializedLight } from '@kaetram/common/types/light'; +import type { SerializedLight } from '@kaetram/common/network/impl/overlay'; export default class Light { /** @@ -15,9 +15,11 @@ export default class Light { public id: number, public x: number, public y: number, - public colour = 'rgba(0, 0, 0, 0.3)', + public colour = 'rgba(0, 0, 0, 0.2)', public diffuse = 0.2, - public distance = 100 + public distance = 100, + public flickerSpeed = 300, // Use -1 to disable flickering. + public flickerIntensity = 1 ) {} /** @@ -27,11 +29,14 @@ export default class Light { public serialize(): SerializedLight { return { + instance: `${this.id}`, x: this.x, y: this.y, colour: this.colour, diffuse: this.diffuse, - distance: this.distance + distance: this.distance, // Temporarily hardcoded until distance bug is fixed. + flickerSpeed: this.flickerSpeed, + flickerIntensity: this.flickerIntensity }; } } diff --git a/packages/server/src/game/globals/impl/resource.ts b/packages/server/src/game/globals/impl/resource.ts deleted file mode 100644 index 2394dd94e7..0000000000 --- a/packages/server/src/game/globals/impl/resource.ts +++ /dev/null @@ -1,170 +0,0 @@ -import Trees from '../../../../data/trees.json'; -import Rocks from '../../../../data/rocks.json'; - -import log from '@kaetram/common/util/log'; -import Utils from '@kaetram/common/util/utils'; -import { Modules } from '@kaetram/common/network'; - -import type { ResourceData } from '@kaetram/common/types/resource'; -import type { ProcessedResource, RegionTile } from '@kaetram/common/types/map'; - -export default class Resource { - public instance = Utils.createInstance(Modules.EntityType.Object); - - // Amount of time it takes for the resource to respawn. - protected respawnTime: number = Modules.Constants.RESOURCE_RESPAWN; - - // Data contains original tile data from the map - public data: { [index: number]: RegionTile } = {}; - - // Tile data containing information after the resource has been depleted. - private depleted: { [index: number]: RegionTile } = {}; - - // The state of the resource - public state: Modules.ResourceState = Modules.ResourceState.Default; - - private respawnTimeout?: NodeJS.Timeout | undefined; - private stateCallback?: () => void; - - public constructor(public type: string) {} - - /** - * Takes information from the `info` parameter and determines - * if a tile is either a base or just resource data. If it's resource data, - * we remove the resource information. If it's a base, we replace the - * base with the tileId of the depleted resource. We store this data for later. - * A base is an interactable resource tile that the player can click on. - * @param info The resource information based on the resource's type. - */ - - public load(info: ProcessedResource): void { - // Iterate through all the tile and its indexes in the resource. - for (let index in this.data) { - let flatTile = [this.data[index]].flat(); - - // Why would you put a resource in the void? How are you even near the resource? - if (!Array.isArray(flatTile)) - return log.warning(`[${index}] Could not parse tile data for tree.`); - - // Find if the tile contains data or base data. - let dataIntersect = flatTile.filter((tile) => info.data.includes(tile)), - stumpIntersect = flatTile.filter((tile) => info.base.includes(tile)); - - // Tile contains data that is also a stump. - if (dataIntersect.length > 0 && stumpIntersect.length > 0) { - /** - * `baseIndex` is the index of the current base in the info data. - * `dataBaseIndex` is the index of the base in the tile data. - * `cloneTile` is a tile created to prevent changes to original data. - */ - - let baseIndex = info.base.indexOf(stumpIntersect[0]), - dataBaseIndex = flatTile.indexOf(stumpIntersect[0]), - cloneTile = [...flatTile]; - - // Replace the stump with the cut stump. - cloneTile[dataBaseIndex] = info.depleted[baseIndex]; - - // Store the cloned data. - this.depleted[index] = cloneTile as RegionTile; - } else if (dataIntersect.length > 0) - // Remove tree data. - this.depleted[index] = flatTile.filter( - (tile) => !dataIntersect.includes(tile) - ) as RegionTile; - - // Set tile data to 0 indicating nothing there instead of empty array '[]' - if ([this.depleted[index]].flat().length === 0) this.depleted[index] = 0; - } - - // Apply the respawn time if specified. - this.setRespawnTime(); - } - - /** - * Depletes a resource by updating its state. We create a respawn - * timeout that respawns the resource and updates the nearby - * region when the timeout expires. - */ - - public deplete(): void { - // Cannot cut a tree that's already cut. - if (this.respawnTimeout) return; - - this.setState(Modules.ResourceState.Depleted); - - // Reset the tree once the timeout expires. - this.respawnTimeout = setTimeout(() => { - this.setState(Modules.ResourceState.Default); - - this.respawnTimeout = undefined; - }, this.respawnTime); - } - - /** - * Attempts to grab the respawn time for a given resource. If no respawn time - * is specified in the JSON file then we use the default specified in Modules.Constants. - * @returns The respawn time for this particular resource. - */ - - public getRespawnTime(): number { - let info = - this.type in Trees - ? (Trees as ResourceData)[this.type] - : (Rocks as ResourceData)[this.type]; - - // Return the default respawn time if not specified. - if (!info?.respawnTime) return this.respawnTime; - - return info.respawnTime; - } - - /** - * Checks whether the resource is depleted or not. - * @returns If the current state is that of a depleted resource state. - */ - - public isDepleted(): boolean { - return this.state === Modules.ResourceState.Depleted; - } - - /** - * Updates the state of the resource and creates a callback. - * @param state The new state of the resource. - */ - - private setState(state: Modules.ResourceState): void { - this.state = state; - - this.stateCallback?.(); - } - - /** - * Updates the respawn time of the resource. - * @param time New time (in milliseconds) for the resource to respawn. - */ - - public setRespawnTime(time = this.getRespawnTime()): void { - this.respawnTime = time; - } - - /** - * Iterates through each tile in the data (depending on the state of the resource). - * @param callback The data tile alongside its parsed number index. - */ - - public forEachTile(callback: (tile: RegionTile, index: number) => void): void { - // Data depends on the state of the resource. - let data = this.isDepleted() ? this.depleted : this.data; - - for (let index in data) callback(data[index], parseInt(index)); - } - - /** - * Callback for when a resource undergoes a state change. - */ - - public onStateChange(callback: () => void): void { - this.stateCallback = callback; - } -} diff --git a/packages/server/src/game/globals/impl/sign.ts b/packages/server/src/game/globals/impl/sign.ts index 132a6e4b77..6670820c10 100644 --- a/packages/server/src/game/globals/impl/sign.ts +++ b/packages/server/src/game/globals/impl/sign.ts @@ -1,12 +1,16 @@ import { Opcodes } from '@kaetram/common/network'; -import { Bubble } from '@kaetram/common/network/impl'; +import { BubblePacket } from '@kaetram/common/network/impl'; import type Player from '../../entity/character/player/player'; export default class Sign { public instance; // Instance in this case are the object's coordinates. - public constructor(public x: number, public y: number, public text: string[]) { + public constructor( + public x: number, + public y: number, + public text: string[] + ) { this.instance = `${x}-${y}`; } @@ -36,8 +40,9 @@ export default class Sign { // Send bubble packet to the player. player.send( - new Bubble( + new BubblePacket( { + instance: `${this.x}-${this.y}`, x: this.x, y: this.y, text: message diff --git a/packages/server/src/game/globals/lights.ts b/packages/server/src/game/globals/lights.ts index ec41ede364..72cef83155 100644 --- a/packages/server/src/game/globals/lights.ts +++ b/packages/server/src/game/globals/lights.ts @@ -14,7 +14,16 @@ export default class Lights { if (!region) continue; region.addLight( - new Light(light.id, light.x, light.y, light.colour, light.diffuse, light.distance) + new Light( + light.id, + light.x, + light.y, + light.colour, + light.diffuse, + light.distance, + light.flickerSpeed, + light.flickerIntensity + ) ); } diff --git a/packages/server/src/game/globals/resources.ts b/packages/server/src/game/globals/resources.ts deleted file mode 100644 index a55b5143f2..0000000000 --- a/packages/server/src/game/globals/resources.ts +++ /dev/null @@ -1,141 +0,0 @@ -import Resource from './impl/resource'; - -import log from '@kaetram/common/util/log'; - -import type Map from '../map/map'; -import type World from '../world'; -import type Regions from '../map/regions'; -import type { ProcessedResource } from '@kaetram/common/types/map'; - -export default class Resources { - private map: Map; - private regions: Regions; - - protected resources: { [instance: string]: Resource } = {}; - - /** - * @param data Contains the resource data we are creating resources with. Trees - * in the case of trees, rocks in the case of mining, etc. - */ - - public constructor(private world: World, private data: ProcessedResource[]) { - this.map = this.world.map; - this.regions = this.world.map.regions; - - this.load(); - } - - /** - * Iterates through the map data and removes tiles which contain - * resource information. We use this resource data later to create dynamic - * tiles. - */ - - protected load(): void { - for (let index in this.map.data) { - let tile = this.map.data[index]; - - this.map.forEachTile(tile, (tileId: number) => { - let info = this.getResource(tileId); - - if (!info) return; - - // Create the tree. - this.createResource(info, parseInt(index)); - }); - } - } - - /** - * Creates a resource object and initializes all the data associated with it. This creates - * a resource object and adds it to our dictionary of resources. - * @param info The raw resource data we are initializing based off of. - * @param index The index where we first found the resource (the anchor). - */ - - protected createResource(info: ProcessedResource, index: number): void { - let resource = new Resource(info.type), - coords = this.map.indexToCoord(index), - regionIndex = this.regions.getRegion(coords.x, coords.y), - region = this.regions.get(regionIndex); - - // Load actual resource tile data. - this.search(info, resource, index); - - // Initialize cut resource's data. - resource.load(info); - - // Add resource to the region. - if (region) region.addResource(resource); - - /** - * This check is used for anomalies in resource structures. If two resources are too - * close together, then they will be recursively identified as one. This may cause - * issues. This is what this warning represents. It is ideal to make sure there is - * at least one tile in between resource. - */ - - if (Object.keys(resource.data).length !== info.data.length) - log.warning(`Resource x: ${coords.x} y: ${coords.y} contains partial data.`); - - // Add our resource to our list of resources. - this.resources[resource.instance] = resource; - - // Send an update when a resource's state undergoes a change. - resource.onStateChange(() => this.regions.sendUpdate(regionIndex)); - } - - /** - * Recursive iteration scanning the nearby tiles until all resource - * data tiles are removed and search is exhausted. This removes - * the data from the cloned map data. - * @param info The raw resource data we are using to compare against tiles. - * @param resource The resource data we are adding info onto. - * @param index Index where we start the search. - */ - - private search(info: ProcessedResource, resource: Resource, index: number): boolean { - let intersection = [this.map.data[index]].flat().filter((tile) => info.data.includes(tile)); - - // If we find no intersection, then tile contains no resource data. - if (intersection.length === 0) return false; - - // Add the entire tile data onto the resource. - resource.data[index] = this.map.parseTileData(this.map.data[index]); - - // Remove all tiles from the map data. - this.map.data[index] = -1; - - // Search for tiles recursively right, left, down, up respectively. - if (info.data.length > 1) { - if (this.search(info, resource, index + 1)) return true; - if (this.search(info, resource, index - 1)) return true; - if (this.search(info, resource, index + this.map.width)) return true; - if (this.search(info, resource, index - this.map.width)) return true; - } - - return false; - } - - /** - * Searches the resource instances and finds which resource contains - * the index data in its data. - * @param index The index coordinate we are searching for. - * @returns A resource object if found, otherwise undefined. - */ - - public findResource(index: number): Resource | undefined { - return Object.values(this.resources).find((resource) => index in resource.data); - } - - /** - * Looks through all the resources in the map and - * finds if the `tileId` is contained within their - * data. - * @param tileId The tileId we are checking. - */ - - private getResource(tileId: number): ProcessedResource | undefined { - return this.data.find((resource) => resource.data.includes(tileId)); - } -} diff --git a/packages/server/src/game/globals/rocks.ts b/packages/server/src/game/globals/rocks.ts deleted file mode 100644 index dfceaec26b..0000000000 --- a/packages/server/src/game/globals/rocks.ts +++ /dev/null @@ -1,24 +0,0 @@ -import Resources from './resources'; - -import log from '@kaetram/common/util/log'; - -import type World from '../world'; - -export default class Rocks extends Resources { - public constructor(world: World) { - super(world, world.map.rocks); - } - - /** - * Override for the resource loading function to display - * debug message of how many trees were loaded. - */ - - protected override load(): void { - super.load(); - - let amount = Object.keys(this.resources).length; - - log.info(`Loaded ${amount} rock${amount > 1 ? 's' : ''}.`); - } -} diff --git a/packages/server/src/game/globals/trees.ts b/packages/server/src/game/globals/trees.ts deleted file mode 100644 index ddb065c5e6..0000000000 --- a/packages/server/src/game/globals/trees.ts +++ /dev/null @@ -1,24 +0,0 @@ -import Resources from './resources'; - -import log from '@kaetram/common/util/log'; - -import type World from '../world'; - -export default class Trees extends Resources { - public constructor(world: World) { - super(world, world.map.trees); - } - - /** - * Override for the resource loading function to display - * debug message of how many trees were loaded. - */ - - protected override load(): void { - super.load(); - - let amount = Object.keys(this.resources).length; - - log.info(`Loaded ${amount} tree${amount > 1 ? 's' : ''}.`); - } -} diff --git a/packages/server/src/game/map/areas/area.ts b/packages/server/src/game/map/areas/area.ts index 268aec1e35..dc9371681e 100644 --- a/packages/server/src/game/map/areas/area.ts +++ b/packages/server/src/game/map/areas/area.ts @@ -1,10 +1,10 @@ import { Modules } from '@kaetram/common/network'; -import type { OverlayType } from '@kaetram/common/types/map'; -import type Character from '../../entity/character/character'; +import type Chest from '../../entity/objects/chest'; import type Mob from '../../entity/character/mob/mob'; +import type Character from '../../entity/character/character'; import type Player from '../../entity/character/player/player'; -import type Chest from '../../entity/objects/chest'; +import type { OverlayType } from '@kaetram/common/types/map'; type AreaCallback = (player: Player) => void; export default class Area { @@ -17,8 +17,12 @@ export default class Area { public hasRespawned = true; public ignore = false; // If the area is omitted from player walk callbacks. + public boundaryX = 0; + public boundaryY = 0; + // Overlay properties public darkness = 0; + public rgb: number[] = []; public type: OverlayType = 'none'; public fog = ''; public reason = ''; // Message displayed when player takes damage in the area. @@ -35,7 +39,9 @@ export default class Area { // Dynamic areas public mappedArea!: Area | undefined; + public mappedAnimation!: Area | undefined; public mapping!: number; + public animation!: number; // Minigame public minigame = ''; @@ -60,7 +66,10 @@ export default class Area { public y: number, public width: number, public height: number - ) {} + ) { + this.boundaryX = x + width; + this.boundaryY = y + height; + } /** * Adds a mob to the area. @@ -118,7 +127,8 @@ export default class Area { } /** - * Checks if the player fulfills the requirements of the area. + * Checks if the player fulfills the requirements of the area. This can be + * whether the player has completed a quest or achievement or not. * @param player The player we are checking requirements for * @returns Checks if the requirement is fulfilled. */ @@ -153,6 +163,28 @@ export default class Area { }; } + /** + * Same process as `getMappedTile` but instead we are grabbing an animation + * that this tile is mapped to. This is used for dynamic tiles that have an + * animation effect before they are mapped to the other state. + * @param x The x grid coordinate we are grabbing the animation for. + * @param y The y grid coordinate we are grabbing the animation for. + * @returns A position (x and y) of the mapped animation. + */ + + public getMappedAnimationTile(x: number, y: number): Position | undefined { + if (!this.mappedAnimation) return; + + // The x and y relative to the area rather than globally. + let relativeX = Math.abs(this.x - x), + relativeY = Math.abs(this.y - y); + + return { + x: this.mappedAnimation.x + relativeX, + y: this.mappedAnimation.y + relativeY + }; + } + /** * Returns whether or not the area has a mapping counterpart. * Since the dynamic tiles areas are split into a original and a @@ -194,7 +226,7 @@ export default class Area { */ private inRectangularArea(x: number, y: number): boolean { - return x >= this.x && y >= this.y && x < this.x + this.width && y < this.y + this.height; + return x >= this.x && y >= this.y && x < this.boundaryX && y < this.boundaryY; } /** @@ -226,8 +258,8 @@ export default class Area { */ public forEachTile(callback: (x: number, y: number) => void): void { - for (let i = this.y; i < this.y + this.height; i++) - for (let j = this.x; j < this.x + this.width; j++) callback(j, i); + for (let i = this.y; i < this.boundaryY; i++) + for (let j = this.x; j < this.boundaryX; j++) callback(j, i); } /** diff --git a/packages/server/src/game/map/areas/areas.ts b/packages/server/src/game/map/areas/areas.ts index 01b2641185..1c05369f5c 100644 --- a/packages/server/src/game/map/areas/areas.ts +++ b/packages/server/src/game/map/areas/areas.ts @@ -2,13 +2,16 @@ import Area from './area'; import log from '@kaetram/common/util/log'; -import type { ProcessedArea } from '@kaetram/common/types/map'; import type World from '../../world'; +import type { ProcessedArea } from '@kaetram/common/types/map'; export default abstract class Areas { public areas: Area[] = []; - protected constructor(public data: ProcessedArea[], public world: World) {} + protected constructor( + public data: ProcessedArea[], + public world: World + ) {} /** * Parses through the mapAreas and sets their base properties (id, x, y, width, height). diff --git a/packages/server/src/game/map/areas/impl/camera.ts b/packages/server/src/game/map/areas/impl/camera.ts index 0062793034..516ce3bcc1 100644 --- a/packages/server/src/game/map/areas/impl/camera.ts +++ b/packages/server/src/game/map/areas/impl/camera.ts @@ -1,8 +1,8 @@ import Areas from '../areas'; -import type { ProcessedArea } from '@kaetram/common/types/map'; -import type World from '../../../world'; import type Area from '../area'; +import type World from '../../../world'; +import type { ProcessedArea } from '@kaetram/common/types/map'; export default class Camera extends Areas { public constructor(data: ProcessedArea[], world: World) { diff --git a/packages/server/src/game/map/areas/impl/chest.ts b/packages/server/src/game/map/areas/impl/chest.ts index 16fe15037d..c5ebb18704 100644 --- a/packages/server/src/game/map/areas/impl/chest.ts +++ b/packages/server/src/game/map/areas/impl/chest.ts @@ -2,11 +2,11 @@ import Areas from '../areas'; import Utils from '@kaetram/common/util/utils'; -import type { ProcessedArea } from '@kaetram/common/types/map'; +import type Area from '../area'; +import type World from '../../../world'; import type Character from '../../../entity/character/character'; import type Player from '../../../entity/character/player/player'; -import type World from '../../../world'; -import type Area from '../area'; +import type { ProcessedArea } from '@kaetram/common/types/map'; export default class Chest extends Areas { public constructor(data: ProcessedArea[], world: World) { diff --git a/packages/server/src/game/map/areas/impl/dynamic.ts b/packages/server/src/game/map/areas/impl/dynamic.ts index 25468c18a4..a04cd9dcfc 100644 --- a/packages/server/src/game/map/areas/impl/dynamic.ts +++ b/packages/server/src/game/map/areas/impl/dynamic.ts @@ -2,16 +2,17 @@ import Areas from '../areas'; import log from '@kaetram/common/util/log'; -import type { ProcessedArea } from '@kaetram/common/types/map'; import type World from '../../../world'; import type Area from '../area'; +import type { ProcessedArea } from '@kaetram/common/types/map'; export default class Dynamic extends Areas { public constructor(data: ProcessedArea[], world: World) { super(data, world); - super.load(this.data, (area: Area, rawData) => { + super.load(this.data, (area: Area, rawData: ProcessedArea) => { area.mapping = rawData.mapping!; + area.animation = rawData.animation!; area.quest = rawData.quest!; area.achievement = rawData.achievement!; }); @@ -30,6 +31,7 @@ export default class Dynamic extends Areas { if (!area.mapping) continue; area.mappedArea = this.get(area.mapping); + area.mappedAnimation = this.get(area.animation); } } } diff --git a/packages/server/src/game/map/areas/impl/minigame.ts b/packages/server/src/game/map/areas/impl/minigame.ts index 8b9e053df0..1e749d9cc0 100644 --- a/packages/server/src/game/map/areas/impl/minigame.ts +++ b/packages/server/src/game/map/areas/impl/minigame.ts @@ -1,8 +1,8 @@ import Areas from '../areas'; -import type { ProcessedArea } from '@kaetram/common/types/map'; -import type World from '../../../world'; import type Area from '../area'; +import type World from '../../../world'; +import type { ProcessedArea } from '@kaetram/common/types/map'; export default class Minigame extends Areas { public constructor(data: ProcessedArea[], world: World) { diff --git a/packages/server/src/game/map/areas/impl/music.ts b/packages/server/src/game/map/areas/impl/music.ts index 1a8273ab2e..d1da18c87f 100644 --- a/packages/server/src/game/map/areas/impl/music.ts +++ b/packages/server/src/game/map/areas/impl/music.ts @@ -1,8 +1,8 @@ import Areas from '../areas'; -import type { ProcessedArea } from '@kaetram/common/types/map'; -import type World from '../../../world'; import type Area from '../area'; +import type World from '../../../world'; +import type { ProcessedArea } from '@kaetram/common/types/map'; export default class Music extends Areas { public constructor(data: ProcessedArea[], world: World) { diff --git a/packages/server/src/game/map/areas/impl/overlay.ts b/packages/server/src/game/map/areas/impl/overlay.ts index c3dc76d8bb..836644de93 100644 --- a/packages/server/src/game/map/areas/impl/overlay.ts +++ b/packages/server/src/game/map/areas/impl/overlay.ts @@ -1,18 +1,19 @@ import Areas from '../areas'; -import type { OverlayType, ProcessedArea } from '@kaetram/common/types/map'; -import type World from '../../../world'; import type Area from '../area'; +import type World from '../../../world'; +import type { OverlayType, ProcessedArea } from '@kaetram/common/types/map'; export default class Overlay extends Areas { public constructor(data: ProcessedArea[], world: World) { super(data, world); - super.load(this.data, (overlayArea: Area, rawData) => { + super.load(this.data, (overlayArea: Area, rawData: ProcessedArea) => { overlayArea.darkness = rawData.darkness!; overlayArea.type = (rawData.type! as OverlayType) || 'none'; if (rawData.fog) overlayArea.fog = rawData.fog; + if (rawData.rgb) overlayArea.rgb = rawData.rgb.split(',').map(Number); }); super.message('overlay'); diff --git a/packages/server/src/game/map/areas/impl/pvp.ts b/packages/server/src/game/map/areas/impl/pvp.ts index ed60a5e76b..e5a0e18691 100644 --- a/packages/server/src/game/map/areas/impl/pvp.ts +++ b/packages/server/src/game/map/areas/impl/pvp.ts @@ -1,7 +1,7 @@ import Areas from '../areas'; -import type { ProcessedArea } from '@kaetram/common/types/map'; import type World from '../../../world'; +import type { ProcessedArea } from '@kaetram/common/types/map'; export default class PVP extends Areas { public constructor(data: ProcessedArea[], world: World) { diff --git a/packages/server/src/game/map/grids.ts b/packages/server/src/game/map/grids.ts index 6d6b027b50..3d7586bc9a 100644 --- a/packages/server/src/game/map/grids.ts +++ b/packages/server/src/game/map/grids.ts @@ -9,7 +9,10 @@ import type Effect from '../entity/objects/effect'; export default class Grids { private entityGrid: { [instance: string]: Entity }[][] = []; - public constructor(private width: number, private height: number) { + public constructor( + private width: number, + private height: number + ) { /** * Create the two-dimensional grids. */ @@ -39,7 +42,7 @@ export default class Grids { entity = e; }); - return entity; + return entity as Effect | undefined; } /** @@ -76,6 +79,17 @@ export default class Grids { delete this.entityGrid[y][x][entity.instance]; } + /** + * Checks if there is an entity at a specified coordinate. + * @param x The grid x coordinate. + * @param y The grid y coordinate. + * @returns Whether or not there is an entity at the specified coordinate. + */ + + public hasEntityAt(x: number, y: number): boolean { + return !!this.entityGrid[y]?.[x]; + } + /** * Iterates through each entity at a specified coordinate and returns it. * @param x The grid x coordinate. diff --git a/packages/server/src/game/map/map.ts b/packages/server/src/game/map/map.ts index a64a9da311..3d190422fc 100644 --- a/packages/server/src/game/map/map.ts +++ b/packages/server/src/game/map/map.ts @@ -6,19 +6,11 @@ import mapData from '../../../data/map/world.json'; import { Modules } from '@kaetram/common/network'; -import type { - FlatTile, - ProcessedArea, - ProcessedDoor, - ProcessedMap, - ProcessedResource, - RegionTile, - RotatedTile, - Tile -} from '@kaetram/common/types/map'; -import type Player from '../entity/character/player/player'; import type World from '../world'; import type Areas from './areas/areas'; +import type Player from '../entity/character/player/player'; +import type { ProcessedArea, ProcessedDoor, ProcessedMap, Tile } from '@kaetram/common/types/map'; +import type Entity from '../entity/entity'; let map = mapData as ProcessedMap; @@ -31,11 +23,11 @@ export default class Map { // Map handlers public regions: Regions; - public grids: Grids; + public grids: Grids = new Grids(this.width, this.height); // Map data and collisions public data: (number | number[])[] = map.data; - private collisions: number[] = map.collisions || []; + public collisions: number[] = map.collisions || []; private entities: { [tileId: number]: string } = map.entities; public plateau: { [index: number]: number } = map.plateau; @@ -43,10 +35,6 @@ export default class Map { public cursors: { [tileId: number]: string } = map.cursors; public doors: { [index: number]: ProcessedDoor } = {}; public warps: ProcessedArea[] = map.areas.warps || []; - public trees: ProcessedResource[] = map.trees || []; - public rocks: ProcessedResource[] = map.rocks || []; - public fishSpots: ProcessedResource[] = map.fishSpots || []; - public foraging: ProcessedResource[] = map.foraging || []; public lights: ProcessedArea[] = map.areas.lights || []; public signs: ProcessedArea[] = map.areas.signs || []; @@ -56,8 +44,6 @@ export default class Map { private areas: { [name: string]: Areas } = {}; public constructor(public world: World) { - this.grids = new Grids(this.width, this.height); - this.loadAreas(); this.loadDoors(); @@ -121,7 +107,8 @@ export default class Map { reqItemCount: door.reqItemCount || 0, stage: door.stage || 0, skill: door.skill || '', - level: door.level || 0 + level: door.level || 0, + npc: door.npc || '' }; } } @@ -145,7 +132,7 @@ export default class Map { public indexToCoord(index: number): Position { return { x: index % this.width, - y: Math.floor(index / this.width) + y: ~~(index / this.width) }; } @@ -155,8 +142,8 @@ export default class Map { * @param tileId The tileId we are checking. */ - public isFlipped(tileId: number): boolean { - return tileId > Modules.MapFlags.DIAGONAL_FLAG; + public isFlippedTileId(tileId: number): boolean { + return tileId > (Modules.MapFlags.DIAGONAL_FLAG as number); } /** @@ -184,13 +171,40 @@ export default class Map { } /** - * Checks if the tileIndex exists in the map collisions. + * Checks if the tile data is a collision. + * @param data Contains tile information. + * @returns Whether or not the tile is a collision. + */ + + public isCollision(data: Tile): boolean { + let collision = false; + + this.forEachTile(data, (tile: number) => { + // Remove the tile transformation flags if they exist. + if (this.isFlippedTileId(tile)) tile = this.getFlippedTileId(tile); + + if (this.collisions.includes(tile)) collision = true; + }); + + return collision; + } + + /** + * Checks if the tileIndex exists in the map collisions. We check against + * tile ids instead of indexes because indexes will scale exponentially as + * more map content is added. Think of it as this; you are more likely to add + * more tiles into the map than add more tilesets. * @param index Tile index to check. * @returns If the array of collision indexes contains the tileIndex. */ public isCollisionIndex(index: number): boolean { - return this.collisions.includes(index); + let data = this.data[index]; + + // Empty data means the tile is a collision. + if (!data) return true; + + return this.isCollision(data); } /** @@ -213,31 +227,35 @@ export default class Map { */ // Verify dynamic tile collision if player is provided as a parameter. - if (player) { - let region = this.regions.get(this.regions.getRegion(x, y)); + let region = this.regions.get(this.regions.getRegion(x, y)), + index = this.coordToIndex(x, y); - // Skip if there are no dynamic areas in the region. - if (region.hasDynamicAreas()) { - let dynamicArea = region.getDynamicArea(x, y); + // Skip if there are no dynamic areas in the region. + if (player && region.hasDynamicAreas()) { + let dynamicArea = region.getDynamicArea(x, y); - // Skip if no dynamic area is found or it doesn't fulfill requirements. - if (dynamicArea?.fulfillsRequirement(player)) { - let mappedTile = dynamicArea.getMappedTile(x, y); + // Skip if no dynamic area is found or it doesn't fulfill requirements. + if (dynamicArea?.fulfillsRequirement(player)) { + let mappedTile = dynamicArea.getMappedTile(x, y); - // Check collision if we can find a mapping tile. - if (mappedTile) return this.isColliding(mappedTile.x, mappedTile.y); - } + // Check collision if we can find a mapping tile. + if (mappedTile) return this.isColliding(mappedTile.x, mappedTile.y); } } - let index = this.coordToIndex(x, y); + let hasEntity = false; + + if (this.grids.hasEntityAt(x, y)) + this.grids.forEachEntityAt(x, y, (entity: Entity) => { + if (entity.isResource()) hasEntity = true; + }); - // If the tile is empty it's automatically a collision tile. - return !this.data[index] || this.isCollisionIndex(index); + // Check the collision at a specified index. + return hasEntity || this.isCollisionIndex(index); } /** - * Checks if the tile data (at an index) is an object. + * Checks the tile data on whether or not it contains an object tile. * @param data The tile data (number or number array) we are checking. * @returns Boolean conditional if the tile data contains an object. */ @@ -293,32 +311,22 @@ export default class Map { } /** - * Looks for cursor data in the provided tile data. The tile data - * is directly extracted from the map data at a certain index. + * Given the index we try to obtain the tile data and look through + * it to see if it contains a cursor name. * @param data The tile data we are checking. * @returns The cursor name if it exists. */ - public getCursor(data: Tile): string { + public getCursor(index: number): string { let cursor = ''; - this.forEachTile(data, (tileId: number) => { + this.forEachTile(this.data[index], (tileId: number) => { if (tileId in this.cursors) cursor = this.cursors[tileId]; }); return cursor; } - /** - * Obtains the cursor based on the specified tile index. - * @param index The tile index we are checking. - * @returns The cursor name if it exists. - */ - - public getCursorFromIndex(index: number): string { - return this.getCursor(this.data[index]); - } - /** * Returns the current plateau level of the specified coordinates. * @param x Grid x coordinate we are checking. @@ -336,70 +344,21 @@ export default class Map { } /** - * Uses the index (see `coordToIndex`) to obtain tile inforamtion in the tilemap. - * The object is a region tile that is later used to send map data to the client. - * @param index Gets tile information at an index in the map. - * @returns Returns tile information (a number or number array) - */ - - public getTileData(index: number): RegionTile { - let data = this.data[index]; - - return data ? this.parseTileData(data) : []; - } - - /** - * Parses through the specified data at a given index and extracts - * the flipped tiles from it. Returns a formatted RegionTile ready for - * the client. - * @param data Raw data contained at an index. - * @returns A RegionTile object containing index tile data information. + * Extracts the original tileId from a flipped tile. We are essentially unbitmasking + * the tileId to get the original tileId. + * @param tileId The flipped tile id we are extracting. + * @returns The original tile id (used for collision checking). */ - public parseTileData(data: Tile): RegionTile { - let isArray = Array.isArray(data), - parsedData: RegionTile = isArray ? [] : 0; - - this.forEachTile(data, (tileId: number) => { - let tile: RegionTile = tileId; - - if (this.isFlipped(tileId)) tile = this.getFlippedTile(tileId); - - if (isArray) (parsedData as FlatTile).push(tile); - else parsedData = tile; - }); - - return parsedData; - } - - /** - * Grabs the rotated tile id from Tiled and performs bitwise operators - * on it in order to convert it to an actual tileId. The bitshifts - * indicate the type of rotation, and performing all the operations - * results in the original tileId. - * For more information refer to the following - * https://doc.mapeditor.org/en/stable/reference/tmx-map-format/#tmx-tile-flipping - * @param tileId The tileId of the flipped tile. - * @returns A parsed tile of type `RotatedTile`. - */ - - public getFlippedTile(tileId: number): RotatedTile { - let h = !!(tileId & Modules.MapFlags.HORIZONTAL_FLAG), - v = !!(tileId & Modules.MapFlags.VERTICAL_FLAG), - d = !!(tileId & Modules.MapFlags.DIAGONAL_FLAG); - - tileId &= ~( - Modules.MapFlags.DIAGONAL_FLAG | - Modules.MapFlags.VERTICAL_FLAG | - Modules.MapFlags.HORIZONTAL_FLAG + public getFlippedTileId(tileId: number): number { + return ( + tileId & + ~( + Modules.MapFlags.DIAGONAL_FLAG | + Modules.MapFlags.VERTICAL_FLAG | + Modules.MapFlags.HORIZONTAL_FLAG + ) ); - - return { - tileId, - h, - v, - d - }; } /** @@ -420,9 +379,11 @@ export default class Map { } /** - * Tile data consists of arrays and single numerical values. - * This callback function is used to cleanly iterate through - * those Tile[] arrays. i.e. [1, 2, [1, 2, 3], 4, [5, 6]] + * Iterates through all the tiles at a given index if it's an array, otherwise we just return + * the number contained at that location. This is used to speed up code when trying to handle + * logic for multiple tiles at a location. + * @param data The raw tile data (generally contained in the umodified map) at an index. + * @param callback The tile id and index of the tile currently being iterated. */ public forEachTile(data: Tile, callback: (tileId: number, index?: number) => void): void { @@ -436,10 +397,10 @@ export default class Map { */ public forEachEntity(callback: (position: Position, key: string) => void): void { - for (let tileId in this.entities) { - let position = this.indexToCoord(parseInt(tileId)); + for (let index in this.entities) { + let position = this.indexToCoord(parseInt(index)); - callback(position, this.entities[tileId]); + callback(position, this.entities[index]); } } } diff --git a/packages/server/src/game/map/region.ts b/packages/server/src/game/map/region.ts index 34824770f5..1720b8fb60 100644 --- a/packages/server/src/game/map/region.ts +++ b/packages/server/src/game/map/region.ts @@ -1,9 +1,8 @@ -import type { RegionTileData } from '@kaetram/common/types/map'; -import type Player from '../entity/character/player/player'; +import type Area from './areas/area'; import type Entity from '../entity/entity'; import type Light from '../globals/impl/light'; -import type Resource from '../globals/impl/resource'; -import type Area from './areas/area'; +import type Player from '../entity/character/player/player'; +import type { RegionTileData } from '@kaetram/common/types/map'; export default class Region { public data: RegionTileData[] = []; @@ -12,7 +11,6 @@ export default class Region { private players: string[] = []; // A list of instance ids for players. private joining: Entity[] = []; // Used for sending spawn positions. private dynamicAreas: Area[] = []; - private resources: Resource[] = []; private lights: Light[] = []; public constructor( @@ -96,23 +94,6 @@ export default class Region { return this.dynamicAreas.length > 0; } - /** - * Adds a resource to the region. - * @param resource The resource we are adding to the region. - */ - - public addResource(resource: Resource): void { - this.resources.push(resource); - } - - /** - * @returns If the amount of resources in the array is greater than 0. - */ - - public hasResources(): boolean { - return this.resources.length > 0; - } - /** * Adds a light object to the region. * @param light The light object we are adding. @@ -122,30 +103,6 @@ export default class Region { this.lights.push(light); } - /** - * Grab a list of entity instances and remove the `reject` from the list. - * @param player Player object used to check dynamic visibility of the entities. - * @param reject Entity that we are ignoring (typically a player). - * @returns A list of entity instances. - */ - - public getEntities(player: Player, reject?: Entity): string[] { - let entities: string[] = []; - - for (let instance in this.entities) { - // Ignore if a reject is present. - if (reject && reject.instance === instance) continue; - - // Check if the entity is visible to the player. - if (!this.entities[instance].isVisible(player)) continue; - - // Append our instance to the list. - entities.push(instance); - } - - return entities; - } - /** * Checks if any entities are joining the area. */ @@ -171,6 +128,14 @@ export default class Region { return x >= this.x && y >= this.y && x < this.x + this.width && y < this.y + this.height; } + /** + * @returns The number of players in the region. + */ + + public hasPlayersInRegion(): number { + return this.players.length; + } + /** * Iterates through the dynamic areas to see if the tile is contained * within it. This method is a lot faster than using the areas `inArea` @@ -186,6 +151,30 @@ export default class Region { return undefined; } + /** + * Grab a list of entity instances and remove the `reject` from the list. + * @param player Player object used to check dynamic visibility of the entities. + * @param reject Entity that we are ignoring (typically a player). + * @returns A list of entity instances. + */ + + public getEntities(player: Player, reject?: Entity): string[] { + let entities: string[] = []; + + for (let instance in this.entities) { + // Ignore if a reject is present. + if (reject?.instance === instance) continue; + + // Check if the entity is visible to the player. + if (!this.entities[instance].isVisible(player)) continue; + + // Append our instance to the list. + entities.push(instance); + } + + return entities; + } + /** * Goes through each tile in the region and makes a callback. * @param callback Coordinate position of the tile. @@ -216,15 +205,6 @@ export default class Region { for (let entity of Object.values(this.entities)) callback(entity); } - /** - * Iterates through all the resources and returns each resource. - * @param callback Resource that is being iterated. - */ - - public forEachResource(callback: (resource: Resource) => void): void { - for (let resource of this.resources) callback(resource); - } - /** * Iterates through all the lights in the regions and returns each light. * @param callback Contains the light that is being iterated. diff --git a/packages/server/src/game/map/regions.ts b/packages/server/src/game/map/regions.ts index eb5bcf35df..f2a6e4bb75 100644 --- a/packages/server/src/game/map/regions.ts +++ b/packages/server/src/game/map/regions.ts @@ -7,23 +7,16 @@ import Character from '../entity/character/character'; import log from '@kaetram/common/util/log'; import config from '@kaetram/common/config'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { List, Map as MapPacket, Spawn, Update } from '@kaetram/common/network/impl'; +import { ListPacket, MapPacket, SpawnPacket, UpdatePacket } from '@kaetram/common/network/impl'; -import type { EntityDisplayInfo } from '@kaetram/common/types/entity'; -import type { - RegionCache, - RegionData, - RegionTile, - RegionTileData, - Tile -} from '@kaetram/common/types/map'; -import type Player from '../entity/character/player/player'; -import type Entity from '../entity/entity'; -import type Resource from '../globals/impl/resource'; +import type Map from './map'; import type World from '../world'; import type Area from './areas/area'; +import type Entity from '../entity/entity'; import type Dynamic from './areas/impl/dynamic'; -import type Map from './map'; +import type Player from '../entity/character/player/player'; +import type { EntityDisplayInfo } from '@kaetram/common/types/entity'; +import type { RegionCache, RegionData, RegionTileData, Tile } from '@kaetram/common/types/map'; /** * Class responsible for chunking up the map. @@ -168,10 +161,14 @@ export default class Regions { * that data to both the `data` local variable and assign it to the region itself. */ - this.forEachRegion( - (region: Region, index: number) => - (cache.data[index] = region.data = this.getRegionTileData(region)) - ); + log.debug(`There are currently ${this.regions.length} regions in the world.`); + + let start = Date.now(); + + this.forEachRegion((region: Region, index: number) => { + log.debug(`Generating region data for region: ${index}`); + cache.data[index] = region.data = this.getRegionTileData(region); + }); // Create the directory first. fs.mkdir('./cache', { recursive: true }, (error) => { @@ -183,6 +180,8 @@ export default class Regions { }); }); + log.debug(`Region cache generation took ${Date.now() - start}ms.`); + log.notice(`Region cache has been successfully created.`); } @@ -340,7 +339,7 @@ export default class Regions { let entities: string[] = this.regions[player.region].getEntities(player, player as Entity); - player.send(new List(Opcodes.List.Spawns, { entities })); + player.send(new ListPacket(Opcodes.List.Spawns, { entities })); } /** @@ -372,7 +371,7 @@ export default class Regions { }); // Send the positions to the client. - player.send(new List(Opcodes.List.Positions, { positions })); + player.send(new ListPacket(Opcodes.List.Positions, { positions })); } /** @@ -386,7 +385,7 @@ export default class Regions { this.world.push(Modules.PacketType.Regions, { region, ignore: entity.isPlayer() ? entity.instance : '', - packet: new Spawn(entity) + packet: new SpawnPacket(entity) }); }); @@ -432,7 +431,7 @@ export default class Regions { // Don't send empty data. if (displayInfos.length === 0) return; - player.send(new Update(displayInfos)); + player.send(new UpdatePacket(displayInfos)); } /** @@ -442,7 +441,11 @@ export default class Regions { */ public sendRegion(player: Player): void { + let start = Date.now(); + player.send(new MapPacket(this.getRegionData(player))); + + log.debug(`Sent region data to ${player.username} in ${Date.now() - start}ms`); } /** @@ -477,11 +480,9 @@ export default class Regions { */ public getRegion(x: number, y: number): number { - let region = this.regions.findIndex((region: Region) => { + return this.regions.findIndex((region: Region) => { return region.inRegion(x, y); }); - - return region; } /** @@ -507,26 +508,15 @@ export default class Regions { // Initialize empty array for the region tile data. data[surroundingRegion] = []; - // Parse and send resource data. - if (region.hasResources()) - data[surroundingRegion] = [ - ...data[surroundingRegion], - ...this.getRegionResourceData(region, player) - ]; - // Parse and send dynamic areas. if (region.hasDynamicAreas()) - data[surroundingRegion] = [ - ...data[surroundingRegion], - ...this.getRegionTileData(region, true, player) - ]; + data[surroundingRegion].push(...this.getRegionTileData(region, true, player)); // We skip if the region is loaded and we are not forcing static data. if (!player.hasLoadedRegion(surroundingRegion) || force) { - data[surroundingRegion] = [ - ...data[surroundingRegion], + data[surroundingRegion].push( ...(config.regionCache ? region.data : this.getRegionTileData(region)) - ]; + ); player.loadRegion(surroundingRegion); } @@ -572,49 +562,6 @@ export default class Regions { return tileData; } - /** - * Parses through all the resources within the region specified and - * grabs tile data from them. It returns a RegionTileData array. - * @param region The region we are looking for resources in. - * @returns RegionTileData containing resource information. - */ - - private getRegionResourceData(region: Region, player: Player): RegionTileData[] { - let tileData: RegionTileData[] = []; - - // Iterate through all the resources in the region. - region.forEachResource((resource: Resource) => { - // No need to reload resources that haven't changed. - if (player.hasLoadedResource(resource)) return; - - // Parse resource tiles. - tileData = [...tileData, ...this.getResourceData(resource)]; - - player.loadResource(resource); - }); - - return tileData; - } - - /** - * Grabs individual resource data from a specified resource. - * @param resource The resource we are grabbing data for. - * @returns RegionTileData array containing resource information. - */ - - private getResourceData(resource: Resource): RegionTileData[] { - let tileData: RegionTileData[] = []; - - resource.forEachTile((data: RegionTile, index: number) => { - // Perhaps we can optimize further by storing this directly in the resource? - let coord = this.map.indexToCoord(index); - - tileData.push(this.buildTile(coord.x, coord.y, index, data)); - }); - - return tileData; - } - /** * Iterates through the surrounding regions and updates all the entities * with their custom data (if any). @@ -623,7 +570,8 @@ export default class Regions { */ private getDisplayInfo(player: Player): EntityDisplayInfo[] { - let entityData: EntityDisplayInfo[] = []; + let entityData: EntityDisplayInfo[] = [], + instances: string[] = []; // Used for preventing duplicates. this.forEachSurroundingRegion(player.region, (surroundingRegion: number) => { let region = this.get(surroundingRegion); @@ -636,7 +584,12 @@ export default class Regions { region.forEachEntity((entity: Entity) => { if (!entity.hasDisplayInfo(player)) return; + // Prevents duplicate entity data. + if (instances.includes(entity.instance)) return; + entityData.push(entity.getDisplayInfo(player)); + + instances.push(entity.instance); }); }); @@ -644,42 +597,50 @@ export default class Regions { } /** - * Takes the tile's position and builds a TileInfo object. - * This is where all the fancy stuff with dynamic objects - * will be happening. - * @param x The x position of the tile in the grid space. - * @param y The y position of the tile in the grid space. + * Given the x and y grid coordinates, we build a TileInfo object containing all + * the information pertaining to that tile. This includes the position, the tile data, + * whether it's colliding, an object, or has any cursor data. + * @param x The x grid position of the tile in the grid space. + * @param y The y grid position of the tile in the grid space. * @param index Optional parameter if we want to skip calculating the index ourselves. * @param data Optional tile data parameter used to skip grabbing the tile data if we already have it. * @returns Returns a `TileInfo` object based on the coordinates. */ - private buildTile(x: number, y: number, index?: number, data?: RegionTile): RegionTileData { + private buildTile(x: number, y: number, index?: number, data?: Tile): RegionTileData { // Use the specified index if not undefined or calculate it. index ||= this.map.coordToIndex(x, y); - /** - * Calculate the tile data if it's not specified as a parameter and - * attempt to grab the cursor based on the - */ + // Use the provided data parameter or obtain it from the map file if not specified. + data ||= this.map.data[index]; + + if (!data || (data as number[])?.length === 0) return { x, y, data: 0 }; let tile: RegionTileData = { - x, - y, - data: data || this.map.getTileData(index) - }, - cursor = this.map.getCursor(tile.data as Tile); + x, + y, + data + }; /** - * A tile is colliding if it exists in our array of collisions (See - * `parseTileLayerData()` in `processmap.ts`). If there is no tile data - * (i.e. the tile is blank) it is automatically colliding. - * We check if a tile is an object by verifying the data extracted. - * If we find a cursor we set the `cursor` property to the cursor. + * We use this function to prevent iterating through the tile array + * multiple times. Since collisions, objects, and cursors all call + * the `forEachTile` function, we can just do it in a batch here. */ - if (this.map.isCollisionIndex(index)) tile.c = true; - if (this.map.isObject(tile.data as Tile)) tile.o = true; - if (cursor) tile.cur = cursor; + + this.map.forEachTile(data as Tile, (tileId: number) => { + // Remove the tile bitmasks to get the actual tile id. + if (this.map.isFlippedTileId(tileId)) tileId = this.map.getFlippedTileId(tileId); + + if (this.map.objects.includes(tileId)) { + tile.o = true; + tile.c = true; + } else if (this.map.collisions.includes(tileId)) tile.c = true; + + let cursor = this.map.cursors[tileId]; + + if (cursor) tile.cur = cursor; + }); return tile; } @@ -707,10 +668,20 @@ export default class Regions { if (!mappedTile) return original; // Gets the index of the mapped tile coordinates. - let index = this.map.coordToIndex(mappedTile.x, mappedTile.y); + let index = this.map.coordToIndex(mappedTile.x, mappedTile.y), + tile = this.buildTile(x, y, index), // Build tile using the mapped tile's index + mappedAnimationTile = area.getMappedAnimationTile(x, y); - // We build a tile using our mapped tile's index, hence why we specify the index as a parameter - return this.buildTile(x, y, index); + /** + * If we have a mapped animation tile we add it to the tile data. Note + * that this animation is purely cosmetic and does not affect the tile + * in any way. + */ + if (mappedAnimationTile) + tile.animation = + this.map.data[this.map.coordToIndex(mappedAnimationTile.x, mappedAnimationTile.y)]; + + return tile; } /** diff --git a/packages/server/src/game/minigames/impl/coursing.ts b/packages/server/src/game/minigames/impl/coursing.ts index 5964bdbbcf..371ca1a6d5 100644 --- a/packages/server/src/game/minigames/impl/coursing.ts +++ b/packages/server/src/game/minigames/impl/coursing.ts @@ -1,8 +1,12 @@ import Minigame from '../minigame'; +import Area from '../../map/areas/area'; -import { Opcodes } from '@kaetram/common/network'; +import Utils from '@kaetram/common/util/utils'; +import { Team } from '@kaetram/common/api/minigame'; +import { Modules, Opcodes } from '@kaetram/common/network'; import type World from '../../world'; +import type Player from '../../entity/character/player/player'; /** * Temporary name for this minigame. This minigame consists of a hunter @@ -12,7 +16,208 @@ import type World from '../../world'; */ export default class Coursing extends Minigame { + public override name = 'Coursing'; + + protected override countdown: number = Modules.MinigameConstants.COURSING_COUNTDOWN; + + private hunterSpawn: Area = new Area(0, 0, 0, 0, 0); + private preySpawns: Area[] = []; + + // Used to calculate distance of the prey from the centre. + private centre: Position = { x: 0, y: 0 }; + public constructor(world: World) { super(world, Opcodes.Minigame.Coursing); } + + /** + * Loads the necessary areas for the minigame. This includes the lobby + * (handled in the super class) and the spawn areas for the hunter and + * the prey. + * @param area The area that we are loading (received from the map). + */ + + public override loadArea(area: Area): void { + super.loadArea(area); + + switch (area.mObjectType) { + case 'hunterspawn': { + this.hunterSpawn = area; + return; + } + + case 'preyspawn': { + // Add the area to the list of prey spawns. + this.preySpawns.push(area); + return; + } + + case 'centre': { + this.centre.x = area.x; + this.centre.y = area.y; + return; + } + } + } + + /** + * Handles the game logic for the minigame. This includes the lobby cooldown, + * the in-game timer, and the game ending. + */ + + public override tick(): void { + if (this.countdown <= 0) { + this.countdown = Modules.MinigameConstants.COURSING_COUNTDOWN; + + // Attempt to start if not started, otherwise end the game. + if (this.started) this.stop(); + else this.start(); + + return; + } + + this.countdown--; + + // Send the countdown packet to the players in the lobby (if any). + if (this.playersInLobby.length > 0) + this.sendPacket(this.playersInLobby, { + action: Opcodes.MinigameActions.Lobby, + countdown: this.countdown, + started: this.started + }); + + // We only update the score and send the packet every 4 ticks. + if (this.countdown % 4 !== 0) return; + + /** + * We iterate through all the players in the game and update their score relative + * to their distance from the centre of the map. We then send a packet to the player + * updating their score. + */ + + this.forEachPlayerInGame((player: Player) => { + if (player.team === Team.Prey) { + // Dead players get a decrement in score for every tick. + if (player.dead) return player.incrementCoursingScore(-10); + + // Grab the distance from the centre of the map to the player. + let distance = Utils.getDistance(player.x, player.y, this.centre.x, this.centre.y), + score = Math.floor(distance / Modules.MinigameConstants.COURSING_SCORE_DIVISOR); + + // Update the player's score. + player.incrementCoursingScore(score); + + // Send a packet updating the player's score. + this.sendPacket([player], { + action: Opcodes.MinigameActions.Score, + score: player.coursingScore + }); + } + }); + } + + /** + * Grabs a spawn point depending on whether or not the player is a hunter + * or a prey. In the case of a prey, we pick one of the spawn areas and + * return a random point within that area. + * @param isPrey Whether or not we are picking a spawn point for a prey or a hunter. + */ + + public override getSpawnPoint(isPrey = false): Position { + if (!this.started) return super.getSpawnPoint(); + + let area = isPrey + ? this.preySpawns[Utils.randomInt(0, this.preySpawns.length - 1)] + : this.hunterSpawn; + + return { + x: Utils.randomInt(area.x + 1, area.x + area.width - 1), + y: Utils.randomInt(area.y + 1, area.y + area.height - 1) + }; + } + + /** + * Begins the minigames and equally distributes the players into hunters + * and prey. If we have an uneven amount of players then we will ignore + * one of the players at random. + */ + + private start(): void { + this.playersInLobby = this.shuffleLobby(); + + // Not enough players to start. + if ( + this.playersInLobby.length < (Modules.MinigameConstants.COURSING_MIN_PLAYERS as number) + ) { + // Notify the players that we need more players. + for (let player of this.playersInLobby) + player.notify( + `misc:MINIMUM_PLAYERS_MINIGAME;minimum=${Modules.MinigameConstants.COURSING_MIN_PLAYERS}` + ); + + return; + } + + // Mark the game as started. + this.started = true; + + // The length of players is always even, so we check that here. + let count = + this.playersInLobby.length % 2 === 0 + ? this.playersInLobby.length + : this.playersInLobby.length - 1, + hunters = this.playersInLobby.splice(0, count / 2), + prey = this.playersInLobby.splice(0, count / 2); + + /** + * Iterate through both the hunters and the prey and assign + * the targets to each player (1 to 1 mapping). + */ + + for (let [i, hunter] of hunters.entries()) { + hunter.team = Team.Hunter; + prey[i].team = Team.Prey; + + hunter.coursingTarget = prey[i].instance; + prey[i].coursingTarget = hunter.instance; + } + + // Concatenate the two arrays into the playersInGame array. + this.playersInGame = [...hunters, ...prey]; + + // Teleport all the players to their spawn points. + for (let player of this.playersInGame) { + player.minigame = Opcodes.Minigame.Coursing; + player.coursingScore = 0; + + // Grab the spawn point for the player based on their team. + let position = this.getSpawnPoint(player.team === Team.Prey); + + player.teleport(position.x, position.y, false, true); + } + + setTimeout(() => this.sendPointers(), 1500); + } + + /** + * Stops the minigame and sends all the players back to the lobby. + */ + + public override stop(): void { + super.stop(); + } + + /** + * Sends the pointer packet to all the players in the game. This packet + * is sent a little time after the game starts so that all the characters + * have time to load in for every player. + */ + + private sendPointers(): void { + for (let player of this.playersInGame) + player.pointer({ + type: Opcodes.Pointer.Entity, + instance: player.coursingTarget + }); + } } diff --git a/packages/server/src/game/minigames/impl/index.ts b/packages/server/src/game/minigames/impl/index.ts index d3c1da0a52..69dfc0c098 100644 --- a/packages/server/src/game/minigames/impl/index.ts +++ b/packages/server/src/game/minigames/impl/index.ts @@ -1,5 +1,7 @@ import teamwar from './teamwar'; +import coursing from './coursing'; export default { - teamwar + teamwar, + coursing }; diff --git a/packages/server/src/game/minigames/impl/teamwar.ts b/packages/server/src/game/minigames/impl/teamwar.ts index 7f32da5964..5dfc6c455b 100644 --- a/packages/server/src/game/minigames/impl/teamwar.ts +++ b/packages/server/src/game/minigames/impl/teamwar.ts @@ -5,11 +5,13 @@ import Utils from '@kaetram/common/util/utils'; import { Team } from '@kaetram/common/api/minigame'; import { Modules, Opcodes } from '@kaetram/common/network'; -import type Player from '../../entity/character/player/player'; import type World from '../../world'; +import type Player from '../../entity/character/player/player'; export default class TeamWar extends Minigame { - private countdown: number = Modules.MinigameConstants.TEAM_WAR_COUNTDOWN; + public override name = 'TeamWar'; + + protected override countdown: number = Modules.MinigameConstants.TEAM_WAR_COUNTDOWN; // Areas for the minigame. private redSpawn: Area = new Area(0, 0, 0, 0, 0); // Spawn area for red team. @@ -20,9 +22,6 @@ export default class TeamWar extends Minigame { public constructor(world: World) { super(world, Opcodes.Minigame.TeamWar); - - // Begin the tick interval for the minigame. - setInterval(this.tick.bind(this), 1000); } /** @@ -59,13 +58,13 @@ export default class TeamWar extends Minigame { } /** - * Finds a random point within the red or blue team depending on the team paramaeter. - * @params team The team we are grabbing the respawn point for. - * @returns Returns a respawn point within the minigame area depending on the team. + * Finds a random point within the red or blue team depending on the team parameter. + * @params team The team we are grabbing the spawn point for. + * @returns Returns a spawn point within the minigame area depending on the team. */ - public override getRespawnPoint(team: Team): Position { - if (!this.started) return this.getLobbyPosition(); + public override getSpawnPoint(team: Team): Position { + if (!this.started) return super.getSpawnPoint(); let area = team === Team.Red ? this.redSpawn : this.blueSpawn; @@ -79,7 +78,7 @@ export default class TeamWar extends Minigame { * Function called every 1 second interval that handles the minigame logic. */ - private tick(): void { + protected override tick(): void { if (this.countdown <= 0) { this.countdown = Modules.MinigameConstants.TEAM_WAR_COUNTDOWN; @@ -95,7 +94,7 @@ export default class TeamWar extends Minigame { // Send the score packet to the players in-game. if (this.playersInGame.length > 0) this.sendPacket(this.playersInGame, { - action: Opcodes.TeamWar.Score, + action: Opcodes.MinigameActions.Score, countdown: this.countdown, redTeamKills: this.redTeamKills, blueTeamKills: this.blueTeamKills @@ -104,31 +103,12 @@ export default class TeamWar extends Minigame { // Send the countdown packet to the players in the lobby. if (this.playersInLobby.length > 0) this.sendPacket(this.playersInLobby, { - action: Opcodes.TeamWar.Lobby, + action: Opcodes.MinigameActions.Lobby, countdown: this.countdown, started: this.started }); } - /** - * Shuffles the players in the lobby. - * @returns Returns the shuffled players in the lobby. - */ - - private shuffleLobby(): Player[] { - let lobby = this.playersInLobby; - - for (let x = lobby.length - 1; x > 0; x--) { - let y = Math.floor(Math.random() * x), - temp = lobby[x]; - - lobby[x] = lobby[y]; - lobby[y] = temp; - } - - return lobby; - } - /** * Finds all the players in the lobby and splits them into two teams, * then we send packets to both teams to assign teams. @@ -138,11 +118,11 @@ export default class TeamWar extends Minigame { let redTeam = this.shuffleLobby(); // Not enough players, we're not starting the game. - if (redTeam.length < Modules.MinigameConstants.TEAM_WAR_MIN_PLAYERS) { + if (redTeam.length < (Modules.MinigameConstants.TEAM_WAR_MIN_PLAYERS as number)) { // Notify all players there aren't enough players in the lobby. for (let player of redTeam) player.notify( - `There must be at least ${Modules.MinigameConstants.TEAM_WAR_MIN_PLAYERS} players to start the game.` + `misc:MINIMUM_PLAYERS_MINIGAME;minimum=${Modules.MinigameConstants.TEAM_WAR_MIN_PLAYERS}` ); return; @@ -163,7 +143,8 @@ export default class TeamWar extends Minigame { for (let player of this.playersInGame) { player.minigame = Opcodes.Minigame.TeamWar; - let position = this.getRespawnPoint(player.team!); + // Grab the spawn point for the player's team. + let position = this.getSpawnPoint(player.team!); player.teleport(position.x, position.y, false, true); } @@ -174,10 +155,6 @@ export default class TeamWar extends Minigame { */ public override stop(): void { - this.sendPacket(this.playersInGame, { - action: Opcodes.TeamWar.End - }); - super.stop(); this.redTeamKills = 0; diff --git a/packages/server/src/game/minigames/minigame.ts b/packages/server/src/game/minigames/minigame.ts index fe448f7e7b..039ad2055c 100644 --- a/packages/server/src/game/minigames/minigame.ts +++ b/packages/server/src/game/minigames/minigame.ts @@ -4,16 +4,22 @@ import Area from '../map/areas/area'; import Utils from '@kaetram/common/util/utils'; import { Modules, Opcodes } from '@kaetram/common/network'; -import { Minigame as Packet } from '@kaetram/common/network/impl'; +import { MinigamePacket as Packet } from '@kaetram/common/network/impl'; import type World from '../world'; import type Player from '../entity/character/player/player'; -import type { MinigamePacket } from '@kaetram/common/types/messages/outgoing'; +import type { MinigamePacketData } from '@kaetram/common/types/messages/outgoing'; export default class Minigame { + // The name for the minigame (used for scoreboard, entering, etc.) + public name = ''; + // State of the minigame. protected started = false; + // Countdown for the lobby/in-game used for certain minigames. + protected countdown = 300_000; // 4 minutes. + // The lobby area for the minigame. protected lobby: Area = new Area(0, 0, 0, 0, 0); @@ -21,7 +27,16 @@ export default class Minigame { protected playersInLobby: Player[] = []; protected playersInGame: Player[] = []; - public constructor(protected world: World, private type: Opcodes.Minigame) {} + // Tick interval for the minigame. + private tickInterval = 1000; // Every 1 second. + + public constructor( + protected world: World, + private type: Opcodes.Minigame + ) { + // Begin the tick interval for the minigame. + setInterval(this.tick.bind(this), this.tickInterval); + } /** * Superclass implementation responsible for creating the baseline requirements @@ -34,11 +49,22 @@ export default class Minigame { // Specifically handle the lobby area. if (area.mObjectType !== 'lobby') return; + this.lobby = area; + // Handle the entry and exit of players into the lobby. area.onEnter((player: Player) => this.addPlayer(player)); area.onExit((player: Player) => this.removePlayer(player)); } + /** + * Generic implementation for the tick function. This is called at a specified + * interval and is used to handle the logic for the minigame. + */ + + protected tick(): void { + // + } + /** * Generic implementation for handling a player undergoing a disconnection * while in the minigame. We essentially kick them to the lobby and remove @@ -75,10 +101,15 @@ export default class Minigame { */ public stop(): void { + // Signal to the players in game that the minigame has ended. + this.sendPacket(this.playersInGame, { + action: Opcodes.MinigameActions.End + }); + this.started = false; for (let player of this.playersInGame) { - player.minigame = undefined; + player.clearMinigame(); let position = this.getLobbyPosition(); @@ -100,6 +131,9 @@ export default class Minigame { this.sendPacket([player], { action: Opcodes.MinigameState.Lobby }); + + // Notify the player of the minigame. + player.notify(`misc:ENTERED_LOBBY;name=${this.name}`); } /** @@ -111,8 +145,11 @@ export default class Minigame { this.playersInLobby.splice(this.playersInLobby.indexOf(player), 1); this.sendPacket([player], { - action: Opcodes.TeamWar.Exit + action: Opcodes.MinigameActions.Exit }); + + // Notify the player of the minigame. + player.notify(`misc:EXITED_LOBBY;name=${this.name}`); } /** @@ -123,13 +160,32 @@ export default class Minigame { * @param info The packet information we are sending. */ - protected sendPacket(players: Player[], info: MinigamePacket): void { + protected sendPacket(players: Player[], info: MinigamePacketData): void { this.world.push(Modules.PacketType.Players, { players, packet: new Packet(this.type, info) }); } + /** + * Shuffles the players in the lobby. + * @returns Returns the shuffled players in the lobby. + */ + + protected shuffleLobby(): Player[] { + let lobby = this.playersInLobby; + + for (let x = lobby.length - 1; x > 0; x--) { + let y = Math.floor(Math.random() * x), + temp = lobby[x]; + + lobby[x] = lobby[y]; + lobby[y] = temp; + } + + return lobby; + } + /** * Superclass implementation for finding a position within the lobby. * @returns A default position in the world. @@ -143,12 +199,24 @@ export default class Minigame { } /** - * Superclass implementation for respawn during a minigame. + * Superclass implementation for spawn during a minigame. * @params _var1 Optional parameter for the spawn point. * @returns Default position in the world. */ - public getRespawnPoint(_var1?: unknown): Position { - return { x: 50, y: 23 }; + public getSpawnPoint(_var1?: unknown): Position { + return this.getLobbyPosition(); + } + + /** + * Iterates through all the players in the game and calls the callback function. + * @param callback Contains the player object that we are iterating through. + */ + + protected forEachPlayerInGame(callback: (player: Player) => void): void { + // No players in game or the game hasn't started, used to prevent unnecessary overhead. + if (!this.started || this.playersInGame.length === 0) return; + + for (let player of this.playersInGame) callback(player); } } diff --git a/packages/server/src/game/minigames/minigames.ts b/packages/server/src/game/minigames/minigames.ts index d933687921..072fa9f254 100644 --- a/packages/server/src/game/minigames/minigames.ts +++ b/packages/server/src/game/minigames/minigames.ts @@ -1,7 +1,7 @@ import Index from './impl/index'; -import { Opcodes } from '@kaetram/common/network'; import log from '@kaetram/common/util/log'; +import { Opcodes } from '@kaetram/common/network'; import type Area from '../map/areas/area'; import type Areas from '../map/areas/areas'; diff --git a/packages/server/src/game/world.ts b/packages/server/src/game/world.ts index 87dc1c86ee..00d1db2584 100644 --- a/packages/server/src/game/world.ts +++ b/packages/server/src/game/world.ts @@ -15,9 +15,8 @@ import Events from '../controllers/events'; import config from '@kaetram/common/config'; import log from '@kaetram/common/util/log'; -import Utils from '@kaetram/common/util/utils'; import Discord from '@kaetram/common/api/discord'; -import { Chat, Guild } from '@kaetram/common/network/impl'; +import { ChatPacket, GuildPacket } from '@kaetram/common/network/impl'; import { Modules, Opcodes } from '@kaetram/common/network'; import { PacketType } from '@kaetram/common/network/modules'; @@ -28,7 +27,6 @@ import type SocketHandler from '../network/sockethandler'; import type Player from './entity/character/player/player'; import type Packet from '@kaetram/common/network/packet'; import type MongoDB from '@kaetram/common/database/mongodb/mongodb'; -import type { GuildData } from '@kaetram/common/types/guild'; export interface PacketData { packet: Packet; @@ -64,7 +62,10 @@ export default class World { public connectionCallback?: ConnectionCallback; - public constructor(public socketHandler: SocketHandler, public database: MongoDB) { + public constructor( + public socketHandler: SocketHandler, + public database: MongoDB + ) { this.map = new Map(this); this.api = new API(this); this.stores = new Stores(this); @@ -149,9 +150,9 @@ export default class World { public globalMessage(source: string, message: string, colour = '', noPrefix = false): void { this.push(Modules.PacketType.Broadcast, { - packet: new Chat({ + packet: new ChatPacket({ source: noPrefix ? source : `[Global]: ${source}`, - message: Utils.parseMessage(message), + message, colour }) }); @@ -200,40 +201,40 @@ export default class World { * @param serverId The server id that the player is currently logged in to. */ - public syncGuildMembers( + public async syncGuildMembers( identifier: string, username: string, logout = false, serverId = config.serverId - ): void { + ): Promise { if (!identifier) return; - this.database.loader.loadGuild(identifier, (guild?: GuildData) => { - if (!guild) return; - - // Iterate through the members in the guild. - for (let member of guild.members) { - // Skip if the member is the player we are updating. - if (member.username === username) continue; - - let player = this.getPlayerByName(member.username); - - // Skip if player doesn't exist. - if (!player) continue; - - // If the player is online, send a packet with a new status. - player.send( - new Guild(Opcodes.Guild.Update, { - members: [ - { - username, - serverId: logout ? -1 : serverId - } - ] - }) - ); - } - }); + let guild = await this.database.loader.loadGuild(identifier); + + if (!guild) return; + + // Iterate through the members in the guild. + for (let member of guild.members) { + // Skip if the member is the player we are updating. + if (member.username === username) continue; + + let player = this.getPlayerByName(member.username); + + // Skip if player doesn't exist. + if (!player) continue; + + // If the player is online, send a packet with a new status. + player.send( + new GuildPacket(Opcodes.Guild.Update, { + members: [ + { + username, + serverId: logout ? -1 : serverId + } + ] + }) + ); + } } /** diff --git a/packages/server/src/info/formulas.ts b/packages/server/src/info/formulas.ts index 2d0973d686..49b2a0daf6 100644 --- a/packages/server/src/info/formulas.ts +++ b/packages/server/src/info/formulas.ts @@ -1,8 +1,8 @@ -import { Modules } from '@kaetram/common/network'; import Utils from '@kaetram/common/util/utils'; +import { Modules } from '@kaetram/common/network'; -import type { Stats } from '@kaetram/common/types/item'; import type Character from '../game/entity/character/character'; +import type { Stats } from '@kaetram/common/types/item'; export default { LevelExp: [] as number[], @@ -120,13 +120,16 @@ export default { } } - // TODO - These potions will add a level to their respective skill, and will be removed after 60 seconds. - // Increase accuracy if the attacker has the accuracy potion effect. - if (attacker.status.has(Modules.Effects.AccuracyPotion)) accuracy -= 0.07; + if (attacker.status.has(Modules.Effects.AccuracyBuff)) accuracy -= 0.07; + if (attacker.status.has(Modules.Effects.AccuracySuperBuff)) accuracy -= 0.12; // Decrease accuracy if the target has the defense potion effect. - if (target.status.has(Modules.Effects.DefensePotion)) accuracy += 0.08; + if (target.status.has(Modules.Effects.DefenseBuff)) accuracy += 0.08; + if (target.status.has(Modules.Effects.DefenseSuperBuff)) accuracy += 0.12; + + // Increase accuracy if the target has the terror effect. + if (target.status.has(Modules.Effects.Terror)) accuracy -= 0.4; // Terror decreases overall accuracy, so we increase it by 1. if (attacker.status.has(Modules.Effects.Terror)) accuracy += 1; @@ -185,7 +188,10 @@ export default { } // Apply a 10% damage boost if the character has the strength potion effect. - if (character.status.has(Modules.Effects.StrengthPotion)) damage *= 1.1; + if (character.status.has(Modules.Effects.StrengthBuff)) damage *= 1.1; + + // Apply 15% damage boost if the character has the super strength potion effect. + if (character.status.has(Modules.Effects.StrengthSuperBuff)) damage *= 1.15; // Ensure the damage is not negative. if (damage < 0) damage = 0; @@ -214,15 +220,14 @@ export default { magic: (attackerStats.magic - targetStats.magic) / 3, archery: (attackerStats.archery - targetStats.archery) / 3 }, - totalWeight = - weights.crush + weights.slash + weights.stab + weights.magic + weights.archery; + totalWeight = Object.values(weights).reduce((acc, curr) => { + if (curr < 0) return acc; + return acc + curr; + }, 0); - // Negative values add no weight to the accuracy modifier. - if (weights.crush < 0) totalWeight -= weights.crush; - if (weights.slash < 0) totalWeight -= weights.slash; - if (weights.stab < 0) totalWeight -= weights.stab; - if (weights.magic < 0) totalWeight -= weights.magic; - if (weights.archery < 0) totalWeight -= weights.archery; + // Respective classes use their own weights. + if (attacker.isArcher()) totalWeight = weights.archery; + if (attacker.isMagic()) totalWeight = weights.magic; // If our attack style is the same or none then we do not have any advantage in our accuracy. if (attackStyle === defenseStyle || attackStyle === Modules.DamageStyle.None) @@ -236,32 +241,32 @@ export default { switch (attackStyle) { case Modules.DamageStyle.Crush: { - totalWeight += weights.crush * 2; + totalWeight += + defenseStyle === Modules.DamageStyle.Slash ? weights.crush : -weights.crush / 2; break; } - case Modules.DamageStyle.Slash: { - totalWeight += weights.slash * 2; + totalWeight += + defenseStyle === Modules.DamageStyle.Stab ? weights.slash : -weights.slash / 2; break; } - case Modules.DamageStyle.Stab: { - totalWeight += weights.stab * 2; + totalWeight += + defenseStyle === Modules.DamageStyle.Crush ? weights.stab : -weights.stab / 2; break; } - case Modules.DamageStyle.Magic: { - totalWeight += weights.magic * 2; + totalWeight += weights.magic; break; } - case Modules.DamageStyle.Archery: { - totalWeight += weights.archery * 2; + totalWeight += weights.archery; break; } } - return totalWeight || 1; + // Ensure the weight is always positive and more than 1 for the sake of combat mechanics + return Math.max(totalWeight, 1); }, /** diff --git a/packages/server/src/main.ts b/packages/server/src/main.ts index 7d3ee2d8f9..a07ab265f6 100644 --- a/packages/server/src/main.ts +++ b/packages/server/src/main.ts @@ -4,6 +4,7 @@ import Console from './console'; import World from './game/world'; import Loader from './info/loader'; import SocketHandler from './network/sockethandler'; +import Args from './args'; import log from '@kaetram/common/util/log'; import config from '@kaetram/common/config'; @@ -19,7 +20,9 @@ class Main { private ready = false; - public constructor() { + public constructor(private params: string[] = process.argv) { + if (!this.handleLicensing()) return; + log.info(`Initializing ${config.name} game engine...`); this.socketHandler.onConnection(this.handleConnection.bind(this)); @@ -95,8 +98,9 @@ class Main { log.critical('Could not connect to the MongoDB server.'); log.critical(`Error: ${error}`); - // Exit the process. - exit(1); + log.info(`Attempting to reconnect in 10 seconds...`); + + setTimeout(() => this.database.createConnection(), 10_000); } /** @@ -117,6 +121,26 @@ class Main { // Actually exit the process. setTimeout(() => exit(0), 2000); } + + /** + * Ensures that the license agreements have been accepted before + * starting the server. + */ + + private handleLicensing(): boolean { + if (!config.acceptLicense) { + log.critical( + `You must read and accept both MPL2.0 and OPL licensing agreements. Once you've done so, toggle ACCEPT_LICENSE in your environment variables.` + ); + + return false; + } + + return true; + } } +// Parse the override arguments. +new Args(); + export default new Main(); diff --git a/packages/server/src/network/client.ts b/packages/server/src/network/client.ts index 3aa2013f41..a2ad88c437 100644 --- a/packages/server/src/network/client.ts +++ b/packages/server/src/network/client.ts @@ -3,7 +3,7 @@ import Incoming from '../controllers/incoming'; import WebSocket from 'websocket'; import log from '@kaetram/common/util/log'; import config from '@kaetram/common/config'; -import { Handshake, Relay } from '@kaetram/common/network/impl'; +import { HandshakePacket, RelayPacket } from '@kaetram/common/network/impl'; import type World from '../game/world'; import type Packet from '@kaetram/common/network/packet'; @@ -58,7 +58,8 @@ export default class Client { // Relay the handshake packet to the connection immediately. connection.send( JSON.stringify( - new Handshake({ + new HandshakePacket({ + type: 'hub', gVer: config.gver, name: config.name, serverId: config.serverId, @@ -136,6 +137,6 @@ export default class Client { */ public relay(username: string, packet: Packet): void { - this.send(new Relay(username, packet)); + this.send(new RelayPacket(username, packet)); } } diff --git a/packages/server/src/network/connection.ts b/packages/server/src/network/connection.ts index a858aa998c..3acb8dee45 100644 --- a/packages/server/src/network/connection.ts +++ b/packages/server/src/network/connection.ts @@ -29,7 +29,10 @@ export default class Connection { private closeCallback?: () => void; - public constructor(public instance: string, private socket: HeaderWebSocket) { + public constructor( + public instance: string, + private socket: HeaderWebSocket + ) { // Convert the IP address hex string to a readable IP address. this.address = socket.remoteAddress || Utils.bufferToAddress(socket.getRemoteAddressAsText()); @@ -89,18 +92,28 @@ export default class Connection { this.clearVerifyInterval(); } + /** + * Updates the timeout duration for the player and refreshes the existing timeout. + * @param duration The new duration of the timeout. + */ + + public updateTimeout(duration: number): void { + this.timeoutDuration = duration; + + this.refreshTimeout(); + } + /** * Resets the timeout every time an action is performed. This way we keep * a `countdown` going constantly that resets every time an action is performed. - * @param duration The duration of the timeout. Defaults to the player's timeout duration. */ - public refreshTimeout(duration = this.timeoutDuration): void { + public refreshTimeout(): void { // Clear the existing timeout and start over. this.clearTimeout(); // Start a new timeout and set the player's timeout variable. - this.disconnectTimeout = setTimeout(() => this.reject('timeout'), duration); + this.disconnectTimeout = setTimeout(() => this.reject('timeout'), this.timeoutDuration); } /** diff --git a/packages/server/src/network/network.ts b/packages/server/src/network/network.ts index 7647886e6f..cfa6d19be9 100644 --- a/packages/server/src/network/network.ts +++ b/packages/server/src/network/network.ts @@ -1,7 +1,7 @@ import Player from '../game/entity/character/player/player'; import config from '@kaetram/common/config'; -import { Handshake } from '@kaetram/common/network/impl'; +import { HandshakePacket } from '@kaetram/common/network/impl'; import type World from '../game/world'; import type Connection from './connection'; @@ -78,7 +78,8 @@ export default class Network { this.send( player, - new Handshake({ + new HandshakePacket({ + type: 'client', instance: player.instance, serverId: config.serverId }) diff --git a/packages/server/tsconfig.json b/packages/server/tsconfig.json index 97b31d4a54..8d9d2d200f 100644 --- a/packages/server/tsconfig.json +++ b/packages/server/tsconfig.json @@ -1,6 +1 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "types": ["@types/node", "@kaetram/common"] - } -} +{ "extends": "../../tsconfig.json" } diff --git a/packages/tools/map/data/README.md b/packages/tools/map/data/README.md new file mode 100644 index 0000000000..5728ec9c39 --- /dev/null +++ b/packages/tools/map/data/README.md @@ -0,0 +1,7 @@ +The `map_template.json` provided gives the bare minimum required to start creating a map. Note that you will have to create a `tilesets` folder, copy the tilesets from the client, and re-define the spawn position in the game Modules. We no longer provide the entire map file due to people blatantly copying Kaetram without any form of creative input. This project was created to help those who want to get into game development, not to be copied for monetary gains. + +There will be little to no support in map creation from the developers due to time constraints. However, we encourage you to create tutorials and help others if you wish. + +Please refer to the following wiki article that outlines how all the objects on the map work. This includes tile properties: + +https://github.com/Kaetram/Kaetram-Open/wiki/Game-Map \ No newline at end of file diff --git a/packages/tools/map/data/map_template.json b/packages/tools/map/data/map_template.json new file mode 100644 index 0000000000..b2d08f8d24 --- /dev/null +++ b/packages/tools/map/data/map_template.json @@ -0,0 +1,93661 @@ +{ "compressionlevel":-1, + "height":1008, + "infinite":false, + "layers":[ + { + "compression":"zlib", + "data":"eJzswQEBAAAAgJD+r+4ICgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgNuDQwIAAAAAQf9fu8IGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCXkGgAB", + "encoding":"base64", + "height":1008, + "id":91, + "name":"ground", + "opacity":1, + "type":"tilelayer", + "visible":true, + "width":1152, + "x":0, + "y":0 + }, + { + "compression":"zlib", + "data":"eJzswQEBAAAAgJD+r+4ICgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgNuDQwIAAAAAQf9fu8IGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCXkGgAB", + "encoding":"base64", + "height":1008, + "id":31, + "name":"plateau1", + "opacity":1, + "type":"tilelayer", + "visible":true, + "width":1152, + "x":0, + "y":0 + }, + { + "compression":"zlib", + "data":"eJzswQEBAAAAgJD+r+4ICgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgNuDQwIAAAAAQf9fu8IGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCXkGgAB", + "encoding":"base64", + "height":1008, + "id":35, + "name":"plateau2", + "opacity":1, + "type":"tilelayer", + "visible":true, + "width":1152, + "x":0, + "y":0 + }, + { + "compression":"zlib", + "data":"eJzswQEBAAAAgJD+r+4ICgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgNuDQwIAAAAAQf9fu8IGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCXkGgAB", + "encoding":"base64", + "height":1008, + "id":37, + "name":"plateau3", + "opacity":1, + "type":"tilelayer", + "visible":true, + "width":1152, + "x":0, + "y":0 + }, + { + "compression":"zlib", + "data":"eJzswQEBAAAAgJD+r+4ICgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgNuDQwIAAAAAQf9fu8IGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCXkGgAB", + "encoding":"base64", + "height":1008, + "id":39, + "name":"plateau4", + "opacity":1, + "type":"tilelayer", + "visible":true, + "width":1152, + "x":0, + "y":0 + }, + { + "compression":"zlib", + "data":"eJzswQEBAAAAgJD+r+4ICgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgNuDQwIAAAAAQf9fu8IGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCXkGgAB", + "encoding":"base64", + "height":1008, + "id":30, + "name":"entities", + "opacity":1, + "type":"tilelayer", + "visible":true, + "width":1152, + "x":0, + "y":0 + }, + { + "compression":"zlib", + "data":"eJzswQEBAAAAgJD+r+4ICgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgNuDQwIAAAAAQf9fu8IGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCXkGgAB", + "encoding":"base64", + "height":1008, + "id":19, + "name":"blocking", + "opacity":1, + "type":"tilelayer", + "visible":true, + "width":1152, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":78, + "name":"regions (visualization only)", + "objects":[ + { + "height":768, + "id":560, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":1536 + }, + { + "height":768, + "id":642, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":1536 + }, + { + "height":768, + "id":643, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":2304 + }, + { + "height":768, + "id":644, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":2304 + }, + { + "height":768, + "id":645, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":1536 + }, + { + "height":768, + "id":646, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":1536 + }, + { + "height":768, + "id":647, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":2304 + }, + { + "height":768, + "id":648, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":2304 + }, + { + "height":768, + "id":649, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":3072 + }, + { + "height":768, + "id":650, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":3072 + }, + { + "height":768, + "id":651, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":3840 + }, + { + "height":768, + "id":652, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":3840 + }, + { + "height":768, + "id":653, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":3072 + }, + { + "height":768, + "id":654, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":3072 + }, + { + "height":768, + "id":655, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":3840 + }, + { + "height":768, + "id":656, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":3840 + }, + { + "height":768, + "id":673, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":1536 + }, + { + "height":768, + "id":674, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":1536 + }, + { + "height":768, + "id":675, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":2304 + }, + { + "height":768, + "id":676, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":2304 + }, + { + "height":768, + "id":677, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":1536 + }, + { + "height":768, + "id":678, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":1536 + }, + { + "height":768, + "id":679, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":2304 + }, + { + "height":768, + "id":680, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":2304 + }, + { + "height":768, + "id":681, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":3072 + }, + { + "height":768, + "id":682, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":3072 + }, + { + "height":768, + "id":683, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":3840 + }, + { + "height":768, + "id":684, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":3840 + }, + { + "height":768, + "id":685, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":3072 + }, + { + "height":768, + "id":686, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":3072 + }, + { + "height":768, + "id":687, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":3840 + }, + { + "height":768, + "id":688, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":3840 + }, + { + "height":768, + "id":689, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":4608 + }, + { + "height":768, + "id":690, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":4608 + }, + { + "height":768, + "id":691, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":5376 + }, + { + "height":768, + "id":692, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":5376 + }, + { + "height":768, + "id":693, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":4608 + }, + { + "height":768, + "id":694, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":4608 + }, + { + "height":768, + "id":695, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":5376 + }, + { + "height":768, + "id":696, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":5376 + }, + { + "height":768, + "id":697, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":6144 + }, + { + "height":768, + "id":698, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":6144 + }, + { + "height":768, + "id":699, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":6912 + }, + { + "height":768, + "id":700, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":6912 + }, + { + "height":768, + "id":701, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":6144 + }, + { + "height":768, + "id":702, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":6144 + }, + { + "height":768, + "id":703, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":6912 + }, + { + "height":768, + "id":704, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":6912 + }, + { + "height":768, + "id":705, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":4608 + }, + { + "height":768, + "id":706, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":4608 + }, + { + "height":768, + "id":707, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":5376 + }, + { + "height":768, + "id":708, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":5376 + }, + { + "height":768, + "id":709, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":4608 + }, + { + "height":768, + "id":710, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":4608 + }, + { + "height":768, + "id":711, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":5376 + }, + { + "height":768, + "id":712, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":5376 + }, + { + "height":768, + "id":713, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":6144 + }, + { + "height":768, + "id":714, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":6144 + }, + { + "height":768, + "id":715, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":6912 + }, + { + "height":768, + "id":716, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":6912 + }, + { + "height":768, + "id":717, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":6144 + }, + { + "height":768, + "id":718, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":6144 + }, + { + "height":768, + "id":719, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":6912 + }, + { + "height":768, + "id":720, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":6912 + }, + { + "height":768, + "id":721, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":1536 + }, + { + "height":768, + "id":722, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":1536 + }, + { + "height":768, + "id":723, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":2304 + }, + { + "height":768, + "id":724, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":2304 + }, + { + "height":768, + "id":725, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":1536 + }, + { + "height":768, + "id":726, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":1536 + }, + { + "height":768, + "id":727, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":2304 + }, + { + "height":768, + "id":728, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":2304 + }, + { + "height":768, + "id":729, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":3072 + }, + { + "height":768, + "id":730, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":3072 + }, + { + "height":768, + "id":731, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":3840 + }, + { + "height":768, + "id":732, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":3840 + }, + { + "height":768, + "id":733, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":3072 + }, + { + "height":768, + "id":734, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":3072 + }, + { + "height":768, + "id":735, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":3840 + }, + { + "height":768, + "id":736, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":3840 + }, + { + "height":768, + "id":737, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":1536 + }, + { + "height":768, + "id":738, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":1536 + }, + { + "height":768, + "id":739, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":2304 + }, + { + "height":768, + "id":740, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":2304 + }, + { + "height":768, + "id":741, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":1536 + }, + { + "height":768, + "id":742, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":1536 + }, + { + "height":768, + "id":743, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":2304 + }, + { + "height":768, + "id":744, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":2304 + }, + { + "height":768, + "id":745, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":3072 + }, + { + "height":768, + "id":746, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":3072 + }, + { + "height":768, + "id":747, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":3840 + }, + { + "height":768, + "id":748, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":3840 + }, + { + "height":768, + "id":749, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":3072 + }, + { + "height":768, + "id":750, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":3072 + }, + { + "height":768, + "id":751, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":3840 + }, + { + "height":768, + "id":752, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":3840 + }, + { + "height":768, + "id":753, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":4608 + }, + { + "height":768, + "id":754, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":4608 + }, + { + "height":768, + "id":755, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":5376 + }, + { + "height":768, + "id":756, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":5376 + }, + { + "height":768, + "id":757, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":4608 + }, + { + "height":768, + "id":758, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":4608 + }, + { + "height":768, + "id":759, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":5376 + }, + { + "height":768, + "id":760, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":5376 + }, + { + "height":768, + "id":761, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":6144 + }, + { + "height":768, + "id":762, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":6144 + }, + { + "height":768, + "id":763, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":6912 + }, + { + "height":768, + "id":764, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":6912 + }, + { + "height":768, + "id":765, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":6144 + }, + { + "height":768, + "id":766, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":6144 + }, + { + "height":768, + "id":767, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":6912 + }, + { + "height":768, + "id":768, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":6912 + }, + { + "height":768, + "id":769, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":4608 + }, + { + "height":768, + "id":770, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":4608 + }, + { + "height":768, + "id":771, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":5376 + }, + { + "height":768, + "id":772, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":5376 + }, + { + "height":768, + "id":773, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":4608 + }, + { + "height":768, + "id":774, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":4608 + }, + { + "height":768, + "id":775, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":5376 + }, + { + "height":768, + "id":776, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":5376 + }, + { + "height":768, + "id":777, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":6144 + }, + { + "height":768, + "id":778, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":6144 + }, + { + "height":768, + "id":779, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":6912 + }, + { + "height":768, + "id":780, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":6912 + }, + { + "height":768, + "id":781, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":6144 + }, + { + "height":768, + "id":782, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":6144 + }, + { + "height":768, + "id":783, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":6912 + }, + { + "height":768, + "id":784, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":6912 + }, + { + "height":768, + "id":785, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":1536 + }, + { + "height":768, + "id":786, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":1536 + }, + { + "height":768, + "id":787, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":2304 + }, + { + "height":768, + "id":788, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":2304 + }, + { + "height":768, + "id":789, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":1536 + }, + { + "height":768, + "id":790, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":1536 + }, + { + "height":768, + "id":791, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":2304 + }, + { + "height":768, + "id":792, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":2304 + }, + { + "height":768, + "id":793, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":3072 + }, + { + "height":768, + "id":794, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":3072 + }, + { + "height":768, + "id":795, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":3840 + }, + { + "height":768, + "id":796, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":3840 + }, + { + "height":768, + "id":797, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":3072 + }, + { + "height":768, + "id":798, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":3072 + }, + { + "height":768, + "id":799, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":3840 + }, + { + "height":768, + "id":800, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":3840 + }, + { + "height":768, + "id":801, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":1536 + }, + { + "height":768, + "id":802, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":1536 + }, + { + "height":768, + "id":803, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":2304 + }, + { + "height":768, + "id":804, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":2304 + }, + { + "height":768, + "id":809, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":3072 + }, + { + "height":768, + "id":810, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":3072 + }, + { + "height":768, + "id":811, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":3840 + }, + { + "height":768, + "id":812, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":3840 + }, + { + "height":768, + "id":817, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":4608 + }, + { + "height":768, + "id":818, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":4608 + }, + { + "height":768, + "id":819, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":5376 + }, + { + "height":768, + "id":820, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":5376 + }, + { + "height":768, + "id":821, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":4608 + }, + { + "height":768, + "id":822, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":4608 + }, + { + "height":768, + "id":823, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":5376 + }, + { + "height":768, + "id":824, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":5376 + }, + { + "height":768, + "id":825, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":6144 + }, + { + "height":768, + "id":826, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":6144 + }, + { + "height":768, + "id":827, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":6912 + }, + { + "height":768, + "id":828, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":6912 + }, + { + "height":768, + "id":829, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":6144 + }, + { + "height":768, + "id":830, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":6144 + }, + { + "height":768, + "id":831, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":6912 + }, + { + "height":768, + "id":832, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":6912 + }, + { + "height":768, + "id":833, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":4608 + }, + { + "height":768, + "id":834, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":4608 + }, + { + "height":768, + "id":835, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":5376 + }, + { + "height":768, + "id":836, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":5376 + }, + { + "height":768, + "id":841, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":6144 + }, + { + "height":768, + "id":842, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":6144 + }, + { + "height":768, + "id":843, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":6912 + }, + { + "height":768, + "id":844, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":6912 + }, + { + "height":768, + "id":849, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":7680 + }, + { + "height":768, + "id":850, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":7680 + }, + { + "height":768, + "id":851, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":8448 + }, + { + "height":768, + "id":852, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":8448 + }, + { + "height":768, + "id":853, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":7680 + }, + { + "height":768, + "id":854, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":7680 + }, + { + "height":768, + "id":855, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":8448 + }, + { + "height":768, + "id":856, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":8448 + }, + { + "height":768, + "id":857, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":9216 + }, + { + "height":768, + "id":858, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":9216 + }, + { + "height":768, + "id":859, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":9984 + }, + { + "height":768, + "id":860, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":9984 + }, + { + "height":768, + "id":861, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":9216 + }, + { + "height":768, + "id":862, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":9216 + }, + { + "height":768, + "id":863, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":9984 + }, + { + "height":768, + "id":864, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":9984 + }, + { + "height":768, + "id":865, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":7680 + }, + { + "height":768, + "id":866, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":7680 + }, + { + "height":768, + "id":867, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":8448 + }, + { + "height":768, + "id":868, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":8448 + }, + { + "height":768, + "id":869, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":7680 + }, + { + "height":768, + "id":870, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":7680 + }, + { + "height":768, + "id":871, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":8448 + }, + { + "height":768, + "id":872, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":8448 + }, + { + "height":768, + "id":873, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":9216 + }, + { + "height":768, + "id":874, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":9216 + }, + { + "height":768, + "id":875, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":9984 + }, + { + "height":768, + "id":876, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":9984 + }, + { + "height":768, + "id":877, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":9216 + }, + { + "height":768, + "id":878, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":9216 + }, + { + "height":768, + "id":879, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":9984 + }, + { + "height":768, + "id":880, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":9984 + }, + { + "height":768, + "id":881, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":10752 + }, + { + "height":768, + "id":882, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":10752 + }, + { + "height":768, + "id":883, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":11520 + }, + { + "height":768, + "id":884, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":11520 + }, + { + "height":768, + "id":885, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":10752 + }, + { + "height":768, + "id":886, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":10752 + }, + { + "height":768, + "id":887, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":11520 + }, + { + "height":768, + "id":888, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":11520 + }, + { + "height":768, + "id":889, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":12288 + }, + { + "height":768, + "id":890, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":12288 + }, + { + "height":768, + "id":891, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":1536, + "y":13056 + }, + { + "height":768, + "id":892, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":2304, + "y":13056 + }, + { + "height":768, + "id":893, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":12288 + }, + { + "height":768, + "id":894, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":12288 + }, + { + "height":768, + "id":895, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3072, + "y":13056 + }, + { + "height":768, + "id":896, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":3840, + "y":13056 + }, + { + "height":768, + "id":897, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":10752 + }, + { + "height":768, + "id":898, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":10752 + }, + { + "height":768, + "id":899, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":11520 + }, + { + "height":768, + "id":900, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":11520 + }, + { + "height":768, + "id":901, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":10752 + }, + { + "height":768, + "id":902, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":10752 + }, + { + "height":768, + "id":903, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":11520 + }, + { + "height":768, + "id":904, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":11520 + }, + { + "height":768, + "id":905, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":12288 + }, + { + "height":768, + "id":906, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":12288 + }, + { + "height":768, + "id":907, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":4608, + "y":13056 + }, + { + "height":768, + "id":908, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":5376, + "y":13056 + }, + { + "height":768, + "id":909, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":12288 + }, + { + "height":768, + "id":910, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":12288 + }, + { + "height":768, + "id":911, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6144, + "y":13056 + }, + { + "height":768, + "id":912, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":6912, + "y":13056 + }, + { + "height":768, + "id":913, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":7680 + }, + { + "height":768, + "id":914, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":7680 + }, + { + "height":768, + "id":915, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":8448 + }, + { + "height":768, + "id":916, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":8448 + }, + { + "height":768, + "id":917, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":7680 + }, + { + "height":768, + "id":918, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":7680 + }, + { + "height":768, + "id":919, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":8448 + }, + { + "height":768, + "id":920, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":8448 + }, + { + "height":768, + "id":921, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":9216 + }, + { + "height":768, + "id":922, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":9216 + }, + { + "height":768, + "id":923, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":9984 + }, + { + "height":768, + "id":924, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":9984 + }, + { + "height":768, + "id":925, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":9216 + }, + { + "height":768, + "id":926, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":9216 + }, + { + "height":768, + "id":927, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":9984 + }, + { + "height":768, + "id":928, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":9984 + }, + { + "height":768, + "id":929, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":7680 + }, + { + "height":768, + "id":930, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":7680 + }, + { + "height":768, + "id":931, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":8448 + }, + { + "height":768, + "id":932, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":8448 + }, + { + "height":768, + "id":933, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":7680 + }, + { + "height":768, + "id":934, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":7680 + }, + { + "height":768, + "id":935, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":8448 + }, + { + "height":768, + "id":936, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":8448 + }, + { + "height":768, + "id":937, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":9216 + }, + { + "height":768, + "id":938, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":9216 + }, + { + "height":768, + "id":939, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":9984 + }, + { + "height":768, + "id":940, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":9984 + }, + { + "height":768, + "id":941, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":9216 + }, + { + "height":768, + "id":942, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":9216 + }, + { + "height":768, + "id":943, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":9984 + }, + { + "height":768, + "id":944, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":9984 + }, + { + "height":768, + "id":945, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":10752 + }, + { + "height":768, + "id":946, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":10752 + }, + { + "height":768, + "id":947, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":11520 + }, + { + "height":768, + "id":948, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":11520 + }, + { + "height":768, + "id":949, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":10752 + }, + { + "height":768, + "id":950, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":10752 + }, + { + "height":768, + "id":951, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":11520 + }, + { + "height":768, + "id":952, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":11520 + }, + { + "height":768, + "id":953, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":12288 + }, + { + "height":768, + "id":954, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":12288 + }, + { + "height":768, + "id":955, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":7680, + "y":13056 + }, + { + "height":768, + "id":956, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":8448, + "y":13056 + }, + { + "height":768, + "id":957, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":12288 + }, + { + "height":768, + "id":958, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":12288 + }, + { + "height":768, + "id":959, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9216, + "y":13056 + }, + { + "height":768, + "id":960, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":9984, + "y":13056 + }, + { + "height":768, + "id":961, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":10752 + }, + { + "height":768, + "id":962, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":10752 + }, + { + "height":768, + "id":963, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":11520 + }, + { + "height":768, + "id":964, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":11520 + }, + { + "height":768, + "id":965, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":10752 + }, + { + "height":768, + "id":966, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":10752 + }, + { + "height":768, + "id":967, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":11520 + }, + { + "height":768, + "id":968, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":11520 + }, + { + "height":768, + "id":969, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":12288 + }, + { + "height":768, + "id":970, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":12288 + }, + { + "height":768, + "id":971, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":10752, + "y":13056 + }, + { + "height":768, + "id":972, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":11520, + "y":13056 + }, + { + "height":768, + "id":973, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":12288 + }, + { + "height":768, + "id":974, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":12288 + }, + { + "height":768, + "id":975, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":12288, + "y":13056 + }, + { + "height":768, + "id":976, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13056, + "y":13056 + }, + { + "height":768, + "id":977, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":7680 + }, + { + "height":768, + "id":978, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":7680 + }, + { + "height":768, + "id":979, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":8448 + }, + { + "height":768, + "id":980, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":8448 + }, + { + "height":768, + "id":981, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":7680 + }, + { + "height":768, + "id":982, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":7680 + }, + { + "height":768, + "id":983, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":8448 + }, + { + "height":768, + "id":984, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":8448 + }, + { + "height":768, + "id":985, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":9216 + }, + { + "height":768, + "id":986, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":9216 + }, + { + "height":768, + "id":987, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":9984 + }, + { + "height":768, + "id":988, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":9984 + }, + { + "height":768, + "id":989, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":9216 + }, + { + "height":768, + "id":990, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":9216 + }, + { + "height":768, + "id":991, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":9984 + }, + { + "height":768, + "id":992, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":9984 + }, + { + "height":768, + "id":993, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":7680 + }, + { + "height":768, + "id":994, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":7680 + }, + { + "height":768, + "id":995, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":8448 + }, + { + "height":768, + "id":996, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":8448 + }, + { + "height":768, + "id":997, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":9216 + }, + { + "height":768, + "id":998, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":9216 + }, + { + "height":768, + "id":999, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":9984 + }, + { + "height":768, + "id":1000, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":9984 + }, + { + "height":768, + "id":1001, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":10752 + }, + { + "height":768, + "id":1002, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":10752 + }, + { + "height":768, + "id":1003, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":11520 + }, + { + "height":768, + "id":1004, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":11520 + }, + { + "height":768, + "id":1005, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":10752 + }, + { + "height":768, + "id":1006, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":10752 + }, + { + "height":768, + "id":1007, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":11520 + }, + { + "height":768, + "id":1008, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":11520 + }, + { + "height":768, + "id":1009, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":12288 + }, + { + "height":768, + "id":1010, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":12288 + }, + { + "height":768, + "id":1011, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":13824, + "y":13056 + }, + { + "height":768, + "id":1012, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":14592, + "y":13056 + }, + { + "height":768, + "id":1013, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":12288 + }, + { + "height":768, + "id":1014, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":12288 + }, + { + "height":768, + "id":1015, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":15360, + "y":13056 + }, + { + "height":768, + "id":1016, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16128, + "y":13056 + }, + { + "height":768, + "id":1017, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":10752 + }, + { + "height":768, + "id":1018, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":10752 + }, + { + "height":768, + "id":1019, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":11520 + }, + { + "height":768, + "id":1020, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":11520 + }, + { + "height":768, + "id":1021, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":12288 + }, + { + "height":768, + "id":1022, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":12288 + }, + { + "height":768, + "id":1023, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":16896, + "y":13056 + }, + { + "height":768, + "id":1024, + "name":"", + "rotation":0, + "type":"", + "visible":true, + "width":768, + "x":17664, + "y":13056 + }], + "opacity":1, + "type":"objectgroup", + "visible":false, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":75, + "name":"signs", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":15, + "name":"music", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":74, + "name":"minigame", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":49, + "name":"warps", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":16, + "name":"doors", + "objects":[], + "opacity":0.92, + "properties":[ + { + "name":"destination", + "type":"object", + "value":256 + }], + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":21, + "name":"chest", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":23, + "name":"chests", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":24, + "name":"pvp", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":26, + "name":"overlay", + "objects":[ + { + "height":1664, + "id":310, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.75 + }, + { + "name":"type", + "type":"string", + "value":"dark" + }], + "rotation":0, + "type":"", + "visible":true, + "width":3024, + "x":1920, + "y":10304 + }, + { + "height":256, + "id":367, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.6 + }, + { + "name":"type", + "type":"string", + "value":"inside" + }], + "rotation":0, + "type":"", + "visible":true, + "width":128, + "x":3120, + "y":12288 + }, + { + "height":3184, + "id":434, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.78 + }, + { + "name":"type", + "type":"string", + "value":"dark" + }], + "rotation":0, + "type":"", + "visible":true, + "width":1872, + "x":7952, + "y":10400 + }, + { + "height":272, + "id":435, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.7 + }, + { + "name":"type", + "type":"string", + "value":"dark" + }], + "rotation":0, + "type":"", + "visible":true, + "width":496, + "x":2560, + "y":13392 + }, + { + "height":624, + "id":436, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.85 + }, + { + "name":"type", + "type":"string", + "value":"dark" + }], + "rotation":0, + "type":"", + "visible":true, + "width":1680, + "x":11184, + "y":10112 + }, + { + "height":2320, + "id":467, + "name":"", + "polygon":[ + { + "x":0, + "y":0 + }, + { + "x":1584, + "y":32 + }, + { + "x":1664, + "y":560 + }, + { + "x":1616, + "y":1552 + }, + { + "x":1536, + "y":1584 + }, + { + "x":1456, + "y":2256 + }, + { + "x":-16, + "y":2320 + }, + { + "x":-96, + "y":1888 + }, + { + "x":32, + "y":1792 + }], + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.8 + }, + { + "name":"fog", + "type":"string", + "value":"fog" + }, + { + "name":"type", + "type":"string", + "value":"freezing" + }], + "rotation":0, + "type":"", + "visible":true, + "width":1568, + "x":7040, + "y":3856 + }, + { + "height":3184, + "id":1042, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.85 + }, + { + "name":"type", + "type":"string", + "value":"dark" + }], + "rotation":0, + "type":"", + "visible":true, + "width":1840, + "x":16608, + "y":10640 + }, + { + "height":1632, + "id":1067, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.75 + }, + { + "name":"type", + "type":"string", + "value":"dark" + }], + "rotation":0, + "type":"", + "visible":true, + "width":1504, + "x":13312, + "y":9216 + }, + { + "height":1296, + "id":1068, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.75 + }, + { + "name":"type", + "type":"string", + "value":"dark" + }], + "rotation":0, + "type":"", + "visible":true, + "width":1728, + "x":14288, + "y":12448 + }, + { + "height":1008, + "id":1069, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.75 + }, + { + "name":"type", + "type":"string", + "value":"dark" + }], + "rotation":0, + "type":"", + "visible":true, + "width":1600, + "x":11600, + "y":12160 + }, + { + "height":3072, + "id":1105, + "name":"", + "properties":[ + { + "name":"darkness", + "type":"float", + "value":0.55 + }, + { + "name":"rgb", + "type":"string", + "value":"22,124,184" + }, + { + "name":"type", + "type":"string", + "value":"dim" + }], + "rotation":0, + "type":"", + "visible":true, + "width":1840, + "x":1632, + "y":4528 + }], + "opacity":1, + "type":"objectgroup", + "visible":false, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":51, + "name":"camera", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":false, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":27, + "name":"lights", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":54, + "name":"dynamic", + "objects":[], + "opacity":1, + "type":"objectgroup", + "visible":true, + "x":0, + "y":0 + }, + { + "draworder":"topdown", + "id":80, + "name":"area names", + "objects":[ + { + "height":256, + "id":1070, + "name":"", + "rotation":0, + "text": + { + "bold":true, + "color":"#ffffff", + "fontfamily":"AdvoCut", + "pixelsize":96, + "text":"Mudwich", + "wrap":true + }, + "type":"", + "visible":true, + "width":656, + "x":2192, + "y":2560 + }, + { + "height":256, + "id":1072, + "name":"", + "rotation":0, + "text": + { + "bold":true, + "color":"#ffffff", + "fontfamily":"AdvoCut", + "pixelsize":96, + "text":"Lakesworld", + "wrap":true + }, + "type":"", + "visible":true, + "width":656, + "x":4848, + "y":4528 + }, + { + "height":256, + "id":1073, + "name":"", + "rotation":0, + "text": + { + "bold":true, + "color":"#ffffff", + "fontfamily":"AdvoCut", + "pixelsize":96, + "text":"Crullfeld", + "wrap":true + }, + "type":"", + "visible":true, + "width":656, + "x":4240, + "y":2656 + }, + { + "height":624, + "id":1099, + "name":"", + "rotation":0, + "text": + { + "bold":true, + "color":"#3e8a4b", + "fontfamily":"AdvoCut", + "pixelsize":166, + "text":"Yontil Pass", + "wrap":true + }, + "type":"", + "visible":true, + "width":1040, + "x":7120, + "y":5296 + }, + { + "height":256, + "id":1100, + "name":"", + "rotation":0, + "text": + { + "bold":true, + "color":"#ffffff", + "fontfamily":"AdvoCut", + "pixelsize":96, + "text":"Chymos Forest", + "wrap":true + }, + "type":"", + "visible":true, + "width":960, + "x":9840, + "y":6928 + }, + { + "height":256, + "id":1101, + "name":"", + "rotation":0, + "text": + { + "bold":true, + "color":"#ffffff", + "fontfamily":"AdvoCut", + "pixelsize":96, + "text":"Kingdom of Kaetram", + "wrap":true + }, + "type":"", + "visible":true, + "width":1104, + "x":4768, + "y":6304 + }, + { + "height":256, + "id":1102, + "name":"", + "rotation":0, + "text": + { + "bold":true, + "color":"#ffffff", + "fontfamily":"AdvoCut", + "pixelsize":96, + "text":"Under the Sea", + "wrap":true + }, + "type":"", + "visible":true, + "width":784, + "x":2272, + "y":5728 + }, + { + "height":368, + "id":1103, + "name":"", + "rotation":0, + "text": + { + "bold":true, + "color":"#ffffff", + "fontfamily":"AdvoCut", + "pixelsize":144, + "text":"Patsow", + "wrap":true + }, + "type":"", + "visible":true, + "width":864, + "x":6528, + "y":2288 + }], + "opacity":1, + "type":"objectgroup", + "visible":false, + "x":0, + "y":0 + }], + "nextlayerid":92, + "nextobjectid":1113, + "orientation":"orthogonal", + "renderorder":"right-down", + "tiledversion":"1.10.2", + "tileheight":16, + "tilesets":[ + { + "columns":64, + "firstgid":1, + "image":"tilesets\/tilesheet-1.png", + "imageheight":1024, + "imagewidth":1024, + "margin":0, + "name":"tilesheet-1", + "spacing":0, + "tilecount":4096, + "tileheight":16, + "tiles":[ + { + "animation":[ + { + "duration":250, + "tileid":0 + }, + { + "duration":250, + "tileid":1 + }, + { + "duration":250, + "tileid":2 + }, + { + "duration":250, + "tileid":3 + }, + { + "duration":250, + "tileid":4 + }, + { + "duration":250, + "tileid":5 + }], + "id":0 + }, + { + "id":7, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":8, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":14, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":17, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":18, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":19, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":20, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"nisoc" + }, + { + "name":"rockbase", + "type":"string", + "value":"nisoc" + }] + }, + { + "id":21, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"cinnabar" + }, + { + "name":"rockbase", + "type":"string", + "value":"cinnabar" + }] + }, + { + "id":22, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"pythar" + }, + { + "name":"rockbase", + "type":"string", + "value":"pythar" + }] + }, + { + "id":23, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"ibo" + }, + { + "name":"rockbase", + "type":"string", + "value":"ibo" + }] + }, + { + "id":24, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"moonrock" + }, + { + "name":"rockbase", + "type":"string", + "value":"moonrock" + }] + }, + { + "id":25, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"gold" + }, + { + "name":"rockbase", + "type":"string", + "value":"gold" + }] + }, + { + "id":27, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":28, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":29 + }, + { + "duration":300, + "tileid":30 + }, + { + "duration":300, + "tileid":31 + }, + { + "duration":300, + "tileid":32 + }], + "id":29, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":30, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":31, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":32, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":33 + }, + { + "duration":300, + "tileid":34 + }, + { + "duration":300, + "tileid":35 + }, + { + "duration":300, + "tileid":36 + }], + "id":33, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":34, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":35, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":36, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":40, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":41, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":42, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":43, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":44, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":45, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":46, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":58, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":59, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":64 + }, + { + "duration":250, + "tileid":65 + }, + { + "duration":250, + "tileid":66 + }, + { + "duration":250, + "tileid":67 + }, + { + "duration":250, + "tileid":68 + }, + { + "duration":250, + "tileid":69 + }], + "id":64 + }, + { + "id":77, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":78, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":81, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":82, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":83, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":84, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"nisoc" + }] + }, + { + "id":85, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"cinnabar" + }] + }, + { + "id":86, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"pythar" + }] + }, + { + "id":87, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"ibo" + }] + }, + { + "id":88, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"moonrock" + }] + }, + { + "id":89, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"gold" + }] + }, + { + "id":90, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":91, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":92, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":93 + }, + { + "duration":300, + "tileid":94 + }, + { + "duration":300, + "tileid":95 + }, + { + "duration":300, + "tileid":96 + }], + "id":93, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":94, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":95, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":96, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":97 + }, + { + "duration":300, + "tileid":98 + }, + { + "duration":300, + "tileid":99 + }, + { + "duration":300, + "tileid":100 + }], + "id":97, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":98, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":99, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":100, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":102, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":104, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":105, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":106, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":108, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":110, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":111, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":112, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":113, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":114, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":115, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":119, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":120, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":122, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":123, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":124, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":125, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":126, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":131, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":132, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":133, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":134, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":135, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":136, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":137, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":140, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":141, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":142, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":143, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":350, + "tileid":146 + }, + { + "duration":350, + "tileid":147 + }], + "id":146, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":147, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":148, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"topaz" + }, + { + "name":"rockbase", + "type":"string", + "value":"topaz" + }] + }, + { + "id":149, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"copper" + }, + { + "name":"rockbase", + "type":"string", + "value":"copper" + }] + }, + { + "id":150, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"beryl" + }, + { + "name":"rockbase", + "type":"string", + "value":"beryl" + }] + }, + { + "id":151, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"tin" + }, + { + "name":"rockbase", + "type":"string", + "value":"tin" + }] + }, + { + "id":152, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"lapislazuli" + }, + { + "name":"rockbase", + "type":"string", + "value":"lapislazuli" + }] + }, + { + "id":153, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"coal" + }, + { + "name":"rockbase", + "type":"string", + "value":"coal" + }] + }, + { + "id":154, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"citrine" + }, + { + "name":"rockbase", + "type":"string", + "value":"citrine" + }] + }, + { + "id":155, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"iron" + }, + { + "name":"rockbase", + "type":"string", + "value":"iron" + }] + }, + { + "id":156, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"taaffeite" + }, + { + "name":"rockbase", + "type":"string", + "value":"taaffeite" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":157 + }, + { + "duration":300, + "tileid":158 + }, + { + "duration":300, + "tileid":159 + }, + { + "duration":300, + "tileid":160 + }], + "id":157, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":158, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":159, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":160, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":161 + }, + { + "duration":300, + "tileid":162 + }, + { + "duration":300, + "tileid":163 + }, + { + "duration":300, + "tileid":164 + }], + "id":161, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":162, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":163, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":164, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":166, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":168, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":169, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":170, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":171, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":172, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":186, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":187, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":188, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":189, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":190, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":192, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":193, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":195, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":196, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":197, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":198, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":199, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":200, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":201, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":203, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":204, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":205, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":206, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":207, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":208, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":350, + "tileid":210 + }, + { + "duration":350, + "tileid":211 + }], + "id":210, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":211, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":212, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"topaz" + }] + }, + { + "id":213, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"copper" + }] + }, + { + "id":214, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"beryl" + }] + }, + { + "id":215, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"tin" + }] + }, + { + "id":216, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"lapislazuli" + }] + }, + { + "id":217, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"coal" + }] + }, + { + "id":218, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"citrine" + }] + }, + { + "id":219, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"iron" + }] + }, + { + "id":220, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"taaffeite" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":221 + }, + { + "duration":300, + "tileid":222 + }, + { + "duration":300, + "tileid":223 + }, + { + "duration":300, + "tileid":224 + }], + "id":221, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":222, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":223, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":224, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":225 + }, + { + "duration":300, + "tileid":226 + }, + { + "duration":300, + "tileid":227 + }, + { + "duration":300, + "tileid":228 + }], + "id":225, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":226, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":227, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":228, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":229, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":230, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":231, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":232, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":233, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":239, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":240, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":241, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":245, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":248, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":250, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":251, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":252, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":254, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":256, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":257, + "properties":[ + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":259, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":260, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":261, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":262, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":263, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":264, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":265, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":266, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":267, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":268, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":269, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":270, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":271, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":272, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":273, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":276, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"ruby" + }, + { + "name":"rockbase", + "type":"string", + "value":"ruby" + }] + }, + { + "id":277, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":278, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"peridot" + }, + { + "name":"rockbase", + "type":"string", + "value":"peridot" + }] + }, + { + "id":279, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":280, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"opal" + }, + { + "name":"rockbase", + "type":"string", + "value":"opal" + }] + }, + { + "id":281, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":282, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"emerald" + }, + { + "name":"rockbase", + "type":"string", + "value":"emerald" + }] + }, + { + "id":283, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":284, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"pickaxe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"rock", + "type":"string", + "value":"amethyst" + }, + { + "name":"rockbase", + "type":"string", + "value":"amethyst" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":285 + }, + { + "duration":300, + "tileid":286 + }, + { + "duration":300, + "tileid":287 + }, + { + "duration":300, + "tileid":288 + }], + "id":285, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":286, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":287, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":288, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":289 + }, + { + "duration":300, + "tileid":290 + }, + { + "duration":300, + "tileid":291 + }, + { + "duration":300, + "tileid":292 + }], + "id":289, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":290, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":291, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":292, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":296, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":297, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":298, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":299, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":300, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":301, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":302, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":303, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":304, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":305, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":306, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":320, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":321, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":323, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":324, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":325, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":326, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":327, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":328, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":329, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":330, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":331, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":332, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":333, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":334, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":335, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":336, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":337, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":340, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"ruby" + }] + }, + { + "id":341, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":342, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"peridot" + }] + }, + { + "id":343, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":344, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"opal" + }] + }, + { + "id":345, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":346, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"emerald" + }] + }, + { + "id":347, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":348, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"rockempty", + "type":"string", + "value":"amethyst" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":349 + }, + { + "duration":300, + "tileid":350 + }, + { + "duration":300, + "tileid":351 + }, + { + "duration":300, + "tileid":352 + }], + "id":349, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":350, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":351, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":352, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":353 + }, + { + "duration":300, + "tileid":354 + }, + { + "duration":300, + "tileid":355 + }, + { + "duration":300, + "tileid":356 + }], + "id":353, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":354, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":355, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":356, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":358, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":360, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":361, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":362, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":364, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":366, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":367, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":368, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":369, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":370, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":384, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":385, + "properties":[ + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":387, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":388, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":389, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":390, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":391, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":392, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":393, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":394, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":395, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":396, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":397, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":398, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":399, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":400, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":401, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":403, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":409, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":415, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":416, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":417, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":418, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":419, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":420, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":422, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":424, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":425, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":426, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":427, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":428, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":431, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":432, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":433, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":434, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":437, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":440, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":448, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":449, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":451, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":452, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":453, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":454, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":455, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":456, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":457, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":458, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":459, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":460, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":461, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":462, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":463, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":464, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":465, + "probability":0.150000005960464, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":466, + "probability":0.150000005960464 + }, + { + "id":467, + "probability":0.150000005960464, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":473, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":479, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":480, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":481, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":482, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":483, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":484, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":485, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":486, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":487, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":488, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":489, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":512, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":513, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":515, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":516, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":517, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":518, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":519, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":520, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":521, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":523, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":524, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":525, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":526, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":527, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":528, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":531, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":537, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":546, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":547, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":548, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":552, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":553, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":554, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":555, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":556, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":561, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":562, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":563, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":576, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":577, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":579, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":580, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":581, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":582, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":583, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":584, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":585, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":587, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":588, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":589, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":590, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":591, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":592, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":595, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":601, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":607, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":608, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":609, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":610, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":611, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":612, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":614, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":616, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":618, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":619, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":620, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":625, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":626, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":627, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":628, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":629, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":640, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":641, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":645, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":646, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":647, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":678, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":680, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":681, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":682, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":683, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":686, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":689, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":690, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":691, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":692, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":693, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":704, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":705, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":708, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":709, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":710, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":711, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":712, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":714, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":715, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":716, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":717, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":718, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":719, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":720, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":721, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":722, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":724, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":725, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":726, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":727, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":730, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":731, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":732, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":733, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":736, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":737, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":738, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":739, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":741, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":742, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":743, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":744, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":745, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":746, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":747, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":748, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":749, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":750, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":751, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":752, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":753, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":754, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":755, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":768, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":769, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":771, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":772, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":773, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":774, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":775, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":776, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":777, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":778, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":779, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":780, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":781, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":782, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":783, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":784, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":785, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":786, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":788, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":789, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":790, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":791, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":794, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":795, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":796, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":797, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":800, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":801, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":802, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":803, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":808, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":809, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":810, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":811, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":814, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":832, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":833, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":835, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":836, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":837, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":838, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":839, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":840, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":841, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":842, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":843, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":844, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":845, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":846, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":847, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":848, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":849, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":850, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":852, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":853, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":854, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":855, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":858, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":859, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":860, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":861, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":864, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":865, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":866, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":867, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":870, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":872, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":874, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":882, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":883, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":885, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":886, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":896, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":897, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":899, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":900, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":901, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":902, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":903, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":904, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":905, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":906, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":907, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":908, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":909, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":910, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":911, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":912, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":913, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":914, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":916, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":917, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":918, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":919, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":922, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":923, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":924, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":925, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":928, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":929, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":930, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":931, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":934, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":936, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":937, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":938, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":939, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":940, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":946, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":947, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":949, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":950, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":960, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":961, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":963, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":964, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":965, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":966, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":967, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":968, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":969, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":970, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":971, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":972, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":973, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":974, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":975, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":976, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":977, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":978, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":997, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":998, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":999, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1000, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1001, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1002, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1003, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1004, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1005, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1006, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1018, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1024, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1025, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1027, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1028, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1029, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1030, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1031, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1032, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1033, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1034, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1035, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1036, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1037, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1038, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1039, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1040, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1041, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1042, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1076, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1077, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1078, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1079, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1080, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1082, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1088, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1089, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1091, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1092, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1093, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1094, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1095, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1096, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1097, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1101, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1102, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1103, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1105, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1108, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1109, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1110, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1111, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1114, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1115, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1116, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1117, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1120, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1121, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1122, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1123, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1126, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1127, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1128, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1129, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1131, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1133, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1134, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1136, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1138, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1140, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1142, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1143, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1144, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1152, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1153, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1154, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1155, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1156, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1157, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1158, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1159, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1160, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1161, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1166, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1169, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1172, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1173, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1174, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1175, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1178, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1179, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1180, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1181, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1184, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1185, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1186, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1187, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1190, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1191, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1192, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1193, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1195, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1196, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1197, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1198, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1199, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1200, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":300, + "tileid":1211 + }, + { + "duration":300, + "tileid":1212 + }, + { + "duration":300, + "tileid":1213 + }], + "id":1211 + }, + { + "id":1216, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1217, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1218, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1236, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1237, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1238, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1239, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1242, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1243, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1244, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1245, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1248, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1249, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1250, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1251, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1254, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1255, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1256, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1257, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1259, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1260, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1261, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1262, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1263, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1264, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1265, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1267, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1280, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1281, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1282, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1286, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1287, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1292, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1293, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1300, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1301, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1302, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1303, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1306, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1307, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1308, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1309, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1312, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1313, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1314, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1315, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1318, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1319, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1320, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1321, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1323, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1325, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1326, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1328, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1329, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1330, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1331, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1344, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1345, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1346, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1349, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1350, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1351, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1352, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1356, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1357, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1387, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1388, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1389, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1390, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1391, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1392, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1393, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1394, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1395, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1396, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1397, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1408, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1409, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1410, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1412, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1413, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1414, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1415, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1416, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1417, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1419, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1420, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1421, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1422, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1423, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1424, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1425, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1426, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1427, + "probability":0.100000001490116 + }, + { + "id":1431, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1432, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1433, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1434, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1435, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1436, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1437, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1442, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1443, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1444, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1445, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1446, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1451, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1452, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1453, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1456, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1457, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1459, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1461, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1472, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1473, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1474, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1475, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1476, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1477, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1478, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1479, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1480, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1481, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1482, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1483, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1484, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1485, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1486, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1487, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1488, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1489, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1490, + "probability":0.100000001490116, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1491, + "probability":0.100000001490116, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1493, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1495, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1496, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1497, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1498, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1499, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1500, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1501, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1503, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1505, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1506, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1507, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1508, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1509, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1510, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1515, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1516, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1517, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1518, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1519, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1520, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1521, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1522, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1523, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1525, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1536, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1537, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1538, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1539, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1540, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1541, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1542, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1543, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1544, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1545, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1546, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1547, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1548, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1549, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1550, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1551, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1552, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1553, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1554, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1555, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1556, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1557, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1559, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1560, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1561, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1562, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1563, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1564, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1565, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1567, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1568, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1569, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1570, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1571, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1572, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1573, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1574, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1579, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1580, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1581, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1582, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1587, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1588, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1589, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1595, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1600, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1601, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1602, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1603, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1604, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1605, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1606, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1607, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1608, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1609, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1610, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1611, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1612, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1613, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1614, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1615, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1616, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1617, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1618, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1619, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1620, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1621, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1623, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1624, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1625, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1626, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1627, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1628, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1629, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1634, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1635, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1636, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1637, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1638, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1645, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1646, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1648, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1649, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1650, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1655, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1658, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1664, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1666, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1668, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1669, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1670, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1671, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1672, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1673, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1675, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1676, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1677, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1678, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1679, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1680, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1681, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1682, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1683, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1684, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1685, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1687, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1688, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1689, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1690, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1691, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1692, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1693, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1700, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1701, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1702, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1704, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1705, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1706, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1707, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1708, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1709, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1710, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1712, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1713, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1714, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1718, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1719, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1720, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1721, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1722, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1732, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1733, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1734, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1735, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1736, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1737, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1739, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1740, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1741, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1742, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1743, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1744, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1745, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1746, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1747, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1748, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1749, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1764, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1765, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1766, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1767, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1768, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1769, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1770, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1771, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1772, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1776, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1777, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1778, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1782, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1783, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1786, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1792, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1793, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1794, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1795, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1796, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1797, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1798, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1799, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1800, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1801, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1803, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1804, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1805, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1806, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1807, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1808, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1809, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1810, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1811, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1812, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1813, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1814, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1815, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1816, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1817, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1818, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1819, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1820, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1821, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1822, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1823, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1824, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1825, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1826, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1827, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1828, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1829, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1830, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1831, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1832, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1833, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1834, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1835, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1836, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1841, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1856, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1857, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1858, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1859, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1867, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1868, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1869, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1870, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1875, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1876, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1877, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1878, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1879, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1880, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1881, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1882, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1883, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1884, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1885, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1886, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1887, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1888, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1889, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1890, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1891, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1892, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1893, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1894, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1895, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1896, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1897, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1898, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1899, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1900, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1920, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1921, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1922, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1923, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1931, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1932, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1933, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1934, + "probability":0.0199999995529652, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1935, + "probability":0.0199999995529652, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1936, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1937, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1938, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1939, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1940, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1941, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1942, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1943, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1944, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1945, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1946, + "probability":0.0299999993294477, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1947, + "probability":0.0299999993294477, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1948, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1949, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1950, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1951, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1952, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1953, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1954, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1955, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1965, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1966, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1967, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1968, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1969, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1970, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1971, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1972, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1984, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1985, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1986, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1987, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1988, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1989, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1990, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1991, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1992, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1993, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1994, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1995, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1996, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1997, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1998, + "probability":0.0199999995529652, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1999, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2000, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2001, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2002, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2003, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2004, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2005, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2006, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2007, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2008, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2009, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2010, + "probability":0.0299999993294477, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2011, + "probability":0.0299999993294477, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2012, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2013, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2014, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2015, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2016, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2017, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2018, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2019, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2020, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + + { + "id":2021, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2022, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2023, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2024, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2025, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2026, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2027, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2028, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2029, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2030, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2031, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2032, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2033, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2034, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2035, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2036, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2048, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2049, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2050, + "probability":0.00999999977648258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2051, + "probability":0.00999999977648258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2052, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2053, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2054, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2055, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2056, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2057, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2058, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2059, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2060, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2061, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2062, + "probability":0.0199999995529652, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2063, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2064, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2065, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2066, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2067, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2068, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2069, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2070, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2071, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2072, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2073, + "probability":0.100000001490116, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2074, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2075, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2076, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2077, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2078, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2079, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2080, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2081, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2082, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2083, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2084, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2085, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2086, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2087, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2088, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2089, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2090, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2091, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2092, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2093, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2094, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2095, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2096, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2097, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2098, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2099, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2100, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2102, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2112, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2114, + "probability":0.00999999977648258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2116, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2117, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2118, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2119, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2120, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2121, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2122, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2123, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2124, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2125, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2126, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2127, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2128, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2129, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2130, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2131, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2132, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2133, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2134, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2135, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2136, + "probability":0.100000001490116, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2137, + "probability":0.100000001490116, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2138, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2139, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2140, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2141, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2142, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2143, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2144, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2145, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2146, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2147, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2148, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2149, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2150, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2151, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2152, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2153, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2154, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2155, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2156, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2157, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2158, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2159, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2160, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2161, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2162, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2163, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2164, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2167, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2176, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2178, + "probability":0.00999999977648258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2180, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2181, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2182, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2183, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2184, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2185, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2186, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2187, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2188, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2189, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2190, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2191, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2192, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2193, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2194, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2195, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2196, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2197, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2198, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2199, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2200, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2201, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2202, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2203, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2204, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2205, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2206, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2207, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2208, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2209, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2210, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2211, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2212, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2214, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2215, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2216, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2217, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2218, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2219, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2220, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2221, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2222, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2223, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2224, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2225, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2226, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2227, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2228, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2231, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2232, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2233, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2234, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2235, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2240, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2241, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2242, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2243, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2244, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2245, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2246, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2247, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2248, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2249, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2250, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2251, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2252, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2253, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2254, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2255, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2256, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2257, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2259, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2260, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2261, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2262, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2263, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2264, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2265, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2266, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2267, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2268, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2276, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2277, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2278, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2279, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2280, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2281, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2282, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2283, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2284, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2285, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2286, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2287, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2288, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2289, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2290, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2291, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2292, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2295, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2297, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2298, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2299, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2304, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2305, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2306, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2307, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2308, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2309, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2310, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2311, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2312, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2313, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2314, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2315, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2316, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2317, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2318, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2319, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2320, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2321, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2322, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2323, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2324, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2325, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2326, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2327, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2328, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2329, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2330, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2331, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2332, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2340, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2341, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2342, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2343, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2344, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2345, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2346, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2347, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2348, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2349, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2350, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2351, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2352, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2353, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2354, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2355, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2356, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2361, + "probability":0.100000001490116 + }, + { + "id":2362, + "probability":0.100000001490116 + }, + { + "id":2363, + "probability":0.100000001490116 + }, + { + "id":2368, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2369, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2370, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2371, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2372, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2373, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2374, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2375, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2376, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2377, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2378, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2379, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2380, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2381, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2382, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2383, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2384, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2385, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2386, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2387, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2388, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2389, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2390, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2391, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2392, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2393, + "probability":0.100000001490116, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2394, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2395, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2396, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2397, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2398, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2399, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2400, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2401, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2402, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2403, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2404, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2405, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2406, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2407, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2408, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2409, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2410, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2411, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2412, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2413, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2414, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2415, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2416, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2417, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2418, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2419, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2420, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2421, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2422, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2423, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2432, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2433, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2434, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2435, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2436, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2437, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2438, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2439, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2440, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2441, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2442, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2443, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2444, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2445, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2446, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2447, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2448, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2449, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2450, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2451, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2452, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2453, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2454, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2455, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2456, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2457, + "probability":0.100000001490116, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2458, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2459, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2460, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2461, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2462, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2463, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2464, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2465, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2466, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2467, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2468, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2469, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2470, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2471, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2472, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2473, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2474, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2475, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2476, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2477, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2478, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2479, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2480, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2481, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2482, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2483, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2484, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2485, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2486, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2487, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2491, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2492, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2493, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2494, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2496, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2497, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2498, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2499, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2500, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2501, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2502, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2503, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2504, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2505, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2506, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2507, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2508, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2509, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2510, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2511, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2512, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2513, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2514, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2515, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2516, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2517, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2518, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2519, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2520, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2521, + "probability":0.100000001490116, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2522, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2523, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2524, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2525, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2526, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2527, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2528, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2529, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2530, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2531, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2532, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2533, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2534, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2535, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2536, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2537, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2538, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2539, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2540, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2541, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2542, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2543, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2544, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2545, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2546, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2547, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2548, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2549, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2550, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2551, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2560, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2561, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2562, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2563, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2564, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2565, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2578, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2579, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2580, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2582, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2583, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2584, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2585, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2586, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2587, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2588, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2589, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2590, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2591, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2592, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2593, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2594, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2595, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2596, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2597, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2598, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2599, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2600, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2601, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2602, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2603, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2604, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2605, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2606, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2607, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2608, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2609, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2610, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2611, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2612, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2613, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2614, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2615, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2624, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2625, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2628, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2629, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2642, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2643, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2644, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2648, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2649, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2650, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2651, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2652, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2653, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2654, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2655, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2656, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2657, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2658, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2659, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2660, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2661, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2662, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2663, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2664, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2665, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2666, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2667, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2668, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2669, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2670, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2671, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2672, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2673, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2674, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2675, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2676, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2677, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2678, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2679, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2684, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2685, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2688, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2689, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2690, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2692, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2693, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2706, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2707, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2708, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2712, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2713, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2714, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2715, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2716, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2717, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2718, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2719, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2720, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2721, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2722, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2723, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2724, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2725, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2726, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2727, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2728, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2729, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2730, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2731, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2732, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2733, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2734, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2735, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2736, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2737, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2738, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2739, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2740, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2741, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2742, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2743, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2748, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2752, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2753, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2754, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2755, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2756, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2757, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2759, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2760, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2761, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2762, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2765, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2766, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2767, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2768, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2770, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2771, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2772, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2773, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2776, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2777, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2778, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2779, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2780, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2781, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2782, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2783, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2784, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2785, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2786, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2787, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2788, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2789, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2790, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2791, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2792, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2793, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2794, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2795, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2796, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2798, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2800, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2801, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2802, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2803, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2804, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2806, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2812, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2813, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2816, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2817, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2818, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2819, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2820, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2821, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2823, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2824, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2825, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2826, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2829, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2830, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2831, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2832, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2834, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2835, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2836, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2837, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2838, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2839, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2840, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2841, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2842, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2843, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2844, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2845, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2846, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2847, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2848, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2849, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2850, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2851, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2852, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2853, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2854, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2855, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2856, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2857, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2858, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2859, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2860, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2862, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2863, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2864, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2865, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2866, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2867, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2868, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2869, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2870, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2871, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2877, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2878, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2898, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2899, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2900, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2901, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2902, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2903, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2904, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2905, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2906, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2907, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2908, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2909, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2910, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2911, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2912, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2913, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2914, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2915, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2916, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2917, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2918, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2919, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2920, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2921, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2922, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2923, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2924, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2926, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2927, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2928, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2930, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2931, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2932, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2933, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2934, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2935, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2942, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2946, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2947, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2948, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2998, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2999, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3005, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3006, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3010, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3011, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3012, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3062, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3063, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3068, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3069, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3074, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3075, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3076, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3132, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3138, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3139, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3143, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3144, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3145, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3146, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3149, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3150, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3151, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3152, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3155, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3156, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3157, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3158, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3161, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3162, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3163, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3164, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3167, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3168, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3169, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3170, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3173, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3174, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3175, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3176, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3179, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3180, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3181, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3182, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3185, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3186, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3187, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3188, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3196, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3197, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3207, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3208, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3209, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3210, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3213, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3214, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3215, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3216, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3219, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3220, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3221, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3222, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3225, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3226, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3227, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3228, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3231, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3232, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3233, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3234, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3237, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3238, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3239, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3240, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3243, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3244, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3245, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3246, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3249, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3250, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3251, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3252, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3261, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3262, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3264, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3265, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3266, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3268, + "probability":0.25, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3269, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3318, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3319, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3320, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3323, + "probability":0.400000005960464 + }, + { + "id":3326, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3332, + "probability":0.25, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3333, + "probability":0.25, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3361 + }, + { + "duration":400, + "tileid":3362 + }], + "id":3361, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3362, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3386, + "probability":0.400000005960464 + }, + { + "id":3387, + "probability":0.400000005960464 + }, + { + "id":3389, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3390, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3392, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3393, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3394, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3395 + }, + { + "duration":400, + "tileid":3396 + }, + { + "duration":400, + "tileid":3397 + }], + "id":3395, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3396, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3397, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3410, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3411, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3412, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3413 + }, + { + "duration":400, + "tileid":3414 + }, + { + "duration":400, + "tileid":3415 + }], + "id":3413, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3414, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3415, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3425 + }, + { + "duration":400, + "tileid":3426 + }], + "id":3425, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3426, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3428, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3429, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3430, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3431 + }, + { + "duration":400, + "tileid":3432 + }, + { + "duration":400, + "tileid":3433 + }], + "id":3431, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3432, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3433, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3434, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3435, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3436, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3437 + }, + { + "duration":400, + "tileid":3438 + }, + { + "duration":400, + "tileid":3439 + }], + "id":3437, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3438, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3439, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3440, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3441, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3442, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3443 + }, + { + "duration":400, + "tileid":3444 + }, + { + "duration":400, + "tileid":3445 + }], + "id":3443, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3444, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3445, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3446, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3447, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3448, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3449 + }, + { + "duration":400, + "tileid":3450 + }, + { + "duration":400, + "tileid":3451 + }], + "id":3449, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3450, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3451, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3456, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3457, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3458, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3459 + }, + { + "duration":400, + "tileid":3460 + }], + "id":3459, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3460, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3461, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3474, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3475, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3476, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3477 + }, + { + "duration":400, + "tileid":3478 + }], + "id":3477, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3478, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3479, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3486, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3487, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3488, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3489 + }, + { + "duration":400, + "tileid":3490 + }], + "id":3489, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3490, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3492, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3493, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3494, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3495 + }, + { + "duration":400, + "tileid":3496 + }], + "id":3495, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3496, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3497, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3498, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3499, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3500, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3501 + }, + { + "duration":400, + "tileid":3502 + }], + "id":3501, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3502, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3504, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3505, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3506, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3507 + }, + { + "duration":400, + "tileid":3508 + }], + "id":3507, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3508, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3510, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3511, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3512, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3513 + }, + { + "duration":400, + "tileid":3514 + }], + "id":3513, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3514, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3515, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3520, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3521, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3522, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3523, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3524, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3527, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3528, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3529, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3530, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3533, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3534, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3535, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3536, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3538, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3539, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3540, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3541, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3542, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3545, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3546, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3547, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3548, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3550, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3551, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3552, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":400, + "tileid":3553 + }, + { + "duration":400, + "tileid":3554 + }, + { + "duration":400, + "tileid":3555 + }], + "id":3553, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3554, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3555, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3556, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3557, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3558, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3559, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3560, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3562, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3563, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3564, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3567, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3568, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3569, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3570, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3571, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3572, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3573, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3574, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3575, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3576, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3577, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3578, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3584, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3585, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3586, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3587, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3588, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3589, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3591, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3592, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3593, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3594, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3597, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3598, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3599, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3600, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3602, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3603, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3604, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3605, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3606, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3607, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3609, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3610, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3611, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3612, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3614, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3615, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3616, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3617, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3618, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3619, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3620, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3621, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3622, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3623, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3624, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3625, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3626, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3627, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3628, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3629, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3630, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3631, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3632, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3633, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3634, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3635, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3636, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3637, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3638, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3639, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3640, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3641, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3642, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3643, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3648, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3649, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3650, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3651, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3652, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3653, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3666, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3667, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3668, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3669, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3670, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3671, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3678, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3679, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3680, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3681, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3682, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3683, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3684, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3685, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3686, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3687, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3688, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3689, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3690, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3691, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3692, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3693, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3694, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3695, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3696, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3697, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3698, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3699, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3700, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3701, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3702, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3704, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3705, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3706, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3707, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3772, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3773, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3774, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3900, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3901, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3902, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3905, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3906, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3907, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3908, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3911, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3912, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3913, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3914, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3917, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3918, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3919, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3920, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3923, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3924, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3925, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3926, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3929, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3930, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3931, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3932, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3935, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3936, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3937, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3938, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3941, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3942, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3943, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3944, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3947, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3948, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3949, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3950, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3953, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3954, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3955, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3956, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3959, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3960, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3961, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3962, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3969, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3970, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3971, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3972, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3975, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3976, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3977, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3978, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3981, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3982, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3983, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3984, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3987, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3988, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3989, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3990, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3993, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3994, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3995, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3996, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3999, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4000, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4001, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4002, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4005, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4006, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4007, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4008, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4011, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4012, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4013, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4014, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4017, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4018, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4019, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4020, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4023, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4024, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4025, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4026, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4028, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4029, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4030, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }], + "tilewidth":16, + "wangsets":[ + { + "colors":[ + { + "color":"#ff0000", + "name":"Blue Grass", + "probability":1, + "tile":-1 + }, + { + "color":"#00ff00", + "name":"Green Grass", + "probability":1, + "tile":-1 + }, + { + "color":"#0000ff", + "name":"Dead Grass", + "probability":1, + "tile":-1 + }, + { + "color":"#ff7700", + "name":"Light Blue Grass", + "probability":1, + "tile":-1 + }], + "name":"Grass", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":267, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":268, + "wangid":[0, 0, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":272, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":332, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":333, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":334, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":335, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":396, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":397, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":398, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":399, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":460, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":461, + "wangid":[0, 2, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":462, + "wangid":[0, 0, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":463, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":465, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":466, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":467, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":523, + "wangid":[0, 2, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":524, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":525, + "wangid":[0, 2, 0, 2, 0, 0, 0, 2] + }, + { + "tileid":526, + "wangid":[0, 2, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":527, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":528, + "wangid":[0, 0, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":529, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":530, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":531, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":587, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":588, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":589, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":590, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":591, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":592, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":593, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":594, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":595, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":1538, + "wangid":[0, 0, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1539, + "wangid":[0, 0, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1540, + "wangid":[0, 0, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1541, + "wangid":[0, 0, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1542, + "wangid":[0, 0, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1543, + "wangid":[0, 0, 0, 0, 0, 3, 0, 0] + }, + { + "tileid":1602, + "wangid":[0, 3, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1603, + "wangid":[0, 0, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1604, + "wangid":[0, 0, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1605, + "wangid":[0, 0, 0, 0, 0, 3, 0, 0] + }, + { + "tileid":1606, + "wangid":[0, 0, 0, 0, 0, 3, 0, 0] + }, + { + "tileid":1607, + "wangid":[0, 0, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1666, + "wangid":[0, 3, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1667, + "wangid":[0, 3, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1668, + "wangid":[0, 3, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1669, + "wangid":[0, 0, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1670, + "wangid":[0, 0, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1671, + "wangid":[0, 0, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1730, + "wangid":[0, 3, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1731, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1732, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1733, + "wangid":[0, 3, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1734, + "wangid":[0, 0, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1735, + "wangid":[0, 0, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1794, + "wangid":[0, 3, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1795, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1796, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1797, + "wangid":[0, 3, 0, 3, 0, 0, 0, 3] + }, + { + "tileid":1798, + "wangid":[0, 3, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1799, + "wangid":[0, 0, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1858, + "wangid":[0, 3, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1859, + "wangid":[0, 3, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1860, + "wangid":[0, 3, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1861, + "wangid":[0, 3, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1862, + "wangid":[0, 3, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1863, + "wangid":[0, 0, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1925, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":1989, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":2053, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":2163, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":2164, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":2165, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":2166, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":2167, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":2168, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":2227, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":2228, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":2229, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":2230, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":2231, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":2232, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":2291, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":2292, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":2293, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":2294, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2295, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2296, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":2355, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":2356, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2357, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":2358, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2359, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2360, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":2361, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2362, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2363, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2419, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":2420, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2421, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":2422, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":2423, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2424, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":2425, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2426, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2427, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2483, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":2484, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2485, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2486, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2487, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2488, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2489, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2490, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2491, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3434, + "wangid":[0, 0, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3435, + "wangid":[0, 0, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3436, + "wangid":[0, 0, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3437, + "wangid":[0, 0, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3438, + "wangid":[0, 0, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3439, + "wangid":[0, 0, 0, 0, 0, 4, 0, 0] + }, + { + "tileid":3498, + "wangid":[0, 4, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3499, + "wangid":[0, 0, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3500, + "wangid":[0, 0, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3501, + "wangid":[0, 0, 0, 0, 0, 4, 0, 0] + }, + { + "tileid":3502, + "wangid":[0, 0, 0, 0, 0, 4, 0, 0] + }, + { + "tileid":3503, + "wangid":[0, 0, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3562, + "wangid":[0, 4, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3563, + "wangid":[0, 4, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3564, + "wangid":[0, 4, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3565, + "wangid":[0, 0, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3566, + "wangid":[0, 0, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3567, + "wangid":[0, 0, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3626, + "wangid":[0, 4, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3627, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3628, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3629, + "wangid":[0, 4, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3630, + "wangid":[0, 0, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3631, + "wangid":[0, 0, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3690, + "wangid":[0, 4, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3691, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3692, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3693, + "wangid":[0, 4, 0, 4, 0, 0, 0, 4] + }, + { + "tileid":3694, + "wangid":[0, 4, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3695, + "wangid":[0, 0, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3754, + "wangid":[0, 4, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3755, + "wangid":[0, 4, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3756, + "wangid":[0, 4, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3757, + "wangid":[0, 4, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3758, + "wangid":[0, 4, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3759, + "wangid":[0, 0, 0, 0, 0, 0, 0, 4] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Dirt", + "probability":1, + "tile":-1 + }, + { + "color":"#00ff00", + "name":"Light Dirt", + "probability":1, + "tile":-1 + }, + { + "color":"#0000ff", + "name":"Dark Dirt", + "probability":1, + "tile":-1 + }, + { + "color":"#ff7700", + "name":"Blue Dirt", + "probability":1, + "tile":-1 + }], + "name":"Dirt", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":1375, + "wangid":[0, 0, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1376, + "wangid":[0, 0, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1377, + "wangid":[0, 0, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1378, + "wangid":[0, 0, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1379, + "wangid":[0, 0, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1380, + "wangid":[0, 0, 0, 0, 0, 3, 0, 0] + }, + { + "tileid":1426, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1427, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1439, + "wangid":[0, 3, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1440, + "wangid":[0, 0, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1441, + "wangid":[0, 0, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1442, + "wangid":[0, 0, 0, 0, 0, 3, 0, 0] + }, + { + "tileid":1443, + "wangid":[0, 0, 0, 0, 0, 3, 0, 0] + }, + { + "tileid":1444, + "wangid":[0, 0, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1490, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1491, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1503, + "wangid":[0, 3, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1504, + "wangid":[0, 3, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1505, + "wangid":[0, 3, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1506, + "wangid":[0, 0, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1507, + "wangid":[0, 0, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1508, + "wangid":[0, 0, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1544, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1545, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1546, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1547, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1548, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1549, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1550, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":1551, + "wangid":[0, 0, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":1552, + "wangid":[0, 0, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":1553, + "wangid":[0, 0, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":1554, + "wangid":[0, 0, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":1555, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":1567, + "wangid":[0, 3, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1568, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1569, + "wangid":[0, 3, 0, 3, 0, 3, 0, 0] + }, + { + "tileid":1570, + "wangid":[0, 0, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1571, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1572, + "wangid":[0, 0, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1608, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1609, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1610, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1611, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1612, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1613, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1614, + "wangid":[0, 2, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":1615, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":1616, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":1617, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":1618, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":1619, + "wangid":[0, 0, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":1631, + "wangid":[0, 3, 0, 3, 0, 0, 0, 0] + }, + { + "tileid":1632, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1633, + "wangid":[0, 3, 0, 3, 0, 0, 0, 3] + }, + { + "tileid":1634, + "wangid":[0, 3, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1635, + "wangid":[0, 3, 0, 3, 0, 3, 0, 3] + }, + { + "tileid":1636, + "wangid":[0, 0, 0, 0, 0, 3, 0, 3] + }, + { + "tileid":1672, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1673, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1674, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1675, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1676, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1677, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1678, + "wangid":[0, 2, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":1679, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1680, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1681, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":1682, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":1683, + "wangid":[0, 0, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":1695, + "wangid":[0, 3, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1696, + "wangid":[0, 3, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1697, + "wangid":[0, 3, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1698, + "wangid":[0, 3, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1699, + "wangid":[0, 3, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1700, + "wangid":[0, 0, 0, 0, 0, 0, 0, 3] + }, + { + "tileid":1736, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1737, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1738, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1739, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1740, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1741, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1742, + "wangid":[0, 2, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":1743, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":1744, + "wangid":[0, 2, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":1745, + "wangid":[0, 0, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":1746, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":1747, + "wangid":[0, 0, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":1800, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1801, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1802, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1803, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1804, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1805, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1806, + "wangid":[0, 2, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":1807, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":1808, + "wangid":[0, 2, 0, 2, 0, 0, 0, 2] + }, + { + "tileid":1809, + "wangid":[0, 2, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":1810, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":1811, + "wangid":[0, 0, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":1864, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1865, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1866, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1867, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1868, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1869, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1870, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1871, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":1872, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":1873, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":1874, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":1875, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3440, + "wangid":[0, 0, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3441, + "wangid":[0, 0, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3442, + "wangid":[0, 0, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3443, + "wangid":[0, 0, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3444, + "wangid":[0, 0, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3445, + "wangid":[0, 0, 0, 0, 0, 4, 0, 0] + }, + { + "tileid":3504, + "wangid":[0, 4, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3505, + "wangid":[0, 0, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3506, + "wangid":[0, 0, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3507, + "wangid":[0, 0, 0, 0, 0, 4, 0, 0] + }, + { + "tileid":3508, + "wangid":[0, 0, 0, 0, 0, 4, 0, 0] + }, + { + "tileid":3509, + "wangid":[0, 0, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3568, + "wangid":[0, 4, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3569, + "wangid":[0, 4, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3570, + "wangid":[0, 4, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3571, + "wangid":[0, 0, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3572, + "wangid":[0, 0, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3573, + "wangid":[0, 0, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3632, + "wangid":[0, 4, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3633, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3634, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3635, + "wangid":[0, 4, 0, 4, 0, 4, 0, 0] + }, + { + "tileid":3636, + "wangid":[0, 0, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3637, + "wangid":[0, 0, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3696, + "wangid":[0, 4, 0, 4, 0, 0, 0, 0] + }, + { + "tileid":3697, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3698, + "wangid":[0, 4, 0, 4, 0, 4, 0, 4] + }, + { + "tileid":3699, + "wangid":[0, 4, 0, 4, 0, 0, 0, 4] + }, + { + "tileid":3700, + "wangid":[0, 4, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3701, + "wangid":[0, 0, 0, 0, 0, 4, 0, 4] + }, + { + "tileid":3760, + "wangid":[0, 4, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3761, + "wangid":[0, 4, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3762, + "wangid":[0, 4, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3763, + "wangid":[0, 4, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3764, + "wangid":[0, 4, 0, 0, 0, 0, 0, 4] + }, + { + "tileid":3765, + "wangid":[0, 0, 0, 0, 0, 0, 0, 4] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Lava", + "probability":1, + "tile":-1 + }], + "name":"Miscellaneous", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":226, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":227, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":231, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":291, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":292, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":293, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":294, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":355, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":356, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":357, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":358, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":419, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":420, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":421, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":422, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":482, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":483, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":484, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":485, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":486, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":487, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":546, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":547, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":551, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Normal Cliff", + "probability":1, + "tile":-1 + }], + "name":"Cliffs", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":86, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":87, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":90, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":91, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":149, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":150, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":155, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":156, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":213, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":220, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":277, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":284, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":341, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":342, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":347, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":348, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":406, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":407, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":408, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":409, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":410, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":411, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":531, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Dead Grass", + "probability":1, + "tile":-1 + }], + "name":"Inverted", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":1538, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1539, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1540, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1541, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1542, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1543, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1602, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1603, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1604, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1605, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1606, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1607, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1666, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1667, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1668, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1669, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1670, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1671, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1730, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1733, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1734, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1735, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1794, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1797, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1798, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1799, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1858, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1859, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1860, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1861, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1862, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1863, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1924, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }] + }] + }, + { + "columns":96, + "firstgid":4097, + "image":"tilesets\/tilesheet-2.png", + "imageheight":1024, + "imagewidth":1536, + "margin":0, + "name":"tilesheet-2", + "spacing":0, + "tilecount":6144, + "tileheight":16, + "tiles":[ + { + "animation":[ + { + "duration":250, + "tileid":0 + }, + { + "duration":250, + "tileid":1 + }, + { + "duration":250, + "tileid":2 + }, + { + "duration":250, + "tileid":3 + }, + { + "duration":250, + "tileid":4 + }, + { + "duration":250, + "tileid":5 + }, + { + "duration":250, + "tileid":6 + }, + { + "duration":250, + "tileid":7 + }, + { + "duration":250, + "tileid":8 + }, + { + "duration":250, + "tileid":9 + }, + { + "duration":250, + "tileid":10 + }, + { + "duration":250, + "tileid":11 + }, + { + "duration":250, + "tileid":12 + }, + { + "duration":250, + "tileid":13 + }, + { + "duration":250, + "tileid":14 + }, + { + "duration":250, + "tileid":15 + }, + { + "duration":250, + "tileid":16 + }], + "id":0, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":6, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":7, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":8, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":9, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":10, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":11, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":12, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":13, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":14, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":15, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":16, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":20, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":21, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":22, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":24, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":25, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":26, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":28, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":29, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":30, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":32, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":33, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":34, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":36, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":37, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":38, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":49, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":50, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":51, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":52, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":57, + "properties":[ + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":58, + "properties":[ + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":59, + "properties":[ + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":60, + "properties":[ + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":61, + "properties":[ + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":62, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":63, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":78, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":79, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":82, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":83, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":86, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":96 + }, + { + "duration":250, + "tileid":97 + }, + { + "duration":250, + "tileid":98 + }, + { + "duration":250, + "tileid":99 + }, + { + "duration":250, + "tileid":100 + }, + { + "duration":250, + "tileid":101 + }, + { + "duration":250, + "tileid":102 + }, + { + "duration":250, + "tileid":103 + }, + { + "duration":250, + "tileid":104 + }, + { + "duration":250, + "tileid":105 + }, + { + "duration":250, + "tileid":106 + }, + { + "duration":250, + "tileid":107 + }, + { + "duration":250, + "tileid":108 + }, + { + "duration":250, + "tileid":109 + }, + { + "duration":250, + "tileid":110 + }], + "id":96, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":97, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":98, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":99, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":100, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":101, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":102, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":103, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":104, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":105, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":106, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":107, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":108, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":109, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":110, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":112, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":116, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":117, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":118, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":119, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":120, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":121, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":122, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":123, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":124, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":125, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":126, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":127, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":128, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":129, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":130, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":131, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":132, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":133, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":134, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":135, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":137, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":138, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":139, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":140, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":146, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":147, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":158, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":159, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":174, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":175, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":177, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":178, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":179, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":180, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":181, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":182, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":183, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":192 + }, + { + "duration":250, + "tileid":193 + }, + { + "duration":250, + "tileid":194 + }, + { + "duration":250, + "tileid":195 + }, + { + "duration":250, + "tileid":196 + }, + { + "duration":250, + "tileid":197 + }, + { + "duration":250, + "tileid":198 + }, + { + "duration":250, + "tileid":199 + }, + { + "duration":250, + "tileid":200 + }, + { + "duration":250, + "tileid":201 + }, + { + "duration":250, + "tileid":202 + }, + { + "duration":250, + "tileid":203 + }, + { + "duration":250, + "tileid":204 + }, + { + "duration":250, + "tileid":205 + }, + { + "duration":250, + "tileid":206 + }, + { + "duration":250, + "tileid":207 + }, + { + "duration":250, + "tileid":208 + }], + "id":192, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":193, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":194, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":195, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":196, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":197, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":198, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":199, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":200, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":201, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":202, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":203, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":204, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":205, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":206, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":207, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":208, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":212, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":213, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":214, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":215, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":216, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":217, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":218, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":219, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":220, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":221, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":222, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":223, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":224, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":225, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":226, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":227, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":228, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":229, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":230, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":231, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":233, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":234, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":235, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":236, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":238, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":239, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":242, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":243, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":254, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":255, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":269, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":270, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":271, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":272, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":273, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":274, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":275, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":276, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":277, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":278, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":279, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":288 + }, + { + "duration":250, + "tileid":289 + }, + { + "duration":250, + "tileid":290 + }, + { + "duration":250, + "tileid":291 + }, + { + "duration":250, + "tileid":292 + }, + { + "duration":250, + "tileid":293 + }, + { + "duration":250, + "tileid":294 + }, + { + "duration":250, + "tileid":295 + }, + { + "duration":250, + "tileid":296 + }, + { + "duration":250, + "tileid":297 + }, + { + "duration":250, + "tileid":298 + }, + { + "duration":250, + "tileid":299 + }, + { + "duration":250, + "tileid":300 + }, + { + "duration":250, + "tileid":301 + }, + { + "duration":250, + "tileid":302 + }], + "id":288, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":289, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":290, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":291, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":292, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":293, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":294, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":295, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":296, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":297, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":298, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":299, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":300, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":301, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":302, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":304, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":308, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":309, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":310, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":311, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":312, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":313, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"puhrix" + }, + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":314, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"puhrix" + }, + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":315, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":316, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":317, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"inibti" + }, + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":318, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"inibti" + }, + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":319, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":320, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":321, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak5" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":322, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak5" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":323, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":324, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":325, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak6" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":326, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak6" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":327, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":329, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":330, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":331, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":332, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":334, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":335, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":337, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":338, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":339, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":340, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":350, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":351, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":365, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":366, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":367, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":368, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":369, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":370, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":371, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":372, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":373, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":374, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":375, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":384, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":385, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":395 + }, + { + "duration":250, + "tileid":396 + }, + { + "duration":250, + "tileid":397 + }, + { + "duration":250, + "tileid":398 + }], + "id":395, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":396, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":397, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":398, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":399 + }, + { + "duration":250, + "tileid":400 + }, + { + "duration":250, + "tileid":401 + }, + { + "duration":250, + "tileid":402 + }], + "id":399, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":400, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":401, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":402, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":405, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":406, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":408, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":409, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"puhrix" + }, + { + "name":"tree", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":410, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"puhrix" + }, + { + "name":"tree", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":411, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":412, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }] + }, + { + "id":413, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"inibti" + }, + { + "name":"tree", + "type":"string", + "value":"inibti" + }] + }, + { + "id":414, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"inibti" + }, + { + "name":"tree", + "type":"string", + "value":"inibti" + }] + }, + { + "id":415, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }] + }, + { + "id":416, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":417, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"iceoak5" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":418, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"iceoak5" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":419, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":420, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":421, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"iceoak6" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":422, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"iceoak6" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":423, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":425, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":426, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":427, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":428, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":446, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":447, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":461, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":462, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":463, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":464, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":465, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":466, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":467, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":468, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":469, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":470, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":471, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":480, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":481, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":494, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":495 + }, + { + "duration":250, + "tileid":496 + }, + { + "duration":250, + "tileid":497 + }, + { + "duration":250, + "tileid":498 + }], + "id":495, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":496, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":497, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":498, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":499, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":504, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":505, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"puhrix" + }, + { + "name":"tree", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":506, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"puhrix" + }, + { + "name":"tree", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":507, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":508, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }] + }, + { + "id":509, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"inibti" + }, + { + "name":"tree", + "type":"string", + "value":"inibti" + }] + }, + { + "id":510, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"inibti" + }, + { + "name":"tree", + "type":"string", + "value":"inibti" + }] + }, + { + "id":511, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"inibti" + }] + }, + { + "id":512, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":513, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak5" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":514, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak5" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":515, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":516, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":517, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak6" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":518, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak6" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":519, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":542, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":543, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":557, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":558, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":559, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":560, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":561, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":562, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":563, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":564, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":565, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":566, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":567, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":576 + }, + { + "duration":250, + "tileid":577 + }, + { + "duration":250, + "tileid":578 + }, + { + "duration":250, + "tileid":579 + }, + { + "duration":250, + "tileid":580 + }, + { + "duration":250, + "tileid":581 + }, + { + "duration":250, + "tileid":582 + }, + { + "duration":250, + "tileid":583 + }, + { + "duration":250, + "tileid":584 + }, + { + "duration":250, + "tileid":585 + }, + { + "duration":250, + "tileid":586 + }, + { + "duration":250, + "tileid":587 + }, + { + "duration":250, + "tileid":588 + }, + { + "duration":250, + "tileid":589 + }, + { + "duration":250, + "tileid":590 + }, + { + "duration":250, + "tileid":591 + }, + { + "duration":250, + "tileid":592 + }, + { + "duration":250, + "tileid":593 + }, + { + "duration":250, + "tileid":594 + }], + "id":576, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":577, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":578, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":579, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":580, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":582, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":583, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":584, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":585, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":586, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":587, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":588, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":589, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":590, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":591, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":592, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":593, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":594, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":595, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":597, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":598, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":601, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":602, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"puhrix" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":605, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":606, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"inibti" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":609, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":610, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak5" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":613, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":614, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak6" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":616, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":617, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":618, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":619, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":620, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":621, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":622, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":623, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":624, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":625, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":626, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":627, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":628, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":629, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":630, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":631, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":632, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":633, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":634, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":638, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":639, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":653, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":654, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":655, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":656, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":657, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":658, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":659, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":660, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":661, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":662, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":663, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":672 + }, + { + "duration":250, + "tileid":673 + }, + { + "duration":250, + "tileid":674 + }, + { + "duration":250, + "tileid":675 + }, + { + "duration":250, + "tileid":676 + }, + { + "duration":250, + "tileid":677 + }, + { + "duration":250, + "tileid":678 + }, + { + "duration":250, + "tileid":679 + }, + { + "duration":250, + "tileid":680 + }, + { + "duration":250, + "tileid":681 + }, + { + "duration":250, + "tileid":682 + }, + { + "duration":250, + "tileid":683 + }, + { + "duration":250, + "tileid":684 + }, + { + "duration":250, + "tileid":685 + }, + { + "duration":250, + "tileid":686 + }, + { + "duration":250, + "tileid":687 + }, + { + "duration":250, + "tileid":688 + }, + { + "duration":250, + "tileid":689 + }, + { + "duration":250, + "tileid":690 + }], + "id":672, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":673, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":674, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":675, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":676, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":677, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":678, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":679, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":680, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":681, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":682, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":683, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":684, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":685, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":686, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":687, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":688, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":689, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":690, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":691, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":693, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":694, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":697, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":698, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":701, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"inibti" + }] + }, + { + "id":702, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"inibti" + }] + }, + { + "id":705, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":706, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":709, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":710, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":712, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":714, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":715, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":718, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":719, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":720, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":721, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":722, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":723, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":724, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":725, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":726, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":727, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":728, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":729, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":730, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":734, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":735, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":749, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":750, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":751, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":752, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":753, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":754, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":755, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":756, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":757, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":758, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":759, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":768 + }, + { + "duration":250, + "tileid":769 + }, + { + "duration":250, + "tileid":770 + }, + { + "duration":250, + "tileid":771 + }, + { + "duration":250, + "tileid":772 + }, + { + "duration":250, + "tileid":773 + }, + { + "duration":250, + "tileid":774 + }, + { + "duration":250, + "tileid":775 + }, + { + "duration":250, + "tileid":776 + }, + { + "duration":250, + "tileid":777 + }, + { + "duration":250, + "tileid":778 + }, + { + "duration":250, + "tileid":779 + }, + { + "duration":250, + "tileid":780 + }, + { + "duration":250, + "tileid":781 + }, + { + "duration":250, + "tileid":782 + }, + { + "duration":250, + "tileid":783 + }, + { + "duration":250, + "tileid":784 + }, + { + "duration":250, + "tileid":785 + }, + { + "duration":250, + "tileid":786 + }], + "id":768, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":769, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":770, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":771, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":772, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":773, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":774, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":775, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":776, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":777, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":778, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":779, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":780, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":781, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":782, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":783, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":784, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":785, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":786, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":787, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":793, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":794, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"puhrix" + }] + }, + { + "id":797, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"inibti" + }] + }, + { + "id":798, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"inibti" + }] + }, + { + "id":801, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":802, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak5" + }] + }, + { + "id":805, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":806, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak6" + }] + }, + { + "id":808, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":810, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":811, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":812, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":813, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":814, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":815, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":816, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":817, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":818, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":819, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":820, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":821, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":822, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":823, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":824, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":825, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":826, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":830, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":831, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":845, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":846, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":847, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":848, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":849, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":850, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":851, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":852, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":853, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":854, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":855, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":864 + }, + { + "duration":250, + "tileid":865 + }, + { + "duration":250, + "tileid":866 + }, + { + "duration":250, + "tileid":867 + }, + { + "duration":250, + "tileid":868 + }, + { + "duration":250, + "tileid":869 + }, + { + "duration":250, + "tileid":870 + }, + { + "duration":250, + "tileid":871 + }, + { + "duration":250, + "tileid":872 + }, + { + "duration":250, + "tileid":873 + }, + { + "duration":250, + "tileid":874 + }, + { + "duration":250, + "tileid":875 + }, + { + "duration":250, + "tileid":876 + }, + { + "duration":250, + "tileid":877 + }, + { + "duration":250, + "tileid":878 + }, + { + "duration":250, + "tileid":879 + }, + { + "duration":250, + "tileid":880 + }, + { + "duration":250, + "tileid":881 + }, + { + "duration":250, + "tileid":882 + }], + "id":864, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":865, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":866, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":867, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":868, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":869, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":870, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":871, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":872, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":873, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":874, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":875, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":876, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":877, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":878, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":879, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":880, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":881, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":882, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":883, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":884, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":885, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":886, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":888, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":889, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":890, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":892, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":893, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":894, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":896, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":897, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":898, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":900, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":901, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":902, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":904, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":905, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":906, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":909, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":910, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":911, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":912, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":913, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":914, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":915, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":916, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":917, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":918, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":919, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":920, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":921, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":922, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":926, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":927, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":942, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":943, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":945, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":946, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":947, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":949, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":950, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":951, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":962, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":963, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":964, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":972, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":973, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":974, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":980, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":981, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":982, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":983, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":984, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":985, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":986, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":987, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":988, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":989, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":990, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":991, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":992, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":993, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":994, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":995, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":996, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":997, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":998, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":999, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1003, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1004, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1005, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1006, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1012, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1013, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1014, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1015, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1016, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1017, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1018, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1019, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1020, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1021, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1022, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1023, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1056, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1057, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1058, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1059, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1060, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1061, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1062, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1063, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1064, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1065, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1066, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1067, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1068, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1069, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1070, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1071, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1072, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1073, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1074, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1076, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1077, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1078, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1079, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1080, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1081, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1082, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1083, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1084, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1085, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1086, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1087, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1088, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1089, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1090, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1091, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1092, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1093, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1094, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1095, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1096, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1098, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1099, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1100, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1101, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1102, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1106, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1108, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1109, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1110, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1111, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1112, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1113, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1114, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1115, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1116, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1117, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1118, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1119, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1152, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1153, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1154, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1155, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1156, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1157, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1158, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1159, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1160, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1161, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1162, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1163, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1164, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1165, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1166, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1167, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1168, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1169, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1170, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1172, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1173, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1174, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1175, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1176, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1177, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1178, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1179, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1180, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1181, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1182, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1183, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1184, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1185, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"hemocyte" + }, + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1186, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"hemocyte" + }, + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1187, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1188, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1189, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"oak" + }, + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1190, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"oak" + }, + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1191, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1192, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1193, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1194, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1196, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1197, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1198, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1202, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1204, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1205, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1206, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1208, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1209, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1213, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1214, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1215, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1248, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1249, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1250, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1251, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1252, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1254, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1255, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1256, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1257, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1258, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1259, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1260, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1261, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1262, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1263, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1264, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1265, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1266, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1269, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":1270, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":1273, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":1274, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":1277, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":1278, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":1280, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1281, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"hemocyte" + }, + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1282, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"hemocyte" + }, + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1283, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1284, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }] + }, + { + "id":1285, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"oak" + }, + { + "name":"tree", + "type":"string", + "value":"oak" + }] + }, + { + "id":1286, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"oak" + }, + { + "name":"tree", + "type":"string", + "value":"oak" + }] + }, + { + "id":1287, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }] + }, + { + "id":1289, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1291, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1292, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1303, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1304, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1305, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1306, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1309, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1310, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1311, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1344, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1345, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1346, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1347, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1348, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1350, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1351, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1352, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1353, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1354, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1355, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1356, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1357, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1358, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1359, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1360, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1361, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1362, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1376, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1377, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"hemocyte" + }, + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1378, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"hemocyte" + }, + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1379, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1380, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }] + }, + { + "id":1381, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"oak" + }, + { + "name":"tree", + "type":"string", + "value":"oak" + }] + }, + { + "id":1382, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"oak" + }, + { + "name":"tree", + "type":"string", + "value":"oak" + }] + }, + { + "id":1383, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"oak" + }] + }, + { + "id":1385, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1387, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1388, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1399, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1400, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1401, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1402, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1405, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1406, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1407, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1440, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1441, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1442, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1443, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1444, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1446, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1447, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1448, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1449, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1450, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1451, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1452, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1453, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1454, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1455, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1456, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1457, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1458, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1461, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1462, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1465, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1466, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1469, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1470, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1473, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1474, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"hemocyte" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1477, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1478, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"oak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1479, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1480, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1481, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1482, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1483, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1484, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1495, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1496, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1497, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1498, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1501, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1502, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1503, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1536, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1537, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1538, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1539, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1540, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1542, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1543, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1544, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1545, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1546, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1547, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1548, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1549, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1550, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1551, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1552, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1553, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1554, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1557, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1558, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1561, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1562, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1565, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1566, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1569, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1570, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1573, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"oak" + }] + }, + { + "id":1574, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"oak" + }] + }, + { + "id":1575, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1576, + "probability":0.00300000002607703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1577, + "probability":0.00300000002607703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1578, + "probability":0.00300000002607703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1579, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1580, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1591, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1592, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1593, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1594, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1597, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1598, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1599, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1632, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1633, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1634, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1635, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1636, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1638, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1639, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1640, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1641, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1642, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1643, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1644, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1645, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1646, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1647, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1648, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1649, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1650, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1665, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1666, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"hemocyte" + }] + }, + { + "id":1669, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"oak" + }] + }, + { + "id":1670, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"oak" + }] + }, + { + "id":1671, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1672, + "probability":0.00300000002607703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1673, + "probability":0.00300000002607703 + }, + { + "id":1674, + "probability":0.00300000002607703 + }, + { + "id":1687, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1688, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1689, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1690, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1693, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1694, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1695, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1728, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1729, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1730, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1731, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1732, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1734, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1735, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1736, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1737, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1738, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1739, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1740, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1741, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1742, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1743, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1744, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1745, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1746, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1748, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1749, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1750, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1752, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1753, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1754, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1756, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1757, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1758, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1760, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1761, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1762, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1764, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1765, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1766, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1767, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1768, + "probability":0.00300000002607703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1769, + "probability":0.00300000002607703 + }, + { + "id":1770, + "probability":0.00300000002607703 + }, + { + "id":1783, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1784, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1785, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1786, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1830, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1831, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1832, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1833, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1834, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1835, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1836, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1837, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1838, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1839, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1840, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1841, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1842, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1844, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1845, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1846, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1847, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1848, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1849, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1850, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1851, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1852, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1853, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1854, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1855, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1856, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1857, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1858, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1859, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1860, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1861, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1862, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1863, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1864, + "probability":0.00300000002607703, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1865, + "probability":0.00300000002607703, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1866, + "probability":0.00300000002607703, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1867, + "probability":0.00300000002607703 + }, + { + "id":1868, + "probability":0.00300000002607703 + }, + { + "id":1880, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1881, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1922, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1923, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1936, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1940, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1941, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1942, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1943, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1944, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1945, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1946, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1947, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1948, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1949, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1950, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1951, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1952, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1953, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1954, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1955, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1956, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1957, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1958, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1959, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1960, + "probability":0.00300000002607703, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1961, + "probability":0.00300000002607703, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1962, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1963, + "probability":0.00300000002607703, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1964, + "probability":0.00300000002607703 + }, + { + "id":1973, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1974, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1975, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1976, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1977, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":350, + "tileid":1978 + }, + { + "duration":350, + "tileid":2074 + }, + { + "duration":350, + "tileid":2170 + }, + { + "duration":350, + "tileid":2266 + }, + { + "duration":350, + "tileid":2362 + }, + { + "duration":350, + "tileid":2458 + }], + "id":1978 + }, + { + "animation":[ + { + "duration":350, + "tileid":1979 + }, + { + "duration":350, + "tileid":2075 + }, + { + "duration":350, + "tileid":2171 + }, + { + "duration":350, + "tileid":2267 + }, + { + "duration":350, + "tileid":2363 + }, + { + "duration":350, + "tileid":2459 + }], + "id":1979 + }, + { + "animation":[ + { + "duration":350, + "tileid":1980 + }, + { + "duration":350, + "tileid":2076 + }, + { + "duration":350, + "tileid":2172 + }, + { + "duration":350, + "tileid":2268 + }, + { + "duration":350, + "tileid":2364 + }, + { + "duration":350, + "tileid":2460 + }], + "id":1980 + }, + { + "animation":[ + { + "duration":350, + "tileid":1981 + }, + { + "duration":350, + "tileid":2077 + }, + { + "duration":350, + "tileid":2173 + }, + { + "duration":350, + "tileid":2269 + }, + { + "duration":350, + "tileid":2365 + }, + { + "duration":350, + "tileid":2461 + }], + "id":1981 + }, + { + "animation":[ + { + "duration":350, + "tileid":1982 + }, + { + "duration":350, + "tileid":2078 + }, + { + "duration":350, + "tileid":2174 + }, + { + "duration":350, + "tileid":2270 + }, + { + "duration":350, + "tileid":2366 + }, + { + "duration":350, + "tileid":2462 + }], + "id":1982 + }, + { + "animation":[ + { + "duration":350, + "tileid":1983 + }, + { + "duration":350, + "tileid":2079 + }, + { + "duration":350, + "tileid":2175 + }, + { + "duration":350, + "tileid":2271 + }, + { + "duration":350, + "tileid":2367 + }, + { + "duration":350, + "tileid":2463 + }], + "id":1983 + }, + { + "id":2017, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2018, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2019, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2020, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2021, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2031, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2032, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2033, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2034, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2036, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2037, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2038, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2039, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2040, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2041, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2042, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2043, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2044, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2045, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2046, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2047, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2048, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2049, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2050, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2051, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2052, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2053, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2054, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2055, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2056, + "probability":0.00300000002607703, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2057, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2058, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2059, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2069, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2070, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2071, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2072, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2073, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2112, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2113, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2114, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2115, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2116, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2117, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2120, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2121, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2122, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2125, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2126, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2127, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2128, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2129, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2130, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2132, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2133, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"iceoak" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2134, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"iceoak" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2135, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2137, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2138, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2141, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2142, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2145, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2146, + "probability":0.00300000002607703, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2147, + "probability":0.00300000002607703 + }, + { + "id":2148, + "probability":0.00300000002607703 + }, + { + "id":2149, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2150, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2152, + "probability":0.00300000002607703, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2153, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2154, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2165, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2166, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2167, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2168, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2169, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2208, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2209, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2210, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2211, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2212, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2215, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2216, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2217, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2218, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2219, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2221, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2222, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2223, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2224, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2225, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2226, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2228, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2229, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2230, + "properties":[ + { + "name":"stump", + "type":"string", + "value":"iceoak" + }, + { + "name":"tree", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2231, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2242, + "probability":0.00300000002607703 + }, + { + "id":2243, + "probability":0.00300000002607703 + }, + { + "id":2244, + "probability":0.00300000002607703 + }, + { + "id":2261, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2262, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2263, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2264, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2265, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2304, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2305, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2306, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2307, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2308, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2309, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2310, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2311, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2312, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2313, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2314, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2315, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2316, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2317, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2318, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2319, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2320, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2321, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2322, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2325, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2326, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2329, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2330, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2333, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2334, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2337, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2338, + "probability":0.00300000002607703, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2339, + "probability":0.00300000002607703 + }, + { + "id":2340, + "probability":0.00300000002607703 + }, + { + "id":2341, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2342, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2357, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2358, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2359, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2360, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2361, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2400, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2401, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2402, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2403, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + + { + "id":2404, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2405, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2406, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2407, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2408, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2409, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2410, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2411, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2412, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2413, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2414, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2415, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2416, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2417, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2418, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2421, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2422, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cutstump", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2425, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2426, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2429, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2430, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2433, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2434, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2437, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2438, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2496, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2497, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2498, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2499, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2500, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2501, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2502, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2503, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2504, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2505, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2506, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2507, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2508, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2509, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2510, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2511, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2512, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2513, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2514, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2517, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2518, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"iceoak" + }] + }, + { + "id":2592, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2593, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2594, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2595, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2596, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2597, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2598, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2599, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2600, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2601, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2602, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2603, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2604, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2605, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2606, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2607, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2608, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2609, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2610, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2630, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2631, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2652, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2654, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2688, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2689, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2690, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2691, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2692, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2693, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2694, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2695, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2696, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2697, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2698, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2699, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2700, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2701, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2702, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2704, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2705, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2706, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2723, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2724, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2725, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2726, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2727, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2728, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2748, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2750, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2784, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2785, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2786, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2787, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2788, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2789, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2790, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2791, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2792, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2793, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2794, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2795, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2796, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2797, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2798, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2799, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2800, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2801, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2802, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2819, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2820, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2822, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2823, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2824, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2844, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2846, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2881, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2882, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2883, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2884, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2887, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2888, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2889, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2890, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2891, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2894, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2895, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2896, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2897, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2898, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2915, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2916, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2918, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }] + }, + { + "id":2919, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"axe" + }, + { + "name":"o", + "type":"string", + "value":"" + }, + { + "name":"stump", + "type":"string", + "value":"palm" + }, + { + "name":"tree", + "type":"string", + "value":"palm" + }] + }, + { + "id":2920, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }] + }, + { + "id":2942, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2983, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2984, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2985, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2986, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2987, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3011, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3012, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3013, + "properties":[ + { + "name":"cutstump", + "type":"string", + "value":"palm" + }] + }, + { + "id":3014, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }] + }, + { + "id":3015, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }] + }, + { + "id":3016, + "properties":[ + { + "name":"tree", + "type":"string", + "value":"palm" + }] + }, + { + "id":3036, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3038, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3129, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3130, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3131, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3132, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3134, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3195, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3196, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3197, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3198, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3199, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3203, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3204, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3205, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3206, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3207, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3208, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3209, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3210, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3211, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3225, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3226, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3227, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3228, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3230, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3285, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3286, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3287, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3288, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3289, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3291, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3292, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3293, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3294, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3295, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3296, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3297, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3298, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3299, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3300, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3301, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3302, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3303, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3304, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3305, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3306, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3307, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3321, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3322, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3323, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3326, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3381, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3382, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3383, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3384, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3385, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3386, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3387, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3388, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3389, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3390, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3391, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3392, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3393, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3394, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3395, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3396, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3397, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3398, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3399, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3400, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3401, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3402, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3403, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3417, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3418, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3419, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3477, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3478, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3479, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3480, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3481, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3482, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3483, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3484, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3485, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3486, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3487, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3488, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3489, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3490, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3491, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3492, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3493, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3494, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3495, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3496, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3497, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3498, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3499, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3513, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3514, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3515, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3516, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3517, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3518, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3519, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3573, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3574, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3575, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3576, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3577, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3578, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3579, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3580, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3582, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3583, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3584, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3585, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3586, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3587, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3588, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3589, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3590, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3591, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3592, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3593, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3594, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3595, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3609, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3610, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3611, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3612, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3613, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3614, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3615, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3669, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3670, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3671, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3672, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3673, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3674, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3675, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3676, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3677, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3678, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3679, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3680, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3681, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3682, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3683, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3684, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3685, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3686, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3687, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3688, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3689, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3690, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3691, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3705, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3706, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3707, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3708, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3709, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3710, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3711, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3765, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3766, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3767, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3768, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3769, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3770, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3771, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3772, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3773, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3774, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3775, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3776, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3777, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3778, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3779, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3780, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3781, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3782, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3783, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3784, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3785, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3786, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3787, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3801, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3802, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3803, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3804, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3805, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3806, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3807, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3861, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3862, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3863, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3864, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3865, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3866, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3867, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3868, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3869, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3870, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3871, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3872, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3873, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3874, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3875, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3876, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3877, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3878, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3879, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3880, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3881, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3882, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3883, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3897, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3898, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3899, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3900, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3901, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3902, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3903, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3957, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3958, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3959, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3960, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3961, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3962, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3963, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3964, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3965, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3966, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3967, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3968, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3969, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3970, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3971, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3972, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3973, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3974, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3975, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3976, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3977, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3978, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3979, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3980, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3981, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3982, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3994, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3995, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3996, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3997, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3998, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3999, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4053, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4054, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4055, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4056, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4057, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4058, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4059, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4060, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4061, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4062, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4063, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4064, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4065, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4066, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4067, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4068, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4069, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4070, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4071, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4072, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4073, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4074, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4075, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4076, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4077, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4078, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4080, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4081, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4082, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4083, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4084, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4085, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4086, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4087, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4090, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4091, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4092, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4093, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4094, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4095, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4149, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4150, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4151, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4152, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4153, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4154, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4155, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4156, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4157, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4158, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4159, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4160, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4161, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4162, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4163, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4164, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4165, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4166, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4167, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4168, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4169, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4170, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4171, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4172, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4173, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4174, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4182, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4186, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4187, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4188, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4189, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4190, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4191, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4245, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4246, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4247, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4248, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4249, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4250, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4251, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4252, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4253, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4254, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4255, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4256, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4257, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4259, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4260, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4261, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4262, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4263, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4264, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4265, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4266, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4267, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4268, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4269, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4270, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4282, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4283, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4284, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4285, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4286, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4287, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4341, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4342, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4343, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4344, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4345, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4346, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4347, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4348, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4349, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4350, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4351, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4352, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4353, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4354, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4355, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4356, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4357, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4358, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4359, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4360, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4361, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4362, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4363, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4364, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4365, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4366, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4368, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4369, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4370, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4371, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4372, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4373, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4374, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4378, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4379, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4380, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4381, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4382, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4383, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4437, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4438, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4439, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4440, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4441, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4442, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4443, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4444, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4445, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4446, + "probability":0.0500000007450581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4447, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4448, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4449, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4450, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4451, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4452, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4453, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4454, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4455, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4456, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4457, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4458, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4459, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4460, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4461, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4462, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4464, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4465, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4466, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4467, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4468, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4469, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4470, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4474, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4475, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4476, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4477, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4478, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4479, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4533, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4534, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4535, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4536, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4537, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4538, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4539, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4540, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4541, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4542, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4543, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4544, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4545, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4546, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4547, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4548, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4549, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4550, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4551, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4552, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4553, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4554, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4555, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4556, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4557, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4558, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4560, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4561, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4562, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4563, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4564, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4565, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4570, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4571, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4572, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4573, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4574, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4575, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4608, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4609, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4610, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4611, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4612, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4613, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4614, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4615, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4616, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4629, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4630, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4631, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4632, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4633, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4634, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4635, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4636, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4637, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4638, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4639, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4640, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4641, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4642, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4643, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4644, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4645, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4646, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4647, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4648, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4649, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4650, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4651, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":4656 + }, + { + "duration":250, + "tileid":4658 + }, + { + "duration":250, + "tileid":4752 + }, + { + "duration":250, + "tileid":4754 + }], + "id":4656, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":4657 + }, + { + "duration":250, + "tileid":4659 + }, + { + "duration":250, + "tileid":4753 + }, + { + "duration":250, + "tileid":4755 + }], + "id":4657, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4658, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4659, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4666, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4667, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4668, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4669, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4670, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4671, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4737, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4738, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4739, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4740, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4752, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4753, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4754, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4755, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4762, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4763, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4764, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4765, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4766, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4767, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4805, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4806, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4807, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4808, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4813, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4814, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4815, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4817, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4818, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4819, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4820, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4822, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4823, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4824, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4826, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4827, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4828, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4829, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":350, + "tileid":4832 + }, + { + "duration":350, + "tileid":4833 + }], + "id":4832, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4833, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":350, + "tileid":4834 + }, + { + "duration":350, + "tileid":4835 + }, + { + "duration":350, + "tileid":4928 + }], + "id":4834, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4835, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4840, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4841, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4842, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4844, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4845, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4846, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4847, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4849, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4850, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4851, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4853, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4854, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4855, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4856, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4858, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4859, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4860, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4861, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4862, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4863, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4864, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4865, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4867, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4868, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4869, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4871, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4872, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4873, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4874, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4876, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4877, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4878, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4880, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4881, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4882, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4883, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4885, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4886, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4887, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4889, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4890, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4891, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4892, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4901, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4902, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4903, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4904, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4909, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4910, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4911, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4912, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4913, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4914, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4915, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4916, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4917, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4918, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4919, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4920, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4921, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4922, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4923, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4924, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4925, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4926, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":350, + "tileid":4928 + }, + { + "duration":350, + "tileid":4832 + }], + "id":4928, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4936, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4937, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4938, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4939, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4940, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4941, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4942, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4943, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4944, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4945, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4946, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4947, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4948, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4949, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4950, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4951, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4952, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4953, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4954, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4955, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4956, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4957, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4958, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4959, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4960, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4961, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4962, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4963, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4964, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4965, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4966, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4967, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4968, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4969, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4970, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4971, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4972, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4973, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4974, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4975, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4976, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4977, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4978, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4979, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4980, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4981, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4982, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4983, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":4984, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4985, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4986, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4987, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4988, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4989, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4997, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4998, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4999, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5000, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5005, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5007, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5009, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5010, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5011, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5012, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5014, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5016, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5018, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5019, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5020, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5021, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5032, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5034, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5036, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5037, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5038, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5039, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5041, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5043, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5045, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5046, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5047, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5048, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5050, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5051, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5052, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5053, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5054, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5055, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5056, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5057, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5059, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5061, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5063, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5064, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5065, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5066, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5068, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5070, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5072, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5073, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5074, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5075, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5077, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5079, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5081, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5082, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5083, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5084, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5198, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5199, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5200, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5201, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5207, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5208, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5209, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5210, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5216, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5217, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5218, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5219, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5225, + "probability":0.0500000007450581, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5226, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5227, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5228, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5234, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5235, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5236, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5237, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":5282, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5283, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5284, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5285, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5286, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5287, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5293, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5294, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5295, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5296, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5297, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5298, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5302, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5303, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5304, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5305, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5306, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5307, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5311, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5312, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5313, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5314, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5315, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5316, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5320, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5321, + "probability":0.0500000007450581, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5322, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5323, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5324, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5325, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5329, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5330, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5331, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5332, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5333, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5334, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5338, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5339, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5340, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5341, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5342, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5343, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5347, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5348, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5349, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5350, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5351, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5352, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5356, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5357, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5358, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5359, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5360, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5361, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5365, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5366, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5367, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5368, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5369, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5370, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5377, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5380, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5381, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5384, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5388, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5391, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5392, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5395, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5397, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5400, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5401, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5404, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5406, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5409, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5410, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5413, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5415, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5417, + "probability":0.0500000007450581 + }, + { + "id":5418, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5419, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5422, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5424, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5427, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5428, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5431, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5433, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5436, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5437, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5440, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5442, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5445, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5446, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5449, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5451, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5454, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5455, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5458, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5460, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5463, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5464, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5467, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5473, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5475, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5476, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5477, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5478, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5480, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5484, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5487, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5488, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5491, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5493, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5496, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5497, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5500, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5502, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5505, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5506, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5509, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5511, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5513, + "probability":0.0500000007450581 + }, + { + "id":5514, + "probability":0.0500000007450581, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5515, + "probability":0.0500000007450581, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5518, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5520, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5523, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5524, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5527, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5529, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5531, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5532, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5533, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5534, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5536, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5538, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5540, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5541, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5542, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5543, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5545, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5547, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5549, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5550, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5551, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5552, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5554, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5556, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5558, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5559, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5560, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5561, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5563, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5569, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5571, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5572, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5573, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5574, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5576, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5580, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5583, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5584, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5587, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5589, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5592, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5593, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5596, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5598, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5600, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5601, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5602, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5603, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5605, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5607, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5610, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5611, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5614, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5616, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5619, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5620, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5623, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5625, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5627, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5628, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5629, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5630, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5632, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5634, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5636, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5637, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5638, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5639, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5641, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5643, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5645, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5646, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5647, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5648, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5650, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5652, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5654, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5655, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5656, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5657, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5659, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5665, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5672, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5676, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5683, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5685, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5692, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5694, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5701, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5710, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5712, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5718, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5719, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5721, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5728, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5730, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5737, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5739, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5746, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5748, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5755, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5761, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5762, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5763, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5764, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5765, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5766, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5767, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5768, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5772, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5773, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5778, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5779, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5781, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5782, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5787, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5788, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5790, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5791, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5792, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5793, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5794, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + + { + "id":5795, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5796, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5797, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5799, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5800, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5801, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5802, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5803, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5804, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5805, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5806, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5808, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5809, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5810, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5811, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5812, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5813, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5814, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5815, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5817, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5818, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5819, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5820, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5821, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5822, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5823, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5824, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5826, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5827, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5828, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5829, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5830, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5831, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5832, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5833, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5835, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5836, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5837, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5838, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5839, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5840, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5841, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5842, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5844, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5845, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5846, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5847, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5848, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5849, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5850, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5851, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5857, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5858, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5859, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5860, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5861, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5862, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5863, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5864, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5868, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5869, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5870, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5871, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5872, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5873, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5874, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5875, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5877, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5878, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5879, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5880, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5881, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5882, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5883, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5884, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5886, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5887, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5888, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5889, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5890, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5891, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5892, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5893, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5895, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5896, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5897, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5898, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5899, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5900, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5901, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5902, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5904, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5905, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5906, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5907, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5908, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5909, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5910, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5911, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5913, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5914, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5915, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5916, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5917, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5918, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5919, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5920, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5922, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5923, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5924, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5925, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5926, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5927, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5928, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5929, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5931, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5932, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5933, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5934, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5935, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5936, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5937, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5938, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5940, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5941, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5942, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5943, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5944, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5945, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5946, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5947, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5954, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5955, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5956, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5957, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5958, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5959, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5965, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5966, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5967, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5968, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5969, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5970, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5974, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5975, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5976, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5977, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5978, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5983, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5984, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5985, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5986, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5987, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5988, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":5992, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5993, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5994, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5995, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5996, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":5997, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6001, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6002, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6003, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6004, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6005, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6006, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6010, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6011, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6012, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6013, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6014, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6015, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6019, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6020, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6021, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6022, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6023, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6024, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6028, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6029, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6030, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6031, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6032, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6033, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6037, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6038, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6039, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6040, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6041, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6042, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6079, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":6080, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":6081, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":6082, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":6083, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":6084, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":6134, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6135, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6136, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":6137, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }], + "tilewidth":16, + "wangsets":[ + { + "colors":[ + { + "color":"#ff0000", + "name":"Ice Lava", + "probability":1, + "tile":-1 + }], + "name":"Ice lava", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":878, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":879, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":883, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":975, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":976, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":977, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":978, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1071, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1072, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1073, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1074, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1167, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1168, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1262, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1263, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1264, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1267, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1358, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1359, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1363, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Inverse Ice Lava", + "probability":1, + "tile":-1 + }], + "name":"Inverse Ice lava", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":878, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":879, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":883, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":975, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":976, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":977, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":978, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1071, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1072, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1073, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1074, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1167, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1168, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1262, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1263, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1264, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1267, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1358, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1359, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1363, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1457, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1458, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Pink Grass", + "probability":1, + "tile":-1 + }, + { + "color":"#00ff00", + "name":"Dark Pink Grass", + "probability":1, + "tile":-1 + }], + "name":"Grass", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":3380, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":3381, + "wangid":[0, 0, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":3385, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":3477, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":3478, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":3479, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":3480, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":3573, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3574, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3575, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3576, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3669, + "wangid":[0, 2, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":3670, + "wangid":[0, 0, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3671, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3672, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3764, + "wangid":[0, 2, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":3765, + "wangid":[0, 2, 0, 2, 0, 0, 0, 2] + }, + { + "tileid":3766, + "wangid":[0, 2, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":3767, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3768, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3769, + "wangid":[0, 0, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":3860, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3861, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3862, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3863, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3864, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3865, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3956, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":3957, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3961, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":4053, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":4054, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":4055, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":4056, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":4149, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":4150, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":4151, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":4152, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":4245, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":4246, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4247, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4248, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4250, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4251, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4252, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4340, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":4341, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":4342, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":4343, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4344, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4345, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":4346, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4347, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4348, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4436, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":4437, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":4438, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":4439, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":4440, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":4441, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":4442, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4443, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":4444, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":5513, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":5514, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":5515, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":5609, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":5610, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":5611, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":5706, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":5707, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Pink Dirt", + "probability":1, + "tile":-1 + }, + { + "color":"#00ff00", + "name":"Dark Pink Dirt", + "probability":1, + "tile":-1 + }], + "name":"Dirt", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":3386, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":3387, + "wangid":[0, 0, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":3391, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":3392, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":3393, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3397, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":3483, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":3484, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":3485, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":3486, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":3489, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":3490, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":3491, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":3492, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":3579, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3580, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3581, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3582, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3585, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3586, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3587, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3588, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3675, + "wangid":[0, 2, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":3676, + "wangid":[0, 0, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3677, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3678, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3681, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3682, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3683, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3684, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3770, + "wangid":[0, 2, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":3771, + "wangid":[0, 2, 0, 2, 0, 0, 0, 2] + }, + { + "tileid":3772, + "wangid":[0, 2, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":3773, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3774, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":3775, + "wangid":[0, 0, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":3776, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":3777, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":3778, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":3779, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3780, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3781, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":3866, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3867, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3868, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3869, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3870, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3871, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":3872, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3873, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3874, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3875, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3876, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3877, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Dark Pink Grass", + "probability":1, + "tile":-1 + }], + "name":"Inverse Grass", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":3380, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":3381, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3385, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":3477, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":3478, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":3479, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":3480, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":3573, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3574, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3575, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3576, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3669, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":3670, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":3671, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":3672, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":3764, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":3765, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3766, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3767, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":3768, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":3769, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":3860, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":3861, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3862, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3863, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3864, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":3865, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Normal", + "probability":1, + "tile":-1 + }], + "name":"Blue Grass", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":715, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":716, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":811, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":812, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1573, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1574, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1575, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1576, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1577, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1578, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1669, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1671, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1672, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1673, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1674, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1675, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1676, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1765, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1766, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1767, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1768, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1769, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1770, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1771, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1772, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1864, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1865, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1866, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1867, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1960, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1961, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1962, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1963, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2056, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"", + "probability":1, + "tile":-1 + }], + "name":"Blue Grass Ice", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":907, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":908, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1003, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1004, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1291, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1292, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1387, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1388, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1861, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1862, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1863, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1957, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1959, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1962, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2053, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2054, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":2055, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"", + "probability":1, + "tile":-1 + }], + "name":"Inverse Blue Grass", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":715, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":716, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":811, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":812, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1573, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1574, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1575, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1669, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1670, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1671, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1675, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1676, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1765, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1766, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1767, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1771, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1772, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"", + "probability":1, + "tile":-1 + }], + "name":"Inverse Blue Grass Ice", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":907, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":908, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1003, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1004, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1291, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1292, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1387, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1388, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1861, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1862, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1863, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1957, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1958, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1959, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":2053, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":2054, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2055, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"", + "probability":1, + "tile":-1 + }], + "name":"Blue Grass Hollow", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":1099, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":1100, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":1195, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":1196, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":1483, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":1484, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":1576, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1577, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1578, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1579, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1580, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":1672, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1673, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1674, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1768, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1769, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1770, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1864, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1865, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1866, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1867, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1960, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1961, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1962, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":1963, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2056, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2149, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":2150, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":2151, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":2245, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":2247, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":2341, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":2342, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":2343, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }] + }] + }, + { + "columns":64, + "firstgid":10241, + "image":"tilesets\/tilesheet-3.png", + "imageheight":1024, + "imagewidth":1024, + "margin":0, + "name":"tilesheet-3", + "spacing":0, + "tilecount":4096, + "tileheight":16, + "tiles":[ + { + "id":5, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":6, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":7, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":8, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":25, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":26, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":27, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":28, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":29, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":30, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":31, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":32, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":33, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":34, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":35, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":36, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":38, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":39, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":40, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":41, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":42, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":43, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":44, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":45, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":46, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":47, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":48, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":49, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":50, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":51, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":52, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":53, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":54, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":55, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":56, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":57, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":58, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":59, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":60, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":61, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":62, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":63, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":65, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":66, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":67, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":69, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":70, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":71, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":72, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":73, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":89, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":90, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":91, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":92, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":93, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":94, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":95, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":96, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":97, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":98, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":99, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":100, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":101, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":102, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":103, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":104, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":105, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":106, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":107, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":108, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":109, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":110, + "probability":0.0439999997615814, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":111, + "probability":0.0439999997615814, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":112, + "probability":0.0439999997615814, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":113, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":114, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":115, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":116, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":117, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":118, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":119, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":120, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":121, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":122, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":123, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":124, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":125, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":126, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":127, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":129, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":130, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":131, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":133, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":134, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":135, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":136, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":137, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":147, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":148, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":149, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":150, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":153, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":154, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":155, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":156, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":157, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":158, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":159, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":160, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":161, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":162, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":163, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":164, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":165, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":166, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":167, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":168, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":169, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":170, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":171, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":172, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":173, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":174, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":175, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":176, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":177, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":178, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":179, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":180, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":181, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":182, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":183, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":184, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":185, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":186, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":187, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":188, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":189, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":190, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":191, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":193, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":194, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":195, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":197, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":198, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":199, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":200, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":201, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":206, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":207, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":208, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":209, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":210, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":211, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":212, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":213, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":214, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":217, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":218, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":219, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":220, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":221, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":222, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":223, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":224, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":225, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":226, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":227, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":228, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":229, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":230, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":231, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":232, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":233, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":234, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":235, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":236, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":237, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":238, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":239, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":240, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":241, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":242, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":243, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":244, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":245, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":246, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":247, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":248, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":249, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":250, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":251, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":252, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":253, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":254, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":255, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":257, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":259, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":261, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":262, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":263, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":264, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":265, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":270, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":271, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":272, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":273, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":274, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":275, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":276, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":277, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":278, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":281, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":282, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":283, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":284, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":285, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":286, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":287, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":288, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":289, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":290, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":291, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":292, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":293, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":294, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":295, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":296, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":297, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":298, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":299, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":300, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":301, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":302, + "probability":0.0439999997615814, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":303, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":304, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":305, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":306, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":307, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":308, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":309, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":310, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":311, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":312, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":313, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":314, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":315, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":316, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":317, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":318, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":319, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":321, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":322, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":323, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":325, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":326, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":327, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":328, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":329, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":334, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":335, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":336, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":337, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":338, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":339, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":340, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":341, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":342, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":345, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":346, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":347, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":348, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":349, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":350, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":351, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":352, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":353, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":354, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":355, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":356, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":358, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":359, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":360, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":361, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":362, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":363, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":364, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":365, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":366, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":367, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":368, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":369, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":370, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":371, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":372, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":373, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":374, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":375, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":376, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":377, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":378, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":379, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":380, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":381, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":382, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":383, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":385, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":386, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":387, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":389, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":390, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":391, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":392, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":393, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":398, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":399, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":400, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":401, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":402, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":403, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":404, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":405, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":406, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":407, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":408, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":409, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":410, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":411, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":412, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":413, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":414, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":415, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":416, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":417, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":418, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":419, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":421, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":422, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":423, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":424, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":425, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":426, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":427, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":428, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":429, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":430, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":431, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":432, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":433, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":434, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":435, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":436, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":437, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":438, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":439, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":440, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":441, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":442, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":443, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":444, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":445, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":446, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":447, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":458, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":459, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":460, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":461, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":462, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":463, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":464, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":465, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":467, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":468, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":469, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":470, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":471, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":472, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":475, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":477, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":487, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":488, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":489, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":490, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":491, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":492, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":493, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":494, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":495, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":496, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":497, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":498, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":499, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":500, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":501, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":502, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":503, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":504, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":505, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":506, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":507, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":508, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":509, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":510, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":511, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":513, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":514, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":515, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":516, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":517, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":518, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":519, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":520, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":522, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":523, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":524, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":525, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":526, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":527, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":528, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":529, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":530, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":531, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":532, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":533, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":534, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":537, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":538, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":539, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":540, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":541, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":542, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":543, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":551, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":552, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":553, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":554, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":555, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":556, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":557, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":558, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":559, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":560, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":561, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":562, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":563, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":564, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":565, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":566, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":567, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":568, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":569, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":570, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":571, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":572, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":573, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":574, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":575, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":577, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":578, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":579, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":580, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":582, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":583, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":584, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":586, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":587, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":589, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":591, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":593, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":594, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":595, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":596, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":597, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":598, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":601, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":602, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":603, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":604, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":605, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":606, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":607, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":615, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":616, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":617, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":618, + "probability":0.25, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":619, + "probability":0.25, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":620, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":621, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":622, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":623, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":624, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":625, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":626, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":627, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":628, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":629, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":630, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":631, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":632, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":633, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":634, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":635, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":636, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":637, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":638, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":639, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":641, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":642, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":643, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":644, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":650, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":651, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":652, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":653, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":654, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":655, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":656, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":657, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":658, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":659, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":660, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":661, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":662, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":663, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":664, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":665, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":666, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":667, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":668, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":669, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":670, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":671, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":672, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":673, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":674, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":675, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":676, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":677, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":679, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":680, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":681, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":682, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":683, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":684, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":685, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":686, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":687, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":688, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":689, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":690, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":691, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":692, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":693, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":694, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":695, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":696, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":697, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":698, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":699, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":700, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":701, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":702, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":703, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":704, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":705, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":706, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":707, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":708, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":709, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":710, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":711, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":712, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":713, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":714, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":715, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":716, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":717, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":719, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":721, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":722, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":723, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":724, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":725, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":726, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":727, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":728, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":729, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":730, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":731, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":732, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":733, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":734, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":735, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":736, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":737, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":738, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":739, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":740, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":741, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":743, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":744, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":746, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":747, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":748, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":749, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":750, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":751, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":752, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":753, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":754, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":755, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":756, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":757, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":758, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":759, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":760, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":761, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":762, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":763, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":764, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":765, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":766, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":767, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":768, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":769, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":770, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":771, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":772, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":773, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":774, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":775, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":776, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":777, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":778, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":779, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":780, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":781, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":785, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":786, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":787, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":788, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":789, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":790, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":791, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":792, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":793, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":794, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":795, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":796, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":797, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":798, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":799, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":800, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":801, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":802, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":803, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":804, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":805, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":807, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":808, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":809, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":810, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":811, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":812, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":813, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":814, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":815, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":816, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":817, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":818, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":819, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":820, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":821, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":822, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":823, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":824, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":825, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":826, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":827, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":828, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":829, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":830, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":831, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":832, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":834, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":837, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":839, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":840, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":841, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":842, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":844, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":845, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":849, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":850, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":851, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":852, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":853, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":854, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":855, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":856, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":857, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":858, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":859, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":860, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":861, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":862, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":863, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":864, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":865, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":866, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":867, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":868, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":869, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":871, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":872, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":873, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":874, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":875, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":876, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":877, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":878, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":879, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":880, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":881, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":882, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":883, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":884, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":885, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":886, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":887, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":888, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":889, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":890, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":891, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":892, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":893, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":894, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":895, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":896, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":898, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":901, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":903, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":904, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":905, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":906, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":908, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":909, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":913, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":914, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":915, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":916, + "probability":0.00100000004749745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":917, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":918, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":919, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":920, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":921, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":922, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":923, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":924, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":925, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":926, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":927, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":928, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":929, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":930, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":931, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":932, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":933, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":935, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":936, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":937, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":938, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":939, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":940, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":941, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":942, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":943, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":944, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":945, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":946, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":947, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":948, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":949, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":950, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":951, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":952, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":953, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":954, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":955, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":956, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":957, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":958, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":959, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":960, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":961, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":962, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":967, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":968, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":969, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":970, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":972, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":973, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":975, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":976, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":981, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":982, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":983, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":984, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":995, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":996, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":997, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":999, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1000, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1001, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1002, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1003, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1004, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1005, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1006, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1007, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1008, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1009, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1010, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1011, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1012, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1013, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1014, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1015, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1016, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1017, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1018, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1019, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1020, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1021, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1022, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1023, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1024, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1025, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1026, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1031, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1032, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1033, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1034, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1036, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1037, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1039, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1040, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1049, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1050, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1051, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1052, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1053, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1054, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1063, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1064, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1065, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1066, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1067, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1068, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1069, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1070, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1071, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1072, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1073, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1074, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1075, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1076, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1077, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1078, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1079, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1080, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1081, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1082, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1083, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1084, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1085, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1086, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1087, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1088, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1089, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1090, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1095, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1096, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1097, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1098, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1100, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1101, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1114, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1115, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1116, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1117, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1127, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1128, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1129, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1130, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1131, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1132, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1133, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1134, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1135, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1136, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1137, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1138, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1139, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1140, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1141, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1142, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1143, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1144, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1145, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1146, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1147, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1148, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1149, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1150, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1151, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1152, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1153, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1154, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1164, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1165, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1178, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1179, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1180, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1181, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1191, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1192, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1193, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1194, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1195, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1196, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1197, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1198, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1199, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1200, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1201, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1202, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1203, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1204, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1205, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1206, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1207, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1208, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1209, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1210, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1211, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1212, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1213, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1214, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1215, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1216, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1217, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1218, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1219, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1228, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1229, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1255, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1256, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1257, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1259, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1260, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1261, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1262, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1263, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1264, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1265, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1266, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1267, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1268, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1269, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1270, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1271, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1272, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1273, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1274, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1275, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1276, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1277, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1278, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1279, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1280, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1281, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1282, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1283, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1292, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1293, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1305, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1306, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1307, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1308, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1309, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1310, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1311, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1312, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1313, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1314, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1315, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1316, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1317, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1318, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1319, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1320, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1321, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1322, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1323, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1324, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1325, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1326, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1327, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1328, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1329, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1330, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1331, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1332, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1333, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1334, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1335, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1336, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1337, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1338, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1339, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1340, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1341, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1342, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1343, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1344, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1345, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1346, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1347, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1356, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1369, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1370, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1371, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1372, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1373, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1374, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1375, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1376, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1377, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1378, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1379, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1380, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1381, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1382, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1383, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1384, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1385, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1386, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1387, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1388, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1389, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1390, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1391, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1392, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1393, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1394, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1395, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1396, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1397, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1398, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1399, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1400, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1401, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1402, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1403, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1404, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1405, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1406, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1407, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1408, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1409, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1410, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1411, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1420, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1421, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1422, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1433, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1434, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1435, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1436, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1437, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1438, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1439, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1440, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1441, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1442, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1443, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1444, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1445, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1446, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1447, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1448, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1449, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1450, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1451, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1452, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1453, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1454, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1455, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1456, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1457, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1458, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1459, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1460, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1461, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1462, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1463, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1464, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1465, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1466, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1467, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1468, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1469, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1470, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1471, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1474, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1475, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1482, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1483, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1486, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1497, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1498, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1499, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1500, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1501, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1502, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1503, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1504, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1505, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1506, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1507, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1508, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1509, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1510, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1511, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1512, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1513, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1514, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1515, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1516, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1517, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1518, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1519, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1520, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1521, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1522, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1523, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1524, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1525, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + + { + "id":1526, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1527, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1528, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1529, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1530, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1531, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1532, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1533, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1534, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1535, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1538, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1539, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1546, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1547, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1548, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1549, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1550, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1561, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1562, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1563, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1564, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1565, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1566, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1567, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1568, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1569, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1570, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1571, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1572, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1573, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1574, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1575, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1576, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1577, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1578, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1579, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1580, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1581, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1582, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1583, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1584, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1585, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1586, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1587, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1588, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1589, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1590, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1591, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1592, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1593, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1594, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1595, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1596, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1597, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1598, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1599, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1625, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1626, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1627, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1628, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1629, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1630, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1631, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1632, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1633, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1634, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1635, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1636, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1637, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1638, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1639, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1640, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1641, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1642, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1643, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1644, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1645, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1646, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1647, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1648, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1649, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1650, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1651, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1652, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1653, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1654, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1655, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1656, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1657, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1658, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1659, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1660, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1661, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1662, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1663, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1665, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1666, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1667, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1668, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1669, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1670, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1671, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1673, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1674, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1675, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1676, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1677, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1678, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1679, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1680, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1689, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1690, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1691, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1692, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1693, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1694, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1695, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1696, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1697, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1698, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1699, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1700, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1701, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1702, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1703, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1704, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1705, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1706, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1707, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1708, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1709, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1710, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1711, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1712, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1713, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1714, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1715, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1716, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1717, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1718, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1719, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1720, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1721, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1722, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1723, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1724, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1725, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1726, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1727, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1728, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1729, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1730, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1731, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1732, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1733, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1734, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1735, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1736, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1737, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1738, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1739, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1740, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1741, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1742, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1743, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1744, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1754, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1755, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1758, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1759, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1764, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1765, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1767, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1768, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1769, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1770, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1771, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1772, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1773, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1774, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1775, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1776, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1777, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1778, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1779, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1780, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1781, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1782, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1783, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1784, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1785, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1786, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1787, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1788, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1789, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1790, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1791, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1792, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1793, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1794, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1795, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1796, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1797, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1798, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1799, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1800, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1801, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1802, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1803, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1804, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1805, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1806, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1807, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1823, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1824, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1825, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1826, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1827, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1828, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1829, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1830, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1831, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1832, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1833, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1834, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1835, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1836, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1837, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1838, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1839, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1840, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1841, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1842, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1843, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1844, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1845, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1846, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1847, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1848, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1849, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1850, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1851, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1852, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1853, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1854, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1855, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1856, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1857, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1858, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1859, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1860, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1861, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1862, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1863, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1865, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1866, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1867, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1868, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1869, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1870, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1871, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1887, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1888, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1889, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1890, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1891, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1892, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1893, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1894, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1895, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1896, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1897, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1898, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1899, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1900, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1901, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1902, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1903, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1904, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1905, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1906, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1907, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1908, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1909, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1910, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1911, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1912, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1913, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1914, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1915, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1916, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1917, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1918, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1919, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1920, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1921, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1922, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1923, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1924, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1925, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1926, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1927, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1929, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1930, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1931, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1932, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1933, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1934, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1935, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1951, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1952, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1953, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1954, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1955, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1956, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1957, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1958, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1959, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1960, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1961, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1962, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1963, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1964, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1965, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1966, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1967, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1968, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1969, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1970, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1971, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1972, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1973, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1974, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1975, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1976, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1977, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1978, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1979, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1980, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1981, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1982, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1983, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1984, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1985, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1986, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1987, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1988, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1989, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1990, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1991, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1993, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1994, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1995, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1996, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1997, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1998, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1999, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2015, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2016, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2017, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2018, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2019, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2020, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2021, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2022, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2023, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2024, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2025, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2026, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2027, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2028, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2029, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2030, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2031, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2032, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2033, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2034, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2035, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2036, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2037, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2038, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2039, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2040, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2041, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2042, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2043, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2044, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2045, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2046, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2047, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2048, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2049, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2050, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2051, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2052, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2053, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2054, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2058, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2059, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2060, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2061, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2062, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2064, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2065, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2066, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2079, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2080, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2081, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2082, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2083, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2084, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2085, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2086, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2087, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2088, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2089, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2090, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2091, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2092, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2093, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2094, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2095, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2096, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2097, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2098, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2099, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2100, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2101, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2102, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2103, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2104, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2105, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2106, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2107, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2108, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2109, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2110, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2111, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2113, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2114, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2115, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2116, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2117, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2118, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2122, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2123, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2124, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2125, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2126, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2128, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2130, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2143, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2144, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2145, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2146, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2147, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2148, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2149, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2150, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2151, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2152, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2153, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2154, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2155, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2156, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2157, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2158, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2159, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2160, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2161, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2162, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2163, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2164, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2165, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2166, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2167, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2168, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2169, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2170, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2171, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2172, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2173, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2174, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2175, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2176, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2177, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2178, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2179, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2180, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2181, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2182, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2183, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2184, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2185, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2186, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2187, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2188, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2189, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2190, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2191, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2192, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2193, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2194, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2195, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2196, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2197, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2198, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2207, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2208, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2209, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2213, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2214, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2215, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2216, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2217, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2218, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2219, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2220, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2221, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2222, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2223, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2224, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2225, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2226, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2227, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2228, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2229, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2230, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2231, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2232, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2233, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2234, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2235, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2236, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2237, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2238, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2239, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2240, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2241, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2242, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2243, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2244, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2245, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2246, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2247, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2248, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2249, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2250, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2251, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2252, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2253, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2254, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2255, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2256, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2257, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2259, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2260, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2261, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2262, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2279, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2280, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2281, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2282, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2283, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2284, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2285, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2286, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2287, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2288, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2289, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2290, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2291, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2292, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2293, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2294, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2295, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2296, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2297, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2298, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2299, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2300, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2301, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2302, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2303, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2304, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2305, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2306, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2307, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2308, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2309, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2310, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2311, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2312, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2313, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2314, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2315, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2316, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2317, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2318, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2319, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2320, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2321, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2322, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2323, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2324, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2325, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2326, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2328, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2331, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2332, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2343, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2344, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2345, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2346, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2347, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2348, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2349, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2350, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2351, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2352, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2353, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2354, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2355, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2356, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2357, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2358, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2359, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2360, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2361, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2362, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2363, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2364, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2365, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2366, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2367, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2368, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2369, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2370, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2371, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2372, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2373, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2374, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2375, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2376, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2377, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2378, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2379, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2380, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2381, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2382, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2383, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2384, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2385, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2386, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2387, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2388, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2389, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2390, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2391, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2392, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2393, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2394, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2395, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2396, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2399, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2400, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2403, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2404, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2407, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2408, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2409, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2410, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2411, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2412, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2413, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2414, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2415, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2416, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2417, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2418, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2419, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2420, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2421, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2422, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2423, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2424, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2425, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2426, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2427, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2428, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2429, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2430, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2431, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2432, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2433, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2434, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2435, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2436, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2437, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2438, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2439, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2440, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2441, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2442, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2443, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2444, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2445, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2446, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2447, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2448, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2449, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2450, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2451, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2452, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2453, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2454, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2455, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2456, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2457, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2458, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2459, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2460, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2462, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2463, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2464, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2465, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2466, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2467, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2468, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2469, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2471, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2472, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2473, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2474, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2475, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2476, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2477, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2478, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2479, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2480, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2481, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2482, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2483, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2484, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2485, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2486, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2487, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2488, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2489, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2490, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2491, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2492, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2493, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2494, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2495, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2497, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2498, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2499, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2500, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2501, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2503, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2504, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2505, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2506, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2507, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2508, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2509, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2510, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2511, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2512, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2513, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2514, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2515, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2516, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2517, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2518, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2519, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2520, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2521, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2522, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2523, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2524, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2526, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2527, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2528, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2529, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2530, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2531, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2532, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2533, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2535, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2536, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2537, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2538, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2539, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2540, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2541, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2542, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2543, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2544, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2545, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2546, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2547, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2548, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2549, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2550, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2551, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2552, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2553, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2554, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2555, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2556, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2557, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2558, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2559, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2561, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2562, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2563, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2564, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2565, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2567, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2568, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2569, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2570, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2571, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2572, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2573, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2574, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2575, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2576, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2577, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2578, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2579, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2580, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2581, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2582, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2584, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2585, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2586, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2587, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2588, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2590, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2591, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2592, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2595, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2596, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2597, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2599, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2600, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2601, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2602, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2603, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2604, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2605, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2606, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2607, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2608, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2609, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2610, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2611, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2612, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2613, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2614, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2615, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2616, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2617, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2618, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2619, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2620, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2621, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2622, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2623, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2625, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2626, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2632, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2633, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2634, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2635, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2636, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2639, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2640, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2641, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2642, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2643, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2644, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2645, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2646, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2648, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2649, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2650, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2651, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2652, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2654, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2655, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2656, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2657, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2658, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2659, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2660, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2661, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2663, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2664, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2665, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2666, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2667, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2668, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2669, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2670, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2671, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2672, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2673, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2674, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2675, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2676, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2677, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2678, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2679, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2680, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2681, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2682, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2683, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2684, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2685, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2686, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2687, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2689, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2690, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2693, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2694, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2696, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2697, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2698, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2699, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2700, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2703, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2704, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2705, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2706, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2707, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2708, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2709, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2710, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2718, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2719, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2720, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2721, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2722, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2723, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2724, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2725, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2727, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2728, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2729, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2730, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2731, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2732, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2733, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2734, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2735, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2736, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2737, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2738, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2739, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2740, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2741, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2742, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2743, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2744, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2745, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2746, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2747, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2748, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2749, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2750, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2751, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2754, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2755, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2757, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2758, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2791, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2792, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2793, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2794, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2795, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2796, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2797, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2798, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2799, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2800, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2801, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2802, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2803, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2804, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2805, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2806, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2807, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2808, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2809, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2810, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2811, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2812, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2813, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2814, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2815, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2818, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2819, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2855, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2856, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2857, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2858, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2859, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2860, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2861, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2862, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2863, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2864, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2865, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2866, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2867, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2868, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2869, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2870, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2871, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2872, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2873, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2874, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2875, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2876, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2877, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2878, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2879, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2919, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2920, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2921, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2922, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2923, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2924, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2925, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2926, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2927, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2928, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2929, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2930, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2931, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2932, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2933, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2934, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2935, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2936, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2937, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2938, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2939, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2940, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2941, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2942, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2943, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2944, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2945, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2946, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2947, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2983, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2984, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2985, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2986, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2987, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2988, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2989, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2990, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2991, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2992, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2993, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2994, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2995, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2996, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2997, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2998, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2999, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3000, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3001, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3002, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3003, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3004, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3005, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3006, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3007, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3008, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3009, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3010, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3011, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3013, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3014, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3038, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3043, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3046, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3047, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3048, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3049, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3050, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3051, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3052, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3053, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3054, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3055, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3056, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3057, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3058, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3059, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3060, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3061, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3062, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3063, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3064, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3065, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3066, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3067, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3068, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3069, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3070, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3071, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3077, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3078, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3100, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3101, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3102, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3103, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3105, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3106, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3107, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3108, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3110, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3111, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3112, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3113, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3114, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3115, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3116, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3117, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3118, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3119, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3120, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3121, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3122, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3123, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3124, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3125, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3126, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3127, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3128, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3129, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3130, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3131, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + + { + "id":3132, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3133, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3134, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3135, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3164, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3165, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3166, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3167, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3168, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3169, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3170, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3171, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3172, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3173, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3174, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3175, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3176, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3177, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3178, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3180, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3181, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3182, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3183, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3184, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3185, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3186, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3187, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3188, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3189, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3190, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3191, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3192, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3193, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3194, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3195, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3196, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3197, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3198, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3199, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3202, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3203, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3204, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3205, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3206, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3207, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3230, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3235, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3236, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3237, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3239, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3240, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3241, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3242, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3245, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3247, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3248, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3249, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3250, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3251, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3252, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3253, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3254, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3255, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3256, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3257, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3258, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3259, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3260, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3261, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3262, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3263, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3294, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3299, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3304, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3309, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3311, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3312, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3313, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3314, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3315, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3316, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3317, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3318, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3319, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3320, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3321, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3322, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3323, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3324, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3325, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3326, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3327, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3330, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3332, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3333, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3335, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3375, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3376, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3377, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3378, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3379, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3380, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3381, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3382, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3383, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3384, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3385, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3386, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3387, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3388, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3389, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3390, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3391, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3431, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3432, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3433, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3434, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3437, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3439, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3440, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3441, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3442, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3443, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3444, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3445, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3446, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3447, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3448, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3449, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3450, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3451, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3452, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3453, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3454, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3455, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3458, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3459, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3460, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3461, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3462, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3463, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":3486, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3491, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3494, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3495, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3496, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3497, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3500, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3501, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3502, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3505, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3506, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3507, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3509, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3510, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3511, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3558, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3559, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3560, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3561, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3563, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3564, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3565, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3566, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3568, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3569, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3570, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3571, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3572, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3574, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3624, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3627, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3628, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3629, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3630, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3632, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3633, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3634, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3635, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3636, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3693, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3698, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3702, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3751, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3752, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3753, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3811, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3814, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3815, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3816, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3817, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3818, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3820, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3821, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3822, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3825, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3826, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3827, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3830, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3831, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3832, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3835, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3836, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3837, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3878, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3879, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3880, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3881, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3882, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3883, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3884, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3885, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3886, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3887, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3888, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3889, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3890, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3891, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3892, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3893, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3894, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3895, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3896, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3897, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3898, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3899, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3900, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3901, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3902, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3942, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3943, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3944, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3947, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3948, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3949, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3950, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3951, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3952, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3953, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3954, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3955, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3956, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3957, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3958, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3959, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3960, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3961, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3962, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3963, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3964, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3965, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3966, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4003, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4008, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4013, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4018, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4023, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4028, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }], + "tilewidth":16, + "wangsets":[ + { + "colors":[ + { + "color":"#ff0000", + "name":"Ice Grass", + "probability":1, + "tile":-1 + }, + { + "color":"#00ff00", + "name":"Blue Grass Path", + "probability":1, + "tile":-1 + }], + "name":"Blue Grass", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":23, + "wangid":[0, 2, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":24, + "wangid":[0, 2, 0, 2, 0, 0, 0, 2] + }, + { + "tileid":87, + "wangid":[0, 0, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":88, + "wangid":[0, 2, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":151, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":152, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":206, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":207, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":208, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":215, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":216, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":270, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":271, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":272, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":334, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":335, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":336, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":407, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":408, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":471, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":472, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":593, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":594, + "wangid":[0, 0, 0, 2, 0, 2, 0, 0] + }, + { + "tileid":595, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":657, + "wangid":[0, 2, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":658, + "wangid":[0, 2, 0, 2, 0, 2, 0, 2] + }, + { + "tileid":659, + "wangid":[0, 0, 0, 0, 0, 2, 0, 2] + }, + { + "tileid":663, + "wangid":[0, 0, 0, 2, 0, 0, 0, 0] + }, + { + "tileid":664, + "wangid":[0, 0, 0, 0, 0, 2, 0, 0] + }, + { + "tileid":721, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":722, + "wangid":[0, 2, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":723, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }, + { + "tileid":727, + "wangid":[0, 2, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":728, + "wangid":[0, 0, 0, 0, 0, 0, 0, 2] + }] + }, + { + "colors":[ + { + "color":"#ff0000", + "name":"Blue Grass Ice", + "probability":1, + "tile":-1 + }], + "name":"Blue Grass 2", + "tile":-1, + "type":"corner", + "wangtiles":[ + { + "tileid":151, + "wangid":[0, 1, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":152, + "wangid":[0, 1, 0, 1, 0, 0, 0, 1] + }, + { + "tileid":215, + "wangid":[0, 0, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":216, + "wangid":[0, 1, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":785, + "wangid":[0, 0, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":786, + "wangid":[0, 0, 0, 1, 0, 1, 0, 0] + }, + { + "tileid":787, + "wangid":[0, 0, 0, 0, 0, 1, 0, 0] + }, + { + "tileid":849, + "wangid":[0, 1, 0, 1, 0, 0, 0, 0] + }, + { + "tileid":850, + "wangid":[0, 1, 0, 1, 0, 1, 0, 1] + }, + { + "tileid":851, + "wangid":[0, 0, 0, 0, 0, 1, 0, 1] + }, + { + "tileid":913, + "wangid":[0, 1, 0, 0, 0, 0, 0, 0] + }, + { + "tileid":914, + "wangid":[0, 1, 0, 0, 0, 0, 0, 1] + }, + { + "tileid":915, + "wangid":[0, 0, 0, 0, 0, 0, 0, 1] + }] + }] + }, + { + "columns":24, + "firstgid":14337, + "image":"tilesets\/mobset.png", + "imageheight":256, + "imagewidth":384, + "margin":0, + "name":"Entities", + "spacing":0, + "tilecount":384, + "tileheight":16, + "tiles":[ + { + "id":0, + "properties":[ + { + "name":"key", + "type":"string", + "value":"skeleton" + }] + }, + { + "id":1, + "properties":[ + { + "name":"key", + "type":"string", + "value":"goblin" + }] + }, + { + "id":2, + "properties":[ + { + "name":"key", + "type":"string", + "value":"ogre" + }] + }, + { + "id":3, + "properties":[ + { + "name":"key", + "type":"string", + "value":"rat" + }] + }, + { + "id":4, + "properties":[ + { + "name":"key", + "type":"string", + "value":"spectre" + }] + }, + { + "id":5, + "properties":[ + { + "name":"key", + "type":"string", + "value":"crab" + }] + }, + { + "id":6, + "properties":[ + { + "name":"key", + "type":"string", + "value":"guard" + }] + }, + { + "id":7, + "properties":[ + { + "name":"key", + "type":"string", + "value":"king" + }] + }, + { + "id":8, + "properties":[ + { + "name":"key", + "type":"string", + "value":"octocat" + }] + }, + { + "id":9, + "properties":[ + { + "name":"key", + "type":"string", + "value":"wizard" + }] + }, + { + "id":10, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villagegirl" + }] + }, + { + "id":11, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villager" + }] + }, + { + "id":12, + "properties":[ + { + "name":"key", + "type":"string", + "value":"priest" + }] + }, + { + "id":13, + "properties":[ + { + "name":"key", + "type":"string", + "value":"bat" + }] + }, + { + "id":14, + "properties":[ + { + "name":"key", + "type":"string", + "value":"eye" + }] + }, + { + "id":15, + "properties":[ + { + "name":"key", + "type":"string", + "value":"snek" + }] + }, + { + "id":16, + "properties":[ + { + "name":"key", + "type":"string", + "value":"skeleton2" + }] + }, + { + "id":17, + "properties":[ + { + "name":"key", + "type":"string", + "value":"skeletonking" + }] + }, + { + "id":18, + "properties":[ + { + "name":"key", + "type":"string", + "value":"scientist" + }] + }, + { + "id":19, + "properties":[ + { + "name":"key", + "type":"string", + "value":"agent" + }] + }, + { + "id":20, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villagegirl4" + }] + }, + { + "id":21, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villagegirl5" + }] + }, + { + "id":22, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villagegirl6" + }] + }, + { + "id":23, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villagegirl7" + }] + }, + { + "id":24, + "properties":[ + { + "name":"key", + "type":"string", + "value":"rick" + }] + }, + { + "id":25, + "properties":[ + { + "name":"key", + "type":"string", + "value":"nyan" + }] + }, + { + "id":26, + "properties":[ + { + "name":"key", + "type":"string", + "value":"sorcerer" + }] + }, + { + "id":27, + "properties":[ + { + "name":"key", + "type":"string", + "value":"deathknight" + }] + }, + { + "id":28, + "properties":[ + { + "name":"key", + "type":"string", + "value":"beachnpc" + }] + }, + { + "id":29, + "properties":[ + { + "name":"key", + "type":"string", + "value":"desertnpc" + }] + }, + { + "id":30, + "properties":[ + { + "name":"key", + "type":"string", + "value":"lavanpc" + }] + }, + { + "id":31, + "properties":[ + { + "name":"key", + "type":"string", + "value":"coder" + }] + }, + { + "id":32, + "properties":[ + { + "name":"key", + "type":"string", + "value":"orc" + }] + }, + { + "id":33, + "properties":[ + { + "name":"key", + "type":"string", + "value":"golem" + }] + }, + { + "id":34, + "properties":[ + { + "name":"key", + "type":"string", + "value":"oldogre" + }] + }, + { + "id":35, + "properties":[ + { + "name":"key", + "type":"string", + "value":"hobgoblin" + }] + }, + { + "id":36, + "properties":[ + { + "name":"key", + "type":"string", + "value":"mimic" + }] + }, + { + "id":37, + "properties":[ + { + "name":"key", + "type":"string", + "value":"yellowmouse" + }] + }, + { + "id":38, + "properties":[ + { + "name":"key", + "type":"string", + "value":"whitemouse" + }] + }, + { + "id":39, + "properties":[ + { + "name":"key", + "type":"string", + "value":"brownmouse" + }] + }, + { + "id":40, + "properties":[ + { + "name":"key", + "type":"string", + "value":"redguard" + }] + }, + { + "id":41, + "properties":[ + { + "name":"key", + "type":"string", + "value":"redmouse" + }] + }, + { + "id":42, + "properties":[ + { + "name":"key", + "type":"string", + "value":"infectedguard" + }] + }, + { + "id":43, + "properties":[ + { + "name":"key", + "type":"string", + "value":"livingarmor" + }] + }, + { + "id":44, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villager2" + }] + }, + { + "id":45, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villager3" + }] + }, + { + "id":46, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villager4" + }] + }, + { + "id":47, + "properties":[ + { + "name":"key", + "type":"string", + "value":"forestnpc" + }] + }, + { + "id":48, + "properties":[ + { + "name":"key", + "type":"string", + "value":"lavaslime" + }] + }, + { + "id":50, + "properties":[ + { + "name":"key", + "type":"string", + "value":"mantis" + }] + }, + { + "id":51, + "properties":[ + { + "name":"key", + "type":"string", + "value":"greencockroach" + }] + }, + { + "id":52, + "properties":[ + { + "name":"key", + "type":"string", + "value":"regionhenchman" + }] + }, + { + "id":53, + "properties":[ + { + "name":"key", + "type":"string", + "value":"yellowbat" + }] + }, + { + "id":54, + "properties":[ + { + "name":"key", + "type":"string", + "value":"infectedvillager" + }] + }, + { + "id":55, + "properties":[ + { + "name":"key", + "type":"string", + "value":"beetle" + }] + }, + { + "id":56, + "properties":[ + { + "name":"key", + "type":"string", + "value":"card" + }] + }, + { + "id":57, + "properties":[ + { + "name":"key", + "type":"string", + "value":"card2" + }] + }, + { + "id":58, + "properties":[ + { + "name":"key", + "type":"string", + "value":"cat" + }] + }, + { + "id":59, + "properties":[ + { + "name":"key", + "type":"string", + "value":"cobra" + }] + }, + { + "id":68, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miner2" + }] + }, + { + "id":69, + "properties":[ + { + "name":"key", + "type":"string", + "value":"madscientist" + }] + }, + { + "id":70, + "properties":[ + { + "name":"key", + "type":"string", + "value":"prisoner" + }] + }, + { + "id":81, + "properties":[ + { + "name":"key", + "type":"string", + "value":"boxingman" + }] + }, + { + "id":82, + "properties":[ + { + "name":"key", + "type":"string", + "value":"vampire" + }] + }, + { + "id":83, + "properties":[ + { + "name":"key", + "type":"string", + "value":"doctor" + }] + }, + { + "id":84, + "properties":[ + { + "name":"key", + "type":"string", + "value":"oddeyecat" + }] + }, + { + "id":85, + "properties":[ + { + "name":"key", + "type":"string", + "value":"vendingmachine" + }] + }, + { + "id":86, + "properties":[ + { + "name":"key", + "type":"string", + "value":"fisherman" + }] + }, + { + "id":87, + "properties":[ + { + "name":"key", + "type":"string", + "value":"soldier" + }] + }, + { + "id":88, + "properties":[ + { + "name":"key", + "type":"string", + "value":"octopus" + }] + }, + { + "id":89, + "properties":[ + { + "name":"key", + "type":"string", + "value":"mermaidnpc" + }] + }, + { + "id":90, + "properties":[ + { + "name":"key", + "type":"string", + "value":"sponge" + }] + }, + { + "id":91, + "properties":[ + { + "name":"key", + "type":"string", + "value":"fairynpc" + }] + }, + { + "id":130, + "properties":[ + { + "name":"key", + "type":"string", + "value":"ant" + }] + }, + { + "id":131, + "properties":[ + { + "name":"key", + "type":"string", + "value":"babyspider" + }] + }, + { + "id":132, + "properties":[ + { + "name":"key", + "type":"string", + "value":"darkregion" + }] + }, + { + "id":133, + "properties":[ + { + "name":"key", + "type":"string", + "value":"smalldevil" + }] + }, + { + "id":134, + "properties":[ + { + "name":"key", + "type":"string", + "value":"vulture" + }] + }, + { + "id":135, + "properties":[ + { + "name":"key", + "type":"string", + "value":"cactus" + }] + }, + { + "id":136, + "properties":[ + { + "name":"key", + "type":"string", + "value":"icevulture" + }] + }, + { + "id":137, + "properties":[ + { + "name":"key", + "type":"string", + "value":"guardmace" + }] + }, + { + "id":138, + "properties":[ + { + "name":"key", + "type":"string", + "value":"guardsword" + }] + }, + { + "id":146, + "properties":[ + { + "name":"key", + "type":"string", + "value":"forestdragon" + }] + }, + { + "id":147, + "properties":[ + { + "name":"key", + "type":"string", + "value":"seadragon" + }] + }, + { + "id":148, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniseadragon" + }] + }, + { + "id":149, + "properties":[ + { + "name":"key", + "type":"string", + "value":"icerat" + }] + }, + { + "id":150, + "properties":[ + { + "name":"key", + "type":"string", + "value":"icegoblin" + }] + }, + { + "id":151, + "properties":[ + { + "name":"key", + "type":"string", + "value":"icebat" + }] + }, + { + "id":152, + "properties":[ + { + "name":"key", + "type":"string", + "value":"royalguard" + }] + }, + { + "id":153, + "properties":[ + { + "name":"key", + "type":"string", + "value":"wolf" + }] + }, + { + "id":154, + "properties":[ + { + "name":"key", + "type":"string", + "value":"snowrabbit" + }] + }, + { + "id":155, + "properties":[ + { + "name":"key", + "type":"string", + "value":"snowman" + }] + }, + { + "id":156, + "properties":[ + { + "name":"key", + "type":"string", + "value":"slime" + }] + }, + { + "id":157, + "properties":[ + { + "name":"key", + "type":"string", + "value":"soldierant" + }] + }, + { + "id":158, + "properties":[ + { + "name":"key", + "type":"string", + "value":"desertscorpion" + }] + }, + { + "id":168, + "properties":[ + { + "name":"key", + "type":"string", + "value":"blackwizard" + }] + }, + { + "id":169, + "properties":[ + { + "name":"key", + "type":"string", + "value":"windguardian" + }] + }, + { + "id":170, + "properties":[ + { + "name":"key", + "type":"string", + "value":"icecrab" + }] + }, + { + "id":171, + "properties":[ + { + "name":"key", + "type":"string", + "value":"iceknight" + }] + }, + { + "id":172, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniiceknight" + }] + }, + { + "id":173, + "properties":[ + { + "name":"key", + "type":"string", + "value":"minidragon" + }] + }, + { + "id":174, + "properties":[ + { + "name":"key", + "type":"string", + "value":"crystalscorpion" + }] + }, + { + "id":175, + "properties":[ + { + "name":"key", + "type":"string", + "value":"cursedjangseung" + }] + }, + { + "id":176, + "properties":[ + { + "name":"key", + "type":"string", + "value":"cursedhahoemask" + }] + }, + { + "id":177, + "properties":[ + { + "name":"key", + "type":"string", + "value":"icewizard" + }] + }, + { + "id":178, + "properties":[ + { + "name":"key", + "type":"string", + "value":"snowman2" + }] + }, + { + "id":182, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniiceknight1" + }] + }, + { + "id":183, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniiceknight2" + }] + }, + { + "id":184, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniiceknight3" + }] + }, + { + "id":185, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniiceknight4" + }] + }, + { + "id":186, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniiceknight5" + }] + }, + { + "id":187, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniemperor" + }] + }, + { + "id":192, + "properties":[ + { + "name":"key", + "type":"string", + "value":"squid" + }] + }, + { + "id":193, + "properties":[ + { + "name":"key", + "type":"string", + "value":"lightningguardian" + }] + }, + { + "id":194, + "properties":[ + { + "name":"key", + "type":"string", + "value":"whitebear" + }] + }, + { + "id":195, + "properties":[ + { + "name":"key", + "type":"string", + "value":"enel" + }] + }, + { + "id":196, + "properties":[ + { + "name":"key", + "type":"string", + "value":"queenant" + }] + }, + { + "id":197, + "properties":[ + { + "name":"key", + "type":"string", + "value":"skydinosaur" + }] + }, + { + "id":198, + "properties":[ + { + "name":"key", + "type":"string", + "value":"whitetiger" + }] + }, + { + "id":199, + "properties":[ + { + "name":"key", + "type":"string", + "value":"hellhound" + }] + }, + { + "id":200, + "properties":[ + { + "name":"key", + "type":"string", + "value":"cowwarrior" + }] + }, + { + "id":201, + "properties":[ + { + "name":"key", + "type":"string", + "value":"rooster" + }] + }, + { + "id":206, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniknight1" + }] + }, + { + "id":207, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniknight2" + }] + }, + { + "id":208, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniknight3" + }] + }, + { + "id":209, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniknight4" + }] + }, + { + "id":210, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniknight5" + }] + }, + { + "id":211, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miniknight6" + }] + }, + { + "id":216, + "properties":[ + { + "name":"key", + "type":"string", + "value":"momangelnpc" + }] + }, + { + "id":217, + "properties":[ + { + "name":"key", + "type":"string", + "value":"superiorangelnpc" + }] + }, + { + "id":218, + "properties":[ + { + "name":"key", + "type":"string", + "value":"firstsonangelnpc" + }] + }, + { + "id":219, + "properties":[ + { + "name":"key", + "type":"string", + "value":"secondsonangelnpc" + }] + }, + { + "id":220, + "properties":[ + { + "name":"key", + "type":"string", + "value":"mojojojonpc" + }] + }, + { + "id":221, + "properties":[ + { + "name":"key", + "type":"string", + "value":"ancientmanumentnpc" + }] + }, + { + "id":222, + "properties":[ + { + "name":"key", + "type":"string", + "value":"snowwolf" + }] + }, + { + "id":223, + "properties":[ + { + "name":"key", + "type":"string", + "value":"darkogre" + }] + }, + { + "id":224, + "properties":[ + { + "name":"key", + "type":"string", + "value":"oldogre" + }] + }, + { + "id":225, + "properties":[ + { + "name":"key", + "type":"string", + "value":"goldgolem" + }] + }, + { + "id":226, + "properties":[ + { + "name":"key", + "type":"string", + "value":"earthworm" + }] + }, + { + "id":227, + "properties":[ + { + "name":"key", + "type":"string", + "value":"darkscorpion" + }] + }, + { + "id":228, + "properties":[ + { + "name":"key", + "type":"string", + "value":"darkwolf" + }] + }, + { + "id":231, + "properties":[ + { + "name":"key", + "type":"string", + "value":"spider" + }] + }, + { + "id":232, + "properties":[ + { + "name":"key", + "type":"string", + "value":"poisonspider" + }] + }, + { + "id":233, + "properties":[ + { + "name":"key", + "type":"string", + "value":"hellspider" + }] + }, + { + "id":234, + "properties":[ + { + "name":"key", + "type":"string", + "value":"firespider" + }] + }, + { + "id":235, + "properties":[ + { + "name":"key", + "type":"string", + "value":"blazespider" + }] + }, + { + "id":240, + "properties":[ + { + "name":"key", + "type":"string", + "value":"hermitcrab" + }] + }, + { + "id":241, + "properties":[ + { + "name":"key", + "type":"string", + "value":"zombie" + }] + }, + { + "id":242, + "properties":[ + { + "name":"key", + "type":"string", + "value":"piratecaptain" + }] + }, + { + "id":243, + "properties":[ + { + "name":"key", + "type":"string", + "value":"ironogre" + }] + }, + { + "id":244, + "properties":[ + { + "name":"key", + "type":"string", + "value":"ogrelord" + }] + }, + { + "id":245, + "properties":[ + { + "name":"key", + "type":"string", + "value":"adherer" + }] + }, + { + "id":246, + "properties":[ + { + "name":"key", + "type":"string", + "value":"icegolem" + }] + }, + { + "id":247, + "properties":[ + { + "name":"key", + "type":"string", + "value":"shepherdboy" + }] + }, + { + "id":248, + "properties":[ + { + "name":"key", + "type":"string", + "value":"zombiegf" + }] + }, + { + "id":249, + "properties":[ + { + "name":"key", + "type":"string", + "value":"guildnpc" + }] + }, + { + "id":250, + "properties":[ + { + "name":"key", + "type":"string", + "value":"pirategirlnpc" + }] + }, + { + "id":251, + "properties":[ + { + "name":"key", + "type":"string", + "value":"bluebikinigirlnpc" + }] + }, + { + "id":252, + "properties":[ + { + "name":"key", + "type":"string", + "value":"redbikinigirlnpc" + }] + }, + { + "id":253, + "properties":[ + { + "name":"key", + "type":"string", + "value":"iamverycoldnpc" + }] + }, + { + "id":254, + "properties":[ + { + "name":"key", + "type":"string", + "value":"iceelfnpc" + }] + }, + { + "id":255, + "properties":[ + { + "name":"key", + "type":"string", + "value":"redstoremannpc" + }] + }, + { + "id":256, + "properties":[ + { + "name":"key", + "type":"string", + "value":"bluestoremannpc" + }] + }, + { + "id":257, + "properties":[ + { + "name":"key", + "type":"string", + "value":"elfnpc" + }] + }, + { + "id":258, + "properties":[ + { + "name":"key", + "type":"string", + "value":"snowshepherdboy" + }] + }, + { + "id":259, + "properties":[ + { + "name":"key", + "type":"string", + "value":"angelnpc" + }] + }, + { + "id":264, + "properties":[ + { + "name":"key", + "type":"string", + "value":"mermaid" + }] + }, + { + "id":265, + "properties":[ + { + "name":"key", + "type":"string", + "value":"yellowfish" + }] + }, + { + "id":266, + "properties":[ + { + "name":"key", + "type":"string", + "value":"greenfish" + }] + }, + { + "id":267, + "properties":[ + { + "name":"key", + "type":"string", + "value":"redfish" + }] + }, + { + "id":268, + "properties":[ + { + "name":"key", + "type":"string", + "value":"pirateskeleton" + }] + }, + { + "id":269, + "properties":[ + { + "name":"key", + "type":"string", + "value":"preta" + }] + }, + { + "id":270, + "properties":[ + { + "name":"key", + "type":"string", + "value":"clam" + }] + }, + { + "id":271, + "properties":[ + { + "name":"key", + "type":"string", + "value":"penguin" + }] + }, + { + "id":272, + "properties":[ + { + "name":"key", + "type":"string", + "value":"moleking" + }] + }, + { + "id":273, + "properties":[ + { + "name":"key", + "type":"string", + "value":"darkskeleton" + }] + }, + { + "id":274, + "properties":[ + { + "name":"key", + "type":"string", + "value":"greenpirateskeleton" + }] + }, + { + "id":275, + "properties":[ + { + "name":"key", + "type":"string", + "value":"blackpirateskeleton" + }] + }, + { + "id":276, + "properties":[ + { + "name":"key", + "type":"string", + "value":"redpirateskeleton" + }] + }, + { + "id":277, + "properties":[ + { + "name":"key", + "type":"string", + "value":"yellowpreta" + }] + }, + { + "id":278, + "properties":[ + { + "name":"key", + "type":"string", + "value":"bluepreta" + }] + }, + { + "id":280, + "properties":[ + { + "name":"key", + "type":"string", + "value":"wolf" + }] + }, + { + "id":281, + "properties":[ + { + "name":"key", + "type":"string", + "value":"pinkelf" + }] + }, + { + "id":282, + "properties":[ + { + "name":"key", + "type":"string", + "value":"skyelf" + }] + }, + { + "id":288, + "properties":[ + { + "name":"key", + "type":"string", + "value":"redcockroach" + }] + }, + { + "id":289, + "properties":[ + { + "name":"key", + "type":"string", + "value":"frog" + }] + }, + { + "id":291, + "properties":[ + { + "name":"key", + "type":"string", + "value":"oldlady2" + }] + }, + { + "id":292, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villagegirl3" + }] + }, + { + "id":293, + "properties":[ + { + "name":"key", + "type":"string", + "value":"king2" + }] + }, + { + "id":294, + "properties":[ + { + "name":"key", + "type":"string", + "value":"ratnpc" + }] + }, + { + "id":295, + "properties":[ + { + "name":"key", + "type":"string", + "value":"royalguard2" + }] + }, + { + "id":296, + "properties":[ + { + "name":"key", + "type":"string", + "value":"royalguard3" + }] + }, + { + "id":297, + "properties":[ + { + "name":"key", + "type":"string", + "value":"oldlady" + }] + }, + { + "id":298, + "properties":[ + { + "name":"key", + "type":"string", + "value":"greenstoremannpc" + }] + }, + { + "id":299, + "properties":[ + { + "name":"key", + "type":"string", + "value":"villagegirl2" + }] + }, + { + "id":300, + "properties":[ + { + "name":"key", + "type":"string", + "value":"santa" + }] + }, + { + "id":301, + "properties":[ + { + "name":"key", + "type":"string", + "value":"santaelf" + }] + }, + { + "id":302, + "properties":[ + { + "name":"key", + "type":"string", + "value":"santaelfnpc" + }] + }, + { + "id":303, + "properties":[ + { + "name":"key", + "type":"string", + "value":"picklemob" + }] + }, + { + "id":304, + "properties":[ + { + "name":"key", + "type":"string", + "value":"picklenpc" + }] + }, + { + "id":305, + "properties":[ + { + "name":"key", + "type":"string", + "value":"purplestoremannpc" + }] + }, + { + "id":306, + "properties":[ + { + "name":"key", + "type":"string", + "value":"miner" + }] + }, + { + "id":307, + "properties":[ + { + "name":"key", + "type":"string", + "value":"guard2" + }] + }], + "tilewidth":16 + }, + { + "columns":64, + "firstgid":14721, + "image":"tilesets\/tilesheet-4.png", + "imageheight":1024, + "imagewidth":1024, + "margin":0, + "name":"tilesheet-4", + "spacing":0, + "tilecount":4096, + "tileheight":16, + "tiles":[ + { + "id":2, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":4, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":7, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":8, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":9, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":10, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":11, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":12, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":13, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":14, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":15, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":16, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":17, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":18, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":19, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":20, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":22, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":29, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":30, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":31, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":32, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":33, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":34, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":35, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":36, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":37, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":38, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":44, + "properties":[ + { + "name":"forage", + "type":"string", + "value":"corn" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":45, + "properties":[ + { + "name":"forage", + "type":"string", + "value":"corn" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":46, + "properties":[ + { + "name":"forageempty", + "type":"string", + "value":"corn" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":47, + "properties":[ + { + "name":"forageempty", + "type":"string", + "value":"corn" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":48, + "properties":[ + { + "name":"forage", + "type":"string", + "value":"bluelily" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":49, + "properties":[ + { + "name":"forage", + "type":"string", + "value":"bluelily" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":50, + "properties":[ + { + "name":"forageempty", + "type":"string", + "value":"bluelily" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":51, + "properties":[ + { + "name":"forageempty", + "type":"string", + "value":"bluelily" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":52, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":53, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":54, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":55, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":57, + "properties":[ + { + "name":"forageempty", + "type":"string", + "value":"blueberry" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":59, + "properties":[ + { + "name":"forageempty", + "type":"string", + "value":"raspberry" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":61, + "properties":[ + { + "name":"forageempty", + "type":"string", + "value":"blackberry" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":65, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":66, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":67, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":68, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":69, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":71, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":73, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":74, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":75, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":76, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":77, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":78, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":79, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":80, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":81, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":82, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":83, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":84, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":93, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":94, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":95, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":96, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":97, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":98, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":99, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":100, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":101, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":102, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":108, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"corn" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":109, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"corn" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":110, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"corn" + }] + }, + { + "id":111, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"corn" + }] + }, + { + "id":112, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"bluelily" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":113, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"bluelily" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":114, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"bluelily" + }] + }, + { + "id":115, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"bluelily" + }] + }, + { + "id":116, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"tomato" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":117, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"tomato" + }] + }, + { + "id":118, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"peach" + }] + }, + { + "id":119, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"peach" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":121, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"blueberry" + }] + }, + { + "id":122, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":123, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"raspberry" + }] + }, + { + "id":124, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":125, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"blackberry" + }] + }, + { + "id":126, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":128, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":129, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":130, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":131, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":132, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":133, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":134, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":138, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":139, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":140, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":141, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":142, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":143, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":147, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":148, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":150, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":157, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":158, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":159, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":160, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":161, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":162, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":163, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":164, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":165, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":185, + "properties":[ + { + "name":"forage", + "type":"string", + "value":"blueberry" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":187, + "properties":[ + { + "name":"forage", + "type":"string", + "value":"raspberry" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":189, + "properties":[ + { + "name":"forage", + "type":"string", + "value":"blackberry" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":192, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":193, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":194, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":195, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":196, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":197, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }, + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":198, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":202, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":203, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":204, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":205, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":206, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":207, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":211, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":221, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":222, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":223, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":224, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":225, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":226, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":249, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"blueberry" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":250, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":251, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"raspberry" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":252, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":253, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"blackberry" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":254, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":256, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":257, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":258, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":259, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":260, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":261, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":262, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":266, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":267, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":268, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":269, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":270, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":271, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":275, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":278, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":285, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":287, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":288, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":289, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":290, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":291 + }, + { + "duration":250, + "tileid":292 + }, + { + "duration":250, + "tileid":293 + }, + { + "duration":250, + "tileid":294 + }], + "id":291, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":292, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":293, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":294, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":320, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":321, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":322, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":323, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":324, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":325, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":326, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":330, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":331, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":332, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":333, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":334, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":335, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":339, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":349, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":350, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":351, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":352, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":353, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":354, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":355, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":356, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":357, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":358, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":359, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":372, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"treestump1" + }] + }, + { + "id":373, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"treestump1" + }] + }, + { + "id":376, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":377, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":378, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":379, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":384, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":385, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":386, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":387, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":388, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":389, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":390, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":394, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":395, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":396, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":397, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":398, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":399, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":407, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":408, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":413, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":414, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":415, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":416, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":417, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":418, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":419, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":420, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":421, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":422, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":423, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":436, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"treestump1" + }] + }, + { + "id":437, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"treestump1" + }] + }, + { + "id":440, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"paprika" + }] + }, + { + "id":441, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"paprika" + }] + }, + { + "id":442, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"cumin" + }] + }, + { + "id":443, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"cumin" + }] + }, + { + "id":448, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":449, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":450, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":451, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":452, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":453, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":454, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":458, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":459, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":460, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":461, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":477, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":478, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":479, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":480, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":481, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":482, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":483, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":484, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":485, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":500, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"treestump1" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":501, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"treestump1" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":503, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"forageempty", + "type":"string", + "value":"mustard" + }] + }, + { + "id":504, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":505, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":506, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":507, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":512, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":513, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":514, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":515, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":516, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":517, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":518, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":522, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":523, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":524, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":525, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":528, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":529, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":541, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":542, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":543, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":544, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":545, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":546, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":547, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":548, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":549, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":550, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":551, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":564, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"treestump1" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":565, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"treestump1" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":567, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"mustard" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":568, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"paprika" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":569, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"paprika" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":570, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"cumin" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":571, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"foraging" + }, + { + "name":"forage", + "type":"string", + "value":"cumin" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":586, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":587, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":588, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":589, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":590, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":591, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":605, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":606, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":607, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":608, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":609, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":610, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":611, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":612, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":613, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":650, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":651, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":652, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":653, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":654, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":655, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":670, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":671, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":672, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":673, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":674, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":675, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":706, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":707, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":708, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":709, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":714, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":715, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":716, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":717, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":718, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":719, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":734, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":735, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":736, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":737, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":770, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":771, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":772, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":773, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":778, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":779, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":780, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":781, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":782, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":783, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":798, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":799, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":800, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":801, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":832, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":833, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":834, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":837, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":838, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":839, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":842 + }, + { + "duration":250, + "tileid":844 + }, + { + "duration":250, + "tileid":846 + }, + { + "duration":250, + "tileid":848 + }], + "id":842 + }, + { + "animation":[ + { + "duration":250, + "tileid":843 + }, + { + "duration":250, + "tileid":845 + }, + { + "duration":250, + "tileid":847 + }, + { + "duration":250, + "tileid":849 + }], + "id":843 + }, + { + "animation":[ + { + "duration":250, + "tileid":850 + }, + { + "duration":250, + "tileid":851 + }, + { + "duration":250, + "tileid":852 + }, + { + "duration":250, + "tileid":853 + }], + "id":850, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":150, + "tileid":861 + }, + { + "duration":150, + "tileid":862 + }, + { + "duration":150, + "tileid":863 + }, + { + "duration":150, + "tileid":864 + }], + "id":861 + }, + { + "id":866, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":896, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":897, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":898, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":901, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":902, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":903, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":906 + }, + { + "duration":250, + "tileid":908 + }, + { + "duration":250, + "tileid":910 + }, + { + "duration":250, + "tileid":912 + }], + "id":906 + }, + { + "animation":[ + { + "duration":250, + "tileid":907 + }, + { + "duration":250, + "tileid":909 + }, + { + "duration":250, + "tileid":911 + }, + { + "duration":250, + "tileid":913 + }], + "id":907 + }, + { + "animation":[ + { + "duration":250, + "tileid":914 + }, + { + "duration":250, + "tileid":915 + }, + { + "duration":250, + "tileid":916 + }, + { + "duration":250, + "tileid":917 + }], + "id":914, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":150, + "tileid":925 + }, + { + "duration":150, + "tileid":926 + }, + { + "duration":150, + "tileid":927 + }, + { + "duration":150, + "tileid":928 + }], + "id":925 + }, + { + "id":930, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":960, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":961, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":962, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":965, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":966, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":967, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":970 + }, + { + "duration":250, + "tileid":971 + }, + { + "duration":250, + "tileid":972 + }, + { + "duration":250, + "tileid":973 + }, + { + "duration":250, + "tileid":974 + }, + { + "duration":250, + "tileid":975 + }], + "id":970 + }, + { + "animation":[ + { + "duration":150, + "tileid":989 + }, + { + "duration":150, + "tileid":990 + }, + { + "duration":150, + "tileid":991 + }, + { + "duration":150, + "tileid":992 + }], + "id":989 + }, + { + "id":994, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1026, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1029, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":1034 + }, + { + "duration":250, + "tileid":1035 + }, + { + "duration":250, + "tileid":1036 + }, + { + "duration":250, + "tileid":1037 + }], + "id":1034 + }, + { + "animation":[ + { + "duration":150, + "tileid":1053 + }, + { + "duration":150, + "tileid":1054 + }, + { + "duration":150, + "tileid":1055 + }, + { + "duration":150, + "tileid":1056 + }], + "id":1053 + }, + { + "id":1058, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1090, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1091, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1092, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1093, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":1098 + }, + { + "duration":250, + "tileid":1099 + }, + { + "duration":250, + "tileid":1100 + }, + { + "duration":250, + "tileid":1101 + }, + { + "duration":250, + "tileid":1102 + }, + { + "duration":250, + "tileid":1103 + }], + "id":1098 + }, + { + "id":1155, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1156, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":1162 + }, + { + "duration":250, + "tileid":1163 + }, + { + "duration":250, + "tileid":1164 + }, + { + "duration":250, + "tileid":1165 + }], + "id":1162 + }, + { + "id":1218, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1219, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1220, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1221, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "animation":[ + { + "duration":250, + "tileid":1226 + }, + { + "duration":250, + "tileid":1227 + }, + { + "duration":250, + "tileid":1228 + }, + { + "duration":250, + "tileid":1229 + }, + { + "duration":250, + "tileid":1230 + }, + { + "duration":250, + "tileid":1231 + }], + "id":1226 + }, + { + "id":1282, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1283, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1284, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1285, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1290, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1291, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1293, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1344, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1345, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1346, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1347, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1348, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1349, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1350, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1351, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1354, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1355, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1408, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1409, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1410, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1411, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1412, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1413, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1414, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1415, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1418, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1419, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1472, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1473, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1474, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1475, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1476, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1477, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1478, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1479, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1538, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1539, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1540, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1541, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1602, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1603, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1604, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1605, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1610, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1611, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1612, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1613, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1615, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1616, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1674, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1675, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1676, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1677, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1679, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1680, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1738, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1739, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1740, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1741, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1856, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1859, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1861, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1862, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":1863, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1920, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1923, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1925, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1926, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1927, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":1984, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1985, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1986, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":1987, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2048, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2051, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2053, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2054, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2055, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2117, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2118, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2119, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2176, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2177, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2178, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2304, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2307, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2368, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2371, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2496, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2497, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2498, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2560, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2561, + "properties":[ + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2562, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"h", + "type":"string", + "value":"" + }] + }, + { + "id":2688, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2689, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2690, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2691, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2752, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cursor", + "type":"string", + "value":"crafting" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2753, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cursor", + "type":"string", + "value":"crafting" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2754, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cursor", + "type":"string", + "value":"crafting" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2755, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }, + { + "name":"cursor", + "type":"string", + "value":"crafting" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2817, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2818, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2880, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2881, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2882, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2883, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":2944, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":2945, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"smithing" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2946, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"smithing" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2947, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"smithing" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":2949, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"smelting" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3328, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3329, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3330, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3331, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3392, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3393, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3394, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3395, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3456, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3457, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3458, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3459, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3460, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3520, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3521, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3527, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3528, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3529, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3530, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3584, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3585, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3589, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3590, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3591, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3592, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3593, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3594, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3648, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3649, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3651, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3652, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3653, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3654, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3655, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"smithing" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3656, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3657, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3658, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3715, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3716, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3717, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3718, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"alchemy" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3779, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3780, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3781, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3782, + "properties":[ + { + "name":"cursor", + "type":"string", + "value":"cooking" + }, + { + "name":"o", + "type":"string", + "value":"" + }] + }, + { + "id":3906, + "properties":[ + { + "name":"v", + "type":"string", + "value":"" + }] + }, + { + "id":3910, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3969, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3970, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3971, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3973, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3974, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3975, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":3976, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }, + { + "id":4039, + "properties":[ + { + "name":"c", + "type":"string", + "value":"" + }] + }], + "tilewidth":16 + }], + "tilewidth":16, + "type":"map", + "version":"1.10", + "width":1152 +} \ No newline at end of file diff --git a/packages/tools/map/data/mobset.png b/packages/tools/map/data/mobset.png new file mode 100644 index 0000000000..d83107bf9a Binary files /dev/null and b/packages/tools/map/data/mobset.png differ diff --git a/packages/tools/map/parser/mapdata.d.ts b/packages/tools/map/parser/mapdata.d.ts index 2047d35118..1d5301626c 100644 --- a/packages/tools/map/parser/mapdata.d.ts +++ b/packages/tools/map/parser/mapdata.d.ts @@ -1,3 +1,5 @@ +import type { ProcessedArea } from '@kaetram/common/types/map'; + export interface Door { height: number; id: number; @@ -30,6 +32,7 @@ export interface PropertyValues { rock?: string; rockbase?: string; rockempty?: string; + fish?: string; fishspot?: string; fishempty?: string; forage?: string; // A forageable tile diff --git a/packages/tools/map/parser/parser.ts b/packages/tools/map/parser/parser.ts index eab5d843ce..4ec7aa2590 100755 --- a/packages/tools/map/parser/parser.ts +++ b/packages/tools/map/parser/parser.ts @@ -3,28 +3,13 @@ import zlib from 'node:zlib'; import { Modules } from '@kaetram/common/network'; import log from '@kaetram/common/util/log'; -import type { - ProcessedAnimation, - ProcessedMap, - ProcessedResource, - ProcessedTileset -} from '@kaetram/common/types/map'; -import type { Animation, Layer, LayerObject, MapData, Property, Tile, Tileset } from './mapdata'; - -interface Resources { - [key: string]: ProcessedResource; -} +import type { ProcessedAnimation, ProcessedMap, ProcessedTileset } from '@kaetram/common/types/map'; +import type { Animation, Layer, LayerObject, MapData, Property, Tileset } from './mapdata'; export default class ProcessMap { private map: ProcessedMap; private tilesetEntities: { [tileId: number]: string } = {}; - private collisionTiles: { [tileId: number]: boolean } = {}; - private trees: Resources = {}; - private rocks: Resources = {}; - private fishSpots: Resources = {}; - private foraging: Resources = {}; - /** * We create the skeleton file for the ExportedMap. * @param data The raw data from the Tiled map JSON file. @@ -48,6 +33,7 @@ export default class ProcessMap { data: [], collisions: [], + entities: {}, tilesets: [], @@ -59,11 +45,7 @@ export default class ProcessMap { obstructing: [], objects: [], areas: {}, - cursors: {}, - trees: [], - rocks: [], - fishSpots: [], - foraging: [] + cursors: {} }; this.parseTilesets(); @@ -105,16 +87,6 @@ export default class ProcessMap { this.parseTileset(tileset); } - - // As the last step of the tileset processing, we parse the resources and add them to the map. - this.parseResources(this.trees, (tree: ProcessedResource) => this.map.trees.push(tree)); - this.parseResources(this.rocks, (rock: ProcessedResource) => this.map.rocks.push(rock)); - this.parseResources(this.fishSpots, (fishSpot: ProcessedResource) => - this.map.fishSpots.push(fishSpot) - ); - this.parseResources(this.foraging, (forage: ProcessedResource) => - this.map.foraging.push(forage) - ); } /** @@ -139,16 +111,19 @@ export default class ProcessMap { } /** - * We parse the tileset and extract collisions - * and other individual tile properties. + * Handles parsing an individual tileset and extracting all the necessary + * information, such as tile properties, animations, entities, etc. * @param tileset A tileset from the tilemap. */ private parseTileset(tileset: Tileset): void { let { tiles, firstgid } = tileset; + // Tiled starts counting from 1 for some reason. + firstgid -= 1; + for (let tile of tiles) { - let tileId = this.getTileId(tileset, tile); + let tileId = this.getId(firstgid, tile.id); if (tile.animation) this.parseAnimation(tileId, firstgid, tile.animation); @@ -191,9 +166,9 @@ export default class ProcessMap { private parseProperties(tileId: number, property: Property): void { let { name } = property, value = (parseInt(property.value, 10) as never) || property.value, - { high, obstructing, objects, cursors } = this.map; + { collisions, high, obstructing, objects, cursors } = this.map; - if (this.isCollisionProperty(name)) this.collisionTiles[tileId] = true; + if (this.isCollisionProperty(name)) collisions.push(tileId); switch (name) { case 'v': { @@ -216,55 +191,6 @@ export default class ProcessMap { cursors[tileId] = value; break; } - - // Properties fo resource classification. - case 'tree': { - return this.parseResourceProperty(this.trees, 'data', tileId, value); - } - - case 'stump': { - return this.parseResourceProperty(this.trees, 'base', tileId, value); - } - - case 'cutstump': - case 'stumpcut': { - return this.parseResourceProperty(this.trees, 'depleted', tileId, value); - } - - // Mining - case 'rock': { - return this.parseResourceProperty(this.rocks, 'data', tileId, value); - } - - case 'rockbase': { - return this.parseResourceProperty(this.rocks, 'base', tileId, value); - } - - case 'rockempty': { - return this.parseResourceProperty(this.rocks, 'depleted', tileId, value); - } - - // Fishing - case 'fishspot': { - // Fish spots share the same base and data tiles. - this.parseResourceProperty(this.fishSpots, 'base', tileId, value); - return this.parseResourceProperty(this.fishSpots, 'data', tileId, value); - } - - case 'fishempty': { - return this.parseResourceProperty(this.fishSpots, 'depleted', tileId, value); - } - - // Foraging - case 'forage': { - // Foraging spots share the same base and data tiles. - this.parseResourceProperty(this.foraging, 'base', tileId, value); - return this.parseResourceProperty(this.foraging, 'data', tileId, value); - } - - case 'forageempty': { - return this.parseResourceProperty(this.foraging, 'depleted', tileId, value); - } } } @@ -279,9 +205,11 @@ export default class ProcessMap { private parseTileLayer(layer: Layer): void { let name = layer.name.toLowerCase(); + // These are visual-only tiles that we use to create map images. + if (name === 'trees' || name === 'rocks' || name === 'foraging') return; + layer.data = this.getLayerData(layer.data, layer.compression)!; - if (name === 'blocking') return this.parseBlocking(layer); if (name === 'entities') return this.parseEntities(layer); if (name.startsWith('plateau')) return this.parsePlateau(layer); @@ -301,10 +229,10 @@ export default class ProcessMap { */ private parseTileLayerData(mapData: number[]): void { - let { data, collisions } = this.map; + let { data } = this.map; for (let i in mapData) { - let value = mapData[i]; + let value = mapData[i] - 1; if (value < 1) continue; @@ -313,29 +241,6 @@ export default class ProcessMap { if (!data[index]) data[index] = value; else if (Array.isArray(data[index])) (data[index] as number[]).push(value); else data[index] = [data[index] as number, value]; - - // Remove flip flags for the sake of calculating collisions. - if (this.isFlipped(value)) value = this.removeFlipFlags(value); - - // Add collision indexes to the map. - if (value in this.collisionTiles) collisions.push(index); - } - } - - /** - * A blocking tile is a special type of collision that is - * added independently of tileIds. It is instead a collision - * that is part of the map tile index. In other words, we can - * add a collision to a tile in the map despite that tile - * not having a collision property. - * @param layer The tile layer containing the blocking data. - */ - - private parseBlocking(layer: Layer): void { - for (let index in layer.data) { - if (layer.data[index] < 1) continue; - - this.map.collisions.push(parseInt(index)); } } @@ -351,7 +256,7 @@ export default class ProcessMap { let { entities } = this.map; for (let index in layer.data) { - let value = layer.data[index]; + let value = layer.data[index] - 1; if (value < 1) continue; @@ -376,7 +281,7 @@ export default class ProcessMap { if (value < 1) continue; - // We skip collisions + // We skip collision if (collisions.includes(value)) continue; plateau[parseInt(index)] = level; @@ -430,69 +335,6 @@ export default class ProcessMap { } } - /** - * Generic implementation for parsing a resource property. This may be a tree, or a rock - * or anything else in the future. When we pass properties onto this function, we ensure - * they use the standard `data,` `base,` and `depleted` properties. - * @param resourceType The type of resource we are adding data onto (trees, rocks, etc.) - * @param name The name of the property (data, base, depleted) - * @param tileId The tileId being processed currently (the tile data). - * @param value The value represents the resource's identifier. - */ - - private parseResourceProperty( - resourceType: Resources, - name: string, - tileId: number, - value: never - ): void { - // Create a new resource type if it does not exist. - if (!(value in resourceType)) - resourceType[value] = { - data: [], - base: [], - depleted: [], - type: value - }; - - // Organize resource data into their respective arrays. - switch (name) { - case 'data': { - resourceType[value].data.push(tileId); - break; - } - - case 'base': { - resourceType[value].base.push(tileId); - break; - } - - case 'depleted': { - resourceType[value].depleted.push(tileId); - break; - } - } - } - - /** - * Parses through a specified resource and creates a callback after it has been validated. - * @param resources The list of processed resources to look through. - * @param callback Contains resource currently being processed. - */ - - private parseResources( - resources: Resources, - callback: (resource: ProcessedResource) => void - ): void { - for (let resource of Object.values(resources)) { - // Determine whether the normal and exhausted resource match lengths, otherwise skip. - if (resource.base.length !== resource.depleted.length) - return log.error(`${resource.type} has a base and depleted length mismatch.`); - - callback(resource); - } - } - /** * Looks through all the tiles in the map and finds which one contain a hidden * tile at their uppermost layer. We remove the layers behind the hidden tile. @@ -507,17 +349,29 @@ export default class ProcessMap { let tile = data[index]; // Ignore non-array tiles. - if (!Array.isArray(data)) continue; + if (!Array.isArray(tile)) continue; - // Find the last tile in the array. - let lastTile = (tile as number[])[(tile as number[]).length - 1]; + let obstructingIndex = -1; - // If the last tile is hidden, we remove the tile. - if (obstructing?.includes(lastTile)) { - data[index] = lastTile; + // Iterate from the top of the tile and find the topmost obstructing tile. + for (let i = tile.length - 1; i >= 0; i--) + if (obstructing!.includes(tile[i])) { + obstructingIndex = i; + break; + } - clearedTiles++; - } + // No obstructing tile found, continuing to next index. + if (obstructingIndex === -1) continue; + + // Splice the data after the obstructing index. + data[index] = (tile as number[]).splice(obstructingIndex); + + let formattedData = data[index] as number[]; + + // eslint-disable-next-line prefer-destructuring + if ((formattedData as number[]).length === 1) data[index] = formattedData[0]; + + clearedTiles++; } log.notice(`Found ${clearedTiles} full tiles that overlap.`); @@ -562,25 +416,6 @@ export default class ProcessMap { for (let i = 0; i < this.map.data.length; i++) if (!this.map.data[i]) this.map.data[i] = 0; } - /** - * Tiles that undergo transformations have their tileId altered. - * We must temporarily remove that in order to calculate collision - * indexes. - * @param tileId The tileId with transformation flags applied. - * @returns The original tileId without transformation flags. - */ - - private removeFlipFlags(tileId: number): number { - return ( - tileId & - ~( - Modules.MapFlags.DIAGONAL_FLAG | - Modules.MapFlags.VERTICAL_FLAG | - Modules.MapFlags.HORIZONTAL_FLAG - ) - ); - } - /** * This function allows us to decompress data from the Tiled editor * map file. Thus far, our parser only supports zlib, gzip, and CSV @@ -653,16 +488,6 @@ export default class ProcessMap { return propertyName === 'c' || propertyName === 'o'; } - /** - * Checks if the tileId specified has undergone any translations. - * @param tileId The tileId we are checking. - * @returns Whether the tileId is greater than the lowest bitwise flag. - */ - - private isFlipped(tileId: number): boolean { - return tileId > Modules.MapFlags.DIAGONAL_FLAG; - } - /** * A barebones function for adding firstgid, id, and offset together * when trying to determine the overall tileId of a tile. @@ -676,21 +501,6 @@ export default class ProcessMap { return firstgid + id + offset; } - /** - * We are using a unified function in case we need to make adjustments - * to how we process tiling indexes. An example is not having to go through - * all the instances of tileId calculations to modify one variable. This - * is just an overall more organized way of doing work. - * - * @param tileset A tileset layer that we are parsing. - * @param tile The current tile that we are parsing through. - * @param offset The offset of the tileIndex. - */ - - private getTileId(tileset: Tileset, tile: Tile, offset = 0): number { - return this.getId(tileset.firstgid, tile.id, offset); - } - /** * Extracts a relative path for the client to use when laoding the tileset * image. Some tilesets may be placed in subdirectories, so we want to eliminate @@ -723,11 +533,7 @@ export default class ProcessMap { high, objects, cursors, - entities, - trees, - rocks, - fishSpots, - foraging + entities } = this.map; return JSON.stringify({ @@ -742,11 +548,7 @@ export default class ProcessMap { high, objects, cursors, - entities, - trees, - rocks, - fishSpots, - foraging + entities }); } diff --git a/packages/tools/map/parser/replace.json b/packages/tools/map/parser/replace.json new file mode 100644 index 0000000000..a8759b2dd1 --- /dev/null +++ b/packages/tools/map/parser/replace.json @@ -0,0 +1,244 @@ +{ + "1043": 1427, + "1044": 1428, + "1045": 1429, + + "1107": 1491, + "1108": 1492, + "1109": 1493, + + "1171": 1555, + "1172": 1556, + "1173": 1557, + + "2+2226": 1043, + "2+2227": 1044, + "2+2228": 1045, + "2+2229": 1046, + "2+2230": 1047, + "2+2231": 1048, + + "2+2290": 1107, + "2+2291": 1108, + "2+2292": 1109, + "2+2293": 1110, + "2+2294": 1111, + "2+2295": 1112, + + "2+2354": 1171, + "2+2355": 1172, + "2+2356": 1173, + "2+2357": 1174, + "2+2358": 1175, + "2+2359": 1176, + + "2+2418": 1235, + "2+2419": 1236, + "2+2420": 1237, + "2+2421": 1238, + "2+2422": 1239, + "2+2423": 1240, + + "2+2482": 1299, + "2+2483": 1300, + "2+2484": 1301, + "2+2485": 1302, + "2+2486": 1303, + "2+2487": 1304, + + "2+2546": 1363, + "2+2547": 1364, + "2+2548": 1365, + "2+2549": 1366, + "2+2550": 1367, + "2+2551": 1368, + + "2+2232": 1523, + "2+2233": 1524, + "2+2234": 1525, + + "2+2296": 1587, + "2+2297": 1588, + "2+2298": 1589, + + "3+1415": 1049, + "3+1416": 1050, + "3+1417": 1051, + "3+1418": 1052, + "3+1419": 1053, + "3+1420": 1054, + + "3+1479": 1113, + "3+1480": 1114, + "3+1481": 1115, + "3+1482": 1116, + "3+1483": 1117, + "3+1484": 1118, + + "3+1543": 1177, + "3+1544": 1178, + "3+1545": 1179, + "3+1546": 1180, + "3+1547": 1181, + "3+1548": 1182, + + "3+1607": 1241, + "3+1608": 1242, + "3+1609": 1243, + "3+1610": 1244, + "3+1611": 1245, + "3+1612": 1246, + + "3+1671": 1305, + "3+1672": 1306, + "3+1673": 1307, + "3+1674": 1308, + "3+1675": 1309, + "3+1676": 1310, + + "3+1735": 1369, + "3+1736": 1370, + "3+1737": 1371, + "3+1738": 1372, + "3+1739": 1373, + "3+1740": 1374, + + "3+963": 1067, + "3+964": 1068, + "3+965": 1069, + + "3+1027": 1131, + "3+1028": 1132, + "3+1029": 1133, + + "3+1091": 1195, + "3+1092": 1196, + "3+1093": 1197, + + "3+1421": 1387, + "3+1677": 1388, + + "3+1485": 1451, + "3+1741": 1452, + + "3+1549": 1515, + "3+1805": 1516, + + "3+1613": 1579, + "3+1869": 1580, + + "3+212": 1061, + "3+213": 1062, + "3+214": 1063, + "3+215": 1064, + "3+216": 1065, + "3+217": 1066, + + "3+276": 1125, + "3+277": 1126, + "3+278": 1127, + "3+279": 1128, + "3+280": 1129, + "3+281": 1130, + + "3+340": 1189, + "3+341": 1190, + "3+342": 1191, + "3+343": 1192, + "3+344": 1193, + "3+345": 1194, + + "3+404": 1253, + "3+405": 1254, + "3+406": 1255, + "3+407": 1256, + "3+408": 1257, + "3+409": 1258, + + "3+468": 1317, + "3+469": 1318, + "3+470": 1319, + "3+471": 1320, + "3+472": 1321, + "3+473": 1322, + + "3+532": 1381, + "3+533": 1382, + "3+534": 1383, + "3+535": 1384, + "3+536": 1385, + "3+537": 1386, + + "3+598": 1134, + "3+599": 1135, + "3+600": 1136, + + "3+662": 1198, + "3+663": 1199, + "3+664": 1200, + + "3+48": 1259, + "3+49": 1260, + "3+50": 1261, + + "3+112": 1323, + "3+113": 1324, + "3+114": 1325, + + "3+61": 1262, + "3+62": 1263, + "3+63": 1264, + + "3+125": 1236, + "3+126": 1237, + "3+127": 1238, + + "3+188": 1391, + "3+189": 1392, + "3+190": 1393, + "3+191": 1394, + + "3+252": 1455, + "3+253": 1456, + "3+254": 1457, + "3+255": 1458, + + "3+316": 1519, + "3+317": 1520, + "3+318": 1521, + "3+319": 1522, + + "3+2402": 1265, + "3+2403": 1266, + "3+2404": 1267, + + "3+2466": 1329, + "3+2467": 1330, + "3+2468": 1331, + + "3+2405": 1395, + "3+2406": 1396, + "3+2407": 1397, + + "3+2469": 1459, + "3+2470": 1460, + "3+2471": 1461, + + "3+2216": 1389, + "3+2217": 1390, + + "3+2280": 1453, + "3+2281": 1454, + + "3+2344": 1517, + "3+2345": 1518, + + "3+2214": 1581, + "3+2215": 1582, + + "3+2278": 1645, + "3+2279": 1646, + + "3+2342": 1709, + "3+2343": 1710 +} diff --git a/packages/tools/map/parser/replacer.ts b/packages/tools/map/parser/replacer.ts new file mode 100644 index 0000000000..e40d86ef81 --- /dev/null +++ b/packages/tools/map/parser/replacer.ts @@ -0,0 +1,114 @@ +#!/usr/bin/env -S yarn tsx + +import fs from 'node:fs'; + +import replace from './replace.json'; + +import log from '@kaetram/common/util/log'; + +import type { Layer } from './mapdata'; + +/** + * Used for specifying tiles to replace the layers. + */ + +/** + * 3446, 2956 + * 3510, 3020 + * 3574, 3084 + * 3638, 3148 + * 3702, 3212 + * 3766, 3276 + */ + +export default class Replacer { + /** The map file we are parsing */ + #map = process.argv[2]; + + private replace: { [key: number]: number } = replace; + + public constructor() { + if (Object.keys(replace).length === 0) { + log.error('No tiles to replace.'); + return; + } + + if (!this.fileExists()) { + log.error('The map file path is invalid.'); + return; + } + + let data = fs.readFileSync(this.#map, { + encoding: 'utf8', + flag: 'r' + }); + + if (!data) { + log.error('An error has occurred while trying to read the map.'); + return; + } + + let map = JSON.parse(data); + + // Format the replace to include tileset index. + for (let i in this.replace) { + if (!i.includes('+')) continue; + + let [tileset, tile] = i.split('+'), + index = ~~tileset; + + if (index < 1) continue; + + let offset = 0; + + for (let j = index; j > 0; j--) offset += map.tilesets[j].tilecount; + + this.replace[offset + ~~tile] = this.replace[i]; + + delete this.replace[i]; + } + + fs.writeFileSync(`${this.#map}.backup_${Date.now()}`, JSON.stringify(map)); + + for (let layer of map.layers) if (layer.type === 'tilelayer') this.replaceLayer(layer); + + fs.writeFileSync(this.#map, JSON.stringify(map)); + } + + /** + * Takes a raw layer from the Tiled map data (must be in JSON format) and replaces the tiles with the ones specified in the replace.json file. + * @param layer The layer to replace the tiles in. + */ + + private replaceLayer(layer: Layer): void { + let count = 0; + + for (let i in layer.data) { + let tile = layer.data[i] - 1; + + if (tile < 0) continue; + + if (tile in this.replace) { + layer.data[i] = ~~this.replace[tile] + 1; + + count++; + } + } + + // Don't log anything if we didn't replace anything. + if (count === 0) return; + + log.info(`Replaced ${count} tiles in layer ${layer.name}.`); + } + + /** + * Checks if the map file path exists. + * @returns Whether or not the map file path is valid. + */ + + private fileExists(): boolean { + return !!this.#map && fs.existsSync(this.#map); + } +} + +new Replacer(); diff --git a/packages/tools/package.json b/packages/tools/package.json index 91fb3bdd3a..616c23ab92 100644 --- a/packages/tools/package.json +++ b/packages/tools/package.json @@ -4,16 +4,16 @@ "scripts": { "bot": "tsx --preserve-symlinks bot/bot", "exportmap": "tsx --preserve-symlinks map/parser/exporter", - "map": "yarn exportmap map/data/map.json" + "map": "yarn exportmap map/data/map.json", + "replacer": "tsx --preserve-symlinks map/parser/replacer map/data/map.json" }, "dependencies": { "@kaetram/common": "workspace:*", "@kaetram/server": "workspace:*", - "tsx": "^3.12.6", + "tsx": "^3.12.10", "websocket": "^1.0.34" }, "devDependencies": { - "@types/node": "^18.15.5", - "typescript": "^5.0.2" + "typescript": "^5.2.2" } } diff --git a/packages/tools/tsconfig.json b/packages/tools/tsconfig.json index 97b31d4a54..8d9d2d200f 100644 --- a/packages/tools/tsconfig.json +++ b/packages/tools/tsconfig.json @@ -1,6 +1 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "types": ["@types/node", "@kaetram/common"] - } -} +{ "extends": "../../tsconfig.json" } diff --git a/tsconfig.json b/tsconfig.json index a4e7771acc..2fe68272f5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,25 +1,52 @@ { "compilerOptions": { - "strict": true, - "target": "ESNext", - "module": "ESNext", + "incremental": true, + // "composite": true, + "tsBuildInfoFile": "./.tsbuildinfo", + + "target": "esnext", + "moduleDetection": "force", - "esModuleInterop": true, - "moduleResolution": "Node", + "module": "esnext", + "rootDir": "./", + "moduleResolution": "node", + "baseUrl": "./packages", + "paths": { "@kaetram/*": ["*"] }, + "types": ["@types/node", "@kaetram/common"], + "allowImportingTsExtensions": true, + // "resolvePackageJsonExports": true, + // "resolvePackageJsonImports": true, "resolveJsonModule": true, - "sourceMap": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, + "allowArbitraryExtensions": true, + + "allowJs": false, + "checkJs": false, + // "maxNodeModuleJsDepth": 1, + + "disableSizeLimit": false, + "plugins": [{ "name": "@astrojs/ts-plugin" }], + + "noEmit": true, + + "isolatedModules": true, + "verbatimModuleSyntax": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": false, "preserveSymlinks": true, + "forceConsistentCasingInFileNames": true, + "strict": true, "noImplicitAny": true, - "noImplicitOverride": true, "strictNullChecks": true, + // "exactOptionalPropertyTypes": true, + // "noImplicitReturns": true, + // "noFallthroughCasesInSwitch": true, + // "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + // "noPropertyAccessFromIndexSignature": true, + "allowUnusedLabels": false, + "allowUnreachableCode": false, - "rootDir": ".", - "baseUrl": "./packages", - "paths": { - "@kaetram/*": ["*"] - } + "skipLibCheck": true } } diff --git a/yarn.lock b/yarn.lock index 4d4db582c9..6a594e4f20 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5,3303 +5,3271 @@ __metadata: version: 7 cacheKey: 9 -"@ampproject/remapping@npm:^2.1.0": - version: 2.2.0 - resolution: "@ampproject/remapping@npm:2.2.0" +"@aashutoshrathi/word-wrap@npm:^1.2.3": + version: 1.2.6 + resolution: "@aashutoshrathi/word-wrap@npm:1.2.6" + checksum: 0c82b90350766c937f011275be5e67a428e7bc45320db2d11b329512a4c9a953cf805791ced7d3a90ee601d6cdc7961556368572082313e25fdd55441cba864e + languageName: node + linkType: hard + +"@ampproject/remapping@npm:^2.2.0": + version: 2.2.1 + resolution: "@ampproject/remapping@npm:2.2.1" dependencies: - "@jridgewell/gen-mapping": "npm:^0.1.0" + "@jridgewell/gen-mapping": "npm:^0.3.0" "@jridgewell/trace-mapping": "npm:^0.3.9" - checksum: 468104da656991a578ac6c9e074fe9e6a810c37e90106a738464c971a9cea37ae29c3752c8946f884a82da458597fdff57da70c4fca3fb560d29038132d2d524 + checksum: a6e71b1b6bcffc909f5527899d9598f30cd7dc8c82845fba07c237232d4404795681dc9a2ff7e24e620415b8b8b60466ebd517f7c00bef53adf3a6a37d5a8f1b languageName: node linkType: hard "@apideck/better-ajv-errors@npm:^0.3.1": - version: 0.3.3 - resolution: "@apideck/better-ajv-errors@npm:0.3.3" + version: 0.3.6 + resolution: "@apideck/better-ajv-errors@npm:0.3.6" dependencies: json-schema: "npm:^0.4.0" jsonpointer: "npm:^5.0.0" leven: "npm:^3.1.0" peerDependencies: ajv: ">=8" - checksum: 49071a3d1b311a4c7e56b98b7cce45cecde83ba476d10e76c69f383afca27e684afd3252e4548a768efc336bd96bfbdd6feb6691470b0532ac3b4227aba47656 + checksum: 51a1ad6f0d8aad5f407f180d7d0354d41f630f2c271e865380f380add0db6934a594b732506d82b87bb6a0ed11f6f1bf378578cf5ac71a252d1355945f80de56 languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/code-frame@npm:7.14.5" +"@astrojs/check@npm:^0.2.0": + version: 0.2.0 + resolution: "@astrojs/check@npm:0.2.0" dependencies: - "@babel/highlight": "npm:^7.14.5" - checksum: 717cfbdfaeec4687985eb470839f0105c0642589d2169b605078de0042dc0093d1dd3336efe780f3907f8d50bbfbbf71dd526ce0b14bb807a6921486408b913d + "@astrojs/language-server": "npm:^2.3.2" + chokidar: "npm:^3.5.3" + fast-glob: "npm:^3.3.1" + kleur: "npm:^4.1.5" + yargs: "npm:^17.7.2" + peerDependencies: + typescript: ^5.0.0 + bin: + astro-check: dist/bin.js + checksum: 8aa289296f8266c4c821e4a6f1f601ccdc3ed5d656780aec25eed0c458d6d21ef539d8b0f05f6957d4bc91c34938fccff3a1fe301be920514c8d4c21486a1eb7 languageName: node linkType: hard -"@babel/code-frame@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/code-frame@npm:7.18.6" - dependencies: - "@babel/highlight": "npm:^7.18.6" - checksum: eb27d165ea1c7c23e71a2a6f64225fe0ca0b2a39f5c0b57fda2a62dfa845799ca94886b08014f8fd4a711538cc6b1c89b9fc1dca6a5148893932bc03412ca848 +"@astrojs/compiler@npm:1.5.7": + version: 1.5.7 + resolution: "@astrojs/compiler@npm:1.5.7" + checksum: d29d553682655cd121a5063ceb5892ae9da73c5a266d0ab1457fe19d8882e3e89a00e5320d6f023cea589d6cfec62109aefa37dfaada79060ea2645b15ce90f6 languageName: node linkType: hard -"@babel/compat-data@npm:^7.13.11, @babel/compat-data@npm:^7.14.5, @babel/compat-data@npm:^7.14.7": - version: 7.14.7 - resolution: "@babel/compat-data@npm:7.14.7" - checksum: 58d5b5ccc1ef49fb97919236ac055091d437f84c3cf8e8c8d15b75d22d21bdd0f2c921c8f6a88b8e77270932866ff8dce7a201545a7ae22fb060d986b6b084a5 +"@astrojs/compiler@npm:^1.5.5": + version: 1.8.2 + resolution: "@astrojs/compiler@npm:1.8.2" + checksum: 9f728801a2d870cecaf13434ff1d190499bdc5148f37155157e3d15a856dc708c5724d07337fe1660946d7f8b4710b60f1ce8263b49f2e0130b918884fc146b0 languageName: node linkType: hard -"@babel/compat-data@npm:^7.17.7, @babel/compat-data@npm:^7.20.1, @babel/compat-data@npm:^7.20.5": - version: 7.20.14 - resolution: "@babel/compat-data@npm:7.20.14" - checksum: 72d73072d2ced733414536e042fce788de15d15833b10719d1d34b257f956c6fb07ea4089d3f1da111fe92a484450abe8b1a574aeb12bae29f4ffd1244c92b4d +"@astrojs/compiler@npm:^2.0.0, @astrojs/compiler@npm:^2.1.0": + version: 2.1.0 + resolution: "@astrojs/compiler@npm:2.1.0" + checksum: e935233c782c1bd235d6a2987b2cd448b45a0c522c3886d54c6de799e4fbe9682821d7539e295deee4bfd6a0b6b305cd1763d768f9409782590b4a4fdd00159a languageName: node linkType: hard -"@babel/core@npm:^7.11.1": - version: 7.14.6 - resolution: "@babel/core@npm:7.14.6" - dependencies: - "@babel/code-frame": "npm:^7.14.5" - "@babel/generator": "npm:^7.14.5" - "@babel/helper-compilation-targets": "npm:^7.14.5" - "@babel/helper-module-transforms": "npm:^7.14.5" - "@babel/helpers": "npm:^7.14.6" - "@babel/parser": "npm:^7.14.6" - "@babel/template": "npm:^7.14.5" - "@babel/traverse": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - convert-source-map: "npm:^1.7.0" - debug: "npm:^4.1.0" - gensync: "npm:^1.0.0-beta.2" - json5: "npm:^2.1.2" - semver: "npm:^6.3.0" - source-map: "npm:^0.5.0" - checksum: d66c0e91635a52fc5b6a4f034b61f21d5c3fd9aba4d349def265e8402bbc84fe1173ce9d800d05c306f2cd0fac67f594bc2df90d802707947c3d2c93d7f68209 +"@astrojs/internal-helpers@npm:0.2.0": + version: 0.2.0 + resolution: "@astrojs/internal-helpers@npm:0.2.0" + checksum: 6b8c750b341a0c0947179c0f24bf0a55bf6c337284117d8d7c5a8465ac8dbbac9f200287034c1a6a31f3e805862c839196a8d31091c69738c403148f1021ffd2 languageName: node linkType: hard -"@babel/core@npm:^7.20.12": - version: 7.20.12 - resolution: "@babel/core@npm:7.20.12" - dependencies: - "@ampproject/remapping": "npm:^2.1.0" - "@babel/code-frame": "npm:^7.18.6" - "@babel/generator": "npm:^7.20.7" - "@babel/helper-compilation-targets": "npm:^7.20.7" - "@babel/helper-module-transforms": "npm:^7.20.11" - "@babel/helpers": "npm:^7.20.7" - "@babel/parser": "npm:^7.20.7" - "@babel/template": "npm:^7.20.7" - "@babel/traverse": "npm:^7.20.12" - "@babel/types": "npm:^7.20.7" - convert-source-map: "npm:^1.7.0" - debug: "npm:^4.1.0" - gensync: "npm:^1.0.0-beta.2" - json5: "npm:^2.2.2" - semver: "npm:^6.3.0" - checksum: 7ab10d7f3045e282786e7ed20b8da220b315b23131713f7fb4f75210110146bae2a5b3a0db36baf375356c1226d8c659d032a031ef129eea85c1dd3884c311c0 +"@astrojs/language-server@npm:^2.3.2": + version: 2.3.3 + resolution: "@astrojs/language-server@npm:2.3.3" + dependencies: + "@astrojs/compiler": "npm:1.5.7" + "@jridgewell/sourcemap-codec": "npm:^1.4.15" + "@volar/kit": "npm:~1.10.0" + "@volar/language-core": "npm:~1.10.0" + "@volar/language-server": "npm:~1.10.0" + "@volar/language-service": "npm:~1.10.0" + "@volar/source-map": "npm:~1.10.0" + "@volar/typescript": "npm:~1.10.0" + fast-glob: "npm:^3.2.12" + muggle-string: "npm:^0.3.1" + volar-service-css: "npm:0.0.13" + volar-service-emmet: "npm:0.0.13" + volar-service-html: "npm:0.0.13" + volar-service-prettier: "npm:0.0.13" + volar-service-typescript: "npm:0.0.13" + volar-service-typescript-twoslash-queries: "npm:0.0.13" + vscode-html-languageservice: "npm:^5.0.6" + vscode-uri: "npm:^3.0.7" + peerDependencies: + prettier: ^3.0.0 + prettier-plugin-astro: ">=0.11.0" + peerDependenciesMeta: + prettier: + optional: true + prettier-plugin-astro: + optional: true + bin: + astro-ls: bin/nodeServer.js + checksum: fa455d43660e77e597816823b49866ac5dd54165d312c75c04ace607669aa0b19f8cd7e63623fa9f386f0561ba7c467d6671a5227f5fa9b7272dbfc9359ab255 languageName: node linkType: hard -"@babel/generator@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/generator@npm:7.14.5" - dependencies: - "@babel/types": "npm:^7.14.5" - jsesc: "npm:^2.5.1" - source-map: "npm:^0.5.0" - checksum: 859eecebf63bb97f6c55ac280a1608d06e7bfbd3c84b99fd2af3dfa610acc3051baf81a35857fbca40b26773590ea08dc262c9bfa5a8bcc678cf81dd04f42b3f +"@astrojs/markdown-remark@npm:3.2.0": + version: 3.2.0 + resolution: "@astrojs/markdown-remark@npm:3.2.0" + dependencies: + "@astrojs/prism": "npm:^3.0.0" + github-slugger: "npm:^2.0.0" + import-meta-resolve: "npm:^3.0.0" + mdast-util-definitions: "npm:^6.0.0" + rehype-raw: "npm:^6.1.1" + rehype-stringify: "npm:^9.0.4" + remark-gfm: "npm:^3.0.1" + remark-parse: "npm:^10.0.2" + remark-rehype: "npm:^10.1.0" + remark-smartypants: "npm:^2.0.0" + shiki: "npm:^0.14.3" + unified: "npm:^10.1.2" + unist-util-visit: "npm:^4.1.2" + vfile: "npm:^5.3.7" + peerDependencies: + astro: ^3.1.0 + checksum: 738593c270ddcf3e85eade72c0b6683a09435739fc1dfab21500e08af88822d5b52eb37bcb2470a364cb85b4f89645e31e623784774cba063c1060f08cf8d47a languageName: node linkType: hard -"@babel/generator@npm:^7.20.7": - version: 7.20.14 - resolution: "@babel/generator@npm:7.20.14" +"@astrojs/node@npm:^6.0.1": + version: 6.0.1 + resolution: "@astrojs/node@npm:6.0.1" dependencies: - "@babel/types": "npm:^7.20.7" - "@jridgewell/gen-mapping": "npm:^0.3.2" - jsesc: "npm:^2.5.1" - checksum: e57adffa98f187d6830def154af109abff1d26901d898eec9a332fbcb194df8f34e23b7820aba0e2dbc599fc90435fcbd5e538dcd5fa6f5e57c512b075f5d3e5 + send: "npm:^0.18.0" + server-destroy: "npm:^1.0.1" + peerDependencies: + astro: ^3.1.2 + checksum: 462bcd2fa41bcf9f6246db7bd34e95b3f75db4b0e4863cd0e1d54f6941aa38916794cc44cd1d582089602100e8028cfe3c2536dc5be1976006bb3369fd44576c languageName: node linkType: hard -"@babel/helper-annotate-as-pure@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-annotate-as-pure@npm:7.14.5" +"@astrojs/partytown@npm:^2.0.0": + version: 2.0.0 + resolution: "@astrojs/partytown@npm:2.0.0" dependencies: - "@babel/types": "npm:^7.14.5" - checksum: 9f1aafafa2c3238308b8cc3a71882b92e5d0ba7312f15f639e3d5d10baa66b413a428d21bc620cefd2782529688de2018c820de5c7dca2ff3fb4129d82d206bd + "@builder.io/partytown": "npm:^0.8.0" + mrmime: "npm:^1.0.1" + checksum: 8073901d4a0f5588123f5a13149c56c5b0362493b0e7a90fe5c8dca8e401e6e2cb7943f64a58bf248f9e58ec2f2eed6a0046d7a3d33e7211b7f8f61b3c51c979 languageName: node linkType: hard -"@babel/helper-annotate-as-pure@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-annotate-as-pure@npm:7.18.6" +"@astrojs/prism@npm:^3.0.0": + version: 3.0.0 + resolution: "@astrojs/prism@npm:3.0.0" dependencies: - "@babel/types": "npm:^7.18.6" - checksum: 1fcc8f0e9377623a19e00de620391dba3e0343d82ae2142eb7c94b10d6dbddafc201a7a84d1d9ce45ec82291b887f9d85b83d53a50850cdf1b07cee79de554b9 + prismjs: "npm:^1.29.0" + checksum: 888fd580742fb8b0eae7f0ee632831274115c9783337c9436b958f9779f0d063f36e10a13c5ae9eb189d41c9e8565be677b95e4354014f47bf9f86133160bc5e languageName: node linkType: hard -"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.14.5" +"@astrojs/sitemap@npm:^3.0.0": + version: 3.0.0 + resolution: "@astrojs/sitemap@npm:3.0.0" dependencies: - "@babel/helper-explode-assignable-expression": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - checksum: 6a272512e03d0e43a4e3f72d4ac13e87c8719c17d813a127c89db75a432a0ad0ed413a87506804da5e09fb3bc339f7a1ecb6db5cb31163fbb10c979e255ee0c0 + sitemap: "npm:^7.1.1" + zod: "npm:3.21.1" + checksum: 7fb3e9e457e2aaa0123bbc9b73a00aa7f593fa3bc0365d16646005ee8ec9f2d9cecc6fe7b5f4aadd5ff264943eb81426268273bde2701f334908dbb9946380f0 languageName: node linkType: hard -"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.18.6": - version: 7.18.9 - resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.18.9" +"@astrojs/telemetry@npm:3.0.2": + version: 3.0.2 + resolution: "@astrojs/telemetry@npm:3.0.2" dependencies: - "@babel/helper-explode-assignable-expression": "npm:^7.18.6" - "@babel/types": "npm:^7.18.9" - checksum: 657a94af70ae7fa17ebf228a9940804bb73bcef1851e36282590258b2630db5ff35439c5b4dc6c02fd9e825ded7e467d208e8beb0dbe5f7d751649dd39f6deb3 + ci-info: "npm:^3.8.0" + debug: "npm:^4.3.4" + dlv: "npm:^1.1.3" + dset: "npm:^3.1.2" + is-docker: "npm:^3.0.0" + is-wsl: "npm:^3.0.0" + undici: "npm:^5.23.0" + which-pm-runs: "npm:^1.1.0" + checksum: b1a585932e9ec7f4a4c74d7606f5366b04d78048407b486537cbde9cf4c246e7e08eb9a345f5cc5a6e194ab990f3352876010e161fccfa0820d42e21ac26837c languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-compilation-targets@npm:7.14.5" +"@astrojs/ts-plugin@npm:^1.1.3": + version: 1.1.3 + resolution: "@astrojs/ts-plugin@npm:1.1.3" dependencies: - "@babel/compat-data": "npm:^7.14.5" - "@babel/helper-validator-option": "npm:^7.14.5" - browserslist: "npm:^4.16.6" - semver: "npm:^6.3.0" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: b03016a9e7a96afa1905c6e57ed9ba8b790275b90bc3aa40318843dcbcbcb5bebe8523aea2a2271535cfcac054bb0558019362fa89f0b9b1344d314561492769 + "@astrojs/compiler": "npm:1.5.7" + "@jridgewell/sourcemap-codec": "npm:^1.4.15" + "@volar/language-core": "npm:~1.10.0" + "@volar/typescript": "npm:~1.10.0" + vscode-languageserver-textdocument: "npm:^1.0.8" + checksum: 57fe7a7dda510640e9ec8873d95bfbeb8b3ee1f219675151fb205ab39ac3ab6b636f5904f9124d4a506628afead5df66bd65315ae8c6b5677f1ecc2434960e17 languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.17.7, @babel/helper-compilation-targets@npm:^7.18.9, @babel/helper-compilation-targets@npm:^7.20.0, @babel/helper-compilation-targets@npm:^7.20.7": - version: 7.20.7 - resolution: "@babel/helper-compilation-targets@npm:7.20.7" - dependencies: - "@babel/compat-data": "npm:^7.20.5" - "@babel/helper-validator-option": "npm:^7.18.6" - browserslist: "npm:^4.21.3" - lru-cache: "npm:^5.1.1" - semver: "npm:^6.3.0" +"@astrolib/analytics@npm:^0.4.2": + version: 0.4.2 + resolution: "@astrolib/analytics@npm:0.4.2" peerDependencies: - "@babel/core": ^7.0.0 - checksum: db84a8c5cb409ba351c7602e082d1fe15c835d822b1cb8ead0dc113775d7ebc48bfb2e8ea34319ed1c3d4510a80d0ed5f41d596ea5f8ff329f9ae3562af62f14 + astro: ^1.2.1 || ^2.0.0 || ^3.0.0-beta.0 || ^3.0.0 + checksum: 18ee12e4915ed3e37f7516d4c28ae73e4322d8cb60963ea0fbaeccc92ba9d7d12ba75bd6cc66b982163194074a6cc20b976a7de731fe805184037615c9233641 languageName: node linkType: hard -"@babel/helper-create-class-features-plugin@npm:^7.14.5": - version: 7.14.6 - resolution: "@babel/helper-create-class-features-plugin@npm:7.14.6" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/code-frame@npm:7.22.5" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.14.5" - "@babel/helper-function-name": "npm:^7.14.5" - "@babel/helper-member-expression-to-functions": "npm:^7.14.5" - "@babel/helper-optimise-call-expression": "npm:^7.14.5" - "@babel/helper-replace-supers": "npm:^7.14.5" - "@babel/helper-split-export-declaration": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 9ee1312edd62ff5766fbb35465d49638ae47c387a5c0afd122e9c0d0dcc3997d93e2b97f51948aea95dc6b17c6d83085818486646f72a143473d9815283a8c3c + "@babel/highlight": "npm:^7.22.5" + checksum: 7dfb17395cb9715da9cc93eda0f9a3cca75189de3576b2bf2ee508bb8dcf0319a85d12d7b3957d103f67e2f1a90b4e10f74f3036349acf5e56e2838b70d9bc27 languageName: node linkType: hard -"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.20.5, @babel/helper-create-class-features-plugin@npm:^7.20.7": - version: 7.20.12 - resolution: "@babel/helper-create-class-features-plugin@npm:7.20.12" +"@babel/code-frame@npm:^7.22.13": + version: 7.22.13 + resolution: "@babel/code-frame@npm:7.22.13" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.18.6" - "@babel/helper-environment-visitor": "npm:^7.18.9" - "@babel/helper-function-name": "npm:^7.19.0" - "@babel/helper-member-expression-to-functions": "npm:^7.20.7" - "@babel/helper-optimise-call-expression": "npm:^7.18.6" - "@babel/helper-replace-supers": "npm:^7.20.7" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.20.0" - "@babel/helper-split-export-declaration": "npm:^7.18.6" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: a6b2fb9f07d481b9e06d4a418ea728153c35146da67c37306b922726329643900bbf03a13b9cb7d7707ad679fa6181ae490b9b4af5547523cb3326961688aa53 + "@babel/highlight": "npm:^7.22.13" + chalk: "npm:^2.4.2" + checksum: eeb7e25e1ffe306d8e161d03a9d8e301be6942e69f4ce3c75e99005e199fa528ca25dfba6b18631af6ffa7d9c63e3ddfa554c42d88762f1d3ad4ea462f392dff languageName: node linkType: hard -"@babel/helper-create-regexp-features-plugin@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-create-regexp-features-plugin@npm:7.14.5" - dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.14.5" - regexpu-core: "npm:^4.7.1" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: d38ae96dcd5df122e9743044745de01a9d76897f06d2ae277232cfc9577193520ef0c470da826c49012c2e52a8a0bf3b2b94367c4369c2fd462ca9ba8ff0b926 +"@babel/compat-data@npm:^7.17.7, @babel/compat-data@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/compat-data@npm:7.22.5" + checksum: 921389ebf9a902515adda9f08a0d84ab18303b31fc829cbc6c4a3b90ae38be54393473f4db323a646fa97871e977b59b67d94f25dd88f22574deffb89dd21186 languageName: node linkType: hard -"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.20.5": - version: 7.20.5 - resolution: "@babel/helper-create-regexp-features-plugin@npm:7.20.5" - dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.18.6" - regexpu-core: "npm:^5.2.1" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 3558082cdfb7b12a053f9f8d7b0c33e249c64c97a8c00030d3d075b814a82f7c2ca64bed9bb0fef598e3aa1a8da9e7f7691b9fe18239f0bc326851b8ce420787 +"@babel/compat-data@npm:^7.22.9": + version: 7.22.9 + resolution: "@babel/compat-data@npm:7.22.9" + checksum: 47680d554f62ce2f6b45eac819dd0f7a02c9e19872ab026aa6c97696048c111335e38fd23de60c23eb992c5ef7c8891af3ef0f16f514fe4d73c2e7b5a4c67109 languageName: node linkType: hard -"@babel/helper-define-polyfill-provider@npm:^0.2.2": - version: 0.2.3 - resolution: "@babel/helper-define-polyfill-provider@npm:0.2.3" - dependencies: - "@babel/helper-compilation-targets": "npm:^7.13.0" - "@babel/helper-module-imports": "npm:^7.12.13" - "@babel/helper-plugin-utils": "npm:^7.13.0" - "@babel/traverse": "npm:^7.13.0" - debug: "npm:^4.1.1" - lodash.debounce: "npm:^4.0.8" - resolve: "npm:^1.14.2" - semver: "npm:^6.1.2" - peerDependencies: - "@babel/core": ^7.4.0-0 - checksum: 36ba4ac50a8a17812e2eb7db0833cd69acc338b35eb3455df848c7cd3ff503f199b23a3094ee81ad6e67ccc01894f2c45ad782a6f34155b59aec0acb7b0932c2 +"@babel/core@npm:^7.11.1": + version: 7.22.5 + resolution: "@babel/core@npm:7.22.5" + dependencies: + "@ampproject/remapping": "npm:^2.2.0" + "@babel/code-frame": "npm:^7.22.5" + "@babel/generator": "npm:^7.22.5" + "@babel/helper-compilation-targets": "npm:^7.22.5" + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helpers": "npm:^7.22.5" + "@babel/parser": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + convert-source-map: "npm:^1.7.0" + debug: "npm:^4.1.0" + gensync: "npm:^1.0.0-beta.2" + json5: "npm:^2.2.2" + semver: "npm:^6.3.0" + checksum: 4dd24af48f3d6d240ac1ee6850dd73a670d8f8466bf5a76e1d068a9d21f2dcfd82a34f54f25d15ba0f1f77813296074f0aecea6ea4a1302ac2a45d3eef185a6e languageName: node linkType: hard -"@babel/helper-define-polyfill-provider@npm:^0.3.3": - version: 0.3.3 - resolution: "@babel/helper-define-polyfill-provider@npm:0.3.3" +"@babel/core@npm:^7.22.10": + version: 7.22.17 + resolution: "@babel/core@npm:7.22.17" dependencies: - "@babel/helper-compilation-targets": "npm:^7.17.7" - "@babel/helper-plugin-utils": "npm:^7.16.7" - debug: "npm:^4.1.1" - lodash.debounce: "npm:^4.0.8" - resolve: "npm:^1.14.2" - semver: "npm:^6.1.2" - peerDependencies: - "@babel/core": ^7.4.0-0 - checksum: 2991b9b87f6c3248c343a394c0bb09c14a6f9b5b1c22cd2e51b6127f79d08fb6ea5d65e889b2331466f154e9d407e47b891de2eab2a6dafa4c62b3c59ff1720c - languageName: node - linkType: hard - -"@babel/helper-environment-visitor@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/helper-environment-visitor@npm:7.18.9" - checksum: 6a770ab046578d692f954213680f66d0764a92d608fcc121cf87c575223c44729fdebecc08550d0e18a5b22a3a72669c01de5351b6c1eff75a96b3167dbfe922 + "@ampproject/remapping": "npm:^2.2.0" + "@babel/code-frame": "npm:^7.22.13" + "@babel/generator": "npm:^7.22.15" + "@babel/helper-compilation-targets": "npm:^7.22.15" + "@babel/helper-module-transforms": "npm:^7.22.17" + "@babel/helpers": "npm:^7.22.15" + "@babel/parser": "npm:^7.22.16" + "@babel/template": "npm:^7.22.15" + "@babel/traverse": "npm:^7.22.17" + "@babel/types": "npm:^7.22.17" + convert-source-map: "npm:^1.7.0" + debug: "npm:^4.1.0" + gensync: "npm:^1.0.0-beta.2" + json5: "npm:^2.2.3" + semver: "npm:^6.3.1" + checksum: cef824eea443a6f5d3a3b369525d50f6ee824757ec8e02a2edab99e7971a5ea99d9128aa69d7400e8a08e420ffd0c21a736ce4f525d55c909a3d3c6c21e3579e languageName: node linkType: hard -"@babel/helper-explode-assignable-expression@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-explode-assignable-expression@npm:7.14.5" +"@babel/generator@npm:^7.22.10, @babel/generator@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/generator@npm:7.22.15" dependencies: - "@babel/types": "npm:^7.14.5" - checksum: 89acee50e14153d0b855f71ba398702fa5cad693eb3122652306d9e985b4192791f569763d1c86b34a235e7b37b8ce82edd256f1f5dbf6722ea4bf65ef7eb35f + "@babel/types": "npm:^7.22.15" + "@jridgewell/gen-mapping": "npm:^0.3.2" + "@jridgewell/trace-mapping": "npm:^0.3.17" + jsesc: "npm:^2.5.1" + checksum: a3722e1a21034962b83f7cfddcae29a6b17099115cd7d834edc871f1d938d8be0e8b7a8cd71dbaa37ed9f724ec18a475278fa1eb426959aa0338d40ace016fa2 languageName: node linkType: hard -"@babel/helper-explode-assignable-expression@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-explode-assignable-expression@npm:7.18.6" +"@babel/generator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/generator@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.18.6" - checksum: 24d7f1d5a69a5bae6076db48f0ff83b51f947a5078574409954f93ff95ccc32b69ee71022c52d3385e22a707ed9efdd9185421f38c16fe6595b606ca4d604ffb + "@babel/types": "npm:^7.22.5" + "@jridgewell/gen-mapping": "npm:^0.3.2" + "@jridgewell/trace-mapping": "npm:^0.3.17" + jsesc: "npm:^2.5.1" + checksum: 752010702bf332ebcde03d3d88da4c6c95093dbb621f7d1bce830631f629fc061aad7520d1797a5c8a514c8374f21c0fa02bcae3bb4999cd9df9ed5d652f85f6 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-function-name@npm:7.14.5" +"@babel/helper-annotate-as-pure@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" dependencies: - "@babel/helper-get-function-arity": "npm:^7.14.5" - "@babel/template": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - checksum: 92526da56cacc931fc04aee91b4bfcaa5c3a0389275539b7d3bf6fa54705ffea20dae0b395c14caae0722424ea6e7ce6781fdb70720ced41834e046e1db305a3 + "@babel/types": "npm:^7.22.5" + checksum: cb5f731472426a11625c41f797c8554d10e188c73f074bffb90be51efa028ccff0961ef88ef69dc42d88843149d0aad75f4569f2276836fb5a8b291a1e3217a8 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.18.9, @babel/helper-function-name@npm:^7.19.0": - version: 7.19.0 - resolution: "@babel/helper-function-name@npm:7.19.0" +"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.5" dependencies: - "@babel/template": "npm:^7.18.10" - "@babel/types": "npm:^7.19.0" - checksum: 65ba2eaad08ba73238aa4f11004a7e0f1d96a57c85863d53571741944986f55f334dfd9a59a3a477daefc7d31bd72df78a78673046082d6625888d3d357d36ed + "@babel/types": "npm:^7.22.5" + checksum: 119e7ac26b071552a5a1261a9fd1976bb14b600f16204fd54cb4935fa1b7a82811743fd1d223ca33a35c6f36cb0fda042bcba57eb15ddfbcd3f53b79abc2ce04 languageName: node linkType: hard -"@babel/helper-get-function-arity@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-get-function-arity@npm:7.14.5" +"@babel/helper-compilation-targets@npm:^7.17.7, @babel/helper-compilation-targets@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-compilation-targets@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.14.5" - checksum: 278c4bd94b0fc1b0b63f022602dc0599fe0700bdbc9f236a23d8252517d6bbe441c2e3bad36a513e932f733dfd784db218306553d9dddaa3ae87dc6551ac981f + "@babel/compat-data": "npm:^7.22.5" + "@babel/helper-validator-option": "npm:^7.22.5" + browserslist: "npm:^4.21.3" + lru-cache: "npm:^5.1.1" + semver: "npm:^6.3.0" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 680625c948e3872cb0974e7cb054eec206baa575d0bb4fe51d5fb795d94348c12d6e4f1719436ab8e6e140e57de28684ec8d635d4ff4407329fb0eab5c407a1a languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-hoist-variables@npm:7.14.5" +"@babel/helper-compilation-targets@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/helper-compilation-targets@npm:7.22.15" dependencies: - "@babel/types": "npm:^7.14.5" - checksum: e907062f65f48bb220ddc8360bb521792134a08977d38bcc3b2ead5fdcbd948f6b634c0e2cfaa2fbec7c5e7d69bbb992d534da673d53e4444e63452c8eb47373 + "@babel/compat-data": "npm:^7.22.9" + "@babel/helper-validator-option": "npm:^7.22.15" + browserslist: "npm:^4.21.9" + lru-cache: "npm:^5.1.1" + semver: "npm:^6.3.1" + checksum: 457bd72c26e86b60e6140263e1dc82bc63f6d5c86c33a98c056d201317c77f0bd7332bd1aaf340a93c3ed84b6114e4e3cc24b8dda4fd385a2a202baf3a4ea39f languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-hoist-variables@npm:7.18.6" +"@babel/helper-create-class-features-plugin@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-create-class-features-plugin@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.18.6" - checksum: 462ef0d14fbe6861cee3a2c2bee1eff76d31ec94230c147684d55fa65351784c4afffaa62a8a540caec659d47ef5641707cdb99ce049f1bf2995cfcccace537a + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-member-expression-to-functions": "npm:^7.22.5" + "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/helper-replace-supers": "npm:^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.5" + semver: "npm:^6.3.0" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 5e7bba4e183fcb678d3023b7a4f1142e0cb6b3016909a8297f5aed88b035a2471f2b6033d0d7163bdeb406cdf59f64888c5f5978dc7f57e13d831a6c25a23162 languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.14.5": - version: 7.14.7 - resolution: "@babel/helper-member-expression-to-functions@npm:7.14.7" +"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.14.5" - checksum: 3d44f9d534243a67e72a908db855e264efcb4fc70e04f8f3fd3249862b0a579facf17e4ec1b3de33a00024d05268b355f74d9fc8ab7fed523c0facca2f84647f + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + regexpu-core: "npm:^5.3.1" + semver: "npm:^6.3.0" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: e806b390fadf97263c875151abc26fec83fbc30c7f7ee585b2ec5bd4ba99ef27fb8c4b4e3140fdf44918786ba8ad8d9ffaffd0a482bc19e4f71455f6591d1777 languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.20.7": - version: 7.20.7 - resolution: "@babel/helper-member-expression-to-functions@npm:7.20.7" +"@babel/helper-define-polyfill-provider@npm:^0.4.0": + version: 0.4.0 + resolution: "@babel/helper-define-polyfill-provider@npm:0.4.0" dependencies: - "@babel/types": "npm:^7.20.7" - checksum: 2d0f9523c67657f351febdc432a05aeb44d6e61f062e938b0bc5f33745d00d3bf067ebd5d35f9581513250660f6cbf1553da9b6d47be8c005974da3980992c3a + "@babel/helper-compilation-targets": "npm:^7.17.7" + "@babel/helper-plugin-utils": "npm:^7.16.7" + debug: "npm:^4.1.1" + lodash.debounce: "npm:^4.0.8" + resolve: "npm:^1.14.2" + semver: "npm:^6.1.2" + peerDependencies: + "@babel/core": ^7.4.0-0 + checksum: 24d14a814f0f09d4d76efb21f00159007f730b3f0496c58f23b7fbe6ac62a84f51b33ba1babfba8617dc4716444e4c0841972e71cc5cc4a7f11cf71e37e98f38 languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-module-imports@npm:7.14.5" - dependencies: - "@babel/types": "npm:^7.14.5" - checksum: 70b856194151a29dbbda62506ba340d62e0e1875f44005d637860c954ab684ab17113afc055405f318413398e064fdbe3319cf090ed37bf04b64530505ce75b4 +"@babel/helper-environment-visitor@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-environment-visitor@npm:7.22.5" + checksum: f48c0f5f4acc69b1f0e60b727145ce4625ad9b7d2dc2622fbc15f9414db0fe69140d2f4fb2e5791f8eba06b94d24db5c7d361d653ab2ab8d4f24113892bf98e6 languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-module-imports@npm:7.18.6" +"@babel/helper-function-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-function-name@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.18.6" - checksum: 5c2d1987e4854abe7ca227d2e318b699c100dedc8ec45fe858755d5e9da8760ac136c0b1e669cc381f44eb79607b6f4ffcf7642e1aa84504389f9ca6065e8ee1 - languageName: node - linkType: hard - -"@babel/helper-module-transforms@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-module-transforms@npm:7.14.5" - dependencies: - "@babel/helper-module-imports": "npm:^7.14.5" - "@babel/helper-replace-supers": "npm:^7.14.5" - "@babel/helper-simple-access": "npm:^7.14.5" - "@babel/helper-split-export-declaration": "npm:^7.14.5" - "@babel/helper-validator-identifier": "npm:^7.14.5" - "@babel/template": "npm:^7.14.5" - "@babel/traverse": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - checksum: 0b3bf2b69574030b3471252452de35def10160e8cbf45355959801b61d9f04eb55cf8b3632a57072f61eace1952c41f76173ae94a65b64752f6a710f4836ca61 - languageName: node - linkType: hard - -"@babel/helper-module-transforms@npm:^7.18.6, @babel/helper-module-transforms@npm:^7.20.11": - version: 7.20.11 - resolution: "@babel/helper-module-transforms@npm:7.20.11" - dependencies: - "@babel/helper-environment-visitor": "npm:^7.18.9" - "@babel/helper-module-imports": "npm:^7.18.6" - "@babel/helper-simple-access": "npm:^7.20.2" - "@babel/helper-split-export-declaration": "npm:^7.18.6" - "@babel/helper-validator-identifier": "npm:^7.19.1" - "@babel/template": "npm:^7.20.7" - "@babel/traverse": "npm:^7.20.10" - "@babel/types": "npm:^7.20.7" - checksum: 0647a26f9c91c41d80d7a0c28f1b32a8a70ff59d3e6fdeff29cf6b72d0aa66088f36cf1a87e602f702801ad654623b63070c344d0b883ab7ad2cf8212427cdbb + "@babel/template": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: ab66c2a9ab9e79a3a34f906d9fe4895ec5200d23417a06806cf01fbd38c64048f2ec399559222a1940e6b3769a0639d07d2f593aaafaf65de1ffb5876359e9c7 languageName: node linkType: hard -"@babel/helper-optimise-call-expression@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-optimise-call-expression@npm:7.14.5" +"@babel/helper-hoist-variables@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-hoist-variables@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.14.5" - checksum: 6cd9fbb8e06d50237bae40de961896496cd21831595f0c847a5c111b45840c9fbfae9ecebb2fa236471b592d194dcd63c3533984ed4b57299625607ef4ac105c + "@babel/types": "npm:^7.22.5" + checksum: 4df8aa58aebff5d80a12a8dad40220d69f900ef05f62dde1f52cbe162e1e7d4ab621b6352ab8e570e50ec1799ef34158f8b0050ec27fb393566faa68a9b05f3b languageName: node linkType: hard -"@babel/helper-optimise-call-expression@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-optimise-call-expression@npm:7.18.6" +"@babel/helper-member-expression-to-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-member-expression-to-functions@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.18.6" - checksum: d8d3756889d051393c30d859bd2b5c5ce039a8e1123ef15b0f96bbb6adc67a71e182a96d3308079faf7be80cfc4718283c981f83a9747e6e23e00088702db9bf - languageName: node - linkType: hard - -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": - version: 7.14.5 - resolution: "@babel/helper-plugin-utils@npm:7.14.5" - checksum: 2e2c0dad632ce078597541847149b3e7063c091c503256f8b0f1bc5f496376127431884437727538a2433ade4c84a196464a9d1747c8055644663417f94bf798 + "@babel/types": "npm:^7.22.5" + checksum: cb8b7094880668c96192e083386453ea04cf09b460bd62f17e66bef4c49a23a029d8021e3342fa0cc549a20757104da010490b0e291bb66c2060dfc8c1def07d languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.16.7, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.18.9, @babel/helper-plugin-utils@npm:^7.19.0, @babel/helper-plugin-utils@npm:^7.20.2": - version: 7.20.2 - resolution: "@babel/helper-plugin-utils@npm:7.20.2" - checksum: 52745723617d3e4695a4dbec3728736c4f6d512ff382c36047b6d06117d2db059a65258629c5a42d57bed5eec2db7e473b14e524f611b0b04190b5922ea5d9f5 +"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-module-imports@npm:7.22.5" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: 5475de0bbd3611a38b8746a2c74495aaad560a283b6c647f9d044bb91bb9375fd8412ea8adae9d077a61d77af6a5138e40ab7f206a6403a2f15f87b9e0aa2aaa languageName: node linkType: hard -"@babel/helper-remap-async-to-generator@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-remap-async-to-generator@npm:7.14.5" +"@babel/helper-module-imports@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/helper-module-imports@npm:7.22.15" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.14.5" - "@babel/helper-wrap-function": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - checksum: a76b7f208db99b65e963309bf67e2a2943c5d0448ab2c556c8b9ea23ac4400e97fe65ccd978fc4c91ab6952c7623b916fb773735280eeb7a3291f02a7b0d9ee8 + "@babel/types": "npm:^7.22.15" + checksum: b30edc03dc74d86ae4be18e16a189ed4d5dcac2fc6267a934660bb3c05f829a00d7ff4296b4550cebe7f0ba51facb1b12bf9702ddef5ac9488c27c37dfb9827e languageName: node linkType: hard -"@babel/helper-remap-async-to-generator@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/helper-remap-async-to-generator@npm:7.18.9" +"@babel/helper-module-transforms@npm:^7.22.17": + version: 7.22.17 + resolution: "@babel/helper-module-transforms@npm:7.22.17" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.18.6" - "@babel/helper-environment-visitor": "npm:^7.18.9" - "@babel/helper-wrap-function": "npm:^7.18.9" - "@babel/types": "npm:^7.18.9" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-module-imports": "npm:^7.22.15" + "@babel/helper-simple-access": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.6" + "@babel/helper-validator-identifier": "npm:^7.22.15" peerDependencies: "@babel/core": ^7.0.0 - checksum: b1e869322e1c3a179b5bf3a33831489f801c729875d0ef9d134ab7a634d838550e05bb6a0ed3fc4130a0c2cb387824ce50b52be528f68c07b6d44fbbb2b018b0 + checksum: 5622f397afcaad8bb5d05645fbed502a9d463452c3617fb537f5e69d5a9347a7bb24f9256968a6c3eddf3ab66b9ab98b7ac7c69ad558ac658b9e84ea2e5e127f languageName: node linkType: hard -"@babel/helper-replace-supers@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-replace-supers@npm:7.14.5" +"@babel/helper-module-transforms@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-module-transforms@npm:7.22.5" dependencies: - "@babel/helper-member-expression-to-functions": "npm:^7.14.5" - "@babel/helper-optimise-call-expression": "npm:^7.14.5" - "@babel/traverse": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - checksum: 93425b13bdba91da6facfb30b814c884741914c4ddcda0abb744f494c6d96a88b3a4a35e466017e3d6dccc0e202de7d3471c629a34b9b7280a676b7cb8148aaf + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-module-imports": "npm:^7.22.5" + "@babel/helper-simple-access": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.5" + "@babel/helper-validator-identifier": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: 200649c6a786429aa877cb4d326ad9fccfc5a58e3da844e529ed607e683d2860bf594fa688572ffcf5437e81c0ffa082489d242fff02884a1f49cd956923c9b8 languageName: node linkType: hard -"@babel/helper-replace-supers@npm:^7.18.6, @babel/helper-replace-supers@npm:^7.20.7": - version: 7.20.7 - resolution: "@babel/helper-replace-supers@npm:7.20.7" +"@babel/helper-optimise-call-expression@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-optimise-call-expression@npm:7.22.5" dependencies: - "@babel/helper-environment-visitor": "npm:^7.18.9" - "@babel/helper-member-expression-to-functions": "npm:^7.20.7" - "@babel/helper-optimise-call-expression": "npm:^7.18.6" - "@babel/template": "npm:^7.20.7" - "@babel/traverse": "npm:^7.20.7" - "@babel/types": "npm:^7.20.7" - checksum: eed73494d61d58e5758a0b59f6455be167250b1c3c2fc25b20d5e342f44e29657a5befe9f40c640ad78f9fe7fd9b9771932883978545692c604777bc548ac80b + "@babel/types": "npm:^7.22.5" + checksum: 91217326c7d694ddca65401d39a870fae8ef9cb51714b5a6abc8210e03dfb68e434bb27d62601ef4927ceb5efd4361cd514d53f8ed1c353e9a935ac3c39dd905 languageName: node linkType: hard -"@babel/helper-simple-access@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-simple-access@npm:7.14.5" - dependencies: - "@babel/types": "npm:^7.14.5" - checksum: d1850b149ecbb764b8bdb7c8981c808848a58291d232b6213c72c5d4fee2946c527e7e3afd771947dbc6dea28cf789bfae6705db08ad2d9ab51b93fda3c6d13a +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.16.7, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": + version: 7.22.5 + resolution: "@babel/helper-plugin-utils@npm:7.22.5" + checksum: 23ff057d726c34aba3f5741ed5440d0e664ee0707fba35db5ce8839dd4c24cd53345a5233fe901cd054b09e5f016e81eef99c27621b5737829bf001676ee11ae languageName: node linkType: hard -"@babel/helper-simple-access@npm:^7.20.2": - version: 7.20.2 - resolution: "@babel/helper-simple-access@npm:7.20.2" +"@babel/helper-remap-async-to-generator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-remap-async-to-generator@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.20.2" - checksum: 23f8a82cba4bce49b71f91e07f5afbddc6622b2762ab9287d7d160134cd6f7d6364ce8a46762b6cd3cc6da6eaf2e6758166394036a7feedd762042d9ad94a533 + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-wrap-function": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: b2a9ce6787cf933356bca0544ff1fdcbfe1a123bacdb946cc555ffb5bf8341bc98daf7de107b78e385aeba66b2b5c267a14d945f0e23e1bfaf94bec2882b7e63 languageName: node linkType: hard -"@babel/helper-skip-transparent-expression-wrappers@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.14.5" +"@babel/helper-replace-supers@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-replace-supers@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.14.5" - checksum: 3880774a2e83407d6799e46df530b5ce7797eb64eec46ba493f67347d7e90c150aebabfff20bb9729717ba4354f0ff16eff23d8f4f6b611f179e9afc5971d39c + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-member-expression-to-functions": "npm:^7.22.5" + "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: 532d73e55a8559fd7e36ac31cd2423f59f7c8957d13616c2bee59d2c035e9dd70121c2e8c2f7aad2a32e7d1b8c3d1c18f581ddb81bfd4b55cf108c0148444158 languageName: node linkType: hard -"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0": - version: 7.20.0 - resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.20.0" +"@babel/helper-simple-access@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-simple-access@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.20.0" - checksum: 6a71949d246590ef0d12163f2246f2d8d32670069c41fe5eabaffca5e78dcc4c9e367be2731416f0c32e7ffa148dfba9b718bb62e47681c7605468096616e729 + "@babel/types": "npm:^7.22.5" + checksum: 5a9c37a63b15f3495a46a39dea481043d0363db886117021225849ac4a06664fda9615d62ab6f836224d89fb43189f45b4f48c2057c2f4441b0da5daf6ac3f13 languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-split-export-declaration@npm:7.14.5" +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.14.5" - checksum: e04e13b9e4ebc9056c0df1671893a97022c00a3e5da863a3a7861fbd3b9fe48fd4f2767e07d5b853e662f66a2447f4202325db1bbdf4fd1035af2cdb063aa35c + "@babel/types": "npm:^7.22.5" + checksum: 17c52fefcad4207dfeeb7f071cb006ea61a0d9e1de113b72b295e17bb4cb8d1b690cce977f459b589f1540d4b6044ca97d11ec994542a978f71dff2bf66c1817 languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-split-export-declaration@npm:7.18.6" +"@babel/helper-split-export-declaration@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-split-export-declaration@npm:7.22.5" dependencies: - "@babel/types": "npm:^7.18.6" - checksum: a7834c5b54600542460aa278b0e988178ebe1905df856df909e4fdafffcaa05fc1688e5504a6f388ca1bc36dbdb78a56af422b4a7795876680451d86e55055b9 + "@babel/types": "npm:^7.22.5" + checksum: 2658ae9ae290ff800f05f7c5c7e3bf89bbee7e4f4098bf4645174a6ff863ecda8f7c7d9ee0cacf32eef00f7bb658d0cc62b398402dc02a08a5567ac4709117f7 languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.19.4": - version: 7.19.4 - resolution: "@babel/helper-string-parser@npm:7.19.4" - checksum: a8646931cba0c2905b683b99879f02c8a516a6c702c9f46cc02f0a8e93ef6f01540f2e7017d8288b9c039e1c3316c7858309ea3d6e39fa78bd98859b338603ee +"@babel/helper-split-export-declaration@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/helper-split-export-declaration@npm:7.22.6" + dependencies: + "@babel/types": "npm:^7.22.5" + checksum: 35931a3825b1b6dbb92685b71d204d172e19ee9a2121ec9e0f5319b85f631b875db043aebdcd5ef367952eb2b8fa7a4e5d71a95e749824b46d2e251aebcccb62 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-validator-identifier@npm:7.14.5" - checksum: 84b0f36116e1e5dc87d75d4bfcd6816788a7ae8614bed7c2a62ff6a34ce81b58743f0c24b1e4b6596c468a82121020f9b35090220c7e6c8bad23ab6ab4d8e207 +"@babel/helper-string-parser@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-string-parser@npm:7.22.5" + checksum: b998b01b4778859c301ede18aea41abb0dcd0497191bdb216aa561741fe74f8651a8d7a486d4151a448c44d37a5a8603c0296b4d4e2f5388989dd86003952ad4 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1": - version: 7.19.1 - resolution: "@babel/helper-validator-identifier@npm:7.19.1" - checksum: 089fdf605ee8dfa3004cd84c69e655ff9ab8bdb4e7fa02bf0012db728c6247acb599ca1118d2f9124d7b417fc5793ee348f2da8bc64be230b3b13ba7cd4364cc +"@babel/helper-validator-identifier@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/helper-validator-identifier@npm:7.22.15" + checksum: a2a09d0823e41e357f1f14b965496c0853b087f4ebb2e2b2205c67034c45ab729a442661101c6d04d974b83d7484830f59a775c1ee9f195f39c5026c1cfb0077 languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-validator-option@npm:7.14.5" - checksum: 97d6e301627334ec54aaf6f225dd11dabaa6d12068ecfc43b43f4717ceee093368eeff3d3b481265f17dd0b595191fe292cbe52b8a78600628006ba89eb44fcf +"@babel/helper-validator-identifier@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-validator-identifier@npm:7.22.5" + checksum: ae436e63eca3aa0a70575a1a5ae8234307fdfe3b5c720002899bf49833c3abcde2b9b188ed10905f2c39013a95e49cc8356dd589cae80e03b39c3370c3e9de75 languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-validator-option@npm:7.18.6" - checksum: c32c6e5daa9b2e2cbee66477c652757add3a204fea24f486b3b630e1fb69df53591ddc8acf5c5bc30a157e7275e53e25b3fbafbe1d2fb21604ca09cd8d3d052c +"@babel/helper-validator-option@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/helper-validator-option@npm:7.22.15" + checksum: 34dca87c0c790c4cb24799dfeb39a1e95d7dba5cd710927857d6f450a9b5f26ee025c05f2c0692a956ba7122dfb7a11db60c7f0d339b034fddfe8480991ee9a4 languageName: node linkType: hard -"@babel/helper-wrap-function@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/helper-wrap-function@npm:7.14.5" - dependencies: - "@babel/helper-function-name": "npm:^7.14.5" - "@babel/template": "npm:^7.14.5" - "@babel/traverse": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - checksum: 4b2621f562e0c5ba07f1217d916569cb200613c4eb2c7226dddff1e7a8a485c91a2703c18863ddf28235723ccdadbd77a3e3d3210cb3fabc9f73729f741197a8 +"@babel/helper-validator-option@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-validator-option@npm:7.22.5" + checksum: d6b2f3a8995894f3b6ee58d4b6a64de3a0083b99553485988ba956e2925c6f85a4d1430ae48a0338dc6847cac486abdf9a4393c79c37d9be78cf821006438584 languageName: node linkType: hard -"@babel/helper-wrap-function@npm:^7.18.9": - version: 7.20.5 - resolution: "@babel/helper-wrap-function@npm:7.20.5" +"@babel/helper-wrap-function@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-wrap-function@npm:7.22.5" dependencies: - "@babel/helper-function-name": "npm:^7.19.0" - "@babel/template": "npm:^7.18.10" - "@babel/traverse": "npm:^7.20.5" - "@babel/types": "npm:^7.20.5" - checksum: c79ad8e3457a72a0f5124af56c95d53dfc20d4b38fb9a0b1390e609eb9d107b234d17e0a88aa46c051f3f8ade95ff25d3df78d26b26616b5dc98a1465a055e6b + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: 629afcf619ee4ba45afdf4d106f7ca1e327394acd0f90ab0d807e6cb1846c40ff990046390216396213ff5a77bf8ea456547ad8b2da65bb4f01e63b28bbfbb06 languageName: node linkType: hard -"@babel/helpers@npm:^7.14.6": - version: 7.14.6 - resolution: "@babel/helpers@npm:7.14.6" +"@babel/helpers@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/helpers@npm:7.22.15" dependencies: - "@babel/template": "npm:^7.14.5" - "@babel/traverse": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - checksum: 0b09e75ec8ef667b46d836f26a6ed1a3e32836c3521d9a3475ace5c978663c000f5c54aa0d0a75c1cf0b76ef7dff027ecfe189e93ae1d64bafe81caf800af840 + "@babel/template": "npm:^7.22.15" + "@babel/traverse": "npm:^7.22.15" + "@babel/types": "npm:^7.22.15" + checksum: dcad121b8eb9d19a3caff6b0a1215c97489cbac0e0e7534ad0199e2fed47d02c6ea4d0b38647f1ad2b32c9a8edf0b48877803f9474e39796b755c63478e27753 languageName: node linkType: hard -"@babel/helpers@npm:^7.20.7": - version: 7.20.13 - resolution: "@babel/helpers@npm:7.20.13" +"@babel/helpers@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helpers@npm:7.22.5" dependencies: - "@babel/template": "npm:^7.20.7" - "@babel/traverse": "npm:^7.20.13" - "@babel/types": "npm:^7.20.7" - checksum: 24ca2297b67809e28becb4106975b4236c976b586d247394367ccb538936c2b1c8c2c699cade23147f8736d8386936efb1bc701ca03db4bc32a8fc743350eaa9 + "@babel/template": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: bc83454d78040bf879954fe8bd002486b78abda61b008b8c730299e689b51aa454a54803b35976958599006817884560c0ab6ee31c78461cb023b1330a1e9d46 languageName: node linkType: hard -"@babel/highlight@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/highlight@npm:7.14.5" +"@babel/highlight@npm:^7.22.13": + version: 7.22.13 + resolution: "@babel/highlight@npm:7.22.13" dependencies: - "@babel/helper-validator-identifier": "npm:^7.14.5" - chalk: "npm:^2.0.0" + "@babel/helper-validator-identifier": "npm:^7.22.5" + chalk: "npm:^2.4.2" js-tokens: "npm:^4.0.0" - checksum: 640522d5433ec2ff8cb3ac4b2ac612a12af197fa545bd46beb22b35245b3e1cda111fa4047c0b989633f98662624c65d7d48b46a63ebc6bc75fb4021dc98f252 + checksum: 8b9ca89bbeccab408bbdabb641245115affb8d9c94c14e97daa31a517254b2fc5391532d906ca4bcb8512212aacc716a017019741896a74667c56a7da9b56e7b languageName: node linkType: hard -"@babel/highlight@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/highlight@npm:7.18.6" +"@babel/highlight@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/highlight@npm:7.22.5" dependencies: - "@babel/helper-validator-identifier": "npm:^7.18.6" + "@babel/helper-validator-identifier": "npm:^7.22.5" chalk: "npm:^2.0.0" js-tokens: "npm:^4.0.0" - checksum: b8eeb1d38327c635004b3ae946ff334bb994334a5fdd874e216e62bbe3b8f8f10c901c3795c25db7c8e49eb5a56948b9dbe38c3800c4f977016402997dacedae - languageName: node - linkType: hard - -"@babel/parser@npm:^7.14.5, @babel/parser@npm:^7.14.6, @babel/parser@npm:^7.14.7": - version: 7.14.7 - resolution: "@babel/parser@npm:7.14.7" - bin: - parser: ./bin/babel-parser.js - checksum: a6970d7927924b2bfd70bcd09c42f2d8b125b7bce80807948f436cc44da5bea452c03bfd797125beb8d531c52b7f9fe84379245da4780daefb5d2eaeb7d8214c + checksum: 7f2de83b67bac82c77dc3c2c708bdc315241e071b87152cb7ffee9c6bc90795cbb300f04775c3d1aefc935a115ce2b728da7fe1093b00138f968f5ad573eac4f languageName: node linkType: hard -"@babel/parser@npm:^7.18.8": - version: 7.18.10 - resolution: "@babel/parser@npm:7.18.10" +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.18.8, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/parser@npm:7.22.5" bin: parser: ./bin/babel-parser.js - checksum: 7413b3356b6813e592852818592d09ed5dbd8902c2c3f5a0bca3a272e23d0383c14f01b0f153849173ce245833a586797a0d7e255d71a3f4540046b9cdf1010e + checksum: 38abd156629454242787f0ff5fb8fdfb8d007bf3bcd8b1a5ddbf293f712232489fc0808d18e763581ea6859c816f276abb4136372b7ce4e3d5082fde8a294f91 languageName: node linkType: hard -"@babel/parser@npm:^7.20.13, @babel/parser@npm:^7.20.7": - version: 7.20.15 - resolution: "@babel/parser@npm:7.20.15" +"@babel/parser@npm:^7.22.10, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.22.16": + version: 7.22.16 + resolution: "@babel/parser@npm:7.22.16" bin: parser: ./bin/babel-parser.js - checksum: 46660698145cc259591646cf4095f2608d77128c007653ba4356c755352c9d34ae45b152d269da7b0bb459cc257850d7b25aa9bf00bef25eac94205dcce0fbdc + checksum: 9921300ee4bd255a8158b76324dab66f0e7ea7007da3ccf937436b802534cda5905e98a437f5893eeeeec338ebea316fa581c97dcac7c60975cf0f076f10a9a0 languageName: node linkType: hard -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.18.6" +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0 - checksum: 15cb2c56bf44b12741de13e086d2e73878117357d2c7d94d302fda0f81da9ba63d0f6a43405cc0376c07d8fee15b38da6e6ed54fc9222101d55a63f3a0393db1 - languageName: node - linkType: hard - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.14.5" - "@babel/plugin-proposal-optional-chaining": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.13.0 - checksum: fa4d4497621d7be0443ea39a9fe73ead3afa0062dd8a8fd7385ca1844b865af17d8bf15cbddb3a60645628dd290d0be72fca01a73df5087f3cb0769751ee928d + checksum: c8600be951404db56bc75be50cdb1d490468d12dbb6189035908dd73c26bb4597fef94749f10126318077dbd04dd9509e45fa9d7f9d64bc8859b4a629d3a09b7 languageName: node linkType: hard -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.18.9": - version: 7.20.7 - resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.20.7" +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.20.0" - "@babel/plugin-proposal-optional-chaining": "npm:^7.20.7" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/plugin-transform-optional-chaining": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.13.0 - checksum: 5ffad13ed54288f735f49772fd43716ea26d14a91ff268677614072069b3273643a25a005604376e3e6a1d45792e2421929779da6e23eb75f6c7ed20de5e03bb + checksum: 7902822ae36a0b286e2805ada86e88150d2f17ab9818ff264e2aaeb482f661b85b5819cfdbc551fdcb9f3bbf3ebb936c4b50fb2e75a046d1e72d75110df4f51f languageName: node linkType: hard -"@babel/plugin-proposal-async-generator-functions@npm:^7.14.7": - version: 7.14.7 - resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.14.7" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-remap-async-to-generator": "npm:^7.14.5" - "@babel/plugin-syntax-async-generators": "npm:^7.8.4" +"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": + version: 7.21.0-placeholder-for-preset-env.2 + resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 5cbc4569d3efaf230dde0f7b78d43079ae8fa69df619c87b46d540eca9d23c10583c56954dd3284d4327c2338c46a9fb87244a77ca7881c361c555b89c3cfd4c + checksum: 651bea9dda774514cad32fdb421b0245435c37b76c50265acef70537fea2a3b1b4218b1bfd9e2db0a206729e1297b22eb9d882e611b08ac54661a836f6aeda85 languageName: node linkType: hard -"@babel/plugin-proposal-async-generator-functions@npm:^7.20.1": - version: 7.20.7 - resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.20.7" +"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4": + version: 7.18.6 + resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.18.6" dependencies: - "@babel/helper-environment-visitor": "npm:^7.18.9" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-remap-async-to-generator": "npm:^7.18.9" - "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.18.6" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ff805523cb3241d319ab58f11602c77ff936ce1fb8d1deeb58923d567eec1c7ff2691a279485583d448fd90d44954f2d51f736d5d9b003bc17beab479d38ee60 + checksum: cb478bcdb48c37c67a8e65903c6fdfea07a3e66447f49f07691a4edfa6a0a3a984f6c685a057884ca13568d6799aaee295b335bece9f046dc9929cc0f201193d languageName: node linkType: hard -"@babel/plugin-proposal-class-properties@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-class-properties@npm:7.14.5" +"@babel/plugin-syntax-async-generators@npm:^7.8.4": + version: 7.8.4 + resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 2967f090999b16dfc05c06a242c8669dbddeb5256e41dac48828857dbec2a8b5f2aef1aa444332f85e843188a15a4d3f4cd0e124260ab8516d1ae1b181febb25 + checksum: 518ee81097d43f6a439cfe91c708cca9bf67a32f0ec6f65df3c34d8b1ce51b473f77040345684792c60ac89e1c78c0a6eacbc31592bc1d912f06e9e0c3f80716 languageName: node linkType: hard -"@babel/plugin-proposal-class-properties@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6" +"@babel/plugin-syntax-class-properties@npm:^7.12.13": + version: 7.12.13 + resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.12.13" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 31561c055d0693c1f4e6738c26fa6e51f2db703c05d9b3f522d75d2052f3c35dd2eae0a36ed433e84b26e5f41a45ab2c09339873720600c89f5121771396e0fc + checksum: 7a9d076a55d11a53bee2b2c5b05a827f0bc5e13b805d7cd801e3e39b4068b88ca6ed5c7ae7ed2df5259e02515cc0f095468bd8ad4f0609f32adf3abfa3d077cf languageName: node linkType: hard -"@babel/plugin-proposal-class-static-block@npm:^7.14.5": +"@babel/plugin-syntax-class-static-block@npm:^7.14.5": version: 7.14.5 - resolution: "@babel/plugin-proposal-class-static-block@npm:7.14.5" + resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.14.5" "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" peerDependencies: - "@babel/core": ^7.12.0 - checksum: 6a97a876027bd6b50d1ca1fe8e01fc620085c7da7c3ce787bac07464c93049719abc4cd56bc017ad08a34be7aac61fa75201c8e2fc5909cdfdee707cdeaca75e + "@babel/core": ^7.0.0-0 + checksum: a9f8be55e4182dedb4204d16c60cfeeda7ab8a1e01943799fca7ef9bbfad1a84a65b4f768649300203d8035cc1ff0c373d0c56a635305e44df90778b1c4424c3 languageName: node linkType: hard -"@babel/plugin-proposal-class-static-block@npm:^7.18.6": - version: 7.20.7 - resolution: "@babel/plugin-proposal-class-static-block@npm:7.20.7" +"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.20.7" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: - "@babel/core": ^7.12.0 - checksum: 2a8a72acd0778eb43aec52f0aa53a1f52c3a3f031de3e13db5fe5bc7b25cd3abe7a39421c6a710baa9df8d7d878fd24607e03abfe864041bacc133e1e2b7fbc6 + "@babel/core": ^7.0.0-0 + checksum: 5552799d34dc934c8b7ccd796bd47f3d6e6413e5f863effdc1f3575bc14865e1737d6c48bf2ac80489c27d0e1240a7a19e38876853b67ab976f6c3554e2675b4 languageName: node linkType: hard -"@babel/plugin-proposal-dynamic-import@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-dynamic-import@npm:7.14.5" +"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a7d8ee7218e05da38c74cf118d72db6a1f11cd0bc4f02851109973d01231dbd2b2ce8906b2f06486ff16db259e4199780da70e309067e541c4e8be4c1727df79 + checksum: 100efed7687c752a9cc37d32fa64e537838f2cbc128393b078b1d1894b4bd3a9055365a6249f0716710ee427377a0b00e9d7e9573f59842b797b727e3c90b402 languageName: node linkType: hard -"@babel/plugin-proposal-dynamic-import@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-proposal-dynamic-import@npm:7.18.6" +"@babel/plugin-syntax-import-assertions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 5ae2b563b314b74e740a658eb7735169af91b85867aeaffd4f688dfed8bfcaff404338d88c21d6c5fc3219b945b36088374bc888688367ae73774b461f4dce46 + checksum: cbed5306521dc8dfc23209d7499fccbcde3208b0ae0a7780dfd269f46009e51284c6be06aad74890fd44325e2977a47941ab92e033f9a8f1be648816e4222a68 languageName: node linkType: hard -"@babel/plugin-proposal-export-namespace-from@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.14.5" +"@babel/plugin-syntax-import-attributes@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 4f9d871bece4d7c86e04372448a2dc49c7dca5745499fa8a62533f45024f84433a2c1379ca70c2c8402e02dee8d9d1dd3ea9d4dbd7df6ab6a9273050f732ae66 + checksum: b18967e4b6dabdb0d35b60825d78fe92a18f3c1f3ddeeba7b559c132e163070a40b253faf5a5662ac11360d79c1b04b06e97e35d5646df60608e585650929c3b languageName: node linkType: hard -"@babel/plugin-proposal-export-namespace-from@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.18.9" +"@babel/plugin-syntax-import-meta@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.9" - "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 7fdc17902f379e554db2b7b17f2b9eb60cc1b1db2fd0c1bbdec0c405c302daa7447b5db0adeffb21e1db6e960fc616f9d1af71e31d52019c03b8d382d3e9ab62 + checksum: 8513fb2d4035e9149f2faab57908aca2a354fb05deecaa681e659178c749e01c81f703b4c5fe6f4ce816e57f31ca2e9b625a5b43d29327ffce3d310722d958bd languageName: node linkType: hard -"@babel/plugin-proposal-json-strings@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-json-strings@npm:7.14.5" +"@babel/plugin-syntax-json-strings@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 9c1baae22af2a1d76a7262ceabbd9969d84e9dbd0ec58fa2e791af85c3146bc080f4bcc6981444a76ffe69ae3f47d4eaabc900a64d6add55d282a7543659dda4 + checksum: d21aa96f15268f923f70e49155059ca220a7f7da3cec5072121fb8342527fc9e5753455cd61318054a170b1ecba13fd1891eb2c67f28a1c335af5bbaf52b93d0 languageName: node linkType: hard -"@babel/plugin-proposal-json-strings@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-proposal-json-strings@npm:7.18.6" +"@babel/plugin-syntax-jsx@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-jsx@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 07d1b37ca2f3f328180cf22f113af59225059df4712b8a6d41e600a2f3eeddf1d145042c811b4774892d0ef3a49f296974b82cf8d7d46f99c84f2c70dbe0ad28 + checksum: 6ddd9a5ad7d16700c9cb5b809af274c64d95c25a37034918c26027416b42b29d4e32b8d423452dbbead27619dea41588165155e9c066a5e3c7345dac78341ff3 languageName: node linkType: hard -"@babel/plugin-proposal-logical-assignment-operators@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: aa66cd43067ac2bf15df7e25cc1d4c4e98346310ddd1a0454a2b5f566d4db29c5a51b398dc853f75098a72e7f40c54cad126f0001bf784b4b790cdcbac29468b - languageName: node - linkType: hard - -"@babel/plugin-proposal-logical-assignment-operators@npm:^7.18.9": - version: 7.20.7 - resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.20.7" +"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" + "@babel/helper-plugin-utils": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 9a22c873b14f3d5a4593f57549598d514c2792df12ce8507dac1375e49cdf94f118da8c34f015247cba7ff36446a3a71a0ca89d94e8cf70ba692d5e1015a7e95 + checksum: 3a01f61a5b0f429dadbfb58d979c550c496ead9121282319406398cc76f7a6dfb58c20c9782b6b1b1b74f938add3edd962a3f699bf407deda003f84708b94c7e languageName: node linkType: hard -"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.14.5" +"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 52d8fcb494ae2ce4efefca3fe857ee14d0465f45ecd8c32ff48622733ed9c0cd404944bd08622d500895608336bb0b00a09843d14a548bcd219234aa83871694 + checksum: cc19c595a643531cdfa41eb9d5941ae1734049d9fdad127ed262225a657d3c2dce95aeb3e40019e6f1b0403e1656fc6170b43c2fbafceab0d6fa2502a62c91d8 languageName: node linkType: hard -"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6" +"@babel/plugin-syntax-numeric-separator@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: abe2f48358d1918d741352ee994371b8a934c7dd20e5962fdc564fe28f8986715a10acabc99ca883ee3195823d9f79096373848afb455bf61934fc4f81e11258 + checksum: 32689c162862617fad6bfd12efed7523bf9985d396cb3eec12ef1fc96ba225600d3ea30c22051bb21dd8c8fd156fdef366e44150c3c19ef7eb7a85903a9445b4 languageName: node linkType: hard -"@babel/plugin-proposal-numeric-separator@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-numeric-separator@npm:7.14.5" +"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 904d71668818c2a1f58c37824f8536213935a5cd4c9434dd11897d35215b3ae3e8c1fc142c55d396c38aceb23976a3f182984ba1fd8adb63835e14ca1d297cc3 + checksum: 868f8cd0c2e10511056a089dab2e88f329b432b81766702de1d8970a785fdae32bd022a69359a7ca6fc58d4767418b871e88fe99ab4209afbaea5e62ebd82ada languageName: node linkType: hard -"@babel/plugin-proposal-numeric-separator@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-proposal-numeric-separator@npm:7.18.6" +"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 6aea22e506394659f43ce083c31b53f0d79d3942afbabd499efe8b80aec35e60e2ea13559e14397fd753613bc0985a02d2dc0e68e2bd52b03ee325482b007707 + checksum: c6277360d55c4b4dbaca9fbaf279fe2783e1c0cc1f8edb41feb6f14d5b7ce1f25ca1ab4cf3d0e78411a16d3ee36d4ffd3ee30d07dbf47b67880cd707492c3158 languageName: node linkType: hard -"@babel/plugin-proposal-object-rest-spread@npm:^7.14.7": - version: 7.14.7 - resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.14.7" +"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" dependencies: - "@babel/compat-data": "npm:^7.14.7" - "@babel/helper-compilation-targets": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-transform-parameters": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.8.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 53c3a0589a16e227aa3eb09c9705f0291896b7ee43285dba70016b165232e20d35b9babc898d98dfc9b75df676cc94c731bd48a63840262c44774235e0c34df0 + checksum: fd81239a2b6c02b3f8cc2abc94db405afb8292133602a9d649985f40ca92153fdfca812dae6ac273a5bd7752c1a46cd4835e5a8bcf3541388d4ece480657fe7f languageName: node linkType: hard -"@babel/plugin-proposal-object-rest-spread@npm:^7.20.2": - version: 7.20.7 - resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.20.7" +"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" dependencies: - "@babel/compat-data": "npm:^7.20.5" - "@babel/helper-compilation-targets": "npm:^7.20.7" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-transform-parameters": "npm:^7.20.7" + "@babel/helper-plugin-utils": "npm:^7.14.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ebe84ed600aaa5a2b230bb2ebbbcd9a50e3b57828ec4d3c8d2299175391b79ef5969655221347aa742ea0f630b0731ed45819659144697ca63c0d26e7122b2e8 + checksum: 944728155d4fc2f5dda9e81cac64a773f2b800cb19d2c9361d111a6fccb354dae8517a83bfc5abf5d557b10db2e759d1b48cc002f2330c46cff09339b76a987b languageName: node linkType: hard -"@babel/plugin-proposal-optional-catch-binding@npm:^7.14.5": +"@babel/plugin-syntax-top-level-await@npm:^7.14.5": version: 7.14.5 - resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.14.5" + resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" dependencies: "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 2b41497b3c415ccec2277b9710fc80fbcd8d15dd0e5c843b0e53855a4668527f8c2a30bb214c7974564500074a0e010555d536a39476004e15c297b95da69c11 + checksum: d62a60c7ade2ee033c6037d1fbabb9802c8e03a79e19d33e2fb597f85b2a1a90f6718cdb532252d69ae005e3ac3b1fd29860c1858f8463c3700a81d681967473 languageName: node linkType: hard -"@babel/plugin-proposal-optional-catch-binding@npm:^7.18.6": +"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": version: 7.18.6 - resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.18.6" + resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" "@babel/helper-plugin-utils": "npm:^7.18.6" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 792601eacca8714c25f8e6bb06734e3fed1a52ef5cd3acd070a8480c0e0344c5f3546c165502e59163f09fa7405393a90981106e01c06dff1d7639ca77f2263a + "@babel/core": ^7.0.0 + checksum: 58b5b9d3a27717df15fcaad2f24484d9b9ce206be7498f0613e61a0ffc58f450d68eb388add8d99da59217445ea52a6a63c4be88ba016c198ee5ebf8d773cead languageName: node linkType: hard -"@babel/plugin-proposal-optional-chaining@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-optional-chaining@npm:7.14.5" +"@babel/plugin-transform-arrow-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.14.5" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 1a451940331b33f43cb76a49871d9bf9731649de93b0ac90f4bea32f232042363ee370088f59924c5071fc73c3c1e1e4dc6ae84b3f21646842039e1991efa4d0 + checksum: dc87fc0e9dc848e4d1db2c28dc8c1bb6bc85b83a5b791ced2d878f4b38ff72543a4e87bb78f4d74ddaec9a33da813a019b4be4ef218b7250d539a34fd9c601ea languageName: node linkType: hard -"@babel/plugin-proposal-optional-chaining@npm:^7.18.9, @babel/plugin-proposal-optional-chaining@npm:^7.20.7": - version: 7.20.7 - resolution: "@babel/plugin-proposal-optional-chaining@npm:7.20.7" +"@babel/plugin-transform-async-generator-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.20.0" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-remap-async-to-generator": "npm:^7.22.5" + "@babel/plugin-syntax-async-generators": "npm:^7.8.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 8f5b4343088225599a243f297334b4c52247e42c1ab4f8babbdd796be82029bf5eccf06f894c76e843d34fd5da882bb66f4a37af744f48a29398b9c3cfc41b08 + checksum: 5e3beb162199250195480707c3fb609dcca59822e46576a11baee28706f7cc794962f875f59420e4b2c5e41e7138cb95fd2612b05985bfe21e84dfb25b067ade languageName: node linkType: hard -"@babel/plugin-proposal-private-methods@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-private-methods@npm:7.14.5" +"@babel/plugin-transform-async-to-generator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.22.5" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-module-imports": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-remap-async-to-generator": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 22222309ac97557e8a90e294fd6b8fb219543b1f8019e907f2b2524167756ba7e8e721aa59ab2491655803e3a2a260e6a162cb474688d6bb11116a395eb33554 + checksum: fbc7b2ff4509b8a32bd949d375b6036cab209c9bbacf5e3f64ccd34e82b8933b37473df2d113a1c2174927ade2ca233d6977ea050a2cfbfb997790c3912ed45a languageName: node linkType: hard -"@babel/plugin-proposal-private-methods@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-proposal-private-methods@npm:7.18.6" +"@babel/plugin-transform-block-scoped-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.22.5" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ead2a2435e83b8571a21a26df15502a470a1f73c21a790c1f8830508a21c68621b23866e04495901fa2fc482bfa7909cbab7c55266dfddf3b50c0f65ffbc0201 + checksum: 368de8c5139303200c39cdd1df7681d6d4e7de96ab63ae5116ab18d290ac399cf15bd237c0a549ae1d38a3f984300e4378693ff0cc611b69c23bb24d92b910eb languageName: node linkType: hard -"@babel/plugin-proposal-private-property-in-object@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.14.5" +"@babel/plugin-transform-block-scoping@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-block-scoping@npm:7.22.5" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.14.5" - "@babel/helper-create-class-features-plugin": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ffed969f86bbdd9c30bda71d421b27b2e9581702d7eb0dc7b32a6a3cd2188bfbad36ab24301b76a8652126fea429d06400e37d6eb80dd6588e94215cf8b77c53 + checksum: 8ecdcfda2f839857f9bd2de2d46f42e8a1f25c4adfe8cd3ecabd10ac80ab19c557e17345a7af0e472498b14fee73e80073c66fbd7aee75e344c33fc3e1eb9d4b languageName: node linkType: hard -"@babel/plugin-proposal-private-property-in-object@npm:^7.18.6": - version: 7.20.5 - resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.20.5" +"@babel/plugin-transform-class-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-class-properties@npm:7.22.5" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.18.6" - "@babel/helper-create-class-features-plugin": "npm:^7.20.5" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 05555c6170eea76926659e7d125f3c733595e321727c95d922db2e4c5b661e93beaa1c79173ce497e09808e85465b8b0be6df6f551b430598d98d3fab2e7bca1 + checksum: 44131eea8a040bb87a570315b8f038b101f22e4fd3567bee3febbc6a0a06743370e3638cdf6790091e3f36f1fc1581b7de32cbaa7228f8f0a3f742b081a2edfe languageName: node linkType: hard -"@babel/plugin-proposal-unicode-property-regex@npm:^7.14.5, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4": - version: 7.14.5 - resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.14.5" +"@babel/plugin-transform-class-static-block@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-class-static-block@npm:7.22.5" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 23c863bea24a33477000a6156d75affd6b65dfc5ffde6b0afc84a1cfa7104fc5e68831fe72597e249d9c0f9cc999949b0b74881eced66db04c3782e36ca89c45 + "@babel/core": ^7.12.0 + checksum: eed885a019422e9c85292465c548d7079837753c450310ba8225d888062841dc6f2d9e6602a523bdb0c3d427d37491b15283aa2dee73da2fd9caee8b180e77f1 languageName: node linkType: hard -"@babel/plugin-proposal-unicode-property-regex@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.18.6" +"@babel/plugin-transform-classes@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-classes@npm:7.22.5" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-compilation-targets": "npm:^7.22.5" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-replace-supers": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.5" + globals: "npm:^11.1.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: cb478bcdb48c37c67a8e65903c6fdfea07a3e66447f49f07691a4edfa6a0a3a984f6c685a057884ca13568d6799aaee295b335bece9f046dc9929cc0f201193d + checksum: f95e41d22ba2150ee7ce9ddad642ec5bef244fd97f05e968671a02c1f198d59d98be7d6f86735dafa9ab2b72b0379aa9d1fa6860e9040d359d9a2a4eeff11147 languageName: node linkType: hard -"@babel/plugin-syntax-async-generators@npm:^7.8.4": - version: 7.8.4 - resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" +"@babel/plugin-transform-computed-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-computed-properties@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/template": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 518ee81097d43f6a439cfe91c708cca9bf67a32f0ec6f65df3c34d8b1ce51b473f77040345684792c60ac89e1c78c0a6eacbc31592bc1d912f06e9e0c3f80716 + checksum: 5aa56749d99b338206dfe9ae051541f8c9d70ac2882e6ecef687134eb657f15569ad1422a7856e45193891ce65a2d0efc5051afc59bdd3c2c49a087232a1739f languageName: node linkType: hard -"@babel/plugin-syntax-class-properties@npm:^7.12.13": - version: 7.12.13 - resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" +"@babel/plugin-transform-destructuring@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-destructuring@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.12.13" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 7a9d076a55d11a53bee2b2c5b05a827f0bc5e13b805d7cd801e3e39b4068b88ca6ed5c7ae7ed2df5259e02515cc0f095468bd8ad4f0609f32adf3abfa3d077cf + checksum: d55b7a036b192a33b1375855ca73152d7e2a0014e19eea908c08718de95d22f5ff1b75055b797a593ca8364732c8e15d3644a46576d2c998f04981557e50848c languageName: node linkType: hard -"@babel/plugin-syntax-class-static-block@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" +"@babel/plugin-transform-dotall-regex@npm:^7.22.5, @babel/plugin-transform-dotall-regex@npm:^7.4.4": + version: 7.22.5 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a9f8be55e4182dedb4204d16c60cfeeda7ab8a1e01943799fca7ef9bbfad1a84a65b4f768649300203d8035cc1ff0c373d0c56a635305e44df90778b1c4424c3 + checksum: 6c9303afec302636381c68cff710faeb06c207ce8ec46a844b5a9d14875f4c6946d809d2ba97c7b421570cf043da45faf09fc8f9b334024fa64f54513c67274b languageName: node linkType: hard -"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" +"@babel/plugin-transform-duplicate-keys@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-duplicate-keys@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 5552799d34dc934c8b7ccd796bd47f3d6e6413e5f863effdc1f3575bc14865e1737d6c48bf2ac80489c27d0e1240a7a19e38876853b67ab976f6c3554e2675b4 + checksum: a016f6feecee3d84ef90dac3f4396f4582073e5fe1a922698fabef477d5ba0b52af10627ba02fee0b024d5dce8e659bf03f588200d35c2eef8f6210cdb79ae6d languageName: node linkType: hard -"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" +"@babel/plugin-transform-dynamic-import@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.3" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 100efed7687c752a9cc37d32fa64e537838f2cbc128393b078b1d1894b4bd3a9055365a6249f0716710ee427377a0b00e9d7e9573f59842b797b727e3c90b402 + checksum: 2d932ba18eeeb3ed0da215fdce9d50e595b4f5bf04f2e98043986053ddd671ebffdcbfd9c5b414ffcfe46b7a76026c0d42b8f448a1c9bcbbce8015e873843f9f languageName: node linkType: hard -"@babel/plugin-syntax-import-assertions@npm:^7.20.0": - version: 7.20.0 - resolution: "@babel/plugin-syntax-import-assertions@npm:7.20.0" +"@babel/plugin-transform-exponentiation-operator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.19.0" + "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: aacaffc396ce5d55b577bde778b9aaf8a6fc65e5f0697ae57a8f9020c64c239a50983a4337963eca7909c89a145411be4ec15e02229054f4d0397fa0b9f2e950 + checksum: e3fcda7a952fd9a5ab3ce4981a3bc30f0c29368d88b93b952efa70842d3f643e95bd99130b987f43852e6b5275e371fee64903db40e298d5ee02ad3eaa57fb4e languageName: node linkType: hard -"@babel/plugin-syntax-json-strings@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" +"@babel/plugin-transform-export-namespace-from@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: d21aa96f15268f923f70e49155059ca220a7f7da3cec5072121fb8342527fc9e5753455cd61318054a170b1ecba13fd1891eb2c67f28a1c335af5bbaf52b93d0 + checksum: 5c46c9a52749e595543b710284e68dcc0c7f66abfbd1b1cca87f47a273133e83f8e0bc7c2123fc76a6cb592570d1c60ec42d1a4d1e3e9f57c0400f3200941c2b languageName: node linkType: hard -"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4": - version: 7.10.4 - resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" +"@babel/plugin-transform-for-of@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-for-of@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.10.4" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 3a01f61a5b0f429dadbfb58d979c550c496ead9121282319406398cc76f7a6dfb58c20c9782b6b1b1b74f938add3edd962a3f699bf407deda003f84708b94c7e + checksum: 4cd276e570631797376df72f3de4afb129ed5d7093ef6e6a566c220a26f7f2caf3b85d56dd189ac05a716762d266b52c313de5ec4b2c51a7a8004ccf6cbe8cf4 languageName: node linkType: hard -"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" +"@babel/plugin-transform-function-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-function-name@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-compilation-targets": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: cc19c595a643531cdfa41eb9d5941ae1734049d9fdad127ed262225a657d3c2dce95aeb3e40019e6f1b0403e1656fc6170b43c2fbafceab0d6fa2502a62c91d8 + checksum: 725bb9f332e602ac1da5288d287bca6fdf042f27a93dab65997f773660a96c622d5ea2f74209618e9cbde0b1e2b8de39512406ac0e4efb53246496bdafa855c2 languageName: node linkType: hard -"@babel/plugin-syntax-numeric-separator@npm:^7.10.4": - version: 7.10.4 - resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" +"@babel/plugin-transform-json-strings@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-json-strings@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.10.4" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-json-strings": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 32689c162862617fad6bfd12efed7523bf9985d396cb3eec12ef1fc96ba225600d3ea30c22051bb21dd8c8fd156fdef366e44150c3c19ef7eb7a85903a9445b4 + checksum: 932a3747db4b89ae74c2ebb829e73fb946356aec7904a5dc38590f8b6143f9e5b1a7f267288256bdd4e9140b5ced212d1755d6301a8f4e6b8648ed2d388cb580 languageName: node linkType: hard -"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" +"@babel/plugin-transform-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-literals@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 868f8cd0c2e10511056a089dab2e88f329b432b81766702de1d8970a785fdae32bd022a69359a7ca6fc58d4767418b871e88fe99ab4209afbaea5e62ebd82ada + checksum: b3e9deedc88f22311c677e79d2648507f2230d7290c4c714d0386d2edda670ac488ab803c6ac1b452e8fed3cd07362a5f4fefac7d442d140c139e2ecadab6fb9 languageName: node linkType: hard -"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" +"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c6277360d55c4b4dbaca9fbaf279fe2783e1c0cc1f8edb41feb6f14d5b7ce1f25ca1ab4cf3d0e78411a16d3ee36d4ffd3ee30d07dbf47b67880cd707492c3158 + checksum: 3f9979001c46f2ce21110ddf062abdf8d51b724f6718b22c8d3e1d334af1c12794d6f9c84850a443c7ee09222c23904fb19af577bb90cfc6a053fd3b3c51a689 languageName: node linkType: hard -"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" +"@babel/plugin-transform-member-expression-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.8.0" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: fd81239a2b6c02b3f8cc2abc94db405afb8292133602a9d649985f40ca92153fdfca812dae6ac273a5bd7752c1a46cd4835e5a8bcf3541388d4ece480657fe7f + checksum: 563e2f3bf239d52d53a697e63ab7e30bc17665507f09e689b84a646b573ffa029b42a0a589d0a3116450354d5b8ea311fdc837f4a5f9924ecafb3123e1675a62 languageName: node linkType: hard -"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" +"@babel/plugin-transform-modules-amd@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-amd@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 944728155d4fc2f5dda9e81cac64a773f2b800cb19d2c9361d111a6fccb354dae8517a83bfc5abf5d557b10db2e759d1b48cc002f2330c46cff09339b76a987b + checksum: e8f5ab87741973af05b0f2da08d73cb926000d4aac9239603c4a5e53a27f1907634a11e904553928b288f4ce8b4c5b9dfc2f744add3c21af40db7ee8a6519d64 languageName: node linkType: hard -"@babel/plugin-syntax-top-level-await@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" +"@babel/plugin-transform-modules-commonjs@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-simple-access": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: d62a60c7ade2ee033c6037d1fbabb9802c8e03a79e19d33e2fb597f85b2a1a90f6718cdb532252d69ae005e3ac3b1fd29860c1858f8463c3700a81d681967473 + checksum: 1d7f0a01a1773138800bb9f019f77a5f0a8ce1973eb4f47dca9d0ba728dc56ee2b7990bc70446ae6812952f8cafa1ddd58588e2bbdbcaba8f848dcb13ee4414f languageName: node linkType: hard -"@babel/plugin-transform-arrow-functions@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-arrow-functions@npm:7.14.5" +"@babel/plugin-transform-modules-systemjs@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-hoist-variables": "npm:^7.22.5" + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-validator-identifier": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 4fb0a9eeb91039ab2ecf1b5bb14eee0e7d84517e741ca4dc05b4ff95138d119fa06df31f06df3472f3bd7e205a8572233dcdc243d39c48249cd7154f8c2be03c + checksum: 5f4185925c912e316abeb3f1c33119860885d048eb7ac29c378b3908aec4016114a0494a9c629e25e9f8cb91838007e7f9082e483acbe8218028ec66e4a8c943 languageName: node linkType: hard -"@babel/plugin-transform-arrow-functions@npm:^7.18.6": - version: 7.20.7 - resolution: "@babel/plugin-transform-arrow-functions@npm:7.20.7" +"@babel/plugin-transform-modules-umd@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-umd@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" + "@babel/helper-module-transforms": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 39394ae89555cf2c3ac8d411c1116f9061efc42a1e34139442da23c396b563d96b472bcdbd0f4e570a99c6d7b93431574379da6518b7a817a7e9c6f365289453 + checksum: c668f9189fc96498bd8ccd2592b7db1e96ae375830bf0e00bf6e75f0d9427c9ebac75fa96608fe74632b8659170bfb0bc53a6b2e252be44d9e33b258771ab327 languageName: node linkType: hard -"@babel/plugin-transform-async-to-generator@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-async-to-generator@npm:7.14.5" +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5" dependencies: - "@babel/helper-module-imports": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-remap-async-to-generator": "npm:^7.14.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 44dc2735c0dec2207f499d90fa48fc65ce4afcabbf231925251fa35b57a78194846592b94e8f20346476afce6456a38848e882ec2ea7a9054cfedbfac591793d + "@babel/core": ^7.0.0 + checksum: 81ad65c1f169c1b6373e6b20f9252542caa99133912bffd238cde32f609c87aa628db7cb226f8db99d73cac18dd8d7b2f13c585884371e03bc1d63da35cbf218 languageName: node linkType: hard -"@babel/plugin-transform-async-to-generator@npm:^7.18.6": - version: 7.20.7 - resolution: "@babel/plugin-transform-async-to-generator@npm:7.20.7" +"@babel/plugin-transform-new-target@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-new-target@npm:7.22.5" dependencies: - "@babel/helper-module-imports": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-remap-async-to-generator": "npm:^7.18.9" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a14c066d83750388f2306c7714678077e7f3bf1888374a78a12cc5d394d70c0cadecb53bc18744dec1115625eec33ebaa198da589527d8abd2312dd6ff19da58 + checksum: 241f7e6fc744e56f14653d638f58cab7a8ab65d2af9dca32a83ca303ab4eaa86d01d288882acc7e390a71b5edd6fbe4c2595f2ff15ad09c0bd72bf44125ce0a1 languageName: node linkType: hard -"@babel/plugin-transform-block-scoped-functions@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.14.5" +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 66d99743306825201d705f97a7e525f8372ef870fbb37303107aeb1f812a655ef256c1f5a18550a3ac77f1fe304cbc4e10cb2bb2b4883768f7c93c30ab6bf89b + checksum: e8cdba9db777a293bcf490f1783ae50562434016585483d061cb4bc4a6c4ecc80e303ac392203a861d50d6835ddbfeabf6bbb4cbc8b2af8bca00d2db66906f7c languageName: node linkType: hard -"@babel/plugin-transform-block-scoped-functions@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.18.6" +"@babel/plugin-transform-numeric-separator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 34ec13635c2140b089fb63e79fd3888c0a19ec6c37a24c5157febadf85dfc66c0b1527b07006dca9bfa2bc3e5009eac2b7207f55b505ca3ee65ebdcf7fda98eb + checksum: 527db863f73139db7d4db3630288e18021588de6b5a88cba27443274013c9d534bc68217cc621eeabee33e305d42c86ac910af1b51cba101c4e0b5c4673749e0 languageName: node linkType: hard -"@babel/plugin-transform-block-scoping@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-block-scoping@npm:7.14.5" +"@babel/plugin-transform-object-rest-spread@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/compat-data": "npm:^7.22.5" + "@babel/helper-compilation-targets": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" + "@babel/plugin-transform-parameters": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 9db2738b4771c4d612b6d5870be6c9e8ec9bee81d81e716e76aab480cb5766e2d9b8efbb73dcd68e99777dd35741658ef8634ba1d3c7063d770b501983da1397 + checksum: ce361c11c450af73375717bce50f9389612827481ef3d61efe856093faa3d6f77e43d14e3f43ef254e0a611c35dce1f023c76589756ebc393720ee85c3c40548 languageName: node linkType: hard -"@babel/plugin-transform-block-scoping@npm:^7.20.2": - version: 7.20.15 - resolution: "@babel/plugin-transform-block-scoping@npm:7.20.15" +"@babel/plugin-transform-object-super@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-object-super@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-replace-supers": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ca3526ce89967366a4178d22ceef20837c09acabd4c57a60a26d3f2afdd68d784d66e4f6fc97d249f31676a0f5b701d122c35172a842d42b793b939fc885b341 + checksum: e1477f67934e0243dc9c7decaad03bac731bceec06760e611fa622be0e3ec977f729a6a0d71a4ccc18f1a2213c4e3bdb2065ca97901f8e802ae097d655440f46 languageName: node linkType: hard -"@babel/plugin-transform-classes@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-classes@npm:7.14.5" +"@babel/plugin-transform-optional-catch-binding@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.5" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.14.5" - "@babel/helper-function-name": "npm:^7.14.5" - "@babel/helper-optimise-call-expression": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-replace-supers": "npm:^7.14.5" - "@babel/helper-split-export-declaration": "npm:^7.14.5" - globals: "npm:^11.1.0" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: bfd0cb721c72dd025bcf7c8b9b0e60d51b584cdeb7644e1b3b6da828da811b141672076d16dd344102e8f4395cfd067b7751297ed1395bcfb05ebff89067132f + checksum: 9fd7ab5218b06f7e81b0aa2a9b90f69aca54456af2bbe6bd66a3ad49ee4849c5d04c9836a2a64a3dd45ee7fbb72faa0f2be14728b34ef5bf08287b41e18fa4c9 languageName: node linkType: hard -"@babel/plugin-transform-classes@npm:^7.20.2": - version: 7.20.7 - resolution: "@babel/plugin-transform-classes@npm:7.20.7" +"@babel/plugin-transform-optional-chaining@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.22.5" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.18.6" - "@babel/helper-compilation-targets": "npm:^7.20.7" - "@babel/helper-environment-visitor": "npm:^7.18.9" - "@babel/helper-function-name": "npm:^7.19.0" - "@babel/helper-optimise-call-expression": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-replace-supers": "npm:^7.20.7" - "@babel/helper-split-export-declaration": "npm:^7.18.6" - globals: "npm:^11.1.0" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e5424ab54629480d46e1469ae36d9d73e298468d63ea1a173175c69bc21672e8aef8835125974f00a544beaa9e3e0d83064a647229501e4b3c559f8a25791fe0 + checksum: 2dbef526dd207d1c1f251c73f349c756d3bb5a03398ec216e898d5b74bd3f03abfc8d71dca9ff7dafc6ece5f74239e45283b27a113da8f6f6588fda088504c52 languageName: node linkType: hard -"@babel/plugin-transform-computed-properties@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-computed-properties@npm:7.14.5" +"@babel/plugin-transform-parameters@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-parameters@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 586ba6afca683677b29f771fb41009836b5ef3f1f43f214cbc632e3095e358ac2f9dad5f90a75f3271c17fbe075c1319957fe13ada89d8798fdfe841446c24b3 + checksum: fa39c08284514c69ce12284b13d9d955588b9a114094851ed62490384693e9dfd279bc287a3603920be20005c88f6dace38dcd50b36cc9f17a11e04bbf94ace5 languageName: node linkType: hard -"@babel/plugin-transform-computed-properties@npm:^7.18.9": - version: 7.20.7 - resolution: "@babel/plugin-transform-computed-properties@npm:7.20.7" +"@babel/plugin-transform-private-methods@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-private-methods@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/template": "npm:^7.20.7" + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 23f8e4f8a6e62fb26589a5fc5f782ab309ab08b31b20984480e89cbca4cbf77ca4e4379e7d4b4eb85d9d3c078c73353b076ed1e7cf784cfd82c4fa441abeb3e9 + checksum: e813345fa2b5f7fc04bddb202a185354ddc79e66be09a362319ab6722733dc6e420ab19a364b080ff23239ceab52df6dfd1bd01c20636bf8372d5f7864f5e0b8 languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.14.7": - version: 7.14.7 - resolution: "@babel/plugin-transform-destructuring@npm:7.14.7" +"@babel/plugin-transform-private-property-in-object@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-create-class-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 08daff547bd659a48a3d05ed8179d36efa22871d2986629eb80b47aadc4ae44270a3f92b0a8d76043de7dd9910d44d1743ea94d1332f4a8dbe4be7a03f3439fb + checksum: 34948c1d084146a241cbd692a740d869be88592a5e348d0d057f4cd0990c343903c9158a1afc50b118dc6e782aea6d7f5467817bbd76378d46fd4ed9d4b69a39 languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.20.2": - version: 7.20.7 - resolution: "@babel/plugin-transform-destructuring@npm:7.20.7" +"@babel/plugin-transform-property-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-property-literals@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 9a10125cca58457c284509b7c3208cf04df53b54c9716e265dc618198eef1e08550ec1be50a3141801f223b8fb834e82d23dc59d66d9a2b2fe8f3ad61e91f963 + checksum: b6f80738eb3fdadc6c83872381a7b0801d7d093c600eeb62a09bd65de4f34d0b3a9d30a92349b081bb7755236a83dd4a45cb832979033ea142bd8c0250c47031 languageName: node linkType: hard -"@babel/plugin-transform-dotall-regex@npm:^7.14.5, @babel/plugin-transform-dotall-regex@npm:^7.4.4": - version: 7.14.5 - resolution: "@babel/plugin-transform-dotall-regex@npm:7.14.5" +"@babel/plugin-transform-react-jsx@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-jsx@npm:7.22.5" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-module-imports": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/plugin-syntax-jsx": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: dd88ec029d1c4dd32a25b5b484b3c78ede5dc55fdbc8fb64a61707beb8ce7c4e92d87a380195229cf3fbfc16efb089f364ace3b0c54867527909507d6bafbc52 + checksum: e0dc70e2182000aa4898a66ca935d9a126349c8d5f7e05413140ce936bce47d571502f79ee1b9c16928dad0a4c09d028c752475dd750a6f979da2849969fbb68 languageName: node linkType: hard -"@babel/plugin-transform-dotall-regex@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-dotall-regex@npm:7.18.6" +"@babel/plugin-transform-regenerator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-regenerator@npm:7.22.5" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" + regenerator-transform: "npm:^0.15.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 1d2add05dbbaef2b116289ae7d0f8aa6d3e7e7c57cfccebb0e42d7b659b881f7842d058f8849e3a44f1440c34ecc8f56b7ebdc66a2d2641dc5020bf292aa0a4a + checksum: 5b435ee2a670d93dc93b7c83a38e3eb35194669d1cbc30d36c63e8c8c46071aaf8d113e922e233261aa54e65c2950c304f6026c2da32a3b3410220f61b15d5b1 languageName: node linkType: hard -"@babel/plugin-transform-duplicate-keys@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-duplicate-keys@npm:7.14.5" +"@babel/plugin-transform-reserved-words@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-reserved-words@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 4bc31f58128b206a386d852f42e7ce41693d4175c8aca2d4c05edff0431eef3895defab5fd0589fa8a0e213941993806d7d7714f3d7ee925f98009cdc4e78570 + checksum: 9ec414f40f8a3b5d76dd2de933244b5819d5255e21fee1dda4594ac4a90724fc3e555b1cfe77c2dc6f14e5625b4a1c292619d952aa0f4d73715291292477f74f languageName: node linkType: hard -"@babel/plugin-transform-duplicate-keys@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/plugin-transform-duplicate-keys@npm:7.18.9" +"@babel/plugin-transform-shorthand-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.9" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c4a9d84500f525e0137985d709f84f175ec5f9252977f6775fa34117a6b34afae411e74a5ed455e39bcf29a38254f7b4051440ff0d538ef60850f28b4a6e2c6c + checksum: b9cbcd6ccc056f71e14c09e7a5502956a0c76ef2c588d6a7fd9b878787769f62240d7a7c271a42e70088a0fd7cc75045c4a231186abb211183413d24df7fa8dc languageName: node linkType: hard -"@babel/plugin-transform-exponentiation-operator@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.14.5" +"@babel/plugin-transform-spread@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-spread@npm:7.22.5" dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 8f4d608458763f8237e54b1937f24aaf57dead6a7d2bedebd9d66101cd4c928bc48512b7ca4ce178f283ca0b2e1e2066658ea7583f273c6ef52988297bb7a621 + checksum: 7b86800cb5ca8390e4e45a05201de0cfcfaad18b499b6e60d903073d9a606a346bb1b8902b7f000fbb4679c97e8ec85815e9491d0a2bfad67342fbd281d22720 languageName: node linkType: hard -"@babel/plugin-transform-exponentiation-operator@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.18.6" +"@babel/plugin-transform-sticky-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.22.5" dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f74b8b8e99bdaff935ffe23d4d72ce9d81050e71ba36caa7a0773354877fe51f00626981f822aa0d9ef7abc0a6c3731ccaa14f83e1642ac154c7b418dd2f06e7 + checksum: 30a6095dd8bc4ff8fc3dc77aa83ab4a6928cff6bb3d0bc799ad5f88f57d02c4415f07dd32fa38b0d40f5b29bca82c6be2fd3b470a246d88592eefef02dec449e languageName: node linkType: hard -"@babel/plugin-transform-for-of@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-for-of@npm:7.14.5" +"@babel/plugin-transform-template-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-template-literals@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 44d1eff72f2fa16cd88b092b076c81597e2094c2dd3df7d3555f80bf7d857737a6908a5b80b290ca8073e469e0caf8db5ecd62795b9e20f12469a2e7c75bb1b4 + checksum: 6e3e5710a39ecfd74524eb55a12ffaccfb6a5fcb923661f1269c5e77c261ece893913995af5e1b2559a0bf5bb32a589b4bad358c19e1fa91528fcf00cb044b14 languageName: node linkType: hard -"@babel/plugin-transform-for-of@npm:^7.18.8": - version: 7.18.8 - resolution: "@babel/plugin-transform-for-of@npm:7.18.8" +"@babel/plugin-transform-typeof-symbol@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: cf76cdab736f2b615f3c084375c600e9df02a6c0b2801f15599ffab6bcfd045b0bb483eb8a5e3b9776485b652745e99aeb01b1277dc7a9bc52df08c5665d1f97 + checksum: 7d4c6e51112a0359f5a77e566786edf6551eb78f5ca308bc083bb470434cfe1c6f2652d8130964cc1a8cea6be9edb8ff19506bbddb1b7ce5c7f6db037c22f70c languageName: node linkType: hard -"@babel/plugin-transform-function-name@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-function-name@npm:7.14.5" +"@babel/plugin-transform-unicode-escapes@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-escapes@npm:7.22.5" dependencies: - "@babel/helper-function-name": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c7b425ab331280e713c5c6ab3cdb675719cc48129d8a1530fa8385982b10004ab2a8d8a086c3a71bef04124f78bd77d5df79a0ef19425303b6cd9b28d142bb40 + checksum: 869803b14442f89a83ff9c087a4316807bc521f1fb32424fd9b16d6ffc89fee21758bd445ae471d0943a538eab61499b3f19d226df5254d54fab47eb095ea3ee languageName: node linkType: hard -"@babel/plugin-transform-function-name@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/plugin-transform-function-name@npm:7.18.9" +"@babel/plugin-transform-unicode-property-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.22.5" dependencies: - "@babel/helper-compilation-targets": "npm:^7.18.9" - "@babel/helper-function-name": "npm:^7.18.9" - "@babel/helper-plugin-utils": "npm:^7.18.9" + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ab6b97c4d3b02d850527d491d4bf224dfbc0cbfdccbf1222dedaf6817f7aac6269974bed9271790bdc1c5e623c9885a3db0d0ea24b44af006b7447e8c69672c8 + checksum: c65f8b3f36dda27ffa972ad141bcb9ab3034514480a8a507a3c60c5cdc28274a522464e15b110810e4d6a408a2f1bcd3fd368dfa6cb5399dae8894429efe7cb0 languageName: node linkType: hard -"@babel/plugin-transform-literals@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-literals@npm:7.14.5" +"@babel/plugin-transform-unicode-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 26aa228a12bdeb0b6075555181bf3a04712069cabfb911d6254d2fa774a83338a8e59f088aacfe283a405e7b1d6f30284a280926c65a9fbe90bff8c8a08017a5 + checksum: 1bdcad555e5c98e24dd84cd6c0833fce9b5cd2485e968e1952cc6eb160fb3d4938075cd5a47e7a96e2d381f617a79498f85abe28ef430203ca331638e7693e1f languageName: node linkType: hard -"@babel/plugin-transform-literals@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/plugin-transform-literals@npm:7.18.9" +"@babel/plugin-transform-unicode-sets-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.22.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.9" + "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 4856c2c3b34c8d828a2ba2301cc6ea5ba06869d82e39b4e81497c02b84dacf487f34c95a1ffff5e36a39a297ec869ed1052b0c975bea387a0192c654126cd6cf + "@babel/core": ^7.0.0 + checksum: d14e65180a0a96b12593bd0fc261269e33d65f41d561cd6ad5fd93d89b1da15c0513dd1bf9f33438894c1b10e3225453aee792eab0aac38f35b0a3f6335146eb languageName: node linkType: hard -"@babel/plugin-transform-member-expression-literals@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-member-expression-literals@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" +"@babel/preset-env@npm:^7.11.0": + version: 7.22.5 + resolution: "@babel/preset-env@npm:7.22.5" + dependencies: + "@babel/compat-data": "npm:^7.22.5" + "@babel/helper-compilation-targets": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-validator-option": "npm:^7.22.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.22.5" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.22.5" + "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + "@babel/plugin-syntax-class-properties": "npm:^7.12.13" + "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" + "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" + "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" + "@babel/plugin-syntax-import-assertions": "npm:^7.22.5" + "@babel/plugin-syntax-import-attributes": "npm:^7.22.5" + "@babel/plugin-syntax-import-meta": "npm:^7.10.4" + "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" + "@babel/plugin-syntax-top-level-await": "npm:^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6" + "@babel/plugin-transform-arrow-functions": "npm:^7.22.5" + "@babel/plugin-transform-async-generator-functions": "npm:^7.22.5" + "@babel/plugin-transform-async-to-generator": "npm:^7.22.5" + "@babel/plugin-transform-block-scoped-functions": "npm:^7.22.5" + "@babel/plugin-transform-block-scoping": "npm:^7.22.5" + "@babel/plugin-transform-class-properties": "npm:^7.22.5" + "@babel/plugin-transform-class-static-block": "npm:^7.22.5" + "@babel/plugin-transform-classes": "npm:^7.22.5" + "@babel/plugin-transform-computed-properties": "npm:^7.22.5" + "@babel/plugin-transform-destructuring": "npm:^7.22.5" + "@babel/plugin-transform-dotall-regex": "npm:^7.22.5" + "@babel/plugin-transform-duplicate-keys": "npm:^7.22.5" + "@babel/plugin-transform-dynamic-import": "npm:^7.22.5" + "@babel/plugin-transform-exponentiation-operator": "npm:^7.22.5" + "@babel/plugin-transform-export-namespace-from": "npm:^7.22.5" + "@babel/plugin-transform-for-of": "npm:^7.22.5" + "@babel/plugin-transform-function-name": "npm:^7.22.5" + "@babel/plugin-transform-json-strings": "npm:^7.22.5" + "@babel/plugin-transform-literals": "npm:^7.22.5" + "@babel/plugin-transform-logical-assignment-operators": "npm:^7.22.5" + "@babel/plugin-transform-member-expression-literals": "npm:^7.22.5" + "@babel/plugin-transform-modules-amd": "npm:^7.22.5" + "@babel/plugin-transform-modules-commonjs": "npm:^7.22.5" + "@babel/plugin-transform-modules-systemjs": "npm:^7.22.5" + "@babel/plugin-transform-modules-umd": "npm:^7.22.5" + "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.22.5" + "@babel/plugin-transform-new-target": "npm:^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.22.5" + "@babel/plugin-transform-numeric-separator": "npm:^7.22.5" + "@babel/plugin-transform-object-rest-spread": "npm:^7.22.5" + "@babel/plugin-transform-object-super": "npm:^7.22.5" + "@babel/plugin-transform-optional-catch-binding": "npm:^7.22.5" + "@babel/plugin-transform-optional-chaining": "npm:^7.22.5" + "@babel/plugin-transform-parameters": "npm:^7.22.5" + "@babel/plugin-transform-private-methods": "npm:^7.22.5" + "@babel/plugin-transform-private-property-in-object": "npm:^7.22.5" + "@babel/plugin-transform-property-literals": "npm:^7.22.5" + "@babel/plugin-transform-regenerator": "npm:^7.22.5" + "@babel/plugin-transform-reserved-words": "npm:^7.22.5" + "@babel/plugin-transform-shorthand-properties": "npm:^7.22.5" + "@babel/plugin-transform-spread": "npm:^7.22.5" + "@babel/plugin-transform-sticky-regex": "npm:^7.22.5" + "@babel/plugin-transform-template-literals": "npm:^7.22.5" + "@babel/plugin-transform-typeof-symbol": "npm:^7.22.5" + "@babel/plugin-transform-unicode-escapes": "npm:^7.22.5" + "@babel/plugin-transform-unicode-property-regex": "npm:^7.22.5" + "@babel/plugin-transform-unicode-regex": "npm:^7.22.5" + "@babel/plugin-transform-unicode-sets-regex": "npm:^7.22.5" + "@babel/preset-modules": "npm:^0.1.5" + "@babel/types": "npm:^7.22.5" + babel-plugin-polyfill-corejs2: "npm:^0.4.3" + babel-plugin-polyfill-corejs3: "npm:^0.8.1" + babel-plugin-polyfill-regenerator: "npm:^0.5.0" + core-js-compat: "npm:^3.30.2" + semver: "npm:^6.3.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 5004ddea2ec59cda5a4252e800edba47bc887ee25ce5f9f12d314663c8358386bb3a78cce447ff1f163e027c0386164fda03bf15c5c475951fbb804018b90894 + checksum: ab582891a864b98d78d3ae6832072765b6e7b48c9a60a91d3a76f084bc9e3dc6fef02c93dcc937dfa7523305ba305e6e969af864dfed5ec6866617606be1971c languageName: node linkType: hard -"@babel/plugin-transform-member-expression-literals@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-member-expression-literals@npm:7.18.6" +"@babel/preset-modules@npm:^0.1.5": + version: 0.1.5 + resolution: "@babel/preset-modules@npm:0.1.5" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.0.0" + "@babel/plugin-proposal-unicode-property-regex": "npm:^7.4.4" + "@babel/plugin-transform-dotall-regex": "npm:^7.4.4" + "@babel/types": "npm:^7.4.4" + esutils: "npm:^2.0.2" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 6f62212c69138d80568e3cff6b2ffafa812da1779095ba7373c253c33db18dc31808b6ee4ad8b188b8cfa6be819a87c316ab1b73cf0f0ff1b9d9e730fc0645f6 + checksum: ebba2ca33850f53f9f45ed2c9d4bb1add9438e2b0321064d232dc3abc64b5e102194557aa5719bfc8384fc5f76595b8723e4cb8e41cb79599d4efcf6fb650cc3 languageName: node linkType: hard -"@babel/plugin-transform-modules-amd@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-modules-amd@npm:7.14.5" - dependencies: - "@babel/helper-module-transforms": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - babel-plugin-dynamic-import-node: "npm:^2.3.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 9679d9df43a91434cd304f4f8db901700745200c9328cd482c92105c50d97ea402b69e0132d7c9e8f466f83282ef9ae64f5c2036471391fb37b11e0bebb0d2d7 +"@babel/regjsgen@npm:^0.8.0": + version: 0.8.0 + resolution: "@babel/regjsgen@npm:0.8.0" + checksum: 26a6ef60f1d4b392fc81dd0dbfae4e0fb08c21c8556f16735f02d07ebc89de349ddae48d804b1fe0a450b62eaa119db584c639ae11c3e5a95ccee4e88e88ea7b languageName: node linkType: hard -"@babel/plugin-transform-modules-amd@npm:^7.19.6": - version: 7.20.11 - resolution: "@babel/plugin-transform-modules-amd@npm:7.20.11" +"@babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.22.5, @babel/runtime@npm:^7.8.4": + version: 7.22.5 + resolution: "@babel/runtime@npm:7.22.5" dependencies: - "@babel/helper-module-transforms": "npm:^7.20.11" - "@babel/helper-plugin-utils": "npm:^7.20.2" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: f07675335c6945c4dd8f3962373cee72013417f50b40479530c8bd2b279988d9aa2f73dde4ef54c70aef53bab6416da3309e56c9e5038850b11035b2c1c18609 + regenerator-runtime: "npm:^0.13.11" + checksum: 28820c2de3e0819b188661addcf2c8e9ffba60ca778d351ddf3c3d6a11c749a1aa740908dd84ed359640621f54db5b31a04dc63833e936fad5f59baddb1dcc12 languageName: node linkType: hard -"@babel/plugin-transform-modules-commonjs@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.14.5" +"@babel/template@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/template@npm:7.22.15" dependencies: - "@babel/helper-module-transforms": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-simple-access": "npm:^7.14.5" - babel-plugin-dynamic-import-node: "npm:^2.3.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 42cbfb8b8ed70947be3d166524b26ed5cd1ee62a11e156c6f472325b2428308fb004659ff439db1cdc2a244ab8e3380a9a46eb6f02e04e13a4354e161d1cff80 + "@babel/code-frame": "npm:^7.22.13" + "@babel/parser": "npm:^7.22.15" + "@babel/types": "npm:^7.22.15" + checksum: 25a49a16b024f5b80d539eaf4ba999ff7bb2d4679f223aed50e3d66d304904fefb7be02201a6db89a954e6f3b0b78a1e8c758cdec794a05f324c7d44590a86d3 languageName: node linkType: hard -"@babel/plugin-transform-modules-commonjs@npm:^7.19.6": - version: 7.20.11 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.20.11" +"@babel/template@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/template@npm:7.22.5" dependencies: - "@babel/helper-module-transforms": "npm:^7.20.11" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-simple-access": "npm:^7.20.2" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 3682d96c8c38046cd0227398901a32739a6fb5434f3f23699cd3076df913527e21439f024b9abec50dc2c42c71cf95e2dc6ffd1266d2e06336e24f5072c9baf9 + "@babel/code-frame": "npm:^7.22.5" + "@babel/parser": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + checksum: 6b06d6cb7b8437d609f0fca32f6ccb6c29e45c4180e364c009fbb6ca98d7e25340659321150badea2629231a84c8a3263ed78169e44424692c407c6a09ddbea9 languageName: node linkType: hard -"@babel/plugin-transform-modules-systemjs@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-modules-systemjs@npm:7.14.5" +"@babel/traverse@npm:^7.22.10, @babel/traverse@npm:^7.22.15, @babel/traverse@npm:^7.22.17": + version: 7.22.17 + resolution: "@babel/traverse@npm:7.22.17" dependencies: - "@babel/helper-hoist-variables": "npm:^7.14.5" - "@babel/helper-module-transforms": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-validator-identifier": "npm:^7.14.5" - babel-plugin-dynamic-import-node: "npm:^2.3.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 1972d98c7ffb57dd7169d7cde6e328efc361ecd6b45b67c1147187c19faaad6827584cfca4cdb9298e32b7d53e9cb2d4d0edd73de818b2e0778a012ee196241e + "@babel/code-frame": "npm:^7.22.13" + "@babel/generator": "npm:^7.22.15" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-hoist-variables": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.6" + "@babel/parser": "npm:^7.22.16" + "@babel/types": "npm:^7.22.17" + debug: "npm:^4.1.0" + globals: "npm:^11.1.0" + checksum: 16d3e042b67fdb967277557e1ee169adb068ce5eaa87fe05affb9f593a585faf7788f454459bad5ab052acb05b9ce982d936a4a67f21b8ff588fb9c711996689 languageName: node linkType: hard -"@babel/plugin-transform-modules-systemjs@npm:^7.19.6": - version: 7.20.11 - resolution: "@babel/plugin-transform-modules-systemjs@npm:7.20.11" +"@babel/traverse@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/traverse@npm:7.22.5" dependencies: - "@babel/helper-hoist-variables": "npm:^7.18.6" - "@babel/helper-module-transforms": "npm:^7.20.11" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-validator-identifier": "npm:^7.19.1" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ff55204a21010bf1b59ce14c29ca5cf549ea6a120b42a3128aebcbc3de65b9b0d52a8c6432a8c7e09e793a27433607e6fd0734fefde2d70481fea8229b3a05d4 + "@babel/code-frame": "npm:^7.22.5" + "@babel/generator": "npm:^7.22.5" + "@babel/helper-environment-visitor": "npm:^7.22.5" + "@babel/helper-function-name": "npm:^7.22.5" + "@babel/helper-hoist-variables": "npm:^7.22.5" + "@babel/helper-split-export-declaration": "npm:^7.22.5" + "@babel/parser": "npm:^7.22.5" + "@babel/types": "npm:^7.22.5" + debug: "npm:^4.1.0" + globals: "npm:^11.1.0" + checksum: 3c06ac5697d770d3feafd55e371ee06a52f7336c1ee7f7a165d28f77d36edd1ac2c7f7c4763d24d851c28e8d15009dfbf9401fecdf0a9f4404e9b489c5dd318e languageName: node linkType: hard -"@babel/plugin-transform-modules-umd@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-modules-umd@npm:7.14.5" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.5, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": + version: 7.22.5 + resolution: "@babel/types@npm:7.22.5" dependencies: - "@babel/helper-module-transforms": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 1622218d72d498dd5ad36e015fe2dd69ea2bac6d4f4091859d449d258ace42d094ae99d3d308b2449d70d5dc55c6b17cb13a07e47f4edeb94deaea2fb80248b9 + "@babel/helper-string-parser": "npm:^7.22.5" + "@babel/helper-validator-identifier": "npm:^7.22.5" + to-fast-properties: "npm:^2.0.0" + checksum: de48a2ae0e3765d0548e439432111c3e01176b6c3193bc155f0dc85f4b766421beced17871a676eab5dc29d8375bb47f77a0a33edb2d617a7a92db70f500eb05 languageName: node linkType: hard -"@babel/plugin-transform-modules-umd@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-modules-umd@npm:7.18.6" +"@babel/types@npm:^7.22.10, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.17": + version: 7.22.17 + resolution: "@babel/types@npm:7.22.17" dependencies: - "@babel/helper-module-transforms": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: e28c87c53cf8255e44cd04d1f7dcb38f76cf5ab96d96e0444efa6e4c6ed3fb5fb70956dc2f75927dce0357303e2c47bbd193efe1dbf38ab1a057ad72dfae110e + "@babel/helper-string-parser": "npm:^7.22.5" + "@babel/helper-validator-identifier": "npm:^7.22.15" + to-fast-properties: "npm:^2.0.0" + checksum: 6988622f4b0aab0e8de9d51d2c2e05d14db27777af13af6695298bf95305b5bcc15821f6b28c73c19cbda207126c16a245809fa9b81357a2abc2b211dc6012e0 languageName: node linkType: hard -"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.14.7": - version: 7.14.7 - resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.14.7" +"@badeball/cypress-configuration@npm:^6.1.0": + version: 6.1.0 + resolution: "@badeball/cypress-configuration@npm:6.1.0" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 6c893c8436630d5e13ae4f9dcb211dcee9dcc935c852a6fbdd9a4d565c2eb16944196fa9bcf420a3cfc1aa96ad8e301c579a4681fd809466fb5dfca16fc32cd9 + "@babel/parser": "npm:^7.18.8" + debug: "npm:^4.3.2" + esbuild: "npm:^0.14.23" + glob: "npm:^7.1.6" + minimatch: "npm:^3.0.4" + node-hook: "npm:^1.0.0" + checksum: 42f285bf05780d7ca555e5a463b78e9692b4ce672e361602c6a00f92ab710e7f45f951f444f0bdcd31a0b0ffe4daa0ddca67e803168ed860815e0344b2ad2231 languageName: node linkType: hard -"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.19.1": - version: 7.20.5 - resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.20.5" +"@badeball/cypress-cucumber-preprocessor@npm:^18.0.5": + version: 18.0.5 + resolution: "@badeball/cypress-cucumber-preprocessor@npm:18.0.5" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.20.5" - "@babel/helper-plugin-utils": "npm:^7.20.2" + "@badeball/cypress-configuration": "npm:^6.1.0" + "@cucumber/cucumber": "npm:^9.1.0" + "@cucumber/cucumber-expressions": "npm:^16.1.2" + "@cucumber/gherkin": "npm:^26.2.0" + "@cucumber/html-formatter": "npm:^20.3.0" + "@cucumber/message-streams": "npm:^4.0.1" + "@cucumber/messages": "npm:^22.0.0" + "@cucumber/pretty-formatter": "npm:^1.0.0" + "@cucumber/tag-expressions": "npm:^5.0.1" + base64-js: "npm:^1.5.1" + chalk: "npm:^4.1.2" + cli-table: "npm:^0.3.11" + common-ancestor-path: "npm:^1.0.1" + cosmiconfig: "npm:^8.1.3" + debug: "npm:^4.3.4" + error-stack-parser: "npm:^2.1.4" + esbuild: "npm:^0.19.0" + glob: "npm:^10.2.2" + is-path-inside: "npm:^3.0.3" + mocha: "npm:^10.2.0" + seedrandom: "npm:^3.0.5" + source-map: "npm:^0.7.4" + split: "npm:^1.0.1" + uuid: "npm:^9.0.0" peerDependencies: - "@babel/core": ^7.0.0 - checksum: 954f98506834444a0e93c3a3042faf047e32c98a9c2d7285d9534287775bb57105a79d02c59beb112c7a015fecdcaf02fbd0db8e0849bedcc34b7192ad56f0d2 + "@cypress/browserify-preprocessor": ^3.0.1 + cypress: ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 + peerDependenciesMeta: + "@cypress/browserify-preprocessor": + optional: true + bin: + cucumber-html-formatter: dist/bin/cucumber-html-formatter.js + cucumber-json-formatter: dist/bin/cucumber-json-formatter.js + cypress-cucumber-diagnostics: dist/bin/diagnostics.js + checksum: 660faff815e73833f8ad0ebdd496c6b30306936ecd991d62581dbbad55d86eb9620c8198c0caa035ccbaa3bcc55b0e3847cd797a72eaf757cfa2e8be4fd79842 languageName: node linkType: hard -"@babel/plugin-transform-new-target@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-new-target@npm:7.14.5" +"@bahmutov/cypress-esbuild-preprocessor@npm:^2.2.0": + version: 2.2.0 + resolution: "@bahmutov/cypress-esbuild-preprocessor@npm:2.2.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + debug: "npm:4.3.4" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 1ef58ad72fd76b10ae5d937fb2802dd19dda3d0a5232bc71a7c1f394f9b053a607820a1bf0ed42594354e66b89e1a151a7c9468ff09cf6bc6bf30fea6a78c34a + esbuild: ">=0.17.0" + checksum: f7f84cdca755daf905f274f318885e6d46c21524a3e9de23fb9cf459b89dbfd25a5deecf1cba04b40ca40c8c2828d4982bd3cf8793aed9773c94b5aa2c81b469 languageName: node linkType: hard -"@babel/plugin-transform-new-target@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-new-target@npm:7.18.6" +"@builder.io/partytown@npm:^0.8.0": + version: 0.8.1 + resolution: "@builder.io/partytown@npm:0.8.1" + bin: + partytown: bin/partytown.cjs + checksum: 9644522be8f805c951a86a2ffc1942b083cb8576cf73cf9cb06827a00b09e6d0002c2518646d385f14658572ef2f727d4f75070765bd369119d93027db831c84 + languageName: node + linkType: hard + +"@colors/colors@npm:1.5.0": + version: 1.5.0 + resolution: "@colors/colors@npm:1.5.0" + checksum: 5e08870799494f68e5b3b79e9a337bbf5fd7e634904fbbe642769921bf158fe458c41c888f88edf051b78c5325e3339970f00b24e31421c3480bb58f02687218 + languageName: node + linkType: hard + +"@commitlint/cli@npm:^17.7.1": + version: 17.7.1 + resolution: "@commitlint/cli@npm:17.7.1" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: df67eeb4a8b4bdbba1db57171ceb91d25a5acd668f8407364ab6c669f2a428d0cd9f574603866129b707c20010e95681147d2d5a4ea1676ebd1e115af6fb134c + "@commitlint/format": "npm:^17.4.4" + "@commitlint/lint": "npm:^17.7.0" + "@commitlint/load": "npm:^17.7.1" + "@commitlint/read": "npm:^17.5.1" + "@commitlint/types": "npm:^17.4.4" + execa: "npm:^5.0.0" + lodash.isfunction: "npm:^3.0.9" + resolve-from: "npm:5.0.0" + resolve-global: "npm:1.0.0" + yargs: "npm:^17.0.0" + bin: + commitlint: cli.js + checksum: e855228375dea4965940aaab6550ea303d62f2a0ce3277da6e9a20d23e410c3e1b41791790dff2a943c051b4ac15b75f595481ab816af67041789900cbde82d5 languageName: node linkType: hard -"@babel/plugin-transform-object-super@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-object-super@npm:7.14.5" +"@commitlint/config-conventional@npm:^17.7.0": + version: 17.7.0 + resolution: "@commitlint/config-conventional@npm:17.7.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-replace-supers": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: de5e2207878842ea6b0bff8d87323951948c119d191bbc46b0486b1eea28ca6500d9a0dbeac4693870f39f1a46aa930350548ddebbe53bc78008f27e27db164e + conventional-changelog-conventionalcommits: "npm:^6.1.0" + checksum: 46c4552b5c01cee19b2520ced5df0055491747fc17296c84d6ae2bd1b4498a3c7ab9eb51ce5e8e88dae76e64c5501ae79141b02943c1e7310cabd4fe12d21c7e languageName: node linkType: hard -"@babel/plugin-transform-object-super@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-object-super@npm:7.18.6" +"@commitlint/config-validator@npm:^17.6.7": + version: 17.6.7 + resolution: "@commitlint/config-validator@npm:17.6.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - "@babel/helper-replace-supers": "npm:^7.18.6" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 0d0e4a2750a89fa93505c974d871e8ddcad510c7d5417625154615d787920f34520299f50d47b74157e6460763614f1c4ea35737b25d83bff97a4abe0d87b70b + "@commitlint/types": "npm:^17.4.4" + ajv: "npm:^8.11.0" + checksum: c4fcc47bd1b70098e7d545450d8c2fca1aa403d710eeb8b149cab9bb764864edb247e0c21bf165c5ec203ad1b4c646a155bc6902e48583c1a2b0bbfcf4fcf7be languageName: node linkType: hard -"@babel/plugin-transform-parameters@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-parameters@npm:7.14.5" +"@commitlint/ensure@npm:^17.6.7": + version: 17.6.7 + resolution: "@commitlint/ensure@npm:17.6.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 735e5c0d9384a59c843e78b1028b87c6ac28f6c3e5ffb23ef52d9389cc156f877a66b7e4c4fb01d1b9ae7eccce2b7caae836a537e3280603b670eea853969b92 + "@commitlint/types": "npm:^17.4.4" + lodash.camelcase: "npm:^4.3.0" + lodash.kebabcase: "npm:^4.1.1" + lodash.snakecase: "npm:^4.1.1" + lodash.startcase: "npm:^4.4.0" + lodash.upperfirst: "npm:^4.3.1" + checksum: 0a702753423fc14fccba8530b4b9f21414d361a6338e7f5470ec8ab75044cac5cb105b7fa886919d006ae29e908e926d155b98fba96dcc4a2e9cb257e4a16c9c + languageName: node + linkType: hard + +"@commitlint/execute-rule@npm:^17.4.0": + version: 17.4.0 + resolution: "@commitlint/execute-rule@npm:17.4.0" + checksum: e68a0119c643421713078ed46eaa32e8ca0b4ccb112bd937f43405e060f2b7321cc3d746558d3dbf33caeaa9b4315a35fd3edb9c626cd5d35c970ee3d25b08fb languageName: node linkType: hard -"@babel/plugin-transform-parameters@npm:^7.20.1, @babel/plugin-transform-parameters@npm:^7.20.7": - version: 7.20.7 - resolution: "@babel/plugin-transform-parameters@npm:7.20.7" +"@commitlint/format@npm:^17.4.4": + version: 17.4.4 + resolution: "@commitlint/format@npm:17.4.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: cb26be34ace6ece794d9db02a7377bb206871a17a3aa15ae83e5e10af3b5d7e47b9e241a7ec99b3abbdb4d7ba5bd145945733b9a3e8ad4be8dc2a518f8e9da06 + "@commitlint/types": "npm:^17.4.4" + chalk: "npm:^4.1.0" + checksum: efbf2d93723d5e5432c20041a9044adb3b036769830938b7cafe141664545a27a7a6cd07bcb5dcb936d7a2d7780f0ae3446c0e77256c9cb844e249cd80c31d25 languageName: node linkType: hard -"@babel/plugin-transform-property-literals@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-property-literals@npm:7.14.5" +"@commitlint/is-ignored@npm:^17.7.0": + version: 17.7.0 + resolution: "@commitlint/is-ignored@npm:17.7.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 7632386c9b5aa1673ab251d99179ed0a33f9deb8ab2dd512a0dae587fd37734c4fa9226d16040d6fe4995cf102a69f3cd0c4cd4ae0c845afeb77d1de21f5b8db + "@commitlint/types": "npm:^17.4.4" + semver: "npm:7.5.4" + checksum: f993408960c31454e0d4919aa459e7348ba2ed5a77613c328f205431ad9c2f80e64b3667a077edd3317bf82cfdd4cd54e196111cda69294f89760d2cca3b1cea languageName: node linkType: hard -"@babel/plugin-transform-property-literals@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-property-literals@npm:7.18.6" +"@commitlint/lint@npm:^17.7.0": + version: 17.7.0 + resolution: "@commitlint/lint@npm:17.7.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: bf10d57225db63184b996f48b565e9b3a611ef0e711c889835a4246ac44b11918aa181aa2b59fee384ad7eb33b687e2c593af392803a6d7f13b0f1220467f71e + "@commitlint/is-ignored": "npm:^17.7.0" + "@commitlint/parse": "npm:^17.7.0" + "@commitlint/rules": "npm:^17.7.0" + "@commitlint/types": "npm:^17.4.4" + checksum: 83e2fdcd6359030fb8258d5fbf66a965b0575c5352a8c969511a8dac63737fa6b024be0f0ad072b166b00b257e51d3ed827766959b0c3025b50020c00962fe06 languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-regenerator@npm:7.14.5" +"@commitlint/load@npm:^17.7.1": + version: 17.7.1 + resolution: "@commitlint/load@npm:17.7.1" dependencies: - regenerator-transform: "npm:^0.14.2" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: fc252f9f986c1c0240e4654b13875a9ccf5adcbbe6b3f760862c64a94fc6993c2c9e3cb149c0e83e4d2bdf428939ef765577bf51051627b526e574616d0b4e47 + "@commitlint/config-validator": "npm:^17.6.7" + "@commitlint/execute-rule": "npm:^17.4.0" + "@commitlint/resolve-extends": "npm:^17.6.7" + "@commitlint/types": "npm:^17.4.4" + "@types/node": "npm:20.4.7" + chalk: "npm:^4.1.0" + cosmiconfig: "npm:^8.0.0" + cosmiconfig-typescript-loader: "npm:^4.0.0" + lodash.isplainobject: "npm:^4.0.6" + lodash.merge: "npm:^4.6.2" + lodash.uniq: "npm:^4.5.0" + resolve-from: "npm:^5.0.0" + ts-node: "npm:^10.8.1" + typescript: "npm:^4.6.4 || ^5.0.0" + checksum: 47042bb5927614463aec09189ed450cb5c08dceaef311c662d36112f2cfaf32285ea25ed26774226f0532d0159ef5e8ce38707c58d2347bbe37fa8e52fe89a87 + languageName: node + linkType: hard + +"@commitlint/message@npm:^17.4.2": + version: 17.4.2 + resolution: "@commitlint/message@npm:17.4.2" + checksum: cc125dd2852b0bf9b6bf82be481736a5a93b355facc1f37fce0a000d3d5791dae1460d8c28ccc9acd8ad326a299f0c01be151ee6000cf0ae02dce4c624e4bc07 languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.18.6": - version: 7.20.5 - resolution: "@babel/plugin-transform-regenerator@npm:7.20.5" +"@commitlint/parse@npm:^17.7.0": + version: 17.7.0 + resolution: "@commitlint/parse@npm:17.7.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" - regenerator-transform: "npm:^0.15.1" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ac67631d29c062331234472991f011796ce44c389247847b749ff3e22ec12964dbe7cf458e58aaa41a5e624518e57c118d8aa97298a5c1621e50185573bdd617 + "@commitlint/types": "npm:^17.4.4" + conventional-changelog-angular: "npm:^6.0.0" + conventional-commits-parser: "npm:^4.0.0" + checksum: d0a5fc1abcf49ee30c7ee18da8768aa92def2b14c0f1a726401b479bbba2bde01974fd5b6253e7e45cfa0011e482a058dd39ecfcffdd461984a38fb4258577d5 languageName: node linkType: hard -"@babel/plugin-transform-reserved-words@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-reserved-words@npm:7.14.5" +"@commitlint/read@npm:^17.5.1": + version: 17.5.1 + resolution: "@commitlint/read@npm:17.5.1" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 75982b57148fb9e3106825d0c6066313b45aa1fd96c6663b5fc357b49187a169f2e889e566daab06d876096803acb01d5a4c93272413e5ab67078cd86af3f76e + "@commitlint/top-level": "npm:^17.4.0" + "@commitlint/types": "npm:^17.4.4" + fs-extra: "npm:^11.0.0" + git-raw-commits: "npm:^2.0.11" + minimist: "npm:^1.2.6" + checksum: 2acc811ac5d80b39911bf7f69d462a122192becbfa6e87d1813a8d087bb03a78f1e5d7353dff783c58d0433ed5e8303acfffb8e6504ef6da061dad0c7a07cb01 languageName: node linkType: hard -"@babel/plugin-transform-reserved-words@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-reserved-words@npm:7.18.6" +"@commitlint/resolve-extends@npm:^17.6.7": + version: 17.6.7 + resolution: "@commitlint/resolve-extends@npm:17.6.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 431eada54dabf8d1fc915552665c0f40d37a5d7ce40f67647ccb48535dd29699facb1fe93c26346f00429508fa8a7f7baa277e36a9d7a070c0b0fc54e96e417b + "@commitlint/config-validator": "npm:^17.6.7" + "@commitlint/types": "npm:^17.4.4" + import-fresh: "npm:^3.0.0" + lodash.mergewith: "npm:^4.6.2" + resolve-from: "npm:^5.0.0" + resolve-global: "npm:^1.0.0" + checksum: a861579848b01fa39e5308485456fb952a345895f9bc7fc73010a89f483b7f14326edc27370929e53912e18ed95035f18065b1f04e67b9408cd81fd09c06c1fb languageName: node linkType: hard -"@babel/plugin-transform-shorthand-properties@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-shorthand-properties@npm:7.14.5" +"@commitlint/rules@npm:^17.7.0": + version: 17.7.0 + resolution: "@commitlint/rules@npm:17.7.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 474a822241d3919c3e36ea333ff7d163221a97b4a2e547c257963fd5010dc040af7102cd7769eccf512053afcb8a817139d4e66be0e0a1cd9af8e62f5eb7d042 + "@commitlint/ensure": "npm:^17.6.7" + "@commitlint/message": "npm:^17.4.2" + "@commitlint/to-lines": "npm:^17.4.0" + "@commitlint/types": "npm:^17.4.4" + execa: "npm:^5.0.0" + checksum: c7ed597aea0eebdf8705faf55ce4ad9d7ab1ce0b769180b495c5c97071629ba30bb487a6e3f343176e609da7aba8a71edeee78ebd279cf37c32379eea039520e languageName: node linkType: hard -"@babel/plugin-transform-shorthand-properties@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-shorthand-properties@npm:7.18.6" +"@commitlint/to-lines@npm:^17.4.0": + version: 17.4.0 + resolution: "@commitlint/to-lines@npm:17.4.0" + checksum: bbff3c9d34e6f2c5c5cf39cf71347d41603f3709ff6665c56976d6a81a0930e3227596036f546254ef6aed2dba4f044d96da3aaf24765f0848b63b3ba714bb27 + languageName: node + linkType: hard + +"@commitlint/top-level@npm:^17.4.0": + version: 17.4.0 + resolution: "@commitlint/top-level@npm:17.4.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2950da9e062bbb3a7fc84d8b9735d06dd93fe896640f197dc75cf85494686b58fa62c435bcbf9295873a206c5b029c650bcbf3ca60fa156e819d5293951cbb35 + find-up: "npm:^5.0.0" + checksum: e80f9565bc8c8739a165fcf3a6802fdc84b766b18861c98e9c4feed59f3e301dacb6997282962473edb77828a06106753d178655d2758171491042bc7f7b5268 languageName: node linkType: hard -"@babel/plugin-transform-spread@npm:^7.14.6": - version: 7.14.6 - resolution: "@babel/plugin-transform-spread@npm:7.14.6" +"@commitlint/types@npm:^17.4.4": + version: 17.4.4 + resolution: "@commitlint/types@npm:17.4.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ff9bfed7ab510fe9e21f91ce76cb32b07635f567ec59dbc7ca2edf820ad63bee98a63e6d52b6b13e46691c2405ded0cb02b4c60095d3607e58e46a1901b74236 + chalk: "npm:^4.1.0" + checksum: 7131cb9fc1b10a4a49a80445d693414474f3dd22a6c2ae13690274167c24b9c3435e6e5685cf9dc68ee2567ef3ef92e755121da4bd2ec565146a34310ef1dd9b languageName: node linkType: hard -"@babel/plugin-transform-spread@npm:^7.19.0": - version: 7.20.7 - resolution: "@babel/plugin-transform-spread@npm:7.20.7" +"@cspotcode/source-map-support@npm:^0.8.0": + version: 0.8.1 + resolution: "@cspotcode/source-map-support@npm:0.8.1" dependencies: - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.20.0" + "@jridgewell/trace-mapping": "npm:0.3.9" + checksum: 4327d8e6e4347897f5baf265c43ff094260a3ad7b53920fa07472aa18699ba7d570e5171082e88d19e4b5cce6f35cc1666b1c8ccb8b74d67e4f482395b8c511d + languageName: node + linkType: hard + +"@csstools/cascade-layer-name-parser@npm:^1.0.3, @csstools/cascade-layer-name-parser@npm:^1.0.4": + version: 1.0.4 + resolution: "@csstools/cascade-layer-name-parser@npm:1.0.4" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 158af73283147093e7d1d1cdd65a4a34ebe0250e642eda59712b93f0039cf250416e40bff7d27b8b8c0740a71e9aa446b534007294da13373143dd5b8b7fe2bf + "@csstools/css-parser-algorithms": ^2.3.1 + "@csstools/css-tokenizer": ^2.2.0 + checksum: d4885e6b903cf1e4ffd54b65ae74c836639f4533807298e0a81dc5b6da3fcbb1aa0e37dbcd4fe30a054e3e9c6d03b7133aa28711812c9599b57affb5bf91e859 languageName: node linkType: hard -"@babel/plugin-transform-sticky-regex@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-sticky-regex@npm:7.14.5" +"@csstools/color-helpers@npm:^3.0.2": + version: 3.0.2 + resolution: "@csstools/color-helpers@npm:3.0.2" + checksum: 252f4d0ff0850fcdc1768249721123a6ea34d4edacce44ea962f3cce451643d564e96b8be99bcc1285e6c0ac27bf329b10ddbb7b2c22744c0faec6bae5b24bbf + languageName: node + linkType: hard + +"@csstools/css-calc@npm:^1.1.3": + version: 1.1.3 + resolution: "@csstools/css-calc@npm:1.1.3" + peerDependencies: + "@csstools/css-parser-algorithms": ^2.3.1 + "@csstools/css-tokenizer": ^2.2.0 + checksum: c4e2c8cb60961759754fb222a9fd07ac4ce7f102d2ce88167786a55088adccc33edbe364cde026550fd3f9fa3c83173777ea4c4f2ead8378a74d4a1c78d3b93d + languageName: node + linkType: hard + +"@csstools/css-color-parser@npm:^1.3.1": + version: 1.3.1 + resolution: "@csstools/css-color-parser@npm:1.3.1" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@csstools/color-helpers": "npm:^3.0.2" + "@csstools/css-calc": "npm:^1.1.3" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2014b77ce4a55988db03f215165cf665519bdf2b0f420b033be3a0c9dc200962f63c6de26cd0343b9e43ec75457ea63b457e3d2440a44205325b08e04b6abb70 + "@csstools/css-parser-algorithms": ^2.3.1 + "@csstools/css-tokenizer": ^2.2.0 + checksum: a0cae78aca0fbaa4bdd00d4be5bcfd7e72fc8e9ab9f3bba520143a791c045735461626613ace67eb6ebbffa0f2829537e743c1dc1ccdeae2d14be5b6aa84013a languageName: node linkType: hard -"@babel/plugin-transform-sticky-regex@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-sticky-regex@npm:7.18.6" +"@csstools/css-parser-algorithms@npm:^2.3.0, @csstools/css-parser-algorithms@npm:^2.3.1": + version: 2.3.1 + resolution: "@csstools/css-parser-algorithms@npm:2.3.1" + peerDependencies: + "@csstools/css-tokenizer": ^2.2.0 + checksum: be4d8a3c169aa430adea2fdf84889b5ea6920ac9189dd30a067ea137d847ed21946e13f21f9ddeb572d516634153499826dd8e3d8d08560bdc386705df098ba6 + languageName: node + linkType: hard + +"@csstools/css-tokenizer@npm:^2.1.1": + version: 2.1.1 + resolution: "@csstools/css-tokenizer@npm:2.1.1" + checksum: fde583a3dc6709459240785f8b6188824c13cedff12fbfa5816330ab8b1211369d005caf9ec6ad66cf961dbfc2ff7468b3d14c369834c0422035c83c6230a433 + languageName: node + linkType: hard + +"@csstools/css-tokenizer@npm:^2.2.0": + version: 2.2.0 + resolution: "@csstools/css-tokenizer@npm:2.2.0" + checksum: b42e3c01ef84dc02828e96dd627ce3fa11ecc0daf0e4dd86cfc893c14da77765a55a0a983b5f68ed16fd390ea7174f6bc9ad65423f781727045ab5569f7ddf65 + languageName: node + linkType: hard + +"@csstools/media-query-list-parser@npm:^2.1.2, @csstools/media-query-list-parser@npm:^2.1.4": + version: 2.1.4 + resolution: "@csstools/media-query-list-parser@npm:2.1.4" + peerDependencies: + "@csstools/css-parser-algorithms": ^2.3.1 + "@csstools/css-tokenizer": ^2.2.0 + checksum: 08572d20b3110d9b12a1ed039a8a59ed263347d404868386f7a03b221015441e5a0e4cb680bf9392c3448f704f0529955ba606618c3e04451894cf262a4df662 + languageName: node + linkType: hard + +"@csstools/postcss-cascade-layers@npm:^4.0.0": + version: 4.0.0 + resolution: "@csstools/postcss-cascade-layers@npm:4.0.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@csstools/selector-specificity": "npm:^3.0.0" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: d9b562dc0625b6210a15d434da49bd01ee10a46476bc7824ea15f9c9207d6e0bee09a7eca5146a5eac82a7d658f0188f65009f87db49871e1627fb8c3d53da7e + postcss: ^8.4 + checksum: 3058dc3adbf07468b222fd16bf65e31a799b887335f2fbdfb220cb200aef202c022ec7b3e4289afa4926689a0413783c5e8d1d7ff2efe97972a082a40b35028b languageName: node linkType: hard -"@babel/plugin-transform-template-literals@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-template-literals@npm:7.14.5" +"@csstools/postcss-color-function@npm:^3.0.3": + version: 3.0.3 + resolution: "@csstools/postcss-color-function@npm:3.0.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@csstools/css-color-parser": "npm:^1.3.1" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b2611b0fb777e468514a4a88ae4472f07d113f07a799016d3cc162df5b2acba491cdd6c84b2842c7187b50e1f3b303b945fa0129ca83141ec77e16566842bfe0 + postcss: ^8.4 + checksum: 8c7519f4d3e5de0e13f5a29387befad939688cef33cba956b18f4536ba67d10579e104cd9b133a438fd46c90820cfb3e8a6a837a28b22618d7ec7c16087e5e46 languageName: node linkType: hard -"@babel/plugin-transform-template-literals@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/plugin-transform-template-literals@npm:7.18.9" +"@csstools/postcss-color-mix-function@npm:^2.0.3": + version: 2.0.3 + resolution: "@csstools/postcss-color-mix-function@npm:2.0.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.9" + "@csstools/css-color-parser": "npm:^1.3.1" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: fc06206e58e6fc2d5678349c8d15b96099efdbcf59b6f394ced250c56d87fc6f03d8c4360a96d5d8738c59dc4b6b472395f95489396033769d28be9a2fe9ac91 + postcss: ^8.4 + checksum: 9c609c7491b0e22924445ca70db1c7ec55831ae34c20bb8ace13c9748f3a67baddf8d24cb7966d486c8ea4b88409c112784de7e077ea3bb18dd78d5ddeb31f04 languageName: node linkType: hard -"@babel/plugin-transform-typeof-symbol@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-typeof-symbol@npm:7.14.5" +"@csstools/postcss-exponential-functions@npm:^1.0.0": + version: 1.0.0 + resolution: "@csstools/postcss-exponential-functions@npm:1.0.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@csstools/css-calc": "npm:^1.1.3" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: c7866e870c0ae30c7bb5eb076570646193eeda7c3f12bb720ba3679d084b6a01ad8b21b18913cdf9fdabf49ecde4b7a7fbb8ad88f424858fcb52423760dba69e + postcss: ^8.4 + checksum: bf92e47113fe9a69c238ecfa3575657d72feeec7c4c88a4c24b5dd55f2548cd3e14c19d4276173b41eb6bfecf566b3cf0a8014c012bec0817ed9aa98fb189e22 languageName: node linkType: hard -"@babel/plugin-transform-typeof-symbol@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/plugin-transform-typeof-symbol@npm:7.18.9" +"@csstools/postcss-font-format-keywords@npm:^3.0.0": + version: 3.0.0 + resolution: "@csstools/postcss-font-format-keywords@npm:3.0.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.9" + postcss-value-parser: "npm:^4.2.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 257da06cf9b382ceb1e31ce17c91627cdfd324a03b21f5e20354516d99aaa0fb8be1f8bd0ecc97f83243e3931346b1faf7a6d14cfb5aba97f9e3dcb4bfad6af1 + postcss: ^8.4 + checksum: 7c3f0176c4b7ec9030bb82bcb267bcd08c72523ea4af4f5380769fce105d6221bf1c61c769672ddf186297db851155cd8eee64ae44b8bfe4856bf552d9dfa5fa languageName: node linkType: hard -"@babel/plugin-transform-unicode-escapes@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-unicode-escapes@npm:7.14.5" +"@csstools/postcss-gradients-interpolation-method@npm:^4.0.3": + version: 4.0.3 + resolution: "@csstools/postcss-gradients-interpolation-method@npm:4.0.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@csstools/css-color-parser": "npm:^1.3.1" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ae3812b12b84d588a7eba9fd82384a407d37ee75605fb6c5ca25adae661e122e3541dbad6214b0cfcfabbe99ffb27dfa82e90199598ea9ca73ec0541f5d154c8 + postcss: ^8.4 + checksum: 5f90689760078671864ab20ff4538ff8da0ad160887a572337b6d5330f2c3573fa22340ca6d6e2e9f275e0212b440ffb8732b8d36b2c2bc9d59afc6127c11a35 languageName: node linkType: hard -"@babel/plugin-transform-unicode-escapes@npm:^7.18.10": - version: 7.18.10 - resolution: "@babel/plugin-transform-unicode-escapes@npm:7.18.10" +"@csstools/postcss-hwb-function@npm:^3.0.3": + version: 3.0.3 + resolution: "@csstools/postcss-hwb-function@npm:3.0.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.18.9" + "@csstools/css-color-parser": "npm:^1.3.1" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: bc34b749667e7d6d47cdddd42773b56add519e3cec7d800a32c8573abf5f6e14bd5e14bb0d20ef12925b5c0833f7ef423fd5d13dcd7aab6c0ca62acad2a96d45 + postcss: ^8.4 + checksum: 07eba6c56fd010dda1c922cd99bc91483cff6b694869f6479991cdeabad8966f496c5553916cab56d83381224ea8d5c60d41dfd1fb6f42cd9348d58b3271fb0a languageName: node linkType: hard -"@babel/plugin-transform-unicode-regex@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-transform-unicode-regex@npm:7.14.5" +"@csstools/postcss-ic-unit@npm:^3.0.0": + version: 3.0.0 + resolution: "@csstools/postcss-ic-unit@npm:3.0.0" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" + postcss-value-parser: "npm:^4.2.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 5374a4162951dc72ca74d534ef01ac581d08bc071a852e27daa1c21a84dad9fefe2a6e40f596f56a30d7aa0fddffb9216bb723b89e651950193686512b180519 + postcss: ^8.4 + checksum: 905d2ba86a9e35e7f0d168019dd15646799d9e4381a46d395065288ca1ad6c481aaa163f2f8d03d8a8d7c992d587a90aeaeb8f354a6e38fa5f54d96f0596ffb5 languageName: node linkType: hard -"@babel/plugin-transform-unicode-regex@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-transform-unicode-regex@npm:7.18.6" +"@csstools/postcss-is-pseudo-class@npm:^4.0.1": + version: 4.0.1 + resolution: "@csstools/postcss-is-pseudo-class@npm:4.0.1" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" - "@babel/helper-plugin-utils": "npm:^7.18.6" + "@csstools/selector-specificity": "npm:^3.0.0" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b9b7c9b7e57d0db863697a76391a7aa891e9e694b25bd94d1b2fe4beb2d183786469b8fb38084521b76f556b169ac5de14d4bbd281ad4e739ed8d0b219ae7782 + postcss: ^8.4 + checksum: 7192b9c0785db98f603d4250258872474f4c243212d1dcc81a7e7098fb55ce7dc25792bb1b48d1fc878d81d413167d87ba3b06dc37e118cc1177557c4370000a languageName: node linkType: hard -"@babel/preset-env@npm:^7.11.0": - version: 7.14.7 - resolution: "@babel/preset-env@npm:7.14.7" +"@csstools/postcss-logical-float-and-clear@npm:^2.0.0": + version: 2.0.0 + resolution: "@csstools/postcss-logical-float-and-clear@npm:2.0.0" + peerDependencies: + postcss: ^8.4 + checksum: 474139d50b5b43528499c7785794c01836a6ca06fbcdbd09a7705b47aaf0716874a1063dde35d55a5f8fb9c6ed7403753cbb9fca54fc96c2e1fa1c1789c4d265 + languageName: node + linkType: hard + +"@csstools/postcss-logical-resize@npm:^2.0.0": + version: 2.0.0 + resolution: "@csstools/postcss-logical-resize@npm:2.0.0" dependencies: - "@babel/compat-data": "npm:^7.14.7" - "@babel/helper-compilation-targets": "npm:^7.14.5" - "@babel/helper-plugin-utils": "npm:^7.14.5" - "@babel/helper-validator-option": "npm:^7.14.5" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.14.5" - "@babel/plugin-proposal-async-generator-functions": "npm:^7.14.7" - "@babel/plugin-proposal-class-properties": "npm:^7.14.5" - "@babel/plugin-proposal-class-static-block": "npm:^7.14.5" - "@babel/plugin-proposal-dynamic-import": "npm:^7.14.5" - "@babel/plugin-proposal-export-namespace-from": "npm:^7.14.5" - "@babel/plugin-proposal-json-strings": "npm:^7.14.5" - "@babel/plugin-proposal-logical-assignment-operators": "npm:^7.14.5" - "@babel/plugin-proposal-nullish-coalescing-operator": "npm:^7.14.5" - "@babel/plugin-proposal-numeric-separator": "npm:^7.14.5" - "@babel/plugin-proposal-object-rest-spread": "npm:^7.14.7" - "@babel/plugin-proposal-optional-catch-binding": "npm:^7.14.5" - "@babel/plugin-proposal-optional-chaining": "npm:^7.14.5" - "@babel/plugin-proposal-private-methods": "npm:^7.14.5" - "@babel/plugin-proposal-private-property-in-object": "npm:^7.14.5" - "@babel/plugin-proposal-unicode-property-regex": "npm:^7.14.5" - "@babel/plugin-syntax-async-generators": "npm:^7.8.4" - "@babel/plugin-syntax-class-properties": "npm:^7.12.13" - "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" - "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" - "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" - "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" - "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" - "@babel/plugin-syntax-top-level-await": "npm:^7.14.5" - "@babel/plugin-transform-arrow-functions": "npm:^7.14.5" - "@babel/plugin-transform-async-to-generator": "npm:^7.14.5" - "@babel/plugin-transform-block-scoped-functions": "npm:^7.14.5" - "@babel/plugin-transform-block-scoping": "npm:^7.14.5" - "@babel/plugin-transform-classes": "npm:^7.14.5" - "@babel/plugin-transform-computed-properties": "npm:^7.14.5" - "@babel/plugin-transform-destructuring": "npm:^7.14.7" - "@babel/plugin-transform-dotall-regex": "npm:^7.14.5" - "@babel/plugin-transform-duplicate-keys": "npm:^7.14.5" - "@babel/plugin-transform-exponentiation-operator": "npm:^7.14.5" - "@babel/plugin-transform-for-of": "npm:^7.14.5" - "@babel/plugin-transform-function-name": "npm:^7.14.5" - "@babel/plugin-transform-literals": "npm:^7.14.5" - "@babel/plugin-transform-member-expression-literals": "npm:^7.14.5" - "@babel/plugin-transform-modules-amd": "npm:^7.14.5" - "@babel/plugin-transform-modules-commonjs": "npm:^7.14.5" - "@babel/plugin-transform-modules-systemjs": "npm:^7.14.5" - "@babel/plugin-transform-modules-umd": "npm:^7.14.5" - "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.14.7" - "@babel/plugin-transform-new-target": "npm:^7.14.5" - "@babel/plugin-transform-object-super": "npm:^7.14.5" - "@babel/plugin-transform-parameters": "npm:^7.14.5" - "@babel/plugin-transform-property-literals": "npm:^7.14.5" - "@babel/plugin-transform-regenerator": "npm:^7.14.5" - "@babel/plugin-transform-reserved-words": "npm:^7.14.5" - "@babel/plugin-transform-shorthand-properties": "npm:^7.14.5" - "@babel/plugin-transform-spread": "npm:^7.14.6" - "@babel/plugin-transform-sticky-regex": "npm:^7.14.5" - "@babel/plugin-transform-template-literals": "npm:^7.14.5" - "@babel/plugin-transform-typeof-symbol": "npm:^7.14.5" - "@babel/plugin-transform-unicode-escapes": "npm:^7.14.5" - "@babel/plugin-transform-unicode-regex": "npm:^7.14.5" - "@babel/preset-modules": "npm:^0.1.4" - "@babel/types": "npm:^7.14.5" - babel-plugin-polyfill-corejs2: "npm:^0.2.2" - babel-plugin-polyfill-corejs3: "npm:^0.2.2" - babel-plugin-polyfill-regenerator: "npm:^0.2.2" - core-js-compat: "npm:^3.15.0" - semver: "npm:^6.3.0" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 84cd3a24093c5db4581a51875b22a8280c38a093cde10ab3961300fd9da9d07f19ecf70aceb8b7be69549d0ff7b1528004005195988675ac7907c453d8f437a8 - languageName: node - linkType: hard - -"@babel/preset-env@npm:^7.20.2": - version: 7.20.2 - resolution: "@babel/preset-env@npm:7.20.2" - dependencies: - "@babel/compat-data": "npm:^7.20.1" - "@babel/helper-compilation-targets": "npm:^7.20.0" - "@babel/helper-plugin-utils": "npm:^7.20.2" - "@babel/helper-validator-option": "npm:^7.18.6" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.18.6" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.18.9" - "@babel/plugin-proposal-async-generator-functions": "npm:^7.20.1" - "@babel/plugin-proposal-class-properties": "npm:^7.18.6" - "@babel/plugin-proposal-class-static-block": "npm:^7.18.6" - "@babel/plugin-proposal-dynamic-import": "npm:^7.18.6" - "@babel/plugin-proposal-export-namespace-from": "npm:^7.18.9" - "@babel/plugin-proposal-json-strings": "npm:^7.18.6" - "@babel/plugin-proposal-logical-assignment-operators": "npm:^7.18.9" - "@babel/plugin-proposal-nullish-coalescing-operator": "npm:^7.18.6" - "@babel/plugin-proposal-numeric-separator": "npm:^7.18.6" - "@babel/plugin-proposal-object-rest-spread": "npm:^7.20.2" - "@babel/plugin-proposal-optional-catch-binding": "npm:^7.18.6" - "@babel/plugin-proposal-optional-chaining": "npm:^7.18.9" - "@babel/plugin-proposal-private-methods": "npm:^7.18.6" - "@babel/plugin-proposal-private-property-in-object": "npm:^7.18.6" - "@babel/plugin-proposal-unicode-property-regex": "npm:^7.18.6" - "@babel/plugin-syntax-async-generators": "npm:^7.8.4" - "@babel/plugin-syntax-class-properties": "npm:^7.12.13" - "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" - "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" - "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" - "@babel/plugin-syntax-import-assertions": "npm:^7.20.0" - "@babel/plugin-syntax-json-strings": "npm:^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" - "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" - "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" - "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" - "@babel/plugin-syntax-top-level-await": "npm:^7.14.5" - "@babel/plugin-transform-arrow-functions": "npm:^7.18.6" - "@babel/plugin-transform-async-to-generator": "npm:^7.18.6" - "@babel/plugin-transform-block-scoped-functions": "npm:^7.18.6" - "@babel/plugin-transform-block-scoping": "npm:^7.20.2" - "@babel/plugin-transform-classes": "npm:^7.20.2" - "@babel/plugin-transform-computed-properties": "npm:^7.18.9" - "@babel/plugin-transform-destructuring": "npm:^7.20.2" - "@babel/plugin-transform-dotall-regex": "npm:^7.18.6" - "@babel/plugin-transform-duplicate-keys": "npm:^7.18.9" - "@babel/plugin-transform-exponentiation-operator": "npm:^7.18.6" - "@babel/plugin-transform-for-of": "npm:^7.18.8" - "@babel/plugin-transform-function-name": "npm:^7.18.9" - "@babel/plugin-transform-literals": "npm:^7.18.9" - "@babel/plugin-transform-member-expression-literals": "npm:^7.18.6" - "@babel/plugin-transform-modules-amd": "npm:^7.19.6" - "@babel/plugin-transform-modules-commonjs": "npm:^7.19.6" - "@babel/plugin-transform-modules-systemjs": "npm:^7.19.6" - "@babel/plugin-transform-modules-umd": "npm:^7.18.6" - "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.19.1" - "@babel/plugin-transform-new-target": "npm:^7.18.6" - "@babel/plugin-transform-object-super": "npm:^7.18.6" - "@babel/plugin-transform-parameters": "npm:^7.20.1" - "@babel/plugin-transform-property-literals": "npm:^7.18.6" - "@babel/plugin-transform-regenerator": "npm:^7.18.6" - "@babel/plugin-transform-reserved-words": "npm:^7.18.6" - "@babel/plugin-transform-shorthand-properties": "npm:^7.18.6" - "@babel/plugin-transform-spread": "npm:^7.19.0" - "@babel/plugin-transform-sticky-regex": "npm:^7.18.6" - "@babel/plugin-transform-template-literals": "npm:^7.18.9" - "@babel/plugin-transform-typeof-symbol": "npm:^7.18.9" - "@babel/plugin-transform-unicode-escapes": "npm:^7.18.10" - "@babel/plugin-transform-unicode-regex": "npm:^7.18.6" - "@babel/preset-modules": "npm:^0.1.5" - "@babel/types": "npm:^7.20.2" - babel-plugin-polyfill-corejs2: "npm:^0.3.3" - babel-plugin-polyfill-corejs3: "npm:^0.6.0" - babel-plugin-polyfill-regenerator: "npm:^0.4.1" - core-js-compat: "npm:^3.25.1" - semver: "npm:^6.3.0" + postcss-value-parser: "npm:^4.2.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: fec7c57e1e91306ac529e4cbbad6c0ec8eb966af68ba55cffb8f8e2cbe4e596d84b6c6015889e98828a787bab6d24fde275f4ff184cf959e684e92725039dbaf + postcss: ^8.4 + checksum: c6c4567561fad1c9e776eb9247103ad4291db3c3c6f580c34e34e8e29cdcc3d41eef389e380744ab9e4cab6ecf7385bb8436684d14226e91ee9cfff0013bd37c languageName: node linkType: hard -"@babel/preset-modules@npm:^0.1.4": - version: 0.1.4 - resolution: "@babel/preset-modules@npm:0.1.4" +"@csstools/postcss-logical-viewport-units@npm:^2.0.1": + version: 2.0.1 + resolution: "@csstools/postcss-logical-viewport-units@npm:2.0.1" dependencies: - "@babel/helper-plugin-utils": "npm:^7.0.0" - "@babel/plugin-proposal-unicode-property-regex": "npm:^7.4.4" - "@babel/plugin-transform-dotall-regex": "npm:^7.4.4" - "@babel/types": "npm:^7.4.4" - esutils: "npm:^2.0.2" + "@csstools/css-tokenizer": "npm:^2.2.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 28bc29e50a7a6705250762837ef4d1bcd05241da75c523684e36178062150229a988da59ed91f2a82f6307b80a7ea5c65414ef9d8c73fb9e8f82ca60e77f58b5 + postcss: ^8.4 + checksum: a486b0f1ae903d7b5e94c1ebc0daf31b0a98eb75481a19c9048c74c07daf9f30ea7d38eea0550d33171d4d01fc06d54b3a06eab3b21a6bf2eb67fe37ee59b0dc languageName: node linkType: hard -"@babel/preset-modules@npm:^0.1.5": - version: 0.1.5 - resolution: "@babel/preset-modules@npm:0.1.5" +"@csstools/postcss-media-minmax@npm:^1.0.7": + version: 1.0.7 + resolution: "@csstools/postcss-media-minmax@npm:1.0.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.0.0" - "@babel/plugin-proposal-unicode-property-regex": "npm:^7.4.4" - "@babel/plugin-transform-dotall-regex": "npm:^7.4.4" - "@babel/types": "npm:^7.4.4" - esutils: "npm:^2.0.2" + "@csstools/css-calc": "npm:^1.1.3" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/media-query-list-parser": "npm:^2.1.4" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ebba2ca33850f53f9f45ed2c9d4bb1add9438e2b0321064d232dc3abc64b5e102194557aa5719bfc8384fc5f76595b8723e4cb8e41cb79599d4efcf6fb650cc3 + postcss: ^8.4 + checksum: 899521bf0117b31a4a43bb83b0d5486bd7ee019a86dd4ba8e0394e2fc84edcff2a17121c942c0c8b0c7e684a0b1f3940e18706d2f5f7371c7670453f6ad04af2 languageName: node linkType: hard -"@babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.8.4": - version: 7.14.6 - resolution: "@babel/runtime@npm:7.14.6" +"@csstools/postcss-media-queries-aspect-ratio-number-values@npm:^2.0.2": + version: 2.0.2 + resolution: "@csstools/postcss-media-queries-aspect-ratio-number-values@npm:2.0.2" dependencies: - regenerator-runtime: "npm:^0.13.4" - checksum: 25e49c1f44412ff0df3d14d4a3e4b9cf04f1adc829bc9c82f3da914643f334b452051d6f58f46ccdc2ab1eaca910232514783380cf7a1752d4b2a4d6c7c9d2da + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/media-query-list-parser": "npm:^2.1.4" + peerDependencies: + postcss: ^8.4 + checksum: fe2314e15ebbe466e83afc590826f43bef13527bbdce7dd72894c0738438521a87c6aba6c6c07046a6de6d754e70e9a3bc90eb2f77a9ceab9a553e43ae72b226 languageName: node linkType: hard -"@babel/template@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/template@npm:7.14.5" +"@csstools/postcss-nested-calc@npm:^3.0.0": + version: 3.0.0 + resolution: "@csstools/postcss-nested-calc@npm:3.0.0" dependencies: - "@babel/code-frame": "npm:^7.14.5" - "@babel/parser": "npm:^7.14.5" - "@babel/types": "npm:^7.14.5" - checksum: 7603106c921bb143ad3c1f8877e82a5f5d40316aac832ad8e2b7defc2bd0e75f26c6ff6e5c5cbb4216a13ea16bd8571ec2f55bcadba5119c67b47bf46f746f2b + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.4 + checksum: 3aabf0a7681c82b241817fe0421c8ef8b60ffb1858667af8434e571d0efab22cb19ff522b47133ab195c29c98fe7fe57da75b34d35796080134051a463b92146 languageName: node linkType: hard -"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7": - version: 7.20.7 - resolution: "@babel/template@npm:7.20.7" +"@csstools/postcss-normalize-display-values@npm:^3.0.0": + version: 3.0.0 + resolution: "@csstools/postcss-normalize-display-values@npm:3.0.0" dependencies: - "@babel/code-frame": "npm:^7.18.6" - "@babel/parser": "npm:^7.20.7" - "@babel/types": "npm:^7.20.7" - checksum: a655fb476be89195fd0e0e89b278d0ad5edd351d7fec6e9902c9797b831895f6bcfc2b9a29de4228cdabd2904230b1db3f3ebff88aed6f3f6d4dd85db8a4d8a8 + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.4 + checksum: bc2ab030278992a2ce2effd33815a33d03630b02f83030cf0dac12c0c75065bcb1584841c9c4fa2c07264f41818f7dce8d7343931a54ff7490d3e3afccf488d6 languageName: node linkType: hard -"@babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.14.5": - version: 7.14.7 - resolution: "@babel/traverse@npm:7.14.7" +"@csstools/postcss-oklab-function@npm:^3.0.3": + version: 3.0.3 + resolution: "@csstools/postcss-oklab-function@npm:3.0.3" dependencies: - "@babel/code-frame": "npm:^7.14.5" - "@babel/generator": "npm:^7.14.5" - "@babel/helper-function-name": "npm:^7.14.5" - "@babel/helper-hoist-variables": "npm:^7.14.5" - "@babel/helper-split-export-declaration": "npm:^7.14.5" - "@babel/parser": "npm:^7.14.7" - "@babel/types": "npm:^7.14.5" - debug: "npm:^4.1.0" - globals: "npm:^11.1.0" - checksum: 29a1733ecabe9ffd3f2aaae9d346d228b1beb2cc56fd834ec2e3c345517958052502d628440c67142cfcf5ec7cb333b1d07eea21977bde96a95d40e5067e76f5 + "@csstools/css-color-parser": "npm:^1.3.1" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" + peerDependencies: + postcss: ^8.4 + checksum: 8a74de4e9d827a53ff44cf584dcf9d9cdab87de61b93936196ffaa9813b70e21a65ed4ecaff0b9ac1a8f1a04cbd5ef519a53a4e991959ee8c685ceeef030f977 languageName: node linkType: hard -"@babel/traverse@npm:^7.20.10, @babel/traverse@npm:^7.20.12, @babel/traverse@npm:^7.20.13, @babel/traverse@npm:^7.20.5, @babel/traverse@npm:^7.20.7": - version: 7.20.13 - resolution: "@babel/traverse@npm:7.20.13" +"@csstools/postcss-progressive-custom-properties@npm:^3.0.0": + version: 3.0.0 + resolution: "@csstools/postcss-progressive-custom-properties@npm:3.0.0" dependencies: - "@babel/code-frame": "npm:^7.18.6" - "@babel/generator": "npm:^7.20.7" - "@babel/helper-environment-visitor": "npm:^7.18.9" - "@babel/helper-function-name": "npm:^7.19.0" - "@babel/helper-hoist-variables": "npm:^7.18.6" - "@babel/helper-split-export-declaration": "npm:^7.18.6" - "@babel/parser": "npm:^7.20.13" - "@babel/types": "npm:^7.20.7" - debug: "npm:^4.1.0" - globals: "npm:^11.1.0" - checksum: 24a867dfce429baba697763c033c5103e052348de6405dac3b5b2f0865a0ffed0b035b109d64b14257404f5a3470328d027caeeca3726eca3b85eb10a72fa727 + postcss-value-parser: "npm:^4.2.0" + peerDependencies: + postcss: ^8.4 + checksum: 48ead8efe9c5e5d14d5f1faae17048c1e24693b370d6fc2f9eba153de372adf78f3be7d343d44bc73b3634f6fcf13d24cd1d631ff1ec971fa6769b04004b1659 languageName: node linkType: hard -"@babel/types@npm:^7.14.5, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": - version: 7.14.5 - resolution: "@babel/types@npm:7.14.5" +"@csstools/postcss-relative-color-syntax@npm:^2.0.3": + version: 2.0.3 + resolution: "@csstools/postcss-relative-color-syntax@npm:2.0.3" dependencies: - "@babel/helper-validator-identifier": "npm:^7.14.5" - to-fast-properties: "npm:^2.0.0" - checksum: cb9dffa3de7dcc913eff6ddfb2358fe88d86ef61da7ba521cb0b8e556a9668c0507bc1cc12a2784755249b17b956935fcb5c19b2475b01af298543df9b754556 + "@csstools/css-color-parser": "npm:^1.3.1" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" + peerDependencies: + postcss: ^8.4 + checksum: 6ce03b4b971ea34bc1a5c4c6793eda6fa2f250b85268ae518b5dbf0f19db002a164a9cdc8a1057910063e18de91635da71a6be53f72bdcd19bfdf5d86d9e55e5 languageName: node linkType: hard -"@babel/types@npm:^7.18.6, @babel/types@npm:^7.18.9, @babel/types@npm:^7.19.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.2, @babel/types@npm:^7.20.5, @babel/types@npm:^7.20.7": - version: 7.20.7 - resolution: "@babel/types@npm:7.20.7" +"@csstools/postcss-scope-pseudo-class@npm:^3.0.0": + version: 3.0.0 + resolution: "@csstools/postcss-scope-pseudo-class@npm:3.0.0" dependencies: - "@babel/helper-string-parser": "npm:^7.19.4" - "@babel/helper-validator-identifier": "npm:^7.19.1" - to-fast-properties: "npm:^2.0.0" - checksum: 3457ea7eaf5d3cb20ff93c058d60983609c5963f87ac7793e2ef690934f34fadd874669d2abc4705d5953c212ed9d3cc0194618b66fa90b99ead6d2466ccce9d + postcss-selector-parser: "npm:^6.0.13" + peerDependencies: + postcss: ^8.4 + checksum: 9cef530e2884f77e8e6f82e4a8e291493c0c6a451866b25a7c6b96b4fb886b19ca3e39db52177a9c0912aa325c078ca5afaa6b87b27534b7c35458e58fb19e3e languageName: node linkType: hard -"@badeball/cypress-configuration@npm:^4.0.0": - version: 4.0.0 - resolution: "@badeball/cypress-configuration@npm:4.0.0" +"@csstools/postcss-stepped-value-functions@npm:^3.0.1": + version: 3.0.1 + resolution: "@csstools/postcss-stepped-value-functions@npm:3.0.1" dependencies: - "@babel/parser": "npm:^7.18.8" - debug: "npm:^4.3.2" - esbuild: "npm:^0.11.12" - glob: "npm:^7.1.6" - minimatch: "npm:^3.0.4" - node-hook: "npm:^1.0.0" - checksum: 5c71d20eade79a6944af8efa3e073f0ac0fc4ef52b73ce0c8a346401693facaf1bf3526e41b5200c02849d28114ec8758bddbfec49da3bb36e973d796212a301 + "@csstools/css-calc": "npm:^1.1.3" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + peerDependencies: + postcss: ^8.4 + checksum: fb644c5727e37be32018ef6e90ac5c2010103e185dd18334f4836a29c0f897d6d71ceadafc41578f070f443234366174dbc94ccc1e489cfc5eb2966dc870023a languageName: node linkType: hard -"@badeball/cypress-cucumber-preprocessor@npm:^12.0.0": - version: 12.0.0 - resolution: "@badeball/cypress-cucumber-preprocessor@npm:12.0.0" +"@csstools/postcss-text-decoration-shorthand@npm:^3.0.2": + version: 3.0.2 + resolution: "@csstools/postcss-text-decoration-shorthand@npm:3.0.2" dependencies: - "@badeball/cypress-configuration": "npm:^4.0.0" - "@cucumber/cucumber-expressions": "npm:^16.0.0" - "@cucumber/gherkin": "npm:^24.0.0" - "@cucumber/html-formatter": "npm:^19.2.0" - "@cucumber/message-streams": "npm:^4.0.1" - "@cucumber/messages": "npm:^19.1.2" - "@cucumber/tag-expressions": "npm:^4.1.0" - base64-js: "npm:^1.5.1" - chalk: "npm:^4.1.2" - common-ancestor-path: "npm:^1.0.1" - cosmiconfig: "npm:^7.0.1" - debug: "npm:^4.2.0" - glob: "npm:^7.2.0" - is-path-inside: "npm:^3.0.3" - resolve-pkg: "npm:^2.0.0" - uuid: "npm:^8.3.2" + "@csstools/color-helpers": "npm:^3.0.2" + postcss-value-parser: "npm:^4.2.0" peerDependencies: - "@cypress/browserify-preprocessor": ^3.0.1 - cypress: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 - esbuild: ^0.14.23 - peerDependenciesMeta: - "@cypress/browserify-preprocessor": - optional: true - esbuild: - optional: true - checksum: 96b6a63af349c4a7563a713fad363141352626dad1c55e57b39c7afc105f1f30ca4af7e8bdb905e170431903cdd9445bf7f68788e54da4c1bbc790f19dbda79c + postcss: ^8.4 + checksum: 99314f1cab404880885afa890e35dd8099b4fc17c0edaedfc04c0b703e44066b0f71964ea67a254016e469207c876b9286bd38c2bdc50f19c3deb06ca582a1b1 languageName: node linkType: hard -"@bahmutov/cypress-esbuild-preprocessor@npm:^2.1.3": - version: 2.1.3 - resolution: "@bahmutov/cypress-esbuild-preprocessor@npm:2.1.3" +"@csstools/postcss-trigonometric-functions@npm:^3.0.1": + version: 3.0.1 + resolution: "@csstools/postcss-trigonometric-functions@npm:3.0.1" dependencies: - debug: "npm:4.3.4" + "@csstools/css-calc": "npm:^1.1.3" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" peerDependencies: - esbuild: "*" - checksum: 5e41fa4e3321c3fdbfcd37c905dd4bfe71600e2fd69b864a7e95bed524e662d0e0e8f009a03c909bf1d16f9c0072aff60feae1096cf580670d597d23a6b96f14 + postcss: ^8.4 + checksum: 32bdec597c6b6b645be91c9c5a310093ceda7a29a444f4453970b2054057c03d5e3294738e1efd1bf38b4b8f147ceb70600f2f6a826f49288e7fe2f2d045f13d languageName: node linkType: hard -"@colors/colors@npm:1.5.0": - version: 1.5.0 - resolution: "@colors/colors@npm:1.5.0" - checksum: 5e08870799494f68e5b3b79e9a337bbf5fd7e634904fbbe642769921bf158fe458c41c888f88edf051b78c5325e3339970f00b24e31421c3480bb58f02687218 +"@csstools/postcss-unset-value@npm:^3.0.0": + version: 3.0.0 + resolution: "@csstools/postcss-unset-value@npm:3.0.0" + peerDependencies: + postcss: ^8.4 + checksum: e9292882d2de037abbcd8bd3f77bb7f78bb94cfdb82182cfa4e22c9206a1be26a7d25a750f0e558185d9711c71c63a43a5b8a9dd06446310b8d52e2905d77bca languageName: node linkType: hard -"@commitlint/cli@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/cli@npm:17.4.2" - dependencies: - "@commitlint/format": "npm:^17.4.0" - "@commitlint/lint": "npm:^17.4.2" - "@commitlint/load": "npm:^17.4.2" - "@commitlint/read": "npm:^17.4.2" - "@commitlint/types": "npm:^17.4.0" - execa: "npm:^5.0.0" - lodash.isfunction: "npm:^3.0.9" - resolve-from: "npm:5.0.0" - resolve-global: "npm:1.0.0" - yargs: "npm:^17.0.0" - bin: - commitlint: cli.js - checksum: 0d68555ad55b0533a049cfad02095171819c68957fd738e066dccba5dd729e1eece153e81de3db5ad7b9eecff526532270ad7b5b955a064cd3149330281ea30e +"@csstools/selector-specificity@npm:^3.0.0": + version: 3.0.0 + resolution: "@csstools/selector-specificity@npm:3.0.0" + peerDependencies: + postcss-selector-parser: ^6.0.13 + checksum: 0304b77e383b959ee95dac41ccfa6ae3586c46b224b550f12389f52f5630d2c2bea484b238c15209adef598c0520edc7e9f202f03d072eaf433c8c982e6bf057 languageName: node linkType: hard -"@commitlint/config-conventional@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/config-conventional@npm:17.4.2" - dependencies: - conventional-changelog-conventionalcommits: "npm:^5.0.0" - checksum: fcf5ac70b2a8149b56f0088469988eea5631998492fa814c2a87f73baccecad46e102f1c01de2f250504c892fa888aef51b67e7183c0906162bfff80f7ca6c41 +"@cucumber/ci-environment@npm:9.2.0": + version: 9.2.0 + resolution: "@cucumber/ci-environment@npm:9.2.0" + checksum: 216b642c5b53b57ad3885710b1d1b0a522eebe020256dd857988c0e0b7e9d4a9aabe29320ccbf5fd503dfcadd0591a6604b4407b2e683abeb24dc41a62072e30 languageName: node linkType: hard -"@commitlint/config-validator@npm:^17.4.0": - version: 17.4.0 - resolution: "@commitlint/config-validator@npm:17.4.0" +"@cucumber/cucumber-expressions@npm:16.1.2, @cucumber/cucumber-expressions@npm:^16.1.2": + version: 16.1.2 + resolution: "@cucumber/cucumber-expressions@npm:16.1.2" dependencies: - "@commitlint/types": "npm:^17.4.0" - ajv: "npm:^8.11.0" - checksum: 355746588b516035c012f62c09b85e8333d1dee5588cc91541f2d04cf1b2f05480c0ef00faeb23de0c73bf502379a81b6839e8fc1b9a282911732d04b03ef314 + regexp-match-indices: "npm:1.0.2" + checksum: 845ce432fdb40f3b07b2607ac6caa5c9e5b7880f9846ea25c5948ae54e48756f4af3119e8b2de2aa996dd983c884496da572d75d4f3efebb5312ce592c44df8c languageName: node linkType: hard -"@commitlint/ensure@npm:^17.4.0": - version: 17.4.0 - resolution: "@commitlint/ensure@npm:17.4.0" +"@cucumber/cucumber@npm:^9.1.0": + version: 9.5.1 + resolution: "@cucumber/cucumber@npm:9.5.1" dependencies: - "@commitlint/types": "npm:^17.4.0" - lodash.camelcase: "npm:^4.3.0" - lodash.kebabcase: "npm:^4.1.1" - lodash.snakecase: "npm:^4.1.1" - lodash.startcase: "npm:^4.4.0" - lodash.upperfirst: "npm:^4.3.1" - checksum: 707e9dcf12caeb917663d94bfcea5b88aada66a2f359db189e121841f76e36517fab2c7bdaf12327433506175613262c61b2832f7239045f42dd3fe964af0e87 + "@cucumber/ci-environment": "npm:9.2.0" + "@cucumber/cucumber-expressions": "npm:16.1.2" + "@cucumber/gherkin": "npm:26.2.0" + "@cucumber/gherkin-streams": "npm:5.0.1" + "@cucumber/gherkin-utils": "npm:8.0.2" + "@cucumber/html-formatter": "npm:20.4.0" + "@cucumber/message-streams": "npm:4.0.1" + "@cucumber/messages": "npm:22.0.0" + "@cucumber/tag-expressions": "npm:5.0.1" + assertion-error-formatter: "npm:^3.0.0" + capital-case: "npm:^1.0.4" + chalk: "npm:^4.1.2" + cli-table3: "npm:0.6.3" + commander: "npm:^10.0.0" + debug: "npm:^4.3.4" + error-stack-parser: "npm:^2.1.4" + figures: "npm:^3.2.0" + glob: "npm:^7.1.6" + has-ansi: "npm:^4.0.1" + indent-string: "npm:^4.0.0" + is-installed-globally: "npm:^0.4.0" + is-stream: "npm:^2.0.0" + knuth-shuffle-seeded: "npm:^1.0.6" + lodash.merge: "npm:^4.6.2" + lodash.mergewith: "npm:^4.6.2" + luxon: "npm:3.2.1" + mkdirp: "npm:^2.1.5" + mz: "npm:^2.7.0" + progress: "npm:^2.0.3" + resolve-pkg: "npm:^2.0.0" + semver: "npm:7.5.3" + string-argv: "npm:^0.3.1" + strip-ansi: "npm:6.0.1" + supports-color: "npm:^8.1.1" + tmp: "npm:^0.2.1" + util-arity: "npm:^1.1.0" + verror: "npm:^1.10.0" + xmlbuilder: "npm:^15.1.1" + yaml: "npm:^2.2.2" + yup: "npm:1.2.0" + bin: + cucumber-js: bin/cucumber.js + checksum: cddf2b61aba4310fa01053a6bb062f61bac8a95f0c5d8a37fb2c197a1f911e667eee1c13540d17afeb7cf51b2aa37e42ce9d8878e6b68a108934f36a973c033c languageName: node linkType: hard -"@commitlint/execute-rule@npm:^17.4.0": - version: 17.4.0 - resolution: "@commitlint/execute-rule@npm:17.4.0" - checksum: e68a0119c643421713078ed46eaa32e8ca0b4ccb112bd937f43405e060f2b7321cc3d746558d3dbf33caeaa9b4315a35fd3edb9c626cd5d35c970ee3d25b08fb +"@cucumber/gherkin-streams@npm:5.0.1": + version: 5.0.1 + resolution: "@cucumber/gherkin-streams@npm:5.0.1" + dependencies: + commander: "npm:9.1.0" + source-map-support: "npm:0.5.21" + peerDependencies: + "@cucumber/gherkin": ">=22.0.0" + "@cucumber/message-streams": ">=4.0.0" + "@cucumber/messages": ">=17.1.1" + bin: + gherkin-javascript: bin/gherkin + checksum: 51feef57dda16de55f007f50a416c1d18db2cf642851ea616cbc992c9a66becd6d4b5b121a374e81eb8cf4c967eca3d86db773cbd34967a1e1d1776572894857 languageName: node linkType: hard -"@commitlint/format@npm:^17.4.0": - version: 17.4.0 - resolution: "@commitlint/format@npm:17.4.0" +"@cucumber/gherkin-utils@npm:8.0.2": + version: 8.0.2 + resolution: "@cucumber/gherkin-utils@npm:8.0.2" dependencies: - "@commitlint/types": "npm:^17.4.0" - chalk: "npm:^4.1.0" - checksum: b77c69670706a97634e8ff7cdcf9c8826ba67db79805a43a1f5c0a246483f0c35e948a094de02d72035270e137684ac306912232bb7c30d26f611447ad866535 + "@cucumber/gherkin": "npm:^25.0.0" + "@cucumber/messages": "npm:^19.1.4" + "@teppeis/multimaps": "npm:2.0.0" + commander: "npm:9.4.1" + source-map-support: "npm:^0.5.21" + bin: + gherkin-utils: bin/gherkin-utils + checksum: cef3761a7acfd969f828bda4f19106e7e8cb1d43cd619002cff33ac522232f6365ebad2dae49a61a5fd16a368e7f2480eea5a3a046cdfe2d3fd729a3e28c4c80 languageName: node linkType: hard -"@commitlint/is-ignored@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/is-ignored@npm:17.4.2" +"@cucumber/gherkin@npm:26.2.0, @cucumber/gherkin@npm:^26.2.0": + version: 26.2.0 + resolution: "@cucumber/gherkin@npm:26.2.0" dependencies: - "@commitlint/types": "npm:^17.4.0" - semver: "npm:7.3.8" - checksum: 3fa1602709039cc949ca068d26e5056a425ed5e2214168fdb6130a68834e20e9689d7cc2a14670b18c7a900af6571ddb0f06f52164374622f35c30f3bc87e9e3 + "@cucumber/messages": "npm:>=19.1.4 <=22" + checksum: d42f9ac9628ffd1bdae650b34b9849a74e3f9dfd62c08bef15e1f8c3189018f9bcd538bc35aa30c89b730812a8d639be52d95ea30cc33fc60e6375ede7f3baad languageName: node linkType: hard -"@commitlint/lint@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/lint@npm:17.4.2" +"@cucumber/gherkin@npm:^25.0.0": + version: 25.0.2 + resolution: "@cucumber/gherkin@npm:25.0.2" dependencies: - "@commitlint/is-ignored": "npm:^17.4.2" - "@commitlint/parse": "npm:^17.4.2" - "@commitlint/rules": "npm:^17.4.2" - "@commitlint/types": "npm:^17.4.0" - checksum: 95e4179c27793c4c5a13f13331557758860055933ae2ea41d40bc05911bae13fab545739a388917a46a135469c57933d2e8426988837f4e2a36a107d5d04ba59 + "@cucumber/messages": "npm:^19.1.4" + checksum: 6530c821bb8ea3c67e423b7a550179f115511bf46d1955c7d375bf5cea5989fdfe606162b7b7d0aaf8989bbab575a17cd3a1baa0604857f521ce563580dd0217 languageName: node linkType: hard -"@commitlint/load@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/load@npm:17.4.2" - dependencies: - "@commitlint/config-validator": "npm:^17.4.0" - "@commitlint/execute-rule": "npm:^17.4.0" - "@commitlint/resolve-extends": "npm:^17.4.0" - "@commitlint/types": "npm:^17.4.0" - "@types/node": "npm:*" - chalk: "npm:^4.1.0" - cosmiconfig: "npm:^8.0.0" - cosmiconfig-typescript-loader: "npm:^4.0.0" - lodash.isplainobject: "npm:^4.0.6" - lodash.merge: "npm:^4.6.2" - lodash.uniq: "npm:^4.5.0" - resolve-from: "npm:^5.0.0" - ts-node: "npm:^10.8.1" - typescript: "npm:^4.6.4" - checksum: 2a3a32109d96231e09d17dd6b00b0572238eb82215211ad40e7646c22528b6d7cd6bed7aa93a00264707c18b43df6fa5c357536f0e5e605b7dfeab383cc932c0 +"@cucumber/html-formatter@npm:20.4.0, @cucumber/html-formatter@npm:^20.3.0": + version: 20.4.0 + resolution: "@cucumber/html-formatter@npm:20.4.0" + peerDependencies: + "@cucumber/messages": ">=18" + checksum: f1a9def85db252d26d8bb9b858bea0b9a49afa5fc75ce8320b11a36eb55dfc41e2e722157e2d6e5f22bb957857d6341a71ee6d2d90f99e7a14c50fe34c60d7f0 languageName: node linkType: hard -"@commitlint/message@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/message@npm:17.4.2" - checksum: cc125dd2852b0bf9b6bf82be481736a5a93b355facc1f37fce0a000d3d5791dae1460d8c28ccc9acd8ad326a299f0c01be151ee6000cf0ae02dce4c624e4bc07 +"@cucumber/message-streams@npm:4.0.1, @cucumber/message-streams@npm:^4.0.1": + version: 4.0.1 + resolution: "@cucumber/message-streams@npm:4.0.1" + peerDependencies: + "@cucumber/messages": ">=17.1.1" + checksum: 1fb15846293f85308a56b4e64de251975c32b1ff52bd5a0055045971b3ab7c4ad91150121493c7b64afc7c6c698946d65cd9f9d2528eea4d685c6fefb8b6dc2c languageName: node linkType: hard -"@commitlint/parse@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/parse@npm:17.4.2" +"@cucumber/messages@npm:22.0.0, @cucumber/messages@npm:>=19.1.4 <=22, @cucumber/messages@npm:^22.0.0": + version: 22.0.0 + resolution: "@cucumber/messages@npm:22.0.0" dependencies: - "@commitlint/types": "npm:^17.4.0" - conventional-changelog-angular: "npm:^5.0.11" - conventional-commits-parser: "npm:^3.2.2" - checksum: 59c470d5018180c4c0f55cd1a02ff85eccc41dea43586a8d8bbd2d8de946e8d112a7369149f4f3dec2819d6ed7f7a42c9de90edc371fd779a5e6fc62a95b71c9 + "@types/uuid": "npm:9.0.1" + class-transformer: "npm:0.5.1" + reflect-metadata: "npm:0.1.13" + uuid: "npm:9.0.0" + checksum: d86f5fa20f99a8b585f67d550f3a1b464c02230a1221481432e056cb1f854b3bb6ddb84d2103c8b28b652848b7b592b006434931dc167db67f2479be6aa6475a languageName: node linkType: hard -"@commitlint/read@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/read@npm:17.4.2" +"@cucumber/messages@npm:^19.1.4": + version: 19.1.4 + resolution: "@cucumber/messages@npm:19.1.4" dependencies: - "@commitlint/top-level": "npm:^17.4.0" - "@commitlint/types": "npm:^17.4.0" - fs-extra: "npm:^11.0.0" - git-raw-commits: "npm:^2.0.0" - minimist: "npm:^1.2.6" - checksum: abdb4ab7f3752c11cf78c8a88fba41356515bc32aaa3f5ad7af1ff95f65e86853f2dd9f8f83fd57c0b614023e6013eb84ec63c4e8f705e5406a859f936ca4398 + "@types/uuid": "npm:8.3.4" + class-transformer: "npm:0.5.1" + reflect-metadata: "npm:0.1.13" + uuid: "npm:9.0.0" + checksum: ff1604b374fb41ddc823621c5dbe21241cf109f309d7a86ac9776febfd61888ad84f2f273a215174fae7057f95e00337ef0fb869e73b62a97902f78cf1f3f16d languageName: node linkType: hard -"@commitlint/resolve-extends@npm:^17.4.0": - version: 17.4.0 - resolution: "@commitlint/resolve-extends@npm:17.4.0" +"@cucumber/pretty-formatter@npm:^1.0.0": + version: 1.0.0 + resolution: "@cucumber/pretty-formatter@npm:1.0.0" dependencies: - "@commitlint/config-validator": "npm:^17.4.0" - "@commitlint/types": "npm:^17.4.0" - import-fresh: "npm:^3.0.0" - lodash.mergewith: "npm:^4.6.2" - resolve-from: "npm:^5.0.0" - resolve-global: "npm:^1.0.0" - checksum: 7a6a45a8f0f30670f90d157c541e23781437a98bdcc3f5eae437000270111bf8f2ac38d229631bc0c5ee1fe6c793f2f371faf06a0e81b3762730b291057fe844 + ansi-styles: "npm:^5.0.0" + cli-table3: "npm:^0.6.0" + figures: "npm:^3.2.0" + ts-dedent: "npm:^2.0.0" + peerDependencies: + "@cucumber/cucumber": ">=7.0.0" + "@cucumber/messages": "*" + checksum: 632c42a2fea8c5b6ad73d263b2b97ae770a9730afc0714fb7486216583d484c36ffc4fa446e836321e05c44a17f41b5eea9fdf9b7a1d78f263975b1d12827ac9 languageName: node linkType: hard -"@commitlint/rules@npm:^17.4.2": - version: 17.4.2 - resolution: "@commitlint/rules@npm:17.4.2" - dependencies: - "@commitlint/ensure": "npm:^17.4.0" - "@commitlint/message": "npm:^17.4.2" - "@commitlint/to-lines": "npm:^17.4.0" - "@commitlint/types": "npm:^17.4.0" - execa: "npm:^5.0.0" - checksum: e889a0d5d0ad1bad160801686cdf01833f402951315f9d349a116e434fa65257d9e7c0bdee3bdc102cb6a043f0c6ee3c59543739f4cb2692c496a122e083ea58 +"@cucumber/tag-expressions@npm:5.0.1": + version: 5.0.1 + resolution: "@cucumber/tag-expressions@npm:5.0.1" + checksum: 218a2d1fa0f97481aa5069a1e78f12ac5a5fdfd1fbf53579858346aacf16ba62c4c7614cfa7ccdcc4ef16edd308a1ab4c3b25ce23e0ac48009a42b1dc98d7e0c languageName: node linkType: hard -"@commitlint/to-lines@npm:^17.4.0": - version: 17.4.0 - resolution: "@commitlint/to-lines@npm:17.4.0" - checksum: bbff3c9d34e6f2c5c5cf39cf71347d41603f3709ff6665c56976d6a81a0930e3227596036f546254ef6aed2dba4f044d96da3aaf24765f0848b63b3ba714bb27 +"@cucumber/tag-expressions@npm:^5.0.1": + version: 5.0.6 + resolution: "@cucumber/tag-expressions@npm:5.0.6" + checksum: fcec75b6ed4cfb2b2fa7c52f7491556cb0fabc8e1a48020ab80a7e0b4288cca459fd84ad1d69292d9ca5a59795b54da6daa0344c6d4baf4289232b4154efdde3 languageName: node linkType: hard -"@commitlint/top-level@npm:^17.4.0": - version: 17.4.0 - resolution: "@commitlint/top-level@npm:17.4.0" +"@cypress/request@npm:^3.0.0": + version: 3.0.1 + resolution: "@cypress/request@npm:3.0.1" dependencies: - find-up: "npm:^5.0.0" - checksum: e80f9565bc8c8739a165fcf3a6802fdc84b766b18861c98e9c4feed59f3e301dacb6997282962473edb77828a06106753d178655d2758171491042bc7f7b5268 + aws-sign2: "npm:~0.7.0" + aws4: "npm:^1.8.0" + caseless: "npm:~0.12.0" + combined-stream: "npm:~1.0.6" + extend: "npm:~3.0.2" + forever-agent: "npm:~0.6.1" + form-data: "npm:~2.3.2" + http-signature: "npm:~1.3.6" + is-typedarray: "npm:~1.0.0" + isstream: "npm:~0.1.2" + json-stringify-safe: "npm:~5.0.1" + mime-types: "npm:~2.1.19" + performance-now: "npm:^2.1.0" + qs: "npm:6.10.4" + safe-buffer: "npm:^5.1.2" + tough-cookie: "npm:^4.1.3" + tunnel-agent: "npm:^0.6.0" + uuid: "npm:^8.3.2" + checksum: 6a36a197451e395663a2e1b9c75f8613a6ef7bc65e5625625e0a2e6b48bf10c06242dcf4ef532d60c333d387ec1ccc88c81fb20a32c5a410f60c0e5396cff2f7 languageName: node linkType: hard -"@commitlint/types@npm:^17.4.0": - version: 17.4.0 - resolution: "@commitlint/types@npm:17.4.0" - dependencies: - chalk: "npm:^4.1.0" - checksum: e9b57f73e13f8506fb5f81c3a7c374e8f5f12c69e2d67b560334e57994220844f85ccc75044247653b21faef0b258f1661ed48bcbe0c7de92cfc26e312e2ded8 - languageName: node - linkType: hard - -"@cspotcode/source-map-support@npm:^0.8.0": - version: 0.8.1 - resolution: "@cspotcode/source-map-support@npm:0.8.1" +"@cypress/xvfb@npm:^1.2.4": + version: 1.2.4 + resolution: "@cypress/xvfb@npm:1.2.4" dependencies: - "@jridgewell/trace-mapping": "npm:0.3.9" - checksum: 4327d8e6e4347897f5baf265c43ff094260a3ad7b53920fa07472aa18699ba7d570e5171082e88d19e4b5cce6f35cc1666b1c8ccb8b74d67e4f482395b8c511d - languageName: node - linkType: hard - -"@csstools/css-parser-algorithms@npm:^1.0.0": - version: 1.0.0 - resolution: "@csstools/css-parser-algorithms@npm:1.0.0" - peerDependencies: - "@csstools/css-tokenizer": ^1.0.0 - checksum: b90644b9c41a32d036e64379d3007d8bf62001c128d6870627f8dc5d181a0395ad418f952ded065c2b1811d5f85bd6dc640243956253a62a0fd851c2cba3f678 - languageName: node - linkType: hard - -"@csstools/css-tokenizer@npm:^1.0.0": - version: 1.0.0 - resolution: "@csstools/css-tokenizer@npm:1.0.0" - checksum: c078c856101441ff299df16cb5009fe7ee08e2efc1c803dbc5e6e0745101072549dd7f0aded3ac38e225917c514128a292dc9da1571447a6bd8fca8095ca1add - languageName: node - linkType: hard - -"@csstools/media-query-list-parser@npm:^1.0.0": - version: 1.0.0 - resolution: "@csstools/media-query-list-parser@npm:1.0.0" - peerDependencies: - "@csstools/css-parser-algorithms": ^1.0.0 - "@csstools/css-tokenizer": ^1.0.0 - checksum: 5d674bbe8daabbb5c6fce17a109623e4f4bef3ab6116e85ebbfc2fa2db16e3f7bc9549ab66c5682cd2f80cf3891ca57ec2fefd0938541ad687530d21b5de0253 + debug: "npm:^3.1.0" + lodash.once: "npm:^4.1.1" + checksum: 9df125f4f7f9e7fe1fa41fffec4e7da0effea79613192a633b0dfb42b7738a950fe462fa7e9858d1f40a28a8a18a3aa674df791a05546ae9cf78a0ade7749b66 languageName: node linkType: hard -"@csstools/postcss-cascade-layers@npm:^1.1.1": - version: 1.1.1 - resolution: "@csstools/postcss-cascade-layers@npm:1.1.1" +"@discordjs/builders@npm:^1.6.5": + version: 1.6.5 + resolution: "@discordjs/builders@npm:1.6.5" dependencies: - "@csstools/selector-specificity": "npm:^2.0.2" - postcss-selector-parser: "npm:^6.0.10" - peerDependencies: - postcss: ^8.2 - checksum: 0a8d20b4f395e8d9175c5fbb1520b9fe644e58ce68d45d6b2d2e115cf89809162378067ee82afb5118573d8f0b8c5aabb084c4fb48882feb082833271898d29b + "@discordjs/formatters": "npm:^0.3.2" + "@discordjs/util": "npm:^1.0.1" + "@sapphire/shapeshift": "npm:^3.9.2" + discord-api-types: "npm:0.37.50" + fast-deep-equal: "npm:^3.1.3" + ts-mixer: "npm:^6.0.3" + tslib: "npm:^2.6.1" + checksum: 1f8f5c25a2885d56c07a08b76b47031f4ec997def2f04216d896fc78f4a09cdf3946bc8b803e426313a76d528f422eba2591a0126a8696384c82920b1f4b4019 languageName: node linkType: hard -"@csstools/postcss-color-function@npm:^1.1.1": - version: 1.1.1 - resolution: "@csstools/postcss-color-function@npm:1.1.1" - dependencies: - "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: cd99a474884a22dbee86e74a0d769956b9358eec117413e61e497e51da0dd02ff966578dac1ab5fa2bb4109daf3930f50f37cf253770812da882a9b748a1a2f7 +"@discordjs/collection@npm:^1.5.3": + version: 1.5.3 + resolution: "@discordjs/collection@npm:1.5.3" + checksum: 23f59587cbb22e2d22f5f7e4d83102afc5fabc1dd98c7f0165a0bec9e1047dce68b13a420e80c844ad3122ee70d797021dff8d68f24dd5773a1083f2ec384353 languageName: node linkType: hard -"@csstools/postcss-font-format-keywords@npm:^1.0.1": - version: 1.0.1 - resolution: "@csstools/postcss-font-format-keywords@npm:1.0.1" +"@discordjs/formatters@npm:^0.3.2": + version: 0.3.2 + resolution: "@discordjs/formatters@npm:0.3.2" dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: 6020db615b0018714e5e7249b261fd1d9441c71ddde56a7acc2685277cd61f758060eba6904bb957dfc048c2d448a8d7cef7cd54cb5ffc5da674142480e41aea + discord-api-types: "npm:0.37.50" + checksum: 551fd4701efb040de368840e31cde084b0f4d5449d0b9b9806a67d9f5f428f110ebf4866a6c1b5c0a9d8a7de5403609ec7dd315b5b7377b794baba89b110c9be languageName: node linkType: hard -"@csstools/postcss-hwb-function@npm:^1.0.2": - version: 1.0.2 - resolution: "@csstools/postcss-hwb-function@npm:1.0.2" +"@discordjs/rest@npm:^2.0.1": + version: 2.0.1 + resolution: "@discordjs/rest@npm:2.0.1" dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: 4c65f975811090cf52db06806a91e4d5b2e88ee17ade893fc1a0890ef79b38e1a87fbbc1d6b2f49db4cf595f91e679603752c083a189b948ade4fca3e596411e + "@discordjs/collection": "npm:^1.5.3" + "@discordjs/util": "npm:^1.0.1" + "@sapphire/async-queue": "npm:^1.5.0" + "@sapphire/snowflake": "npm:^3.5.1" + "@vladfrangu/async_event_emitter": "npm:^2.2.2" + discord-api-types: "npm:0.37.50" + magic-bytes.js: "npm:^1.0.15" + tslib: "npm:^2.6.1" + undici: "npm:5.22.1" + checksum: 0be73781af4cc23ef2ffbc7b54329bed985aad85ddac62fc9cca13f737b6da20a91d5d124c15beb3a55be25de5c6c78a9937ecaf2ab6942ab99c619e24b41e51 languageName: node linkType: hard -"@csstools/postcss-ic-unit@npm:^1.0.1": +"@discordjs/util@npm:^1.0.1": version: 1.0.1 - resolution: "@csstools/postcss-ic-unit@npm:1.0.1" - dependencies: - "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: c31a8ad2baae7544ed06213d5906ea03d6ec47ae6be01f9c6bfffbb176490a9083be3318d834b9c520be40fba39caa5e26a2ad133030d153e652d8e97b262a1a + resolution: "@discordjs/util@npm:1.0.1" + checksum: 3bcb428fac75a457a9aac34823278e1a91c5b19f507a104ed4c5a2c518a93283a3b6a45d8d33d18730b21d6df895a2080bc2f97508a7e74d726045f5d06af607 languageName: node linkType: hard -"@csstools/postcss-is-pseudo-class@npm:^2.0.7": - version: 2.0.7 - resolution: "@csstools/postcss-is-pseudo-class@npm:2.0.7" +"@discordjs/ws@npm:^1.0.1": + version: 1.0.1 + resolution: "@discordjs/ws@npm:1.0.1" dependencies: - "@csstools/selector-specificity": "npm:^2.0.0" - postcss-selector-parser: "npm:^6.0.10" - peerDependencies: - postcss: ^8.2 - checksum: e8a85414a181e7e9c49a68748f8686628e749acb499cfb8d28db22d674e296a3bc051f86b7ea08475a567ca87f82e2baf6586e59b4beb69f92166c71b84b08cc + "@discordjs/collection": "npm:^1.5.3" + "@discordjs/rest": "npm:^2.0.1" + "@discordjs/util": "npm:^1.0.1" + "@sapphire/async-queue": "npm:^1.5.0" + "@types/ws": "npm:^8.5.5" + "@vladfrangu/async_event_emitter": "npm:^2.2.2" + discord-api-types: "npm:0.37.50" + tslib: "npm:^2.6.1" + ws: "npm:^8.13.0" + checksum: e8e9c1560bd374da9011a41666d56065f92521e3df281f982c287fcf77b95798b83b02eb868231e2e30d3527a90d4285f23252f85c9740698e36fcece6947022 languageName: node linkType: hard -"@csstools/postcss-nested-calc@npm:^1.0.0": - version: 1.0.0 - resolution: "@csstools/postcss-nested-calc@npm:1.0.0" +"@emmetio/abbreviation@npm:^2.3.3": + version: 2.3.3 + resolution: "@emmetio/abbreviation@npm:2.3.3" dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: ee8b245a30615ba0e9da2384173308234ff5caa59af2946d888b4c64a6c98a85acb6134bef53bc0619b86265494272d11ab19f61a380bef4f85cf8f2314e3cce + "@emmetio/scanner": "npm:^1.0.4" + checksum: f66b826532650de10607ee9394f82541ba708b13f9f200b26e61a14105251fd5b790eeda136727271384ea8a333d5828c35871732935507c44aa6bb3e3056067 languageName: node linkType: hard -"@csstools/postcss-normalize-display-values@npm:^1.0.1": - version: 1.0.1 - resolution: "@csstools/postcss-normalize-display-values@npm:1.0.1" +"@emmetio/css-abbreviation@npm:^2.1.8": + version: 2.1.8 + resolution: "@emmetio/css-abbreviation@npm:2.1.8" dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: 93c6a3252f7fd71ef500a5f945a66c3e4ccdc41087ab80364172511c30ad6da7b71c7d7084ee78f90698747d101557c62d85b7ee856d0f67914b7b23df1f2275 + "@emmetio/scanner": "npm:^1.0.4" + checksum: c96b05b2653e2618a822142299e0d0e1e49142108cd9be1793a2ae36f5eb037a3c58f63d4438644ed9a8da270060b852167c397bfb40aeb966ca9fae31ddb419 languageName: node linkType: hard -"@csstools/postcss-oklab-function@npm:^1.1.1": - version: 1.1.1 - resolution: "@csstools/postcss-oklab-function@npm:1.1.1" - dependencies: - "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: b5d0dd0ce42bc52d46e10e07279c16a63d3577b20135a9e5c303b234e1331b4d2f1a055b11e33abd48266ba4cc9ceddcb27880793d4c7167b624882bf645ae6e +"@emmetio/scanner@npm:^1.0.4": + version: 1.0.4 + resolution: "@emmetio/scanner@npm:1.0.4" + checksum: 6d1b5fa215ba555ea0f03a801071cc4aae8fe97673557bbb794f70c09da2660e762537c5983cf225ddddb64964e2ecd40269f0c0da50c1ed96cdedb6c06946eb languageName: node linkType: hard -"@csstools/postcss-progressive-custom-properties@npm:^1.1.0, @csstools/postcss-progressive-custom-properties@npm:^1.3.0": - version: 1.3.0 - resolution: "@csstools/postcss-progressive-custom-properties@npm:1.3.0" +"@esbuild-kit/cjs-loader@npm:^2.4.2": + version: 2.4.2 + resolution: "@esbuild-kit/cjs-loader@npm:2.4.2" dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.3 - checksum: c128cde8cb467bc1e3c0c0dbf73482598bb04d50b1971cef43db35a0129adfe3c589bb043d0457e609146898e05140f4a369880994eafdd909ed2edbc8f9768a + "@esbuild-kit/core-utils": "npm:^3.0.0" + get-tsconfig: "npm:^4.4.0" + checksum: bab73f796e882c18a35a1959df2f373913aeccbb62d8f30a62af567cf3a151d19fad311b0c2510812869f11ad462e3f528b1c3c97e3116077010d4340120aec3 languageName: node linkType: hard -"@csstools/postcss-stepped-value-functions@npm:^1.0.1": - version: 1.0.1 - resolution: "@csstools/postcss-stepped-value-functions@npm:1.0.1" +"@esbuild-kit/core-utils@npm:^3.0.0": + version: 3.1.0 + resolution: "@esbuild-kit/core-utils@npm:3.1.0" dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: 06ce137d6c009228c8a0545c222a3502d90fab66626e9877615f9d0c21b5c80cebadbd4b9a19083cd7b125432ac998bbbcf358fbf15572deb4ba9767e5326c73 + esbuild: "npm:~0.17.6" + source-map-support: "npm:^0.5.21" + checksum: 837036a4dfb48f674832d379e9d2f56654f6b22202932805c25d07b7c48fa743b85c012daae1650d0e583e991bd5e07d7303ef12817f5046ef11a4c880052437 languageName: node linkType: hard -"@csstools/postcss-text-decoration-shorthand@npm:^1.0.0": - version: 1.0.0 - resolution: "@csstools/postcss-text-decoration-shorthand@npm:1.0.0" +"@esbuild-kit/core-utils@npm:^3.3.0, @esbuild-kit/core-utils@npm:^3.3.2": + version: 3.3.2 + resolution: "@esbuild-kit/core-utils@npm:3.3.2" dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: 4321e6180705dd776a728945dbff3eb94bd44defd2e7f628082ff46d8f3c1e1e94be651e203b65abb003480d92b06f9b5d7e7b200267fa0329cab61a371bb27b + esbuild: "npm:~0.18.20" + source-map-support: "npm:^0.5.21" + checksum: 52938d011f08d843e568ac6b90e1c4c7d44e1c994fd88b102dff984e7c8d3c6055687d4bfbc47677ed216dcfae3ae7ac3e5e89ccf0d71e5bb7c797585b3ba5bc languageName: node linkType: hard -"@csstools/postcss-trigonometric-functions@npm:^1.0.2": - version: 1.0.2 - resolution: "@csstools/postcss-trigonometric-functions@npm:1.0.2" +"@esbuild-kit/esm-loader@npm:^2.6.3": + version: 2.6.5 + resolution: "@esbuild-kit/esm-loader@npm:2.6.5" dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: 6a5a534cb2659d6c60046f2e6bd597287056031265b43b3ea9d5850b622deeddde5e42b0ecb592c7419b46f444877f0c16869055207da4b6693e73179c61965c + "@esbuild-kit/core-utils": "npm:^3.3.2" + get-tsconfig: "npm:^4.7.0" + checksum: 9fa98353258bbe8bd24aeb46fb68c2a109537be2f28599d59bf852d8f87ef0a6fe2d1bc49ec740d3aa29694352517be86b1b2d02ff03c9b0b706470e81c24de5 languageName: node linkType: hard -"@csstools/postcss-unset-value@npm:^1.0.2": - version: 1.0.2 - resolution: "@csstools/postcss-unset-value@npm:1.0.2" - peerDependencies: - postcss: ^8.2 - checksum: f02d1c3d82b281ec9e1ce66274a01ee51ffc47edaf87b4fa3d31f17021672db74c3c1fe1758de513657944276e2ac728e6c232c7ba192e3ae04d4496949e157a +"@esbuild/android-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/android-arm64@npm:0.17.19" + conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@csstools/selector-specificity@npm:^2.0.0": - version: 2.0.0 - resolution: "@csstools/selector-specificity@npm:2.0.0" - peerDependencies: - postcss: ^8.3 - postcss-selector-parser: ^6.0.10 - checksum: 3e03e264670ea43af4390fd7a45e6b5a46c56ceb3e2d4a0c61d6b31c89395c30136a2e11dc03c16782b3613f35a5c393956fa413d31abd0c047ccaa29ac3dd55 +"@esbuild/android-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/android-arm64@npm:0.18.20" + conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@csstools/selector-specificity@npm:^2.0.2": - version: 2.0.2 - resolution: "@csstools/selector-specificity@npm:2.0.2" - peerDependencies: - postcss: ^8.2 - postcss-selector-parser: ^6.0.10 - checksum: d92fc9fb031ec1071f8dab641e6c09b24adea7052217c15d4cb448bc9a81d5a769911b74b768a83ca41c5424292f36262688a9ce707d24366482489d7cfed685 +"@esbuild/android-arm64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/android-arm64@npm:0.19.2" + conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@cucumber/cucumber-expressions@npm:^16.0.0": - version: 16.0.0 - resolution: "@cucumber/cucumber-expressions@npm:16.0.0" - dependencies: - regexp-match-indices: "npm:1.0.2" - checksum: 4bdc990289331f9b6ab15d6bd75170080ee3348d3c3f53c5b4f9cf92aa7339db127087aba1b7e8ca1b28f7f69d34c18dc604bcd7d3687bfd3c878ae4eae6b15a +"@esbuild/android-arm@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/android-arm@npm:0.17.19" + conditions: os=android & cpu=arm languageName: node linkType: hard -"@cucumber/gherkin@npm:^24.0.0": - version: 24.0.0 - resolution: "@cucumber/gherkin@npm:24.0.0" - dependencies: - "@cucumber/messages": "npm:^19.0.0" - checksum: f24443c970f5874edd0bf57eef6e44e70f213c77baa14f414b79b81cc46a3087d29111adce4ab203259fb7f9c422bd4f171d684437a48176311921f105484d6b +"@esbuild/android-arm@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/android-arm@npm:0.18.20" + conditions: os=android & cpu=arm languageName: node linkType: hard -"@cucumber/html-formatter@npm:^19.2.0": - version: 19.2.0 - resolution: "@cucumber/html-formatter@npm:19.2.0" - peerDependencies: - "@cucumber/messages": ">=18" - checksum: 9f42f5aebc2706c826a8cf51709883a9d37382ad28ec2c83a478e60a566a983990d71835c5181619d12c6925af404b74d70cac8d48e9b7430eae1a0a29207c34 +"@esbuild/android-arm@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/android-arm@npm:0.19.2" + conditions: os=android & cpu=arm languageName: node linkType: hard -"@cucumber/message-streams@npm:^4.0.1": - version: 4.0.1 - resolution: "@cucumber/message-streams@npm:4.0.1" - peerDependencies: - "@cucumber/messages": ">=17.1.1" - checksum: 1fb15846293f85308a56b4e64de251975c32b1ff52bd5a0055045971b3ab7c4ad91150121493c7b64afc7c6c698946d65cd9f9d2528eea4d685c6fefb8b6dc2c +"@esbuild/android-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/android-x64@npm:0.17.19" + conditions: os=android & cpu=x64 languageName: node linkType: hard -"@cucumber/messages@npm:^19.0.0, @cucumber/messages@npm:^19.1.2": - version: 19.1.2 - resolution: "@cucumber/messages@npm:19.1.2" - dependencies: - "@types/uuid": "npm:8.3.4" - class-transformer: "npm:0.5.1" - reflect-metadata: "npm:0.1.13" - uuid: "npm:8.3.2" - checksum: 9e7566998768e8670135eaee218f9069433f492a2732b0149089245d29b8a2235721647e9fee88378507c9f314c2a9845c2e7fbba6a1a0bbe3d3e720a60e2dd3 +"@esbuild/android-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/android-x64@npm:0.18.20" + conditions: os=android & cpu=x64 languageName: node linkType: hard -"@cucumber/tag-expressions@npm:^4.1.0": - version: 4.1.0 - resolution: "@cucumber/tag-expressions@npm:4.1.0" - checksum: 04cd845f5a62542c8d1588f8a6f9b4806149efed14d3a91beb594ab4e8b73417a93ca17bafcd969f5bdb841c17eab1d48db26b5dec708df2b4cf6523bcd3feec +"@esbuild/android-x64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/android-x64@npm:0.19.2" + conditions: os=android & cpu=x64 languageName: node linkType: hard -"@cypress/request@npm:^2.88.10": - version: 2.88.10 - resolution: "@cypress/request@npm:2.88.10" - dependencies: - aws-sign2: "npm:~0.7.0" - aws4: "npm:^1.8.0" - caseless: "npm:~0.12.0" - combined-stream: "npm:~1.0.6" - extend: "npm:~3.0.2" - forever-agent: "npm:~0.6.1" - form-data: "npm:~2.3.2" - http-signature: "npm:~1.3.6" - is-typedarray: "npm:~1.0.0" - isstream: "npm:~0.1.2" - json-stringify-safe: "npm:~5.0.1" - mime-types: "npm:~2.1.19" - performance-now: "npm:^2.1.0" - qs: "npm:~6.5.2" - safe-buffer: "npm:^5.1.2" - tough-cookie: "npm:~2.5.0" - tunnel-agent: "npm:^0.6.0" - uuid: "npm:^8.3.2" - checksum: 263508da254780e0f75f8a7410e36508f677b7ed180fd2f2158665d47847d95fe4c6e70e2dfe9de48407939f2454f231cf2cd745c68c1e94185b225168400d91 +"@esbuild/darwin-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/darwin-arm64@npm:0.17.19" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@cypress/xvfb@npm:^1.2.4": - version: 1.2.4 - resolution: "@cypress/xvfb@npm:1.2.4" - dependencies: - debug: "npm:^3.1.0" - lodash.once: "npm:^4.1.1" - checksum: 9df125f4f7f9e7fe1fa41fffec4e7da0effea79613192a633b0dfb42b7738a950fe462fa7e9858d1f40a28a8a18a3aa674df791a05546ae9cf78a0ade7749b66 +"@esbuild/darwin-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/darwin-arm64@npm:0.18.20" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@discordjs/builders@npm:^1.2.0": - version: 1.2.0 - resolution: "@discordjs/builders@npm:1.2.0" - dependencies: - "@sapphire/shapeshift": "npm:^3.5.1" - discord-api-types: "npm:^0.37.3" - fast-deep-equal: "npm:^3.1.3" - ts-mixer: "npm:^6.0.1" - tslib: "npm:^2.4.0" - checksum: 498af594899ae213287cb91f8fa601d30fd64d2da57a8a9e1c77ec00f31a471889ce29f69761bb8676e876aa831a7c8f039059973eb0ca56fa28eab14713a972 +"@esbuild/darwin-arm64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/darwin-arm64@npm:0.19.2" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@discordjs/collection@npm:^1.0.1, @discordjs/collection@npm:^1.1.0": - version: 1.1.0 - resolution: "@discordjs/collection@npm:1.1.0" - checksum: 0be0f8bd21a7b893dd6beece804d980f8fd23c8aa7a6aaa2dd27bdecae1be142e6d49937b31b52f0608b9cdc572881e6d867b9befdd1af3263584940501428dd +"@esbuild/darwin-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/darwin-x64@npm:0.17.19" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@discordjs/rest@npm:^1.1.0": - version: 1.1.0 - resolution: "@discordjs/rest@npm:1.1.0" - dependencies: - "@discordjs/collection": "npm:^1.0.1" - "@sapphire/async-queue": "npm:^1.5.0" - "@sapphire/snowflake": "npm:^3.2.2" - discord-api-types: "npm:^0.37.3" - file-type: "npm:^17.1.6" - tslib: "npm:^2.4.0" - undici: "npm:^5.9.1" - checksum: 75607895b519292b8d27a7e1efccf4a39a3572f35cb839943d7c0de7d47040da4f2c8cc957e2fb12be237e759d960b5cea168fe46c3ee27ca3b8e83f01d10381 +"@esbuild/darwin-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/darwin-x64@npm:0.18.20" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild-kit/cjs-loader@npm:^2.4.2": - version: 2.4.2 - resolution: "@esbuild-kit/cjs-loader@npm:2.4.2" - dependencies: - "@esbuild-kit/core-utils": "npm:^3.0.0" - get-tsconfig: "npm:^4.4.0" - checksum: bab73f796e882c18a35a1959df2f373913aeccbb62d8f30a62af567cf3a151d19fad311b0c2510812869f11ad462e3f528b1c3c97e3116077010d4340120aec3 +"@esbuild/darwin-x64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/darwin-x64@npm:0.19.2" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild-kit/core-utils@npm:^3.0.0": - version: 3.1.0 - resolution: "@esbuild-kit/core-utils@npm:3.1.0" - dependencies: - esbuild: "npm:~0.17.6" - source-map-support: "npm:^0.5.21" - checksum: 837036a4dfb48f674832d379e9d2f56654f6b22202932805c25d07b7c48fa743b85c012daae1650d0e583e991bd5e07d7303ef12817f5046ef11a4c880052437 +"@esbuild/freebsd-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/freebsd-arm64@npm:0.17.19" + conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild-kit/esm-loader@npm:^2.5.5": - version: 2.5.5 - resolution: "@esbuild-kit/esm-loader@npm:2.5.5" - dependencies: - "@esbuild-kit/core-utils": "npm:^3.0.0" - get-tsconfig: "npm:^4.4.0" - checksum: 9be32831c25a6f6c330c9fb09d256f0c6e63499ce33f54442c4f1695a9090d6910e24685958b8fcb863578252d87983ae50e7d89c4c70dd255cc2f48279880d4 +"@esbuild/freebsd-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/freebsd-arm64@npm:0.18.20" + conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/android-arm64@npm:0.16.17" - conditions: os=android & cpu=arm64 +"@esbuild/freebsd-arm64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/freebsd-arm64@npm:0.19.2" + conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/android-arm64@npm:0.17.12" - conditions: os=android & cpu=arm64 +"@esbuild/freebsd-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/freebsd-x64@npm:0.17.19" + conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/android-arm@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/android-arm@npm:0.16.17" - conditions: os=android & cpu=arm +"@esbuild/freebsd-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/freebsd-x64@npm:0.18.20" + conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/android-arm@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/android-arm@npm:0.17.12" - conditions: os=android & cpu=arm +"@esbuild/freebsd-x64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/freebsd-x64@npm:0.19.2" + conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/android-x64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/android-x64@npm:0.16.17" - conditions: os=android & cpu=x64 +"@esbuild/linux-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-arm64@npm:0.17.19" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-x64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/android-x64@npm:0.17.12" - conditions: os=android & cpu=x64 +"@esbuild/linux-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-arm64@npm:0.18.20" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/darwin-arm64@npm:0.16.17" - conditions: os=darwin & cpu=arm64 +"@esbuild/linux-arm64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-arm64@npm:0.19.2" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/darwin-arm64@npm:0.17.12" - conditions: os=darwin & cpu=arm64 +"@esbuild/linux-arm@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-arm@npm:0.17.19" + conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/darwin-x64@npm:0.16.17" - conditions: os=darwin & cpu=x64 +"@esbuild/linux-arm@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-arm@npm:0.18.20" + conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/darwin-x64@npm:0.17.12" - conditions: os=darwin & cpu=x64 +"@esbuild/linux-arm@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-arm@npm:0.19.2" + conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/freebsd-arm64@npm:0.16.17" - conditions: os=freebsd & cpu=arm64 +"@esbuild/linux-ia32@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-ia32@npm:0.17.19" + conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/freebsd-arm64@npm:0.17.12" - conditions: os=freebsd & cpu=arm64 +"@esbuild/linux-ia32@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-ia32@npm:0.18.20" + conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/freebsd-x64@npm:0.16.17" - conditions: os=freebsd & cpu=x64 +"@esbuild/linux-ia32@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-ia32@npm:0.19.2" + conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/freebsd-x64@npm:0.17.12" - conditions: os=freebsd & cpu=x64 +"@esbuild/linux-loong64@npm:0.14.54": + version: 0.14.54 + resolution: "@esbuild/linux-loong64@npm:0.14.54" + conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-arm64@npm:0.16.17" - conditions: os=linux & cpu=arm64 +"@esbuild/linux-loong64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-loong64@npm:0.17.19" + conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-arm64@npm:0.17.12" - conditions: os=linux & cpu=arm64 +"@esbuild/linux-loong64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-loong64@npm:0.18.20" + conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-arm@npm:0.16.17" - conditions: os=linux & cpu=arm +"@esbuild/linux-loong64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-loong64@npm:0.19.2" + conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-arm@npm:0.17.12" - conditions: os=linux & cpu=arm +"@esbuild/linux-mips64el@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-mips64el@npm:0.17.19" + conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-ia32@npm:0.16.17" - conditions: os=linux & cpu=ia32 +"@esbuild/linux-mips64el@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-mips64el@npm:0.18.20" + conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-ia32@npm:0.17.12" - conditions: os=linux & cpu=ia32 +"@esbuild/linux-mips64el@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-mips64el@npm:0.19.2" + conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.14.53": - version: 0.14.53 - resolution: "@esbuild/linux-loong64@npm:0.14.53" - conditions: os=linux & cpu=loong64 +"@esbuild/linux-ppc64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-ppc64@npm:0.17.19" + conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-loong64@npm:0.16.17" - conditions: os=linux & cpu=loong64 +"@esbuild/linux-ppc64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-ppc64@npm:0.18.20" + conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-loong64@npm:0.17.12" - conditions: os=linux & cpu=loong64 +"@esbuild/linux-ppc64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-ppc64@npm:0.19.2" + conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-mips64el@npm:0.16.17" - conditions: os=linux & cpu=mips64el +"@esbuild/linux-riscv64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-riscv64@npm:0.17.19" + conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-mips64el@npm:0.17.12" - conditions: os=linux & cpu=mips64el +"@esbuild/linux-riscv64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-riscv64@npm:0.18.20" + conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-ppc64@npm:0.16.17" - conditions: os=linux & cpu=ppc64 +"@esbuild/linux-riscv64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-riscv64@npm:0.19.2" + conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-ppc64@npm:0.17.12" - conditions: os=linux & cpu=ppc64 +"@esbuild/linux-s390x@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-s390x@npm:0.17.19" + conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-riscv64@npm:0.16.17" - conditions: os=linux & cpu=riscv64 +"@esbuild/linux-s390x@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-s390x@npm:0.18.20" + conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-riscv64@npm:0.17.12" - conditions: os=linux & cpu=riscv64 +"@esbuild/linux-s390x@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-s390x@npm:0.19.2" + conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-s390x@npm:0.16.17" - conditions: os=linux & cpu=s390x +"@esbuild/linux-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-x64@npm:0.17.19" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-s390x@npm:0.17.12" - conditions: os=linux & cpu=s390x +"@esbuild/linux-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-x64@npm:0.18.20" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/linux-x64@npm:0.16.17" +"@esbuild/linux-x64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/linux-x64@npm:0.19.2" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/linux-x64@npm:0.17.12" - conditions: os=linux & cpu=x64 +"@esbuild/netbsd-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/netbsd-x64@npm:0.17.19" + conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/netbsd-x64@npm:0.16.17" +"@esbuild/netbsd-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/netbsd-x64@npm:0.18.20" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/netbsd-x64@npm:0.17.12" +"@esbuild/netbsd-x64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/netbsd-x64@npm:0.19.2" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/openbsd-x64@npm:0.16.17" +"@esbuild/openbsd-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/openbsd-x64@npm:0.17.19" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/openbsd-x64@npm:0.17.12" +"@esbuild/openbsd-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/openbsd-x64@npm:0.18.20" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/sunos-x64@npm:0.16.17" - conditions: os=sunos & cpu=x64 +"@esbuild/openbsd-x64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/openbsd-x64@npm:0.19.2" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/sunos-x64@npm:0.17.19" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/sunos-x64@npm:0.18.20" + conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/sunos-x64@npm:0.17.12" +"@esbuild/sunos-x64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/sunos-x64@npm:0.19.2" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/win32-arm64@npm:0.16.17" +"@esbuild/win32-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/win32-arm64@npm:0.17.19" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/win32-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/win32-arm64@npm:0.18.20" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/win32-arm64@npm:0.17.12" +"@esbuild/win32-arm64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/win32-arm64@npm:0.19.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/win32-ia32@npm:0.16.17" +"@esbuild/win32-ia32@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/win32-ia32@npm:0.17.19" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/win32-ia32@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/win32-ia32@npm:0.18.20" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/win32-ia32@npm:0.17.12" +"@esbuild/win32-ia32@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/win32-ia32@npm:0.19.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.16.17": - version: 0.16.17 - resolution: "@esbuild/win32-x64@npm:0.16.17" +"@esbuild/win32-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/win32-x64@npm:0.17.19" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.17.12": - version: 0.17.12 - resolution: "@esbuild/win32-x64@npm:0.17.12" +"@esbuild/win32-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/win32-x64@npm:0.18.20" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@eslint-community/eslint-utils@npm:^4.1.2": - version: 4.1.2 - resolution: "@eslint-community/eslint-utils@npm:4.1.2" - dependencies: - eslint-visitor-keys: "npm:^3.3.0" - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 81a68aaada6fbe216c9e757ae6739940792a0d993ba0b2d35beb4406240a91597f88debac01e76c3d982ed7e820b6f2e62b14650c7b9b07a7ac6a8f1b0185ad7 +"@esbuild/win32-x64@npm:0.19.2": + version: 0.19.2 + resolution: "@esbuild/win32-x64@npm:0.19.2" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@eslint-community/eslint-utils@npm:^4.2.0": - version: 4.3.0 - resolution: "@eslint-community/eslint-utils@npm:4.3.0" +"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": + version: 4.4.0 + resolution: "@eslint-community/eslint-utils@npm:4.4.0" dependencies: eslint-visitor-keys: "npm:^3.3.0" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: 0a4c8c3161d862633d788af154791b0eb8c92d6cb0713f08c7d0152d1090242f396e1af3a69ac90c40e8590f8e80ffa9f32f1379481b349412dbf8a1f147487b + checksum: b9d700a83a743f2e152b4038d02a4bf807bc7363d59efeafec93b9498e59a3aa4d2604d206c213b91966416d628f33d88a4b773b8ff0d384b44353e8072ba922 languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.4.0": - version: 4.4.0 - resolution: "@eslint-community/regexpp@npm:4.4.0" - checksum: 8ec04b985ecb6b18ec0a9d008023780b0b1dfc6477dd1d1aba5a9d0c91bee46b2b98423b5a2f9b6f137b0e98d9f215613ce96df89d2bdfd5fcc23ad9a693309b +"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": + version: 4.8.0 + resolution: "@eslint-community/regexpp@npm:4.8.0" + checksum: f6bfb776ff4559248761c078e8418599dc5e7583f7eb55e0dab92b3acc389ac938a400e3e703c3557fa2db0ee52488c1b04fd17e2eadc93f1ddd155cba05397e languageName: node linkType: hard -"@eslint/eslintrc@npm:^1.4.1": - version: 1.4.1 - resolution: "@eslint/eslintrc@npm:1.4.1" +"@eslint/eslintrc@npm:^2.1.2": + version: 2.1.2 + resolution: "@eslint/eslintrc@npm:2.1.2" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" - espree: "npm:^9.4.0" + espree: "npm:^9.6.0" globals: "npm:^13.19.0" ignore: "npm:^5.2.0" import-fresh: "npm:^3.2.1" js-yaml: "npm:^4.1.0" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" - checksum: 4e469ed508c3154078503b1f22b9d7f2498e76e770ff3f8c61c9961a16760c817e977f2f00b02201d1e91d6a4ebc766c1c67aae9189b00d5c1fe2e7205b6ad72 + checksum: 1a0589f3ae7e865d21ec8cb12518fe97858455397c9138d422566ddf469f75e5ccd11b075a23f87ee388589441f40d479725002ab33d4c694c7e74b6cb4f289a + languageName: node + linkType: hard + +"@eslint/js@npm:8.48.0": + version: 8.48.0 + resolution: "@eslint/js@npm:8.48.0" + checksum: dc993aad71aaa2960be4b691209b21d138c32267b6e11d12b383cd4bb3e403b3212a7a4ee9b81d38d45b26ac1e1142a54b43d8005e9312f34adf6ae2f2974e58 languageName: node linkType: hard @@ -3321,14 +3289,14 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/config-array@npm:^0.11.8": - version: 0.11.8 - resolution: "@humanwhocodes/config-array@npm:0.11.8" +"@humanwhocodes/config-array@npm:^0.11.10": + version: 0.11.10 + resolution: "@humanwhocodes/config-array@npm:0.11.10" dependencies: "@humanwhocodes/object-schema": "npm:^1.2.1" debug: "npm:^4.1.1" minimatch: "npm:^3.0.5" - checksum: 010892ba3c237e96562df1f21a7e04b611274f2c91b4df6c8263eb7d2ffcec3a5bfcab67b13d9c4acc8a2e3f94cb61d7ced772ecd445b226fb41b88c93e9194c + checksum: d8b3afa90dc46f4cbad48dd54e9bb39918a01fbfb16cc931fb55db8c967c1575fc21d4a5f8055f4728697246eafafc95e23c97370ff30ada621f4b581bed3f9d languageName: node linkType: hard @@ -3346,58 +3314,76 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.1.0": - version: 0.1.1 - resolution: "@jridgewell/gen-mapping@npm:0.1.1" +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" dependencies: - "@jridgewell/set-array": "npm:^1.0.0" - "@jridgewell/sourcemap-codec": "npm:^1.4.10" - checksum: 5e4c9ef71682a0d827050cc53f10308825f8a0930ab2b54094381de293f92a53b290091fbe910c17048eae31c1b99c5ef8474ae8267192f83b40023619367331 + string-width: "npm:^5.1.2" + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: "npm:^7.0.1" + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: "npm:^8.1.0" + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: b9a4e369729f32ccce5b5764a574da6bbaee7e746c2d9cf35a3701c2907ba82f9bf456602ebd23df537b418fd611d54eb5c5a8ee7d8841dc5dc16c28ede0b258 languageName: node linkType: hard "@jridgewell/gen-mapping@npm:^0.3.0, @jridgewell/gen-mapping@npm:^0.3.2": - version: 0.3.2 - resolution: "@jridgewell/gen-mapping@npm:0.3.2" + version: 0.3.3 + resolution: "@jridgewell/gen-mapping@npm:0.3.3" dependencies: "@jridgewell/set-array": "npm:^1.0.1" "@jridgewell/sourcemap-codec": "npm:^1.4.10" "@jridgewell/trace-mapping": "npm:^0.3.9" - checksum: b2c9c60a0de99e3cb296a90ef949c422537dce3c39f2b9c0451549a4b0eaecd58290c0e1ddc75538f38073dd477b728dedf3493f25c253946fcd52b0af06e561 + checksum: b90bc3ab62856ed90cd1e224ec2a7644b1247821931de118e59da1c3cf0b66438160e43e493ed267709983e738918ae10aa008928814c3e7a4bc26df8383a8a3 languageName: node linkType: hard -"@jridgewell/resolve-uri@npm:3.1.0, @jridgewell/resolve-uri@npm:^3.0.3": +"@jridgewell/resolve-uri@npm:3.1.0": version: 3.1.0 resolution: "@jridgewell/resolve-uri@npm:3.1.0" checksum: 6b641bb7e25bc92a9848898cc91a77a390f393f086297ec2336d911387bdd708919c418e74a22732cfc21d0e7300b94306f437d2e9de5ab58b33ebc6c39d6f9d languageName: node linkType: hard -"@jridgewell/set-array@npm:^1.0.0, @jridgewell/set-array@npm:^1.0.1": +"@jridgewell/resolve-uri@npm:^3.0.3": + version: 3.1.1 + resolution: "@jridgewell/resolve-uri@npm:3.1.1" + checksum: b3229d85678a8546e48580decab7666678ab7e1c470576e72bd07910b862642f700c802ff99c0166982fc7f6ad3571c0ce59901be38297b595c0c813cf79e9ce + languageName: node + linkType: hard + +"@jridgewell/set-array@npm:^1.0.1": version: 1.1.2 resolution: "@jridgewell/set-array@npm:1.1.2" checksum: e7e3f00d10622a6e48cc59041537f99972ed110dca8bfdf575be101c5920d4e4d4fab315d601df9aebbd6b97f4ce857f0347902701ed034a0627ca554b64db0f languageName: node linkType: hard -"@jridgewell/source-map@npm:^0.3.2": - version: 0.3.2 - resolution: "@jridgewell/source-map@npm:0.3.2" +"@jridgewell/source-map@npm:^0.3.3": + version: 0.3.3 + resolution: "@jridgewell/source-map@npm:0.3.3" dependencies: "@jridgewell/gen-mapping": "npm:^0.3.0" "@jridgewell/trace-mapping": "npm:^0.3.9" - checksum: 66bb5d5cac95793717fea6cfe45c02c0e493f39c320cdaee030a39de033a961cfcb2f5bf105150eb8fada65b6654e72e33efae35349fbaca897414a17c984c34 + checksum: a74e3e9d227c24e0918f10cf9d5cce54dc7a8eb3bca07cc4b0a5969baeb026d112511d94dc5822e3c502fbe2ee98ad0a985c29f158ceccb61798b113c1e0c74e languageName: node linkType: hard -"@jridgewell/sourcemap-codec@npm:1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.13": +"@jridgewell/sourcemap-codec@npm:1.4.14": version: 1.4.14 resolution: "@jridgewell/sourcemap-codec@npm:1.4.14" checksum: 2147ea75c966fed8a7d9ed6679b7e8c380fa790a9bea5a64f4ec1c26d24e44b461aa60fc3b228cea03a46708d9d1bcf19508035bf27ad5e8f63d0998ed1d1117 languageName: node linkType: hard +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15": + version: 1.4.15 + resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" + checksum: b71b5eeb0af50fb1dbdf18e88aa5cf755baa30723f0d5fd2ac069f861d0c73b12b968321314e4db86d5a4d5d89a292211f68ba94767c620fee35247a94c05890 + languageName: node + linkType: hard + "@jridgewell/trace-mapping@npm:0.3.9": version: 0.3.9 resolution: "@jridgewell/trace-mapping@npm:0.3.9" @@ -3408,54 +3394,63 @@ __metadata: languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.9": - version: 0.3.17 - resolution: "@jridgewell/trace-mapping@npm:0.3.17" +"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9": + version: 0.3.18 + resolution: "@jridgewell/trace-mapping@npm:0.3.18" dependencies: "@jridgewell/resolve-uri": "npm:3.1.0" "@jridgewell/sourcemap-codec": "npm:1.4.14" - checksum: 388a2f604c1159dd29fdf3077c2a21fd2d322145f24cade868c0a7c55cfc993f3af82dd2e979438d9f06148c38af780abc7c0aa2eddbb34fab41698bb86d82e1 + checksum: 56cd5d76d2717f31ccab224094d2cd92918aa612a070f63738160e857045bde2bd9b247aba6147f3ed15b9dd056b4231c6b5f6d6cc7e624f1ad37bda1d49365c languageName: node linkType: hard +"@kaetram/admin@workspace:packages/admin": + version: 0.0.0-use.local + resolution: "@kaetram/admin@workspace:packages/admin" + dependencies: + "@astrojs/node": "npm:^6.0.1" + "@kaetram/common": "workspace:*" + astro: "npm:^3.2.0" + typescript: "npm:^5.2.2" + languageName: unknown + linkType: soft + "@kaetram/client@workspace:packages/client": version: 0.0.0-use.local resolution: "@kaetram/client@workspace:packages/client" dependencies: + "@astrojs/check": "npm:^0.2.0" + "@astrojs/partytown": "npm:^2.0.0" + "@astrojs/sitemap": "npm:^3.0.0" + "@astrolib/analytics": "npm:^0.4.2" "@kaetram/common": "workspace:*" - "@sentry/browser": "npm:^7.45.0" - "@sentry/tracing": "npm:^7.45.0" - "@sentry/vite-plugin": "npm:^0.7.2" + "@sentry/browser": "npm:^7.68.0" + "@sentry/tracing": "npm:^7.68.0" + "@sentry/vite-plugin": "npm:^2.7.1" "@types/dotenv-parse-variables": "npm:^2.0.1" "@types/html-minifier-terser": "npm:^7.0.0" - "@types/node": "npm:^18.15.5" "@types/pako": "npm:^2.0.0" - "@types/workbox-build": "npm:^5.0.1" - "@vitejs/plugin-legacy": "npm:^4.0.1" - autoprefixer: "npm:^10.4.13" + "@types/workbox-build": "npm:^5.1.0" + astro: "npm:^3.2.0" + astro-compress: "npm:^2.0.15" + astro-compressor: "npm:^0.4.0" + astro-i18n-aut: "npm:^0.4.23" + astro-robots-txt: "npm:^1.0.0" + astro-seo-schema: "npm:^3.2.1" + astro-webmanifest: "npm:^1.0.0" dotenv-extended: "npm:^2.9.0" dotenv-parse-variables: "npm:^2.0.0" gl-tiled: "npm:^1.0.0" - illuminated: "npm:^1.3.0" - internal-ip: "npm:^7.0.0" + illuminated: "npm:^1.3.7" + image-size: "npm:^1.0.2" + kaetram: "workspace:*" pako: "npm:^2.1.0" - postcss: "npm:^8.4.20" - postcss-assets: "npm:^6.0.0" - postcss-custom-media: "npm:^9.0.1" - postcss-preset-env: "npm:^7.8.3" - sass: "npm:^1.57.1" + sass: "npm:^1.66.1" sirv-cli: "npm:^2.0.2" - socket.io-client: "npm:^4.5.4" - stylelint: "npm:^14.16.1" - stylelint-config-clean-order: "npm:^2.3.0" - stylelint-config-prettier: "npm:^9.0.4" - stylelint-config-standard-scss: "npm:^6.1.0" - typescript: "npm:^5.0.2" - vite: "npm:^4.1.1" + socket.io-client: "npm:^4.7.2" + typescript: "npm:^5.2.2" vite-plugin-glsl: "npm:^1.1.2" - vite-plugin-minify: "npm:^1.5.2" - vite-plugin-pwa: "npm:^0.14.1" - workbox-window: "npm:^6.5.4" + vite-plugin-pwa: "npm:^0.16.4" languageName: unknown linkType: soft @@ -3464,12 +3459,12 @@ __metadata: resolution: "@kaetram/common@workspace:packages/common" dependencies: "@types/dotenv-parse-variables": "npm:^2.0.1" - "@types/node": "npm:^18.15.5" bcryptjs: "npm:^2.4.3" - discord.js: "npm:^14.3.0" + discord.js: "npm:^14.13.0" dotenv-extended: "npm:^2.9.0" dotenv-parse-variables: "npm:^2.0.0" - ipaddr.js: "npm:^2.0.1" + i18next: "npm:^23.5.1" + ipaddr.js: "npm:^2.1.0" languageName: unknown linkType: soft @@ -3477,15 +3472,14 @@ __metadata: version: 0.0.0-use.local resolution: "@kaetram/e2e@workspace:packages/e2e" dependencies: - "@badeball/cypress-cucumber-preprocessor": "npm:^12.0.0" - "@bahmutov/cypress-esbuild-preprocessor": "npm:^2.1.3" + "@badeball/cypress-cucumber-preprocessor": "npm:^18.0.5" + "@bahmutov/cypress-esbuild-preprocessor": "npm:^2.2.0" "@kaetram/common": "workspace:*" - "@types/node": "npm:^18.15.5" - cypress: "npm:^10.4.0" - esbuild: "npm:^0.14.53" - start-server-and-test: "npm:^1.14.0" - tsx: "npm:^3.12.6" - typescript: "npm:^5.0.2" + cypress: "npm:^13.1.0" + esbuild: "npm:^0.19.2" + start-server-and-test: "npm:^2.0.0" + tsx: "npm:^3.12.10" + typescript: "npm:^5.2.2" languageName: unknown linkType: soft @@ -3494,26 +3488,25 @@ __metadata: resolution: "@kaetram/hub@workspace:packages/hub" dependencies: "@kaetram/common": "workspace:*" - "@sentry/node": "npm:^7.45.0" - "@sentry/tracing": "npm:^7.45.0" - "@types/cors": "npm:^2" + "@sentry/node": "npm:^7.68.0" + "@sentry/tracing": "npm:^7.68.0" + "@types/cors": "npm:^2.8.14" "@types/dotenv-parse-variables": "npm:^2.0.1" - "@types/express": "npm:^4.17.13" - "@types/node": "npm:^18.15.5" - "@types/nodemailer": "npm:^6" - axios: "npm:^1.2.3" + "@types/express": "npm:^4.17.17" + "@types/nodemailer": "npm:^6.4.9" + axios: "npm:^1.5.0" cors: "npm:^2.8.5" - discord.js: "npm:^14.3.0" + discord.js: "npm:^14.13.0" dotenv-extended: "npm:^2.9.0" dotenv-parse-variables: "npm:^2.0.0" + esbuild: "npm:^0.19.2" express: "npm:^4.18.2" - mongodb: "npm:^4.8.1" - nodemailer: "npm:^6.9.1" - nodemon: "npm:^2.0.19" - stripe: "npm:^12.2.0" - tsx: "npm:^3.12.6" - typescript: "npm:^5.0.2" - uws: "https://github.com/uNetworking/uWebSockets.js.git#commit=42c9c0d5d31f46ca4115dc75672b0037ec970f28" + mongodb: "npm:^6.0.0" + nodemailer: "npm:^6.9.5" + stripe: "npm:^13.5.0" + tsx: "npm:^3.12.10" + typescript: "npm:^5.2.2" + uws: "https://github.com/uNetworking/uWebSockets.js.git#commit=e6ecc2102d68d99dc35969b0898fbd201e0f252b" languageName: unknown linkType: soft @@ -3523,25 +3516,24 @@ __metadata: dependencies: "@kaetram/common": "workspace:*" "@kaetram/tools": "workspace:*" - "@sentry/node": "npm:^7.45.0" - "@sentry/tracing": "npm:^7.45.0" - "@types/bcryptjs": "npm:^2.4.2" + "@sentry/node": "npm:^7.68.0" + "@sentry/tracing": "npm:^7.68.0" + "@types/bcryptjs": "npm:^2.4.3" "@types/dotenv-parse-variables": "npm:^2.0.1" - "@types/express": "npm:^4.17.13" - "@types/node": "npm:^18.15.5" + "@types/express": "npm:^4.17.17" "@types/sanitizer": "npm:^0.0.28" - "@types/websocket": "npm:^1.0.5" - axios: "npm:^1.2.3" - discord.js: "npm:^14.3.0" + "@types/websocket": "npm:^1.0.6" + axios: "npm:^1.5.0" + discord.js: "npm:^14.13.0" dotenv-extended: "npm:^2.9.0" dotenv-parse-variables: "npm:^2.0.0" + esbuild: "npm:^0.19.2" express: "npm:^4.18.2" - mongodb: "npm:^4.8.1" + mongodb: "npm:^6.0.0" sanitizer: "npm:^0.1.3" - tslib: "npm:^2.4.0" - tsx: "npm:^3.12.6" - typescript: "npm:^5.0.4" - uws: "https://github.com/uNetworking/uWebSockets.js.git#commit=42c9c0d5d31f46ca4115dc75672b0037ec970f28" + tsx: "npm:^3.12.10" + typescript: "npm:^5.2.2" + uws: "https://github.com/uNetworking/uWebSockets.js.git#commit=e6ecc2102d68d99dc35969b0898fbd201e0f252b" websocket: "npm:^1.0.34" languageName: unknown linkType: soft @@ -3552,13 +3544,21 @@ __metadata: dependencies: "@kaetram/common": "workspace:*" "@kaetram/server": "workspace:*" - "@types/node": "npm:^18.15.5" - tsx: "npm:^3.12.6" - typescript: "npm:^5.0.2" + tsx: "npm:^3.12.10" + typescript: "npm:^5.2.2" websocket: "npm:^1.0.34" languageName: unknown linkType: soft +"@mongodb-js/saslprep@npm:^1.1.0": + version: 1.1.0 + resolution: "@mongodb-js/saslprep@npm:1.1.0" + dependencies: + sparse-bitfield: "npm:^3.0.3" + checksum: 2cf6d124d48d517716eb3a18a09de27bd9b190863692234494954bc7d80cf69e65f6c3165f7d4bbf399c3e70a7e195ac8fb93fbc720f01250d7d987f681d8708 + languageName: node + linkType: hard + "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -3576,33 +3576,43 @@ __metadata: languageName: node linkType: hard -"@nodelib/fs.walk@npm:^1.2.3": - version: 1.2.7 - resolution: "@nodelib/fs.walk@npm:1.2.7" +"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": + version: 1.2.8 + resolution: "@nodelib/fs.walk@npm:1.2.8" dependencies: "@nodelib/fs.scandir": "npm:2.1.5" fastq: "npm:^1.6.0" - checksum: 3ea699615f13f22c015de3aa3184531811456770d0c8141dc4a60676de05ce6253b0a61032961d05603b423c550f5992eb118829b159f97d95dcf97240e1482e + checksum: 3542284aa2d6e313cfd4ae40a2502b53e1f35da6f4f9890422aad018c04866f6bfb96c4105e23dbd9fb93cfc630cc607777df658a3a525d63a3bfb9bcb2b0f21 languageName: node linkType: hard -"@nodelib/fs.walk@npm:^1.2.8": - version: 1.2.8 - resolution: "@nodelib/fs.walk@npm:1.2.8" +"@npmcli/fs@npm:^3.1.0": + version: 3.1.0 + resolution: "@npmcli/fs@npm:3.1.0" dependencies: - "@nodelib/fs.scandir": "npm:2.1.5" - fastq: "npm:^1.6.0" - checksum: 3542284aa2d6e313cfd4ae40a2502b53e1f35da6f4f9890422aad018c04866f6bfb96c4105e23dbd9fb93cfc630cc607777df658a3a525d63a3bfb9bcb2b0f21 + semver: "npm:^7.3.5" + checksum: c17d9f6a57aada6db66302ad0c02ad5df2984333385ba0a7883718cbc513f81ce2d4e41d3b949b05c387c2a49a2fdbfa0808b3cc640d0c1b9dce72a864811a30 languageName: node linkType: hard -"@npmcli/move-file@npm:^1.0.1": - version: 1.1.2 - resolution: "@npmcli/move-file@npm:1.1.2" +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 9e828530eb8d3e5370972114de393d9f9cfd368f8a7b541fd0d4497c2f046245e907e05f4e07259bdf91ade8f7a0806f36a67099fbf20f62496dc00b843e2252 + languageName: node + linkType: hard + +"@pkgr/utils@npm:^2.3.1": + version: 2.4.1 + resolution: "@pkgr/utils@npm:2.4.1" dependencies: - mkdirp: "npm:^1.0.4" - rimraf: "npm:^3.0.2" - checksum: 6fdcd5e51041da8d3d84f6ba89ff290900bf3adb736816c4b441b1fc8a41045db7253860c54a4ccdeb0e84e1c9548551bfb893f7392423de752a016a2a16952a + cross-spawn: "npm:^7.0.3" + fast-glob: "npm:^3.2.12" + is-glob: "npm:^4.0.3" + open: "npm:^9.1.0" + picocolors: "npm:^1.0.0" + tslib: "npm:^2.5.0" + checksum: cd58227cf35517ef49ff1a41d09f86193423a076f00873d894fcd194df55ed3279cee4b6bc82b7697004302208982567af78f514be608a765ecb307593a7bcf7 languageName: node linkType: hard @@ -3614,8 +3624,8 @@ __metadata: linkType: hard "@rollup/plugin-babel@npm:^5.2.0": - version: 5.3.0 - resolution: "@rollup/plugin-babel@npm:5.3.0" + version: 5.3.1 + resolution: "@rollup/plugin-babel@npm:5.3.1" dependencies: "@babel/helper-module-imports": "npm:^7.10.4" "@rollup/pluginutils": "npm:^3.1.0" @@ -3626,7 +3636,7 @@ __metadata: peerDependenciesMeta: "@types/babel__core": optional: true - checksum: 75a29407e6e18be4030fd0be170d4e74abdd204d4347cf3a9e05a56ff7f52467ec1f228685dd8ecfb7bb3c30a7de4c46c22afb2d2b01f9a010a0b3719e66cd1a + checksum: fb457bba770c4547468c69fa26765ac734d86d07513924e862e91c1d9ee453785717bd08c6f5471a5024d00fbb02553421c9e2bfb5d1267820a4331900d833e7 languageName: node linkType: hard @@ -3658,21 +3668,6 @@ __metadata: languageName: node linkType: hard -"@rollup/plugin-replace@npm:^5.0.1": - version: 5.0.2 - resolution: "@rollup/plugin-replace@npm:5.0.2" - dependencies: - "@rollup/pluginutils": "npm:^5.0.1" - magic-string: "npm:^0.27.0" - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true - checksum: b91bcce2bac2ad087bdd500596870ae99dcfec3a5c49c424e142575ef666969b6e1c3a80d989e6772d55e0270a5dc758be4ca7b1ac08ea113b57775c81478134 - languageName: node - linkType: hard - "@rollup/pluginutils@npm:^3.1.0": version: 3.1.0 resolution: "@rollup/pluginutils@npm:3.1.0" @@ -3686,7 +3681,7 @@ __metadata: languageName: node linkType: hard -"@rollup/pluginutils@npm:^5.0.1, @rollup/pluginutils@npm:^5.0.2": +"@rollup/pluginutils@npm:^5.0.2": version: 5.0.2 resolution: "@rollup/pluginutils@npm:5.0.2" dependencies: @@ -3709,68 +3704,68 @@ __metadata: languageName: node linkType: hard -"@sapphire/shapeshift@npm:^3.5.1": - version: 3.6.0 - resolution: "@sapphire/shapeshift@npm:3.6.0" +"@sapphire/shapeshift@npm:^3.9.2": + version: 3.9.2 + resolution: "@sapphire/shapeshift@npm:3.9.2" dependencies: fast-deep-equal: "npm:^3.1.3" - lodash.uniqwith: "npm:^4.5.0" - checksum: 410fa4f2a5542a912a199e538eda17ae98591896e7b4394da7584a1a344ec4464db231c83aa267969dd49bdfbcc5a63d3d0f6befcb0bd005526a75000287f8af + lodash: "npm:^4.17.21" + checksum: 1ffd8e42ac81ab30881458bd8a34f67e966698323f7e1853dce8b007f02afdb2bb3fb915a5c101ed70b81b115d1020d056023da132fd1e003c6981c39d8765a2 languageName: node linkType: hard -"@sapphire/snowflake@npm:^3.2.2": - version: 3.2.2 - resolution: "@sapphire/snowflake@npm:3.2.2" - checksum: e79102fb3234eeb7eba5e56cd9163fab00b2dd48806d789a3d8c4f21611f0ce1168c418921998e7014db3ce4bf346a700676af892984de756741b091fab56c12 +"@sapphire/snowflake@npm:^3.5.1": + version: 3.5.1 + resolution: "@sapphire/snowflake@npm:3.5.1" + checksum: 3cd7de4e6ad4c342f4e23cf9b437f7e64361637e30096d5a6e4e4f9fc00a218ff2028bf5803d68ebc62c53ab2144ebe3fdce2030e135ef9300db332a90212587 languageName: node linkType: hard -"@sentry-internal/tracing@npm:7.45.0": - version: 7.45.0 - resolution: "@sentry-internal/tracing@npm:7.45.0" +"@sentry-internal/tracing@npm:7.68.0": + version: 7.68.0 + resolution: "@sentry-internal/tracing@npm:7.68.0" dependencies: - "@sentry/core": "npm:7.45.0" - "@sentry/types": "npm:7.45.0" - "@sentry/utils": "npm:7.45.0" - tslib: "npm:^1.9.3" - checksum: d0d7b0ff232b425ae93c3a6a09cf0006c2fadff879ce1d9f0b0cae573383a6ccb7d03cd80d714c0bddd74661172de4f1f2534343c046f15ab596b4e48360e017 + "@sentry/core": "npm:7.68.0" + "@sentry/types": "npm:7.68.0" + "@sentry/utils": "npm:7.68.0" + tslib: "npm:^2.4.1 || ^1.9.3" + checksum: 40071b797620b08f2e5088d034786fb4a818ff6e857edbe3815c2b1ae637b1c52784a2eab969ed7638c68c720bb0a63fbaa27cab51457870470a13c98407d36c languageName: node linkType: hard -"@sentry/browser@npm:^7.45.0": - version: 7.45.0 - resolution: "@sentry/browser@npm:7.45.0" +"@sentry/browser@npm:^7.68.0": + version: 7.68.0 + resolution: "@sentry/browser@npm:7.68.0" dependencies: - "@sentry-internal/tracing": "npm:7.45.0" - "@sentry/core": "npm:7.45.0" - "@sentry/replay": "npm:7.45.0" - "@sentry/types": "npm:7.45.0" - "@sentry/utils": "npm:7.45.0" - tslib: "npm:^1.9.3" - checksum: afac8cffddb284fe3323ade898aedfa8018e4a37213007a532a926161c9a2babd2952dbc7ce2995552be060892aed3f585d8767927fb5c43ed7e6797f7e079cc + "@sentry-internal/tracing": "npm:7.68.0" + "@sentry/core": "npm:7.68.0" + "@sentry/replay": "npm:7.68.0" + "@sentry/types": "npm:7.68.0" + "@sentry/utils": "npm:7.68.0" + tslib: "npm:^2.4.1 || ^1.9.3" + checksum: 77a3c0b6c14d59179807a254adddc34e7932c17921b8fa6937438f78ac2e650b752967b8be6e298a355e2d73d2d8f43e828b69e4adb23f995877679820b3ca5b languageName: node linkType: hard -"@sentry/bundler-plugin-core@npm:0.7.2": - version: 0.7.2 - resolution: "@sentry/bundler-plugin-core@npm:0.7.2" +"@sentry/bundler-plugin-core@npm:2.7.1": + version: 2.7.1 + resolution: "@sentry/bundler-plugin-core@npm:2.7.1" dependencies: - "@sentry/cli": "npm:^2.17.0" - "@sentry/node": "npm:^7.19.0" - "@sentry/tracing": "npm:^7.19.0" + "@sentry/cli": "npm:^2.20.1" + "@sentry/node": "npm:^7.60.0" + "@sentry/utils": "npm:^7.60.0" + dotenv: "npm:^16.3.1" find-up: "npm:5.0.0" glob: "npm:9.3.2" magic-string: "npm:0.27.0" unplugin: "npm:1.0.1" - webpack-sources: "npm:3.2.3" - checksum: 147b4205483e8ab9e328217191eb90fd545916826dc6252c97f91bad714c6b6a2af7700f9c255188820a30e556672eeeceadbf7bca723c59a3ecce9a88518768 + checksum: ecfd8d60e82ea3d1cd3990515fb246f6ce4152d059e712586c13878a50309a199878053467897fccf2e8146d090426b150c283181e88503dc1c8fa15e912a57b languageName: node linkType: hard -"@sentry/cli@npm:^2.17.0": - version: 2.17.4 - resolution: "@sentry/cli@npm:2.17.4" +"@sentry/cli@npm:^2.20.1": + version: 2.20.7 + resolution: "@sentry/cli@npm:2.20.7" dependencies: https-proxy-agent: "npm:^5.0.0" node-fetch: "npm:^2.6.7" @@ -3779,80 +3774,81 @@ __metadata: which: "npm:^2.0.2" bin: sentry-cli: bin/sentry-cli - checksum: b571cf029db5f103bad5a49b6fd633c2787484cfcbda9be6d6baa6f3b52736aea0b7071bc048cf8ac3615b8f1b40897d6ee96c30cb0e16ebaa9a99b62e77711e + checksum: 6326ce485e97b7300c5ff5a7fde6fccbd8499713745ccfe5d6bf7ab12565f45c01a4d6ae76eaeb6a5433cbbf6c470ece11ded2aa74dfbad6a622cac6bf742d26 languageName: node linkType: hard -"@sentry/core@npm:7.45.0": - version: 7.45.0 - resolution: "@sentry/core@npm:7.45.0" +"@sentry/core@npm:7.68.0": + version: 7.68.0 + resolution: "@sentry/core@npm:7.68.0" dependencies: - "@sentry/types": "npm:7.45.0" - "@sentry/utils": "npm:7.45.0" - tslib: "npm:^1.9.3" - checksum: e924d07b027983fa01ef96acb8dcd5b6ca0aa42f5c4af172fe1810ba421d2437a4baffe8c426f1a34f85698d86dbec0efb7f8bb2e33f1cc3138e6c54c9473069 + "@sentry/types": "npm:7.68.0" + "@sentry/utils": "npm:7.68.0" + tslib: "npm:^2.4.1 || ^1.9.3" + checksum: e8360d802951ca822ca7aab04950aee868d078a2953df9de383efc2dad36693d5885ffae1775b2e4f66da453471f5254183635ac27e9c60144a0ccf77379901c languageName: node linkType: hard -"@sentry/node@npm:^7.19.0, @sentry/node@npm:^7.45.0": - version: 7.45.0 - resolution: "@sentry/node@npm:7.45.0" +"@sentry/node@npm:^7.60.0, @sentry/node@npm:^7.68.0": + version: 7.68.0 + resolution: "@sentry/node@npm:7.68.0" dependencies: - "@sentry-internal/tracing": "npm:7.45.0" - "@sentry/core": "npm:7.45.0" - "@sentry/types": "npm:7.45.0" - "@sentry/utils": "npm:7.45.0" + "@sentry-internal/tracing": "npm:7.68.0" + "@sentry/core": "npm:7.68.0" + "@sentry/types": "npm:7.68.0" + "@sentry/utils": "npm:7.68.0" cookie: "npm:^0.4.1" https-proxy-agent: "npm:^5.0.0" lru_map: "npm:^0.3.3" - tslib: "npm:^1.9.3" - checksum: cc985de9f00daed3fd350bd7c381f94375344d0e078be08ebee82a0f385195cd4ebf8f788ba5765a590b8386c7d3b309bde0959300a6d915fd55b7ce83a3fac8 + tslib: "npm:^2.4.1 || ^1.9.3" + checksum: 1847ba7b615769389e8db429017266a59b744b31034df3000eed5afd4c967f517aa007a48bb0366682d420e00b463164902981aeef1ca8e7d97302691a6c7909 languageName: node linkType: hard -"@sentry/replay@npm:7.45.0": - version: 7.45.0 - resolution: "@sentry/replay@npm:7.45.0" +"@sentry/replay@npm:7.68.0": + version: 7.68.0 + resolution: "@sentry/replay@npm:7.68.0" dependencies: - "@sentry/core": "npm:7.45.0" - "@sentry/types": "npm:7.45.0" - "@sentry/utils": "npm:7.45.0" - checksum: 3fe790920b5ab7300a069e70ce0029387e58c580655b7a2a2eab2c9d0ec0c4a9a7df8d3d9f70b01a2a10aa8db97685bd7a5ad0d76906001bdf12981f88449bd7 + "@sentry/core": "npm:7.68.0" + "@sentry/types": "npm:7.68.0" + "@sentry/utils": "npm:7.68.0" + checksum: 777ec9ca5c94ee1056d90e6ffb05adb643fdf799f06876266be98b17a97323f68e3d61888f18c1f47961b487196fc007c0d7c57f68f16866b515487cbc3facc7 languageName: node linkType: hard -"@sentry/tracing@npm:^7.19.0, @sentry/tracing@npm:^7.45.0": - version: 7.45.0 - resolution: "@sentry/tracing@npm:7.45.0" +"@sentry/tracing@npm:^7.68.0": + version: 7.68.0 + resolution: "@sentry/tracing@npm:7.68.0" dependencies: - "@sentry-internal/tracing": "npm:7.45.0" - checksum: 7d6fe63e25b60d39764de08fe03bc277f1f09b284474d7fcd4d40025365fd261b352d7df828ad3e37a71bdd764b8376c91276f6ae29a6c590c35d8b3c474b0de + "@sentry-internal/tracing": "npm:7.68.0" + checksum: dd67d36407436d6f4adcaf576f089a174aeffd6d3fc67df182befe848aeddc23c830a7437687cda44967a14cf90af67b2130917232a76e5fa5e17e3c0d9c9fa2 languageName: node linkType: hard -"@sentry/types@npm:7.45.0": - version: 7.45.0 - resolution: "@sentry/types@npm:7.45.0" - checksum: dcdcc25c4ff2259177d20c0a8edd8299574a8a55828fc595bb0ffa375a33a0435f29c91be93ab883937a74ba869676f0f3653bbcd71eacde0827183a31d7d529 +"@sentry/types@npm:7.68.0": + version: 7.68.0 + resolution: "@sentry/types@npm:7.68.0" + checksum: 57e62d82f390015758edb36648939fa48c157978eba679584b89ba4589f0d7052b993b13da074c20ace4c2a97f71dbc17f42bd415d18f9e28328681911d68552 languageName: node linkType: hard -"@sentry/utils@npm:7.45.0": - version: 7.45.0 - resolution: "@sentry/utils@npm:7.45.0" +"@sentry/utils@npm:7.68.0, @sentry/utils@npm:^7.60.0": + version: 7.68.0 + resolution: "@sentry/utils@npm:7.68.0" dependencies: - "@sentry/types": "npm:7.45.0" - tslib: "npm:^1.9.3" - checksum: 0304e2cfe0b5a80e61125c35ddfc5256e23577ccad1c0355c6bb1870d5a34e03a43c98d9e49f2d15ec78210052ce2eb7e4e65b4e0ec22c58336e4b0193ca8ad0 + "@sentry/types": "npm:7.68.0" + tslib: "npm:^2.4.1 || ^1.9.3" + checksum: 4d30af3f357d5b69c7560ed2224981c1dffd0aedc91bb0177b3f1dcb0223ba4a4ea8f0e9a006c4a11cbc8776b2a52c34974802b9f5015a27292783bceca73564 languageName: node linkType: hard -"@sentry/vite-plugin@npm:^0.7.2": - version: 0.7.2 - resolution: "@sentry/vite-plugin@npm:0.7.2" +"@sentry/vite-plugin@npm:^2.7.1": + version: 2.7.1 + resolution: "@sentry/vite-plugin@npm:2.7.1" dependencies: - "@sentry/bundler-plugin-core": "npm:0.7.2" - checksum: ac7f56e2bfe6c7e4f574f439ff443be3068a87185035b3e10483a9e78611de95ba9927e1b981aa26f3b2f96b388ee36600305071b450654dde3d61c97685e6f0 + "@sentry/bundler-plugin-core": "npm:2.7.1" + unplugin: "npm:1.0.1" + checksum: 877a5483c5e4449790faa101fa1329a636c0f12f1494527e874af42fd42113d701943a29d9eef9e980372e149e27eacb8f2e6e2f237b33813b35647535864744 languageName: node linkType: hard @@ -3865,7 +3861,7 @@ __metadata: languageName: node linkType: hard -"@sideway/formula@npm:^3.0.0": +"@sideway/formula@npm:^3.0.1": version: 3.0.1 resolution: "@sideway/formula@npm:3.0.1" checksum: 9231660aaf01b4b45e73efe299f6613d2a6d191ade9116dd47b6bd99a5a84805bf438a7c6c2343a526c8e7b06dd1c3c39f969dbe9eee2770f54e3e9f0b6d1c8c @@ -3879,13 +3875,6 @@ __metadata: languageName: node linkType: hard -"@socket.io/base64-arraybuffer@npm:~1.0.2": - version: 1.0.2 - resolution: "@socket.io/base64-arraybuffer@npm:1.0.2" - checksum: 3e99c5095d40a2e644fa65e9c57881dff99d48f0f26c514c6f09b54c0567873dbca45799bf04c522d7ca7435ce74696508d74b62fbf7906b9acd098f3a09edd8 - languageName: node - linkType: hard - "@socket.io/component-emitter@npm:~3.1.0": version: 3.1.0 resolution: "@socket.io/component-emitter@npm:3.1.0" @@ -3905,17 +3894,24 @@ __metadata: languageName: node linkType: hard -"@tokenizer/token@npm:^0.3.0": - version: 0.3.0 - resolution: "@tokenizer/token@npm:0.3.0" - checksum: 0154f4fecd335fc121f78d1a697d90833943c855be7f39f22012f1ac75f6241b37f07025ad4ce6ec2576730e2253d4ef2698364a20d93b749bcdb393dafed93e +"@teppeis/multimaps@npm:2.0.0": + version: 2.0.0 + resolution: "@teppeis/multimaps@npm:2.0.0" + checksum: 923a77a13a95423a4deb11bb3ec7bc06bb82cc032859d8574909d13120588f61a2042c5f8e362a80e98cc110bfbd77dbc463a075234ea229464ca0ef2a8b848d languageName: node linkType: hard -"@tootallnate/once@npm:1": - version: 1.1.2 - resolution: "@tootallnate/once@npm:1.1.2" - checksum: 6d907308b0b5eaa8536a862e4292ab506ec56eb3df9fc45c3fa84b66e7053a1508ba26a7d8345295f332a06a320b80ae09af03d167e4b4d2ef9e595d3a9fa492 +"@tootallnate/once@npm:2": + version: 2.0.0 + resolution: "@tootallnate/once@npm:2.0.0" + checksum: d9f7f2130a0a2e1ea50f3bc90b83a8b99c913bbb80d7a1706f7f4730292ef299d18443c3b57a42dfb17c6559c9085e13f751b1b6c969bcff7bee3eeaf9da4dec + languageName: node + linkType: hard + +"@trysound/sax@npm:0.2.0": + version: 0.2.0 + resolution: "@trysound/sax@npm:0.2.0" + checksum: 4aedd10caa2c162049388fecab9d99cea4a95481a4ed341d7396093d7edf5b7c4954e8bbe78cf178dbf6196e9a2dbcc7cbcb222503f2823a74cf1e6b7e488f9a languageName: node linkType: hard @@ -3941,44 +3937,110 @@ __metadata: linkType: hard "@tsconfig/node16@npm:^1.0.2": - version: 1.0.3 - resolution: "@tsconfig/node16@npm:1.0.3" - checksum: 4280081089783dfeab00e5bc18ff55e11e8e4577d4626f34730a062c99ec4136fe6c2036e6f20ebe50b1c3e01bc29db6e2cfa9541a7b6dc99825ccbe8f7f8395 + version: 1.0.4 + resolution: "@tsconfig/node16@npm:1.0.4" + checksum: d75e4f7d3edd74305383430d1fc9fd9bdf9af7fb2387853e6c06660a5325da6bce90846b853f5c69ec70b4e34de9ab05d508c9dc11c95a28ebbb000fc52b963b languageName: node linkType: hard -"@types/bcryptjs@npm:^2.4.2": - version: 2.4.2 - resolution: "@types/bcryptjs@npm:2.4.2" - checksum: b9b3ee4f89720ba9c61f69a14fdcdec39ed56ecba99b632be3454acaaa8a168690e6b875d61919f19987d524cf16124de685dec820b2f470e8032e137a1f7006 +"@types/babel__core@npm:^7.20.1": + version: 7.20.1 + resolution: "@types/babel__core@npm:7.20.1" + dependencies: + "@babel/parser": "npm:^7.20.7" + "@babel/types": "npm:^7.20.7" + "@types/babel__generator": "npm:*" + "@types/babel__template": "npm:*" + "@types/babel__traverse": "npm:*" + checksum: 49e743a5bf5d32f97b6c18a4293fb53ae4879a21893921940f739f91803fdf26d8648530f3013a433d118d18b10b6e4f9a739c120abcf58890f8d02a00e8da24 + languageName: node + linkType: hard + +"@types/babel__generator@npm:*": + version: 7.6.4 + resolution: "@types/babel__generator@npm:7.6.4" + dependencies: + "@babel/types": "npm:^7.0.0" + checksum: 2e66f16ed0a281f0dc050a8ef4cc9866b790cef758d8defe7c51cb045f6226d2224379fd18d7a17618619b3c6db863aff29db75eb1110c603822455e5985c27d + languageName: node + linkType: hard + +"@types/babel__template@npm:*": + version: 7.4.1 + resolution: "@types/babel__template@npm:7.4.1" + dependencies: + "@babel/parser": "npm:^7.1.0" + "@babel/types": "npm:^7.0.0" + checksum: ba9a947c2d7f52aae25cc4d9d1a2e47901e43f04a85b9d05603411761cd0253f983f41e34b771703328d8608150ba7292bdad4fffc20177ee42bc621f176e083 + languageName: node + linkType: hard + +"@types/babel__traverse@npm:*": + version: 7.20.1 + resolution: "@types/babel__traverse@npm:7.20.1" + dependencies: + "@babel/types": "npm:^7.20.7" + checksum: 2f78d2818f3757025c83b819ad29dc25efe632576e3407237afbc325fee60e18b96bc30508864f1d59271d4163838fcc4a3dc855e207ed4fd5c8a0ff709a21b5 + languageName: node + linkType: hard + +"@types/bcryptjs@npm:^2.4.3": + version: 2.4.3 + resolution: "@types/bcryptjs@npm:2.4.3" + checksum: 015265ddad73b13aad90d8efac205b31390160fcd58758d23c13f0c31c16009e2f3db17122d68f121dcb5d83eeeb52af57e48e1db9475920d8947532b50e9c18 languageName: node linkType: hard "@types/body-parser@npm:*": - version: 1.19.1 - resolution: "@types/body-parser@npm:1.19.1" + version: 1.19.2 + resolution: "@types/body-parser@npm:1.19.2" dependencies: "@types/connect": "npm:*" "@types/node": "npm:*" - checksum: 1955c53865fbcb8c2a8b8bc52be825f307807a94580307a0e0e5503c4a0cbea5d018ffacaa75bff70637a0bc70f378fac13d5fa02a68e46ec91cc3a5481dd249 + checksum: 839e71535a3085c49da7c4d64ab98b35056c3d7ae069b06f4731c0980d738267a2c46ba5ffba0702aece8c61a877272f9a20d89929000fead4aac5098793d0fb languageName: node linkType: hard "@types/connect@npm:*": - version: 3.4.34 - resolution: "@types/connect@npm:3.4.34" + version: 3.4.35 + resolution: "@types/connect@npm:3.4.35" dependencies: "@types/node": "npm:*" - checksum: e3b2c9abb46d76538ec57586a4d4e98e8b54099c171536a012aaaaf56c72b74fb5d5a4b478038ac35b188c3173c489f9c323bdde447a75c036a061bf805c779d + checksum: 1fffce36ab2abf23023d8bb0f5c35c481cb97d116e6a1b206668be9dd57ffa9ae705256d232461fe05c6007c03a0fb7f1600256643ccc08b62d6f67214b1bb75 languageName: node linkType: hard -"@types/cors@npm:^2": - version: 2.8.13 - resolution: "@types/cors@npm:2.8.13" +"@types/cors@npm:^2.8.14": + version: 2.8.14 + resolution: "@types/cors@npm:2.8.14" dependencies: "@types/node": "npm:*" - checksum: 9c8b1c732295603fcc0e1e8e8f0a332e7ec03d10bb18b9398225e5e2fbf6a2fd64758926204d306ef100a5bdd7b35324bdc34bc57fc49ed9807446930bc678f9 + checksum: a67d5307190ff03512c9f01173609984e80eb229365c49f3aa2ffbb03097029a38465c445134572568bd072c43a6d3dc229a6424d4a4646c4e9c1287aa3c53a1 + languageName: node + linkType: hard + +"@types/css-tree@npm:*": + version: 2.3.2 + resolution: "@types/css-tree@npm:2.3.2" + checksum: 45fc3c8f2733c6b5687600ec20ff1a009b42a97545cb0fab864a55e31bfd2ed8ebde29ce912ae785b1e5eba4e7407a342cf1b163745c8f2bb19dae02767a9a0e + languageName: node + linkType: hard + +"@types/csso@npm:5.0.0": + version: 5.0.0 + resolution: "@types/csso@npm:5.0.0" + dependencies: + "@types/css-tree": "npm:*" + checksum: c388e062fffe33480631f4dbec690f7d5ef85b5a13ab415af6f6fd2d2b613def9880152bfe1b13eee7f73e14b9ce8ad01191eaab674b05c91c4806928cfa148b + languageName: node + linkType: hard + +"@types/debug@npm:^4.0.0": + version: 4.1.8 + resolution: "@types/debug@npm:4.1.8" + dependencies: + "@types/ms": "npm:*" + checksum: 9c190e812984e0f6e02dfdfb0c7a3081a55cf3fc712a4e059336bd9f8329db70211eb851ce409311520876549cff2c4785ce48dd4c9fef8e48549c87bec29ded languageName: node linkType: hard @@ -3997,46 +4059,56 @@ __metadata: linkType: hard "@types/estree@npm:^1.0.0": - version: 1.0.0 - resolution: "@types/estree@npm:1.0.0" - checksum: 474df434e3a469cb7a68d44c8b7ac3a21bca344fa3b49651c3451d0f3662ff0c3b2ba52149cbc5b9c9a9f3f1ac37958c163ef29b65a8b36fccb5ccb2acfc9b08 + version: 1.0.1 + resolution: "@types/estree@npm:1.0.1" + checksum: 76f967f120d15b8b8747312bff3a3016e480662d9a3dc0b1deb8bfb565898edc4c195bf924bc1398426c0a736844e7b4923cf176900fb4c7d5531907b01d2411 languageName: node linkType: hard -"@types/express-serve-static-core@npm:^4.17.18": - version: 4.17.24 - resolution: "@types/express-serve-static-core@npm:4.17.24" +"@types/express-serve-static-core@npm:^4.17.33": + version: 4.17.35 + resolution: "@types/express-serve-static-core@npm:4.17.35" dependencies: "@types/node": "npm:*" "@types/qs": "npm:*" "@types/range-parser": "npm:*" - checksum: 42974db34a4e46f5faa8ba9b024edfa277bdc65bce395bf2e3fc1f4bceda744d1be5d8a08e650484ece9d17cb37d0c68c72f3f78c241d639b05999bf148567ec + "@types/send": "npm:*" + checksum: 20d48d5792a35342571dd709bbb1c5bf2d2ae1b833c01b89a89a8ebd92092986ae966f054a285962eb71f97449bfb7642cb15c987bb9713a393a44b1165de1df languageName: node linkType: hard -"@types/express@npm:^4.17.13": - version: 4.17.13 - resolution: "@types/express@npm:4.17.13" +"@types/express@npm:^4.17.17": + version: 4.17.17 + resolution: "@types/express@npm:4.17.17" dependencies: "@types/body-parser": "npm:*" - "@types/express-serve-static-core": "npm:^4.17.18" + "@types/express-serve-static-core": "npm:^4.17.33" "@types/qs": "npm:*" "@types/serve-static": "npm:*" - checksum: 114a3b85cd27a5d7873321499d4af2e8964d4f1a6344b224555d356be2d90e8024cba0dcf1159c30a8d39d8cb8312dff85b1a79a23c139122879499c568ac06e + checksum: 79fc9a17e54bf87b12ed65003fae24bf9b32b1bd8964bdfbab37cd3e53e0e4d596f293aa2f0ab1ed7c6a18dee033019e06461a5ce416904515bf764cdbf7d85f languageName: node linkType: hard -"@types/html-minifier-terser@npm:^7.0.0": +"@types/hast@npm:^2.0.0": + version: 2.3.4 + resolution: "@types/hast@npm:2.3.4" + dependencies: + "@types/unist": "npm:*" + checksum: 863ce633c5ba5b5dcaa4361fb53b8d381d62f100b24760843c6c1fafc23d86364012ee76d8c9d5386fefcf69fed6832db087df1a3107e49c235135cf83e0602c + languageName: node + linkType: hard + +"@types/html-minifier-terser@npm:7.0.0, @types/html-minifier-terser@npm:^7.0.0": version: 7.0.0 resolution: "@types/html-minifier-terser@npm:7.0.0" checksum: 66d7177d15b38c759b4498c6714e1fad3c2a6275fb39cdfb2bb8668de6cd6213bc6e1006f458cb693e8f644dfe6a1a9cf0caf4cec8724ede9e5244767eef95c6 languageName: node linkType: hard -"@types/json-schema@npm:^7.0.9": - version: 7.0.9 - resolution: "@types/json-schema@npm:7.0.9" - checksum: 495381a033f0549e9a1d58000d4999bc60e8a3892f80f0b8618c94275d910dfae72ffca3119b0151a8e8ddcdc705fb74625450e500a39dfb1af79ff7aa4b6ab4 +"@types/json-schema@npm:^7.0.12": + version: 7.0.12 + resolution: "@types/json-schema@npm:7.0.12" + checksum: 3a4aae29f990800c28c9af99e3c67e35ea0441aee2c8707b4eb0c509ca4a9ea58edeb43885a3871c5ee57c64fa429e18e78a2449977cd601ca0b4721f58fc946 languageName: node linkType: hard @@ -4047,6 +4119,38 @@ __metadata: languageName: node linkType: hard +"@types/json5@npm:^0.0.30": + version: 0.0.30 + resolution: "@types/json5@npm:0.0.30" + checksum: 3322b8cda717c45c81601bf1ae062da08c0c2aed9dd1a2eb5a761320ca2e9efe65043973eb28734e35e4867055a8e667990c381e1cb4e23677cd0b8b04f031f9 + languageName: node + linkType: hard + +"@types/mdast@npm:^3.0.0": + version: 3.0.11 + resolution: "@types/mdast@npm:3.0.11" + dependencies: + "@types/unist": "npm:*" + checksum: bf0f69b3af6b38f84162d140376ac3d9e5341ff06c47fbd99abe7e71aa49bffa91f4cb6c09e0d4f9f1e9ae8f1aaf6be62a9224533c7b3e88f75e2b5d6f63dceb + languageName: node + linkType: hard + +"@types/mdast@npm:^4.0.0": + version: 4.0.1 + resolution: "@types/mdast@npm:4.0.1" + dependencies: + "@types/unist": "npm:*" + checksum: fe531cf01d495ff95ce0082bc934d0a4f876b779333d72e213ea3cc5be2e2b17deca436ccf47375a8bf981260eaddbaeb0fd3ff988d9f7d956de862c0d6c3ef9 + languageName: node + linkType: hard + +"@types/mime@npm:*": + version: 3.0.1 + resolution: "@types/mime@npm:3.0.1" + checksum: dafaa1822136dac7e7e1356b3a3876d7e4ee33c200ac9097eee74365680f917e3fefd2e08453ddb29d727bae357fb86d29de05d851cdad9064228316fa29c0c2 + languageName: node + linkType: hard + "@types/mime@npm:^1": version: 1.3.2 resolution: "@types/mime@npm:1.3.2" @@ -4054,54 +4158,84 @@ __metadata: languageName: node linkType: hard -"@types/minimist@npm:^1.2.0": - version: 1.2.1 - resolution: "@types/minimist@npm:1.2.1" - checksum: cc12a8e52e19806ffb933672f53741fc63563af4acf654afb4d8f865e3956e1adc133691c270d3fbda64bb9513915b7ea03d35b0e1600898935f76e54dbb58ae +"@types/minimist@npm:^1.2.0, @types/minimist@npm:^1.2.2": + version: 1.2.2 + resolution: "@types/minimist@npm:1.2.2" + checksum: 7fd2a4dc547de09d78c688d79aefcceb54e8c86eb61a5b1a593dfc03bbf1f8589a616ae978585211d078e51abc55b93064b2039c34266db8f277bd6bc03557c3 + languageName: node + linkType: hard + +"@types/ms@npm:*": + version: 0.7.31 + resolution: "@types/ms@npm:0.7.31" + checksum: cccb52777bb683c65ac5bab61351cd3910c9ce3512b1d903a591fc9694bb83afad6e48bf0beee5b47b6a8b620a05f5d82f8febfd55de05e7d9eb93586cc196c8 languageName: node linkType: hard -"@types/node@npm:*": - version: 15.12.4 - resolution: "@types/node@npm:15.12.4" - checksum: 61a96dc5796010d62ee9d2de5293a32677aee3b5057a6ca512a7746f8a19864c0cf369bfc062fe5c8fdb0e4aa7ff312df77ff6fa35e90d9dd788101bd5139352 +"@types/nlcst@npm:^1.0.0": + version: 1.0.0 + resolution: "@types/nlcst@npm:1.0.0" + dependencies: + "@types/unist": "npm:*" + checksum: 5f9f94f2c47e03fadd40f07551b63e7568234338f81cebfea41467951232853396f35aae156802d7b192012ab3d8657db4a99c5149016d6ad3e2965da7844dbc languageName: node linkType: hard -"@types/node@npm:>=8.1.0": - version: 18.16.0 - resolution: "@types/node@npm:18.16.0" - checksum: e2a407946adcc00c72f05cad85e57b14e8ae615eedcf834daa39186bf7ff136c802519504c391cc8f3b6935726e6ada1ef1dd1546d5c88d0051185f6dc41dd07 +"@types/node@npm:*, @types/node@npm:>=8.1.0": + version: 20.3.1 + resolution: "@types/node@npm:20.3.1" + checksum: 262e63e934b31335efdd0cb9c6b46e20c0bfa826952f670596ca8621d21d29382ff701e1afdd83f43eff06b42f43a054617ed835b074fb56f61bf1150e9711d5 languageName: node linkType: hard -"@types/node@npm:^14.14.31": - version: 14.18.21 - resolution: "@types/node@npm:14.18.21" - checksum: e2694bd3394d63ccd1dabce760e64ad9dfd5dba6922f31510c4352f4e702225a7e1f82c0126d80ff80355faaa0a7dcad26067e5db6fa07cfb995d79de3fe5c56 +"@types/node@npm:20.4.7": + version: 20.4.7 + resolution: "@types/node@npm:20.4.7" + checksum: 2b71a26e80d96ce5c7c5d8cde2227adbacc9f50bfc9a60c45f96b2604ff6e60f7ba02cb7b24efd999e0a2ba25097680237b2d16a6f37082ed4136689e7976f12 languageName: node linkType: hard -"@types/node@npm:^18.15.5": - version: 18.15.5 - resolution: "@types/node@npm:18.15.5" - checksum: b046d8e4ebb94c1f811743d8be63b7e76fa03db9117ae1a7bc4589fddbb13b70c24fd5d2d4f674032b8a0ceb4db2e74725d241ccdf99f8ec61e357de2e2bbebb +"@types/node@npm:20.5.7": + version: 20.5.7 + resolution: "@types/node@npm:20.5.7" + checksum: aa572b72e81850d221ee554d5e448baa2f573b84bedb9aab756f289e706785b1e087866c2b6fc9832d7eec67ac0e6b7ae7e284695508aec6214b1f3240720702 languageName: node linkType: hard -"@types/nodemailer@npm:^6": - version: 6.4.7 - resolution: "@types/nodemailer@npm:6.4.7" +"@types/node@npm:^16.18.39": + version: 16.18.48 + resolution: "@types/node@npm:16.18.48" + checksum: b7d9e1706efc9efc6adeec2435768f5972eabff68f7915232ec7143fc1c45528946b61c62288114fedb0fdc3078a63a74b0262949dd708d46482e9c45150e51e + languageName: node + linkType: hard + +"@types/node@npm:^17.0.5": + version: 17.0.45 + resolution: "@types/node@npm:17.0.45" + checksum: c0e9a6e94e1d37dd9ccb6be305f9a1500968624a58c93bc3cbffaebcebcb6774add768db664e74867d99185c7a66e00fb12df6185d4e46bde170159ef0990071 + languageName: node + linkType: hard + +"@types/node@npm:^20.5.9": + version: 20.5.9 + resolution: "@types/node@npm:20.5.9" + checksum: a7f50cefdf93f46fa8558acbe3ccab0cf62f8bd55cae43e246e1ba92383e56b7f5fd9a07575ee69b54c985d4c0b0e2165822697b990202b37276f13a0e07f04d + languageName: node + linkType: hard + +"@types/nodemailer@npm:^6.4.9": + version: 6.4.9 + resolution: "@types/nodemailer@npm:6.4.9" dependencies: "@types/node": "npm:*" - checksum: 4fefece34940e4344ecb7d41553ccfd63bf2697124e6335dec5c358953ee53b2b27cb45dec9b306c3fc848cf4ec4344d62ecb091d1a7aadc36c0b9721ab67322 + checksum: d93b252b809a6a5a9c200756f69268439e95e5c0f12c908958033231810c3e74a22e19b628f2b61a94084d11c42e6c9a4ed3b43175654d962695370301ff3f12 languageName: node linkType: hard "@types/normalize-package-data@npm:^2.4.0": - version: 2.4.0 - resolution: "@types/normalize-package-data@npm:2.4.0" - checksum: d7c354dd093dd9dc7924d3db2f6deeb20dc8283fd977588ab9f7d072de0ddc493f17bb47d4a2a1ba614b68874b39286147bc85a0bbf0278ab022316119a24654 + version: 2.4.1 + resolution: "@types/normalize-package-data@npm:2.4.1" + checksum: 4b597289520e45e54f408e91712f31fe7818e2c5d977eefecfae9db1f921a80247470d4f77da2dc8e1ef85bf0b5852ad64faf0106d88647421e45350d124f74f languageName: node linkType: hard @@ -4112,10 +4246,10 @@ __metadata: languageName: node linkType: hard -"@types/parse-json@npm:^4.0.0": - version: 4.0.0 - resolution: "@types/parse-json@npm:4.0.0" - checksum: bea37b307bdeb352d27a4467cac738387641c4f9dfe6c8bf559d474a036952f7b998f0ac54290f9d8765fb79e154f3941dfefbb47296a987fb55ccedf344a0e6 +"@types/parse5@npm:^6.0.0": + version: 6.0.3 + resolution: "@types/parse5@npm:6.0.3" + checksum: 55523f921aa8201ccf7f044b66513325cda4c541fe912b536bc5da33763382eae13daa8ebd0f03c452f82f08fddaf45ecde2b8fa657d4d4bf53ab7a60bb6ae27 languageName: node linkType: hard @@ -4142,6 +4276,13 @@ __metadata: languageName: node linkType: hard +"@types/resolve@npm:^1.17.0": + version: 1.20.2 + resolution: "@types/resolve@npm:1.20.2" + checksum: beb29479ff900dc01a007b615c7e179e8ed44ce047176fa9266f9b978d4f40720029159295a569d0ed71676ba1db6086ce86c486c0a3a09b9e1d92d4da5cc8ab + languageName: node + linkType: hard + "@types/sanitizer@npm:^0.0.28": version: 0.0.28 resolution: "@types/sanitizer@npm:0.0.28" @@ -4149,20 +4290,39 @@ __metadata: languageName: node linkType: hard -"@types/semver@npm:^7.3.12": - version: 7.3.13 - resolution: "@types/semver@npm:7.3.13" - checksum: a76156ff60ddbd17bf2120c09dca3cd8ac7db4f8d8c69614a9ebc5202f05d1044def7fd8cf77415f7284ea8edfa1092b6e04dac07dc17c94762904c69dd2c85b +"@types/sax@npm:^1.2.1": + version: 1.2.4 + resolution: "@types/sax@npm:1.2.4" + dependencies: + "@types/node": "npm:*" + checksum: cb00928f54fc85b7fa1ca8456ce67d49e8da48299d25f945599cf5c5ec5ee6ec971196c4d5380fa0970fea0359978cb38181cddd27202e3614053ec18e17d7e5 languageName: node linkType: hard -"@types/serve-static@npm:*": - version: 1.13.10 - resolution: "@types/serve-static@npm:1.13.10" +"@types/semver@npm:^7.5.0": + version: 7.5.1 + resolution: "@types/semver@npm:7.5.1" + checksum: 6bb8541017ae5b34adbef36a572b279330460f6cb05efb6b3e6c5ceca99fd437f0e836caccf6a5a91eed99cbef7d723ae9b611532b026f6918fd1dcaf677a37f + languageName: node + linkType: hard + +"@types/send@npm:*": + version: 0.17.1 + resolution: "@types/send@npm:0.17.1" dependencies: "@types/mime": "npm:^1" "@types/node": "npm:*" - checksum: 4d892d86ee878a796259fd391a443cdef8ef9edac06082a57cc4c4094ee1b44c178b446778bf8354f99fa03db36ffeceeadf2fce7ead0b8d57d7e7d4bf6d5b5b + checksum: 815b556663d684f0a42c12681d5476bb9e3036914611998b844ca4dc7226cc6eb2c0b7c5b0f51a282049dbf0f1a10d0e3aa4f978b4eb26a349b9a57dc2111274 + languageName: node + linkType: hard + +"@types/serve-static@npm:*": + version: 1.15.1 + resolution: "@types/serve-static@npm:1.15.1" + dependencies: + "@types/mime": "npm:*" + "@types/node": "npm:*" + checksum: 7be402450ea4e3fddbe51a7320d36a329201abb3ad07edc2c805e4e52ff62702b38ac25fd42b7db9885162ebd37ec958d4a0b9e7794257555d3d21381a687eb2 languageName: node linkType: hard @@ -4181,9 +4341,23 @@ __metadata: linkType: hard "@types/trusted-types@npm:^2.0.2": - version: 2.0.2 - resolution: "@types/trusted-types@npm:2.0.2" - checksum: 0e106fb83a7bb427e24f458f96c957af6e3bae4603cac3635093060c9c3175b5a08d0905c890c595f5de65a03613b74d6f04612c940cac28cd5c43fad80c242e + version: 2.0.3 + resolution: "@types/trusted-types@npm:2.0.3" + checksum: 625c7de5c2dc012f74993d60b68d6408771da39f1f3cf5bc5cb7bf988b259695890e9157895da44f7f79ff26481d9895fb53d5ceb11c6027ccd23294e9f84953 + languageName: node + linkType: hard + +"@types/unist@npm:*, @types/unist@npm:^2.0.0": + version: 2.0.6 + resolution: "@types/unist@npm:2.0.6" + checksum: 4731b678e9d9ab41386b48bf67a5da9000705c6ae84cd4fc866f774004f5e8190a33117dbff95efc54b44404deaa08a421b646823b01c57db3eeb0652cdc71a9 + languageName: node + linkType: hard + +"@types/unist@npm:^3.0.0": + version: 3.0.0 + resolution: "@types/unist@npm:3.0.0" + checksum: 8c6b2b50aafee9d8abeb6fd7f16b354e7d2f84771fd2c44f8e2a73924571083a5c318b490038dfac8c0cec7c23bf0a5c832e83921f47ab052cd3c9da9a09713d languageName: node linkType: hard @@ -4194,54 +4368,54 @@ __metadata: languageName: node linkType: hard +"@types/uuid@npm:9.0.1": + version: 9.0.1 + resolution: "@types/uuid@npm:9.0.1" + checksum: ca96225b4d47b8146380c0f60921b2a0b62acf3a8def03e8e7b369ed3b0180989c12f8305eb71ffc0cecb944102e18eec1260a3e84040d9a48de987d3aa00148 + languageName: node + linkType: hard + "@types/webidl-conversions@npm:*": - version: 6.1.1 - resolution: "@types/webidl-conversions@npm:6.1.1" - checksum: 0f8d6ea939dda77b393ce40e9a1c407af1a9f765744eda4148d0a192f335222bb54989fd6d59a6e5116fb388df9f1cad873a66a9d624f025488cf1e090dd45bd + version: 7.0.0 + resolution: "@types/webidl-conversions@npm:7.0.0" + checksum: 86c337dc1edd0db2a9e278cb2ddb3b577559c8a282348bedf8505be0435be86354bb83fe858e959e2ce12ab2aa02eb5698d5e1a35454182637e776982013a5d1 languageName: node linkType: hard -"@types/websocket@npm:^1.0.5": - version: 1.0.5 - resolution: "@types/websocket@npm:1.0.5" +"@types/websocket@npm:^1.0.6": + version: 1.0.6 + resolution: "@types/websocket@npm:1.0.6" dependencies: "@types/node": "npm:*" - checksum: bf76dafb54775b6ff6815ab93ef9efa6d05f19748bbffe76a34eb0cf9ad9eb1bacfcc3ae20216e2f0cbe1f381b2e0acc2c30ea79b8ae46efc302c6e941b34264 + checksum: 75844236a3f31665898eedaf4e773663a1ec160892e08dc6d521d994209181f0659065ebdd0fc5bddf5cc5cb1913cc4eb267e0d0867929c2529d393592bd20ef languageName: node linkType: hard "@types/whatwg-url@npm:^8.2.1": - version: 8.2.1 - resolution: "@types/whatwg-url@npm:8.2.1" + version: 8.2.2 + resolution: "@types/whatwg-url@npm:8.2.2" dependencies: "@types/node": "npm:*" "@types/webidl-conversions": "npm:*" - checksum: b09b440fb088f8bc85135fa486363d11f6b73ae1b8b3064f244327a3bd6f55ec06161ef04d5d634a0a91283140fab77f8ab91e072063b7ff3d196d154e3881c8 + checksum: 25f20f5649f0e4a3242bf8f59c8e1b3d057f93ac1039e3aeea49cd6e4eed33517f228b412bfb048670421c11d2198e45cd9e09fe7921a263b6c8a9eb4b833ad1 languageName: node linkType: hard -"@types/workbox-build@npm:^5.0.1": - version: 5.0.1 - resolution: "@types/workbox-build@npm:5.0.1" +"@types/workbox-build@npm:^5.1.0": + version: 5.1.0 + resolution: "@types/workbox-build@npm:5.1.0" dependencies: - "@types/workbox-routing": "npm:*" - checksum: 0224cfb9b73b4cbcb3566bc02819bc7b2cb56066acc2cf50d8b7d18025aa17f416b1c5b91d1aaf4a60f046f51d87f04d99536e4b5a49634e7ad6a37ca25ab1f3 - languageName: node - linkType: hard - -"@types/workbox-routing@npm:*": - version: 4.3.1 - resolution: "@types/workbox-routing@npm:4.3.1" - checksum: ec31b3bf3fb0fd9bfaff6ccdf32005711db44a2f03eb07b342e800fb5f7eeb029ed1ad83ac7b1bff341f1b6653c6398e072b0866438a2e35d17150ccedc94bfd + workbox-build: "npm:*" + checksum: c8bc7611647c46e2278374f6e47fd20079641864de3e5af562228d09b7d6d5e16a9f451e7de529226fb890ccdc95ab746da2bf8c25e7e80d8d70376610cc8d38 languageName: node linkType: hard -"@types/ws@npm:^8.5.3": - version: 8.5.3 - resolution: "@types/ws@npm:8.5.3" +"@types/ws@npm:^8.5.5": + version: 8.5.5 + resolution: "@types/ws@npm:8.5.5" dependencies: "@types/node": "npm:*" - checksum: 079fdee163d7cb86d59e5379d2ea6511ba6a46210af420320a4bd52b04b06f86d2c3acc89289f5eae16c8815a562faada8c717fd55a4888c8a5a5f8ce1420112 + checksum: 4bc2ec6ec83006a5fa74cc3d990e7ab6fd3c0d80f7124508bd45caa8c4226760e9eaf9bcf40c5b7068187d56cc2aa8c2c201dc20de0efb71ba13f83d0e47074a languageName: node linkType: hard @@ -4254,165 +4428,315 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.56.0": - version: 5.56.0 - resolution: "@typescript-eslint/eslint-plugin@npm:5.56.0" +"@typescript-eslint/eslint-plugin@npm:^6.6.0": + version: 6.6.0 + resolution: "@typescript-eslint/eslint-plugin@npm:6.6.0" dependencies: - "@eslint-community/regexpp": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:5.56.0" - "@typescript-eslint/type-utils": "npm:5.56.0" - "@typescript-eslint/utils": "npm:5.56.0" + "@eslint-community/regexpp": "npm:^4.5.1" + "@typescript-eslint/scope-manager": "npm:6.6.0" + "@typescript-eslint/type-utils": "npm:6.6.0" + "@typescript-eslint/utils": "npm:6.6.0" + "@typescript-eslint/visitor-keys": "npm:6.6.0" debug: "npm:^4.3.4" - grapheme-splitter: "npm:^1.0.4" - ignore: "npm:^5.2.0" - natural-compare-lite: "npm:^1.4.0" - semver: "npm:^7.3.7" - tsutils: "npm:^3.21.0" + graphemer: "npm:^1.4.0" + ignore: "npm:^5.2.4" + natural-compare: "npm:^1.4.0" + semver: "npm:^7.5.4" + ts-api-utils: "npm:^1.0.1" peerDependencies: - "@typescript-eslint/parser": ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 7fe41ad34eb75cb5f216c3ecbd07bfe137f0d638ef1bd4c0d5805523c7b25afa86ff3e96ff6959b75c645a0f757efec4c2847b54c6e28f9431b34c7893267659 + checksum: 0a9b582256710865f408085500a4356b44d7a9153fe1135e7cad635bc2287dde39f7efa161e9a5f5bc51528c3b4e556bdfa4d6fcb3af930d6d8dd1f18f4d0760 languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.56.0": - version: 5.56.0 - resolution: "@typescript-eslint/parser@npm:5.56.0" +"@typescript-eslint/parser@npm:^6.6.0": + version: 6.6.0 + resolution: "@typescript-eslint/parser@npm:6.6.0" dependencies: - "@typescript-eslint/scope-manager": "npm:5.56.0" - "@typescript-eslint/types": "npm:5.56.0" - "@typescript-eslint/typescript-estree": "npm:5.56.0" + "@typescript-eslint/scope-manager": "npm:6.6.0" + "@typescript-eslint/types": "npm:6.6.0" + "@typescript-eslint/typescript-estree": "npm:6.6.0" + "@typescript-eslint/visitor-keys": "npm:6.6.0" debug: "npm:^4.3.4" peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 7816059b2f9097aaafdcd5045f918210566cbd62d028876ffba4d1225ce4e084f67dd7de732785e96d351b3c78c36398b581224be9b6fcfd08b42ca49e277a9d + checksum: 7a58bdf680f55d5188332dde424ad7330e41b12cb7983480f3bb38e844dfc2bb2451a42ea98b28ba0ca59d58f884a9b1e33778724742344038f37d9e43891ba5 + languageName: node + linkType: hard + +"@typescript-eslint/scope-manager@npm:6.6.0": + version: 6.6.0 + resolution: "@typescript-eslint/scope-manager@npm:6.6.0" + dependencies: + "@typescript-eslint/types": "npm:6.6.0" + "@typescript-eslint/visitor-keys": "npm:6.6.0" + checksum: ed2b1969cecd41df33a54e36d67c8577605d2a34571906dd27ff3ca3e673989e7d8ed3633d68b5d509069ef3b1c2623c37403b5b2442b251c34fe7b889e26ba7 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.56.0": - version: 5.56.0 - resolution: "@typescript-eslint/scope-manager@npm:5.56.0" +"@typescript-eslint/scope-manager@npm:^5.0.0": + version: 5.62.0 + resolution: "@typescript-eslint/scope-manager@npm:5.62.0" dependencies: - "@typescript-eslint/types": "npm:5.56.0" - "@typescript-eslint/visitor-keys": "npm:5.56.0" - checksum: 7e8e413366f5edcf50d2853dc725461e33048261013324d116825529b9c5fa6e7d21f7ff0e24ea33d03f49634f90af751e4f9bc119c6238ab2de53d0553fdc54 + "@typescript-eslint/types": "npm:5.62.0" + "@typescript-eslint/visitor-keys": "npm:5.62.0" + checksum: 007805e2d7791099216294e131a584e348cd46717ab2dd26707389ce0e04537b253b6993e3e3a241c61264d0ac19e7bb6d8643135c946898a66b2b464d0df9ba languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.56.0": - version: 5.56.0 - resolution: "@typescript-eslint/type-utils@npm:5.56.0" +"@typescript-eslint/type-utils@npm:6.6.0": + version: 6.6.0 + resolution: "@typescript-eslint/type-utils@npm:6.6.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:5.56.0" - "@typescript-eslint/utils": "npm:5.56.0" + "@typescript-eslint/typescript-estree": "npm:6.6.0" + "@typescript-eslint/utils": "npm:6.6.0" debug: "npm:^4.3.4" - tsutils: "npm:^3.21.0" + ts-api-utils: "npm:^1.0.1" peerDependencies: - eslint: "*" + eslint: ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 4fec4d27242abef21c10fc5bb2b0e939de92a22213401e3e5df25918a61413d3f1c0fee9eaaad19d2b129a08802fe40934d201c02e5069b84272813399127596 + checksum: 5e564fe7c8cf8a180b424223cf52eaeefd2d51b903f53d8fd3e329e7468e6217c892269d5bc01eb0d8b2e10fce851b4341ba8799689195efec55e1fc1870aeb3 + languageName: node + linkType: hard + +"@typescript-eslint/types@npm:5.62.0, @typescript-eslint/types@npm:^5.0.0": + version: 5.62.0 + resolution: "@typescript-eslint/types@npm:5.62.0" + checksum: d226e471f3212d996bfff9e9544df9b3dd4f9cf8024d46cc83332474a8ca0c7fa958f916e59b353bdea5c8ecf3c9a801b16eca6835d470fcb7b313c7becc1427 + languageName: node + linkType: hard + +"@typescript-eslint/types@npm:6.6.0": + version: 6.6.0 + resolution: "@typescript-eslint/types@npm:6.6.0" + checksum: 9730e18cadb1ec77487147d9c56f2743ac42dd5793929d6574a483e6d1be44d440010b58aa916d4db53dc1406af19688f553668044ccee79b8acd831e7712501 languageName: node linkType: hard -"@typescript-eslint/types@npm:5.56.0": - version: 5.56.0 - resolution: "@typescript-eslint/types@npm:5.56.0" - checksum: 031085c261fafea684250531e0a16e9f21d77eb9f4552e38bddd217e5ad3e5cb2994cc80a9c09d878f142ed4489343ac12c971fabea623799e1db827f601529d +"@typescript-eslint/types@npm:^5.25.0": + version: 5.60.0 + resolution: "@typescript-eslint/types@npm:5.60.0" + checksum: b106fc5aedce1bf67926edf631bb3324d3b769c9ac62bd5cba6812edaf44b0366a39832e584edbe6114f4c36346e3212a35ec21023c52f9c53343468abbaa1d0 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.56.0": - version: 5.56.0 - resolution: "@typescript-eslint/typescript-estree@npm:5.56.0" +"@typescript-eslint/typescript-estree@npm:6.6.0": + version: 6.6.0 + resolution: "@typescript-eslint/typescript-estree@npm:6.6.0" dependencies: - "@typescript-eslint/types": "npm:5.56.0" - "@typescript-eslint/visitor-keys": "npm:5.56.0" + "@typescript-eslint/types": "npm:6.6.0" + "@typescript-eslint/visitor-keys": "npm:6.6.0" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" - semver: "npm:^7.3.7" - tsutils: "npm:^3.21.0" + semver: "npm:^7.5.4" + ts-api-utils: "npm:^1.0.1" peerDependenciesMeta: typescript: optional: true - checksum: 3f7f6b9ca31b2a80bad135416ec112a9d6bc9b52ca0a050a23cf06ba99242033a8470f372d04aa5fcf61cd1eadcd67d2e3a3fc6bcabe81ee7b2b6044fe5660ab + checksum: f2c61ef677e6d770343ce75f9a10912b487160ad249e6fd60e6b87d802c60c7c7d36b77d7ce58b8bed6f50e223ede5ed83184386b4eedfe5af0500e70eb7ca03 languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.56.0": - version: 5.56.0 - resolution: "@typescript-eslint/utils@npm:5.56.0" +"@typescript-eslint/utils@npm:6.6.0": + version: 6.6.0 + resolution: "@typescript-eslint/utils@npm:6.6.0" dependencies: - "@eslint-community/eslint-utils": "npm:^4.2.0" - "@types/json-schema": "npm:^7.0.9" - "@types/semver": "npm:^7.3.12" - "@typescript-eslint/scope-manager": "npm:5.56.0" - "@typescript-eslint/types": "npm:5.56.0" - "@typescript-eslint/typescript-estree": "npm:5.56.0" - eslint-scope: "npm:^5.1.1" - semver: "npm:^7.3.7" + "@eslint-community/eslint-utils": "npm:^4.4.0" + "@types/json-schema": "npm:^7.0.12" + "@types/semver": "npm:^7.5.0" + "@typescript-eslint/scope-manager": "npm:6.6.0" + "@typescript-eslint/types": "npm:6.6.0" + "@typescript-eslint/typescript-estree": "npm:6.6.0" + semver: "npm:^7.5.4" peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: dbb0ad22d3df356b0a4dd53dafcc43e1b94d300df6ec1529751f26a52c09098740a34abe61b20ead2664996535bb651a1075a5cb613fe29cfdb89bfa625fd45b + eslint: ^7.0.0 || ^8.0.0 + checksum: 56b9aa355e1b340816d33116367d16574c3f6ee3225ed65528fffa6e02a2f14b06ccf3124c42231829978863a76fe6067e16d66a6e5be74cc7fb152dea855868 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.56.0": - version: 5.56.0 - resolution: "@typescript-eslint/visitor-keys@npm:5.56.0" +"@typescript-eslint/visitor-keys@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" dependencies: - "@typescript-eslint/types": "npm:5.56.0" + "@typescript-eslint/types": "npm:5.62.0" eslint-visitor-keys: "npm:^3.3.0" - checksum: 7de034605b4ce76808022b6aa3d43c5f1be5dad2b25467716a0ab38acf67aeea2501143516bd4c71c3ece8a83f1fdbf00dadc00b3aa5fa05c51f0f9b3ec364ec + checksum: 65928322389af2c4280cd1f1bdae717f323e680343d3ccfad671e6a2a3b1e4497f03cff23ffdbf15602641b8bd6d5e2229aeb13ff8af8ac1f6e78ca9b3b41c83 languageName: node linkType: hard -"@vitejs/plugin-legacy@npm:^4.0.1": - version: 4.0.1 - resolution: "@vitejs/plugin-legacy@npm:4.0.1" +"@typescript-eslint/visitor-keys@npm:6.6.0": + version: 6.6.0 + resolution: "@typescript-eslint/visitor-keys@npm:6.6.0" dependencies: - "@babel/core": "npm:^7.20.12" - "@babel/preset-env": "npm:^7.20.2" - browserslist: "npm:^4.21.4" - core-js: "npm:^3.27.2" - magic-string: "npm:^0.27.0" - regenerator-runtime: "npm:^0.13.11" - systemjs: "npm:^6.13.0" - peerDependencies: - terser: ^5.4.0 - vite: ^4.0.0 - checksum: 101553b3ec26ba2c48cdf03a6d414a8707ac30a45e193ae1212428577ed1a1d5b7486293a8505f4fef65bb38e043eb7c84263c6d8b398013b2054770fb1302b8 + "@typescript-eslint/types": "npm:6.6.0" + eslint-visitor-keys: "npm:^3.4.1" + checksum: 1c1f4c3f399ec5cd2cbc6eedd15ac327c36abd1bf5410d6f4a1125d01521eddaffb355b6c96f55b428b92da4c8b17c51d7ae50a341ee71734e1d4bb06b432a75 languageName: node linkType: hard -"JSONStream@npm:^1.0.4": - version: 1.3.5 - resolution: "JSONStream@npm:1.3.5" - dependencies: - jsonparse: "npm:^1.2.0" - through: "npm:>=2.2.7 <3" - bin: - JSONStream: ./bin.js - checksum: 8986ff9a95b86439c66b98452d115e5ae97b6c265c18d41e61e4e373461157db47205f2b32b39f0150d38cd0a656bde6e5a686c8ce63a62f94fb4f1b82838e13 +"@vladfrangu/async_event_emitter@npm:^2.2.2": + version: 2.2.2 + resolution: "@vladfrangu/async_event_emitter@npm:2.2.2" + checksum: da923ef8b3def12872e99b9bee7d84f5d4974b4cfdc81a6e7dbde081a453879152e91377d19be1caa3d54c7a2fb652c5804bc5d5392913423bbfefc855d23fce languageName: node linkType: hard -"abbrev@npm:1": - version: 1.1.1 - resolution: "abbrev@npm:1.1.1" - checksum: 76e7fb9283b13208d5cf55df46669f9cf5e72007cb66595849be2d5e96c0a43704132d030c5705f9447266183986e1e8a4fc3e9578cb60a1f19cf0157664f957 +"@volar/kit@npm:~1.10.0": + version: 1.10.1 + resolution: "@volar/kit@npm:1.10.1" + dependencies: + "@volar/language-service": "npm:1.10.1" + typesafe-path: "npm:^0.2.2" + vscode-languageserver-textdocument: "npm:^1.0.8" + vscode-uri: "npm:^3.0.7" + peerDependencies: + typescript: "*" + checksum: 3598d68a35f30c154b939137c02ae302b1be2eb07790802cd83b61f57459589154ca9f8f4024751b05e87edd12fb66a3c7bed8f8dd770e7feb61f66a8e393d86 languageName: node linkType: hard -"accepts@npm:~1.3.8": +"@volar/language-core@npm:1.10.0, @volar/language-core@npm:~1.10.0": + version: 1.10.0 + resolution: "@volar/language-core@npm:1.10.0" + dependencies: + "@volar/source-map": "npm:1.10.0" + checksum: 640ac82170f09593038f1ea29d027cc1925802f679738893bc3de3e29c4d4da9bdcfeb68575c6298c8dd21af502ffd55b2447c31269191fe4addfd1cc9c138e9 + languageName: node + linkType: hard + +"@volar/language-core@npm:1.10.1": + version: 1.10.1 + resolution: "@volar/language-core@npm:1.10.1" + dependencies: + "@volar/source-map": "npm:1.10.1" + checksum: 64916d46c436674bee551e17b314b4800b62936b742416eff900816956d1d750c4d29aebfd5767d98f0704696664068bfb5d08dd157ea0e2567f3a75d80e23d5 + languageName: node + linkType: hard + +"@volar/language-server@npm:~1.10.0": + version: 1.10.1 + resolution: "@volar/language-server@npm:1.10.1" + dependencies: + "@volar/language-core": "npm:1.10.1" + "@volar/language-service": "npm:1.10.1" + "@volar/typescript": "npm:1.10.1" + "@vscode/l10n": "npm:^0.0.11" + request-light: "npm:^0.7.0" + typesafe-path: "npm:^0.2.2" + vscode-languageserver: "npm:^8.1.0" + vscode-languageserver-protocol: "npm:^3.17.3" + vscode-languageserver-textdocument: "npm:^1.0.8" + vscode-uri: "npm:^3.0.7" + checksum: 1e56574670ce930a332db6b37984aa5c82bdf2747ce22ce35679dc580b6ca77b4f911a2110b44ce4b24027f29f9d2d86d4158ad11ab81559e5198e8c8a37221c + languageName: node + linkType: hard + +"@volar/language-service@npm:1.10.1, @volar/language-service@npm:~1.10.0": + version: 1.10.1 + resolution: "@volar/language-service@npm:1.10.1" + dependencies: + "@volar/language-core": "npm:1.10.1" + "@volar/source-map": "npm:1.10.1" + vscode-languageserver-protocol: "npm:^3.17.3" + vscode-languageserver-textdocument: "npm:^1.0.8" + vscode-uri: "npm:^3.0.7" + checksum: 9c45b665e03873582dbd54258615640ce5a952c793453a3bb4dd83d0c13698d5a320e8c517b75347f12312c9c6ff281fc563eb9bad3188f5ed70451afcad64ec + languageName: node + linkType: hard + +"@volar/source-map@npm:1.10.0": + version: 1.10.0 + resolution: "@volar/source-map@npm:1.10.0" + dependencies: + muggle-string: "npm:^0.3.1" + checksum: 0e2b33e2ad2215348e306f8a255eb8a470b1c77a0c5d29a6aa87d6a4ffbe54485e2c90366035b3812efc30df58879173565c304f740273904a5930c37c613829 + languageName: node + linkType: hard + +"@volar/source-map@npm:1.10.1, @volar/source-map@npm:~1.10.0": + version: 1.10.1 + resolution: "@volar/source-map@npm:1.10.1" + dependencies: + muggle-string: "npm:^0.3.1" + checksum: 8a14c37ac12a1328dbef11d2f95c1521e94808123623d148475aff2e595896bf850b8cf6f832dca24a32beeab018e9651e15e1a684c5a1f955b67fad147dceac + languageName: node + linkType: hard + +"@volar/typescript@npm:1.10.1": + version: 1.10.1 + resolution: "@volar/typescript@npm:1.10.1" + dependencies: + "@volar/language-core": "npm:1.10.1" + checksum: 9cc51feede682bac6a80eed988d279fb447dab6561413d8b4cb8783b8e2e300e360d6f1bc5b14154da6b730513dd5c5744777a5e964d52cb24d96abca2f75364 + languageName: node + linkType: hard + +"@volar/typescript@npm:~1.10.0": + version: 1.10.0 + resolution: "@volar/typescript@npm:1.10.0" + dependencies: + "@volar/language-core": "npm:1.10.0" + checksum: ea8d3c363f7a754c9a78124b6d0e2c6198fae6fe1ab12764b04a50d95effae04ba2880c9ea51c45f34b5be193ea23ea038fecff47bcdd99aef0af306e7a5c6d3 + languageName: node + linkType: hard + +"@vscode/emmet-helper@npm:^2.8.6": + version: 2.9.2 + resolution: "@vscode/emmet-helper@npm:2.9.2" + dependencies: + emmet: "npm:^2.4.3" + jsonc-parser: "npm:^2.3.0" + vscode-languageserver-textdocument: "npm:^1.0.1" + vscode-languageserver-types: "npm:^3.15.1" + vscode-uri: "npm:^2.1.2" + checksum: 13bddb80169147757e72ab38f0b54cc1484349efaa7a6d4cf0a0f6127280417bf6c64851b9488170d526ea439eb8b2f0db330ccfa58fa8ab27984e143977402b + languageName: node + linkType: hard + +"@vscode/l10n@npm:^0.0.11": + version: 0.0.11 + resolution: "@vscode/l10n@npm:0.0.11" + checksum: 44e76bdbd41c325bc801039f7834e8249b00716d350cca5f447093010929ebc027435d47ec09101f8732ffa2669769051fbc09abb18ff3eb2e71b71dda28373c + languageName: node + linkType: hard + +"@vscode/l10n@npm:^0.0.16": + version: 0.0.16 + resolution: "@vscode/l10n@npm:0.0.16" + checksum: 276b234b4084ba1c4bd036725ee23ed816934170fe4680097b702308c6eaed4207bf467a3044215efd4312ac995b3efbcc324ade0cac777130a2c742daad8d5e + languageName: node + linkType: hard + +"JSONStream@npm:^1.3.5": + version: 1.3.5 + resolution: "JSONStream@npm:1.3.5" + dependencies: + jsonparse: "npm:^1.2.0" + through: "npm:>=2.2.7 <3" + bin: + JSONStream: ./bin.js + checksum: 8986ff9a95b86439c66b98452d115e5ae97b6c265c18d41e61e4e373461157db47205f2b32b39f0150d38cd0a656bde6e5a686c8ce63a62f94fb4f1b82838e13 + languageName: node + linkType: hard + +"abbrev@npm:^1.0.0": + version: 1.1.1 + resolution: "abbrev@npm:1.1.1" + checksum: 76e7fb9283b13208d5cf55df46669f9cf5e72007cb66595849be2d5e96c0a43704132d030c5705f9447266183986e1e8a4fc3e9578cb60a1f19cf0157664f957 + languageName: node + linkType: hard + +"accepts@npm:~1.3.8": version: 1.3.8 resolution: "accepts@npm:1.3.8" dependencies: @@ -4438,39 +4762,21 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.4.1": - version: 8.8.1 - resolution: "acorn@npm:8.8.1" +"acorn@npm:^8.10.0": + version: 8.10.0 + resolution: "acorn@npm:8.10.0" bin: acorn: bin/acorn - checksum: f8a84cf59173c5c07cb6b8097c716370f799244189b23d58358eadf9729e0d62660bc11339e03f08517fa33d1ef4b69b84b0bdebe0c0d783acaa8d2c44a66345 + checksum: 5de0f8f7507bdd36c764431cb91c97d99ba15b6f04dbfe4375151aff3caf9566e3c98d340f128a56a5fa930164d7be12c93d8f0f0fe795b9b310888a781c789c languageName: node linkType: hard -"acorn@npm:^8.5.0": - version: 8.7.0 - resolution: "acorn@npm:8.7.0" +"acorn@npm:^8.4.1, acorn@npm:^8.8.0, acorn@npm:^8.8.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0": + version: 8.9.0 + resolution: "acorn@npm:8.9.0" bin: acorn: bin/acorn - checksum: 26f306a42307f88da845d11e53b2c61164e9e59ea2bac52e25074f2edb4b49cbc7d0d10960095b4a571a5de8d8053f168b15aff9c0f7ba0e1f0bfcc4693ec380 - languageName: node - linkType: hard - -"acorn@npm:^8.8.0": - version: 8.8.0 - resolution: "acorn@npm:8.8.0" - bin: - acorn: bin/acorn - checksum: 15b10fb381a8a0394a718eba147e120b9d1ae6ed087e61612ee5fda94f98182e5fcd78ef6725c027dc3c5677ce920617c14c359d7777e8ef6a058d2ba113f81f - languageName: node - linkType: hard - -"acorn@npm:^8.8.1": - version: 8.8.2 - resolution: "acorn@npm:8.8.2" - bin: - acorn: bin/acorn - checksum: 5a47325f0aa08202080cb167d5b8103720d8a1d199f57988afa48bdfbc3c9973270b00e38c2c874240a49929625beaaae8c4ec683f5272b5f07f1119a457e5d0 + checksum: 82583d7017e93fbbf49b7fd808c7a41ea8756838f8477a7647c3fbb26482e7be98828e44e1a248bab45621057b35cc77d454b26f109b1461e755516d4278d35f languageName: node linkType: hard @@ -4483,14 +4789,14 @@ __metadata: languageName: node linkType: hard -"agentkeepalive@npm:^4.1.3": - version: 4.1.4 - resolution: "agentkeepalive@npm:4.1.4" +"agentkeepalive@npm:^4.2.1": + version: 4.3.0 + resolution: "agentkeepalive@npm:4.3.0" dependencies: debug: "npm:^4.1.0" - depd: "npm:^1.1.2" + depd: "npm:^2.0.0" humanize-ms: "npm:^1.2.1" - checksum: c9bb9b8537c540a5bdf25f5e9fa0ef924339ec013761b3272395ea1791f9adee3e6eb6fc8cfe006fe4fb90fc638186a1e1900eb808b07af23cb92707d3d2258f + checksum: b3cce4e2faf86c01bad23b471a67f4aa2e6001b833bc2f63a3d5a8b2a671636f8aac7d215e6f8243ce1c07c7a5d8d5fa90ab894ff0d9f0c3e05c2cda801103fb languageName: node linkType: hard @@ -4504,7 +4810,7 @@ __metadata: languageName: node linkType: hard -"ajv@npm:^6.10.0, ajv@npm:^6.12.4": +"ajv@npm:^6.12.4": version: 6.12.6 resolution: "ajv@npm:6.12.6" dependencies: @@ -4516,19 +4822,7 @@ __metadata: languageName: node linkType: hard -"ajv@npm:^8.0.1": - version: 8.6.0 - resolution: "ajv@npm:8.6.0" - dependencies: - fast-deep-equal: "npm:^3.1.1" - json-schema-traverse: "npm:^1.0.0" - require-from-string: "npm:^2.0.2" - uri-js: "npm:^4.2.2" - checksum: 7fa0e4a05490138414990a60fe9752334ceec92b4bf05ac6059f255ab79a6975131e851b6822739833bc09d0992684d3a651e57d16f708460f1ea61ff261204d - languageName: node - linkType: hard - -"ajv@npm:^8.11.0": +"ajv@npm:^8.0.1, ajv@npm:^8.11.0, ajv@npm:^8.6.0": version: 8.12.0 resolution: "ajv@npm:8.12.0" dependencies: @@ -4540,15 +4834,19 @@ __metadata: languageName: node linkType: hard -"ajv@npm:^8.6.0": - version: 8.6.2 - resolution: "ajv@npm:8.6.2" +"ansi-align@npm:^3.0.1": + version: 3.0.1 + resolution: "ansi-align@npm:3.0.1" dependencies: - fast-deep-equal: "npm:^3.1.1" - json-schema-traverse: "npm:^1.0.0" - require-from-string: "npm:^2.0.2" - uri-js: "npm:^4.2.2" - checksum: 618119268734d2501e6dffae0f6c46224f3f053127de94bdcf0f6bc389ac29d6e3d055c5ccabd2dcfbf40596897da0cc2965e78e57f7f53e34d9f2c6fc5acd03 + string-width: "npm:^4.1.0" + checksum: 399240ac035be1af1fa20de12c5ad3b50c7d2e404c352ac58917916aaa827f1cdd00a4e8154fabcc485b8cee43596e42829862bc83560481f7db2bfe38c3110d + languageName: node + linkType: hard + +"ansi-colors@npm:4.1.1": + version: 4.1.1 + resolution: "ansi-colors@npm:4.1.1" + checksum: e0851875eb583ed0a4fa7e3f41042a0cb2514e70a58377e30cb211fb938581a522a1178b2ace421bab43739af2b49e69e3e195e867ef596b98ad89ef40703f76 languageName: node linkType: hard @@ -4568,24 +4866,19 @@ __metadata: languageName: node linkType: hard -"ansi-regex@npm:^2.0.0": - version: 2.1.1 - resolution: "ansi-regex@npm:2.1.1" - checksum: 2e99d1e01bb3bb0318b41c595acf106287c23693016753484928b33483cbdced97674ae006b0207a89bbf475c2a8ccbf1f007abfa26defdcebd166d63390c69b - languageName: node - linkType: hard - -"ansi-regex@npm:^3.0.0": - version: 3.0.0 - resolution: "ansi-regex@npm:3.0.0" - checksum: 12f9311d91d093ce5117c0026d15e533f57044db53a150fb6d9f2c857221c6b8957fb9e8035126f0af1fb59abd33810d73515f12e5ae8159f3d6d726410659fa +"ansi-escapes@npm:^5.0.0": + version: 5.0.0 + resolution: "ansi-escapes@npm:5.0.0" + dependencies: + type-fest: "npm:^1.0.2" + checksum: cf9a0e550c10e9392472467faf2058afcdf3b8f957a62da9d98cde511227c0286354332e533e418222d4a2b452e20abceb97d43f79de14670b2149ecb817d032 languageName: node linkType: hard -"ansi-regex@npm:^5.0.0": - version: 5.0.0 - resolution: "ansi-regex@npm:5.0.0" - checksum: dcd54f039053a929dda96be62cad888bd1cd5c1f890868e54922d0f1b2713ac29eda1bd34cf3cd32bb4c819d5f18f23ceb87d6d1d899f6a778ae67c17013d2b3 +"ansi-regex@npm:^4.1.0": + version: 4.1.1 + resolution: "ansi-regex@npm:4.1.1" + checksum: bca5d9b63a576c91e33be9ef62eb72d461d5902389294e692ecbaa5289e5afde9238c7a0ada9f9f60bc245661ed87a3db571beb02867e7067e640193207354b0 languageName: node linkType: hard @@ -4603,6 +4896,13 @@ __metadata: languageName: node linkType: hard +"ansi-sequence-parser@npm:^1.1.0": + version: 1.1.0 + resolution: "ansi-sequence-parser@npm:1.1.0" + checksum: 9f86ded030702204e1eec9327e1754b4527082dd8ed78759c06c973e1f47aba48c62d945703561cd49d5c9590e972b3561827240a18e27955bea914ac4d30b1c + languageName: node + linkType: hard + "ansi-styles@npm:^3.2.1": version: 3.2.1 resolution: "ansi-styles@npm:3.2.1" @@ -4621,27 +4921,41 @@ __metadata: languageName: node linkType: hard -"ansi-styles@npm:^6.0.0": - version: 6.1.0 - resolution: "ansi-styles@npm:6.1.0" - checksum: cd798a83b2e8d55f609e2a77aed1a34a578388604634e326784cb7fe7e4153ff6bb5ae68e037521feacd6cc8ea899963d0bc17b3f3d01f378a0fb615faf41d91 +"ansi-styles@npm:^5.0.0": + version: 5.2.0 + resolution: "ansi-styles@npm:5.2.0" + checksum: be68c7c5f374e8d72174b43ff3ab5bdd0e2e024bcaace9c0d2bbcd0edef71281424a1d23e5b29c8c7911143e4c34090088287a15f36ed710167c5bcccc867c7e + languageName: node + linkType: hard + +"ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0": + version: 6.2.1 + resolution: "ansi-styles@npm:6.2.1" + checksum: 86fe3fc999c89775171631b32920d1fbf8adc4225895db376057b5a5e6fdcf837ae994ca08756f0a676c0dd8c74e58a7e87515d1fa16d6fcfffdf9069d579e90 + languageName: node + linkType: hard + +"any-promise@npm:^1.0.0": + version: 1.3.0 + resolution: "any-promise@npm:1.3.0" + checksum: 5768f5c5c10b5152048e2e4e44ba3509a9f3d0dfd8e73de34099adb6f05068966fa34feda164131a901fb37977d996f84a76a7ef120eff2f93725646937b4751 languageName: node linkType: hard "anymatch@npm:~3.1.2": - version: 3.1.2 - resolution: "anymatch@npm:3.1.2" + version: 3.1.3 + resolution: "anymatch@npm:3.1.3" dependencies: normalize-path: "npm:^3.0.0" picomatch: "npm:^2.0.4" - checksum: b9266228a3e1406086ece57c20f9cbfc9755375218697c79a71fba9245ad23a672687314422e97753fbb3bccd245d7c76974d7c15ba513386b499de6ba002300 + checksum: 0d50ce459783767bb68ce635c0a8f3e7de9843ebd6e6733accd59e13a49421a84944b8be5d68b5acecf74eca767a06229e07cae48151757744618e1a32dda0ed languageName: node linkType: hard -"aproba@npm:^1.0.3": - version: 1.2.0 - resolution: "aproba@npm:1.2.0" - checksum: 57bbff1b287201cb850e405ee5a494ba1e9e0d4064c21a454d7643863b3f2228d654c4e463841aef9273d7398b9b779d86e2239f11381a1bb5aa7055d03f3d3d +"aproba@npm:^1.0.3 || ^2.0.0": + version: 2.0.0 + resolution: "aproba@npm:2.0.0" + checksum: 02a080748877ae9a7d8973c37c688669a59971c5ec38a4c44f4a7176a52313da0b0c1e1518f80d3b80d75d0d4a16f25a4151a2316bad3db06bb34cb0245cc4fa languageName: node linkType: hard @@ -4652,13 +4966,13 @@ __metadata: languageName: node linkType: hard -"are-we-there-yet@npm:~1.1.2": - version: 1.1.5 - resolution: "are-we-there-yet@npm:1.1.5" +"are-we-there-yet@npm:^3.0.0": + version: 3.0.1 + resolution: "are-we-there-yet@npm:3.0.1" dependencies: delegates: "npm:^1.0.0" - readable-stream: "npm:^2.0.6" - checksum: 95d8e99d6a6ce90b3a60e84de28953d35948f4e2cdc026f9a007f20cf576b595033083fec1199894228a0db3859e3be74bdedc464cf2c4b2a8a93f3885751faf + readable-stream: "npm:^3.6.0" + checksum: 7137e25713c611cf38054434ba377e2f7ad3a4bbdb7ac3565ed5caac786080d1c86ed0b280edd917b4c1001ee0d6ed7bdd53effd69b5af4251e5a4fd18d09fbe languageName: node linkType: hard @@ -4669,6 +4983,22 @@ __metadata: languageName: node linkType: hard +"arg@npm:^5.0.0, arg@npm:^5.0.2": + version: 5.0.2 + resolution: "arg@npm:5.0.2" + checksum: 0549deb5027bdd3c8379460d34fb7d2be191dcbafd2f2dfa1346096126ce0ac8f3c6660eef2c117bf68b5bac4b563570eb2f97d5a807ef663f781db4a442ce29 + languageName: node + linkType: hard + +"argparse@npm:^1.0.7": + version: 1.0.10 + resolution: "argparse@npm:1.0.10" + dependencies: + sprintf-js: "npm:~1.0.2" + checksum: 6112e287a501a4badb8451c3b84420daa75dc4e1ac55d7ce086a492b2cf7d55f2fc0473acb62fc6af2d8013cf255d5d24734c10b4c2c6e440731644f8845c96b + languageName: node + linkType: hard + "argparse@npm:^2.0.1": version: 2.0.1 resolution: "argparse@npm:2.0.1" @@ -4676,6 +5006,25 @@ __metadata: languageName: node linkType: hard +"aria-query@npm:^5.1.3": + version: 5.2.1 + resolution: "aria-query@npm:5.2.1" + dependencies: + dequal: "npm:^2.0.3" + checksum: 80fffcdf6e45acd43e82e402f60d0b6bdd3771952abe431bbf274f2921c5e933d4de5ee9105732cc504631fd596772cc035e53115426f59605fb317fb8cadea3 + languageName: node + linkType: hard + +"array-buffer-byte-length@npm:^1.0.0": + version: 1.0.0 + resolution: "array-buffer-byte-length@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.2" + is-array-buffer: "npm:^3.0.1" + checksum: ff6fd5a16868943441dc2b8de7c0a8b070677457f1953d13b366e6fd01d7bf187a29268412ca5115f14031d3c00cea22c832af6da61569351d9967d8a5d803cb + languageName: node + linkType: hard + "array-flatten@npm:1.1.1": version: 1.1.1 resolution: "array-flatten@npm:1.1.1" @@ -4690,7 +5039,7 @@ __metadata: languageName: node linkType: hard -"array-includes@npm:^3.1.4": +"array-includes@npm:^3.1.5, array-includes@npm:^3.1.6": version: 3.1.6 resolution: "array-includes@npm:3.1.6" dependencies: @@ -4703,6 +5052,13 @@ __metadata: languageName: node linkType: hard +"array-iterate@npm:^2.0.0": + version: 2.0.1 + resolution: "array-iterate@npm:2.0.1" + checksum: f25653401ce21e9e0b3867803a9616093f7e5506a92b1c822a0e0dfdefbd60bd171570b2ad410bb5eb553fdb68e43e8a13bd47b59ebf15564dcf6e67d51252cf + languageName: node + linkType: hard + "array-union@npm:^2.1.0": version: 2.1.0 resolution: "array-union@npm:2.1.0" @@ -4710,7 +5066,20 @@ __metadata: languageName: node linkType: hard -"array.prototype.flat@npm:^1.2.5": +"array.prototype.findlastindex@npm:^1.2.2": + version: 1.2.3 + resolution: "array.prototype.findlastindex@npm:1.2.3" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.2.0" + es-abstract: "npm:^1.22.1" + es-shim-unscopables: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.1" + checksum: 481cbf50c97735aafb14db0308054e2f6c1e5a892aeda6e02e3a703c1ee768c03f685bb6353e338356a8b74a71f92ce6b4c6016a55e3e8444532bb6943ce0626 + languageName: node + linkType: hard + +"array.prototype.flat@npm:^1.3.1": version: 1.3.1 resolution: "array.prototype.flat@npm:1.3.1" dependencies: @@ -4722,6 +5091,33 @@ __metadata: languageName: node linkType: hard +"array.prototype.flatmap@npm:^1.3.1": + version: 1.3.1 + resolution: "array.prototype.flatmap@npm:1.3.1" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + es-shim-unscopables: "npm:^1.0.0" + checksum: 7ce9fb7473ea95f24a19241318d5a4f5a69d262ad3352a38331ad3532880c6cca1d221cbc1527dd417535eca26d9c44be513d1a40c1097db9ebfa982ab64543f + languageName: node + linkType: hard + +"arraybuffer.prototype.slice@npm:^1.0.1": + version: 1.0.2 + resolution: "arraybuffer.prototype.slice@npm:1.0.2" + dependencies: + array-buffer-byte-length: "npm:^1.0.0" + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.2.0" + es-abstract: "npm:^1.22.1" + get-intrinsic: "npm:^1.2.1" + is-array-buffer: "npm:^3.0.2" + is-shared-array-buffer: "npm:^1.0.2" + checksum: 32fe3b322702b3a9e05f70420404b39a2dde407ff0ea1b4e05a1f052c98b56995ab8f743c7c71afa49458d7829ea0de04ae2304608f8745cfb5adf00431f2006 + languageName: node + linkType: hard + "arrify@npm:^1.0.1": version: 1.0.1 resolution: "arrify@npm:1.0.1" @@ -4745,22 +5141,21 @@ __metadata: languageName: node linkType: hard -"assets@npm:^3.0.0": - version: 3.0.1 - resolution: "assets@npm:3.0.1" +"assertion-error-formatter@npm:^3.0.0": + version: 3.0.0 + resolution: "assertion-error-formatter@npm:3.0.0" dependencies: - async: "npm:^2.5.0" - bluebird: "npm:^3.4.6" - calipers: "npm:^2.0.0" - calipers-gif: "npm:^2.0.0" - calipers-jpeg: "npm:^2.0.0" - calipers-png: "npm:^2.0.0" - calipers-svg: "npm:^2.0.0" - calipers-webp: "npm:^2.0.0" - glob: "npm:^7.0.6" - lodash: "npm:^4.15.0" - mime: "npm:^2.4.0" - checksum: 2e71cf68f6401481b85f343580bc2f213b225b9bce4affb3b15498776a71d98f67ca61ab4d2d211deaaf42b0d4a492a214e9380144de36b69c1d4f9e300aaec3 + diff: "npm:^4.0.1" + pad-right: "npm:^0.2.2" + repeat-string: "npm:^1.6.1" + checksum: 3b6c738b6b6e319ddaa79deee7d2964ceeff6e77e0823e3a8c361409ffa018bf10ece11d4e26e8cd232c55d32ef7918e4f3d95c759e6b11c72efbbedec9d7569 + languageName: node + linkType: hard + +"ast-types-flow@npm:^0.0.7": + version: 0.0.7 + resolution: "ast-types-flow@npm:0.0.7" + checksum: f6f0fecb7cd2a31b964582e4a98c494e388041a6925e01e1a2d67a4c450e345d7dbd4ca9e6aaee493018ed03ecf23ce4456e4077b1a52c5c8eae35beb71111ae languageName: node linkType: hard @@ -4771,12 +5166,169 @@ __metadata: languageName: node linkType: hard -"async@npm:^2.5.0": - version: 2.6.4 - resolution: "async@npm:2.6.4" +"astro-compress@npm:^2.0.15": + version: 2.0.15 + resolution: "astro-compress@npm:2.0.15" + dependencies: + "@types/csso": "npm:5.0.0" + "@types/html-minifier-terser": "npm:7.0.0" + csso: "npm:5.0.5" + files-pipe: "npm:2.0.18" + html-minifier-terser: "npm:7.2.0" + sharp: "npm:0.32.5" + svgo: "npm:3.0.2" + terser: "npm:5.19.3" + checksum: 926b1734cc82db71a4e8378dae3351e6e488855fefae37c7865277459e30ffaf042ab78cee054cc9fd0a9d5c6a7cbd20f6611b34f5bf8cd29090134db88b7ad5 + languageName: node + linkType: hard + +"astro-compressor@npm:^0.4.0": + version: 0.4.0 + resolution: "astro-compressor@npm:0.4.0" + checksum: 76fd77f2f3e4bdad338e7bbdba6c148895b134afe59c76353cbc0bd67a7d42d1d563e528f085f218bada56c2c85ca225dc73737a2c64c7b32b0897a6b97703be + languageName: node + linkType: hard + +"astro-eslint-parser@npm:^0.15.0": + version: 0.15.0 + resolution: "astro-eslint-parser@npm:0.15.0" + dependencies: + "@astrojs/compiler": "npm:^2.0.0" + "@typescript-eslint/scope-manager": "npm:^5.0.0" + "@typescript-eslint/types": "npm:^5.0.0" + astrojs-compiler-sync: "npm:^0.3.0" + debug: "npm:^4.3.4" + eslint-visitor-keys: "npm:^3.0.0" + espree: "npm:^9.0.0" + semver: "npm:^7.3.8" + checksum: eae091ba02698072f1359df431bd139c2dbc82f5f6ca996983c8ba62e8f72152c77810c377bda12c37b52af757b667cd923056d8271b203de75eb777a2b4c75d + languageName: node + linkType: hard + +"astro-i18n-aut@npm:^0.4.23": + version: 0.4.23 + resolution: "astro-i18n-aut@npm:0.4.23" + dependencies: + dedent: "npm:^1.5.1" + fast-glob: "npm:^3.3.1" + fs-extra: "npm:^11.1.1" + slash: "npm:^5.1.0" + peerDependencies: + astro: ^3.0.4 + kleur: ^4.1.4 + checksum: 34c2341f9d1511a8a360067dc1ac51f2bb0b8d036f1bfb13056353fb0e9c842ba067ae8fe307dfdce544e1595447ab2fbf6bd8fa7691c20676b7a2c3afead00e + languageName: node + linkType: hard + +"astro-robots-txt@npm:^1.0.0": + version: 1.0.0 + resolution: "astro-robots-txt@npm:1.0.0" + dependencies: + valid-filename: "npm:^4.0.0" + zod: "npm:^3.22.2" + checksum: 78f237fd021581f7ce89dcf786d9acc450adf011cc29ae6d0d4122f7512e2fcd6a6f970d5708f535c6df51450bffd26e9d1681a1eb28ce651741666170da072f + languageName: node + linkType: hard + +"astro-seo-schema@npm:^3.2.1": + version: 3.2.1 + resolution: "astro-seo-schema@npm:3.2.1" + peerDependencies: + astro: ^3.0.0 + schema-dts: ^1.1.0 + checksum: 1b08213c4d5b53e9c021ca516c216e635a89ebeaa3ceeeae3718e845bb363b2cf461ea39d246ca83d76312ba9a0fe799d6cfc5d061b0d5ceedb8e6e49a122129 + languageName: node + linkType: hard + +"astro-webmanifest@npm:^1.0.0": + version: 1.0.0 + resolution: "astro-webmanifest@npm:1.0.0" + dependencies: + sharp: "npm:^0.32.5" + valid-filename: "npm:^4.0.0" + zod: "npm:^3.22.2" + checksum: f55c19c89c5f56945d2cf233f95eecaf0bba343d1534de3efa6b908c31eebf92aaf01724ac8a8503feb912dbec8e0043dbb527b397326a4b478704f839da9d0e + languageName: node + linkType: hard + +"astro@npm:^3.2.0": + version: 3.2.0 + resolution: "astro@npm:3.2.0" + dependencies: + "@astrojs/compiler": "npm:^2.1.0" + "@astrojs/internal-helpers": "npm:0.2.0" + "@astrojs/markdown-remark": "npm:3.2.0" + "@astrojs/telemetry": "npm:3.0.2" + "@babel/core": "npm:^7.22.10" + "@babel/generator": "npm:^7.22.10" + "@babel/parser": "npm:^7.22.10" + "@babel/plugin-transform-react-jsx": "npm:^7.22.5" + "@babel/traverse": "npm:^7.22.10" + "@babel/types": "npm:^7.22.10" + "@types/babel__core": "npm:^7.20.1" + acorn: "npm:^8.10.0" + boxen: "npm:^7.1.1" + chokidar: "npm:^3.5.3" + ci-info: "npm:^3.8.0" + clsx: "npm:^2.0.0" + common-ancestor-path: "npm:^1.0.1" + cookie: "npm:^0.5.0" + debug: "npm:^4.3.4" + devalue: "npm:^4.3.2" + diff: "npm:^5.1.0" + es-module-lexer: "npm:^1.3.0" + esbuild: "npm:^0.19.2" + estree-walker: "npm:^3.0.3" + execa: "npm:^8.0.1" + fast-glob: "npm:^3.3.1" + github-slugger: "npm:^2.0.0" + gray-matter: "npm:^4.0.3" + html-escaper: "npm:^3.0.3" + http-cache-semantics: "npm:^4.1.1" + js-yaml: "npm:^4.1.0" + kleur: "npm:^4.1.4" + magic-string: "npm:^0.30.3" + mime: "npm:^3.0.0" + ora: "npm:^7.0.1" + p-limit: "npm:^4.0.0" + path-to-regexp: "npm:^6.2.1" + preferred-pm: "npm:^3.1.2" + probe-image-size: "npm:^7.2.3" + prompts: "npm:^2.4.2" + rehype: "npm:^12.0.1" + resolve: "npm:^1.22.4" + semver: "npm:^7.5.4" + server-destroy: "npm:^1.0.1" + sharp: "npm:^0.32.5" + shiki: "npm:^0.14.3" + string-width: "npm:^6.1.0" + strip-ansi: "npm:^7.1.0" + tsconfig-resolver: "npm:^3.0.1" + undici: "npm:^5.23.0" + unist-util-visit: "npm:^4.1.2" + vfile: "npm:^5.3.7" + vite: "npm:^4.4.9" + vitefu: "npm:^0.2.4" + which-pm: "npm:^2.1.1" + yargs-parser: "npm:^21.1.1" + zod: "npm:3.21.1" + dependenciesMeta: + sharp: + optional: true + bin: + astro: astro.js + checksum: c2c042259004a848aeef6a776152c15be5a89ad33a25b49b9d0af02b45b8a2c5e756d5edfe6624101ad2c8020eb7a143389246415e8f4532333e20301d60c967 + languageName: node + linkType: hard + +"astrojs-compiler-sync@npm:^0.3.0": + version: 0.3.3 + resolution: "astrojs-compiler-sync@npm:0.3.3" dependencies: - lodash: "npm:^4.17.14" - checksum: 87b000b0c272771a0695682f874763e40813766e98ccb58f7f54404190b4af44ce494e40ecef813dffe04f60d4f618e18842edc7814d6186765144c0b53357d4 + synckit: "npm:^0.8.0" + peerDependencies: + "@astrojs/compiler": ">=0.27.0" + checksum: ae8eff649391bd19f1c0d4e7469c2027b351a1b0f7a3de70690e6989e7edff213e9dcea8d9e4e3a9bf81ff98503bb12a395aa9189e21e4093ffbc6baad1a9327 languageName: node linkType: hard @@ -4810,12 +5362,12 @@ __metadata: languageName: node linkType: hard -"autoprefixer@npm:^10.4.13": - version: 10.4.13 - resolution: "autoprefixer@npm:10.4.13" +"autoprefixer@npm:^10.4.15": + version: 10.4.15 + resolution: "autoprefixer@npm:10.4.15" dependencies: - browserslist: "npm:^4.21.4" - caniuse-lite: "npm:^1.0.30001426" + browserslist: "npm:^4.21.10" + caniuse-lite: "npm:^1.0.30001520" fraction.js: "npm:^4.2.0" normalize-range: "npm:^0.1.2" picocolors: "npm:^1.0.0" @@ -4824,7 +5376,14 @@ __metadata: postcss: ^8.1.0 bin: autoprefixer: bin/autoprefixer - checksum: ff6ad06d8312eccf7da2d82ad00489ea83fb10895fd7053245722e0125cf8010256450499a1265ba17b2f5e970ebdc7d87a6db8c9993a1181935ef61308df348 + checksum: e9226aa20a693db1c2a15675b30e799a74928bfe309fa57210f3ea2bb47534832bdd7c4b85ac5a31ee0b00a433a6eeb3bf07123d5b805ed71b87ca8d906207e6 + languageName: node + linkType: hard + +"available-typed-arrays@npm:^1.0.5": + version: 1.0.5 + resolution: "available-typed-arrays@npm:1.0.5" + checksum: 6b301a7ec3da82181c73101395cc915c049bbcba7e5f354809dab60c5b492440929328eeb73c07431ef8e35e6fa5af505690b20ed91f548d3bac1a456d458a78 languageName: node linkType: hard @@ -4836,110 +5395,89 @@ __metadata: linkType: hard "aws4@npm:^1.8.0": - version: 1.11.0 - resolution: "aws4@npm:1.11.0" - checksum: 8904e8f0333080c6b47dd32bfa83c6067ea14aee9d0e078e844fed166769505e2fcc3eabe5dc038f552db441c5606736ffda3b13bd16f41c8e02b8287d3a53ed + version: 1.12.0 + resolution: "aws4@npm:1.12.0" + checksum: 62888183a7eb652156c0647e0692d5b6eb710d36010d9c8b70d91c9cf39b1b832c8a9c5855b41b6917b3a5965daa588ddca460300e824e56c4123ac64e39b019 languageName: node linkType: hard -"axios@npm:^0.21.1": - version: 0.21.4 - resolution: "axios@npm:0.21.4" - dependencies: - follow-redirects: "npm:^1.14.0" - checksum: 3bb41e72f935e007d9d9c146b3fae09ab0b560dffb9e3f9b3598a270dc94311ae2a0e11d418b7d21409ca5477cc29c867ef4d0cd6fc704b91e6958a35c8fedd5 +"axe-core@npm:^4.6.2": + version: 4.7.2 + resolution: "axe-core@npm:4.7.2" + checksum: 4b4e83d68d242b8252089356d0ad3c9c56c25a11c3ef46887ad3b8e3b7b82a6c86fda4cc327ac361110619d0595a3dcae94b605f1c6b38880786883a6d123231 languageName: node linkType: hard -"axios@npm:^1.2.3": - version: 1.2.3 - resolution: "axios@npm:1.2.3" +"axios@npm:^0.27.2": + version: 0.27.2 + resolution: "axios@npm:0.27.2" dependencies: - follow-redirects: "npm:^1.15.0" + follow-redirects: "npm:^1.14.9" form-data: "npm:^4.0.0" - proxy-from-env: "npm:^1.1.0" - checksum: 08b2121690d5f59c1831d2ebb78b2a89a9b8e3fa05ea7ea0a6bb2dfd504a364f34a87ef00357a54e487b29c7ea863d507248ea83b5a97eb396403cb81b17168e + checksum: 4cd898afe90caaf05307fc5a0da4c61012493b6bfd4937fff9774455c01d368db583b17c4737e73853f149b32e615487930b491661682a1f69a1973b1f533bb7 languageName: node linkType: hard -"babel-plugin-dynamic-import-node@npm:^2.3.3": - version: 2.3.3 - resolution: "babel-plugin-dynamic-import-node@npm:2.3.3" +"axios@npm:^1.5.0": + version: 1.5.0 + resolution: "axios@npm:1.5.0" dependencies: - object.assign: "npm:^4.1.0" - checksum: 1c608f6dcf3cbb31222304bb8ae04ae0ed9b62f09692b29ab98f58cbc318305d9d2926467542b3f7efafb187a39c3fb4ea88562c2d5773d4fec5deb7825b0a36 + follow-redirects: "npm:^1.15.0" + form-data: "npm:^4.0.0" + proxy-from-env: "npm:^1.1.0" + checksum: 39440528483b1eeaeac1913a96a9bedfcb477bc059f0cc690a8242f361ce5ed84b73206dca5ce2977b94cf6b8c2b0132602764fc2fa465765ee3729e5d3f2d6a languageName: node linkType: hard -"babel-plugin-polyfill-corejs2@npm:^0.2.2": - version: 0.2.2 - resolution: "babel-plugin-polyfill-corejs2@npm:0.2.2" +"axobject-query@npm:^3.1.1": + version: 3.2.1 + resolution: "axobject-query@npm:3.2.1" dependencies: - "@babel/compat-data": "npm:^7.13.11" - "@babel/helper-define-polyfill-provider": "npm:^0.2.2" - semver: "npm:^6.1.1" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 153711dc54bc45857bd0573ecbe85f2710ad394d2fbd53179058d7945a92dfdd02f3ce38966501dabb4db2a5b2f7e2da20093db50681e3cbadd8244f60b4dcf5 + dequal: "npm:^2.0.3" + checksum: 1df3a2188b61c6eec6fdd5e2967aa996c08220f912e82806062fb18db5a43a06907ad56dfa88571ab4a4b12dc01429653abe7196ccf854194680e9b3fe1053f3 languageName: node linkType: hard -"babel-plugin-polyfill-corejs2@npm:^0.3.3": - version: 0.3.3 - resolution: "babel-plugin-polyfill-corejs2@npm:0.3.3" +"babel-plugin-polyfill-corejs2@npm:^0.4.3": + version: 0.4.3 + resolution: "babel-plugin-polyfill-corejs2@npm:0.4.3" dependencies: "@babel/compat-data": "npm:^7.17.7" - "@babel/helper-define-polyfill-provider": "npm:^0.3.3" + "@babel/helper-define-polyfill-provider": "npm:^0.4.0" semver: "npm:^6.1.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a7a7dd4b47129eadcc1cb50ab16ca9876c0353a16dbfb4a8ebe44afd5beb576bb1dc852b6819658695e5f19988517f7428cb5003d86586f977e5bbd2a982689e + checksum: 207985c7a8ae371e5dbafe20c1b56245472a140975519273b8f7e3a8ae2aadeec6863e949a67bca86992da8b9330f52491f59c569bc9a23e1c4f2ec746801160 languageName: node linkType: hard -"babel-plugin-polyfill-corejs3@npm:^0.2.2": - version: 0.2.3 - resolution: "babel-plugin-polyfill-corejs3@npm:0.2.3" +"babel-plugin-polyfill-corejs3@npm:^0.8.1": + version: 0.8.1 + resolution: "babel-plugin-polyfill-corejs3@npm:0.8.1" dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.2.2" - core-js-compat: "npm:^3.14.0" + "@babel/helper-define-polyfill-provider": "npm:^0.4.0" + core-js-compat: "npm:^3.30.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 9aeeec73895d012400db7acd6acc56cb2f1483f4acf2151d5b6ffe7768124ee5f1b8ee6737a4b4c5a40a28ddb72f5e94b05d97c20a28f76ab0a84183ecd0e8d1 + checksum: 1611c3b44fd1d88bbb1776ce79d0cde82a6735b02e0365393b69d26e20752813ea8529964c1109de3fb81bd942c1f9e4002945cfb2048469cad078509155da64 languageName: node linkType: hard -"babel-plugin-polyfill-corejs3@npm:^0.6.0": - version: 0.6.0 - resolution: "babel-plugin-polyfill-corejs3@npm:0.6.0" +"babel-plugin-polyfill-regenerator@npm:^0.5.0": + version: 0.5.0 + resolution: "babel-plugin-polyfill-regenerator@npm:0.5.0" dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.3.3" - core-js-compat: "npm:^3.25.1" + "@babel/helper-define-polyfill-provider": "npm:^0.4.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 7cbe6d4e43ac55b58e09a83a26c5bd0f03803a3f6245e1534775472960a12b4fb2106f7b66a6b5e446ea9096433efc0183d2f257bb0c0da3ed680967a7dce1fa + checksum: 551bbc5f019c29c1a29048244edab3cd496f01498fa93f850808cd96634f4f35081db1dde1b856176afffa1c2a815c539f6aac4006cae15a64aa64c28f108c5a languageName: node linkType: hard -"babel-plugin-polyfill-regenerator@npm:^0.2.2": - version: 0.2.2 - resolution: "babel-plugin-polyfill-regenerator@npm:0.2.2" - dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.2.2" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 83fa773649b7cecced9f4df835290a8027dc6ee8636ee9baaeb17ed7527a76b3b66b24ea1418c353010b0469f7b7f67b7037ae845e5500edb55fa41a26b27a4d - languageName: node - linkType: hard - -"babel-plugin-polyfill-regenerator@npm:^0.4.1": - version: 0.4.1 - resolution: "babel-plugin-polyfill-regenerator@npm:0.4.1" - dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.3.3" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: dfa6c1448285c90720cbac9a3237a1de0dce442492dfe20dd3755c7b2bc97f71f364ea1f2a7669785aaa50c058ed19998baff046de625e12da66072994a418ae +"bail@npm:^2.0.0": + version: 2.0.2 + resolution: "bail@npm:2.0.2" + checksum: 3c30e439b8eee58acf1596ba176b0a2d2e77e1b52df945da20ed13f223e55632eb17ed508539895972e26340343a00f621eb53e72d58066cc26b5ccbc62b7b8f languageName: node linkType: hard @@ -4980,6 +5518,13 @@ __metadata: languageName: node linkType: hard +"big-integer@npm:^1.6.44": + version: 1.6.51 + resolution: "big-integer@npm:1.6.51" + checksum: fc20ceb6b15f635783e09b596749323850a39565b5c0a73831bd1f32270aa4103ef025e1ca7887333e9ba50625328f8c415e56f17131f6d6e737d2dcc4c4ee53 + languageName: node + linkType: hard + "binary-extensions@npm:^2.0.0": version: 2.2.0 resolution: "binary-extensions@npm:2.2.0" @@ -4987,6 +5532,28 @@ __metadata: languageName: node linkType: hard +"bl@npm:^4.0.3": + version: 4.1.0 + resolution: "bl@npm:4.1.0" + dependencies: + buffer: "npm:^5.5.0" + inherits: "npm:^2.0.4" + readable-stream: "npm:^3.4.0" + checksum: f6a0c17835e457f148ccc8703be5752de9cd79ef7343710fda7aac905a7187a31321005999b3b1b7ab3e8c2362a27222e7df110f7556fa3077e4fbc226ef5d5a + languageName: node + linkType: hard + +"bl@npm:^5.0.0": + version: 5.1.0 + resolution: "bl@npm:5.1.0" + dependencies: + buffer: "npm:^6.0.3" + inherits: "npm:^2.0.4" + readable-stream: "npm:^3.4.0" + checksum: a7ad15987292c2ff0725102c2e876eabc685ee31ac26112df595def0a904eda57105587777f6bf735713478c6adaa0010c70977febfd36468511d2c58d733743 + languageName: node + linkType: hard + "blob-util@npm:^2.0.2": version: 2.0.2 resolution: "blob-util@npm:2.0.2" @@ -4994,7 +5561,7 @@ __metadata: languageName: node linkType: hard -"bluebird@npm:3.7.2, bluebird@npm:3.x.x, bluebird@npm:^3.4.6, bluebird@npm:^3.7.2": +"bluebird@npm:3.7.2, bluebird@npm:^3.7.2": version: 3.7.2 resolution: "bluebird@npm:3.7.2" checksum: 42df9603102ffbb71c0bc66056a66dce510ba136ab746fb2f783daa71843f14b6f22c2897cb224b556cc5546b9a524c224f6b1505e074310273a5ee5b222e072 @@ -5021,6 +5588,38 @@ __metadata: languageName: node linkType: hard +"boolbase@npm:^1.0.0": + version: 1.0.0 + resolution: "boolbase@npm:1.0.0" + checksum: 87bbb5043cc4e0525f77e0103b833a3806875e7f402f70afbfefc1b08862ccea9c373b015706ca9f442b81a55acfaa5795dc0748d5548d00df81b01dc4555b69 + languageName: node + linkType: hard + +"boxen@npm:^7.1.1": + version: 7.1.1 + resolution: "boxen@npm:7.1.1" + dependencies: + ansi-align: "npm:^3.0.1" + camelcase: "npm:^7.0.1" + chalk: "npm:^5.2.0" + cli-boxes: "npm:^3.0.0" + string-width: "npm:^5.1.2" + type-fest: "npm:^2.13.0" + widest-line: "npm:^4.0.1" + wrap-ansi: "npm:^8.1.0" + checksum: 7e0c614f6bd216f393097bc7e22213a9e904e3c19cdc16f96bbeb0f866f4ebdbc5298d675a07f30f29efb6c1e8c7153cc9697a32dfe336187bbacc4449646ac9 + languageName: node + linkType: hard + +"bplist-parser@npm:^0.2.0": + version: 0.2.0 + resolution: "bplist-parser@npm:0.2.0" + dependencies: + big-integer: "npm:^1.6.44" + checksum: d8a460722976a027f6c00c1e0c623083cf56f02bf403b31560812b9ac197ac17d4287377f7a0209ef024003add179f8ea0acd42e2bce7c8f9b3364b880d6ebdd + languageName: node + linkType: hard + "brace-expansion@npm:^1.1.7": version: 1.1.11 resolution: "brace-expansion@npm:1.1.11" @@ -5040,7 +5639,7 @@ __metadata: languageName: node linkType: hard -"braces@npm:^3.0.1, braces@npm:^3.0.2, braces@npm:~3.0.2": +"braces@npm:^3.0.2, braces@npm:~3.0.2": version: 3.0.2 resolution: "braces@npm:3.0.2" dependencies: @@ -5049,55 +5648,45 @@ __metadata: languageName: node linkType: hard -"browserslist@npm:^4.16.6": - version: 4.16.6 - resolution: "browserslist@npm:4.16.6" - dependencies: - caniuse-lite: "npm:^1.0.30001219" - colorette: "npm:^1.2.2" - electron-to-chromium: "npm:^1.3.723" - escalade: "npm:^3.1.1" - node-releases: "npm:^1.1.71" - bin: - browserslist: cli.js - checksum: 6bd4bfc56a744504f07839195e4ee61b4c69375951280cc9f4d3579407b3cf5174a83a6e9bf9263bbd8f87e4a736fdd9a048f9ce8a82a9dd958e79c18bbdcd69 +"browser-stdout@npm:1.3.1": + version: 1.3.1 + resolution: "browser-stdout@npm:1.3.1" + checksum: 7741b1c2b005c9ada075d953866522f9d55dd97ae32719dfb4d5a0b8fc271b13152e771702453d2cf8add9dc1c3b048689fc7bb170216e8555282ccfca83a754 languageName: node linkType: hard -"browserslist@npm:^4.21.3": - version: 4.21.5 - resolution: "browserslist@npm:4.21.5" +"browserslist@npm:^4.21.10": + version: 4.21.10 + resolution: "browserslist@npm:4.21.10" dependencies: - caniuse-lite: "npm:^1.0.30001449" - electron-to-chromium: "npm:^1.4.284" - node-releases: "npm:^2.0.8" - update-browserslist-db: "npm:^1.0.10" + caniuse-lite: "npm:^1.0.30001517" + electron-to-chromium: "npm:^1.4.477" + node-releases: "npm:^2.0.13" + update-browserslist-db: "npm:^1.0.11" bin: browserslist: cli.js - checksum: 66c055357fda71fcde8a9dc1f5af7e5bd320670ad5199196275703e305b77f92969c07a70a383e8130cd0f8c98a8b6d2a211b57ee6b5b4c2ac37779d9800a6c4 + checksum: 0629781752b944917074c93566a65baaf47e9c02d76f79c524d940b4e485217d17633baa50c8bf572a9c04b58ef70cc7b8da59f409f841b42e33dac69695cfec languageName: node linkType: hard -"browserslist@npm:^4.21.4": - version: 4.21.4 - resolution: "browserslist@npm:4.21.4" +"browserslist@npm:^4.21.3, browserslist@npm:^4.21.5, browserslist@npm:^4.21.9": + version: 4.21.9 + resolution: "browserslist@npm:4.21.9" dependencies: - caniuse-lite: "npm:^1.0.30001400" - electron-to-chromium: "npm:^1.4.251" - node-releases: "npm:^2.0.6" - update-browserslist-db: "npm:^1.0.9" + caniuse-lite: "npm:^1.0.30001503" + electron-to-chromium: "npm:^1.4.431" + node-releases: "npm:^2.0.12" + update-browserslist-db: "npm:^1.0.11" bin: browserslist: cli.js - checksum: a8fa463b17e7bfcc2bbcdd6036718a4663629d5fd4ad73f50ca45d10965c5cecc5953f6f007f1421888d84e5def3d6b027ad2c1b4776f93db6c49950059e5759 + checksum: 0158082dc5c14f6db834b6d46c56fafcdfb203959467f66857dd6c4167af0f95108ed101776e020f84a2bb6771a9219bf2e4f2c35776bbc651d7deaf5d3a1f60 languageName: node linkType: hard -"bson@npm:^4.6.5": - version: 4.6.5 - resolution: "bson@npm:4.6.5" - dependencies: - buffer: "npm:^5.6.0" - checksum: 243452a1a2667c8a112108974fd079323a42faa5c37661a5940fdf26214efb0cbee36f4d95780ed485e6badf1d5a046792b48113f6cc2ea9cae519eb623dda09 +"bson@npm:^6.0.0": + version: 6.0.0 + resolution: "bson@npm:6.0.0" + checksum: 7290998ee8eb7d105f9168e5940a6a04743001fe39674d897d802da31c8b326a2934b9e782ba1650906264513fdd27777a802451e69193ba10d6163032214d0a languageName: node linkType: hard @@ -5109,13 +5698,13 @@ __metadata: linkType: hard "buffer-from@npm:^1.0.0": - version: 1.1.1 - resolution: "buffer-from@npm:1.1.1" - checksum: 04881f5b499d47e8f92b90f9cc140fe7ceb8c2d82ae55bde2f47c5c1a5c9bae2e5e288c9af47d043eeb58be7e64d30bb620aeb8e6ef81e4d2a0cd72b658ad9a4 + version: 1.1.2 + resolution: "buffer-from@npm:1.1.2" + checksum: 2d8a264381325ee41959bb21bae76dc85b486f253e227a3fa70082c83f14c41665ce227ccda79e93ea2fc12e37a678fe956a6fa01b1876e6142eaf6554585ea4 languageName: node linkType: hard -"buffer@npm:^5.6.0": +"buffer@npm:^5.5.0, buffer@npm:^5.6.0": version: 5.7.1 resolution: "buffer@npm:5.7.1" dependencies: @@ -5125,6 +5714,16 @@ __metadata: languageName: node linkType: hard +"buffer@npm:^6.0.3": + version: 6.0.3 + resolution: "buffer@npm:6.0.3" + dependencies: + base64-js: "npm:^1.3.1" + ieee754: "npm:^1.2.1" + checksum: 8384c4bf1042f6e927d650af0053c54e57734c195f29152921aaa9c6976208e7210ec9202b8cbdac27782e1955497cde631ac9566122ad67062ddc1a04a886c9 + languageName: node + linkType: hard + "bufferutil@npm:^4.0.1": version: 4.0.7 resolution: "bufferutil@npm:4.0.7" @@ -5135,20 +5734,22 @@ __metadata: languageName: node linkType: hard -"builtin-modules@npm:^3.1.0": - version: 3.2.0 - resolution: "builtin-modules@npm:3.2.0" - checksum: 7982bcaeda7f94d289ba7cc214ea3ba8130a0b4c0417ac161383a6d1f775a2c9d6e68267120f093e0174a5c2c0ed1f3c3abe6a5b23a42ad2f3d70db926de5784 - languageName: node - linkType: hard - -"builtin-modules@npm:^3.3.0": +"builtin-modules@npm:^3.1.0, builtin-modules@npm:^3.3.0": version: 3.3.0 resolution: "builtin-modules@npm:3.3.0" checksum: 69bd2a742dc2aa7e69fc39b3289123e642c693705b8532ceab120e66496ec7cc599e3bd1352c09b45571910fa923c101abe8e1e36e0bc652e4397b19e6efb0e6 languageName: node linkType: hard +"bundle-name@npm:^3.0.0": + version: 3.0.0 + resolution: "bundle-name@npm:3.0.0" + dependencies: + run-applescript: "npm:^5.0.0" + checksum: 4cb6c319b9d989ff87020faa5cf1a79309cf9b19f361d561c8ead641f495a80c9b3d3b3c32b6c6fae4769e3ac3300c923407053a859760f19341cde082c7d56b + languageName: node + linkType: hard + "busboy@npm:^1.6.0": version: 1.6.0 resolution: "busboy@npm:1.6.0" @@ -5165,28 +5766,23 @@ __metadata: languageName: node linkType: hard -"cacache@npm:^15.0.5": - version: 15.2.0 - resolution: "cacache@npm:15.2.0" +"cacache@npm:^17.0.0": + version: 17.1.3 + resolution: "cacache@npm:17.1.3" dependencies: - "@npmcli/move-file": "npm:^1.0.1" - chownr: "npm:^2.0.0" - fs-minipass: "npm:^2.0.0" - glob: "npm:^7.1.4" - infer-owner: "npm:^1.0.4" - lru-cache: "npm:^6.0.0" - minipass: "npm:^3.1.1" + "@npmcli/fs": "npm:^3.1.0" + fs-minipass: "npm:^3.0.0" + glob: "npm:^10.2.2" + lru-cache: "npm:^7.7.1" + minipass: "npm:^5.0.0" minipass-collect: "npm:^1.0.2" minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.2" - mkdirp: "npm:^1.0.3" + minipass-pipeline: "npm:^1.2.4" p-map: "npm:^4.0.0" - promise-inflight: "npm:^1.0.1" - rimraf: "npm:^3.0.2" - ssri: "npm:^8.0.1" - tar: "npm:^6.0.2" - unique-filename: "npm:^1.1.1" - checksum: 26fdc9e9de2e8903526f554b8e3ac014ca46f300737bddf37b370ef1a5b0865132b6f20adb81b46b57a111fa605c85672528d0b24e03c9c89865200fc4e40bc0 + ssri: "npm:^10.0.0" + tar: "npm:^6.1.11" + unique-filename: "npm:^3.0.0" + checksum: 19b4f65a5b3e3d38aac2426b39ee5f6ad4da3afa8a40991b5784a07a480585af89904e425459d3ca335dc8ff60e2a213e95d4d4bb6a038fb6854eb9c3e777121 languageName: node linkType: hard @@ -5197,66 +5793,6 @@ __metadata: languageName: node linkType: hard -"calipers-gif@npm:^2.0.0": - version: 2.0.0 - resolution: "calipers-gif@npm:2.0.0" - dependencies: - bluebird: "npm:3.x.x" - peerDependencies: - calipers: 2.x.x - checksum: d6eedfcf1bf3e06549fd70696fb4d5970531e2f9a688f62252a7b40755128287789aaa471fd7b0506f9ed6cea06d89ca0a23b5154196652f3a2d5ffc5d6db782 - languageName: node - linkType: hard - -"calipers-jpeg@npm:^2.0.0": - version: 2.0.0 - resolution: "calipers-jpeg@npm:2.0.0" - dependencies: - bluebird: "npm:3.x.x" - peerDependencies: - calipers: 2.x.x - checksum: 845679fcbccc92849b97914fbd1e2171a1dc777d8dd581461a6f45cc12e8be538140b663e6fa424c9533c4b6cdcef5a1539ec4743139c43e55d438df411cb4cf - languageName: node - linkType: hard - -"calipers-png@npm:^2.0.0": - version: 2.0.0 - resolution: "calipers-png@npm:2.0.0" - dependencies: - bluebird: "npm:3.x.x" - peerDependencies: - calipers: 2.x.x - checksum: ba0b541185c725b4859b8248f4918ad71d8670d477924282d6a460a7ec8477f32082a8796e011aada4db0cadd3534aecc7c0e6c69b9c89331cbea66c66471266 - languageName: node - linkType: hard - -"calipers-svg@npm:^2.0.0": - version: 2.0.1 - resolution: "calipers-svg@npm:2.0.1" - dependencies: - bluebird: "npm:3.x.x" - checksum: 632f1d6dad087f7c7639638ccc1433659ceb60792786bcf63da3c3655dca2450ca409da9805b5de388897eec4464997124f25368b5ac024aebd18c452fb3cf73 - languageName: node - linkType: hard - -"calipers-webp@npm:^2.0.0": - version: 2.0.0 - resolution: "calipers-webp@npm:2.0.0" - dependencies: - bluebird: "npm:3.x.x" - checksum: 20d3f63e16c13e2f3710bed8a7c6fa1caaaae4525f336fc0c6681a3880de60a35a7aa94e80562944fdd066b04bfabe5bf1cf19eb6dc450437c0e22bb09de76a4 - languageName: node - linkType: hard - -"calipers@npm:^2.0.0": - version: 2.0.1 - resolution: "calipers@npm:2.0.1" - dependencies: - bluebird: "npm:3.x.x" - checksum: fb7788f991b5da8d1670cdaa23106d3230521956a38c29eaf364a4b935f74a7ee0bb84dcb3e9186c2f90e405d350b827b87f0dedad22ad659961cc2a8bb8dedc - languageName: node - linkType: hard - "call-bind@npm:^1.0.0, call-bind@npm:^1.0.2": version: 1.0.2 resolution: "call-bind@npm:1.0.2" @@ -5295,6 +5831,18 @@ __metadata: languageName: node linkType: hard +"camelcase-keys@npm:^7.0.0": + version: 7.0.2 + resolution: "camelcase-keys@npm:7.0.2" + dependencies: + camelcase: "npm:^6.3.0" + map-obj: "npm:^4.1.0" + quick-lru: "npm:^5.1.1" + type-fest: "npm:^1.2.1" + checksum: 45c7333f80e8f6ea61ead921a31fa4c754f96caee373bdc27e12221f904a681d86cfe2de28d4a951b6a9764e90df57116393c5d43cecbe73a3af26a5b529bae6 + languageName: node + linkType: hard + "camelcase@npm:^5.3.1": version: 5.3.1 resolution: "camelcase@npm:5.3.1" @@ -5302,17 +5850,42 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001219, caniuse-lite@npm:^1.0.30001400, caniuse-lite@npm:^1.0.30001426": - version: 1.0.30001441 - resolution: "caniuse-lite@npm:1.0.30001441" - checksum: f9d206ba9d6caf4cfc0e129dcb1a8b8ce085e4d2e7dd47e0209079313b26c82169ce50f6cc651ba1a82d81ff521fac93013a90da003a95ceed09923ca4a07d14 +"camelcase@npm:^6.0.0, camelcase@npm:^6.3.0": + version: 6.3.0 + resolution: "camelcase@npm:6.3.0" + checksum: 3c802157fc61af58194ed056d1830444ec1268a556bb90c7a3a729db481a897cbfdf86fb9db91b45b5e3b891183024e13bf26c866e8e5a37853ace6fa01b7be1 + languageName: node + linkType: hard + +"camelcase@npm:^7.0.1": + version: 7.0.1 + resolution: "camelcase@npm:7.0.1" + checksum: 8cc1909d4219769e835180fde379b5caeff681336506f9c4474b76a7ba0fe8eda4a183b3d05c09c39a118d8a44c384cf8a93e4326c655a82d03ded87a4eea829 + languageName: node + linkType: hard + +"caniuse-lite@npm:^1.0.30001503": + version: 1.0.30001506 + resolution: "caniuse-lite@npm:1.0.30001506" + checksum: 6416e74e57e0bad7122fb2b637f1a758eb2758c7968edcb3c0c8316c491f67f975e3a14677bc3d152d47085318c0c18edcace6d9dd2800beec1d094144873b48 + languageName: node + linkType: hard + +"caniuse-lite@npm:^1.0.30001517, caniuse-lite@npm:^1.0.30001520": + version: 1.0.30001529 + resolution: "caniuse-lite@npm:1.0.30001529" + checksum: 96f6545dd7a33964792b6bfed526cc370bab722720fa6357c3735a75c530994be8430ce79914d7567979552d292f6089019700edd41572171bb24d6ea83935ab languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001449": - version: 1.0.30001450 - resolution: "caniuse-lite@npm:1.0.30001450" - checksum: 2fb0262238b10d650150804f02fa666b5d9cf53d6645e9efc3b3ebe2fa5f4cc1de161925217ebc503eedd6662084dbef0bb4743e143b46e535851b1b308de5a9 +"capital-case@npm:^1.0.4": + version: 1.0.4 + resolution: "capital-case@npm:1.0.4" + dependencies: + no-case: "npm:^3.0.4" + tslib: "npm:^2.0.3" + upper-case-first: "npm:^2.0.2" + checksum: 913c04c48763e2d9e38ffb9b08e2b8a22824eb8a5882e35924db857694b022c3d23496962919b25cf8577fe1151657b32937b7ef2d086e7997b162219cefc16f languageName: node linkType: hard @@ -5323,7 +5896,21 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^2.0.0": +"ccount@npm:^2.0.0": + version: 2.0.1 + resolution: "ccount@npm:2.0.1" + checksum: f6d37f640e03f351df7480101f04963a740333ae665a778186c4a106434278b18892cc5bea9d9b6e7c9a3b0fc758a300bbf73a44750a669a3ce9e6ce0e5891ca + languageName: node + linkType: hard + +"chalk@npm:5.3.0, chalk@npm:^5.2.0, chalk@npm:^5.3.0": + version: 5.3.0 + resolution: "chalk@npm:5.3.0" + checksum: b35496b395338e78f891796bd55d641d8907e4930a8ecbff087644241f2435d7a6764e65562b43ec8581b2cc35c68fe213ffe5bc710fb39a774f4497617a7ff2 + languageName: node + linkType: hard + +"chalk@npm:^2.0.0, chalk@npm:^2.4.2": version: 2.4.2 resolution: "chalk@npm:2.4.2" dependencies: @@ -5334,17 +5921,7 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^4.0.0, chalk@npm:^4.1.0": - version: 4.1.1 - resolution: "chalk@npm:4.1.1" - dependencies: - ansi-styles: "npm:^4.1.0" - supports-color: "npm:^7.1.0" - checksum: 61dbf93839870b78e69ef31503d72101a4159be7ec8f41d44779437eba11a80f7c5b7cc1a26b5167f250ca7d37af68c49e3aa20cf88e23c837936ea764700a15 - languageName: node - linkType: hard - -"chalk@npm:^4.0.2, chalk@npm:^4.1.2": +"chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0, chalk@npm:^4.1.2": version: 4.1.2 resolution: "chalk@npm:4.1.2" dependencies: @@ -5354,6 +5931,34 @@ __metadata: languageName: node linkType: hard +"chalk@npm:^5.0.0": + version: 5.2.0 + resolution: "chalk@npm:5.2.0" + checksum: c3c31253b9cb445ca917aab30767282a1c1951fb8d60e1e8389a3d6434eee296dae28a2b02871c89a866ed7e560438aaea4c5d290242e5fb50b5eda2b4ea4061 + languageName: node + linkType: hard + +"character-entities-html4@npm:^2.0.0": + version: 2.1.0 + resolution: "character-entities-html4@npm:2.1.0" + checksum: 2bff10f1785b44b81320f4f5b215d1338bf91b6b4f39d8d81380f1de6db59f19b616aaf26f284cfd23934a9b86b816015de35311392dffef9e285f7361a14b47 + languageName: node + linkType: hard + +"character-entities-legacy@npm:^3.0.0": + version: 3.0.0 + resolution: "character-entities-legacy@npm:3.0.0" + checksum: b7e78c49af7a44f4125e190c69c71f4178bcf90f181410f64f1a2c231122e3cba142732e34d16f5b941e1beb0757b39859c7f420fa5453a8edc8da94b60d933d + languageName: node + linkType: hard + +"character-entities@npm:^2.0.0": + version: 2.0.2 + resolution: "character-entities@npm:2.0.2" + checksum: a8e6135180398251622c50fbff6636da02c09bd8f4ddd8d4a2718145db31d7cf16a574eed3d64032d935fab9931c76605995ff84d8d8fa976d11426f6139b571 + languageName: node + linkType: hard + "check-more-types@npm:2.24.0, check-more-types@npm:^2.24.0": version: 2.24.0 resolution: "check-more-types@npm:2.24.0" @@ -5361,26 +5966,7 @@ __metadata: languageName: node linkType: hard -"chokidar@npm:>=3.0.0 <4.0.0": - version: 3.5.2 - resolution: "chokidar@npm:3.5.2" - dependencies: - anymatch: "npm:~3.1.2" - braces: "npm:~3.0.2" - fsevents: "npm:~2.3.2" - glob-parent: "npm:~5.1.2" - is-binary-path: "npm:~2.1.0" - is-glob: "npm:~4.0.1" - normalize-path: "npm:~3.0.0" - readdirp: "npm:~3.6.0" - dependenciesMeta: - fsevents: - optional: true - checksum: eced396ace07553c4db665a4ad33950bfc56ce79fe3cde03d8f59e2e41d9189d7c80a306e946d09d34108f416f651ecc578b0d003de270e5f730a4448b3d27a9 - languageName: node - linkType: hard - -"chokidar@npm:^3.5.2, chokidar@npm:^3.5.3": +"chokidar@npm:3.5.3, chokidar@npm:>=3.0.0 <4.0.0, chokidar@npm:^3.5.3": version: 3.5.3 resolution: "chokidar@npm:3.5.3" dependencies: @@ -5399,6 +5985,13 @@ __metadata: languageName: node linkType: hard +"chownr@npm:^1.1.1": + version: 1.1.4 + resolution: "chownr@npm:1.1.4" + checksum: 011dfe9853fe7feed4fdcb25d2d3b2bf67957948f8e7988d7540aaf56e9cbfb5384d5b56808dfa140277be02401acdfa75f5b67b78576497e482ea8036666ed2 + languageName: node + linkType: hard + "chownr@npm:^2.0.0": version: 2.0.0 resolution: "chownr@npm:2.0.0" @@ -5406,17 +5999,10 @@ __metadata: languageName: node linkType: hard -"ci-info@npm:^3.2.0": - version: 3.3.2 - resolution: "ci-info@npm:3.3.2" - checksum: 88ce43eb69180dd01bef1968c43ca39ef0ac6fce5d112d8689d9f58c7f239ae568e48b9097a1315866b66af46fd0158133258c1df0ecd672c99bdee580c25e66 - languageName: node - linkType: hard - -"ci-info@npm:^3.6.1": - version: 3.7.0 - resolution: "ci-info@npm:3.7.0" - checksum: 60d4dcdc63c88a02beff01ec14a733128017d2388f86c5d6a931df7001d4a30f264040f2c6edfd0732fbfa79d624c1b76f6fbdad5e96315d491a1bf60cf424e4 +"ci-info@npm:^3.2.0, ci-info@npm:^3.8.0": + version: 3.8.0 + resolution: "ci-info@npm:3.8.0" + checksum: cbde5915261038659da39e508b688acd0baa981a73dc34357865957403383e0475b050c2f44971a3b37523849973af345724feb8f2e4a8eddd6db41be708f4ba languageName: node linkType: hard @@ -5427,12 +6013,12 @@ __metadata: languageName: node linkType: hard -"clean-css@npm:^5.2.2": - version: 5.2.4 - resolution: "clean-css@npm:5.2.4" +"clean-css@npm:~5.3.2": + version: 5.3.2 + resolution: "clean-css@npm:5.3.2" dependencies: source-map: "npm:~0.6.0" - checksum: 9bfdefb38d8baba15a0a328d44b2afd33ef435986aacd9c02733b48e5956aff3c13473c3b80601e1c6785a729ef50b130c67ab32baf97ccb7bb177da87d3ed54 + checksum: 3ba045341c3d4bb37b0cb69a2ea20774f60736a9ff7a11ea78bb457bc84fa1e2e7264da28a755d0f02ccfbe841b9e1d8321a9c3938f160f8bdd70c29fbb7dc9a languageName: node linkType: hard @@ -5452,6 +6038,13 @@ __metadata: languageName: node linkType: hard +"cli-boxes@npm:^3.0.0": + version: 3.0.0 + resolution: "cli-boxes@npm:3.0.0" + checksum: 683f84981bf2372cc7027c9e62e9d0fba5950e5478bbed69e43a096c9b1fc68a6d44e98737683c1d8cb3b8567f152601a5dc07ede4bfd43cd0ba907479970da5 + languageName: node + linkType: hard + "cli-cursor@npm:^3.1.0": version: 3.1.0 resolution: "cli-cursor@npm:3.1.0" @@ -5461,16 +6054,41 @@ __metadata: languageName: node linkType: hard -"cli-table3@npm:~0.6.1": - version: 0.6.2 - resolution: "cli-table3@npm:0.6.2" +"cli-cursor@npm:^4.0.0": + version: 4.0.0 + resolution: "cli-cursor@npm:4.0.0" + dependencies: + restore-cursor: "npm:^4.0.0" + checksum: 25eb27360772c59b5ffc05c1888863784f2b046af0a80121ed709b699daea1e3d88c0036cf41484fa5ba31d4a8e3c94ea37d9ca82850b31425e9f5efd7cbaef3 + languageName: node + linkType: hard + +"cli-spinners@npm:^2.9.0": + version: 2.9.0 + resolution: "cli-spinners@npm:2.9.0" + checksum: 24ec427655f8ed6f97bd348f08e4258de44b13402d669ce5909e11f956da18b8da98c9f36ec1a78a215169915ea131e330480c840f0861283d1aab39a1d83b69 + languageName: node + linkType: hard + +"cli-table3@npm:0.6.3, cli-table3@npm:^0.6.0, cli-table3@npm:~0.6.1": + version: 0.6.3 + resolution: "cli-table3@npm:0.6.3" dependencies: "@colors/colors": "npm:1.5.0" string-width: "npm:^4.2.0" dependenciesMeta: "@colors/colors": optional: true - checksum: dcee6d33413bc64856f709273b693cd639c464c97fb6c4dd33556fa80f107688f004a2e8c9b4e7972796e7819ad86ed616dff26d3dae7be5523c73222a437f45 + checksum: 82fe6f515833019cdb7064c7276a546c5e3fe6bae6a1db4bf4b41e4bdcf9b119b086630f991461ac8556d82330ae5284fc4942a740118be6c8bbfcc69c118d0a + languageName: node + linkType: hard + +"cli-table@npm:^0.3.11": + version: 0.3.11 + resolution: "cli-table@npm:0.3.11" + dependencies: + colors: "npm:1.0.3" + checksum: 75a0e746c3ba13b4d7211b6856a7a35277b870954cb4636d346411973309916f538f4434519b63b0272f8bb072fd7b1d0f20f81afc57bce585c16a983b5e6a8c languageName: node linkType: hard @@ -5494,6 +6112,17 @@ __metadata: languageName: node linkType: hard +"cliui@npm:^7.0.2": + version: 7.0.4 + resolution: "cliui@npm:7.0.4" + dependencies: + string-width: "npm:^4.2.0" + strip-ansi: "npm:^6.0.0" + wrap-ansi: "npm:^7.0.0" + checksum: 11f16da76b7dc4a78bce29ea89445e2ad30cc7cf78954813095d187cc17924461cf42f941d481cd920ab1672221c709af677436179d6cb87f6176139117664aa + languageName: node + linkType: hard + "cliui@npm:^8.0.1": version: 8.0.1 resolution: "cliui@npm:8.0.1" @@ -5505,10 +6134,10 @@ __metadata: languageName: node linkType: hard -"code-point-at@npm:^1.0.0": - version: 1.1.0 - resolution: "code-point-at@npm:1.1.0" - checksum: aa1fa193a67389a2b0760066d23abf8efb25aa548242c61fefb037ebde908f25a9afccd304124c6ed6f812d21adb77c4d2cb05b38270f9674a524de0f4923c0d +"clsx@npm:^2.0.0": + version: 2.0.0 + resolution: "clsx@npm:2.0.0" + checksum: 162cd1e4366c49cba5e43621238f3121c93b3ef033cc8f3e48525cbc8f672373eb84c6fae51b0060ce07ab0626a6b89b58a2d9f06486d1721a31de114620a81b languageName: node linkType: hard @@ -5537,13 +6166,42 @@ __metadata: languageName: node linkType: hard -"color-name@npm:~1.1.4": +"color-name@npm:^1.0.0, color-name@npm:~1.1.4": version: 1.1.4 resolution: "color-name@npm:1.1.4" checksum: 80acf64638343898f5b36825f4c9715ced380e738400b308f3f90ca2327f2f98f0c2cfb1f1a6447f267a2e1d1ea2214f26e948d8acab547e5478e2b0816c7c30 languageName: node linkType: hard +"color-string@npm:^1.9.0": + version: 1.9.1 + resolution: "color-string@npm:1.9.1" + dependencies: + color-name: "npm:^1.0.0" + simple-swizzle: "npm:^0.2.2" + checksum: cf76db4143e9d375401d56831ec6bffdfff17aa90276a41dcbdb1723fd7242b2cb6ed2058901544af5823fdf152cdea02eda8546cdd3fe96d4a6a16920166902 + languageName: node + linkType: hard + +"color-support@npm:^1.1.3": + version: 1.1.3 + resolution: "color-support@npm:1.1.3" + bin: + color-support: bin.js + checksum: 8dc879a976be92306773276728e0bbb0925478b2373f133a98e563c497ccd58f220b9c30cea37c72678fe071627d7391b3751a1b92aaa5e872cd278b00b96b74 + languageName: node + linkType: hard + +"color@npm:^4.2.3": + version: 4.2.3 + resolution: "color@npm:4.2.3" + dependencies: + color-convert: "npm:^2.0.1" + color-string: "npm:^1.9.0" + checksum: 6163589829b503c36000a0f2a5854661ecc1c1660d98a703a3230fb1b44b00a6b9804ac1cf8e77d05eab084e6ecac35c0a59d1791c6ff1508bee9636ae0b78b7 + languageName: node + linkType: hard + "colord@npm:^2.9.3": version: 2.9.3 resolution: "colord@npm:2.9.3" @@ -5551,24 +6209,17 @@ __metadata: languageName: node linkType: hard -"colorette@npm:^1.2.2": - version: 1.2.2 - resolution: "colorette@npm:1.2.2" - checksum: 971271af6388b327048586ffb408dcaec42194016fc0056940498a6ae4fa3a18887588618694d91f3625d9700c6ffa041f356f47c80a1daaad67df1c0ed3f7eb - languageName: node - linkType: hard - -"colorette@npm:^2.0.16": - version: 2.0.16 - resolution: "colorette@npm:2.0.16" - checksum: 68ff163b8954e35676cf7b3176ef44df6a9c3d61d714b580dcc86b99b52e5530d23d6a32b8ff6e11aca4d2d373dd9af063ead6bc10cae40bc1d1c56de269f106 +"colorette@npm:^2.0.16, colorette@npm:^2.0.20": + version: 2.0.20 + resolution: "colorette@npm:2.0.20" + checksum: 51a2b1cf140e120074178dd17ffdd4e349b7e84d2cb498f83978124ba0efc19d4d35c1859226f7a75ef0b368b0feafd10370927e871827af428b7500396af274 languageName: node linkType: hard -"colorette@npm:^2.0.19": - version: 2.0.19 - resolution: "colorette@npm:2.0.19" - checksum: f887e4f7608a1a37037f0b9f7da4d1608e2e1ac0126b87c4c143ff0348bc586173b86fde37f71f1b7742cd1c04285d0cb3cbeab391935886c86a162f4f2b5b87 +"colors@npm:1.0.3": + version: 1.0.3 + resolution: "colors@npm:1.0.3" + checksum: a2396fe8978997d9ed779c834c046ca02be30a4b48a7fd41d2724016ca5dc1b47a539d7a149fb7f79e5127dfebdb791aa38ee5d041ef27a0771e739afbec64af languageName: node linkType: hard @@ -5581,34 +6232,62 @@ __metadata: languageName: node linkType: hard -"commander@npm:^2.20.0": - version: 2.20.3 - resolution: "commander@npm:2.20.3" - checksum: a6cb7ce73cc1db74a2da4bb6b4fc4f9a655ba35beb90f32bf5831d7d3be610dafc01dcc8a17f8204cf4e3f1f434d2115b7db56dfb0b827d42b10d1ba6ae8cbb4 +"comma-separated-tokens@npm:^2.0.0": + version: 2.0.3 + resolution: "comma-separated-tokens@npm:2.0.3" + checksum: fb3b72c8416e0d4fe18cb1c912c3c7911697e5249c61818857701babb8e906d5695cc84b259d78c5f17648560878c89dfa86293d91cf78265aacfbb57fdde943 languageName: node linkType: hard -"commander@npm:^5.1.0": - version: 5.1.0 - resolution: "commander@npm:5.1.0" - checksum: 121debda8eeb53f3282c6a1d7995027a88ad4c22f9bd31b27a1350d483fc90dabd6dbf613782921b646e68a20ab45ed82adc3b594dbd42b60345e08059f338e4 +"commander@npm:11.0.0": + version: 11.0.0 + resolution: "commander@npm:11.0.0" + checksum: cbdf1f81454204ef49b8ba7c1c03353fb102aa79ca6a107eff35fdfa0322c9610350510edcc098d1172f449d3a6035d108238dc5f3b846436c373740a7a3523e languageName: node linkType: hard -"commander@npm:^8.3.0": - version: 8.3.0 - resolution: "commander@npm:8.3.0" - checksum: 94dba589da4444bc07d60537438ce36bbf78b52b18bb720fb3727a3b589cb27b53171065742e6e442962e273976f034ca7475cc5517d92c7033fae2f6ed50e76 +"commander@npm:9.1.0": + version: 9.1.0 + resolution: "commander@npm:9.1.0" + checksum: 26eca065cd127b3712b442aba47d8093be95889abf83c55659d09c53b89477d950dec095bafc41f2000eb2c5d4f5157a3d3aa79418cfd5215b01818ab33d7351 languageName: node linkType: hard -"commander@npm:^9.4.1": +"commander@npm:9.4.1": version: 9.4.1 resolution: "commander@npm:9.4.1" checksum: 7d4c1f3bd4ad451f43fce51b9c73dc2d61fca00a9249196aa2d3d66fc46f2460c917c73ea9221c278fb8d35f496384f5125806e69108581a8e8bc673752c94e6 languageName: node linkType: hard +"commander@npm:^10.0.0": + version: 10.0.1 + resolution: "commander@npm:10.0.1" + checksum: b2a03d799104eac407ca031b94126c98198594fcff41554eb253cef748de57fb1a4cdd591baa075de589f2fddf1f968d1ecd1b79e8b47570ee441ab4f3363776 + languageName: node + linkType: hard + +"commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: a6cb7ce73cc1db74a2da4bb6b4fc4f9a655ba35beb90f32bf5831d7d3be610dafc01dcc8a17f8204cf4e3f1f434d2115b7db56dfb0b827d42b10d1ba6ae8cbb4 + languageName: node + linkType: hard + +"commander@npm:^6.2.1": + version: 6.2.1 + resolution: "commander@npm:6.2.1" + checksum: c52b3cba040d015dc2788bed08041dd2e4734bc79b4ac0e1829544fa09e0844b746b956e9f5f87dee4f62870ab63239f22e2e2d30b242eef392df1501dee319d + languageName: node + linkType: hard + +"commander@npm:^7.2.0": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 1270a98c752348d62803dd6214bba584a13e5c80e0d32d590740f26c534209882a93daf471697326ad80b3f4f0417df31aca7b127e01efee58fe883b47c1a492 + languageName: node + linkType: hard + "common-ancestor-path@npm:^1.0.1": version: 1.0.1 resolution: "common-ancestor-path@npm:1.0.1" @@ -5617,9 +6296,9 @@ __metadata: linkType: hard "common-tags@npm:^1.8.0": - version: 1.8.0 - resolution: "common-tags@npm:1.8.0" - checksum: 603a54790f46e851477bb13622ea4fd768ca241dbc5186ce886c25c954bb395b138697f8dfffc2c7f4abfe834b728bfc1b1d1a79561810e1f7728865712e3cf2 + version: 1.8.2 + resolution: "common-tags@npm:1.8.2" + checksum: e1080df9fd8eefd8c4b4a983dc39b41c251d85a05c15991592762ff0c78b433e9ac7bb02518c12a89d1cb33dbb466872fbbb7030ecfc7142b0810747e7859b3b languageName: node linkType: hard @@ -5647,7 +6326,7 @@ __metadata: languageName: node linkType: hard -"console-control-strings@npm:^1.0.0, console-control-strings@npm:~1.1.0": +"console-control-strings@npm:^1.1.0": version: 1.1.0 resolution: "console-control-strings@npm:1.1.0" checksum: d286ffd439aac97472557325e6aa4cc3a2eefe495a70a9640b89508880db4bba1bd1b29bb011608c23033d884c84cac8da95c8f12ca0ec69ccc70d6d5f39c618 @@ -5664,55 +6343,48 @@ __metadata: linkType: hard "content-type@npm:~1.0.4": - version: 1.0.4 - resolution: "content-type@npm:1.0.4" - checksum: 20bda9bccfb0086d4e4b35cc5c6073b693d4a8ff0a0da0b68cf283c34a649a5d07068fd240c1ed503a7696dbbf4c875cecb708ea219db1880fbfa40e8fb02620 + version: 1.0.5 + resolution: "content-type@npm:1.0.5" + checksum: aa41501a6a2040fd19cdb39ac7e077f414c269cbfa0a274dd6b2ce1ef10c8211ea11b9bf3c034ba6872fde5f16d0b234062df62ab5a773b978cce40b60e01747 languageName: node linkType: hard -"conventional-changelog-angular@npm:^5.0.11": - version: 5.0.13 - resolution: "conventional-changelog-angular@npm:5.0.13" +"conventional-changelog-angular@npm:^6.0.0": + version: 6.0.0 + resolution: "conventional-changelog-angular@npm:6.0.0" dependencies: compare-func: "npm:^2.0.0" - q: "npm:^1.5.1" - checksum: 7279d42b6da06188c27d66ff88765bf9796be12048726435c6d557ce0ef3b734c69974b8f79650ba739ac4e67700dd0e376d94f63edb5d6d87d09255b646ec19 + checksum: 3194c8e12d336a7dcc59de59e00a9a4b4df9df1cc6dc073eb44827e84ca45632c9d80c1c1624b709989946b849e07b1d94ed6d9c873638d6b271fb3f9bf27ff3 languageName: node linkType: hard -"conventional-changelog-conventionalcommits@npm:^5.0.0": - version: 5.0.0 - resolution: "conventional-changelog-conventionalcommits@npm:5.0.0" +"conventional-changelog-conventionalcommits@npm:^6.1.0": + version: 6.1.0 + resolution: "conventional-changelog-conventionalcommits@npm:6.1.0" dependencies: compare-func: "npm:^2.0.0" - lodash: "npm:^4.17.15" - q: "npm:^1.5.1" - checksum: cd39e90a9637925b99c425197436f6cec1257f3ae82b437edeb93390d4cea90702cff31c06ab4d9dde71ea243cf64f7665eafa019bbfd7735ce2e4d30b9362bf + checksum: 75f983f548b0769d2a1f486d6a3cf97426b694bdb13974861ab491fcb03e87c9cf0af031206e7a29c6ec22afb476a97e3ec2f64b3a4cc0b07f6fc257eef3ea9d languageName: node linkType: hard -"conventional-commits-parser@npm:^3.2.2": - version: 3.2.4 - resolution: "conventional-commits-parser@npm:3.2.4" +"conventional-commits-parser@npm:^4.0.0": + version: 4.0.0 + resolution: "conventional-commits-parser@npm:4.0.0" dependencies: - JSONStream: "npm:^1.0.4" + JSONStream: "npm:^1.3.5" is-text-path: "npm:^1.0.1" - lodash: "npm:^4.17.15" - meow: "npm:^8.0.0" - split2: "npm:^3.0.0" - through2: "npm:^4.0.0" + meow: "npm:^8.1.2" + split2: "npm:^3.2.2" bin: conventional-commits-parser: cli.js - checksum: 8540ba2f65dc57beb2df2519d73c57f77158ac69b54cd079c00eebafd26deb10abf8de8075811f0e80c262aada7bdabb5ecda0c206d950cff3c4fbf5e3c4342d + checksum: 1e820de0b670927ff50d896c19f1f46e0cbf234bf92985985b1244091609823911362ec3646bc4222474cb92bb8ed3b34c1e2fad5c4e1ece812b5af2c7448eeb languageName: node linkType: hard "convert-source-map@npm:^1.7.0": - version: 1.8.0 - resolution: "convert-source-map@npm:1.8.0" - dependencies: - safe-buffer: "npm:~5.1.1" - checksum: 1548dbc3808672aec5942ada45bf57ceb2287ac2566e9935e35d95ffeab562f33ee1221922ec2ea7f3ff4b85828c8247599144069fae81a86e295cc932190dcf + version: 1.9.0 + resolution: "convert-source-map@npm:1.9.0" + checksum: 7c665ec75a792623eff22413a59fb6646770063eb871efe7550cfba4f17177137ea300f964c2763db69355384398de491126fbe064fa83b25e3023b87711b6e4 languageName: node linkType: hard @@ -5723,7 +6395,7 @@ __metadata: languageName: node linkType: hard -"cookie@npm:0.5.0": +"cookie@npm:0.5.0, cookie@npm:^0.5.0": version: 0.5.0 resolution: "cookie@npm:0.5.0" checksum: 23bd6dd64f025869373c6f3c72a870b9bd0e0e6a0ffe734229c032d7aca51972ba584b39100c09141b18043e790862425aae4a60d7449fca565b21cdae0cb3c3 @@ -5737,33 +6409,16 @@ __metadata: languageName: node linkType: hard -"core-js-compat@npm:^3.14.0, core-js-compat@npm:^3.15.0": - version: 3.15.1 - resolution: "core-js-compat@npm:3.15.1" - dependencies: - browserslist: "npm:^4.16.6" - semver: "npm:7.0.0" - checksum: 8860f94dc1de55694192a31bfd160f6317293d1c7037ac0794206485b28603b8946ce35ea4317f61375133a739e471ce0987ad119e9bb9fd43b14ae92880ede7 - languageName: node - linkType: hard - -"core-js-compat@npm:^3.25.1": - version: 3.27.2 - resolution: "core-js-compat@npm:3.27.2" +"core-js-compat@npm:^3.30.1, core-js-compat@npm:^3.30.2": + version: 3.31.0 + resolution: "core-js-compat@npm:3.31.0" dependencies: - browserslist: "npm:^4.21.4" - checksum: 34ea756f18480615ad35d099cfba99c574240140f9233fcddb321dc935c6ed44bd2e40c8cb27b7c98ac9b8ce642b10b8f9d5bd4b5c8d0f74fbf797c3be5a60cf - languageName: node - linkType: hard - -"core-js@npm:^3.27.2": - version: 3.27.2 - resolution: "core-js@npm:3.27.2" - checksum: a65178818013cb4f90d96b8ff899fea5cd5bb884f993888ad5da34b89ff199bd6732bca6acc1a0ef21d36f2955e0389bd58a2141ce5234900d42d5c636b1cd92 + browserslist: "npm:^4.21.5" + checksum: 2e04820a0df57bbba1acc6d057792a718c765b7af8a9e59cff986f3c60189d0c8cad1e2c2fa056345da79c86fdd28f587363598a68ee7734cdd0e229ddda6ae6 languageName: node linkType: hard -"core-util-is@npm:1.0.2, core-util-is@npm:~1.0.0": +"core-util-is@npm:1.0.2": version: 1.0.2 resolution: "core-util-is@npm:1.0.2" checksum: f6006dfc860ac490b330431be370c58e9b8601d3affe85a08309665970431e12a672ebf1c57799795e145f4fc488c208b2ee992c42fa57faae2649c6f514845e @@ -5792,41 +6447,32 @@ __metadata: languageName: node linkType: hard -"cosmiconfig@npm:^7.0.1": - version: 7.0.1 - resolution: "cosmiconfig@npm:7.0.1" - dependencies: - "@types/parse-json": "npm:^4.0.0" - import-fresh: "npm:^3.2.1" - parse-json: "npm:^5.0.0" - path-type: "npm:^4.0.0" - yaml: "npm:^1.10.0" - checksum: f5b0588faeb39d1bcb846504cb6693121bf6af4d09a5a0523a9201d189a769a067db33e36d6c6fe23937cc24f9771ad0e76ecb3056a4e244697867d62aa50ec0 - languageName: node - linkType: hard - -"cosmiconfig@npm:^7.1.0": - version: 7.1.0 - resolution: "cosmiconfig@npm:7.1.0" +"cosmiconfig@npm:^8.0.0, cosmiconfig@npm:^8.2.0": + version: 8.2.0 + resolution: "cosmiconfig@npm:8.2.0" dependencies: - "@types/parse-json": "npm:^4.0.0" import-fresh: "npm:^3.2.1" + js-yaml: "npm:^4.1.0" parse-json: "npm:^5.0.0" path-type: "npm:^4.0.0" - yaml: "npm:^1.10.0" - checksum: 8add352f0abd55fc5eaef0823937c33992e5ae670831418c8ff98bb301952260467533b09b8e9257dc360baa270610a7a92b288d94eb25d6f577a0d7e507801b + checksum: 25a8d33a2372b8dd02993bf8c7a6e9e0d7d70692dc7e00da3848f3ff3e4bac1ab734d36d08dba2e10a49b69c316ca6fb92f9b7fc3eed60b7e65a60609941eccd languageName: node linkType: hard -"cosmiconfig@npm:^8.0.0": - version: 8.0.0 - resolution: "cosmiconfig@npm:8.0.0" +"cosmiconfig@npm:^8.1.3": + version: 8.3.4 + resolution: "cosmiconfig@npm:8.3.4" dependencies: - import-fresh: "npm:^3.2.1" + import-fresh: "npm:^3.3.0" js-yaml: "npm:^4.1.0" - parse-json: "npm:^5.0.0" + parse-json: "npm:^5.2.0" path-type: "npm:^4.0.0" - checksum: 436a849ca0a434b4a7344e9213db6314512c6af23c0b187728d21b0292736eec8c2df046a95b8c796a9304afbd9d154bf5e9aeeae535e6303d835d44835cad6d + peerDependencies: + typescript: ">=4.9.5" + peerDependenciesMeta: + typescript: + optional: true + checksum: 4523a7249d5871a8fa8c30fd7c5c3df811a96fee39bba21528e20b75f4e8650717baf349658b4309d20d1021a12e9f728dbf0c680d381fa2faafd3c3cb15833e languageName: node linkType: hard @@ -5855,54 +6501,90 @@ __metadata: languageName: node linkType: hard -"css-blank-pseudo@npm:^3.0.3": - version: 3.0.3 - resolution: "css-blank-pseudo@npm:3.0.3" +"css-blank-pseudo@npm:^6.0.0": + version: 6.0.0 + resolution: "css-blank-pseudo@npm:6.0.0" dependencies: - postcss-selector-parser: "npm:^6.0.9" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: postcss: ^8.4 - bin: - css-blank-pseudo: dist/cli.cjs - checksum: da8fbcc7f18a9fe73b767708075836a2afd63bb320467e7903d9eb25de734bedfea3c845efb75457ae23bf4074ce6b0cb533fa2610e889692db7a186e0506c2a + checksum: f3b6690c963c19d0e4555d7758a4d24ea53aa4580d919fa9805ce744d3f429ba8e18c3b2124f85d4a7604b541c8c65831365a210738fff93154ca446b2c1909f languageName: node linkType: hard -"css-functions-list@npm:^3.1.0": - version: 3.1.0 - resolution: "css-functions-list@npm:3.1.0" - checksum: 849fa6213fe9110d44a9e47f44e356e8123225d4dc1095f6dcfedd30a372f034b974a4ba3b81f06080ede4ec65ab3944ca2b1c71d00f038c7bfc10a8792b663a +"css-functions-list@npm:^3.2.0": + version: 3.2.0 + resolution: "css-functions-list@npm:3.2.0" + checksum: dd59897ecf6254a8630833a875e0e6d99582bf13775f46d318aec94303126e80aaca1392efa9ef5740fe23421054c29cce15c0cdeb6d42de115b9bf66e4b461d languageName: node linkType: hard -"css-has-pseudo@npm:^3.0.4": - version: 3.0.4 - resolution: "css-has-pseudo@npm:3.0.4" +"css-has-pseudo@npm:^6.0.0": + version: 6.0.0 + resolution: "css-has-pseudo@npm:6.0.0" dependencies: - postcss-selector-parser: "npm:^6.0.9" + "@csstools/selector-specificity": "npm:^3.0.0" + postcss-selector-parser: "npm:^6.0.13" + postcss-value-parser: "npm:^4.2.0" peerDependencies: postcss: ^8.4 - bin: - css-has-pseudo: dist/cli.cjs - checksum: f97a2af8084bd9f37a0a3a4a2f70669a65cbb191c679d4bb9e45723d7d4a618edb94a66f279e63f4e6c29c69923ff48d24fe63da05b8803104437b41c9b4d0c7 + checksum: 62f2e611894dd593601b436e45d34182a17a6ee27ad3df3f926b86ceddc47a689a6f89eb42d244b39219ba527999891da5a837c3cdd9ec36475264faec2633e8 languageName: node linkType: hard -"css-prefers-color-scheme@npm:^6.0.3": - version: 6.0.3 - resolution: "css-prefers-color-scheme@npm:6.0.3" +"css-prefers-color-scheme@npm:^9.0.0": + version: 9.0.0 + resolution: "css-prefers-color-scheme@npm:9.0.0" peerDependencies: postcss: ^8.4 - bin: - css-prefers-color-scheme: dist/cli.cjs - checksum: 620b6ef8f402bd88aec5d83ae8b69cb4c707971c3601847133b62ee5ae9f95f9e10b570760e114a334cc6e4f8f4b02f133fa44a923c6c5d1d99b479d5d4d34a3 + checksum: 7f5f883bd91d18b8fd40f26d774a9a61c3a4a877f43f3530893760d9a2cb873088eb68f5da6d3463a72f60e75fdf4e8173fc39093ca52ad8f7578c6928727ffb languageName: node linkType: hard -"cssdb@npm:^7.1.0": - version: 7.2.0 - resolution: "cssdb@npm:7.2.0" - checksum: af33c8ec4cc46609040338370c7773421d7ea67364b7f69a004f89a9cee751419c75e60bc5cffb65274515e2e3cb11c8bf7670ca6db4c00031e24ecdbb826680 +"css-select@npm:^5.1.0": + version: 5.1.0 + resolution: "css-select@npm:5.1.0" + dependencies: + boolbase: "npm:^1.0.0" + css-what: "npm:^6.1.0" + domhandler: "npm:^5.0.2" + domutils: "npm:^3.0.1" + nth-check: "npm:^2.0.1" + checksum: e31e3d4e8c944c28cdd43612ad3be0da364c18c4de9f3730191b5f945c058e694855debf520d0b5c5220512932fc0e950bcd8cd006929a212026a90c8247e7bf + languageName: node + linkType: hard + +"css-tree@npm:^2.2.1, css-tree@npm:^2.3.1": + version: 2.3.1 + resolution: "css-tree@npm:2.3.1" + dependencies: + mdn-data: "npm:2.0.30" + source-map-js: "npm:^1.0.1" + checksum: fa6778d283c1d90e7a48f7e5976f18528c678435314532de000406cbae485eb93911418d8530cc7f30eae120b1d1e909265c6e9684c6da9abd0323289504d860 + languageName: node + linkType: hard + +"css-tree@npm:~2.2.0": + version: 2.2.1 + resolution: "css-tree@npm:2.2.1" + dependencies: + mdn-data: "npm:2.0.28" + source-map-js: "npm:^1.0.1" + checksum: 93a4ee644b58cd46d9a8f89ab30d31622a3473dc14b04871b98ca8461d836a78e6edd972cbe2952c2c05d547b22baf958a78c418d0462b877d133c2676006f72 + languageName: node + linkType: hard + +"css-what@npm:^6.1.0": + version: 6.1.0 + resolution: "css-what@npm:6.1.0" + checksum: 60dfd497e518f5d7ff78a5091ad21c610e2c58c3463ad3191ef7e22a51d01fc0c3401d8bac55f511f119d14c3dcf606f1e37f1590274003722055dee849e2302 + languageName: node + linkType: hard + +"cssdb@npm:^7.7.1": + version: 7.7.2 + resolution: "cssdb@npm:7.7.2" + checksum: 14ad77100318453037a20bee6839770b56fa413ab3f5715313401ba1ce1eac7c046e80ee88d194521687eb2b4fd06c6c57f9cec8a6713a50d8f8e9cf59d333bf languageName: node linkType: hard @@ -5915,13 +6597,22 @@ __metadata: languageName: node linkType: hard -"cypress@npm:^10.4.0": - version: 10.4.0 - resolution: "cypress@npm:10.4.0" +"csso@npm:5.0.5, csso@npm:^5.0.5": + version: 5.0.5 + resolution: "csso@npm:5.0.5" + dependencies: + css-tree: "npm:~2.2.0" + checksum: 0377a48614a0d8c6daff7b414892730a6f5cf6d15c7868e5e262751dc7b6be785fbc7e86c0d9a8ac2d2a03ad687f1b4b2040c3ec87c9b55733bca13c4b887f39 + languageName: node + linkType: hard + +"cypress@npm:^13.1.0": + version: 13.1.0 + resolution: "cypress@npm:13.1.0" dependencies: - "@cypress/request": "npm:^2.88.10" + "@cypress/request": "npm:^3.0.0" "@cypress/xvfb": "npm:^1.2.4" - "@types/node": "npm:^14.14.31" + "@types/node": "npm:^16.18.39" "@types/sinonjs__fake-timers": "npm:8.1.1" "@types/sizzle": "npm:^2.3.2" arch: "npm:^2.2.0" @@ -5933,12 +6624,12 @@ __metadata: check-more-types: "npm:^2.24.0" cli-cursor: "npm:^3.1.0" cli-table3: "npm:~0.6.1" - commander: "npm:^5.1.0" + commander: "npm:^6.2.1" common-tags: "npm:^1.8.0" dayjs: "npm:^1.10.4" - debug: "npm:^4.3.2" + debug: "npm:^4.3.4" enquirer: "npm:^2.3.6" - eventemitter2: "npm:^6.4.3" + eventemitter2: "npm:6.4.7" execa: "npm:4.1.0" executable: "npm:^4.1.1" extract-zip: "npm:2.0.1" @@ -5951,19 +6642,20 @@ __metadata: listr2: "npm:^3.8.3" lodash: "npm:^4.17.21" log-symbols: "npm:^4.0.0" - minimist: "npm:^1.2.6" + minimist: "npm:^1.2.8" ospath: "npm:^1.2.2" pretty-bytes: "npm:^5.6.0" + process: "npm:^0.11.10" proxy-from-env: "npm:1.0.0" request-progress: "npm:^3.0.0" - semver: "npm:^7.3.2" + semver: "npm:^7.5.3" supports-color: "npm:^8.1.1" tmp: "npm:~0.2.1" untildify: "npm:^4.0.0" yauzl: "npm:^2.10.0" bin: cypress: bin/cypress - checksum: e9b132aa0d2ff141ca97811701a98d942146a96d79a21558d96f3c585e68ab56801f828fc94713904352761d1b98815f58669d97ceb12982586e9e0b429fa698 + checksum: e92f6a2973a7e194c0b12a87d12a43e8f73bee6dcc0c7541223be422241aa27451f4d7327b435a1fa781d615d03de2691df9e4523ac76cef3ce3242ab0e529a8 languageName: node linkType: hard @@ -5977,6 +6669,13 @@ __metadata: languageName: node linkType: hard +"damerau-levenshtein@npm:^1.0.8": + version: 1.0.8 + resolution: "damerau-levenshtein@npm:1.0.8" + checksum: a405d7fbbd9316fdaecedd50c42d27ed2d669b687e62813d785316de9f9c171a5797de8efda92292f62364a0966edad2581fc0029a27457ce6ec7f3936ad0437 + languageName: node + linkType: hard + "dargs@npm:^7.0.0": version: 7.0.0 resolution: "dargs@npm:7.0.0" @@ -5994,13 +6693,13 @@ __metadata: linkType: hard "dayjs@npm:^1.10.4": - version: 1.11.3 - resolution: "dayjs@npm:1.11.3" - checksum: 1bccd0564aa902c6f7740b35faca6a70bfa9d9b0226c32cb3be95401907cc5b2e9e5dee1eb3ef902e24233c395e511f257c62561bf8970d15641586c042b5e7e + version: 1.11.8 + resolution: "dayjs@npm:1.11.8" + checksum: 2c7ef83e7ff1b41721bd478f157bbab93d31cbd9e832f4a75b3baf13306ac8aa199505ed083bcc922d19de4f6d2cc6d651bb0ee524fe9b301d50ba3ed8f8a0f7 languageName: node linkType: hard -"debug@npm:2.6.9, debug@npm:^2.2.0, debug@npm:^2.6.9": +"debug@npm:2, debug@npm:2.6.9, debug@npm:^2.2.0": version: 2.6.9 resolution: "debug@npm:2.6.9" dependencies: @@ -6009,19 +6708,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:4.3.2, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:~4.3.1, debug@npm:~4.3.2": - version: 4.3.2 - resolution: "debug@npm:4.3.2" - dependencies: - ms: "npm:2.1.2" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 329c3fd97ff1d4b7b8683c2d0d353300903e96747306075e1f5bd28a81be385f3ab6420938ce173bba55b7ed3b3499762295d531ff20c730224c5bd7127b105d - languageName: node - linkType: hard - -"debug@npm:4.3.4, debug@npm:^4.2.0, debug@npm:^4.3.4": +"debug@npm:4, debug@npm:4.3.4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:~4.3.1, debug@npm:~4.3.2": version: 4.3.4 resolution: "debug@npm:4.3.4" dependencies: @@ -6033,7 +6720,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:^3.1.0, debug@npm:^3.2.7": +"debug@npm:^3.1.0, debug@npm:^3.2.6, debug@npm:^3.2.7": version: 3.2.7 resolution: "debug@npm:3.2.7" dependencies: @@ -6043,61 +6730,130 @@ __metadata: linkType: hard "decamelize-keys@npm:^1.1.0": - version: 1.1.0 - resolution: "decamelize-keys@npm:1.1.0" + version: 1.1.1 + resolution: "decamelize-keys@npm:1.1.1" dependencies: decamelize: "npm:^1.1.0" map-obj: "npm:^1.0.0" - checksum: 20d7f2e96144b1aecea50ed0a9a91fbb6f7e97fd50972ad9214a1ba3b53fa44b1023ca54a9d3ef7583bc98958ee685b53b306ec1d93cd420300b71a42a90b8db + checksum: 418779f9192411684973fc02bba8a77375af0bed3fed87f2ae9e56d04b7598605e0892960251299419a36f01f2f0f909cfae9ebd6fb625907ef4253a77ead461 languageName: node linkType: hard -"decamelize@npm:^1.1.0, decamelize@npm:^1.2.0": +"decamelize@npm:^1.1.0": version: 1.2.0 resolution: "decamelize@npm:1.2.0" checksum: 78728512bf37e5c8d093bf375191b808d54bea424d3cf61730d4c00fe11f404bde37c02e5bd28da7d4981411a4c5369e67a72d92b038126ddf5e5fcc0d03b645 languageName: node linkType: hard +"decamelize@npm:^4.0.0": + version: 4.0.0 + resolution: "decamelize@npm:4.0.0" + checksum: 28596e0cf52fb5bcc71a48c6f60ef87a2403741ee863b8e197adadb9a565b3da9a91b95c8f0fd411f11a97e791b01e9cbe910bb6feb033fb96f2e65579aa1c53 + languageName: node + linkType: hard + +"decamelize@npm:^5.0.0": + version: 5.0.1 + resolution: "decamelize@npm:5.0.1" + checksum: 3ab0a369bdbfa50fb6706c266eb602fc5521c710b3aee658bed52d39c9963ebdad049302d6222ae53a28e25715cc389dc858223243f815d7d25aed4b23cae3bd + languageName: node + linkType: hard + +"decode-named-character-reference@npm:^1.0.0": + version: 1.0.2 + resolution: "decode-named-character-reference@npm:1.0.2" + dependencies: + character-entities: "npm:^2.0.0" + checksum: a42a6a12147a46fb2b0ee5b642089463d7d572116c40c2808829e63a13eb6b06875e3b84ffb2843c1be54fb785804f24007f2338754853fb8754ba24d5b97c89 + languageName: node + linkType: hard + +"decompress-response@npm:^6.0.0": + version: 6.0.0 + resolution: "decompress-response@npm:6.0.0" + dependencies: + mimic-response: "npm:^3.1.0" + checksum: b4575b109e38fe4bc10a8dc1a9167490da2efc07449bdc2ac9e3444592ee892e84fa89974448639388ad1f56f3a16e95606f3ab9d0c3dbdb84f1cbe432252b9f + languageName: node + linkType: hard + +"dedent@npm:^1.5.1": + version: 1.5.1 + resolution: "dedent@npm:1.5.1" + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + checksum: 3aa957abd3c4e8a18f73479e0effe1e2a19ec9a51988a42ebf384ef82de4242c8913e8a20aced1ee95a97a64e2ca4b349fb0edd30dac5680b325d574e8a28b42 + languageName: node + linkType: hard + +"deep-extend@npm:^0.6.0": + version: 0.6.0 + resolution: "deep-extend@npm:0.6.0" + checksum: 9320ad7378ceb509703180d40da1625393906f55beeb10b55d9a1d39dc77e6e56e76c09eef905320330f89738df2c40bdf0e85777d14d5d3a8059c3cabbf3919 + languageName: node + linkType: hard + "deep-is@npm:^0.1.3": - version: 0.1.3 - resolution: "deep-is@npm:0.1.3" - checksum: a2a1158fa4582c04e3f9d69872a715646d12e6d5dc6d98c845898c162dc4a7d7a60bde7fb06108316fb84b669b23d8c3d2c0b564bb0a1dc92ea8660ca2226c02 + version: 0.1.4 + resolution: "deep-is@npm:0.1.4" + checksum: dfee7fc148cb00508a2a4af815144cce85a86ec7a5f658525bf6929095baeef7782c166504a0dc3b18872a1f53e27521de3d308a575c6d8063516815fc553a59 + languageName: node + linkType: hard + +"deepmerge-ts@npm:5.1.0": + version: 5.1.0 + resolution: "deepmerge-ts@npm:5.1.0" + checksum: 80a548a1e6a9d22565accddd8cba31a55ee84958420a4ae2c9b0feb15a1f2c6be157a75d1b363a19d294383ffdde95a168f7e000ba575afe15d7ca572fcd0609 languageName: node linkType: hard "deepmerge@npm:^4.2.2": - version: 4.2.2 - resolution: "deepmerge@npm:4.2.2" - checksum: f37e1f5e8cfca71833a43a5d14ad1bf533689b1e5acff72eefa9bdd26f1a4fe80153e29238e8b3052e5f8c4169a95992456f3b60cd50a9db94a84680712a9aca + version: 4.3.1 + resolution: "deepmerge@npm:4.3.1" + checksum: 367ae28f98c94b2807dd6eba48f4c3d051742c2ab431f1037d60f5cb5af989aac2b170b6a891d5617679bcb95881b4e22a0616161a1f2154894b349b13d384e0 languageName: node linkType: hard -"default-gateway@npm:^6.0.3": - version: 6.0.3 - resolution: "default-gateway@npm:6.0.3" +"default-browser-id@npm:^3.0.0": + version: 3.0.0 + resolution: "default-browser-id@npm:3.0.0" dependencies: - execa: "npm:^5.0.0" - checksum: 9f2f6cf7252d19975efe967e7f33ee6312fe890a85e4dd497203c037f4a0cbbb915a9d26ee67e3a13ef05d9a81f27698244914ffc94ab88472916459eecd6629 + bplist-parser: "npm:^0.2.0" + untildify: "npm:^4.0.0" + checksum: 14d2d42e1da1f2a743d5fe55b2ece398cf87788c9805be8dc5406ba96a6032932ae0cefc1e961fc4597dfee0ccd433b90fc6b167908b1c3dfc83d0df726de5f2 languageName: node linkType: hard -"define-properties@npm:^1.1.3": - version: 1.1.3 - resolution: "define-properties@npm:1.1.3" +"default-browser@npm:^4.0.0": + version: 4.0.0 + resolution: "default-browser@npm:4.0.0" dependencies: - object-keys: "npm:^1.0.12" - checksum: 49eec63bfd91af1fd4e0a80c5a6df540b5e7a5c377bbb4140b19a3b3df0ec3bc0103b1370ea3a185d9fe95301f762215f6169c5765edc7d58af8821d47471cb7 + bundle-name: "npm:^3.0.0" + default-browser-id: "npm:^3.0.0" + execa: "npm:^7.1.1" + titleize: "npm:^3.0.0" + checksum: ac1138a297e95cfb18f89e3e69e0bbeb8a2d2ba90325f773bcb8b8211b525357f45f05a07dd6f5a40d3f44a0a1a423b58d356c17bb69b406a8c0c9afe869296c languageName: node linkType: hard -"define-properties@npm:^1.1.4": - version: 1.1.4 - resolution: "define-properties@npm:1.1.4" +"define-lazy-prop@npm:^3.0.0": + version: 3.0.0 + resolution: "define-lazy-prop@npm:3.0.0" + checksum: 73a8f71f62b22105218af994a6b5fae131ad3ec1adb3cee775b2fb5ca0575ae08ba4faddbf51fd976ca41ca5fac74b8100c390d1c12627badf23a87358233f0e + languageName: node + linkType: hard + +"define-properties@npm:^1.1.3, define-properties@npm:^1.1.4, define-properties@npm:^1.2.0": + version: 1.2.0 + resolution: "define-properties@npm:1.2.0" dependencies: has-property-descriptors: "npm:^1.0.0" object-keys: "npm:^1.1.1" - checksum: 94a6a24f787300c11c53b76e207e53908c86fd508f0dacf0bab49afff62b20439513e14318cebdb3223eef7a49d572eaf7f069a21af80e3ca3f898bbf22c9c8e + checksum: f7d87afb83055124b9c0d18d1abb349ca0741d3c5c38e79422447ac800cea5ee1d0ffbc01f121f059964fd0f17e4d80602ba5533427b9dec18df0fa6b9c91585 languageName: node linkType: hard @@ -6115,24 +6871,17 @@ __metadata: languageName: node linkType: hard -"denque@npm:^2.0.1": - version: 2.0.1 - resolution: "denque@npm:2.0.1" - checksum: 1bbb26cf2e55cb3ffe187c4851243a2e5e47e60c1037673c5c04ef931c26e30d9fead16a552d50cbd76351c0a1f064a92413a124ce8810b4408b48194402dc72 - languageName: node - linkType: hard - -"depd@npm:2.0.0": +"depd@npm:2.0.0, depd@npm:^2.0.0": version: 2.0.0 resolution: "depd@npm:2.0.0" checksum: 170e90bfa90081462303140623fdf938aeba2f066b1c7a9a1c599b257ea8127d36b9d39fad5a9d71f5282a3bb5a8ca287ce4d8c6cecd0f65e6bf3779cc6091be languageName: node linkType: hard -"depd@npm:^1.1.2": - version: 1.1.2 - resolution: "depd@npm:1.1.2" - checksum: e9fb93771e7cf3d88c4e38ca95742f7c58cae31928eb5e67a1a14d970325a02755451bb7fafc2db72333a5cf7fc14e07e4f8d709c0df70143355e77e8d090bac +"dequal@npm:^2.0.0, dequal@npm:^2.0.3": + version: 2.0.3 + resolution: "dequal@npm:2.0.3" + checksum: 7a633ec0ba78bc08ba217b762b15157d2ec99edb50a82124df2c341255b1943217215872888981cc6a6ee02406ab1b09783f5b51b7db8d8f8f1284092f379aad languageName: node linkType: hard @@ -6143,6 +6892,27 @@ __metadata: languageName: node linkType: hard +"detect-libc@npm:^2.0.0, detect-libc@npm:^2.0.1": + version: 2.0.1 + resolution: "detect-libc@npm:2.0.1" + checksum: 056a7941c5d60b4f40aa23b77f0bed29de4b3fe281f063812a67e4e6320a0efb1e4b811bf7b01e72b2b643ea009b14165e0b72588c08e1c8de2412945b4dcc6f + languageName: node + linkType: hard + +"devalue@npm:^4.3.2": + version: 4.3.2 + resolution: "devalue@npm:4.3.2" + checksum: b373a970d59366c9fa71fc4bd9020bcfc71d2b5b03fdc4514db33d77d1cb2b004d9b1658cf6e523037b763dbed3e98cde19ee4c6da88f2dbacbb408f8ca1b458 + languageName: node + linkType: hard + +"diff@npm:5.0.0": + version: 5.0.0 + resolution: "diff@npm:5.0.0" + checksum: 19f4cad11d6e9d702c34810934074bd2bed661a49200c41d4f2dc3b70c29e92ca2fa18ce1606c8e71db59a86d357ede3234c94e8e3a39b605bcd0df0b4209da9 + languageName: node + linkType: hard + "diff@npm:^4.0.1": version: 4.0.2 resolution: "diff@npm:4.0.2" @@ -6150,6 +6920,13 @@ __metadata: languageName: node linkType: hard +"diff@npm:^5.0.0, diff@npm:^5.1.0": + version: 5.1.0 + resolution: "diff@npm:5.1.0" + checksum: c241ce992c1b59de63637d5ea2c4ac36e5686a0c660830a2dea1c9963abbb83907bef6aebe2898a3e581483bf8b1073e806ad884bf8cafe2af4023fb8ecf0f58 + languageName: node + linkType: hard + "dir-glob@npm:^3.0.1": version: 3.0.1 resolution: "dir-glob@npm:3.0.1" @@ -6159,29 +6936,39 @@ __metadata: languageName: node linkType: hard -"discord-api-types@npm:^0.37.3": - version: 0.37.9 - resolution: "discord-api-types@npm:0.37.9" - checksum: c8ff4f6a76ba5b8fc3e5a56f84fba1e1db09bc5aff20f52e4758ddb613c99409607e7eb28c8ba92d22759fdcc405a1c9c0309f1302bc281096bd67a0f29bd9b9 +"discord-api-types@npm:0.37.50": + version: 0.37.50 + resolution: "discord-api-types@npm:0.37.50" + checksum: 9741b46efb843619f8e494abc63ad623042ec7d797264b5df11123ea5c1f0739ecf12962ca135fc6bac6fe939e91af1baee285007cbb5a72c9f7c1d7e628b6ed languageName: node linkType: hard -"discord.js@npm:^14.3.0": - version: 14.3.0 - resolution: "discord.js@npm:14.3.0" +"discord.js@npm:^14.13.0": + version: 14.13.0 + resolution: "discord.js@npm:14.13.0" dependencies: - "@discordjs/builders": "npm:^1.2.0" - "@discordjs/collection": "npm:^1.1.0" - "@discordjs/rest": "npm:^1.1.0" - "@sapphire/snowflake": "npm:^3.2.2" - "@types/ws": "npm:^8.5.3" - discord-api-types: "npm:^0.37.3" + "@discordjs/builders": "npm:^1.6.5" + "@discordjs/collection": "npm:^1.5.3" + "@discordjs/formatters": "npm:^0.3.2" + "@discordjs/rest": "npm:^2.0.1" + "@discordjs/util": "npm:^1.0.1" + "@discordjs/ws": "npm:^1.0.1" + "@sapphire/snowflake": "npm:^3.5.1" + "@types/ws": "npm:^8.5.5" + discord-api-types: "npm:0.37.50" fast-deep-equal: "npm:^3.1.3" lodash.snakecase: "npm:^4.1.1" - tslib: "npm:^2.4.0" - undici: "npm:^5.9.1" - ws: "npm:^8.8.1" - checksum: d80a163af06c757b39b0843b2f1c6d43a3c20da290694054e8b9baf73b9693789cfd7950d74aa20ddb9606028e0fd59685f58dd7a63581eacdc66d67b24cdf66 + tslib: "npm:^2.6.1" + undici: "npm:5.22.1" + ws: "npm:^8.13.0" + checksum: d8b3f52b76599de026b7625fbac970546ac5fad18cb880c7e3f5d8e22247c06ce9eb95f5aa20c8ada62d07f22b316f2c6ba06756739dc1e3acf96e9786f3b49e + languageName: node + linkType: hard + +"dlv@npm:^1.1.3": + version: 1.1.3 + resolution: "dlv@npm:1.1.3" + checksum: ace70970f580feb583646b4545af4875e7062b88e080035b905390276232f570a6baf417bf88ee83ff808de0d83974132d31326a838c6c07ec848108cfc7edbd languageName: node linkType: hard @@ -6203,6 +6990,44 @@ __metadata: languageName: node linkType: hard +"dom-serializer@npm:^2.0.0": + version: 2.0.0 + resolution: "dom-serializer@npm:2.0.0" + dependencies: + domelementtype: "npm:^2.3.0" + domhandler: "npm:^5.0.2" + entities: "npm:^4.2.0" + checksum: b929ade46bd5abc898c48fa07964bb6455e1794b410ca523060b3c3159d3afdb0f4f808c09474364fcc8747019854cd12ab0befdd1344158475ff63b2319fdd9 + languageName: node + linkType: hard + +"domelementtype@npm:^2.3.0": + version: 2.3.0 + resolution: "domelementtype@npm:2.3.0" + checksum: 07afcb90734e39b324e19271effc13389bb27a3957fa68a99b19d0ffdc0338fe669e9170a876f0fc4948bedd28b1f937042ada4948bee54e01a833c37a54dd74 + languageName: node + linkType: hard + +"domhandler@npm:^5.0.2, domhandler@npm:^5.0.3": + version: 5.0.3 + resolution: "domhandler@npm:5.0.3" + dependencies: + domelementtype: "npm:^2.3.0" + checksum: c5242d9dcf9a91ebfb53869f1be972c52d332119d90351cd8cefabf55848021a4329ae5a77cdeab7565e338031c9c163d7a43009527cfa634e1cd0873eb8ae74 + languageName: node + linkType: hard + +"domutils@npm:^3.0.1": + version: 3.1.0 + resolution: "domutils@npm:3.1.0" + dependencies: + dom-serializer: "npm:^2.0.0" + domelementtype: "npm:^2.3.0" + domhandler: "npm:^5.0.3" + checksum: 5f57a3121ac2467d4d88e477f97efaa601dc0370cf62e043a544b8e63ddde3eb83c804094b8ca9ae1dcfc6a2b96efb00deb3e2d8af4f1f21f9ccea962fd120fb + languageName: node + linkType: hard + "dot-case@npm:^3.0.4": version: 3.0.4 resolution: "dot-case@npm:3.0.4" @@ -6246,6 +7071,13 @@ __metadata: languageName: node linkType: hard +"dotenv@npm:^16.3.1": + version: 16.3.1 + resolution: "dotenv@npm:16.3.1" + checksum: 10accb903da092a279d5a952c54290c0980c1c3ab0767b0dbc3013526593ebc98944e26352c9bef1d0fe93589a7c78e4810daae1bd53c7432c69997b17de0b3d + languageName: node + linkType: hard + "dotenv@npm:^8.2.0": version: 8.6.0 resolution: "dotenv@npm:8.6.0" @@ -6253,6 +7085,13 @@ __metadata: languageName: node linkType: hard +"dset@npm:^3.1.2": + version: 3.1.2 + resolution: "dset@npm:3.1.2" + checksum: f81e27f95bed3e766e7521ee45d908bc235632dbfeab62eba9f185eb27d5610b4e6873605b04d39fd9bcbd5625d3064b3e2aa2b8470a19af46343abb535010c5 + languageName: node + linkType: hard + "duplexer@npm:~0.1.1": version: 0.1.2 resolution: "duplexer@npm:0.1.2" @@ -6285,34 +7124,44 @@ __metadata: linkType: hard "ejs@npm:^3.1.6": - version: 3.1.8 - resolution: "ejs@npm:3.1.8" + version: 3.1.9 + resolution: "ejs@npm:3.1.9" dependencies: jake: "npm:^10.8.5" bin: ejs: bin/cli.js - checksum: 0135c63a1e0745cbbad1a44f64674535f46821b58a30f55b14f25812cdd8dc3036b70bdbb6fe79f8d7c438fb10ede54adcd2ac3f5a88a4734d0dee48b91e614f + checksum: c970131c2c9831dc260d2420055c1e69500a75a460301cf3cac3bab8ff19cb15de2fcc2c695051420b123cd9f8c20c2a18154916d3494b4870ea68a0d677ac12 + languageName: node + linkType: hard + +"electron-to-chromium@npm:^1.4.431": + version: 1.4.435 + resolution: "electron-to-chromium@npm:1.4.435" + checksum: 780988daaa3a4921fc57355ab089559b9b4ebc9f89fffddda057c6f58e324a5f5cb047b260d718675290aca2ac6417c9c3db177f3130f5b31ff58fd0da2833aa languageName: node linkType: hard -"electron-to-chromium@npm:^1.3.723": - version: 1.3.759 - resolution: "electron-to-chromium@npm:1.3.759" - checksum: f957587e5435483b360c97f1719e41c13d8ab1e660b5444bd4a1ad8f2949183698875b4c05e15520ef9fcab7d87dbca4d6a56ad777e3396aa82f0b6730d768fd +"electron-to-chromium@npm:^1.4.477": + version: 1.4.513 + resolution: "electron-to-chromium@npm:1.4.513" + checksum: 7b3a9d1de9051f78e9c41e8ae5cb749d4f7da7f07e5f805547a5a3a56553caf3d84028515292c31335446012565a7e562e9f7fa7ad3cf806bd44b3d523aa79c6 languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.251": - version: 1.4.284 - resolution: "electron-to-chromium@npm:1.4.284" - checksum: 39dac53e9df6e661495a795acc318fbd2780eb685d0b1383ab4047d69cebc7b77ad2adfa3d45106c5e58f915f707701d0b4f6847a94ef96e7f42793df9020433 +"emmet@npm:^2.4.3": + version: 2.4.6 + resolution: "emmet@npm:2.4.6" + dependencies: + "@emmetio/abbreviation": "npm:^2.3.3" + "@emmetio/css-abbreviation": "npm:^2.1.8" + checksum: 044169ff547ad90101b247278540088853f9604d29081f6875579e7c9bf8ece9da2d49510b5ebc3e1e50b6535f451a9520938411432785dc47a8711a5742d473 languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.284": - version: 1.4.286 - resolution: "electron-to-chromium@npm:1.4.286" - checksum: cb4743db6932e9b9caa8694f517033dfbd614741cf093f41985d972f896fc95826c54633ebf92228fe1761332e3b2609a3a39bb7f7e6872cd0bb7fb6b5182160 +"emoji-regex@npm:^10.2.1": + version: 10.2.1 + resolution: "emoji-regex@npm:10.2.1" + checksum: b0f7e8e8f4800f78c67e43b273f2e98bc68a438e226028921287053d7b566177eeb802c02d46cc67958b90314308c9c03d16f6957786c71d96e2f622f111ebdf languageName: node linkType: hard @@ -6337,7 +7186,7 @@ __metadata: languageName: node linkType: hard -"encoding@npm:^0.1.12": +"encoding@npm:^0.1.13": version: 0.1.13 resolution: "encoding@npm:0.1.13" dependencies: @@ -6346,7 +7195,7 @@ __metadata: languageName: node linkType: hard -"end-of-stream@npm:^1.1.0": +"end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1": version: 1.4.4 resolution: "end-of-stream@npm:1.4.4" dependencies: @@ -6355,25 +7204,23 @@ __metadata: languageName: node linkType: hard -"engine.io-client@npm:~6.2.3": - version: 6.2.3 - resolution: "engine.io-client@npm:6.2.3" +"engine.io-client@npm:~6.5.2": + version: 6.5.2 + resolution: "engine.io-client@npm:6.5.2" dependencies: "@socket.io/component-emitter": "npm:~3.1.0" debug: "npm:~4.3.1" - engine.io-parser: "npm:~5.0.3" - ws: "npm:~8.2.3" + engine.io-parser: "npm:~5.2.1" + ws: "npm:~8.11.0" xmlhttprequest-ssl: "npm:~2.0.0" - checksum: ff253f320a3d347e9f13d5726fa464db1842bdd3b9c254a24e567ce08a2101b4cb6173251ee7424a40a06665b261d200f408812715f836f2b47ac6bd3375f925 + checksum: 51dffa1747deaeaf6ee078b897b703547b3a9dec1d6fbc4d196f5b8b8a465225ef66c36577bf743968bbbda5721f6828102b945673ec395d5d36b09b9772ce57 languageName: node linkType: hard -"engine.io-parser@npm:~5.0.3": - version: 5.0.3 - resolution: "engine.io-parser@npm:5.0.3" - dependencies: - "@socket.io/base64-arraybuffer": "npm:~1.0.2" - checksum: 61eeb9af98da98433ba28c08075fcb694d8a0836658102457aed530295c96299a0a624a83770c0e6af9039d072f08b5de4cc242e40fc33064e09dab048b7db62 +"engine.io-parser@npm:~5.2.1": + version: 5.2.1 + resolution: "engine.io-parser@npm:5.2.1" + checksum: 6fad30a55f34950d674b907b233c7e73143d45b8e232ce73966e2d63f84ce04124024b9a9c3c5807472350882d458994eb2aa164b26ed21babc03c40e442c123 languageName: node linkType: hard @@ -6386,6 +7233,13 @@ __metadata: languageName: node linkType: hard +"entities@npm:^4.2.0, entities@npm:^4.4.0": + version: 4.5.0 + resolution: "entities@npm:4.5.0" + checksum: 3c45485495e0a5481893b0b618aec46fbe960130bf0437b052ec08c25a8c781b978a06fca889ad7af79634d9111df159c2a37b56d2b2a847c0c4625cd40ab1be + languageName: node + linkType: hard + "env-paths@npm:^2.2.0": version: 2.2.1 resolution: "env-paths@npm:2.2.1" @@ -6409,64 +7263,119 @@ __metadata: languageName: node linkType: hard +"error-stack-parser@npm:^2.1.4": + version: 2.1.4 + resolution: "error-stack-parser@npm:2.1.4" + dependencies: + stackframe: "npm:^1.3.4" + checksum: 032589b1e0d40cd3093d22d8b4f267b017725e1e9593bd50f5a223ffcb7958575da6d8d04657d0ac04b64f4d8f7199e0907b43059fa118b5c451aae6007e0959 + languageName: node + linkType: hard + "es-abstract@npm:^1.19.0, es-abstract@npm:^1.20.4": - version: 1.20.5 - resolution: "es-abstract@npm:1.20.5" + version: 1.21.2 + resolution: "es-abstract@npm:1.21.2" dependencies: + array-buffer-byte-length: "npm:^1.0.0" + available-typed-arrays: "npm:^1.0.5" call-bind: "npm:^1.0.2" + es-set-tostringtag: "npm:^2.0.1" es-to-primitive: "npm:^1.2.1" - function-bind: "npm:^1.1.1" function.prototype.name: "npm:^1.1.5" - get-intrinsic: "npm:^1.1.3" + get-intrinsic: "npm:^1.2.0" get-symbol-description: "npm:^1.0.0" + globalthis: "npm:^1.0.3" gopd: "npm:^1.0.1" has: "npm:^1.0.3" has-property-descriptors: "npm:^1.0.0" + has-proto: "npm:^1.0.1" has-symbols: "npm:^1.0.3" - internal-slot: "npm:^1.0.3" + internal-slot: "npm:^1.0.5" + is-array-buffer: "npm:^3.0.2" is-callable: "npm:^1.2.7" is-negative-zero: "npm:^2.0.2" is-regex: "npm:^1.1.4" is-shared-array-buffer: "npm:^1.0.2" is-string: "npm:^1.0.7" + is-typed-array: "npm:^1.1.10" is-weakref: "npm:^1.0.2" - object-inspect: "npm:^1.12.2" + object-inspect: "npm:^1.12.3" object-keys: "npm:^1.1.1" object.assign: "npm:^4.1.4" regexp.prototype.flags: "npm:^1.4.3" safe-regex-test: "npm:^1.0.0" + string.prototype.trim: "npm:^1.2.7" string.prototype.trimend: "npm:^1.0.6" string.prototype.trimstart: "npm:^1.0.6" + typed-array-length: "npm:^1.0.4" unbox-primitive: "npm:^1.0.2" - checksum: f3c8503dbbd916281c207ab47bba41b8be0bc4fad0c3efe1d2450bd53e363d6f7cff96a2b37f22328ffe7d708601830836db05336d40d847dbb90fca6348e981 + which-typed-array: "npm:^1.1.9" + checksum: 63800c131f77145c020be1a4340031f8322f03c6c73cd1336d5893cab09bce257f6c217e60a60188539096f72bc1f4885f474e8bbae8fa949edc8679f905dfd2 languageName: node linkType: hard -"es-abstract@npm:^1.19.1": - version: 1.19.1 - resolution: "es-abstract@npm:1.19.1" +"es-abstract@npm:^1.22.1": + version: 1.22.1 + resolution: "es-abstract@npm:1.22.1" dependencies: + array-buffer-byte-length: "npm:^1.0.0" + arraybuffer.prototype.slice: "npm:^1.0.1" + available-typed-arrays: "npm:^1.0.5" call-bind: "npm:^1.0.2" + es-set-tostringtag: "npm:^2.0.1" es-to-primitive: "npm:^1.2.1" - function-bind: "npm:^1.1.1" - get-intrinsic: "npm:^1.1.1" + function.prototype.name: "npm:^1.1.5" + get-intrinsic: "npm:^1.2.1" get-symbol-description: "npm:^1.0.0" + globalthis: "npm:^1.0.3" + gopd: "npm:^1.0.1" has: "npm:^1.0.3" - has-symbols: "npm:^1.0.2" - internal-slot: "npm:^1.0.3" - is-callable: "npm:^1.2.4" - is-negative-zero: "npm:^2.0.1" + has-property-descriptors: "npm:^1.0.0" + has-proto: "npm:^1.0.1" + has-symbols: "npm:^1.0.3" + internal-slot: "npm:^1.0.5" + is-array-buffer: "npm:^3.0.2" + is-callable: "npm:^1.2.7" + is-negative-zero: "npm:^2.0.2" is-regex: "npm:^1.1.4" - is-shared-array-buffer: "npm:^1.0.1" + is-shared-array-buffer: "npm:^1.0.2" is-string: "npm:^1.0.7" - is-weakref: "npm:^1.0.1" - object-inspect: "npm:^1.11.0" + is-typed-array: "npm:^1.1.10" + is-weakref: "npm:^1.0.2" + object-inspect: "npm:^1.12.3" object-keys: "npm:^1.1.1" - object.assign: "npm:^4.1.2" - string.prototype.trimend: "npm:^1.0.4" - string.prototype.trimstart: "npm:^1.0.4" - unbox-primitive: "npm:^1.0.1" - checksum: 43b883ef7ec2a927800dc129cf6b27f39fa5d2aed252b2d6d85c6874546b066a910aa7ab8a71192b277be56971cdcad416ad67aca683e540b548c833187293a0 + object.assign: "npm:^4.1.4" + regexp.prototype.flags: "npm:^1.5.0" + safe-array-concat: "npm:^1.0.0" + safe-regex-test: "npm:^1.0.0" + string.prototype.trim: "npm:^1.2.7" + string.prototype.trimend: "npm:^1.0.6" + string.prototype.trimstart: "npm:^1.0.6" + typed-array-buffer: "npm:^1.0.0" + typed-array-byte-length: "npm:^1.0.0" + typed-array-byte-offset: "npm:^1.0.0" + typed-array-length: "npm:^1.0.4" + unbox-primitive: "npm:^1.0.2" + which-typed-array: "npm:^1.1.10" + checksum: f6056b2eef90192ba0506118ca24a7acab6b1fd25614ea9392a9f55f8626788a8225d5884f5fa09177023f888496fed7322ad840e47d9eae4d0653d74181344d + languageName: node + linkType: hard + +"es-module-lexer@npm:^1.3.0": + version: 1.3.0 + resolution: "es-module-lexer@npm:1.3.0" + checksum: 2d9e1d6e04b7cecc4adcf5af4b54794c1f40cf8b79eb737cfca6e14d7214172eb9c608d62c4021d8957f340dc201290945618a203ebc945cae6b9a2ac2d94fb3 + languageName: node + linkType: hard + +"es-set-tostringtag@npm:^2.0.1": + version: 2.0.1 + resolution: "es-set-tostringtag@npm:2.0.1" + dependencies: + get-intrinsic: "npm:^1.1.3" + has: "npm:^1.0.3" + has-tostringtag: "npm:^1.0.0" + checksum: fecdbc1f62b901b58b33d47e2daa6b43105b33dd233792643dc7aa1d7256d2fa13c47816d1e03e121e948d01d009faa366466e436baefb886afa18720945d439 languageName: node linkType: hard @@ -6522,180 +7431,171 @@ __metadata: languageName: node linkType: hard -"esbuild-android-64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-android-64@npm:0.14.53" +"esbuild-android-64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-android-64@npm:0.14.54" conditions: os=android & cpu=x64 languageName: node linkType: hard -"esbuild-android-arm64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-android-arm64@npm:0.14.53" +"esbuild-android-arm64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-android-arm64@npm:0.14.54" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"esbuild-darwin-64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-darwin-64@npm:0.14.53" +"esbuild-darwin-64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-darwin-64@npm:0.14.54" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"esbuild-darwin-arm64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-darwin-arm64@npm:0.14.53" +"esbuild-darwin-arm64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-darwin-arm64@npm:0.14.54" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"esbuild-freebsd-64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-freebsd-64@npm:0.14.53" +"esbuild-freebsd-64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-freebsd-64@npm:0.14.54" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"esbuild-freebsd-arm64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-freebsd-arm64@npm:0.14.53" +"esbuild-freebsd-arm64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-freebsd-arm64@npm:0.14.54" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"esbuild-linux-32@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-linux-32@npm:0.14.53" +"esbuild-linux-32@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-linux-32@npm:0.14.54" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"esbuild-linux-64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-linux-64@npm:0.14.53" +"esbuild-linux-64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-linux-64@npm:0.14.54" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"esbuild-linux-arm64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-linux-arm64@npm:0.14.53" +"esbuild-linux-arm64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-linux-arm64@npm:0.14.54" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"esbuild-linux-arm@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-linux-arm@npm:0.14.53" +"esbuild-linux-arm@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-linux-arm@npm:0.14.54" conditions: os=linux & cpu=arm languageName: node linkType: hard -"esbuild-linux-mips64le@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-linux-mips64le@npm:0.14.53" +"esbuild-linux-mips64le@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-linux-mips64le@npm:0.14.54" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"esbuild-linux-ppc64le@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-linux-ppc64le@npm:0.14.53" +"esbuild-linux-ppc64le@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-linux-ppc64le@npm:0.14.54" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"esbuild-linux-riscv64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-linux-riscv64@npm:0.14.53" +"esbuild-linux-riscv64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-linux-riscv64@npm:0.14.54" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"esbuild-linux-s390x@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-linux-s390x@npm:0.14.53" +"esbuild-linux-s390x@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-linux-s390x@npm:0.14.54" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"esbuild-netbsd-64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-netbsd-64@npm:0.14.53" +"esbuild-netbsd-64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-netbsd-64@npm:0.14.54" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"esbuild-openbsd-64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-openbsd-64@npm:0.14.53" +"esbuild-openbsd-64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-openbsd-64@npm:0.14.54" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"esbuild-sunos-64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-sunos-64@npm:0.14.53" +"esbuild-sunos-64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-sunos-64@npm:0.14.54" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"esbuild-windows-32@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-windows-32@npm:0.14.53" +"esbuild-windows-32@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-windows-32@npm:0.14.54" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"esbuild-windows-64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-windows-64@npm:0.14.53" +"esbuild-windows-64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-windows-64@npm:0.14.54" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"esbuild-windows-arm64@npm:0.14.53": - version: 0.14.53 - resolution: "esbuild-windows-arm64@npm:0.14.53" +"esbuild-windows-arm64@npm:0.14.54": + version: 0.14.54 + resolution: "esbuild-windows-arm64@npm:0.14.54" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"esbuild@npm:^0.11.12": - version: 0.11.23 - resolution: "esbuild@npm:0.11.23" - bin: - esbuild: bin/esbuild - checksum: db0fffbbddbf4f28c530d99fdae8e5e51c9996b5e3a7aeb1fa70aca23f77026c2d7dd61c35a58068bfaaeeac3197819cd46bd317fdafeff5b8fb57a6bb740f4c - languageName: node - linkType: hard - -"esbuild@npm:^0.14.53": - version: 0.14.53 - resolution: "esbuild@npm:0.14.53" - dependencies: - "@esbuild/linux-loong64": "npm:0.14.53" - esbuild-android-64: "npm:0.14.53" - esbuild-android-arm64: "npm:0.14.53" - esbuild-darwin-64: "npm:0.14.53" - esbuild-darwin-arm64: "npm:0.14.53" - esbuild-freebsd-64: "npm:0.14.53" - esbuild-freebsd-arm64: "npm:0.14.53" - esbuild-linux-32: "npm:0.14.53" - esbuild-linux-64: "npm:0.14.53" - esbuild-linux-arm: "npm:0.14.53" - esbuild-linux-arm64: "npm:0.14.53" - esbuild-linux-mips64le: "npm:0.14.53" - esbuild-linux-ppc64le: "npm:0.14.53" - esbuild-linux-riscv64: "npm:0.14.53" - esbuild-linux-s390x: "npm:0.14.53" - esbuild-netbsd-64: "npm:0.14.53" - esbuild-openbsd-64: "npm:0.14.53" - esbuild-sunos-64: "npm:0.14.53" - esbuild-windows-32: "npm:0.14.53" - esbuild-windows-64: "npm:0.14.53" - esbuild-windows-arm64: "npm:0.14.53" +"esbuild@npm:^0.14.23": + version: 0.14.54 + resolution: "esbuild@npm:0.14.54" + dependencies: + "@esbuild/linux-loong64": "npm:0.14.54" + esbuild-android-64: "npm:0.14.54" + esbuild-android-arm64: "npm:0.14.54" + esbuild-darwin-64: "npm:0.14.54" + esbuild-darwin-arm64: "npm:0.14.54" + esbuild-freebsd-64: "npm:0.14.54" + esbuild-freebsd-arm64: "npm:0.14.54" + esbuild-linux-32: "npm:0.14.54" + esbuild-linux-64: "npm:0.14.54" + esbuild-linux-arm: "npm:0.14.54" + esbuild-linux-arm64: "npm:0.14.54" + esbuild-linux-mips64le: "npm:0.14.54" + esbuild-linux-ppc64le: "npm:0.14.54" + esbuild-linux-riscv64: "npm:0.14.54" + esbuild-linux-s390x: "npm:0.14.54" + esbuild-netbsd-64: "npm:0.14.54" + esbuild-openbsd-64: "npm:0.14.54" + esbuild-sunos-64: "npm:0.14.54" + esbuild-windows-32: "npm:0.14.54" + esbuild-windows-64: "npm:0.14.54" + esbuild-windows-arm64: "npm:0.14.54" dependenciesMeta: "@esbuild/linux-loong64": optional: true @@ -6741,36 +7641,36 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 6ce34a87e97e063fad05e21ec452c4c7e2d09ff4e0333c65f79311476890aeffc79609d9d3ac20b0a938915ccd0558969435477df7e875e652f1c78a7b926019 - languageName: node - linkType: hard - -"esbuild@npm:^0.16.14": - version: 0.16.17 - resolution: "esbuild@npm:0.16.17" - dependencies: - "@esbuild/android-arm": "npm:0.16.17" - "@esbuild/android-arm64": "npm:0.16.17" - "@esbuild/android-x64": "npm:0.16.17" - "@esbuild/darwin-arm64": "npm:0.16.17" - "@esbuild/darwin-x64": "npm:0.16.17" - "@esbuild/freebsd-arm64": "npm:0.16.17" - "@esbuild/freebsd-x64": "npm:0.16.17" - "@esbuild/linux-arm": "npm:0.16.17" - "@esbuild/linux-arm64": "npm:0.16.17" - "@esbuild/linux-ia32": "npm:0.16.17" - "@esbuild/linux-loong64": "npm:0.16.17" - "@esbuild/linux-mips64el": "npm:0.16.17" - "@esbuild/linux-ppc64": "npm:0.16.17" - "@esbuild/linux-riscv64": "npm:0.16.17" - "@esbuild/linux-s390x": "npm:0.16.17" - "@esbuild/linux-x64": "npm:0.16.17" - "@esbuild/netbsd-x64": "npm:0.16.17" - "@esbuild/openbsd-x64": "npm:0.16.17" - "@esbuild/sunos-x64": "npm:0.16.17" - "@esbuild/win32-arm64": "npm:0.16.17" - "@esbuild/win32-ia32": "npm:0.16.17" - "@esbuild/win32-x64": "npm:0.16.17" + checksum: 171e455b026dbf41d4fb3681020de2f99500274f56c3f6c30873de13c26e3db4ff434bab69f5e3ba6ea24fdd84ad647c7d3a89b08dabe83c960363a85451c7c9 + languageName: node + linkType: hard + +"esbuild@npm:^0.18.10, esbuild@npm:~0.18.20": + version: 0.18.20 + resolution: "esbuild@npm:0.18.20" + dependencies: + "@esbuild/android-arm": "npm:0.18.20" + "@esbuild/android-arm64": "npm:0.18.20" + "@esbuild/android-x64": "npm:0.18.20" + "@esbuild/darwin-arm64": "npm:0.18.20" + "@esbuild/darwin-x64": "npm:0.18.20" + "@esbuild/freebsd-arm64": "npm:0.18.20" + "@esbuild/freebsd-x64": "npm:0.18.20" + "@esbuild/linux-arm": "npm:0.18.20" + "@esbuild/linux-arm64": "npm:0.18.20" + "@esbuild/linux-ia32": "npm:0.18.20" + "@esbuild/linux-loong64": "npm:0.18.20" + "@esbuild/linux-mips64el": "npm:0.18.20" + "@esbuild/linux-ppc64": "npm:0.18.20" + "@esbuild/linux-riscv64": "npm:0.18.20" + "@esbuild/linux-s390x": "npm:0.18.20" + "@esbuild/linux-x64": "npm:0.18.20" + "@esbuild/netbsd-x64": "npm:0.18.20" + "@esbuild/openbsd-x64": "npm:0.18.20" + "@esbuild/sunos-x64": "npm:0.18.20" + "@esbuild/win32-arm64": "npm:0.18.20" + "@esbuild/win32-ia32": "npm:0.18.20" + "@esbuild/win32-x64": "npm:0.18.20" dependenciesMeta: "@esbuild/android-arm": optional: true @@ -6818,36 +7718,36 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: a5fdcf450570aa4486216ac219789f381c1ba52f658e637e7fdce1daa3595f2c67050bdde622cb2c2cd3b2ee885192db163fcbb3d3e84891f5dca40369d093d4 - languageName: node - linkType: hard - -"esbuild@npm:~0.17.6": - version: 0.17.12 - resolution: "esbuild@npm:0.17.12" - dependencies: - "@esbuild/android-arm": "npm:0.17.12" - "@esbuild/android-arm64": "npm:0.17.12" - "@esbuild/android-x64": "npm:0.17.12" - "@esbuild/darwin-arm64": "npm:0.17.12" - "@esbuild/darwin-x64": "npm:0.17.12" - "@esbuild/freebsd-arm64": "npm:0.17.12" - "@esbuild/freebsd-x64": "npm:0.17.12" - "@esbuild/linux-arm": "npm:0.17.12" - "@esbuild/linux-arm64": "npm:0.17.12" - "@esbuild/linux-ia32": "npm:0.17.12" - "@esbuild/linux-loong64": "npm:0.17.12" - "@esbuild/linux-mips64el": "npm:0.17.12" - "@esbuild/linux-ppc64": "npm:0.17.12" - "@esbuild/linux-riscv64": "npm:0.17.12" - "@esbuild/linux-s390x": "npm:0.17.12" - "@esbuild/linux-x64": "npm:0.17.12" - "@esbuild/netbsd-x64": "npm:0.17.12" - "@esbuild/openbsd-x64": "npm:0.17.12" - "@esbuild/sunos-x64": "npm:0.17.12" - "@esbuild/win32-arm64": "npm:0.17.12" - "@esbuild/win32-ia32": "npm:0.17.12" - "@esbuild/win32-x64": "npm:0.17.12" + checksum: e8ff43647209dd6f29bbdbfbeed578f8a20763c2e5714e53d01afcf3a12bc097b03a8eb14f5f4e26965b8336e6f349978e3fa7778abc5bd2dac45544a36ca739 + languageName: node + linkType: hard + +"esbuild@npm:^0.19.0, esbuild@npm:^0.19.2": + version: 0.19.2 + resolution: "esbuild@npm:0.19.2" + dependencies: + "@esbuild/android-arm": "npm:0.19.2" + "@esbuild/android-arm64": "npm:0.19.2" + "@esbuild/android-x64": "npm:0.19.2" + "@esbuild/darwin-arm64": "npm:0.19.2" + "@esbuild/darwin-x64": "npm:0.19.2" + "@esbuild/freebsd-arm64": "npm:0.19.2" + "@esbuild/freebsd-x64": "npm:0.19.2" + "@esbuild/linux-arm": "npm:0.19.2" + "@esbuild/linux-arm64": "npm:0.19.2" + "@esbuild/linux-ia32": "npm:0.19.2" + "@esbuild/linux-loong64": "npm:0.19.2" + "@esbuild/linux-mips64el": "npm:0.19.2" + "@esbuild/linux-ppc64": "npm:0.19.2" + "@esbuild/linux-riscv64": "npm:0.19.2" + "@esbuild/linux-s390x": "npm:0.19.2" + "@esbuild/linux-x64": "npm:0.19.2" + "@esbuild/netbsd-x64": "npm:0.19.2" + "@esbuild/openbsd-x64": "npm:0.19.2" + "@esbuild/sunos-x64": "npm:0.19.2" + "@esbuild/win32-arm64": "npm:0.19.2" + "@esbuild/win32-ia32": "npm:0.19.2" + "@esbuild/win32-x64": "npm:0.19.2" dependenciesMeta: "@esbuild/android-arm": optional: true @@ -6895,22 +7795,106 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 5c8cfd55c7c8eaf91f4d7ecb594670b780d2c64f0b7c0ea41ad3271f14ef4b03e7c0456c529e52e9df6a3fe1ecd2bf61b2f177d43fcee5e0b4dac048ca672b2c - languageName: node - linkType: hard - -"escalade@npm:^3.1.1": - version: 3.1.1 - resolution: "escalade@npm:3.1.1" - checksum: 37f3535f99193a5ff755af30866bb55828aff044bdc14e1844d0965470ba87ef686761fbbf2cea02955f1bb8510f72c3308e7dbe2d794fa85058a33bf60ea372 + checksum: b9b632464f2fc24254729d2c3ea3262851296c3ac7cace3416d0c969bf8b64fc0dcef14b25025002334488e1e91ef1939fdf2b92eb9834627810a6d4a3385760 languageName: node linkType: hard -"escape-html@npm:~1.0.3": - version: 1.0.3 - resolution: "escape-html@npm:1.0.3" - checksum: c2c0e204bdee0452b5481e18e659d8f0ef909b774cd8140724e53df3254e75c04e8ff30298f658ca0310191f46de5bbb94459fc55103eb978eb6ffaaf499bbd1 - languageName: node +"esbuild@npm:~0.17.6": + version: 0.17.19 + resolution: "esbuild@npm:0.17.19" + dependencies: + "@esbuild/android-arm": "npm:0.17.19" + "@esbuild/android-arm64": "npm:0.17.19" + "@esbuild/android-x64": "npm:0.17.19" + "@esbuild/darwin-arm64": "npm:0.17.19" + "@esbuild/darwin-x64": "npm:0.17.19" + "@esbuild/freebsd-arm64": "npm:0.17.19" + "@esbuild/freebsd-x64": "npm:0.17.19" + "@esbuild/linux-arm": "npm:0.17.19" + "@esbuild/linux-arm64": "npm:0.17.19" + "@esbuild/linux-ia32": "npm:0.17.19" + "@esbuild/linux-loong64": "npm:0.17.19" + "@esbuild/linux-mips64el": "npm:0.17.19" + "@esbuild/linux-ppc64": "npm:0.17.19" + "@esbuild/linux-riscv64": "npm:0.17.19" + "@esbuild/linux-s390x": "npm:0.17.19" + "@esbuild/linux-x64": "npm:0.17.19" + "@esbuild/netbsd-x64": "npm:0.17.19" + "@esbuild/openbsd-x64": "npm:0.17.19" + "@esbuild/sunos-x64": "npm:0.17.19" + "@esbuild/win32-arm64": "npm:0.17.19" + "@esbuild/win32-ia32": "npm:0.17.19" + "@esbuild/win32-x64": "npm:0.17.19" + dependenciesMeta: + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: 6df07a802006da7bcf3135f3014fb9f45f0f8772dc76315a4cc021e616e426cf04ed247635c5beed62d66f9aafd1db28d7b01664339fa438aacc2092723980a8 + languageName: node + linkType: hard + +"escalade@npm:^3.1.1": + version: 3.1.1 + resolution: "escalade@npm:3.1.1" + checksum: 37f3535f99193a5ff755af30866bb55828aff044bdc14e1844d0965470ba87ef686761fbbf2cea02955f1bb8510f72c3308e7dbe2d794fa85058a33bf60ea372 + languageName: node + linkType: hard + +"escape-html@npm:~1.0.3": + version: 1.0.3 + resolution: "escape-html@npm:1.0.3" + checksum: c2c0e204bdee0452b5481e18e659d8f0ef909b774cd8140724e53df3254e75c04e8ff30298f658ca0310191f46de5bbb94459fc55103eb978eb6ffaaf499bbd1 + languageName: node + linkType: hard + +"escape-string-regexp@npm:4.0.0, escape-string-regexp@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-string-regexp@npm:4.0.0" + checksum: 09f81f2e5eb8d6108ea2fe366eb3041b8bc35381c95c7b7e38f0eb64825a3967618bb0840b7a9e950457d9b4c0a6e758b69374fb7906d939a67018d6c53e8cbe + languageName: node linkType: hard "escape-string-regexp@npm:^1.0.5": @@ -6920,43 +7904,60 @@ __metadata: languageName: node linkType: hard -"escape-string-regexp@npm:^4.0.0": - version: 4.0.0 - resolution: "escape-string-regexp@npm:4.0.0" - checksum: 09f81f2e5eb8d6108ea2fe366eb3041b8bc35381c95c7b7e38f0eb64825a3967618bb0840b7a9e950457d9b4c0a6e758b69374fb7906d939a67018d6c53e8cbe +"escape-string-regexp@npm:^5.0.0": + version: 5.0.0 + resolution: "escape-string-regexp@npm:5.0.0" + checksum: 9c968d6e975030ef1349f1f011348de4b1fe5e13d5e0c407d38ab141d5e8a8b163ba727a9df22f3e796211aa340b73080455d3a1784af90409e2b8afaed02f76 languageName: node linkType: hard -"eslint-config-prettier@npm:^8.6.0": - version: 8.6.0 - resolution: "eslint-config-prettier@npm:8.6.0" +"eslint-config-prettier@npm:^9.0.0": + version: 9.0.0 + resolution: "eslint-config-prettier@npm:9.0.0" peerDependencies: eslint: ">=7.0.0" bin: eslint-config-prettier: bin/cli.js - checksum: 2aeb302e532b739d4a440a22463dab157c2aee4a5b89da168deade0feccdf2e645a1a40add6f3b9c635d30fd0a7a4d61339dc7df5d7c57f0a19b04eed0a0ab81 + checksum: 909cf95d67d09870aa085362007e9fe16254215b1d0944a519e9779335bfbd737e7ccbe4145db2c08a88724f94a135cc55ea07e2183ff6a1e05db111947baa17 languageName: node linkType: hard -"eslint-import-resolver-node@npm:^0.3.6": - version: 0.3.6 - resolution: "eslint-import-resolver-node@npm:0.3.6" +"eslint-import-resolver-node@npm:^0.3.7": + version: 0.3.7 + resolution: "eslint-import-resolver-node@npm:0.3.7" dependencies: debug: "npm:^3.2.7" - resolve: "npm:^1.20.0" - checksum: 5f4c14fab676a196c4a4928b96755e90fe4f9fdf5c8e4d981efde0005b803c1c54304dd927a119e5e83b6bf08df0e70b71e4321aa9d178fe08e3a5ab0e32b8b7 + is-core-module: "npm:^2.11.0" + resolve: "npm:^1.22.1" + checksum: 13aec906b65aea084311c52f4489ecc9b02606433e9821c5c51d98ad9325575f76da0f1c5955985b1e6571bacdc2066178affca399174f22e53143b80e244c37 languageName: node linkType: hard -"eslint-module-utils@npm:^2.7.3": - version: 2.7.4 - resolution: "eslint-module-utils@npm:2.7.4" +"eslint-module-utils@npm:^2.8.0": + version: 2.8.0 + resolution: "eslint-module-utils@npm:2.8.0" dependencies: debug: "npm:^3.2.7" peerDependenciesMeta: eslint: optional: true - checksum: 3acd6a8988830c11b4e2f900eb5a9a59143728dd7b914e9567316d964bd4f14355842f76b2ddf148ffaeba0c4a65f49338572a5a1e419e00eac7d2064cb7a559 + checksum: c4820cf0d710cece498aaae98a15d339e09b04804d478a6af598a6962baaac31db13ce9f025a64edb8f607c20a07f895dacd2e1b80b833b7f3ad38d66d269c29 + languageName: node + linkType: hard + +"eslint-plugin-astro@npm:^0.29.0": + version: 0.29.0 + resolution: "eslint-plugin-astro@npm:0.29.0" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.2.0" + "@jridgewell/sourcemap-codec": "npm:^1.4.14" + "@typescript-eslint/types": "npm:^5.25.0" + astro-eslint-parser: "npm:^0.15.0" + postcss: "npm:^8.4.14" + postcss-selector-parser: "npm:^6.0.10" + peerDependencies: + eslint: ">=7.0.0" + checksum: b1129ae98f4bec5d97a7ada0bc05b347f0e1341d8e3245ece69b92f27a145792ece3ff97102c4b4d4afe6abf98a4b2267c3879f5af2d20f77eff1be2b4205644 languageName: node linkType: hard @@ -6969,26 +7970,56 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-import@npm:^2.26.0": - version: 2.26.0 - resolution: "eslint-plugin-import@npm:2.26.0" +"eslint-plugin-import@npm:^2.28.1": + version: 2.28.1 + resolution: "eslint-plugin-import@npm:2.28.1" dependencies: - array-includes: "npm:^3.1.4" - array.prototype.flat: "npm:^1.2.5" - debug: "npm:^2.6.9" + array-includes: "npm:^3.1.6" + array.prototype.findlastindex: "npm:^1.2.2" + array.prototype.flat: "npm:^1.3.1" + array.prototype.flatmap: "npm:^1.3.1" + debug: "npm:^3.2.7" doctrine: "npm:^2.1.0" - eslint-import-resolver-node: "npm:^0.3.6" - eslint-module-utils: "npm:^2.7.3" + eslint-import-resolver-node: "npm:^0.3.7" + eslint-module-utils: "npm:^2.8.0" has: "npm:^1.0.3" - is-core-module: "npm:^2.8.1" + is-core-module: "npm:^2.13.0" is-glob: "npm:^4.0.3" minimatch: "npm:^3.1.2" - object.values: "npm:^1.1.5" - resolve: "npm:^1.22.0" - tsconfig-paths: "npm:^3.14.1" + object.fromentries: "npm:^2.0.6" + object.groupby: "npm:^1.0.0" + object.values: "npm:^1.1.6" + semver: "npm:^6.3.1" + tsconfig-paths: "npm:^3.14.2" peerDependencies: eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - checksum: d6509c7e368481d46e8213ffb341085a0c9dd83cdf0a96f28a69701ff571a80453532a7a68a60b29c8f74d8d33dbf049c2c2fff4592104cf6bf6ed968fc4ead1 + checksum: 8b45ad62396c620165cbf971f729c1a7cdbe21352da930a2ac290f26efc658cb2f148ec88942f02830579bf66faccdbaf967da820055255add071c4603a88175 + languageName: node + linkType: hard + +"eslint-plugin-jsx-a11y@npm:^6.7.1": + version: 6.7.1 + resolution: "eslint-plugin-jsx-a11y@npm:6.7.1" + dependencies: + "@babel/runtime": "npm:^7.20.7" + aria-query: "npm:^5.1.3" + array-includes: "npm:^3.1.6" + array.prototype.flatmap: "npm:^1.3.1" + ast-types-flow: "npm:^0.0.7" + axe-core: "npm:^4.6.2" + axobject-query: "npm:^3.1.1" + damerau-levenshtein: "npm:^1.0.8" + emoji-regex: "npm:^9.2.2" + has: "npm:^1.0.3" + jsx-ast-utils: "npm:^3.3.3" + language-tags: "npm:=1.0.5" + minimatch: "npm:^3.1.2" + object.entries: "npm:^1.1.6" + object.fromentries: "npm:^2.0.6" + semver: "npm:^6.3.0" + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + checksum: 8aebd3313a3a4eddf27da14a5fa1e5b959a5132cc2b0d70332f8576992815d67fc1e28c618a0039d527936a3f60b06fd3ad7559e38a5c387325bca10eb0d1fa5 languageName: node linkType: hard @@ -7001,158 +8032,170 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-prettier@npm:^4.2.1": - version: 4.2.1 - resolution: "eslint-plugin-prettier@npm:4.2.1" +"eslint-plugin-prettier@npm:^5.0.0": + version: 5.0.0 + resolution: "eslint-plugin-prettier@npm:5.0.0" dependencies: prettier-linter-helpers: "npm:^1.0.0" + synckit: "npm:^0.8.5" peerDependencies: - eslint: ">=7.28.0" - prettier: ">=2.0.0" + "@types/eslint": ">=8.0.0" + eslint: ">=8.0.0" + prettier: ">=3.0.0" peerDependenciesMeta: + "@types/eslint": + optional: true eslint-config-prettier: optional: true - checksum: add67757bf011d6c2f1e7c659975117b43aa9f81ebc799d69205fb2c43ed45ec0d36bdbdcfd3f0242ba1ac7030a73b381468adb82dda5aee0d986d450226442c + checksum: c0bcb4e1699bd19f905cdf6ddac57f12abca351963528b34b8c341f1ea7b3927df7b23ff765b4357633e29045d7b29b6eadb403b8b2e8802bd28425bae43831f languageName: node linkType: hard -"eslint-plugin-unicorn@npm:^45.0.2": - version: 45.0.2 - resolution: "eslint-plugin-unicorn@npm:45.0.2" +"eslint-plugin-unicorn@npm:^48.0.1": + version: 48.0.1 + resolution: "eslint-plugin-unicorn@npm:48.0.1" dependencies: - "@babel/helper-validator-identifier": "npm:^7.19.1" - "@eslint-community/eslint-utils": "npm:^4.1.2" - ci-info: "npm:^3.6.1" + "@babel/helper-validator-identifier": "npm:^7.22.5" + "@eslint-community/eslint-utils": "npm:^4.4.0" + ci-info: "npm:^3.8.0" clean-regexp: "npm:^1.0.0" - esquery: "npm:^1.4.0" + esquery: "npm:^1.5.0" indent-string: "npm:^4.0.0" - is-builtin-module: "npm:^3.2.0" + is-builtin-module: "npm:^3.2.1" jsesc: "npm:^3.0.2" lodash: "npm:^4.17.21" pluralize: "npm:^8.0.0" read-pkg-up: "npm:^7.0.1" - regexp-tree: "npm:^0.1.24" - regjsparser: "npm:^0.9.1" - safe-regex: "npm:^2.1.1" - semver: "npm:^7.3.8" + regexp-tree: "npm:^0.1.27" + regjsparser: "npm:^0.10.0" + semver: "npm:^7.5.4" strip-indent: "npm:^3.0.0" peerDependencies: - eslint: ">=8.28.0" - checksum: 65e5fa10190376c2b7958767aa79963832a1fad576b8d3ad57d9d579bd788577123c5002c1129f445bba2780deca0b4dd72b0dcb046385b1c6e0f484dcda940b - languageName: node - linkType: hard - -"eslint-scope@npm:^5.1.1": - version: 5.1.1 - resolution: "eslint-scope@npm:5.1.1" - dependencies: - esrecurse: "npm:^4.3.0" - estraverse: "npm:^4.1.1" - checksum: 50c26e6abd713f6acf27498e37af26dc08d9b2781c038a32d8c44dbab59744233de58b1bd6b3a21286384ea40458962a80d8f3923c33c90369f4d0e891c69065 + eslint: ">=8.44.0" + checksum: 3ba0707e4355839202738183ead9540fd9569fd6d616c0bdc755f7c6f13a480c945048b01f9eda1d82d9e981c41303edc29257b7bc6d3ee6d1d8c9df40268e3d languageName: node linkType: hard -"eslint-scope@npm:^7.1.1": - version: 7.1.1 - resolution: "eslint-scope@npm:7.1.1" +"eslint-scope@npm:^7.2.2": + version: 7.2.2 + resolution: "eslint-scope@npm:7.2.2" dependencies: esrecurse: "npm:^4.3.0" estraverse: "npm:^5.2.0" - checksum: 07f794a9bf080e76cc89109d56ee6d3666666b09837f8352978f9b84cf0a1b2a559886bb563e2ae5c49f100d7c7633bc3ae991012123ee8611adac2d574bd034 - languageName: node - linkType: hard - -"eslint-utils@npm:^3.0.0": - version: 3.0.0 - resolution: "eslint-utils@npm:3.0.0" - dependencies: - eslint-visitor-keys: "npm:^2.0.0" - peerDependencies: - eslint: ">=5" - checksum: c7941cb26c5a1dea52fd7588e2e7ca2c12f28a6769119b3697074170f8e9d32a820dbaf822d30361dc54949eb95e8da3509f76fae77dbf8d53499932a828cb65 + checksum: cd7309c71d36af4ba304a41a23954b13b719d4792a45dae1380ee7086ad74802dbaa3f1721ec030cdd162c0707b6c31f07349b799cfd23784ec0d29e9c7bc869 languageName: node linkType: hard -"eslint-visitor-keys@npm:^2.0.0": - version: 2.1.0 - resolution: "eslint-visitor-keys@npm:2.1.0" - checksum: fba2e0be2450d1bc52c74b42008e3da7480fc38cb588b3e0474552c290ed0056465d8754cf579503bdb239d3001c91733e3ff26f659f2479e85baf6bf6559b84 +"eslint-visitor-keys@npm:^3.0.0, eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1": + version: 3.4.1 + resolution: "eslint-visitor-keys@npm:3.4.1" + checksum: 97db79746bfe11a3ab0e60ce454cd809e7ac167ddd7d28736845ba57b8402d6b5d6c10fed2decf8c4026f7d3d659ebc024336ef30fdf473f0402bb1237c6a410 languageName: node linkType: hard -"eslint-visitor-keys@npm:^3.3.0": - version: 3.3.0 - resolution: "eslint-visitor-keys@npm:3.3.0" - checksum: 37b1372b3481e978856692724f065da7e3ded80c1a57fd347ad9c63692b6310756d0eb432badb5afaa125f0d4fcbc7692ba93ae85b17bd8e628bd8c8bcd03c1d +"eslint-visitor-keys@npm:^3.4.3": + version: 3.4.3 + resolution: "eslint-visitor-keys@npm:3.4.3" + checksum: 8c249464e7f9d134259b4445e34bcdf2539775fee722577936f1fafd928c409ef845a6cae6456e68db6b653e5ef12a1e17946c34d534474e71cd226cae153ecf languageName: node linkType: hard -"eslint@npm:^8.31.0": - version: 8.31.0 - resolution: "eslint@npm:8.31.0" +"eslint@npm:^8.48.0": + version: 8.48.0 + resolution: "eslint@npm:8.48.0" dependencies: - "@eslint/eslintrc": "npm:^1.4.1" - "@humanwhocodes/config-array": "npm:^0.11.8" + "@eslint-community/eslint-utils": "npm:^4.2.0" + "@eslint-community/regexpp": "npm:^4.6.1" + "@eslint/eslintrc": "npm:^2.1.2" + "@eslint/js": "npm:8.48.0" + "@humanwhocodes/config-array": "npm:^0.11.10" "@humanwhocodes/module-importer": "npm:^1.0.1" "@nodelib/fs.walk": "npm:^1.2.8" - ajv: "npm:^6.10.0" + ajv: "npm:^6.12.4" chalk: "npm:^4.0.0" cross-spawn: "npm:^7.0.2" debug: "npm:^4.3.2" doctrine: "npm:^3.0.0" escape-string-regexp: "npm:^4.0.0" - eslint-scope: "npm:^7.1.1" - eslint-utils: "npm:^3.0.0" - eslint-visitor-keys: "npm:^3.3.0" - espree: "npm:^9.4.0" - esquery: "npm:^1.4.0" + eslint-scope: "npm:^7.2.2" + eslint-visitor-keys: "npm:^3.4.3" + espree: "npm:^9.6.1" + esquery: "npm:^1.4.2" esutils: "npm:^2.0.2" fast-deep-equal: "npm:^3.1.3" file-entry-cache: "npm:^6.0.1" find-up: "npm:^5.0.0" glob-parent: "npm:^6.0.2" globals: "npm:^13.19.0" - grapheme-splitter: "npm:^1.0.4" + graphemer: "npm:^1.4.0" ignore: "npm:^5.2.0" - import-fresh: "npm:^3.0.0" imurmurhash: "npm:^0.1.4" is-glob: "npm:^4.0.0" is-path-inside: "npm:^3.0.3" - js-sdsl: "npm:^4.1.4" js-yaml: "npm:^4.1.0" json-stable-stringify-without-jsonify: "npm:^1.0.1" levn: "npm:^0.4.1" lodash.merge: "npm:^4.6.2" minimatch: "npm:^3.1.2" natural-compare: "npm:^1.4.0" - optionator: "npm:^0.9.1" - regexpp: "npm:^3.2.0" + optionator: "npm:^0.9.3" strip-ansi: "npm:^6.0.1" - strip-json-comments: "npm:^3.1.0" text-table: "npm:^0.2.0" bin: eslint: bin/eslint.js - checksum: 2d789efa2ef8b2ae27111107e1796dd78302006618322835e7135afb3e0af5118ba6d2294feb95befe00a3d5feb5c4e1b53435dff15b3e2e91b07016eecc3586 + checksum: 3e76d6c4bc7a7033cbbbf5fe879b908dd6ab27723a4b4f834ad1c4bc29a33b13b21d15a4c244873f45faa9c8e01a61de7b8cba38eab39601039ce29111ee6ffd languageName: node linkType: hard -"espree@npm:^9.4.0": - version: 9.4.1 - resolution: "espree@npm:9.4.1" +"espree@npm:^9.0.0": + version: 9.5.2 + resolution: "espree@npm:9.5.2" dependencies: acorn: "npm:^8.8.0" acorn-jsx: "npm:^5.3.2" - eslint-visitor-keys: "npm:^3.3.0" - checksum: 6d64a7f5b39ad6af704756738cc4331bef0ac2c55e1e5b967e87dae37d753e7cc10d476c8fa772a13a9d43bc7ef541aa323bfd29a5011ccfff9b99feb82681ff + eslint-visitor-keys: "npm:^3.4.1" + checksum: 05c52faae1e5c72ba3ab639d06937a0570d64946d9062762cac1918c70921f67a17e1370a3503af1eb9ff27f36f9c1932389fcc810a98e9ee9887597d07911e5 languageName: node linkType: hard -"esquery@npm:^1.4.0": - version: 1.4.0 - resolution: "esquery@npm:1.4.0" +"espree@npm:^9.6.0": + version: 9.6.0 + resolution: "espree@npm:9.6.0" + dependencies: + acorn: "npm:^8.9.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^3.4.1" + checksum: 8744a301ca91e8af4694c56fc0e7190dc8defcd0fc38b0723868367f99d26015cabfb8eacefebc3c8078f9b82638b4bc6a3e26f5855a54b7241fc8c7032e4e5f + languageName: node + linkType: hard + +"espree@npm:^9.6.1": + version: 9.6.1 + resolution: "espree@npm:9.6.1" + dependencies: + acorn: "npm:^8.9.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^3.4.1" + checksum: 0a7dc64cf8e61402864586ed686001eacd395e8bb94dfed789cd7596685e69d75397b0ac790ed9718abd3ebaf8c1b16d2534ed112f2a06770a4166e0c93c320f + languageName: node + linkType: hard + +"esprima@npm:^4.0.0": + version: 4.0.1 + resolution: "esprima@npm:4.0.1" + bin: + esparse: ./bin/esparse.js + esvalidate: ./bin/esvalidate.js + checksum: 08b3015538b1f7f087a4ea49b5a3d8ff9590ecf7eb43511182c9198cfe168a5cc1736c2ae33263c79cfbe9e984c1880ee971b64ad96e7c84db74488e6ee93c1b + languageName: node + linkType: hard + +"esquery@npm:^1.4.2, esquery@npm:^1.5.0": + version: 1.5.0 + resolution: "esquery@npm:1.5.0" dependencies: estraverse: "npm:^5.1.0" - checksum: 7f287f5390f12feed1b2b4dd42f3a4501774effcbcbb76c340e5b9a3c25a133739dc18657c6103cb520dd4a8814d33ff732587c7de42f0ff51a0deaf4c190428 + checksum: 4bde95396273b2960a330c296e921d88b7d3fb5c9cbc84a1e29cf75664c318b194b1a8b46f507fce30222a68b64527f70e09bdd5863e14248fa2f6da5e78fdfd languageName: node linkType: hard @@ -7165,17 +8208,10 @@ __metadata: languageName: node linkType: hard -"estraverse@npm:^4.1.1": - version: 4.3.0 - resolution: "estraverse@npm:4.3.0" - checksum: befc0287c32a7844aa00a3bb474189d51afa4c8c1d754937c2b2e70c0ca5bd0750da7ab2c84809aa130e0e1320dd386ea2381aac205f02b83569436e453e320a - languageName: node - linkType: hard - "estraverse@npm:^5.1.0, estraverse@npm:^5.2.0": - version: 5.2.0 - resolution: "estraverse@npm:5.2.0" - checksum: a507aeaf265ea201dbe9ba14bb79cb76a657afbe1aa4af87cc4990fb5e63cd73a7d88263d19b3519fde108a255f1def5d8233cadf2e3c6193b36f1aa61294c17 + version: 5.3.0 + resolution: "estraverse@npm:5.3.0" + checksum: 4db420d3f0291d3c42e3700aee2986ec1ca8384224236da9441e67555c8af181fe5f883b0b312021ed475f0c138282066b0f5cb2240ee4a0c2ec5142274162d1 languageName: node linkType: hard @@ -7193,6 +8229,15 @@ __metadata: languageName: node linkType: hard +"estree-walker@npm:^3.0.3": + version: 3.0.3 + resolution: "estree-walker@npm:3.0.3" + dependencies: + "@types/estree": "npm:^1.0.0" + checksum: 0c44966bc57eeafacb2ba2eda8e12e2d7d298fe44bd4e93ad9c9a5c3c6521fac8eb2f3499a500a44dc630e846bc35aff3a50824521bd7c1d767fd4d1d103d3d7 + languageName: node + linkType: hard + "esutils@npm:^2.0.2": version: 2.0.3 resolution: "esutils@npm:2.0.3" @@ -7222,10 +8267,17 @@ __metadata: languageName: node linkType: hard -"eventemitter2@npm:^6.4.3": - version: 6.4.6 - resolution: "eventemitter2@npm:6.4.6" - checksum: 83adf79a3556afae5bf31b0cac88529b214de29b4c77fbc29175dd03da47efc3e35511341b0c1a1fa3bdc1653aada21af277e58f3cab54bbac4ec0b500d06bc0 +"eventemitter2@npm:6.4.7": + version: 6.4.7 + resolution: "eventemitter2@npm:6.4.7" + checksum: 7789fb06f51d0ffd22fef2623451a449eaf38df32c61269024d4a50e42d8878e4e0c5ae1b8d60dd0f0e3cf4d97bfeb3795ce0fa773810610c40745b6eb6fe3c3 + languageName: node + linkType: hard + +"eventemitter3@npm:^5.0.1": + version: 5.0.1 + resolution: "eventemitter3@npm:5.0.1" + checksum: 3c7f3864e4bd8b23574595c43fda88ac8b5798a6bd6f57788c2cf7fa5a09e11c7c6161da6d263f2c40bcbca58bc69914ee2bbf684eccf73d671b12f002f44ce6 languageName: node linkType: hard @@ -7263,20 +8315,54 @@ __metadata: languageName: node linkType: hard -"execa@npm:^6.1.0": - version: 6.1.0 - resolution: "execa@npm:6.1.0" +"execa@npm:7.2.0": + version: 7.2.0 + resolution: "execa@npm:7.2.0" + dependencies: + cross-spawn: "npm:^7.0.3" + get-stream: "npm:^6.0.1" + human-signals: "npm:^4.3.0" + is-stream: "npm:^3.0.0" + merge-stream: "npm:^2.0.0" + npm-run-path: "npm:^5.1.0" + onetime: "npm:^6.0.0" + signal-exit: "npm:^3.0.7" + strip-final-newline: "npm:^3.0.0" + checksum: 9a3716a61ed367b5eb956f4fbe42b003465bf193db0ece7f842cc39b4b6ce373e29e52165568f88595939928c4bc41cf86e4102cd0ef33b34ac146ab80009b4a + languageName: node + linkType: hard + +"execa@npm:^7.1.1": + version: 7.1.1 + resolution: "execa@npm:7.1.1" dependencies: cross-spawn: "npm:^7.0.3" get-stream: "npm:^6.0.1" - human-signals: "npm:^3.0.1" + human-signals: "npm:^4.3.0" is-stream: "npm:^3.0.0" merge-stream: "npm:^2.0.0" npm-run-path: "npm:^5.1.0" onetime: "npm:^6.0.0" signal-exit: "npm:^3.0.7" strip-final-newline: "npm:^3.0.0" - checksum: ebe384facfb5c4e7007828a518fedb2d7704bd10e69d4584de4427d47ceadf1e9377203f4ca754c17e1a82a492b5eefad64dda65fa473bf756ab6de62124651e + checksum: 36b171e01b83a88303917916618611b6d83bb9779fac0788d37bba32db92791c2da323605a6a1fa39dcc0c58f220d9f1ace4839481be913ae028a5f390b44a7c + languageName: node + linkType: hard + +"execa@npm:^8.0.1": + version: 8.0.1 + resolution: "execa@npm:8.0.1" + dependencies: + cross-spawn: "npm:^7.0.3" + get-stream: "npm:^8.0.1" + human-signals: "npm:^5.0.0" + is-stream: "npm:^3.0.0" + merge-stream: "npm:^2.0.0" + npm-run-path: "npm:^5.1.0" + onetime: "npm:^6.0.0" + signal-exit: "npm:^4.1.0" + strip-final-newline: "npm:^3.0.0" + checksum: cc98e3957a545cb5e6a1477200d0af0ce7ee528bc409ac0761302c20f17e23ea94ce5111b81ffb2a5ea56a9e1420dcbd369f1a41a2449fe65f8aed3292c1fffd languageName: node linkType: hard @@ -7289,6 +8375,20 @@ __metadata: languageName: node linkType: hard +"expand-template@npm:^2.0.3": + version: 2.0.3 + resolution: "expand-template@npm:2.0.3" + checksum: 11824d593f92f9ea6b8b29574db3bf904d1d910570176e5abbaba6e891a052784a0131f67d1d7c0831d9ea21630cf649d5aa661f21c22e0b2536635cfb6cb1a8 + languageName: node + linkType: hard + +"exponential-backoff@npm:^3.1.1": + version: 3.1.1 + resolution: "exponential-backoff@npm:3.1.1" + checksum: b3010284e8d2161f7a2589b92d41299d5bdffa6c79bac7bbfeee239a67627ae8b878e40c408a4419b19afcf9514442c79929cf3bd5f49f7f19ebd54fd2aa306f + languageName: node + linkType: hard + "express@npm:^4.18.2": version: 4.18.2 resolution: "express@npm:4.18.2" @@ -7337,7 +8437,16 @@ __metadata: languageName: node linkType: hard -"extend@npm:~3.0.2": +"extend-shallow@npm:^2.0.1": + version: 2.0.1 + resolution: "extend-shallow@npm:2.0.1" + dependencies: + is-extendable: "npm:^0.1.0" + checksum: 55d1d466474b90d00dda6926144f41c349ca7d4d1194cdb3d37e9a662a9767cf8f62a9ff659ef0aacd30a35ee98ab801c3a411a438a5d54b275acbd4ee4fedb6 + languageName: node + linkType: hard + +"extend@npm:^3.0.0, extend@npm:~3.0.2": version: 3.0.2 resolution: "extend@npm:3.0.2" checksum: 312babdc3cfd8d5d003b109f02b8b639e8bdf2262f2f06acebfc3c991d8c004b73c2c10eaaaab00cfb2fb2a760845006806af10945b279d9390eed064505dfdb @@ -7383,35 +8492,35 @@ __metadata: linkType: hard "fast-diff@npm:^1.1.2": - version: 1.2.0 - resolution: "fast-diff@npm:1.2.0" - checksum: e75206672f583769d2270d4ab9960bef9bce5c0852c0553a2f3f960c977fb330ef01ae55b3e9c5877ed539065014d1e868140b2ee2666d21f1d833e9d0dfd82c + version: 1.3.0 + resolution: "fast-diff@npm:1.3.0" + checksum: 424cdf4f5f335fd33bcb4dd6e676746e351c3ed326db6f2ae2920937d224fa36064d7cfdac7521154153a3489b8f8cb59dad27778d127a680b658b7cd70a544e languageName: node linkType: hard -"fast-glob@npm:^3.2.12": - version: 3.2.12 - resolution: "fast-glob@npm:3.2.12" +"fast-glob@npm:3.3.1, fast-glob@npm:^3.3.1": + version: 3.3.1 + resolution: "fast-glob@npm:3.3.1" dependencies: "@nodelib/fs.stat": "npm:^2.0.2" "@nodelib/fs.walk": "npm:^1.2.3" glob-parent: "npm:^5.1.2" merge2: "npm:^1.3.0" micromatch: "npm:^4.0.4" - checksum: 3b98e0cadbf2aea3fa2be76e28b0c895bb18d920ccb7b3d3f603a464e3dc2c6a89a8afb9f9765226bd4d4d74b70e880721ff7a57a267c2eaa11353f35d42d11b + checksum: e26659062337c60300761c4e46eeabba295ae4140dee6332e69977d920d7d96cb502f8b8a2358e131f088f9d30a98789c9920398896b317f028ba73dee710b01 languageName: node linkType: hard -"fast-glob@npm:^3.2.9": - version: 3.2.11 - resolution: "fast-glob@npm:3.2.11" +"fast-glob@npm:^3.2.12, fast-glob@npm:^3.2.9": + version: 3.2.12 + resolution: "fast-glob@npm:3.2.12" dependencies: "@nodelib/fs.stat": "npm:^2.0.2" "@nodelib/fs.walk": "npm:^1.2.3" glob-parent: "npm:^5.1.2" merge2: "npm:^1.3.0" micromatch: "npm:^4.0.4" - checksum: 73b4cb60ed75a9138533f6020f6c3f451a9d8f0e7e7e38e2555f281c93e9dcef1565e4801dd264d766dd5ade870a4ebd32b113c66fce75ea09bd5bc6dc66b939 + checksum: 3b98e0cadbf2aea3fa2be76e28b0c895bb18d920ccb7b3d3f603a464e3dc2c6a89a8afb9f9765226bd4d4d74b70e880721ff7a57a267c2eaa11353f35d42d11b languageName: node linkType: hard @@ -7437,11 +8546,11 @@ __metadata: linkType: hard "fastq@npm:^1.6.0": - version: 1.11.0 - resolution: "fastq@npm:1.11.0" + version: 1.15.0 + resolution: "fastq@npm:1.15.0" dependencies: reusify: "npm:^1.0.4" - checksum: 0c4d8c45c970c9f343068d5d96fa5c67b512ba8ac3ab38e135d65739af7698945b1c446be8068158a96b917ba7e27c2454f23bde1f6ffd3379f02054b3f93d23 + checksum: 9c256d4b1c55c2a494ef198632ad19b801f98fb05b804c761c8c733da58b8f63888fdfe5e4c8ec7144f369135b71f23da1457e71b3aebaa943d2d5337bb86262 languageName: node linkType: hard @@ -7472,23 +8581,30 @@ __metadata: languageName: node linkType: hard -"file-type@npm:^17.1.6": - version: 17.1.6 - resolution: "file-type@npm:17.1.6" +"filelist@npm:^1.0.4": + version: 1.0.4 + resolution: "filelist@npm:1.0.4" dependencies: - readable-web-to-node-stream: "npm:^3.0.2" - strtok3: "npm:^7.0.0-alpha.9" - token-types: "npm:^5.0.0-alpha.2" - checksum: 9a1d2939588b5a79da116a0bf393e9e8b404d975d45b5413dc246567b3c7fe95c445fae3ac74cb8b5223a98859b9fe2211ba66c8de446a4a7cf820ffb1e8b04d + minimatch: "npm:^5.0.1" + checksum: f24e711620c5f75b3016e09f2dce86f6598237349c0ba825dc2074f4efa50f450bfba4dbdca2592a8ba60c4a6300ddf9a9dd89d25e9baa5c68837c0c549267f5 languageName: node linkType: hard -"filelist@npm:^1.0.1": - version: 1.0.2 - resolution: "filelist@npm:1.0.2" +"filename-reserved-regex@npm:^3.0.0": + version: 3.0.0 + resolution: "filename-reserved-regex@npm:3.0.0" + checksum: bac8022c00fcc49a7326e8d659e640f5f6e30fc03c613d6ec42e48d8a443aea21fd9dfe0536c362c9df2a100a370a098ec1c5ecac7a3edfe97ddeab2f50ed041 + languageName: node + linkType: hard + +"files-pipe@npm:2.0.18": + version: 2.0.18 + resolution: "files-pipe@npm:2.0.18" dependencies: - minimatch: "npm:^3.0.4" - checksum: 65738c09b6c0a0ef69727c9aee35a6f69e472689b0634e9836cd87e8b1d927790dcb500bfbe00c4880cbc15bb492af0a3008e1be9c0b6ed9dba91bcb8ab63dd9 + "@types/node": "npm:20.5.7" + deepmerge-ts: "npm:5.1.0" + fast-glob: "npm:3.3.1" + checksum: a369dc242d8fd0a9301aa97cb5ac949897fa183f4d86495fadceb4e48c7cdc40cb74bb94757f055af681935fb6b4667aad3c82d52aedf021d4f1d5cf62e52971 languageName: node linkType: hard @@ -7526,7 +8642,7 @@ __metadata: languageName: node linkType: hard -"find-up@npm:^4.1.0": +"find-up@npm:^4.0.0, find-up@npm:^4.1.0": version: 4.1.0 resolution: "find-up@npm:4.1.0" dependencies: @@ -7536,6 +8652,16 @@ __metadata: languageName: node linkType: hard +"find-yarn-workspace-root2@npm:1.2.16": + version: 1.2.16 + resolution: "find-yarn-workspace-root2@npm:1.2.16" + dependencies: + micromatch: "npm:^4.0.2" + pkg-dir: "npm:^4.2.0" + checksum: e55bb832d851f1ef1720783bf9def082f62dea6f8c6bbdea17d7e78339f57165b4dec21e7e10d4757f62e079edb2a7750178fe64d7fca72cb2f96dd3a47c5863 + languageName: node + linkType: hard + "flat-cache@npm:^3.0.4": version: 3.0.4 resolution: "flat-cache@npm:3.0.4" @@ -7546,24 +8672,23 @@ __metadata: languageName: node linkType: hard -"flatted@npm:^3.1.0": - version: 3.1.1 - resolution: "flatted@npm:3.1.1" - checksum: e071d4c38b70c05e0ddb2321d904db5229feca9679a95c96a0b315d491f7e876f485b31083fd94dfdfcfcafc30eff12745d633586f262bc0840e981c9291ae4e +"flat@npm:^5.0.2": + version: 5.0.2 + resolution: "flat@npm:5.0.2" + bin: + flat: cli.js + checksum: e632b5163b6f462d31726ac4e4d50723cef3cf745b9eded96872f49af52fb935b6cb1321cff25b58afc0a0655fd26f8a5d1bb465b36971f4920314a1732bb69f languageName: node linkType: hard -"follow-redirects@npm:^1.14.0": - version: 1.15.1 - resolution: "follow-redirects@npm:1.15.1" - peerDependenciesMeta: - debug: - optional: true - checksum: 1f3e06bfb5c5351456e4fdb9197aa09158452d6400a06240a80204708b7a68f1bb47d6e94127112844136f66ad3283f9c92fa3c5c76aa96db8bd44214ea922b8 +"flatted@npm:^3.1.0": + version: 3.2.7 + resolution: "flatted@npm:3.2.7" + checksum: d57a559a56f8743f48067b992e70f222921bec6656de4617ee60dab5e531c2aeba67ace287965b759cca80fa0d3f0c7ffc39341ccc9bc874594f4b73c0fea48c languageName: node linkType: hard -"follow-redirects@npm:^1.15.0": +"follow-redirects@npm:^1.14.9, follow-redirects@npm:^1.15.0": version: 1.15.2 resolution: "follow-redirects@npm:1.15.2" peerDependenciesMeta: @@ -7573,6 +8698,25 @@ __metadata: languageName: node linkType: hard +"for-each@npm:^0.3.3": + version: 0.3.3 + resolution: "for-each@npm:0.3.3" + dependencies: + is-callable: "npm:^1.1.3" + checksum: dc4e3e28f5ee9472680b6361a85d0d27aa1e8ddbd1720dfb680020456cddc142ee7ba69145921fe12c4ec2d7740f12c1c6c7f90ecdd7ca2b39c7fcd8bc506ad6 + languageName: node + linkType: hard + +"foreground-child@npm:^3.1.0": + version: 3.1.1 + resolution: "foreground-child@npm:3.1.1" + dependencies: + cross-spawn: "npm:^7.0.0" + signal-exit: "npm:^4.0.1" + checksum: eb24fc60e34157c0f05b8689015dfaff98141484992f06f19ee0b4b069304c337af1caf5478eee42aea846235ce54699bbc530889eccd746bf4da1dc29ba6c32 + languageName: node + linkType: hard + "forever-agent@npm:~0.6.1": version: 0.6.1 resolution: "forever-agent@npm:0.6.1" @@ -7630,14 +8774,21 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:^11.0.0": - version: 11.1.0 - resolution: "fs-extra@npm:11.1.0" +"fs-constants@npm:^1.0.0": + version: 1.0.0 + resolution: "fs-constants@npm:1.0.0" + checksum: fc080f48eec0d9cef6750e804f31c6ceac3f4222dfd7003c7ac350f6be91979b084d27e4249e8e66f54caf5ea0465721078934ce44302d9d725209830c8fd730 + languageName: node + linkType: hard + +"fs-extra@npm:^11.0.0, fs-extra@npm:^11.1.1": + version: 11.1.1 + resolution: "fs-extra@npm:11.1.1" dependencies: graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" - checksum: 20d9909070e7d9754cb651af067ae4343b5fc9b05fa9b8765a9348dab7dfa9b78c0f1ebe791774f06d4cca4231f4be9889a916d0457e8e87097a613e6bdd1746 + checksum: 9bc3e5ce6860e97abf1fb408f1d716253e1bb16da36203b2ee3f71160e5ec1e7a9d2b9bae4c99a50598a250be6db0e3b17e8031ea7c498c24513857f48db5402 languageName: node linkType: hard @@ -7662,6 +8813,15 @@ __metadata: languageName: node linkType: hard +"fs-minipass@npm:^3.0.0": + version: 3.0.2 + resolution: "fs-minipass@npm:3.0.2" + dependencies: + minipass: "npm:^5.0.0" + checksum: 2b2cd5428f9c24619f9cffd857508d55eaa3b49d4e060061f775f66c96043c9d9a54a8d05378b63d391ac7d8f9606f180c2b65124b871221d5efcf49781787fe + languageName: node + linkType: hard + "fs.realpath@npm:^1.0.0": version: 1.0.0 resolution: "fs.realpath@npm:1.0.0" @@ -7716,26 +8876,26 @@ __metadata: languageName: node linkType: hard -"functions-have-names@npm:^1.2.2": +"functions-have-names@npm:^1.2.2, functions-have-names@npm:^1.2.3": version: 1.2.3 resolution: "functions-have-names@npm:1.2.3" checksum: 2b58e5d607d7338c29e5ff8c285ddf09d79857b6d0ef9f781ee2e80cf666726d6909b5ab635e13d49ded9dcfd3c7abc01a22a52089bf23833848a6bfb6e8dac1 languageName: node linkType: hard -"gauge@npm:~2.7.3": - version: 2.7.4 - resolution: "gauge@npm:2.7.4" +"gauge@npm:^4.0.3": + version: 4.0.4 + resolution: "gauge@npm:4.0.4" dependencies: - aproba: "npm:^1.0.3" - console-control-strings: "npm:^1.0.0" - has-unicode: "npm:^2.0.0" - object-assign: "npm:^4.1.0" - signal-exit: "npm:^3.0.0" - string-width: "npm:^1.0.1" - strip-ansi: "npm:^3.0.1" - wide-align: "npm:^1.1.0" - checksum: 54255b3bad3e254603770c16b551a6d5d4905e428331c4e37092edacb6cd57ea5f379c6d0bce8c3fd0629d303ed86b5193e282c3aa3cf25c94f2c97367012fd8 + aproba: "npm:^1.0.3 || ^2.0.0" + color-support: "npm:^1.1.3" + console-control-strings: "npm:^1.1.0" + has-unicode: "npm:^2.0.1" + signal-exit: "npm:^3.0.7" + string-width: "npm:^4.2.3" + strip-ansi: "npm:^6.0.1" + wide-align: "npm:^1.1.5" + checksum: 4fc68f770dba9962a326918f33f58f2458eddea08442c2d716238357e4291dee4223a812ce11084b54f928d607e4dfb6f380ba28d435b2721de94a22d5600669 languageName: node linkType: hard @@ -7753,25 +8913,15 @@ __metadata: languageName: node linkType: hard -"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.0, get-intrinsic@npm:^1.1.1": - version: 1.1.1 - resolution: "get-intrinsic@npm:1.1.1" +"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1": + version: 1.2.1 + resolution: "get-intrinsic@npm:1.2.1" dependencies: function-bind: "npm:^1.1.1" has: "npm:^1.0.3" - has-symbols: "npm:^1.0.1" - checksum: a48e9ce484bb1960deb4450d6252ceda885babbb502012783b97a0c3cd9caf114c7e7cc251d1b1958fb3ea749c1a4f710b25eee2f383b7b2e41af91e1efcff99 - languageName: node - linkType: hard - -"get-intrinsic@npm:^1.1.3": - version: 1.1.3 - resolution: "get-intrinsic@npm:1.1.3" - dependencies: - function-bind: "npm:^1.1.1" - has: "npm:^1.0.3" - has-symbols: "npm:^1.0.3" - checksum: 885245c0964b0acf38383792a1174022f00db91624239fa0338b6101f865601df0f17dbef15083dc875374d9b50c64bb4177e411a5a40edb0e5cd0e60829caad + has-proto: "npm:^1.0.1" + has-symbols: "npm:^1.0.3" + checksum: d1d5511cfe4fc46c1a7ec7e127cb4ac0b9e131124282724d7bd94ae5014db5d12403e6873dfd5feeca44cd57baa39f8b4dbda2147ec9bb3533a7d02ab033e352 languageName: node linkType: hard @@ -7805,6 +8955,13 @@ __metadata: languageName: node linkType: hard +"get-stream@npm:^8.0.1": + version: 8.0.1 + resolution: "get-stream@npm:8.0.1" + checksum: aaeb7582c13f35bd7bd7a505c72978233a9ec990cbc79e8667f08f145490841ce8a08f296be5688ef287f48a3f67f03929d7239e6817cc07b70cb375e7fb1063 + languageName: node + linkType: hard + "get-symbol-description@npm:^1.0.0": version: 1.0.0 resolution: "get-symbol-description@npm:1.0.0" @@ -7816,9 +8973,20 @@ __metadata: linkType: hard "get-tsconfig@npm:^4.4.0": - version: 4.4.0 - resolution: "get-tsconfig@npm:4.4.0" - checksum: 461cb3ceec19d0f337a31906dc39f4d5fd66f13a53a73eeae584d8a021db553d4d463261673e75fca5d1704ecad6243ac4c5155850de24f0c7ca2411ef50bf60 + version: 4.6.0 + resolution: "get-tsconfig@npm:4.6.0" + dependencies: + resolve-pkg-maps: "npm:^1.0.0" + checksum: f7e7d4e5853f9949a12b84ef5e4af64e2bd5dd0bf48670413300ea8bf818a1424c7af6fc8e218ed4bd1f1f1e9c78c282f3607825bdfc490ee8439792bbef24ce + languageName: node + linkType: hard + +"get-tsconfig@npm:^4.7.0": + version: 4.7.1 + resolution: "get-tsconfig@npm:4.7.1" + dependencies: + resolve-pkg-maps: "npm:^1.0.0" + checksum: 824e9d959b6cceccc0eec8f84f93dc953b225d4a4ba4775b455a555a3ec1156a5c8ed34e5d168030abee1b6f6927dc25317d6bb0a34a74e6fc5bf9a4e099e4a0 languageName: node linkType: hard @@ -7840,7 +9008,7 @@ __metadata: languageName: node linkType: hard -"git-raw-commits@npm:^2.0.0": +"git-raw-commits@npm:^2.0.11": version: 2.0.11 resolution: "git-raw-commits@npm:2.0.11" dependencies: @@ -7855,6 +9023,20 @@ __metadata: languageName: node linkType: hard +"github-from-package@npm:0.0.0": + version: 0.0.0 + resolution: "github-from-package@npm:0.0.0" + checksum: 5ef16dcb4ca336ddff2c479227ea252c808d785608f2851826d880e1c63c3e03855ffbf90f2f97f88a1858cba8c23e0687eba094da9b4f9fddde843bb7ca7502 + languageName: node + linkType: hard + +"github-slugger@npm:^2.0.0": + version: 2.0.0 + resolution: "github-slugger@npm:2.0.0" + checksum: 12d05450b103100c1b229668c4092a9e8f56483aabbbac41415a96137e2096e4167e639136d80c81e541eb0923aa4b74ee410ce337ea3328789e16e77d8e400f + languageName: node + linkType: hard + "gl-tiled@npm:^1.0.0": version: 1.0.0 resolution: "gl-tiled@npm:1.0.0" @@ -7880,6 +9062,20 @@ __metadata: languageName: node linkType: hard +"glob@npm:7.2.0": + version: 7.2.0 + resolution: "glob@npm:7.2.0" + dependencies: + fs.realpath: "npm:^1.0.0" + inflight: "npm:^1.0.4" + inherits: "npm:2" + minimatch: "npm:^3.0.4" + once: "npm:^1.3.0" + path-is-absolute: "npm:^1.0.0" + checksum: 2453578bad177f4f1614271dcf7a553ef411141c73439d111a45e0ea38a01c38ff475cc8ea62e0cf97fa7e6d73b204eedea454125770a617feae61ec7fe2e5e0 + languageName: node + linkType: hard + "glob@npm:9.3.2": version: 9.3.2 resolution: "glob@npm:9.3.2" @@ -7892,31 +9088,32 @@ __metadata: languageName: node linkType: hard -"glob@npm:^7.0.6, glob@npm:^7.2.0": - version: 7.2.3 - resolution: "glob@npm:7.2.3" +"glob@npm:^10.2.2": + version: 10.2.7 + resolution: "glob@npm:10.2.7" dependencies: - fs.realpath: "npm:^1.0.0" - inflight: "npm:^1.0.4" - inherits: "npm:2" - minimatch: "npm:^3.1.1" - once: "npm:^1.3.0" - path-is-absolute: "npm:^1.0.0" - checksum: c55966a5db7ed2f30976a1490f3165f9d4e20ac7cabf01b55da4cc4f8f53a4c506e6f427e469c2fbf68636200871f3acf07e159ba6d9b65e7386216b98474a34 + foreground-child: "npm:^3.1.0" + jackspeak: "npm:^2.0.3" + minimatch: "npm:^9.0.1" + minipass: "npm:^5.0.0 || ^6.0.2" + path-scurry: "npm:^1.7.0" + bin: + glob: dist/cjs/src/bin.js + checksum: a0c055e0b47a072f8c59c8a9db4514243945aecb2ed3c2e2bb5bcbf38967bedef0bf268e5cdc49b6fecee6014f943d8d96e85c49c05524544fbc50116f2531ba languageName: node linkType: hard "glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6": - version: 7.1.7 - resolution: "glob@npm:7.1.7" + version: 7.2.3 + resolution: "glob@npm:7.2.3" dependencies: fs.realpath: "npm:^1.0.0" inflight: "npm:^1.0.4" inherits: "npm:2" - minimatch: "npm:^3.0.4" + minimatch: "npm:^3.1.1" once: "npm:^1.3.0" path-is-absolute: "npm:^1.0.0" - checksum: fb6d4210ddf8682ac4aaba45dfe6db199c6b2a6f7d2b968317346b151fe47ca17b28403b456a10fc92081025e76a4ff308ce621a56878e618a682e59c282f008 + checksum: c55966a5db7ed2f30976a1490f3165f9d4e20ac7cabf01b55da4cc4f8f53a4c506e6f427e469c2fbf68636200871f3acf07e159ba6d9b65e7386216b98474a34 languageName: node linkType: hard @@ -7930,11 +9127,11 @@ __metadata: linkType: hard "global-dirs@npm:^3.0.0": - version: 3.0.0 - resolution: "global-dirs@npm:3.0.0" + version: 3.0.1 + resolution: "global-dirs@npm:3.0.1" dependencies: ini: "npm:2.0.0" - checksum: cd99c4b445b2419be7a66facde137c43e146f22941bb6c38b1517239fbd36e7bde19e89aadb43e94377ece02dfb40f5dfe0a5202f540c95c8ef7d1d7813e3477 + checksum: 5695c7c0137585dbb9601bdf1e3c02ad4f0050dc8b0fff1b1e9b460bd304271ba57e2426722461da6de7c0bc641167b54a815fb74dc857f9f28f3c4f37550169 languageName: node linkType: hard @@ -7966,11 +9163,20 @@ __metadata: linkType: hard "globals@npm:^13.19.0": - version: 13.19.0 - resolution: "globals@npm:13.19.0" + version: 13.20.0 + resolution: "globals@npm:13.20.0" dependencies: type-fest: "npm:^0.20.2" - checksum: 3f3d6606b78da1731d7a2837e75c5e941e7db414ca4a5ad90e456f771b68552095214457295f88a2b1580cd60b430c72020a3e10e39be1093c55c9331b5889ce + checksum: 1ba80ad03f29b8ca83b066c9d9ae305e7f0ee46164de36efac286fc3a58efc48986d688bf1f427f164f2a65bb1bdfa53beb8c56ae3092be255fc097bdcab1f1a + languageName: node + linkType: hard + +"globalthis@npm:^1.0.3": + version: 1.0.3 + resolution: "globalthis@npm:1.0.3" + dependencies: + define-properties: "npm:^1.1.3" + checksum: 712d9e130f2c47067e6590cb1eee418df1106f53ffeddaadb4c8b0793ac0f46039e5f71008c44089523aa2b58d270bb2c4e5721795ddad114bc23d9eb63ec6d5 languageName: node linkType: hard @@ -8004,17 +9210,29 @@ __metadata: languageName: node linkType: hard -"graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.6": - version: 4.2.6 - resolution: "graceful-fs@npm:4.2.6" - checksum: 8abc40f6af2d149ef2cc7b41c4aa2cf8fb7308ef4735bbf942b6304e188a3c4f3396e774833fbaa751d7f390ab7effbd4bc78820ca3c3cc2697dce9c0dcbd049 +"graceful-fs@npm:^4.1.5, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.6": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: 0228fc1080e6cb20d31920aff457e5d44f137b8864220c204b5ba6461d2d46d30361557a4c054373a8c04a03b59c92a42d40230104bb59c5ea737072bc15709c languageName: node linkType: hard -"grapheme-splitter@npm:^1.0.4": - version: 1.0.4 - resolution: "grapheme-splitter@npm:1.0.4" - checksum: c67a8e522758dd907770a78ad750e6dfdcce327b0696fdd82f4b7acb8bb22b0574c88f806afb3c6597a536fa9016e6e3486071535fd0e9226b8505c67cf2fb01 +"graphemer@npm:^1.4.0": + version: 1.4.0 + resolution: "graphemer@npm:1.4.0" + checksum: a4ee139533e1d1683edb24eaf3e598451e7f1577da3dfc68f247f0601d5d11d264d0ccfad3de3bfcabbed891140fbae84c0403b9d68f4fcb6431c418f971434e + languageName: node + linkType: hard + +"gray-matter@npm:^4.0.3": + version: 4.0.3 + resolution: "gray-matter@npm:4.0.3" + dependencies: + js-yaml: "npm:^3.13.1" + kind-of: "npm:^6.0.2" + section-matter: "npm:^1.0.0" + strip-bom-string: "npm:^1.0.0" + checksum: a1554a503d24b5a846a7da2ff855d7515b7d2fe25e4eb6973b88c92f5f973a04774c302e2320b57e291f682af1eaa547d871cc1f1134520fa91a2d9e17a6bfe1 languageName: node linkType: hard @@ -8025,14 +9243,16 @@ __metadata: languageName: node linkType: hard -"has-bigints@npm:^1.0.1": - version: 1.0.1 - resolution: "has-bigints@npm:1.0.1" - checksum: 95cee3ecac428bc6fd1467b65bd3e17bb165d7ad335e11a710ddbd129e28788847f495fb646af362b37e452f7a824b87b321aa04b5ccd0c91f0141edc34d2194 +"has-ansi@npm:^4.0.1": + version: 4.0.1 + resolution: "has-ansi@npm:4.0.1" + dependencies: + ansi-regex: "npm:^4.1.0" + checksum: 13ae853c158705cf3663423e220827134faa419978b0bf26b5ef21784e62080877c54af84154becc627dbe8a9b25dd240d1d7c39072e965a2c16b463bf1fe94f languageName: node linkType: hard -"has-bigints@npm:^1.0.2": +"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": version: 1.0.2 resolution: "has-bigints@npm:1.0.2" checksum: 2f15628a0353cfc818b8710f306ac3b7ea05ca36d469484d1b0b91337720844c83c7d71f7346fbfa61a12fc0e3a3c39a0b1b1b294735f4bd0049697314e18b8a @@ -8062,14 +9282,14 @@ __metadata: languageName: node linkType: hard -"has-symbols@npm:^1.0.1, has-symbols@npm:^1.0.2": - version: 1.0.2 - resolution: "has-symbols@npm:1.0.2" - checksum: 2397fd4aaa90ca33ceba09c987eb3150209b5196ec984af418897870bc1e7d971c6b24e17aafe1532ff311aa8d46de0cb78ccee0fe785d30bd9ac4865511d6b2 +"has-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "has-proto@npm:1.0.1" + checksum: 0aa0de6013c2132a79fb8b885dc0274b99362807195bed0c69e2469eb0de41bf1695067d5e41adcd4bbd8daed8684250716c55db17478249f225ae3d0846e6bf languageName: node linkType: hard -"has-symbols@npm:^1.0.3": +"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": version: 1.0.3 resolution: "has-symbols@npm:1.0.3" checksum: 2d0abb3382da2945b1b8d9a4afebc8a0770fe07198e727b4fbd7f616c70796f040bf2bd8d6db47e0c590507812a2680594fc77f871238289f6c7870318cf62c9 @@ -8085,7 +9305,7 @@ __metadata: languageName: node linkType: hard -"has-unicode@npm:^2.0.0": +"has-unicode@npm:^2.0.1": version: 2.0.1 resolution: "has-unicode@npm:2.0.1" checksum: d7f38422bc8e339b52014ed5aea2fdcb6545e583ac252081bc7d0970ae8eaa6efa3d056aa3119ac5825bc51fc289b53fa7b3588a40b8bf71a0dabc346513c485 @@ -8101,7 +9321,103 @@ __metadata: languageName: node linkType: hard -"he@npm:^1.2.0": +"hast-util-from-parse5@npm:^7.0.0": + version: 7.1.2 + resolution: "hast-util-from-parse5@npm:7.1.2" + dependencies: + "@types/hast": "npm:^2.0.0" + "@types/unist": "npm:^2.0.0" + hastscript: "npm:^7.0.0" + property-information: "npm:^6.0.0" + vfile: "npm:^5.0.0" + vfile-location: "npm:^4.0.0" + web-namespaces: "npm:^2.0.0" + checksum: 389144121de29cde96f227362c75a2f8ea6c169309273564f3086e5f49475a1a3c1ef4fd925687204cea839002c2af45d626bbe4dc893b3502d084c8530c0753 + languageName: node + linkType: hard + +"hast-util-parse-selector@npm:^3.0.0": + version: 3.1.1 + resolution: "hast-util-parse-selector@npm:3.1.1" + dependencies: + "@types/hast": "npm:^2.0.0" + checksum: 106c2c50c9a040bd0476bac1a2b06c6b1dfa1575e730b261cab94eee536c07e73a86e7d930b8d5563b0e78e04c27ba6a7015b01818374531f1c381e769913e12 + languageName: node + linkType: hard + +"hast-util-raw@npm:^7.0.0, hast-util-raw@npm:^7.2.0": + version: 7.2.3 + resolution: "hast-util-raw@npm:7.2.3" + dependencies: + "@types/hast": "npm:^2.0.0" + "@types/parse5": "npm:^6.0.0" + hast-util-from-parse5: "npm:^7.0.0" + hast-util-to-parse5: "npm:^7.0.0" + html-void-elements: "npm:^2.0.0" + parse5: "npm:^6.0.0" + unist-util-position: "npm:^4.0.0" + unist-util-visit: "npm:^4.0.0" + vfile: "npm:^5.0.0" + web-namespaces: "npm:^2.0.0" + zwitch: "npm:^2.0.0" + checksum: ea0d91ed73cf943a8da6f75f6ccc7d085de310373d752b9af35b76982043782a7ffc889338522387f93522a421f6acf0222019914fed08ec30894c2ab95a72b6 + languageName: node + linkType: hard + +"hast-util-to-html@npm:^8.0.0": + version: 8.0.4 + resolution: "hast-util-to-html@npm:8.0.4" + dependencies: + "@types/hast": "npm:^2.0.0" + "@types/unist": "npm:^2.0.0" + ccount: "npm:^2.0.0" + comma-separated-tokens: "npm:^2.0.0" + hast-util-raw: "npm:^7.0.0" + hast-util-whitespace: "npm:^2.0.0" + html-void-elements: "npm:^2.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + stringify-entities: "npm:^4.0.0" + zwitch: "npm:^2.0.4" + checksum: f4eadbb3e81d872586499c694f9810b006cd609cf49cb08199156fb4c9f960b3948b71e5a8a387cd3cf70ff964940cdade1d2e533481563ae4630152ba32480a + languageName: node + linkType: hard + +"hast-util-to-parse5@npm:^7.0.0": + version: 7.1.0 + resolution: "hast-util-to-parse5@npm:7.1.0" + dependencies: + "@types/hast": "npm:^2.0.0" + comma-separated-tokens: "npm:^2.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + web-namespaces: "npm:^2.0.0" + zwitch: "npm:^2.0.0" + checksum: d7d7fd332e1f06621c8eaa6c6f60067d1f843824ec6ecc43206855ed3bf32f7223f8b5ec0478e280d5206927a7ce42a7221bd256c4db3d4a6d623bdbe89934f5 + languageName: node + linkType: hard + +"hast-util-whitespace@npm:^2.0.0": + version: 2.0.1 + resolution: "hast-util-whitespace@npm:2.0.1" + checksum: b40420185cbbae55206c0bfa6fe97a9199b7887739748ab38ae7e7a3c40121c9063aba7813f077f19070955261413b36adc716520fe25456971fbee9bb5bb789 + languageName: node + linkType: hard + +"hastscript@npm:^7.0.0": + version: 7.2.0 + resolution: "hastscript@npm:7.2.0" + dependencies: + "@types/hast": "npm:^2.0.0" + comma-separated-tokens: "npm:^2.0.0" + hast-util-parse-selector: "npm:^3.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + checksum: c643102848a921cd7b22c3a4efcce638a647c44260995fe07a2979595e278cd9e8078d91bcfd77510520b2373fcb552eb2f201fe4ca99e09e9e1f41a0837c84c + languageName: node + linkType: hard + +"he@npm:1.2.0": version: 1.2.0 resolution: "he@npm:1.2.0" bin: @@ -8118,39 +9434,65 @@ __metadata: linkType: hard "hosted-git-info@npm:^4.0.1": - version: 4.0.2 - resolution: "hosted-git-info@npm:4.0.2" + version: 4.1.0 + resolution: "hosted-git-info@npm:4.1.0" dependencies: lru-cache: "npm:^6.0.0" - checksum: 33367c38588cfc570dd1bb145d918a0ecc19979bf788fad29a3b32045da9b74aa4e00829d2991be16494daf13ae22e5e702a22d2c199ffc9e193fbaac28b89b0 + checksum: d47495db8d2a39faef6cd1adbdced4e6a52d41a4aedec757eb2552e93a881236e431e18e72a3b6d7aa7c575995f5b06b91cce5a86886fdccfbd405df28a61882 languageName: node linkType: hard -"html-minifier-terser@npm:^6.1.0": - version: 6.1.0 - resolution: "html-minifier-terser@npm:6.1.0" +"html-escaper@npm:^3.0.3": + version: 3.0.3 + resolution: "html-escaper@npm:3.0.3" + checksum: 46981801804db16a93e9ebc3a0ebe0a58276651f6ec039b40c56b2b0011277072bab9cdf1db018b2f7bad8da95322d9965bb0822562e825708f9ec0a5ba872d8 + languageName: node + linkType: hard + +"html-minifier-terser@npm:7.2.0": + version: 7.2.0 + resolution: "html-minifier-terser@npm:7.2.0" dependencies: camel-case: "npm:^4.1.2" - clean-css: "npm:^5.2.2" - commander: "npm:^8.3.0" - he: "npm:^1.2.0" + clean-css: "npm:~5.3.2" + commander: "npm:^10.0.0" + entities: "npm:^4.4.0" param-case: "npm:^3.0.4" relateurl: "npm:^0.2.7" - terser: "npm:^5.10.0" + terser: "npm:^5.15.1" bin: html-minifier-terser: cli.js - checksum: 5963506499cc13f1882351f991804058669a01641bf91e3cc29216de61d9c7bcce823345d6cb48303d4fe5abf28004ca3d514bcc335f3ff04a3ad54da02911aa + checksum: 9287823ef09537f522a138930bce6cf28fad9740c194f13dce0b80d22c7870de3814e3e6780f56a4e0bdc2cb20b87af2edbfd12835e3773e60f887bff9e1798f languageName: node linkType: hard -"html-tags@npm:^3.2.0": - version: 3.2.0 - resolution: "html-tags@npm:3.2.0" - checksum: 5829fc4936121f4b6ae29a7ee8555bdc3376dbdb37e0e9186c0346e225e8d1f67aaa6d3aa4847e0b191cba4f2aba591b16a8e416dc282b198bc1da08ac319fe0 +"html-tags@npm:^3.3.1": + version: 3.3.1 + resolution: "html-tags@npm:3.3.1" + checksum: 624b801fe1c8d42cd8f0739e83d9ab59cca7d5cf48febd509264aa316880a96686b4fd90e0ce19ad273dbc128abdaa20e9741bf45bf12ac4b82838bd12a7cd77 languageName: node linkType: hard -"http-cache-semantics@npm:^4.1.0": +"html-void-elements@npm:^2.0.0": + version: 2.0.1 + resolution: "html-void-elements@npm:2.0.1" + checksum: 7f0d9d7f548286809c99d37d0c885dbb74682d98178a90252c2680ffeed2c7a37294ab8a6191707478392cb905e649e8cc0eab82f5f91558d6f61423d237cd7a + languageName: node + linkType: hard + +"htmlparser2@npm:^8.0.0": + version: 8.0.2 + resolution: "htmlparser2@npm:8.0.2" + dependencies: + domelementtype: "npm:^2.3.0" + domhandler: "npm:^5.0.3" + domutils: "npm:^3.0.1" + entities: "npm:^4.4.0" + checksum: 8432dd73dcaa3ec8bb4a314421d6823508bd5cb4d96ddf5ad9eef23c60a67ec122e80aa21af34260f2494bfd8ba33db170e2d4da385fdd2435be6476d83de059 + languageName: node + linkType: hard + +"http-cache-semantics@npm:^4.1.1": version: 4.1.1 resolution: "http-cache-semantics@npm:4.1.1" checksum: 7b4d86f99fb3f07b6a49219420ebdffa077ee99bc5fe1df1f353b84c3d321c767a083a48291afb2fc34a627661b6d54c80a927639a7be9e0c43e8c4f921816bd @@ -8170,14 +9512,14 @@ __metadata: languageName: node linkType: hard -"http-proxy-agent@npm:^4.0.1": - version: 4.0.1 - resolution: "http-proxy-agent@npm:4.0.1" +"http-proxy-agent@npm:^5.0.0": + version: 5.0.0 + resolution: "http-proxy-agent@npm:5.0.0" dependencies: - "@tootallnate/once": "npm:1" + "@tootallnate/once": "npm:2" agent-base: "npm:6" debug: "npm:4" - checksum: 469cd61a706ceebddbdec12624b793e2b467537b6db97b040325558b6ebc2cff66fc2960406dcf29957906a0001ea724f6a0180a88c6ea0349a0ca96fac6ded1 + checksum: b59a9b4bdd7c1d3450956a2974cb7b685517c758853a873064a536f5a831879ac92a28c717f69eb60ff3c924b262cb5aaf80cf62f5c2c24d1129d2b8dadf1e7c languageName: node linkType: hard @@ -8193,12 +9535,12 @@ __metadata: linkType: hard "https-proxy-agent@npm:^5.0.0": - version: 5.0.0 - resolution: "https-proxy-agent@npm:5.0.0" + version: 5.0.1 + resolution: "https-proxy-agent@npm:5.0.1" dependencies: agent-base: "npm:6" debug: "npm:4" - checksum: 77d11b0e2c164d1f63f689247551b821b67c3daa7f13fe2d0445989d9ad224f67f2af8ebda09599de3f4be490b343c82bb37024d8a669c004fd4f38dc12a4d23 + checksum: 8e767faec977400c31bca2ef0f5338b843b781b63fd985c00d199adac2d6c8a5ecc6e553588a6821a058198960f167a3c83f014bd64bef9a15b176d992d29dfe languageName: node linkType: hard @@ -8216,10 +9558,17 @@ __metadata: languageName: node linkType: hard -"human-signals@npm:^3.0.1": - version: 3.0.1 - resolution: "human-signals@npm:3.0.1" - checksum: 00cff8f78516e925bef0d0bc65dfbf8bfad876ef3dc1aeec98f2ba845b56e9a58972a9e002323ef7e6de08b2a2fc0cb9a27ddadf7fae608b2828d241d6ae32b3 +"human-signals@npm:^4.3.0": + version: 4.3.1 + resolution: "human-signals@npm:4.3.1" + checksum: 516afaf3bce1d9ddcc81cfb453c7e7684ae4767f7cff807287195d1f328eea3ccc8cfb63fd4b78de7e3850bcc4587701df767f36f6af353285fe20aa8433b697 + languageName: node + linkType: hard + +"human-signals@npm:^5.0.0": + version: 5.0.0 + resolution: "human-signals@npm:5.0.0" + checksum: d3d6b7a43d06b1a1cf34dbe2bf0f8744ba18972a4dbbb10ec29c96377ece924a34365ee75257de244ae93b784bdc9116c7e9bb2f4d1e0c9f5c1cfc71c779ffc2 languageName: node linkType: hard @@ -8241,7 +9590,16 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:0.4.24": +"i18next@npm:^23.5.1": + version: 23.5.1 + resolution: "i18next@npm:23.5.1" + dependencies: + "@babel/runtime": "npm:^7.22.5" + checksum: bde02988f38b6c3d827cabc3c6c5fc9228772ceb4be5d200f5deb6700b34f02ff93f43502a6b8dacf9154ad10ce5e28086535dd40627c601f3df5e807df96a9a + languageName: node + linkType: hard + +"iconv-lite@npm:0.4.24, iconv-lite@npm:^0.4.4": version: 0.4.24 resolution: "iconv-lite@npm:0.4.24" dependencies: @@ -8260,9 +9618,9 @@ __metadata: linkType: hard "idb@npm:^7.0.1": - version: 7.0.2 - resolution: "idb@npm:7.0.2" - checksum: 54612e6c597a4f3e641104f5abace53a2d78aa7344b2b4cabdbc795e90e57e6ec81b35b6902517076ccfdde8086a84adbf6372fca180cba10c6e02b601e13ce7 + version: 7.1.1 + resolution: "idb@npm:7.1.1" + checksum: 9f9a55d7ef9409d37a0270104b89137cdd2a29fbc5cab65561a1dc1d4cdb25f1239ce9dcd1abdb25b81bf81269fad0e601be7d3bd3d8f06f2060c4c65d059748 languageName: node linkType: hard @@ -8273,42 +9631,39 @@ __metadata: languageName: node linkType: hard -"ignore-by-default@npm:^1.0.1": - version: 1.0.1 - resolution: "ignore-by-default@npm:1.0.1" - checksum: a243c7acff1f7233ac437acc67a13e1757dd1ea7092c1b8e30585844d8fac4d672a0c257dcffd8ef8fe100cfe030580f8c3ec72ddb8064753fcfa3633da8a80a - languageName: node - linkType: hard - -"ignore@npm:^5.2.0": - version: 5.2.0 - resolution: "ignore@npm:5.2.0" - checksum: 0086b6992b2e2c9ec23f009e5939022323f1b4ad291607507045cc67b0a3b5d9724fc425f5300b3ba6d10ef74311bdf71cd26040227c30a182cf1b2a5971226b +"ignore@npm:^5.2.0, ignore@npm:^5.2.4": + version: 5.2.4 + resolution: "ignore@npm:5.2.4" + checksum: 55c58d848bb753a2b7e0b4a19352f9212eae2e4a05e4a12753e90b921108a6caa140adf958a5084b144bedd886b44e3bc93f6b4839e5aba1fb4a72c6625da4c1 languageName: node linkType: hard -"ignore@npm:^5.2.1": - version: 5.2.1 - resolution: "ignore@npm:5.2.1" - checksum: 6b24bc1067595721e6158dd4d0f88e9ebf5f9542e8b69156a93400cc2d1428102e8437b851883c3da2d2c70842330efd4d90519c2027113ee2c8142745cfb357 +"illuminated@npm:^1.3.7": + version: 1.3.7 + resolution: "illuminated@npm:1.3.7" + checksum: c6aa0a0fd43efed32f0825d9b315ef47da20f6d844fc7625c56b796823363d0f1d9f09dd3a38aa02a7812219d9aba004690e7ea16e4f8294d292909dce8ae038 languageName: node linkType: hard -"illuminated@npm:^1.3.0": - version: 1.3.0 - resolution: "illuminated@npm:1.3.0" - checksum: 4c04dc3b2d8e4ceaaf930dd678cedb63c16267777490f8889ca43c3083f1ab5e75803ecfc2e448b342bf136d90152760ba8143c3945267c0c8bc5bb1167eac9e +"image-size@npm:^1.0.2": + version: 1.0.2 + resolution: "image-size@npm:1.0.2" + dependencies: + queue: "npm:6.0.2" + bin: + image-size: bin/image-size.js + checksum: 7b54fb03519d73549a5e39a45d877c47a3d8914b82157665b6d44042e75e4abcf583713ceb91e4ea1edd5cd844e6c6b7b40275f18406c19cb6b0bb1363f0abe3 languageName: node linkType: hard "immutable@npm:^4.0.0": - version: 4.0.0 - resolution: "immutable@npm:4.0.0" - checksum: 16a77443a91ad475cf96b2a5b2c73a66e38e850bf8013779a70b439697f07c3cc4f345621766942511159889e8dc47ca50511ff2303148ddf45abf97e597b06d + version: 4.3.0 + resolution: "immutable@npm:4.3.0" + checksum: 4fcd15a9b7d623e99cbb992f66ea1171218c1c0b2711dbe54a07588d1236c3fc768e47d75313799e9c6b4073bca70e973d57aba8b5c890bc6b22515b0da67e45 languageName: node linkType: hard -"import-fresh@npm:^3.0.0, import-fresh@npm:^3.2.1": +"import-fresh@npm:^3.0.0, import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0": version: 3.3.0 resolution: "import-fresh@npm:3.3.0" dependencies: @@ -8325,6 +9680,13 @@ __metadata: languageName: node linkType: hard +"import-meta-resolve@npm:^3.0.0": + version: 3.0.0 + resolution: "import-meta-resolve@npm:3.0.0" + checksum: 06bc99efcec048f67426a3cfb58b2e62cc134a64ccd9f119020edb3c5f33d2980840770d304dabe1ebb1c937c0848168cc448ec2a6a1f87c61c2fc00923bfbf2 + languageName: node + linkType: hard + "imurmurhash@npm:^0.1.4": version: 0.1.4 resolution: "imurmurhash@npm:0.1.4" @@ -8339,10 +9701,10 @@ __metadata: languageName: node linkType: hard -"infer-owner@npm:^1.0.4": - version: 1.0.4 - resolution: "infer-owner@npm:1.0.4" - checksum: 2020f6d0322e7910ce841134a303c69857e456531d8cd01e336f6eea18122d1085b93ebde961745e5f278233f7f8a3d8b60b9276c8dbd3f49c4c352582ec9504 +"indent-string@npm:^5.0.0": + version: 5.0.0 + resolution: "indent-string@npm:5.0.0" + checksum: 236266380e334d83f79351cd20f94349071fbfc2d2d73b5d07494fefb63e878dcc33cf113047691064e41c6e5d6a6ed2aee5d59f011a80705a4ac338cc99c449 languageName: node linkType: hard @@ -8356,7 +9718,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:~2.0.3": +"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: ca76c7e45ec715bfe6c1dd67b780b9a15068f37b37ab56cf8b773537b2654238469a42950f5f4d301212755e7512be888f627752e778e1863d95cfedefc8b8bd @@ -8370,47 +9732,28 @@ __metadata: languageName: node linkType: hard -"ini@npm:^1.3.4, ini@npm:^1.3.5": +"ini@npm:^1.3.4, ini@npm:^1.3.5, ini@npm:~1.3.0": version: 1.3.8 resolution: "ini@npm:1.3.8" checksum: 37fad549288bc1d016dce7360166c87d28cd1e3ca4077bd30a1bd648285b9a4f6212062a121bec0f06673687a23642b1f945e940998055427c8c15fead710c3a languageName: node linkType: hard -"internal-ip@npm:^7.0.0": - version: 7.0.0 - resolution: "internal-ip@npm:7.0.0" - dependencies: - default-gateway: "npm:^6.0.3" - ipaddr.js: "npm:^2.0.1" - is-ip: "npm:^3.1.0" - p-event: "npm:^4.2.0" - checksum: a97b5310cb3bf3a83eef2a3da094bed075065dfe0d57899f49c4f7ca3ed9e96585c9ea75a1275c249933092c3b80b76645f7dd82a3ae1a89a8afaed8f29f76c1 - languageName: node - linkType: hard - -"internal-slot@npm:^1.0.3": - version: 1.0.3 - resolution: "internal-slot@npm:1.0.3" +"internal-slot@npm:^1.0.3, internal-slot@npm:^1.0.5": + version: 1.0.5 + resolution: "internal-slot@npm:1.0.5" dependencies: - get-intrinsic: "npm:^1.1.0" + get-intrinsic: "npm:^1.2.0" has: "npm:^1.0.3" side-channel: "npm:^1.0.4" - checksum: b08401f1c652927be5238b68ace42c65fda969289b5d38b212389a547762db2602f4f2984c4e83a7b10dd0ca26f3faa1ab609828f0a6f3bfed8aca5ad7a91941 - languageName: node - linkType: hard - -"ip-regex@npm:^4.0.0": - version: 4.3.0 - resolution: "ip-regex@npm:4.3.0" - checksum: 5103df535c71b9b2d99c7c98e5aa80763b05c02d8bf4ee2c133bb88dbee1e83e6117dc85bdac8e5c5d8a2c47fb645d09c2ac59ccbc84cfe94675cfabbe72d531 + checksum: 7ba9f797e33d9f7fb623ed4eb63a8f4697da1423e8dd47a336c759707a14aebc9d2e04c7df286a493f4eac30c178c6ffad89f559beb3e9641992b6a57f933088 languageName: node linkType: hard -"ip@npm:^1.1.5": - version: 1.1.5 - resolution: "ip@npm:1.1.5" - checksum: bf1e24b6571eda04959cb77e8c52f507c326a6282bf347d888c3121c80c8ca1b1b01f83b38ce413988fcd9bdac35208666db56f012e0314180a8f42ea49e591d +"ip@npm:^2.0.0": + version: 2.0.0 + resolution: "ip@npm:2.0.0" + checksum: 42a7cf251b844d98a4c3373d06997b991cd1a7f8a5d43bcf2b4f610517d39c5504f6eb3e73e77f5c1453ac766690e82dab28a8a05a49a6fd7d4a40fad93640e9 languageName: node linkType: hard @@ -8421,10 +9764,21 @@ __metadata: languageName: node linkType: hard -"ipaddr.js@npm:^2.0.1": - version: 2.0.1 - resolution: "ipaddr.js@npm:2.0.1" - checksum: 04ce6c896c82b163a87d0be70fa1701dda54f1315f27419207c9ea95bea025cacbe6335d5e0c1270657158f60d17eeaa0bbb19b60e230e34532adfca786c6dc7 +"ipaddr.js@npm:^2.1.0": + version: 2.1.0 + resolution: "ipaddr.js@npm:2.1.0" + checksum: 1ec53ec67902cd62037a3b728079e9aa45502f310710d85bed3183f832e3db0d4d254a64d6e70be6391cb64d6f2c9b7a98fd139a4f369acfebfb54a896bab743 + languageName: node + linkType: hard + +"is-array-buffer@npm:^3.0.1, is-array-buffer@npm:^3.0.2": + version: 3.0.2 + resolution: "is-array-buffer@npm:3.0.2" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.0" + is-typed-array: "npm:^1.1.10" + checksum: a16f8a01bef76922e75984bd33e38dff931c512d8bb7b8e994898643513fbfedfd7c270f375d4a9c41819c5161b23d9e7fff6c9cbcbd97189a97c1f934a3f7c0 languageName: node linkType: hard @@ -8435,10 +9789,19 @@ __metadata: languageName: node linkType: hard +"is-arrayish@npm:^0.3.1": + version: 0.3.2 + resolution: "is-arrayish@npm:0.3.2" + checksum: aed0a701c526d97138e196db5e445da84fea5b649e9466c1d592d2fa7a2a12aa37acb03ca313c38341787dcec5c45b20559bb2abc101dad585d82227e6bc5480 + languageName: node + linkType: hard + "is-bigint@npm:^1.0.1": - version: 1.0.2 - resolution: "is-bigint@npm:1.0.2" - checksum: ba350a7989fd711d79cdb2169e4b9cc3332d0cfcd85c52fe551c638cd6496830955da29e7a167518fc9fb14ea489eaf89fd359f2273aaed6a085af7322271548 + version: 1.0.4 + resolution: "is-bigint@npm:1.0.4" + dependencies: + has-bigints: "npm:^1.0.1" + checksum: 0e3ca3959ca1a9ee7dd70ce780567f31beeb456993752ba7e33495ed91e734f40decdc258ed450f64f319c0923ea46e2d1de5c4a9dbf89a12de05dc636dd6bfa languageName: node linkType: hard @@ -8452,38 +9815,32 @@ __metadata: linkType: hard "is-boolean-object@npm:^1.1.0": - version: 1.1.1 - resolution: "is-boolean-object@npm:1.1.1" + version: 1.1.2 + resolution: "is-boolean-object@npm:1.1.2" dependencies: call-bind: "npm:^1.0.2" - checksum: 5996d7924574164ae94e51a2f24b437247ff8eb0496f9428943ef91a0872591301945b3c088cf13d52f69780d89cc42cd323736c9dd83082c554a8bc55754237 - languageName: node - linkType: hard - -"is-builtin-module@npm:^3.2.0": - version: 3.2.0 - resolution: "is-builtin-module@npm:3.2.0" - dependencies: - builtin-modules: "npm:^3.3.0" - checksum: 5b26848b69b4bfe4d78599fe5ffc60257c039c0908d7e491f1680c7a1f2d74e74e3ce86f44ea772f788a6e49cc4645f47029d0a8136a5281bf10652d2e1fbb1d + has-tostringtag: "npm:^1.0.0" + checksum: 39616788ace17a15b2a4cbc6bee6dbe96be05e86e6afedf8eb1580a2eb05cd6732dfa58949ebc9343a2c9c389fb8a34a4659e0ef7b5bfc4807ccf9814e0cf9b3 languageName: node linkType: hard -"is-callable@npm:^1.1.4": - version: 1.2.3 - resolution: "is-callable@npm:1.2.3" - checksum: df4d3ef5222504d9933549ccf312df4fc6a220bd46ee0325281312abefc7950c20e16f1d953f57dc54326c772d66b7c4a740ed2d81e1cc5e08ffc033cb700488 +"is-buffer@npm:^2.0.0": + version: 2.0.5 + resolution: "is-buffer@npm:2.0.5" + checksum: e3ca83ee43ce9d896ab8389d74b0e5870c960ea06fdbd1e793b4347631038ef12e5494c339fb2645fc3cb18c0e61dda5bb67b2edea2163b20a6b502500c44601 languageName: node linkType: hard -"is-callable@npm:^1.2.4": - version: 1.2.4 - resolution: "is-callable@npm:1.2.4" - checksum: 6db2b77ca8f98d085e3889dc763b1a39420e6a865a04fc422546c00871c00d8cdfa964d5012011fd6de1d06e375270197565b3437404530fd4d2fc521413c1c0 +"is-builtin-module@npm:^3.2.1": + version: 3.2.1 + resolution: "is-builtin-module@npm:3.2.1" + dependencies: + builtin-modules: "npm:^3.3.0" + checksum: 274c84cb1117fab5a439b77aab054c774778324509cbaab40c340a2f81fdd06f08c8599a99fd671e2f6d814a4419e2bf6e2e43fc0e284443f147d176f7733a42 languageName: node linkType: hard -"is-callable@npm:^1.2.7": +"is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": version: 1.2.7 resolution: "is-callable@npm:1.2.7" checksum: 39d7787a6cd66d620ee4e9d09bb36587c29b39f50550d27dd7bea1d0d46b2a87ad9ac2b3d11f751836f08befc20afc4cb36201de1de26aaf02f298c8c512c102 @@ -8501,60 +9858,62 @@ __metadata: languageName: node linkType: hard -"is-core-module@npm:^2.2.0": - version: 2.4.0 - resolution: "is-core-module@npm:2.4.0" +"is-core-module@npm:^2.11.0, is-core-module@npm:^2.12.0, is-core-module@npm:^2.5.0": + version: 2.12.1 + resolution: "is-core-module@npm:2.12.1" dependencies: has: "npm:^1.0.3" - checksum: 08420cb9ca2598a3f0f8ab8e81750703d94e50560726ebb765ebc4e385c53654460f078e57886b2f4acdc2d79599f31f891bc916366ce53039885b4d08937057 + checksum: ad50fa9887d64a912837625b54df9489005180d829128c5d979355a969e80e65f772a54ac29e8f25a18a2ad2c6b45115deffb32a3e0c2d5b16ee7ad292066b5a languageName: node linkType: hard -"is-core-module@npm:^2.8.1": - version: 2.11.0 - resolution: "is-core-module@npm:2.11.0" +"is-core-module@npm:^2.13.0": + version: 2.13.0 + resolution: "is-core-module@npm:2.13.0" dependencies: has: "npm:^1.0.3" - checksum: c1bf6feab8bba140f691b853db3032d33ce1bc883ecd1b7ddb4e33f2443b4da2bcbba671b6290c34f45c27a8fc02c0bf5e01c68192671f9133029d21a48f25b0 + checksum: accd235c8f9ca944e3083dc71fb7808b37e7a87fa6d20fd39aa2a15850905fae2ae757c777d9933353017358d77b8b54b21f7f9109eaf99061070ea4ca6cd2f9 languageName: node linkType: hard -"is-core-module@npm:^2.9.0": - version: 2.9.0 - resolution: "is-core-module@npm:2.9.0" +"is-date-object@npm:^1.0.1": + version: 1.0.5 + resolution: "is-date-object@npm:1.0.5" dependencies: - has: "npm:^1.0.3" - checksum: ac7e79bde4fe529a7281a2f7e8e7f8128c26a2fe660d248ff91def539c35c4353a5f9ff65c7d61565c4943f2614b0fc9310447680d397e7ca2564f0729ca6429 + has-tostringtag: "npm:^1.0.0" + checksum: a961e52c2f846d5522413ccd47d376a926b0ddd04b5db468b8b091f93d455475ca26c4b9beae386202e5d05ad2c75252d15452c8ddf942891712b3f94debd9d4 languageName: node linkType: hard -"is-date-object@npm:^1.0.1": - version: 1.0.4 - resolution: "is-date-object@npm:1.0.4" - checksum: 6d856cb1da1a96c0571133f14ccd064cac427da507e0fc22d982ad993badec5dd9bf4b314e516eed36efeba08cf3c95879053c32e5e4bbcfb7f0c13fe77e1a34 +"is-docker@npm:^2.0.0": + version: 2.2.1 + resolution: "is-docker@npm:2.2.1" + bin: + is-docker: cli.js + checksum: 4a6decb5f39980f0be8169474b2f2db9f76f77dc83353cdf815e7790b51ed29775eb316e77a868b5c80c4587e8c98d533eef484c0b76f856c576282a8c52920f languageName: node linkType: hard -"is-extglob@npm:^2.1.1": - version: 2.1.1 - resolution: "is-extglob@npm:2.1.1" - checksum: 226b9f6eee1e7da52f72c98ed4ea7fc71ee3a087b6d1c62655c9a81c601caa2fd98b9f9be42fb8163eef2720cdbf046bc7c5548a76755651e540f4b08ff3b120 +"is-docker@npm:^3.0.0": + version: 3.0.0 + resolution: "is-docker@npm:3.0.0" + bin: + is-docker: cli.js + checksum: 91077b4db2c1590d7387bb3db3c0b903cf24adb0b28956801a75f5734947065c3f4f08fa4f3e476fd471854ae89359da796f7da2320e0db948004268ce793ea2 languageName: node linkType: hard -"is-fullwidth-code-point@npm:^1.0.0": - version: 1.0.0 - resolution: "is-fullwidth-code-point@npm:1.0.0" - dependencies: - number-is-nan: "npm:^1.0.0" - checksum: 4ac2325a174bf9bad857527715b947a117d54a6b7b2bc1a059dd7220f30609da5aa4467b4bc523bf78f2b3375d25169bddd31234513713870ab1d8e1d8509d44 +"is-extendable@npm:^0.1.0": + version: 0.1.1 + resolution: "is-extendable@npm:0.1.1" + checksum: ffa5a697b932aeb992b4471674489fd07c223034e0d8ed4b7ef70a7daab850aaccc09519e40d02a36b98b30f978f38697e53cb32e3d4bc3c3d6af229c47a1822 languageName: node linkType: hard -"is-fullwidth-code-point@npm:^2.0.0": - version: 2.0.0 - resolution: "is-fullwidth-code-point@npm:2.0.0" - checksum: 1da88fa5daab611878db8cd1031318b3a4daf9c3b4579d0371da7e28eee9bb6db4070344cfccc41f68b06b4c68971dbc118dad5782a302a09b3a8f84388d0b97 +"is-extglob@npm:^2.1.1": + version: 2.1.1 + resolution: "is-extglob@npm:2.1.1" + checksum: 226b9f6eee1e7da52f72c98ed4ea7fc71ee3a087b6d1c62655c9a81c601caa2fd98b9f9be42fb8163eef2720cdbf046bc7c5548a76755651e540f4b08ff3b120 languageName: node linkType: hard @@ -8572,25 +9931,27 @@ __metadata: languageName: node linkType: hard -"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:~4.0.1": - version: 4.0.1 - resolution: "is-glob@npm:4.0.1" +"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": + version: 4.0.3 + resolution: "is-glob@npm:4.0.3" dependencies: is-extglob: "npm:^2.1.1" - checksum: 6f682939c74f4b873d2017b03bbdc709020771a1a217999f2276184cbcde07a0149c0bafeca090b018ed19854b5c27c4dc7ef49346729dc42941dac9c973bf78 + checksum: 0b2f6c06162a1d6c764b2f1cf0f2617b6e0cb1e8125c0e3b7e838a3e06caac81268ab3c0a4699052df59229c99e8a1dd0217b30476d7643a37fa17a49f1b50af languageName: node linkType: hard -"is-glob@npm:^4.0.3": - version: 4.0.3 - resolution: "is-glob@npm:4.0.3" +"is-inside-container@npm:^1.0.0": + version: 1.0.0 + resolution: "is-inside-container@npm:1.0.0" dependencies: - is-extglob: "npm:^2.1.1" - checksum: 0b2f6c06162a1d6c764b2f1cf0f2617b6e0cb1e8125c0e3b7e838a3e06caac81268ab3c0a4699052df59229c99e8a1dd0217b30476d7643a37fa17a49f1b50af + is-docker: "npm:^3.0.0" + bin: + is-inside-container: cli.js + checksum: 8dc4c406102b07ac253964f1a1b0bed4feec7ecb9f403aeb7bb54c241123ef0eeab9ef35a5fdd404b774b7aa15310a8c125417d907bd1f19c937c7885a312b0c languageName: node linkType: hard -"is-installed-globally@npm:~0.4.0": +"is-installed-globally@npm:^0.4.0, is-installed-globally@npm:~0.4.0": version: 0.4.0 resolution: "is-installed-globally@npm:0.4.0" dependencies: @@ -8600,12 +9961,10 @@ __metadata: languageName: node linkType: hard -"is-ip@npm:^3.1.0": - version: 3.1.0 - resolution: "is-ip@npm:3.1.0" - dependencies: - ip-regex: "npm:^4.0.0" - checksum: cecf8aaa838b39b98621b039c8bb24b0dd85efc9b48d6f72d0ddf0041449596cc3d9738d004ea5ce798cb361d64d5880cb613a67634cb422316ef5a6b77de9bd +"is-interactive@npm:^2.0.0": + version: 2.0.0 + resolution: "is-interactive@npm:2.0.0" + checksum: a5f83ea9113c6a9424e95edb962a907d0f6412bd086bdec38389b576345bc29cec8d57b22c6ff389549c4bdf7540b96612dac743032e875beaef55bb59cd7b06 languageName: node linkType: hard @@ -8623,13 +9982,6 @@ __metadata: languageName: node linkType: hard -"is-negative-zero@npm:^2.0.1": - version: 2.0.1 - resolution: "is-negative-zero@npm:2.0.1" - checksum: e931f210083946ef6c076a8240fb72380015a8cfbba111c78d58e8033c2ecaaa1c0e4433629ca20f7a5c04b5c2643d537d54a21b82ca13be6d212b5ca1d4c40a - languageName: node - linkType: hard - "is-negative-zero@npm:^2.0.2": version: 2.0.2 resolution: "is-negative-zero@npm:2.0.2" @@ -8638,9 +9990,11 @@ __metadata: linkType: hard "is-number-object@npm:^1.0.4": - version: 1.0.5 - resolution: "is-number-object@npm:1.0.5" - checksum: 59672b191fdfe61387fd9623087fe3ba02a06b0c45c66ceadf052d97c3ae6401aa06756c2d6202567936be298efcb04ba6fdf9ee6fe855136516a82816d94cd2 + version: 1.0.7 + resolution: "is-number-object@npm:1.0.7" + dependencies: + has-tostringtag: "npm:^1.0.0" + checksum: fd67ff18bad5c64ce2054a03d92c9f264f0f0cd197ea6951207c3dd1b9bea5b40e933be440e7673ea2f1e2a6b265c1842651c94c12d16efd84bbe9310d9cc600 languageName: node linkType: hard @@ -8679,6 +10033,20 @@ __metadata: languageName: node linkType: hard +"is-plain-obj@npm:^2.1.0": + version: 2.1.0 + resolution: "is-plain-obj@npm:2.1.0" + checksum: d07f99715f51b58ef452a809a416bd75da7ea10152f53adf469dd30b1e262e60f6f9c1182534a7ceb3e82a5516cd9aa9548d6dfd5df7ce03f6298b19691c81df + languageName: node + linkType: hard + +"is-plain-obj@npm:^4.0.0": + version: 4.1.0 + resolution: "is-plain-obj@npm:4.1.0" + checksum: 9d6bfe46ad30eda62cc2f0caec2ee980257a84a0a003523588c8c0e5eb33b6e42e73910f42c323490bfdfdd1bf7fd7854e8f156c275da7c12bebebb1be11c73a + languageName: node + linkType: hard + "is-plain-object@npm:^5.0.0": version: 5.0.0 resolution: "is-plain-object@npm:5.0.0" @@ -8703,13 +10071,6 @@ __metadata: languageName: node linkType: hard -"is-shared-array-buffer@npm:^1.0.1": - version: 1.0.1 - resolution: "is-shared-array-buffer@npm:1.0.1" - checksum: 34a656886363b0acf5fd64233e6265092aae7d5b05b29033ee1e8dc708492ce854445934f097e1c5da0f6eeb20b30753061972eff893f0eeb143f5e5da56769a - languageName: node - linkType: hard - "is-shared-array-buffer@npm:^1.0.2": version: 1.0.2 resolution: "is-shared-array-buffer@npm:1.0.2" @@ -8720,9 +10081,9 @@ __metadata: linkType: hard "is-stream@npm:^2.0.0": - version: 2.0.0 - resolution: "is-stream@npm:2.0.0" - checksum: 313b3cd3540ca8a49da1ab54c99484999c1abc610d497a336cecd7b5e9a5835668b16a9ede43cc2f39207577fe0b36173e3093ee316b3bbb089bb4a8bf79ca70 + version: 2.0.1 + resolution: "is-stream@npm:2.0.1" + checksum: 763e33689433924775b560e63fb7c0f7fae6cbc54fd9c410bb3536341b96fca85ce26720ba13ffb9b46446bdf540308771fe5910462b47b1e7d4c42dbd230f46 languageName: node linkType: hard @@ -8749,14 +10110,7 @@ __metadata: languageName: node linkType: hard -"is-string@npm:^1.0.5": - version: 1.0.6 - resolution: "is-string@npm:1.0.6" - checksum: d2bf224370b81e7784478d7b02fd97dc5d18ec074ff84d738c92f74543b24e64c65e24baa9f2300b9b040203a9c057aeef1323b8e22b0c5c5700e087bf66cf7f - languageName: node - linkType: hard - -"is-string@npm:^1.0.7": +"is-string@npm:^1.0.5, is-string@npm:^1.0.7": version: 1.0.7 resolution: "is-string@npm:1.0.7" dependencies: @@ -8783,6 +10137,19 @@ __metadata: languageName: node linkType: hard +"is-typed-array@npm:^1.1.10, is-typed-array@npm:^1.1.9": + version: 1.1.10 + resolution: "is-typed-array@npm:1.1.10" + dependencies: + available-typed-arrays: "npm:^1.0.5" + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-tostringtag: "npm:^1.0.0" + checksum: c42bdb03b501a76c1b307f087885bc700952fe1ae1f203264c52e3eb467c8a1f69527c5285bce0898eca66a892a988b94e609ea87bcb78f663c1ab57e6286016 + languageName: node + linkType: hard + "is-typedarray@npm:^1.0.0, is-typedarray@npm:~1.0.0": version: 1.0.0 resolution: "is-typedarray@npm:1.0.0" @@ -8797,7 +10164,14 @@ __metadata: languageName: node linkType: hard -"is-weakref@npm:^1.0.1, is-weakref@npm:^1.0.2": +"is-unicode-supported@npm:^1.1.0, is-unicode-supported@npm:^1.3.0": + version: 1.3.0 + resolution: "is-unicode-supported@npm:1.3.0" + checksum: 649beee681fe5d53f9a84f52de4efeebcad5f3295fe9cc095f1d16759fa00b628f6e43d22e33eadeaa9754b3ba57a7123fcbce5739ff04cd288169e1fa0984b1 + languageName: node + linkType: hard + +"is-weakref@npm:^1.0.2": version: 1.0.2 resolution: "is-weakref@npm:1.0.2" dependencies: @@ -8806,10 +10180,28 @@ __metadata: languageName: node linkType: hard -"isarray@npm:~1.0.0": - version: 1.0.0 - resolution: "isarray@npm:1.0.0" - checksum: 7b41a2a80d6285328dddeecd3e45a5c73264e8ff8817bb7dc39f6f47323dfaa28e27c13918aac4aa88e48800a4f1eee2e5e966da433e06085ef0a7592dcf6880 +"is-wsl@npm:^2.2.0": + version: 2.2.0 + resolution: "is-wsl@npm:2.2.0" + dependencies: + is-docker: "npm:^2.0.0" + checksum: 44a5dd51a565631dc02905673e6fc1eded217f5039a20ded7ab17ced7352746937f08dac3f4eecafe5ac854528d6fef2378d8d2ffaab0e6d10109f6a36ed4986 + languageName: node + linkType: hard + +"is-wsl@npm:^3.0.0": + version: 3.0.0 + resolution: "is-wsl@npm:3.0.0" + dependencies: + is-docker: "npm:^3.0.0" + checksum: 4116f960f21b2f384fc222c3e50e4cb97a9c6008f5c2abdc36adfa4e729088ebbe3adaedaad305265a816ca612114baf6d6d920c1f71183662bbcaa67aeee4ce + languageName: node + linkType: hard + +"isarray@npm:^2.0.5": + version: 2.0.5 + resolution: "isarray@npm:2.0.5" + checksum: bd46a907ad163c4c937d08ee6520fc9482cf5457dc0d168457ef755d8f26e75b5e2649962722a4c0f5ab2398a95e431c8469c86a004c42db21230ef40b8720ee languageName: node linkType: hard @@ -8827,17 +10219,30 @@ __metadata: languageName: node linkType: hard +"jackspeak@npm:^2.0.3": + version: 2.2.1 + resolution: "jackspeak@npm:2.2.1" + dependencies: + "@isaacs/cliui": "npm:^8.0.2" + "@pkgjs/parseargs": "npm:^0.11.0" + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: b7c66988fb8575356fcf6b6c0fdcfb89a78fd0aaceb16d1318ae355fb7b6f51a456e9b8cf47ac0875bb7d6b94d82cc649762d5b819f4055ad5c5f5d617a0e20f + languageName: node + linkType: hard + "jake@npm:^10.8.5": - version: 10.8.5 - resolution: "jake@npm:10.8.5" + version: 10.8.7 + resolution: "jake@npm:10.8.7" dependencies: async: "npm:^3.2.3" chalk: "npm:^4.0.2" - filelist: "npm:^1.0.1" - minimatch: "npm:^3.0.4" + filelist: "npm:^1.0.4" + minimatch: "npm:^3.1.2" bin: - jake: ./bin/cli.js - checksum: ac043772e821e889ed31447e2e481e37e66d1955977f5ed6a6a5daab7f66f9e603720f2310c712fe90fd37d268f2b5070bbae114e7979b0010f4779a0e455d91 + jake: bin/cli.js + checksum: 92991ae6bcb5e0889e68e745a667992fdc4bf17e62dfda1d01db535e494347f20d9d47b9bcd31f149dcd96aad2ccd9e2994f917c33b9c6adc124e8730135137d languageName: node linkType: hard @@ -8852,23 +10257,16 @@ __metadata: languageName: node linkType: hard -"joi@npm:^17.4.0": - version: 17.6.0 - resolution: "joi@npm:17.6.0" +"joi@npm:^17.7.0": + version: 17.9.2 + resolution: "joi@npm:17.9.2" dependencies: "@hapi/hoek": "npm:^9.0.0" "@hapi/topo": "npm:^5.0.0" "@sideway/address": "npm:^4.1.3" - "@sideway/formula": "npm:^3.0.0" + "@sideway/formula": "npm:^3.0.1" "@sideway/pinpoint": "npm:^2.0.0" - checksum: 12ab4e5f0903eef2197a14993d8ba050fe20595ed5081840c9412b89bcdb1f0574ba7d23a532512b6e2977004cb690faf5532890a2025bfae996777bcb563480 - languageName: node - linkType: hard - -"js-sdsl@npm:^4.1.4": - version: 4.2.0 - resolution: "js-sdsl@npm:4.2.0" - checksum: 74ea285cb5f76087c4d6f4f959ddb889d6232d16160f86cfb5d538d59b7cf5cfb9966d9cd6603b2d3646804c1372700ae1feafbed1b5d13b5f779618d1285d49 + checksum: 5de710ce67151429e9bb72c25506532b61874888e29cea7bfea2365d8555a9fbabc3a868e8ebab2dba6c0aa443e7c99efee89416dcb88e0fdb6e5425b211a742 languageName: node linkType: hard @@ -8879,7 +10277,14 @@ __metadata: languageName: node linkType: hard -"js-yaml@npm:^4.1.0": +"js-tokens@npm:^8.0.0": + version: 8.0.1 + resolution: "js-tokens@npm:8.0.1" + checksum: 02657053f0dd6b3175a20e6b667b9254b050bbbcd19f9c1e7f2308036c2a4e17dcc377d339405d1f944c69e19cf58be7808611d60ed120efa3b17c429e7b11c8 + languageName: node + linkType: hard + +"js-yaml@npm:4.1.0, js-yaml@npm:^4.1.0": version: 4.1.0 resolution: "js-yaml@npm:4.1.0" dependencies: @@ -8890,6 +10295,18 @@ __metadata: languageName: node linkType: hard +"js-yaml@npm:^3.13.0, js-yaml@npm:^3.13.1": + version: 3.14.1 + resolution: "js-yaml@npm:3.14.1" + dependencies: + argparse: "npm:^1.0.7" + esprima: "npm:^4.0.0" + bin: + js-yaml: bin/js-yaml.js + checksum: 1e0e655c5f9917215112c31302061f425cfd33af0d617e30bb043951226b25f582bcf460b197491966ba1452a98f38bc38accc910b416b9783aa1df99af38df2 + languageName: node + linkType: hard + "jsbn@npm:~0.1.0": version: 0.1.1 resolution: "jsbn@npm:0.1.1" @@ -8966,7 +10383,7 @@ __metadata: languageName: node linkType: hard -"json5@npm:^1.0.1": +"json5@npm:^1.0.2": version: 1.0.2 resolution: "json5@npm:1.0.2" dependencies: @@ -8977,18 +10394,7 @@ __metadata: languageName: node linkType: hard -"json5@npm:^2.1.2, json5@npm:^2.2.0": - version: 2.2.0 - resolution: "json5@npm:2.2.0" - dependencies: - minimist: "npm:^1.2.5" - bin: - json5: lib/cli.js - checksum: 3459a4696949fcf8c03738446cd857b99a49a8957377c11138498e479bbc6d3effdbdc1f4d1471a67ea6d7198fccdcbe82eb3b39b20d252a721d09a8e533e986 - languageName: node - linkType: hard - -"json5@npm:^2.2.2": +"json5@npm:^2.1.3, json5@npm:^2.2.0, json5@npm:^2.2.2, json5@npm:^2.2.3": version: 2.2.3 resolution: "json5@npm:2.2.3" bin: @@ -8997,6 +10403,20 @@ __metadata: languageName: node linkType: hard +"jsonc-parser@npm:^2.3.0": + version: 2.3.1 + resolution: "jsonc-parser@npm:2.3.1" + checksum: 1b29c2e7c7076eef078d2dd1991469c76f42bc29c7f47a425edfcb7e4bcaecd176fbf6c5fd08e590a130d4fd173d2791eda7ba1c940f37f0be2d99b3d269b6d8 + languageName: node + linkType: hard + +"jsonc-parser@npm:^3.2.0": + version: 3.2.0 + resolution: "jsonc-parser@npm:3.2.0" + checksum: dffa53dd8b8aa897575bcd31b767f1a5c90a0229902e4fcf7aaae73d11a2a343eee6f852d432f7f9328b14520f487805014c2284fbe358e904c41f004964b54a + languageName: node + linkType: hard + "jsonfile@npm:^6.0.1": version: 6.1.0 resolution: "jsonfile@npm:6.1.0" @@ -9018,9 +10438,9 @@ __metadata: linkType: hard "jsonpointer@npm:^5.0.0": - version: 5.0.0 - resolution: "jsonpointer@npm:5.0.0" - checksum: b8838e4bcc1282ac060c1063ca2d6d1a762d3bdaf80e44f472f5ebd9679f9477007ac0da6881cf7f146104a7c57e8b1ed80322f45d30752e6da1cbe44a91daa1 + version: 5.0.1 + resolution: "jsonpointer@npm:5.0.1" + checksum: 37c9877fe1f2503a42261ee5eec5b119d80d32a3f8b20ff1c32a9bd95bf6b2f533928f41d71c9ce12a9c019c24306bea75cffe91bcbd52d6755e081d91f85d76 languageName: node linkType: hard @@ -9036,50 +10456,105 @@ __metadata: languageName: node linkType: hard -"kaetram@workspace:.": +"jsx-ast-utils@npm:^3.3.3": + version: 3.3.3 + resolution: "jsx-ast-utils@npm:3.3.3" + dependencies: + array-includes: "npm:^3.1.5" + object.assign: "npm:^4.1.3" + checksum: cb1820fa7f27b2d58a39a236ed5935b5456cc63cd55d134157977e852c50025a13aeaca8a35d1658200bdaf5b1424fc65eaaba5d1aae0f4aa11abf2be7b9dce5 + languageName: node + linkType: hard + +"kaetram@workspace:*, kaetram@workspace:.": version: 0.0.0-use.local resolution: "kaetram@workspace:." dependencies: - "@commitlint/cli": "npm:^17.4.2" - "@commitlint/config-conventional": "npm:^17.4.2" - "@typescript-eslint/eslint-plugin": "npm:^5.56.0" - "@typescript-eslint/parser": "npm:^5.56.0" - eslint: "npm:^8.31.0" - eslint-config-prettier: "npm:^8.6.0" - eslint-plugin-import: "npm:^2.26.0" + "@astrojs/ts-plugin": "npm:^1.1.3" + "@commitlint/cli": "npm:^17.7.1" + "@commitlint/config-conventional": "npm:^17.7.0" + "@types/node": "npm:^20.5.9" + "@typescript-eslint/eslint-plugin": "npm:^6.6.0" + "@typescript-eslint/parser": "npm:^6.6.0" + autoprefixer: "npm:^10.4.15" + eslint: "npm:^8.48.0" + eslint-config-prettier: "npm:^9.0.0" + eslint-plugin-astro: "npm:^0.29.0" + eslint-plugin-import: "npm:^2.28.1" eslint-plugin-import-order-aesthetic: "npm:^1.0.5" + eslint-plugin-jsx-a11y: "npm:^6.7.1" eslint-plugin-prefer-let: "npm:^3.0.1" - eslint-plugin-prettier: "npm:^4.2.1" - eslint-plugin-unicorn: "npm:^45.0.2" + eslint-plugin-prettier: "npm:^5.0.0" + eslint-plugin-unicorn: "npm:^48.0.1" husky: "npm:^8.0.3" - lint-staged: "npm:^13.1.0" - postcss: "npm:^8.4.20" - postcss-assets: "npm:^6.0.0" + lint-staged: "npm:^14.0.1" + postcss: "npm:^8.4.29" + postcss-custom-media: "npm:^10.0.0" + postcss-html: "npm:^1.5.0" + postcss-preset-env: "npm:^9.1.3" postcss-value-parser: "npm:^4.2.0" - prettier: "npm:^2.8.1" - stylelint: "npm:^14.16.1" - typescript: "npm:^5.0.4" + prettier: "npm:^3.0.3" + prettier-plugin-astro: "npm:^0.12.0" + stylelint: "npm:^15.10.3" + stylelint-config-astro: "npm:^1.0.4" + stylelint-config-clean-order: "npm:^5.2.0" + stylelint-config-html: "npm:^1.1.0" + stylelint-config-prettier: "npm:^9.0.5" + stylelint-config-standard-scss: "npm:^11.0.0" + typescript: "npm:^5.2.2" languageName: unknown linkType: soft -"kind-of@npm:^6.0.2, kind-of@npm:^6.0.3": +"kind-of@npm:^6.0.0, kind-of@npm:^6.0.2, kind-of@npm:^6.0.3": version: 6.0.3 resolution: "kind-of@npm:6.0.3" checksum: 4adceee06111de8a2d02e7b542c957caad38f2d54c522da0387f4735804bf1819b2ccd918c8d1c8a73276caf9d728fc8276b53e142d23879c4728a6edcbdf722 languageName: node linkType: hard -"kleur@npm:^4.1.4": - version: 4.1.4 - resolution: "kleur@npm:4.1.4" - checksum: ced21c493a4ab415e036ab05e23012d9869b21fee709ac8dad28b7dc2238191ce9c63e3bb743706f798a39081c31d2a7a67aa425767b578661f63d7bdf564393 +"kleur@npm:^3.0.3": + version: 3.0.3 + resolution: "kleur@npm:3.0.3" + checksum: 91b79c93267542395ca98bed81ba1e10184de1738734938fdc2ac36c6884e75e8ca9e232d8a411056b4339904c47d0162795e66674cafa210fd5c2b0d930e1a4 + languageName: node + linkType: hard + +"kleur@npm:^4.0.3, kleur@npm:^4.1.4, kleur@npm:^4.1.5": + version: 4.1.5 + resolution: "kleur@npm:4.1.5" + checksum: 9b766fbd8e12ff58d20f847864e973c8a03c84c63f1e9aa2e0eca466edc5509043cfddf2632d3ea41061dd2dde84425fe686ed13afd9f430a59fcaa4a17d2a54 languageName: node linkType: hard -"known-css-properties@npm:^0.26.0": - version: 0.26.0 - resolution: "known-css-properties@npm:0.26.0" - checksum: 27a081aa94e402b7d76d53dfe7d401330ece70ae13b4f30681e8cbe35c9ef876ffcc7844a301938517106bad37a703a105fa3d8fcd5c03b0febb89bf5a8e88ba +"known-css-properties@npm:^0.28.0": + version: 0.28.0 + resolution: "known-css-properties@npm:0.28.0" + checksum: ad374d03a9c2e7daebd49d6098b9f298c2011aeb1dad68890df1d4a69398e1baf4edfbbd0f985591fa995b62325d2e97a315c936c7323bdebf8abeff19987590 + languageName: node + linkType: hard + +"knuth-shuffle-seeded@npm:^1.0.6": + version: 1.0.6 + resolution: "knuth-shuffle-seeded@npm:1.0.6" + dependencies: + seed-random: "npm:~2.2.0" + checksum: 5b9ad24a849ffba87d22e899b26d28471256af1089481202f4ec938648a5302dea57a53c11cfa6efdf293fbf93736d172d4f5c6ef7f582143e6e670714835a78 + languageName: node + linkType: hard + +"language-subtag-registry@npm:~0.3.2": + version: 0.3.22 + resolution: "language-subtag-registry@npm:0.3.22" + checksum: 5d97350e417c3e06add9d30a7d39f40885578fa06210e9e07ca2eb527b580a16842bfc76ab1a71a7891d3f908a2928d335a8d8712f0049a183ebe2d4d60fee56 + languageName: node + linkType: hard + +"language-tags@npm:=1.0.5": + version: 1.0.5 + resolution: "language-tags@npm:1.0.5" + dependencies: + language-subtag-registry: "npm:~0.3.2" + checksum: d44aee9111335d0fadfc2d5c4baf6f46eb099b28b2fd54c9cc7007820b4b132553e0c855e798cb53a777353ef22959895211b38ca72aef9ac503e352d093ee28 languageName: node linkType: hard @@ -9097,463 +10572,1038 @@ __metadata: languageName: node linkType: hard -"levn@npm:^0.4.1": - version: 0.4.1 - resolution: "levn@npm:0.4.1" +"levn@npm:^0.4.1": + version: 0.4.1 + resolution: "levn@npm:0.4.1" + dependencies: + prelude-ls: "npm:^1.2.1" + type-check: "npm:~0.4.0" + checksum: b281df6770286ddce58d431441772b75ec04f03264af49532c330fdbe070795196538459754cb9e564e7759dbd79c2f88fab01bb3295b2a70249d1a777016cb4 + languageName: node + linkType: hard + +"lilconfig@npm:2.1.0": + version: 2.1.0 + resolution: "lilconfig@npm:2.1.0" + checksum: 1c7c643ccda7eb00b0d904912c1d7ea9cc36fe2e4e7e752b940daa9ba9550049c5ec1375f835cda58b9a917f6b0fbcae63617c1f63c139c1a20217dae4e58f39 + languageName: node + linkType: hard + +"lines-and-columns@npm:^1.1.6": + version: 1.2.4 + resolution: "lines-and-columns@npm:1.2.4" + checksum: c0807326f935ca3bbb725fe1a90d4a15e9b58939a2e75f5e85aa28e488620088b0f110bac2c384537e3c16cf64134afc67f39dd77f9249dcf7d056400d8c303b + languageName: node + linkType: hard + +"lint-staged@npm:^14.0.1": + version: 14.0.1 + resolution: "lint-staged@npm:14.0.1" + dependencies: + chalk: "npm:5.3.0" + commander: "npm:11.0.0" + debug: "npm:4.3.4" + execa: "npm:7.2.0" + lilconfig: "npm:2.1.0" + listr2: "npm:6.6.1" + micromatch: "npm:4.0.5" + pidtree: "npm:0.6.0" + string-argv: "npm:0.3.2" + yaml: "npm:2.3.1" + bin: + lint-staged: bin/lint-staged.js + checksum: b0ff65d150e647e806b53f8a1398e3d85dfee4d87c4b8714a97ecf2003b052d7e66cb3673c32fc32b3c08637b6ec7dbd5fa28a894da3830f8fd32fe1d7d73cf4 + languageName: node + linkType: hard + +"listr2@npm:6.6.1": + version: 6.6.1 + resolution: "listr2@npm:6.6.1" + dependencies: + cli-truncate: "npm:^3.1.0" + colorette: "npm:^2.0.20" + eventemitter3: "npm:^5.0.1" + log-update: "npm:^5.0.1" + rfdc: "npm:^1.3.0" + wrap-ansi: "npm:^8.1.0" + peerDependencies: + enquirer: ">= 2.3.0 < 3" + peerDependenciesMeta: + enquirer: + optional: true + checksum: d5c874b4df15821bf99d95f840ab7dacc312e3a554ffebfef7cdb348506731e97dc1498d8dd1a90ac245a043ddde8475b4b9e42888e8b1d99664b30df6511297 + languageName: node + linkType: hard + +"listr2@npm:^3.8.3": + version: 3.14.0 + resolution: "listr2@npm:3.14.0" + dependencies: + cli-truncate: "npm:^2.1.0" + colorette: "npm:^2.0.16" + log-update: "npm:^4.0.0" + p-map: "npm:^4.0.0" + rfdc: "npm:^1.3.0" + rxjs: "npm:^7.5.1" + through: "npm:^2.3.8" + wrap-ansi: "npm:^7.0.0" + peerDependencies: + enquirer: ">= 2.3.0 < 3" + peerDependenciesMeta: + enquirer: + optional: true + checksum: ef7cf07d2569ce41744738be2370386db617894df0d09109d60aba442ff582c31faa88b46465e497b17bf5d66d79baa8035f394f74979e545f503df9a057bb74 + languageName: node + linkType: hard + +"load-yaml-file@npm:^0.2.0": + version: 0.2.0 + resolution: "load-yaml-file@npm:0.2.0" + dependencies: + graceful-fs: "npm:^4.1.5" + js-yaml: "npm:^3.13.0" + pify: "npm:^4.0.1" + strip-bom: "npm:^3.0.0" + checksum: d4372278cc6a7d6a17423b776423591dcfe082aec65cd7c06a2e5fa55bfad2808e6ad8a1e544e7fbdf786f2a47468e5c98fa45de2ea470084433b97d07a00115 + languageName: node + linkType: hard + +"local-access@npm:^1.0.1": + version: 1.1.0 + resolution: "local-access@npm:1.1.0" + checksum: 6e36bb61e4d64d9ab80156bc72a4b57291baf1e9d3a5c4a6f9c91d905cb46db7c9021e9e73aa856cfcba82c173389c985827c62d416bfb0523941e5015df2aa4 + languageName: node + linkType: hard + +"locate-path@npm:^5.0.0": + version: 5.0.0 + resolution: "locate-path@npm:5.0.0" + dependencies: + p-locate: "npm:^4.1.0" + checksum: 990eddf17c761030216219e58575787fc0ba8050058eaddc04fd419473524840349c3be6dde342f93007cacc00d6d950f906c44b72a58f68c347c1da8c0dd3a1 + languageName: node + linkType: hard + +"locate-path@npm:^6.0.0": + version: 6.0.0 + resolution: "locate-path@npm:6.0.0" + dependencies: + p-locate: "npm:^5.0.0" + checksum: 8a665300e1e248fe80a27db16616059dfb57d7d6cd14a9893f7b66eee097f0bdffeecdc80e8565f74b253efe6c93f46fe65f2af1513883845bcf38956d35667b + languageName: node + linkType: hard + +"lodash.camelcase@npm:^4.3.0": + version: 4.3.0 + resolution: "lodash.camelcase@npm:4.3.0" + checksum: 773d36b52707814ad5b6880fe8ccefa1a490a69cb5d233b9600e00a310ef64b639f56760e383743ac06901f2c073ee4c317b19896397bf1cf94d1cbcf2706923 + languageName: node + linkType: hard + +"lodash.debounce@npm:^4.0.8": + version: 4.0.8 + resolution: "lodash.debounce@npm:4.0.8" + checksum: 960a803d892fc09976e7b559c36407000c3beb136cf20e88ae6a694b5d7cf64e31dde516079140a945ba695b7d5e5699444d61fd13a70ff7de409bbae7604005 + languageName: node + linkType: hard + +"lodash.isfunction@npm:^3.0.9": + version: 3.0.9 + resolution: "lodash.isfunction@npm:3.0.9" + checksum: 2a26511aa8eb399c41a2e18140e3d7e073db55f62e9477c6938deb5fb7310a4a687cbad4a9d7298c7549c740d2a03d3966475818a49667a6b0204f747b19187f + languageName: node + linkType: hard + +"lodash.isplainobject@npm:^4.0.6": + version: 4.0.6 + resolution: "lodash.isplainobject@npm:4.0.6" + checksum: fd98cdf396efd994340f99a968553f6d37ca5a0e6bcf1e6cbe5953c1ef2ad04dca0503d6979f38938aad0d865940fdfddda85cbc365850d114187afac29f8d04 + languageName: node + linkType: hard + +"lodash.kebabcase@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.kebabcase@npm:4.1.1" + checksum: 676047204bdd37e2efa2178b8fe3a4f61dcc3090d23be098e908ec59e8977b5293072d462f1903a0f77891c53e320a42c4cdfa43b09c301037cdd457a5ed85b8 + languageName: node + linkType: hard + +"lodash.merge@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.merge@npm:4.6.2" + checksum: aab58997bcad5ab91908498bbe8ce4b78e8e5025a944f9a8b6a1f11bd2afba4dae55c61dfdcefadadd6cd04efb0c998109e14c633f4aa1f8b4541e4d252c69ea + languageName: node + linkType: hard + +"lodash.mergewith@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.mergewith@npm:4.6.2" + checksum: 4fe5a0a4bc0dcafea01c75e57a2eee0aaee07327a1cfd0618ff365b86a80e7e1172c2e61cb28ad0e4d96a332d65e53d75540c8701697add1b6f410afeabc0624 + languageName: node + linkType: hard + +"lodash.once@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.once@npm:4.1.1" + checksum: 210c440af77b8f34fa8c7a559b4e7de9b9baef1c9d2fc1e9eae1440034cf0030eca115e81abf164ce6039e4872e0b4b5ade7729394e93aa7545094fc46ea2a29 + languageName: node + linkType: hard + +"lodash.snakecase@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.snakecase@npm:4.1.1" + checksum: 5e840ba77791c15522aa0792688f147a29e60582f70050aafff532a4bbb72c55c001dfa357d605a75614424abdbf38ea313442c8738da0a14c72070182d54251 + languageName: node + linkType: hard + +"lodash.sortby@npm:^4.7.0": + version: 4.7.0 + resolution: "lodash.sortby@npm:4.7.0" + checksum: 533eff6eecb504d3fdfe33e994bf89dd1ed377172b6b82b2690b60e0edd80befa5ad1a4089c2714c564c6f239406d40caac328e3daa16a33fa359263ec501a4e + languageName: node + linkType: hard + +"lodash.startcase@npm:^4.4.0": + version: 4.4.0 + resolution: "lodash.startcase@npm:4.4.0" + checksum: 69016d357418df331d77517ce537d02eb74e149770dcc2036c146e4e21dc203cc4c43ddefa7f43961edbc9c8676a30c8d3de21275d6c0ecc79afd699adb96bee + languageName: node + linkType: hard + +"lodash.truncate@npm:^4.4.2": + version: 4.4.2 + resolution: "lodash.truncate@npm:4.4.2" + checksum: 9d8b0674297831b56b8e78c9143ded43f360de09310d591713555d76cf26739c9d1df65b7f8c5362c028415f0ebe871e549b289ce9809a764763056278abfdbc + languageName: node + linkType: hard + +"lodash.uniq@npm:^4.5.0": + version: 4.5.0 + resolution: "lodash.uniq@npm:4.5.0" + checksum: 8ac56bbaa8a4ccd0dd8b9cabdcee89dfb382f8907fdb6ac12d40d46298c7b4de74c6bdab3a9e6fb4f0307568a67220f9ce86270e17dd8b628a312be9ee3a4767 + languageName: node + linkType: hard + +"lodash.upperfirst@npm:^4.3.1": + version: 4.3.1 + resolution: "lodash.upperfirst@npm:4.3.1" + checksum: 5b588ebd49cc166f12d48f63bdf2b6cb17652dcdcf4e6ab32e5978d13749af055eb0f3835d42995093dab410f03fa56d6c5ba57c1f3e3daa54dff14dd5415539 + languageName: node + linkType: hard + +"lodash@npm:^4.17.15, lodash@npm:^4.17.20, lodash@npm:^4.17.21": + version: 4.17.21 + resolution: "lodash@npm:4.17.21" + checksum: 3ac18e92108d68f88429fcddee609e42cf2b653583d9bac22308815a4cd6b185b89a0ad0d9b0c670c371d9d6b61571a98fee6b36e1db14e52766ca253ed9cba0 + languageName: node + linkType: hard + +"log-symbols@npm:4.1.0, log-symbols@npm:^4.0.0": + version: 4.1.0 + resolution: "log-symbols@npm:4.1.0" + dependencies: + chalk: "npm:^4.1.0" + is-unicode-supported: "npm:^0.1.0" + checksum: 07e344c4cc89ae0184979f26cca88cfd258dd1f05a8737e3942674af7d3d77e6a367c091398d46593d9144ea7673342afd1132b3b901ce6dc78fd1eeb00ea01c + languageName: node + linkType: hard + +"log-symbols@npm:^5.1.0": + version: 5.1.0 + resolution: "log-symbols@npm:5.1.0" + dependencies: + chalk: "npm:^5.0.0" + is-unicode-supported: "npm:^1.1.0" + checksum: 9211e88b6345eecdd4a96ffdd95d5376d4db77ebd9e5d7f4fd9b41f536c64738bd3c68b6bb6d8ec05a16670269bc7797e0ad9cde35907f1e56fec93208f96e81 + languageName: node + linkType: hard + +"log-update@npm:^4.0.0": + version: 4.0.0 + resolution: "log-update@npm:4.0.0" + dependencies: + ansi-escapes: "npm:^4.3.0" + cli-cursor: "npm:^3.1.0" + slice-ansi: "npm:^4.0.0" + wrap-ansi: "npm:^6.2.0" + checksum: b508aeb81f60fab087e44f9eb8591a22b791caa3df8363da9b171518f36406151a9590db573acbb7eeb8b49874944d3bf844d5dee734f810ad8b5a3c5eadbabf + languageName: node + linkType: hard + +"log-update@npm:^5.0.1": + version: 5.0.1 + resolution: "log-update@npm:5.0.1" + dependencies: + ansi-escapes: "npm:^5.0.0" + cli-cursor: "npm:^4.0.0" + slice-ansi: "npm:^5.0.0" + strip-ansi: "npm:^7.0.1" + wrap-ansi: "npm:^8.0.1" + checksum: 90b6e4744addfe234abfe9c1762f3695ecb33bbf0e93553635474654984ed24c63f2b602800983542d83d04ed3326c1a1c0395ba24a1e54f3e5c16534bf6070f + languageName: node + linkType: hard + +"longest-streak@npm:^3.0.0": + version: 3.1.0 + resolution: "longest-streak@npm:3.1.0" + checksum: d9a92b58c5255b61d596eb5d52dd1e67223aa3d97043442b57eb900d3678e52a27b0ea809af8b6bd69bc6e718b89ad2b54afb9beb79091688f4bb745d2165a10 + languageName: node + linkType: hard + +"lower-case@npm:^2.0.2": + version: 2.0.2 + resolution: "lower-case@npm:2.0.2" + dependencies: + tslib: "npm:^2.0.3" + checksum: 2da56ea650669ee9d2427ba349867da18b4cf0190be2fb2b0f8adaa28cffd27bbf4e39b41a619bf653906a584b84c7df606b7f727d3048a8056e4e419407b3e5 + languageName: node + linkType: hard + +"lru-cache@npm:^5.1.1": + version: 5.1.1 + resolution: "lru-cache@npm:5.1.1" + dependencies: + yallist: "npm:^3.0.2" + checksum: 7e3274d0936ac64611d0053664b5c722f2b869c4962a007752251602020345f385885cfeabd0162aa45c7d2ee8a21f461d9d628db348f553c126126b170ad6d2 + languageName: node + linkType: hard + +"lru-cache@npm:^6.0.0": + version: 6.0.0 + resolution: "lru-cache@npm:6.0.0" + dependencies: + yallist: "npm:^4.0.0" + checksum: b2d72088dd27df27189607554990b0fd31d3fbd4037df909ef66f48a14122baf8ffce7f33edc17e6543ea7cd71fa561136518355dde2ad57676fa0b2ea53b85f + languageName: node + linkType: hard + +"lru-cache@npm:^7.7.1": + version: 7.18.3 + resolution: "lru-cache@npm:7.18.3" + checksum: 884c7cb51963cc45bc0d864c704d141c904c93db1bbc236be0eed759e35fc44b5e794a34b0666e193926e5a4320b66e787b1cf531f4f89ed8514a97156f07cb1 + languageName: node + linkType: hard + +"lru-cache@npm:^9.1.1": + version: 9.1.2 + resolution: "lru-cache@npm:9.1.2" + checksum: 95e6da12da11dd05404636c5d8c7f7a3e682bb7d2acb002738f9f6de941eca1e7229aa45a9b4a8375ab55f0ef7a1c34a3b002b066f85c4bc00634ee68e0f978e + languageName: node + linkType: hard + +"lru_map@npm:^0.3.3": + version: 0.3.3 + resolution: "lru_map@npm:0.3.3" + checksum: 356e840fb3fa884e0150272698f7647ee05fcb82641af4e1f5b6ef3e698e4ac999e03f8b8c4dded2be7a3dd164eb504d3cdbab523c90322e1770c190b40099a1 + languageName: node + linkType: hard + +"luxon@npm:3.2.1": + version: 3.2.1 + resolution: "luxon@npm:3.2.1" + checksum: 39d7a8e42372af2fc874853d44f824f5c1e05f93a3b2605436e42212f17158dadcdbb9fec683038f441211fb257d8bb37a9f7cc06f7ae70588798008ca196852 + languageName: node + linkType: hard + +"magic-bytes.js@npm:^1.0.15": + version: 1.0.15 + resolution: "magic-bytes.js@npm:1.0.15" + checksum: 47ba833a8a34e9b152e469ad4e576f3ce44b167539796af3dbb630aa083b12f54bd419456f192776d39cf2037da2e47480916d9b8b58e4ffc59cc566ce0e56a3 + languageName: node + linkType: hard + +"magic-string@npm:0.27.0": + version: 0.27.0 + resolution: "magic-string@npm:0.27.0" + dependencies: + "@jridgewell/sourcemap-codec": "npm:^1.4.13" + checksum: 3b7ea05374ce06a1f4726a752959af578d5cd864b00321f2ffa131b5256776d47b87fbcf569b42abe6e70f53708dec91996776ce942bc68c21f91b205356cd57 + languageName: node + linkType: hard + +"magic-string@npm:^0.25.0, magic-string@npm:^0.25.7": + version: 0.25.9 + resolution: "magic-string@npm:0.25.9" + dependencies: + sourcemap-codec: "npm:^1.4.8" + checksum: 8a2cb8470617fbe2fa9b924b4b1de9322686f035f8b506daa9bbe0dc5d1ba182da9e3b53fa9d3a932ab1b003b05ee81a49f9b9ea169f3c790a979f32222af5c2 + languageName: node + linkType: hard + +"magic-string@npm:^0.30.3": + version: 0.30.3 + resolution: "magic-string@npm:0.30.3" + dependencies: + "@jridgewell/sourcemap-codec": "npm:^1.4.15" + checksum: 9d21ae0d7d1974034824d0443542514a77fbcf447cfdc2e89fccc1d9471b0d7cf8b49e10b2e36ecd69b8b9203704d3e7d7880cc9dfc5fc97a28d05cc63e7d0cc + languageName: node + linkType: hard + +"make-error@npm:^1.1.1": + version: 1.3.6 + resolution: "make-error@npm:1.3.6" + checksum: 4b81ce1392495d554ce5fd28c8de95066642e5e1a5efd395e3b3413bc75068a025d8a567aefb0738ba6da18e73323ffde17794780f632fe4395e009aa9ebcc8a + languageName: node + linkType: hard + +"make-fetch-happen@npm:^11.0.3": + version: 11.1.1 + resolution: "make-fetch-happen@npm:11.1.1" + dependencies: + agentkeepalive: "npm:^4.2.1" + cacache: "npm:^17.0.0" + http-cache-semantics: "npm:^4.1.1" + http-proxy-agent: "npm:^5.0.0" + https-proxy-agent: "npm:^5.0.0" + is-lambda: "npm:^1.0.1" + lru-cache: "npm:^7.7.1" + minipass: "npm:^5.0.0" + minipass-fetch: "npm:^3.0.0" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + negotiator: "npm:^0.6.3" + promise-retry: "npm:^2.0.1" + socks-proxy-agent: "npm:^7.0.0" + ssri: "npm:^10.0.0" + checksum: 26053f51534d0886d8f0c1f4312d442f2bd6d2955a7fd12aa0679fc4ed4734ca2e0168eec517d418b73cedd01d107f86749a340a7386ef8b3ef0cacf018995af + languageName: node + linkType: hard + +"map-obj@npm:^1.0.0": + version: 1.0.1 + resolution: "map-obj@npm:1.0.1" + checksum: 68110c982ea7d80ccac49d93a53529a295a27cf9c392d15f7b5c42b26c3760a33abe7d4163cdaf6e5be023f514e541e36ab604ef42b8c6c7978f6433e826f8dc + languageName: node + linkType: hard + +"map-obj@npm:^4.0.0, map-obj@npm:^4.1.0": + version: 4.3.0 + resolution: "map-obj@npm:4.3.0" + checksum: f87dd958d20a51488dfc3c933c5a64bad4e33053a05bc2c4c431a99e9cb1a5a6096a39cf2f7f5235c6a4540f534d3ff2ecf63664718b8e28f9da7026deda0833 + languageName: node + linkType: hard + +"map-stream@npm:~0.1.0": + version: 0.1.0 + resolution: "map-stream@npm:0.1.0" + checksum: 3eb6020cbbd07226602f849eb95e613087bc1c17a00018f28f1a1f605bc53374fe0554ecac9a841e7a33fc1fd55399a0a01308d90ec73f0693dcae2923969385 + languageName: node + linkType: hard + +"markdown-table@npm:^3.0.0": + version: 3.0.3 + resolution: "markdown-table@npm:3.0.3" + checksum: 12e79c8071bbd32f70d62ccb01b566201cce3aeab941aec1aa181b43b62cdfd45c6dbb378012e466513091dfce4ef9b521acd819228d43e8901eec8bc3a6987c + languageName: node + linkType: hard + +"mathml-tag-names@npm:^2.1.3": + version: 2.1.3 + resolution: "mathml-tag-names@npm:2.1.3" + checksum: b83f0a95c184b8c6a1417c4273ddfb7132230308db5284f0658cf0f3710e80d661e2b145b31e685d6759df908420886d11b65252bab6ed43093dc64ef6ce017a + languageName: node + linkType: hard + +"mdast-util-definitions@npm:^5.0.0": + version: 5.1.2 + resolution: "mdast-util-definitions@npm:5.1.2" dependencies: - prelude-ls: "npm:^1.2.1" - type-check: "npm:~0.4.0" - checksum: b281df6770286ddce58d431441772b75ec04f03264af49532c330fdbe070795196538459754cb9e564e7759dbd79c2f88fab01bb3295b2a70249d1a777016cb4 + "@types/mdast": "npm:^3.0.0" + "@types/unist": "npm:^2.0.0" + unist-util-visit: "npm:^4.0.0" + checksum: 87d692563405ec0fabd673ffbf47db9a4d4e2ee55ea4c4a9e9e99d745624453560f765581b7933bdb86e2bb4aae9d8e45b2885f48c903e687dee4d6f9cf668ab languageName: node linkType: hard -"lilconfig@npm:2.0.6": - version: 2.0.6 - resolution: "lilconfig@npm:2.0.6" - checksum: 12b2f81da97b0f00a06d13a0a86d40c00ce46cc24fcb46b70b374af9593adf4e8a013047101535611c98b5edd10fdeb30942823cb237361c01d033049725a8aa +"mdast-util-definitions@npm:^6.0.0": + version: 6.0.0 + resolution: "mdast-util-definitions@npm:6.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + unist-util-visit: "npm:^5.0.0" + checksum: 58d48e7eb8f5aa13ed096084dc0472662a50b09e4e12e5edbf0a7fccfb3a88a4c724be7406f293530a702afc112fb66424d48dfa01d02d006235bf4205d242f8 languageName: node linkType: hard -"lines-and-columns@npm:^1.1.6": - version: 1.1.6 - resolution: "lines-and-columns@npm:1.1.6" - checksum: 7175bf040f74048fa4a355ee97c328af2a95b6776021d441134b1e422ae3d9a0378663b62abd71f56789de14ce7b8d95143d3b88962e612f83d6397730edb08f +"mdast-util-find-and-replace@npm:^2.0.0": + version: 2.2.2 + resolution: "mdast-util-find-and-replace@npm:2.2.2" + dependencies: + "@types/mdast": "npm:^3.0.0" + escape-string-regexp: "npm:^5.0.0" + unist-util-is: "npm:^5.0.0" + unist-util-visit-parents: "npm:^5.0.0" + checksum: 7cb4553467b6be4e457c8a1aa2e031311e336287ba35e6a43f96b191434dcf1e23aec133e4f52a5c314e1592081ee66468093dc5936bda76996c979dd1f92bfc languageName: node linkType: hard -"lint-staged@npm:^13.1.0": - version: 13.1.0 - resolution: "lint-staged@npm:13.1.0" +"mdast-util-from-markdown@npm:^1.0.0": + version: 1.3.1 + resolution: "mdast-util-from-markdown@npm:1.3.1" dependencies: - cli-truncate: "npm:^3.1.0" - colorette: "npm:^2.0.19" - commander: "npm:^9.4.1" - debug: "npm:^4.3.4" - execa: "npm:^6.1.0" - lilconfig: "npm:2.0.6" - listr2: "npm:^5.0.5" - micromatch: "npm:^4.0.5" - normalize-path: "npm:^3.0.0" - object-inspect: "npm:^1.12.2" - pidtree: "npm:^0.6.0" - string-argv: "npm:^0.3.1" - yaml: "npm:^2.1.3" - bin: - lint-staged: bin/lint-staged.js - checksum: 7b4aaafc636daea65b3165e6fbc17f88095b86da65ffb32fc81586faf6b61033e42507e5d6f9fc23fe34c6b43c27cfe98d0e308736d53bf133c5fce933ea53e8 + "@types/mdast": "npm:^3.0.0" + "@types/unist": "npm:^2.0.0" + decode-named-character-reference: "npm:^1.0.0" + mdast-util-to-string: "npm:^3.1.0" + micromark: "npm:^3.0.0" + micromark-util-decode-numeric-character-reference: "npm:^1.0.0" + micromark-util-decode-string: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + unist-util-stringify-position: "npm:^3.0.0" + uvu: "npm:^0.5.0" + checksum: 88f5e9be66338b8f6ba204887fd9364ecb98aadf726a8691a96422c408580d3cb43c47273e6dc534eb5003cf8d00fb5f412c24348a319794ab7092dfc02c31f7 languageName: node linkType: hard -"listr2@npm:^3.8.3": - version: 3.14.0 - resolution: "listr2@npm:3.14.0" +"mdast-util-gfm-autolink-literal@npm:^1.0.0": + version: 1.0.3 + resolution: "mdast-util-gfm-autolink-literal@npm:1.0.3" dependencies: - cli-truncate: "npm:^2.1.0" - colorette: "npm:^2.0.16" - log-update: "npm:^4.0.0" - p-map: "npm:^4.0.0" - rfdc: "npm:^1.3.0" - rxjs: "npm:^7.5.1" - through: "npm:^2.3.8" - wrap-ansi: "npm:^7.0.0" - peerDependencies: - enquirer: ">= 2.3.0 < 3" - peerDependenciesMeta: - enquirer: - optional: true - checksum: ef7cf07d2569ce41744738be2370386db617894df0d09109d60aba442ff582c31faa88b46465e497b17bf5d66d79baa8035f394f74979e545f503df9a057bb74 + "@types/mdast": "npm:^3.0.0" + ccount: "npm:^2.0.0" + mdast-util-find-and-replace: "npm:^2.0.0" + micromark-util-character: "npm:^1.0.0" + checksum: ee586b7eaf1c860399ef49d26db717566434008acd5c56fb665af612e223c55b7cb5757e4e2640d5a857ea400e4c23f7d7beba1765120307be5dbaf8dffa67b3 languageName: node linkType: hard -"listr2@npm:^5.0.5": - version: 5.0.6 - resolution: "listr2@npm:5.0.6" +"mdast-util-gfm-footnote@npm:^1.0.0": + version: 1.0.2 + resolution: "mdast-util-gfm-footnote@npm:1.0.2" dependencies: - cli-truncate: "npm:^2.1.0" - colorette: "npm:^2.0.19" - log-update: "npm:^4.0.0" - p-map: "npm:^4.0.0" - rfdc: "npm:^1.3.0" - rxjs: "npm:^7.5.7" - through: "npm:^2.3.8" - wrap-ansi: "npm:^7.0.0" - peerDependencies: - enquirer: ">= 2.3.0 < 3" - peerDependenciesMeta: - enquirer: - optional: true - checksum: 2dce2cec3476b16257451acf2abf94b7b4bdfb9b53e5d4c89320eca42cff92de54d058ffa0e5f9a6c20086b456882f4c1dc453d061cf24d722e516b9b28c6503 + "@types/mdast": "npm:^3.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + checksum: d7dfac62220675c440191a519b9e4faea7e437acca7f11c78ccd1f6e871a5299b67db60cc4484afa0b53f9d79de0250ac031f7fe44401fff676a6b7061e8cc97 languageName: node linkType: hard -"local-access@npm:^1.0.1": - version: 1.1.0 - resolution: "local-access@npm:1.1.0" - checksum: 6e36bb61e4d64d9ab80156bc72a4b57291baf1e9d3a5c4a6f9c91d905cb46db7c9021e9e73aa856cfcba82c173389c985827c62d416bfb0523941e5015df2aa4 +"mdast-util-gfm-strikethrough@npm:^1.0.0": + version: 1.0.3 + resolution: "mdast-util-gfm-strikethrough@npm:1.0.3" + dependencies: + "@types/mdast": "npm:^3.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + checksum: a339adebc8eaa11091febed4f3433cdd23f83bc691495406783e19521e2aa703324edd420ef5bfe3b90cc32f1557d69aeca2c9ea31021e536c734691bc2f088e languageName: node linkType: hard -"locate-path@npm:^5.0.0": - version: 5.0.0 - resolution: "locate-path@npm:5.0.0" +"mdast-util-gfm-table@npm:^1.0.0": + version: 1.0.7 + resolution: "mdast-util-gfm-table@npm:1.0.7" dependencies: - p-locate: "npm:^4.1.0" - checksum: 990eddf17c761030216219e58575787fc0ba8050058eaddc04fd419473524840349c3be6dde342f93007cacc00d6d950f906c44b72a58f68c347c1da8c0dd3a1 + "@types/mdast": "npm:^3.0.0" + markdown-table: "npm:^3.0.0" + mdast-util-from-markdown: "npm:^1.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + checksum: c1c1276a222bd7d6894e1030ded84a05a83f086920fcc470e929915008864d63099e47a6b6abe01dc5dcce09850ee7499c2f3a34287d3e945085650f2fecbd27 languageName: node linkType: hard -"locate-path@npm:^6.0.0": - version: 6.0.0 - resolution: "locate-path@npm:6.0.0" +"mdast-util-gfm-task-list-item@npm:^1.0.0": + version: 1.0.2 + resolution: "mdast-util-gfm-task-list-item@npm:1.0.2" dependencies: - p-locate: "npm:^5.0.0" - checksum: 8a665300e1e248fe80a27db16616059dfb57d7d6cd14a9893f7b66eee097f0bdffeecdc80e8565f74b253efe6c93f46fe65f2af1513883845bcf38956d35667b + "@types/mdast": "npm:^3.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + checksum: d8526bd6cbdf1a38c523a383d266e6cdde141bc948cc6c8497507182584e7e60a0b09eed719ead06c6df3b9f38383108744d504e1b74529431f26d0781d4ea63 languageName: node linkType: hard -"lodash.camelcase@npm:^4.3.0": - version: 4.3.0 - resolution: "lodash.camelcase@npm:4.3.0" - checksum: 773d36b52707814ad5b6880fe8ccefa1a490a69cb5d233b9600e00a310ef64b639f56760e383743ac06901f2c073ee4c317b19896397bf1cf94d1cbcf2706923 +"mdast-util-gfm@npm:^2.0.0": + version: 2.0.2 + resolution: "mdast-util-gfm@npm:2.0.2" + dependencies: + mdast-util-from-markdown: "npm:^1.0.0" + mdast-util-gfm-autolink-literal: "npm:^1.0.0" + mdast-util-gfm-footnote: "npm:^1.0.0" + mdast-util-gfm-strikethrough: "npm:^1.0.0" + mdast-util-gfm-table: "npm:^1.0.0" + mdast-util-gfm-task-list-item: "npm:^1.0.0" + mdast-util-to-markdown: "npm:^1.0.0" + checksum: 13c09d3890607546a70d840412d7ae1402a5948b1ef7108a6eec7e02c719fb795ac328d1c39005baccf8527e4ed76097398ebbbebe1e085930eac0a91d8fd9ce languageName: node linkType: hard -"lodash.debounce@npm:^4.0.8": - version: 4.0.8 - resolution: "lodash.debounce@npm:4.0.8" - checksum: 960a803d892fc09976e7b559c36407000c3beb136cf20e88ae6a694b5d7cf64e31dde516079140a945ba695b7d5e5699444d61fd13a70ff7de409bbae7604005 +"mdast-util-phrasing@npm:^3.0.0": + version: 3.0.1 + resolution: "mdast-util-phrasing@npm:3.0.1" + dependencies: + "@types/mdast": "npm:^3.0.0" + unist-util-is: "npm:^5.0.0" + checksum: 1b5537486cfcbdfbea8150c288cbfcc1afa7c867eafa62e890e439e5714dc610e0c33b0897ba103e0b3ce400bd848e2b84ec2c4eb6687368fed58a927cc36970 languageName: node linkType: hard -"lodash.isfunction@npm:^3.0.9": - version: 3.0.9 - resolution: "lodash.isfunction@npm:3.0.9" - checksum: 2a26511aa8eb399c41a2e18140e3d7e073db55f62e9477c6938deb5fb7310a4a687cbad4a9d7298c7549c740d2a03d3966475818a49667a6b0204f747b19187f +"mdast-util-to-hast@npm:^12.1.0": + version: 12.3.0 + resolution: "mdast-util-to-hast@npm:12.3.0" + dependencies: + "@types/hast": "npm:^2.0.0" + "@types/mdast": "npm:^3.0.0" + mdast-util-definitions: "npm:^5.0.0" + micromark-util-sanitize-uri: "npm:^1.1.0" + trim-lines: "npm:^3.0.0" + unist-util-generated: "npm:^2.0.0" + unist-util-position: "npm:^4.0.0" + unist-util-visit: "npm:^4.0.0" + checksum: 8a0cf794a426cdb6490c5361d18e489ac5f7b8f966241fdb44131283322f9e13fa217118a25232107356838148dd7f1dfa2dec1c7359fbfa1f227611f538668d languageName: node linkType: hard -"lodash.isplainobject@npm:^4.0.6": - version: 4.0.6 - resolution: "lodash.isplainobject@npm:4.0.6" - checksum: fd98cdf396efd994340f99a968553f6d37ca5a0e6bcf1e6cbe5953c1ef2ad04dca0503d6979f38938aad0d865940fdfddda85cbc365850d114187afac29f8d04 +"mdast-util-to-markdown@npm:^1.0.0, mdast-util-to-markdown@npm:^1.3.0": + version: 1.5.0 + resolution: "mdast-util-to-markdown@npm:1.5.0" + dependencies: + "@types/mdast": "npm:^3.0.0" + "@types/unist": "npm:^2.0.0" + longest-streak: "npm:^3.0.0" + mdast-util-phrasing: "npm:^3.0.0" + mdast-util-to-string: "npm:^3.0.0" + micromark-util-decode-string: "npm:^1.0.0" + unist-util-visit: "npm:^4.0.0" + zwitch: "npm:^2.0.0" + checksum: 0882c1f35f9ef6afe293ff5d0da57661a56a49a55072e4466b570140c089aad228d53cef53b7186e00904f799d947217f4191604748d3b5ae4889cb6ff89540c languageName: node linkType: hard -"lodash.kebabcase@npm:^4.1.1": - version: 4.1.1 - resolution: "lodash.kebabcase@npm:4.1.1" - checksum: 676047204bdd37e2efa2178b8fe3a4f61dcc3090d23be098e908ec59e8977b5293072d462f1903a0f77891c53e320a42c4cdfa43b09c301037cdd457a5ed85b8 +"mdast-util-to-string@npm:^3.0.0, mdast-util-to-string@npm:^3.1.0": + version: 3.2.0 + resolution: "mdast-util-to-string@npm:3.2.0" + dependencies: + "@types/mdast": "npm:^3.0.0" + checksum: c38ba86a646928328f0e1d2f43b76d1c3b26672844ad77292c1d5427e40cd1b2880d8eb95e2d564f41fdefc945025c2d28dc47565e1b6ca8b94c0a8236aa66c6 languageName: node linkType: hard -"lodash.merge@npm:^4.6.2": - version: 4.6.2 - resolution: "lodash.merge@npm:4.6.2" - checksum: aab58997bcad5ab91908498bbe8ce4b78e8e5025a944f9a8b6a1f11bd2afba4dae55c61dfdcefadadd6cd04efb0c998109e14c633f4aa1f8b4541e4d252c69ea +"mdn-data@npm:2.0.28": + version: 2.0.28 + resolution: "mdn-data@npm:2.0.28" + checksum: b43c9aff3f5872f11d938a3a330e10fb0b5598f51c7534e18327357016ac1da868ac4d5500132ae75008711352dfbd8a209940120b55f6d3db92ebf4bd30a479 languageName: node linkType: hard -"lodash.mergewith@npm:^4.6.2": - version: 4.6.2 - resolution: "lodash.mergewith@npm:4.6.2" - checksum: 4fe5a0a4bc0dcafea01c75e57a2eee0aaee07327a1cfd0618ff365b86a80e7e1172c2e61cb28ad0e4d96a332d65e53d75540c8701697add1b6f410afeabc0624 +"mdn-data@npm:2.0.30": + version: 2.0.30 + resolution: "mdn-data@npm:2.0.30" + checksum: 952bebbfabbe6a2182ad01733e40a5203019514e2895432b386ec2d825b7a8c111ca416724f2ca28d7945a406882deabe66c621b42b35bc5aea64b49a4beb41a languageName: node linkType: hard -"lodash.once@npm:^4.1.1": - version: 4.1.1 - resolution: "lodash.once@npm:4.1.1" - checksum: 210c440af77b8f34fa8c7a559b4e7de9b9baef1c9d2fc1e9eae1440034cf0030eca115e81abf164ce6039e4872e0b4b5ade7729394e93aa7545094fc46ea2a29 +"media-typer@npm:0.3.0": + version: 0.3.0 + resolution: "media-typer@npm:0.3.0" + checksum: 21806e15268f71b2bbf35a57b5eb9a42e14be638b8b855e210fb90282744e622f9d232f34f1cf566dc487819ce66bbb8aa6568e3267f48b12e92e2ba679838ae languageName: node linkType: hard -"lodash.snakecase@npm:^4.1.1": - version: 4.1.1 - resolution: "lodash.snakecase@npm:4.1.1" - checksum: 5e840ba77791c15522aa0792688f147a29e60582f70050aafff532a4bbb72c55c001dfa357d605a75614424abdbf38ea313442c8738da0a14c72070182d54251 +"memory-pager@npm:^1.0.2": + version: 1.5.0 + resolution: "memory-pager@npm:1.5.0" + checksum: 6b00ff499b3b6a168d8b713d5c33f3ea08fd24c19a8b42adc64847cfa62acdf7a3cfd81f02d6eab51773b6e118c628ba6694ecb55647d4c1efe7b11e67017e35 languageName: node linkType: hard -"lodash.sortby@npm:^4.7.0": - version: 4.7.0 - resolution: "lodash.sortby@npm:4.7.0" - checksum: 533eff6eecb504d3fdfe33e994bf89dd1ed377172b6b82b2690b60e0edd80befa5ad1a4089c2714c564c6f239406d40caac328e3daa16a33fa359263ec501a4e +"meow@npm:^10.1.5": + version: 10.1.5 + resolution: "meow@npm:10.1.5" + dependencies: + "@types/minimist": "npm:^1.2.2" + camelcase-keys: "npm:^7.0.0" + decamelize: "npm:^5.0.0" + decamelize-keys: "npm:^1.1.0" + hard-rejection: "npm:^2.1.0" + minimist-options: "npm:4.1.0" + normalize-package-data: "npm:^3.0.2" + read-pkg-up: "npm:^8.0.0" + redent: "npm:^4.0.0" + trim-newlines: "npm:^4.0.2" + type-fest: "npm:^1.2.2" + yargs-parser: "npm:^20.2.9" + checksum: 691611773245fea2109b89b36f0ceeb6c7e504a396ae8d2f5431f2a4e206e6d3f26e1638ac3d3cf1198adde92ef9d5108eb8c156aa08d1b3ca25c28eba11a0f1 languageName: node linkType: hard -"lodash.startcase@npm:^4.4.0": - version: 4.4.0 - resolution: "lodash.startcase@npm:4.4.0" - checksum: 69016d357418df331d77517ce537d02eb74e149770dcc2036c146e4e21dc203cc4c43ddefa7f43961edbc9c8676a30c8d3de21275d6c0ecc79afd699adb96bee +"meow@npm:^8.0.0, meow@npm:^8.1.2": + version: 8.1.2 + resolution: "meow@npm:8.1.2" + dependencies: + "@types/minimist": "npm:^1.2.0" + camelcase-keys: "npm:^6.2.2" + decamelize-keys: "npm:^1.1.0" + hard-rejection: "npm:^2.1.0" + minimist-options: "npm:4.1.0" + normalize-package-data: "npm:^3.0.0" + read-pkg-up: "npm:^7.0.1" + redent: "npm:^3.0.0" + trim-newlines: "npm:^3.0.0" + type-fest: "npm:^0.18.0" + yargs-parser: "npm:^20.2.3" + checksum: e36c879078e6478281fb5ce3dbb15f5b960f2694870e5c12213ab8ca9c3410aadf6f9615b0004a643297bad5e1d5faa5f139fd698add26ad5945a095905e9628 languageName: node linkType: hard -"lodash.truncate@npm:^4.4.2": - version: 4.4.2 - resolution: "lodash.truncate@npm:4.4.2" - checksum: 9d8b0674297831b56b8e78c9143ded43f360de09310d591713555d76cf26739c9d1df65b7f8c5362c028415f0ebe871e549b289ce9809a764763056278abfdbc +"merge-descriptors@npm:1.0.1": + version: 1.0.1 + resolution: "merge-descriptors@npm:1.0.1" + checksum: 6c8d19415ddd30b17ebd8e4474897549915cb90bb1caa13bbc55cce27a72d377c289abd300a3e8c6c1a6d61c4ea1fbe297addf032a9d75cb8de2788bc8b9cb2c languageName: node linkType: hard -"lodash.uniq@npm:^4.5.0": - version: 4.5.0 - resolution: "lodash.uniq@npm:4.5.0" - checksum: 8ac56bbaa8a4ccd0dd8b9cabdcee89dfb382f8907fdb6ac12d40d46298c7b4de74c6bdab3a9e6fb4f0307568a67220f9ce86270e17dd8b628a312be9ee3a4767 +"merge-stream@npm:^2.0.0": + version: 2.0.0 + resolution: "merge-stream@npm:2.0.0" + checksum: 39a20c6f74e424ffb406cba0f4907c9ce06a85c84fb42a5628c6a39cd56fb3e70481b6f4d3412cf502cc3416c6e14d8d9ae6b2a4d461e56879350741220bd1e9 languageName: node linkType: hard -"lodash.uniqwith@npm:^4.5.0": - version: 4.5.0 - resolution: "lodash.uniqwith@npm:4.5.0" - checksum: 3ac71961c95da9d89c0998ccedc5efc11acf9a2efa30ecce707bd39cb0cbe44ae51d34bc68db724a10bcff07b9d8a30a47019fe418e20b7fb0135e0e3083d8e1 +"merge2@npm:^1.3.0, merge2@npm:^1.4.1": + version: 1.4.1 + resolution: "merge2@npm:1.4.1" + checksum: d58d7c31e24ccb93509def2af306eca9a55ad8b8862a26ea7deda3c9338e5d33365f57197ad37af68c319e5e2a1faf089e5d05894d0dc29ff07025b30b8ff8b0 languageName: node linkType: hard -"lodash.upperfirst@npm:^4.3.1": - version: 4.3.1 - resolution: "lodash.upperfirst@npm:4.3.1" - checksum: 5b588ebd49cc166f12d48f63bdf2b6cb17652dcdcf4e6ab32e5978d13749af055eb0f3835d42995093dab410f03fa56d6c5ba57c1f3e3daa54dff14dd5415539 +"methods@npm:~1.1.2": + version: 1.1.2 + resolution: "methods@npm:1.1.2" + checksum: 4641d1eda8231aee6774d28a32249f1d4f04e2a58a86c4a968eed39d178d64594ed829301eb603356decc9bd423eacd68d6bde7874a291475800a1568e547d4e languageName: node linkType: hard -"lodash@npm:^4.15.0, lodash@npm:^4.17.14, lodash@npm:^4.17.15, lodash@npm:^4.17.20, lodash@npm:^4.17.21": - version: 4.17.21 - resolution: "lodash@npm:4.17.21" - checksum: 3ac18e92108d68f88429fcddee609e42cf2b653583d9bac22308815a4cd6b185b89a0ad0d9b0c670c371d9d6b61571a98fee6b36e1db14e52766ca253ed9cba0 +"micromark-core-commonmark@npm:^1.0.0, micromark-core-commonmark@npm:^1.0.1": + version: 1.1.0 + resolution: "micromark-core-commonmark@npm:1.1.0" + dependencies: + decode-named-character-reference: "npm:^1.0.0" + micromark-factory-destination: "npm:^1.0.0" + micromark-factory-label: "npm:^1.0.0" + micromark-factory-space: "npm:^1.0.0" + micromark-factory-title: "npm:^1.0.0" + micromark-factory-whitespace: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-chunked: "npm:^1.0.0" + micromark-util-classify-character: "npm:^1.0.0" + micromark-util-html-tag-name: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-resolve-all: "npm:^1.0.0" + micromark-util-subtokenize: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.1" + uvu: "npm:^0.5.0" + checksum: 6494d6d0ee78a23c02c5b510eaaff3c0a2b32b0e8c585a3db6e702d2679e3a73bc178b04a06fe2e6ca0d6fc248784f7e56517be8c10d824e6b9b23e4967f61b6 + languageName: node + linkType: hard + +"micromark-extension-gfm-autolink-literal@npm:^1.0.0": + version: 1.0.5 + resolution: "micromark-extension-gfm-autolink-literal@npm:1.0.5" + dependencies: + micromark-util-character: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 994b9d3e1c465860b0a3f10ff65333a1d4330f00d4248da9697bae35ae95e43ad533203e330f8b0ed730cc72cd554274e2aee91af3aa6e75dc3cd7c07b764180 languageName: node linkType: hard -"log-symbols@npm:^4.0.0": - version: 4.1.0 - resolution: "log-symbols@npm:4.1.0" +"micromark-extension-gfm-footnote@npm:^1.0.0": + version: 1.1.2 + resolution: "micromark-extension-gfm-footnote@npm:1.1.2" dependencies: - chalk: "npm:^4.1.0" - is-unicode-supported: "npm:^0.1.0" - checksum: 07e344c4cc89ae0184979f26cca88cfd258dd1f05a8737e3942674af7d3d77e6a367c091398d46593d9144ea7673342afd1132b3b901ce6dc78fd1eeb00ea01c + micromark-core-commonmark: "npm:^1.0.0" + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: ffd62b054f250dda57ff98ff12428e4890d20e5dd5bd82a6bc521178b5cf6c1dd0f71f382ef000ced595e4e0fd0911d9b0bf97eac32497be7e9ecda4394c1fa0 languageName: node linkType: hard -"log-update@npm:^4.0.0": - version: 4.0.0 - resolution: "log-update@npm:4.0.0" +"micromark-extension-gfm-strikethrough@npm:^1.0.0": + version: 1.0.7 + resolution: "micromark-extension-gfm-strikethrough@npm:1.0.7" dependencies: - ansi-escapes: "npm:^4.3.0" - cli-cursor: "npm:^3.1.0" - slice-ansi: "npm:^4.0.0" - wrap-ansi: "npm:^6.2.0" - checksum: b508aeb81f60fab087e44f9eb8591a22b791caa3df8363da9b171518f36406151a9590db573acbb7eeb8b49874944d3bf844d5dee734f810ad8b5a3c5eadbabf + micromark-util-chunked: "npm:^1.0.0" + micromark-util-classify-character: "npm:^1.0.0" + micromark-util-resolve-all: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 65f063ab3ca14f70eb6f6a5b0a362b138fa0b46f2343e7b28c322108faa703f785b459a1614f7bfd9c0205fd9fbd225a6d80a824ddb3ba739bb211d186b9ef96 languageName: node linkType: hard -"lower-case@npm:^2.0.2": - version: 2.0.2 - resolution: "lower-case@npm:2.0.2" +"micromark-extension-gfm-table@npm:^1.0.0": + version: 1.0.7 + resolution: "micromark-extension-gfm-table@npm:1.0.7" dependencies: - tslib: "npm:^2.0.3" - checksum: 2da56ea650669ee9d2427ba349867da18b4cf0190be2fb2b0f8adaa28cffd27bbf4e39b41a619bf653906a584b84c7df606b7f727d3048a8056e4e419407b3e5 + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 12aff201a3b35059d5bf7b866f23e999f3c0494f03aadc3c133d36ee01b489486052e76fd24032667833da70b7d919b6189db0026513692aa02d633d93cf56ba languageName: node linkType: hard -"lru-cache@npm:^5.1.1": - version: 5.1.1 - resolution: "lru-cache@npm:5.1.1" +"micromark-extension-gfm-tagfilter@npm:^1.0.0": + version: 1.0.2 + resolution: "micromark-extension-gfm-tagfilter@npm:1.0.2" dependencies: - yallist: "npm:^3.0.2" - checksum: 7e3274d0936ac64611d0053664b5c722f2b869c4962a007752251602020345f385885cfeabd0162aa45c7d2ee8a21f461d9d628db348f553c126126b170ad6d2 + micromark-util-types: "npm:^1.0.0" + checksum: 40f4baca8827e4815d2090fb2b840a1a1444172b5676e823ec5fb41e0f5175d22ff0c56356ace7b46226859c187d876dcf5eb4beb72a508ad8e404b6bfe05d29 languageName: node linkType: hard -"lru-cache@npm:^6.0.0": - version: 6.0.0 - resolution: "lru-cache@npm:6.0.0" +"micromark-extension-gfm-task-list-item@npm:^1.0.0": + version: 1.0.5 + resolution: "micromark-extension-gfm-task-list-item@npm:1.0.5" dependencies: - yallist: "npm:^4.0.0" - checksum: b2d72088dd27df27189607554990b0fd31d3fbd4037df909ef66f48a14122baf8ffce7f33edc17e6543ea7cd71fa561136518355dde2ad57676fa0b2ea53b85f + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 349d8f28144db21aa5bb06ccd13ca7744e28f8fe4d042f92cd6f125e9bd9be39afcb0a4439dcf17a864405e9d5b04c929b38ca9f78c1d4387e019679b377ce16 languageName: node linkType: hard -"lru-cache@npm:^9.0.0": - version: 9.1.0 - resolution: "lru-cache@npm:9.1.0" - checksum: c1c2c62c572973ecb94f971bb43361a7bb09e3a10508ccbf0e839edf98060052ef6e61ce742e9b6f98b868a491fcb2fb584bf1cd531c0215e7a757e0f3af72df +"micromark-extension-gfm@npm:^2.0.0": + version: 2.0.3 + resolution: "micromark-extension-gfm@npm:2.0.3" + dependencies: + micromark-extension-gfm-autolink-literal: "npm:^1.0.0" + micromark-extension-gfm-footnote: "npm:^1.0.0" + micromark-extension-gfm-strikethrough: "npm:^1.0.0" + micromark-extension-gfm-table: "npm:^1.0.0" + micromark-extension-gfm-tagfilter: "npm:^1.0.0" + micromark-extension-gfm-task-list-item: "npm:^1.0.0" + micromark-util-combine-extensions: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: b841f238f4fbd6b4275f83f483bec0ea68495bf63e62ab2c4fb63fc2797698a37fdc15b6c22f82e2b23971460f60ffea1af4a2720453a08abdf4944bd048760d languageName: node linkType: hard -"lru_map@npm:^0.3.3": - version: 0.3.3 - resolution: "lru_map@npm:0.3.3" - checksum: 356e840fb3fa884e0150272698f7647ee05fcb82641af4e1f5b6ef3e698e4ac999e03f8b8c4dded2be7a3dd164eb504d3cdbab523c90322e1770c190b40099a1 +"micromark-factory-destination@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-factory-destination@npm:1.1.0" + dependencies: + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: cb8342da0266e1961d2f8e3f2549429b1d617cf2256814e38f67d3bee561db3c655ac4cd4632ebdbde270b3edc6b52ceb4e973843851d10182906bca097debed languageName: node linkType: hard -"magic-string@npm:0.27.0, magic-string@npm:^0.27.0": - version: 0.27.0 - resolution: "magic-string@npm:0.27.0" +"micromark-factory-label@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-factory-label@npm:1.1.0" dependencies: - "@jridgewell/sourcemap-codec": "npm:^1.4.13" - checksum: 3b7ea05374ce06a1f4726a752959af578d5cd864b00321f2ffa131b5256776d47b87fbcf569b42abe6e70f53708dec91996776ce942bc68c21f91b205356cd57 + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: cabaaa1c51b1e3712d0d7da544e2ea6321fe3068bbe98f3b346129a40dbee480737bfc0de9cdae985a408c8a80d4d9820f1ddb94c4abed9cfc210725c7187e55 languageName: node linkType: hard -"magic-string@npm:^0.25.0, magic-string@npm:^0.25.7": - version: 0.25.7 - resolution: "magic-string@npm:0.25.7" +"micromark-factory-space@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-factory-space@npm:1.1.0" dependencies: - sourcemap-codec: "npm:^1.4.4" - checksum: 98c0b5481bfb877d6a0d55c9a9e9ce4b80c9b618d24e8ad86832bd70df318ba9011a2f66315d10befd5fe79f25ecd644d8fe35b2839df4f490a2706838049a95 + micromark-util-character: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 6bb6551ba543c129d437f69a11775936de4a190b1f93234d25546b05f16544b230ba1becb92704e752a81572e84ee0e6961c20f38b88bf795e20fd9630f35cdd languageName: node linkType: hard -"make-error@npm:^1.1.1": - version: 1.3.6 - resolution: "make-error@npm:1.3.6" - checksum: 4b81ce1392495d554ce5fd28c8de95066642e5e1a5efd395e3b3413bc75068a025d8a567aefb0738ba6da18e73323ffde17794780f632fe4395e009aa9ebcc8a +"micromark-factory-title@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-factory-title@npm:1.1.0" + dependencies: + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: fbdc4ffa68ca83fa0f31b1193ed4e73c4a7c04ef98f47efc9bb969454c268c2c411f630908a81f5b7f4374a5bc9f6f226bbd3d2a58e5487fe641a4cb58493125 languageName: node linkType: hard -"make-fetch-happen@npm:^8.0.14": - version: 8.0.14 - resolution: "make-fetch-happen@npm:8.0.14" +"micromark-factory-whitespace@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-factory-whitespace@npm:1.1.0" dependencies: - agentkeepalive: "npm:^4.1.3" - cacache: "npm:^15.0.5" - http-cache-semantics: "npm:^4.1.0" - http-proxy-agent: "npm:^4.0.1" - https-proxy-agent: "npm:^5.0.0" - is-lambda: "npm:^1.0.1" - lru-cache: "npm:^6.0.0" - minipass: "npm:^3.1.3" - minipass-collect: "npm:^1.0.2" - minipass-fetch: "npm:^1.3.2" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - promise-retry: "npm:^2.0.1" - socks-proxy-agent: "npm:^5.0.0" - ssri: "npm:^8.0.0" - checksum: 81ba425d9e8d26829fccdb1e6a16125633529fa0f4e38721bd3997608a2050e23cfbfd5658b64e88e1baad36eb28834a4d968edf9cf53553e8401fb829c6d820 + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: ef4f0c632da5eddc790415624e08dd97b2c0182e49b243c792647f4f994e2a552d789043b152c979e36e6b78c44d15130f1f79fad81fc0b531ce47639e5b7835 + languageName: node + linkType: hard + +"micromark-util-character@npm:^1.0.0": + version: 1.2.0 + resolution: "micromark-util-character@npm:1.2.0" + dependencies: + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 1621f827ed4b565eda9b1649c7ea09d25250a244823667dd533f4064073ec6f354fa6350e3b4b24b115a2d3d5bb7874f22ae737825375842791582e8edcbe001 languageName: node linkType: hard -"map-obj@npm:^1.0.0": - version: 1.0.1 - resolution: "map-obj@npm:1.0.1" - checksum: 68110c982ea7d80ccac49d93a53529a295a27cf9c392d15f7b5c42b26c3760a33abe7d4163cdaf6e5be023f514e541e36ab604ef42b8c6c7978f6433e826f8dc +"micromark-util-chunked@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-chunked@npm:1.1.0" + dependencies: + micromark-util-symbol: "npm:^1.0.0" + checksum: 41e5a298bfa1a0b67fd77024dfdad28b9897f5e51f5c7300c300ee46042e8d48682701a4f1e2ed048e38f6bd89d512bf65b9b5452ef5260db5583bb6399a19d4 languageName: node linkType: hard -"map-obj@npm:^4.0.0": - version: 4.2.1 - resolution: "map-obj@npm:4.2.1" - checksum: b978831c15c6fa9ec427bed4194a4928e8845cfc53ce05e333f5247c620a1dcb95461f7ff81fa946bdb86f09d8e236ea19fd202210ae7c2324d6c9ed202e8f1e +"micromark-util-classify-character@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-classify-character@npm:1.1.0" + dependencies: + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 01ceacca6c8762a4a6fe461f04ff3a6e2bbde87bcc9d3b6ba49032401a60e4023a0d6ebb73a7d064abdecd378d5b1ed838065946360e23d73c6bf8f4a7bc7925 languageName: node linkType: hard -"map-stream@npm:~0.1.0": - version: 0.1.0 - resolution: "map-stream@npm:0.1.0" - checksum: 3eb6020cbbd07226602f849eb95e613087bc1c17a00018f28f1a1f605bc53374fe0554ecac9a841e7a33fc1fd55399a0a01308d90ec73f0693dcae2923969385 +"micromark-util-combine-extensions@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-combine-extensions@npm:1.1.0" + dependencies: + micromark-util-chunked: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 631cc279fbd9590766385c99ff699dc5a82a192ec7e185699ebfab4453e9c73a9e8ef05b9dcfa2b179aea5607a98e61858143b1daa760fd9c5c583bce2531031 languageName: node linkType: hard -"mathml-tag-names@npm:^2.1.3": - version: 2.1.3 - resolution: "mathml-tag-names@npm:2.1.3" - checksum: b83f0a95c184b8c6a1417c4273ddfb7132230308db5284f0658cf0f3710e80d661e2b145b31e685d6759df908420886d11b65252bab6ed43093dc64ef6ce017a +"micromark-util-decode-numeric-character-reference@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-decode-numeric-character-reference@npm:1.1.0" + dependencies: + micromark-util-symbol: "npm:^1.0.0" + checksum: b1e6acc9e0073c26b267a76997ea00d4305190fe57cb6f8e11a6bda9abf0a8322c4659e967d82ac4ee59ff00ec5306f38270bd178a0d47da1589796dc5553148 languageName: node linkType: hard -"media-typer@npm:0.3.0": - version: 0.3.0 - resolution: "media-typer@npm:0.3.0" - checksum: 21806e15268f71b2bbf35a57b5eb9a42e14be638b8b855e210fb90282744e622f9d232f34f1cf566dc487819ce66bbb8aa6568e3267f48b12e92e2ba679838ae +"micromark-util-decode-string@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-decode-string@npm:1.1.0" + dependencies: + decode-named-character-reference: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-decode-numeric-character-reference: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + checksum: a9a7ffe8b6af719342f4a3ad56e16bfcde3a33d896fd6912819756d11819ff22c7b743636ecea884128e59a0ef0db4f7a8a0cc47f6088b6b7c4cb77e75f9f331 languageName: node linkType: hard -"memory-pager@npm:^1.0.2": - version: 1.5.0 - resolution: "memory-pager@npm:1.5.0" - checksum: 6b00ff499b3b6a168d8b713d5c33f3ea08fd24c19a8b42adc64847cfa62acdf7a3cfd81f02d6eab51773b6e118c628ba6694ecb55647d4c1efe7b11e67017e35 +"micromark-util-encode@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-encode@npm:1.1.0" + checksum: 22bd4bf43402a525ed6661a7c149d3abaa673ec18069669eede54a97d4e1f19e0a8f5ba9c6aaf22f51cbfe59679de0fc9517920dd927d614dd39a0ccf51b0af3 languageName: node linkType: hard -"meow@npm:^8.0.0": - version: 8.1.2 - resolution: "meow@npm:8.1.2" - dependencies: - "@types/minimist": "npm:^1.2.0" - camelcase-keys: "npm:^6.2.2" - decamelize-keys: "npm:^1.1.0" - hard-rejection: "npm:^2.1.0" - minimist-options: "npm:4.1.0" - normalize-package-data: "npm:^3.0.0" - read-pkg-up: "npm:^7.0.1" - redent: "npm:^3.0.0" - trim-newlines: "npm:^3.0.0" - type-fest: "npm:^0.18.0" - yargs-parser: "npm:^20.2.3" - checksum: e36c879078e6478281fb5ce3dbb15f5b960f2694870e5c12213ab8ca9c3410aadf6f9615b0004a643297bad5e1d5faa5f139fd698add26ad5945a095905e9628 +"micromark-util-html-tag-name@npm:^1.0.0": + version: 1.2.0 + resolution: "micromark-util-html-tag-name@npm:1.2.0" + checksum: 016b79b48459242d7e54f8cb3ebbdbf7a94dc21584c5f9ed5a99a8433da5a30ba46b5fa79e3c80cf3adbed287647a48da43fdea5bade47cc1c1f5cdb085ba794 languageName: node linkType: hard -"meow@npm:^9.0.0": - version: 9.0.0 - resolution: "meow@npm:9.0.0" +"micromark-util-normalize-identifier@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-normalize-identifier@npm:1.1.0" dependencies: - "@types/minimist": "npm:^1.2.0" - camelcase-keys: "npm:^6.2.2" - decamelize: "npm:^1.2.0" - decamelize-keys: "npm:^1.1.0" - hard-rejection: "npm:^2.1.0" - minimist-options: "npm:4.1.0" - normalize-package-data: "npm:^3.0.0" - read-pkg-up: "npm:^7.0.1" - redent: "npm:^3.0.0" - trim-newlines: "npm:^3.0.0" - type-fest: "npm:^0.18.0" - yargs-parser: "npm:^20.2.3" - checksum: 0bd3f75e208fed6e72c32057304f7e2ee580c9e82ba43d5959ac52b7b1c767c3f54efbe41b941713e2005a92f87e1e8704a2371ca9c4194c24a6fabbe045349b + micromark-util-symbol: "npm:^1.0.0" + checksum: a6ec9c86548bce0abe9e1f6012a03e3363f2b3ac88ac462a8d61bec5179faf01c7b987705ef2a39e12e69b7a73018ea0112c2bb3874449df89675878551c347b languageName: node linkType: hard -"merge-descriptors@npm:1.0.1": - version: 1.0.1 - resolution: "merge-descriptors@npm:1.0.1" - checksum: 6c8d19415ddd30b17ebd8e4474897549915cb90bb1caa13bbc55cce27a72d377c289abd300a3e8c6c1a6d61c4ea1fbe297addf032a9d75cb8de2788bc8b9cb2c +"micromark-util-resolve-all@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-resolve-all@npm:1.1.0" + dependencies: + micromark-util-types: "npm:^1.0.0" + checksum: 851d58c989bb1a0b7bb81fefb86993cbe4864c027c4224327e64ab48d8072b278e97be0bfbda4d5298ead1519fc147b09eb348903b3a727c2d58821dd69810f5 languageName: node linkType: hard -"merge-stream@npm:^2.0.0": - version: 2.0.0 - resolution: "merge-stream@npm:2.0.0" - checksum: 39a20c6f74e424ffb406cba0f4907c9ce06a85c84fb42a5628c6a39cd56fb3e70481b6f4d3412cf502cc3416c6e14d8d9ae6b2a4d461e56879350741220bd1e9 +"micromark-util-sanitize-uri@npm:^1.0.0, micromark-util-sanitize-uri@npm:^1.1.0": + version: 1.2.0 + resolution: "micromark-util-sanitize-uri@npm:1.2.0" + dependencies: + micromark-util-character: "npm:^1.0.0" + micromark-util-encode: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + checksum: 7f01ead8956a4f85e6d6f3e82ec90df8363f52ecb6848c7da6c9087605ca1e48b95bdd8ef2692f00df383458895d4f287aab8c1966b9c0f9a6f51d55e476a806 languageName: node linkType: hard -"merge2@npm:^1.3.0, merge2@npm:^1.4.1": - version: 1.4.1 - resolution: "merge2@npm:1.4.1" - checksum: d58d7c31e24ccb93509def2af306eca9a55ad8b8862a26ea7deda3c9338e5d33365f57197ad37af68c319e5e2a1faf089e5d05894d0dc29ff07025b30b8ff8b0 +"micromark-util-subtokenize@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-subtokenize@npm:1.1.0" + dependencies: + micromark-util-chunked: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 6ef750839fb40eaf544eb48cc5a3eb9f5ec10b2938e4ce9a4cdeb022fa4dc4a9209b40ea7da586e6a01a5e8e5142b61164fa085bb07f274d97e639c569f45fdb languageName: node linkType: hard -"methods@npm:~1.1.2": - version: 1.1.2 - resolution: "methods@npm:1.1.2" - checksum: 4641d1eda8231aee6774d28a32249f1d4f04e2a58a86c4a968eed39d178d64594ed829301eb603356decc9bd423eacd68d6bde7874a291475800a1568e547d4e +"micromark-util-symbol@npm:^1.0.0": + version: 1.1.0 + resolution: "micromark-util-symbol@npm:1.1.0" + checksum: 27d9ab54dca307437458800fc18ab00a1d1d20e5a3a5b93e82c9b1e2743b8ff5a5f4ec9a1ae56153103e2527a6171413c4223bf4d972c25e8141859a0f72a066 languageName: node linkType: hard -"micromatch@npm:^4.0.4": - version: 4.0.4 - resolution: "micromatch@npm:4.0.4" - dependencies: - braces: "npm:^3.0.1" - picomatch: "npm:^2.2.3" - checksum: 0332768395694607a9d0eae1e7124208d3fc7c4842b5b1bd2e1721ec6e996e1a9ee2ab5eac77e50b654b88b5787a51ccbffaf568d96b44cfbc198cef16c73220 +"micromark-util-types@npm:^1.0.0, micromark-util-types@npm:^1.0.1": + version: 1.1.0 + resolution: "micromark-util-types@npm:1.1.0" + checksum: 098df96c8dc1e46caf4a03a5f85364b127ba7d87475fc0f38dae77f236cac7e160b1f975acefb2b50e023e47a0250fa93fade439a9d6b889cb42d9f90e02fb25 languageName: node linkType: hard -"micromatch@npm:^4.0.5": +"micromark@npm:^3.0.0": + version: 3.2.0 + resolution: "micromark@npm:3.2.0" + dependencies: + "@types/debug": "npm:^4.0.0" + debug: "npm:^4.0.0" + decode-named-character-reference: "npm:^1.0.0" + micromark-core-commonmark: "npm:^1.0.1" + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-chunked: "npm:^1.0.0" + micromark-util-combine-extensions: "npm:^1.0.0" + micromark-util-decode-numeric-character-reference: "npm:^1.0.0" + micromark-util-encode: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-resolve-all: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^1.0.0" + micromark-util-subtokenize: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.1" + uvu: "npm:^0.5.0" + checksum: 7056bcb33e91e40f5c58034946609f1d5dc00c442a4581f34dc04cdab1a4ad80a406a80f0ecd4cd0471f9e4eaf80babd526c7837d0a099bc94654bf5d0cf98df + languageName: node + linkType: hard + +"micromatch@npm:4.0.5, micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5": version: 4.0.5 resolution: "micromatch@npm:4.0.5" dependencies: @@ -9563,13 +11613,6 @@ __metadata: languageName: node linkType: hard -"mime-db@npm:1.48.0": - version: 1.48.0 - resolution: "mime-db@npm:1.48.0" - checksum: 9da190f1dd9058e38d5c72ab645362ea65f7bd91c82c63b3ab35604f14523d1ff0305224be0c97ef19cb3004e104b937a56e127cc38e0e9db13878ec93254b56 - languageName: node - linkType: hard - "mime-db@npm:1.52.0": version: 1.52.0 resolution: "mime-db@npm:1.52.0" @@ -9577,16 +11620,7 @@ __metadata: languageName: node linkType: hard -"mime-types@npm:^2.1.12, mime-types@npm:~2.1.24": - version: 2.1.31 - resolution: "mime-types@npm:2.1.31" - dependencies: - mime-db: "npm:1.48.0" - checksum: 8467ddcbecea5d767a020cb3eab9d67545e35ffc10602f84801417ec902cbe7d50a083b3d753d59afe5a0f2ae38c71140f685efcf42d2587cd26ee85c8e63569 - languageName: node - linkType: hard - -"mime-types@npm:~2.1.19, mime-types@npm:~2.1.34": +"mime-types@npm:^2.1.12, mime-types@npm:~2.1.19, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34": version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: @@ -9604,12 +11638,12 @@ __metadata: languageName: node linkType: hard -"mime@npm:^2.4.0": - version: 2.6.0 - resolution: "mime@npm:2.6.0" +"mime@npm:^3.0.0": + version: 3.0.0 + resolution: "mime@npm:3.0.0" bin: mime: cli.js - checksum: 70c0ce8225abd5593f4c0e77a9d0e7cc50cf526c5c11879897421a697f137a23584d6fb9a2c8f900e70159b7ba961af48a0f467582d5040e00ec49b3c32e920c + checksum: b00613ec79e1f14586c970b6651afca77947f972eca6086ccb614c2b7a1a899d0ec38c6f4418370ecb9d0cebeb4ad300999b6b7f2dcbeaf40f9e0d55874b6c81 languageName: node linkType: hard @@ -9627,13 +11661,29 @@ __metadata: languageName: node linkType: hard -"min-indent@npm:^1.0.0": +"mimic-response@npm:^3.1.0": + version: 3.1.0 + resolution: "mimic-response@npm:3.1.0" + checksum: 1d485ca418ab93d27d5a90b0ad701eee79fdf6a7dfd0342f7c83e1f2b421703eadadf9d1c968bff4749dcb42bb2148dc4b6bce795b7b357b46d47731353b7077 + languageName: node + linkType: hard + +"min-indent@npm:^1.0.0, min-indent@npm:^1.0.1": version: 1.0.1 resolution: "min-indent@npm:1.0.1" checksum: fdf068694f2ea0dff7b228fe67e2da7f08adba57b4165e0255a4db9db0ee9b38db5fe70b986422cc9ae0aed770b36a33d3f4a23a9c1488fe5b38d5fb19a594e7 languageName: node linkType: hard +"minimatch@npm:5.0.1": + version: 5.0.1 + resolution: "minimatch@npm:5.0.1" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 1c768f6bf115a214eec61cfa4bed358568fa97747f876e5c2fb291880022f8defd3cbdfb5b73dbebad518b4bd88419b3f82f9f680fa3aa814c1aa632ddc55cc0 + languageName: node + linkType: hard + "minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": version: 3.1.2 resolution: "minimatch@npm:3.1.2" @@ -9643,6 +11693,15 @@ __metadata: languageName: node linkType: hard +"minimatch@npm:^5.0.1": + version: 5.1.6 + resolution: "minimatch@npm:5.1.6" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 0c0446ede579b1736bfea4efb288c2dea17ce80fd0339d00547625ed97a60ed403c7c2fb141211119937a811bc635b3f0f44debeb9d7870b3f58cf0fe78ddccc + languageName: node + linkType: hard + "minimatch@npm:^7.4.1": version: 7.4.6 resolution: "minimatch@npm:7.4.6" @@ -9652,6 +11711,15 @@ __metadata: languageName: node linkType: hard +"minimatch@npm:^9.0.1": + version: 9.0.1 + resolution: "minimatch@npm:9.0.1" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 6648745fd9fc8d5870d59d4fde5defd9d4cb3d44cbb6831e97e103c43f1d9bf5fcc24cea54e9e3bf09eac7e002cce200cc295e30c84180198970a0bed369f037 + languageName: node + linkType: hard + "minimist-options@npm:4.1.0": version: 4.1.0 resolution: "minimist-options@npm:4.1.0" @@ -9663,10 +11731,10 @@ __metadata: languageName: node linkType: hard -"minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6": - version: 1.2.7 - resolution: "minimist@npm:1.2.7" - checksum: 7bb50119bb59f48228a834e293a566c4b0e1b6c4648db83fb88830b4f932bfeaca72158bcdcc8a74130b339167eda92ec4cabb65faf07ab8d32542889a451676 +"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.6, minimist@npm:^1.2.7, minimist@npm:^1.2.8": + version: 1.2.8 + resolution: "minimist@npm:1.2.8" + checksum: 8598f846f2b7546b22b01ce486df27da216a302367afe17f2a032da12fcb8d33bfbf2c523051230864abf0b806748bd60d4cd0863fae35fe104da1ff6194a185 languageName: node linkType: hard @@ -9679,18 +11747,18 @@ __metadata: languageName: node linkType: hard -"minipass-fetch@npm:^1.3.2": - version: 1.3.3 - resolution: "minipass-fetch@npm:1.3.3" +"minipass-fetch@npm:^3.0.0": + version: 3.0.3 + resolution: "minipass-fetch@npm:3.0.3" dependencies: - encoding: "npm:^0.1.12" - minipass: "npm:^3.1.0" + encoding: "npm:^0.1.13" + minipass: "npm:^5.0.0" minipass-sized: "npm:^1.0.3" - minizlib: "npm:^2.0.0" + minizlib: "npm:^2.1.2" dependenciesMeta: encoding: optional: true - checksum: 7cef3ccc4d699a845ee4ce1bd352ed5070e22fe9e3c8dc9e1b8a030c2536464c082bbf4e0dcfb87b51eadb98dc1676cece5c8958c0b62c8f68138b746a07ab02 + checksum: 26c3d698b5869a2d5d7537a52b49bd2be5696f9e11b9eb982b2c5145403cdb81c1f150f59251ef1226e25e4d5fc70998ea251915535eb21854a692affa79968c languageName: node linkType: hard @@ -9703,7 +11771,7 @@ __metadata: languageName: node linkType: hard -"minipass-pipeline@npm:^1.2.2, minipass-pipeline@npm:^1.2.4": +"minipass-pipeline@npm:^1.2.4": version: 1.2.4 resolution: "minipass-pipeline@npm:1.2.4" dependencies: @@ -9721,12 +11789,12 @@ __metadata: languageName: node linkType: hard -"minipass@npm:^3.0.0, minipass@npm:^3.1.0, minipass@npm:^3.1.1, minipass@npm:^3.1.3": - version: 3.1.3 - resolution: "minipass@npm:3.1.3" +"minipass@npm:^3.0.0": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" dependencies: yallist: "npm:^4.0.0" - checksum: 3065ffed7fe5cafd79517dd9540e3772cc056a4ade2268798ad57177f20261c7931e47fccc6d3a1860a736059a6f0382a2c62094fba8b0e7712d843f7ea24806 + checksum: 9704cf677a05e82174c1a0765260f877ce3b4f09858b6c80a07a38a41ff661a2913a482f82faa73b89fc23ee3bcc4cff04d7e8ce6951de4fc2c2108d360b6f1f languageName: node linkType: hard @@ -9744,7 +11812,14 @@ __metadata: languageName: node linkType: hard -"minizlib@npm:^2.0.0, minizlib@npm:^2.1.1": +"minipass@npm:^5.0.0 || ^6.0.2": + version: 6.0.2 + resolution: "minipass@npm:6.0.2" + checksum: 9d8e7a2dc7dd240f1c2b4255b75ffadb7f296ab917d5289978869436333866a05b5128760847bd6b772ee7f0d78cfe775489669a4ba728f1de0f194ca14fe829 + languageName: node + linkType: hard + +"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": version: 2.1.2 resolution: "minizlib@npm:2.1.2" dependencies: @@ -9754,7 +11829,14 @@ __metadata: languageName: node linkType: hard -"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": +"mkdirp-classic@npm:^0.5.2, mkdirp-classic@npm:^0.5.3": + version: 0.5.3 + resolution: "mkdirp-classic@npm:0.5.3" + checksum: 5afc1f004d905d299db7f58035f77a23b8703802e89486f09635971be0e6d09f409c2c862fe4c9a5bcba563675e831840fd0fd8b5c2f5bd41f6aa5a9e4b3bb3a + languageName: node + linkType: hard + +"mkdirp@npm:^1.0.3": version: 1.0.4 resolution: "mkdirp@npm:1.0.4" bin: @@ -9763,43 +11845,102 @@ __metadata: languageName: node linkType: hard -"mongodb-connection-string-url@npm:^2.5.2": - version: 2.5.2 - resolution: "mongodb-connection-string-url@npm:2.5.2" +"mkdirp@npm:^2.1.5": + version: 2.1.6 + resolution: "mkdirp@npm:2.1.6" + bin: + mkdirp: dist/cjs/src/bin.js + checksum: a5dafdc784a93e4f898a90c3818948126604cabafaab4d3d649f809a57abd3583ba5dcc18240cd2cbe51014be5c97be2729e7bd71890d2affeac6dd7f53bfcb8 + languageName: node + linkType: hard + +"mocha@npm:^10.2.0": + version: 10.2.0 + resolution: "mocha@npm:10.2.0" + dependencies: + ansi-colors: "npm:4.1.1" + browser-stdout: "npm:1.3.1" + chokidar: "npm:3.5.3" + debug: "npm:4.3.4" + diff: "npm:5.0.0" + escape-string-regexp: "npm:4.0.0" + find-up: "npm:5.0.0" + glob: "npm:7.2.0" + he: "npm:1.2.0" + js-yaml: "npm:4.1.0" + log-symbols: "npm:4.1.0" + minimatch: "npm:5.0.1" + ms: "npm:2.1.3" + nanoid: "npm:3.3.3" + serialize-javascript: "npm:6.0.0" + strip-json-comments: "npm:3.1.1" + supports-color: "npm:8.1.1" + workerpool: "npm:6.2.1" + yargs: "npm:16.2.0" + yargs-parser: "npm:20.2.4" + yargs-unparser: "npm:2.0.0" + bin: + _mocha: bin/_mocha + mocha: bin/mocha.js + checksum: cb854c0d7c47dc9c17fc92d03d21a86be7dc680e52deb8932df047b4420efe1d4b0b8f2db5127490016c987116c43f728610a679abdcb50f0a5c3cc46b704c87 + languageName: node + linkType: hard + +"mongodb-connection-string-url@npm:^2.6.0": + version: 2.6.0 + resolution: "mongodb-connection-string-url@npm:2.6.0" dependencies: "@types/whatwg-url": "npm:^8.2.1" whatwg-url: "npm:^11.0.0" - checksum: e695b40bafa763f376702981aae9a91d0d14d95d6137cd1391a31daaad9a17b4f04772daeb9d619b1ddc13e87fb216f822a64b88fe60bf7dbd92f3523bb58b03 + checksum: 8a9186dd1b72dfa1ca8e2e7deeec2e412b3682c923d9f887e07a19b2366174e50c1c9f3657353eef62e7acce26f7e6ec16c3cc320fc1c12aab5d4890fa368ce3 languageName: node linkType: hard -"mongodb@npm:^4.8.1": - version: 4.8.1 - resolution: "mongodb@npm:4.8.1" +"mongodb@npm:^6.0.0": + version: 6.0.0 + resolution: "mongodb@npm:6.0.0" dependencies: - bson: "npm:^4.6.5" - denque: "npm:^2.0.1" - mongodb-connection-string-url: "npm:^2.5.2" - saslprep: "npm:^1.0.3" - socks: "npm:^2.6.2" - dependenciesMeta: - saslprep: + "@mongodb-js/saslprep": "npm:^1.1.0" + bson: "npm:^6.0.0" + mongodb-connection-string-url: "npm:^2.6.0" + peerDependencies: + "@aws-sdk/credential-providers": ^3.188.0 + "@mongodb-js/zstd": ^1.1.0 + gcp-metadata: ^5.2.0 + kerberos: ^2.0.1 + mongodb-client-encryption: ">=6.0.0 <7" + snappy: ^7.2.2 + socks: ^2.7.1 + peerDependenciesMeta: + "@aws-sdk/credential-providers": + optional: true + "@mongodb-js/zstd": + optional: true + gcp-metadata: + optional: true + kerberos: + optional: true + mongodb-client-encryption: + optional: true + snappy: + optional: true + socks: optional: true - checksum: d9664dc77cfd1346fd84c092e3fac52f7ab77096e5668fb85ef0c7e2dba94674dc2afe57dbfd9c06f584fcb16916a3542fb529bac59b9d41b094b9e7e596ef82 + checksum: daec6dc9dc937a9a38c1b1605ef93088928821615499d8f297cf41fcea774682ab1e6a645c43fb34b584b3a5077c74e650d6d9fbf474010a20f5f93279f492d5 languageName: node linkType: hard "mri@npm:^1.1.0": - version: 1.1.6 - resolution: "mri@npm:1.1.6" - checksum: 9a1ef62f0c74ab409810f0025563c9efbbca13bdb4038ac79f2d12c65af6aa62bf563d974d705ff5dbbebc749005dc183be76ea63bae7df76d59bcb6f45d3b33 + version: 1.2.0 + resolution: "mri@npm:1.2.0" + checksum: f459cd82edbe77b6296cc59a5005c351cd52f6a6d733539ae91f6dbc61a23c6e558bf9dea2703212b2caf1b0803852f357325612ba848795686577432740bd49 languageName: node linkType: hard -"mrmime@npm:^1.0.0": - version: 1.0.0 - resolution: "mrmime@npm:1.0.0" - checksum: 64ce4bd0dedde57e74d1407649087d9e1185592026769d145bd7e7009e94490bee8f73dbe8f097795f28d2020ae44a6229e814e07ad66660993fb7a56ff1653b +"mrmime@npm:^1.0.0, mrmime@npm:^1.0.1": + version: 1.0.1 + resolution: "mrmime@npm:1.0.1" + checksum: eed4c73cd1f7079f1d9a320e52ee539452a0980f054146ef11654aaabda67e6ad34b5645ad023726751fb85283fa36b0d48f5189fea7f3bfa32eeee6effafc06 languageName: node linkType: hard @@ -9824,19 +11965,46 @@ __metadata: languageName: node linkType: hard -"nanoid@npm:^3.3.4": - version: 3.3.4 - resolution: "nanoid@npm:3.3.4" +"muggle-string@npm:^0.3.1": + version: 0.3.1 + resolution: "muggle-string@npm:0.3.1" + checksum: 97454eb9a4bd33d1b02c375547fe8521c7d2b1ffa690fe1894711a2d964e413f5ce6ceaed0ec1053e38c769ff9b358729f2983865f5715396d309118fd873eac + languageName: node + linkType: hard + +"mz@npm:^2.7.0": + version: 2.7.0 + resolution: "mz@npm:2.7.0" + dependencies: + any-promise: "npm:^1.0.0" + object-assign: "npm:^4.0.1" + thenify-all: "npm:^1.0.0" + checksum: 94100397dc4e8b8451c743b025bbd9a8fa8bb7c16fadab1a34f28f6a0d16cf03766c054d47352b07952434182776535e578dbbd146db235b1c65b8fb76a49bcc + languageName: node + linkType: hard + +"nanoid@npm:3.3.3": + version: 3.3.3 + resolution: "nanoid@npm:3.3.3" bin: nanoid: bin/nanoid.cjs - checksum: 53d605377c76614170df4b5a8d3fa21f13c7077453a77e2393a9fe3df5722022f6b94a671f406b51f81e9c937a6928555c1589e3c46a0d9d29f31872d1362246 + checksum: c87b8384f305756695669e409ec54d5f2f2862f5cb5b138c8f539bbae102619a8e523cb074a24e6b501924d375fc80f860a5ce8fa566e3e5cee08f1f2d98bf30 languageName: node linkType: hard -"natural-compare-lite@npm:^1.4.0": - version: 1.4.0 - resolution: "natural-compare-lite@npm:1.4.0" - checksum: e5544056864e990c8fb4fe8ca91d01f8977586969d89adccd2ccea71fea468471b953088021fc90031800410a5042576594dc4005bf02db1794ee4ff0befc07c +"nanoid@npm:^3.3.6": + version: 3.3.6 + resolution: "nanoid@npm:3.3.6" + bin: + nanoid: bin/nanoid.cjs + checksum: c6f3fad3b9132b17f72f9ca018ff12caf5a9fd474d08881156deffe7c77cc76220e49610232e570e2a33e3aa941214c08634762390a87b1fb9816d6108aa9e64 + languageName: node + linkType: hard + +"napi-build-utils@npm:^1.0.1": + version: 1.0.2 + resolution: "napi-build-utils@npm:1.0.2" + checksum: f8135037d1e07905c414f8bfbd40e6cc28473c6b24becee470dde4599eb2e431e248f5cb2af9af3f6cc92dc82a3158de739550c24e32c8a13d2441df23b3536a languageName: node linkType: hard @@ -9847,7 +12015,20 @@ __metadata: languageName: node linkType: hard -"negotiator@npm:0.6.3": +"needle@npm:^2.5.2": + version: 2.9.1 + resolution: "needle@npm:2.9.1" + dependencies: + debug: "npm:^3.2.6" + iconv-lite: "npm:^0.4.4" + sax: "npm:^1.2.4" + bin: + needle: ./bin/needle + checksum: 231658619e48099bcce026feab898c3cd2ec9d9c597461ab18ee12a7a8979162534fae8c155b60477b7bb51e3dff7df494bb33fc299a2418d5945931e35d9cfe + languageName: node + linkType: hard + +"negotiator@npm:0.6.3, negotiator@npm:^0.6.3": version: 0.6.3 resolution: "negotiator@npm:0.6.3" checksum: d8e3b42d99638b1f363ce114c98e6906ade395c230058e50644417bd398b01381133dbca4bc49f30f6b1c93254e4b5a2d50cc47adcdabf2a8476b6f16311ad5d @@ -9861,6 +12042,15 @@ __metadata: languageName: node linkType: hard +"nlcst-to-string@npm:^3.0.0": + version: 3.1.1 + resolution: "nlcst-to-string@npm:3.1.1" + dependencies: + "@types/nlcst": "npm:^1.0.0" + checksum: bb6d3c91e81aa4dacde0ec92c5e355bdc444cf097af7c19addb41a0c93746e05d812235f14c31d92db6917aaed70d4ffbc93dddae5c897d2f5e6feb23d3183df + languageName: node + linkType: hard + "no-case@npm:^3.0.4": version: 3.0.4 resolution: "no-case@npm:3.0.4" @@ -9871,9 +12061,27 @@ __metadata: languageName: node linkType: hard +"node-abi@npm:^3.3.0": + version: 3.45.0 + resolution: "node-abi@npm:3.45.0" + dependencies: + semver: "npm:^7.3.5" + checksum: 3d88d1503ba4e54a9f81389e6b70e03c9cded0a581fe4203e899ce68968844a2661cffae9bd9e8d705f0275bea91c6ad4c3e74feb44c3e3a8fe4ca60f9a2057b + languageName: node + linkType: hard + +"node-addon-api@npm:^6.1.0": + version: 6.1.0 + resolution: "node-addon-api@npm:6.1.0" + dependencies: + node-gyp: "npm:latest" + checksum: 868881a258ec40c180a540bc2eaf07844c44aad6965a5335a76eb05019790ef238412a6a23e757e462f5d1d9d9332dde97fb09a8642f7048b20c4313f708d98d + languageName: node + linkType: hard + "node-fetch@npm:^2.6.7": - version: 2.6.9 - resolution: "node-fetch@npm:2.6.9" + version: 2.6.11 + resolution: "node-fetch@npm:2.6.11" dependencies: whatwg-url: "npm:^5.0.0" peerDependencies: @@ -9881,7 +12089,7 @@ __metadata: peerDependenciesMeta: encoding: optional: true - checksum: 8457cf62f599e9d55b01d58f87ed2110c65f83c4fcce8be0e350909995384e96a55e2b810d0e1a67a1fbe7f9930cd0998146d2dcce4843f9ed3ac0b479bd5c64 + checksum: 3e7af7c0025f4bebd8f14efd0248344a5f0155253762810bf1be70e9e8d669e3ee74794754ca1a53e7d9ad8f4906d774e2b4e9e5209e2fd5d515e5c7299b3280 languageName: node linkType: hard @@ -9897,22 +12105,23 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 8.1.0 - resolution: "node-gyp@npm:8.1.0" + version: 9.4.0 + resolution: "node-gyp@npm:9.4.0" dependencies: env-paths: "npm:^2.2.0" + exponential-backoff: "npm:^3.1.1" glob: "npm:^7.1.4" graceful-fs: "npm:^4.2.6" - make-fetch-happen: "npm:^8.0.14" - nopt: "npm:^5.0.0" - npmlog: "npm:^4.1.2" + make-fetch-happen: "npm:^11.0.3" + nopt: "npm:^6.0.0" + npmlog: "npm:^6.0.0" rimraf: "npm:^3.0.2" semver: "npm:^7.3.5" - tar: "npm:^6.1.0" + tar: "npm:^6.1.2" which: "npm:^2.0.2" bin: node-gyp: bin/node-gyp.js - checksum: 2698425e785bb09c753ba8ad7f097837e21682b50e2dd18bc703a13ad8284797dd59e84b98347922234a70cc5ac37e4dbfed5391b10e49d83dac40112a136402 + checksum: b180de9e7c1d4c63355d3883b30c03462e5bcb8c810a1ee41d3ef2a3fe2d0ef0244acdbebf9d30a4abe865cfea67b4665e483de79d8249114dbdea454d5263a2 languageName: node linkType: hard @@ -9923,51 +12132,24 @@ __metadata: languageName: node linkType: hard -"node-releases@npm:^1.1.71": - version: 1.1.73 - resolution: "node-releases@npm:1.1.73" - checksum: b035b91dd1c1cd1858bff2b4f1094eaaba57097e6260a191a07b6c60b3e916505956d7d9d4bef9e237eab14076662f5036d31687c249c85fed2530793281988b - languageName: node - linkType: hard - -"node-releases@npm:^2.0.6": - version: 2.0.6 - resolution: "node-releases@npm:2.0.6" - checksum: 6d4a77d1566d9cf13d835bb2a9c4080c667417353260ba69092d570313c492772a030b5733f52838d90608e6ad558ab969673c67bc948e29143e527661e265b3 - languageName: node - linkType: hard - -"node-releases@npm:^2.0.8": - version: 2.0.9 - resolution: "node-releases@npm:2.0.9" - checksum: 4862e125c24dff2f2d460555297968b1e7d026be0b2eb6acec3677a78a3c4ac1a8783700de9097de5c226b1c494538b5b1d09bf9fb9bfaa6dd02c21c38d9313a +"node-releases@npm:^2.0.12": + version: 2.0.12 + resolution: "node-releases@npm:2.0.12" + checksum: ae9ed0c2edca1127a0437a55e4467d6f32d496e8674bafdd1ffe42c3b90482727b178f37793a7041cc3287a42c624ada7a6a056857558134ba6b480ad9bc84db languageName: node linkType: hard -"nodemailer@npm:^6.9.1": - version: 6.9.1 - resolution: "nodemailer@npm:6.9.1" - checksum: 6aa3e9afbf512b895c4ae519788d66d49720dc02ea3c0fb132917a6318d9776f7aeb94b0612b9fa2a971ddd1162ab48bcb8c223d16cbccf4ecf5f1ab22982095 +"node-releases@npm:^2.0.13": + version: 2.0.13 + resolution: "node-releases@npm:2.0.13" + checksum: 6afceac2e86ad4717880f659f37c37708cda4dfc7fae6b935236a693fe7d810daf62cacf819bdda80e159ef5e5fac35e06f2d2c4d0422f99c451be92eb54b5b0 languageName: node linkType: hard -"nodemon@npm:^2.0.19": - version: 2.0.19 - resolution: "nodemon@npm:2.0.19" - dependencies: - chokidar: "npm:^3.5.2" - debug: "npm:^3.2.7" - ignore-by-default: "npm:^1.0.1" - minimatch: "npm:^3.0.4" - pstree.remy: "npm:^1.1.8" - semver: "npm:^5.7.1" - simple-update-notifier: "npm:^1.0.7" - supports-color: "npm:^5.5.0" - touch: "npm:^3.1.0" - undefsafe: "npm:^2.0.5" - bin: - nodemon: bin/nodemon.js - checksum: 0501c8c95194aa0869031af51ca8f72c9f8b63944e2012b4713d046e14ef532bb4cf8242b318d19e6c0f15ec8490ad39a83bb796a8d00075f4c56ebc5f9de170 +"nodemailer@npm:^6.9.5": + version: 6.9.5 + resolution: "nodemailer@npm:6.9.5" + checksum: adfdb5debc340fcb5fc021609d31b6ce6800d48c8f02e6bdb44e0af6e8d94c087e9d30f5c7c52ee8c800bcf92b4acfddd7870365842df373d6e3113666e214f7 languageName: node linkType: hard @@ -9978,25 +12160,14 @@ __metadata: languageName: node linkType: hard -"nopt@npm:^5.0.0": - version: 5.0.0 - resolution: "nopt@npm:5.0.0" +"nopt@npm:^6.0.0": + version: 6.0.0 + resolution: "nopt@npm:6.0.0" dependencies: - abbrev: "npm:1" + abbrev: "npm:^1.0.0" bin: nopt: bin/nopt.js - checksum: cb0f3672738e989b12d8459f30366e8a89f79462581a09816cbbd575e272bc0ae2a135ac0b60647748be64100787d631cd0ac18157d519021336ae277e3362a3 - languageName: node - linkType: hard - -"nopt@npm:~1.0.10": - version: 1.0.10 - resolution: "nopt@npm:1.0.10" - dependencies: - abbrev: "npm:1" - bin: - nopt: ./bin/nopt.js - checksum: efa5a9c2c167b6c4e399fcefab89d573a580e33a604a04800093e4e0a7c477828c0d8d2f07f6af48c81e270f09d67bb530307239b2b10824fabf2f535b4dee75 + checksum: 6ae5c083c5b205d0850f3b00c093cb0b1d4fb28fb69c68c3f933048e666695b1f218db6a4a7f61a4bae2f127268f526a7f2764223208e4dd527c51c56c49a5c7 languageName: node linkType: hard @@ -10012,15 +12183,15 @@ __metadata: languageName: node linkType: hard -"normalize-package-data@npm:^3.0.0": - version: 3.0.2 - resolution: "normalize-package-data@npm:3.0.2" +"normalize-package-data@npm:^3.0.0, normalize-package-data@npm:^3.0.2": + version: 3.0.3 + resolution: "normalize-package-data@npm:3.0.3" dependencies: hosted-git-info: "npm:^4.0.1" - resolve: "npm:^1.20.0" + is-core-module: "npm:^2.5.0" semver: "npm:^7.3.4" validate-npm-package-license: "npm:^3.0.1" - checksum: 7ecd49a2101719635d3b4374922e096b82892d53b3ac4b854d9a7aadc72e716cafb78e92df2130fdc837a6f4c425b28337dde657ff74de22ed3cd232f20fa8e2 + checksum: a4e12d16b5f270611bca76d8918e7daf600fe38e9a28b89a9c1b446f9e2206a31b5993ef06800232d86b00e783b0f61c0982948f74a5c26fb25ba8b4d2af9532 languageName: node linkType: hard @@ -10056,78 +12227,95 @@ __metadata: languageName: node linkType: hard -"npmlog@npm:^4.1.2": - version: 4.1.2 - resolution: "npmlog@npm:4.1.2" +"npmlog@npm:^6.0.0": + version: 6.0.2 + resolution: "npmlog@npm:6.0.2" dependencies: - are-we-there-yet: "npm:~1.1.2" - console-control-strings: "npm:~1.1.0" - gauge: "npm:~2.7.3" - set-blocking: "npm:~2.0.0" - checksum: b78a3f970f174e4eeaa28faf182319bb44aecf1849441807024c01a0c5186641df504c4d67e3b2b2f4ad0da55e9a7b415c3a20adbb13df94afe7a885ec0a69f8 + are-we-there-yet: "npm:^3.0.0" + console-control-strings: "npm:^1.1.0" + gauge: "npm:^4.0.3" + set-blocking: "npm:^2.0.0" + checksum: c04307b2991f128df6f3bb71c36fa56a65397f56f02a565ed269786ecd5609818e6cae36de3371555e52fdf049a5649a3591ac3bb432a2a0146d67093c4be93c languageName: node linkType: hard -"number-is-nan@npm:^1.0.0": - version: 1.0.1 - resolution: "number-is-nan@npm:1.0.1" - checksum: 5d277673bdfae98f79b02c4ea9bb13989df7435f1b90b708b8177d276e0977e9377eb6a391d28a115b577baa0edacaea99c1b755bfeb8b348a7dc9281d32fc02 +"nth-check@npm:^2.0.1": + version: 2.1.1 + resolution: "nth-check@npm:2.1.1" + dependencies: + boolbase: "npm:^1.0.0" + checksum: 47e3a752fb9e7619e0567ce3bf5a38b766689d94be7cfa10099688d1f521cfb9698a6f7ef032d608a24bbbd1e412748929940170c5e6db433326ad1471031143 languageName: node linkType: hard -"object-assign@npm:^4, object-assign@npm:^4.1.0": +"object-assign@npm:^4, object-assign@npm:^4.0.1": version: 4.1.1 resolution: "object-assign@npm:4.1.1" checksum: f5cd1f2f1e82e12207e4f2377d9d7d90fbc0d9822a6afa717a6dcab6930d8925e1ebbbb25df770c31ff11335ee423459ba65ffa2e53999926c328b806b4d73d6 languageName: node linkType: hard -"object-inspect@npm:^1.11.0, object-inspect@npm:^1.9.0": - version: 1.12.0 - resolution: "object-inspect@npm:1.12.0" - checksum: 841b5b480e36dc94d1c764dc85e1752bb01a0d7eccf366bacb4731877a29fa8196118c8b58b7a4e4961f0447f9dac97950e6f04eca259fb02a325fd90066173d - languageName: node - linkType: hard - -"object-inspect@npm:^1.12.2": - version: 1.12.2 - resolution: "object-inspect@npm:1.12.2" - checksum: 46e3fc4cb6a51a37c21c68bdf682befc2e50a0d1643d1f7cbdce9a5fd13e9d44ae8cbbf1b05f0c8daf739c02eb9044d825544e25c3aef2a7d315980c8c7ccb71 +"object-inspect@npm:^1.12.3, object-inspect@npm:^1.9.0": + version: 1.12.3 + resolution: "object-inspect@npm:1.12.3" + checksum: 052c374ab0a4c85201480374c1039dddac0aaa8ef0fcbe1b04026f4c832c5632db6cb63617d6403b2b9dca08d4302d781aeb6c4d0260de4a84118ecaf1b5ebda languageName: node linkType: hard -"object-keys@npm:^1.0.12, object-keys@npm:^1.1.1": +"object-keys@npm:^1.1.1": version: 1.1.1 resolution: "object-keys@npm:1.1.1" checksum: 23343006d68702a85c299dafd4fc4205dbf729561a7d0acc1a75f6211636fcc1bbbdf26f0740119c43a7a98463e56b8afb74cbb4670509452007f5bc2f64cc36 languageName: node linkType: hard -"object.assign@npm:^4.1.0, object.assign@npm:^4.1.2": - version: 4.1.2 - resolution: "object.assign@npm:4.1.2" +"object.assign@npm:^4.1.3, object.assign@npm:^4.1.4": + version: 4.1.4 + resolution: "object.assign@npm:4.1.4" dependencies: - call-bind: "npm:^1.0.0" - define-properties: "npm:^1.1.3" - has-symbols: "npm:^1.0.1" + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + has-symbols: "npm:^1.0.3" object-keys: "npm:^1.1.1" - checksum: e33de12dd0a3afa108ef089cbc0744625eddce4a9c0978d004e463fb1c70f3bebfd5fcd5459ee85abe95cd5066df7b4937b50c3fb4ff3439e225b9216d08f33f + checksum: d1b1bcf947a523140f1f5aa91fcdb9b8fadf6a309e8274bec5e5cfbf897974ead2d0782ac9a2e83ebf59f0ee3994be5cfb1d1483a19e528f472993b2d026a1de + languageName: node + linkType: hard + +"object.entries@npm:^1.1.6": + version: 1.1.6 + resolution: "object.entries@npm:1.1.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 96acb5488114ab252b78af28402653be6040fb497cfdde0444c2e06a3631af216970dc693eab1ce91651d108354c1671065bf350d1c1291a951bf772d1727230 + languageName: node + linkType: hard + +"object.fromentries@npm:^2.0.6": + version: 2.0.6 + resolution: "object.fromentries@npm:2.0.6" + dependencies: + call-bind: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 35f23acb19155a0bc3d8436957aa24f1233492ccff41ed02507876b93c836e1981971e4853478a2e23bdcd140e9ade4cca36d963569b7ae31275ce515fc3a9e9 languageName: node linkType: hard -"object.assign@npm:^4.1.4": - version: 4.1.4 - resolution: "object.assign@npm:4.1.4" +"object.groupby@npm:^1.0.0": + version: 1.0.1 + resolution: "object.groupby@npm:1.0.1" dependencies: call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - has-symbols: "npm:^1.0.3" - object-keys: "npm:^1.1.1" - checksum: d1b1bcf947a523140f1f5aa91fcdb9b8fadf6a309e8274bec5e5cfbf897974ead2d0782ac9a2e83ebf59f0ee3994be5cfb1d1483a19e528f472993b2d026a1de + define-properties: "npm:^1.2.0" + es-abstract: "npm:^1.22.1" + get-intrinsic: "npm:^1.2.1" + checksum: d587f0ee83675424b86c118185863d310bfb6f866b9129f9e4542cae93f18192f2e927a46d1bca92c586c26d02c07a462cf4611d374324a70e7bbe25d9372d5a languageName: node linkType: hard -"object.values@npm:^1.1.5": +"object.values@npm:^1.1.6": version: 1.1.6 resolution: "object.values@npm:1.1.6" dependencies: @@ -10174,40 +12362,53 @@ __metadata: languageName: node linkType: hard -"optionator@npm:^0.9.1": - version: 0.9.1 - resolution: "optionator@npm:0.9.1" +"open@npm:^9.1.0": + version: 9.1.0 + resolution: "open@npm:9.1.0" + dependencies: + default-browser: "npm:^4.0.0" + define-lazy-prop: "npm:^3.0.0" + is-inside-container: "npm:^1.0.0" + is-wsl: "npm:^2.2.0" + checksum: e1ac0dd901d5ac8f7ecc334bf6a768d908e396ed97cfe8f857a46ac5ff677d9b1f81b892cb7c2fcdde4e90123db43fb70c0acb39290fe6e9a69c8c0553904f84 + languageName: node + linkType: hard + +"optionator@npm:^0.9.3": + version: 0.9.3 + resolution: "optionator@npm:0.9.3" dependencies: + "@aashutoshrathi/word-wrap": "npm:^1.2.3" deep-is: "npm:^0.1.3" fast-levenshtein: "npm:^2.0.6" levn: "npm:^0.4.1" prelude-ls: "npm:^1.2.1" type-check: "npm:^0.4.0" - word-wrap: "npm:^1.2.3" - checksum: bb7b06099c688d6d4bfc193f66b7aac15bfa84190f076f3f8c57821bdd0be761cbbf8972f0a904e7181aa2ca89441ca51c20f87b631690ca8d3f5bad90b7e0f1 - languageName: node - linkType: hard - -"ospath@npm:^1.2.2": - version: 1.2.2 - resolution: "ospath@npm:1.2.2" - checksum: 7af2d3589331dc338e74f5099cc0023083b11f55b501db9f1ebaf5d480966b18726525d562dcf702d56fa5b4cf072a7a84e887f9642d382cf33353798b3685c1 + checksum: 5acdcab5789bd73da48a9fb54ddd9b191089e0936ffd9877a1f1fac413c04111304ec9d40db36225791d2308e7d8b97dda1cba61523c3b77264fdd582fba61bf languageName: node linkType: hard -"p-event@npm:^4.2.0": - version: 4.2.0 - resolution: "p-event@npm:4.2.0" +"ora@npm:^7.0.1": + version: 7.0.1 + resolution: "ora@npm:7.0.1" dependencies: - p-timeout: "npm:^3.1.0" - checksum: d84171a48889b0ed09ab55e368f20eb690343ee1910a26901d79179bc6e47e85d66d0700b7ae0be8d7d719e9380b77c7a19711a5f254d22887ab8ade56fdf1eb + chalk: "npm:^5.3.0" + cli-cursor: "npm:^4.0.0" + cli-spinners: "npm:^2.9.0" + is-interactive: "npm:^2.0.0" + is-unicode-supported: "npm:^1.3.0" + log-symbols: "npm:^5.1.0" + stdin-discarder: "npm:^0.1.0" + string-width: "npm:^6.1.0" + strip-ansi: "npm:^7.1.0" + checksum: f26c0ada2b0977aaad4c3dd787e676c2abd01c1aef1c9627644d021f06facc68eb836dc6777a0de0464bd3c66b0bed48f60e241216cf198c0ee9885d918018d7 languageName: node linkType: hard -"p-finally@npm:^1.0.0": - version: 1.0.0 - resolution: "p-finally@npm:1.0.0" - checksum: e3452db75cacc60e8b834a905e38f3cd9dc21e76e471efcde8a36ea04ec6fc507f6b5f74cbd7252d8c9317846127084831f89318e476ca0023d4ab223f3e146b +"ospath@npm:^1.2.2": + version: 1.2.2 + resolution: "ospath@npm:1.2.2" + checksum: 7af2d3589331dc338e74f5099cc0023083b11f55b501db9f1ebaf5d480966b18726525d562dcf702d56fa5b4cf072a7a84e887f9642d382cf33353798b3685c1 languageName: node linkType: hard @@ -10229,6 +12430,15 @@ __metadata: languageName: node linkType: hard +"p-limit@npm:^4.0.0": + version: 4.0.0 + resolution: "p-limit@npm:4.0.0" + dependencies: + yocto-queue: "npm:^1.0.0" + checksum: ca073ed51f443fbc8346494b72190944decaeee6f020a977e3370b8072553172cccf5cde2531f3719a82b98eb03abd29111a053c40e57573f3396262e2383997 + languageName: node + linkType: hard + "p-locate@npm:^4.1.0": version: 4.1.0 resolution: "p-locate@npm:4.1.0" @@ -10256,15 +12466,6 @@ __metadata: languageName: node linkType: hard -"p-timeout@npm:^3.1.0": - version: 3.2.0 - resolution: "p-timeout@npm:3.2.0" - dependencies: - p-finally: "npm:^1.0.0" - checksum: 350fc15deef1aede66e4dc81b4ed92a0383108162b2528253850d1cf28f2e6847d4834c03bdc7e7143d106e569936495751ba52a521a82476b346cdd748293d3 - languageName: node - linkType: hard - "p-try@npm:^2.0.0": version: 2.2.0 resolution: "p-try@npm:2.2.0" @@ -10272,6 +12473,15 @@ __metadata: languageName: node linkType: hard +"pad-right@npm:^0.2.2": + version: 0.2.2 + resolution: "pad-right@npm:0.2.2" + dependencies: + repeat-string: "npm:^1.5.2" + checksum: d7a16b92174c9c9c43e652234c629a3166cfe116dec305a6676ce9598c0c97b4f19aafdd1a6b40bad127e01656641f34610fd8ff7330dc9f8914801f30aabb56 + languageName: node + linkType: hard + "pako@npm:^2.1.0": version: 2.1.0 resolution: "pako@npm:2.1.0" @@ -10298,7 +12508,7 @@ __metadata: languageName: node linkType: hard -"parse-json@npm:^5.0.0": +"parse-json@npm:^5.0.0, parse-json@npm:^5.2.0": version: 5.2.0 resolution: "parse-json@npm:5.2.0" dependencies: @@ -10310,6 +12520,24 @@ __metadata: languageName: node linkType: hard +"parse-latin@npm:^5.0.0": + version: 5.0.1 + resolution: "parse-latin@npm:5.0.1" + dependencies: + nlcst-to-string: "npm:^3.0.0" + unist-util-modify-children: "npm:^3.0.0" + unist-util-visit-children: "npm:^2.0.0" + checksum: 414b08054e816080f66b6d0110e3c8255c39e7321ec041bdfcb650e1cc8bdb87f198943fcec5b5d38b361df5831fde2e7146b2b571b2517828b9529777fd9113 + languageName: node + linkType: hard + +"parse5@npm:^6.0.0": + version: 6.0.1 + resolution: "parse5@npm:6.0.1" + checksum: fc646cd35285973de9322a034872c145bb8c07559bd0fa46e9c133567978622f3fe3977794b6e31089b3b6692284b2a3b8fb3fc547b9b21ef059fd20cac72982 + languageName: node + linkType: hard + "parseurl@npm:~1.3.3": version: 1.3.3 resolution: "parseurl@npm:1.3.3" @@ -10355,20 +12583,20 @@ __metadata: languageName: node linkType: hard -"path-parse@npm:^1.0.6, path-parse@npm:^1.0.7": +"path-parse@npm:^1.0.7": version: 1.0.7 resolution: "path-parse@npm:1.0.7" checksum: ca291d7bced407e20480b686d7ef4f9dd112ef00d6f109faa50bbefe8ff9dd51e164781fa0670c7b5d67a88610008e83e594f8294ec809c1b7203c6577ca3777 languageName: node linkType: hard -"path-scurry@npm:^1.6.1": - version: 1.7.0 - resolution: "path-scurry@npm:1.7.0" +"path-scurry@npm:^1.6.1, path-scurry@npm:^1.7.0": + version: 1.9.2 + resolution: "path-scurry@npm:1.9.2" dependencies: - lru-cache: "npm:^9.0.0" - minipass: "npm:^5.0.0" - checksum: b51b3abc6b555915bed2aa2de7247e4e8a553cabd5a7662ede231deef85cd6210329e6902aeb62dc54d209ca5da2c8159dbcb6f13f3caa337b0820f9b1af2736 + lru-cache: "npm:^9.1.1" + minipass: "npm:^5.0.0 || ^6.0.2" + checksum: c60ad5b0decbff08e45a527de1e22a0e5667e9120ce8a007bc219125f5f2462cd167f9f7622681b2ff760c1deec1d2e49fdead4ff508da3f1ca7a7389240f7e9 languageName: node linkType: hard @@ -10379,6 +12607,13 @@ __metadata: languageName: node linkType: hard +"path-to-regexp@npm:^6.2.1": + version: 6.2.1 + resolution: "path-to-regexp@npm:6.2.1" + checksum: e88a30cc5671ab10cbe5f2cdb8341bc3f893583e8259f2bbf935a27ce1827509881f22321d96d82d9967a4dacb88c7e777b9f09a656ccf94d33ed2c0a4a66c0e + languageName: node + linkType: hard + "path-type@npm:^4.0.0": version: 4.0.0 resolution: "path-type@npm:4.0.0" @@ -10395,13 +12630,6 @@ __metadata: languageName: node linkType: hard -"peek-readable@npm:^5.0.0": - version: 5.0.0 - resolution: "peek-readable@npm:5.0.0" - checksum: 9350acc783b1b01c956e07f1e010d25b7e3f995719fe08d7deb5d2ac782550875ef57006304a566a0cac14e9c5d5ba95c1c09888a79ddf2d8e2682a51e833516 - languageName: node - linkType: hard - "pend@npm:~1.2.0": version: 1.2.0 resolution: "pend@npm:1.2.0" @@ -10423,21 +12651,14 @@ __metadata: languageName: node linkType: hard -"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.2, picomatch@npm:^2.2.3": - version: 2.3.0 - resolution: "picomatch@npm:2.3.0" - checksum: d4faab222672fe1742c07aa4126e57f77236f51ac02f1ff7b698344dc1cf043b31ee70105317b42a889a6c19dd244cf99a9ba143ec85b863eed318652d0e6afb - languageName: node - linkType: hard - -"picomatch@npm:^2.3.1": +"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.2, picomatch@npm:^2.3.1": version: 2.3.1 resolution: "picomatch@npm:2.3.1" checksum: 6ba5938c24af2c5918e94b39aa0ad48d71f2c30634de69d46e0bd32feb666de4e909406db6ffb78f98d39ef450d6a41b6fa3954dc3659d7b2b750766c1261e5e languageName: node linkType: hard -"pidtree@npm:^0.6.0": +"pidtree@npm:0.6.0": version: 0.6.0 resolution: "pidtree@npm:0.6.0" bin: @@ -10453,33 +12674,37 @@ __metadata: languageName: node linkType: hard -"pluralize@npm:^8.0.0": - version: 8.0.0 - resolution: "pluralize@npm:8.0.0" - checksum: e3bd882f49d220fbf7996a66c6c7f13fea43fbb7155de11cba8902ebfc7ed2a06cb2a706895738de9f6c089c72542bea8c855dab6abe11e54e75986ad19bfc7e +"pify@npm:^4.0.1": + version: 4.0.1 + resolution: "pify@npm:4.0.1" + checksum: 53d52fa909026494c83009816cbfe420f014b4ebafaa0f1b702cb03172e7e72cf14678cf6b545d3d722c88bc4717ccf4dc5b79bdf689d5e1776cf795659da49b languageName: node linkType: hard -"postcss-assets@npm:^6.0.0": - version: 6.0.0 - resolution: "postcss-assets@npm:6.0.0" +"pkg-dir@npm:^4.2.0": + version: 4.2.0 + resolution: "pkg-dir@npm:4.2.0" dependencies: - assets: "npm:^3.0.0" - postcss-functions: "npm:^4.0.2" - peerDependencies: - postcss: ^8.2.15 - checksum: 96b482533c878a27861019ac7585b6557cafb22bbb9681dd5ece223592ea4d79112b17f8ab0c278e038f3f94a2a9a478f90a887912b377aa4ed4fe8df8043577 + find-up: "npm:^4.0.0" + checksum: 220ae78b93ef48d6cd81958ff3bdda5f5e6268c9887ca430aa974370499669c72886d85db0a768898a0a09114be14aab9a7171356033c082c0d2e65f384a5886 languageName: node linkType: hard -"postcss-attribute-case-insensitive@npm:^5.0.2": - version: 5.0.2 - resolution: "postcss-attribute-case-insensitive@npm:5.0.2" +"pluralize@npm:^8.0.0": + version: 8.0.0 + resolution: "pluralize@npm:8.0.0" + checksum: e3bd882f49d220fbf7996a66c6c7f13fea43fbb7155de11cba8902ebfc7ed2a06cb2a706895738de9f6c089c72542bea8c855dab6abe11e54e75986ad19bfc7e + languageName: node + linkType: hard + +"postcss-attribute-case-insensitive@npm:^6.0.2": + version: 6.0.2 + resolution: "postcss-attribute-case-insensitive@npm:6.0.2" dependencies: postcss-selector-parser: "npm:^6.0.10" peerDependencies: - postcss: ^8.2 - checksum: fc22a76b9cdfb83bd5e48f4e22e305d6e9955cfaa7995a5ad5f2f5a87bac7d7495bf0edfac2423b56a571e9e0cfb2e7a601a03db63e0efd6a74912e61a8e900e + postcss: ^8.4 + checksum: 7cf4fda67b23a75ce0ef0629b65e6d9a156398269c686858804e664e7677ed2d39786f42e6bc0545cbcd9156da300af98f709af3427605dc440b87b3c8d1195e languageName: node linkType: hard @@ -10494,138 +12719,124 @@ __metadata: languageName: node linkType: hard -"postcss-color-functional-notation@npm:^4.2.4": - version: 4.2.4 - resolution: "postcss-color-functional-notation@npm:4.2.4" - dependencies: - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: 465170d14a1b3e01d426d08ca4c49b114ccb23ba45128aba0db3a463afc6a0e4aa450c2a67b521acaf8899be974698145a64db73115daca872f2332ff81cc8d9 - languageName: node - linkType: hard - -"postcss-color-hex-alpha@npm:^8.0.4": - version: 8.0.4 - resolution: "postcss-color-hex-alpha@npm:8.0.4" +"postcss-color-functional-notation@npm:^6.0.0": + version: 6.0.0 + resolution: "postcss-color-functional-notation@npm:6.0.0" dependencies: + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" postcss-value-parser: "npm:^4.2.0" peerDependencies: postcss: ^8.4 - checksum: 87f7d2a0ac107c6e640be17c778dd6591f3326308d88e90387ffb68213df46b907a1e4186115019a7dd6f3cdea7777e4bb1646de64046e38b6e2d92c141411e8 + checksum: ead3210efecfd96b8fbac2d5291a6ea2b507f1e8e8941f56d18d7e4407f4181c948ed13022eb68efaff33bbc0dfcb9d00422f3f722f69ea89d76dc4540458764 languageName: node linkType: hard -"postcss-color-rebeccapurple@npm:^7.1.1": - version: 7.1.1 - resolution: "postcss-color-rebeccapurple@npm:7.1.1" +"postcss-color-hex-alpha@npm:^9.0.2": + version: 9.0.2 + resolution: "postcss-color-hex-alpha@npm:9.0.2" dependencies: postcss-value-parser: "npm:^4.2.0" peerDependencies: - postcss: ^8.2 - checksum: e7a8249a543ca095a953ffca2eceaf469e343e5f975f836fce8913158fe93575e5ed34d19fad4f0f243512198c1e8a33ba9ebdc9a15941390557392f98c7af52 + postcss: ^8.4 + checksum: f51c031a1932cdc3fadf8fb5abd9059fc90cbda539ce036f69829baa1ed0750a342cf3392a7bc43ca6b083ff9521f91479f67fbd6afcbdb615b31516500ec23b languageName: node linkType: hard -"postcss-custom-media@npm:^8.0.2": - version: 8.0.2 - resolution: "postcss-custom-media@npm:8.0.2" +"postcss-color-rebeccapurple@npm:^9.0.0": + version: 9.0.0 + resolution: "postcss-color-rebeccapurple@npm:9.0.0" dependencies: postcss-value-parser: "npm:^4.2.0" peerDependencies: - postcss: ^8.3 - checksum: a367f459388073128767fd753d7c890ceb9fc0d66fb133b00ee556ff7110f06587a535f8b8163ae32f625d9eb7bf7d83bda4adf78bcf9e7d2a4dd8ae2768d400 + postcss: ^8.4 + checksum: 1ccdccbd6ffeb89a4a43464a6ebb677c4c9a96449f7d21a2e66f69bb65816875f8afd14e53522a7d3e7d78b83d0cd0bb399d5eacd537d7887f061ca49e67f66e languageName: node linkType: hard -"postcss-custom-media@npm:^9.0.1": - version: 9.0.1 - resolution: "postcss-custom-media@npm:9.0.1" +"postcss-custom-media@npm:^10.0.0": + version: 10.0.0 + resolution: "postcss-custom-media@npm:10.0.0" dependencies: - "@csstools/css-parser-algorithms": "npm:^1.0.0" - "@csstools/css-tokenizer": "npm:^1.0.0" - "@csstools/media-query-list-parser": "npm:^1.0.0" + "@csstools/cascade-layer-name-parser": "npm:^1.0.3" + "@csstools/css-parser-algorithms": "npm:^2.3.0" + "@csstools/css-tokenizer": "npm:^2.1.1" + "@csstools/media-query-list-parser": "npm:^2.1.2" peerDependencies: postcss: ^8.4 - checksum: 8e06505edea8329d17fe2d087e685c5cfe331e35813dd7af6a650aad32fbcd7f9e2964b3d5647b4b45aaedff3d2c06ea38a859a1d7889864503bdc6c9b32f1a2 + checksum: dd80a5f1342c59af5922c13a1e9d1a497212a9d6215d524e2b74221814491e677f712b284c2cebf9f8692cd50e26e9069f4aa1cb21ee229224b2836e6dc7a34c languageName: node linkType: hard -"postcss-custom-properties@npm:^12.1.10": - version: 12.1.11 - resolution: "postcss-custom-properties@npm:12.1.11" +"postcss-custom-properties@npm:^13.3.0": + version: 13.3.0 + resolution: "postcss-custom-properties@npm:13.3.0" dependencies: + "@csstools/cascade-layer-name-parser": "npm:^1.0.4" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" postcss-value-parser: "npm:^4.2.0" peerDependencies: - postcss: ^8.2 - checksum: 1d421ec942bed36ea341a6ad6aef9ef3d4df9af2f9353c7bb300f260d812171b5910579348f5776d62ade557963497d7db3c802166d537b52593c97a7968ea7a - languageName: node - linkType: hard - -"postcss-custom-selectors@npm:^6.0.3": - version: 6.0.3 - resolution: "postcss-custom-selectors@npm:6.0.3" - dependencies: - postcss-selector-parser: "npm:^6.0.4" - peerDependencies: - postcss: ^8.3 - checksum: 8db036c143f2f2a57824c2a05381e6759a32328bdffc853968abf38654a7223c4d648f312e0ae8130453567ffeeb70ed02f561ccf0c1f8fbcce0eedc3335694d + postcss: ^8.4 + checksum: e1cbab874b44b35ab9e4f4f870395c0f2933252960327467c294f358186b66607c92705eaf1e4349e37c96d21b90549027da8a62a1826895bf0ed9877daedfe4 languageName: node linkType: hard -"postcss-dir-pseudo-class@npm:^6.0.5": - version: 6.0.5 - resolution: "postcss-dir-pseudo-class@npm:6.0.5" +"postcss-custom-selectors@npm:^7.1.4": + version: 7.1.4 + resolution: "postcss-custom-selectors@npm:7.1.4" dependencies: - postcss-selector-parser: "npm:^6.0.10" + "@csstools/cascade-layer-name-parser": "npm:^1.0.3" + "@csstools/css-parser-algorithms": "npm:^2.3.0" + "@csstools/css-tokenizer": "npm:^2.1.1" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: - postcss: ^8.2 - checksum: d6cbb460e8168599dca3441a2f7d8d2bbe93e76103e878dca7cb040a02fbc1e19c6d22811ea2d8eef805e96f26f50003c68af96a7e48ccd062805c1520332f19 + postcss: ^8.4 + checksum: 096859064aa5f3f5c3f4eed47900333d6df0e2e761c2a71c25adbc334451d0e4d1b91931a36e801b0b62d6a737cc12b75e3305395a27f3673ea5ecdccabfde06 languageName: node linkType: hard -"postcss-double-position-gradients@npm:^3.1.2": - version: 3.1.2 - resolution: "postcss-double-position-gradients@npm:3.1.2" +"postcss-dir-pseudo-class@npm:^8.0.0": + version: 8.0.0 + resolution: "postcss-dir-pseudo-class@npm:8.0.0" dependencies: - "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" - postcss-value-parser: "npm:^4.2.0" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: - postcss: ^8.2 - checksum: 36488ef6839b044b7fed6aa1af3d5e00200149d3a5b9572a0cbe96361d9dad032f8f4cb1c66e4d783269daa95389ab1ed32f73a46dc9c0741e85dcb407347ab9 + postcss: ^8.4 + checksum: f8ef485686acf61ac2abf6f6444bf3249122a3e97e8ac5b5a067f77364fdb4e59ead2e33e3c64a9226ff7af9c0ebd6b9d05b58b445b333e985e812c25b8b8361 languageName: node linkType: hard -"postcss-env-function@npm:^4.0.6": - version: 4.0.6 - resolution: "postcss-env-function@npm:4.0.6" +"postcss-double-position-gradients@npm:^5.0.0": + version: 5.0.0 + resolution: "postcss-double-position-gradients@npm:5.0.0" dependencies: + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" postcss-value-parser: "npm:^4.2.0" peerDependencies: postcss: ^8.4 - checksum: 42b4fe9f9937e021a314e960815e83f8ef62917607c5987f885017e34711e9a164341c474298c22dbb2f512d3c3c65cb05fb014807a833bf077fff5189e06559 + checksum: 7e664802c40769310da5124a09eed160e130e39a9419ff5a385efbe761a0004a77e6ef9b215be402a84612da00d5fc2261a7cb9a97c70a9f236b613b8d107920 languageName: node linkType: hard -"postcss-focus-visible@npm:^6.0.4": - version: 6.0.4 - resolution: "postcss-focus-visible@npm:6.0.4" +"postcss-focus-visible@npm:^9.0.0": + version: 9.0.0 + resolution: "postcss-focus-visible@npm:9.0.0" dependencies: - postcss-selector-parser: "npm:^6.0.9" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: postcss: ^8.4 - checksum: 3a3cd79bb8682d3ebf8b33bc8e94b5431ca67c372fbfcabc8312a6148938e797a71e7f588b5c8e7ed8fe51721dd7608056972014686d01b44cf44465b526431d + checksum: dec8aafd507bf7a7e9f6d1f390c9efe46bedd9cfba34b34323b0cc0f4bf676cc22fd2da17a20c2cee8eb7d8bd1c006fc7c8915b46d2b4fd1c2d99abd60fcb776 languageName: node linkType: hard -"postcss-focus-within@npm:^5.0.4": - version: 5.0.4 - resolution: "postcss-focus-within@npm:5.0.4" +"postcss-focus-within@npm:^8.0.0": + version: 8.0.0 + resolution: "postcss-focus-within@npm:8.0.0" dependencies: - postcss-selector-parser: "npm:^6.0.9" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: postcss: ^8.4 - checksum: 956e5fcddeb566ed20cfc5e276e37a7b395e942882bd8f7c703cbe9cba05db98da68fd4bf156279d0d5a2d3c70a853664d604cca51ba693c05e6d67b36c9589e + checksum: 1c30879867fd945663c4d21dd41925f694c3aa58e477eb97b109769da492316a011427242befafe8aab12273a3a1dffbc9d2ca7e37741ce2d62ffee24455c3e6 languageName: node linkType: hard @@ -10638,34 +12849,35 @@ __metadata: languageName: node linkType: hard -"postcss-functions@npm:^4.0.2": - version: 4.0.2 - resolution: "postcss-functions@npm:4.0.2" - dependencies: - postcss-value-parser: "npm:^4.0.0" +"postcss-gap-properties@npm:^5.0.0": + version: 5.0.0 + resolution: "postcss-gap-properties@npm:5.0.0" peerDependencies: - postcss: ^8.0.0 - checksum: 2024dbcb56d149fdfe952effcad7e81155bd8ae452a9a13d3585ed7f980cf447b86f106f4e0820a6e8f27eeac491a96ccac9c431de5bfb8ff5be00612e337af9 + postcss: ^8.4 + checksum: 9e5a451d03ccef5996405897b65446aea0c258de2dc14db81623aa2e4f2878d3a41944d2e0029d186d9298bc2461156c7a9a156840afa8065a712eb05e513a32 languageName: node linkType: hard -"postcss-gap-properties@npm:^3.0.5": - version: 3.0.5 - resolution: "postcss-gap-properties@npm:3.0.5" - peerDependencies: - postcss: ^8.2 - checksum: de6b0c4c5afcbeb7966972bf973878d7debc59090fbeb77e4dc42fbeab082f606bf6f498071c3a2cb1c5a8764baeb70251aab19d0eebb92e453ac5b90bc3594b +"postcss-html@npm:^1.5.0": + version: 1.5.0 + resolution: "postcss-html@npm:1.5.0" + dependencies: + htmlparser2: "npm:^8.0.0" + js-tokens: "npm:^8.0.0" + postcss: "npm:^8.4.0" + postcss-safe-parser: "npm:^6.0.0" + checksum: 9de19600664954158d1abfa69b9314f13eb9e85b6df581ec8c37f0d2991459961e1bcc56a4f33862166719eda5c2d65a099776df7e33e0e92364d650d9eaf49d languageName: node linkType: hard -"postcss-image-set-function@npm:^4.0.7": - version: 4.0.7 - resolution: "postcss-image-set-function@npm:4.0.7" +"postcss-image-set-function@npm:^6.0.0": + version: 6.0.0 + resolution: "postcss-image-set-function@npm:6.0.0" dependencies: postcss-value-parser: "npm:^4.2.0" peerDependencies: - postcss: ^8.2 - checksum: 71b79d742ae7c6f5efbfc7e25ae072dcef05d82bfd89ce6fa566c7e7a3c202101de0729e2315c6686d0271a38092ca82f71c21761be8e8681f9db3b271ee17eb + postcss: ^8.4 + checksum: 29d341bb8b36a3010466443dfc9c550ba57d9f0423d26c167577cef080cd2f130f4f9d9aa4f0c64cb6a290563b0ab1a53717263c8b9b8a69b9e47f704303ce9e languageName: node linkType: hard @@ -10678,33 +12890,28 @@ __metadata: languageName: node linkType: hard -"postcss-lab-function@npm:^4.2.1": - version: 4.2.1 - resolution: "postcss-lab-function@npm:4.2.1" +"postcss-lab-function@npm:^6.0.3": + version: 6.0.3 + resolution: "postcss-lab-function@npm:6.0.3" dependencies: - "@csstools/postcss-progressive-custom-properties": "npm:^1.1.0" - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.2 - checksum: 292cc92695d86bacb7b51996ccb3a62f74cc197e7a0b40e1a9be9a1a89fa5c6425b94182b1bbbd6284f5aa01ec2b393a87dc7c360f96a10c70ddf561f6dfae2f - languageName: node - linkType: hard - -"postcss-logical@npm:^5.0.4": - version: 5.0.4 - resolution: "postcss-logical@npm:5.0.4" + "@csstools/css-color-parser": "npm:^1.3.1" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" peerDependencies: postcss: ^8.4 - checksum: 4f0374395ad3fc68c3c9dd7eefae7731b8aefcaf5084772ae36ef4afdfdae50d95203c9c0e38e7e3f076a8d5b962ee2b865566dbaf0f90f9390bed4feb48e6c2 + checksum: 4755cdab6c584300cf88d93075119578616365e203de9fb6acd1e851b65658bb65c24e8ab117336a2ddb4196213edb5d03c53d34f4a797fcc0074cea72875768 languageName: node linkType: hard -"postcss-media-minmax@npm:^5.0.0": - version: 5.0.0 - resolution: "postcss-media-minmax@npm:5.0.0" +"postcss-logical@npm:^7.0.0": + version: 7.0.0 + resolution: "postcss-logical@npm:7.0.0" + dependencies: + postcss-value-parser: "npm:^4.2.0" peerDependencies: - postcss: ^8.1.0 - checksum: de6f2e7c63d2cb15ceae1f6586bca9599f5f031417721e9b55fa8c825fb6641b411b4a92925ab57a78dcbf9b3323857a54245acc942139110f2d4033d8a850c9 + postcss: ^8.4 + checksum: dee4b1e6f12084b5b02cd00adf68f4077a239d89c3c468af513e5733196c8821397a0669d5e475722f184ca445936af859792763b46e7c2774402b33055a3fa3 languageName: node linkType: hard @@ -10715,33 +12922,35 @@ __metadata: languageName: node linkType: hard -"postcss-nesting@npm:^10.2.0": - version: 10.2.0 - resolution: "postcss-nesting@npm:10.2.0" +"postcss-nesting@npm:^12.0.1": + version: 12.0.1 + resolution: "postcss-nesting@npm:12.0.1" dependencies: - "@csstools/selector-specificity": "npm:^2.0.0" - postcss-selector-parser: "npm:^6.0.10" + "@csstools/selector-specificity": "npm:^3.0.0" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: - postcss: ^8.2 - checksum: 23d9f4db3896548939f66390ba4797c113608cd63deeb166ed6e0ac507e8cd63d612b3b2c2327aaeaab4f3a487329c2774f7da7a4193ba1e530cbbe9f9fe2b70 + postcss: ^8.4 + checksum: 3e0ee57832d3a2fa3c26cad1d3a8f4125228fd0a68d4913b5120c93589318699796a7d7d4cb29846d24f31ac1664d04b5a15aa6ed7e678dfe8b4d4dbfabf8cbe languageName: node linkType: hard -"postcss-opacity-percentage@npm:^1.1.2": - version: 1.1.2 - resolution: "postcss-opacity-percentage@npm:1.1.2" - checksum: c8028a55943985e11b975b9d1db783524088cb235d3cf2950d29c0bd1ad29d6f0130d778a0535704cd605d6b77513e259f40e086e216da7fa2f77dbfeec2fe12 +"postcss-opacity-percentage@npm:^2.0.0": + version: 2.0.0 + resolution: "postcss-opacity-percentage@npm:2.0.0" + peerDependencies: + postcss: ^8.2 + checksum: ce02321d6a3d8180ecbf473cad1936a41bc03c0f4bca47d363eebbcc8f6e7858990eedc84e7bf7267cae392f09ef7ca7c27e2c5655c6b22361789d4744710d4e languageName: node linkType: hard -"postcss-overflow-shorthand@npm:^3.0.4": - version: 3.0.4 - resolution: "postcss-overflow-shorthand@npm:3.0.4" +"postcss-overflow-shorthand@npm:^5.0.0": + version: 5.0.0 + resolution: "postcss-overflow-shorthand@npm:5.0.0" dependencies: postcss-value-parser: "npm:^4.2.0" peerDependencies: - postcss: ^8.2 - checksum: 0873c47563ce390126c80a35c587ad17a85ac7a6befb86b12461bb34fdac700330af2c7744905047809dc0d728d57cd0986e87d75505f7566a2e2cbe498483a2 + postcss: ^8.4 + checksum: cf64f4c46689ffd7b5482d0bf69fc5df91cae98867c1faa8cad11af82c3910a0f4658755722a155bc8dec65d5a4bafc9aa1c3ba2f1c92d4573b208b1c29773b0 languageName: node linkType: hard @@ -10754,84 +12963,92 @@ __metadata: languageName: node linkType: hard -"postcss-place@npm:^7.0.5": - version: 7.0.5 - resolution: "postcss-place@npm:7.0.5" +"postcss-place@npm:^9.0.0": + version: 9.0.0 + resolution: "postcss-place@npm:9.0.0" dependencies: postcss-value-parser: "npm:^4.2.0" peerDependencies: - postcss: ^8.2 - checksum: 083fceeec78000dbb7ee46c726f5b1469f860c54e80683dff99196f59a905e81dc971d6b4db0609a659bcb835286c84365021a7746736f4e72010fe032e6fda3 - languageName: node - linkType: hard - -"postcss-preset-env@npm:^7.8.3": - version: 7.8.3 - resolution: "postcss-preset-env@npm:7.8.3" - dependencies: - "@csstools/postcss-cascade-layers": "npm:^1.1.1" - "@csstools/postcss-color-function": "npm:^1.1.1" - "@csstools/postcss-font-format-keywords": "npm:^1.0.1" - "@csstools/postcss-hwb-function": "npm:^1.0.2" - "@csstools/postcss-ic-unit": "npm:^1.0.1" - "@csstools/postcss-is-pseudo-class": "npm:^2.0.7" - "@csstools/postcss-nested-calc": "npm:^1.0.0" - "@csstools/postcss-normalize-display-values": "npm:^1.0.1" - "@csstools/postcss-oklab-function": "npm:^1.1.1" - "@csstools/postcss-progressive-custom-properties": "npm:^1.3.0" - "@csstools/postcss-stepped-value-functions": "npm:^1.0.1" - "@csstools/postcss-text-decoration-shorthand": "npm:^1.0.0" - "@csstools/postcss-trigonometric-functions": "npm:^1.0.2" - "@csstools/postcss-unset-value": "npm:^1.0.2" - autoprefixer: "npm:^10.4.13" - browserslist: "npm:^4.21.4" - css-blank-pseudo: "npm:^3.0.3" - css-has-pseudo: "npm:^3.0.4" - css-prefers-color-scheme: "npm:^6.0.3" - cssdb: "npm:^7.1.0" - postcss-attribute-case-insensitive: "npm:^5.0.2" + postcss: ^8.4 + checksum: d861dd38c77de51290411972369ba2a1da3f27cd6b5016a5e7f4ea84b9ff78ff5dabe878e43dc79614a3d5922129970bc93d104f48ce37d1bb491e93fdb5c17e + languageName: node + linkType: hard + +"postcss-preset-env@npm:^9.1.3": + version: 9.1.3 + resolution: "postcss-preset-env@npm:9.1.3" + dependencies: + "@csstools/postcss-cascade-layers": "npm:^4.0.0" + "@csstools/postcss-color-function": "npm:^3.0.3" + "@csstools/postcss-color-mix-function": "npm:^2.0.3" + "@csstools/postcss-exponential-functions": "npm:^1.0.0" + "@csstools/postcss-font-format-keywords": "npm:^3.0.0" + "@csstools/postcss-gradients-interpolation-method": "npm:^4.0.3" + "@csstools/postcss-hwb-function": "npm:^3.0.3" + "@csstools/postcss-ic-unit": "npm:^3.0.0" + "@csstools/postcss-is-pseudo-class": "npm:^4.0.1" + "@csstools/postcss-logical-float-and-clear": "npm:^2.0.0" + "@csstools/postcss-logical-resize": "npm:^2.0.0" + "@csstools/postcss-logical-viewport-units": "npm:^2.0.1" + "@csstools/postcss-media-minmax": "npm:^1.0.7" + "@csstools/postcss-media-queries-aspect-ratio-number-values": "npm:^2.0.2" + "@csstools/postcss-nested-calc": "npm:^3.0.0" + "@csstools/postcss-normalize-display-values": "npm:^3.0.0" + "@csstools/postcss-oklab-function": "npm:^3.0.3" + "@csstools/postcss-progressive-custom-properties": "npm:^3.0.0" + "@csstools/postcss-relative-color-syntax": "npm:^2.0.3" + "@csstools/postcss-scope-pseudo-class": "npm:^3.0.0" + "@csstools/postcss-stepped-value-functions": "npm:^3.0.1" + "@csstools/postcss-text-decoration-shorthand": "npm:^3.0.2" + "@csstools/postcss-trigonometric-functions": "npm:^3.0.1" + "@csstools/postcss-unset-value": "npm:^3.0.0" + autoprefixer: "npm:^10.4.15" + browserslist: "npm:^4.21.10" + css-blank-pseudo: "npm:^6.0.0" + css-has-pseudo: "npm:^6.0.0" + css-prefers-color-scheme: "npm:^9.0.0" + cssdb: "npm:^7.7.1" + postcss-attribute-case-insensitive: "npm:^6.0.2" postcss-clamp: "npm:^4.1.0" - postcss-color-functional-notation: "npm:^4.2.4" - postcss-color-hex-alpha: "npm:^8.0.4" - postcss-color-rebeccapurple: "npm:^7.1.1" - postcss-custom-media: "npm:^8.0.2" - postcss-custom-properties: "npm:^12.1.10" - postcss-custom-selectors: "npm:^6.0.3" - postcss-dir-pseudo-class: "npm:^6.0.5" - postcss-double-position-gradients: "npm:^3.1.2" - postcss-env-function: "npm:^4.0.6" - postcss-focus-visible: "npm:^6.0.4" - postcss-focus-within: "npm:^5.0.4" + postcss-color-functional-notation: "npm:^6.0.0" + postcss-color-hex-alpha: "npm:^9.0.2" + postcss-color-rebeccapurple: "npm:^9.0.0" + postcss-custom-media: "npm:^10.0.0" + postcss-custom-properties: "npm:^13.3.0" + postcss-custom-selectors: "npm:^7.1.4" + postcss-dir-pseudo-class: "npm:^8.0.0" + postcss-double-position-gradients: "npm:^5.0.0" + postcss-focus-visible: "npm:^9.0.0" + postcss-focus-within: "npm:^8.0.0" postcss-font-variant: "npm:^5.0.0" - postcss-gap-properties: "npm:^3.0.5" - postcss-image-set-function: "npm:^4.0.7" + postcss-gap-properties: "npm:^5.0.0" + postcss-image-set-function: "npm:^6.0.0" postcss-initial: "npm:^4.0.1" - postcss-lab-function: "npm:^4.2.1" - postcss-logical: "npm:^5.0.4" - postcss-media-minmax: "npm:^5.0.0" - postcss-nesting: "npm:^10.2.0" - postcss-opacity-percentage: "npm:^1.1.2" - postcss-overflow-shorthand: "npm:^3.0.4" + postcss-lab-function: "npm:^6.0.3" + postcss-logical: "npm:^7.0.0" + postcss-nesting: "npm:^12.0.1" + postcss-opacity-percentage: "npm:^2.0.0" + postcss-overflow-shorthand: "npm:^5.0.0" postcss-page-break: "npm:^3.0.4" - postcss-place: "npm:^7.0.5" - postcss-pseudo-class-any-link: "npm:^7.1.6" + postcss-place: "npm:^9.0.0" + postcss-pseudo-class-any-link: "npm:^9.0.0" postcss-replace-overflow-wrap: "npm:^4.0.0" - postcss-selector-not: "npm:^6.0.1" + postcss-selector-not: "npm:^7.0.1" postcss-value-parser: "npm:^4.2.0" peerDependencies: - postcss: ^8.2 - checksum: dbee45a0402e781afa012cdad8cc47e50927dd86933989ce43c2649cba922fa122ba5d643cf749824177cd9496835673d86650c6f796d9400a9d8cc8bfafc2e9 + postcss: ^8.4 + checksum: 85995aab64323f89df11c3f465178708dcc019280cb20f9bf12031ed660c8bd83252b453ad5c79627376aba79d2d397409e490fb9cf5a6256e93a05497419e82 languageName: node linkType: hard -"postcss-pseudo-class-any-link@npm:^7.1.6": - version: 7.1.6 - resolution: "postcss-pseudo-class-any-link@npm:7.1.6" +"postcss-pseudo-class-any-link@npm:^9.0.0": + version: 9.0.0 + resolution: "postcss-pseudo-class-any-link@npm:9.0.0" dependencies: - postcss-selector-parser: "npm:^6.0.10" + postcss-selector-parser: "npm:^6.0.13" peerDependencies: - postcss: ^8.2 - checksum: 26e30c8207179f0e30fef58ce95f74b0899b75aba4cdfe4704c76794faf96b7096f26fcb324e9bf69209c928cf3886fad632c7b4a806bdd45fd1e3c6d9bab0c5 + postcss: ^8.4 + checksum: fd35038532357b8657f6b7a7b2e1e1321eb2097bc66cde2cb6ebaffbbb32a070214ae9da49cbf839b6975f19bacad361f655cf42bc69ae949c5454f56a52c9d1 languageName: node linkType: hard @@ -10860,109 +13077,116 @@ __metadata: languageName: node linkType: hard -"postcss-scss@npm:^4.0.2": - version: 4.0.3 - resolution: "postcss-scss@npm:4.0.3" +"postcss-scss@npm:^4.0.7": + version: 4.0.8 + resolution: "postcss-scss@npm:4.0.8" peerDependencies: - postcss: ^8.3.3 - checksum: 4f3ade7c896b6e9c6510746b18fcc85f758282c9dfe5fc9e2016607be5818bfd685b2829381ce6814a26c3b30783f5e15aab226e4d635cc220bdca07c512aacb + postcss: ^8.4.29 + checksum: 1f91bb5d3c1758ccd5bd976ec4213cebd869c503d43786e52ea4695fd1d3c811b48b7e498cc9ff3ebc518e3348fd652d9d244c47acd5cce244c778780c527fff languageName: node linkType: hard -"postcss-selector-not@npm:^6.0.1": - version: 6.0.1 - resolution: "postcss-selector-not@npm:6.0.1" +"postcss-selector-not@npm:^7.0.1": + version: 7.0.1 + resolution: "postcss-selector-not@npm:7.0.1" dependencies: postcss-selector-parser: "npm:^6.0.10" peerDependencies: - postcss: ^8.2 - checksum: c4160d0b028759cc76cf563cd9982901eac9d60faf8b04cd65c1d1e6cf95fca9103a130916b747af6979bb4e60501f37bf158faef1545536f46f745e62b3b6f5 - languageName: node - linkType: hard - -"postcss-selector-parser@npm:^6.0.10, postcss-selector-parser@npm:^6.0.6": - version: 6.0.10 - resolution: "postcss-selector-parser@npm:6.0.10" - dependencies: - cssesc: "npm:^3.0.0" - util-deprecate: "npm:^1.0.2" - checksum: 7ab7cbeba12343c9b8034c556a8e463ec13adbcc891eb8c51bb8f97d65b6bcb5dcd641df7b30014241e3f2435e3f6fbdf3229a8bdd25c14d88df24cb19e8e864 - languageName: node - linkType: hard - -"postcss-selector-parser@npm:^6.0.11": - version: 6.0.11 - resolution: "postcss-selector-parser@npm:6.0.11" - dependencies: - cssesc: "npm:^3.0.0" - util-deprecate: "npm:^1.0.2" - checksum: 7bee200415c2a0b35e41add91cded19209d746be9b2ab7c7b877cbac4358cda4e5dd19d3559544abfc7d87ff8824dcb5619657ac326973f323d0bda2cee0f1a8 + postcss: ^8.4 + checksum: b7823d372f08eb7809b0220797dca59b2611103b1d1fdb6671eb9cc0b678f15a89a14fce684aedb611ed31390f9635fb2c3a0a3f15d09581475169aca7cbc82e languageName: node linkType: hard -"postcss-selector-parser@npm:^6.0.4, postcss-selector-parser@npm:^6.0.9": - version: 6.0.9 - resolution: "postcss-selector-parser@npm:6.0.9" +"postcss-selector-parser@npm:^6.0.10, postcss-selector-parser@npm:^6.0.13": + version: 6.0.13 + resolution: "postcss-selector-parser@npm:6.0.13" dependencies: cssesc: "npm:^3.0.0" util-deprecate: "npm:^1.0.2" - checksum: f0c756835c10f74e56825f61b00d6955187255dca34b737207f05b03600f66c7c65fcd94cf74e700967ec8b316ad0428297027f287232f38ee21b736fde6cd2a + checksum: 1ffd229360bde3922c5ab52460db8c2626695673afd7ac84a7ae575341b4484f50fe1407864d7246a21957058e101bee8884811f22c0c4bcfbec0a06a43ceefd languageName: node linkType: hard -"postcss-sorting@npm:^7.0.1": - version: 7.0.1 - resolution: "postcss-sorting@npm:7.0.1" +"postcss-sorting@npm:^8.0.2": + version: 8.0.2 + resolution: "postcss-sorting@npm:8.0.2" peerDependencies: - postcss: ^8.3.9 - checksum: 9401a32ccc123487f3ee81534c262d63fcafe114ba658be3ce953ea454e8ada1deebb70effe648fe0d78b898ba4e2d07bdcb180e7b67096771f6cd71bc60dd7b + postcss: ^8.4.20 + checksum: 600a0a6e933dc296d46d2b6ccad05ae97d494c55afedd1c40ed66aef421e00f48f3cede03b676d991b2fda8589d3b059cf339d944df96340cb235285e9e5f0ea languageName: node linkType: hard -"postcss-value-parser@npm:^4.0.0, postcss-value-parser@npm:^4.2.0": +"postcss-value-parser@npm:^4.2.0": version: 4.2.0 resolution: "postcss-value-parser@npm:4.2.0" checksum: edc490e9f11336a2efb136d8a52350b5c680ca9a91ee64285732e796177eb888f559a4eafc94cdbf7ce065a388e65b3cc21a32c92458a90efc445f30e8a679dc languageName: node linkType: hard -"postcss-value-parser@npm:^4.1.0": - version: 4.1.0 - resolution: "postcss-value-parser@npm:4.1.0" - checksum: 9351d3474f2c1114831d16b9401a2e623b6d7bd3ff219419882b4fcbce9f0c79f3090cd06121734c67f99f20e109a4570194908df2aa840a03a32e635044137f +"postcss@npm:^8.4.0, postcss@npm:^8.4.14, postcss@npm:^8.4.21": + version: 8.4.24 + resolution: "postcss@npm:8.4.24" + dependencies: + nanoid: "npm:^3.3.6" + picocolors: "npm:^1.0.0" + source-map-js: "npm:^1.0.2" + checksum: 50c4ba61a7fed4d06e084c625f2603cc2448b66f4305d6495a105e73d2f53bdbf34828e5505d33498fa56e87d82e4192e55186e3b5167087d2b93882b6fc9db1 languageName: node linkType: hard -"postcss@npm:^8.3.11": - version: 8.4.14 - resolution: "postcss@npm:8.4.14" +"postcss@npm:^8.4.27": + version: 8.4.27 + resolution: "postcss@npm:8.4.27" dependencies: - nanoid: "npm:^3.3.4" + nanoid: "npm:^3.3.6" picocolors: "npm:^1.0.0" source-map-js: "npm:^1.0.2" - checksum: 1e1e4a4cc235674bea79da18dd3e02ea8ffcd51546c7ddf1fc7ba4de5e89154a83988bb8c1b30bd9566df56fc0077dce6e620d8f9ce6ababf60f659ffc53f72c + checksum: 8c96b1c44b68b3c7573e72f7abbb408b15a09280f6802ab7ad01976b43b6061223a64f5d7daa904aa086dfd6818002daf7f9b0bee4b935b6ee5acdd8dd1f58cd languageName: node linkType: hard -"postcss@npm:^8.4.19, postcss@npm:^8.4.20": - version: 8.4.20 - resolution: "postcss@npm:8.4.20" +"postcss@npm:^8.4.29": + version: 8.4.29 + resolution: "postcss@npm:8.4.29" dependencies: - nanoid: "npm:^3.3.4" + nanoid: "npm:^3.3.6" picocolors: "npm:^1.0.0" source-map-js: "npm:^1.0.2" - checksum: bdc074b44b690f08c0496d78e0777bb2072633c6facbb6a987ae4cb1041333bcbd592e81244293ba1cf888ececc8dd224a1162751e84d173305aaed6f8f82957 + checksum: 864e25de0e682bfd32360b0f5cea0ba0bf18a3d30e8ad3baa8da284760c3f66f901da7965783e1e0463672689e35f3b7aec03f6f36c794091959c72776a5c12e languageName: node linkType: hard -"postcss@npm:^8.4.21": - version: 8.4.21 - resolution: "postcss@npm:8.4.21" +"prebuild-install@npm:^7.1.1": + version: 7.1.1 + resolution: "prebuild-install@npm:7.1.1" + dependencies: + detect-libc: "npm:^2.0.0" + expand-template: "npm:^2.0.3" + github-from-package: "npm:0.0.0" + minimist: "npm:^1.2.3" + mkdirp-classic: "npm:^0.5.3" + napi-build-utils: "npm:^1.0.1" + node-abi: "npm:^3.3.0" + pump: "npm:^3.0.0" + rc: "npm:^1.2.7" + simple-get: "npm:^4.0.0" + tar-fs: "npm:^2.0.0" + tunnel-agent: "npm:^0.6.0" + bin: + prebuild-install: bin.js + checksum: 3ad2c49cbd7e7d52a6c6967ee3ca6f3f333f301a70866f21accadb9e29dbbf905e76ac543cfe3a1911fbd583bbe39f05b944278439e6ae402f0e9df768c3a0ee + languageName: node + linkType: hard + +"preferred-pm@npm:^3.1.2": + version: 3.1.2 + resolution: "preferred-pm@npm:3.1.2" dependencies: - nanoid: "npm:^3.3.4" - picocolors: "npm:^1.0.0" - source-map-js: "npm:^1.0.2" - checksum: 4fb944abed714e5aa88c76b6eae19b293e84ced7ea4162fe0da6ab5215ded572330df93ce3bb5073ee18a9ad0122a6a65e3000897dc3a828e96281d8b3e1f91e + find-up: "npm:^5.0.0" + find-yarn-workspace-root2: "npm:1.2.16" + path-exists: "npm:^4.0.0" + which-pm: "npm:2.0.0" + checksum: edf69557c0fb6d786b620483738e3eb9a2620f5aa7a0b23e388ca01d479beaed9c6a4fd378dba435aa5de058edf6d5be6fc25bf7ae2216b61b6212f7aaa65990 languageName: node linkType: hard @@ -10982,12 +13206,23 @@ __metadata: languageName: node linkType: hard -"prettier@npm:^2.8.1": - version: 2.8.1 - resolution: "prettier@npm:2.8.1" +"prettier-plugin-astro@npm:^0.12.0": + version: 0.12.0 + resolution: "prettier-plugin-astro@npm:0.12.0" + dependencies: + "@astrojs/compiler": "npm:^1.5.5" + prettier: "npm:^3.0.0" + sass-formatter: "npm:^0.7.6" + checksum: 546c66a92a972fbc60d4f86ee1cc21bc6b60e0e43789dfed68e8d3cc4d7c7dd1d601b4d042f457fb3a8f815a98225f1926f240c2f5259eed7e7aaa5b2e0efba4 + languageName: node + linkType: hard + +"prettier@npm:^3.0.0, prettier@npm:^3.0.3": + version: 3.0.3 + resolution: "prettier@npm:3.0.3" bin: - prettier: bin-prettier.js - checksum: 06a74a0f7aa5877a3912aeeeae3558014b10e438d945f88bd313222e75e7282eb7f41299d204353ec7d00b208377ddc36ffe4c7d2151f0502e783139b934d66d + prettier: bin/prettier.cjs + checksum: 467e8febce083cba26791b1be3e9ecfee08593a151b7d54803d93bef87033242c3cfdf86cd7ce559b6eda2d1f8d1e54f87bf4a58f6f0258540fe4990753418fc languageName: node linkType: hard @@ -10999,16 +13234,34 @@ __metadata: linkType: hard "pretty-bytes@npm:^6.0.0": - version: 6.0.0 - resolution: "pretty-bytes@npm:6.0.0" - checksum: 9033b687324fe83d1a74b2c69637e4eb26693da76010a3446bb24bdec1508106ed930fcfe61a7661a227c32ea2e499b1aa0493fe370c844dfb329e4c7c3ff0ff + version: 6.1.0 + resolution: "pretty-bytes@npm:6.1.0" + checksum: 6c2df1578394426e89388c1b482138480b9468daa618ceb8c974d0048ea3002d28dc80d61553be978aedaf67b2b2909a1d10280f9d00bb9ff693b088db44e3e1 languageName: node linkType: hard -"process-nextick-args@npm:~2.0.0": - version: 2.0.1 - resolution: "process-nextick-args@npm:2.0.1" - checksum: 09ec0ec8e28a923bdf8d0b926bfbba475553de2cf0be9232d76904a21a3c8c03b6dd4625738ee0bab8fa10b9b2f2fda8a3f9d18815c3407c30f13b51f84605e9 +"prismjs@npm:^1.29.0": + version: 1.29.0 + resolution: "prismjs@npm:1.29.0" + checksum: 9d15875f071a2495c3ca75e77c6e1149229e073262e960655c41c85a2cd9b76ac45b698c79570ffb76cdf388d8c19d8cbcc49bbbed175c36401e153708fde7d7 + languageName: node + linkType: hard + +"probe-image-size@npm:^7.2.3": + version: 7.2.3 + resolution: "probe-image-size@npm:7.2.3" + dependencies: + lodash.merge: "npm:^4.6.2" + needle: "npm:^2.5.2" + stream-parser: "npm:~0.3.1" + checksum: d94cd006011e511986e48b01231eb668cb521bbe535efd403a424302005b7374ef2860017a7d41019da9013b715dbb07548985978075110a1f8d8fdd7549fca2 + languageName: node + linkType: hard + +"process@npm:^0.11.10": + version: 0.11.10 + resolution: "process@npm:0.11.10" + checksum: e21687b0b8fe1c6812ea43858aa5c1234e05dc6b2c366b280c850fd09d644100cbcf2f3784feec4bc6f57002a465e7eea2901acf1462ffc94ba9ac98f105ede5 languageName: node linkType: hard @@ -11019,13 +13272,6 @@ __metadata: languageName: node linkType: hard -"promise-inflight@npm:^1.0.1": - version: 1.0.1 - resolution: "promise-inflight@npm:1.0.1" - checksum: 7671022d3ea7e40e29ee941d30df819ed2a81a3d22b1175ed8c1bd83af542ea94ca47b50bea54634b12f7b1837fcd7dd5bcc7720910befa0076d12582ee56c93 - languageName: node - linkType: hard - "promise-retry@npm:^2.0.1": version: 2.0.1 resolution: "promise-retry@npm:2.0.1" @@ -11036,6 +13282,30 @@ __metadata: languageName: node linkType: hard +"prompts@npm:^2.4.2": + version: 2.4.2 + resolution: "prompts@npm:2.4.2" + dependencies: + kleur: "npm:^3.0.3" + sisteransi: "npm:^1.0.5" + checksum: 3fc5daab8c24a88bceee525b736b255a5b5838676e626d1c401a92925b4c33562b4e424d51770946b898e73d1bf36f0677bd8b3f7b75d1e7cfe838d6dbfc9259 + languageName: node + linkType: hard + +"property-expr@npm:^2.0.5": + version: 2.0.5 + resolution: "property-expr@npm:2.0.5" + checksum: 2759ff5de231b60cf9f8569eb7997b73953fb5bfbdcbbc63c57bbe25c4c7514005e43060cdf22339bd72687d685c680ac279d675c615ede84939338752ba869c + languageName: node + linkType: hard + +"property-information@npm:^6.0.0": + version: 6.2.0 + resolution: "property-information@npm:6.2.0" + checksum: 1ff7aae1eae0ceb6d13f3b5d4793bc51b986d3b994861d935afce0fcd9633df19b17fd6e3d7a0320f7711653057477621bbc59be5d10472549f4bda68b7bc8c2 + languageName: node + linkType: hard + "proxy-addr@npm:~2.0.7": version: 2.0.7 resolution: "proxy-addr@npm:2.0.7" @@ -11071,17 +13341,10 @@ __metadata: languageName: node linkType: hard -"psl@npm:^1.1.28": - version: 1.8.0 - resolution: "psl@npm:1.8.0" - checksum: cebdf3dcaf1b05ea817ea422e4ea91973c0c54a9deb12112052273c87139f414eeb349dd80aa16cbc969cb5604329dc1e3aa3c8d5748de3e3bd2e1b7debd5c89 - languageName: node - linkType: hard - -"pstree.remy@npm:^1.1.8": - version: 1.1.8 - resolution: "pstree.remy@npm:1.1.8" - checksum: f144e436fd0b93837fffe2ca0f8638788188a5aca8973996e2f9bb76c70ac0218796e4f5da00a7a64d0715d1df837416d6766ec93f5b24147e71738858a4afd7 +"psl@npm:^1.1.33": + version: 1.9.0 + resolution: "psl@npm:1.9.0" + checksum: cf1d67518a183700bcbccded8ba7f4340bc5c4dbd81229f1460c656d065b0b653142ce1c5379be32bf170b47c9eecdb499e8a3b15eb472c9462825da55d7f512 languageName: node linkType: hard @@ -11096,16 +13359,18 @@ __metadata: linkType: hard "punycode@npm:^2.1.0, punycode@npm:^2.1.1": - version: 2.1.1 - resolution: "punycode@npm:2.1.1" - checksum: fd728ef9db90e7b4db37d5c4937d6c6302cf4f64748b2dea3abbf1efd21e6193bb670efb7814766c858b2e1ccdb65ce34e44b498d734922e1dcb2a8623a925d8 + version: 2.3.0 + resolution: "punycode@npm:2.3.0" + checksum: c2b408c805927a6614ef581bd3d00deca1fef9f2da0ec95cecaedf6a985d8596a29e931e31f80f7313f94257895f9ac6cf4c2ae81cdca04964daf9c3c3d221c1 languageName: node linkType: hard -"q@npm:^1.5.1": - version: 1.5.1 - resolution: "q@npm:1.5.1" - checksum: 276b7e93fc76c4979fba33e571e7ff7dec8c93ee0bed8a8f9b212e4bf5b923bb6b632ce0c8981cbb4b49656cf77c163cba032a7e657cba38401c85957ec92fd4 +"qs@npm:6.10.4": + version: 6.10.4 + resolution: "qs@npm:6.10.4" + dependencies: + side-channel: "npm:^1.0.4" + checksum: 204e68ccccfc4b66027f0982d578fd2752772b60ff442354177aec2dbea62695cec8177cc908dd41f6205657ca3fcbfb536ca4a88a22bd50aedc351d12aa76eb languageName: node linkType: hard @@ -11119,18 +13384,18 @@ __metadata: linkType: hard "qs@npm:^6.11.0": - version: 6.11.1 - resolution: "qs@npm:6.11.1" + version: 6.11.2 + resolution: "qs@npm:6.11.2" dependencies: side-channel: "npm:^1.0.4" - checksum: 5c9a1a3e1f2a7f53ca71d50ccabc4edb3018692b5d31a31ecad8db7a39d80c8f8ac5ed4cf49a881bac226f6b1c6e4add361e792e3146240c49d90cc610d738f4 + checksum: 8a38f195494700a656b9e3c0d05d5c44fdd59c4ae9d66b4239d4a7fa38d0867b4ca794c00c45fccb3435aebe046304b7f5ccf558f2c0bc56b793407f282da086 languageName: node linkType: hard -"qs@npm:~6.5.2": - version: 6.5.3 - resolution: "qs@npm:6.5.3" - checksum: 6a4be44c9bd3baef6db5d50905a5d305dce4aa11317c27c7599edee3aff835c1d96e582ff5b9205bcb07e8381d9e92de33570d459415c91d243ea926e27b0002 +"querystringify@npm:^2.1.1": + version: 2.2.0 + resolution: "querystringify@npm:2.2.0" + checksum: e372995f3e1314a6491bd8f99b15d138911c095608d5236cca745794ee2b631755fdc68be31b0fda1a7be0469a55bc6a2d5e0da8c1da03e9cd649fa8cf86aa44 languageName: node linkType: hard @@ -11141,6 +13406,15 @@ __metadata: languageName: node linkType: hard +"queue@npm:6.0.2": + version: 6.0.2 + resolution: "queue@npm:6.0.2" + dependencies: + inherits: "npm:~2.0.3" + checksum: e3cdce3fe26cdb3a70f868e9fd260484482feacb77f1c9af4728118d64234bf1d9665d9342f1fdac2d30276e3a5d09cdaeab895138c9f9300fb03c54c665c5cf + languageName: node + linkType: hard + "quick-lru@npm:^4.0.1": version: 4.0.1 resolution: "quick-lru@npm:4.0.1" @@ -11148,6 +13422,13 @@ __metadata: languageName: node linkType: hard +"quick-lru@npm:^5.1.1": + version: 5.1.1 + resolution: "quick-lru@npm:5.1.1" + checksum: fefb921f96c5cdf650d25d80b709072122e7a24c374aa08b35c4347f319b7614f331002c1107d337651107fadea4a2b8a66774070645a179f6fc6b21edc2085a + languageName: node + linkType: hard + "randombytes@npm:^2.1.0": version: 2.1.0 resolution: "randombytes@npm:2.1.0" @@ -11176,6 +13457,20 @@ __metadata: languageName: node linkType: hard +"rc@npm:^1.2.7": + version: 1.2.8 + resolution: "rc@npm:1.2.8" + dependencies: + deep-extend: "npm:^0.6.0" + ini: "npm:~1.3.0" + minimist: "npm:^1.2.0" + strip-json-comments: "npm:~2.0.1" + bin: + rc: ./cli.js + checksum: 3dec0a5ac3d9400f510ed9eccc86c5a503ba6bf6865c30e16d57bcf6c53f4f2854138ede1e645d7e3fa6f6cd293daa384a1e4e0bd505688e79b0150ef2642949 + languageName: node + linkType: hard + "read-pkg-up@npm:^7.0.1": version: 7.0.1 resolution: "read-pkg-up@npm:7.0.1" @@ -11187,6 +13482,17 @@ __metadata: languageName: node linkType: hard +"read-pkg-up@npm:^8.0.0": + version: 8.0.0 + resolution: "read-pkg-up@npm:8.0.0" + dependencies: + find-up: "npm:^5.0.0" + read-pkg: "npm:^6.0.0" + type-fest: "npm:^1.0.1" + checksum: c5180c8d3ebaa448e0b085c5bf68596ea607f7bb1d98aa5d2ca35b9c27b3b917a69b482fbcd9a307ea793ff21a22f49d69d1e0f5c506f6d25b7034c203ca7f44 + languageName: node + linkType: hard + "read-pkg@npm:^5.2.0": version: 5.2.0 resolution: "read-pkg@npm:5.2.0" @@ -11199,38 +13505,26 @@ __metadata: languageName: node linkType: hard -"readable-stream@npm:3, readable-stream@npm:^3.0.0, readable-stream@npm:^3.6.0": - version: 3.6.0 - resolution: "readable-stream@npm:3.6.0" - dependencies: - inherits: "npm:^2.0.3" - string_decoder: "npm:^1.1.1" - util-deprecate: "npm:^1.0.1" - checksum: bda7b24d3910bf0ec4a1df3c540e1b97b1ed3ca49ea0ddc0d2c6bf29d3997251a7244608de1d842555641d1c115d9b3566167fef9225ee6ef147c9e6a539395b - languageName: node - linkType: hard - -"readable-stream@npm:^2.0.6": - version: 2.3.7 - resolution: "readable-stream@npm:2.3.7" +"read-pkg@npm:^6.0.0": + version: 6.0.0 + resolution: "read-pkg@npm:6.0.0" dependencies: - core-util-is: "npm:~1.0.0" - inherits: "npm:~2.0.3" - isarray: "npm:~1.0.0" - process-nextick-args: "npm:~2.0.0" - safe-buffer: "npm:~5.1.1" - string_decoder: "npm:~1.1.1" - util-deprecate: "npm:~1.0.1" - checksum: 23c757366d6e0dd9115660c7313d10fc6a57fa50f5a62d1fde329cee13d4bc0de7f3db6d2f25722b1bd98171abe3d4bea626545556b4684864e20ecc70a2a57d + "@types/normalize-package-data": "npm:^2.4.0" + normalize-package-data: "npm:^3.0.2" + parse-json: "npm:^5.2.0" + type-fest: "npm:^1.0.1" + checksum: 7f7d15d45ff768d5f0dec61a49f1448d7ea349624582a0c6b0731645c378e2451ed1eed88e1229e7ff5415f7d8929a2b6b3d83ea375edf4d318953acc360cc80 languageName: node linkType: hard -"readable-web-to-node-stream@npm:^3.0.2": - version: 3.0.2 - resolution: "readable-web-to-node-stream@npm:3.0.2" +"readable-stream@npm:3, readable-stream@npm:^3.0.0, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0": + version: 3.6.2 + resolution: "readable-stream@npm:3.6.2" dependencies: - readable-stream: "npm:^3.6.0" - checksum: 16baa48b420bdc395f30c82564676b820d7b4f83f7420d958970dbf765098a4b5d7950180b828d5b7f7eea27fedc05f35b116bee530c6ce990310ea501d7c42c + inherits: "npm:^2.0.3" + string_decoder: "npm:^1.1.1" + util-deprecate: "npm:^1.0.1" + checksum: b1cbe0fea6b407fc75bfbe4f6c54d48899e638d54a8a1207b5040c60566dd5f65059b32c3edf0ac0ce621ea46929b3337e8a19410870eff98b8be5a3ba543b7a languageName: node linkType: hard @@ -11253,6 +13547,16 @@ __metadata: languageName: node linkType: hard +"redent@npm:^4.0.0": + version: 4.0.0 + resolution: "redent@npm:4.0.0" + dependencies: + indent-string: "npm:^5.0.0" + strip-indent: "npm:^4.0.0" + checksum: a04affcfec9913c2cfda142f7a3f15ff28a46d036ab0630a60d8ea107c2cdf72453b6fbc140cc8dbd0bcf71a6e2d4c918281aaffd4ef3610af897ad30b8988ca + languageName: node + linkType: hard + "reflect-metadata@npm:0.1.13": version: 0.1.13 resolution: "reflect-metadata@npm:0.1.13" @@ -11269,16 +13573,7 @@ __metadata: languageName: node linkType: hard -"regenerate-unicode-properties@npm:^8.2.0": - version: 8.2.0 - resolution: "regenerate-unicode-properties@npm:8.2.0" - dependencies: - regenerate: "npm:^1.4.0" - checksum: 0fd6c2d65912638bd18bd8cc917990dfa0095b962c269e37e148aea37aade536c54525d9b6ac3d4a73f7aedcea6b038de4a498b13a2c0a79c47152cca9e35175 - languageName: node - linkType: hard - -"regenerate@npm:^1.4.0, regenerate@npm:^1.4.2": +"regenerate@npm:^1.4.2": version: 1.4.2 resolution: "regenerate@npm:1.4.2" checksum: f2d97117f52ef5bef7757693c3157395c8c542ef4b856addac6e78c76ed7053f2154435912a18a6d1c3ff09702ad525babeffe30a179ef809cacff200cd4d193 @@ -11292,22 +13587,6 @@ __metadata: languageName: node linkType: hard -"regenerator-runtime@npm:^0.13.4": - version: 0.13.8 - resolution: "regenerator-runtime@npm:0.13.8" - checksum: 9302cbd0651a311b57dc1a3d47b81655d5eb37e0ac1602c1bd02be51335fc4f6d5d57d520e70726393cafbd6cbabe5a1fa5039d917d38da86cb78c7c4e37ea8b - languageName: node - linkType: hard - -"regenerator-transform@npm:^0.14.2": - version: 0.14.5 - resolution: "regenerator-transform@npm:0.14.5" - dependencies: - "@babel/runtime": "npm:^7.8.4" - checksum: b005474fba69b52cafa9d583f00a636a058c6739c3d6bcbb8ad25d37c6e0508e9ad0bcd4c97964ea5295284ecb13820f6175bcf0dd97a4b62615b38791429d1a - languageName: node - linkType: hard - "regenerator-transform@npm:^0.15.1": version: 0.15.1 resolution: "regenerator-transform@npm:0.15.1" @@ -11326,113 +13605,116 @@ __metadata: languageName: node linkType: hard -"regexp-tree@npm:^0.1.11, regexp-tree@npm:^0.1.24": - version: 0.1.24 - resolution: "regexp-tree@npm:0.1.24" - bin: - regexp-tree: bin/regexp-tree - checksum: 90d0b729de0f4ba28bd31ac8042d3154642d20d7a39ee557f82ac259cc02340ba09a9902f1479a1dfa3afe1ba38164bb7aa42c22780858c00d7c4d429ea415ba - languageName: node - linkType: hard - -"regexp-tree@npm:~0.1.1": - version: 0.1.23 - resolution: "regexp-tree@npm:0.1.23" +"regexp-tree@npm:^0.1.11, regexp-tree@npm:^0.1.27": + version: 0.1.27 + resolution: "regexp-tree@npm:0.1.27" bin: regexp-tree: bin/regexp-tree - checksum: 0aed1ed502726d789f64fd1d5681559e4f028e48ed84e9daca0580e84a86ebef69b3d2d0317f3d577b035fd108dbf8653469b17128770849d2fa17066cc6aaf3 + checksum: 95524e61e7f102432f5da44a239ff40b4b5bcab83a6b64b3cac7555d3e34cf4d6ce3353a214f1ee9b18d3b0e2a16757b3b07b1103595568eae158a319cba3f6c languageName: node linkType: hard -"regexp.prototype.flags@npm:^1.3.1": - version: 1.4.1 - resolution: "regexp.prototype.flags@npm:1.4.1" +"regexp.prototype.flags@npm:^1.4.3, regexp.prototype.flags@npm:^1.5.0": + version: 1.5.0 + resolution: "regexp.prototype.flags@npm:1.5.0" dependencies: call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.3" - checksum: ccf74b4576240c0049a167c9d8e032e2d62b064e69cf70b539f7c99e648f28c40d49947b480da0a03e42ba22728a0a457d81b9974f814324af9588977dd61ee2 + define-properties: "npm:^1.2.0" + functions-have-names: "npm:^1.2.3" + checksum: 27e06f7238805b9b315bb43ef60500345cd3c041c9ba2f6b2b7951bd23409314d22741a100e2ce4c6b996d5488dfdc59776486f51f07fef2c2bd36b01dde1092 languageName: node linkType: hard -"regexp.prototype.flags@npm:^1.4.3": - version: 1.4.3 - resolution: "regexp.prototype.flags@npm:1.4.3" +"regexpu-core@npm:^5.3.1": + version: 5.3.2 + resolution: "regexpu-core@npm:5.3.2" dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.3" - functions-have-names: "npm:^1.2.2" - checksum: 73e364f4cc03ed04f5f966300c6b9672c3bd049f2636db534b7e6f3e03575c178e04def3d73ac0e393bca3400b2acbee6c0609b89b93a51c83c56ed472de7739 + "@babel/regjsgen": "npm:^0.8.0" + regenerate: "npm:^1.4.2" + regenerate-unicode-properties: "npm:^10.1.0" + regjsparser: "npm:^0.9.1" + unicode-match-property-ecmascript: "npm:^2.0.0" + unicode-match-property-value-ecmascript: "npm:^2.1.0" + checksum: bf3f31464f6f11161f6d19659abe771d69210ff148f7fb873074a1dc6a31f6494771e5424f6f9fb97fc708783fec5591efaa4bbc3943fac703775bb4653a39ad languageName: node linkType: hard -"regexpp@npm:^3.2.0": - version: 3.2.0 - resolution: "regexpp@npm:3.2.0" - checksum: b171774d3380c053d3bd4af6b4f60f2e28c837dd4daeafb183d656e2f439dc606ee428bb44f14cbaa5a715524d2e8d88d168817445b4156d1ea06337f29eb405 +"regjsparser@npm:^0.10.0": + version: 0.10.0 + resolution: "regjsparser@npm:0.10.0" + dependencies: + jsesc: "npm:~0.5.0" + bin: + regjsparser: bin/parser + checksum: 2ba8c24548b0a69ea1858d2d84c69090a7873e8f9ff3272356fd76e880a20dc8a317730897e864d36999432712819a5551412d8d4e4e8b62210340cbce4a5133 languageName: node linkType: hard -"regexpu-core@npm:^4.7.1": - version: 4.7.1 - resolution: "regexpu-core@npm:4.7.1" +"regjsparser@npm:^0.9.1": + version: 0.9.1 + resolution: "regjsparser@npm:0.9.1" dependencies: - regenerate: "npm:^1.4.0" - regenerate-unicode-properties: "npm:^8.2.0" - regjsgen: "npm:^0.5.1" - regjsparser: "npm:^0.6.4" - unicode-match-property-ecmascript: "npm:^1.0.4" - unicode-match-property-value-ecmascript: "npm:^1.2.0" - checksum: 3c82e7f5ee4ca26fcaa96692a821ff37db94250b5af3fa37cb84aebf2e98bdca4c467981610fe3e1fd0bb56c0c730f8ac693f307e21ffc3b836946860a858c98 + jsesc: "npm:~0.5.0" + bin: + regjsparser: bin/parser + checksum: c706fb5d31aabd1951c0aa5fdfdb193bac82f9bec0e0ba77ab794e1260ec0589fdb270532387b8831124c9191ffccaf4eaceb7cd7df3f0be9572808d47c44266 languageName: node linkType: hard -"regexpu-core@npm:^5.2.1": - version: 5.2.2 - resolution: "regexpu-core@npm:5.2.2" +"rehype-parse@npm:^8.0.0": + version: 8.0.4 + resolution: "rehype-parse@npm:8.0.4" dependencies: - regenerate: "npm:^1.4.2" - regenerate-unicode-properties: "npm:^10.1.0" - regjsgen: "npm:^0.7.1" - regjsparser: "npm:^0.9.1" - unicode-match-property-ecmascript: "npm:^2.0.0" - unicode-match-property-value-ecmascript: "npm:^2.1.0" - checksum: bd5e47912ab3412faffb09907d2cdf7d340ceb1cf2e6d0dc243e9288f371a00fa5bd8c41824815b29744d29a070faf776e4b57dc44f9e34d774c0da44dd2ac9c + "@types/hast": "npm:^2.0.0" + hast-util-from-parse5: "npm:^7.0.0" + parse5: "npm:^6.0.0" + unified: "npm:^10.0.0" + checksum: 41fb912c124b3a6aad94db2288bfca51d99873adabe73e65488d81e72deaf67676c4cea5a7cecb89beea31e522346ac3f8e399fe9cfc6b83a1df230b70250699 languageName: node linkType: hard -"regjsgen@npm:^0.5.1": - version: 0.5.2 - resolution: "regjsgen@npm:0.5.2" - checksum: a7fb9c6369d485fd7d5fb11ba6cb1fa0aed3e2e026706f5b601e7c22babf939b7704ad8534c22c04c7df747ca4031481dc464726524f317aa1f72b9238231263 +"rehype-raw@npm:^6.1.1": + version: 6.1.1 + resolution: "rehype-raw@npm:6.1.1" + dependencies: + "@types/hast": "npm:^2.0.0" + hast-util-raw: "npm:^7.2.0" + unified: "npm:^10.0.0" + checksum: ba3c338f4b1998d10d583b914b02f000ef548d13ad327342c21b6ed9bef28e8b6f48be1c2b559bd82f6580f69a707a71dd42de67548775741c021b6add80008b languageName: node linkType: hard -"regjsgen@npm:^0.7.1": - version: 0.7.1 - resolution: "regjsgen@npm:0.7.1" - checksum: e828451e4fc41c5324a2ba8a860b10a0c051a733394776ffe4879e956cdb4a20d15db01a4f5bae4b54640bd64650919535d11e3d07e4a3a9aa13b1b72327cc52 +"rehype-stringify@npm:^9.0.0": + version: 9.0.3 + resolution: "rehype-stringify@npm:9.0.3" + dependencies: + "@types/hast": "npm:^2.0.0" + hast-util-to-html: "npm:^8.0.0" + unified: "npm:^10.0.0" + checksum: 1cf0fb04e0cf776a19491e4b0b62cbaf95575261822dd439e24821719eff48937ca66bc260e172720410a8577ead3777be6c64996a12c93d7638e3b07fdf150b languageName: node linkType: hard -"regjsparser@npm:^0.6.4": - version: 0.6.9 - resolution: "regjsparser@npm:0.6.9" +"rehype-stringify@npm:^9.0.4": + version: 9.0.4 + resolution: "rehype-stringify@npm:9.0.4" dependencies: - jsesc: "npm:~0.5.0" - bin: - regjsparser: bin/parser - checksum: 1295bc71e06f27ffcf75a173c4b222de7840217656afdce5c6398ab0e250883773cbe3ce26d1a91018394ce48a1a8d057ca6f122e159897b64c01d26b439ced2 + "@types/hast": "npm:^2.0.0" + hast-util-to-html: "npm:^8.0.0" + unified: "npm:^10.0.0" + checksum: c420d0ac32736b90b9d1fbc65534e915bef5492822d0cd97a0af56a6aba9b614cc655d6bec1d8d729516ac0971160ee6d8d17690f08f50b5b234cd7d4ca90b75 languageName: node linkType: hard -"regjsparser@npm:^0.9.1": - version: 0.9.1 - resolution: "regjsparser@npm:0.9.1" +"rehype@npm:^12.0.1": + version: 12.0.1 + resolution: "rehype@npm:12.0.1" dependencies: - jsesc: "npm:~0.5.0" - bin: - regjsparser: bin/parser - checksum: c706fb5d31aabd1951c0aa5fdfdb193bac82f9bec0e0ba77ab794e1260ec0589fdb270532387b8831124c9191ffccaf4eaceb7cd7df3f0be9572808d47c44266 + "@types/hast": "npm:^2.0.0" + rehype-parse: "npm:^8.0.0" + rehype-stringify: "npm:^9.0.0" + unified: "npm:^10.0.0" + checksum: a4c48f11718c7f7b5832757c4782a4f30d794c10e9c6a8b7d2f7816d7aaebacff9c472a17c274169069f19716003a65f8b5747862c09caf101213e94ea3dfa6a languageName: node linkType: hard @@ -11443,6 +13725,66 @@ __metadata: languageName: node linkType: hard +"remark-gfm@npm:^3.0.1": + version: 3.0.1 + resolution: "remark-gfm@npm:3.0.1" + dependencies: + "@types/mdast": "npm:^3.0.0" + mdast-util-gfm: "npm:^2.0.0" + micromark-extension-gfm: "npm:^2.0.0" + unified: "npm:^10.0.0" + checksum: f77b2dca36ccae43eb36a38e40f251b9dd5d207d159680d527c11cf7869746abd47aa8b925d8f15ada7073f5a301eb65e44239b1d75a28de8992a66c094dc453 + languageName: node + linkType: hard + +"remark-parse@npm:^10.0.2": + version: 10.0.2 + resolution: "remark-parse@npm:10.0.2" + dependencies: + "@types/mdast": "npm:^3.0.0" + mdast-util-from-markdown: "npm:^1.0.0" + unified: "npm:^10.0.0" + checksum: 2b381faea74624a27a9f142b001f1efda11fadeb7850c648a31d8f6c6efcd20d6622b1bfaa3fe4505497ba511c65c08ec5dacf93302a5ffe383a524cea333c45 + languageName: node + linkType: hard + +"remark-rehype@npm:^10.1.0": + version: 10.1.0 + resolution: "remark-rehype@npm:10.1.0" + dependencies: + "@types/hast": "npm:^2.0.0" + "@types/mdast": "npm:^3.0.0" + mdast-util-to-hast: "npm:^12.1.0" + unified: "npm:^10.0.0" + checksum: 7a56e5da7ba8451df5ede9647714bfaa69cc483fb64034f47dd78b047c3db9eca4d81ad83dee4a9433527054843b129ac073c334b0176b8b9b88425a293eef6d + languageName: node + linkType: hard + +"remark-smartypants@npm:^2.0.0": + version: 2.0.0 + resolution: "remark-smartypants@npm:2.0.0" + dependencies: + retext: "npm:^8.1.0" + retext-smartypants: "npm:^5.1.0" + unist-util-visit: "npm:^4.1.0" + checksum: 4f121b1696db8cfc3f9b50aff0ef4820a860e8f8af9302238dfff589b7d196f4697be54bbfc8704c1db29ab247d44e17d293544871bfa5f2137ce5809b11ad1e + languageName: node + linkType: hard + +"repeat-string@npm:^1.5.2, repeat-string@npm:^1.6.1": + version: 1.6.1 + resolution: "repeat-string@npm:1.6.1" + checksum: aa893b7e42c56727dce0f9bf902c5156b9b914c3a31b4a3831e673d43502ce7613311ba38b2c1852c7ea4f9f88e10aa985e162e7ae2e424e0a0ebd761b21f678 + languageName: node + linkType: hard + +"request-light@npm:^0.7.0": + version: 0.7.0 + resolution: "request-light@npm:0.7.0" + checksum: 0256aacc34a4bc79f3c420b5586cebc066346553971ac4a55221ce90d4f85fbfeb4dfcba5677bdd91be0c0febb1b733f86ce91408b42bb746b6b78c955790a66 + languageName: node + linkType: hard + "request-progress@npm:^3.0.0": version: 3.0.0 resolution: "request-progress@npm:3.0.0" @@ -11473,6 +13815,13 @@ __metadata: languageName: node linkType: hard +"requires-port@npm:^1.0.0": + version: 1.0.0 + resolution: "requires-port@npm:1.0.0" + checksum: 28a1064f043588514802bff52dacac500c43b642383109145c55ff8bac26b3cf1ca951abc824446c773309c45dd049608986c1e15142ae7e336b9926065a1830 + languageName: node + linkType: hard + "resolve-from@npm:5.0.0, resolve-from@npm:^5.0.0": version: 5.0.0 resolution: "resolve-from@npm:5.0.0" @@ -11496,6 +13845,13 @@ __metadata: languageName: node linkType: hard +"resolve-pkg-maps@npm:^1.0.0": + version: 1.0.0 + resolution: "resolve-pkg-maps@npm:1.0.0" + checksum: 6d91a6387c12ba1d67e09d35205df09cf6871debe8618d695b828ee2609e382463bbbab42b860f63c000bae39e464772d0ea6b7753802fb42ac3cbe33bd8154e + languageName: node + linkType: hard + "resolve-pkg@npm:^2.0.0": version: 2.0.0 resolution: "resolve-pkg@npm:2.0.0" @@ -11505,49 +13861,55 @@ __metadata: languageName: node linkType: hard -"resolve@npm:^1.10.0, resolve@npm:^1.14.2, resolve@npm:^1.19.0, resolve@npm:^1.20.0": - version: 1.20.0 - resolution: "resolve@npm:1.20.0" +"resolve@npm:^1.10.0, resolve@npm:^1.14.2, resolve@npm:^1.17.0, resolve@npm:^1.19.0, resolve@npm:^1.22.1": + version: 1.22.3 + resolution: "resolve@npm:1.22.3" dependencies: - is-core-module: "npm:^2.2.0" - path-parse: "npm:^1.0.6" - checksum: da7ee98e6a1637afc8ad988af9bb052ab09bdcdaa5c786ed9af3d74a5b19d96428e418d56e2338782e65802182ad737f7540cbb7a82af27559a1bdb9653c01f8 + is-core-module: "npm:^2.12.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: bf0ce0162ee1b5a2dfe29e982b67fb0867911972ffba9a6903bb2c0c11e6c8eb7db7de5344645f84df7f9ba2a19438d373ddddf3a3125ececba719fccd40dd18 languageName: node linkType: hard -"resolve@npm:^1.22.0, resolve@npm:^1.22.1": - version: 1.22.1 - resolution: "resolve@npm:1.22.1" +"resolve@npm:^1.22.4": + version: 1.22.4 + resolution: "resolve@npm:1.22.4" dependencies: - is-core-module: "npm:^2.9.0" + is-core-module: "npm:^2.13.0" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve - checksum: d8ea39ac2ecaedc681504f043944a20cc05587d6ec52d4d9ec79801e58be083f2237d0e83170ce86c793083eaf71a6f95a7f921a79dfb6fa32b37107e61df36c + checksum: 96ece1c602e76d45c988ba8590fa6648832c1a458cbc462aedfb88fc8c5b7ef0e5b5e20f7b3bff1b1a4e81b0fd95f50669885bf8f7d8ea5a54a65483062b3705 languageName: node linkType: hard -"resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin": - version: 1.20.0 - resolution: "resolve@patch:resolve@npm%3A1.20.0#optional!builtin::version=1.20.0&hash=c3c19d" +"resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.17.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin": + version: 1.22.3 + resolution: "resolve@patch:resolve@npm%3A1.22.3#optional!builtin::version=1.22.3&hash=c3c19d" dependencies: - is-core-module: "npm:^2.2.0" - path-parse: "npm:^1.0.6" - checksum: 976d9e2ccefbecc754be43a1d1a6a5e689339ac8fb5c0b2ad0bcf7b78d7ec3da938645efb9d9986c66e760306394ea1a3cdae84aa5d7078714f88a020a5190f2 + is-core-module: "npm:^2.12.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 9b982fd1fdbcca23f58d4d97df35bf1182eaccad96df6d8bbc4e9006616c382a10d7617e039a540cc86291e5247ddbb7cda9cceb1fd35688b03b03864b5d4360 languageName: node linkType: hard -"resolve@patch:resolve@npm%3A^1.22.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin": - version: 1.22.1 - resolution: "resolve@patch:resolve@npm%3A1.22.1#optional!builtin::version=1.22.1&hash=c3c19d" +"resolve@patch:resolve@npm%3A^1.22.4#optional!builtin": + version: 1.22.4 + resolution: "resolve@patch:resolve@npm%3A1.22.4#optional!builtin::version=1.22.4&hash=c3c19d" dependencies: - is-core-module: "npm:^2.9.0" + is-core-module: "npm:^2.13.0" path-parse: "npm:^1.0.7" supports-preserve-symlinks-flag: "npm:^1.0.0" bin: resolve: bin/resolve - checksum: a6f214b97d932445796f78dab7a898ec78966327e0d6cb571f90b6ac0f3b3347bf6bab0a071d899bfdc316b26ed845f6655310b38b8f6ee4da5272a0c5ecef85 + checksum: b2a242cd2f994e4e712a5b2b40eb4f0b426ca2eb94d22b58c76d0ef6f6bcc530f4e41fe2f82f6eddeb2659c2bfda7f75b71ccf6b459ecee783ab9fb5a64aaa68 languageName: node linkType: hard @@ -11561,6 +13923,63 @@ __metadata: languageName: node linkType: hard +"restore-cursor@npm:^4.0.0": + version: 4.0.0 + resolution: "restore-cursor@npm:4.0.0" + dependencies: + onetime: "npm:^5.1.0" + signal-exit: "npm:^3.0.2" + checksum: 06a23622a53022d11896d9149ac50d03a283501465216001ba4a77b1d16c61bc61f5de80ad6bef7a43bded17c71405b0d15b10f78c7c9ab3ddcb3cefdbd6df62 + languageName: node + linkType: hard + +"retext-latin@npm:^3.0.0": + version: 3.1.0 + resolution: "retext-latin@npm:3.1.0" + dependencies: + "@types/nlcst": "npm:^1.0.0" + parse-latin: "npm:^5.0.0" + unherit: "npm:^3.0.0" + unified: "npm:^10.0.0" + checksum: bcd30613db35fa6b1bd430daf1ee8b86aa4f39357e0f0bdbffdf5c0216bed5137e5aa24ce24b60d637c08febfc01a1f5e1f4d40a25b516d724a1f860eb8a7093 + languageName: node + linkType: hard + +"retext-smartypants@npm:^5.1.0": + version: 5.2.0 + resolution: "retext-smartypants@npm:5.2.0" + dependencies: + "@types/nlcst": "npm:^1.0.0" + nlcst-to-string: "npm:^3.0.0" + unified: "npm:^10.0.0" + unist-util-visit: "npm:^4.0.0" + checksum: c3a29b630f31771c1ad33baaed0e3ea30704d40a6bb57ea679bc0f0321357bb869aa0505ac3eef3eb8cf95895f386f768ed10f6db2950777030f766ad9279945 + languageName: node + linkType: hard + +"retext-stringify@npm:^3.0.0": + version: 3.1.0 + resolution: "retext-stringify@npm:3.1.0" + dependencies: + "@types/nlcst": "npm:^1.0.0" + nlcst-to-string: "npm:^3.0.0" + unified: "npm:^10.0.0" + checksum: 5d53955177d554ac821c9dc8cdc27f8128e2a1b09fc3b9b97d49ab239323cff2b7a82dd79512eb031ed702c5116c735d670d0cde193901b8c688070dd137a0b7 + languageName: node + linkType: hard + +"retext@npm:^8.1.0": + version: 8.1.0 + resolution: "retext@npm:8.1.0" + dependencies: + "@types/nlcst": "npm:^1.0.0" + retext-latin: "npm:^3.0.0" + retext-stringify: "npm:^3.0.0" + unified: "npm:^10.0.0" + checksum: 40296be8e2c8237b1e867111be454c5469adfb4fd851b79ac3a2eeeed1c8d284487a81f4f24985f9da50cc54bd5e3604ab129e3d13d65aeca1f382a769dd2f9f + languageName: node + linkType: hard + "retry@npm:^0.12.0": version: 0.12.0 resolution: "retry@npm:0.12.0" @@ -11608,8 +14027,8 @@ __metadata: linkType: hard "rollup@npm:^2.43.1": - version: 2.52.3 - resolution: "rollup@npm:2.52.3" + version: 2.79.1 + resolution: "rollup@npm:2.79.1" dependencies: fsevents: "npm:~2.3.2" dependenciesMeta: @@ -11617,13 +14036,13 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: bbad49767351a31647b9cfd7d661c81a18a9a4c8f3fec3f776ef9268583607a38e221af72cb8083aeefefcb7f89e7625211622474b9920869d4cffbd3a8f5c06 + checksum: b91c27c3b5234af864f282ffa2c13891d9caf25cad8ba7ad11f5201bdb6516f10c90a8c3402a5f72eafc74a555b1c685b6b04d107a6d6866195812a82f4aa308 languageName: node linkType: hard -"rollup@npm:^3.10.0": - version: 3.13.0 - resolution: "rollup@npm:3.13.0" +"rollup@npm:^3.27.1": + version: 3.28.0 + resolution: "rollup@npm:3.28.0" dependencies: fsevents: "npm:~2.3.2" dependenciesMeta: @@ -11631,21 +14050,16 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 33e7adeb64c306a90f350ec29124831d797b37734cebabfc110b0e96b75f68463a142e37330230783918480681f8ca9b7e7774884567fd08a51afe8e3621a140 + checksum: bbeca70998a2910d9acaea758116f48b79c58e696e501522f08c7a6bee9511a2498dd417d2a1decd8d4b6facc3e0662c6bc7897ae688e18d52a3201fbe3362f3 languageName: node linkType: hard -"rollup@npm:^3.7.2": - version: 3.9.0 - resolution: "rollup@npm:3.9.0" +"run-applescript@npm:^5.0.0": + version: 5.0.0 + resolution: "run-applescript@npm:5.0.0" dependencies: - fsevents: "npm:~2.3.2" - dependenciesMeta: - fsevents: - optional: true - bin: - rollup: dist/bin/rollup - checksum: 99588b6d2b3c31dcf26df4841c3335e7b57911707b3c7dfbdb31b27d55f350204b5245242fc43cce86c60e671fa47cbd408a9a47c237dc909e9af06dc234202a + execa: "npm:^5.0.0" + checksum: 5967da9f76bdf9cc95b9f1759c5c7370ceb4434140b66133f9f00654b8d1d68f796651c815a170c7c483206471284b6eab4ec8f76ab3674bcd44b0da2e79a983 languageName: node linkType: hard @@ -11658,30 +14072,40 @@ __metadata: languageName: node linkType: hard -"rxjs@npm:^7.1.0, rxjs@npm:^7.5.1": - version: 7.5.5 - resolution: "rxjs@npm:7.5.5" +"rxjs@npm:^7.5.1, rxjs@npm:^7.8.0": + version: 7.8.1 + resolution: "rxjs@npm:7.8.1" dependencies: tslib: "npm:^2.1.0" - checksum: dcb9d0e21cd80ff48b8bb105819aa1f6860943c92023e46c14437c28c18734aa8bfa7019d0cf70731dfe34ea103a8496daf1df5a25d86f56fc69eca29776e542 + checksum: d7daafba4296c4360b19bdff02d24e2f8acc7731605b0d99a0c920373d0af995bcb6b3c58c211e02db50aabddd9e854250a195f87ed193b56e79f245494774f5 languageName: node linkType: hard -"rxjs@npm:^7.5.7": - version: 7.8.0 - resolution: "rxjs@npm:7.8.0" - dependencies: - tslib: "npm:^2.1.0" - checksum: 56dfebbd1f868935809688075a33d940954a66ddec9ea3b92cc7031e50fc4040e9962416d5ca009b9da9e1edda6ff4f1fc3155786e7e521ec6eb3100e30f0317 +"s.color@npm:0.0.15": + version: 0.0.15 + resolution: "s.color@npm:0.0.15" + checksum: 4f20bb3c5d47fc7feb3d9ac56467bd169ee5eb634398041138198d65f76960c9bbf6218d4efc431297df8bcafb22aace50201a6d4566c19553a5c6e88e25e289 languageName: node linkType: hard -"sade@npm:^1.6.0": - version: 1.7.4 - resolution: "sade@npm:1.7.4" +"sade@npm:^1.6.0, sade@npm:^1.7.3": + version: 1.8.1 + resolution: "sade@npm:1.8.1" dependencies: mri: "npm:^1.1.0" - checksum: bd4df95dfc3e03d781daec66716e8fb63d2d0e929eaa68f443ef550980b5bff156fa2dc0f89813448da1ae7c31de13c85ba60dde54d6afd24a6fbaacc5d1a8d4 + checksum: da67f42ec984b58d0eac48d160e4da6d966416bafb88c37556f41f8a52c1ff897ca065984da3d62557ed8622c9999493f133ed6af63e4ea5191342029f37455c + languageName: node + linkType: hard + +"safe-array-concat@npm:^1.0.0": + version: 1.0.1 + resolution: "safe-array-concat@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.1" + has-symbols: "npm:^1.0.3" + isarray: "npm:^2.0.5" + checksum: 5201ffd134cda7c049dc92dd4e11dffecd370798ea753564193f67a94e4c9b7c54c8b33c9860e2be36364e64b58832b3ec99da841c362703c862ec82a58d2f26 languageName: node linkType: hard @@ -11692,13 +14116,6 @@ __metadata: languageName: node linkType: hard -"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: 86939c6de6b62c1d39b7da860a56d5e50ede9b0ab35a91b0620bff8a96f1f798084ff910059f605087c2c500dc23dfdf77ff5bc3bcc8d4d38e3d634de2e3e426 - languageName: node - linkType: hard - "safe-regex-test@npm:^1.0.0": version: 1.0.0 resolution: "safe-regex-test@npm:1.0.0" @@ -11710,15 +14127,6 @@ __metadata: languageName: node linkType: hard -"safe-regex@npm:^2.1.1": - version: 2.1.1 - resolution: "safe-regex@npm:2.1.1" - dependencies: - regexp-tree: "npm:~0.1.1" - checksum: 05af3bf0660ad3aff3ff3c6ebfe351d8e6d6e60ff6bb955355e86a532dec0caf67e846dbbebd2d920f65a2e0c02e40a98768343ebc6aa8c5cc002ab5ee687189 - languageName: node - linkType: hard - "safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0, safer-buffer@npm:^2.0.2, safer-buffer@npm:^2.1.0, safer-buffer@npm:~2.1.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" @@ -11733,25 +14141,56 @@ __metadata: languageName: node linkType: hard -"saslprep@npm:^1.0.3": - version: 1.0.3 - resolution: "saslprep@npm:1.0.3" +"sass-formatter@npm:^0.7.6": + version: 0.7.6 + resolution: "sass-formatter@npm:0.7.6" dependencies: - sparse-bitfield: "npm:^3.0.3" - checksum: 23ebcda091621541fb9db9635ff36b9be81dc35a79a2adbf2a8309e162bcc9607513488aa3a9da757f11e856592ab8a727ac45c98c6084ff93d627509a882b84 + suf-log: "npm:^2.5.3" + checksum: c1eb95cef2e82ca04a2cfa0385b73731b1c48d659d9e4212671128229bb33bccbe1d75b21935e3da7b91d9f476c12c4509233e60408512b29099400ae011b60e languageName: node linkType: hard -"sass@npm:^1.57.1": - version: 1.57.1 - resolution: "sass@npm:1.57.1" +"sass@npm:^1.66.1": + version: 1.66.1 + resolution: "sass@npm:1.66.1" dependencies: chokidar: "npm:>=3.0.0 <4.0.0" immutable: "npm:^4.0.0" source-map-js: "npm:>=0.6.2 <2.0.0" bin: sass: sass.js - checksum: fb82efe47aca8682054f5ef0903b2b0f640ac09b52ac3781f6a5d45dea102969c34080229a243584d8d70f3f16f33b807b8e9d8d06a9af06939a644f7315c833 + checksum: 1c515d6f4fbd59a72b1359858b77ff8665d3556605da21e6389301a66b4a5f84bea609b4e4610bdc20f2f18f7c483392efdac13b8860fa32280a85570d02ce92 + languageName: node + linkType: hard + +"sax@npm:^1.2.4": + version: 1.2.4 + resolution: "sax@npm:1.2.4" + checksum: 2917c3ef3cab1307aa14036705b599c7fd1b51756189e67bd1f23193cdc5ceac9bd59104830542cfb6326febfd1dce73acc08fecfa615c4c920c94a9a6ccbda4 + languageName: node + linkType: hard + +"section-matter@npm:^1.0.0": + version: 1.0.0 + resolution: "section-matter@npm:1.0.0" + dependencies: + extend-shallow: "npm:^2.0.1" + kind-of: "npm:^6.0.0" + checksum: f01cd260a8602110ee5149e4f0a2f02b5d333c710e7b65b86987b67c43a5b4c30ef7e37f21a6a56671c82a135de2306a29e6e3cc19861463fea50234af3ab830 + languageName: node + linkType: hard + +"seed-random@npm:~2.2.0": + version: 2.2.0 + resolution: "seed-random@npm:2.2.0" + checksum: 999d6be8092874e7e184e0c0cd5ffebef1a05aa45070d761ac9db945b7a9cede028691b2d052de245390780e199275f9e8304c61da74e8ef2523cb675c4d3bae + languageName: node + linkType: hard + +"seedrandom@npm:^3.0.5": + version: 3.0.5 + resolution: "seedrandom@npm:3.0.5" + checksum: c04d9a1c1c28bc1d5737f5fb02291ad56c34d57599034ce4a0e65578a84c3128d81d20d70729e0e32ef57e3c6b914b3751cbba95e9dddbd0212a405b2f921119 languageName: node linkType: hard @@ -11762,32 +14201,34 @@ __metadata: languageName: node linkType: hard -"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.7.1": - version: 5.7.1 - resolution: "semver@npm:5.7.1" +"semver@npm:2 || 3 || 4 || 5": + version: 5.7.2 + resolution: "semver@npm:5.7.2" bin: - semver: ./bin/semver - checksum: e1d12140b695aeb8917978d134ff3f8fee33489a5eaf6b217111ab0b14cbf45f36753d510db4dfbdc5a6f304e053ff1a4995c5498e9734ad9bf98182e4f39704 + semver: bin/semver + checksum: dda8cb5644f55174b7f7b22a197d61386ac4869b5fcdb5e3b58a789f2ea302f24639ae7ebe5e96eb08265f858cb87fc9f3cc776133964d95aacbdb9148a7c268 languageName: node linkType: hard -"semver@npm:7.0.0, semver@npm:~7.0.0": - version: 7.0.0 - resolution: "semver@npm:7.0.0" +"semver@npm:7.5.3, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.8, semver@npm:^7.5.0, semver@npm:^7.5.3": + version: 7.5.3 + resolution: "semver@npm:7.5.3" + dependencies: + lru-cache: "npm:^6.0.0" bin: semver: bin/semver.js - checksum: c0b7fdd720c6ee955cd71172ef8d63f41976d70049f02aa7569edff0ab89846ee035e39c82f3733fd2af3285f6ca6e14c3778e8de84cd8ea6ec1a33c68bf072a + checksum: 9e949f7d5797373fcd8986b9b667cbd45afd4e95619ef82978d158a50c47579224e8f39badf03f6b9e8f4c80a1c87d6415eb1ee8b476e7bb60e6c7e8f63279be languageName: node linkType: hard -"semver@npm:7.3.8, semver@npm:^7.3.8": - version: 7.3.8 - resolution: "semver@npm:7.3.8" +"semver@npm:7.5.4, semver@npm:^7.5.4": + version: 7.5.4 + resolution: "semver@npm:7.5.4" dependencies: lru-cache: "npm:^6.0.0" bin: semver: bin/semver.js - checksum: 94ad80ee14889020cb4a14d809fb99d16cbf4ff3dc7f4c564fc72efe2c5763a60090a1c16a9fd18ceeb1e993a1303a4d870c0a22f26adaf435b368b46a7d8462 + checksum: b06b6c19088f1d7c4a21858a432fc31a766d3a3dbcc6638028e2e85de79f5ec87b849b940f03487d4e366616435ba16bf769f558896addb55ba5ec388ca2ed1b languageName: node linkType: hard @@ -11800,29 +14241,16 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.2, semver@npm:^7.3.7": - version: 7.3.7 - resolution: "semver@npm:7.3.7" - dependencies: - lru-cache: "npm:^6.0.0" - bin: - semver: bin/semver.js - checksum: 67bcf24790dcba9c20b2cd4c8ade19eebbcb10c8868453570749b47b77bd5c7da503478997a7a3f663d5b2976ac39c545f38d2d9e7dfcc693cb87f4068f93f8e - languageName: node - linkType: hard - -"semver@npm:^7.3.4, semver@npm:^7.3.5": - version: 7.3.5 - resolution: "semver@npm:7.3.5" - dependencies: - lru-cache: "npm:^6.0.0" +"semver@npm:^6.3.1": + version: 6.3.1 + resolution: "semver@npm:6.3.1" bin: semver: bin/semver.js - checksum: 5b3caeefe452b0dde3e26b0697bbc05df87973f89a89a0f8238a30463b2b440a19e694921948e94066dfddc8c8ffebdb5c0da16a7341ea571e9490ec07096e8e + checksum: 29857f174cdbba4043f8eeacda9cfc08f83beee57fc3889d708598df49007f24361eb38926b9997c82cf2bef81f50484a2f9fd85cb3cd1c4326378ae16f6a0df languageName: node linkType: hard -"send@npm:0.18.0": +"send@npm:0.18.0, send@npm:^0.18.0": version: 0.18.0 resolution: "send@npm:0.18.0" dependencies: @@ -11843,6 +14271,15 @@ __metadata: languageName: node linkType: hard +"serialize-javascript@npm:6.0.0": + version: 6.0.0 + resolution: "serialize-javascript@npm:6.0.0" + dependencies: + randombytes: "npm:^2.1.0" + checksum: c54759aaf8581cc1509e838a9a1eb340b0addaf8103f1d7795af0cd2319475e43cc31793fbe2db72aa8059a93218dc22b79ae8277b0e69de474a4f79800cf54f + languageName: node + linkType: hard + "serialize-javascript@npm:^4.0.0": version: 4.0.0 resolution: "serialize-javascript@npm:4.0.0" @@ -11864,7 +14301,14 @@ __metadata: languageName: node linkType: hard -"set-blocking@npm:~2.0.0": +"server-destroy@npm:^1.0.1": + version: 1.0.1 + resolution: "server-destroy@npm:1.0.1" + checksum: d0ea9021353fbe7ae94fdba0158c34c98ee2e3391637057b6a2fbfae5483c96ccf2d0d83ccc3fb2a75c38aad304e633d10fe2bd5ae21dc84fe84db5eec6fd6e0 + languageName: node + linkType: hard + +"set-blocking@npm:^2.0.0": version: 2.0.0 resolution: "set-blocking@npm:2.0.0" checksum: 9e8f5aeb7cd850a60b5dbf47d42051137c14f58f375d9a70ca227b797d6ffed3dabf659587d2f183231085f1da2dc3067e2af9f5fcd66fb65c98da5fb54a22fb @@ -11878,6 +14322,23 @@ __metadata: languageName: node linkType: hard +"sharp@npm:^0.32.1": + version: 0.32.1 + resolution: "sharp@npm:0.32.1" + dependencies: + color: "npm:^4.2.3" + detect-libc: "npm:^2.0.1" + node-addon-api: "npm:^6.1.0" + node-gyp: "npm:latest" + prebuild-install: "npm:^7.1.1" + semver: "npm:^7.5.0" + simple-get: "npm:^4.0.1" + tar-fs: "npm:^2.1.1" + tunnel-agent: "npm:^0.6.0" + checksum: 3bd31f361efae39f11ea0d74573beead26eeeb4a14b3ccea84c142d9f0fc57d32b7808c53f8e3f6b3ca1f31214d975b379478741d3c5f1097d2a0e5640957a03 + languageName: node + linkType: hard + "shebang-command@npm:^2.0.0": version: 2.0.0 resolution: "shebang-command@npm:2.0.0" @@ -11894,6 +14355,18 @@ __metadata: languageName: node linkType: hard +"shiki@npm:^0.14.3": + version: 0.14.4 + resolution: "shiki@npm:0.14.4" + dependencies: + ansi-sequence-parser: "npm:^1.1.0" + jsonc-parser: "npm:^3.2.0" + vscode-oniguruma: "npm:^1.7.0" + vscode-textmate: "npm:^8.0.0" + checksum: 01a866dfe1eeab165062e460662bc4f182f29c66fa566e87bbb592f62a3dcc00e09cb3ea635991bd431bee2a08edf2032240832fba091e7995cd20c3620ee98a + languageName: node + linkType: hard + "side-channel@npm:^1.0.4": version: 1.0.4 resolution: "side-channel@npm:1.0.4" @@ -11905,26 +14378,51 @@ __metadata: languageName: node linkType: hard -"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3": - version: 3.0.3 - resolution: "signal-exit@npm:3.0.3" - checksum: 3a00292532e38048019c1b1f437b216f1e3ede040c5a1850f291528a462c916267e891c6483183b004aa83e855a3a58f61070caff1c5cb2c4ff1358416422c75 - languageName: node - linkType: hard - -"signal-exit@npm:^3.0.7": +"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": version: 3.0.7 resolution: "signal-exit@npm:3.0.7" checksum: 5cf7525c55a72d8d104d914acf2e470f74b2c156197277ad7b331bc5de3d8790170fed3c82ff98c7c31adaa8ff941bfd5ba44f55171cbe8ed0e939fa82a8322a languageName: node linkType: hard -"simple-update-notifier@npm:^1.0.7": - version: 1.0.7 - resolution: "simple-update-notifier@npm:1.0.7" +"signal-exit@npm:^4.0.1": + version: 4.0.2 + resolution: "signal-exit@npm:4.0.2" + checksum: 8d05e3167eb2b9798d10e005c8c8d011d06189089ebf5cace0400cfe20b4f7cad1a5ccc8b613c92425d25da843b08cf76e4c59827f6c6003b186a7c0c336d46c + languageName: node + linkType: hard + +"signal-exit@npm:^4.1.0": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 9925c47b50001235a771dd98519f2a5a52689d022c6554806d62e46cb53ed1aefcdaa151a10e30261e2ae24c1f53c9b3ee6c9f3e4dd428fbf3be7d46220c82f0 + languageName: node + linkType: hard + +"simple-concat@npm:^1.0.0": + version: 1.0.1 + resolution: "simple-concat@npm:1.0.1" + checksum: 1a041737314d8b49247072adf25990fa56430c2f71f3c129013fa275e0d725d935c2e2ca33bd10c22f1391047a8a94e01db3c149bda30b8e2480a833c99b9a30 + languageName: node + linkType: hard + +"simple-get@npm:^4.0.0, simple-get@npm:^4.0.1": + version: 4.0.1 + resolution: "simple-get@npm:4.0.1" dependencies: - semver: "npm:~7.0.0" - checksum: 7c7053ecefbe2f8ba88af5522e59266de309edf0861320f889ae38676353b52b3e9d15f6e99867fa696eb6e2734d563ae0a910e0e8577c68411a34e969338b16 + decompress-response: "npm:^6.0.0" + once: "npm:^1.3.1" + simple-concat: "npm:^1.0.0" + checksum: f44b953899a2df12012150e834cc1d731d366e3e7b72f6e5d04d48d6750098afd21b7813a7e7aa1f8dcbf24915c80730df63c6c27c1b0f851b9245211cf8f0a2 + languageName: node + linkType: hard + +"simple-swizzle@npm:^0.2.2": + version: 0.2.2 + resolution: "simple-swizzle@npm:0.2.2" + dependencies: + is-arrayish: "npm:^0.3.1" + checksum: da2f0812cd395009bbe2fd2fe803300a63025f7f330c1492ea41e2b4a819138806a2a99c05ae1527cb750da43ff9dc2ccde294ad1e998cedbd459cb068dc68a3 languageName: node linkType: hard @@ -11947,13 +14445,34 @@ __metadata: linkType: hard "sirv@npm:^2.0.0": - version: 2.0.2 - resolution: "sirv@npm:2.0.2" + version: 2.0.3 + resolution: "sirv@npm:2.0.3" dependencies: "@polka/url": "npm:^1.0.0-next.20" mrmime: "npm:^1.0.0" totalist: "npm:^3.0.0" - checksum: 090b4e70982631d28a62f4acd3b5166e9652fa2f81935dc0727fc1c93ab5cc0768d67821173eafff3d73087332bd0e673ba705ec1ce6f73ee1398c1a70cdbee3 + checksum: 737c04cce22655bc088785b67165bc9f9b72efee6e04b0822a1352d89b0636aa7c2973a3eb4930a2ff372785c0584ad152ca1c741cb7ba85201900da76de0e72 + languageName: node + linkType: hard + +"sisteransi@npm:^1.0.5": + version: 1.0.5 + resolution: "sisteransi@npm:1.0.5" + checksum: 35461425fe53c7cf8e2abdc5cef4568247b41bade0b7fcf316923aae6e3a59004d35e6a7e26f3be345b8fc7091cf2d589974d0df5469a05d049d2f95974dd17d + languageName: node + linkType: hard + +"sitemap@npm:^7.1.1": + version: 7.1.1 + resolution: "sitemap@npm:7.1.1" + dependencies: + "@types/node": "npm:^17.0.5" + "@types/sax": "npm:^1.2.1" + arg: "npm:^5.0.0" + sax: "npm:^1.2.4" + bin: + sitemap: dist/cli.js + checksum: fb059f1dcb3440a7b34c2d94edc239bbe0e1d5d40b029819c52ac556eb8490689d6a3cba3b20c4b63b8419f2fe746475a02694a0fa07b70ed9236fe8669fd96d languageName: node linkType: hard @@ -11964,6 +14483,13 @@ __metadata: languageName: node linkType: hard +"slash@npm:^5.1.0": + version: 5.1.0 + resolution: "slash@npm:5.1.0" + checksum: b690dceaaf55b05206684fa06fc32930f387b3f4c7054df4a27b36f3e96d85bc57caecd2bf4fcfbb66834c36b6ea02e192a64351898941cdb9976da162d2d1e4 + languageName: node + linkType: hard + "slice-ansi@npm:^3.0.0": version: 3.0.0 resolution: "slice-ansi@npm:3.0.0" @@ -11996,13 +14522,6 @@ __metadata: languageName: node linkType: hard -"smart-buffer@npm:^4.1.0": - version: 4.1.0 - resolution: "smart-buffer@npm:4.1.0" - checksum: f483774ce1536a2c0af97baac43b32392fee7c1fdeb9391642e0a0ff3439d4a5096e2ae7d86f89d125479cf2694d9e6ac17098bd4e70fe4afea039d6da89313b - languageName: node - linkType: hard - "smart-buffer@npm:^4.2.0": version: 4.2.0 resolution: "smart-buffer@npm:4.2.0" @@ -12010,67 +14529,57 @@ __metadata: languageName: node linkType: hard -"socket.io-client@npm:^4.5.4": - version: 4.5.4 - resolution: "socket.io-client@npm:4.5.4" +"socket.io-client@npm:^4.7.2": + version: 4.7.2 + resolution: "socket.io-client@npm:4.7.2" dependencies: "@socket.io/component-emitter": "npm:~3.1.0" debug: "npm:~4.3.2" - engine.io-client: "npm:~6.2.3" - socket.io-parser: "npm:~4.2.1" - checksum: 44988ca5d1686520393a496172b6b4111768e0edcd2a8190d3b782a6223fc67d8dde23808347c25cc0e5b0543a124c1097aecb80bc36f444f56de1c94cafccff + engine.io-client: "npm:~6.5.2" + socket.io-parser: "npm:~4.2.4" + checksum: eef3dd9142d23884037a829565a4a57f8b1203550b1c5bff8c20594ce18a2d7a1e02a5b014b94a6b7d93274807f6e14f076362ca24e7d22b4f872148425185b3 languageName: node linkType: hard -"socket.io-parser@npm:~4.2.1": - version: 4.2.3 - resolution: "socket.io-parser@npm:4.2.3" +"socket.io-parser@npm:~4.2.4": + version: 4.2.4 + resolution: "socket.io-parser@npm:4.2.4" dependencies: "@socket.io/component-emitter": "npm:~3.1.0" debug: "npm:~4.3.1" - checksum: ee024d796b7810bf04c23378aea13336deb061afdeeb2eda57731e0430e905fb1e815af920f8a394fcb197c8c30e898cd2751dbb49a84e02331c2c19e5a5aae7 + checksum: 2e87a70c442ee5b2fc45746478f8c0c8c8802a558c64da8f0d07fba6c1bc69b0339ce0c03a7d948843dda1e5471805ee2e4155225517c19df35d5ebf856a5c54 languageName: node linkType: hard -"socks-proxy-agent@npm:^5.0.0": - version: 5.0.1 - resolution: "socks-proxy-agent@npm:5.0.1" +"socks-proxy-agent@npm:^7.0.0": + version: 7.0.0 + resolution: "socks-proxy-agent@npm:7.0.0" dependencies: agent-base: "npm:^6.0.2" - debug: "npm:4" - socks: "npm:^2.3.3" - checksum: c99bec8d7edfcc9b26cdff78f3adea55d07590b15f9a2cf9c6d1fe37791c0a96681d2ba76060d1d9af45403047d8f4d819d2aebd0d20e2346f2314174f44a4c2 - languageName: node - linkType: hard - -"socks@npm:^2.3.3": - version: 2.6.1 - resolution: "socks@npm:2.6.1" - dependencies: - ip: "npm:^1.1.5" - smart-buffer: "npm:^4.1.0" - checksum: 9bd84957676b7fcd88f6f70ef2a35d0d0b4f2fb4060c4fb70eac58b4629a22342daae2b9db4463283e420934c642b9357056bf71dc3181d345f1788feb9edc26 + debug: "npm:^4.3.3" + socks: "npm:^2.6.2" + checksum: d57c2c68a2c16a2ac0af30971e1c4899e80cab3bbe405fe2fa3fce26ccd007fe855110b97c0e6d96ddc56926e1e5927a868070cb09185a768d1ad8cbe1a68aa5 languageName: node linkType: hard "socks@npm:^2.6.2": - version: 2.6.2 - resolution: "socks@npm:2.6.2" + version: 2.7.1 + resolution: "socks@npm:2.7.1" dependencies: - ip: "npm:^1.1.5" + ip: "npm:^2.0.0" smart-buffer: "npm:^4.2.0" - checksum: 65dafb89e2a6ff29aa95857bc4279776261d9bd31faf21a702a992aad003cd737fca96ef096c3419555adbe339313504391fed28f065aee06072970cafb7eb3e + checksum: a8026d6abfcd168a661240848f6989fbba66276e8fa97ff1cb1079c2f3c6907dcc8284fcbc4f6d3fee8d071afb4fc8313da7e5fbf6d8768f206347a671f1542b languageName: node linkType: hard -"source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.2": +"source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.1, source-map-js@npm:^1.0.2": version: 1.0.2 resolution: "source-map-js@npm:1.0.2" checksum: 4496d29f371909dbc27dfb302f31cadc70b6f1591b2b433337daf923fac30e9632523e169494b40d06b53228166a577875a3610bce3412de8bb600152f748a9c languageName: node linkType: hard -"source-map-support@npm:^0.5.21, source-map-support@npm:~0.5.20": +"source-map-support@npm:0.5.21, source-map-support@npm:^0.5.21, source-map-support@npm:~0.5.20": version: 0.5.21 resolution: "source-map-support@npm:0.5.21" dependencies: @@ -12080,13 +14589,6 @@ __metadata: languageName: node linkType: hard -"source-map@npm:^0.5.0": - version: 0.5.7 - resolution: "source-map@npm:0.5.7" - checksum: fd1c3c795c360e43fed3f7e80ff227c2156dbe3c69d20a9bf9c4b299a1cbe412cb6f9561fc6f636496f1bf44a28a06edcc0fb4a16de17db903481a063683f45a - languageName: node - linkType: hard - "source-map@npm:^0.6.0, source-map@npm:~0.6.0": version: 0.6.1 resolution: "source-map@npm:0.6.1" @@ -12094,6 +14596,13 @@ __metadata: languageName: node linkType: hard +"source-map@npm:^0.7.4": + version: 0.7.4 + resolution: "source-map@npm:0.7.4" + checksum: 97353dd6ffe747221f810400254a2c0110d745758aa094d3efe697d15c7697bb9bf49fea7028e88e97f973af53ac98cf69522ced606a4b46428fdd3e0d759280 + languageName: node + linkType: hard + "source-map@npm:^0.8.0-beta.0": version: 0.8.0-beta.0 resolution: "source-map@npm:0.8.0-beta.0" @@ -12103,13 +14612,20 @@ __metadata: languageName: node linkType: hard -"sourcemap-codec@npm:^1.4.4": +"sourcemap-codec@npm:^1.4.8": version: 1.4.8 resolution: "sourcemap-codec@npm:1.4.8" checksum: 16bd825c262a260854606ce89d836312a36a9b7d70fba54f17c2d9c395ad99a61b4f6b333f3f830ce09a37c234668ff6a7ece172b9964a2d78f9d433bf0e1e93 languageName: node linkType: hard +"space-separated-tokens@npm:^2.0.0": + version: 2.0.2 + resolution: "space-separated-tokens@npm:2.0.2" + checksum: 4681c01649b4db4412326f26e6ce141d10748edf4d68c0688e20cdf4e620a2b98d52a17b194334b35316f5a31c613ea7a20c5c3a2cc2e1b5db7816487795986c + languageName: node + linkType: hard + "sparse-bitfield@npm:^3.0.3": version: 3.0.3 resolution: "sparse-bitfield@npm:3.0.3" @@ -12120,12 +14636,12 @@ __metadata: linkType: hard "spdx-correct@npm:^3.0.0": - version: 3.1.1 - resolution: "spdx-correct@npm:3.1.1" + version: 3.2.0 + resolution: "spdx-correct@npm:3.2.0" dependencies: spdx-expression-parse: "npm:^3.0.0" spdx-license-ids: "npm:^3.0.0" - checksum: 819a290e8db696c2edb2bc0cd72875e401fd39035cfe62c3e00ff9e0adfa41a9e8f76abe37d555518b2753a72bdabc72e416ccea553d2277965a15c2845bfe5b + checksum: b3e7916d0a96140468e69e4085f303f755fcd3c91f1a18acf59d4fa0b31ebf81acf106fc0ecb973a65be167d96cdb7ddd9130636ae0c89fb525f6cf4f29314ad languageName: node linkType: hard @@ -12147,13 +14663,13 @@ __metadata: linkType: hard "spdx-license-ids@npm:^3.0.0": - version: 3.0.9 - resolution: "spdx-license-ids@npm:3.0.9" - checksum: 3db1b64103a59182d99e06fce309b45fe83962b11df0472502e9ef630164aa0e0c9413b98a4724c89d8a6586e23c37b42e93dd923e9dfdd5592ca39dc4267a53 + version: 3.0.13 + resolution: "spdx-license-ids@npm:3.0.13" + checksum: 5e43d82f557b290127ccacd41af7ece79d1c98cdf68ba347b814e76cf2f2970ff2ce87c5306f0ea2df3b5629f0d1dfc0f35a33a396432cfb9fdbffe2124e7ac1 languageName: node linkType: hard -"split2@npm:^3.0.0": +"split2@npm:^3.0.0, split2@npm:^3.2.2": version: 3.2.2 resolution: "split2@npm:3.2.2" dependencies: @@ -12171,6 +14687,22 @@ __metadata: languageName: node linkType: hard +"split@npm:^1.0.1": + version: 1.0.1 + resolution: "split@npm:1.0.1" + dependencies: + through: "npm:2" + checksum: 8dbe9792cfee51f2390ee4e899420f73eac76ee73d57f458d19becb86a0fffc77739b70d9df8d11667989520c3f1cc79471153b3024e523589cd80030130427b + languageName: node + linkType: hard + +"sprintf-js@npm:~1.0.2": + version: 1.0.3 + resolution: "sprintf-js@npm:1.0.3" + checksum: 3e0738f581ab5582868689318a4987ea532cdf220266c1af6fdc5a5091f5c4e758fe3fed9125ac82ed91119ec2cbe0762c0e069b59b929bf70e8bbbf879e56e5 + languageName: node + linkType: hard + "sshpk@npm:^1.14.1": version: 1.17.0 resolution: "sshpk@npm:1.17.0" @@ -12192,31 +14724,39 @@ __metadata: languageName: node linkType: hard -"ssri@npm:^8.0.0, ssri@npm:^8.0.1": - version: 8.0.1 - resolution: "ssri@npm:8.0.1" +"ssri@npm:^10.0.0": + version: 10.0.4 + resolution: "ssri@npm:10.0.4" dependencies: - minipass: "npm:^3.1.1" - checksum: b004b327d00f6ef93089a79c8d5822b991c007438e3134368f9540d89c43614df80461f3ed6273c8d3f30846cdc979e8d35b5ef8a8affb13cff2910cd81bd6be + minipass: "npm:^5.0.0" + checksum: 6c98b01cbec2953f24701a207a34b977afafdd306dd8cd1aedf1188cb7066ae656529e04aebbe29f02809510c78a8b509591b3a7ee89a4e5d2c954f07f2b2b0a + languageName: node + linkType: hard + +"stackframe@npm:^1.3.4": + version: 1.3.4 + resolution: "stackframe@npm:1.3.4" + checksum: 18e235651352cdc7f0fbe799b92764fd8d28fc516aefd2ff61162233944d10cb37736a94637b431eeef397ec05471635e96555847f5ffe53e488f48e6d365187 languageName: node linkType: hard -"start-server-and-test@npm:^1.14.0": - version: 1.14.0 - resolution: "start-server-and-test@npm:1.14.0" +"start-server-and-test@npm:^2.0.0": + version: 2.0.0 + resolution: "start-server-and-test@npm:2.0.0" dependencies: + arg: "npm:^5.0.2" bluebird: "npm:3.7.2" check-more-types: "npm:2.24.0" - debug: "npm:4.3.2" + debug: "npm:4.3.4" execa: "npm:5.1.1" lazy-ass: "npm:1.6.0" ps-tree: "npm:1.2.0" - wait-on: "npm:6.0.0" + wait-on: "npm:7.0.1" bin: server-test: src/bin/start.js start-server-and-test: src/bin/start.js start-test: src/bin/start.js - checksum: 5e84acf26091a1e192031c1d60a9707e979561b2e3c44cf751cdd17b7a9c426d4cce4eb3a99db4856e03e8e1aa00e2e47e6e6d266c0fbce522086437e7f450ed + checksum: af13b11906c5533c87a187d5de4319169a4a2711ec75bb7f07c3aa24b522b3e668d05b55103653daa0c7ce0f93e0c5e1e1553d0a0c097481866bd6680ab2cc32 languageName: node linkType: hard @@ -12227,6 +14767,15 @@ __metadata: languageName: node linkType: hard +"stdin-discarder@npm:^0.1.0": + version: 0.1.0 + resolution: "stdin-discarder@npm:0.1.0" + dependencies: + bl: "npm:^5.0.0" + checksum: a2d11612ec44968e24185fd189bb41561918f0f43b208603899b387b4f87448c87b6d7b904abe1f89f979d682ca37b35efdd649a9ae7232812240842c1a6bdd0 + languageName: node + linkType: hard + "stream-combiner@npm:~0.0.4": version: 0.0.4 resolution: "stream-combiner@npm:0.0.4" @@ -12236,53 +14785,30 @@ __metadata: languageName: node linkType: hard -"streamsearch@npm:^1.1.0": - version: 1.1.0 - resolution: "streamsearch@npm:1.1.0" - checksum: 8d7c4b5046cf7ff528421d6e2ee0d8335da82a34edca4c58e2022390f4f73be1c83deeb14010bf939bb71e7990bd06367ca0382b3c6df1b932ecb1b98bb50e22 - languageName: node - linkType: hard - -"string-argv@npm:^0.3.1": +"stream-parser@npm:~0.3.1": version: 0.3.1 - resolution: "string-argv@npm:0.3.1" - checksum: a15b435702d7e13b85ed88b4d1ad566a8b085585c86eb4e18b2cb32d38565d0b04c69da30c9fbb968ed02628bed97a296984bc9ab703f8fd467dc07b213fb326 - languageName: node - linkType: hard - -"string-width@npm:^1.0.1": - version: 1.0.2 - resolution: "string-width@npm:1.0.2" + resolution: "stream-parser@npm:0.3.1" dependencies: - code-point-at: "npm:^1.0.0" - is-fullwidth-code-point: "npm:^1.0.0" - strip-ansi: "npm:^3.0.0" - checksum: 956c33f6e7da724d0b3f40c810f0a83f2384912c9e3d18baa09715d5891181af1da57ac9b2ab13a0264ec696899ca203f84fad910e0b2b43f1472d89bd20e8fb + debug: "npm:2" + checksum: 7bff2abd1abda50f78d4665916859133da3b30e45d98b837efc6325444c1301c3251a762f73dd6d328688c265f3cc13191c3e124fc93a845c4464a037f4134ff languageName: node linkType: hard -"string-width@npm:^1.0.2 || 2": - version: 2.1.1 - resolution: "string-width@npm:2.1.1" - dependencies: - is-fullwidth-code-point: "npm:^2.0.0" - strip-ansi: "npm:^4.0.0" - checksum: 0eae0e29fc8a95505ad3042d89cb1548afc811e787249e315f8f50ce6f935f6c03cab31ed31d325f439ff33fb54bb5b08e1a68504fb3c6857297f04ca3f9cff7 +"streamsearch@npm:^1.1.0": + version: 1.1.0 + resolution: "streamsearch@npm:1.1.0" + checksum: 8d7c4b5046cf7ff528421d6e2ee0d8335da82a34edca4c58e2022390f4f73be1c83deeb14010bf939bb71e7990bd06367ca0382b3c6df1b932ecb1b98bb50e22 languageName: node linkType: hard -"string-width@npm:^4.1.0, string-width@npm:^4.2.0": - version: 4.2.2 - resolution: "string-width@npm:4.2.2" - dependencies: - emoji-regex: "npm:^8.0.0" - is-fullwidth-code-point: "npm:^3.0.0" - strip-ansi: "npm:^6.0.0" - checksum: e430982d948f07784b359b3b0f9fcccb6271b8d9fc82700281c2df4c000083c06cc54631f202d7de2b6ce5ef5cf3637320bddff76046d2fa5c1ef33cd90c0d7f +"string-argv@npm:0.3.2, string-argv@npm:^0.3.1": + version: 0.3.2 + resolution: "string-argv@npm:0.3.2" + checksum: c18600f4bf449f68a64c3f265857eb1a0776b6fd5cbccc7c8d32b2aaee01a724982989600a10842a456bd57ec0c82dffa26b84f46de823f84c9e5f24fb20dfd6 languageName: node linkType: hard -"string-width@npm:^4.2.3": +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^1.0.2 || 2 || 3 || 4, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": version: 4.2.3 resolution: "string-width@npm:4.2.3" dependencies: @@ -12293,7 +14819,7 @@ __metadata: languageName: node linkType: hard -"string-width@npm:^5.0.0": +"string-width@npm:^5.0.0, string-width@npm:^5.0.1, string-width@npm:^5.1.2": version: 5.1.2 resolution: "string-width@npm:5.1.2" dependencies: @@ -12304,29 +14830,41 @@ __metadata: languageName: node linkType: hard +"string-width@npm:^6.1.0": + version: 6.1.0 + resolution: "string-width@npm:6.1.0" + dependencies: + eastasianwidth: "npm:^0.2.0" + emoji-regex: "npm:^10.2.1" + strip-ansi: "npm:^7.0.1" + checksum: f22756a55e3ec993210ad8dc7a2235890c144195e67d745e8ea8c53d1de28b2f94a52623d2e7a2b30d46b7d74e696f36d843ec378242369c06c0d46f087e0256 + languageName: node + linkType: hard + "string.prototype.matchall@npm:^4.0.6": - version: 4.0.6 - resolution: "string.prototype.matchall@npm:4.0.6" + version: 4.0.8 + resolution: "string.prototype.matchall@npm:4.0.8" dependencies: call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.3" - es-abstract: "npm:^1.19.1" - get-intrinsic: "npm:^1.1.1" - has-symbols: "npm:^1.0.2" + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + get-intrinsic: "npm:^1.1.3" + has-symbols: "npm:^1.0.3" internal-slot: "npm:^1.0.3" - regexp.prototype.flags: "npm:^1.3.1" + regexp.prototype.flags: "npm:^1.4.3" side-channel: "npm:^1.0.4" - checksum: 43ee31665e131abd7ff19ea1e603810fd382128920f7302fe3b8b827319626b7334e6a214fef98889682b89b22df51394182ae659da04a3a81fbdb4c3e4e54dd + checksum: 3419a05feb3719ec9ad3d51fd29350d46e5b292b67df9488abe70ad50c37f7785a09e132c98b49a2750bf706792d0557da05967a95d828e0734054bea3939dd8 languageName: node linkType: hard -"string.prototype.trimend@npm:^1.0.4": - version: 1.0.4 - resolution: "string.prototype.trimend@npm:1.0.4" +"string.prototype.trim@npm:^1.2.7": + version: 1.2.7 + resolution: "string.prototype.trim@npm:1.2.7" dependencies: call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.3" - checksum: e3fb20e3a2878d984fb160cc63212b3473bc4508f4f7ea383095211c08643a848352624fdc542bea6f46abf3b9ebd23d5bf4d62306e7518860e7c45312ed7529 + define-properties: "npm:^1.1.4" + es-abstract: "npm:^1.20.4" + checksum: 424e6ba5ec9778a637c225c2c06461882367fa91e03b30ab78a50b275ec95e6516f25cb44439e1b98d43931a4a1d9d023bd5d2dd0f9b203d468b541b7ea205f5 languageName: node linkType: hard @@ -12341,16 +14879,6 @@ __metadata: languageName: node linkType: hard -"string.prototype.trimstart@npm:^1.0.4": - version: 1.0.4 - resolution: "string.prototype.trimstart@npm:1.0.4" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.3" - checksum: 598b45ed10fd0c6159be484337f3732901196afb7637a5e8fe98022083d6f6a8bf1eaa198a606fa7b3bb2e3f18c1b95e43fb72282aa0107d2d642da9b60868c2 - languageName: node - linkType: hard - "string.prototype.trimstart@npm:^1.0.6": version: 1.0.6 resolution: "string.prototype.trimstart@npm:1.0.6" @@ -12371,12 +14899,13 @@ __metadata: languageName: node linkType: hard -"string_decoder@npm:~1.1.1": - version: 1.1.1 - resolution: "string_decoder@npm:1.1.1" +"stringify-entities@npm:^4.0.0": + version: 4.0.3 + resolution: "stringify-entities@npm:4.0.3" dependencies: - safe-buffer: "npm:~5.1.0" - checksum: 385c6f229dc54d087d10279049fbc75b0e648dd56ee63dbf15a526975947875fe2b41e0e26addc2e6f2c6e517753a77cfb05338e61d76ac44f49387e7238e025 + character-entities-html4: "npm:^2.0.0" + character-entities-legacy: "npm:^3.0.0" + checksum: d3b2e21d037fa50f623bcaada80f7338e0312fa2753c37efc064757873023e465db850b65f895cfa558f890478f1193c4f7f69ceb07e38731cbef664f81835d1 languageName: node linkType: hard @@ -12391,34 +14920,7 @@ __metadata: languageName: node linkType: hard -"strip-ansi@npm:^3.0.0, strip-ansi@npm:^3.0.1": - version: 3.0.1 - resolution: "strip-ansi@npm:3.0.1" - dependencies: - ansi-regex: "npm:^2.0.0" - checksum: 9ea89aab5ee05cd6b64bf8c919acf0d7b923d7bbb7a8a678b7b5cfb2b0a92cda18a35e1f16d04c5c00d1eb509c06383687ea2039dd8591ce83b8861602a67114 - languageName: node - linkType: hard - -"strip-ansi@npm:^4.0.0": - version: 4.0.0 - resolution: "strip-ansi@npm:4.0.0" - dependencies: - ansi-regex: "npm:^3.0.0" - checksum: 4617637523972a3b247162d3136cbac440b74166d9c3a51b62c0ddc6b8ec34b02d69e8adcaf42d090608447f9d3d57c40cd8953c6e24ddb80b4a948d5337c795 - languageName: node - linkType: hard - -"strip-ansi@npm:^6.0.0": - version: 6.0.0 - resolution: "strip-ansi@npm:6.0.0" - dependencies: - ansi-regex: "npm:^5.0.0" - checksum: 30239be88f3ecf3a9627d9445794d10e4dd4568d526b5b3d5672700ca4c1bde87a88fd9654c6f10c2c8e4d80cc03e637d089df25588dc841a1fa95d55b4b46e1 - languageName: node - linkType: hard - -"strip-ansi@npm:^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" dependencies: @@ -12427,12 +14929,19 @@ __metadata: languageName: node linkType: hard -"strip-ansi@npm:^7.0.1": - version: 7.0.1 - resolution: "strip-ansi@npm:7.0.1" +"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" dependencies: ansi-regex: "npm:^6.0.1" - checksum: 552123468abae97929da64559af9c13f4518f8ea199038089bf5e49d7860d708e5e29b2e6401fcbab6f99f2c42f865c15a1976bcf51c5165f82152c7ce9a1043 + checksum: 09f81cbad0ac6e3dbe1c425429135432e91b1a61b7799587cb38aa24fb661aa5a83eaaf579e241ac1a4cac39fee97501c15226099728e56759abc6846b51917a + languageName: node + linkType: hard + +"strip-bom-string@npm:^1.0.0": + version: 1.0.0 + resolution: "strip-bom-string@npm:1.0.0" + checksum: 244fa2f92dfd1c7798c07acbdd80c85bd1a1c422d96fadc41bdf87e57e7259520475b51e3630437170e440a15d91b4a4c2da7f0857448cabcf1923e876324926 languageName: node linkType: hard @@ -12443,6 +14952,13 @@ __metadata: languageName: node linkType: hard +"strip-bom@npm:^4.0.0": + version: 4.0.0 + resolution: "strip-bom@npm:4.0.0" + checksum: 744fd96895813592a9148906cddc3c2cefb0aad94ae1744624a1ce1f51e131d28f555ad411af0140808d4edba6c12e9aa0c33d6bee53a7737068e47b14817dfb + languageName: node + linkType: hard + "strip-comments@npm:^2.0.1": version: 2.0.1 resolution: "strip-comments@npm:2.0.1" @@ -12473,30 +14989,36 @@ __metadata: languageName: node linkType: hard -"strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1": +"strip-indent@npm:^4.0.0": + version: 4.0.0 + resolution: "strip-indent@npm:4.0.0" + dependencies: + min-indent: "npm:^1.0.1" + checksum: 09f7f4debccccec3879131a1d688ddb39d6ce412c07fbda6008b1ebe24691f79b2f565ac4b9299f6a6dd91ed877e70118777bbc629c9af3bfeafe88b8b75ab92 + languageName: node + linkType: hard + +"strip-json-comments@npm:3.1.1, strip-json-comments@npm:^3.1.1": version: 3.1.1 resolution: "strip-json-comments@npm:3.1.1" checksum: 20cff3f15267a8b603c4dcec9c3cc5217bcf3f1a66481a4f9ecf262eacc1733a0457756288472328d24efef7705f7755e9511f9c383742389add93d4a9207ae5 languageName: node linkType: hard -"stripe@npm:^12.2.0": - version: 12.2.0 - resolution: "stripe@npm:12.2.0" - dependencies: - "@types/node": "npm:>=8.1.0" - qs: "npm:^6.11.0" - checksum: 905893f6fa9a3ea7784d7e4301769efd9f7fbaf4e14db689f56f6cce7ecca8b72b5d1e4d77422ee4a526a1cdb6325af765a0169238d97303c3ef781e73639e19 +"strip-json-comments@npm:~2.0.1": + version: 2.0.1 + resolution: "strip-json-comments@npm:2.0.1" + checksum: 4c86af52d848e6cddafdf933702453a3ab3210e9a014c882ce7e271a7d09d413642b796b07c9b597bc0ea5b93d5aab71756cf3d4b2a5ca2d9db2a7be84ae49d9 languageName: node linkType: hard -"strtok3@npm:^7.0.0-alpha.9": - version: 7.0.0 - resolution: "strtok3@npm:7.0.0" +"stripe@npm:^13.5.0": + version: 13.5.0 + resolution: "stripe@npm:13.5.0" dependencies: - "@tokenizer/token": "npm:^0.3.0" - peek-readable: "npm:^5.0.0" - checksum: 0d3b800599678de1dae6eb103a850080564c31d48222c155aafa51dff05431fdb9f1863b48c094ec39c5b63245f03427a4ab1ad783c8903df44eae4c9c7badf0 + "@types/node": "npm:>=8.1.0" + qs: "npm:^6.11.0" + checksum: bbbef21c893517c8a1755e32b2f4d65be447df5a235ef287dc6e59f626649c1669d12986768ea373a53d9021b25107496122cbd6db051e6012b7743a25815dc1 languageName: node linkType: hard @@ -12507,158 +15029,199 @@ __metadata: languageName: node linkType: hard -"stylelint-config-clean-order@npm:^2.3.0": - version: 2.3.0 - resolution: "stylelint-config-clean-order@npm:2.3.0" +"stylelint-config-astro@npm:^1.0.4": + version: 1.0.4 + resolution: "stylelint-config-astro@npm:1.0.4" + dependencies: + typescript: "npm:^4.7.3" + peerDependencies: + postcss-html: ^1.0.0 + stylelint: ">=14.0.0" + checksum: febd69138d28b9e65206ec2fbfd0831dbf1aeb7ead5fae6533ab0105bfc3670e478d19a90cc8e1e488b40f9c092c924a2485e765437340d2b5804ffeaaaaab3f + languageName: node + linkType: hard + +"stylelint-config-clean-order@npm:^5.2.0": + version: 5.2.0 + resolution: "stylelint-config-clean-order@npm:5.2.0" dependencies: - stylelint-order: "npm:^5.0.0" + stylelint-order: "npm:^6.0.2" peerDependencies: stylelint: ">=14" - checksum: abd9e2a9a196e3bbb965b8d505aea1d964be1f0a6f8884de62d2c1532cebb5ae00f50ec42d08956e250ef761d2ae1389897805375355185ab787bbf2723ef26c + checksum: 2581d78aa09d679f40e046d3913b8a25427d5169c9fe12f8d5b2d99e33a1e904dcde8d63216f8a10a5167d2ff2ac27a204c58d83ac13c214fdbc40567d8cd564 languageName: node linkType: hard -"stylelint-config-prettier@npm:^9.0.4": - version: 9.0.4 - resolution: "stylelint-config-prettier@npm:9.0.4" +"stylelint-config-html@npm:^1.1.0": + version: 1.1.0 + resolution: "stylelint-config-html@npm:1.1.0" + peerDependencies: + postcss-html: ^1.0.0 + stylelint: ">=14.0.0" + checksum: 699ad6c04225e9205c0bb139670c0bb2b28ade09875111602083ecb8fe1608460da018e400569b3da6e5fcb78ab18faea0c5ea1912387bb80697c737f4ab7a46 + languageName: node + linkType: hard + +"stylelint-config-prettier@npm:^9.0.5": + version: 9.0.5 + resolution: "stylelint-config-prettier@npm:9.0.5" peerDependencies: - stylelint: ">=11.0.0" + stylelint: ">= 11.x < 15" bin: stylelint-config-prettier: bin/check.js stylelint-config-prettier-check: bin/check.js - checksum: df28ea769c883eb10f0e8225e7bd7f9b819e899c0893eab1fa6fa154c4b6b8341a62a1a7e708ddc17709bc23bc2366948a0c94f4d8883e5f3d3404972ca4feec + checksum: c03e51b5357b681f9d11dc063c2780fd57edbfc3634d62b3f87850e95db5d810ec4391c3dd939fd1b11f7fd11462d91804c65babb02997c3fc3b57f42dccd838 languageName: node linkType: hard -"stylelint-config-recommended-scss@npm:^8.0.0": - version: 8.0.0 - resolution: "stylelint-config-recommended-scss@npm:8.0.0" +"stylelint-config-recommended-scss@npm:^13.0.0": + version: 13.0.0 + resolution: "stylelint-config-recommended-scss@npm:13.0.0" dependencies: - postcss-scss: "npm:^4.0.2" - stylelint-config-recommended: "npm:^9.0.0" - stylelint-scss: "npm:^4.0.0" + postcss-scss: "npm:^4.0.7" + stylelint-config-recommended: "npm:^13.0.0" + stylelint-scss: "npm:^5.1.0" peerDependencies: postcss: ^8.3.3 - stylelint: ^14.10.0 + stylelint: ^15.10.0 peerDependenciesMeta: postcss: optional: true - checksum: 6ce0ca75a5b45698c4138d3f2f7779c23db8d4bca7822ef97a162327546a8be897fe7cb39e2e70a8b4a75092ad7b633267973386b4858621d7f023292e2beff1 + checksum: a5c3721f7f2b3aa2806b2a34334d0f8f222c52dbb7b6d745a7983dc6114e20c638f2b47fe174a1e52dc0ad6fae897022250124ac9b61cedd56d63895c2d7fb13 languageName: node linkType: hard -"stylelint-config-recommended@npm:^9.0.0": - version: 9.0.0 - resolution: "stylelint-config-recommended@npm:9.0.0" +"stylelint-config-recommended@npm:^13.0.0": + version: 13.0.0 + resolution: "stylelint-config-recommended@npm:13.0.0" peerDependencies: - stylelint: ^14.10.0 - checksum: a84d2b8e2a3bfb9835a48d8044b5345a79e609c9945e4241b8b0cde3a2863581e40cdd9e84f587aa207f843e7f37b38a65958d76a12e4f091eee2b6132af9249 + stylelint: ^15.10.0 + checksum: 23a2f4a844684ee40eb4c21dcbb6c1adb15e453b5e5721cc4728a42977f3e52297b0ebe541ec12e83adf76411a0806bd3eb98498edb4db695954080aecfb1abf languageName: node linkType: hard -"stylelint-config-standard-scss@npm:^6.1.0": - version: 6.1.0 - resolution: "stylelint-config-standard-scss@npm:6.1.0" +"stylelint-config-standard-scss@npm:^11.0.0": + version: 11.0.0 + resolution: "stylelint-config-standard-scss@npm:11.0.0" dependencies: - stylelint-config-recommended-scss: "npm:^8.0.0" - stylelint-config-standard: "npm:^29.0.0" + stylelint-config-recommended-scss: "npm:^13.0.0" + stylelint-config-standard: "npm:^34.0.0" peerDependencies: postcss: ^8.3.3 - stylelint: ^14.14.0 + stylelint: ^15.10.0 peerDependenciesMeta: postcss: optional: true - checksum: 7242f0fda362a5653305901f6a2e43756338b86a25ba164c48d77f202d0dd75797b0da631a85bdba9dda9e31e0ea708581841d0be1523f9d097a892e209aefe9 + checksum: 39be6e7dc6dea6dc3d16cb65d12ebb7debf005ddb88230c9fef844dd14e2b609e6fb3a333956f1342aa0609b6f792328cec8ea1a96eec2784a0ffe959a7096ba languageName: node linkType: hard -"stylelint-config-standard@npm:^29.0.0": - version: 29.0.0 - resolution: "stylelint-config-standard@npm:29.0.0" +"stylelint-config-standard@npm:^34.0.0": + version: 34.0.0 + resolution: "stylelint-config-standard@npm:34.0.0" dependencies: - stylelint-config-recommended: "npm:^9.0.0" + stylelint-config-recommended: "npm:^13.0.0" peerDependencies: - stylelint: ^14.14.0 - checksum: c1bb49e4aa474b1d85bff3f7adb359cbc345d3e87a103ad3607f486685c2bd37b9f2a785aa30bf3b93c9fabb4b9c22eefc7da535749ebcf5f609b4f8383d25b0 + stylelint: ^15.10.0 + checksum: 1b625fe93e0afff18a692354bb77c80ead778d67794420722d4141ea72da871a0f9a6fdb5bcc8642b983b3b60c3825632b8d0dab4b7fe619d111b35652f0556d languageName: node linkType: hard -"stylelint-order@npm:^5.0.0": - version: 5.0.0 - resolution: "stylelint-order@npm:5.0.0" +"stylelint-order@npm:^6.0.2": + version: 6.0.3 + resolution: "stylelint-order@npm:6.0.3" dependencies: - postcss: "npm:^8.3.11" - postcss-sorting: "npm:^7.0.1" + postcss: "npm:^8.4.21" + postcss-sorting: "npm:^8.0.2" peerDependencies: - stylelint: ^14.0.0 - checksum: e973dd391a13a93620cc8a43682f6bd176537571f09f4cea0c8742247bae2059724c8fb2d8f0fa4845db10f1aecd6c5b2f92db78e06db1e748eb90465fc22492 + stylelint: ^14.0.0 || ^15.0.0 + checksum: c7c879d0388cf0e07fc2dc6e2cec6108cdd5ac47c53bf52f7c248d43adc902c453c9580aaf9ff68c033f43135e6df02441e25a55a7f3bd42dd59d8b3dc32aac9 languageName: node linkType: hard -"stylelint-scss@npm:^4.0.0": - version: 4.2.0 - resolution: "stylelint-scss@npm:4.2.0" +"stylelint-scss@npm:^5.1.0": + version: 5.1.0 + resolution: "stylelint-scss@npm:5.1.0" dependencies: - lodash: "npm:^4.17.21" postcss-media-query-parser: "npm:^0.2.3" postcss-resolve-nested-selector: "npm:^0.1.1" - postcss-selector-parser: "npm:^6.0.6" - postcss-value-parser: "npm:^4.1.0" + postcss-selector-parser: "npm:^6.0.13" + postcss-value-parser: "npm:^4.2.0" peerDependencies: - stylelint: ^14.5.1 - checksum: aac9fc4481fe03d1fcaf5c414fa90ac7c0f7784926977d64cac8083b188a8b32ec5cd2b69485d4ab9e774826693c5f4da679fd8208beeabde1a50c8d29f80eee + stylelint: ^14.5.1 || ^15.0.0 + checksum: 553d2c8e76324abdfcfb62ebd5962bdef5374913a2e9e37492ead8d7ae51790d21c836709b3a3b73f3b594424584018141d21af925dcb8cc9a3296b33ffff020 languageName: node linkType: hard -"stylelint@npm:^14.16.1": - version: 14.16.1 - resolution: "stylelint@npm:14.16.1" +"stylelint@npm:^15.10.3": + version: 15.10.3 + resolution: "stylelint@npm:15.10.3" dependencies: - "@csstools/selector-specificity": "npm:^2.0.2" + "@csstools/css-parser-algorithms": "npm:^2.3.1" + "@csstools/css-tokenizer": "npm:^2.2.0" + "@csstools/media-query-list-parser": "npm:^2.1.4" + "@csstools/selector-specificity": "npm:^3.0.0" balanced-match: "npm:^2.0.0" colord: "npm:^2.9.3" - cosmiconfig: "npm:^7.1.0" - css-functions-list: "npm:^3.1.0" + cosmiconfig: "npm:^8.2.0" + css-functions-list: "npm:^3.2.0" + css-tree: "npm:^2.3.1" debug: "npm:^4.3.4" - fast-glob: "npm:^3.2.12" + fast-glob: "npm:^3.3.1" fastest-levenshtein: "npm:^1.0.16" file-entry-cache: "npm:^6.0.1" global-modules: "npm:^2.0.0" globby: "npm:^11.1.0" globjoin: "npm:^0.1.4" - html-tags: "npm:^3.2.0" - ignore: "npm:^5.2.1" + html-tags: "npm:^3.3.1" + ignore: "npm:^5.2.4" import-lazy: "npm:^4.0.0" imurmurhash: "npm:^0.1.4" is-plain-object: "npm:^5.0.0" - known-css-properties: "npm:^0.26.0" + known-css-properties: "npm:^0.28.0" mathml-tag-names: "npm:^2.1.3" - meow: "npm:^9.0.0" + meow: "npm:^10.1.5" micromatch: "npm:^4.0.5" normalize-path: "npm:^3.0.0" picocolors: "npm:^1.0.0" - postcss: "npm:^8.4.19" - postcss-media-query-parser: "npm:^0.2.3" + postcss: "npm:^8.4.27" postcss-resolve-nested-selector: "npm:^0.1.1" postcss-safe-parser: "npm:^6.0.0" - postcss-selector-parser: "npm:^6.0.11" + postcss-selector-parser: "npm:^6.0.13" postcss-value-parser: "npm:^4.2.0" resolve-from: "npm:^5.0.0" string-width: "npm:^4.2.3" strip-ansi: "npm:^6.0.1" style-search: "npm:^0.1.0" - supports-hyperlinks: "npm:^2.3.0" + supports-hyperlinks: "npm:^3.0.0" svg-tags: "npm:^1.0.0" table: "npm:^6.8.1" - v8-compile-cache: "npm:^2.3.0" - write-file-atomic: "npm:^4.0.2" + write-file-atomic: "npm:^5.0.1" bin: - stylelint: bin/stylelint.js - checksum: 25231a01533b1bd9bfad141d5bfe91363a186c1067555e675f9c170830b286d0ca0e2c6421025d6f70a0f0c072af89192c1d1cf1f4163c7e3fdf9462b31d1bf9 + stylelint: bin/stylelint.mjs + checksum: 798d920860154cfbafb91225ae6922006d2a3f5941968d1e0391e13682bb5842265faa4a539a2b7775e057325cb5ef47a3a3976987c574b9ee338e10c7dd07e3 + languageName: node + linkType: hard + +"suf-log@npm:^2.5.3": + version: 2.5.3 + resolution: "suf-log@npm:2.5.3" + dependencies: + s.color: "npm:0.0.15" + checksum: 128a76aea18bb80b08b43dc367c7139ecb6e6bc9937ee0707998b2ec8e66c92e1eaffa20a76e0a4a2006c2780dc01d9946f3de489a7d72b8ebc4eae71d12db45 + languageName: node + linkType: hard + +"supports-color@npm:8.1.1, supports-color@npm:^8.1.1": + version: 8.1.1 + resolution: "supports-color@npm:8.1.1" + dependencies: + has-flag: "npm:^4.0.0" + checksum: 3fe58a405502d866f7611fe1926cac2410d6aac87658b3aac94b70617576586270d2ec758ae975ca3ba20556a1c013330c820b59a85f983d322a47cd28118b2c languageName: node linkType: hard -"supports-color@npm:^5.3.0, supports-color@npm:^5.5.0": +"supports-color@npm:^5.3.0": version: 5.5.0 resolution: "supports-color@npm:5.5.0" dependencies: @@ -12676,22 +15239,13 @@ __metadata: languageName: node linkType: hard -"supports-color@npm:^8.1.1": - version: 8.1.1 - resolution: "supports-color@npm:8.1.1" - dependencies: - has-flag: "npm:^4.0.0" - checksum: 3fe58a405502d866f7611fe1926cac2410d6aac87658b3aac94b70617576586270d2ec758ae975ca3ba20556a1c013330c820b59a85f983d322a47cd28118b2c - languageName: node - linkType: hard - -"supports-hyperlinks@npm:^2.3.0": - version: 2.3.0 - resolution: "supports-hyperlinks@npm:2.3.0" +"supports-hyperlinks@npm:^3.0.0": + version: 3.0.0 + resolution: "supports-hyperlinks@npm:3.0.0" dependencies: has-flag: "npm:^4.0.0" supports-color: "npm:^7.0.0" - checksum: 018edbc2b3c5c1bea3b525dfc0b4fe8a3ab21cb61cd5c4b23aee11da540b81e8ff8bb022fa8eae3c87c4779533a5b4b763f31da1f76bffc27613c9b15a863a13 + checksum: a05ecbeb2c4acbae08ed25dbd24d896a9f0827ad35899139fd2b8433bc37807ea045e034327437a1a7a93d68802874d8e451c3eb16bb41d9d94b18b3b9fc20ad languageName: node linkType: hard @@ -12709,10 +15263,29 @@ __metadata: languageName: node linkType: hard -"systemjs@npm:^6.13.0": - version: 6.13.0 - resolution: "systemjs@npm:6.13.0" - checksum: cba408d57b2b0de4c40cc54c595f0ae126645e218c16795565a38ed1d55ce2c14b898119ed4ab5f7c41ed90cd23111ef6b0e98981e3754a12af35ebfb42611c7 +"svgo@npm:3.0.2": + version: 3.0.2 + resolution: "svgo@npm:3.0.2" + dependencies: + "@trysound/sax": "npm:0.2.0" + commander: "npm:^7.2.0" + css-select: "npm:^5.1.0" + css-tree: "npm:^2.2.1" + csso: "npm:^5.0.5" + picocolors: "npm:^1.0.0" + bin: + svgo: bin/svgo + checksum: 97f7d903def2fe0390b9875b89c0a57b66e0e2b5a6c230f6ad5ae3f2dd04765bc073a315354592f26af26adb5f133c3347b196ac68c309b9c1a36830c059ed69 + languageName: node + linkType: hard + +"synckit@npm:^0.8.0, synckit@npm:^0.8.5": + version: 0.8.5 + resolution: "synckit@npm:0.8.5" + dependencies: + "@pkgr/utils": "npm:^2.3.1" + tslib: "npm:^2.5.0" + checksum: 4f8cad99ececb0f22d91780c9882d1ef51fd551051cbd53f4674876771007e3b0ed6adcf17622a9bca8f9f8b16f49d91c4cc37d25888bc9d7ab3470e496bc4a6 languageName: node linkType: hard @@ -12729,17 +15302,42 @@ __metadata: languageName: node linkType: hard -"tar@npm:^6.0.2, tar@npm:^6.1.0": - version: 6.1.12 - resolution: "tar@npm:6.1.12" +"tar-fs@npm:^2.0.0, tar-fs@npm:^2.1.1": + version: 2.1.1 + resolution: "tar-fs@npm:2.1.1" + dependencies: + chownr: "npm:^1.1.1" + mkdirp-classic: "npm:^0.5.2" + pump: "npm:^3.0.0" + tar-stream: "npm:^2.1.4" + checksum: eedd9484fb8f7301e7dfda1177c8db76427b99fbd6ea9c3bb056bce44301f59890bb4143dfc02aed30d454e92a3ca63189167a71595476f2f5b293d993a14d6d + languageName: node + linkType: hard + +"tar-stream@npm:^2.1.4": + version: 2.2.0 + resolution: "tar-stream@npm:2.2.0" + dependencies: + bl: "npm:^4.0.3" + end-of-stream: "npm:^1.4.1" + fs-constants: "npm:^1.0.0" + inherits: "npm:^2.0.3" + readable-stream: "npm:^3.1.1" + checksum: c0c8df70dbca1da9fc5dc89046b972ee9703ee0d07e096749e5c60f4847dd912e99da1dbb9cb9bd87be0deba550e60dbec2477a1c44c000435ceb5a909f5db5f + languageName: node + linkType: hard + +"tar@npm:^6.1.11, tar@npm:^6.1.2": + version: 6.1.15 + resolution: "tar@npm:6.1.15" dependencies: chownr: "npm:^2.0.0" fs-minipass: "npm:^2.0.0" - minipass: "npm:^3.0.0" + minipass: "npm:^5.0.0" minizlib: "npm:^2.1.1" mkdirp: "npm:^1.0.3" yallist: "npm:^4.0.0" - checksum: 661e622cf4ae2cf9ffcef086a2bca16fadcf585415985377a1a54a8b92a475cc9c34501f59e87d16168586160d559d80186f1e5b18daf71d9678c6852d5137a2 + checksum: 815c25f8812ad65172fa0440c96e5395714cfee8b43e9b2cf85d98964bbd479da49dde364087b9e456c49317f88e19aa2304c45c9853555d85289177c3066555 languageName: node linkType: hard @@ -12762,17 +15360,45 @@ __metadata: languageName: node linkType: hard -"terser@npm:^5.0.0, terser@npm:^5.10.0": - version: 5.15.1 - resolution: "terser@npm:5.15.1" +"terser@npm:5.19.3": + version: 5.19.3 + resolution: "terser@npm:5.19.3" + dependencies: + "@jridgewell/source-map": "npm:^0.3.3" + acorn: "npm:^8.8.2" + commander: "npm:^2.20.0" + source-map-support: "npm:~0.5.20" + bin: + terser: bin/terser + checksum: 5c2c8815ecccab087e18e482ad2223cb95c28ac76e713ca7174995b5760666ebfad5dee7efe557528b13dd5cee5434f64d145f16f3315bd052f5be9c896c2b64 + languageName: node + linkType: hard + +"terser@npm:^5.0.0": + version: 5.18.1 + resolution: "terser@npm:5.18.1" + dependencies: + "@jridgewell/source-map": "npm:^0.3.3" + acorn: "npm:^8.8.2" + commander: "npm:^2.20.0" + source-map-support: "npm:~0.5.20" + bin: + terser: bin/terser + checksum: f7051e0de06f4a72b26dd7842e5c7becda8dad0db96563c6fa33a2fbb4098731c750afeb9ff97e0833796a41f7b0c7b14fda3ff6a6fcc16ede7f8cc21d8dd654 + languageName: node + linkType: hard + +"terser@npm:^5.15.1": + version: 5.19.4 + resolution: "terser@npm:5.19.4" dependencies: - "@jridgewell/source-map": "npm:^0.3.2" - acorn: "npm:^8.5.0" + "@jridgewell/source-map": "npm:^0.3.3" + acorn: "npm:^8.8.2" commander: "npm:^2.20.0" source-map-support: "npm:~0.5.20" bin: terser: bin/terser - checksum: 4d0c2a858eb2857fd8b58b2e2382865e3ecad30a8573b20d325cb6789d670f4057f3f84ac6e7437556033ec0c6fff9e913e5bbc05b67cdeac1a35b3da173c295 + checksum: 3831a9ad6d40b623e3936a1698bcdcc63cf505bcb6945104c6392711c27283ea8fb53bb88c76588872f9e917cac5f79a54717bc726c65606c22e4837f607bfc1 languageName: node linkType: hard @@ -12790,6 +15416,24 @@ __metadata: languageName: node linkType: hard +"thenify-all@npm:^1.0.0": + version: 1.6.0 + resolution: "thenify-all@npm:1.6.0" + dependencies: + thenify: "npm:>= 3.1.0 < 4" + checksum: c04e83cf6b09741184d578ae73dfcd75566248f21bcf35aac2b9f90b8057b6bc5e401da12df1797cee3235a43113a6dcbd76a02532192a4da0a3007d94e8d6ef + languageName: node + linkType: hard + +"thenify@npm:>= 3.1.0 < 4": + version: 3.3.1 + resolution: "thenify@npm:3.3.1" + dependencies: + any-promise: "npm:^1.0.0" + checksum: 72ff962890b229a21c2c5cc022d105a265b9a3d631925efeba513fecefeb9a87ae6177dbe4befb7ddf78676f5f2a3320d1ed1a715c000da240807200a4e1a7d2 + languageName: node + linkType: hard + "throttleit@npm:^1.0.0": version: 1.0.0 resolution: "throttleit@npm:1.0.0" @@ -12813,6 +15457,13 @@ __metadata: languageName: node linkType: hard +"tiny-case@npm:^1.0.3": + version: 1.0.3 + resolution: "tiny-case@npm:1.0.3" + checksum: 5cefbbf8fa58218df6830829df77730e3d0756c9a2dc46da0e07caf2608d02f269aba743b53ed326bb66508bfabaa1320db5410f95b17dd571cc03cc859c7d14 + languageName: node + linkType: hard + "tinydate@npm:^1.0.0": version: 1.3.0 resolution: "tinydate@npm:1.3.0" @@ -12820,7 +15471,14 @@ __metadata: languageName: node linkType: hard -"tmp@npm:~0.2.1": +"titleize@npm:^3.0.0": + version: 3.0.0 + resolution: "titleize@npm:3.0.0" + checksum: 8468b57b8ed21ae9fe509abb65203bb7c52f3bd613a6e96fcb9e3efb456ba4597a38aa0c43377614c5a826e19f72e89d114ed5d25c622fe2687033035aeb1cfb + languageName: node + linkType: hard + +"tmp@npm:^0.2.1, tmp@npm:~0.2.1": version: 0.2.1 resolution: "tmp@npm:0.2.1" dependencies: @@ -12852,41 +15510,29 @@ __metadata: languageName: node linkType: hard -"token-types@npm:^5.0.0-alpha.2": - version: 5.0.1 - resolution: "token-types@npm:5.0.1" - dependencies: - "@tokenizer/token": "npm:^0.3.0" - ieee754: "npm:^1.2.1" - checksum: 91655bb00b8675f61b3fac6c4281a8816fdb805ad6b742f401ea502822cfa809206e5d5f226c5c421dfaf4d52d7696813b37bb7fa3dc79105b2d3d9325054f32 +"toposort@npm:^2.0.2": + version: 2.0.2 + resolution: "toposort@npm:2.0.2" + checksum: 83228761ab0c520d93ae1d6b5c3cebe0f2aa3e424dda49263d85b01cf7ff9838e2b57812fc5aa59fa28567cd9a03ab5b3cdfb4f9557b28c734c814f7898820c9 languageName: node linkType: hard "totalist@npm:^3.0.0": - version: 3.0.0 - resolution: "totalist@npm:3.0.0" - checksum: 612a1441460f894a571c2d0c4971eeeb34845262d1fe972d8402628aa23a4a164cd2b69e6a0f1b82b2323d6e6d1c4698d50a33cc6920284e9be2985bda61f5ad - languageName: node - linkType: hard - -"touch@npm:^3.1.0": - version: 3.1.0 - resolution: "touch@npm:3.1.0" - dependencies: - nopt: "npm:~1.0.10" - bin: - nodetouch: ./bin/nodetouch.js - checksum: 21657a0e9ed8de9263090dfcc261e652cf36fa9dda56e257897eb9d4afc973a13b9df6a62fb797a9afde3f47adb0a1c2174c02e0a54245fe9cff0a1ef5631dad + version: 3.0.1 + resolution: "totalist@npm:3.0.1" + checksum: c6a6b5601cf82694ae34d091a08ae700852f308b1b0fc0b0f620660e478d1402044a1a00e4d6fd4536706c657cb6e7c5a8376875855514db57cc27f425b893ba languageName: node linkType: hard -"tough-cookie@npm:~2.5.0": - version: 2.5.0 - resolution: "tough-cookie@npm:2.5.0" +"tough-cookie@npm:^4.1.3": + version: 4.1.3 + resolution: "tough-cookie@npm:4.1.3" dependencies: - psl: "npm:^1.1.28" + psl: "npm:^1.1.33" punycode: "npm:^2.1.1" - checksum: 93504e7af3f117ea2feb8ae14f16931430f0ed94a4d0242d7f8efb9ac16e970731bd660242dd7f0afa20b750eb97affd5053cfc8302f77714d123a7b6f4d60b8 + universalify: "npm:^0.2.0" + url-parse: "npm:^1.5.3" + checksum: 87508864be555b8f2bfd59b01197dacac952e8379892054875b1203a276bcecc44bf3cff6f015e6a1782f504c8bf94925d91691c45f7a48f700da3eaea5c8820 languageName: node linkType: hard @@ -12915,6 +15561,13 @@ __metadata: languageName: node linkType: hard +"trim-lines@npm:^3.0.0": + version: 3.0.1 + resolution: "trim-lines@npm:3.0.1" + checksum: 9c052c6e4774ec5315b5ca515e0c926b47820ea1492da7ca39a722864488e8fd7cea404430551daa48d46bcb264aef0b6e18122e4cbef82e354428ece6c81f5e + languageName: node + linkType: hard + "trim-newlines@npm:^3.0.0": version: 3.0.1 resolution: "trim-newlines@npm:3.0.1" @@ -12922,10 +15575,40 @@ __metadata: languageName: node linkType: hard -"ts-mixer@npm:^6.0.1": - version: 6.0.1 - resolution: "ts-mixer@npm:6.0.1" - checksum: 7f750cdaa4ffbe4f67290daf2bc6afeac57b3469530a61cc8aa145e204c29ae981e49feef3d7bef128f21370c943fa378597d2e6559c7a2fcca835e189d56014 +"trim-newlines@npm:^4.0.2": + version: 4.1.1 + resolution: "trim-newlines@npm:4.1.1" + checksum: 686c755da08560230b108bc9a0437b0eac2bf52d50865bffe3988290776dc978e940e95906970e8a381b9350e0e713cbb2bb71bb760dec799042161d27ebb626 + languageName: node + linkType: hard + +"trough@npm:^2.0.0": + version: 2.1.0 + resolution: "trough@npm:2.1.0" + checksum: d28e7a18d0ed570a91e655706a25dd57fbc6de238bdb4d103d0c6e630dd89f879dc47b44a7679ef7c2640b6aafe47c1c9d6112b441717725c69b6c897f7acc31 + languageName: node + linkType: hard + +"ts-api-utils@npm:^1.0.1": + version: 1.0.3 + resolution: "ts-api-utils@npm:1.0.3" + peerDependencies: + typescript: ">=4.2.0" + checksum: 13153d45ff82fae97b3bb75ffe9d47f6620aeb199e20b2f716ad8db5d161440ae86ac2a1018c44e1293073e553a57db7f55fd63791f009a3f74d62e0d1fd0796 + languageName: node + linkType: hard + +"ts-dedent@npm:^2.0.0": + version: 2.2.0 + resolution: "ts-dedent@npm:2.2.0" + checksum: 66108854b96437960b939db641dc563eb06c72d441e4a6f874b18075fce95b4d70bd7b7b6531324708350700701ed5fcba1e395718ddf2d5fbbb58e89d289c76 + languageName: node + linkType: hard + +"ts-mixer@npm:^6.0.3": + version: 6.0.3 + resolution: "ts-mixer@npm:6.0.3" + checksum: 92e94c139429d321d1b37ab099f1a97b04d100504c988a40ddf3e380ae90a56f80accb4b1b4f572ffd55352e6f6c4dd0ab5f5715d6e6b8499cdaf4db306294a6 languageName: node linkType: hard @@ -12967,71 +15650,60 @@ __metadata: languageName: node linkType: hard -"tsconfig-paths@npm:^3.14.1": - version: 3.14.1 - resolution: "tsconfig-paths@npm:3.14.1" +"tsconfig-paths@npm:^3.14.2": + version: 3.14.2 + resolution: "tsconfig-paths@npm:3.14.2" dependencies: "@types/json5": "npm:^0.0.29" - json5: "npm:^1.0.1" + json5: "npm:^1.0.2" minimist: "npm:^1.2.6" strip-bom: "npm:^3.0.0" - checksum: 7f856252e523597e8fc3234b2f992d6d76a807793cb59bd2d924db9beb2594bfe7a18ee93898088733cb55b1cce4be306924a5da5f760eff137d4c2d7bf85fad - languageName: node - linkType: hard - -"tslib@npm:^1.8.1, tslib@npm:^1.9.3": - version: 1.14.1 - resolution: "tslib@npm:1.14.1" - checksum: 441af59dc42ad4ae57140e62cb362369620c6076845c2c2b0ecc863c1d719ce24fdbc301e9053433fef43075e061bf84b702318ff1204b496a5bba10baf9eb9f - languageName: node - linkType: hard - -"tslib@npm:^2.0.3": - version: 2.3.0 - resolution: "tslib@npm:2.3.0" - checksum: fc16cbc15e3a1c0e38b2714d0f56c378b744d7edeb44645352b8cc03b435dfa73ed0efc39d3e6d2ff13db7b0145589089fc8f0338554710e909784fbe90a5b32 + checksum: e320ed312e798282cbdb037a0de88f7cf9c36514d38e21f1f538da8cfc436e199f44a9faa5073417f1110ef3db76256d873cf14dae1836bce5d541963ddf2c1b languageName: node linkType: hard -"tslib@npm:^2.1.0": - version: 2.3.1 - resolution: "tslib@npm:2.3.1" - checksum: 78b00432027abb82405d5986a091fa593c6ef6589d0104d20ecdcaf24f2b02be428d9a38e7cd5304e5d64544cddb83210e326dac4fea9b2b83128a869c825d19 +"tsconfig-resolver@npm:^3.0.1": + version: 3.0.1 + resolution: "tsconfig-resolver@npm:3.0.1" + dependencies: + "@types/json5": "npm:^0.0.30" + "@types/resolve": "npm:^1.17.0" + json5: "npm:^2.1.3" + resolve: "npm:^1.17.0" + strip-bom: "npm:^4.0.0" + type-fest: "npm:^0.13.1" + checksum: 2e674e13afe772e58eb3bf39f09c97da9909b19d43f0acda73709146407bf3f45a62d41718b0b3cdb3af243db43ec1f264489eb2050b05d199d3dbb2a8169491 languageName: node linkType: hard -"tslib@npm:^2.4.0": - version: 2.4.0 - resolution: "tslib@npm:2.4.0" - checksum: 022a70708abbc3491734959effd9a87e6e0af5932b61d0c9f1d07b8b80cabbbfc9fc9e9c0fe86e5ab2d32d766ae30117edf00b02d170ff255ab7e60361a4b711 +"tslib@npm:^2.0.3, tslib@npm:^2.4.1 || ^1.9.3, tslib@npm:^2.6.1": + version: 2.6.2 + resolution: "tslib@npm:2.6.2" + checksum: e5654691294dfbc49d7f37c8476b11a90ab8a0af4ad8cc968af1d013600e84ecfcd9a68e1cb89f5dcfe5c88872e3fbacea830d237cfa063498115a88f4bd2de6 languageName: node linkType: hard -"tsutils@npm:^3.21.0": - version: 3.21.0 - resolution: "tsutils@npm:3.21.0" - dependencies: - tslib: "npm:^1.8.1" - peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - checksum: 723459d516fe94cd9f798436e9424357200f0cccd2804c3240dbe3d2f51fd85207110a756bb46ae0b0b6bd9420083a048e2b3d44a6534224cc34e5821d8aba7f +"tslib@npm:^2.1.0, tslib@npm:^2.5.0": + version: 2.5.3 + resolution: "tslib@npm:2.5.3" + checksum: d31480d5acbcb467291d548bffce51692774b831ac8ce73f9f2049ec217f3c741ed85a0c98924bd61f95633f1c48858d18aa861d754c80df3bd67effcc144a3e languageName: node linkType: hard -"tsx@npm:^3.12.6": - version: 3.12.6 - resolution: "tsx@npm:3.12.6" +"tsx@npm:^3.12.10": + version: 3.12.10 + resolution: "tsx@npm:3.12.10" dependencies: "@esbuild-kit/cjs-loader": "npm:^2.4.2" - "@esbuild-kit/core-utils": "npm:^3.0.0" - "@esbuild-kit/esm-loader": "npm:^2.5.5" + "@esbuild-kit/core-utils": "npm:^3.3.0" + "@esbuild-kit/esm-loader": "npm:^2.6.3" fsevents: "npm:~2.3.2" dependenciesMeta: fsevents: optional: true bin: tsx: dist/cli.js - checksum: 67798f624899fb25cda9a1a1b46f460866034c3b9f5191dd253f82aa8fcb65312a02e591b4ec83d65df570d1a2cabca44bb817fce1525bf5a3d8f71dec871827 + checksum: 01ed4e30c90576c367087598be94747906ae795a0a9ea2b6207676683ba30325507cd35f40fde861adb5997afb2e0a3463d483dac10b8cb2d048e002bd77ed31 languageName: node linkType: hard @@ -13060,6 +15732,13 @@ __metadata: languageName: node linkType: hard +"type-fest@npm:^0.13.1": + version: 0.13.1 + resolution: "type-fest@npm:0.13.1" + checksum: b1a64bad3cd143157785ba9229794663be261aa3825f83406800d5484a9a4465dbcedec822cab9dd7b0de6d8b402e7d1c6053339edead954dd829882c5c0e839 + languageName: node + linkType: hard + "type-fest@npm:^0.16.0": version: 0.16.0 resolution: "type-fest@npm:0.16.0" @@ -13102,6 +15781,20 @@ __metadata: languageName: node linkType: hard +"type-fest@npm:^1.0.1, type-fest@npm:^1.0.2, type-fest@npm:^1.2.1, type-fest@npm:^1.2.2": + version: 1.4.0 + resolution: "type-fest@npm:1.4.0" + checksum: 214ce322fc969854349a65a66b891003636ad844de5fd1738e4015e8b71151b8a774121443b1e6dd7792e1bdd9fad1771826244559111c78feb7519f31fa7692 + languageName: node + linkType: hard + +"type-fest@npm:^2.13.0, type-fest@npm:^2.19.0": + version: 2.19.0 + resolution: "type-fest@npm:2.19.0" + checksum: d63c7c5fd7583cc6d35ccd23e96686eeb1e6f387c83a858625734ea2cf974c6be38bcbc43663da5e10469a1b4119089def1e8def03bf2aee540f0ad4fcd25902 + languageName: node + linkType: hard + "type-is@npm:~1.6.18": version: 1.6.18 resolution: "type-is@npm:1.6.18" @@ -13126,6 +15819,53 @@ __metadata: languageName: node linkType: hard +"typed-array-buffer@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-buffer@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.1" + is-typed-array: "npm:^1.1.10" + checksum: 1e540fe10ddf2bad7bf5514b60c9ee8f13d436776b4f6d90f29803eb6d083cd730ca6ccf61424d65e58a14bab823eeb51bac679192b4163a64947221204a6fe0 + languageName: node + linkType: hard + +"typed-array-byte-length@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-byte-length@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + has-proto: "npm:^1.0.1" + is-typed-array: "npm:^1.1.10" + checksum: 08f7e32f8270f311f440483a358a19fb630cf97956eb7d8df7de0ce6a1816f7a8ad1a622b0073918f1d0e2d993ac099f5577b0f611ab93efcf5718f36ee49590 + languageName: node + linkType: hard + +"typed-array-byte-offset@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-byte-offset@npm:1.0.0" + dependencies: + available-typed-arrays: "npm:^1.0.5" + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + has-proto: "npm:^1.0.1" + is-typed-array: "npm:^1.1.10" + checksum: 0cbc9090c42a610b57b24bb7341245f4d04f5385e34b14fec303c8cab8770c4c704d86e86ed5aabcfd27a926c65960d19248a40f676ce7d1b7b5528fe64de1bb + languageName: node + linkType: hard + +"typed-array-length@npm:^1.0.4": + version: 1.0.4 + resolution: "typed-array-length@npm:1.0.4" + dependencies: + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + is-typed-array: "npm:^1.1.9" + checksum: bd196be0cb6c267e1fc8c3d54f19c1059d1082e0baf0f6735b39ed2a01e9dd2fef0593b1b03e0bdb9c29d1e6e34bbb1498f951a19b4c78bc5c7af6786fc3c6b6 + languageName: node + linkType: hard + "typedarray-to-buffer@npm:^3.1.5": version: 3.1.5 resolution: "typedarray-to-buffer@npm:3.1.5" @@ -13135,63 +15875,79 @@ __metadata: languageName: node linkType: hard -"typescript@npm:^4.6.4": - version: 4.9.4 - resolution: "typescript@npm:4.9.4" +"typesafe-path@npm:^0.2.2": + version: 0.2.2 + resolution: "typesafe-path@npm:0.2.2" + checksum: 957ad4edefac86439f78d4dd6a24b60700b1deb892942112ef6f491272b4d1885efe1b2a1f3ab28ef0e92e161dad27630f6b70a9cc473b764766b62a65d09a9a + languageName: node + linkType: hard + +"typescript-auto-import-cache@npm:^0.3.0": + version: 0.3.0 + resolution: "typescript-auto-import-cache@npm:0.3.0" + dependencies: + semver: "npm:^7.3.8" + checksum: 7d3a59cbe8fb139ea6b1dd34aded8976c11d4698f5244ba28f9c62203463b36d8856154ac5c2f4fd18fa926e5be0c41a6c458a15a08aa5c0f19399d55eda3de0 + languageName: node + linkType: hard + +"typescript@npm:^4.6.4 || ^5.0.0": + version: 5.1.3 + resolution: "typescript@npm:5.1.3" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: b142d5e50785d0e5055771e4d9e712b01be58985ff29be3d3acc64f0fddd5fd8ade8b28583ba502f2565783c23bd5b509c5abcc1a93a2d7d4f05b8e4ee731fc9 + checksum: 34f5c10a175ad596eb9ef7b12a0417d830317859754bddde67d6681c8bd7e67a24c88dfab600bf0deeb7355cb0f58faf7ab2a2c34a5d3c96f8420928f0f69b58 languageName: node linkType: hard -"typescript@npm:^5.0.2": - version: 5.0.2 - resolution: "typescript@npm:5.0.2" +"typescript@npm:^4.7.3": + version: 4.9.5 + resolution: "typescript@npm:4.9.5" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: a305d149166e376acb51bcd1bab9f2ab55c5bd52d0b43f0e49b58ea5cf085cd7c0a3d38ea58f3991aa7b04c97907b6c17c8611334d7f0e54db3d31d7897d9661 + checksum: 550217a465c00b1d7ef0e0ddc3a6a0b2ae1fd7c1b9f53cde5a1cfe56aa457c7a43fa83792c1b98b2185d2156d0467c9ad6f6600515ad4f4fc2acee54c4bd320e languageName: node linkType: hard -"typescript@npm:^5.0.4": - version: 5.0.4 - resolution: "typescript@npm:5.0.4" +"typescript@npm:^5.2.2": + version: 5.2.2 + resolution: "typescript@npm:5.2.2" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 56649de784c427e8f3f63d4ebfcada4fcf03bb2a301f3327342111798db7f26f8a86285f979f376cf6cec4774bd96b4650f2693a07fc409f4544ad4c4d9fe4c9 + checksum: 8c5dfc6149a0d5fbad8d55fd9f5cefaf567b6dda42bce8eef7e5f27e6b11d0fc15f4aa4cad3b38394a34f3e9db8b719f5083ab114ddc649e1bc3318327ffa8ca languageName: node linkType: hard -"typescript@patch:typescript@npm%3A^4.6.4#optional!builtin": - version: 4.9.4 - resolution: "typescript@patch:typescript@npm%3A4.9.4#optional!builtin::version=4.9.4&hash=23ec76" +"typescript@patch:typescript@npm%3A^4.6.4 || ^5.0.0#optional!builtin": + version: 5.1.3 + resolution: "typescript@patch:typescript@npm%3A5.1.3#optional!builtin::version=5.1.3&hash=85af82" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 8944d2310e83395ea5b50a4f3d12fbd8f834a9fd8b0b9a2316f24e78890b04d0015a434d8d825a84971caf3c4bd0d52c79f38d3dce80e05a1892dc9f7fa611f8 + checksum: 24de93b5b464a551b43c62579107f859a1b612840b63ceb8965ed7eaf38519562e879bd2f5c6f0702c5331bbe31d1907dc0c5985dc9bddf7c3b3ea15756a6d78 languageName: node linkType: hard -"typescript@patch:typescript@npm%3A^5.0.2#optional!builtin": - version: 5.0.2 - resolution: "typescript@patch:typescript@npm%3A5.0.2#optional!builtin::version=5.0.2&hash=85af82" +"typescript@patch:typescript@npm%3A^4.7.3#optional!builtin": + version: 4.9.5 + resolution: "typescript@patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=23ec76" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 152c6851fd46cd63988ae112ede3b64aab3b10f9a33f5c8c5bab41af3bc0ec59dd265349da67890c80f1eba156a5beb0fb78ece94b40b3031c1eea3cece1e233 + checksum: 09f82f25664c79d5cccc389502175093becf51d691b443c79294303681544a399fb42f8384b535ddeba48cadb64e7d14b42de40d8ade4418bb43174989dd8685 languageName: node linkType: hard -"typescript@patch:typescript@npm%3A^5.0.4#optional!builtin": - version: 5.0.4 - resolution: "typescript@patch:typescript@npm%3A5.0.4#optional!builtin::version=5.0.4&hash=85af82" +"typescript@patch:typescript@npm%3A^5.2.2#optional!builtin": + version: 5.2.2 + resolution: "typescript@patch:typescript@npm%3A5.2.2#optional!builtin::version=5.2.2&hash=85af82" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 45353da032bb809a80a75f90c9db4d652e5da97e023857b494985c0aa33781efa80de10f4ee951fe4df11ef90484ef168399f974c489784344aa8881adabda82 + checksum: b52454ea2b8ba479dd655c4e55ae57c1cec4af21c83c3aa9ab280879a53f3ef4314587b0cfe5e6dd0a082aca4409fef70d0763e762cd0a3e8b38ef70d1dbad67 languageName: node linkType: hard @@ -13204,18 +15960,6 @@ __metadata: languageName: node linkType: hard -"unbox-primitive@npm:^1.0.1": - version: 1.0.1 - resolution: "unbox-primitive@npm:1.0.1" - dependencies: - function-bind: "npm:^1.1.1" - has-bigints: "npm:^1.0.1" - has-symbols: "npm:^1.0.2" - which-boxed-primitive: "npm:^1.0.2" - checksum: 27939a4a0733c25d714571963009d211a46d0b8b1bb09525c3e7901ce5f832a1f37cace80c5081ef5f4800875f18df82568e4090515c3bce0c422332922bb1a6 - languageName: node - linkType: hard - "unbox-primitive@npm:^1.0.2": version: 1.0.2 resolution: "unbox-primitive@npm:1.0.2" @@ -13228,26 +15972,28 @@ __metadata: languageName: node linkType: hard -"undefsafe@npm:^2.0.5": - version: 2.0.5 - resolution: "undefsafe@npm:2.0.5" - checksum: ae6c8e9192b85698bbdc7f1e2127c13b9fc6344b6d51ccd13ea98b349e8f36d9fef3f13125a50fa135d3dc14d6bd190b566f0cc515f89a76e36a6d05d5d724b6 +"undici@npm:5.22.1": + version: 5.22.1 + resolution: "undici@npm:5.22.1" + dependencies: + busboy: "npm:^1.6.0" + checksum: 7c5ef3a35037fffff17511fd16712241a7a3cda3d6713434f73c4aa4660d66821649a0a3e95c65016b16566b3912af0ab6481b3afd7414d40872ab3babb2cfb3 languageName: node linkType: hard -"undici@npm:^5.9.1": - version: 5.19.1 - resolution: "undici@npm:5.19.1" +"undici@npm:^5.23.0": + version: 5.24.0 + resolution: "undici@npm:5.24.0" dependencies: busboy: "npm:^1.6.0" - checksum: 999c4ad5d08b9082b3a3e7a1e66bf3b9c08dac89ef8b9951da8e00959fafc03319028ed83f161ddb8d4e157ce6a9b6c8a50194daa64fd21dd5e493cddb039bbe + checksum: 20ebcb0ef760ad6cd206b769611532092bae7c09c29918f012d774c80ae00691a15bc19c9b9f82802c58d723c378a1667a1a8742d3a56fc79a8a71760321cf3c languageName: node linkType: hard -"unicode-canonical-property-names-ecmascript@npm:^1.0.4": - version: 1.0.4 - resolution: "unicode-canonical-property-names-ecmascript@npm:1.0.4" - checksum: 997a5fd80da5074f0a108c535dbdef819e96f389bd29c69f7790faef76d68697e638673e058d54000fc176aa0aa717873fb6aa4c9ac3b914409e675faad51b3c +"unherit@npm:^3.0.0": + version: 3.0.1 + resolution: "unherit@npm:3.0.1" + checksum: 8d8343ff6c9cb89254db15642f16c669924b9c61de79a4458e39ccd6f3d8d3fbeee2e2c82b9a27a942ca775582eb22e35bffff6dbdae6c60b21c512b854b4487 languageName: node linkType: hard @@ -13258,16 +16004,6 @@ __metadata: languageName: node linkType: hard -"unicode-match-property-ecmascript@npm:^1.0.4": - version: 1.0.4 - resolution: "unicode-match-property-ecmascript@npm:1.0.4" - dependencies: - unicode-canonical-property-names-ecmascript: "npm:^1.0.4" - unicode-property-aliases-ecmascript: "npm:^1.0.4" - checksum: f1d8b505d7004c5758352712e94bd4bf0d295b5bdae7f8c6d8323ca50a31fb0a19927b6713af031ea7dbf325cc678d8557201117a366acb4388abf696e6f47c0 - languageName: node - linkType: hard - "unicode-match-property-ecmascript@npm:^2.0.0": version: 2.0.0 resolution: "unicode-match-property-ecmascript@npm:2.0.0" @@ -13278,13 +16014,6 @@ __metadata: languageName: node linkType: hard -"unicode-match-property-value-ecmascript@npm:^1.2.0": - version: 1.2.0 - resolution: "unicode-match-property-value-ecmascript@npm:1.2.0" - checksum: 58acafe3206771608353b24758b19b882c20d2aaf60462f1f8f604357ba7e53e2fbd6de4b7f938f25aab2b28dae0616147cfee2cb3947b68a787cc17b833dc1b - languageName: node - linkType: hard - "unicode-match-property-value-ecmascript@npm:^2.1.0": version: 2.1.0 resolution: "unicode-match-property-value-ecmascript@npm:2.1.0" @@ -13292,13 +16021,6 @@ __metadata: languageName: node linkType: hard -"unicode-property-aliases-ecmascript@npm:^1.0.4": - version: 1.1.0 - resolution: "unicode-property-aliases-ecmascript@npm:1.1.0" - checksum: ae9d1f49bad912bf19ea8a3c0f4de1bfdbc3ca90eed012514c114784bd5bed35de657e3f32a12e1990167d0501a143783af391b192e91c094f3c3b2a02c1b37c - languageName: node - linkType: hard - "unicode-property-aliases-ecmascript@npm:^2.0.0": version: 2.1.0 resolution: "unicode-property-aliases-ecmascript@npm:2.1.0" @@ -13306,21 +16028,36 @@ __metadata: languageName: node linkType: hard -"unique-filename@npm:^1.1.1": - version: 1.1.1 - resolution: "unique-filename@npm:1.1.1" +"unified@npm:^10.0.0, unified@npm:^10.1.2": + version: 10.1.2 + resolution: "unified@npm:10.1.2" dependencies: - unique-slug: "npm:^2.0.0" - checksum: 8330bc7e98bd55c86baaa1aba4d0fef4b2e32d7230b3f7421142e728fda8dfcede4ba6a898429a28707ffec06911649dc2aeea5d0e18eee4c7e2b573b9ee3145 + "@types/unist": "npm:^2.0.0" + bail: "npm:^2.0.0" + extend: "npm:^3.0.0" + is-buffer: "npm:^2.0.0" + is-plain-obj: "npm:^4.0.0" + trough: "npm:^2.0.0" + vfile: "npm:^5.0.0" + checksum: 50c5c3d2c141a124f1bf552f4e9f138b82d08d4fa3da95e95586001be0214b0c8b4a946ef7aea5212daaefdafe8be938b0cc9f498d9073962f34dcd7435da015 languageName: node linkType: hard -"unique-slug@npm:^2.0.0": - version: 2.0.2 - resolution: "unique-slug@npm:2.0.2" +"unique-filename@npm:^3.0.0": + version: 3.0.0 + resolution: "unique-filename@npm:3.0.0" + dependencies: + unique-slug: "npm:^4.0.0" + checksum: 2624a9c87c31ef208bec3ffede4728770b0f8b1c056e546c7f89403ce55bac2f44d02d501ca4c20f853b7c67001ce4d8fb36d0750a58451b03ed85811ef80c77 + languageName: node + linkType: hard + +"unique-slug@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-slug@npm:4.0.0" dependencies: imurmurhash: "npm:^0.1.4" - checksum: 9c1111d986ecb9266678f02356a2e9f6485eca8ab2e82d5a5b4b9df1b4d6f11322bf893ed3c44d125039c76cb3e8dcf778b1eac85ff9df878e6317921319e7e2 + checksum: 4ba7a8d96a490850f9f5b80fd0f5958ce9369aac12c659405885ab9f1c6b908315cfeef218fed65966160dd9ca811eaa8ca6271f95adf5f70493891e9d852d8f languageName: node linkType: hard @@ -13333,6 +16070,117 @@ __metadata: languageName: node linkType: hard +"unist-util-generated@npm:^2.0.0": + version: 2.0.1 + resolution: "unist-util-generated@npm:2.0.1" + checksum: 62de9c275cb2341a5192bea8a84220d717834e11af7a7124b21114adc38a869104ec8b3bc7f62e4da9d5cdb620bd0357bd8e6560ea4a71a9a30c5d056f1ba692 + languageName: node + linkType: hard + +"unist-util-is@npm:^5.0.0": + version: 5.2.1 + resolution: "unist-util-is@npm:5.2.1" + dependencies: + "@types/unist": "npm:^2.0.0" + checksum: 299e5808e2775482803700b7b70d721a3fca2f754f114319151e2f17cfda230c21815d7f5fdabd08ff1218c708dc88578a12d71669709303e3f4cfe00fed192d + languageName: node + linkType: hard + +"unist-util-is@npm:^6.0.0": + version: 6.0.0 + resolution: "unist-util-is@npm:6.0.0" + dependencies: + "@types/unist": "npm:^3.0.0" + checksum: 00c5edf66df4e0bdda2d77b6b1fdccae1be9c53ebb60e12f653fae176244a4df6af5645e8ab2e5d79d1311370207bce568ffe01b16797426ac003230ac6bad3f + languageName: node + linkType: hard + +"unist-util-modify-children@npm:^3.0.0": + version: 3.1.1 + resolution: "unist-util-modify-children@npm:3.1.1" + dependencies: + "@types/unist": "npm:^2.0.0" + array-iterate: "npm:^2.0.0" + checksum: bd5cee5fad8c35806bb57172cf79e73f1a39f6524f47fea0bbcb4fdc9bd66cb732b7cd1fefb5796a64a3138e87ef5fe2fd0881e6b4efc560c058139f4bbe3d27 + languageName: node + linkType: hard + +"unist-util-position@npm:^4.0.0": + version: 4.0.4 + resolution: "unist-util-position@npm:4.0.4" + dependencies: + "@types/unist": "npm:^2.0.0" + checksum: fc3d3657d0fdc80fe530c3c8d0894b19e85fe2d3a71d20a6cc41c5d53a96ae0cdc5fba9947a5295530e100187e8584a83c94c24bb89640f5e2e819beb784b2ee + languageName: node + linkType: hard + +"unist-util-stringify-position@npm:^3.0.0": + version: 3.0.3 + resolution: "unist-util-stringify-position@npm:3.0.3" + dependencies: + "@types/unist": "npm:^2.0.0" + checksum: ff752dd64726bc798dc220a6a599a77f63df08cf7ab7b6a7efb5d33f7fce5403b12e31d15c1be8be01d6de187894c76d9aa87c0b683abdcb3640eb2c5756d34f + languageName: node + linkType: hard + +"unist-util-visit-children@npm:^2.0.0": + version: 2.0.2 + resolution: "unist-util-visit-children@npm:2.0.2" + dependencies: + "@types/unist": "npm:^2.0.0" + checksum: f25a3cc6b71fe8da67c754cdeb71917a6dda86f9a5235c922c7eaa694677cab5f7caf0e4aff4c1d29eb983d2f668b2ad9aab150020892840777255e5a1e559ae + languageName: node + linkType: hard + +"unist-util-visit-parents@npm:^5.0.0, unist-util-visit-parents@npm:^5.1.1": + version: 5.1.3 + resolution: "unist-util-visit-parents@npm:5.1.3" + dependencies: + "@types/unist": "npm:^2.0.0" + unist-util-is: "npm:^5.0.0" + checksum: 8e624e3ce46bc25e82ce4bd0593c53c45497b71a8f4c2ac6608929558de527ca4b07376e96fc911aeb26179e469be1780cbec5475b054bc704921ef57d5b4964 + languageName: node + linkType: hard + +"unist-util-visit-parents@npm:^6.0.0": + version: 6.0.1 + resolution: "unist-util-visit-parents@npm:6.0.1" + dependencies: + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + checksum: f191a2418944bcf99bf91bc9bdf8b0e8ab043ece136397a9495ea3d2c86548163f80182b46e8b7e1631cd5b2a8969d4082aa281eeac0aa5a65f17dc10881f34c + languageName: node + linkType: hard + +"unist-util-visit@npm:^4.0.0, unist-util-visit@npm:^4.1.0, unist-util-visit@npm:^4.1.2": + version: 4.1.2 + resolution: "unist-util-visit@npm:4.1.2" + dependencies: + "@types/unist": "npm:^2.0.0" + unist-util-is: "npm:^5.0.0" + unist-util-visit-parents: "npm:^5.1.1" + checksum: fe383bb0f2173e902459ddc0925aecc28b56c8464dc947b58be92aff4a24c76bd8d14969a303e3cfaf32440ac33f95b068bf55f214282c847c7d8ec6f1df026a + languageName: node + linkType: hard + +"unist-util-visit@npm:^5.0.0": + version: 5.0.0 + resolution: "unist-util-visit@npm:5.0.0" + dependencies: + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 0ffc88699d1594085df60dfb040f62fb8ad8413e30a3b4f7b827de922e543a57e17fa2cc8fffbe5db46ac3ed3e11bc0c43fa58152e4aca2914c78bbcde118491 + languageName: node + linkType: hard + +"universalify@npm:^0.2.0": + version: 0.2.0 + resolution: "universalify@npm:0.2.0" + checksum: 3393da2354b34bf36fce8eb8edea31833e614a99bce28f903dddd054706597b6f07d5648d26900a951458cc874d13b6693111444c22fb129b8b44a2173051375 + languageName: node + linkType: hard + "universalify@npm:^2.0.0": version: 2.0.0 resolution: "universalify@npm:2.0.0" @@ -13373,17 +16221,26 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.0.10, update-browserslist-db@npm:^1.0.9": - version: 1.0.10 - resolution: "update-browserslist-db@npm:1.0.10" +"update-browserslist-db@npm:^1.0.11": + version: 1.0.11 + resolution: "update-browserslist-db@npm:1.0.11" dependencies: escalade: "npm:^3.1.1" picocolors: "npm:^1.0.0" peerDependencies: browserslist: ">= 4.21.0" bin: - browserslist-lint: cli.js - checksum: e55ee7f0562821e40808b5f265e4dfbc1436cdddd4c436dfe73ae4e71215302907d4b430807d45fabbb4c23aa2d67757f26dbd8f93fc9718f814566536b386d0 + update-browserslist-db: cli.js + checksum: adce84b01c28606050eb73df75b36404fe531727484ebc5a3f6d12c23413155a82205a7c773ee05b8fb27d0fa719e66c970fb90ecced57a54106b89249dd6bb3 + languageName: node + linkType: hard + +"upper-case-first@npm:^2.0.2": + version: 2.0.2 + resolution: "upper-case-first@npm:2.0.2" + dependencies: + tslib: "npm:^2.0.3" + checksum: 28c69870d26b67dabf1423fe48250fcb2b018b2bf3e4b697ebd85bf48a7e3eb278050f7ab98e5d3d2464a58cfa2ca1b4e2ec513fd5534c7bbf1f2441fd35c8e7 languageName: node linkType: hard @@ -13396,6 +16253,16 @@ __metadata: languageName: node linkType: hard +"url-parse@npm:^1.5.3": + version: 1.5.10 + resolution: "url-parse@npm:1.5.10" + dependencies: + querystringify: "npm:^2.1.1" + requires-port: "npm:^1.0.0" + checksum: 66bbd003c46f39998b1c127b26b2ff4e8426e8597bb46ddb758fb3e05f56eaac745c05d40af07e87d72cab5827fbfe88050dec58d3128c82629731f8ceea42c2 + languageName: node + linkType: hard + "utf-8-validate@npm:^5.0.2": version: 5.0.10 resolution: "utf-8-validate@npm:5.0.10" @@ -13406,7 +16273,14 @@ __metadata: languageName: node linkType: hard -"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2, util-deprecate@npm:~1.0.1": +"util-arity@npm:^1.1.0": + version: 1.1.0 + resolution: "util-arity@npm:1.1.0" + checksum: 79a4dd4ec0074597d9e126725e4e8ba8c17924c0af376c724d9bcff5e0cb79c731a4ee755de95dc7ec01161e34cd78a12c28c481f76dfedcae71d92d0071e867 + languageName: node + linkType: hard + +"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2": version: 1.0.2 resolution: "util-deprecate@npm:1.0.2" checksum: 6a88ed8344d07f2324b304ee36def365d967953b5a9c15baa3213eb3909e86a7da1ee70a4c2133e80c23d6c1987590e9c3c57d874e20a124f9e41620b462fa57 @@ -13420,19 +16294,42 @@ __metadata: languageName: node linkType: hard -"uuid@npm:8.3.2, uuid@npm:^8.3.2": +"uuid@npm:9.0.0, uuid@npm:^9.0.0": + version: 9.0.0 + resolution: "uuid@npm:9.0.0" + bin: + uuid: dist/bin/uuid + checksum: e1f76aff372e430bb129157360fd4cd3b393411b245604ea78e178a822ab7874ec2ebecec03ce94422b0b80bbd24733c6fa1df166c9cbad5086ef4b4843140bb + languageName: node + linkType: hard + +"uuid@npm:^8.3.2": version: 8.3.2 resolution: "uuid@npm:8.3.2" bin: - uuid: dist/bin/uuid - checksum: 236a12282c6fa32f326aa1b6d5699a843572e9ab7de84a1507a6b7c315fdcf55bf6ed333fd37d35c5c656f4cb96af998844e1c8cae281c442a1ec3b66df62962 + uuid: dist/bin/uuid + checksum: 236a12282c6fa32f326aa1b6d5699a843572e9ab7de84a1507a6b7c315fdcf55bf6ed333fd37d35c5c656f4cb96af998844e1c8cae281c442a1ec3b66df62962 + languageName: node + linkType: hard + +"uvu@npm:^0.5.0": + version: 0.5.6 + resolution: "uvu@npm:0.5.6" + dependencies: + dequal: "npm:^2.0.0" + diff: "npm:^5.0.0" + kleur: "npm:^4.0.3" + sade: "npm:^1.7.3" + bin: + uvu: bin.js + checksum: baa2c0f8eb93d2114ab00632963bb88bbd5986c04ea4b85c3fa560a3420d7840850a738507771d49d403105df6f7d2c1dea8d100fd93a885622084f5ba503f05 languageName: node linkType: hard -"uws@https://github.com/uNetworking/uWebSockets.js.git#commit=42c9c0d5d31f46ca4115dc75672b0037ec970f28": - version: 20.19.0 - resolution: "uws@https://github.com/uNetworking/uWebSockets.js.git#commit=42c9c0d5d31f46ca4115dc75672b0037ec970f28" - checksum: 0cf603491df40f9e041672ba51b34aaff1a1bec6cc087dbbd363435ed07c9436fdbf6e4f4cb5b143133a9f232670b9a52e3b5befc2f05350c843945c4f8feee1 +"uws@https://github.com/uNetworking/uWebSockets.js.git#commit=e6ecc2102d68d99dc35969b0898fbd201e0f252b": + version: 20.25.0 + resolution: "uws@https://github.com/uNetworking/uWebSockets.js.git#commit=e6ecc2102d68d99dc35969b0898fbd201e0f252b" + checksum: 48bbb9551848b31aab90c6fb8e2337305f986baf1dd7f7eb27e17340df744989555717788bf92a279526b1d1fbd9d25ce5c31fd102cdabb3eb46f6da02e572e6 languageName: node linkType: hard @@ -13443,10 +16340,12 @@ __metadata: languageName: node linkType: hard -"v8-compile-cache@npm:^2.3.0": - version: 2.3.0 - resolution: "v8-compile-cache@npm:2.3.0" - checksum: 757e7df6b154817c5f8fca0e5a14408d9ee2aed32b1a5e287b0eb292e576a78741875c428ea2583538afacf20a55ff5b59f1be30388e0ceed0753ceec949ea74 +"valid-filename@npm:^4.0.0": + version: 4.0.0 + resolution: "valid-filename@npm:4.0.0" + dependencies: + filename-reserved-regex: "npm:^3.0.0" + checksum: e43718e9e73218ffdf557fcaad6774cfa9fc2c606eb2b4adcae08b272bdb2b5572b27ce2a25786da3342566ab5b1a77f0dc15960dc514de034e75acf172544bf languageName: node linkType: hard @@ -13478,6 +16377,49 @@ __metadata: languageName: node linkType: hard +"verror@npm:^1.10.0": + version: 1.10.1 + resolution: "verror@npm:1.10.1" + dependencies: + assert-plus: "npm:^1.0.0" + core-util-is: "npm:1.0.2" + extsprintf: "npm:^1.2.0" + checksum: c48650d6ccabe84aea82090a3ac74376edbfe772de6c1b1695d64b6dcffddd1141c4907dc15056c642ff95574d0dee731a190194cbaaf35dd78dad1f7b401c6b + languageName: node + linkType: hard + +"vfile-location@npm:^4.0.0": + version: 4.1.0 + resolution: "vfile-location@npm:4.1.0" + dependencies: + "@types/unist": "npm:^2.0.0" + vfile: "npm:^5.0.0" + checksum: d80162bda086822a8fb0070229ddf71fe8b2c0f47221dde03e08175cbe30d5b28e6eb6cb8a8303e710d109790d5e6e5bd860d2c927ad2f199fa89c080fd8508b + languageName: node + linkType: hard + +"vfile-message@npm:^3.0.0": + version: 3.1.4 + resolution: "vfile-message@npm:3.1.4" + dependencies: + "@types/unist": "npm:^2.0.0" + unist-util-stringify-position: "npm:^3.0.0" + checksum: f8e674562f27eb864d4396e204a0f07c4e75716c7ade0e788284dd01375a0b4c40228e4a970db97562a7cfa24970228ccb6039290b83adcf232fbba1d3b7aba1 + languageName: node + linkType: hard + +"vfile@npm:^5.0.0, vfile@npm:^5.3.7": + version: 5.3.7 + resolution: "vfile@npm:5.3.7" + dependencies: + "@types/unist": "npm:^2.0.0" + is-buffer: "npm:^2.0.0" + unist-util-stringify-position: "npm:^3.0.0" + vfile-message: "npm:^3.0.0" + checksum: 54ad13e2ace60db147f0b0d288ccf79b883d80b5e3f7c1e76698ed81d1ad1cdbe02d37bb7a0dc8d1eef560160b2c1fa4780c49f0b5df29e257a1b70a31b5ffde + languageName: node + linkType: hard + "vite-plugin-glsl@npm:^1.1.2": version: 1.1.2 resolution: "vite-plugin-glsl@npm:1.1.2" @@ -13489,48 +16431,35 @@ __metadata: languageName: node linkType: hard -"vite-plugin-minify@npm:^1.5.2": - version: 1.5.2 - resolution: "vite-plugin-minify@npm:1.5.2" - dependencies: - html-minifier-terser: "npm:^6.1.0" - peerDependencies: - vite: "*" - checksum: 6821d53fd37407ca9980e90d4d330bc770155c8ad832c067148e62c2f5c6fb835dfbc120b7817954e4a219957a4130f6f27dafd76141e7f1a986c284302bb60c - languageName: node - linkType: hard - -"vite-plugin-pwa@npm:^0.14.1": - version: 0.14.1 - resolution: "vite-plugin-pwa@npm:0.14.1" +"vite-plugin-pwa@npm:^0.16.4": + version: 0.16.4 + resolution: "vite-plugin-pwa@npm:0.16.4" dependencies: - "@rollup/plugin-replace": "npm:^5.0.1" debug: "npm:^4.3.4" fast-glob: "npm:^3.2.12" pretty-bytes: "npm:^6.0.0" - rollup: "npm:^3.7.2" - workbox-build: "npm:^6.5.4" - workbox-window: "npm:^6.5.4" + workbox-build: "npm:^7.0.0" + workbox-window: "npm:^7.0.0" peerDependencies: vite: ^3.1.0 || ^4.0.0 - workbox-build: ^6.5.4 - workbox-window: ^6.5.4 - checksum: 96ae0d392e05ea55e64138138ce300820949ee7fce807af4a49fea8617b039cc46e5f00fd9749275dfeb3b0fa763b180493d918d1b1815364baf8beb2e39414a + workbox-build: ^7.0.0 + workbox-window: ^7.0.0 + checksum: 5e097ff7f9fb6626ce7be797b7609f7f3d6f0fc03d3391e999f0d96d4b4619a1f7ac46e6d4d570ebe26c1fd50f36c3891c5719e9158c04827699428d0d7a90d5 languageName: node linkType: hard -"vite@npm:^4.1.1": - version: 4.1.1 - resolution: "vite@npm:4.1.1" +"vite@npm:^4.4.9": + version: 4.4.9 + resolution: "vite@npm:4.4.9" dependencies: - esbuild: "npm:^0.16.14" + esbuild: "npm:^0.18.10" fsevents: "npm:~2.3.2" - postcss: "npm:^8.4.21" - resolve: "npm:^1.22.1" - rollup: "npm:^3.10.0" + postcss: "npm:^8.4.27" + rollup: "npm:^3.27.1" peerDependencies: "@types/node": ">= 14" less: "*" + lightningcss: ^1.21.0 sass: "*" stylus: "*" sugarss: "*" @@ -13543,6 +16472,8 @@ __metadata: optional: true less: optional: true + lightningcss: + optional: true sass: optional: true stylus: @@ -13553,22 +16484,233 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 1214e901a0836cfad0b20abe3ba03684c5c6d1a5d486e7ddd55e56e2c786677cecd7c1822b97540a001867164a9e38e52aa5c14480cdc50afd2561ed4bc2f89b + checksum: 7be5140545a591fe26899004acbd2e7e5fe15ea9247ae466800e9f13e9eaedd600993cfe2977a79c8f237ffcb3ec42f41d4dea1558fb4ca33ec1bc35659b8d3f languageName: node linkType: hard -"wait-on@npm:6.0.0": - version: 6.0.0 - resolution: "wait-on@npm:6.0.0" +"vitefu@npm:^0.2.4": + version: 0.2.4 + resolution: "vitefu@npm:0.2.4" + peerDependencies: + vite: ^3.0.0 || ^4.0.0 + peerDependenciesMeta: + vite: + optional: true + checksum: 332e9cdbb0dca880cf4e1859f2c23307da306a99c3d487db33a1779567c87e7efa1416b7f869a0b4c49ead0892b8d97a15237c93cfe7a6022ace1604eb5eb83d + languageName: node + linkType: hard + +"volar-service-css@npm:0.0.13": + version: 0.0.13 + resolution: "volar-service-css@npm:0.0.13" + dependencies: + vscode-css-languageservice: "npm:^6.2.3" + vscode-uri: "npm:^3.0.7" + peerDependencies: + "@volar/language-service": ~1.10.0 + peerDependenciesMeta: + "@volar/language-service": + optional: true + checksum: 54b977dda6a02b2605e43f8b759f875fb238544117c2694cc136d136d1c18ca1d7f5b92b13a34bc7198d0bd0a5bb0ed74c96b1f7a5f5f8ac26e5e4681b533342 + languageName: node + linkType: hard + +"volar-service-emmet@npm:0.0.13": + version: 0.0.13 + resolution: "volar-service-emmet@npm:0.0.13" + dependencies: + "@vscode/emmet-helper": "npm:^2.8.6" + volar-service-html: "npm:0.0.13" + peerDependencies: + "@volar/language-service": ~1.10.0 + peerDependenciesMeta: + "@volar/language-service": + optional: true + checksum: 7c29def07ef82af48ce3b5424815f184bb45a027c67d3cf9a85621c2fb078fffb8327ffec5813ec666c2440236131b5944fac72494c2d117711e528808dfe1cc + languageName: node + linkType: hard + +"volar-service-html@npm:0.0.13": + version: 0.0.13 + resolution: "volar-service-html@npm:0.0.13" + dependencies: + vscode-html-languageservice: "npm:^5.0.4" + vscode-uri: "npm:^3.0.7" + peerDependencies: + "@volar/language-service": ~1.10.0 + peerDependenciesMeta: + "@volar/language-service": + optional: true + checksum: 2e5f56714f05a5d29597e27992d8f7e542ff309f2a9c0cb413eb2f5593461ddf5eba9e1001dadb86c13ddc172f37d375bc68eadc894360c290b4fdf324289bde + languageName: node + linkType: hard + +"volar-service-prettier@npm:0.0.13": + version: 0.0.13 + resolution: "volar-service-prettier@npm:0.0.13" + peerDependencies: + "@volar/language-service": ~1.10.0 + prettier: ^2.2 || ^3.0 + peerDependenciesMeta: + "@volar/language-service": + optional: true + prettier: + optional: true + checksum: 92b9c72adad8f47d1084c5e8e40d685d61fe6427dbecfb179b4da221699f25a6baa736538d7f669e43427a0f844a580f1771995e053d649bb152157f7b860c48 + languageName: node + linkType: hard + +"volar-service-typescript-twoslash-queries@npm:0.0.13": + version: 0.0.13 + resolution: "volar-service-typescript-twoslash-queries@npm:0.0.13" + peerDependencies: + "@volar/language-service": ~1.10.0 + peerDependenciesMeta: + "@volar/language-service": + optional: true + checksum: e0a1483f881b3a92708e8c257a60143f5a26646db58a954af2f8cf2bbc3caea0adc457a474c12c7e938660c7a69b3ef5a50044b0d776f8ca46bafeaf2f18f166 + languageName: node + linkType: hard + +"volar-service-typescript@npm:0.0.13": + version: 0.0.13 + resolution: "volar-service-typescript@npm:0.0.13" + dependencies: + semver: "npm:^7.3.8" + typescript-auto-import-cache: "npm:^0.3.0" + vscode-languageserver-textdocument: "npm:^1.0.8" + vscode-nls: "npm:^5.2.0" + vscode-uri: "npm:^3.0.7" + peerDependencies: + "@volar/language-service": ~1.10.0 + "@volar/typescript": ~1.10.0 + peerDependenciesMeta: + "@volar/language-service": + optional: true + checksum: ff2d0d992dcfbe53b1a3d79ef5a248c09ea95b4bb913c3a920166d176882d9aa52cacc5d001e7f104f057e3a2792c974404727f653afd7869d5c67bde45b36d4 + languageName: node + linkType: hard + +"vscode-css-languageservice@npm:^6.2.3": + version: 6.2.7 + resolution: "vscode-css-languageservice@npm:6.2.7" + dependencies: + "@vscode/l10n": "npm:^0.0.16" + vscode-languageserver-textdocument: "npm:^1.0.8" + vscode-languageserver-types: "npm:^3.17.3" + vscode-uri: "npm:^3.0.7" + checksum: f893a669a3f9667a213369ff181b92cc4836eb525535061c7caa4f3313ef8366659616d7ab3729651c3135ac8be4d5b7ded170308269278dd7e6ddcbbe684566 + languageName: node + linkType: hard + +"vscode-html-languageservice@npm:^5.0.4, vscode-html-languageservice@npm:^5.0.6": + version: 5.0.7 + resolution: "vscode-html-languageservice@npm:5.0.7" + dependencies: + "@vscode/l10n": "npm:^0.0.16" + vscode-languageserver-textdocument: "npm:^1.0.8" + vscode-languageserver-types: "npm:^3.17.3" + vscode-uri: "npm:^3.0.7" + checksum: 66d6f35996edb97ed5e8f333765483d1d00b17a7934541026088fef5cfb593e0114064a22d08ea0a80c03aae4ef6c3b5f6335edd1f29feee41888ed6021e408c + languageName: node + linkType: hard + +"vscode-jsonrpc@npm:8.1.0": + version: 8.1.0 + resolution: "vscode-jsonrpc@npm:8.1.0" + checksum: d2335bc40e5c113eda27230a7f86a8beed32d1f75854e3f4530674e29715734e51af2a9a51b1338e70a96e19b27782ef1d091be9208ca31f0af42ed1d41b0dd0 + languageName: node + linkType: hard + +"vscode-languageserver-protocol@npm:3.17.3, vscode-languageserver-protocol@npm:^3.17.3": + version: 3.17.3 + resolution: "vscode-languageserver-protocol@npm:3.17.3" + dependencies: + vscode-jsonrpc: "npm:8.1.0" + vscode-languageserver-types: "npm:3.17.3" + checksum: 63229ca7c1845c0ac94f61809afae8bb1389c195173b3bb094096f03ebee5ba6a83f784d9cc3d09357a8a55d95facfe59abed5031d344dd2ea2ed522abe59849 + languageName: node + linkType: hard + +"vscode-languageserver-textdocument@npm:^1.0.1, vscode-languageserver-textdocument@npm:^1.0.8": + version: 1.0.10 + resolution: "vscode-languageserver-textdocument@npm:1.0.10" + checksum: 2e681e354c2bea62503765fcb3cfa8b4ba51e7d366953d39cb90cec9ece6080f94bc47bbcb3818b3b3215e5667b64e23d2789492a528ec7078319cdabad93717 + languageName: node + linkType: hard + +"vscode-languageserver-types@npm:3.17.3, vscode-languageserver-types@npm:^3.15.1, vscode-languageserver-types@npm:^3.17.3": + version: 3.17.3 + resolution: "vscode-languageserver-types@npm:3.17.3" + checksum: b5771a8473967609a827e1800c5b9e8decafd2e2f0e7632158b3875092b0def5d89785ac193d4ae6d807547d347cf5487941f18a60f98c52949d59992006c749 + languageName: node + linkType: hard + +"vscode-languageserver@npm:^8.1.0": + version: 8.1.0 + resolution: "vscode-languageserver@npm:8.1.0" + dependencies: + vscode-languageserver-protocol: "npm:3.17.3" + bin: + installServerIntoExtension: bin/installServerIntoExtension + checksum: 2d6c96ca86040554ba494f3e581d910dd1abef585d8f33f2fd0e85cddd0cd307f68dcc155c1e8647fc1859907aebcc4a73f5121154aaa7d3071db9216d459493 + languageName: node + linkType: hard + +"vscode-nls@npm:^5.2.0": + version: 5.2.0 + resolution: "vscode-nls@npm:5.2.0" + checksum: 4701bfb1d557a0ba2030f2d53298a4e5c3b52fc18e12d088264a6e6ba8f228d7a65021fe221c9e1c769d55e3b16b4fc95149e05af7011e3e07d0242bc96d4c2f + languageName: node + linkType: hard + +"vscode-oniguruma@npm:^1.7.0": + version: 1.7.0 + resolution: "vscode-oniguruma@npm:1.7.0" + checksum: be926f3eda5c37574ac42f9630969576e1035b3eb78a724921de367e76c84888847864bc2d9779e73ca61789fb27e5a0cda207c3a0aeb55dbb6b2f84449ab807 + languageName: node + linkType: hard + +"vscode-textmate@npm:^8.0.0": + version: 8.0.0 + resolution: "vscode-textmate@npm:8.0.0" + checksum: 19efb37dda3a3090aec8b97267b5ac71fedbf155140ab560b5f5aced5c8d4ca565060748eabe85e820735415cc64f970b47126cfa1ee00c29d25b9f322b42eb0 + languageName: node + linkType: hard + +"vscode-uri@npm:^2.1.2": + version: 2.1.2 + resolution: "vscode-uri@npm:2.1.2" + checksum: e6d697a88355bdfcd43328b36a6c3dcc0b652d914091e23b099bb573b4e123bcb42af0f32f2c3603cb5d2d4c025730325b9de1ad4a7d787a90632176593d0e77 + languageName: node + linkType: hard + +"vscode-uri@npm:^3.0.7": + version: 3.0.7 + resolution: "vscode-uri@npm:3.0.7" + checksum: 618f5eab1344fd262194c35a0b2e17337eb926119ebb60f9ea48e718d7c6edf9a2b9689293bb56fad5706929a40d7294c74b9da17aa0c40af8d0622945ff8f90 + languageName: node + linkType: hard + +"wait-on@npm:7.0.1": + version: 7.0.1 + resolution: "wait-on@npm:7.0.1" dependencies: - axios: "npm:^0.21.1" - joi: "npm:^17.4.0" + axios: "npm:^0.27.2" + joi: "npm:^17.7.0" lodash: "npm:^4.17.21" - minimist: "npm:^1.2.5" - rxjs: "npm:^7.1.0" + minimist: "npm:^1.2.7" + rxjs: "npm:^7.8.0" bin: wait-on: bin/wait-on - checksum: e2d65e6ad5340e0625929be946a3202713de4ee693334c0b7fde6fb1181b55109a514dc38f0c672502a82ea6c216a132828c29e9fe2adba3440fdd67738b02b9 + checksum: c2cfde10716c9bf569e21c9327d8aa713a724c2a9012b45523360d550c662354ed668a3caed1866de7f5af3fe246a5e5011b4d6df4732d7827e31c5c174f90bf + languageName: node + linkType: hard + +"web-namespaces@npm:^2.0.0": + version: 2.0.1 + resolution: "web-namespaces@npm:2.0.1" + checksum: e815bf435b25dc4a1f389652beae74b4ff81e37164fbcf0e8a38ac57fb4531c22a6ea47a912c3ada97e4f82ac6a4a6c6d090aeb0f11e209afa91867547cacd6d languageName: node linkType: hard @@ -13593,7 +16735,7 @@ __metadata: languageName: node linkType: hard -"webpack-sources@npm:3.2.3, webpack-sources@npm:^3.2.3": +"webpack-sources@npm:^3.2.3": version: 3.2.3 resolution: "webpack-sources@npm:3.2.3" checksum: aaccb99ee23afcfa1ebddbd7101f7cf15cdc3d72afe37258cf6d852eb6cfedf540086fae3a53b2c65412040eb2e1a3e7b1bff077b09eaf4f82f032a8211d6a6f @@ -13665,6 +16807,60 @@ __metadata: languageName: node linkType: hard +"which-pm-runs@npm:^1.1.0": + version: 1.1.0 + resolution: "which-pm-runs@npm:1.1.0" + checksum: 08ca092bc2ffcdb4ac76eb22cad23b34151e2ae755e1b5ce6e0139a37789bf5202b0ccd84ee03b0cb32ab9e091e98f1b522e06ea4e96f2dbecbb253b87f9f471 + languageName: node + linkType: hard + +"which-pm@npm:2.0.0": + version: 2.0.0 + resolution: "which-pm@npm:2.0.0" + dependencies: + load-yaml-file: "npm:^0.2.0" + path-exists: "npm:^4.0.0" + checksum: 5b6c4d57b5dd11fac32094572ff1f6aa94777ef64b7ae99636278a6bb64efb74b08495b09d3d05232e554de425c9e5560857e5ed808480eb56385eb75a976167 + languageName: node + linkType: hard + +"which-pm@npm:^2.1.1": + version: 2.1.1 + resolution: "which-pm@npm:2.1.1" + dependencies: + load-yaml-file: "npm:^0.2.0" + path-exists: "npm:^4.0.0" + checksum: d627e3adea164702c4c8f6ce67030037bac992f0c19b9dc4024b6af7a7df9ff02b9847862b83de3fa997a6a5c0e1883118ac1a839809bd6651f4219a45d54bdd + languageName: node + linkType: hard + +"which-typed-array@npm:^1.1.10": + version: 1.1.11 + resolution: "which-typed-array@npm:1.1.11" + dependencies: + available-typed-arrays: "npm:^1.0.5" + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-tostringtag: "npm:^1.0.0" + checksum: b1ba153cb37bb901c64012e256666d5a3e9ad915a1e0f12fd0c8d128f5158a88a85520d28f432ea658393f66f3520684d3c315ceedac8d348a4af067663efaaa + languageName: node + linkType: hard + +"which-typed-array@npm:^1.1.9": + version: 1.1.9 + resolution: "which-typed-array@npm:1.1.9" + dependencies: + available-typed-arrays: "npm:^1.0.5" + call-bind: "npm:^1.0.2" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-tostringtag: "npm:^1.0.0" + is-typed-array: "npm:^1.1.10" + checksum: 09e7fe714cb797daf3a35f3499b9f7c969b1296ac0d40d68256f2b70f747a728ad5385b1fb3e7514e26bad3d5ca550a13a80e1a7b22b7e9e12872c46ecb6c4a7 + languageName: node + linkType: hard + "which@npm:^1.3.1": version: 1.3.1 resolution: "which@npm:1.3.1" @@ -13687,44 +16883,46 @@ __metadata: languageName: node linkType: hard -"wide-align@npm:^1.1.0": - version: 1.1.3 - resolution: "wide-align@npm:1.1.3" +"wide-align@npm:^1.1.5": + version: 1.1.5 + resolution: "wide-align@npm:1.1.5" dependencies: - string-width: "npm:^1.0.2 || 2" - checksum: a1162c3ebacebb62cb1eb373934d0e9c13487a4fa46f5055d854625b19369d976ac967a03f0892b96189410d391198bbc9417093323a1111e8cf1f45b8aa3cdc + string-width: "npm:^1.0.2 || 2 || 3 || 4" + checksum: 39915f81cdc6cee1f54bfd7672619cc6d0bd558089f968ea7831324cd4b5ed00e78e710a64f05e5d75ed7880e45eef97295907f68d5aabb9d2899436c917b275 languageName: node linkType: hard -"word-wrap@npm:^1.2.3": - version: 1.2.3 - resolution: "word-wrap@npm:1.2.3" - checksum: 17267cdb6baa9d5452b0998531adafd2df52a25159f27cbb754b2fdcff4af8808019efe4c0a2bcc5ceb63becb30df07c792c0125ad21991266aefadb940df74a +"widest-line@npm:^4.0.1": + version: 4.0.1 + resolution: "widest-line@npm:4.0.1" + dependencies: + string-width: "npm:^5.0.1" + checksum: 0ac978d0e13463103395279bbdaba3d4b4452a98acd9ad8c318ed876a52aa0ec0e2a9f1145f3d0e1ba8873abef140f0e31c0a5cd421a584a47fbcbeda2133366 languageName: node linkType: hard -"workbox-background-sync@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-background-sync@npm:6.5.4" +"workbox-background-sync@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-background-sync@npm:7.0.0" dependencies: idb: "npm:^7.0.1" - workbox-core: "npm:6.5.4" - checksum: a64516b58969dacbe3b40e5881707f3cf7f33dbd41292767396d03fff058a368c1da7ca73108eedd97f6b6e8e405fac5007965ceb9114c36057a3dc7590dc285 + workbox-core: "npm:7.0.0" + checksum: ec46bca63b18e7e2cd0ee8d879f8e2609e7ee04db83e2086d69039f2f5353d15393a24eb32c7729025cb38ca343e68ff5f316e11d6f6d4b69a6e91dd1056e4a4 languageName: node linkType: hard -"workbox-broadcast-update@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-broadcast-update@npm:6.5.4" +"workbox-broadcast-update@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-broadcast-update@npm:7.0.0" dependencies: - workbox-core: "npm:6.5.4" - checksum: 882ea2d56580321628f2c985ef790324415ef9c3a745a23fa2c51b804cbf3f1fd2899c1daffb31adbd317190d1c3d2e59a895dcf1112916a7472320fe5b2c89f + workbox-core: "npm:7.0.0" + checksum: 3ffa7d98ea3fd7d741f28085061c67f5c9883031d6982c40cb2dc0f38bbc113b979e849b9cedb34cd1305dec0eec73557c303886fd1ed7dca3b5c4a439036b34 languageName: node linkType: hard -"workbox-build@npm:^6.5.4": - version: 6.5.4 - resolution: "workbox-build@npm:6.5.4" +"workbox-build@npm:*, workbox-build@npm:^7.0.0": + version: 7.0.0 + resolution: "workbox-build@npm:7.0.0" dependencies: "@apideck/better-ajv-errors": "npm:^0.3.1" "@babel/core": "npm:^7.11.1" @@ -13748,148 +16946,166 @@ __metadata: strip-comments: "npm:^2.0.1" tempy: "npm:^0.6.0" upath: "npm:^1.2.0" - workbox-background-sync: "npm:6.5.4" - workbox-broadcast-update: "npm:6.5.4" - workbox-cacheable-response: "npm:6.5.4" - workbox-core: "npm:6.5.4" - workbox-expiration: "npm:6.5.4" - workbox-google-analytics: "npm:6.5.4" - workbox-navigation-preload: "npm:6.5.4" - workbox-precaching: "npm:6.5.4" - workbox-range-requests: "npm:6.5.4" - workbox-recipes: "npm:6.5.4" - workbox-routing: "npm:6.5.4" - workbox-strategies: "npm:6.5.4" - workbox-streams: "npm:6.5.4" - workbox-sw: "npm:6.5.4" - workbox-window: "npm:6.5.4" - checksum: b82af4fdee955fac8f40d32fd8748a4e882a95fb5ef084cae3281ee8e1d54bab662f0ee2fb7ce5467e2e1ebc0a2aee679a97fd0e1e8b505d4fe6d817de9a68a8 - languageName: node - linkType: hard - -"workbox-cacheable-response@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-cacheable-response@npm:6.5.4" + workbox-background-sync: "npm:7.0.0" + workbox-broadcast-update: "npm:7.0.0" + workbox-cacheable-response: "npm:7.0.0" + workbox-core: "npm:7.0.0" + workbox-expiration: "npm:7.0.0" + workbox-google-analytics: "npm:7.0.0" + workbox-navigation-preload: "npm:7.0.0" + workbox-precaching: "npm:7.0.0" + workbox-range-requests: "npm:7.0.0" + workbox-recipes: "npm:7.0.0" + workbox-routing: "npm:7.0.0" + workbox-strategies: "npm:7.0.0" + workbox-streams: "npm:7.0.0" + workbox-sw: "npm:7.0.0" + workbox-window: "npm:7.0.0" + checksum: 3dd0eded07e8a9ad82ced375bd6ed52591f87797b64e4bd395ea117c0bdbe74eba21909f72d5c3c96a717f32778e2a18766e60ccbc5a99a6d8a59e7daffde2b8 + languageName: node + linkType: hard + +"workbox-cacheable-response@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-cacheable-response@npm:7.0.0" dependencies: - workbox-core: "npm:6.5.4" - checksum: be761895294be43f3e7cb870a08ab197f5dd2847938a92ef3e6dde80f2b7fa140b0e0ab55618fcacc3e42ed3861c13356a8cfca0680aecd22fed3be72f408cf1 + workbox-core: "npm:7.0.0" + checksum: 92d2862bbd5814ec520248d23a675babce0509ce42d600d864c75f47562c25b997758fbc9d302877f19ecd0c122c72be2a66d14588f083b52ac73ee5fb218500 languageName: node linkType: hard -"workbox-core@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-core@npm:6.5.4" - checksum: ab6531a26ac5a7dc8780f6e7609f0c92f96ef395f9a5951dcc9a5327963684064266d8cb735779ae5eb52f1b5a0198a1b7fae047a1a42f911a32526e28026384 +"workbox-core@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-core@npm:7.0.0" + checksum: 8e4b11940a471a96ed07e992fb950963e3316500f1e5f453f72e77c9436eac2d115b9037c7b9c6955cdea0167b64c2919205474064e7c5c3dd1de4c75acfcdb4 languageName: node linkType: hard -"workbox-expiration@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-expiration@npm:6.5.4" +"workbox-expiration@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-expiration@npm:7.0.0" dependencies: idb: "npm:^7.0.1" - workbox-core: "npm:6.5.4" - checksum: 33d16d3a1d6b4d358e406d5b1591555c20bafa278fbdacd3df70918e6e99de423a5ab4f15a2dc8653079e26296dca22269072f84b9375e909716ceba0bccf750 + workbox-core: "npm:7.0.0" + checksum: e6d9c83833ab4e5a777024749b519249b446c7e20345d2e304e93115e2aabd6e255cd173268d442517d3e70bfdc9f9d929cbe86b886f18a594db31e82451ec2e languageName: node linkType: hard -"workbox-google-analytics@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-google-analytics@npm:6.5.4" +"workbox-google-analytics@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-google-analytics@npm:7.0.0" dependencies: - workbox-background-sync: "npm:6.5.4" - workbox-core: "npm:6.5.4" - workbox-routing: "npm:6.5.4" - workbox-strategies: "npm:6.5.4" - checksum: dd37a39a9c68f1dc2a85856443aac1e106664890146bb5a3bd34976a54092325be82f8b82ea0bbf22fef9042db67e43446b4b84f40a31bedc78f40e2816661b7 + workbox-background-sync: "npm:7.0.0" + workbox-core: "npm:7.0.0" + workbox-routing: "npm:7.0.0" + workbox-strategies: "npm:7.0.0" + checksum: 4b10c047eab34bc6cddf44ada7c695fdb1426acfecba0a9fd21c512a38910991e64a6be7d34922792094314d064073dd2f433dd7810e0710abaa6fb96302d29b languageName: node linkType: hard -"workbox-navigation-preload@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-navigation-preload@npm:6.5.4" +"workbox-navigation-preload@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-navigation-preload@npm:7.0.0" dependencies: - workbox-core: "npm:6.5.4" - checksum: 9c08ace9460b54abfb2aaca9c83b585f2835526732b494bfb7789ec6eb44da5052bed0ed16b0fb2fbc1a69096105252333075e6cb657f6aa2bd8b721f4c09b55 + workbox-core: "npm:7.0.0" + checksum: 286d149e9171ffd57eda72c87d58821f58a4f4457fde3567b66f88047d052f47237775695a422d88ac9c60267f5028a85e95b80139b335da0701daa06f424314 languageName: node linkType: hard -"workbox-precaching@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-precaching@npm:6.5.4" +"workbox-precaching@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-precaching@npm:7.0.0" dependencies: - workbox-core: "npm:6.5.4" - workbox-routing: "npm:6.5.4" - workbox-strategies: "npm:6.5.4" - checksum: c97bfd38d47e893d0f2d1a8a4c848f7ac7673fa737ac3edad5bd29da549e39f54ee60713db2e57b16b7a3dcda07f8991edd4079c20035ce1eefd7b6bbf0edf76 + workbox-core: "npm:7.0.0" + workbox-routing: "npm:7.0.0" + workbox-strategies: "npm:7.0.0" + checksum: 75f2272d0500d9ef308d279fd80e2e0b7424aae519945d396e20729c21509af167c2e20b6af0298d2364138fef7ef7154986b4b7322fa5b87434bf8c3dc34fca languageName: node linkType: hard -"workbox-range-requests@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-range-requests@npm:6.5.4" +"workbox-range-requests@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-range-requests@npm:7.0.0" dependencies: - workbox-core: "npm:6.5.4" - checksum: 1ab18229a0bd27a4521e552227e4663ae704739e2a71eb97d67596aa28809e206cadf9d7b6211011a57d9d4cad47295b550ae8355c536179597f705c363da52c + workbox-core: "npm:7.0.0" + checksum: 8332d1209c1594ac8ea4b53d1826cef59d5b6ed373c394bdec89a76f83ea84b7bf307a1487fad7ed60615a34bf477d1455a694d368aa13e3005a86579077f755 languageName: node linkType: hard -"workbox-recipes@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-recipes@npm:6.5.4" +"workbox-recipes@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-recipes@npm:7.0.0" dependencies: - workbox-cacheable-response: "npm:6.5.4" - workbox-core: "npm:6.5.4" - workbox-expiration: "npm:6.5.4" - workbox-precaching: "npm:6.5.4" - workbox-routing: "npm:6.5.4" - workbox-strategies: "npm:6.5.4" - checksum: 6d31ab49129245d899c5e2f37b91af48534c0c963554f15394f29a84ee9f80fbbedccb64dcfeca1171f97d5250da4dded7d62519eefbf5030af454ed220efae0 + workbox-cacheable-response: "npm:7.0.0" + workbox-core: "npm:7.0.0" + workbox-expiration: "npm:7.0.0" + workbox-precaching: "npm:7.0.0" + workbox-routing: "npm:7.0.0" + workbox-strategies: "npm:7.0.0" + checksum: 4416f0834dba6575ca88a929fe6eba98d4ff9b40a7726fdcf8de8908543fc441ec683cddbe439f25da3f4fbe4cc97760eaa39f9280b66fc217f627585f6a37eb languageName: node linkType: hard -"workbox-routing@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-routing@npm:6.5.4" +"workbox-routing@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-routing@npm:7.0.0" dependencies: - workbox-core: "npm:6.5.4" - checksum: a4e1ac4d97032cb4aeb9c387a4de2213a72b73d6ee96787cd656605eaaf4de7ebbd639e771bb2a875b792944141321076154723768025b708a2831d98e8f36aa + workbox-core: "npm:7.0.0" + checksum: 7b250c696499f1528913e7bb4c11ecfbe62fc329a70c79d905186e4efd3b983536f64e1a2b810445f4e005336a70ec93305be8b62df236e7aac114f0ff908168 languageName: node linkType: hard -"workbox-strategies@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-strategies@npm:6.5.4" +"workbox-strategies@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-strategies@npm:7.0.0" dependencies: - workbox-core: "npm:6.5.4" - checksum: 8e0bd6aa2e17454e183e1b5de1cc976ea8e3ed2dd298eee634a1f135086699c2edf8c2105e977cf44c946d50606cf66a7701eb1804ff969d2f306845415539a6 + workbox-core: "npm:7.0.0" + checksum: 3e77ce48537177e481958652eeccb950c6cc9c20267c6d2a98ca5b98fbce49c4e5ae412134c2f79fb76e0ff89dbf93b84946c7ca40fcae69cfe70ae8489b2eae languageName: node linkType: hard -"workbox-streams@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-streams@npm:6.5.4" +"workbox-streams@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-streams@npm:7.0.0" dependencies: - workbox-core: "npm:6.5.4" - workbox-routing: "npm:6.5.4" - checksum: 060545e13b7a7f8163053bf3a39d9eda419463e3b9d948a6818194d0b1e41152829912d2631b33e6c7dcb7bb4d86b3c98cc2aac64b48d225fa59f5fd8eebb7a9 + workbox-core: "npm:7.0.0" + workbox-routing: "npm:7.0.0" + checksum: cd1a8e508c6bc5173c18fa0c60c94b617a3d404ef95489a1b25e0b7c690f2916aafac38709f4c0a4d76975d347c0a894c0706e3447dc37f2af79cd3cfacfb106 languageName: node linkType: hard -"workbox-sw@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-sw@npm:6.5.4" - checksum: c956aee7cd16477104db42439d67a0d6a232ea1ce7252c7d9a15d615b2698d11a3031351077e7cc41c9cf171f059dd791c3c38d2445c56f17c75be9eb5c20301 +"workbox-sw@npm:7.0.0": + version: 7.0.0 + resolution: "workbox-sw@npm:7.0.0" + checksum: a687a0ceee1321424e633d54b45bf3e93196b900b72dfe4704ed2973ae1012703ed2b9e8b2ae641d5d204a178b8365bf6ad77aa4688c178967a309720f2e62ca languageName: node linkType: hard -"workbox-window@npm:6.5.4, workbox-window@npm:^6.5.4": - version: 6.5.4 - resolution: "workbox-window@npm:6.5.4" +"workbox-window@npm:7.0.0, workbox-window@npm:^7.0.0": + version: 7.0.0 + resolution: "workbox-window@npm:7.0.0" dependencies: "@types/trusted-types": "npm:^2.0.2" - workbox-core: "npm:6.5.4" - checksum: 1b011603e255deccca060d8202f70d00200db23363bfa66589f9e7d8ed68891840688dee196fe81f90fbe311f9cbe0173042b17e226ccaef57d6838fdde37e7d + workbox-core: "npm:7.0.0" + checksum: 9f357f23264cb32620a0c346e11a21cdaac60cbe41eda405b1d094cb1009fa19a1a5d4a3c13c4dd878371d0583fd09110db48a451d260cb51380548a2340517b + languageName: node + linkType: hard + +"workerpool@npm:6.2.1": + version: 6.2.1 + resolution: "workerpool@npm:6.2.1" + checksum: e79e2414909a5f74829d3d18b4ae83c6373d62e146c486835417146f3f494fe17be88929d4d35a322cfdde3c03992518a398e081c9a8dc1b207881ec447db690 + languageName: node + linkType: hard + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: "npm:^4.0.0" + string-width: "npm:^4.1.0" + strip-ansi: "npm:^6.0.0" + checksum: b72e4a1ebd582221c3d7eae2473c7841af1fd435defe08bb3854600013ced559b10efa767b4fdc6725402ab16b79f86f73e5d4edc7cf9214e15733ee34849aa0 languageName: node linkType: hard @@ -13904,14 +17120,14 @@ __metadata: languageName: node linkType: hard -"wrap-ansi@npm:^7.0.0": - version: 7.0.0 - resolution: "wrap-ansi@npm:7.0.0" +"wrap-ansi@npm:^8.0.1, wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" dependencies: - ansi-styles: "npm:^4.0.0" - string-width: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" - checksum: b72e4a1ebd582221c3d7eae2473c7841af1fd435defe08bb3854600013ced559b10efa767b4fdc6725402ab16b79f86f73e5d4edc7cf9214e15733ee34849aa0 + ansi-styles: "npm:^6.1.0" + string-width: "npm:^5.0.1" + strip-ansi: "npm:^7.0.1" + checksum: f8df96ddeeb43e497c86085f8b009fd374e046aef37d731d13037dbabc2f3d2ba84aa8e583bdff3011b8ef5274a53832d65bb7dd44b30c033e96ef3d0bb72b57 languageName: node linkType: hard @@ -13922,34 +17138,34 @@ __metadata: languageName: node linkType: hard -"write-file-atomic@npm:^4.0.2": - version: 4.0.2 - resolution: "write-file-atomic@npm:4.0.2" +"write-file-atomic@npm:^5.0.1": + version: 5.0.1 + resolution: "write-file-atomic@npm:5.0.1" dependencies: imurmurhash: "npm:^0.1.4" - signal-exit: "npm:^3.0.7" - checksum: 9cadd66c56a2de75ff08064561eada3d299041f73419947e036ffe1ac35baefbb087d602cf304aeb2a2333d1f2dd82657c7be8e9a9d69ee13ffffab50c2e255e + signal-exit: "npm:^4.0.1" + checksum: 2f86e4e0530733b6ef51c1d38f5b77b83831c3be0e32dd209c200c850de5b3e8a30b477372429921ab06a94aba6f035458675323e042cb73fe34a4df137c5e42 languageName: node linkType: hard -"ws@npm:^8.8.1": - version: 8.8.1 - resolution: "ws@npm:8.8.1" +"ws@npm:^8.13.0": + version: 8.13.0 + resolution: "ws@npm:8.13.0" peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 + utf-8-validate: ">=5.0.2" peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true - checksum: 807217fa26495f179b03c1160bacaee829234b66f4d22b6df00dc335268e92b537add73edb84046827aadd858c997213d1c78743c571339fe25cc6d51d3e5dea + checksum: af5cfb5a7031d1183e3c33d9ea917b2f36b127aac3ecd6a7890927fed583aa65b464242f2bd570ad83114ffefc21daf442d02a23fb9bc93a8c6a199febbd9304 languageName: node linkType: hard -"ws@npm:~8.2.3": - version: 8.2.3 - resolution: "ws@npm:8.2.3" +"ws@npm:~8.11.0": + version: 8.11.0 + resolution: "ws@npm:8.11.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -13958,7 +17174,14 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 2994fec3e2698d099b02be87f4c8e1a9da043320f27f4698139b0835d596beb704063339a9e703b925e2f761a42ab586ea207343b3f22d02518d8a60fb5820f7 + checksum: c573e020b665b724acf6d5500c117f2c117f2b07b7414700a5fe61fd03e850578649f951851afca3d7885ef2ee6ecd83881abb2ebe005defd62aeb657e13a9be + languageName: node + linkType: hard + +"xmlbuilder@npm:^15.1.1": + version: 15.1.1 + resolution: "xmlbuilder@npm:15.1.1" + checksum: ffc7c1f7ec2d2466621031e7fdb9282e57bfa5611978d0c9ddd31b9a34cc9aa3abdde0f7009e8c33e765c07b08123ba133889e8f94be1318f6e5a3bcd37cb357 languageName: node linkType: hard @@ -13997,21 +17220,21 @@ __metadata: languageName: node linkType: hard -"yaml@npm:^1.10.0": - version: 1.10.2 - resolution: "yaml@npm:1.10.2" - checksum: d6f04384bdf1105256581aef39991f825e358f3f48f081974b0e0f39ff5240c60ccafb5842cb79d1287517efa2b9ee172c702f2e4855ba6cc46948b40a43aa6e +"yaml@npm:2.3.1, yaml@npm:^2.2.2": + version: 2.3.1 + resolution: "yaml@npm:2.3.1" + checksum: f33e26b726061603f7a55870726cd5225a2868ea9accec41ff57f42e0398b1bdabf15b122ac724601fe41b978d5a46e7c3c43d3361f20f82047f054b2bf64621 languageName: node linkType: hard -"yaml@npm:^2.1.3": - version: 2.1.3 - resolution: "yaml@npm:2.1.3" - checksum: 2747f51351cbf5f0d8b1cdd0e25ddfbf3cf3b7604822a1f4024f059af90679f0f6a51943f75dcac6ba119c26c58cf29ce4326aed175c2c17071414c724582389 +"yargs-parser@npm:20.2.4": + version: 20.2.4 + resolution: "yargs-parser@npm:20.2.4" + checksum: fad75c06cf06b88af025c34e169c40da39d766eac83dfafc75b6ddcbc106f25acbbfe8924a7eb64fecfbda12313c65208575b71b4b5e9138cb16570577f6bb6f languageName: node linkType: hard -"yargs-parser@npm:^20.2.3": +"yargs-parser@npm:^20.2.2, yargs-parser@npm:^20.2.3, yargs-parser@npm:^20.2.9": version: 20.2.9 resolution: "yargs-parser@npm:20.2.9" checksum: fd739a429b7cde755b8e9d28520619fb8adb94c686b2d75d3c93a6ec199fbc8bf120af6d2be144f8d3075f3d675b09893f8894a362548107aa90bb97ad662c7a @@ -14025,9 +17248,36 @@ __metadata: languageName: node linkType: hard -"yargs@npm:^17.0.0": - version: 17.6.2 - resolution: "yargs@npm:17.6.2" +"yargs-unparser@npm:2.0.0": + version: 2.0.0 + resolution: "yargs-unparser@npm:2.0.0" + dependencies: + camelcase: "npm:^6.0.0" + decamelize: "npm:^4.0.0" + flat: "npm:^5.0.2" + is-plain-obj: "npm:^2.1.0" + checksum: 981309e58e1cf538bae1c5decbeb7c1a6d784d93cbdf43e27a192a2bdd72d9ec2799c292a304c70d50a445cfdf68bc83b8b42d884f6e36ebb10b31ed194db003 + languageName: node + linkType: hard + +"yargs@npm:16.2.0": + version: 16.2.0 + resolution: "yargs@npm:16.2.0" + dependencies: + cliui: "npm:^7.0.2" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.0" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^20.2.2" + checksum: be4564db8f818c7eeda96653331a62829522ab2a8a773da079ebf3870ab5b875177c397c57f06d6c9238d613567ebe69d4cbac35dbef1cc9928183df7ba8d479 + languageName: node + linkType: hard + +"yargs@npm:^17.0.0, yargs@npm:^17.7.2": + version: 17.7.2 + resolution: "yargs@npm:17.7.2" dependencies: cliui: "npm:^8.0.1" escalade: "npm:^3.1.1" @@ -14036,7 +17286,7 @@ __metadata: string-width: "npm:^4.2.3" y18n: "npm:^5.0.5" yargs-parser: "npm:^21.1.1" - checksum: 31c667c5c38d1738ac4ecb6f5228eb94f53d0555db4e4091bd55bc7864d96f3e58e1b8126e1b19bfa056f4f1aeb7643723c3a8309267df36e30afb91e796a3fc + checksum: 02578d19d9c9a21ed980903995a5a9b7d913e8dccefe182fadae1afee26c6903f912594524d13ea2950dbaad1024e9d255c380a150fbda957bd32e9d0d772eb0 languageName: node linkType: hard @@ -14063,3 +17313,43 @@ __metadata: checksum: 63eceacd482622afd71290541a9823a0e5eed88a6b58a5d136a5fb8151ed4d1549c80f28d74d4ad351582f9890635d49e6cf70f8d3cc64948640f839f6a37c70 languageName: node linkType: hard + +"yocto-queue@npm:^1.0.0": + version: 1.0.0 + resolution: "yocto-queue@npm:1.0.0" + checksum: 4522405d36a190a188112c3bc9ae84ac5eeafee637417ec127c6defc28a75b745a6139f9178107389e5ae57c3a5523b0016aec5a1f23b228c7b17ca8b2869a9c + languageName: node + linkType: hard + +"yup@npm:1.2.0": + version: 1.2.0 + resolution: "yup@npm:1.2.0" + dependencies: + property-expr: "npm:^2.0.5" + tiny-case: "npm:^1.0.3" + toposort: "npm:^2.0.2" + type-fest: "npm:^2.19.0" + checksum: 2d3eef3d4910b7ae5e3f85cd81548e9f90d1fbdc7db06a9b4fdf659185d52138c1c8c7ead1878b90f3ecee077a01398f8d926447e0b1b64e95c042be0607a964 + languageName: node + linkType: hard + +"zod@npm:3.21.1": + version: 3.21.1 + resolution: "zod@npm:3.21.1" + checksum: c5a2afe13aa2f0efd5e73e56d3f5d901bb193f444682319635155f6a813c049b34afcc9030d631ef6d8d08ed6587ed386016c48f6f821b53a2f4ad59d10cc20e + languageName: node + linkType: hard + +"zod@npm:^3.22.2": + version: 3.22.2 + resolution: "zod@npm:3.22.2" + checksum: b6158a49b57cb2f6454789005f9989db4df0dbe213186d3356be56c8ea01a5bc8c9c9af7795ef2156539526bf350e0fd351b0ecb8e1bcff5a6511b1b40293ed0 + languageName: node + linkType: hard + +"zwitch@npm:^2.0.0, zwitch@npm:^2.0.4": + version: 2.0.4 + resolution: "zwitch@npm:2.0.4" + checksum: bf40da12c4b576ffae84456fa80df5008fff61cba229925978bb91f790a5b741db15b2ba930e31e35fe6ef29ec7ff16a5a3b770bc5dfd09765b2a294863af530 + languageName: node + linkType: hard